" AML 2203 - Advanced Python AI and ML Tools "
¶

Assignment #1¶

Group Members¶

  • Aishlee C0913045
  • Jayachandhran Saravanan C0910392
  • Prashanta Timsina C0916254
  • Rohan Aryan C0912902
  • Yogita Sharma C0913011

Step 1: Dataset Description¶

For this assignment, we have scraped "computer" based books data.

  • We have used API Endpoint to acquire the data from this website https://www.ebooks.com/en-ca/
  • It basically provides API to access the data without breaking the tags (as we were facing this issue while scraping data using Beautiful Soup).
  • We used requests.get() function to send a GET request to the specified URL with the custom headers and parameters.
  • In other words, using API Endpoint, we created a get request to this params with headers and URL of https://www.ebooks.com/en-ca/subjects/computers/
  • Further, we got JSON response and the data is processed and stored in a dataframe first.
  • Later, it is converted to a csv file which we're gonna use now.

In total, we have a dataset with 39,990 rows and 15 features, consisting of all predictive variables.

Each row in the dataset represents one unique book details corresponding to various attributes such as book ID, author, title, publisher, edition, etc. The features provided for each record are:

  • Title: the title of a book
  • id: an unique id for each book in the dataset
  • price: the price of the particular book
  • author: the author of the particular book
  • publisher: the publisher of the book
  • pub_year: the year in which the book was published
  • s_title: the subtitle of the book
  • edition_num: the edition number of the book
  • description: a detailed description of the book
  • available: indicates the availability status, whether a book is in stock or not.
  • sale_date: the date of sale for the book
  • short_pub: sale date for the book in short (Jan 24)
  • num_of_author: the number of authors associated with the book
  • width: width dimension of the book (in cm)
  • height: height dimension of the book (in cm)

Step 2: Data Wrangling¶

Let's proceed to the second step and apply the data wrangling steps. In this, we will read our dataset from the provided file in CSV format.

In this case, our data source is request API and will gather data from this single source.

please help in sorting the repeating packages¶

In [77]:
# importing the necessary libraries for the analysis

import pandas as pd                          # for data maniulation 
import numpy as np                           # for numerical operations
import matplotlib.pyplot as plt              # for visualization 
import seaborn as sns                        # for statistical visualization
import re                                    # for string manipulation
from PIL import Image                        # for image processing
from wordcloud import WordCloud, STOPWORDS   # for generating word clouds
from nltk.corpus import stopwords            # for dealing with stopwords
from nltk.tokenize import word_tokenize      # for tokenization
import ydata_profiling as pp    # for generating pandas profiling
import warnings                              # to ignore warnings
warnings.filterwarnings('ignore')            # ignore warnings during execution
In [2]:
# import the necessary libraries for the analysis
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
import re
from kneed import KneeLocator #need to be installed before running
from PIL import Image
from IPython.display import clear_output
from wordcloud import WordCloud, STOPWORDS
from nltk.corpus import stopwords
from nltk.tokenize import word_tokenize
from ydata_profiling import ProfileReport
import warnings
warnings.filterwarnings('ignore')
import nltk
from nltk.tokenize import word_tokenize
from nltk.stem import WordNetLemmatizer
from collections import Counter
from sklearn.cluster import KMeans
from sklearn.feature_extraction.text import TfidfVectorizer
from sklearn.metrics.pairwise import cosine_similarity
from itertools import chain
In [99]:
# import the necessary libraries for the analysis
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
import re
from PIL import Image
import scipy.stats as stats
from wordcloud import WordCloud, STOPWORDS
from nltk.corpus import stopwords
from nltk.tokenize import word_tokenize
#from ydata_profiling import ProfileReport
import warnings
warnings.filterwarnings('ignore')
In [236]:
import pandas as pd
from sklearn.preprocessing import StandardScaler
from sklearn.cluster import KMeans, DBSCAN
from sklearn.metrics import silhouette_score
import matplotlib.pyplot as plt
import pandas as pd
from sklearn.preprocessing import StandardScaler, OneHotEncoder
from sklearn.cluster import KMeans
from sklearn.compose import ColumnTransformer
from sklearn.pipeline import Pipeline
import matplotlib.pyplot as plt
from yellowbrick.cluster import KElbowVisualizer #pip install this please
In [3]:
# loading the dataset
df = pd.read_csv('api_metod_40k_15_fields.csv')

# display the first 5 rows of the dataset
df.head()
Out[3]:
Title id price author publisher pub_year s_tile edition_num description availabe sale_date short_pub num_of_author width height
0 Learning Go 211190367 71.990000 Jon Bodner O'Reilly Media 2024 NaN (2nd ed.) Go has rapidly become the preferred language f... True 2024-01-10T00:00:00 Jan 2024 1 97 150
1 Tidy First? 211127822 42.990000 Kent Beck O'Reilly Media 2023 NaN NaN Tidying up messy software is a must. And that ... True 2023-10-17T00:00:00 Oct 2023 1 97 150
2 Hands-On Machine Learning with Scikit-Learn, K... 210681725 96.990000 Aurélien Géron O'Reilly Media 2022 NaN (3rd ed.) Through a recent series of breakthroughs, deep... True 2022-10-04T00:00:00 Oct 2022 1 97 150
3 Designing Data-Intensive Applications 95729334 67.990000 Martin Kleppmann O'Reilly Media 2017 The Big Ideas Behind Reliable, Scalable, and M... NaN Data is at the center of many challenges in sy... True 2017-03-16T00:00:00 Mar 2017 1 97 150
4 Exam Ref MS-102 Microsoft 365 Administrator 210964419 53.862731 Orin Thomas Pearson Education 2023 NaN NaN Prepare for Microsoft Exam MS-102 and help dem... True 2023-10-18T00:00:00 Oct 2023 1 97 150
In [4]:
# dimension (rows and columns) of the dataset

print(f"Number of rows: {df.shape[0]}")
print(f"Number of columns: {df.shape[1]}")
print(f"Shape (rows, columns): {df.shape}")
Number of rows: 39990
Number of columns: 15
Shape (rows, columns): (39990, 15)

As we can see, our dataset has 39,990 rows and 15 columns.

Let's check our variables data types and look for corrupted data that we can filter out.

In [5]:
# data types of each colummn of our dataset
df.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 39990 entries, 0 to 39989
Data columns (total 15 columns):
 #   Column         Non-Null Count  Dtype  
---  ------         --------------  -----  
 0   Title          39990 non-null  object 
 1   id             39990 non-null  int64  
 2   price          39881 non-null  float64
 3   author         39981 non-null  object 
 4   publisher      39990 non-null  object 
 5   pub_year       39990 non-null  int64  
 6   s_tile         26656 non-null  object 
 7   edition_num    3613 non-null   object 
 8   description    34382 non-null  object 
 9   availabe       39990 non-null  bool   
 10  sale_date      39990 non-null  object 
 11  short_pub      39990 non-null  object 
 12  num_of_author  39990 non-null  int64  
 13  width          39990 non-null  int64  
 14  height         39990 non-null  int64  
dtypes: bool(1), float64(1), int64(5), object(8)
memory usage: 4.3+ MB

Cleaning¶

In [6]:
# checking for null or missing values
df.isnull().sum()
Out[6]:
Title                0
id                   0
price              109
author               9
publisher            0
pub_year             0
s_tile           13334
edition_num      36377
description       5608
availabe             0
sale_date            0
short_pub            0
num_of_author        0
width                0
height               0
dtype: int64

There are missing values in the price, s_title, edition_num and description columns.

Now, we gonna check the unique values for each column.

In [7]:
# Checking the unique values in each column
for col in df:
  print(f"\033[94mUnique values in '{col}' column:")
  print(df[col].unique(), end='\n\n')
Unique values in 'Title' column:
['Learning Go' 'Tidy First?'
 'Hands-On Machine Learning with Scikit-Learn, Keras, and TensorFlow' ...
 'Charting the Topic Maps Research and Applications Landscape'
 'Data Mining for Biomedical Applications'
 'PRICAI 2006: Trends in Artificial Intelligence']

Unique values in 'id' column:
[211190367 211127822 210681725 ...   2476718   2476736   2476777]

Unique values in 'price' column:
[ 71.99        42.99        96.99       ... 104.5515523   12.19162646
  95.04818674]

Unique values in 'author' column:
['Jon Bodner' 'Kent Beck' 'Aurélien Géron' ... 'Simon D. Parsons'
 'Quiang Yang' 'Jérôme Lang']

Unique values in 'publisher' column:
["O'Reilly Media" 'Pearson Education' 'McGraw Hill LLC'
 'Make Community, LLC' 'Cambridge University Press' 'Elluminet Press'
 'Wiley' 'BCS Learning & Development Limited' 'Pragmatic Bookshelf'
 'Flatiron Books' 'Packt Publishing' 'Certification Experts, LLC'
 'CRC Press' 'Vytautas Alechnavicius' 'Skill Recordings Inc'
 'Princeton University Press' 'Personal Evolution' 'Apress'
 'Farrar, Straus and Giroux' 'No Starch Press' 'Basic Books'
 'Shermin Voshmgir' 'MIT Press' 'Little, Brown and Company'
 'DK Publishing' 'Elsevier Science' 'OUP Oxford'
 'Springer Berlin Heidelberg' "St. Martin's Publishing Group"
 'Svyatoslav Kotusev' 'W. W. Norton & Company' 'Springer Nature Singapore'
 'Penguin Publishing Group' 'Holy Macro! Books' 'Philip Anderson'
 'Canongate Books'
 'Association for Computing Machinery and Morgan & Claypool Publishers'
 'XML Press' 'Rivercat Books LLC' 'Applied Maths Ltd' 'Rufus Johnston'
 'SA Publishing' 'Taylor and Francis'
 'World Scientific Publishing Company' 'Taylor & Francis' 'PublicAffairs'
 'IT Governance Publishing' 'Edward Elgar Publishing'
 'Springer International Publishing' 'IRB' 'Orion' 'Springer New York'
 'McFarland & Company, Inc., Publishers'
 'Peter Lang Inc., International Academic Publishers' 'Unbound'
 'Springer Fachmedien Wiesbaden' 'Bloomsbury Publishing'
 'The Institution of Engineering and Technology' 'Mihails Konoplovs'
 'Rockport Publishers' 'Mercury Learning and Information'
 'Pastor Publishing Ltd' 'ANAYA MULTIMEDIA' 'Top Notch International'
 'Houndstooth Press' 'Glen Jennings' 'Payload Media, Inc.' 'SitePoint'
 'Kiet Huynh' 'Orange Education Pvt Ltd' 'Computertrainerin.de' 'Manning'
 'Mindview LLC' 'GitforGits' 'Matti Charlton' 'Harish Bhat'
 'Endeavor Technologies Inc.' 'ArgoLong Publishing' 'Joe Grant'
 'Henry Holt and Co.' 'Lakeview Research' 'NYU Press'
 'Addison-Wesley Longman' 'Tsunami Productions' 'Stonesong Digital LLC'
 'Ingram Publishing' 'TeeBooks' 'Harvard Business Review Press'
 'Rowman & Littlefield Publishers' 'Elluminet Press Ltd'
 'Knopf Doubleday Publishing Group' 'Momentum Press' 'AMACOM'
 'SAS Institute' 'HarperCollins Publishers' 'Wren Investment Group, LLC'
 'SQLBI Corp.' 'Matthew Smith' 'Kogan Page' 'Artech House'
 'Springer London' 'Grand Central Publishing' 'Hachette Books'
 'Arcturus Digital Limited' 'Emerald Publishing Limited' 'Rocky Nook'
 'NOLO' 'Scott La Counte' 'Springer Nature Switzerland' 'Asghar Ghori'
 'Bayview Labs, LLC' 'Keyko Pty Ltd' 'Icon Books Ltd'
 'Vieweg+Teubner Verlag' 'McGraw-Hill Education'
 'New Age International Pvt. Ltd., Publishers' 'Reaktion Books'
 'iUniverse' 'North Atlantic Books' 'Crowood' 'Potomac Books'
 'Wolfram Media, Inc.' 'Open Road Media' 'Indiana University Press'
 'Random House of Canada' 'Cornell University Press'
 'New York Review Books' 'Springer US' 'University of Minnesota Press'
 'Melville House' 'Amsterdam University Press'
 'Austin Macauley Publishers' 'Columbia University Press'
 'Hodder Education'
 'Society of Photo-Optical Instrumentation Engineers (SPIE)'
 'Facet Publishing' 'Royal Society of Chemistry' 'Vibrant Publishers'
 'Tablo Pty Ltd' 'Fox Red Risk' 'Arun E Thomas' 'OnBelay Consulting, LLC'
 'CADCIM Technologies' 'Applied Network Defense' 'The Friedman Archives'
 'Pragmatic Engineer B.V' 'The Cyber Consultant' 'Systems Approach, LLC'
 'SkyRocket Software' 'Indy Pub' 'Ted Padova' 'MindShare Press' 'Crown'
 'Random House Publishing Group' 'Nerdy Books, LLC'
 'University of Queensland Press' 'Muscle Joint Nerve' 'Polity Press'
 'Marcel Dekker Inc' 'Library Association Publishing (Facet Publishing)'
 'Allen & Unwin' 'SPIE ' 'Babelcube Inc.' 'Government Institutes'
 'TSTC Publishing' 'Heinemann' 'Birkhäuser Boston'
 'Oxford University Press' 'Chronicle Books LLC' 'Infinite Ideas'
 'Melbourne University Publishing' 'EGEA Spa - Bocconi University Press'
 'Little, Brown Book Group' 'Infobase Publishing' 'Lexington Books'
 'Springer Netherlands' 'IOS Press' 'Jenny Stanford Publishing'
 'Springer Japan' 'Apple Academic Press' 'Spektrum Akademischer Verlag'
 'Atlantis Press' 'Ice Publications' 'SIGS' 'Random House' 'Transworld'
 'Random House Worlds' 'Tor Publishing Group' 'Pan Macmillan'
 'SAGE Publications' 'Ebury Publishing' 'Sourcebooks' 'Penguin Books Ltd'
 'University of Chicago Press']

Unique values in 'pub_year' column:
[2024 2023 2022 2017 2018 2021 2020 2019 2015 2013 2016 2014 2011 2006
 2008 2012 2009 2007 2005 1994 2003 2010 1995 1997 2002 2000 1988 2001
 1998 2004 1999 1996 1990 1753 1993 1992 1991 1980 1986 1987 2025 1989]

Unique values in 's_tile' column:
[nan 'The Big Ideas Behind Reliable, Scalable, and Maintainable Systems'
 "A Beginner's Guide to HTML, CSS, JavaScript, and Web Graphics" ...
 '9th Pacific Rim International Conference on Artificial Intelligence, Guilin, China, August 7-11, 2006, Proceedings'
 'First International Conference, KSEM 2006, Guilin, China, August 5-8, 2006, Proceedings'
 'Second IAPR Workshop, ANNPR 2006, Ulm, Germany, August 31-September 2, 2006, Proceedings']

Unique values in 'edition_num' column:
[' (2nd ed.)' nan ' (3rd ed.)' ' (8th ed.)' ' (5th ed.)' ' (7th ed.)'
 ' (6th ed.)' ' (4th ed.)' ' (9th ed.)' ' (11th ed.)' ' (12th ed.)'
 ' (10th ed.)' ' (22nd ed.)' ' (14th ed.)' ' (13th ed.)' ' (19th ed.)'
 ' (18th ed.)' ' (57th ed.)' ' (15th ed.)' ' (31st ed.)' ' (16th ed.)'
 ' (21st ed.)']

Unique values in 'description' column:
["Go has rapidly become the preferred language for building web services. Plenty of tutorials are available to teach Go's syntax to developers with experience in other programming languages, but tutorials aren't enough. They don't teach Go's idioms, so developers end up recreating patterns that don't make sense in a Go context. This practical..."
 'Tidying up messy software is a must. And that means breaking up the code to make it more readable, and using guard clauses and helping functions to make it understandable. In this practical guide, author Kent Beck, creator of Extreme Programming and pioneer of software patterns, suggests when and where you might apply tidyings in your code. ...'
 'Through a recent series of breakthroughs, deep learning has boosted the entire field of machine learning. Now, even programmers who know close to nothing about this technology can use simple, efficient tools to implement programs capable of learning from data. This bestselling book uses concrete examples, minimal theory, and production-ready...'
 ...
 'This book constitutes the refereed proceedings of the 9th Pacific Rim International Conference on Artificial Intelligence, PRICAI 2006, held in Guilin, China in August 2006. The book presents 81 revised full papers and 87 revised short papers...'
 'Here are the refereed proceedings of the First International Conference on Knowledge Science, Engineering and Management, KSEM 2006, held in Guilin, China in August 2006 in conjunction with PRICAI 2006. The book presents 51 revised full papers and...'
 'This book constitutes the refereed proceedings of the Second IAPR Workshop on Artificial Neural Networks in Pattern Recognition, ANNPR 2006, held in Ulm, Germany in August/September 2006. The 26 revised papers presented were carefully reviewed and...']

Unique values in 'availabe' column:
[ True False]

Unique values in 'sale_date' column:
['2024-01-10T00:00:00' '2023-10-17T00:00:00' '2022-10-04T00:00:00' ...
 '2005-06-28T00:00:00' '2006-02-28T00:00:00' '2008-02-20T00:00:00']

Unique values in 'short_pub' column:
['Jan 2024' 'Oct 2023' 'Oct 2022' 'Mar 2017' 'Feb 2022' 'Aug 2023'
 'Sep 2022' 'May 2018' 'Feb 2024' 'Jun 2022' 'Mar 2022' 'Nov 2023'
 'Oct 2021' 'Aug 2022' 'Jul 2020' 'Jan 2023' 'Sep 2019' 'Jun 2021'
 'Oct 2019' 'May 2020' 'Nov 2021' 'Apr 2023' 'Dec 2022' 'Sep 2015'
 'May 2023' 'Sep 2021' 'Mar 2020' 'Jul 2013' 'Jul 2017' 'Jan 2020'
 'Jul 2021' 'May 2022' 'Mar 2021' 'Nov 2020' 'Nov 2019' 'Sep 2016'
 'Apr 2019' 'Apr 2015' 'Sep 2014' 'Nov 2022' 'Dec 2019' 'Jan 2021'
 'Sep 2023' 'Oct 2011' 'Mar 2023' 'Dec 2023' 'Dec 2024' 'Dec 2020'
 'Aug 2019' 'Jul 2022' 'Apr 2020' 'Dec 2011' 'May 2006' 'Feb 2021'
 'Dec 2014' 'Feb 2018' 'Jul 2018' 'Feb 2023' 'Dec 2015' 'Sep 2020'
 'Jan 2018' 'Oct 2017' 'Apr 2022' 'Aug 2017' 'Jun 2023' 'Feb 2020'
 'Jun 2013' 'Jul 2008' 'Apr 2021' 'Mar 2016' 'Jun 2020' 'Sep 2017'
 'Dec 2021' 'Jun 2019' 'Aug 2021' 'May 2008' 'Oct 2015' 'Jan 2022'
 'Dec 2018' 'Aug 2012' 'Jan 2016' 'Jan 2019' 'Feb 2019' 'Aug 2020'
 'Jul 2009' 'Aug 2011' 'May 2013' 'Nov 2006' 'Jun 2016' 'Aug 2007'
 'Dec 2007' 'Oct 2020' 'Nov 2015' 'Sep 2013' 'Jun 2007' 'Feb 2013'
 'Jan 2015' 'Jul 2023' 'Jul 2005' 'Mar 2018' 'Jan 2012' 'Jul 2019'
 'Jul 2012' 'Oct 1994' 'May 2021' 'Mar 2019' 'Aug 2003' 'Aug 2006'
 'Aug 2016' 'Oct 2018' 'Nov 2005' 'Nov 2016' 'Aug 2010' 'Aug 2018'
 'Dec 2013' 'Oct 2013' 'Sep 2018' 'Mar 2005' 'Nov 2014' 'Jan 2013'
 'Aug 2008' 'Aug 1995' 'Apr 2005' 'Apr 2011' 'May 2005' 'Jun 2017'
 'May 2019' 'May 2010' 'Apr 2018' 'Mar 1997' 'Sep 2002' 'Jan 2014'
 'Feb 2010' 'Apr 2012' 'Apr 2013' 'Jan 2000' 'Feb 2012' 'Mar 1988'
 'Feb 2009' 'May 2017' 'Jul 2015' 'Feb 2001' 'Jul 2016' 'Feb 2005'
 'Jul 2006' 'Feb 1994' 'Apr 1998' 'Mar 2008' 'Oct 2002' 'Nov 2002'
 'Dec 2016' 'Oct 2009' 'Dec 2005' 'Jun 2009' 'Mar 2014' 'Sep 2007'
 'Jun 2006' 'Aug 2004' 'Oct 2010' 'Sep 2012' 'May 2016' 'Jun 2012'
 'May 2004' 'Jun 2014' 'Feb 2015' 'Jun 2011' 'Mar 2007' 'Dec 2008'
 'Mar 2013' 'Dec 2003' 'Jul 2003' 'Nov 2008' 'Nov 2003' 'Sep 2004'
 'Mar 2006' 'Dec 2017' 'Apr 2009' 'Nov 2011' 'Nov 2018' 'Oct 2014'
 'Jun 2015' 'Oct 2016' 'Jul 2014' 'Apr 2017' 'Jun 2008' 'Nov 2013'
 'Feb 2011' 'Apr 2010' 'Jul 1998' 'May 2015' 'Mar 2009' 'Dec 2006'
 'Nov 2010' 'Jun 2018' 'Dec 2002' 'Aug 1999' 'Oct 2005' 'Aug 2015'
 'Jan 2005' 'Jan 2007' 'Apr 2007' 'Jul 2011' 'Apr 2006' 'Nov 2007'
 'Sep 2000' 'Jun 2000' 'Mar 2015' 'Mar 2010' 'Aug 1997' 'Apr 2001'
 'Dec 2001' 'Jul 2007' 'May 2012' 'Jan 2009' 'Aug 2014' 'May 2003'
 'Feb 2004' 'Mar 2011' 'Sep 2009' 'Apr 2016' 'Mar 2004' 'Feb 2016'
 'Feb 2014' 'Jun 2010' 'Dec 2009' 'Apr 2008' 'Sep 2003' 'Sep 2008'
 'Nov 2012' 'Oct 1996' 'Oct 2007' 'Oct 2003' 'Jul 2010' 'Nov 2017'
 'Jul 1997' 'Jul 1990' 'Sep 2006' 'Jan 1753' 'Apr 2014' 'Dec 2012'
 'Sep 2011' 'Jan 2017' 'Nov 2004' 'Feb 2017' 'Jun 2004' 'Jun 2003'
 'Oct 2000' 'Aug 2009' 'Oct 2001' 'Jun 2002' 'Sep 2010' 'Feb 2008'
 'Oct 2008' 'Feb 2006' 'Apr 2002' 'Sep 2001' 'Oct 2006' 'Jan 2006'
 'May 2014' 'Jan 2011' 'Jan 1999' 'Mar 2003' 'May 1993' 'Oct 2012'
 'Oct 1998' 'Feb 2007' 'Aug 2005' 'May 2007' 'Apr 1997' 'Aug 2002'
 'Dec 2010' 'Jan 2004' 'Nov 1998' 'Oct 1992' 'Jan 2002' 'May 1999'
 'Jan 1995' 'Sep 1999' 'May 2009' 'Sep 2005' 'May 2011' 'Aug 2013'
 'Mar 2012' 'Jan 2001' 'Nov 1999' 'Nov 2009' 'Dec 2004' 'Jan 2010'
 'Jun 2005' 'Jan 2008' 'Oct 2004' 'May 2001' 'Dec 2000' 'Mar 2000'
 'Apr 2004' 'Feb 2000' 'Aug 1991' 'Jan 1998' 'Feb 2003' 'May 1997'
 'Dec 1994' 'Jul 2000' 'Jun 1994' 'Jul 2002' 'Jun 1980' 'Nov 2000'
 'Jan 2003' 'Jul 2004' 'Mar 2001' 'Feb 1988' 'Aug 2001' 'Feb 1998'
 'Aug 1998' 'Oct 1995' 'Apr 1999' 'Jun 2001' 'Nov 2001' 'Jul 2001'
 'Jan 1993' 'Jan 1997' 'Apr 2000' 'Feb 1995' 'Jul 1995' 'Feb 1996'
 'Mar 2002' 'Dec 1997' 'Feb 2002' 'May 2000' 'Mar 1999' 'Nov 1996'
 'Apr 1996' 'Aug 1992' 'Feb 1999' 'May 2002' 'Jun 1996' 'Dec 1998'
 'May 1991' 'Mar 1986' 'Sep 1997' 'Nov 1993' 'Apr 1990' 'Jul 1992'
 'Nov 1991' 'Sep 1987' 'May 1996' 'Sep 1996' 'Apr 2003' 'Dec 1999'
 'Jul 1999' 'May 1998' 'Jun 1988' 'Jun 1995' 'Feb 1997' 'Jan 1988'
 'Oct 1999' 'Jul 2024' 'Jul 1996' 'Jun 1990' 'Oct 1991' 'Nov 1994'
 'Sep 1991' 'Sep 1994' 'Jun 2024' 'Aug 1990' 'Mar 1998' 'Apr 2024'
 'Mar 2024' 'Sep 2024' 'May 2024' 'Aug 2000' 'Mar 1993' 'Jun 1999'
 'Nov 1997' 'Sep 1998' 'Nov 2024' 'Jan 1996' 'Nov 1992' 'Jul 1994'
 'May 1995' 'Feb 1993' 'Dec 1992' 'Dec 1991' 'Aug 2024' 'Oct 2024'
 'Feb 2025' 'Jan 2025' 'Mar 1992' 'Apr 1994' 'Dec 1995' 'Jun 1997'
 'Apr 1992' 'Oct 1993' 'Jun 1998' 'Oct 1988' 'Apr 1989' 'Aug 1986'
 'Mar 1991' 'Nov 1990' 'Sep 1992' 'Aug 1994' 'Jan 1989' 'Aug 1993'
 'May 1992' 'Mar 1994' 'Dec 1993' 'Jan 1994' 'May 1990' 'Jun 1989'
 'Jan 1990' 'Dec 1990' 'Dec 1989' 'Nov 1989' 'Jan 1986' 'Aug 1989'
 'Aug 1996' 'Mar 1995' 'Sep 1995' 'Nov 1995' 'Oct 1997' 'Jul 1989'
 'Sep 1989' 'Jan 1991' 'Jun 1986' 'Jun 1993' 'Jun 1992']

Unique values in 'num_of_author' column:
[ 1  2  3  4  7  5  6 10  9 11  8 16  0 13 17 12 14 19 24 15 20 18 59 22
 30]

Unique values in 'width' column:
[97]

Unique values in 'height' column:
[150]

In [8]:
# make a list of the variables that contain missing values
na_var = [var for var in df.columns if df[var].isnull().sum() > 0]

# determining percentage of missing values (expressed as decimals)
# and display the result ordered by % of missing data
df[na_var].isnull().mean().sort_values(ascending = False) * 100
Out[8]:
edition_num    90.965241
s_tile         33.343336
description    14.023506
price           0.272568
author          0.022506
dtype: float64

Now we can clearly identify that the 'edition_num', 's_title', 'description', 'price' and 'author' columns have a considerable amount of missing values.

Let's drop 's_title' column to filter out the corrupted data as it won't add any value to our data.

rohans' comment¶

Now we can clearly identify that the 'edition_num', 's_title', 'description', 'price' and 'author' columns have a considerable amount of missing values.

Let's drop 's_title' column to filter out the corrupted data as it won't add any value to our data.

Handling NAN's:

  • We decide on dropping 's_title' as it is not conveying any significant information that can be analysed.
  • Since 'discription' wont be used for modeling, we consider to keep this column to use it for text data analysis.
  • 'Price' is a singnificant column for our modeling, as the number of missing values is very low. we can either discard them or for sake of preserving information we chose to impute the values with the average price. this way we are not over populating the column with false data and still driving meaning out of the feature
  • for 'author' we consider to drop the records with no authors as they are very less to impact the results of our modeling approach.
In [9]:
# Handling Missing Data: Price:
df['price'] = df['price'].fillna(value = df['price'].mean())
In [10]:
# Handline Missing Data: Author
df.dropna(subset=['author'],inplace=True)
In [11]:
# Let's drop the columns with missing values
df.drop(columns = ['s_tile'], inplace = True)
In [12]:
# checking again for null or missing values
df.isnull().sum()
Out[12]:
Title                0
id                   0
price                0
author               0
publisher            0
pub_year             0
edition_num      36368
description       5600
availabe             0
sale_date            0
short_pub            0
num_of_author        0
width                0
height               0
dtype: int64

Here:

  • we notice that columns which are considered significant features are now complete and have no NAN values in them.
  • the columns that containing nan values are to be ignored.
In [13]:
df.isnull().sum().sum()
Out[13]:
41968
In [14]:
# Displaying the number of duplicated rows
print("Number of duplicated rows:", df[df.duplicated()].shape[0])
Number of duplicated rows: 9153
In [15]:
# Visualizing some duplicated rows
df[df.duplicated()].head()
Out[15]:
Title id price author publisher pub_year edition_num description availabe sale_date short_pub num_of_author width height
30 Getting Started with Processing 2208258 14.99000 Casey Reas Make Community, LLC 2015 (2nd ed.) Processing opened up the world of programming ... True 2015-09-09T00:00:00 Sep 2015 2 97 150
60 REST API Design Rulebook 801433 10.99000 Mark Masse O'Reilly Media 2011 NaN In today’s market, where rival web services co... True 2011-10-18T00:00:00 Oct 2011 1 97 150
90 (ISC)2 CISSP Certified Information Systems Sec... 210320755 50.00000 Mike Chapple Wiley 2021 (3rd ed.) Full-length practice tests covering all CISSP ... True 2021-06-16T00:00:00 Jun 2021 2 97 150
140 Fluent C 210689032 71.99000 Christopher Preschern O'Reilly Media 2022 NaN Expert advice on C programming is hard to find... True 2022-10-17T00:00:00 Oct 2022 1 97 150
180 CISSP All-in-One Exam Guide, Ninth Edition 210393469 94.28335 Fernando Maymi McGraw Hill LLC 2021 (9th ed.) A new edition of Shon Harris’ bestselling exam... True 2021-11-12T00:00:00 Nov 2021 2 97 150
In [16]:
# Let's get rid of duplicate entries

df.drop_duplicates(keep = 'first', inplace = True)

# Again check the dataset shape, after removing the duplicate entries

print(f'\033[94mNumber of records (rows) in the dataset are: {df.shape[0]}')
print(f'\033[94mNumber of features (columns) in the dataset are: {df.shape[1]}')
Number of records (rows) in the dataset are: 30828
Number of features (columns) in the dataset are: 14

We can notice that we have eliminated 24 duplicated rows.

Now, let's identify our numerical and categorical variables so we can perform further text preprocessing upon them.

In [17]:
# Show columns names
df.columns
Out[17]:
Index(['Title', 'id', 'price', 'author', 'publisher', 'pub_year',
       'edition_num', 'description', 'availabe', 'sale_date', 'short_pub',
       'num_of_author', 'width', 'height'],
      dtype='object')
In [18]:
num_columns = [col for col in df.columns if df[col].dtypes != 'O']
cat_columns = [col for col in df.columns if df[col].dtypes == 'O']

print("Number of Numerical Features:   ", len(num_columns))
print("Numerical Features:   ", end = '')
print(num_columns)
print("\nNumber of Categorical Features:   ", len(cat_columns))
print("Categorical Features: ", end = '')
print(cat_columns)
Number of Numerical Features:    7
Numerical Features:   ['id', 'price', 'pub_year', 'availabe', 'num_of_author', 'width', 'height']

Number of Categorical Features:    7
Categorical Features: ['Title', 'author', 'publisher', 'edition_num', 'description', 'sale_date', 'short_pub']

Let's start Text Preprocessing on 'categorical' variables¶

Creating Functions for Text cleansing:¶

  • removal of emojis
  • conversion of float to string (if text data has float value)
  • convert to lower case.
  • length of the Text.
  • usernames removal if there's any
  • removing Digits.
  • removing all single characters
  • punctuation and special characters removal
  • convert more than 2 letter repetitions to 2 letter
  • removing meaningless words

Function to handle emoji classification (if there is any in text)

In [19]:
def emoji(title_data):
    title_data = re.sub(r'(:\s?\)|:-\)|\(\s?:|\(-:|:\'\)|:O)', ' positiveemoji ', title_data)
    title_data = re.sub(r'(:\s?D|:-D|x-?D|X-?D)', ' positiveemoji ', title_data)
    title_data = re.sub(r'(<3|:\*)', ' positiveemoji ', title_data)
    title_data = re.sub(r'(;-?\)|;-?D|\(-?;|@-\))', ' positiveemoji ', title_data)
    title_data = re.sub(r'(:\s?\(|:-\(|\)\s?:|\)-:|:-/|:-\|)', ' negetiveemoji ', title_data)
    title_data = re.sub(r'(:,\(|:\'\(|:"\()', ' negetiveemoji ', title_data)
    return title_data

Function to clean the 'title' and 'description' column

In [20]:
def process_title(title_data):
    if isinstance(title_data, float):                       # Convert float to string if title_data has a float value
        title_data = "{:.2f}".format(title_data)            # Adjust the precision as needed
    else:
        title_data = str(title_data)
    title_data = title_data.lower()                                             # Lowercases the string
    title_data = re.sub('@[^\s]+', '', title_data)                              # Removes usernames
    title_data = re.sub('((www\.[^\s]+)|(https?://[^\s]+))', ' ', title_data)   # Remove URLs
    title_data = re.sub(r"\d+", " ", str(title_data))                           # Removes all digits
    title_data = re.sub('&quot;'," ", title_data)                               # Remove (&quot;) 
    title_data = emoji(title_data)                                              # Replaces Emojis
    title_data = re.sub(r"\b[a-zA-Z]\b", "", str(title_data))                   # Removes all single characters
    title_data = re.sub(r"[^\w\s]", " ", str(title_data))                       # Removes all punctuations
    title_data = re.sub(r'(.)\1+', r'\1\1', title_data)                         # Convert more than 2 letter repetitions to 2 letter
    title_data = re.sub(r"\s+", " ", str(title_data))                           # Replaces double spaces with single space    
    return title_data

Function to check if the spelling is correct or not

In [21]:
def remove_meaningless(df, col):
      df[col] = df[col].apply(lambda x: TextBlob(x).correct())

Function to check stopwords as well as remove them

In [22]:
s_words = list(stopwords.words('english'))
from collections import Counter
c = Counter()

extra_s= ["what", "us", "this", "well", "there", "much", "us", "and", "you're", "in", "where", "when"," just", "how", "is",
          "ha", "re", "are", "hi", "aren't", 'couldn', 'could', 'couldnt', "couldn't", 'did', 'had', 'have', 'must', 'does',
          'should', 'was', "it's", "didn't", "doesn't", "don't", "hadn't", "hasn't", "haven't", "isn't", 'let', 'll', "may",
          'were', 'is', 'has', 'must', 'mustn', 'rt', 'shan', 'shouldn', 'wasn', 'weren', 'won', 'wouldn', 'realli', 'now',
          'got', 'man', 'people', 'a', 'becaus', 'caus', "one", "im", "guy", "someone", "two", 'read', "nearby", "i", "he's",
          "she's", "we", "it", "they", "wouldn’t", "i've", 'aren', 'didn', 'doesn', 'don', 'hadn', 'hasn', 'star', 'haven', 'isn','great', 'subscription', 'sdidn', 've']

stop_words = list(STOPWORDS) + list(s_words) + list(extra_s)

def remove_stopwords(df, column):
      df[column] = df[column].apply(lambda x: ' '.join([word for word in x.split() if word.lower() not in stop_words ]))

Adding new columns to our original data¶

In [23]:
df['processed_title'] = np.vectorize(process_title)(df['Title'])
In [24]:
df.head(2)
Out[24]:
Title id price author publisher pub_year edition_num description availabe sale_date short_pub num_of_author width height processed_title
0 Learning Go 211190367 71.99 Jon Bodner O'Reilly Media 2024 (2nd ed.) Go has rapidly become the preferred language f... True 2024-01-10T00:00:00 Jan 2024 1 97 150 learning go
1 Tidy First? 211127822 42.99 Kent Beck O'Reilly Media 2023 NaN Tidying up messy software is a must. And that ... True 2023-10-17T00:00:00 Oct 2023 1 97 150 tidy first
In [25]:
df['processed_description'] = np.vectorize(process_title)(df['description'])
In [26]:
remove_stopwords(df = df, column = 'processed_description')
In [27]:
df.head(2)
Out[27]:
Title id price author publisher pub_year edition_num description availabe sale_date short_pub num_of_author width height processed_title processed_description
0 Learning Go 211190367 71.99 Jon Bodner O'Reilly Media 2024 (2nd ed.) Go has rapidly become the preferred language f... True 2024-01-10T00:00:00 Jan 2024 1 97 150 learning go go rapidly become preferred language building ...
1 Tidy First? 211127822 42.99 Kent Beck O'Reilly Media 2023 NaN Tidying up messy software is a must. And that ... True 2023-10-17T00:00:00 Oct 2023 1 97 150 tidy first tidying messy software means breaking code mak...
In [28]:
# Removing the hyphen from the 'short_pub' column's values
df['short_pub'] = df['short_pub'].str.replace('-', ' ')
In [29]:
df.head(2)
Out[29]:
Title id price author publisher pub_year edition_num description availabe sale_date short_pub num_of_author width height processed_title processed_description
0 Learning Go 211190367 71.99 Jon Bodner O'Reilly Media 2024 (2nd ed.) Go has rapidly become the preferred language f... True 2024-01-10T00:00:00 Jan 2024 1 97 150 learning go go rapidly become preferred language building ...
1 Tidy First? 211127822 42.99 Kent Beck O'Reilly Media 2023 NaN Tidying up messy software is a must. And that ... True 2023-10-17T00:00:00 Oct 2023 1 97 150 tidy first tidying messy software means breaking code mak...

Feature Engineering¶

In [30]:
# Define the bins for price ranges
bins = [0, 100, 500, 1000, 1500, 2000, 2500]

# Create labels for the bins
labels = ['0-100', '101-500', '501-1000', '1001-1500', '1501-2000', '2001-2500']

# Create a new column with the bin labels based on the 'price' column
df['price_range'] = pd.cut(df['price'], bins = bins, labels = labels, right = False)
In [31]:
df.price_range.value_counts().sort_values()
Out[31]:
2001-2500        1
1001-1500        2
1501-2000        2
501-1000        42
101-500       7206
0-100        23575
Name: price_range, dtype: int64
In [32]:
# converting the 'sale_date' column to datetime format
df['sale_date'] = pd.to_datetime(df['sale_date'])

# extracting the time components from the 'sale_date' feature
# df['hours'] = df['sale_date'].dt.hour
# df['minutes'] = df['sale_date'].dt.minute
# df['seconds'] = df['sale_date'].dt.second
In [33]:
# Extracting date, month and year of publication to have a better understanding of the dataset
df['month_of_sale'] = df['sale_date'].dt.month
df['date_of_sale'] = df['sale_date'].dt.day
df['year_of_sale'] = df['sale_date'].dt.year
In [34]:
df.head(2)
Out[34]:
Title id price author publisher pub_year edition_num description availabe sale_date short_pub num_of_author width height processed_title processed_description price_range month_of_sale date_of_sale year_of_sale
0 Learning Go 211190367 71.99 Jon Bodner O'Reilly Media 2024 (2nd ed.) Go has rapidly become the preferred language f... True 2024-01-10 Jan 2024 1 97 150 learning go go rapidly become preferred language building ... 0-100 1 10 2024
1 Tidy First? 211127822 42.99 Kent Beck O'Reilly Media 2023 NaN Tidying up messy software is a must. And that ... True 2023-10-17 Oct 2023 1 97 150 tidy first tidying messy software means breaking code mak... 0-100 10 17 2023
In [35]:
# round off the 'price' column to two decimal places
df['updated_price'] = df['price'].round(2)
In [36]:
df.head(2)
Out[36]:
Title id price author publisher pub_year edition_num description availabe sale_date ... num_of_author width height processed_title processed_description price_range month_of_sale date_of_sale year_of_sale updated_price
0 Learning Go 211190367 71.99 Jon Bodner O'Reilly Media 2024 (2nd ed.) Go has rapidly become the preferred language f... True 2024-01-10 ... 1 97 150 learning go go rapidly become preferred language building ... 0-100 1 10 2024 71.99
1 Tidy First? 211127822 42.99 Kent Beck O'Reilly Media 2023 NaN Tidying up messy software is a must. And that ... True 2023-10-17 ... 1 97 150 tidy first tidying messy software means breaking code mak... 0-100 10 17 2023 42.99

2 rows × 21 columns

In [37]:
# creating a new column 'edition' which will have only only book's edition number
df['edition'] = df['edition_num'].str.extract(r'(\d+)')
In [38]:
df.head(2)
Out[38]:
Title id price author publisher pub_year edition_num description availabe sale_date ... width height processed_title processed_description price_range month_of_sale date_of_sale year_of_sale updated_price edition
0 Learning Go 211190367 71.99 Jon Bodner O'Reilly Media 2024 (2nd ed.) Go has rapidly become the preferred language f... True 2024-01-10 ... 97 150 learning go go rapidly become preferred language building ... 0-100 1 10 2024 71.99 2
1 Tidy First? 211127822 42.99 Kent Beck O'Reilly Media 2023 NaN Tidying up messy software is a must. And that ... True 2023-10-17 ... 97 150 tidy first tidying messy software means breaking code mak... 0-100 10 17 2023 42.99 NaN

2 rows × 22 columns

IRRELEVANT just experimenting¶

Creating an affordability column, based on subjective judgement.

In [39]:
df.updated_price.describe()
Out[39]:
count    30828.000000
mean        87.497879
std         69.133299
min          0.000000
25%         49.990000
50%         72.640000
75%         94.440000
max       2353.370000
Name: updated_price, dtype: float64

insight¶

- Most of the books price falls under 95 dollars, (75 percentile)

- 95 percent of the books fall under the price of 270 dollars

- max value is 2353 dollars.

- average book costs around 87 dollars
In [40]:
df.price_range.value_counts().sort_values(ascending=False)
Out[40]:
0-100        23575
101-500       7206
501-1000        42
1001-1500        2
1501-2000        2
2001-2500        1
Name: price_range, dtype: int64
- judging by the frequency, price range of 60-80 is the most occured

- books of price range 300-600 and onwards are comparetively less.

- point to notice is that these ranges are scaled to match the frequencies, as there are books above 1000 dollars range,  but less in frequency   (count of 1-2 books)
In [41]:
# we can build a categorical feature where the feature describes the affordability of the book based on mean and frequency of prices.
# the feature has 3 values, 0: cheap; 1: average/affordable; 2: pricy
# the price ranges are: 0: <=60 $; 1: 60>=$,<=270$; 2: >270$

df['affordability'] = df['price'].apply(lambda x: 'Low price' if x <= 60 else ('Average price' if 60 <= x <= 270 else ('Over priced' if x >= 270 else None)))
In [42]:
# we notice some null values in the new feature as there are some records with missing price columns.
df['affordability'].isnull().sum()
Out[42]:
0
In [43]:
 df['affordability'].value_counts().sort_values(ascending=False)
Out[43]:
Average price    18608
Low price        11317
Over priced        903
Name: affordability, dtype: int64
In [44]:
# # lets visualize the new col
plt.figure(figsize=(10,6))
x = df['affordability'].value_counts().sort_values(ascending=False)
bars=sns.barplot(x=x.index,y=x.values,palette='Blues')

for bar in bars.patches:
    plt.annotate(str(bar.get_height()), xy=(bar.get_x() + bar.get_width() / 2, bar.get_height()), 
             xytext=(0, 1.25), 
             textcoords="offset points",
             ha='center', va='bottom')
    
plt.title('Count of affordability column')
plt.xlabel('Affordability')
plt.ylabel('Count of Books')
plt.xticks(rotation = 45) 
plt.grid(axis = 'y', linestyle = '--', alpha = 0.7)
plt.tight_layout()
plt.show()

Why a new col 'affordability'?

  • simplifying the model processing, by this approach we can reduce the distinct prices of the price range or the price columns and use it as a categorical feature that can help in clustering.
  • this approach is furitful in the encoding part (step-5) as this column will convey the information we want (price-range) and will be simple to encode by using label encoding

End of experimentation¶

In [45]:
#df.to_csv('preprocessed_data_40k.csv',index_label=False)

Step 3: Data Visualization¶

Let's explore the variables and find how they are distributed across our dataset.

Firstly, we gonna plot 'Book's Publication Distribution' as per 'Years'

In [46]:
# Count the occurrences of each year
yr_counts = df['pub_year'].value_counts().sort_index()

plt.figure(figsize = (10, 6))
plt.bar(yr_counts.index, yr_counts.values, color = 'skyblue')
plt.title('Publication Year Distribution')
plt.xlabel('Year')
plt.ylabel('Number of Publications')
plt.xticks(rotation = 45) 
plt.grid(axis = 'y', linestyle = '--', alpha = 0.7)
plt.tight_layout()
plt.show()
In [47]:
yr_counts
Out[47]:
1753     438
1980       1
1986       4
1987       1
1988       6
1989       9
1990      12
1991      15
1992      12
1993      22
1994      22
1995      31
1996      29
1997      39
1998      55
1999      67
2000     103
2001     143
2002     256
2003     324
2004     345
2005     452
2006     677
2007     647
2008     710
2009     749
2010     882
2011     973
2012    1315
2013    1889
2014    1760
2015    1902
2016    2080
2017    2232
2018    2284
2019    2047
2020    2065
2021    2058
2022    2350
2023    1485
2024     316
2025      21
Name: pub_year, dtype: int64
In [49]:
# Bar Plot
plt.figure(figsize = (12, 6))
b_plot = sns.countplot(x = 'pub_year', data = df)
b_plot.set_title('Publication Year Distribution (1753-2024)')
b_plot.set_xlabel('Year')
b_plot.set_ylabel('Number of Publications')
b_plot.set_xticklabels(b_plot.get_xticklabels(), rotation = 45, ha = 'right')
sns.despine()
In [50]:
plt.figure(figsize = (18, 7))
b_plot = sns.countplot(x = 'pub_year', data = df)
b_plot.set_title('Publication Year Distribution (1753-2024)', fontdict = {'fontsize': 22})
b_plot.set_xlabel('Year', fontdict = {'fontsize': 20})
b_plot.set_ylabel('Number of Publications', fontdict={'fontsize': 16})
b_plot.set_xticklabels(b_plot.get_xticklabels(), rotation = 45, ha = 'right')
sns.despine()

# Adding count values on top of each bar
for p in b_plot.patches:
    b_plot.annotate(f'{p.get_height()}', (p.get_x() + p.get_width() / 2., p.get_height()), ha = 'center', va = 'center', xytext = (0, 3), textcoords = 'offset points')

According to the book's publication year data,

  • the highest number of computer books were published in the year '2022' i.e., 2350, followed by 2285 in '2018'
  • only one book was published in two years (1980 and 1987)
  • However, 316 books were published till now in this year
  • Insignificant data for the year 2025 as it is yet to publish

Now, we will plot the 'number of books' belonging to the particular 'price' ranges

In [51]:
list(df['updated_price'])
Out[51]:
[71.99,
 42.99,
 96.99,
 67.99,
 53.86,
 80.81,
 53.86,
 42.99,
 67.99,
 84.99,
 84.99,
 71.99,
 84.99,
 74.99,
 84.99,
 71.99,
 84.99,
 84.99,
 71.99,
 84.99,
 58.99,
 71.99,
 84.99,
 49.99,
 84.99,
 59.99,
 84.99,
 74.99,
 84.99,
 14.99,
 79.99,
 84.99,
 84.99,
 71.99,
 56.99,
 76.91,
 71.99,
 71.99,
 27.99,
 6.99,
 59.99,
 84.99,
 84.99,
 71.99,
 84.99,
 59.99,
 52.07,
 67.99,
 59.99,
 96.99,
 71.99,
 57.13,
 84.99,
 67.99,
 71.99,
 59.99,
 63.99,
 63.99,
 10.99,
 64.09,
 49.99,
 71.99,
 71.99,
 71.99,
 16.99,
 71.99,
 67.35,
 59.99,
 71.99,
 84.99,
 71.99,
 74.99,
 84.99,
 59.99,
 59.99,
 71.99,
 71.99,
 71.99,
 71.99,
 71.99,
 71.99,
 80.99,
 48.48,
 48.48,
 59.99,
 11.99,
 71.99,
 50.0,
 67.99,
 71.99,
 76.0,
 74.99,
 71.99,
 63.99,
 49.99,
 71.99,
 59.99,
 71.99,
 98.55,
 71.99,
 45.99,
 42.99,
 64.64,
 59.99,
 71.99,
 71.99,
 49.99,
 71.99,
 47.99,
 80.81,
 84.99,
 56.99,
 71.99,
 13.99,
 102.01,
 32.99,
 84.99,
 71.99,
 35.99,
 71.99,
 71.99,
 71.99,
 84.99,
 96.99,
 59.99,
 66.0,
 53.86,
 59.99,
 71.99,
 63.99,
 88.0,
 71.99,
 80.81,
 71.99,
 71.99,
 71.99,
 71.99,
 41.74,
 84.99,
 71.99,
 79.99,
 49.99,
 6.99,
 71.99,
 84.99,
 38.99,
 23.99,
 84.99,
 32.99,
 71.99,
 84.99,
 71.99,
 84.99,
 71.99,
 12.99,
 84.99,
 49.99,
 71.99,
 71.99,
 59.99,
 59.99,
 71.99,
 59.99,
 71.99,
 71.99,
 71.99,
 53.99,
 84.99,
 71.99,
 72.73,
 67.99,
 96.98,
 58.99,
 25.99,
 78.0,
 94.28,
 106.99,
 43.09,
 63.99,
 55.99,
 84.99,
 84.99,
 71.99,
 96.99,
 71.99,
 67.99,
 16.99,
 53.86,
 71.99,
 55.99,
 79.99,
 72.73,
 35.99,
 79.99,
 59.99,
 78.0,
 27.99,
 67.99,
 24.99,
 71.99,
 59.99,
 40.99,
 44.99,
 71.99,
 63.99,
 71.99,
 39.99,
 35.99,
 35.99,
 83.32,
 54.0,
 55.99,
 52.99,
 27.99,
 29.99,
 68.1,
 84.99,
 43.09,
 43.09,
 71.99,
 88.13,
 62.0,
 63.99,
 96.99,
 84.99,
 59.99,
 50.99,
 51.99,
 39.99,
 60.0,
 65.99,
 74.07,
 71.99,
 50.99,
 5.99,
 20.99,
 71.99,
 40.39,
 53.99,
 63.99,
 53.99,
 50.99,
 45.99,
 71.96,
 48.48,
 84.99,
 71.99,
 84.99,
 56.99,
 44.99,
 53.86,
 56.99,
 71.99,
 32.99,
 53.86,
 71.99,
 64.27,
 59.99,
 71.99,
 79.99,
 96.99,
 71.99,
 84.99,
 76.11,
 71.99,
 67.99,
 64.64,
 48.99,
 71.99,
 71.99,
 84.99,
 71.99,
 96.99,
 96.99,
 53.86,
 84.99,
 54.99,
 53.99,
 71.99,
 84.99,
 71.99,
 80.8,
 71.99,
 84.99,
 67.99,
 72.0,
 71.99,
 44.99,
 84.99,
 59.99,
 71.99,
 40.99,
 96.99,
 71.99,
 71.99,
 49.99,
 67.99,
 71.99,
 84.86,
 40.99,
 39.99,
 44.99,
 23.99,
 84.99,
 67.99,
 84.99,
 53.99,
 35.99,
 84.99,
 84.99,
 76.0,
 44.99,
 59.99,
 14.99,
 71.99,
 48.48,
 56.07,
 80.81,
 71.99,
 47.99,
 79.99,
 62.0,
 25.99,
 84.99,
 63.99,
 29.99,
 84.99,
 84.99,
 34.99,
 51.99,
 17.99,
 43.09,
 59.99,
 71.99,
 60.99,
 43.09,
 54.99,
 15.99,
 49.99,
 68.1,
 72.73,
 84.99,
 84.99,
 38.99,
 48.99,
 53.66,
 47.13,
 35.99,
 71.99,
 46.99,
 71.99,
 59.99,
 31.99,
 67.99,
 44.99,
 69.7,
 20.99,
 59.25,
 32.99,
 53.86,
 84.99,
 84.99,
 52.99,
 32.66,
 67.99,
 43.95,
 71.96,
 56.99,
 73.99,
 25.99,
 59.99,
 71.99,
 40.39,
 84.99,
 71.99,
 85.54,
 64.99,
 84.99,
 89.99,
 15.99,
 56.99,
 26.99,
 71.99,
 45.99,
 53.99,
 96.91,
 33.95,
 53.99,
 63.82,
 59.99,
 58.99,
 29.99,
 71.99,
 59.99,
 46.95,
 72.72,
 56.99,
 31.99,
 35.99,
 31.99,
 66.67,
 48.99,
 68.99,
 29.99,
 87.44,
 53.86,
 71.99,
 71.99,
 71.99,
 67.99,
 75.41,
 58.99,
 83.3,
 29.99,
 53.86,
 96.96,
 59.99,
 71.99,
 71.99,
 53.99,
 66.49,
 84.99,
 48.99,
 55.99,
 27.99,
 49.99,
 56.99,
 49.99,
 26.99,
 47.99,
 54.99,
 62.99,
 84.99,
 64.64,
 84.99,
 67.99,
 32.99,
 47.99,
 44.99,
 47.99,
 56.99,
 44.99,
 7.99,
 104.99,
 76.0,
 10.99,
 56.99,
 68.1,
 53.99,
 94.28,
 48.49,
 71.99,
 59.99,
 106.39,
 71.96,
 45.99,
 54.99,
 22.99,
 37.99,
 50.0,
 19.83,
 29.99,
 90.92,
 64.64,
 33.99,
 29.99,
 16.99,
 35.99,
 74.07,
 56.95,
 72.73,
 7.99,
 27.99,
 32.31,
 31.99,
 25.99,
 68.1,
 76.11,
 53.99,
 80.81,
 71.99,
 75.41,
 71.99,
 84.99,
 45.99,
 50.99,
 50.99,
 63.82,
 60.61,
 96.99,
 72.64,
 12.99,
 67.99,
 56.99,
 55.99,
 44.99,
 31.99,
 56.99,
 13.99,
 35.99,
 52.99,
 36.95,
 35.99,
 62.99,
 43.99,
 106.57,
 36.0,
 72.73,
 80.81,
 80.81,
 16.99,
 37.7,
 70.03,
 84.99,
 71.99,
 45.99,
 40.99,
 71.99,
 71.99,
 53.99,
 40.99,
 50.99,
 50.99,
 71.9,
 84.93,
 153.86,
 27.99,
 72.73,
 34.99,
 52.99,
 94.0,
 60.61,
 48.48,
 53.86,
 25.99,
 44.99,
 62.99,
 17.99,
 25.99,
 35.99,
 60.91,
 83.3,
 39.22,
 33.99,
 44.99,
 68.1,
 40.04,
 146.95,
 60.0,
 47.99,
 74.07,
 71.99,
 71.99,
 84.99,
 56.99,
 26.99,
 71.99,
 25.99,
 16.99,
 21.95,
 17.99,
 47.99,
 55.99,
 27.99,
 33.41,
 69.7,
 7.99,
 50.91,
 70.0,
 72.73,
 58.99,
 94.28,
 64.64,
 80.8,
 49.99,
 26.99,
 20.99,
 35.99,
 22.99,
 27.99,
 25.99,
 31.99,
 31.99,
 34.99,
 59.25,
 45.99,
 35.99,
 36.99,
 49.99,
 14.99,
 40.84,
 98.55,
 89.0,
 65.99,
 53.88,
 72.73,
 67.35,
 70.03,
 31.99,
 71.99,
 23.99,
 29.99,
 71.99,
 47.46,
 141.12,
 44.99,
 34.99,
 42.99,
 40.99,
 19.95,
 22.99,
 19.99,
 13.99,
 130.62,
 83.32,
 19.95,
 69.7,
 43.99,
 53.86,
 72.0,
 40.99,
 72.73,
 64.09,
 47.28,
 59.99,
 27.99,
 35.99,
 92.14,
 72.73,
 35.99,
 47.99,
 29.99,
 49.99,
 49.99,
 37.7,
 43.09,
 51.99,
 39.99,
 15.99,
 44.99,
 44.99,
 76.5,
 33.99,
 46.95,
 64.64,
 35.99,
 11.99,
 40.99,
 33.99,
 49.99,
 55.99,
 85.54,
 19.96,
 4.23,
 80.63,
 25.99,
 76.11,
 60.88,
 77.99,
 47.95,
 71.99,
 71.99,
 80.81,
 67.35,
 48.49,
 66.67,
 74.08,
 54.55,
 84.99,
 64.64,
 31.99,
 31.99,
 84.99,
 39.99,
 33.99,
 35.99,
 83.3,
 195.54,
 107.7,
 106.39,
 34.0,
 49.99,
 49.99,
 62.99,
 47.99,
 40.99,
 40.99,
 55.99,
 71.96,
 71.96,
 36.65,
 85.54,
 71.96,
 77.39,
 77.39,
 97.99,
 54.99,
 62.99,
 52.99,
 19.99,
 63.99,
 35.7,
 3.99,
 8.99,
 11.99,
 8.99,
 91.58,
 14.95,
 60.61,
 47.99,
 75.31,
 38.79,
 18.95,
 41.22,
 80.75,
 57.67,
 34.99,
 26.99,
 71.4,
 31.99,
 17.99,
 62.9,
 67.99,
 84.84,
 67.33,
 56.99,
 40.99,
 42.99,
 44.99,
 35.99,
 49.99,
 74.08,
 50.84,
 16.95,
 78.52,
 96.15,
 32.99,
 88.0,
 59.99,
 40.99,
 53.86,
 67.99,
 31.99,
 71.4,
 50.99,
 40.99,
 74.07,
 39.99,
 39.99,
 35.99,
 26.99,
 40.99,
 49.99,
 26.99,
 27.99,
 16.99,
 61.2,
 88.4,
 49.99,
 39.99,
 49.99,
 15.99,
 63.82,
 50.23,
 72.64,
 27.99,
 15.99,
 50.79,
 78.52,
 60.88,
 116.99,
 46.45,
 83.32,
 60.88,
 256.95,
 347.95,
 50.0,
 155.99,
 49.99,
 83.99,
 138.95,
 150.95,
 36.99,
 37.99,
 234.0,
 80.81,
 72.73,
 60.61,
 35.99,
 84.99,
 40.99,
 43.09,
 53.86,
 37.7,
 43.09,
 53.86,
 70.03,
 53.86,
 53.86,
 32.31,
 96.98,
 64.64,
 20.99,
 71.99,
 84.99,
 53.99,
 23.99,
 71.99,
 49.99,
 12.95,
 25.99,
 32.99,
 13.99,
 71.99,
 39.99,
 35.99,
 34.99,
 49.99,
 42.51,
 9.9,
 81.62,
 35.99,
 81.62,
 76.5,
 45.99,
 50.99,
 42.99,
 46.99,
 50.99,
 55.99,
 53.99,
 50.99,
 49.99,
 42.99,
 52.99,
 33.99,
 55.99,
 49.99,
 44.99,
 49.99,
 49.99,
 44.99,
 66.99,
 47.99,
 40.99,
 71.96,
 85.54,
 71.96,
 77.39,
 63.82,
 85.54,
 54.3,
 77.39,
 90.98,
 85.54,
 63.82,
 85.54,
 36.65,
 77.39,
 54.3,
 77.39,
 71.96,
 77.39,
 77.39,
 77.39,
 71.96,
 71.96,
 85.54,
 72.64,
 36.31,
 116.23,
 232.48,
 87.17,
 58.11,
 217.95,
 63.82,
 174.99,
 45.99,
 109.99,
 39.99,
 5.37,
 7.99,
 79.91,
 87.17,
 26.92,
 52.99,
 52.95,
 52.99,
 87.44,
 32.99,
 59.99,
 56.99,
 57.99,
 52.99,
 19.99,
 44.99,
 30.99,
 29.05,
 203.42,
 18.84,
 27.12,
 31.23,
 82.75,
 204.05,
 6.99,
 53.0,
 67.33,
 7.99,
 48.42,
 3.99,
 80.8,
 80.75,
 87.44,
 9.99,
 13.99,
 87.44,
 87.44,
 12.99,
 50.99,
 24.99,
 17.44,
 6.99,
 37.99,
 37.99,
 4.99,
 46.99,
 41.99,
 6.99,
 52.99,
 54.99,
 9.95,
 13.99,
 50.99,
 61.99,
 6.99,
 45.99,
 11.99,
 84.99,
 43.95,
 64.27,
 53.99,
 71.99,
 71.99,
 67.99,
 72.73,
 64.64,
 58.99,
 48.99,
 32.31,
 71.99,
 43.09,
 43.09,
 72.0,
 72.0,
 80.81,
 96.0,
 56.99,
 43.09,
 48.48,
 43.09,
 71.99,
 48.48,
 48.48,
 59.25,
 84.99,
 27.99,
 84.0,
 57.13,
 37.7,
 43.09,
 43.09,
 48.48,
 59.99,
 64.64,
 59.25,
 59.99,
 37.71,
 84.99,
 84.99,
 59.99,
 56.99,
 67.35,
 84.99,
 84.99,
 33.35,
 71.99,
 69.0,
 194.99,
 70.03,
 50.99,
 59.99,
 53.86,
 53.86,
 43.09,
 81.72,
 31.95,
 71.99,
 48.48,
 64.64,
 65.38,
 ...]
In [52]:
print(min(df['updated_price']))
print(max(df['updated_price']))
0.0
2353.37
In [53]:
# defining the bins for distinct price ranges
pr_bins = [0, 100, 500, 1000, 1500, 2000, 2500]

# creating labels for the bins
pr_labels = ['0-100', '101-500', '501-1000', '1001-1500', '1501-2000', '2001-2500']

# creating a new column with the bin labels based on the 'price' column
df['price_range'] = pd.cut(df['price'], bins = pr_bins, labels = pr_labels, right = False)

# grouping by price range and count the occurrences
pr_count = df['price_range'].value_counts().sort_index()

# finally, plotting the bar graph
plt.figure(figsize = (10, 6))
bars = plt.bar(pr_count.index, pr_count.values, color = '#40E0D6')
plt.title('Price Range Distribution', fontdict = {'fontsize': 20})
plt.xlabel('Price Range', fontdict = {'fontsize': 18})
plt.ylabel('Number of Products', fontdict = {'fontsize': 16})
plt.xticks(rotation = 0)
plt.grid(axis = 'y', linestyle = '--', alpha = 0.7)

# adding the count values on top of each bar
for bar in bars:
    yval = bar.get_height()
    plt.text(bar.get_x() + bar.get_width() / 2, yval, int(yval), va = 'bottom', ha = 'center')

plt.tight_layout()
plt.show()
In [54]:
pr_bins = [0, 20, 40, 60, 80, 100, 300, 600]
pr_labels = ['0-20', '20-40', '40-60', '60-80', '80-100', '100-300', '300-600']
df['price_range'] = pd.cut(df['price'], bins = pr_bins, labels = pr_labels, right = False)
pr_counts = df['price_range'].value_counts().sort_index()
plt.figure(figsize = (10, 6))
plt.bar(pr_counts.index, pr_counts.values, color = '#00E676')
plt.title('Price Range Distribution', fontdict = {'fontsize': 20})
plt.xlabel('Price Range', fontdict = {'fontsize': 18})
plt.ylabel('Number of Products', fontdict = {'fontsize': 16})
plt.xticks(rotation = 0)
plt.grid(axis = 'y', linestyle = '--', alpha = 0.7)
plt.tight_layout()
plt.show()
In [56]:
colors = ['#FF5733', "#c7e9b4", '#EE98AA', '#40E0D0', '#9B59B6', '#FFC300', '#00E676']
plt.figure(figsize = (10, 6))
bars = plt.bar(pr_count.index, pr_count.values, color = colors)
plt.title('Price Range Distribution', fontdict = {'fontsize': 20})
plt.xlabel('Price Range', fontdict = {'fontsize': 18})
plt.ylabel('Number of Products', fontdict = {'fontsize': 16})
plt.xticks(rotation = 0)
plt.grid(axis = 'y', linestyle = '--', alpha = 0.6)

for bar in bars:
    yval = bar.get_height()
    plt.text(bar.get_x() + bar.get_width() / 2, yval, int(yval), va = 'bottom', ha = 'center')

plt.tight_layout()
plt.show()
<Figure size 1000x600 with 0 Axes>
  • We can notice that the majority of the books fall between the range of 60 - 80 dollars which is quite a good price to buy.

Lets check the 'availability status' of books

In [59]:
av_counts = df['availabe'].value_counts()

# creating the subplots
fig, (ax1, ax2) = plt.subplots(1, 2, figsize = (14, 6))

# plotting the bar graph
sns.barplot(x = av_counts.index, y = av_counts.values, ax = ax1)
ax1.set_title('Availability of Books (Count)', fontdict = {'fontsize': 17})
ax1.set_xlabel('Availability', fontdict = {'fontsize': 16})
ax1.set_ylabel('Count', fontdict = {'fontsize': 16})

# displaying count on top of each bar
for p in ax1.patches:
    ax1.annotate(f'{p.get_height()}', (p.get_x() + p.get_width() / 2., p.get_height()), ha = 'center', va = 'center', xytext = (0, 5), textcoords='offset points')

# plotting the pie chart
ax2.pie(av_counts.values, labels = av_counts.index, autopct = '%1.1f%%', startangle = 140)
ax2.set_title('Availability of Books (Percentage)', fontdict = {'fontsize': 17})

plt.tight_layout()
plt.show()

From our pie chart, we can see that almost all books are available as 99.2 % of books are in stock, whereas only 0.8 % are not available.

Let's do some analysis on our Top 10 authors as per their number of books published.

In [60]:
len(list(df['author'].unique()))
Out[60]:
20384
In [61]:
len(list(df['publisher'].unique()))
Out[61]:
194
In [62]:
df['publisher'].value_counts()
Out[62]:
Springer International Publishing    8432
Packt Publishing                     3923
Apress                               3061
CRC Press                            2719
Springer Berlin Heidelberg           2350
                                     ... 
TeeBooks                                1
Stonesong Digital LLC                   1
Tsunami Productions                     1
NYU Press                               1
University of Chicago Press             1
Name: publisher, Length: 194, dtype: int64
In [63]:
df['author'].value_counts()
Out[63]:
Guy Hart-Davis           44
Paul McFedries           43
Michael R. Miller        43
Matthew MacDonald        41
Osvaldo Gervasi          38
                         ..
Gregory Kipper            1
Benjamin A. Lieberman     1
Reynolds M. Salerno       1
Jonathan S. Held          1
Jérôme Lang               1
Name: author, Length: 20384, dtype: int64
In [64]:
ar_counts = df['author'].value_counts().head(10)

colors = ['#4090D0','#C759B4', '#EE98AA', '#D2148C', '#FA5AD2','#FA9BD7', '#D81FD8','#F4A460','#F08080']

plt.figure(figsize = (10, 6))
bars = plt.bar(ar_counts.index, ar_counts.values, color = colors)
plt.title('Top 10 Authors by Number of Books Published', fontdict = {'fontsize': 16})
plt.xlabel('Author', fontdict = {'fontsize': 18})
plt.ylabel('Number of Books Published', fontdict = {'fontsize': 14})
plt.xticks(rotation = 45, ha = 'right')

for bar in bars:
    yval = bar.get_height()
    plt.text(bar.get_x() + bar.get_width() / 2, yval, int(yval), va='bottom', ha='center')

plt.tight_layout()
plt.show()

Now, Lets generate a bar plot showing the distribution of editions based on the counts.

In [65]:
df['edition'].unique()
Out[65]:
array(['2', nan, '3', '8', '5', '7', '6', '4', '9', '11', '12', '10',
       '22', '14', '13', '19', '18', '57', '15', '31', '16', '21'],
      dtype=object)
In [66]:
en_counts = df['edition'].value_counts()

colors = ['#FF5733', "#c7e9b4", '#EE98AA', '#40E0D0', '#9B59B6', '#FFC300', '#00E676']

plt.figure(figsize=(10, 6))
bars = plt.bar(en_counts.index, en_counts.values, color = colors)
plt.title("Book's Edition Distribution", fontdict = {'fontsize': 18})
plt.xlabel('Edition', fontdict = {'fontsize': 16})
plt.ylabel('Count', fontdict = {'fontsize': 16})
plt.xticks(rotation = 0, ha = 'right')

for bar in bars:
    yval = bar.get_height()
    plt.text(bar.get_x() + bar.get_width() / 2, yval, int(yval), va = 'bottom', ha = 'center')

plt.tight_layout()
plt.show()
  • Here, we can noticed that the majority of the books belong to 'Edition 2' which is 1653, followed by 'Edition 3' with count of 540.
  • However, just single book belong to edition numbers 22, 18, 57, 31, 16 and 21 respectively.

Lets visualize the top eight mostly used words in 'description' column

In [67]:
# Creating a counter to check most frequent words
from collections import Counter
c = Counter()
for txt in df.processed_description.values:
    for word in txt.split():
        c[word] += 1
c.most_common(8)
Out[67]:
[('book', 13426),
 ('conference', 6090),
 ('held', 5634),
 ('international', 5477),
 ('papers', 5104),
 ('proceedings', 5007),
 ('constitutes', 4834),
 ('data', 4648)]
In [68]:
list(c)
Out[68]:
['go',
 'rapidly',
 'become',
 'preferred',
 'language',
 'building',
 'web',
 'services',
 'plenty',
 'tutorials',
 'available',
 'teach',
 'syntax',
 'developers',
 'experience',
 'programming',
 'languages',
 'enough',
 'idioms',
 'end',
 'recreating',
 'patterns',
 'make',
 'sense',
 'context',
 'practical',
 'tidying',
 'messy',
 'software',
 'means',
 'breaking',
 'code',
 'readable',
 'using',
 'guard',
 'clauses',
 'helping',
 'functions',
 'understandable',
 'guide',
 'author',
 'kent',
 'beck',
 'creator',
 'extreme',
 'pioneer',
 'suggests',
 'might',
 'apply',
 'tidyings',
 'recent',
 'series',
 'breakthroughs',
 'deep',
 'learning',
 'boosted',
 'entire',
 'field',
 'machine',
 'even',
 'programmers',
 'know',
 'close',
 'nothing',
 'technology',
 'use',
 'simple',
 'efficient',
 'tools',
 'implement',
 'programs',
 'capable',
 'data',
 'bestselling',
 'book',
 'uses',
 'concrete',
 'examples',
 'minimal',
 'theory',
 'production',
 'ready',
 'center',
 'many',
 'challenges',
 'system',
 'design',
 'today',
 'difficult',
 'issues',
 'need',
 'figured',
 'scalability',
 'consistency',
 'reliability',
 'efficiency',
 'maintainability',
 'addition',
 'overwhelming',
 'variety',
 'including',
 'relational',
 'databases',
 'nosql',
 'datastores',
 'stream',
 'batch',
 'processors',
 'message',
 'brokers',
 'prepare',
 'microsoft',
 'exam',
 'ms',
 'help',
 'demonstrate',
 'real',
 'world',
 'mastery',
 'skills',
 'knowledge',
 'required',
 'deploy',
 'manage',
 'perform',
 'tenant',
 'level',
 'implementation',
 'administration',
 'cloud',
 'hybrid',
 'date',
 'mike',
 'meyers',
 'delivers',
 'complete',
 'coverage',
 'every',
 'topic',
 'version',
 'comptia',
 'network',
 'certification',
 'objectives',
 'inside',
 'comprehensive',
 'resource',
 'created',
 'edited',
 'leading',
 'expert',
 'training',
 'md',
 'protect',
 'modern',
 'endpoints',
 'scale',
 'environments',
 'designed',
 'endpoint',
 'administrators',
 'years',
 'companies',
 'rewarded',
 'effective',
 'engineers',
 'management',
 'positions',
 'treating',
 'default',
 'path',
 'engineer',
 'leadership',
 'ability',
 'serve',
 'industry',
 'staff',
 'allows',
 'contribute',
 'high',
 'role',
 'models',
 'driving',
 'big',
 'projects',
 'want',
 'build',
 'pages',
 'prior',
 'friendly',
 'perfect',
 'place',
 'start',
 'begin',
 'square',
 'work',
 'steadily',
 'create',
 'site',
 'multicolumn',
 'adapt',
 'mobile',
 'devices',
 'fabric',
 'lakehouse',
 'mesh',
 'recently',
 'appeared',
 'viable',
 'alternatives',
 'warehouse',
 'new',
 'architectures',
 'solid',
 'benefits',
 'surrounded',
 'lot',
 'hyperbole',
 'confusion',
 'provides',
 'guided',
 'tour',
 'architecture',
 'professionals',
 'understand',
 'pros',
 'engineering',
 'grown',
 'past',
 'decade',
 'leaving',
 'scientists',
 'analysts',
 'looking',
 'view',
 'practice',
 'learn',
 'plan',
 'systems',
 'needs',
 'organization',
 'customers',
 'evaluating',
 'best',
 'technologies',
 'adoption',
 'serverless',
 'rise',
 'little',
 'guidance',
 'development',
 'teams',
 'aws',
 'definitive',
 'packed',
 'architectural',
 'security',
 'practices',
 'architects',
 'reliable',
 'enterprise',
 'waste',
 'time',
 'bending',
 'python',
 'fit',
 'learned',
 'simplicity',
 'lets',
 'productive',
 'quickly',
 'often',
 'everything',
 'offer',
 'updated',
 'edition',
 'hands',
 'write',
 'leveraging',
 'questions',
 'net',
 'selling',
 'answers',
 'unusual',
 'flexibility',
 'breadth',
 'continual',
 'growth',
 'always',
 'tradition',
 'reilly',
 'nutshell',
 'guides',
 'thoroughly',
 'simply',
 'volume',
 'reference',
 'generative',
 'ai',
 'hottest',
 'tech',
 'teaches',
 'tensorflow',
 'keras',
 'impressive',
 'scratch',
 'variational',
 'autoencoders',
 'vaes',
 'adversarial',
 'networks',
 'gans',
 'transformers',
 'normalizing',
 'flows',
 'energy',
 'based',
 'harder',
 'developer',
 'chase',
 'changing',
 'technological',
 'trends',
 'business',
 'domains',
 'behind',
 'set',
 'core',
 'principles',
 'analyzing',
 'understanding',
 'strategy',
 'handbook',
 'manipulating',
 'processing',
 'cleaning',
 'crunching',
 'datasets',
 'pandas',
 'third',
 'case',
 'studies',
 'show',
 'solve',
 'broad',
 'analysis',
 'problems',
 'effectively',
 'latest',
 'versions',
 'good',
 'essential',
 'success',
 'project',
 'designing',
 'hard',
 'consequences',
 'decisions',
 'overview',
 'experienced',
 'thorough',
 'unparalleled',
 'organizations',
 'struggle',
 'balance',
 'requirements',
 'increasing',
 'volumes',
 'additionally',
 'demand',
 'large',
 'growing',
 'among',
 'competitive',
 'digital',
 'industries',
 'conventional',
 'task',
 'finops',
 'brings',
 'financial',
 'accountability',
 'variable',
 'spend',
 'model',
 'used',
 'majority',
 'global',
 'enterprises',
 'fringe',
 'activity',
 'de',
 'facto',
 'discipline',
 'managing',
 'authors',
 'storment',
 'fuller',
 'outline',
 'process',
 'culture',
 'psychology',
 'specifically',
 'users',
 'behave',
 'interact',
 'interfaces',
 'perhaps',
 'single',
 'valuable',
 'nondesign',
 'skill',
 'designer',
 'elegant',
 'fail',
 'forces',
 'conform',
 'instead',
 'working',
 'within',
 'blueprint',
 'humans',
 'perceive',
 'comes',
 'choosing',
 'maintaining',
 'database',
 'internals',
 'distributed',
 'offers',
 'differ',
 'alex',
 'petrov',
 'concepts',
 'foundation',
 'computation',
 'writing',
 'performance',
 'sensitive',
 'requires',
 'puts',
 'control',
 'memory',
 'processor',
 'resources',
 'rust',
 'combines',
 'type',
 'catches',
 'typescript',
 'typed',
 'superset',
 'javascript',
 'potential',
 'headaches',
 'famous',
 'curve',
 'take',
 'specific',
 'ways',
 'improve',
 'dan',
 'vanderkam',
 'interested',
 'material',
 'market',
 'seventh',
 'represents',
 'significant',
 'update',
 'information',
 'ecmascript',
 'chapters',
 'features',
 'conquered',
 'identified',
 'surveys',
 'fastest',
 'popular',
 'widely',
 'consumer',
 'across',
 'frequently',
 'credited',
 'massive',
 'applications',
 'exactly',
 'application',
 'creates',
 'whether',
 'consists',
 'log',
 'messages',
 'metrics',
 'user',
 'outgoing',
 'moving',
 'important',
 'kafka',
 'streaming',
 'platform',
 'handle',
 'continues',
 'evolve',
 'central',
 'longer',
 'scalable',
 'turning',
 'value',
 'paradigm',
 'shift',
 'way',
 'federate',
 'responsibilities',
 'others',
 'first',
 'class',
 'tool',
 'researchers',
 'primarily',
 'libraries',
 'storing',
 'gaining',
 'insight',
 'several',
 'exist',
 'individual',
 'pieces',
 'science',
 'stack',
 'ipython',
 'numpy',
 'matplotlib',
 'opened',
 'artists',
 'designers',
 'educators',
 'beginners',
 'short',
 'gently',
 'introduces',
 'computer',
 'written',
 'co',
 'founders',
 'reas',
 'fry',
 'getting',
 'started',
 'shows',
 'easy',
 'java',
 'usually',
 'tackle',
 'complexity',
 'object',
 'oriented',
 'oop',
 'problem',
 'match',
 'functional',
 'fp',
 'another',
 'approach',
 'solving',
 'grasp',
 'lambda',
 'expressions',
 'streams',
 'ideal',
 'apis',
 'fun',
 'compelling',
 'realistic',
 'marc',
 'loy',
 'patrick',
 'niemeyer',
 'leuck',
 'introduce',
 'fundamentals',
 'techniques',
 'eye',
 'parts',
 'force',
 'choose',
 'various',
 'compromises',
 'think',
 'critically',
 'trade',
 'offs',
 'involved',
 'veterans',
 'practicing',
 'grow',
 'popularity',
 'becoming',
 'larger',
 'complex',
 'taking',
 'interest',
 'hexagonal',
 'clean',
 'event',
 'driven',
 'strategic',
 'prescribed',
 'domain',
 'dd',
 'translating',
 'renowned',
 'experts',
 'foster',
 'provost',
 'tom',
 'fawcett',
 'fundamental',
 'walks',
 'analytic',
 'thinking',
 'necessary',
 'extracting',
 'useful',
 'collect',
 'helps',
 'greatly',
 'expanded',
 'introduction',
 'randomization',
 'probabilistic',
 'without',
 'slogging',
 'manuals',
 'head',
 'built',
 'structures',
 'app',
 'prime',
 'runs',
 'still',
 'wonder',
 'compiler',
 'throwing',
 'squiggly',
 'red',
 'lines',
 'enter',
 'cookbook',
 'stefan',
 'baumgartner',
 'senior',
 'solutions',
 'everyday',
 'quick',
 'tightly',
 'focused',
 'tells',
 'long',
 'intros',
 'bloated',
 'samples',
 'succinct',
 'browse',
 'pocket',
 'source',
 'earlier',
 'staring',
 'screen',
 'idea',
 'worry',
 'publisher',
 'lecturer',
 'trainer',
 'kevin',
 'wilson',
 'follow',
 'instructions',
 'photos',
 'illustrations',
 'helpful',
 'tips',
 'video',
 'demos',
 'extremely',
 'suited',
 'concurrency',
 'ecosystem',
 'include',
 'lots',
 'concurrent',
 'locks',
 'implementing',
 'correctly',
 'ordering',
 'bugs',
 'uncommon',
 'monolithic',
 'smaller',
 'self',
 'contained',
 'microservices',
 'fine',
 'grained',
 'developing',
 'host',
 'second',
 'takes',
 'holistic',
 'topics',
 'consider',
 'scaling',
 'unique',
 'method',
 'goes',
 'beyond',
 'programmer',
 'puzzles',
 'mysteries',
 'soul',
 'searching',
 'interviews',
 'excel',
 'remains',
 'ubiquitous',
 'feedback',
 'forums',
 'full',
 'requests',
 'scripting',
 'fact',
 'top',
 'feature',
 'requested',
 'makes',
 'combination',
 'felix',
 'zumstein',
 'xlwings',
 'open',
 'package',
 'automating',
 'reinvent',
 'wheel',
 'look',
 'lessons',
 'faced',
 'advantage',
 'something',
 'challenging',
 'detangle',
 'migrate',
 'microservice',
 'usual',
 'companion',
 'sam',
 'newman',
 'details',
 'proven',
 'transitioning',
 'existing',
 'extensively',
 'covers',
 'advanced',
 'haskell',
 'frameworks',
 'modules',
 'toolkits',
 'dive',
 'actually',
 'algorithms',
 'introducing',
 'beginning',
 'bill',
 'lubanovic',
 'basics',
 'varied',
 'mixing',
 'style',
 'recipes',
 'explain',
 'chapter',
 'exercises',
 'sophisticated',
 'page',
 'styling',
 'improved',
 'accessibility',
 'less',
 'effort',
 'expended',
 'revised',
 'fifth',
 'css',
 'along',
 'review',
 'specifications',
 'eric',
 'meyer',
 'estelle',
 'weyl',
 'methods',
 'construction',
 'following',
 'presents',
 'philosophy',
 'creating',
 'handy',
 'already',
 'textbook',
 'supports',
 'bcs',
 'certificate',
 'constantly',
 'providing',
 'constant',
 'paradigms',
 'incremental',
 'developments',
 'foundations',
 'rethinking',
 'changes',
 'seamless',
 'experiences',
 'exploding',
 'number',
 'channels',
 'screens',
 'contexts',
 'navigate',
 'maze',
 'options',
 'capturing',
 'ui',
 'major',
 'privacy',
 'regulations',
 'gdpr',
 'ccpa',
 'expensive',
 'notorious',
 'breaches',
 'never',
 'pressure',
 'ensure',
 'unfortunately',
 'integrating',
 'complicated',
 'give',
 'blocks',
 'speed',
 'helm',
 'preeminent',
 'manager',
 'kubernetes',
 'container',
 'orchestration',
 'efficiently',
 'install',
 'running',
 'containers',
 'maintainers',
 'matt',
 'butcher',
 'farina',
 'josh',
 'dolitsky',
 'fits',
 'sets',
 'laravel',
 'apart',
 'php',
 'starters',
 'rapid',
 'framework',
 'sites',
 'fully',
 'minibook',
 'olivier',
 'caelen',
 'marie',
 'alice',
 'blete',
 'cover',
 'main',
 'gpt',
 'chatgpt',
 'step',
 'rival',
 'compete',
 'attention',
 'rest',
 'api',
 'concise',
 'rules',
 'drawn',
 'stick',
 'uri',
 'guidelines',
 'media',
 'types',
 'master',
 'hidden',
 'capabilities',
 'related',
 'crafting',
 'blackbelts',
 'test',
 'packages',
 'small',
 'pytest',
 'powerful',
 'testing',
 'tests',
 'keep',
 'maintainable',
 'explore',
 'superpowers',
 'asserts',
 'fixtures',
 'parametrization',
 'markers',
 'plugins',
 'plans',
 'modernize',
 'move',
 'legacy',
 'private',
 'premises',
 'solution',
 'anybody',
 'computing',
 'migration',
 'transformation',
 'cybersecurity',
 'broken',
 'year',
 'attackers',
 'remain',
 'unchallenged',
 'undeterred',
 'feel',
 'operate',
 'secure',
 'failure',
 'prevented',
 'mental',
 'incomplete',
 'evolves',
 'verify',
 'expect',
 'warehouses',
 'lakes',
 'lands',
 'repositories',
 'transformed',
 'enabling',
 'raw',
 'defined',
 'dbt',
 'bi',
 'true',
 'oxford',
 'researcher',
 'accessible',
 'history',
 'future',
 'cutting',
 'edge',
 'misunderstood',
 'artificial',
 'intelligence',
 'somewhat',
 'ill',
 'term',
 'aim',
 'machines',
 'conscious',
 'aware',
 'sentient',
 'kind',
 'acclaimed',
 'andrew',
 'hoffman',
 'three',
 'pillars',
 'reconnaissance',
 'offense',
 'defense',
 'examines',
 'dozens',
 'attacks',
 'mitigations',
 'threat',
 'modeling',
 'editions',
 'rhcsa',
 'rhce',
 'exams',
 'confidence',
 ...]
In [69]:
y = [count for x, count in c.most_common(8)]
x = [x for x, count in c.most_common(8)]
plt.figure(figsize = (10, 6))
plt.barh(x, y, color = 'crimson')
plt.title("The topmost frequent used words", fontdict = {'fontsize': 18})
plt.xlabel('Count', fontdict = {'fontsize': 16})
plt.ylabel("Most frequent words", fontdict = {'fontsize': 16})
plt.show()

Function to create a Word Cloud

The most frequent words in out 'processed_title' feature

In [70]:
t = ' '.join(word for word in df['processed_title'].astype(str)) 
In [71]:
def word_cloud(text):
    word_cloud = WordCloud(width = 1600, height = 800, random_state = 21,
                           max_font_size = 110, collocations=False,
                           min_font_size = 18).generate_from_text(t)
    plt.figure(figsize = (15, 10))
    plt.imshow(word_cloud, interpolation='bilinear')
    plt.axis("off")
    plt.show()
In [72]:
word_cloud(word_cloud)
In [73]:
df['Length_of_description'] = df['description'].apply(lambda x: len(str(x)) if pd.notna(x) else np.nan)
In [74]:
# distribution of length of description
plt.figure(figsize=(20, 8))
plt.hist(df['Length_of_description'].dropna(), color='lightpink', edgecolor='black')
plt.xlabel('Length of Description')
plt.ylabel('Frequency')
plt.title('Distribution of Description Lengths',fontdict={'fontsize':24})
plt.grid(True)
plt.show()

We notice that:

Most of the descriptions are of the length 250, meaning the average length of descriptions is around 250 words.

this could be true as this is considered standard for a descripton to not be more than 250 words

In [ ]:
 
In [ ]:
 
In [ ]:
 

Step 4: Pandas Profiling¶

Pandas Profiling is a tool used for EDA (Exploratory Data Analysis)

It provides comprehensive insights, enhances data quality

We get the following details by using pandas profiling:

  • Overview Report
    • gives summary statistics of the dataset
    • Also, information on:
      • variables,
      • observations,
      • missing cells,
      • duplicate rows,
      • datatypes, and
      • memory usage
  • Variable Summary
    • provides descriptive statistics
      • mean,
      • minimum value,
      • maximum value,
      • distinct values,
      • missing values,
      • zeros and negative value, etc
  • Correlation Analysis
    • generates a correlation matrix &
    • correlation table
      • basically to identify relationships &
      • multicollinearity issues
  • Missing values
    • generates
      • count of missing values (in bar graphs)
      • matrix
      • heatmap
  • Sample information
    • First 10 rows of our dataset
    • Last 10 rows of our dataset
  • Interactions

Lets use the ydata-profiling to generate the detailed reports, complete with statistics and visualizations.

In [78]:
report=pp.ProfileReport(df)
In [79]:
report.to_file('final_version.html')
Summarize dataset:   0%|          | 0/5 [00:00<?, ?it/s]
Generate report structure:   0%|          | 0/1 [00:00<?, ?it/s]
Render HTML:   0%|          | 0/1 [00:00<?, ?it/s]
Export report to file:   0%|          | 0/1 [00:00<?, ?it/s]
In [80]:
report
Out[80]:

Step 5: Encoding¶

So far,

We cleaned the Dataset, made the cleaned dataset available to use.

We visualized important features from the dataset to get any insights and understand the data better.

For the Further steps, let us only consider features that will stand significantly important for our clustering analysis.

The features to consider will be:

Price

pub_year

sale_year

Affordability

Available

In [84]:
# if we want to implent jays idea of using cosine simiarity values to be used for clustering we can include title and description.
In [85]:
df.columns
Out[85]:
Index(['Title', 'id', 'price', 'author', 'publisher', 'pub_year',
       'edition_num', 'description', 'availabe', 'sale_date', 'short_pub',
       'num_of_author', 'width', 'height', 'processed_title',
       'processed_description', 'price_range', 'month_of_sale', 'date_of_sale',
       'year_of_sale', 'updated_price', 'edition', 'affordability',
       'Length_of_description'],
      dtype='object')
In [106]:
new_df =df[[
 'publisher',
 'pub_year',
 'sale_date',
 'year_of_sale',
 'num_of_author',
 'processed_title',
 'processed_description',
 'updated_price',
 'edition',
 'availabe','affordability']]
In [107]:
# new_df = df[['price','pub_year','availabe','year_of_sale','affordability']] ## this is what our rohan sir done
In [108]:
new_df.isnull().sum()
Out[108]:
publisher                    0
pub_year                     0
sale_date                    0
year_of_sale                 0
num_of_author                0
processed_title              0
processed_description        0
updated_price                0
edition                  27974
availabe                     0
affordability                0
dtype: int64

Approach for encoding¶

  • for 'price' we leave it as it is as it is numerical already.
  • for 'pub_year' we leave it as it is as distinct values of years can be considered a category in itself.
  • for '
  • for 'year_of_sale' we leave it as it is as distinct values of years can be considered a category in itself.
  • for 'affordability' we use label encoding as we are dealing with 3 different values inside affordability which are simply created as labels.
  • for 'Available' we can map the values to its numeric representation.

Encoding for affordability¶

In [109]:
from sklearn.preprocessing import LabelEncoder
In [110]:
le = LabelEncoder()
In [111]:
new_df['affordability'] = le.fit_transform(new_df['affordability'])
In [112]:
le.classes_
Out[112]:
array(['Average price', 'Low price', 'Over priced'], dtype=object)
In [113]:
new_df['affordability'].unique()
Out[113]:
array([0, 1, 2])

Here:

  • 'Average Price' is changed to 0.
  • 'Low Price' is changed to 1.
  • 'Over Price' is changed to 2.

Encoding for Availability¶

In [114]:
# here we convert true to 1 and false to 0
new_df['availabe'] = df['availabe'].astype(int)
In [115]:
new_df.availabe.value_counts()
Out[115]:
1    30583
0      245
Name: availabe, dtype: int64
In [116]:
# not sure, open to suggestions
#  (affordability, available--> onehot())
# is affordability ordinal? if yes----> ordinal encoding

OUTLIERS¶

Detecting Outliers Visually¶

In [117]:
# to check outliers visually
def check_cols(col, df):
    sns.set_style('whitegrid')
    fig, axes = plt.subplots(1,3, figsize=(24,8))
    
    fig.suptitle(f'Distribution, box and probability plots: {col}', fontsize=24)
    
    sns.distplot(df[col],ax=axes[0],label='Skew noticed = {:.2f}'.format(df[col].skew()))
    axes[0].set_title(f'Distribution: ',fontsize=16)
    
    
    sns.boxplot(df[col],ax=axes[1])
    axes[1].set_title(f'Boxplot:',fontsize=16)
    
    stats.probplot(df[col],plot=axes[2],fit=True)
    axes[2].set_title(f'Probplot:',fontsize=16)
    
    plt.tight_layout()
    plt.show()

why Probplot?

probplot or Q-Q plot is normally used to visualise probability distribution of data. but, can also be used to detect outliers indirectly. probplot has a line called the reference line, which denotes the expected theoretical distribution. If the data points fall approximately along a straight line on the Q-Q plot, it indicates that the data follows the specified distribution.

by this, we can check for data points that deviate significantly from the reference line. helping us to detect outliers.

In [122]:
cols = ['updated_price','pub_year','availabe','year_of_sale','affordability']
In [123]:
for col in cols:
    check_cols(col,new_df)

Insights

- We notice high right skewedness for Price column, distribution is defenitly not normal.

- we see most of the values fall outsite the normal range by noticing the box plot for Price

- pub_year shows left skewedness and most of the values fall outside the lower bound

- other numerical variables are linear values, hence the linear lines on the chart

Detecting Outliers using IQR¶

hey rohan sir, do compare your method once you are checking this

In [124]:
# to compare changes visually
def compare(cols,df,df2):
    for col in cols:
        
        plt.figure(figsize=(20,10))
        plt.title(f'Distribution and Box plots: {col}', fontsize=16)
        
        plt.subplot(221)
        sns.distplot(df[col])
        plt.title(f' Distribution: {col} before ')
        
        
        plt.subplot(222)
        sns.distplot(df2[col])
        plt.title(f'Distribution: {col} after ')
        
        
        plt.subplot(223)
        sns.boxplot(df[col])
        plt.title(f'BOX: {col} before ')
        

        plt.subplot(224)
        sns.boxplot(df2[col])
        plt.title(f'BOX: {col} after ')
    
        
        plt.tight_layout()
        plt.show()
In [125]:
cols_to_compare = ['updated_price','pub_year']
In [126]:
# compare(cols_to_compare,new_df,df_for_IQR)
In [528]:
df_5=new_df
In [529]:
df_5
Out[529]:
publisher pub_year sale_date year_of_sale num_of_author processed_title processed_description updated_price edition availabe affordability
0 O'Reilly Media 2024 2024-01-10 2024 1 learning go go rapidly become preferred language building ... 71.99 2 1 0
1 O'Reilly Media 2023 2023-10-17 2023 1 tidy first tidying messy software means breaking code mak... 42.99 NaN 1 1
2 O'Reilly Media 2022 2022-10-04 2022 1 hands on machine learning with scikit learn ke... recent series breakthroughs deep learning boos... 96.99 3 1 0
3 O'Reilly Media 2017 2017-03-16 2017 1 designing data intensive applications data center many challenges system design toda... 67.99 NaN 1 0
4 Pearson Education 2023 2023-10-18 2023 1 exam ref ms microsoft administrator prepare microsoft exam ms help demonstrate rea... 53.86 NaN 1 1
... ... ... ... ... ... ... ... ... ... ... ...
39977 Springer Berlin Heidelberg 2006 2006-12-12 2006 3 finite state methods and natural language proc... book constitutes thoroughly refereed post proc... 72.64 NaN 1 0
39978 Springer Berlin Heidelberg 2006 2006-07-25 2006 4 argumentation in multi agent systems nan 72.64 NaN 1 0
39979 Springer Berlin Heidelberg 2008 2008-02-20 2008 2 pricai trends in artificial intelligence book constitutes refereed proceedings th pacif... 232.48 NaN 1 0
39988 Springer Berlin Heidelberg 2006 2006-07-25 2006 3 knowledge science engineering and management refereed proceedings first international confe... 130.77 NaN 1 0
39989 Springer Berlin Heidelberg 2006 2006-08-29 2006 2 artificial neural networks in pattern recognition book constitutes refereed proceedings second i... 72.64 NaN 1 0

30828 rows × 11 columns

In [530]:
#applying the nunqiue and unique value method on the current df
In [531]:
columns=df_5.columns.to_list()
In [532]:
for column in columns:
    print("{} has {} unique values".format(column,df_5[column].nunique()))
    
#use this for report
publisher has 194 unique values
pub_year has 42 unique values
sale_date has 6476 unique values
year_of_sale has 42 unique values
num_of_author has 24 unique values
processed_title has 24823 unique values
processed_description has 25520 unique values
updated_price has 1274 unique values
edition has 21 unique values
availabe has 2 unique values
affordability has 3 unique values
In [533]:
print(df_5['availabe'].value_counts(dropna=False,normalize=True)*100) #repeating the code for percentage to confirm the distribution
1    99.205268
0     0.794732
Name: availabe, dtype: float64
In [534]:
df_5.nunique(dropna=False)
Out[534]:
publisher                  194
pub_year                    42
sale_date                 6476
year_of_sale                42
num_of_author               24
processed_title          24823
processed_description    25520
updated_price             1274
edition                     22
availabe                     2
affordability                3
dtype: int64
In [535]:
# df.nunique(dropna=True, axis='columns') #interesting method to finding unqiue values in the rows --> not used for this scope
In [536]:
#using mode to find the most freq(repeating) value in each column in price and year

to_get_value_bin= df_5[['updated_price','pub_year']].apply(lambda x: x.mode().tolist())
print(to_get_value_bin)
   updated_price  pub_year
0          72.64      2022
In [537]:
df_5[['updated_price','pub_year']].quantile(np.arange(.01,.9,.1))
Out[537]:
updated_price pub_year
0.01 8.6542 1753.0
0.11 36.0000 2007.0
0.21 47.5200 2011.0
0.31 54.3000 2013.0
0.41 64.6400 2015.0
0.51 72.6400 2016.0
0.61 72.6400 2018.0
0.71 85.0000 2019.0
0.81 126.5400 2021.0
In [538]:
"""from the observation of unqiue values present in the current df_5, publisher has 194 values --> this distinct will be difficult 
for encoding like one-hot as the dimensionality issue araises and creates zero in various columns (sparse matrix)
"""
Out[538]:
'from the observation of unqiue values present in the current df_5, publisher has 194 values --> this distinct will be difficult \nfor encoding like one-hot as the dimensionality issue araises and creates zero in various columns (sparse matrix)\n'
In [539]:
# available columns can be mapped or modified to binary column without losing the orginality of the data
In [540]:
#encoding categorical values 

df_5=pd.get_dummies(df_5, columns=['availabe'], prefix=['availability'],drop_first=True)
df_5.rename(columns={'availability_True':'availability_encoded'},inplace=True)
In [541]:
# other possiblity we are looking at here is encoding the num_of_author --> which is potentially in the numeric format and we would like to continute with same
In [542]:
#edition is very straight forward
In [543]:
#experiment 1 in encoding of price and year using discretization--> encoding (easy to process compared to 200+ distinct varients)
In [544]:
price_bins = pd.cut(df_5.updated_price,bins=10 ,right=True)
In [545]:
price_bins
#( --> not included value
#] included value
Out[545]:
0        (-2.353, 235.337]
1        (-2.353, 235.337]
2        (-2.353, 235.337]
3        (-2.353, 235.337]
4        (-2.353, 235.337]
               ...        
39977    (-2.353, 235.337]
39978    (-2.353, 235.337]
39979    (-2.353, 235.337]
39988    (-2.353, 235.337]
39989    (-2.353, 235.337]
Name: updated_price, Length: 30828, dtype: category
Categories (10, interval[float64, right]): [(-2.353, 235.337] < (235.337, 470.674] < (470.674, 706.011] < (706.011, 941.348] ... (1412.022, 1647.359] < (1647.359, 1882.696] < (1882.696, 2118.033] < (2118.033, 2353.37]]
In [546]:
price_bins.cat.codes
Out[546]:
0        0
1        0
2        0
3        0
4        0
        ..
39977    0
39978    0
39979    0
39988    0
39989    0
Length: 30828, dtype: int8
In [547]:
price_bins.cat.codes.value_counts()
Out[547]:
0    29658
1     1104
2       48
3       13
6        1
5        1
9        1
7        1
4        1
dtype: int64
In [548]:
#converting numeric data into categorical data
#divides the data into bins based on values given  and we used the qcut--> qunatile based binning with same number of bins 
price_bin_number,bin_range = pd.qcut(df_5['updated_price'], q=8, labels=False, duplicates='drop',retbins=True)

print(price_bin_number)
0        3
1        1
2        6
3        3
4        2
        ..
39977    3
39978    3
39979    7
39988    6
39989    3
Name: updated_price, Length: 30828, dtype: int64
In [549]:
bin_range
Out[549]:
array([   0.  ,   37.99,   49.99,   61.99,   72.64,   73.1 ,   94.44,
        134.68, 2353.37])
In [550]:
year_bin_number,y_bin_range = pd.qcut(df_5['pub_year'], q=12, labels=False, duplicates='drop',retbins=True)

print(year_bin_number)
0        11
1        11
2        10
3         6
4        11
         ..
39977     0
39978     0
39979     1
39988     0
39989     0
Name: pub_year, Length: 30828, dtype: int64
In [551]:
y_bin_range
Out[551]:
array([1753., 2006., 2009., 2012., 2014., 2015., 2016., 2017., 2019.,
       2020., 2021., 2022., 2025.])
In [552]:
df_5['encoded_price']=price_bin_number
# df_5['price_bins']=bin_range
df_5['encoded_year']=year_bin_number
# df_5['year_bins']=year_bin_number
In [553]:
#description processing pipeline --> key words and TF-IDF
def key_words(text):
    """
    arg: text data

    function: applying lemmatization, NER and other tokenization technique

    return: text tokens
    """
    tokens = word_tokenize(text.lower()) #it lowered but making sure one more time    
    lemma=WordNetLemmatizer()
    key_1 = [lemma.lemmatize(token) for token in tokens]
    
    #get most common words and also key words
    word_counts=Counter(key_1)
    freq_words=word_counts.most_common()
    print(freq_words)
    common_=[word for word,cont in freq_words]
    key_words=key_1
    return key_words,common_

df_5['key_words'],df_5['common_word'] = zip(*df_5['processed_description'].apply(key_words))
df_5['length_title_description']=df_5['processed_title'].str.len()+df_5['processed_description'].str.len()
        
[('go', 4), ('language', 2), ('tutorial', 2), ('teach', 2), ('developer', 2), ('rapidly', 1), ('become', 1), ('preferred', 1), ('building', 1), ('web', 1), ('service', 1), ('plenty', 1), ('available', 1), ('syntax', 1), ('experience', 1), ('programming', 1), ('enough', 1), ('idiom', 1), ('end', 1), ('recreating', 1), ('pattern', 1), ('make', 1), ('sense', 1), ('context', 1), ('practical', 1)]
[('software', 2), ('code', 2), ('make', 2), ('tidying', 1), ('messy', 1), ('mean', 1), ('breaking', 1), ('readable', 1), ('using', 1), ('guard', 1), ('clause', 1), ('helping', 1), ('function', 1), ('understandable', 1), ('practical', 1), ('guide', 1), ('author', 1), ('kent', 1), ('beck', 1), ('creator', 1), ('extreme', 1), ('programming', 1), ('pioneer', 1), ('pattern', 1), ('suggests', 1), ('might', 1), ('apply', 1), ('tidyings', 1)]
[('learning', 3), ('recent', 1), ('series', 1), ('breakthrough', 1), ('deep', 1), ('boosted', 1), ('entire', 1), ('field', 1), ('machine', 1), ('even', 1), ('programmer', 1), ('know', 1), ('close', 1), ('nothing', 1), ('technology', 1), ('use', 1), ('simple', 1), ('efficient', 1), ('tool', 1), ('implement', 1), ('program', 1), ('capable', 1), ('data', 1), ('bestselling', 1), ('book', 1), ('us', 1), ('concrete', 1), ('example', 1), ('minimal', 1), ('theory', 1), ('production', 1), ('ready', 1)]
[('data', 1), ('center', 1), ('many', 1), ('challenge', 1), ('system', 1), ('design', 1), ('today', 1), ('difficult', 1), ('issue', 1), ('need', 1), ('figured', 1), ('scalability', 1), ('consistency', 1), ('reliability', 1), ('efficiency', 1), ('maintainability', 1), ('addition', 1), ('overwhelming', 1), ('variety', 1), ('tool', 1), ('including', 1), ('relational', 1), ('database', 1), ('nosql', 1), ('datastores', 1), ('stream', 1), ('batch', 1), ('processor', 1), ('message', 1), ('broker', 1)]
[('microsoft', 3), ('prepare', 1), ('exam', 1), ('m', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('skill', 1), ('knowledge', 1), ('required', 1), ('deploy', 1), ('manage', 1), ('perform', 1), ('tenant', 1), ('level', 1), ('implementation', 1), ('administration', 1), ('cloud', 1), ('hybrid', 1)]
[('exam', 3), ('comptia', 3), ('mike', 2), ('meyers', 2), ('complete', 2), ('coverage', 2), ('network', 2), ('certification', 2), ('date', 1), ('guide', 1), ('delivers', 1), ('every', 1), ('topic', 1), ('version', 1), ('objective', 1), ('inside', 1), ('comprehensive', 1), ('resource', 1), ('created', 1), ('edited', 1), ('leading', 1), ('expert', 1), ('training', 1)]
[('microsoft', 2), ('endpoint', 2), ('prepare', 1), ('exam', 1), ('md', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('skill', 1), ('knowledge', 1), ('required', 1), ('deploy', 1), ('manage', 1), ('protect', 1), ('modern', 1), ('scale', 1), ('environment', 1), ('designed', 1), ('administrator', 1)]
[('engineer', 5), ('management', 2), ('path', 2), ('year', 1), ('company', 1), ('rewarded', 1), ('effective', 1), ('position', 1), ('treating', 1), ('default', 1), ('leadership', 1), ('ability', 1), ('serve', 1), ('industry', 1), ('staff', 1), ('allows', 1), ('contribute', 1), ('high', 1), ('level', 1), ('role', 1), ('model', 1), ('driving', 1), ('big', 1), ('project', 1)]
[('web', 3), ('page', 3), ('build', 2), ('want', 1), ('prior', 1), ('experience', 1), ('friendly', 1), ('guide', 1), ('perfect', 1), ('place', 1), ('start', 1), ('begin', 1), ('square', 1), ('learning', 1), ('work', 1), ('steadily', 1), ('end', 1), ('book', 1), ('skill', 1), ('create', 1), ('simple', 1), ('site', 1), ('multicolumn', 1), ('adapt', 1), ('mobile', 1), ('device', 1)]
[('data', 5), ('architecture', 2), ('fabric', 1), ('lakehouse', 1), ('mesh', 1), ('recently', 1), ('appeared', 1), ('viable', 1), ('alternative', 1), ('modern', 1), ('warehouse', 1), ('new', 1), ('solid', 1), ('benefit', 1), ('surrounded', 1), ('lot', 1), ('hyperbole', 1), ('confusion', 1), ('practical', 1), ('book', 1), ('provides', 1), ('guided', 1), ('tour', 1), ('help', 1), ('professional', 1), ('understand', 1), ('pro', 1)]
[('data', 2), ('engineering', 1), ('grown', 1), ('rapidly', 1), ('past', 1), ('decade', 1), ('leaving', 1), ('many', 1), ('software', 1), ('engineer', 1), ('scientist', 1), ('analyst', 1), ('looking', 1), ('comprehensive', 1), ('view', 1), ('practice', 1), ('practical', 1), ('book', 1), ('learn', 1), ('plan', 1), ('build', 1), ('system', 1), ('serve', 1), ('need', 1), ('organization', 1), ('customer', 1), ('evaluating', 1), ('best', 1), ('technology', 1), ('available', 1)]
[('serverless', 2), ('want', 2), ('adoption', 1), ('rise', 1), ('little', 1), ('guidance', 1), ('available', 1), ('development', 1), ('team', 1), ('apply', 1), ('technology', 1), ('aws', 1), ('definitive', 1), ('guide', 1), ('packed', 1), ('architectural', 1), ('security', 1), ('data', 1), ('best', 1), ('practice', 1), ('pattern', 1), ('architect', 1), ('engineer', 1), ('build', 1), ('reliable', 1), ('enterprise', 1), ('scale', 1)]
[('python', 3), ('language', 2), ('waste', 1), ('time', 1), ('bending', 1), ('fit', 1), ('pattern', 1), ('learned', 1), ('simplicity', 1), ('let', 1), ('become', 1), ('productive', 1), ('quickly', 1), ('often', 1), ('mean', 1), ('using', 1), ('everything', 1), ('offer', 1), ('updated', 1), ('edition', 1), ('hand', 1), ('guide', 1), ('learn', 1), ('write', 1), ('effective', 1), ('modern', 1), ('code', 1), ('leveraging', 1), ('best', 1)]
[('best', 2), ('guide', 2), ('question', 1), ('net', 1), ('selling', 1), ('answer', 1), ('need', 1), ('language', 1), ('unusual', 1), ('flexibility', 1), ('breadth', 1), ('continual', 1), ('growth', 1), ('always', 1), ('learn', 1), ('tradition', 1), ('reilly', 1), ('nutshell', 1), ('thoroughly', 1), ('updated', 1), ('edition', 1), ('simply', 1), ('volume', 1), ('reference', 1)]
[('generative', 3), ('learning', 2), ('ai', 1), ('hottest', 1), ('topic', 1), ('tech', 1), ('practical', 1), ('book', 1), ('teach', 1), ('machine', 1), ('engineer', 1), ('data', 1), ('scientist', 1), ('use', 1), ('tensorflow', 1), ('kera', 1), ('create', 1), ('impressive', 1), ('deep', 1), ('model', 1), ('scratch', 1), ('including', 1), ('variational', 1), ('autoencoders', 1), ('vaes', 1), ('adversarial', 1), ('network', 1), ('gans', 1), ('transformer', 1), ('normalizing', 1), ('flow', 1), ('energy', 1), ('based', 1)]
[('business', 3), ('software', 2), ('domain', 2), ('building', 1), ('harder', 1), ('developer', 1), ('chase', 1), ('changing', 1), ('technological', 1), ('trend', 1), ('need', 1), ('understand', 1), ('behind', 1), ('practical', 1), ('book', 1), ('provides', 1), ('set', 1), ('core', 1), ('pattern', 1), ('principle', 1), ('practice', 1), ('analyzing', 1), ('understanding', 1), ('strategy', 1)]
[('python', 2), ('panda', 2), ('definitive', 1), ('handbook', 1), ('manipulating', 1), ('processing', 1), ('cleaning', 1), ('crunching', 1), ('datasets', 1), ('updated', 1), ('third', 1), ('edition', 1), ('hand', 1), ('guide', 1), ('packed', 1), ('practical', 1), ('case', 1), ('study', 1), ('show', 1), ('solve', 1), ('broad', 1), ('set', 1), ('data', 1), ('analysis', 1), ('problem', 1), ('effectively', 1), ('learn', 1), ('latest', 1), ('version', 1)]
[('design', 3), ('good', 2), ('software', 2), ('overview', 2), ('essential', 1), ('success', 1), ('project', 1), ('designing', 1), ('hard', 1), ('need', 1), ('deep', 1), ('understanding', 1), ('consequence', 1), ('decision', 1), ('available', 1), ('alternative', 1), ('book', 1), ('experienced', 1), ('developer', 1), ('thorough', 1), ('practical', 1), ('unparalleled', 1)]
[('data', 2), ('organization', 1), ('today', 1), ('often', 1), ('struggle', 1), ('balance', 1), ('business', 1), ('requirement', 1), ('increasing', 1), ('volume', 1), ('additionally', 1), ('demand', 1), ('leveraging', 1), ('large', 1), ('scale', 1), ('real', 1), ('time', 1), ('growing', 1), ('rapidly', 1), ('among', 1), ('competitive', 1), ('digital', 1), ('industry', 1), ('conventional', 1), ('system', 1), ('architecture', 1), ('task', 1), ('practical', 1), ('guide', 1), ('learn', 1)]
[('cloud', 3), ('finops', 2), ('spend', 2), ('brings', 1), ('financial', 1), ('accountability', 1), ('variable', 1), ('model', 1), ('used', 1), ('majority', 1), ('global', 1), ('enterprise', 1), ('management', 1), ('practice', 1), ('grown', 1), ('fringe', 1), ('activity', 1), ('de', 1), ('facto', 1), ('discipline', 1), ('managing', 1), ('book', 1), ('author', 1), ('storment', 1), ('mike', 1), ('fuller', 1), ('outline', 1), ('process', 1), ('building', 1), ('culture', 1)]
[('psychology', 2), ('user', 2), ('design', 2), ('understanding', 1), ('specifically', 1), ('behind', 1), ('behave', 1), ('interact', 1), ('digital', 1), ('interface', 1), ('perhaps', 1), ('single', 1), ('valuable', 1), ('nondesign', 1), ('skill', 1), ('designer', 1), ('elegant', 1), ('fail', 1), ('force', 1), ('conform', 1), ('instead', 1), ('working', 1), ('within', 1), ('blueprint', 1), ('human', 1), ('perceive', 1), ('process', 1)]
[('database', 3), ('guide', 2), ('come', 1), ('choosing', 1), ('using', 1), ('maintaining', 1), ('understanding', 1), ('internals', 1), ('essential', 1), ('many', 1), ('distributed', 1), ('tool', 1), ('available', 1), ('today', 1), ('often', 1), ('difficult', 1), ('understand', 1), ('offer', 1), ('differ', 1), ('practical', 1), ('alex', 1), ('petrov', 1), ('developer', 1), ('concept', 1), ('behind', 1), ('modern', 1)]
[('system', 4), ('programming', 3), ('language', 2), ('control', 2), ('provides', 1), ('foundation', 1), ('world', 1), ('computation', 1), ('writing', 1), ('performance', 1), ('sensitive', 1), ('code', 1), ('requires', 1), ('put', 1), ('programmer', 1), ('memory', 1), ('processor', 1), ('time', 1), ('resource', 1), ('used', 1), ('rust', 1), ('combine', 1), ('modern', 1), ('type', 1), ('catch', 1), ('broad', 1)]
[('typescript', 3), ('javascript', 2), ('use', 2), ('typed', 1), ('superset', 1), ('potential', 1), ('solve', 1), ('many', 1), ('headache', 1), ('famous', 1), ('learning', 1), ('curve', 1), ('understanding', 1), ('effectively', 1), ('take', 1), ('time', 1), ('book', 1), ('guide', 1), ('specific', 1), ('way', 1), ('improve', 1), ('author', 1), ('dan', 1), ('vanderkam', 1)]
[('javascript', 3), ('new', 2), ('web', 1), ('developer', 1), ('programmer', 1), ('interested', 1), ('using', 1), ('bestselling', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('material', 1), ('market', 1), ('seventh', 1), ('edition', 1), ('represents', 1), ('significant', 1), ('update', 1), ('information', 1), ('ecmascript', 1), ('chapter', 1), ('language', 1), ('specific', 1), ('feature', 1), ('definitive', 1), ('guide', 1)]
[('typescript', 3), ('world', 3), ('conquered', 1), ('javascript', 1), ('identified', 1), ('developer', 1), ('survey', 1), ('fastest', 1), ('growing', 1), ('popular', 1), ('language', 1), ('widely', 1), ('used', 1), ('consumer', 1), ('business', 1), ('company', 1), ('across', 1), ('frequently', 1), ('credited', 1), ('helping', 1), ('massive', 1), ('web', 1), ('application', 1), ('scale', 1), ('exactly', 1)]
[('data', 4), ('application', 2), ('message', 2), ('every', 1), ('enterprise', 1), ('creates', 1), ('whether', 1), ('consists', 1), ('log', 1), ('metric', 1), ('user', 1), ('activity', 1), ('outgoing', 1), ('moving', 1), ('important', 1), ('updated', 1), ('edition', 1), ('architect', 1), ('developer', 1), ('production', 1), ('engineer', 1), ('new', 1), ('kafka', 1), ('streaming', 1), ('platform', 1), ('learn', 1), ('handle', 1)]
[('data', 5), ('management', 1), ('continues', 1), ('evolve', 1), ('rapidly', 1), ('managing', 1), ('central', 1), ('place', 1), ('warehouse', 1), ('longer', 1), ('scalable', 1), ('today', 1), ('world', 1), ('quickly', 1), ('turning', 1), ('value', 1), ('requires', 1), ('paradigm', 1), ('shift', 1), ('way', 1), ('federate', 1), ('responsibility', 1), ('manage', 1), ('make', 1), ('available', 1), ('others', 1), ('practical', 1), ('book', 1)]
[('data', 3), ('python', 2), ('science', 2), ('first', 1), ('class', 1), ('tool', 1), ('many', 1), ('researcher', 1), ('primarily', 1), ('library', 1), ('storing', 1), ('manipulating', 1), ('gaining', 1), ('insight', 1), ('several', 1), ('resource', 1), ('exist', 1), ('individual', 1), ('piece', 1), ('stack', 1), ('new', 1), ('edition', 1), ('handbook', 1), ('ipython', 1), ('numpy', 1), ('panda', 1), ('matplotlib', 1)]
[('processing', 4), ('programming', 2), ('opened', 1), ('world', 1), ('artist', 1), ('designer', 1), ('educator', 1), ('beginner', 1), ('short', 1), ('book', 1), ('gently', 1), ('introduces', 1), ('core', 1), ('concept', 1), ('computer', 1), ('working', 1), ('written', 1), ('co', 1), ('founder', 1), ('project', 1), ('reas', 1), ('fry', 1), ('getting', 1), ('started', 1), ('show', 1), ('easy', 1), ('make', 1), ('software', 1)]
[('java', 2), ('programming', 2), ('oop', 2), ('problem', 2), ('fp', 2), ('developer', 1), ('usually', 1), ('tackle', 1), ('complexity', 1), ('software', 1), ('development', 1), ('object', 1), ('oriented', 1), ('every', 1), ('good', 1), ('match', 1), ('functional', 1), ('paradigm', 1), ('offer', 1), ('another', 1), ('approach', 1), ('solving', 1), ('provides', 1), ('easy', 1), ('grasp', 1), ('tool', 1), ('lambda', 1), ('expression', 1), ('stream', 1)]
[('java', 3), ('ideal', 1), ('working', 1), ('programmer', 1), ('new', 1), ('best', 1), ('selling', 1), ('book', 1), ('guide', 1), ('language', 1), ('feature', 1), ('apis', 1), ('fun', 1), ('compelling', 1), ('realistic', 1), ('example', 1), ('author', 1), ('marc', 1), ('loy', 1), ('patrick', 1), ('niemeyer', 1), ('dan', 1), ('leuck', 1), ('introduce', 1), ('fundamental', 1), ('including', 1), ('class', 1), ('library', 1), ('programming', 1), ('technique', 1), ('idiom', 1), ('eye', 1)]
[('architecture', 3), ('easy', 1), ('decision', 1), ('software', 1), ('instead', 1), ('many', 1), ('hard', 1), ('part', 1), ('difficult', 1), ('problem', 1), ('issue', 1), ('best', 1), ('practice', 1), ('force', 1), ('choose', 1), ('among', 1), ('various', 1), ('compromise', 1), ('book', 1), ('learn', 1), ('think', 1), ('critically', 1), ('trade', 1), ('offs', 1), ('involved', 1), ('distributed', 1), ('veteran', 1), ('practicing', 1)]
[('pattern', 3), ('python', 2), ('design', 2), ('architecture', 2), ('driven', 2), ('continues', 1), ('grow', 1), ('popularity', 1), ('project', 1), ('becoming', 1), ('larger', 1), ('complex', 1), ('many', 1), ('developer', 1), ('taking', 1), ('interest', 1), ('high', 1), ('level', 1), ('software', 1), ('hexagonal', 1), ('clean', 1), ('event', 1), ('strategic', 1), ('prescribed', 1), ('domain', 1), ('dd', 1), ('translating', 1)]
[('data', 5), ('science', 3), ('business', 2), ('written', 1), ('renowned', 1), ('expert', 1), ('foster', 1), ('provost', 1), ('tom', 1), ('fawcett', 1), ('introduces', 1), ('fundamental', 1), ('principle', 1), ('walk', 1), ('analytic', 1), ('thinking', 1), ('necessary', 1), ('extracting', 1), ('useful', 1), ('knowledge', 1), ('value', 1), ('collect', 1), ('guide', 1), ('help', 1), ('understand', 1), ('many', 1)]
[('greatly', 1), ('expanded', 1), ('new', 1), ('edition', 1), ('offer', 1), ('comprehensive', 1), ('introduction', 1), ('randomization', 1), ('probabilistic', 1), ('technique', 1), ('modern', 1), ('computer', 1), ('science', 1)]
[('python', 3), ('learn', 2), ('book', 1), ('want', 1), ('language', 1), ('without', 1), ('slogging', 1), ('way', 1), ('manual', 1), ('head', 1), ('first', 1), ('quickly', 1), ('grasp', 1), ('fundamental', 1), ('working', 1), ('built', 1), ('data', 1), ('structure', 1), ('function', 1), ('build', 1), ('web', 1), ('app', 1), ('ready', 1), ('prime', 1), ('time', 1), ('run', 1), ('cloud', 1)]
[('typescript', 4), ('developer', 2), ('important', 1), ('tool', 1), ('javascript', 1), ('still', 1), ('even', 1), ('experienced', 1), ('wonder', 1), ('compiler', 1), ('throwing', 1), ('squiggly', 1), ('red', 1), ('line', 1), ('enter', 1), ('cookbook', 1), ('practical', 1), ('guide', 1), ('author', 1), ('stefan', 1), ('baumgartner', 1), ('provides', 1), ('senior', 1), ('engineer', 1), ('solution', 1), ('everyday', 1), ('problem', 1)]
[('quick', 2), ('guide', 2), ('know', 2), ('looking', 1), ('answer', 1), ('using', 1), ('tightly', 1), ('focused', 1), ('practical', 1), ('tell', 1), ('exactly', 1), ('need', 1), ('without', 1), ('long', 1), ('intro', 1), ('bloated', 1), ('sample', 1), ('succinct', 1), ('easy', 1), ('browse', 1), ('pocket', 1), ('reference', 1), ('ideal', 1), ('source', 1), ('information', 1), ('java', 1), ('earlier', 1), ('version', 1), ('help', 1), ('rapidly', 1)]
[('computer', 2), ('using', 2), ('publisher', 2), ('staring', 1), ('screen', 1), ('idea', 1), ('worry', 1), ('help', 1), ('written', 1), ('best', 1), ('selling', 1), ('technology', 1), ('author', 1), ('lecturer', 1), ('trainer', 1), ('kevin', 1), ('wilson', 1), ('packed', 1), ('easy', 1), ('follow', 1), ('instruction', 1), ('photo', 1), ('illustration', 1), ('helpful', 1), ('tip', 1), ('video', 1), ('demo', 1)]
[('library', 2), ('structure', 2), ('rust', 1), ('programming', 1), ('language', 1), ('extremely', 1), ('suited', 1), ('concurrency', 1), ('ecosystem', 1), ('many', 1), ('include', 1), ('lot', 1), ('concurrent', 1), ('data', 1), ('lock', 1), ('implementing', 1), ('correctly', 1), ('difficult', 1), ('even', 1), ('used', 1), ('memory', 1), ('ordering', 1), ('bug', 1), ('uncommon', 1), ('practical', 1), ('book', 1)]
[('system', 2), ('organization', 1), ('shift', 1), ('monolithic', 1), ('application', 1), ('smaller', 1), ('self', 1), ('contained', 1), ('microservices', 1), ('distributed', 1), ('become', 1), ('fine', 1), ('grained', 1), ('developing', 1), ('new', 1), ('brings', 1), ('host', 1), ('problem', 1), ('expanded', 1), ('second', 1), ('edition', 1), ('take', 1), ('holistic', 1), ('view', 1), ('topic', 1), ('need', 1), ('consider', 1), ('building', 1), ('managing', 1), ('scaling', 1)]
[('java', 4), ('learn', 2), ('book', 2), ('head', 1), ('first', 1), ('complete', 1), ('learning', 1), ('experience', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('language', 1), ('unique', 1), ('method', 1), ('go', 1), ('beyond', 1), ('manual', 1), ('help', 1), ('become', 1), ('programmer', 1), ('puzzle', 1), ('mystery', 1), ('soul', 1), ('searching', 1), ('interview', 1), ('famous', 1)]
[('excel', 2), ('remains', 1), ('ubiquitous', 1), ('business', 1), ('world', 1), ('recent', 1), ('microsoft', 1), ('feedback', 1), ('forum', 1), ('full', 1), ('request', 1), ('include', 1), ('python', 1), ('scripting', 1), ('language', 1), ('fact', 1), ('top', 1), ('feature', 1), ('requested', 1), ('make', 1), ('combination', 1), ('compelling', 1), ('hand', 1), ('guide', 1), ('felix', 1), ('zumstein', 1), ('creator', 1), ('xlwings', 1), ('popular', 1), ('open', 1), ('source', 1), ('package', 1), ('automating', 1)]
[('design', 3), ('pattern', 2), ('learn', 1), ('book', 1), ('know', 1), ('want', 1), ('reinvent', 1), ('wheel', 1), ('look', 1), ('lesson', 1), ('learned', 1), ('faced', 1), ('software', 1), ('problem', 1), ('take', 1), ('advantage', 1), ('best', 1), ('practice', 1), ('experience', 1), ('others', 1), ('spend', 1), ('time', 1), ('something', 1), ('challenging', 1)]
[('monolithic', 2), ('system', 2), ('microservice', 2), ('architecture', 2), ('detangle', 1), ('migrate', 1), ('maintaining', 1), ('business', 1), ('usual', 1), ('companion', 1), ('sam', 1), ('newman', 1), ('extremely', 1), ('popular', 1), ('building', 1), ('microservices', 1), ('new', 1), ('book', 1), ('detail', 1), ('proven', 1), ('method', 1), ('transitioning', 1), ('existing', 1), ('many', 1)]
[('extensively', 1), ('updated', 1), ('expanded', 1), ('version', 1), ('best', 1), ('selling', 1), ('first', 1), ('edition', 1), ('cover', 1), ('recent', 1), ('advanced', 1), ('feature', 1), ('haskell', 1)]
[('data', 4), ('science', 4), ('library', 1), ('framework', 1), ('module', 1), ('toolkits', 1), ('good', 1), ('way', 1), ('dive', 1), ('discipline', 1), ('without', 1), ('actually', 1), ('understanding', 1), ('updated', 1), ('second', 1), ('edition', 1), ('learn', 1), ('many', 1), ('fundamental', 1), ('tool', 1), ('algorithm', 1), ('work', 1), ('implementing', 1), ('scratch', 1)]
[('python', 2), ('easy', 1), ('understand', 1), ('fun', 1), ('updated', 1), ('edition', 1), ('introducing', 1), ('ideal', 1), ('beginning', 1), ('programmer', 1), ('new', 1), ('language', 1), ('author', 1), ('bill', 1), ('lubanovic', 1), ('take', 1), ('basic', 1), ('involved', 1), ('varied', 1), ('topic', 1), ('mixing', 1), ('tutorial', 1), ('cookbook', 1), ('style', 1), ('code', 1), ('recipe', 1), ('explain', 1), ('concept', 1), ('end', 1), ('chapter', 1), ('exercise', 1)]
[('cs', 2), ('web', 1), ('designer', 1), ('app', 1), ('developer', 1), ('interested', 1), ('sophisticated', 1), ('page', 1), ('styling', 1), ('improved', 1), ('accessibility', 1), ('le', 1), ('time', 1), ('effort', 1), ('expended', 1), ('book', 1), ('revised', 1), ('fifth', 1), ('edition', 1), ('provides', 1), ('comprehensive', 1), ('guide', 1), ('implementation', 1), ('along', 1), ('thorough', 1), ('review', 1), ('latest', 1), ('specification', 1), ('author', 1), ('eric', 1), ('meyer', 1), ('estelle', 1), ('weyl', 1)]
[('domain', 2), ('driven', 2), ('method', 1), ('managing', 1), ('complex', 1), ('software', 1), ('construction', 1), ('following', 1), ('practice', 1), ('principle', 1), ('pattern', 1), ('design', 1), ('code', 1), ('example', 1), ('book', 1), ('present', 1), ('philosophy', 1)]
[('system', 3), ('development', 2), ('process', 1), ('creating', 1), ('maintaining', 1), ('information', 1), ('practical', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('topic', 1), ('used', 1), ('handy', 1), ('reference', 1), ('guide', 1), ('already', 1), ('working', 1), ('field', 1), ('textbook', 1), ('support', 1), ('bcs', 1), ('certificate', 1)]
[('development', 3), ('software', 2), ('ecosystem', 1), ('constantly', 1), ('changing', 1), ('providing', 1), ('constant', 1), ('stream', 1), ('new', 1), ('tool', 1), ('framework', 1), ('technique', 1), ('paradigm', 1), ('past', 1), ('year', 1), ('incremental', 1), ('core', 1), ('engineering', 1), ('practice', 1), ('created', 1), ('foundation', 1), ('rethinking', 1), ('architecture', 1), ('change', 1), ('time', 1), ('along', 1), ('way', 1)]
[('design', 2), ('designing', 1), ('good', 1), ('application', 1), ('interface', 1), ('easy', 1), ('company', 1), ('need', 1), ('create', 1), ('compelling', 1), ('seamless', 1), ('user', 1), ('experience', 1), ('across', 1), ('exploding', 1), ('number', 1), ('channel', 1), ('screen', 1), ('context', 1), ('updated', 1), ('third', 1), ('edition', 1), ('learn', 1), ('navigate', 1), ('maze', 1), ('option', 1), ('capturing', 1), ('ui', 1), ('best', 1), ('practice', 1), ('pattern', 1)]
[('privacy', 4), ('data', 3), ('major', 1), ('regulation', 1), ('gdpr', 1), ('ccpa', 1), ('expensive', 1), ('notorious', 1), ('breach', 1), ('never', 1), ('pressure', 1), ('ensure', 1), ('unfortunately', 1), ('integrating', 1), ('system', 1), ('still', 1), ('complicated', 1), ('essential', 1), ('guide', 1), ('give', 1), ('fundamental', 1), ('understanding', 1), ('modern', 1), ('building', 1), ('block', 1)]
[('helm', 2), ('package', 2), ('manager', 2), ('container', 2), ('matt', 2), ('speed', 1), ('preeminent', 1), ('kubernetes', 1), ('orchestration', 1), ('system', 1), ('practical', 1), ('guide', 1), ('show', 1), ('efficiently', 1), ('create', 1), ('install', 1), ('manage', 1), ('application', 1), ('running', 1), ('inside', 1), ('maintainer', 1), ('butcher', 1), ('farina', 1), ('josh', 1), ('dolitsky', 1), ('explain', 1), ('fit', 1)]
[('laravel', 2), ('framework', 2), ('application', 2), ('set', 1), ('apart', 1), ('php', 1), ('web', 1), ('speed', 1), ('simplicity', 1), ('starter', 1), ('rapid', 1), ('development', 1), ('ecosystem', 1), ('tool', 1), ('quickly', 1), ('build', 1), ('new', 1), ('site', 1), ('clean', 1), ('readable', 1), ('code', 1), ('fully', 1), ('updated', 1), ('include', 1), ('third', 1), ('edition', 1), ('practical', 1), ('guide', 1), ('provides', 1), ('definitive', 1)]
[('guide', 2), ('application', 2), ('gpt', 2), ('step', 2), ('minibook', 1), ('comprehensive', 1), ('python', 1), ('developer', 1), ('want', 1), ('learn', 1), ('build', 1), ('large', 1), ('language', 1), ('model', 1), ('author', 1), ('olivier', 1), ('caelen', 1), ('marie', 1), ('alice', 1), ('blete', 1), ('cover', 1), ('main', 1), ('feature', 1), ('benefit', 1), ('chatgpt', 1), ('explain', 1), ('work', 1), ('developing', 1), ('using', 1)]
[('web', 2), ('rest', 2), ('api', 2), ('design', 2), ('rule', 2), ('today', 1), ('market', 1), ('rival', 1), ('service', 1), ('compete', 1), ('attention', 1), ('designed', 1), ('feature', 1), ('concise', 1), ('book', 1), ('present', 1), ('set', 1), ('drawn', 1), ('primarily', 1), ('best', 1), ('practice', 1), ('stick', 1), ('close', 1), ('architectural', 1), ('style', 1), ('along', 1), ('uri', 1), ('use', 1), ('learn', 1), ('guideline', 1), ('medium', 1), ('type', 1)]
[('master', 1), ('hidden', 1), ('capability', 1), ('excel', 1), ('related', 1), ('application', 1), ('crafting', 1), ('tool', 1), ('help', 1), ('others', 1), ('become', 1), ('blackbelts', 1), ('analysis', 1)]
[('test', 3), ('pytest', 3), ('simple', 2), ('application', 1), ('package', 1), ('library', 1), ('large', 1), ('small', 1), ('python', 1), ('powerful', 1), ('testing', 1), ('framework', 1), ('help', 1), ('write', 1), ('quickly', 1), ('keep', 1), ('readable', 1), ('maintainable', 1), ('fully', 1), ('revised', 1), ('edition', 1), ('explore', 1), ('superpower', 1), ('asserts', 1), ('fixture', 1), ('parametrization', 1), ('marker', 1), ('plugins', 1), ('creating', 1)]
[('cloud', 5), ('software', 2), ('organization', 1), ('plan', 1), ('modernize', 1), ('service', 1), ('move', 1), ('legacy', 1), ('private', 1), ('premise', 1), ('book', 1), ('developer', 1), ('solution', 1), ('architect', 1), ('engineer', 1), ('anybody', 1), ('interested', 1), ('technology', 1), ('learn', 1), ('fundamental', 1), ('concept', 1), ('computing', 1), ('migration', 1), ('transformation', 1), ('development', 1)]
[('system', 3), ('year', 2), ('cybersecurity', 1), ('broken', 1), ('attacker', 1), ('remain', 1), ('unchallenged', 1), ('undeterred', 1), ('engineering', 1), ('team', 1), ('feel', 1), ('pressure', 1), ('design', 1), ('build', 1), ('operate', 1), ('secure', 1), ('failure', 1), ('prevented', 1), ('mental', 1), ('model', 1), ('incomplete', 1), ('digital', 1), ('world', 1), ('constantly', 1), ('evolves', 1), ('verify', 1), ('behave', 1), ('way', 1), ('expect', 1)]
[('data', 9), ('engineer', 2), ('shift', 1), ('warehouse', 1), ('lake', 1), ('land', 1), ('repository', 1), ('transformed', 1), ('enabling', 1), ('model', 1), ('raw', 1), ('clean', 1), ('defined', 1), ('datasets', 1), ('dbt', 1), ('build', 1), ('tool', 1), ('help', 1), ('take', 1), ('practical', 1), ('book', 1), ('show', 1), ('analyst', 1), ('bi', 1), ('developer', 1), ('scientist', 1), ('create', 1), ('true', 1)]
[('ai', 2), ('machine', 2), ('oxford', 1), ('leading', 1), ('researcher', 1), ('come', 1), ('fun', 1), ('accessible', 1), ('tour', 1), ('history', 1), ('future', 1), ('cutting', 1), ('edge', 1), ('misunderstood', 1), ('field', 1), ('science', 1), ('artificial', 1), ('intelligence', 1), ('somewhat', 1), ('ill', 1), ('defined', 1), ('long', 1), ('term', 1), ('aim', 1), ('build', 1), ('conscious', 1), ('self', 1), ('aware', 1), ('sentient', 1), ('capable', 1), ('kind', 1)]
[('edition', 2), ('first', 1), ('critically', 1), ('acclaimed', 1), ('book', 1), ('andrew', 1), ('hoffman', 1), ('defined', 1), ('three', 1), ('pillar', 1), ('application', 1), ('security', 1), ('reconnaissance', 1), ('offense', 1), ('defense', 1), ('revised', 1), ('updated', 1), ('second', 1), ('examines', 1), ('dozen', 1), ('related', 1), ('topic', 1), ('latest', 1), ('type', 1), ('attack', 1), ('mitigation', 1), ('threat', 1), ('modeling', 1), ('secure', 1), ('software', 1), ('development', 1)]
[('certification', 3), ('edition', 2), ('rhcsa', 2), ('rhce', 2), ('exam', 2), ('take', 1), ('latest', 1), ('challenging', 1), ('confidence', 1), ('comprehensive', 1), ('self', 1), ('study', 1), ('guide', 1), ('clearly', 1), ('explains', 1), ('need', 1), ('know', 1), ('get', 1), ('fully', 1), ('prepared', 1), ('written', 1), ('pair', 1), ('linux', 1), ('expert', 1), ('experienced', 1), ('author', 1), ('new', 1)]
[('software', 3), ('company', 2), ('business', 2), ('trillion', 1), ('line', 1), ('code', 1), ('help', 1), ('life', 1), ('organization', 1), ('single', 1), ('cybersecurity', 1), ('vulnerability', 1), ('stop', 1), ('entire', 1), ('cause', 1), ('billion', 1), ('dollar', 1), ('revenue', 1), ('loss', 1), ('recovery', 1), ('securing', 1), ('creation', 1), ('deployment', 1), ('known', 1), ('supply', 1), ('chain', 1), ('security', 1)]
[('web', 2), ('react', 2), ('advanced', 2), ('come', 1), ('building', 1), ('user', 1), ('interface', 1), ('enables', 1), ('developer', 1), ('unlock', 1), ('new', 1), ('world', 1), ('possibility', 1), ('practical', 1), ('book', 1), ('help', 1), ('take', 1), ('deep', 1), ('dive', 1), ('fundamental', 1), ('concept', 1), ('javascript', 1), ('library', 1), ('including', 1), ('jsx', 1), ('syntax', 1), ('pattern', 1), ('virtual', 1), ('dom', 1), ('reconciliation', 1), ('optimization', 1), ('technique', 1)]
[('architect', 3), ('software', 2), ('salary', 1), ('survey', 1), ('worldwide', 1), ('regularly', 1), ('place', 1), ('top', 1), ('best', 1), ('job', 1), ('yet', 1), ('real', 1), ('guide', 1), ('exists', 1), ('help', 1), ('developer', 1), ('become', 1), ('book', 1), ('provides', 1), ('first', 1), ('comprehensive', 1), ('overview', 1), ('architecture', 1), ('many', 1), ('aspect', 1), ('aspiring', 1), ('existing', 1), ('alike', 1), ('examine', 1), ('architectural', 1), ('characteristic', 1)]
[('cloud', 2), ('terraform', 1), ('become', 1), ('key', 1), ('player', 1), ('devops', 1), ('world', 1), ('defining', 1), ('launching', 1), ('managing', 1), ('infrastructure', 1), ('code', 1), ('iac', 1), ('across', 1), ('variety', 1), ('virtualization', 1), ('platform', 1), ('including', 1), ('aws', 1), ('google', 1), ('azure', 1), ('hand', 1), ('third', 1), ('edition', 1), ('expanded', 1), ('thoroughly', 1), ('updated', 1), ('version', 1), ('beyond', 1), ('show', 1), ('fastest', 1), ('way', 1)]
[('visual', 3), ('game', 2), ('studio', 2), ('learn', 1), ('book', 1), ('dive', 1), ('create', 1), ('apps', 1), ('user', 1), ('interface', 1), ('using', 1), ('fun', 1), ('highly', 1), ('introduction', 1), ('net', 1), ('core', 1), ('completely', 1), ('updated', 1), ('guide', 1), ('cover', 1), ('beginning', 1), ('programmer', 1), ('build', 1), ('fully', 1), ('functional', 1), ('opening', 1)]
[('five', 1), ('year', 1), ('kubernetes', 1), ('radically', 1), ('changed', 1), ('way', 1), ('developer', 1), ('ops', 1), ('personnel', 1), ('build', 1), ('deploy', 1), ('maintain', 1), ('application', 1), ('cloud', 1), ('book', 1), ('updated', 1), ('third', 1), ('edition', 1), ('learn', 1), ('popular', 1), ('container', 1), ('orchestrator', 1), ('help', 1), ('company', 1), ('achieve', 1), ('new', 1), ('level', 1), ('velocity', 1), ('agility', 1), ('reliability', 1), ('efficiency', 1), ('whether', 1)]
[('many', 1), ('developer', 1), ('still', 1), ('uncertain', 1), ('concurrent', 1), ('multithreaded', 1), ('development', 1), ('practical', 1), ('cookbook', 1), ('change', 1), ('mind', 1), ('code', 1), ('rich', 1), ('recipe', 1), ('updated', 1), ('second', 1), ('edition', 1), ('author', 1), ('stephen', 1), ('cleary', 1), ('demonstrates', 1), ('parallel', 1), ('processing', 1), ('asynchronous', 1), ('programming', 1), ('technique', 1), ('using', 1), ('library', 1), ('language', 1), ('feature', 1)]
[('take', 1), ('linux', 1), ('skill', 1), ('next', 1), ('level', 1), ('whether', 1), ('system', 1), ('administrator', 1), ('software', 1), ('developer', 1), ('site', 1), ('reliability', 1), ('engineer', 1), ('enthusiastic', 1), ('hobbyist', 1), ('practical', 1), ('hand', 1), ('book', 1), ('help', 1), ('work', 1), ('faster', 1), ('smarter', 1), ('efficiently', 1), ('learn', 1), ('create', 1), ('run', 1), ('complex', 1), ('command', 1), ('solve', 1), ('real', 1), ('business', 1), ('problem', 1), ('process', 1)]
[('ansible', 2), ('among', 1), ('many', 1), ('configuration', 1), ('management', 1), ('tool', 1), ('available', 1), ('distinct', 1), ('advantage', 1), ('minimal', 1), ('nature', 1), ('need', 1), ('install', 1), ('agent', 1), ('node', 1), ('easy', 1), ('learning', 1), ('curve', 1), ('updated', 1), ('third', 1), ('edition', 1), ('quickly', 1), ('learn', 1), ('productive', 1), ('whether', 1), ('developer', 1), ('deploying', 1), ('code', 1), ('system', 1)]
[('mysql', 2), ('full', 2), ('realize', 1), ('power', 1), ('high', 1), ('performance', 1), ('learn', 1), ('advanced', 1), ('technique', 1), ('everything', 1), ('setting', 1), ('service', 1), ('level', 1), ('objective', 1), ('designing', 1), ('schema', 1), ('index', 1), ('query', 1), ('tuning', 1), ('server', 1), ('operating', 1), ('system', 1), ('hardware', 1), ('achieve', 1), ('platform', 1), ('potential', 1), ('guide', 1), ('teach', 1), ('database', 1), ('administrator', 1)]
[('want', 3), ('javascript', 2), ('design', 2), ('pattern', 2), ('write', 1), ('beautiful', 1), ('structured', 1), ('maintainable', 1), ('applying', 1), ('modern', 1), ('language', 1), ('clean', 1), ('efficient', 1), ('manageable', 1), ('code', 1), ('stay', 1), ('date', 1), ('latest', 1), ('best', 1), ('practice', 1), ('updated', 1), ('second', 1), ('edition', 1), ('learning', 1), ('ideal', 1), ('place', 1), ('start', 1), ('author', 1), ('addy', 1)]
[('change', 2), ('architect', 2), ('technical', 2), ('digital', 1), ('economy', 1), ('rule', 1), ('game', 1), ('enterprise', 1), ('role', 1), ('software', 1), ('transforming', 1), ('rather', 1), ('focus', 1), ('decision', 1), ('alone', 1), ('senior', 1), ('technologist', 1), ('need', 1), ('combine', 1), ('organizational', 1), ('knowledge', 1), ('effect', 1), ('company', 1), ('structure', 1), ('process', 1), ('accomplish', 1)]
[('kubernetes', 2), ('want', 1), ('run', 1), ('workload', 1), ('safely', 1), ('securely', 1), ('practical', 1), ('book', 1), ('provides', 1), ('threat', 1), ('based', 1), ('guide', 1), ('security', 1), ('chapter', 1), ('examines', 1), ('particular', 1), ('component', 1), ('architecture', 1), ('potential', 1), ('default', 1), ('setting', 1), ('review', 1), ('existing', 1), ('high', 1), ('profile', 1), ('attack', 1), ('historical', 1), ('common', 1), ('vulnerability', 1), ('exposure', 1), ('cf', 1), ('author', 1), ('andrew', 1)]
[('data', 3), ('sql', 3), ('explosion', 1), ('computing', 1), ('power', 1), ('cloud', 1), ('warehouse', 1), ('become', 1), ('even', 1), ('indispensable', 1), ('tool', 1), ('savvy', 1), ('analyst', 1), ('scientist', 1), ('practical', 1), ('book', 1), ('reveals', 1), ('new', 1), ('hidden', 1), ('way', 1), ('improve', 1), ('skill', 1), ('solve', 1), ('problem', 1), ('make', 1), ('part', 1), ('workflow', 1), ('learn', 1), ('use', 1), ('common', 1)]
[('nan', 1)]
[('window', 2), ('server', 2), ('prepare', 1), ('microsoft', 1), ('exam', 1), ('az', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('designing', 1), ('implementing', 1), ('managing', 1), ('core', 1), ('infrastructure', 1), ('hybrid', 1), ('cloud', 1), ('environment', 1), ('designed', 1), ('professional', 1), ('experience', 1)]
[('window', 2), ('server', 2), ('prepare', 1), ('microsoft', 1), ('exam', 1), ('az', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('configuring', 1), ('managing', 1), ('premise', 1), ('hybrid', 1), ('infrastructure', 1), ('service', 1), ('iaa', 1), ('platform', 1), ('workload', 1), ('designed', 1), ('professional', 1)]
[('security', 2), ('facilitate', 1), ('scalability', 1), ('resilience', 1), ('many', 1), ('organization', 1), ('run', 1), ('application', 1), ('cloud', 1), ('native', 1), ('environment', 1), ('using', 1), ('container', 1), ('orchestration', 1), ('know', 1), ('deployment', 1), ('secure', 1), ('practical', 1), ('book', 1), ('examines', 1), ('key', 1), ('underlying', 1), ('technology', 1), ('help', 1), ('developer', 1), ('operator', 1), ('professional', 1), ('ass', 1), ('risk', 1), ('determine', 1)]
[('format', 2), ('last', 1), ('approachable', 1), ('introduction', 1), ('widely', 1), ('used', 1), ('portable', 1), ('document', 1), ('pdfs', 1), ('everywhere', 1), ('online', 1), ('printed', 1), ('form', 1), ('take', 1), ('advantage', 1), ('useful', 1), ('feature', 1), ('grasp', 1), ('nuance', 1), ('concise', 1), ('book', 1), ('provides', 1), ('hand', 1), ('tour', 1), ('world', 1), ('leading', 1), ('page', 1), ('description', 1), ('language', 1), ('programmer', 1)]
[('data', 2), ('team', 2), ('product', 1), ('dashboard', 1), ('look', 1), ('funky', 1), ('quarterly', 1), ('report', 1), ('stale', 1), ('set', 1), ('using', 1), ('broken', 1), ('plain', 1), ('wrong', 1), ('problem', 1), ('affect', 1), ('almost', 1), ('every', 1), ('yet', 1), ('usually', 1), ('addressed', 1), ('ad', 1), ('hoc', 1), ('basis', 1), ('reactive', 1), ('manner', 1), ('answered', 1), ('yes', 1), ('question', 1), ('book', 1), ('many', 1), ('engineering', 1), ('today', 1), ('face', 1)]
[('practice', 2), ('test', 2), ('cissp', 2), ('isc', 2), ('full', 1), ('length', 1), ('covering', 1), ('domain', 1), ('ultimate', 1), ('exam', 1), ('prep', 1), ('official', 1), ('major', 1), ('resource', 1), ('certified', 1), ('information', 1)]
[('dns', 1), ('bind', 1), ('tell', 1), ('everything', 1), ('need', 1), ('work', 1), ('internet', 1), ('fundamental', 1), ('building', 1), ('block', 1), ('distributed', 1), ('host', 1), ('information', 1), ('database', 1), ('responsible', 1), ('translating', 1), ('name', 1), ('address', 1), ('routing', 1), ('mail', 1), ('proper', 1), ('destination', 1), ('even', 1), ('listing', 1), ('phone', 1), ('number', 1), ('new', 1), ('enum', 1), ('standard', 1), ('book', 1), ('brings', 1), ('date', 1)]
[('spring', 2), ('boot', 2), ('million', 1), ('downloads', 1), ('per', 1), ('month', 1), ('widely', 1), ('used', 1), ('java', 1), ('framework', 1), ('available', 1), ('ease', 1), ('power', 1), ('revolutionized', 1), ('application', 1), ('development', 1), ('monolith', 1), ('microservices', 1), ('yet', 1), ('simplicity', 1), ('confounding', 1), ('developer', 1), ('learn', 1), ('enough', 1), ('productive', 1), ('immediately', 1), ('practical', 1), ('book', 1), ('show', 1)]
[('oca', 2), ('java', 2), ('programmer', 2), ('exam', 2), ('oracle', 2), ('certified', 2), ('associate', 2), ('study', 2), ('guide', 2), ('full', 1), ('coverage', 1), ('functional', 1), ('programming', 1), ('objective', 1), ('se', 1), ('comprehensive', 1), ('taking', 1)]
[('spark', 3), ('learn', 1), ('use', 1), ('deploy', 1), ('maintain', 1), ('apache', 1), ('comprehensive', 1), ('guide', 1), ('written', 1), ('creator', 1), ('open', 1), ('source', 1), ('cluster', 1), ('computing', 1), ('framework', 1), ('emphasis', 1), ('improvement', 1), ('new', 1), ('feature', 1), ('author', 1), ('bill', 1), ('chamber', 1), ('matei', 1), ('zaharia', 1), ('break', 1), ('topic', 1), ('distinct', 1), ('section', 1), ('unique', 1), ('goal', 1), ('youâ', 1)]
[('testing', 2), ('software', 2), ('practical', 2), ('critical', 1), ('discipline', 1), ('organization', 1), ('looking', 1), ('deliver', 1), ('high', 1), ('quality', 1), ('book', 1), ('provides', 1), ('developer', 1), ('qa', 1), ('engineer', 1), ('comprehensive', 1), ('stop', 1), ('guide', 1), ('skill', 1), ('different', 1), ('category', 1), ('learn', 1), ('appropriate', 1), ('strategy', 1), ('concept', 1), ('implementation', 1), ('knowledge', 1), ('apply', 1)]
[('reliability', 3), ('site', 2), ('service', 2), ('googleâ', 1), ('engineering', 1), ('book', 1), ('ignited', 1), ('industry', 1), ('discussion', 1), ('mean', 1), ('run', 1), ('production', 1), ('todayâ', 1), ('consideration', 1), ('fundamental', 1), ('design', 1), ('google', 1), ('engineer', 1), ('worked', 1), ('bestseller', 1), ('introduce', 1), ('workbook', 1), ('hand', 1), ('companion', 1), ('us', 1), ('concrete', 1)]
[('product', 4), ('management', 2), ('day', 2), ('become', 1), ('critical', 1), ('function', 1), ('modern', 1), ('organization', 1), ('small', 1), ('startup', 1), ('corporate', 1), ('enterprise', 1), ('yet', 1), ('work', 1), ('remains', 1), ('largely', 1), ('misunderstood', 1), ('theory', 1), ('manager', 1), ('high', 1), ('flying', 1), ('visionary', 1), ('build', 1), ('love', 1), ('practice', 1), ('hard', 1), ('working', 1), ('facilitator', 1)]
[('java', 3), ('updated', 1), ('edition', 1), ('nutshell', 1), ('guide', 1), ('help', 1), ('experienced', 1), ('programmer', 1), ('version', 1), ('serf', 1), ('learning', 1), ('path', 1), ('new', 1), ('developer', 1), ('chock', 1), ('full', 1), ('example', 1), ('demonstrate', 1), ('take', 1), ('complete', 1), ('advantage', 1), ('modern', 1), ('apis', 1), ('development', 1), ('best', 1), ('practice', 1), ('thoroughly', 1), ('revised', 1), ('book', 1), ('includes', 1)]
[('kubernetes', 3), ('developer', 2), ('application', 2), ('ability', 1), ('operate', 1), ('troubleshoot', 1), ('monitor', 1), ('high', 1), ('demand', 1), ('today', 1), ('meet', 1), ('need', 1), ('cloud', 1), ('native', 1), ('computing', 1), ('foundation', 1), ('created', 1), ('certification', 1), ('exam', 1), ('establish', 1), ('credibility', 1), ('value', 1), ('job', 1), ('market', 1), ('work', 1), ('environment', 1), ('certified', 1)]
[('github', 3), ('action', 2), ('continuous', 2), ('automate', 1), ('software', 1), ('development', 1), ('process', 1), ('integration', 1), ('delivery', 1), ('platform', 1), ('integrates', 1), ('seamlessly', 1), ('practical', 1), ('book', 1), ('open', 1), ('source', 1), ('author', 1), ('trainer', 1), ('devops', 1), ('director', 1), ('brent', 1), ('laster', 1), ('explains', 1), ('everything', 1), ('need', 1), ('know', 1), ('using', 1), ('getting', 1), ('value', 1)]
[('programming', 2), ('teach', 1), ('student', 1), ('language', 1), ('idea', 1), ('use', 1), ('practice', 1)]
[('tidymodels', 2), ('modeling', 2), ('data', 2), ('analyst', 2), ('going', 1), ('collection', 1), ('package', 1), ('machine', 1), ('learning', 1), ('whether', 1), ('starting', 1), ('year', 1), ('experience', 1), ('practical', 1), ('introduction', 1), ('show', 1), ('business', 1), ('scientist', 1), ('framework', 1), ('offer', 1), ('consistent', 1), ('flexible', 1), ('approach', 1), ('work', 1), ('rstudio', 1)]
[('programming', 2), ('language', 2), ('throw', 1), ('old', 1), ('idea', 1), ('know', 1), ('substantially', 1), ('outgrown', 1), ('origin', 1), ('revised', 1), ('edition', 1), ('st', 1), ('century', 1), ('discover', 1), ('date', 1), ('technique', 1), ('missing', 1), ('tutorial', 1), ('whether', 1), ('new', 1), ('getting', 1), ('reacquainted', 1), ('foundation', 1), ('modern', 1)]
[('ux', 2), ('apps', 1), ('website', 1), ('rubber', 1), ('duck', 1), ('naked', 1), ('ninja', 1), ('book', 1), ('everything', 1), ('want', 1), ('started', 1), ('user', 1), ('experience', 1), ('design', 1), ('come', 1), ('right', 1), ('place', 1), ('self', 1), ('contained', 1), ('lesson', 1), ('cover', 1), ('whole', 1), ('spectrum', 1), ('fundamental', 1), ('forget', 1), ('dry', 1), ('technical', 1), ('material', 1), ('bookã', 1), ('based', 1), ('wildly', 1), ('popular', 1), ('crash', 1), ('course', 1), ('joel', 1), ('marshã', 1)]
[('cybersecurity', 3), ('stalling', 2), ('practice', 2), ('effective', 1), ('william', 1), ('introduces', 1), ('technology', 1), ('operational', 1), ('procedure', 1), ('management', 1), ('needed', 1), ('successful', 1), ('make', 1), ('extensive', 1), ('use', 1), ('standard', 1), ('best', 1), ('document', 1), ('often', 1), ('used', 1), ('guide', 1), ('mandate', 1), ('implementation', 1), ('going', 1), ('beyond', 1), ('offer', 1), ('depth', 1)]
[('wordpress', 2), ('whether', 1), ('budding', 1), ('blogger', 1), ('seasoned', 1), ('web', 1), ('designer', 1), ('brilliant', 1), ('tool', 1), ('creating', 1), ('website', 1), ('know', 1), ('tap', 1), ('impressive', 1), ('feature', 1), ('latest', 1), ('edition', 1), ('jargon', 1), ('free', 1), ('missing', 1), ('manual', 1), ('show', 1), ('use', 1), ('theme', 1), ('widget', 1), ('plug', 1), ('in', 1), ('build', 1), ('kind', 1), ('site', 1), ('important', 1), ('stuff', 1)]
[('machine', 2), ('learning', 2), ('security', 2), ('technique', 1), ('solve', 1), ('computer', 1), ('problem', 1), ('finally', 1), ('put', 1), ('end', 1), ('cat', 1), ('mouse', 1), ('game', 1), ('attacker', 1), ('defender', 1), ('hope', 1), ('merely', 1), ('hype', 1), ('dive', 1), ('science', 1), ('answer', 1), ('question', 1), ('practical', 1), ('guide', 1), ('explore', 1), ('way', 1), ('apply', 1), ('issue', 1)]
[('cloud', 2), ('build', 2), ('native', 1), ('development', 1), ('give', 1), ('power', 1), ('rapidly', 1), ('secure', 1), ('scale', 1), ('software', 1), ('still', 1), ('need', 1), ('navigate', 1), ('many', 1), ('potential', 1), ('pitfall', 1), ('along', 1), ('way', 1), ('practical', 1), ('example', 1), ('book', 1), ('demonstrates', 1), ('use', 1), ('google', 1), ('laboratory', 1), ('enable', 1), ('rapid', 1), ('innovation', 1), ('factory', 1), ('automate', 1), ('testing', 1), ('citadel', 1), ('operate', 1)]
[('point', 1), ('career', 1), ('realize', 1), ('software', 1), ('engineer', 1), ('dealing', 1), ('code', 1), ('time', 1), ('become', 1), ('manager', 1), ('join', 1), ('startup', 1), ('insightful', 1), ('entertaining', 1), ('book', 1), ('michael', 1), ('lopp', 1), ('recall', 1), ('make', 1), ('break', 1), ('moment', 1), ('silicon', 1), ('valley', 1), ('giant', 1), ('apple', 1), ('slack', 1), ('pinterest', 1), ('palantir', 1), ('netscape', 1), ('symantec', 1)]
[('vue', 2), ('j', 2), ('application', 2), ('web', 2), ('step', 2), ('learn', 1), ('core', 1), ('concept', 1), ('modern', 1), ('javascript', 1), ('framework', 1), ('building', 1), ('frontend', 1), ('interface', 1), ('scratch', 1), ('concise', 1), ('practical', 1), ('clear', 1), ('example', 1), ('book', 1), ('take', 1), ('developer', 1), ('tool', 1), ('library', 1), ('ecosystem', 1), ('show', 1), ('create', 1), ('complete', 1), ('real', 1), ('world', 1)]
[('design', 4), ('software', 2), ('right', 2), ('engineer', 1), ('coincidence', 1), ('mean', 1), ('filled', 1), ('practical', 1), ('technique', 1), ('perfect', 1), ('introduction', 1), ('architecture', 1), ('programmer', 1), ('ready', 1), ('grow', 1), ('skill', 1), ('lead', 1), ('team', 1), ('architect', 1), ('ask', 1), ('stakeholder', 1), ('question', 1), ('explore', 1), ('option', 1), ('help', 1)]
[('complete', 2), ('coverage', 2), ('comptia', 2), ('pentest', 2), ('certification', 2), ('exam', 2), ('fully', 1), ('updated', 1), ('guide', 1), ('delivers', 1), ('every', 1), ('topic', 1), ('current', 1), ('version', 1), ('objective', 1), ('included', 1), ('pt', 1), ('comprehensive', 1), ('resource', 1), ('written', 1), ('expert', 1), ('penetration', 1), ('tester', 1), ('book', 1), ('provides', 1), ('learning', 1)]
[('kafka', 4), ('data', 3), ('used', 1), ('fortune', 1), ('company', 1), ('apache', 1), ('become', 1), ('de', 1), ('facto', 1), ('event', 1), ('streaming', 1), ('platform', 1), ('connect', 1), ('key', 1), ('component', 1), ('let', 1), ('flow', 1), ('existing', 1), ('system', 1), ('process', 1), ('real', 1), ('time', 1), ('practical', 1), ('guide', 1), ('author', 1), ('mickael', 1), ('maison', 1), ('kate', 1), ('stanley', 1), ('show', 1), ('engineer', 1), ('site', 1)]
[('apps', 4), ('web', 3), ('native', 2), ('feature', 2), ('move', 1), ('new', 1), ('progressive', 1), ('capability', 1), ('soon', 1), ('make', 1), ('obsolete', 1), ('hand', 1), ('guide', 1), ('developer', 1), ('business', 1), ('exec', 1), ('learn', 1), ('develop', 1), ('take', 1), ('advantage', 1), ('far', 1), ('exclusive', 1), ('include', 1), ('fast', 1), ('load', 1), ('time', 1), ('push', 1), ('notification', 1)]
[('application', 3), ('serverless', 2), ('explore', 1), ('theory', 1), ('practice', 1), ('designing', 1), ('writing', 1), ('using', 1), ('example', 1), ('knative', 1), ('project', 1), ('practical', 1), ('guide', 1), ('mid', 1), ('level', 1), ('senior', 1), ('developer', 1), ('team', 1), ('manager', 1), ('learn', 1), ('target', 1), ('platform', 1), ('developing', 1), ('microservices', 1), ('along', 1), ('way', 1), ('discover', 1)]
[('security', 2), ('exam', 2), ('first', 2), ('sy', 2), ('reader', 2), ('complete', 1), ('resource', 1), ('passing', 1), ('try', 1), ('comptia', 1), ('certified', 1), ('ahead', 1), ('study', 1), ('guide', 1), ('helped', 1), ('thousand', 1), ('pas', 1), ('attempt', 1), ('book', 1), ('cover', 1), ('objective', 1), ('includes', 1), ('element', 1), ('raved', 1), ('previous', 1), ('version', 1)]
[('memory', 3), ('management', 3), ('garbage', 2), ('collection', 2), ('automatic', 2), ('published', 1), ('richard', 1), ('jones', 1), ('milestone', 1), ('area', 1), ('widely', 1), ('acclaimed', 1), ('successor', 1), ('handbook', 1), ('art', 1), ('captured', 1), ('state', 1), ('field', 1), ('modern', 1), ('technology', 1), ('development', 1), ('made', 1), ('challenging', 1)]
[('diagram', 2), ('create', 2), ('communicate', 1), ('relationship', 1), ('directly', 1), ('clearly', 1), ('word', 1), ('using', 1), ('text', 1), ('based', 1), ('markup', 1), ('meaningful', 1), ('attractive', 1), ('document', 1), ('domain', 1), ('visualize', 1), ('user', 1), ('flow', 1), ('reveal', 1), ('system', 1), ('architecture', 1), ('desired', 1), ('level', 1), ('refactor', 1), ('code', 1), ('tool', 1), ('technique', 1), ('book', 1), ('give', 1)]
[('data', 3), ('warehouse', 2), ('amazon', 1), ('redshift', 1), ('power', 1), ('analytic', 1), ('cloud', 1), ('worldwide', 1), ('startup', 1), ('largest', 1), ('enterprise', 1), ('available', 1), ('today', 1), ('practical', 1), ('guide', 1), ('thoroughly', 1), ('examines', 1), ('managed', 1), ('service', 1), ('demonstrates', 1), ('use', 1), ('extract', 1), ('value', 1), ('immediately', 1), ('rather', 1), ('go', 1), ('heavy', 1), ('lifting', 1), ('required', 1), ('run', 1)]
[('software', 3), ('engineer', 2), ('engineering', 2), ('codebase', 2), ('today', 1), ('need', 1), ('know', 1), ('program', 1), ('effectively', 1), ('develop', 1), ('proper', 1), ('practice', 1), ('make', 1), ('sustainable', 1), ('healthy', 1), ('book', 1), ('emphasizes', 1), ('difference', 1), ('programming', 1), ('manage', 1), ('living', 1), ('evolves', 1), ('responds', 1)]
[('html', 2), ('cs', 2), ('full', 1), ('color', 1), ('introduction', 1), ('basic', 1), ('every', 1), ('day', 1), ('want', 1), ('learn', 1), ('joining', 1), ('professional', 1), ('web', 1), ('designer', 1), ('programmer', 1), ('new', 1), ('audience', 1), ('need', 1), ('know', 1), ('little', 1), ('bit', 1), ('code', 1), ('work', 1)]
[('observability', 2), ('critical', 1), ('building', 1), ('changing', 1), ('understanding', 1), ('software', 1), ('power', 1), ('complex', 1), ('modern', 1), ('system', 1), ('team', 1), ('adopt', 1), ('better', 1), ('equipped', 1), ('ship', 1), ('code', 1), ('swiftly', 1), ('confidently', 1), ('identify', 1), ('outlier', 1), ('aberrant', 1), ('behavior', 1), ('understand', 1), ('experience', 1), ('every', 1), ('user', 1), ('practical', 1), ('book', 1), ('explains', 1), ('value', 1)]
[('sql', 2), ('data', 1), ('flood', 1), ('company', 1), ('need', 1), ('put', 1), ('work', 1), ('right', 1), ('away', 1), ('best', 1), ('tool', 1), ('job', 1), ('latest', 1), ('edition', 1), ('introductory', 1), ('guide', 1), ('author', 1), ('alan', 1), ('beaulieu', 1), ('help', 1), ('developer', 1), ('speed', 1), ('fundamental', 1), ('writing', 1), ('database', 1), ('application', 1), ('performing', 1), ('administrative', 1), ('task', 1), ('generating', 1), ('report', 1), ('find', 1), ('new', 1)]
[('software', 2), ('engineer', 2), ('technological', 1), ('advancement', 1), ('fast', 1), ('market', 1), ('higher', 1), ('complexity', 1), ('system', 1), ('tend', 1), ('skip', 1), ('uncomfortable', 1), ('topic', 1), ('efficiency', 1), ('tactical', 1), ('observability', 1), ('driven', 1), ('performance', 1), ('optimization', 1), ('vital', 1), ('every', 1), ('product', 1), ('save', 1), ('money', 1), ('ensure', 1), ('business', 1), ('success', 1), ('book', 1), ('learn', 1)]
[('python', 2), ('comprehensive', 1), ('depth', 1), ('introduction', 1), ('core', 1), ('language', 1), ('hand', 1), ('book', 1), ('based', 1), ('author', 1), ('mark', 1), ('lutz', 1), ('popular', 1), ('training', 1), ('course', 1), ('updated', 1), ('fifth', 1), ('edition', 1), ('help', 1), ('quickly', 1), ('write', 1), ('efficient', 1), ('high', 1), ('quality', 1), ('code', 1), ('ideal', 1), ('way', 1), ('begin', 1), ('whether', 1), ('new', 1), ('programming', 1), ('professional', 1), ('developer', 1), ('versed', 1)]
[('python', 2), ('recently', 1), ('ranked', 1), ('today', 1), ('popular', 1), ('programming', 1), ('language', 1), ('tiobe', 1), ('index', 1), ('thanks', 1), ('broad', 1), ('applicability', 1), ('design', 1), ('prototyping', 1), ('testing', 1), ('deployment', 1), ('maintenance', 1), ('updated', 1), ('fourth', 1), ('edition', 1), ('learn', 1), ('whether', 1), ('professional', 1), ('programmer', 1), ('need', 1)]
[('python', 3), ('bigger', 2), ('seem', 1), ('project', 1), ('getting', 1), ('feeling', 1), ('pain', 1), ('codebase', 1), ('expands', 1), ('get', 1), ('tougher', 1), ('debug', 1), ('maintain', 1), ('easy', 1), ('language', 1), ('learn', 1), ('use', 1), ('mean', 1), ('system', 1), ('quickly', 1), ('grow', 1), ('beyond', 1), ('comprehension', 1), ('thankfully', 1), ('feature', 1), ('help', 1), ('developer', 1), ('overcome', 1), ('maintainability', 1)]
[('learn', 1), ('key', 1), ('objective', 1), ('crucial', 1), ('concept', 1), ('covered', 1), ('security', 1), ('exam', 1), ('sy', 1), ('comprehensive', 1), ('practical', 1), ('study', 1), ('guide', 1), ('online', 1), ('test', 1), ('bank', 1), ('offer', 1), ('practice', 1), ('question', 1), ('flashcard', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('code', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('even', 1), ('bad', 1), ('function', 1), ('clean', 1), ('bring', 1), ('development', 1), ('organization', 1), ('knee', 1)]
[('ebpf', 1), ('revolutionary', 1), ('technology', 1), ('write', 1), ('custom', 1), ('code', 1), ('dynamically', 1), ('change', 1), ('way', 1), ('kernel', 1), ('behaves', 1), ('extraordinary', 1), ('platform', 1), ('building', 1), ('whole', 1), ('new', 1), ('generation', 1), ('security', 1), ('observability', 1), ('networking', 1), ('tool', 1), ('practical', 1), ('book', 1), ('ideal', 1), ('developer', 1), ('system', 1), ('administrator', 1), ('operator', 1), ('student', 1)]
[('cloud', 2), ('native', 2), ('go', 2), ('docker', 1), ('kubernetes', 1), ('prometheus', 1), ('common', 1), ('technology', 1), ('written', 1), ('programming', 1), ('language', 1), ('practical', 1), ('book', 1), ('show', 1), ('use', 1), ('strength', 1), ('develop', 1), ('service', 1), ('scalable', 1), ('resilient', 1), ('even', 1), ('unpredictable', 1), ('environment', 1), ('explore', 1), ('composition', 1)]
[('software', 2), ('design', 2), ('overwhelming', 1), ('majority', 1), ('systemâ', 1), ('lifespan', 1), ('spent', 1), ('use', 1), ('implementation', 1), ('conventional', 1), ('wisdom', 1), ('insist', 1), ('engineer', 1), ('focus', 1), ('primarily', 1), ('development', 1), ('large', 1), ('scale', 1), ('computing', 1), ('system', 1), ('collection', 1), ('essay', 1), ('article', 1), ('key', 1), ('member', 1), ('googleâ', 1), ('site', 1), ('reliability', 1), ('team', 1)]
[('cissp', 3), ('official', 2), ('study', 2), ('guide', 2), ('fully', 1), ('updated', 1), ('body', 1), ('knowledge', 1), ('isc', 1), ('certified', 1), ('information', 1), ('system', 1), ('security', 1), ('professional', 1), ('th', 1)]
[('vi', 3), ('text', 2), ('editor', 2), ('editing', 2), ('among', 1), ('used', 1), ('programming', 1), ('community', 1), ('perhaps', 1), ('important', 1), ('family', 1), ('derivative', 1), ('updated', 1), ('edition', 1), ('unix', 1), ('linux', 1), ('user', 1), ('learn', 1), ('basic', 1), ('vim', 1), ('improved', 1), ('moving', 1), ('advanced', 1), ('tool', 1), ('author', 1), ('arnold', 1), ('robbins', 1), ('elbert', 1), ('hannah', 1), ('cover', 1)]
[('exam', 4), ('fully', 2), ('revised', 2), ('objective', 2), ('bestselling', 1), ('job', 1), ('reference', 1), ('test', 1), ('preparation', 1), ('guide', 1), ('new', 1), ('updated', 1), ('resource', 1), ('offer', 1), ('complete', 1), ('coverage', 1), ('latest', 1), ('release', 1), ('comptia', 1), ('find', 1), ('learning', 1), ('beginning', 1), ('chapter', 1), ('tip', 1), ('practice', 1)]
[('react', 3), ('javascript', 2), ('want', 1), ('learn', 1), ('build', 1), ('efficient', 1), ('application', 1), ('book', 1), ('ideal', 1), ('web', 1), ('developer', 1), ('software', 1), ('engineer', 1), ('understand', 1), ('cs', 1), ('html', 1), ('work', 1), ('browser', 1), ('updated', 1), ('edition', 1), ('provides', 1), ('best', 1), ('practice', 1), ('pattern', 1), ('writing', 1), ('modern', 1), ('code', 1), ('prior', 1), ('knowledge', 1), ('functional', 1)]
[('data', 2), ('system', 2), ('high', 2), ('manage', 1), ('designed', 1), ('support', 1), ('modern', 1), ('application', 1), ('development', 1), ('updated', 1), ('mongodb', 1), ('third', 1), ('edition', 1), ('authoritative', 1), ('accessible', 1), ('guide', 1), ('show', 1), ('advantage', 1), ('using', 1), ('document', 1), ('oriented', 1), ('database', 1), ('learn', 1), ('secure', 1), ('performance', 1), ('enables', 1), ('flexible', 1), ('model', 1), ('availability', 1)]
[('today', 1), ('architecture', 1), ('microservices', 1), ('serverless', 1), ('function', 1), ('play', 1), ('increasingly', 1), ('important', 1), ('role', 1), ('process', 1), ('automation', 1), ('create', 1), ('meaningful', 1), ('comprehensive', 1), ('connected', 1), ('business', 1), ('solution', 1), ('individual', 1), ('component', 1), ('decoupled', 1), ('independent', 1), ('design', 1), ('targeted', 1), ('developer', 1), ('architect', 1), ('book', 1), ('present', 1)]
[('programming', 2), ('find', 2), ('language', 2), ('bit', 2), ('expert', 1), ('advice', 1), ('hard', 1), ('help', 1), ('available', 1), ('object', 1), ('oriented', 1), ('surprisingly', 1), ('little', 1), ('hand', 1), ('guide', 1), ('beginner', 1), ('experienced', 1), ('programmer', 1), ('alike', 1), ('guidance', 1), ('design', 1), ('decision', 1), ('including', 1), ('apply', 1), ('running', 1), ('code', 1), ('example', 1)]
[('software', 3), ('architecture', 2), ('practical', 1), ('solution', 1), ('legendary', 1), ('robert', 1), ('martin', 1), ('uncle', 1), ('bob', 1), ('nbsp', 1), ('applying', 1), ('universal', 1), ('rule', 1), ('dramatically', 1), ('improve', 1), ('developer', 1), ('productivity', 1), ('throughout', 1), ('life', 1)]
[('data', 3), ('book', 2), ('help', 2), ('world', 1), ('around', 1), ('full', 1), ('hold', 1), ('unique', 1), ('insight', 1), ('valuable', 1), ('story', 1), ('uncover', 1), ('whether', 1), ('already', 1), ('work', 1), ('want', 1), ('learn', 1), ('possibility', 1), ('example', 1), ('technique', 1), ('practical', 1), ('easily', 1), ('clean', 1), ('evaluate', 1), ('analyze', 1), ('generate', 1)]
[('technology', 2), ('web', 2), ('build', 1), ('interactive', 1), ('data', 1), ('driven', 1), ('website', 1), ('potent', 1), ('combination', 1), ('open', 1), ('source', 1), ('standard', 1), ('even', 1), ('basic', 1), ('html', 1), ('knowledge', 1), ('latest', 1), ('edition', 1), ('popular', 1), ('hand', 1), ('guide', 1), ('tackle', 1), ('dynamic', 1), ('programming', 1), ('using', 1), ('recent', 1), ('version', 1), ('today', 1), ('core', 1), ('php', 1), ('mysql', 1), ('javascript', 1), ('cs', 1)]
[('processing', 3), ('apache', 2), ('flink', 2), ('stream', 2), ('started', 1), ('open', 1), ('source', 1), ('framework', 1), ('power', 1), ('world', 1), ('largest', 1), ('application', 1), ('practical', 1), ('book', 1), ('explore', 1), ('fundamental', 1), ('concept', 1), ('parallel', 1), ('discover', 1), ('technology', 1), ('differs', 1), ('traditional', 1), ('batch', 1), ('data', 1), ('longtime', 1), ('committers', 1), ('fabian', 1)]
[('word', 2), ('depend', 1), ('user', 1), ('perform', 1), ('specific', 1), ('action', 1), ('buying', 1), ('ticket', 1), ('playing', 1), ('game', 1), ('riding', 1), ('public', 1), ('transit', 1), ('placed', 1), ('effective', 1), ('choose', 1), ('right', 1), ('know', 1), ('work', 1), ('practical', 1), ('book', 1), ('learn', 1), ('write', 1), ('strategically', 1), ('ux', 1), ('using', 1), ('tool', 1), ('build', 1), ('foundational', 1), ('piece', 1), ('ui', 1)]
[('ux', 3), ('book', 2), ('new', 2), ('career', 1), ('advice', 1), ('written', 1), ('help', 1), ('experienced', 1), ('designer', 1), ('unstuck', 1), ('pursuit', 1), ('job', 1), ('field', 1), ('booming', 1), ('year', 1), ('result', 1), ('landslide', 1), ('talent', 1), ('flooding', 1), ('market', 1), ('newcomer', 1), ('want', 1), ('learn', 1), ('user', 1), ('experience', 1), ('design', 1), ('research', 1), ('fast', 1), ('possible', 1)]
[('webassembly', 1), ('definitive', 1), ('guide', 1), ('thorough', 1), ('accessible', 1), ('introduction', 1), ('transformative', 1), ('technology', 1), ('hitting', 1), ('industry', 1), ('started', 1), ('way', 1), ('use', 1), ('language', 1), ('javascript', 1), ('browser', 1), ('evolved', 1), ('comprehensive', 1), ('path', 1), ('toward', 1), ('portability', 1), ('performance', 1), ('increased', 1), ('security', 1), ('greater', 1), ('code', 1), ('reuse', 1), ('across', 1)]
[('guide', 2), ('net', 2), ('undeniably', 1), ('versatile', 1), ('programming', 1), ('language', 1), ('available', 1), ('engineer', 1), ('today', 1), ('comprehensive', 1), ('learn', 1), ('powerful', 1), ('combination', 1), ('author', 1), ('ian', 1), ('griffith', 1), ('fundamental', 1), ('technique', 1), ('building', 1), ('cloud', 1), ('web', 1), ('desktop', 1), ('application', 1), ('designed', 1)]
[('sql', 3), ('data', 3), ('day', 2), ('use', 1), ('work', 1), ('analyst', 1), ('scientist', 1), ('engineer', 1), ('popular', 1), ('pocket', 1), ('guide', 1), ('ideal', 1), ('job', 1), ('reference', 1), ('find', 1), ('many', 1), ('example', 1), ('address', 1), ('language', 1), ('complexity', 1), ('along', 1), ('key', 1), ('aspect', 1), ('used', 1), ('microsoft', 1), ('server', 1), ('mysql', 1), ('oracle', 1), ('database', 1), ('postgresql', 1), ('sqlite', 1), ('updated', 1)]
[('bad', 3), ('language', 2), ('javascript', 2), ('programming', 1), ('contain', 1), ('good', 1), ('part', 1), ('share', 1), ('developed', 1), ('released', 1), ('hurry', 1), ('refined', 1), ('authoritative', 1), ('book', 1), ('scrape', 1), ('away', 1), ('feature', 1), ('reveal', 1), ('subset', 1), ('reliable', 1), ('readable', 1), ('maintainable', 1)]
[('data', 5), ('snowflake', 1), ('ability', 1), ('eliminate', 1), ('silo', 1), ('run', 1), ('workload', 1), ('single', 1), ('platform', 1), ('creates', 1), ('opportunity', 1), ('democratize', 1), ('analytics', 1), ('allowing', 1), ('user', 1), ('level', 1), ('within', 1), ('organization', 1), ('make', 1), ('driven', 1), ('decision', 1), ('whether', 1), ('professional', 1), ('working', 1), ('warehousing', 1), ('science', 1), ('business', 1), ('analyst', 1), ('technical', 1), ('manager', 1)]
[('editor', 3), ('vim', 2), ('efficient', 2), ('text', 2), ('fast', 1), ('make', 1), ('faster', 1), ('developer', 1), ('available', 1), ('almost', 1), ('every', 1), ('o', 1), ('master', 1), ('technique', 1), ('book', 1), ('never', 1), ('need', 1), ('another', 1), ('tip', 1), ('quickly', 1), ('learn', 1), ('core', 1), ('functionality', 1), ('tackle', 1), ('trickiest', 1), ('editing', 1), ('writing', 1)]
[('data', 6), ('catalog', 2), ('combing', 1), ('web', 1), ('simple', 1), ('search', 1), ('work', 1), ('difficult', 1), ('time', 1), ('consuming', 1), ('sometimes', 1), ('seem', 1), ('impossible', 1), ('book', 1), ('introduces', 1), ('practical', 1), ('solution', 1), ('analyst', 1), ('scientist', 1), ('engineer', 1), ('learn', 1), ('create', 1), ('true', 1), ('discovery', 1), ('organization', 1), ('making', 1), ('key', 1)]
[('kubernetes', 2), ('production', 2), ('become', 1), ('dominant', 1), ('container', 1), ('orchestrator', 1), ('many', 1), ('organization', 1), ('recently', 1), ('adopted', 1), ('system', 1), ('still', 1), ('struggling', 1), ('run', 1), ('actual', 1), ('workload', 1), ('practical', 1), ('book', 1), ('four', 1), ('software', 1), ('engineer', 1), ('vmware', 1), ('bring', 1), ('shared', 1), ('experience', 1), ('running', 1), ('provide', 1), ('insight', 1), ('key', 1), ('challenge', 1)]
[('prometheus', 2), ('speed', 1), ('metric', 1), ('based', 1), ('monitoring', 1), ('system', 1), ('used', 1), ('production', 1), ('ten', 1), ('thousand', 1), ('organization', 1), ('updated', 1), ('second', 1), ('edition', 1), ('provides', 1), ('site', 1), ('reliability', 1), ('engineer', 1), ('kubernetes', 1), ('administrator', 1), ('software', 1), ('developer', 1), ('hand', 1), ('introduction', 1), ('important', 1), ('aspect', 1), ('including', 1), ('dashboarding', 1)]
[('git', 3), ('learn', 2), ('find', 2), ('book', 1), ('many', 1), ('use', 1), ('rely', 1), ('recipe', 1), ('copying', 1), ('pasting', 1), ('command', 1), ('internet', 1), ('without', 1), ('really', 1), ('understanding', 1), ('actually', 1), ('work', 1), ('tight', 1), ('spot', 1), ('simply', 1), ('wing', 1), ('unique', 1), ('hand', 1), ('guide', 1), ('way', 1), ('fun', 1)]
[('organization', 2), ('web', 1), ('presence', 1), ('build', 1), ('operate', 1), ('apis', 1), ('doorway', 1), ('customer', 1), ('interact', 1), ('company', 1), ('service', 1), ('designing', 1), ('building', 1), ('managing', 1), ('critical', 1), ('program', 1), ('affect', 1), ('everyone', 1), ('engineer', 1), ('product', 1), ('owner', 1), ('suite', 1), ('executive', 1), ('real', 1), ('challenge', 1), ('developer', 1), ('solution', 1), ('architect', 1)]
[('engineering', 2), ('manager', 2), ('year', 2), ('become', 2), ('best', 2), ('lot', 1), ('leader', 1), ('studied', 1), ('engineer', 1), ('possibly', 1), ('promoted', 1), ('tough', 1), ('go', 1), ('distinct', 1), ('concept', 1), ('still', 1), ('want', 1), ('support', 1), ('team', 1), ('wrote', 1)]
[('trader', 2), ('algorithmic', 1), ('trading', 1), ('exclusive', 1), ('domain', 1), ('institutional', 1), ('player', 1), ('open', 1), ('small', 1), ('organization', 1), ('individual', 1), ('using', 1), ('online', 1), ('platform', 1), ('tool', 1), ('choice', 1), ('many', 1), ('today', 1), ('python', 1), ('ecosystem', 1), ('powerful', 1), ('package', 1), ('practical', 1), ('book', 1), ('author', 1), ('yves', 1), ('hilpisch', 1), ('show', 1), ('student', 1), ('academic', 1), ('practitioner', 1), ('use', 1)]
[('git', 2), ('use', 2), ('book', 1), ('teach', 1), ('simple', 1), ('visual', 1), ('tangible', 1), ('manner', 1), ('build', 1), ('solid', 1), ('mental', 1), ('model', 1), ('version', 1), ('control', 1), ('work', 1), ('color', 1), ('storytelling', 1), ('hand', 1), ('exercise', 1), ('learn', 1), ('tool', 1), ('confidence', 1), ('information', 1), ('introduced', 1), ('incrementally', 1), ('bogged', 1), ('unknown', 1)]
[('kotlin', 3), ('java', 2), ('take', 1), ('week', 1), ('travel', 1), ('mile', 1), ('overland', 1), ('experienced', 1), ('developer', 1), ('tried', 1), ('language', 1), ('probably', 1), ('productive', 1), ('time', 1), ('found', 1), ('thing', 1), ('differently', 1), ('though', 1), ('nullability', 1), ('important', 1), ('collection', 1), ('different', 1), ('class', 1), ('final', 1)]
[('kubernetes', 2), ('work', 2), ('system', 2), ('become', 1), ('essential', 1), ('part', 1), ('daily', 1), ('network', 1), ('cluster', 1), ('administrator', 1), ('today', 1), ('effectively', 1), ('together', 1), ('production', 1), ('scale', 1), ('able', 1), ('speak', 1), ('language', 1), ('book', 1), ('provides', 1), ('clear', 1), ('guide', 1), ('layer', 1), ('complexity', 1), ('abstraction', 1), ('come', 1), ('running', 1)]
[('identity', 2), ('difficult', 1), ('many', 1), ('company', 1), ('digital', 1), ('right', 1), ('still', 1), ('wrestling', 1), ('even', 1), ('simple', 1), ('problem', 1), ('modern', 1), ('website', 1), ('authentication', 1), ('practical', 1), ('book', 1), ('answer', 1), ('need', 1), ('author', 1), ('phil', 1), ('windley', 1), ('provides', 1), ('conceptual', 1), ('framework', 1), ('help', 1), ('make', 1), ('sense', 1), ('protocol', 1), ('standard', 1), ('solution', 1), ('available', 1)]
[('script', 2), ('bash', 2), ('enemy', 2), ('code', 2), ('shell', 1), ('everywhere', 1), ('especially', 1), ('written', 1), ('compatible', 1), ('syntax', 1), ('complex', 1), ('obscure', 1), ('complexity', 1), ('security', 1), ('readability', 1), ('understanding', 1), ('practical', 1), ('book', 1), ('learn', 1), ('decipher', 1), ('old', 1), ('write', 1), ('new', 1), ('clear', 1), ('readable', 1)]
[('linux', 3), ('skill', 2), ('handy', 1), ('cookbook', 1), ('teach', 1), ('new', 1), ('intermediate', 1), ('user', 1), ('essential', 1), ('necessary', 1), ('manage', 1), ('system', 1), ('using', 1), ('graphical', 1), ('command', 1), ('line', 1), ('tool', 1), ('whether', 1), ('run', 1), ('embedded', 1), ('desktop', 1), ('server', 1), ('cloud', 1), ('virtual', 1), ('environment', 1), ('fundamental', 1), ('book', 1), ('aim', 1), ('running', 1), ('quickly', 1)]
[('finance', 2), ('nowadays', 1), ('mathematics', 1), ('programming', 1), ('intrinsically', 1), ('linked', 1), ('book', 1), ('provides', 1), ('relevant', 1), ('foundation', 1), ('discipline', 1), ('give', 1), ('major', 1), ('tool', 1), ('need', 1), ('started', 1), ('world', 1), ('computational', 1), ('using', 1), ('approach', 1), ('mathematical', 1), ('concept', 1), ('provide', 1), ('common', 1), ('background', 1), ('financial', 1), ('idea', 1)]
[('data', 3), ('real', 3), ('time', 2), ('exponential', 1), ('growth', 1), ('combined', 1), ('need', 1), ('derive', 1), ('business', 1), ('value', 1), ('critical', 1), ('issue', 1), ('today', 1), ('event', 1), ('driven', 1), ('mesh', 1), ('power', 1), ('operational', 1), ('analytical', 1), ('workload', 1), ('single', 1), ('set', 1), ('product', 1), ('stream', 1), ('practical', 1), ('world', 1), ('example', 1), ('book', 1), ('show', 1), ('successfully', 1), ('design', 1), ('build', 1)]
[('application', 2), ('every', 1), ('day', 1), ('company', 1), ('struggle', 1), ('scale', 1), ('critical', 1), ('traffic', 1), ('volume', 1), ('data', 1), ('demand', 1), ('increase', 1), ('become', 1), ('complicated', 1), ('brittle', 1), ('exposing', 1), ('risk', 1), ('compromising', 1), ('availability', 1), ('popularity', 1), ('software', 1), ('service', 1), ('scaling', 1), ('never', 1), ('important', 1), ('updated', 1), ('expanded', 1), ('focus', 1), ('modern', 1)]
[('code', 3), ('use', 2), ('tdd', 2), ('testament', 1), ('skill', 1), ('developer', 1), ('matter', 1), ('language', 1), ('clean', 1), ('elegant', 1), ('uncluttered', 1), ('using', 1), ('test', 1), ('driven', 1), ('development', 1), ('write', 1), ('easy', 1), ('understand', 1), ('retains', 1), ('elegance', 1), ('work', 1), ('month', 1), ('even', 1), ('year', 1), ('come', 1), ('indispensable', 1), ('guide', 1), ('learn', 1)]
[('system', 3), ('pattern', 2), ('guide', 2), ('distributed', 2), ('without', 1), ('established', 1), ('design', 1), ('developer', 1), ('build', 1), ('scratch', 1), ('unique', 1), ('indeed', 1), ('today', 1), ('increasing', 1), ('use', 1), ('container', 1), ('paved', 1), ('way', 1), ('core', 1), ('reusable', 1), ('containerized', 1), ('component', 1), ('practical', 1), ('present', 1), ('collection', 1)]
[('system', 2), ('considered', 2), ('secure', 2), ('truly', 1), ('reliable', 1), ('fundamentally', 1), ('unreliable', 1), ('security', 1), ('crucial', 1), ('design', 1), ('operation', 1), ('scalable', 1), ('production', 1), ('play', 1), ('important', 1), ('part', 1), ('product', 1), ('quality', 1), ('performance', 1), ('availability', 1), ('book', 1), ('expert', 1), ('google', 1), ('share', 1), ('best', 1), ('practice', 1)]
[('data', 3), ('analytics', 2), ('excel', 2), ('user', 2), ('seem', 1), ('daunting', 1), ('experienced', 1), ('unique', 1), ('head', 1), ('start', 1), ('hand', 1), ('guide', 1), ('intermediate', 1), ('gain', 1), ('solid', 1), ('understanding', 1), ('stack', 1), ('time', 1), ('complete', 1), ('book', 1), ('able', 1), ('conduct', 1), ('exploratory', 1), ('analysis', 1), ('hypothesis', 1), ('testing', 1), ('using', 1)]
[('java', 5), ('programming', 3), ('definitive', 1), ('guide', 1), ('fully', 1), ('updated', 1), ('se', 1), ('complete', 1), ('reference', 1), ('eleventh', 1), ('edition', 1), ('explains', 1), ('develop', 1), ('compile', 1), ('debug', 1), ('run', 1), ('program', 1), ('best', 1), ('selling', 1), ('author', 1), ('herb', 1), ('schildt', 1), ('cover', 1), ('entire', 1), ('language', 1), ('including', 1), ('syntax', 1), ('keywords', 1), ('fundamental', 1), ('principle', 1)]
[('shell', 3), ('system', 1), ('administrator', 1), ('programmer', 1), ('end', 1), ('user', 1), ('command', 1), ('carefully', 1), ('crafted', 1), ('script', 1), ('save', 1), ('time', 1), ('effort', 1), ('facilitate', 1), ('consistency', 1), ('repeatability', 1), ('variety', 1), ('common', 1), ('task', 1), ('cookbook', 1), ('provides', 1), ('practical', 1), ('recipe', 1), ('using', 1), ('bash', 1), ('popular', 1), ('unix', 1), ('enables', 1), ('harness', 1), ('customize', 1)]
[('publisher', 2), ('product', 2), ('cisa', 2), ('exam', 2), ('guide', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('includes', 1), ('practice', 1), ('bonus', 1), ('quick', 1), ('review', 1), ('le', 1), ('purchasing', 1), ('book', 1)]
[('html', 4), ('want', 2), ('tired', 1), ('reading', 1), ('book', 1), ('make', 1), ('sense', 1), ('expert', 1), ('time', 1), ('picked', 1), ('head', 1), ('first', 1), ('really', 1), ('learned', 1), ('learn', 1), ('finally', 1), ('create', 1), ('web', 1), ('page', 1), ('always', 1), ('wanted', 1), ('communicate', 1), ('effectively', 1), ('friend', 1), ('family', 1), ('fan', 1), ('fanatic', 1), ('customer', 1)]
[('programming', 2), ('go', 2), ('general', 2), ('purpose', 2), ('language', 2), ('step', 2), ('perfect', 1), ('beginner', 1), ('familiar', 1), ('basic', 1), ('hand', 1), ('guide', 1), ('provides', 1), ('easy', 1), ('introduction', 1), ('google', 1), ('author', 1), ('caleb', 1), ('doxsey', 1), ('cover', 1), ('core', 1), ('feature', 1), ('instruction', 1), ('exercise', 1), ('chapter', 1), ('help', 1), ('practice', 1), ('learn', 1)]
[('study', 2), ('ocp', 2), ('java', 2), ('se', 2), ('developer', 2), ('exam', 2), ('effective', 1), ('practical', 1), ('aid', 1), ('new', 1), ('certification', 1), ('oracle', 1), ('certified', 1), ('professional', 1), ('guide', 1), ('find', 1), ('accessible', 1), ('essential', 1), ('test', 1), ('prep', 1), ('material', 1)]
[('exam', 4), ('updated', 2), ('cissp', 2), ('information', 2), ('system', 2), ('new', 1), ('edition', 1), ('shon', 1), ('harris', 1), ('bestselling', 1), ('prep', 1), ('guide', 1), ('fully', 1), ('version', 1), ('thoroughly', 1), ('latest', 1), ('release', 1), ('certified', 1), ('security', 1), ('professional', 1), ('comprehensive', 1), ('resource', 1), ('cover', 1), ('objective', 1), ('developed', 1), ('international', 1)]
[('nlp', 2), ('deep', 2), ('natural', 1), ('language', 1), ('processing', 1), ('provides', 1), ('boundless', 1), ('opportunity', 1), ('solving', 1), ('problem', 1), ('artificial', 1), ('intelligence', 1), ('making', 1), ('product', 1), ('amazon', 1), ('alexa', 1), ('google', 1), ('translate', 1), ('possible', 1), ('developer', 1), ('data', 1), ('scientist', 1), ('new', 1), ('learning', 1), ('practical', 1), ('guide', 1), ('show', 1), ('apply', 1), ('method', 1), ('using', 1), ('pytorch', 1), ('python', 1), ('based', 1)]
[('tour', 1), ('third', 1), ('edition', 1), ('bjarne', 1), ('stroustrup', 1), ('provides', 1), ('overview', 1), ('iso', 1), ('aim', 1), ('give', 1), ('experienced', 1), ('programmer', 1), ('clear', 1), ('understanding', 1), ('constitutes', 1), ('modern', 1), ('featuring', 1), ('carefully', 1), ('crafted', 1), ('example', 1), ('practical', 1), ('help', 1)]
[('network', 3), ('engineer', 2), ('finding', 1), ('harder', 1), ('rely', 1), ('solely', 1), ('manual', 1), ('process', 1), ('job', 1), ('done', 1), ('new', 1), ('protocol', 1), ('technology', 1), ('delivery', 1), ('model', 1), ('need', 1), ('business', 1), ('become', 1), ('agile', 1), ('flexible', 1), ('made', 1), ('automation', 1), ('essential', 1), ('updated', 1), ('second', 1), ('edition', 1), ('practical', 1), ('guide', 1), ('show', 1), ('use', 1)]
[('nan', 1)]
[('kotlin', 4), ('learn', 3), ('book', 2), ('language', 2), ('head', 1), ('first', 1), ('complete', 1), ('introduction', 1), ('coding', 1), ('hand', 1), ('help', 1), ('unique', 1), ('method', 1), ('go', 1), ('beyond', 1), ('syntax', 1), ('manual', 1), ('teach', 1), ('think', 1), ('developer', 1), ('everything', 1), ('fundamental', 1)]
[('reactive', 2), ('system', 2), ('event', 2), ('driven', 2), ('architecture', 2), ('application', 2), ('becoming', 1), ('indispensable', 1), ('design', 1), ('company', 1), ('taking', 1), ('note', 1), ('ensure', 1), ('responsive', 1), ('resilient', 1), ('elastic', 1), ('matter', 1), ('failure', 1), ('error', 1), ('occurring', 1), ('offer', 1), ('flexible', 1), ('composable', 1), ('option', 1)]
[('mysql', 2), ('comprehensive', 1), ('overview', 1), ('set', 1), ('design', 1), ('effective', 1), ('database', 1), ('thoroughly', 1), ('updated', 1), ('edition', 1), ('cover', 1), ('latest', 1), ('version', 1), ('including', 1), ('important', 1), ('aspect', 1), ('whether', 1), ('deploying', 1), ('environment', 1), ('troubleshooting', 1), ('issue', 1), ('engaging', 1), ('disaster', 1), ('recovery', 1), ('practical', 1), ('guide', 1), ('provides', 1), ('insight', 1), ('tool', 1)]
[('data', 4), ('value', 1), ('semantic', 1), ('modeling', 1), ('offer', 1), ('information', 1), ('architect', 1), ('science', 1), ('professional', 1), ('say', 1), ('abundance', 1), ('right', 1), ('technology', 1), ('extract', 1), ('business', 1), ('gold', 1), ('still', 1), ('fail', 1), ('reason', 1), ('bad', 1), ('semantics', 1), ('practical', 1), ('comprehensive', 1), ('field', 1), ('guide', 1), ('author', 1), ('panos', 1), ('alexopoulos', 1), ('take', 1)]
[('google', 2), ('cloud', 2), ('recipe', 2), ('step', 2), ('quick', 1), ('hand', 1), ('experience', 1), ('cookbook', 1), ('provides', 1), ('variety', 1), ('self', 1), ('contained', 1), ('show', 1), ('use', 1), ('service', 1), ('enterprise', 1), ('application', 1), ('whether', 1), ('looking', 1), ('practical', 1), ('way', 1), ('apply', 1), ('microservices', 1), ('ai', 1), ('analytics', 1), ('security', 1), ('networking', 1), ('solution', 1), ('take', 1)]
[('data', 4), ('today', 1), ('interpreting', 1), ('critical', 1), ('decision', 1), ('making', 1), ('factor', 1), ('business', 1), ('organization', 1), ('job', 1), ('requires', 1), ('manage', 1), ('analyze', 1), ('kind', 1), ('turn', 1), ('head', 1), ('first', 1), ('analysis', 1), ('quickly', 1), ('learn', 1), ('collect', 1), ('organize', 1), ('sort', 1), ('distraction', 1), ('truth', 1), ('find', 1), ('meaningful', 1), ('pattern', 1), ('draw', 1), ('conclusion', 1)]
[('protocol', 3), ('layer', 2), ('guide', 2), ('go', 1), ('beyond', 1), ('broadcast', 1), ('domain', 1), ('depth', 1), ('tour', 1), ('advanced', 1), ('link', 1), ('internetwork', 1), ('learn', 1), ('enable', 1), ('expand', 1), ('larger', 1), ('topology', 1), ('ideal', 1), ('follow', 1), ('packet', 1), ('core', 1), ('network', 1), ('concise', 1), ('dissects', 1), ('several', 1), ('explain', 1), ('structure', 1), ('operation', 1)]
[('fear', 3), ('development', 2), ('programmer', 2), ('quite', 1), ('simply', 1), ('test', 1), ('driven', 1), ('meant', 1), ('eliminate', 1), ('application', 1), ('healthy', 1), ('often', 1), ('viewed', 1), ('conscience', 1), ('tell', 1), ('careful', 1), ('author', 1), ('belief', 1), ('byproduct', 1), ('include', 1), ('tentative', 1), ('grumpy', 1), ('uncommunicative', 1), ('unable', 1), ('absorb', 1), ('constructive', 1), ('criticism', 1)]
[('php', 2), ('solution', 2), ('problem', 2), ('recipe', 2), ('help', 2), ('version', 2), ('day', 2), ('developer', 1), ('looking', 1), ('proven', 1), ('common', 1), ('cookbook', 1), ('provides', 1), ('code', 1), ('resolve', 1), ('numerous', 1), ('scenario', 1), ('leveraging', 1), ('modern', 1), ('self', 1), ('contained', 1), ('provide', 1), ('fully', 1), ('realized', 1), ('solve', 1), ('similar', 1), ('work', 1), ('whether', 1)]
[('nan', 1)]
[('linux', 4), ('system', 3), ('kernel', 2), ('love', 2), ('write', 1), ('software', 1), ('draw', 1), ('directly', 1), ('service', 1), ('offered', 1), ('core', 1), ('library', 1), ('comprehensive', 1), ('book', 1), ('contributor', 1), ('robert', 1), ('provides', 1), ('tutorial', 1), ('programming', 1), ('reference', 1), ('manual', 1), ('call', 1), ('insider', 1), ('guide', 1), ('writing', 1), ('smarter', 1), ('faster', 1), ('code', 1), ('clearly', 1)]
[('giac', 3), ('certified', 3), ('exam', 3), ('guide', 2), ('incident', 2), ('handler', 2), ('self', 1), ('study', 1), ('delivers', 1), ('complete', 1), ('coverage', 1), ('every', 1), ('topic', 1), ('prepare', 1), ('challenging', 1), ('using', 1), ('detailed', 1), ('information', 1), ('contained', 1), ('effective', 1), ('preparation', 1), ('written', 1), ('recognized', 1), ('cybersecurity', 1), ('expert', 1), ('seasoned', 1), ('author', 1), ('gcih', 1)]
[('pointer', 3), ('memory', 2), ('improve', 1), ('programming', 1), ('solid', 1), ('understanding', 1), ('management', 1), ('practical', 1), ('book', 1), ('learn', 1), ('provide', 1), ('mechanism', 1), ('dynamically', 1), ('manipulate', 1), ('enhance', 1), ('support', 1), ('data', 1), ('structure', 1), ('enable', 1), ('access', 1), ('hardware', 1), ('author', 1), ('richard', 1), ('reese', 1), ('show', 1), ('use', 1), ('array', 1), ('string', 1)]
[('ooad', 2), ('ivar', 2), ('jacobson', 2), ('head', 1), ('first', 1), ('object', 1), ('oriented', 1), ('analysis', 1), ('design', 1), ('refreshing', 1), ('look', 1), ('subject', 1), ('set', 1), ('book', 1), ('apart', 1), ('focus', 1), ('learning', 1), ('author', 1), ('made', 1), ('content', 1), ('accessible', 1), ('usable', 1), ('practitioner', 1), ('consulting', 1), ('finished', 1), ('reading', 1), ('hf', 1), ('ooa', 1), ('loved', 1), ('thing', 1), ('liked', 1)]
[('learning', 2), ('take', 1), ('next', 1), ('step', 1), ('toward', 1), ('mastering', 1), ('deep', 1), ('machine', 1), ('method', 1), ('transforming', 1), ('world', 1), ('around', 1), ('second', 1), ('practical', 1), ('book', 1), ('speed', 1), ('key', 1), ('idea', 1), ('using', 1), ('facebook', 1), ('open', 1), ('source', 1), ('pytorch', 1), ('framework', 1), ('gain', 1), ('latest', 1), ('skill', 1), ('need', 1), ('create', 1), ('neural', 1), ('network', 1), ('ian', 1), ('pointer', 1), ('show', 1)]
[('cisco', 4), ('new', 2), ('ccna', 2), ('exam', 2), ('network', 2), ('expert', 1), ('todd', 1), ('lammle', 1), ('prepares', 1), ('certification', 1), ('world', 1), ('leader', 1), ('technology', 1), ('released', 1), ('certified', 1), ('associate', 1)]
[('file', 3), ('day', 2), ('command', 2), ('use', 1), ('linux', 1), ('work', 1), ('popular', 1), ('pocket', 1), ('guide', 1), ('perfect', 1), ('job', 1), ('reference', 1), ('third', 1), ('edition', 1), ('feature', 1), ('new', 1), ('processing', 1), ('image', 1), ('audio', 1), ('running', 1), ('killing', 1), ('program', 1), ('reading', 1), ('modifying', 1), ('system', 1), ('clipboard', 1), ('manipulating', 1), ('pdf', 1), ('requested', 1), ('reader', 1)]
[('learning', 2), ('sql', 2), ('data', 1), ('dragging', 1), ('table', 1), ('tangled', 1), ('tool', 1), ('teach', 1), ('wrangle', 1), ('database', 1), ('submission', 1), ('using', 1), ('latest', 1), ('research', 1), ('neurobiology', 1), ('cognitive', 1), ('science', 1), ('theory', 1), ('craft', 1), ('multi', 1), ('sensory', 1), ('experience', 1), ('head', 1), ('first', 1), ('visually', 1), ('rich', 1), ('format', 1), ('designed', 1)]
[('computer', 2), ('code', 2), ('leading', 1), ('technologist', 1), ('historian', 1), ('journalist', 1), ('reveal', 1), ('story', 1), ('behind', 1), ('coding', 1), ('touch', 1), ('aspect', 1), ('life', 1), ('better', 1), ('worse', 1), ('give', 1), ('thought', 1), ('come', 1), ('word', 1), ('make', 1), ('sound', 1), ('immutable', 1), ('even', 1), ('inevitable', 1), ('expected', 1), ('understand', 1), ('demonstrates', 1)]
[('build', 2), ('application', 2), ('ml', 2), ('product', 2), ('learn', 1), ('skill', 1), ('necessary', 1), ('design', 1), ('deploy', 1), ('powered', 1), ('machine', 1), ('learning', 1), ('course', 1), ('hand', 1), ('book', 1), ('example', 1), ('driven', 1), ('initial', 1), ('idea', 1), ('deployed', 1), ('data', 1), ('scientist', 1), ('software', 1), ('engineer', 1), ('manager', 1), ('including', 1), ('experienced', 1), ('practitioner', 1), ('novice', 1), ('alike', 1)]
[('cisco', 3), ('technology', 2), ('leading', 1), ('authority', 1), ('todd', 1), ('lammle', 1), ('help', 1), ('gain', 1), ('insight', 1), ('new', 1), ('core', 1), ('network', 1), ('understanding', 1), ('networking', 1), ('important', 1), ('resource', 1)]
[('software', 4), ('best', 2), ('development', 2), ('even', 1), ('developer', 1), ('seen', 1), ('intentioned', 1), ('project', 1), ('fail', 1), ('often', 1), ('customer', 1), ('kept', 1), ('changing', 1), ('requirement', 1), ('end', 1), ('user', 1), ('know', 1), ('use', 1), ('developed', 1), ('instead', 1), ('surrendering', 1), ('common', 1), ('problem', 1), ('head', 1), ('first', 1), ('guide', 1), ('practice', 1)]
[('vim', 5), ('turn', 1), ('full', 1), ('blown', 1), ('development', 1), ('environment', 1), ('using', 1), ('new', 1), ('feature', 1), ('sequel', 1), ('beloved', 1), ('bestseller', 1), ('practical', 1), ('integrate', 1), ('editor', 1), ('tool', 1), ('building', 1), ('testing', 1), ('linting', 1), ('indexing', 1), ('searching', 1), ('codebase', 1), ('discover', 1), ('future', 1), ('neovim', 1), ('fork', 1), ('includes', 1), ('built', 1), ('terminal', 1), ('emulator', 1)]
[('data', 4), ('power', 2), ('bi', 2), ('tool', 2), ('enough', 2), ('accessible', 2), ('use', 2), ('microsoft', 1), ('analytics', 1), ('visualization', 1), ('powerful', 1), ('demanding', 1), ('scientist', 1), ('everyday', 1), ('anyone', 1), ('need', 1), ('market', 1), ('many', 1), ('book', 1), ('designed', 1), ('train', 1), ('equip', 1), ('professional', 1), ('analyst', 1), ('make', 1)]
[('insight', 2), ('real', 2), ('time', 2), ('system', 2), ('data', 2), ('gain', 1), ('deep', 1), ('analytics', 1), ('including', 1), ('feature', 1), ('problem', 1), ('solve', 1), ('practical', 1), ('book', 1), ('engineer', 1), ('organization', 1), ('use', 1), ('event', 1), ('processing', 1), ('kafka', 1), ('google', 1), ('pub', 1), ('sub', 1), ('aws', 1), ('kinesis', 1), ('learn', 1), ('analyze', 1), ('stream', 1), ('faster', 1), ('derive', 1)]
[('change', 2), ('making', 1), ('significant', 1), ('large', 1), ('complex', 1), ('codebases', 1), ('daunting', 1), ('task', 1), ('nearly', 1), ('impossible', 1), ('successfully', 1), ('unless', 1), ('right', 1), ('team', 1), ('tool', 1), ('mindset', 1), ('application', 1), ('need', 1), ('substantial', 1), ('overhaul', 1), ('unsure', 1), ('go', 1), ('implementing', 1), ('sustainable', 1), ('way', 1), ('book', 1)]
[('theory', 3), ('sql', 2), ('relational', 2), ('full', 1), ('difficulty', 1), ('trap', 1), ('unwary', 1), ('avoid', 1), ('understand', 1), ('know', 1), ('put', 1), ('practice', 1), ('book', 1), ('chris', 1), ('date', 1), ('explains', 1), ('depth', 1), ('demonstrates', 1), ('numerous', 1), ('example', 1), ('exercise', 1), ('apply', 1), ('use', 1), ('third', 1)]
[('control', 2), ('enterprise', 2), ('take', 1), ('advantage', 1), ('feedback', 1), ('programming', 1), ('book', 1), ('author', 1), ('philipp', 1), ('janert', 1), ('demonstrates', 1), ('principle', 1), ('govern', 1), ('cruise', 1), ('car', 1), ('apply', 1), ('data', 1), ('center', 1), ('management', 1), ('system', 1), ('case', 1), ('study', 1), ('hand', 1), ('simulation', 1), ('learn', 1), ('method', 1), ('solve', 1), ('several', 1)]
[('expert', 2), ('problem', 2), ('solve', 1), ('difficult', 1), ('software', 1), ('development', 1), ('unique', 1), ('insightful', 1), ('book', 1), ('leading', 1), ('computer', 1), ('scientist', 1), ('offer', 1), ('case', 1), ('study', 1), ('reveal', 1), ('found', 1), ('unusual', 1), ('carefully', 1), ('designed', 1), ('solution', 1), ('high', 1), ('profile', 1), ('project', 1), ('able', 1), ('look', 1), ('shoulder', 1), ('major', 1), ('coding', 1), ('design', 1), ('see', 1)]
[('highly', 1), ('engaging', 1), ('interactive', 1), ('undergraduate', 1), ('textbook', 1), ('specifically', 1), ('written', 1), ('computer', 1), ('science', 1), ('course', 1)]
[('java', 3), ('ocp', 2), ('se', 2), ('exam', 2), ('developer', 2), ('efficiently', 1), ('effectively', 1), ('prepare', 1), ('certification', 1), ('oracle', 1), ('certified', 1), ('professional', 1), ('practice', 1), ('test', 1), ('team', 1), ('veteran', 1), ('help', 1), ('gain', 1), ('confidence', 1), ('knowledge', 1)]
[('nan', 1)]
[('nan', 1)]
[('explorer', 2), ('experiment', 2), ('uncover', 1), ('surprise', 1), ('risk', 1), ('potentially', 1), ('serious', 1), ('bug', 1), ('exploratory', 1), ('testing', 1), ('rather', 1), ('designing', 1), ('test', 1), ('advance', 1), ('design', 1), ('execute', 1), ('small', 1), ('rapid', 1), ('using', 1), ('learned', 1), ('last', 1), ('little', 1), ('inform', 1), ('next', 1), ('learn', 1), ('essential', 1), ('skill', 1), ('master', 1), ('including', 1), ('analyze', 1), ('software', 1), ('discover', 1)]
[('cython', 2), ('learn', 2), ('build', 1), ('software', 1), ('combine', 1), ('python', 1), ('expressivity', 1), ('performance', 1), ('control', 1), ('possible', 1), ('compiler', 1), ('hybrid', 1), ('programming', 1), ('language', 1), ('used', 1), ('foundational', 1), ('package', 1), ('numpy', 1), ('prominent', 1), ('project', 1), ('including', 1), ('panda', 1), ('py', 1), ('scikits', 1), ('practical', 1), ('guide', 1), ('use', 1)]
[('accessible', 1), ('introduction', 1), ('demonstrates', 1), ('range', 1), ('testing', 1), ('technique', 1), ('context', 1), ('single', 1), ('worked', 1), ('example', 1), ('run', 1), ('throughout', 1)]
[('data', 3), ('analytics', 2), ('different', 2), ('using', 2), ('lake', 2), ('perform', 1), ('fast', 1), ('interactive', 1), ('source', 1), ('trino', 1), ('high', 1), ('performance', 1), ('distributed', 1), ('sql', 1), ('query', 1), ('engine', 1), ('second', 1), ('edition', 1), ('practical', 1), ('guide', 1), ('learn', 1), ('conduct', 1), ('life', 1), ('whether', 1), ('hive', 1), ('modern', 1), ('lakehouse', 1), ('iceberg', 1), ('delta', 1), ('system', 1)]
[('awk', 3), ('developed', 1), ('bell', 1), ('lab', 1), ('still', 1), ('remarkably', 1), ('useful', 1), ('tool', 1), ('solving', 1), ('wide', 1), ('variety', 1), ('problem', 1), ('quickly', 1), ('efficiently', 1), ('update', 1), ('classic', 1), ('book', 1), ('creator', 1), ('language', 1), ('show', 1), ('teach', 1)]
[('python', 3), ('need', 1), ('know', 1), ('nothing', 1), ('solve', 1), ('real', 1), ('problem', 1), ('popular', 1), ('programming', 1), ('language', 1), ('world', 1), ('used', 1), ('everything', 1), ('shell', 1), ('script', 1), ('web', 1), ('development', 1), ('data', 1), ('science', 1), ('result', 1)]
[('incident', 2), ('response', 2), ('learn', 2), ('using', 1), ('conceived', 1), ('plan', 1), ('aftermath', 1), ('online', 1), ('security', 1), ('breach', 1), ('enables', 1), ('team', 1), ('identify', 1), ('attacker', 1), ('operate', 1), ('approach', 1), ('cyber', 1), ('threat', 1), ('intelligence', 1), ('mindset', 1), ('truly', 1), ('understand', 1), ('value', 1), ('information', 1), ('updated', 1), ('second', 1), ('edition', 1)]
[('learning', 2), ('comprehensive', 1), ('resource', 1), ('undergraduate', 1), ('graduate', 1), ('student', 1), ('new', 1), ('chapter', 1), ('deep', 1), ('causality', 1), ('social', 1), ('impact', 1)]
[('cipp', 2), ('exam', 2), ('prepare', 1), ('success', 1), ('iapp', 1), ('career', 1), ('privacy', 1), ('effective', 1), ('study', 1), ('guide', 1), ('includes', 1), ('downloadable', 1), ('supplement', 1), ('date', 1), ('current', 1)]
[('risk', 3), ('cyber', 2), ('management', 2), ('urgent', 1), ('issue', 1), ('facing', 1), ('enterprise', 1), ('today', 1), ('book', 1), ('present', 1), ('detailed', 1), ('framework', 1), ('designing', 1), ('developing', 1), ('implementing', 1), ('program', 1), ('address', 1), ('company', 1), ('specific', 1), ('need', 1), ('ideal', 1), ('corporate', 1), ('director', 1), ('senior', 1), ('executive', 1), ('security', 1), ('practitioner', 1), ('auditor', 1), ('many', 1)]
[('team', 3), ('microsoft', 2), ('used', 1), ('hundred', 1), ('thousand', 1), ('organization', 1), ('help', 1), ('keep', 1), ('remote', 1), ('hybrid', 1), ('workplace', 1), ('dispersed', 1), ('workforce', 1), ('running', 1), ('smoothly', 1), ('seem', 1), ('easy', 1), ('user', 1), ('administrator', 1), ('stay', 1), ('top', 1), ('wide', 1), ('range', 1), ('topic', 1), ('including', 1), ('device', 1), ('administration', 1), ('technique', 1), ('quality', 1), ('benchmark', 1), ('security', 1)]
[('azure', 4), ('deal', 1), ('problem', 1), ('face', 1), ('using', 1), ('practical', 1), ('guide', 1), ('provides', 1), ('recipe', 1), ('help', 1), ('work', 1), ('common', 1), ('issue', 1), ('everyday', 1), ('scenario', 1), ('includes', 1), ('key', 1), ('task', 1), ('setting', 1), ('permission', 1), ('storage', 1), ('account', 1), ('working', 1), ('cosmos', 1), ('db', 1), ('apis', 1), ('managing', 1), ('role', 1), ('based', 1), ('access', 1), ('control', 1), ('governing', 1)]
[('system', 2), ('time', 2), ('slow', 1), ('frustrating', 1), ('waste', 1), ('money', 1), ('making', 1), ('consistently', 1), ('decision', 1), ('performance', 1), ('easy', 1), ('understand', 1), ('going', 1), ('book', 1), ('explains', 1), ('clear', 1), ('thoughtful', 1), ('voice', 1), ('perform', 1), ('way', 1), ('anybody', 1), ('curious', 1), ('computer', 1), ('program', 1), ('process', 1), ('use', 1)]
[('nan', 1)]
[('sql', 3), ('language', 2), ('developer', 2), ('expert', 2), ('ubiquitous', 1), ('software', 1), ('working', 1), ('structured', 1), ('data', 1), ('rely', 1), ('favorite', 1), ('java', 1), ('python', 1), ('go', 1), ('often', 1), ('depend', 1), ('antipatterns', 1), ('solution', 1), ('look', 1), ('right', 1), ('become', 1), ('increasingly', 1), ('painful', 1), ('work', 1), ('uncover', 1)]
[('net', 3), ('component', 2), ('framework', 2), ('brilliantly', 1), ('compiled', 1), ('author', 1), ('juval', 1), ('lowy', 1), ('programming', 1), ('second', 1), ('edition', 1), ('consummate', 1), ('introduction', 1), ('microsoft', 1), ('technology', 1), ('choice', 1), ('building', 1), ('window', 1), ('platform', 1), ('many', 1), ('lesson', 1), ('tip', 1), ('guideline', 1), ('reader', 1), ('learn', 1), ('use', 1), ('program', 1), ('reusable', 1)]
[('window', 2), ('security', 2), ('dig', 1), ('deep', 1), ('auditing', 1), ('subsystem', 1), ('monitor', 1), ('malicious', 1), ('activity', 1), ('enhance', 1), ('system', 1), ('written', 1), ('former', 1), ('microsoft', 1), ('program', 1), ('manager', 1), ('defcon', 1), ('forensics', 1), ('ctf', 1)]
[('exam', 2), ('master', 1), ('key', 1), ('objective', 1), ('crucial', 1), ('cybersecurity', 1), ('concept', 1), ('comptia', 1), ('security', 1), ('sy', 1), ('along', 1), ('online', 1), ('test', 1), ('bank', 1), ('hundred', 1), ('practice', 1), ('question', 1), ('flashcard', 1), ('newly', 1)]
[('macos', 3), ('support', 3), ('essential', 1), ('official', 1), ('book', 1), ('top', 1), ('notch', 1), ('primer', 1), ('anyone', 1), ('need', 1), ('troubleshoot', 1), ('optimize', 1), ('monterey', 1), ('professional', 1), ('technician', 1), ('help', 1), ('desk', 1), ('specialist', 1), ('ardent', 1), ('mac', 1), ('user', 1)]
[('kubernetes', 2), ('container', 2), ('application', 2), ('across', 2), ('de', 1), ('facto', 1), ('standard', 1), ('orchestration', 1), ('distributed', 1), ('management', 1), ('microservices', 1), ('framework', 1), ('practical', 1), ('cookbook', 1), ('learn', 1), ('hand', 1), ('recipe', 1), ('automating', 1), ('deployment', 1), ('scaling', 1), ('operation', 1), ('cluster', 1), ('host', 1), ('fully', 1), ('updated', 1), ('second', 1)]
[('nan', 1)]
[('chat', 2), ('gpt', 2), ('artificial', 2), ('intelligence', 2), ('technology', 2), ('work', 1), ('earn', 1), ('comprehensive', 1), ('detailed', 1), ('guide', 1), ('provides', 1), ('depth', 1), ('information', 1), ('working', 1), ('various', 1), ('way', 1), ('used', 1), ('earning', 1), ('opportunity', 1), ('book', 1), ('divided', 1), ('four', 1), ('chapter', 1), ('focusing', 1)]
[('application', 2), ('app', 1), ('developer', 1), ('solid', 1), ('foundation', 1), ('objective', 1), ('book', 1), ('absolute', 1), ('chance', 1), ('high', 1), ('company', 1), ('io', 1), ('vulnerable', 1), ('attack', 1), ('malicious', 1), ('attacker', 1), ('use', 1), ('arsenal', 1), ('tool', 1), ('reverse', 1), ('engineer', 1), ('trace', 1), ('manipulate', 1), ('way', 1), ('programmer', 1), ('aware', 1)]
[('web', 3), ('scraping', 3), ('programming', 1), ('magic', 1), ('surely', 1), ('form', 1), ('wizardry', 1), ('writing', 1), ('simple', 1), ('automated', 1), ('program', 1), ('query', 1), ('server', 1), ('request', 1), ('data', 1), ('parse', 1), ('extract', 1), ('information', 1), ('need', 1), ('thoroughly', 1), ('updated', 1), ('third', 1), ('edition', 1), ('introduces', 1), ('serf', 1), ('comprehensive', 1), ('guide', 1), ('almost', 1), ('every', 1)]
[('python', 2), ('zed', 2), ('learn', 1), ('shaw', 1), ('created', 1), ('world', 1), ('reliable', 1), ('system', 1), ('learning', 1), ('follow', 1), ('succeed', 1), ('million', 1), ('beginner', 1), ('taught', 1), ('date', 1), ('bring', 1), ('discipline', 1), ('persistence', 1), ('attention', 1)]
[('product', 3), ('many', 2), ('ux', 2), ('designer', 1), ('surprised', 1), ('learn', 1), ('job', 1), ('drawing', 1), ('thing', 1), ('knowing', 1), ('draw', 1), ('convince', 1), ('build', 1), ('whether', 1), ('person', 1), ('design', 1), ('team', 1), ('making', 1), ('scratch', 1), ('level', 1), ('leader', 1), ('managing', 1), ('strategy', 1), ('business', 1), ('missing', 1), ('guide', 1)]
[('data', 2), ('match', 2), ('sql', 2), ('handed', 1), ('different', 1), ('related', 1), ('set', 1), ('tool', 1), ('use', 1), ('find', 1), ('select', 1), ('access', 1), ('database', 1), ('practical', 1), ('book', 1), ('author', 1), ('jim', 1), ('lehmer', 1), ('provides', 1), ('best', 1), ('practice', 1), ('technique', 1), ('trick', 1), ('help', 1), ('import', 1), ('clean', 1), ('score', 1), ('think', 1), ('heterogeneous', 1), ('using', 1), ('dba', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('book', 1), ('provides', 1), ('deep', 1), ('dive', 1), ('world', 1), ('generative', 1), ('ai', 1), ('covering', 1), ('everything', 1), ('basic', 1), ('neural', 1), ('network', 1), ('intricacy', 1), ('large', 1), ('language', 1), ('model', 1), ('chatgpt', 1), ('google', 1), ('bard', 1), ('serf', 1), ('stop', 1), ('resource', 1), ('anyone', 1), ('interested', 1)]
[('exam', 4), ('comptia', 2), ('security', 2), ('cram', 2), ('practice', 2), ('prep', 2), ('sy', 1), ('perfect', 1), ('study', 1), ('guide', 1), ('help', 1), ('pas', 1), ('newly', 1), ('updated', 1), ('version', 1), ('provides', 1), ('coverage', 1), ('question', 1), ('every', 1), ('topic', 1), ('extensive', 1), ('tool', 1), ('include', 1), ('quiz', 1), ('alert', 1), ('essential', 1), ('last', 1), ('minute', 1), ('review', 1), ('sheet', 1), ('powerful', 1), ('pearson', 1), ('test', 1)]
[('data', 5), ('inflection', 1), ('point', 1), ('management', 1), ('solution', 1), ('longer', 1), ('match', 1), ('complexity', 1), ('organization', 1), ('proliferation', 1), ('source', 1), ('scope', 1), ('aspiration', 1), ('value', 1), ('ai', 1), ('analytics', 1), ('practical', 1), ('book', 1), ('author', 1), ('zhamak', 1), ('dehghani', 1), ('introduces', 1), ('mesh', 1), ('decentralized', 1), ('sociotechnical', 1), ('paradigm', 1)]
[('rust', 2), ('programming', 2), ('language', 2), ('system', 2), ('engine', 2), ('several', 1), ('consecutive', 1), ('year', 1), ('voted', 1), ('loved', 1), ('stack', 1), ('overflow', 1), ('annual', 1), ('developer', 1), ('survey', 1), ('open', 1), ('source', 1), ('used', 1), ('everything', 1), ('game', 1), ('operating', 1), ('browser', 1), ('component', 1), ('virtual', 1), ('reality', 1), ('simulation', 1), ('incredibly', 1), ('complex', 1)]
[('statistical', 3), ('data', 3), ('method', 2), ('science', 2), ('key', 1), ('part', 1), ('yet', 1), ('scientist', 1), ('formal', 1), ('training', 1), ('course', 1), ('book', 1), ('basic', 1), ('statistic', 1), ('rarely', 1), ('cover', 1), ('topic', 1), ('perspective', 1), ('second', 1), ('edition', 1), ('popular', 1), ('guide', 1), ('add', 1), ('comprehensive', 1), ('example', 1), ('python', 1), ('provides', 1), ('practical', 1), ('guidance', 1), ('applying', 1)]
[('dynamically', 2), ('typed', 2), ('code', 2), ('type', 2), ('layer', 2), ('programmer', 1), ('working', 1), ('language', 1), ('tell', 1), ('hard', 1), ('scale', 1), ('line', 1), ('engineer', 1), ('facebook', 1), ('google', 1), ('microsoft', 1), ('invented', 1), ('gradual', 1), ('static', 1), ('javascript', 1), ('python', 1), ('practical', 1), ('book', 1), ('show', 1), ('typescript', 1)]
[('user', 2), ('story', 1), ('mapping', 1), ('valuable', 1), ('tool', 1), ('software', 1), ('development', 1), ('understand', 1), ('use', 1), ('insightful', 1), ('book', 1), ('examines', 1), ('often', 1), ('misunderstood', 1), ('technique', 1), ('help', 1), ('team', 1), ('stay', 1), ('focused', 1), ('need', 1), ('without', 1), ('getting', 1), ('lost', 1), ('enthusiasm', 1), ('individual', 1), ('product', 1), ('feature', 1), ('author', 1), ('jeff', 1), ('patton', 1), ('show', 1)]
[('book', 2), ('pragmatic', 1), ('programmer', 1), ('tech', 1), ('year', 1), ('whether', 1), ('new', 1), ('field', 1), ('experienced', 1), ('practitioner', 1), ('come', 1), ('away', 1), ('fresh', 1), ('insight', 1), ('every', 1), ('time', 1), ('dave', 1), ('thomas', 1), ('andy', 1), ('hunt', 1), ('wrote', 1), ('first', 1), ('edition', 1), ('influential', 1), ('help', 1), ('client', 1), ('create', 1)]
[('concurrency', 3), ('go', 2), ('notoriously', 1), ('difficult', 1), ('right', 1), ('fortunately', 1), ('open', 1), ('source', 1), ('programming', 1), ('language', 1), ('make', 1), ('working', 1), ('tractable', 1), ('even', 1), ('easy', 1), ('developer', 1), ('familiar', 1), ('practical', 1), ('book', 1), ('demonstrates', 1), ('best', 1), ('practice', 1), ('pattern', 1), ('help', 1), ('incorporate', 1), ('system', 1), ('author', 1), ('katherine', 1)]
[('use', 1), ('linux', 1), ('development', 1), ('operation', 1), ('need', 1), ('structured', 1), ('approach', 1), ('help', 1), ('dive', 1), ('deeper', 1), ('book', 1), ('author', 1), ('michael', 1), ('hausenblas', 1), ('provides', 1), ('tip', 1), ('trick', 1), ('improving', 1), ('workflow', 1), ('open', 1), ('source', 1), ('operating', 1), ('system', 1), ('whether', 1), ('developer', 1), ('software', 1), ('architect', 1), ('site', 1), ('reliability', 1), ('engineer', 1), ('hand', 1), ('guide', 1)]
[('data', 6), ('pipeline', 2), ('foundation', 1), ('success', 1), ('analytics', 1), ('moving', 1), ('numerous', 1), ('diverse', 1), ('source', 1), ('transforming', 1), ('provide', 1), ('context', 1), ('difference', 1), ('actually', 1), ('gaining', 1), ('value', 1), ('pocket', 1), ('reference', 1), ('defines', 1), ('explains', 1), ('work', 1), ('today', 1), ('modern', 1), ('stack', 1), ('learn', 1), ('common', 1)]
[('scrum', 4), ('want', 1), ('use', 1), ('develop', 1), ('innovative', 1), ('product', 1), ('service', 1), ('delight', 1), ('customer', 1), ('essential', 1), ('complete', 1), ('single', 1), ('source', 1), ('reference', 1), ('searching', 1), ('leading', 1), ('coach', 1), ('trainer', 1), ('kenny', 1), ('rubin', 1), ('illuminates', 1), ('value', 1), ('principle', 1), ('practice', 1), ('describes', 1), ('flexible', 1), ('proven', 1), ('approach', 1), ('help', 1)]
[('ai', 2), ('looking', 1), ('make', 1), ('career', 1), ('move', 1), ('programmer', 1), ('specialist', 1), ('ideal', 1), ('place', 1), ('start', 1), ('based', 1), ('laurence', 1), ('moroney', 1), ('extremely', 1), ('successful', 1), ('course', 1), ('introductory', 1), ('book', 1), ('provides', 1), ('hand', 1), ('code', 1), ('first', 1), ('approach', 1), ('help', 1), ('build', 1), ('confidence', 1), ('learn', 1), ('key', 1), ('topic', 1), ('understand', 1), ('implement', 1), ('common', 1)]
[('provides', 2), ('testing', 2), ('practical', 1), ('guide', 1), ('insight', 1), ('software', 1), ('explaining', 1), ('basic', 1), ('process', 1), ('perform', 1), ('effective', 1), ('test', 1), ('overview', 1), ('different', 1), ('technique', 1), ('apply', 1), ('best', 1), ('selling', 1), ('official', 1), ('textbook', 1), ('istqb', 1), ('bcs', 1), ('certified', 1), ('tester', 1), ('foundation', 1), ('level', 1)]
[('developer', 2), ('software', 2), ('answer', 1), ('today', 1), ('increasingly', 1), ('complex', 1), ('web', 1), ('application', 1), ('micro', 1), ('frontends', 1), ('inspired', 1), ('microservices', 1), ('model', 1), ('approach', 1), ('let', 1), ('break', 1), ('interface', 1), ('separate', 1), ('feature', 1), ('managed', 1), ('different', 1), ('team', 1), ('practical', 1), ('guide', 1), ('luca', 1), ('mezzalira', 1), ('show', 1), ('architect', 1), ('tech', 1), ('lead', 1), ('build', 1)]
[('git', 3), ('step', 2), ('track', 1), ('branch', 1), ('merge', 1), ('manage', 1), ('code', 1), ('revision', 1), ('free', 1), ('open', 1), ('source', 1), ('distributed', 1), ('version', 1), ('control', 1), ('system', 1), ('series', 1), ('tutorial', 1), ('practical', 1), ('guide', 1), ('quickly', 1), ('take', 1), ('fundamental', 1), ('advanced', 1), ('technique', 1), ('provides', 1), ('friendly', 1), ('yet', 1), ('rigorous', 1), ('advice', 1), ('navigating', 1), ('many', 1), ('function', 1), ('learn', 1)]
[('development', 2), ('test', 2), ('taking', 1), ('real', 1), ('web', 1), ('application', 1), ('beginning', 1), ('end', 1), ('second', 1), ('edition', 1), ('hand', 1), ('guide', 1), ('demonstrates', 1), ('practical', 1), ('advantage', 1), ('driven', 1), ('tdd', 1), ('python', 1), ('learn', 1), ('write', 1), ('run', 1), ('building', 1), ('part', 1), ('app', 1), ('develop', 1), ('minimum', 1), ('amount', 1), ('code', 1), ('required', 1)]
[('powershell', 2), ('use', 1), ('navigate', 1), ('filesystem', 1), ('manage', 1), ('file', 1), ('folder', 1), ('retrieve', 1), ('web', 1), ('page', 1), ('introduction', 1), ('language', 1), ('scripting', 1), ('environment', 1), ('provides', 1), ('task', 1), ('oriented', 1), ('recipe', 1), ('help', 1), ('solve', 1), ('kind', 1), ('problem', 1), ('intermediate', 1), ('advanced', 1), ('system', 1), ('administrator', 1), ('find', 1)]
[('software', 2), ('agile', 2), ('company', 1), ('developing', 1), ('employ', 1), ('something', 1), ('call', 1), ('widespread', 1), ('misunderstanding', 1), ('use', 1), ('want', 1), ('improve', 1), ('development', 1), ('team', 1), ('agility', 1), ('comprehensive', 1), ('guidebook', 1), ('clear', 1), ('concrete', 1), ('detailed', 1), ('guidance', 1), ('explains', 1), ('make', 1), ('trade', 1), ('offs', 1)]
[('provides', 2), ('cloud', 2), ('practical', 1), ('guide', 1), ('self', 1), ('contained', 1), ('recipe', 1), ('help', 1), ('creatively', 1), ('solve', 1), ('common', 1), ('aws', 1), ('challenge', 1), ('encounter', 1), ('journey', 1), ('comfortable', 1), ('rudimentary', 1), ('scripting', 1), ('general', 1), ('concept', 1), ('cookbook', 1), ('need', 1), ('address', 1), ('foundational', 1), ('task', 1), ('create', 1), ('high', 1), ('level', 1), ('capability', 1), ('author', 1), ('john', 1)]
[('science', 2), ('textbook', 1), ('covering', 1), ('data', 1), ('machine', 1), ('learning', 1), ('method', 1), ('modelling', 1), ('control', 1), ('engineering', 1), ('python', 1), ('matlab', 1)]
[('python', 3), ('code', 2), ('run', 2), ('performance', 2), ('high', 2), ('correctly', 1), ('need', 1), ('faster', 1), ('updated', 1), ('expanded', 1), ('edition', 1), ('show', 1), ('locate', 1), ('bottleneck', 1), ('significantly', 1), ('speed', 1), ('data', 1), ('volume', 1), ('program', 1), ('exploring', 1), ('fundamental', 1), ('theory', 1), ('behind', 1), ('design', 1), ('choice', 1), ('help', 1), ('gain', 1), ('deeper', 1), ('understanding', 1)]
[('java', 3), ('help', 2), ('coding', 1), ('testing', 1), ('generally', 1), ('considered', 1), ('separate', 1), ('area', 1), ('expertise', 1), ('practical', 1), ('book', 1), ('expert', 1), ('scott', 1), ('oak', 1), ('take', 1), ('approach', 1), ('anyone', 1), ('work', 1), ('adept', 1), ('understanding', 1), ('code', 1), ('behaves', 1), ('virtual', 1), ('machine', 1), ('including', 1), ('tuning', 1), ('likely', 1), ('performance', 1), ('updated', 1), ('second', 1), ('edition', 1), ('gain', 1)]
[('design', 3), ('designer', 2), ('nbsp', 1), ('capturing', 1), ('wealth', 1), ('experience', 1), ('object', 1), ('oriented', 1), ('software', 1), ('four', 1), ('top', 1), ('notch', 1), ('present', 1), ('catalog', 1), ('simple', 1), ('succinct', 1), ('solution', 1), ('commonly', 1), ('occurring', 1), ('problem', 1), ('previously', 1), ('undocumented', 1), ('pattern', 1), ('allow', 1), ('create', 1), ('flexible', 1), ('elegant', 1), ('ultimately', 1), ('reusable', 1), ('without', 1)]
[('system', 3), ('embedded', 2), ('programming', 2), ('pattern', 2), ('interested', 1), ('developing', 1), ('donâ', 1), ('tolerate', 1), ('inefficiency', 1), ('require', 1), ('disciplined', 1), ('approach', 1), ('easy', 1), ('guide', 1), ('help', 1), ('cultivate', 1), ('host', 1), ('good', 1), ('development', 1), ('practice', 1), ('based', 1), ('classic', 1), ('software', 1), ('design', 1), ('new', 1), ('unique', 1), ('learn', 1), ('build', 1)]
[('kubernetes', 3), ('administrator', 2), ('ability', 1), ('administer', 1), ('monitor', 1), ('cluster', 1), ('high', 1), ('demand', 1), ('today', 1), ('meet', 1), ('need', 1), ('cloud', 1), ('native', 1), ('computing', 1), ('foundation', 1), ('developed', 1), ('certification', 1), ('exam', 1), ('establish', 1), ('credibility', 1), ('value', 1), ('job', 1), ('market', 1), ('confidently', 1), ('work', 1), ('environment', 1), ('certified', 1), ('cka', 1)]
[('software', 4), ('metric', 2), ('architectural', 2), ('architecture', 1), ('key', 1), ('maintainability', 1), ('quality', 1), ('project', 1), ('warn', 1), ('dangerous', 1), ('accumulation', 1), ('technical', 1), ('debt', 1), ('early', 1), ('process', 1), ('practical', 1), ('book', 1), ('leading', 1), ('hand', 1), ('architect', 1), ('share', 1), ('case', 1), ('study', 1), ('introduce', 1), ('every', 1)]
[('scala', 2), ('language', 2), ('speed', 1), ('jvm', 1), ('javascript', 1), ('natively', 1), ('compiled', 1), ('offer', 1), ('benefit', 1), ('functional', 1), ('programming', 1), ('modern', 1), ('object', 1), ('model', 1), ('advanced', 1), ('type', 1), ('system', 1), ('packed', 1), ('code', 1), ('example', 1), ('comprehensive', 1), ('book', 1), ('show', 1), ('productive', 1), ('ecosystem', 1), ('right', 1), ('away', 1), ('learn', 1), ('ideal', 1)]
[('data', 4), ('analytics', 2), ('marketing', 2), ('end', 2), ('google', 1), ('modern', 1), ('model', 1), ('available', 1), ('digital', 1), ('rather', 1), ('simply', 1), ('report', 1), ('happened', 1), ('ga', 1), ('new', 1), ('cloud', 1), ('integration', 1), ('enable', 1), ('activation', 1), ('linking', 1), ('online', 1), ('offline', 1), ('across', 1), ('stream', 1), ('provide', 1), ('practical', 1), ('book', 1), ('prepares', 1), ('future', 1)]
[('image', 3), ('book', 2), ('ml', 2), ('practical', 1), ('show', 1), ('employ', 1), ('machine', 1), ('learning', 1), ('model', 1), ('extract', 1), ('information', 1), ('engineer', 1), ('data', 1), ('scientist', 1), ('learn', 1), ('solve', 1), ('variety', 1), ('problem', 1), ('including', 1), ('classification', 1), ('object', 1), ('detection', 1), ('autoencoders', 1), ('generation', 1), ('counting', 1), ('captioning', 1), ('proven', 1), ('technique', 1), ('provides', 1)]
[('learn', 2), ('book', 2), ('android', 2), ('idea', 1), ('killer', 1), ('app', 1), ('fully', 1), ('revised', 1), ('updated', 1), ('edition', 1), ('running', 1), ('jiffy', 1), ('go', 1), ('beyond', 1), ('syntax', 1), ('manual', 1), ('think', 1), ('developer', 1), ('hand', 1), ('teach', 1), ('everything', 1), ('designing', 1), ('user', 1), ('interface', 1), ('building', 1)]
[('excel', 2), ('master', 1), ('business', 1), ('modeling', 1), ('analysis', 1), ('technique', 1), ('microsoft', 1), ('office', 1), ('transform', 1), ('data', 1), ('bottom', 1), ('line', 1), ('result', 1), ('written', 1), ('award', 1), ('winning', 1), ('educator', 1), ('wayne', 1), ('winston', 1), ('hand', 1), ('scenario', 1), ('focused', 1), ('guide', 1), ('help', 1), ('use', 1)]
[('infrastructure', 2), ('six', 1), ('year', 1), ('ago', 1), ('code', 1), ('new', 1), ('concept', 1), ('today', 1), ('even', 1), ('bank', 1), ('conservative', 1), ('organization', 1), ('plan', 1), ('move', 1), ('cloud', 1), ('development', 1), ('team', 1), ('company', 1), ('worldwide', 1), ('attempting', 1), ('build', 1), ('large', 1), ('codebases', 1), ('practical', 1), ('book', 1), ('kief', 1), ('morris', 1), ('thoughtworks', 1), ('show', 1), ('effectively', 1), ('use', 1), ('principle', 1), ('practice', 1)]
[('design', 2), ('functional', 2), ('programming', 2), ('want', 1), ('increased', 1), ('customer', 1), ('satisfaction', 1), ('faster', 1), ('development', 1), ('cycle', 1), ('le', 1), ('wasted', 1), ('work', 1), ('domain', 1), ('driven', 1), ('dd', 1), ('combined', 1), ('innovative', 1), ('combo', 1), ('pragmatic', 1), ('earth', 1), ('guide', 1), ('see', 1), ('applying', 1), ('core', 1), ('principle', 1), ('result', 1), ('software', 1)]
[('design', 2), ('talking', 1), ('might', 1), ('seem', 1), ('basic', 1), ('skill', 1), ('difficult', 1), ('many', 1), ('case', 1), ('communicate', 1), ('stakeholder', 1), ('client', 1), ('nondesigners', 1), ('important', 1), ('canâ', 1), ('support', 1), ('work', 1), ('never', 1), ('see', 1), ('light', 1), ('dayâ', 1), ('matter', 1), ('good', 1)]
[('organization', 2), ('docker', 1), ('linux', 1), ('container', 1), ('fundamentally', 1), ('changed', 1), ('way', 1), ('develop', 1), ('deliver', 1), ('run', 1), ('software', 1), ('scale', 1), ('understanding', 1), ('tool', 1), ('important', 1), ('successfully', 1), ('integrated', 1), ('ecosystem', 1), ('challenging', 1), ('fully', 1), ('updated', 1), ('guide', 1), ('provides', 1), ('developer', 1), ('operator', 1), ('architect', 1)]
[('scala', 3), ('save', 1), ('time', 1), ('trouble', 1), ('building', 1), ('object', 1), ('oriented', 1), ('functional', 1), ('concurrent', 1), ('application', 1), ('latest', 1), ('edition', 1), ('comprehensive', 1), ('cookbook', 1), ('packed', 1), ('ready', 1), ('use', 1), ('recipe', 1), ('code', 1), ('example', 1), ('help', 1), ('solve', 1), ('common', 1), ('problem', 1), ('working', 1), ('popular', 1), ('library', 1), ('change', 1), ('way', 1)]
[('many', 1), ('system', 1), ('scalability', 1), ('becomes', 1), ('primary', 1), ('driver', 1), ('user', 1), ('base', 1), ('grows', 1), ('attractive', 1), ('feature', 1), ('high', 1), ('utility', 1), ('breed', 1), ('success', 1), ('brings', 1), ('request', 1), ('handle', 1), ('data', 1), ('manage', 1), ('organization', 1), ('reach', 1), ('tipping', 1), ('point', 1), ('design', 1), ('decision', 1), ('made', 1), ('sense', 1), ('light', 1), ('load', 1), ('suddenly', 1), ('become', 1), ('technical', 1), ('debt', 1), ('practical', 1), ('book', 1)]
[('design', 3), ('domain', 2), ('driven', 2), ('fill', 1), ('need', 1), ('book', 1), ('specific', 1), ('technology', 1), ('offer', 1), ('reader', 1), ('systematic', 1), ('approach', 1), ('presenting', 1), ('extensive', 1), ('set', 1), ('best', 1), ('practice', 1), ('experience', 1), ('based', 1), ('technique', 1)]
[('slo', 2), ('although', 1), ('service', 1), ('level', 1), ('objective', 1), ('slos', 1), ('continue', 1), ('grow', 1), ('importance', 1), ('distinct', 1), ('lack', 1), ('information', 1), ('implement', 1), ('practical', 1), ('advice', 1), ('exist', 1), ('usually', 1), ('assumes', 1), ('team', 1), ('already', 1), ('infrastructure', 1), ('tooling', 1), ('culture', 1), ('place', 1), ('book', 1), ('recognized', 1), ('expert', 1), ('alex', 1), ('hidalgo', 1), ('explains', 1), ('build', 1)]
[('nlp', 2), ('many', 1), ('book', 1), ('course', 1), ('tackle', 1), ('natural', 1), ('language', 1), ('processing', 1), ('problem', 1), ('toy', 1), ('use', 1), ('case', 1), ('defined', 1), ('datasets', 1), ('want', 1), ('build', 1), ('iterate', 1), ('scale', 1), ('system', 1), ('business', 1), ('setting', 1), ('tailor', 1), ('particular', 1), ('industry', 1), ('vertical', 1), ('guide', 1), ('software', 1), ('engineer', 1), ('data', 1), ('scientist', 1), ('learn', 1), ('navigate', 1), ('maze', 1)]
[('regular', 2), ('expression', 2), ('tool', 2), ('language', 2), ('net', 2), ('extremely', 1), ('powerful', 1), ('manipulating', 1), ('text', 1), ('data', 1), ('standard', 1), ('feature', 1), ('wide', 1), ('range', 1), ('popular', 1), ('including', 1), ('perl', 1), ('python', 1), ('ruby', 1), ('java', 1), ('vb', 1), ('using', 1), ('framework', 1), ('php', 1), ('mysql', 1), ('use', 1), ('yet', 1), ('discover', 1), ('book', 1)]
[('saa', 3), ('exam', 3), ('study', 3), ('guide', 3), ('solution', 2), ('aws', 2), ('certified', 2), ('master', 1), ('amazon', 1), ('web', 1), ('service', 1), ('delivery', 1), ('efficiently', 1), ('prepare', 1), ('architect', 1), ('associate', 1), ('th', 1), ('edition', 1), ('comprehensively', 1), ('effectively', 1), ('prepares', 1), ('challenging', 1), ('contains', 1), ('efficient', 1)]
[('native', 2), ('application', 2), ('kubernetes', 2), ('developer', 2), ('looking', 1), ('develop', 1), ('guide', 1), ('appops', 1), ('administrator', 1), ('learn', 1), ('build', 1), ('interact', 1), ('directly', 1), ('api', 1), ('server', 1), ('query', 1), ('update', 1), ('state', 1), ('resource', 1), ('aws', 1), ('advocate', 1), ('michael', 1), ('hausenblas', 1), ('red', 1), ('hat', 1), ('principal', 1), ('software', 1), ('engineer', 1)]
[('design', 2), ('digital', 2), ('experience', 2), ('become', 1), ('key', 1), ('link', 1), ('user', 1), ('today', 1), ('complex', 1), ('rapidly', 1), ('evolving', 1), ('designer', 1), ('starting', 1), ('included', 1), ('strategic', 1), ('conversation', 1), ('product', 1), ('service', 1), ('enterprise', 1), ('ultimately', 1), ('deliver', 1), ('led', 1), ('company', 1), ('building', 1), ('house', 1), ('team', 1), ('unprecedented', 1), ('rate', 1)]
[('data', 3), ('cloud', 2), ('gcp', 2), ('end', 2), ('learn', 1), ('easy', 1), ('apply', 1), ('sophisticated', 1), ('statistical', 1), ('machine', 1), ('learning', 1), ('method', 1), ('real', 1), ('world', 1), ('problem', 1), ('build', 1), ('using', 1), ('google', 1), ('platform', 1), ('hand', 1), ('guide', 1), ('show', 1), ('engineer', 1), ('scientist', 1), ('implement', 1), ('pipeline', 1), ('native', 1), ('tool', 1), ('throughout', 1), ('updated', 1), ('second', 1), ('edition', 1)]
[('kernel', 3), ('bpf', 2), ('observe', 2), ('build', 1), ('expertise', 1), ('virtual', 1), ('machine', 1), ('linux', 1), ('practical', 1), ('guide', 1), ('system', 1), ('engineer', 1), ('dive', 1), ('program', 1), ('lifecycle', 1), ('learn', 1), ('write', 1), ('application', 1), ('modify', 1), ('behavior', 1), ('inject', 1), ('code', 1), ('monitor', 1), ('trace', 1), ('securely', 1), ('event', 1), ('author', 1)]
[('threat', 3), ('modeling', 2), ('development', 2), ('essential', 1), ('misunderstood', 1), ('part', 1), ('lifecycle', 1), ('whether', 1), ('security', 1), ('practitioner', 1), ('member', 1), ('team', 1), ('book', 1), ('help', 1), ('gain', 1), ('better', 1), ('understanding', 1), ('apply', 1), ('core', 1), ('concept', 1), ('practice', 1), ('protect', 1), ('system', 1)]
[('web', 2), ('application', 2), ('prepared', 1), ('build', 1), ('fast', 1), ('efficient', 1), ('eloquent', 1), ('book', 1), ('provides', 1), ('every', 1), ('developer', 1), ('know', 1), ('network', 1), ('fundamental', 1), ('limitation', 1), ('affect', 1), ('performance', 1), ('major', 1), ('innovation', 1), ('building', 1), ('even', 1), ('powerful', 1), ('browser', 1), ('including', 1), ('xhr', 1), ('improvement', 1), ('server', 1), ('sent', 1), ('event', 1), ('sse', 1)]
[('kubernetes', 2), ('cloud', 2), ('become', 1), ('operating', 1), ('system', 1), ('today', 1), ('native', 1), ('world', 1), ('providing', 1), ('reliable', 1), ('scalable', 1), ('platform', 1), ('running', 1), ('containerized', 1), ('workload', 1), ('friendly', 1), ('pragmatic', 1), ('book', 1), ('expert', 1), ('justin', 1), ('domingus', 1), ('john', 1), ('arundel', 1), ('show', 1), ('updated', 1), ('second', 1), ('edition', 1), ('guide', 1)]
[('perl', 2), ('getting', 1), ('started', 1), ('book', 1), ('want', 1), ('whether', 1), ('programmer', 1), ('system', 1), ('administrator', 1), ('web', 1), ('hacker', 1), ('nicknamed', 1), ('llama', 1), ('generation', 1), ('user', 1), ('best', 1), ('seller', 1), ('closely', 1), ('follows', 1), ('popular', 1), ('introductory', 1), ('course', 1), ('taught', 1), ('author', 1), ('eighth', 1), ('edition', 1), ('cover', 1), ('recent', 1), ('change', 1), ('language', 1)]
[('cloud', 3), ('building', 2), ('native', 2), ('application', 2), ('immense', 1), ('cost', 1), ('saving', 1), ('scalability', 1), ('provides', 1), ('rationale', 1), ('longer', 1), ('question', 1), ('real', 1), ('issue', 1), ('practical', 1), ('guide', 1), ('developer', 1), ('learn', 1), ('commonly', 1), ('used', 1), ('design', 1), ('pattern', 1), ('using', 1), ('apis', 1), ('data', 1), ('event', 1), ('stream', 1)]
[('programming', 2), ('programmer', 2), ('philosophy', 1), ('guide', 1), ('present', 1), ('unique', 1), ('entertaining', 1), ('take', 1), ('think', 1), ('collection', 1), ('pragmatic', 1), ('rule', 1), ('presented', 1), ('standalone', 1), ('chapter', 1), ('capture', 1), ('essential', 1), ('wisdom', 1), ('every', 1), ('freshly', 1), ('minted', 1), ('need', 1), ('know', 1), ('provides', 1), ('thought', 1), ('provoking', 1), ('insight', 1), ('seasoned', 1), ('author', 1)]
[('information', 2), ('architecture', 1), ('ia', 1), ('far', 1), ('challenging', 1), ('necessary', 1), ('glut', 1), ('available', 1), ('today', 1), ('anything', 1), ('organization', 1), ('want', 1), ('share', 1), ('easy', 1), ('find', 1), ('navigate', 1), ('understand', 1), ('experience', 1), ('provide', 1), ('familiar', 1), ('coherent', 1), ('across', 1), ('multiple', 1), ('interaction', 1), ('channel', 1), ('web', 1), ('smartphones', 1)]
[('threaded', 3), ('language', 3), ('javascript', 2), ('single', 2), ('online', 2), ('traditionally', 1), ('nearly', 1), ('forum', 1), ('post', 1), ('book', 1), ('documentation', 1), ('library', 1), ('refer', 1), ('thanks', 1), ('recent', 1), ('advancement', 1), ('atomics', 1), ('sharedarraybuffers', 1), ('object', 1), ('web', 1), ('worker', 1), ('browser', 1), ('multi', 1)]
[('new', 3), ('exam', 3), ('cissp', 3), ('edition', 2), ('guide', 2), ('fully', 2), ('common', 2), ('body', 2), ('knowledge', 2), ('shon', 1), ('harris', 1), ('bestselling', 1), ('prep', 1), ('updated', 1), ('effective', 1), ('self', 1), ('study', 1), ('prepares', 1), ('challenging', 1), ('offer', 1), ('coverage', 1), ('domain', 1), ('thoroughly', 1), ('revised', 1), ('cover', 1)]
[('python', 4), ('want', 2), ('recipe', 2), ('need', 1), ('help', 1), ('writing', 1), ('program', 1), ('update', 1), ('older', 1), ('code', 1), ('book', 1), ('ticket', 1), ('packed', 1), ('practical', 1), ('written', 1), ('tested', 1), ('unique', 1), ('cookbook', 1), ('experienced', 1), ('programmer', 1), ('focus', 1), ('modern', 1), ('tool', 1), ('idiom', 1), ('inside', 1), ('youâ', 1), ('find', 1), ('complete', 1)]
[('request', 2), ('done', 2), ('time', 1), ('precious', 1), ('commodity', 1), ('especially', 1), ('system', 1), ('administrator', 1), ('job', 1), ('pull', 1), ('many', 1), ('direction', 1), ('user', 1), ('interrupt', 1), ('constantly', 1), ('preventing', 1), ('getting', 1), ('anything', 1), ('manager', 1), ('want', 1), ('long', 1), ('term', 1), ('project', 1), ('flood', 1), ('quick', 1), ('fix', 1), ('prevent', 1)]
[('research', 4), ('product', 3), ('conduct', 2), ('need', 2), ('key', 1), ('responsibility', 1), ('designer', 1), ('ux', 1), ('practitioner', 1), ('formal', 1), ('informal', 1), ('clarify', 1), ('design', 1), ('decision', 1), ('business', 1), ('often', 1), ('mystery', 1), ('around', 1), ('feeling', 1), ('zen', 1), ('master', 1), ('gather', 1), ('anything', 1), ('useful', 1), ('fact', 1), ('anyone', 1)]
[('learn', 1), ('disruptive', 1), ('ai', 1), ('chatbot', 1), ('going', 1), ('change', 1), ('school', 1), ('work', 1), ('beyond', 1), ('chatgpt', 1), ('dummy', 1), ('demystifies', 1), ('artificial', 1), ('intelligence', 1), ('tool', 1), ('answer', 1), ('question', 1), ('write', 1), ('essay', 1), ('generate', 1), ('kind', 1), ('text', 1), ('asked', 1)]
[('sql', 3), ('database', 2), ('command', 2), ('programmer', 1), ('analyst', 1), ('administrator', 1), ('nutshell', 1), ('guide', 1), ('essential', 1), ('reference', 1), ('language', 1), ('used', 1), ('today', 1), ('popular', 1), ('product', 1), ('new', 1), ('fourth', 1), ('edition', 1), ('clearly', 1), ('document', 1), ('according', 1), ('latest', 1), ('ansi', 1), ('iso', 1), ('standard', 1), ('detail', 1), ('implemented', 1), ('microsoft', 1), ('server', 1)]
[('data', 3), ('center', 3), ('cloud', 2), ('network', 2), ('want', 1), ('study', 1), ('build', 1), ('simply', 1), ('validate', 1), ('thinking', 1), ('modern', 1), ('native', 1), ('book', 1), ('whether', 1), ('pursuing', 1), ('multitenant', 1), ('private', 1), ('running', 1), ('machine', 1), ('learning', 1), ('enterprise', 1), ('author', 1), ('dinesh', 1), ('dutt', 1), ('take', 1), ('step', 1), ('necessary', 1), ('design', 1)]
[('data', 4), ('science', 2), ('use', 1), ('turn', 1), ('insight', 1), ('knowledge', 1), ('understanding', 1), ('practical', 1), ('book', 1), ('aspiring', 1), ('scientist', 1), ('learn', 1), ('rstudio', 1), ('along', 1), ('tidyverse', 1), ('collection', 1), ('package', 1), ('designed', 1), ('work', 1), ('together', 1), ('make', 1), ('fast', 1), ('fluent', 1), ('fun', 1), ('even', 1), ('programming', 1), ('experience', 1), ('updated', 1)]
[('strategy', 3), ('ux', 2), ('user', 1), ('experience', 1), ('lie', 1), ('intersection', 1), ('design', 1), ('business', 1), ('easy', 1), ('apply', 1), ('framework', 1), ('executing', 1), ('hand', 1), ('guide', 1), ('introduces', 1), ('lightweight', 1), ('product', 1), ('tool', 1), ('technique', 1), ('help', 1), ('team', 1), ('devise', 1), ('innovative', 1), ('digital', 1), ('solution', 1), ('want', 1), ('author', 1), ('jaime', 1)]
[('database', 3), ('application', 2), ('system', 2), ('developer', 1), ('take', 1), ('note', 1), ('group', 1), ('build', 1), ('backed', 1), ('desktop', 1), ('web', 1), ('embedded', 1), ('operating', 1), ('without', 1), ('linking', 1), ('heavy', 1), ('duty', 1), ('client', 1), ('server', 1), ('oracle', 1), ('mysql', 1), ('book', 1), ('show', 1), ('use', 1), ('sqlite', 1), ('small', 1), ('lightweight', 1), ('relational', 1)]
[('visualization', 3), ('effective', 1), ('best', 1), ('way', 1), ('communicate', 1), ('information', 1), ('increasingly', 1), ('large', 1), ('complex', 1), ('datasets', 1), ('natural', 1), ('social', 1), ('science', 1), ('increasing', 1), ('power', 1), ('software', 1), ('today', 1), ('scientist', 1), ('engineer', 1), ('business', 1), ('analyst', 1), ('often', 1), ('navigate', 1), ('bewildering', 1), ('array', 1), ('choice', 1), ('option', 1)]
[('data', 3), ('time', 2), ('series', 2), ('analysis', 2), ('increasingly', 1), ('important', 1), ('due', 1), ('massive', 1), ('production', 1), ('internet', 1), ('thing', 1), ('digitalization', 1), ('healthcare', 1), ('rise', 1), ('smart', 1), ('city', 1), ('continuous', 1), ('monitoring', 1), ('collection', 1), ('become', 1), ('common', 1), ('need', 1), ('competent', 1), ('statistical', 1), ('machine', 1), ('learning', 1)]
[('foreword', 1), ('werner', 1), ('vogels', 1), ('vice', 1), ('president', 1), ('corporate', 1), ('technology', 1), ('officer', 1), ('amazon', 1), ('aws', 1), ('exam', 1), ('updated', 1), ('study', 1), ('guide', 1)]
[('graphql', 2), ('data', 2), ('query', 2), ('clear', 2), ('innovative', 1), ('technology', 1), ('fetching', 1), ('ajax', 1), ('providing', 1), ('language', 1), ('apis', 1), ('runtime', 1), ('fulfilling', 1), ('present', 1), ('alternative', 1), ('rest', 1), ('ad', 1), ('hoc', 1), ('web', 1), ('service', 1), ('architecture', 1), ('practical', 1), ('guide', 1), ('alex', 1), ('bank', 1), ('eve', 1), ('porcello', 1), ('deliver', 1), ('learning', 1), ('path', 1)]
[('node', 3), ('company', 2), ('j', 2), ('many', 1), ('startup', 1), ('fortune', 1), ('alike', 1), ('use', 1), ('build', 1), ('performant', 1), ('backend', 1), ('service', 1), ('engineer', 1), ('love', 1), ('approachable', 1), ('api', 1), ('familiar', 1), ('syntax', 1), ('backed', 1), ('world', 1), ('largest', 1), ('package', 1), ('repository', 1), ('enterprise', 1), ('foothold', 1), ('expected', 1), ('grow', 1), ('hand', 1), ('guide', 1), ('author', 1), ('thomas', 1), ('hunter', 1), ('ii', 1), ('prof', 1)]
[('know', 4), ('reading', 1), ('mitchell', 1), ('guide', 1), ('even', 1), ('though', 1), ('claim', 1), ('invaluable', 1), ('new', 1), ('york', 1), ('time', 1), ('leading', 1), ('computer', 1), ('scientist', 1), ('brings', 1), ('human', 1), ('sense', 1), ('ai', 1), ('bubble', 1), ('recent', 1), ('scientific', 1), ('enterprise', 1), ('proved', 1), ('alluring', 1), ('terrifying', 1), ('filled', 1), ('extravagant', 1)]
[('fraud', 2), ('past', 1), ('decade', 1), ('booming', 1), ('ecommerce', 1), ('fintech', 1), ('industry', 1), ('become', 1), ('breeding', 1), ('ground', 1), ('organization', 1), ('conduct', 1), ('business', 1), ('online', 1), ('constantly', 1), ('engaged', 1), ('cat', 1), ('mouse', 1), ('game', 1), ('invader', 1), ('practical', 1), ('book', 1), ('gilit', 1), ('saporta', 1), ('shoshana', 1), ('maraney', 1), ('draw', 1), ('fighting', 1), ('experience', 1), ('provide', 1), ('best', 1)]
[('first', 1), ('published', 1), ('hundred', 1), ('thousand', 1), ('web', 1), ('designer', 1), ('developer', 1), ('relied', 1), ('usability', 1), ('guru', 1), ('steve', 1), ('krug', 1), ('guide', 1), ('understand', 1), ('principle', 1), ('intuitive', 1), ('navigation', 1), ('information', 1), ('design', 1), ('witty', 1), ('commonsensical', 1), ('eminently', 1), ('practical', 1), ('best', 1), ('loved', 1), ('recommended', 1), ('book', 1), ('subject', 1), ('core', 1)]
[('distills', 1), ('key', 1), ('concept', 1), ('linear', 1), ('algebra', 1), ('geometry', 1), ('matrix', 1), ('calculus', 1), ('optimization', 1), ('probability', 1), ('statistic', 1), ('used', 1), ('machine', 1), ('learning', 1)]
[('java', 5), ('programming', 3), ('definitive', 1), ('guide', 1), ('fully', 1), ('updated', 1), ('se', 1), ('complete', 1), ('reference', 1), ('twelfth', 1), ('edition', 1), ('explains', 1), ('develop', 1), ('compile', 1), ('debug', 1), ('run', 1), ('program', 1), ('best', 1), ('selling', 1), ('author', 1), ('herb', 1), ('schildt', 1), ('cover', 1), ('entire', 1), ('language', 1), ('including', 1), ('syntax', 1), ('keywords', 1), ('fundamental', 1), ('principle', 1)]
[('maintain', 2), ('apps', 2), ('service', 2), ('many', 1), ('organization', 1), ('today', 1), ('orchestrate', 1), ('rely', 1), ('software', 1), ('designer', 1), ('developer', 1), ('architect', 1), ('company', 1), ('often', 1), ('work', 1), ('coordinate', 1), ('based', 1), ('existing', 1), ('microservices', 1), ('including', 1), ('third', 1), ('party', 1), ('run', 1), ('outside', 1), ('ecosystem', 1), ('cookbook', 1), ('provides', 1), ('proven', 1), ('recipe', 1), ('help', 1)]
[('python', 3), ('crash', 2), ('course', 2), ('world', 2), ('rsquo', 2), ('programming', 2), ('bestselling', 1), ('book', 1), ('copy', 1), ('sold', 1), ('date', 1), ('best', 1), ('selling', 1), ('guide', 1), ('language', 1), ('fast', 1), ('paced', 1), ('thorough', 1), ('introduction', 1)]
[('new', 2), ('library', 2), ('function', 2), ('standard', 2), ('edition', 1), ('classic', 1), ('reilly', 1), ('reference', 1), ('provides', 1), ('clear', 1), ('detailed', 1), ('explanation', 1), ('every', 1), ('feature', 1), ('language', 1), ('runtime', 1), ('including', 1), ('multithreading', 1), ('type', 1), ('generic', 1), ('macro', 1), ('want', 1), ('understand', 1), ('effect', 1), ('unfamiliar', 1)]
[('download', 2), ('customize', 1), ('ramp', 1), ('office', 1), ('application', 1), ('note', 1), ('please', 1), ('click', 1), ('downloads', 1), ('located', 1), ('menu', 1), ('left', 1), ('full', 1), ('code', 1), ('br', 1)]
[('pdf', 2), ('document', 2), ('becoming', 1), ('standard', 1), ('digital', 1), ('worldwide', 1), ('easy', 1), ('learn', 1), ('capability', 1), ('use', 1), ('variety', 1), ('image', 1), ('text', 1), ('embed', 1), ('audio', 1), ('video', 1), ('provide', 1), ('link', 1), ('navigation', 1), ('lot', 1), ('explore', 1), ('practical', 1), ('guide', 1), ('help', 1), ('understand', 1), ('work', 1), ('construct', 1)]
[('go', 2), ('recipe', 2), ('increasingly', 1), ('popular', 1), ('language', 1), ('programming', 1), ('everything', 1), ('web', 1), ('application', 1), ('distributed', 1), ('network', 1), ('service', 1), ('practical', 1), ('guide', 1), ('provides', 1), ('help', 1), ('unravel', 1), ('common', 1), ('problem', 1), ('perform', 1), ('useful', 1), ('task', 1), ('working', 1), ('includes', 1), ('self', 1), ('contained', 1), ('code', 1), ('solution', 1), ('freely', 1), ('use', 1), ('along', 1), ('discussion', 1)]
[('data', 2), ('turn', 1), ('raw', 1), ('unprocessed', 1), ('malformed', 1), ('dynamic', 1), ('interactive', 1), ('web', 1), ('visualization', 1), ('practical', 1), ('book', 1), ('author', 1), ('kyran', 1), ('dale', 1), ('show', 1), ('scientist', 1), ('analyst', 1), ('python', 1), ('javascript', 1), ('developer', 1), ('create', 1), ('ideal', 1), ('toolchain', 1), ('job', 1), ('providing', 1), ('engaging', 1), ('example', 1), ('stressing', 1), ('hard', 1), ('earned', 1), ('best', 1), ('practice', 1)]
[('learning', 2), ('research', 2), ('development', 2), ('concise', 1), ('easy', 1), ('use', 1), ('reference', 1), ('put', 1), ('popular', 1), ('framework', 1), ('deep', 1), ('fingertip', 1), ('author', 1), ('joe', 1), ('papa', 1), ('provides', 1), ('instant', 1), ('access', 1), ('syntax', 1), ('design', 1), ('pattern', 1), ('code', 1), ('example', 1), ('accelerate', 1), ('reduce', 1), ('time', 1), ('spend', 1), ('searching', 1), ('answer', 1), ('scientist', 1), ('machine', 1)]
[('data', 4), ('spatial', 2), ('thing', 2), ('science', 1), ('closer', 1), ('proximity', 1), ('another', 1), ('likely', 1), ('common', 1), ('farther', 1), ('apart', 1), ('practical', 1), ('book', 1), ('geospatial', 1), ('professional', 1), ('scientist', 1), ('business', 1), ('analyst', 1), ('geographer', 1), ('geologist', 1), ('others', 1), ('familiar', 1), ('analysis', 1), ('visualization', 1), ('learn', 1), ('fundamental', 1)]
[('updated', 2), ('pmp', 2), ('unique', 2), ('exam', 1), ('learn', 1), ('book', 1), ('head', 1), ('first', 1), ('teach', 1), ('latest', 1), ('principle', 1), ('certification', 1), ('objective', 1), ('pmbok', 1), ('guide', 1), ('inspiring', 1), ('way', 1), ('fourth', 1), ('edition', 1), ('take', 1), ('beyond', 1), ('specific', 1), ('question', 1), ('answer', 1), ('visual', 1), ('format', 1), ('help', 1), ('grasp', 1), ('big', 1), ('picture', 1)]
[('monitoring', 2), ('nagging', 1), ('feeling', 1), ('need', 1), ('improvement', 1), ('sure', 1), ('start', 1), ('plagued', 1), ('constant', 1), ('meaningless', 1), ('alert', 1), ('system', 1), ('routinely', 1), ('miss', 1), ('real', 1), ('problem', 1), ('book', 1), ('mike', 1), ('julian', 1), ('lay', 1), ('practical', 1), ('approach', 1), ('designing', 1), ('implementing', 1), ('effective', 1)]
[('bash', 3), ('shell', 3), ('linux', 2), ('reilly', 1), ('bestselling', 1), ('book', 1), ('established', 1), ('player', 1), ('server', 1), ('desktop', 1), ('learning', 1), ('updated', 1), ('refreshed', 1), ('account', 1), ('latest', 1), ('change', 1), ('indeed', 1), ('third', 1), ('edition', 1), ('serf', 1), ('valuable', 1), ('guide', 1), ('yet', 1), ('good', 1), ('programmer', 1)]
[('scientist', 2), ('turing', 1), ('award', 1), ('winning', 1), ('computer', 1), ('statistician', 1), ('show', 1), ('understanding', 1), ('causality', 1), ('revolutionized', 1), ('science', 1), ('revolutionize', 1), ('artificial', 1), ('intelligence', 1), ('correlation', 1), ('causation', 1), ('mantra', 1), ('chanted', 1), ('century', 1), ('led', 1), ('virtual', 1), ('prohibition', 1), ('causal', 1), ('talk', 1), ('today', 1), ('taboo', 1), ('dead', 1)]
[('contemporary', 2), ('web', 2), ('development', 2), ('technology', 2), ('solid', 1), ('understanding', 1), ('html', 1), ('cs', 1), ('javascript', 1), ('work', 1), ('together', 1), ('vital', 1), ('kind', 1), ('core', 1), ('growing', 1), ('importance', 1), ('move', 1), ('away', 1), ('reliance', 1), ('proprietary', 1), ('flash', 1), ('rich', 1), ('interface', 1), ('mobile', 1), ('application', 1), ('teach', 1)]
[('linux', 2), ('provides', 1), ('solid', 1), ('foundation', 1), ('considering', 1), ('career', 1), ('cover', 1), ('objective', 1), ('new', 1), ('essential', 1), ('exam', 1), ('secure', 1), ('reliable', 1), ('open', 1), ('source', 1), ('alternative', 1), ('costly', 1)]
[('complexity', 2), ('service', 2), ('mesh', 2), ('advent', 1), ('microservices', 1), ('kubernetes', 1), ('public', 1), ('cloud', 1), ('hybrid', 1), ('computing', 1), ('site', 1), ('reliability', 1), ('devops', 1), ('engineer', 1), ('facing', 1), ('exciting', 1), ('new', 1), ('technology', 1), ('promise', 1), ('help', 1), ('tackle', 1), ('provides', 1), ('unified', 1), ('control', 1), ('plane', 1), ('manage', 1), ('application', 1), ('networking', 1)]
[('nan', 1)]
[('use', 2), ('computer', 1), ('work', 1), ('fully', 1), ('illustrated', 1), ('guide', 1), ('entire', 1), ('world', 1), ('computing', 1), ('bulky', 1), ('pc', 1), ('desktop', 1), ('business', 1), ('laptop', 1), ('ultra', 1), ('portable', 1), ('tablet', 1), ('smartphone', 1), ('catch', 1), ('important', 1), ('email', 1), ('avoid', 1), ('getting', 1), ('lost', 1), ('road', 1), ('cover', 1), ('way', 1), ('tech', 1), ('explaining', 1), ('everything', 1)]
[('failure', 2), ('new', 2), ('single', 1), ('dramatic', 1), ('software', 1), ('cost', 1), ('company', 1), ('million', 1), ('dollar', 1), ('avoided', 1), ('simple', 1), ('change', 1), ('design', 1), ('architecture', 1), ('edition', 1), ('best', 1), ('selling', 1), ('industry', 1), ('standard', 1), ('show', 1), ('create', 1), ('system', 1), ('run', 1), ('longer', 1), ('fewer', 1), ('recover', 1), ('better', 1), ('bad', 1), ('thing', 1), ('happen', 1), ('coverage', 1), ('includes', 1), ('devops', 1)]
[('epub', 2), ('ready', 1), ('take', 1), ('ebooks', 1), ('next', 1), ('level', 1), ('concise', 1), ('guide', 1), ('includes', 1), ('best', 1), ('practice', 1), ('advice', 1), ('help', 1), ('navigate', 1), ('format', 1), ('wide', 1), ('range', 1), ('technology', 1), ('functionality', 1), ('set', 1), ('turn', 1), ('electronic', 1), ('publishing', 1), ('head', 1), ('rich', 1), ('multimedia', 1), ('reading', 1), ('experience', 1), ('scripted', 1), ('interactivity', 1), ('specification', 1)]
[('xml', 2), ('query', 2), ('knowledge', 2), ('xquery', 1), ('standard', 1), ('provides', 1), ('tool', 1), ('search', 1), ('extract', 1), ('manipulate', 1), ('content', 1), ('whether', 1), ('json', 1), ('plain', 1), ('text', 1), ('fully', 1), ('updated', 1), ('depth', 1), ('tutorial', 1), ('learn', 1), ('program', 1), ('highly', 1), ('practical', 1), ('language', 1), ('designed', 1), ('writer', 1), ('basic', 1), ('necessarily', 1), ('advanced', 1)]
[('date', 1), ('guide', 1), ('deep', 1), ('learning', 1), ('unique', 1), ('content', 1), ('rigorous', 1), ('math', 1), ('unified', 1), ('notation', 1), ('comprehensive', 1), ('algorithm', 1), ('high', 1), ('quality', 1), ('figure', 1)]
[('security', 3), ('fully', 2), ('guide', 2), ('comptia', 2), ('exam', 2), ('updated', 1), ('study', 1), ('cover', 1), ('every', 1), ('topic', 1), ('current', 1), ('version', 1), ('complete', 1), ('coverage', 1), ('objective', 1), ('included', 1), ('sy', 1), ('comprehensive', 1), ('resource', 1), ('written', 1), ('team', 1), ('leading', 1), ('information', 1), ('expert', 1), ('authoritative', 1), ('address', 1), ('skill', 1), ('required', 1)]
[('functional', 2), ('programming', 2), ('decade', 1), ('relative', 1), ('obscurity', 1), ('finally', 1), ('coming', 1), ('concise', 1), ('easy', 1), ('code', 1), ('support', 1), ('asynchronous', 1), ('concurrent', 1), ('processing', 1), ('aspect', 1), ('begun', 1), ('appear', 1), ('several', 1), ('traditionally', 1), ('object', 1), ('oriented', 1), ('language', 1), ('java', 1), ('practical', 1), ('book', 1), ('show', 1), ('programmer', 1)]
[('javascript', 2), ('code', 2), ('reinvent', 1), ('wheel', 1), ('every', 1), ('time', 1), ('run', 1), ('problem', 1), ('cookbook', 1), ('chock', 1), ('full', 1), ('recipe', 1), ('common', 1), ('programming', 1), ('task', 1), ('along', 1), ('technique', 1), ('building', 1), ('apps', 1), ('work', 1), ('browser', 1), ('adaptable', 1), ('sample', 1), ('add', 1), ('almost', 1), ('project', 1), ('learn', 1), ('process', 1)]
[('data', 3), ('tool', 2), ('color', 2), ('become', 1), ('powerful', 1), ('business', 1), ('today', 1), ('telling', 1), ('story', 1), ('effectively', 1), ('critical', 1), ('yet', 1), ('best', 1), ('communicator', 1), ('neglected', 1), ('visualization', 1), ('book', 1), ('datacated', 1), ('founder', 1), ('kate', 1), ('strachnyi', 1), ('provides', 1), ('ultimate', 1), ('guide', 1), ('correct', 1), ('use', 1), ('representing', 1), ('graph', 1), ('chart', 1)]
[('high', 2), ('presentation', 2), ('matter', 1), ('organizational', 1), ('ladder', 1), ('odds', 1), ('delivered', 1), ('stake', 1), ('peer', 1), ('bos', 1), ('customer', 1), ('general', 1), ('public', 1), ('software', 1), ('tool', 1), ('requires', 1), ('professional', 1), ('think', 1), ('visually', 1), ('almost', 1), ('daily', 1), ('basis', 1), ('unlike', 1), ('verbal', 1), ('skill', 1), ('effective', 1), ('visual', 1)]
[('fast', 1), ('paced', 1), ('introduction', 1), ('python', 1), ('move', 1), ('basic', 1), ('advanced', 1), ('concept', 1), ('enabling', 1), ('reader', 1), ('gain', 1), ('proficiency', 1), ('quickly', 1)]
[('software', 2), ('engineer', 2), ('nbsp', 2), ('first', 1), ('publication', 1), ('mythical', 1), ('month', 1), ('bookshelf', 1), ('complete', 1), ('without', 1), ('many', 1), ('computer', 1), ('scientist', 1), ('claimed', 1), ('second', 1), ('third', 1), ('copy', 1), ('book', 1), ('edition', 1), ('enhanced', 1), ('release', 1), ('brook', 1), ('classic', 1), ('included', 1), ('existing', 1)]
[('wireless', 3), ('network', 3), ('free', 2), ('cable', 2), ('know', 1), ('offer', 1), ('many', 1), ('advantage', 1), ('fixed', 1), ('wired', 1), ('foremost', 1), ('list', 1), ('mobility', 1), ('going', 1), ('tether', 1), ('ethernet', 1), ('desk', 1), ('tip', 1), ('iceberg', 1), ('flexible', 1), ('faster', 1), ('easier', 1), ('use', 1)]
[('security', 2), ('updated', 1), ('study', 1), ('guide', 1), ('expert', 1), ('help', 1), ('prepare', 1), ('comptia', 1), ('cysa', 1), ('certification', 1), ('exam', 1), ('position', 1), ('success', 1), ('coverage', 1), ('crucial', 1), ('topic', 1)]
[('tdd', 3), ('another', 1), ('day', 1), ('without', 1), ('test', 1), ('driven', 1), ('development', 1), ('mean', 1), ('time', 1), ('wasted', 1), ('chasing', 1), ('bug', 1), ('watching', 1), ('code', 1), ('deteriorate', 1), ('thought', 1), ('embedded', 1), ('programmer', 1), ('help', 1), ('prevent', 1), ('defect', 1), ('build', 1), ('software', 1), ('long', 1), ('useful', 1), ('life', 1), ('first', 1), ('book', 1), ('teach', 1), ('hows', 1), ('why', 1)]
[('flutter', 2), ('dart', 2), ('application', 2), ('development', 2), ('learn', 1), ('essential', 1), ('working', 1), ('build', 1), ('full', 1), ('stack', 1), ('meet', 1), ('need', 1), ('cloud', 1), ('driven', 1), ('world', 1), ('together', 1), ('open', 1), ('source', 1), ('ui', 1), ('software', 1), ('kit', 1), ('programming', 1), ('language', 1), ('client', 1), ('provide', 1), ('unified', 1), ('solution', 1), ('building', 1), ('capable', 1), ('targeting', 1), ('multiple', 1), ('platform', 1)]
[('fastapi', 3), ('framework', 2), ('python', 2), ('le', 2), ('young', 1), ('yet', 1), ('solid', 1), ('take', 1), ('advantage', 1), ('newer', 1), ('feature', 1), ('clean', 1), ('design', 1), ('name', 1), ('implies', 1), ('indeed', 1), ('fast', 1), ('rivaling', 1), ('similar', 1), ('language', 1), ('golang', 1), ('practical', 1), ('book', 1), ('developer', 1), ('familiar', 1), ('learn', 1), ('let', 1), ('accomplish', 1), ('time', 1), ('code', 1)]
[('shell', 4), ('unix', 4), ('scripting', 2), ('system', 2), ('skill', 1), ('never', 1), ('go', 1), ('style', 1), ('unlocks', 1), ('real', 1), ('potential', 1), ('essential', 1), ('user', 1), ('administrator', 1), ('way', 1), ('quickly', 1), ('harness', 1), ('customize', 1), ('full', 1), ('power', 1), ('script', 1), ('combine', 1), ('fundamental', 1), ('text', 1), ('file', 1), ('processing', 1), ('command', 1), ('crunch', 1)]
[('behind', 3), ('defense', 2), ('host', 2), ('perimeter', 1), ('guarding', 1), ('network', 1), ('perhaps', 1), ('secure', 1), ('think', 1), ('firewall', 1), ('trusted', 1), ('zone', 1), ('breached', 1), ('access', 1), ('data', 1), ('center', 1), ('far', 1), ('familiar', 1), ('scenario', 1), ('today', 1), ('practical', 1), ('book', 1), ('learn', 1), ('principle', 1), ('zero', 1)]
[('cloud', 3), ('native', 2), ('infrastructure', 2), ('server', 1), ('network', 1), ('storage', 1), ('operational', 1), ('hygiene', 1), ('elasticity', 1), ('scalability', 1), ('book', 1), ('learn', 1), ('practice', 1), ('pattern', 1), ('requirement', 1), ('creating', 1), ('meet', 1), ('need', 1), ('capable', 1), ('managing', 1), ('full', 1), ('life', 1), ('cycle', 1)]
[('introduction', 1), ('mathematica', 1), ('wolfram', 1), ('language', 1), ('familiar', 1), ('context', 1), ('standard', 1), ('university', 1), ('mathematics', 1), ('curriculum', 1)]
[('hacker', 2), ('th', 1), ('anniversary', 1), ('edition', 1), ('steven', 1), ('levy', 1), ('classic', 1), ('book', 1), ('trace', 1), ('exploit', 1), ('computer', 1), ('revolution', 1), ('original', 1), ('brilliant', 1), ('eccentric', 1), ('nerd', 1), ('late', 1), ('early', 1), ('took', 1), ('risk', 1), ('bent', 1), ('rule', 1), ('pushed', 1), ('world', 1), ('radical', 1), ('new', 1), ('direction', 1), ('updated', 1), ('material', 1), ('noteworthy', 1), ('bill', 1)]
[('project', 5), ('management', 4), ('agile', 3), ('today', 1), ('pace', 1), ('move', 1), ('faster', 1), ('need', 1), ('become', 1), ('flexible', 1), ('far', 1), ('responsive', 1), ('customer', 1), ('using', 1), ('apm', 1), ('manager', 1), ('achieve', 1), ('goal', 1), ('without', 1), ('compromising', 1), ('value', 1), ('quality', 1), ('business', 1), ('discipline', 1), ('renowned', 1), ('pioneer', 1), ('jim', 1)]
[('powershell', 3), ('portable', 1), ('reference', 1), ('summarizes', 1), ('command', 1), ('shell', 1), ('scripting', 1), ('language', 1), ('provides', 1), ('concise', 1), ('guide', 1), ('many', 1), ('task', 1), ('make', 1), ('useful', 1), ('busy', 1), ('administrator', 1), ('time', 1), ('plow', 1), ('huge', 1), ('book', 1), ('depth', 1), ('online', 1), ('search', 1), ('ideal', 1), ('job', 1), ('tool', 1), ('written', 1), ('team', 1), ('member', 1)]
[('exam', 3), ('comptia', 2), ('core', 2), ('cram', 1), ('inclusive', 1), ('study', 1), ('guide', 1), ('designed', 1), ('help', 1), ('pas', 1), ('updated', 1), ('version', 1), ('prepare', 1), ('test', 1), ('day', 1), ('success', 1), ('complete', 1), ('coverage', 1), ('objective', 1), ('topic', 1)]
[('spark', 2), ('practical', 2), ('data', 2), ('apache', 1), ('speed', 1), ('ease', 1), ('use', 1), ('sophisticated', 1), ('analytics', 1), ('multilanguage', 1), ('support', 1), ('make', 1), ('knowledge', 1), ('cluster', 1), ('computing', 1), ('framework', 1), ('required', 1), ('skill', 1), ('engineer', 1), ('scientist', 1), ('hand', 1), ('guide', 1), ('anyone', 1), ('looking', 1), ('introduction', 1), ('learn', 1), ('algorithm', 1), ('example', 1), ('using', 1), ('pyspark', 1)]
[('algorithm', 3), ('software', 2), ('come', 1), ('writing', 1), ('efficient', 1), ('code', 1), ('every', 1), ('professional', 1), ('need', 1), ('effective', 1), ('working', 1), ('knowledge', 1), ('practical', 1), ('book', 1), ('author', 1), ('george', 1), ('heineman', 1), ('nutshell', 1), ('provides', 1), ('concise', 1), ('informative', 1), ('description', 1), ('key', 1), ('improve', 1), ('coding', 1), ('developer', 1), ('tester', 1), ('maintainer', 1)]
[('nan', 1)]
[('token', 4), ('edition', 3), ('second', 2), ('chapter', 2), ('book', 1), ('economy', 1), ('originally', 1), ('published', 1), ('june', 1), ('basic', 1), ('structure', 1), ('first', 1), ('slightly', 1), ('updated', 1), ('content', 1), ('existing', 1), ('four', 1), ('additional', 1), ('user', 1), ('centric', 1), ('identity', 1), ('privacy', 1), ('lending', 1), ('design', 1), ('system', 1)]
[('performance', 2), ('java', 2), ('tuning', 1), ('experimental', 1), ('science', 1), ('mean', 1), ('engineer', 1), ('resort', 1), ('guesswork', 1), ('folklore', 1), ('job', 1), ('done', 1), ('yet', 1), ('often', 1), ('case', 1), ('practical', 1), ('book', 1), ('intermediate', 1), ('advanced', 1), ('technologist', 1), ('working', 1), ('complex', 1), ('technology', 1), ('stack', 1), ('learn', 1), ('tune', 1), ('application', 1), ('using', 1)]
[('automation', 2), ('learn', 1), ('code', 1), ('write', 1), ('program', 1), ('effortlessly', 1), ('perform', 1), ('useful', 1), ('feat', 1), ('second', 1), ('edition', 1), ('international', 1), ('fan', 1), ('favorite', 1), ('includes', 1), ('brand', 1), ('new', 1), ('chapter', 1), ('input', 1), ('validation', 1), ('gmail', 1), ('google', 1), ('sheet', 1), ('tip', 1)]
[('database', 3), ('design', 2), ('new', 2), ('beginning', 1), ('second', 1), ('edition', 1), ('provides', 1), ('short', 1), ('easy', 1), ('explanation', 1), ('right', 1), ('first', 1), ('time', 1), ('book', 1), ('offer', 1), ('numerous', 1), ('example', 1), ('help', 1), ('avoid', 1), ('many', 1), ('pitfall', 1), ('entrap', 1)]
[('sed', 3), ('text', 2), ('processing', 2), ('stream', 2), ('might', 2), ('awk', 1), ('describes', 1), ('program', 1), ('mainstay', 1), ('unix', 1), ('programmer', 1), ('toolbox', 1), ('editor', 1), ('editing', 1), ('large', 1), ('edit', 1), ('single', 1), ('file', 1), ('generated', 1), ('fly', 1), ('part', 1), ('larger', 1), ('data', 1), ('step', 1), ('common', 1), ('operation', 1), ('done', 1), ('substitution', 1)]
[('web', 4), ('behind', 1), ('every', 1), ('transaction', 1), ('lie', 1), ('hypertext', 1), ('transfer', 1), ('protocol', 1), ('language', 1), ('browser', 1), ('server', 1), ('portal', 1), ('search', 1), ('engine', 1), ('commerce', 1), ('service', 1), ('understanding', 1), ('essential', 1), ('practically', 1), ('based', 1), ('programming', 1), ('design', 1), ('analysis', 1), ('administration', 1), ('basic', 1), ('elegantly', 1), ('simple', 1)]
[('hdf', 2), ('practical', 2), ('gain', 1), ('hand', 1), ('experience', 1), ('storing', 1), ('scientific', 1), ('data', 1), ('python', 1), ('guide', 1), ('quickly', 1), ('get', 1), ('speed', 1), ('detail', 1), ('best', 1), ('practice', 1), ('pitfall', 1), ('using', 1), ('archive', 1), ('share', 1), ('numerical', 1), ('datasets', 1), ('ranging', 1), ('size', 1), ('gigabyte', 1), ('terabyte', 1), ('real', 1), ('world', 1), ('example', 1), ('exercise', 1), ('explore', 1), ('topic', 1)]
[('manager', 2), ('technologist', 1), ('want', 1), ('idea', 1), ('heard', 1), ('understood', 1), ('funded', 1), ('often', 1), ('told', 1), ('speak', 1), ('language', 1), ('businessâ', 1), ('without', 1), ('really', 1), ('knowing', 1), ('bookâ', 1), ('toolkit', 1), ('provides', 1), ('architect', 1), ('product', 1), ('technology', 1), ('executive', 1), ('shared', 1), ('languageâ', 1), ('form', 1), ('repeatable', 1), ('practical', 1), ('pattern', 1), ('templatesâ', 1), ('produce', 1)]
[('developer', 2), ('way', 1), ('design', 1), ('build', 1), ('run', 1), ('software', 1), ('changed', 1), ('significantly', 1), ('evolution', 1), ('microservices', 1), ('container', 1), ('modern', 1), ('architecture', 1), ('offer', 1), ('new', 1), ('distributed', 1), ('primitive', 1), ('require', 1), ('different', 1), ('set', 1), ('practice', 1), ('many', 1), ('tech', 1), ('lead', 1), ('architect', 1), ('accustomed', 1), ('focused', 1), ('guide', 1), ('bilgin', 1), ('ibryam', 1)]
[('step', 2), ('llm', 2), ('practical', 1), ('guide', 1), ('using', 1), ('scale', 1), ('project', 1), ('product', 1), ('large', 1), ('language', 1), ('model', 1), ('chatgpt', 1), ('demonstrating', 1), ('breathtaking', 1), ('capability', 1), ('size', 1), ('complexity', 1), ('deterred', 1), ('many', 1), ('practitioner', 1), ('applying', 1)]
[('cassandra', 3), ('data', 2), ('imagine', 1), ('scalability', 1), ('problem', 1), ('hand', 1), ('guide', 1), ('learn', 1), ('database', 1), ('management', 1), ('system', 1), ('handle', 1), ('hundred', 1), ('terabyte', 1), ('remaining', 1), ('highly', 1), ('available', 1), ('across', 1), ('multiple', 1), ('center', 1), ('revised', 1), ('third', 1), ('edition', 1), ('updated', 1), ('new', 1), ('development', 1), ('ecosystem', 1)]
[('functional', 3), ('learn', 2), ('software', 2), ('programming', 2), ('think', 1), ('write', 1), ('code', 1), ('programmer', 1), ('practical', 1), ('guide', 1), ('developer', 1), ('familiar', 1), ('object', 1), ('oriented', 1), ('dive', 1), ('core', 1), ('concept', 1), ('use', 1), ('oop', 1), ('feature', 1), ('together', 1), ('large', 1), ('complex', 1), ('project', 1), ('author', 1), ('jack', 1), ('widman', 1), ('us', 1), ('sample', 1)]
[('angular', 2), ('welcome', 1), ('stop', 1), ('shop', 1), ('learning', 1), ('pro', 1), ('concise', 1), ('comprehensive', 1), ('guide', 1), ('available', 1), ('giving', 1), ('knowledge', 1), ('need', 1), ('take', 1), ('full', 1), ('advantage', 1), ('popular', 1), ('framework', 1), ('building', 1), ('dynamic', 1), ('javascript', 1)]
[('textbook', 2), ('new', 1), ('extensively', 1), ('revised', 1), ('edition', 1), ('popular', 1), ('used', 1), ('university', 1), ('coding', 1), ('boot', 1), ('camp', 1), ('hacker', 1), ('club', 1), ('online', 1), ('course', 1), ('best', 1), ('way', 1), ('understand', 1), ('computer', 1), ('work', 1), ('build', 1), ('scratch', 1), ('lead', 1), ('learner', 1)]
[('learning', 3), ('unsupervised', 2), ('artificial', 2), ('intelligence', 2), ('unlabeled', 2), ('applied', 2), ('many', 1), ('industry', 1), ('expert', 1), ('consider', 1), ('next', 1), ('frontier', 1), ('hold', 1), ('key', 1), ('general', 1), ('majority', 1), ('world', 1), ('data', 1), ('conventional', 1), ('supervised', 1), ('hand', 1), ('datasets', 1)]
[('oracle', 4), ('pl', 3), ('sql', 3), ('guide', 2), ('considered', 1), ('best', 1), ('programming', 1), ('community', 1), ('definitive', 1), ('precisely', 1), ('need', 1), ('make', 1), ('powerful', 1), ('procedural', 1), ('language', 1), ('sixth', 1), ('edition', 1), ('describes', 1), ('feature', 1), ('capability', 1), ('database', 1), ('release', 1), ('hundred', 1), ('thousand', 1), ('developer', 1)]
[('heard', 1), ('npr', 1), ('science', 1), ('friday', 1), ('discover', 1), ('book', 1), ('recommended', 1), ('malcolm', 1), ('gladwell', 1), ('susan', 1), ('cain', 1), ('daniel', 1), ('pink', 1), ('adam', 1), ('grant', 1), ('accessible', 1), ('informative', 1), ('hilarious', 1), ('introduction', 1), ('weird', 1), ('wonderful', 1), ('world', 1), ('artificial', 1), ('intelligence', 1), ('ryan', 1), ('north', 1), ('look', 1), ('thing', 1), ('love', 1)]
[('svg', 2), ('extremely', 1), ('powerful', 1), ('reduced', 1), ('request', 1), ('crispness', 1), ('display', 1), ('becomes', 1), ('increasingly', 1), ('interesting', 1), ('explore', 1), ('capability', 1), ('responsive', 1), ('animation', 1), ('performance', 1), ('boon', 1), ('animate', 1), ('aware', 1), ('normal', 1), ('image', 1), ('trait', 1), ('composition', 1), ('color', 1), ('implementation', 1), ('optimization', 1)]
[('programmer', 2), ('tap', 1), ('wisdom', 1), ('expert', 1), ('learn', 1), ('every', 1), ('know', 1), ('matter', 1), ('language', 1), ('use', 1), ('short', 1), ('extremely', 1), ('useful', 1), ('tip', 1), ('book', 1), ('expand', 1), ('skill', 1), ('adopting', 1), ('new', 1), ('approach', 1), ('old', 1), ('problem', 1), ('learning', 1), ('appropriate', 1), ('best', 1), ('practice', 1), ('honing', 1), ('craft', 1), ('sound', 1), ('advice', 1)]
[('data', 6), ('insight', 2), ('driven', 1), ('key', 1), ('competitive', 1), ('advantage', 1), ('industry', 1), ('today', 1), ('deriving', 1), ('raw', 1), ('still', 1), ('take', 1), ('day', 1), ('week', 1), ('organization', 1), ('scale', 1), ('science', 1), ('team', 1), ('fast', 1), ('enough', 1), ('keep', 1), ('growing', 1), ('amount', 1), ('transform', 1), ('answer', 1), ('self', 1), ('service', 1), ('practical', 1), ('book', 1), ('engineer', 1)]
[('learn', 2), ('language', 2), ('wished', 1), ('book', 1), ('head', 1), ('first', 1), ('provides', 1), ('complete', 1), ('learning', 1), ('experience', 1), ('structured', 1), ('imperative', 1), ('programming', 1), ('unique', 1), ('method', 1), ('go', 1), ('beyond', 1), ('syntax', 1), ('manual', 1), ('guide', 1), ('teach', 1), ('help', 1), ('understand', 1), ('programmer', 1), ('key', 1), ('area', 1)]
[('network', 2), ('directory', 2), ('organize', 1), ('resource', 1), ('learning', 1), ('design', 1), ('manage', 1), ('maintain', 1), ('active', 1), ('updated', 1), ('cover', 1), ('window', 1), ('server', 1), ('fifth', 1), ('edition', 1), ('bestselling', 1), ('book', 1), ('give', 1), ('thorough', 1), ('grounding', 1), ('microsoft', 1), ('service', 1), ('explaining', 1), ('concept', 1), ('easy', 1), ('understand', 1), ('narrative', 1), ('style', 1), ('negotiate', 1), ('maze', 1)]
[('game', 6), ('design', 4), ('step', 2), ('art', 1), ('guide', 1), ('process', 1), ('helping', 1), ('develop', 1), ('new', 1), ('innovative', 1), ('played', 1), ('explains', 1), ('fundamental', 1), ('principle', 1), ('demonstrates', 1), ('tactic', 1), ('used', 1), ('classic', 1), ('board', 1), ('card', 1), ('athletic', 1), ('work', 1), ('top', 1), ('quality', 1), ('video', 1), ('good', 1)]
[('python', 4), ('growing', 2), ('popularity', 2), ('using', 2), ('based', 1), ('download', 1), ('statistic', 1), ('window', 1), ('use', 1), ('language', 1), ('per', 1), ('year', 1), ('every', 1), ('reason', 1), ('believe', 1), ('growth', 1), ('continue', 1), ('despite', 1), ('increasing', 1)]
[('perl', 3), ('programming', 2), ('language', 2), ('adopted', 1), ('undisputed', 1), ('bible', 1), ('soon', 1), ('first', 1), ('edition', 1), ('appeared', 1), ('still', 1), ('go', 1), ('guide', 1), ('highly', 1), ('practical', 1), ('began', 1), ('life', 1), ('super', 1), ('fueled', 1), ('text', 1), ('processing', 1), ('utility', 1), ('quickly', 1), ('evolved', 1), ('general', 1), ('purpose', 1), ('helped', 1), ('hundred', 1), ('thousand', 1), ('programmer', 1), ('system', 1)]
[('nbsp', 2), ('complex', 2), ('create', 1), ('io', 1), ('android', 1), ('apps', 1), ('flutter', 1), ('using', 1), ('codebase', 1), ('app', 1), ('development', 1), ('multiple', 1), ('platform', 1), ('historically', 1), ('difficult', 1), ('book', 1), ('break', 1), ('concept', 1), ('task', 1), ('easily', 1), ('digestible', 1), ('segment', 1)]
[('software', 2), ('cloud', 2), ('native', 2), ('kubernetes', 2), ('vulnerability', 1), ('infrastructure', 1), ('pose', 1), ('major', 1), ('threat', 1), ('organization', 1), ('response', 1), ('computing', 1), ('foundation', 1), ('cncf', 1), ('developed', 1), ('certified', 1), ('security', 1), ('specialist', 1), ('cks', 1), ('certification', 1), ('verify', 1), ('administrator', 1), ('proficiency', 1), ('protect', 1), ('cluster', 1), ('contain', 1)]
[('game', 3), ('design', 2), ('ready', 1), ('give', 1), ('skill', 1), ('real', 1), ('boost', 1), ('eye', 1), ('opening', 1), ('book', 1), ('help', 1), ('explore', 1), ('structure', 1), ('behind', 1), ('todayâ', 1), ('hit', 1), ('video', 1), ('youâ', 1), ('learn', 1), ('principle', 1), ('practice', 1), ('crafting', 1), ('generate', 1), ('emotionally', 1), ('charged', 1), ('experiencesâ', 1), ('combination', 1), ('elegant', 1), ('mechanic', 1), ('compelling', 1), ('fiction', 1), ('pace', 1), ('fully', 1), ('immerses', 1)]
[('tableau', 2), ('crowded', 1), ('field', 1), ('data', 1), ('visualization', 1), ('analytics', 1), ('tool', 1), ('desktop', 1), ('emerged', 1), ('clear', 1), ('leader', 1), ('partly', 1), ('due', 1), ('ease', 1), ('use', 1), ('dive', 1), ('extensive', 1), ('feature', 1), ('set', 1), ('understand', 1), ('powerful', 1), ('flexible', 1), ('software', 1), ('business', 1), ('organization', 1), ('handy', 1), ('pocket', 1), ('reference', 1)]
[('ray', 3), ('compute', 2), ('python', 2), ('data', 2), ('started', 1), ('open', 1), ('source', 1), ('distributed', 1), ('computing', 1), ('framework', 1), ('simplifies', 1), ('process', 1), ('scaling', 1), ('intensive', 1), ('workload', 1), ('practical', 1), ('book', 1), ('programmer', 1), ('engineer', 1), ('scientist', 1), ('learn', 1), ('leverage', 1), ('locally', 1), ('spin', 1), ('cluster', 1), ('able', 1), ('use', 1), ('structure', 1), ('run', 1)]
[('security', 2), ('securing', 1), ('observing', 1), ('troubleshooting', 1), ('containerized', 1), ('workload', 1), ('kubernetes', 1), ('daunting', 1), ('requires', 1), ('range', 1), ('consideration', 1), ('infrastructure', 1), ('choice', 1), ('cluster', 1), ('configuration', 1), ('deployment', 1), ('control', 1), ('runtime', 1), ('network', 1), ('practical', 1), ('book', 1), ('learn', 1), ('adopt', 1), ('holistic', 1), ('observability', 1), ('strategy', 1)]
[('packet', 2), ('network', 2), ('easy', 1), ('capture', 1), ('wireshark', 1), ('world', 1), ('popular', 1), ('sniffer', 1), ('whether', 1), ('wire', 1), ('air', 1), ('use', 1), ('understand', 1), ('happening', 1), ('updated', 1), ('cover', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1)]
[('database', 2), ('infrastructure', 1), ('code', 1), ('revolution', 1), ('affecting', 1), ('administration', 1), ('practical', 1), ('book', 1), ('developer', 1), ('system', 1), ('administrator', 1), ('junior', 1), ('mid', 1), ('level', 1), ('dba', 1), ('learn', 1), ('modern', 1), ('practice', 1), ('site', 1), ('reliability', 1), ('engineering', 1), ('applies', 1), ('craft', 1), ('architecture', 1), ('operation', 1), ('author', 1), ('laine', 1), ('campbell', 1), ('charity', 1), ('major', 1)]
[('architect', 2), ('truly', 1), ('unique', 1), ('technical', 1), ('book', 1), ('today', 1), ('leading', 1), ('software', 1), ('present', 1), ('valuable', 1), ('principle', 1), ('key', 1), ('development', 1), ('issue', 1), ('go', 1), ('way', 1), ('beyond', 1), ('technology', 1), ('four', 1), ('dozen', 1), ('including', 1), ('neal', 1), ('ford', 1), ('michael', 1), ('nygard', 1), ('bill', 1), ('de', 1), ('hora', 1), ('offer', 1), ('advice', 1), ('communicating', 1), ('stakeholder', 1), ('eliminating', 1), ('complexity', 1), ('empowering', 1), ('developer', 1)]
[('database', 3), ('sqlalchemy', 2), ('dive', 1), ('popular', 1), ('open', 1), ('source', 1), ('code', 1), ('library', 1), ('help', 1), ('python', 1), ('programmer', 1), ('work', 1), ('relational', 1), ('oracle', 1), ('mysql', 1), ('postgressql', 1), ('sqlite', 1), ('using', 1), ('real', 1), ('world', 1), ('example', 1), ('practical', 1), ('guide', 1), ('show', 1), ('build', 1), ('simple', 1), ('application', 1), ('connect', 1), ('multiple', 1), ('simultaneously', 1)]
[('chip', 3), ('avr', 2), ('microcontrollers', 2), ('arduino', 2), ('atmel', 1), ('power', 1), ('go', 1), ('many', 1), ('hobbyist', 1), ('hardware', 1), ('hacking', 1), ('project', 1), ('book', 1), ('set', 1), ('aside', 1), ('layer', 1), ('abstraction', 1), ('provided', 1), ('environment', 1), ('learn', 1), ('program', 1), ('directly', 1), ('closer', 1), ('able', 1)]
[('exam', 5), ('java', 4), ('programmer', 4), ('se', 3), ('oca', 2), ('date', 1), ('coverage', 1), ('every', 1), ('topic', 1), ('prepare', 1), ('using', 1), ('effective', 1), ('self', 1), ('study', 1), ('system', 1), ('oracle', 1), ('press', 1), ('written', 1), ('developer', 1), ('original', 1), ('sun', 1), ('certified', 1), ('guide', 1), ('includes', 1), ('complete', 1), ('accurate', 1), ('practice', 1)]
[('data', 5), ('need', 1), ('become', 1), ('driven', 1), ('organization', 1), ('far', 1), ('big', 1), ('crack', 1), ('team', 1), ('unicorn', 1), ('scientist', 1), ('requires', 1), ('establishing', 1), ('effective', 1), ('deeply', 1), ('ingrained', 1), ('culture', 1), ('practical', 1), ('book', 1), ('show', 1), ('true', 1), ('drivenness', 1), ('involves', 1), ('process', 1), ('require', 1), ('genuine', 1), ('buy', 1), ('across', 1), ('company', 1), ('analyst', 1)]
[('network', 3), ('multivendor', 2), ('service', 2), ('make', 1), ('work', 1), ('smoothly', 1), ('today', 1), ('complex', 1), ('practical', 1), ('book', 1), ('show', 1), ('deploy', 1), ('large', 1), ('portfolio', 1), ('multiprotocol', 1), ('label', 1), ('switching', 1), ('mpls', 1), ('configuration', 1), ('level', 1), ('learn', 1), ('juniper', 1), ('juno', 1), ('cisco', 1), ('io', 1), ('xr', 1), ('opencontrail', 1), ('interoperate', 1)]
[('open', 2), ('source', 2), ('percent', 2), ('provides', 1), ('competitive', 1), ('advantage', 1), ('internet', 1), ('age', 1), ('according', 1), ('august', 1), ('forrester', 1), ('report', 1), ('manager', 1), ('interviewed', 1), ('global', 1), ('company', 1), ('already', 1), ('using', 1), ('type', 1), ('software', 1), ('infrastructure', 1), ('another', 1), ('install', 1), ('next', 1), ('year', 1), ('revolutionary', 1), ('model', 1)]
[('visual', 1), ('guide', 1), ('computer', 1), ('programming', 1), ('beginner', 1), ('never', 1), ('easier', 1), ('learn', 1), ('code', 1), ('coding', 1), ('skill', 1), ('high', 1), ('demand', 1), ('need', 1), ('programmer', 1), ('still', 1), ('growing', 1), ('covering', 1), ('three', 1), ('popular', 1), ('language', 1), ('new', 1)]
[('pattern', 1), ('approach', 1), ('designing', 1), ('distributed', 1), ('system', 1), ('solving', 1), ('common', 1), ('implementation', 1), ('problem', 1), ('enterprise', 1), ('today', 1), ('dependent', 1), ('cloud', 1), ('service', 1), ('provider', 1), ('aws', 1), ('microsoft', 1), ('azure', 1), ('gcp', 1), ('use', 1), ('product', 1)]
[('net', 3), ('experience', 2), ('blazor', 2), ('take', 1), ('advantage', 1), ('skill', 1), ('build', 1), ('ui', 1), ('component', 1), ('client', 1), ('side', 1), ('practical', 1), ('guide', 1), ('learn', 1), ('use', 1), ('webassembly', 1), ('develop', 1), ('next', 1), ('generation', 1), ('web', 1), ('built', 1), ('top', 1), ('asp', 1), ('core', 1), ('represents', 1), ('future', 1), ('single', 1), ('page', 1), ('application', 1), ('investment', 1), ('author', 1), ('david', 1), ('pine', 1), ('focus', 1)]
[('security', 2), ('system', 2), ('usually', 1), ('afterthought', 1), ('organization', 1), ('design', 1), ('microservices', 1), ('cloud', 1), ('company', 1), ('today', 1), ('exposed', 1), ('potential', 1), ('threat', 1), ('response', 1), ('often', 1), ('reactive', 1), ('proactive', 1), ('lead', 1), ('unnecessarily', 1), ('complicated', 1), ('hard', 1), ('implement', 1), ('even', 1), ('harder', 1), ('manage', 1), ('scale', 1), ('author', 1), ('gaurav', 1)]
[('decision', 2), ('making', 2), ('capability', 2), ('perception', 2), ('learning', 2), ('early', 1), ('rule', 1), ('based', 1), ('artificial', 1), ('intelligence', 1), ('demonstrated', 1), ('intriguing', 1), ('lacked', 1), ('learn', 1), ('ai', 1), ('today', 1), ('primed', 1), ('machine', 1), ('deep', 1), ('reinforcement', 1), ('perform', 1), ('superhuman', 1), ('specific', 1), ('task', 1), ('book', 1), ('show', 1), ('combine', 1), ('practicality', 1)]
[('feature', 2), ('machine', 2), ('learning', 2), ('data', 2), ('engineering', 1), ('crucial', 1), ('step', 1), ('pipeline', 1), ('yet', 1), ('topic', 1), ('rarely', 1), ('examined', 1), ('practical', 1), ('book', 1), ('learn', 1), ('technique', 1), ('extracting', 1), ('transforming', 1), ('numeric', 1), ('representation', 1), ('raw', 1), ('format', 1), ('model', 1), ('chapter', 1), ('guide', 1), ('single', 1), ('problem', 1)]
[('computer', 2), ('opengl', 2), ('application', 2), ('latest', 1), ('version', 1), ('today', 1), ('leading', 1), ('worldwide', 1), ('standard', 1), ('graphic', 1), ('delivers', 1), ('significant', 1), ('improvement', 1), ('efficiency', 1), ('flexibility', 1), ('performance', 1), ('exceptionally', 1), ('mature', 1), ('robust', 1), ('platform', 1), ('programming', 1), ('high', 1), ('quality', 1), ('generated', 1), ('image', 1), ('interactive', 1), ('using', 1)]
[('device', 2), ('driver', 2), ('everything', 2), ('linux', 2), ('literally', 1), ('drive', 1), ('interested', 1), ('disk', 1), ('monitor', 1), ('keyboard', 1), ('modem', 1), ('outside', 1), ('computer', 1), ('chip', 1), ('memory', 1), ('writing', 1), ('area', 1), ('programming', 1), ('operating', 1), ('system', 1), ('call', 1), ('unique', 1), ('specific', 1), ('knowledge', 1), ('year', 1), ('programmer', 1), ('relied', 1)]
[('game', 3), ('engine', 2), ('new', 1), ('improved', 1), ('third', 1), ('edition', 1), ('highly', 1), ('popular', 1), ('architecture', 1), ('jason', 1), ('gregory', 1), ('draw', 1), ('nearly', 1), ('decade', 1), ('experience', 1), ('midway', 1), ('electronic', 1), ('art', 1), ('naughty', 1), ('dog', 1), ('present', 1), ('theory', 1), ('practice', 1), ('software', 1), ('development', 1), ('book', 1), ('broad', 1), ('range', 1), ('technology', 1), ('technique', 1), ('used', 1), ('aa', 1)]
[('project', 3), ('retrospective', 3), ('help', 3), ('team', 2), ('went', 2), ('need', 2), ('examine', 1), ('right', 1), ('wrong', 1), ('traditionally', 1), ('known', 1), ('post', 1), ('mortems', 1), ('held', 1), ('end', 1), ('late', 1), ('agile', 1), ('iterative', 1), ('incremental', 1), ('accurately', 1), ('find', 1), ('fix', 1), ('problem', 1)]
[('python', 3), ('easy', 1), ('start', 1), ('developing', 1), ('program', 1), ('language', 1), ('popular', 1), ('unique', 1), ('strength', 1), ('charm', 1), ('expressiveness', 1), ('hard', 1), ('grasp', 1), ('hidden', 1), ('pitfall', 1), ('easily', 1), ('trip', 1), ('second', 1), ('edition', 1), ('effective', 1), ('help', 1), ('master', 1), ('truly', 1), ('pythonic', 1), ('approach', 1)]
[('mathematics', 2), ('nbsp', 2), ('mathematical', 2), ('concrete', 1), ('blending', 1), ('continuous', 1), ('discrete', 1), ('concretely', 1), ('author', 1), ('explain', 1), ('controlled', 1), ('manipulation', 1), ('formula', 1), ('using', 1), ('collection', 1), ('technique', 1), ('solving', 1), ('problem', 1), ('subject', 1), ('matter', 1), ('primarily', 1), ('expansion', 1), ('preliminary', 1), ('section', 1)]
[('become', 2), ('designer', 1), ('manager', 1), ('hope', 1), ('product', 1), ('essential', 1), ('user', 1), ('integrated', 1), ('life', 1), ('instagram', 1), ('lyft', 1), ('others', 1), ('deep', 1), ('integration', 1), ('accidental', 1), ('process', 1), ('careful', 1), ('design', 1), ('iterative', 1), ('learning', 1), ('especially', 1), ('technology', 1), ('company', 1), ('guide', 1), ('show', 1), ('apply', 1), ('behavioral', 1), ('science', 1), ('research', 1)]
[('security', 2), ('rise', 1), ('cloud', 1), ('every', 1), ('aspect', 1), ('shaken', 1), ('core', 1), ('fundamental', 1), ('building', 1), ('system', 1), ('changing', 1), ('although', 1), ('many', 1), ('principle', 1), ('underpin', 1), ('still', 1), ('ring', 1), ('true', 1), ('implementation', 1), ('become', 1), ('unrecognizable', 1), ('practical', 1), ('book', 1), ('provides', 1), ('recipe', 1), ('aws', 1), ('azure', 1), ('gcp', 1), ('help', 1), ('enhance', 1)]
[('data', 4), ('surge', 1), ('big', 1), ('ai', 1), ('organization', 1), ('rapidly', 1), ('create', 1), ('product', 1), ('effectiveness', 1), ('analytics', 1), ('machine', 1), ('learning', 1), ('model', 1), ('depends', 1), ('quality', 1), ('delta', 1), ('lake', 1), ('open', 1), ('source', 1), ('format', 1), ('offer', 1), ('robust', 1), ('lakehouse', 1), ('framework', 1), ('platform', 1), ('amazon', 1), ('adls', 1), ('gc', 1), ('practical', 1), ('book', 1), ('show', 1), ('engineer', 1)]
[('cloud', 3), ('security', 2), ('rapidly', 1), ('changing', 1), ('architecture', 1), ('api', 1), ('driven', 1), ('automation', 1), ('platform', 1), ('come', 1), ('unique', 1), ('challenge', 1), ('opportunity', 1), ('updated', 1), ('second', 1), ('edition', 1), ('examine', 1), ('best', 1), ('practice', 1), ('multivendor', 1), ('environment', 1), ('whether', 1), ('company', 1), ('plan', 1), ('move', 1), ('legacy', 1), ('premise', 1), ('project', 1), ('build', 1), ('new', 1), ('infrastructure', 1)]
[('data', 2), ('structure', 2), ('book', 1), ('describes', 1), ('design', 1), ('technique', 1), ('functional', 1), ('language', 1)]
[('graph', 2), ('data', 2), ('discover', 1), ('algorithm', 1), ('help', 1), ('leverage', 1), ('relationship', 1), ('within', 1), ('develop', 1), ('intelligent', 1), ('solution', 1), ('enhance', 1), ('machine', 1), ('learning', 1), ('model', 1), ('learn', 1), ('analytics', 1), ('uniquely', 1), ('suited', 1), ('unfold', 1), ('complex', 1), ('structure', 1), ('reveal', 1), ('difficult', 1), ('find', 1), ('pattern', 1), ('lurking', 1), ('whether', 1), ('trying', 1), ('build', 1)]
[('edition', 2), ('project', 2), ('essay', 2), ('updated', 1), ('critically', 1), ('acclaimed', 1), ('bestselling', 1), ('book', 1), ('microsoft', 1), ('veteran', 1), ('scott', 1), ('berkun', 1), ('offer', 1), ('collection', 1), ('field', 1), ('tested', 1), ('philosophy', 1), ('strategy', 1), ('defining', 1), ('leading', 1), ('managing', 1), ('distills', 1), ('complex', 1), ('concept', 1), ('challenge', 1), ('practical', 1), ('nugget', 1), ('useful', 1), ('advice', 1), ('new', 1)]
[('unix', 3), ('user', 2), ('growing', 1), ('popularity', 1), ('linux', 1), ('advent', 1), ('darwin', 1), ('metamorphosed', 1), ('something', 1), ('new', 1), ('exciting', 1), ('longer', 1), ('perceived', 1), ('difficult', 1), ('operating', 1), ('system', 1), ('discovering', 1), ('advantage', 1), ('first', 1), ('time', 1), ('whether', 1), ('newcomer', 1), ('power', 1), ('find', 1), ('thumbing', 1)]
[('language', 2), ('oldest', 1), ('programming', 1), ('still', 1), ('widely', 1), ('used', 1), ('whether', 1), ('experienced', 1), ('programmer', 1), ('new', 1), ('know', 1), ('frustrating', 1), ('hunt', 1), ('hundred', 1), ('page', 1), ('reference', 1), ('book', 1), ('find', 1), ('bit', 1), ('information', 1), ('certain', 1), ('function', 1), ('type', 1), ('syntax', 1), ('element', 1), ('even', 1)]
[('developer', 3), ('api', 2), ('using', 1), ('web', 1), ('provide', 1), ('service', 1), ('application', 1), ('satisfying', 1), ('endeavor', 1), ('software', 1), ('engineer', 1), ('undertake', 1), ('building', 1), ('popular', 1), ('thriving', 1), ('ecosystem', 1), ('challenging', 1), ('practical', 1), ('guide', 1), ('architect', 1), ('tech', 1), ('lead', 1), ('learn', 1), ('navigate', 1), ('complex', 1), ('decision', 1)]
[('wordpress', 3), ('web', 2), ('apps', 2), ('blogging', 1), ('platform', 1), ('basic', 1), ('php', 1), ('html', 1), ('cs', 1), ('javascript', 1), ('experience', 1), ('use', 1), ('develop', 1), ('fast', 1), ('scalable', 1), ('secure', 1), ('highly', 1), ('customized', 1), ('mobile', 1), ('service', 1), ('multisite', 1), ('network', 1), ('website', 1), ('along', 1), ('core', 1), ('function', 1), ('database', 1), ('schema', 1), ('learn', 1), ('build', 1)]
[('network', 2), ('secure', 1), ('best', 1), ('way', 1), ('find', 1), ('attack', 1), ('using', 1), ('tactic', 1), ('attacker', 1), ('employ', 1), ('identify', 1), ('exploit', 1), ('weakness', 1), ('third', 1), ('edition', 1), ('practical', 1), ('book', 1), ('learn', 1), ('perform', 1), ('based', 1), ('penetration', 1), ('testing', 1), ('structured', 1), ('manner', 1), ('security', 1), ('expert', 1), ('chris', 1), ('mcnab', 1), ('demonstrates', 1), ('common', 1), ('vulnerability', 1)]
[('skill', 2), ('career', 1), ('software', 1), ('developer', 1), ('today', 1), ('rapidly', 1), ('changing', 1), ('expanding', 1), ('technology', 1), ('successful', 1), ('requires', 1), ('technical', 1), ('expertise', 1), ('grow', 1), ('professionally', 1), ('need', 1), ('soft', 1), ('effective', 1), ('learning', 1), ('technique', 1), ('honing', 1), ('book', 1), ('author', 1), ('dave', 1)]
[('linux', 3), ('understanding', 2), ('book', 2), ('wondered', 1), ('carry', 1), ('complicated', 1), ('task', 1), ('assigned', 1), ('ip', 1), ('protocol', 1), ('want', 1), ('learn', 1), ('modern', 1), ('networking', 1), ('real', 1), ('life', 1), ('example', 1), ('network', 1), ('internals', 1), ('popular', 1), ('reilly', 1), ('kernel', 1), ('clearly', 1), ('explains', 1)]
[('data', 2), ('database', 2), ('nosql', 2), ('getting', 1), ('bigger', 1), ('complex', 1), ('day', 1), ('choice', 1), ('handling', 1), ('explore', 1), ('cutting', 1), ('edge', 1), ('available', 1), ('traditional', 1), ('relational', 1), ('newer', 1), ('approach', 1), ('make', 1), ('informed', 1), ('decision', 1), ('challenging', 1), ('storage', 1), ('problem', 1), ('comprehensive', 1), ('guide', 1), ('world', 1)]
[('language', 2), ('text', 2), ('book', 1), ('offer', 1), ('highly', 1), ('accessible', 1), ('introduction', 1), ('natural', 1), ('processing', 1), ('field', 1), ('support', 1), ('variety', 1), ('technology', 1), ('predictive', 1), ('email', 1), ('filtering', 1), ('automatic', 1), ('summarization', 1), ('translation', 1), ('learn', 1), ('write', 1), ('python', 1), ('program', 1), ('work', 1), ('large', 1), ('collection', 1), ('unstructured', 1), ('access', 1)]
[('performance', 2), ('tuning', 2), ('database', 2), ('practical', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('troubleshooting', 1), ('best', 1), ('practice', 1), ('microsoft', 1), ('sql', 1), ('server', 1), ('engineer', 1), ('including', 1), ('developer', 1), ('administrator', 1), ('learn', 1), ('identify', 1), ('issue', 1), ('troubleshoot', 1), ('system', 1), ('holistic', 1), ('fashion', 1), ('properly', 1), ('prioritize', 1), ('effort', 1)]
[('software', 2), ('updated', 2), ('new', 2), ('definitive', 1), ('practical', 1), ('proven', 1), ('guide', 1), ('architecting', 1), ('modern', 1), ('fully', 1), ('content', 1), ('mobility', 1), ('cloud', 1), ('energy', 1), ('management', 1), ('devops', 1), ('quantum', 1), ('computing', 1), ('eleven', 1), ('chapter', 1), ('architecture', 1)]
[('devops', 2), ('developer', 2), ('many', 1), ('company', 1), ('adopting', 1), ('gitops', 1), ('cloud', 1), ('native', 1), ('strategy', 1), ('reliable', 1), ('framework', 1), ('quickly', 1), ('becoming', 1), ('standard', 1), ('method', 1), ('deploying', 1), ('apps', 1), ('kubernetes', 1), ('practical', 1), ('oriented', 1), ('book', 1), ('engineer', 1), ('architect', 1), ('sres', 1), ('learn', 1), ('useful', 1), ('recipe', 1), ('example', 1), ('following', 1)]
[('javascript', 2), ('object', 2), ('learn', 1), ('book', 1), ('brain', 1), ('friendly', 1), ('guide', 1), ('teach', 1), ('everything', 1), ('language', 1), ('fundamental', 1), ('advanced', 1), ('topic', 1), ('including', 1), ('function', 1), ('browser', 1), ('document', 1), ('model', 1), ('reading', 1), ('playing', 1), ('game', 1), ('solving', 1), ('puzzle', 1), ('pondering', 1), ('mystery', 1), ('interacting', 1), ('way', 1)]
[('machine', 2), ('learning', 2), ('detailed', 1), ('note', 1), ('table', 1), ('example', 1), ('handy', 1), ('reference', 1), ('help', 1), ('navigate', 1), ('basic', 1), ('structured', 1), ('author', 1), ('matt', 1), ('harrison', 1), ('delivers', 1), ('valuable', 1), ('guide', 1), ('use', 1), ('additional', 1), ('support', 1), ('training', 1), ('convenient', 1), ('resource', 1), ('dive', 1), ('next', 1), ('project', 1), ('ideal', 1), ('programmer', 1), ('data', 1)]
[('font', 2), ('reference', 1), ('fascinating', 1), ('complete', 1), ('guide', 1), ('using', 1), ('typography', 1), ('web', 1), ('across', 1), ('variety', 1), ('operating', 1), ('system', 1), ('application', 1), ('software', 1), ('encoding', 1), ('show', 1), ('take', 1), ('full', 1), ('advantage', 1), ('incredible', 1), ('number', 1), ('typographic', 1), ('option', 1), ('available', 1), ('advanced', 1), ('material', 1), ('cover', 1), ('everything', 1), ('designing', 1), ('glyph', 1)]
[('python', 2), ('code', 2), ('welcome', 1), ('scientific', 1), ('community', 1), ('scientist', 1), ('program', 1), ('practical', 1), ('guide', 1), ('teach', 1), ('fundamental', 1), ('part', 1), ('scipy', 1), ('library', 1), ('related', 1), ('give', 1), ('taste', 1), ('beautiful', 1), ('easy', 1), ('use', 1), ('practice', 1), ('learn', 1), ('write', 1), ('elegant', 1), ('clear', 1)]
[('number', 3), ('character', 2), ('mapping', 2), ('unicode', 2), ('single', 2), ('fundamentally', 1), ('computer', 1), ('deal', 1), ('store', 1), ('letter', 1), ('assigning', 1), ('hundred', 1), ('different', 1), ('encoding', 1), ('system', 1), ('promise', 1), ('enables', 1), ('software', 1), ('product', 1), ('website', 1), ('targeted', 1), ('across', 1), ('multiple', 1), ('platform', 1)]
[('design', 3), ('data', 3), ('surface', 1), ('practice', 1), ('science', 1), ('seem', 1), ('obvious', 1), ('partner', 1), ('discipline', 1), ('actually', 1), ('work', 1), ('toward', 1), ('goal', 1), ('helping', 1), ('designer', 1), ('product', 1), ('manager', 1), ('understand', 1), ('user', 1), ('craft', 1), ('elegant', 1), ('digital', 1), ('experience', 1), ('enhance', 1), ('bring', 1), ('deeper', 1), ('meaning', 1), ('practical', 1), ('guide', 1), ('show', 1)]
[('incident', 2), ('response', 2), ('satisfied', 1), ('way', 1), ('company', 1), ('responds', 1), ('prepared', 1), ('team', 1), ('handle', 1), ('critical', 1), ('time', 1), ('sensitive', 1), ('event', 1), ('service', 1), ('disruption', 1), ('security', 1), ('breach', 1), ('professional', 1), ('looking', 1), ('effective', 1), ('model', 1), ('successfully', 1), ('adopted', 1), ('management', 1), ('system', 1), ('ims', 1), ('used', 1), ('firefighter', 1), ('throughout', 1)]
[('network', 3), ('linux', 2), ('system', 2), ('iptables', 2), ('firewall', 1), ('address', 1), ('translation', 1), ('nat', 1), ('logging', 1), ('accounting', 1), ('provided', 1), ('netfilter', 1), ('known', 1), ('name', 1), ('command', 1), ('used', 1), ('administer', 1), ('interface', 1), ('sophisticated', 1), ('offered', 1), ('onlinux', 1), ('make', 1), ('extremely', 1), ('flexible', 1), ('kind', 1), ('filtering', 1)]
[('linux', 4), ('programming', 3), ('interface', 3), ('unix', 2), ('tlpi', 1), ('definitive', 1), ('guide', 1), ('employed', 1), ('nearly', 1), ('every', 1), ('application', 1), ('run', 1), ('system', 1), ('authoritative', 1), ('work', 1)]
[('linux', 3), ('guide', 2), ('user', 2), ('industry', 1), ('favorite', 1), ('bible', 1), ('th', 1), ('edition', 1), ('ultimate', 1), ('hand', 1), ('whether', 1), ('true', 1), ('beginner', 1), ('advanced', 1), ('navigating', 1), ('recent', 1), ('change', 1), ('updated', 1)]
[('asynchronous', 2), ('programming', 2), ('async', 2), ('feature', 2), ('writing', 1), ('several', 1), ('application', 1), ('call', 1), ('concise', 1), ('hand', 1), ('guide', 1), ('show', 1), ('make', 1), ('process', 1), ('simpler', 1), ('along', 1), ('clear', 1), ('introduction', 1), ('depth', 1), ('look', 1), ('work', 1), ('might', 1), ('want', 1), ('use', 1)]
[('devops', 2), ('company', 1), ('think', 1), ('adopting', 1), ('mean', 1), ('bringing', 1), ('specialist', 1), ('host', 1), ('new', 1), ('tool', 1), ('practical', 1), ('guide', 1), ('learn', 1), ('professional', 1), ('cultural', 1), ('movement', 1), ('call', 1), ('change', 1), ('inside', 1), ('organization', 1), ('author', 1), ('ryn', 1), ('daniel', 1), ('jennifer', 1), ('davis', 1), ('provide', 1), ('several', 1), ('approach', 1), ('improving', 1), ('collaboration', 1), ('within', 1)]
[('comprehensive', 1), ('text', 1), ('foundation', 1), ('technique', 1), ('graph', 1), ('neural', 1), ('network', 1), ('application', 1), ('nlp', 1), ('data', 1), ('mining', 1), ('vision', 1), ('healthcare', 1)]
[('cissp', 2), ('certified', 1), ('comprehensive', 1), ('study', 1), ('plan', 1), ('revised', 1), ('updated', 1), ('exam', 1), ('dummy', 1), ('packed', 1), ('everything', 1), ('need', 1), ('succeed', 1), ('test', 1), ('day', 1), ('deep', 1)]
[('exam', 5), ('csslp', 3), ('guide', 2), ('providing', 1), ('coverage', 1), ('latest', 1), ('self', 1), ('study', 1), ('offer', 1), ('everything', 1), ('need', 1), ('ace', 1), ('certified', 1), ('secure', 1), ('software', 1), ('lifecycle', 1), ('professional', 1), ('third', 1), ('edition', 1), ('cover', 1), ('eight', 1), ('domain', 1), ('challenging', 1), ('developed', 1), ('international', 1), ('information', 1), ('system', 1), ('security', 1), ('certification', 1)]
[('exam', 4), ('comptia', 2), ('security', 2), ('guide', 2), ('date', 1), ('training', 1), ('preparation', 1), ('guru', 1), ('mike', 1), ('meyers', 1), ('take', 1), ('latest', 1), ('version', 1), ('sy', 1), ('confidence', 1), ('using', 1), ('comprehensive', 1), ('information', 1), ('contained', 1), ('highly', 1), ('effective', 1), ('self', 1), ('study', 1), ('resource', 1), ('test', 1), ('go', 1), ('beyond', 1), ('knowledge', 1), ('application', 1)]
[('data', 4), ('lake', 2), ('end', 2), ('organization', 1), ('understand', 1), ('importance', 1), ('architecture', 1), ('deriving', 1), ('value', 1), ('building', 1), ('robust', 1), ('scalable', 1), ('performant', 1), ('remains', 1), ('complex', 1), ('proposition', 1), ('buffet', 1), ('tool', 1), ('option', 1), ('need', 1), ('work', 1), ('together', 1), ('provide', 1), ('seamless', 1), ('pipeline', 1), ('insight', 1)]
[('application', 2), ('ready', 1), ('build', 1), ('cloud', 1), ('native', 1), ('hand', 1), ('introduction', 1), ('daily', 1), ('life', 1), ('developer', 1), ('crafting', 1), ('code', 1), ('openshift', 1), ('open', 1), ('source', 1), ('container', 1), ('platform', 1), ('red', 1), ('hat', 1), ('creating', 1), ('packaging', 1), ('apps', 1), ('deployment', 1), ('modern', 1), ('distributed', 1), ('system', 1), ('daunting', 1), ('often', 1), ('adding', 1), ('infrastructure', 1), ('value', 1), ('complicate', 1)]
[('edition', 2), ('computer', 1), ('organization', 1), ('design', 1), ('risc', 1), ('hardware', 1), ('software', 1), ('interface', 1), ('second', 1), ('award', 1), ('winning', 1), ('textbook', 1), ('patterson', 1), ('hennessy', 1), ('used', 1), ('student', 1), ('per', 1), ('year', 1), ('continues', 1), ('present', 1)]
[('welcome', 1), ('comprehensive', 1), ('foundational', 1), ('guide', 1), ('available', 1), ('topic', 1), ('coding', 1), ('net', 1), ('book', 1), ('go', 1), ('beyond', 1), ('achieve', 1), ('drill', 1), ('core', 1), ('stuff', 1), ('make', 1), ('good', 1), ('developer', 1), ('expanded', 1), ('th', 1), ('edition', 1)]
[('techno', 1), ('utopianism', 1), ('dead', 1), ('time', 1), ('pay', 1), ('attention', 1), ('inequality', 1), ('marginalization', 1), ('bias', 1), ('woven', 1), ('technological', 1), ('system', 1), ('book', 1), ('sound', 1), ('alarm', 1), ('decade', 1), ('lulled', 1), ('complacency', 1), ('narrative', 1)]
[('game', 2), ('book', 2), ('rust', 1), ('exciting', 1), ('new', 1), ('programming', 1), ('language', 1), ('combining', 1), ('power', 1), ('memory', 1), ('safety', 1), ('fearless', 1), ('concurrency', 1), ('productivity', 1), ('booster', 1), ('better', 1), ('way', 1), ('learn', 1), ('making', 1), ('chapter', 1), ('present', 1), ('hand', 1), ('practical', 1), ('project', 1), ('ranging', 1), ('hello', 1), ('world', 1), ('building', 1), ('full', 1), ('dungeon', 1), ('crawler', 1)]
[('history', 2), ('accessible', 2), ('discover', 1), ('computing', 1), ('major', 1), ('thread', 1), ('development', 1), ('compact', 1), ('covering', 1), ('punch', 1), ('card', 1), ('silicon', 1), ('valley', 1), ('smartphones', 1), ('style', 1), ('computer', 1), ('historian', 1), ('paul', 1), ('ceruzzi', 1), ('offer', 1), ('broad', 1)]
[('network', 2), ('serious', 1), ('security', 1), ('check', 1), ('ssh', 1), ('secure', 1), ('shell', 1), ('provides', 1), ('key', 1), ('based', 1), ('authentication', 1), ('transparent', 1), ('encryption', 1), ('connection', 1), ('reliable', 1), ('robust', 1), ('reasonably', 1), ('easy', 1), ('use', 1), ('free', 1), ('commercial', 1), ('implementation', 1), ('widely', 1), ('available', 1), ('operating', 1), ('system', 1), ('solve', 1)]
[('introduction', 2), ('cybersecurity', 2), ('essential', 2), ('accessible', 1), ('concept', 1), ('practice', 1), ('provides', 1), ('comprehensive', 1), ('field', 1), ('expert', 1), ('coverage', 1), ('topic', 1), ('required', 1)]
[('reference', 2), ('computer', 2), ('bestselling', 1), ('dictionary', 1), ('fully', 1), ('revised', 1), ('making', 1), ('date', 1), ('authoritative', 1), ('kind', 1), ('providing', 1), ('comprehensive', 1), ('coverage', 1), ('application', 1), ('industry', 1), ('school', 1), ('work', 1), ('education', 1), ('home', 1), ('ideal', 1), ('student', 1), ('professional', 1), ('anyone', 1), ('us', 1)]
[('computer', 4), ('world', 2), ('idea', 2), ('age', 2), ('intellectual', 1), ('wild', 1), ('west', 1), ('shoot', 1), ('anyone', 1), ('wish', 1), ('willing', 1), ('risk', 1), ('consequence', 1), ('hacker', 1), ('painter', 1), ('big', 1), ('paul', 1), ('graham', 1), ('living', 1), ('increasingly', 1), ('designed', 1), ('engineered', 1), ('programmer', 1)]
[('publisher', 2), ('product', 2), ('third', 2), ('ct', 2), ('exam', 2), ('note', 1), ('purchased', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('complete', 1), ('date', 1), ('study', 1), ('system', 1), ('published', 1), ('avixa', 1), ('certified', 1), ('technical', 1), ('specialist', 1), ('guide', 1), ('edition', 1), ('provides', 1)]
[('nan', 1)]
[('data', 3), ('learn', 2), ('use', 2), ('program', 1), ('diving', 1), ('language', 1), ('newfound', 1), ('skill', 1), ('solve', 1), ('practical', 1), ('science', 1), ('problem', 1), ('book', 1), ('load', 1), ('assemble', 1), ('disassemble', 1), ('object', 1), ('navigate', 1), ('environment', 1), ('system', 1), ('write', 1), ('function', 1), ('programming', 1), ('tool', 1), ('rstudio', 1), ('master', 1), ('instructor', 1), ('garrett', 1)]
[('php', 4), ('experiencing', 1), ('renaissance', 1), ('though', 1), ('difficult', 1), ('tell', 1), ('outdated', 1), ('tutorial', 1), ('online', 1), ('practical', 1), ('guide', 1), ('learn', 1), ('become', 1), ('full', 1), ('featured', 1), ('mature', 1), ('language', 1), ('object', 1), ('orientation', 1), ('namespaces', 1), ('growing', 1), ('collection', 1), ('reusable', 1), ('component', 1), ('library', 1), ('author', 1), ('josh', 1), ('lockhart', 1), ('creator', 1)]
[('protocol', 2), ('learn', 2), ('network', 2), ('take', 1), ('depth', 1), ('tour', 1), ('core', 1), ('internet', 1), ('work', 1), ('together', 1), ('move', 1), ('data', 1), ('packet', 1), ('another', 1), ('updated', 1), ('edition', 1), ('dive', 1), ('aspect', 1), ('including', 1), ('operation', 1), ('basic', 1), ('security', 1), ('risk', 1), ('function', 1), ('hardware', 1), ('switch', 1), ('router', 1), ('new', 1), ('chapter', 1), ('examine', 1)]
[('regular', 2), ('expression', 2), ('step', 2), ('programmer', 1), ('new', 1), ('easy', 1), ('follow', 1), ('guide', 1), ('place', 1), ('start', 1), ('learn', 1), ('fundamental', 1), ('help', 1), ('numerous', 1), ('example', 1), ('discovering', 1), ('first', 1), ('hand', 1), ('match', 1), ('extract', 1), ('transform', 1), ('text', 1), ('matching', 1), ('specific', 1), ('word', 1), ('character', 1), ('pattern', 1), ('essential', 1), ('part', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('information', 3), ('processing', 2), ('first', 1), ('published', 1), ('decade', 1), ('ago', 1), ('cjkv', 1), ('quickly', 1), ('became', 1), ('unsurpassed', 1), ('source', 1), ('text', 1), ('chinese', 1), ('japanese', 1), ('korean', 1), ('vietnamese', 1), ('thoroughly', 1), ('updated', 1), ('provide', 1), ('web', 1), ('application', 1), ('developer', 1), ('latest', 1), ('technique', 1), ('tool', 1), ('disseminating', 1), ('directly', 1), ('audience', 1)]
[('learn', 1), ('defend', 1), ('crucial', 1), ('ic', 1), ('scada', 1), ('infrastructure', 1), ('devastating', 1), ('attack', 1), ('tried', 1), ('true', 1), ('hacking', 1), ('exposed', 1), ('way', 1), ('practical', 1), ('guide', 1), ('reveals', 1), ('powerful', 1), ('weapon', 1), ('devious', 1), ('method', 1), ('cyber', 1), ('terrorist', 1), ('use', 1), ('compromise', 1), ('device', 1), ('application', 1), ('system', 1), ('vital', 1), ('oil', 1), ('gas', 1), ('pipeline', 1), ('electrical', 1), ('grid', 1), ('nuclear', 1), ('refinery', 1), ('written', 1)]
[('new', 2), ('provides', 2), ('kingmaker', 1), ('document', 1), ('rise', 1), ('developer', 1), ('class', 1), ('strategy', 1), ('company', 1), ('adapt', 1), ('technology', 1), ('landscape', 1), ('recruiting', 1), ('retention', 1), ('playbook', 1), ('work', 1), ('efficiently', 1), ('effectively', 1), ('important', 1), ('member', 1), ('organization', 1)]
[('relational', 3), ('database', 3), ('model', 2), ('go', 2), ('book', 1), ('shed', 1), ('light', 1), ('principle', 1), ('behind', 1), ('fundamental', 1), ('backed', 1), ('application', 1), ('consequently', 1), ('work', 1), ('computing', 1), ('world', 1), ('today', 1), ('depth', 1), ('practitioner', 1), ('beyond', 1), ('hype', 1), ('get', 1), ('heart', 1), ('actually', 1)]
[('photoshop', 3), ('today', 2), ('effect', 2), ('designer', 1), ('book', 1), ('definitive', 1), ('quick', 1), ('easy', 1), ('use', 1), ('source', 1), ('hottest', 1), ('design', 1), ('image', 1), ('planetphotoshop', 1), ('executive', 1), ('producer', 1), ('corey', 1), ('barker', 1), ('walk', 1), ('student', 1), ('creating', 1), ('dozen', 1), ('eye', 1), ('popping', 1), ('text', 1), ('commercial', 1), ('graphic', 1), ('photo', 1), ('texture', 1)]
[('postfix', 3), ('mail', 2), ('mta', 2), ('transfer', 1), ('agent', 1), ('negetiveemoji', 1), ('software', 1), ('server', 1), ('use', 1), ('route', 1), ('email', 1), ('highly', 1), ('respected', 1), ('expert', 1), ('secure', 1), ('design', 1), ('tremendous', 1), ('reliability', 1), ('new', 1), ('user', 1), ('simple', 1), ('configure', 1), ('fact', 1), ('adopted', 1), ('default', 1), ('mac', 1), ('o', 1), ('compatible', 1), ('sendmail', 1)]
[('communicate', 2), ('server', 2), ('recently', 1), ('creating', 1), ('desktop', 1), ('application', 1), ('browser', 1), ('meant', 1), ('using', 1), ('inefficient', 1), ('ajax', 1), ('comet', 1), ('technology', 1), ('practical', 1), ('guide', 1), ('learn', 1), ('use', 1), ('websocket', 1), ('protocol', 1), ('enables', 1), ('client', 1), ('single', 1), ('connection', 1), ('simultaneously', 1)]
[('designed', 1), ('introductory', 1), ('course', 1), ('significant', 1), ('team', 1), ('project', 1), ('textbook', 1), ('present', 1), ('concept', 1), ('real', 1), ('life', 1), ('case', 1), ('study', 1), ('example', 1)]
[('principled', 1), ('high', 1), ('level', 1), ('view', 1), ('computer', 1), ('performance', 1), ('exploit', 1), ('ideal', 1), ('software', 1), ('architect', 1), ('data', 1), ('scientist', 1)]
[('intelligence', 3), ('open', 2), ('source', 2), ('learn', 1), ('gather', 1), ('analyze', 1), ('publicly', 1), ('available', 1), ('data', 1), ('need', 1), ('deep', 1), ('dive', 1), ('exploring', 1), ('real', 1), ('world', 1), ('value', 1), ('veteran', 1)]
[('exam', 3), ('information', 3), ('coverage', 2), ('cism', 2), ('provides', 1), ('every', 1), ('objective', 1), ('integrated', 1), ('self', 1), ('study', 1), ('guide', 1), ('enables', 1), ('take', 1), ('version', 1), ('challenging', 1), ('complete', 1), ('confidence', 1), ('written', 1), ('expert', 1), ('field', 1), ('book', 1), ('offer', 1), ('focused', 1), ('security', 1), ('governance', 1), ('risk', 1), ('management', 1)]
[('data', 7), ('engineer', 2), ('quickly', 1), ('detect', 1), ('troubleshoot', 1), ('prevent', 1), ('wide', 1), ('range', 1), ('issue', 1), ('observability', 1), ('set', 1), ('best', 1), ('practice', 1), ('enables', 1), ('team', 1), ('gain', 1), ('greater', 1), ('visibility', 1), ('usage', 1), ('architect', 1), ('machine', 1), ('learning', 1), ('depends', 1), ('quality', 1), ('book', 1), ('show', 1), ('focus', 1)]
[('guide', 2), ('programmer', 2), ('comprehensive', 1), ('expert', 1), ('level', 1), ('updated', 1), ('microsoft', 1), ('long', 1), ('term', 1), ('support', 1), ('lts', 1), ('release', 1), ('essential', 1), ('organized', 1), ('fluff', 1), ('suitable', 1), ('every', 1), ('building', 1)]
[('cloud', 2), ('moving', 2), ('becoming', 1), ('de', 1), ('facto', 1), ('home', 1), ('company', 1), ('ranging', 1), ('enterprise', 1), ('startup', 1), ('mean', 1), ('application', 1), ('monolith', 1), ('microservices', 1), ('running', 1), ('maintaining', 1), ('service', 1), ('brings', 1), ('level', 1), ('complexity', 1), ('answer', 1), ('modularity', 1), ('deployability', 1), ('observability', 1), ('self', 1), ('healing', 1), ('capacity', 1)]
[('data', 5), ('behavioral', 3), ('tool', 2), ('harness', 1), ('full', 1), ('power', 1), ('company', 1), ('learning', 1), ('specifically', 1), ('designed', 1), ('analysis', 1), ('common', 1), ('science', 1), ('algorithm', 1), ('predictive', 1), ('analytics', 1), ('treat', 1), ('customer', 1), ('click', 1), ('website', 1), ('purchase', 1), ('supermarket', 1), ('instead', 1), ('practical', 1), ('guide', 1)]
[('game', 3), ('physic', 2), ('want', 1), ('enrich', 1), ('experience', 1), ('based', 1), ('realism', 1), ('expanded', 1), ('edition', 1), ('classic', 1), ('book', 1), ('detail', 1), ('principle', 1), ('applicable', 1), ('development', 1), ('learn', 1), ('collision', 1), ('explosion', 1), ('sound', 1), ('projectile', 1), ('effect', 1), ('used', 1), ('wii', 1), ('playstation', 1), ('xbox', 1), ('smartphones', 1), ('tablet', 1), ('handle', 1)]
[('nan', 1)]
[('nan', 1)]
[('look', 2), ('book', 1), ('show', 1), ('generative', 1), ('technology', 1), ('work', 1), ('driver', 1), ('application', 1), ('showing', 1), ('various', 1), ('startupsand', 1), ('large', 1), ('company', 1), ('space', 1), ('nbsp', 1), ('challenge', 1), ('risk', 1)]
[('publisher', 2), ('product', 2), ('ceh', 2), ('exam', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('date', 1), ('coverage', 1), ('every', 1), ('topic', 1), ('thoroughly', 1), ('updated', 1), ('objective', 1), ('integrated', 1), ('self', 1), ('study', 1), ('system', 1), ('offer', 1), ('complete', 1)]
[('computer', 2), ('started', 1), ('rapidly', 1), ('expanding', 1), ('field', 1), ('vision', 1), ('practical', 1), ('guide', 1), ('written', 1), ('adrian', 1), ('kaehler', 1), ('gary', 1), ('bradski', 1), ('creator', 1), ('open', 1), ('source', 1), ('opencv', 1), ('library', 1), ('book', 1), ('provides', 1), ('thorough', 1), ('introduction', 1), ('developer', 1), ('academic', 1), ('roboticists', 1), ('hobbyist', 1), ('learn', 1), ('take', 1), ('build', 1), ('application', 1), ('enable', 1)]
[('process', 4), ('business', 2), ('textbook', 1), ('cover', 1), ('entire', 1), ('management', 1), ('bpm', 1), ('lifecycle', 1), ('identification', 1), ('monitoring', 1), ('covering', 1), ('along', 1), ('way', 1), ('modelling', 1), ('analysis', 1), ('redesign', 1), ('automation', 1), ('concept', 1), ('method', 1), ('tool', 1)]
[('book', 3), ('elon', 1), ('musk', 1), ('named', 1), ('final', 1), ('invention', 1), ('everyone', 1), ('future', 1), ('huffington', 1), ('post', 1), ('definitive', 1), ('tech', 1), ('artificial', 1), ('intelligence', 1), ('help', 1), ('choose', 1), ('buy', 1), ('movie', 1), ('see', 1), ('even', 1), ('date', 1), ('put', 1), ('smart', 1), ('smartphone', 1), ('soon', 1), ('drive', 1), ('car', 1), ('make', 1), ('trade', 1)]
[('data', 4), ('science', 2), ('application', 2), ('right', 2), ('team', 1), ('looking', 1), ('turn', 1), ('research', 1), ('useful', 1), ('analytics', 1), ('require', 1), ('tool', 1), ('approach', 1), ('succeed', 1), ('revised', 1), ('second', 1), ('edition', 1), ('hand', 1), ('guide', 1), ('coming', 1), ('scientist', 1), ('learn', 1), ('use', 1), ('agile', 1), ('development', 1), ('methodology', 1), ('build', 1)]
[('architect', 2), ('practical', 1), ('book', 1), ('ctos', 1), ('cio', 1), ('learn', 1), ('set', 1), ('pattern', 1), ('practice', 1), ('architecture', 1), ('including', 1), ('analysis', 1), ('documentation', 1), ('communication', 1), ('author', 1), ('eben', 1), ('hewitt', 1), ('show', 1), ('create', 1), ('holistic', 1), ('thoughtful', 1), ('technology', 1), ('plan', 1), ('communicate', 1), ('clearly', 1), ('lead', 1), ('toward', 1), ('vision', 1), ('become', 1)]
[('today', 2), ('poorly', 2), ('code', 2), ('password', 1), ('sniffing', 1), ('spoofing', 1), ('buffer', 1), ('overflow', 1), ('denial', 1), ('service', 1), ('attack', 1), ('computer', 1), ('system', 1), ('network', 1), ('root', 1), ('epidemic', 1), ('written', 1), ('tested', 1), ('insecure', 1), ('put', 1), ('everyone', 1), ('risk', 1), ('clearly', 1), ('developer', 1), ('need', 1), ('help', 1), ('figuring', 1), ('write', 1), ('attacker', 1)]
[('haskell', 3), ('use', 2), ('functional', 2), ('programming', 2), ('easy', 1), ('fast', 1), ('moving', 1), ('tutorial', 1), ('introduces', 1), ('learn', 1), ('variety', 1), ('practical', 1), ('way', 1), ('short', 1), ('script', 1), ('large', 1), ('demanding', 1), ('application', 1), ('real', 1), ('world', 1), ('take', 1), ('basic', 1), ('brisk', 1), ('pace', 1), ('help', 1), ('increase', 1)]
[('database', 3), ('sql', 3), ('application', 2), ('tuning', 2), ('poorly', 1), ('performing', 1), ('cost', 1), ('user', 1), ('time', 1), ('impact', 1), ('running', 1), ('computer', 1), ('network', 1), ('provides', 1), ('essential', 1), ('next', 1), ('step', 1), ('developer', 1), ('administrator', 1), ('want', 1), ('extend', 1), ('expertise', 1)]
[('right', 3), ('device', 2), ('wide', 1), ('variety', 1), ('touch', 1), ('point', 1), ('channel', 1), ('use', 1), ('ability', 1), ('control', 1), ('navigate', 1), ('crafted', 1), ('experience', 1), ('fading', 1), ('yet', 1), ('still', 1), ('important', 1), ('understand', 1), ('journey', 1), ('deliver', 1), ('content', 1), ('interaction', 1), ('atthe', 1), ('time', 1), ('practical', 1), ('guide', 1)]
[('programming', 2), ('xp', 2), ('developer', 2), ('extreme', 1), ('radical', 1), ('new', 1), ('approach', 1), ('software', 1), ('development', 1), ('accepted', 1), ('quickly', 1), ('core', 1), ('practice', 1), ('need', 1), ('constant', 1), ('testing', 1), ('pair', 1), ('inviting', 1), ('customer', 1), ('input', 1), ('communal', 1), ('ownership', 1), ('code', 1), ('resonate', 1), ('everywhere', 1), ('although', 1), ('many', 1), ('feel', 1), ('rooted', 1)]
[('xml', 5), ('know', 3), ('moment', 2), ('need', 2), ('developer', 1), ('working', 1), ('lot', 1), ('space', 1), ('evolving', 1), ('almost', 1), ('commit', 1), ('every', 1), ('syntax', 1), ('api', 1), ('xslt', 1), ('transformation', 1), ('memory', 1), ('find', 1), ('detail', 1), ('companion', 1), ('standard', 1)]
[('web', 2), ('type', 2), ('language', 2), ('webassembly', 1), ('fulfills', 1), ('long', 1), ('awaited', 1), ('promise', 1), ('technology', 1), ('fast', 1), ('code', 1), ('safe', 1), ('compile', 1), ('time', 1), ('execution', 1), ('browser', 1), ('embedded', 1), ('device', 1), ('anywhere', 1), ('rust', 1), ('delivers', 1), ('power', 1), ('strictly', 1), ('enforces', 1), ('safety', 1), ('combine', 1), ('write', 1), ('never', 1), ('learn', 1), ('integrate', 1)]
[('ebay', 2), ('imagine', 1), ('world', 1), ('without', 1), ('unthinkable', 1), ('farrah', 1), ('fawcett', 1), ('poster', 1), ('retired', 1), ('beanie', 1), ('baby', 1), ('first', 1), ('edition', 1), ('pet', 1), ('rock', 1), ('handling', 1), ('gazillion', 1), ('ok', 1), ('exaggerate', 1), ('actually', 1), ('billion', 1), ('page', 1), ('view', 1), ('day', 1), ('server', 1), ('side', 1), ('java', 1), ('make', 1), ('work', 1), ('time', 1), ('learned', 1), ('latest', 1), ('ee', 1), ('version', 1), ('servlets', 1), ('jsps', 1)]
[('stored', 2), ('procedure', 2), ('mysql', 2), ('database', 2), ('implementation', 1), ('hugemilestone', 1), ('expected', 1), ('lead', 1), ('widespread', 1), ('enterprise', 1), ('adoption', 1), ('ofthe', 1), ('already', 1), ('extremely', 1), ('popular', 1), ('serious', 1), ('aboutbuilding', 1), ('web', 1), ('based', 1), ('application', 1), ('future', 1), ('need', 1), ('toget', 1), ('speed', 1), ('quickly', 1), ('work', 1)]
[('network', 3), ('java', 2), ('server', 2), ('practical', 1), ('guide', 1), ('provides', 1), ('complete', 1), ('introduction', 1), ('developing', 1), ('program', 1), ('learn', 1), ('use', 1), ('class', 1), ('library', 1), ('quickly', 1), ('easily', 1), ('accomplish', 1), ('common', 1), ('networking', 1), ('task', 1), ('writing', 1), ('multithreaded', 1), ('encrypting', 1), ('communication', 1), ('broadcasting', 1), ('local', 1), ('posting', 1), ('data', 1), ('side', 1)]
[('software', 2), ('concurrency', 2), ('seven', 2), ('need', 1), ('leverage', 1), ('multiple', 1), ('core', 1), ('handle', 1), ('thousand', 1), ('user', 1), ('terabyte', 1), ('data', 1), ('continue', 1), ('working', 1), ('face', 1), ('hardware', 1), ('failure', 1), ('parallelism', 1), ('key', 1), ('model', 1), ('week', 1), ('equips', 1), ('new', 1), ('world', 1), ('see', 1), ('emerging', 1), ('technology', 1), ('actor', 1), ('functional', 1)]
[('intuitive', 1), ('accessible', 1), ('textbook', 1), ('covering', 1), ('fundamental', 1), ('application', 1)]
[('exam', 3), ('core', 2), ('comprehensive', 1), ('efficient', 1), ('way', 1), ('prepare', 1), ('succeed', 1), ('computer', 1), ('technician', 1), ('newly', 1), ('revised', 1), ('fifth', 1), ('edition', 1), ('comptia', 1), ('complete', 1), ('review', 1), ('guide', 1)]
[('privacy', 4), ('certified', 3), ('information', 3), ('manager', 3), ('exam', 2), ('self', 1), ('study', 1), ('guide', 1), ('cover', 1), ('every', 1), ('topic', 1), ('resource', 1), ('offer', 1), ('complete', 1), ('date', 1), ('coverage', 1), ('material', 1), ('included', 1), ('current', 1), ('release', 1), ('written', 1), ('security', 1), ('expert', 1), ('cipm', 1)]
[('exam', 3), ('server', 3), ('study', 2), ('comptia', 2), ('certification', 2), ('focused', 1), ('guide', 1), ('contains', 1), ('complete', 1), ('coverage', 1), ('every', 1), ('topic', 1), ('current', 1), ('edition', 1), ('highly', 1), ('effective', 1), ('self', 1), ('resource', 1), ('fully', 1), ('prepares', 1), ('latest', 1), ('version', 1), ('book', 1), ('show', 1), ('implement', 1), ('based', 1), ('hardware', 1), ('software', 1), ('keeping', 1)]
[('information', 3), ('risk', 3), ('crisc', 3), ('self', 2), ('study', 2), ('guide', 2), ('certification', 2), ('system', 2), ('exam', 2), ('fully', 1), ('updated', 1), ('industry', 1), ('standard', 1), ('technology', 1), ('written', 1), ('security', 1), ('expert', 1), ('complete', 1), ('designed', 1), ('help', 1), ('prepare', 1), ('pas', 1), ('isaca', 1), ('certified', 1), ('control', 1)]
[('web', 4), ('erlang', 3), ('hand', 2), ('choose', 1), ('application', 1), ('discover', 1), ('answer', 1), ('building', 1), ('simple', 1), ('service', 1), ('book', 1), ('experienced', 1), ('developer', 1), ('know', 1), ('basic', 1), ('learn', 1), ('work', 1), ('rest', 1), ('dynamic', 1), ('content', 1), ('socket', 1), ('concurrency', 1), ('several', 1), ('example', 1), ('process', 1), ('see', 1), ('first', 1), ('ideal', 1)]
[('scrum', 2), ('improve', 1), ('accelerate', 1), ('software', 1), ('delivery', 1), ('large', 1), ('distributed', 1), ('complex', 1), ('project', 1), ('nbsp', 1), ('nexus', 1), ('framework', 1), ('simplest', 1), ('effective', 1), ('approach', 1), ('applying', 1), ('scale', 1), ('across', 1), ('multiple', 1), ('team', 1), ('site', 1), ('time', 1), ('zone', 1), ('created', 1), ('org', 1)]
[('adobe', 2), ('photoshop', 2), ('learn', 1), ('create', 1), ('edit', 1), ('image', 1), ('using', 1), ('classroom', 1), ('book', 1), ('release', 1), ('nbsp', 1), ('us', 1), ('real', 1), ('world', 1), ('project', 1), ('based', 1), ('learning', 1), ('cover', 1), ('basic', 1), ('beyond', 1), ('providing', 1), ('countless', 1), ('tip', 1), ('technique', 1), ('help', 1), ('become', 1)]
[('code', 2), ('user', 2), ('processing', 1), ('information', 1), ('efficiently', 1), ('critical', 1), ('successful', 1), ('operation', 1), ('modern', 1), ('organization', 1), ('particularly', 1), ('helpful', 1), ('tool', 1), ('microsoft', 1), ('power', 1), ('automate', 1), ('low', 1), ('development', 1), ('platform', 1), ('designed', 1), ('help', 1), ('tech', 1), ('savvy', 1), ('create', 1), ('implement', 1), ('workflow', 1), ('practical', 1), ('book', 1), ('explains', 1), ('small', 1), ('business', 1), ('enterprise', 1), ('replace', 1)]
[('data', 4), ('financial', 2), ('client', 2), ('quality', 1), ('either', 1), ('make', 1), ('break', 1), ('service', 1), ('industry', 1), ('missing', 1), ('price', 1), ('wrong', 1), ('market', 1), ('value', 1), ('trading', 1), ('violation', 1), ('performance', 1), ('restatement', 1), ('incorrect', 1), ('regulatory', 1), ('filing', 1), ('lead', 1), ('harsh', 1), ('penalty', 1), ('lost', 1), ('disaster', 1), ('practical', 1), ('guide', 1), ('provides', 1), ('analyst', 1), ('scientist', 1)]
[('search', 3), ('data', 3), ('elasticsearch', 2), ('whether', 1), ('need', 1), ('full', 1), ('text', 1), ('real', 1), ('time', 1), ('analytics', 1), ('structured', 1), ('distributed', 1), ('engine', 1), ('ideal', 1), ('way', 1), ('put', 1), ('work', 1), ('practical', 1), ('guide', 1), ('show', 1), ('analyze', 1), ('explore', 1), ('help', 1), ('deal', 1), ('complexity', 1), ('human', 1), ('language', 1)]
[('perl', 3), ('book', 1), ('pick', 1), ('right', 1), ('learning', 1), ('leaf', 1), ('intermediate', 1), ('graduate', 1), ('short', 1), ('script', 1), ('larger', 1), ('program', 1), ('using', 1), ('feature', 1), ('make', 1), ('general', 1), ('purpose', 1), ('language', 1), ('gentle', 1), ('thorough', 1), ('guide', 1), ('introduces', 1), ('module', 1), ('complex', 1), ('data', 1), ('structure', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('chapter', 1), ('small', 1)]
[('code', 3), ('often', 1), ('software', 1), ('engineer', 1), ('architect', 1), ('work', 1), ('large', 1), ('complex', 1), ('base', 1), ('need', 1), ('scale', 1), ('maintain', 1), ('cookbook', 1), ('author', 1), ('maximiliano', 1), ('contieri', 1), ('take', 1), ('beyond', 1), ('concept', 1), ('clean', 1), ('showing', 1), ('identify', 1), ('improvement', 1), ('opportunity', 1), ('impact', 1), ('production', 1), ('come', 1), ('reliability', 1), ('system', 1)]
[('api', 3), ('lot', 1), ('work', 1), ('required', 1), ('release', 1), ('effort', 1), ('always', 1), ('pay', 1), ('overplanning', 1), ('matures', 1), ('wasted', 1), ('investment', 1), ('underplanning', 1), ('lead', 1), ('disaster', 1), ('second', 1), ('edition', 1), ('book', 1), ('provides', 1), ('maturity', 1), ('model', 1), ('individual', 1), ('apis', 1), ('multi', 1), ('landscape', 1), ('help', 1), ('invest', 1), ('right', 1), ('human', 1), ('company', 1), ('resource', 1)]
[('whether', 1), ('searching', 1), ('new', 1), ('additional', 1), ('opportunity', 1), ('information', 1), ('security', 1), ('vast', 1), ('overwhelming', 1), ('practical', 1), ('guide', 1), ('author', 1), ('christina', 1), ('morillo', 1), ('introduces', 1), ('technical', 1), ('knowledge', 1), ('diverse', 1), ('range', 1), ('expert', 1), ('infosec', 1), ('field', 1), ('concise', 1), ('useful', 1), ('tip', 1), ('learn', 1), ('expand', 1), ('skill', 1), ('solve', 1), ('common', 1), ('issue', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('business', 3), ('enterprise', 2), ('architecture', 2), ('ea', 1), ('set', 1), ('description', 1), ('relevant', 1), ('intended', 1), ('bridge', 1), ('communication', 1), ('gap', 1), ('stakeholder', 1), ('organization', 1), ('facilitate', 1), ('information', 1), ('system', 1), ('planning', 1), ('improve', 1), ('alignment', 1), ('due', 1), ('complex', 1), ('historical', 1), ('reason', 1), ('notion', 1), ('always', 1)]
[('new', 1), ('classical', 1), ('result', 1), ('computational', 1), ('complexity', 1), ('including', 1), ('interactive', 1), ('proof', 1), ('pcp', 1), ('derandomization', 1), ('quantum', 1), ('computation', 1), ('ideal', 1), ('graduate', 1), ('student', 1)]
[('basic', 1), ('concept', 1), ('digital', 1), ('signal', 1), ('processing', 1), ('introduced', 1), ('building', 1), ('fundamental', 1), ('principle', 1), ('connecting', 1), ('theory', 1), ('practice', 1)]
[('unlock', 1), ('secret', 1), ('terminal', 1), ('discover', 1), ('powerful', 1), ('tool', 1), ('solves', 1), ('problem', 1), ('finder', 1), ('handle', 1), ('handy', 1), ('guide', 1), ('learn', 1), ('command', 1), ('variety', 1), ('task', 1), ('killing', 1), ('program', 1), ('refuse', 1), ('quit', 1), ('renaming', 1), ('large', 1), ('batch', 1), ('file', 1), ('second', 1), ('running', 1), ('job', 1), ('background', 1), ('work', 1), ('started', 1)]
[('exam', 3), ('comprehensive', 2), ('coverage', 2), ('comptia', 2), ('pentest', 2), ('objective', 2), ('guide', 1), ('offer', 1), ('every', 1), ('topic', 1), ('complete', 1), ('included', 1), ('certification', 1), ('pt', 1), ('resource', 1), ('written', 1), ('expert', 1), ('penetration', 1), ('tester', 1), ('book', 1), ('provides', 1), ('learning', 1), ('beginning', 1), ('chapter', 1)]
[('project', 2), ('new', 1), ('github', 1), ('concise', 1), ('book', 1), ('show', 1), ('need', 1), ('started', 1), ('perfect', 1), ('product', 1), ('manager', 1), ('stakeholder', 1), ('team', 1), ('member', 1), ('want', 1), ('collaborate', 1), ('development', 1), ('whether', 1), ('review', 1), ('comment', 1), ('work', 1), ('progress', 1), ('contribute', 1), ('specific', 1), ('change', 1)]
[('scrum', 2), ('master', 2), ('done', 2), ('need', 2), ('product', 2), ('work', 1), ('never', 1), ('development', 1), ('team', 1), ('support', 1), ('owner', 1), ('often', 1), ('lost', 1), ('complexity', 1), ('agile', 1), ('management', 1), ('manager', 1), ('stakeholder', 1), ('know', 1), ('learn', 1), ('experienced', 1), ('balance', 1), ('demand', 1), ('three', 1), ('level', 1), ('servant', 1)]
[('quick', 1), ('reliable', 1), ('way', 1), ('build', 1), ('proven', 1), ('database', 1), ('core', 1), ('business', 1), ('function', 1), ('industry', 1), ('expert', 1), ('raved', 1), ('data', 1), ('model', 1), ('resource', 1), ('book', 1), ('first', 1), ('published', 1), ('march', 1)]
[('startup', 3), ('engineer', 3), ('scalability', 3), ('web', 2), ('invaluable', 1), ('roadmap', 1), ('reveals', 1), ('successfully', 1), ('handle', 1), ('application', 1), ('challenge', 1), ('meet', 1), ('increasing', 1), ('product', 1), ('traffic', 1), ('demand', 1), ('show', 1), ('working', 1), ('small', 1), ('company', 1), ('plan', 1), ('implement', 1), ('comprehensive', 1), ('strategy', 1), ('present', 1), ('broad', 1)]
[('step', 2), ('word', 2), ('excel', 2), ('learning', 1), ('made', 1), ('easy', 1), ('done', 1), ('quickly', 1), ('office', 1), ('jump', 1), ('wherever', 1), ('need', 1), ('answer', 1), ('brisk', 1), ('lesson', 1), ('colourful', 1), ('screenshots', 1), ('show', 1), ('exactly', 1), ('cover', 1), ('powerpoint', 1), ('outlook', 1), ('format', 1), ('document', 1), ('maximum', 1), ('visual', 1), ('impact', 1), ('build', 1), ('powerful', 1), ('reliable', 1), ('workbook', 1), ('analysis', 1)]
[('music', 3), ('berklee', 2), ('game', 2), ('scoring', 2), ('interactive', 2), ('tool', 2), ('written', 1), ('developer', 1), ('school', 1), ('pioneering', 1), ('program', 1), ('guide', 1), ('cover', 1), ('everything', 1), ('professional', 1), ('composer', 1), ('student', 1), ('need', 1), ('know', 1), ('composing', 1), ('video', 1), ('contains', 1), ('exclusive', 1), ('previously', 1), ('available', 1), ('drawing', 1), ('twenty', 1)]
[('program', 2), ('know', 1), ('skill', 1), ('turn', 1), ('data', 1), ('knowledge', 1), ('using', 1), ('tool', 1), ('probability', 1), ('statistic', 1), ('concise', 1), ('introduction', 1), ('show', 1), ('perform', 1), ('statistical', 1), ('analysis', 1), ('computationally', 1), ('rather', 1), ('mathematically', 1), ('written', 1), ('python', 1), ('working', 1), ('single', 1), ('case', 1), ('study', 1), ('throughout', 1), ('thoroughly', 1), ('revised', 1), ('book', 1)]
[('create', 2), ('build', 2), ('easily', 1), ('professional', 1), ('looking', 1), ('website', 1), ('nothing', 1), ('ordinary', 1), ('computer', 1), ('raw', 1), ('ambition', 1), ('want', 1), ('blog', 1), ('sell', 1), ('product', 1), ('forum', 1), ('promote', 1), ('event', 1), ('problem', 1), ('friendly', 1), ('jargon', 1), ('free', 1), ('book', 1), ('give', 1), ('technique', 1), ('tool', 1), ('advice', 1), ('need', 1), ('site', 1), ('web', 1), ('important', 1)]
[('data', 3), ('science', 2), ('aware', 1), ('make', 1), ('difference', 1), ('election', 1), ('business', 1), ('model', 1), ('occupation', 1), ('gaining', 1), ('ground', 1), ('started', 1), ('working', 1), ('wide', 1), ('ranging', 1), ('interdisciplinary', 1), ('field', 1), ('clouded', 1), ('hype', 1), ('insightful', 1), ('book', 1), ('based', 1), ('columbia', 1), ('university', 1), ('introduction', 1), ('class', 1), ('tell', 1)]
[('game', 2), ('anyone', 1), ('familiar', 1), ('zynga', 1), ('farmville', 1), ('understands', 1), ('fun', 1), ('addictive', 1), ('real', 1), ('time', 1), ('social', 1), ('hand', 1), ('guide', 1), ('show', 1), ('design', 1), ('build', 1), ('start', 1), ('finish', 1), ('nothing', 1), ('open', 1), ('source', 1), ('tool', 1), ('learn', 1), ('render', 1), ('graphic', 1), ('animate', 1), ('sprite', 1), ('add', 1), ('sound', 1), ('validate', 1), ('score', 1), ('prevent', 1), ('cheating', 1)]
[('data', 2), ('scale', 2), ('growing', 1), ('interest', 1), ('learning', 1), ('analyze', 1), ('streaming', 1), ('large', 1), ('system', 1), ('web', 1), ('traffic', 1), ('financial', 1), ('transaction', 1), ('machine', 1), ('log', 1), ('industrial', 1), ('sensor', 1), ('many', 1), ('others', 1), ('analyzing', 1), ('stream', 1), ('difficult', 1), ('practical', 1), ('book', 1), ('delivers', 1), ('deep', 1), ('introduction', 1), ('apache', 1), ('flink', 1), ('highly', 1)]
[('side', 2), ('technology', 2), ('used', 1), ('laptop', 1), ('sitting', 1), ('communicate', 1), ('thousand', 1), ('mile', 1), ('apart', 1), ('advent', 1), ('zero', 1), ('configuration', 1), ('networking', 1), ('amazing', 1), ('cross', 1), ('platform', 1), ('open', 1), ('source', 1), ('automatically', 1), ('connects', 1), ('electronic', 1), ('device', 1), ('network', 1), ('allowing', 1)]
[('computer', 1), ('society', 1), ('explores', 1), ('history', 1), ('impact', 1), ('modern', 1), ('technology', 1), ('everyday', 1), ('human', 1), ('life', 1), ('considering', 1), ('benefit', 1), ('drawback', 1), ('repercussion', 1), ('particular', 1), ('attention', 1), ('paid', 1), ('new', 1), ('development', 1), ('artificial', 1), ('intelligence', 1), ('machine', 1), ('learning', 1), ('issue', 1), ('arisen', 1), ('complex', 1), ('relationship', 1), ('ai', 1)]
[('dark', 2), ('web', 2), ('digital', 2), ('book', 2), ('inside', 1), ('provides', 1), ('broad', 1), ('overview', 1), ('emerging', 1), ('threat', 1), ('computer', 1), ('crime', 1), ('emphasis', 1), ('cyberstalking', 1), ('hacktivism', 1), ('fraud', 1), ('identity', 1), ('theft', 1), ('attack', 1), ('critical', 1), ('infrastructure', 1), ('analyzes', 1), ('online', 1), ('underground', 1), ('economy', 1), ('currency', 1), ('cybercrime', 1), ('explores', 1)]
[('enterprise', 2), ('apis', 2), ('exposing', 2), ('prepare', 1), ('next', 1), ('wave', 1), ('challenge', 1), ('security', 1), ('learn', 1), ('better', 1), ('protect', 1), ('monitor', 1), ('manage', 1), ('public', 1), ('private', 1), ('nbsp', 1), ('become', 1), ('common', 1), ('way', 1), ('business', 1), ('function', 1), ('outside', 1), ('world', 1)]
[('human', 2), ('value', 2), ('game', 2), ('theoretical', 1), ('practical', 1), ('guide', 1), ('integrating', 1), ('conception', 1), ('design', 1), ('digital', 1), ('example', 1), ('call', 1), ('duty', 1), ('journey', 1), ('world', 1), ('warcraft', 1), ('express', 1), ('embody', 1), ('providing', 1), ('compelling', 1)]
[('feedback', 3), ('work', 2), ('write', 2), ('code', 2), ('faster', 2), ('test', 2), ('react', 2), ('loop', 1), ('iterate', 1), ('learn', 1), ('become', 1), ('effective', 1), ('developer', 1), ('driven', 1), ('help', 1), ('refine', 1), ('workflow', 1), ('give', 1), ('need', 1), ('quickly', 1), ('possible', 1), ('strong', 1), ('run', 1), ('continuously', 1), ('split', 1), ('complex', 1)]
[('introduction', 1), ('mathematical', 1), ('foundation', 1), ('understanding', 1), ('analyzing', 1), ('machine', 1), ('learning', 1), ('algorithm', 1), ('ai', 1), ('student', 1), ('researcher', 1)]
[('model', 2), ('accurate', 1), ('climate', 1), ('existed', 1), ('learn', 1), ('developed', 1), ('believe', 1)]
[('data', 3), ('machine', 2), ('learning', 2), ('analytics', 2), ('business', 1), ('known', 1), ('mining', 1), ('fundamental', 1), ('part', 1), ('science', 1), ('used', 1), ('organization', 1), ('wide', 1), ('variety', 1)]
[('javascript', 3), ('update', 1), ('upgrade', 1), ('skillset', 1), ('e', 1), ('ultimate', 1), ('guide', 1), ('pro', 1), ('professional', 1), ('web', 1), ('developer', 1), ('th', 1), ('edition', 1), ('gold', 1), ('standard', 1)]
[('azure', 3), ('microsoft', 2), ('platform', 2), ('reference', 1), ('newcomer', 1), ('take', 1), ('larger', 1), ('stake', 1), ('cloud', 1), ('computing', 1), ('world', 1), ('tech', 1), ('pro', 1), ('need', 1), ('know', 1), ('in', 1), ('out', 1), ('fast', 1), ('growing', 1), ('dummy', 1), ('essential', 1)]
[('enterprise', 2), ('integration', 2), ('pattern', 2), ('solution', 2), ('messaging', 2), ('provides', 1), ('invaluable', 1), ('catalog', 1), ('sixty', 1), ('five', 1), ('real', 1), ('world', 1), ('demonstrate', 1), ('formidable', 1), ('help', 1), ('design', 1), ('effective', 1), ('author', 1), ('include', 1), ('example', 1), ('covering', 1), ('variety', 1), ('different', 1), ('technology', 1), ('jms', 1), ('msmq', 1)]
[('dapr', 2), ('programming', 2), ('model', 2), ('authoritative', 1), ('guide', 1), ('distributed', 1), ('application', 1), ('runtime', 1), ('work', 1), ('new', 1), ('existing', 1), ('language', 1), ('alike', 1), ('written', 1), ('creator', 1), ('introduction', 1), ('show', 1), ('unifies', 1), ('stateless', 1), ('stateful', 1), ('actor', 1), ('run', 1), ('everywhere', 1), ('cloud', 1), ('edge', 1), ('author', 1), ('haishi', 1), ('bai', 1)]
[('many', 1), ('organization', 1), ('today', 1), ('begun', 1), ('modernize', 1), ('window', 1), ('workload', 1), ('take', 1), ('full', 1), ('advantage', 1), ('cloud', 1), ('economics', 1), ('developer', 1), ('company', 1), ('need', 1), ('option', 1), ('rehosting', 1), ('replatforming', 1), ('refactoring', 1), ('existing', 1), ('net', 1), ('framework', 1), ('application', 1), ('practical', 1), ('book', 1), ('guide', 1), ('process', 1), ('converting', 1)]
[('snowflake', 3), ('data', 2), ('help', 1), ('path', 1), ('becoming', 1), ('pro', 1), ('concise', 1), ('yet', 1), ('comprehensive', 1), ('guide', 1), ('review', 1), ('fundamental', 1), ('best', 1), ('practice', 1), ('sql', 1), ('scripting', 1), ('language', 1), ('developer', 1), ('professional', 1), ('learn', 1), ('generate', 1), ('modify', 1), ('query', 1), ('relational', 1), ('database', 1), ('management', 1), ('system', 1), ('apply', 1), ('analytic', 1)]
[('security', 2), ('despite', 1), ('increase', 1), ('high', 1), ('profile', 1), ('hack', 1), ('record', 1), ('breaking', 1), ('data', 1), ('leak', 1), ('ransomware', 1), ('attack', 1), ('many', 1), ('organization', 1), ('budget', 1), ('establish', 1), ('outsource', 1), ('information', 1), ('infosec', 1), ('program', 1), ('forcing', 1), ('learn', 1), ('job', 1), ('company', 1), ('obliged', 1), ('improvise', 1), ('pragmatic', 1), ('guide', 1), ('provides', 1), ('handbook', 1), ('step', 1)]
[('software', 4), ('testing', 3), ('sexier', 1), ('topic', 1), ('development', 1), ('besides', 1), ('game', 1), ('programming', 1), ('graphic', 1), ('audio', 1), ('high', 1), ('performance', 1), ('clustering', 1), ('cool', 1), ('website', 1), ('et', 1), ('cetera', 1), ('okay', 1), ('low', 1), ('list', 1), ('unfortunate', 1), ('good', 1), ('increase', 1), ('productivity', 1), ('improve', 1), ('design', 1), ('raise', 1)]
[('cloud', 3), ('application', 2), ('native', 2), ('organization', 1), ('migrate', 1), ('computing', 1), ('become', 1), ('dominant', 1), ('way', 1), ('approach', 1), ('software', 1), ('development', 1), ('execution', 1), ('protecting', 1), ('modern', 1), ('threat', 1), ('requires', 1), ('ability', 1), ('defend', 1), ('runtime', 1), ('vulnerable', 1), ('attack', 1), ('practical', 1), ('guide', 1)]
[('design', 2), ('technology', 2), ('user', 2), ('becomes', 1), ('part', 1), ('life', 1), ('distraction', 1), ('practical', 1), ('book', 1), ('explores', 1), ('concept', 1), ('calm', 1), ('method', 1), ('smoothly', 1), ('capturing', 1), ('attention', 1), ('necessary', 1), ('calmly', 1), ('remaining', 1), ('background', 1), ('time', 1), ('learn', 1), ('product', 1), ('work', 1)]
[('live', 2), ('unsettling', 1), ('absolutely', 1), ('riveting', 1), ('better', 1), ('worse', 1), ('necessary', 1), ('reading', 1), ('brian', 1), ('christian', 1), ('author', 1), ('algorithm', 1), ('alignment', 1), ('problem', 1), ('entertaining', 1), ('account', 1), ('philosophy', 1), ('technology', 1), ('hacking', 1), ('need', 1), ('understand', 1), ('signal', 1), ('paradox', 1), ('time', 1), ('information', 1), ('society', 1)]
[('entertaining', 1), ('romp', 1), ('tell', 1), ('tech', 1), ('industry', 1), ('america', 1), ('darling', 1), ('went', 1), ('wrong', 1), ('might', 1), ('recover', 1), ('good', 1), ('grace', 1), ('tim', 1), ('wu', 1), ('author', 1), ('master', 1), ('switch', 1), ('buying', 1), ('grocery', 1), ('tracking', 1), ('health', 1), ('finding', 1), ('date', 1), ('whatever', 1), ('want', 1), ('odds', 1), ('online', 1), ('realize', 1)]
[('learning', 2), ('race', 2), ('recommended', 1), ('bill', 1), ('gate', 1), ('thought', 1), ('provoking', 1), ('wide', 1), ('ranging', 1), ('exploration', 1), ('machine', 1), ('build', 1), ('computer', 1), ('intelligence', 1), ('flexible', 1), ('world', 1), ('top', 1), ('research', 1), ('lab', 1), ('university', 1), ('invent', 1), ('ultimate', 1), ('algorithm', 1), ('capable', 1), ('discovering', 1), ('knowledge', 1), ('data', 1)]
[('nan', 1)]
[('nan', 1)]
[('cybersecurity', 2), ('beginner', 1), ('engaging', 1), ('introduction', 1), ('field', 1), ('learn', 1), ('attacker', 1), ('operate', 1), ('defend', 1), ('organization', 1), ('online', 1), ('attack', 1), ('rsquo', 1), ('need', 1), ('technical', 1), ('background', 1)]
[('ml', 2), ('amp', 2), ('nbsp', 2), ('lt', 1), ('div', 1), ('gt', 1), ('machine', 1), ('learning', 1), ('become', 1), ('commonplace', 1), ('element', 1), ('everyday', 1), ('life', 1), ('standard', 1), ('tool', 1), ('many', 1), ('field', 1), ('science', 1), ('engineering', 1), ('make', 1), ('optimal', 1), ('use', 1), ('essential', 1), ('understand', 1), ('underlying', 1)]
[('computer', 2), ('book', 1), ('teach', 1), ('ethic', 1), ('science', 1), ('philosophy', 1), ('undergraduate', 1), ('includes', 1), ('worksheet', 1), ('key', 1), ('question', 1), ('used', 1), ('solving', 1), ('computing', 1), ('dilemma', 1)]
[('big', 2), ('computer', 2), ('intriguing', 1), ('insightful', 1), ('extremely', 1), ('educational', 1), ('novel', 1), ('world', 1), ('famous', 1), ('hacker', 1), ('teach', 1), ('easy', 1), ('cloaking', 1), ('counter', 1), ('measure', 1), ('citizen', 1), ('consumer', 1), ('age', 1), ('brother', 1), ('data', 1), ('frank', 1), ('abagnale', 1), ('kevin', 1), ('mitnick', 1), ('elusive', 1), ('break', 1), ('artist', 1), ('history', 1), ('accessed', 1), ('network', 1)]
[('revised', 1), ('cover', 1), ('new', 1), ('advance', 1), ('business', 1), ('intelligence', 1), ('big', 1), ('data', 1), ('cloud', 1), ('mobile', 1), ('fully', 1), ('updated', 1), ('bestseller', 1), ('reveals', 1), ('latest', 1), ('technique', 1), ('exploit', 1), ('bi', 1), ('highest', 1), ('roi', 1), ('cindi', 1), ('created', 1), ('typical', 1), ('attention', 1), ('detail', 1), ('matter', 1), ('contemporary', 1), ('forward', 1), ('looking', 1), ('guide', 1), ('organization', 1), ('use', 1), ('evaluate', 1), ('existing', 1)]
[('cryptography', 3), ('ultimate', 1), ('guide', 1), ('updated', 1), ('author', 1), ('team', 1), ('world', 1), ('top', 1), ('expert', 1), ('vital', 1), ('keeping', 1), ('information', 1), ('safe', 1), ('era', 1), ('formula', 1), ('becomes', 1)]
[('comptia', 3), ('self', 2), ('study', 2), ('guide', 2), ('complete', 2), ('coverage', 2), ('cybersecurity', 2), ('analyst', 2), ('exam', 2), ('comprehensive', 1), ('offer', 1), ('new', 1), ('certification', 1), ('note', 1), ('updated', 1), ('reflect', 1), ('acronym', 1), ('ysa', 1), ('highly', 1), ('effective', 1), ('system', 1), ('provides', 1), ('every', 1), ('objective', 1), ('challenging', 1), ('cysa', 1)]
[('recipe', 2), ('data', 2), ('mathematica', 1), ('cookbook', 1), ('help', 1), ('master', 1), ('application', 1), ('core', 1), ('principle', 1), ('walking', 1), ('real', 1), ('world', 1), ('problem', 1), ('ideal', 1), ('browsing', 1), ('book', 1), ('includes', 1), ('working', 1), ('numerics', 1), ('structure', 1), ('algebraic', 1), ('equation', 1), ('calculus', 1), ('statistic', 1), ('venture', 1), ('exotic', 1), ('territory', 1), ('visualization', 1), ('using', 1)]
[('publisher', 2), ('product', 2), ('included', 2), ('coverage', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('self', 1), ('study', 1), ('guide', 1), ('delivers', 1), ('domainsin', 1), ('csslp', 1), ('exam', 1), ('complete', 1), ('material', 1), ('certified', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('sedgewick', 2), ('robert', 1), ('thoroughly', 1), ('rewritten', 1), ('substantially', 1), ('expanded', 1), ('updated', 1), ('popular', 1), ('work', 1), ('provide', 1), ('current', 1), ('comprehensive', 1), ('coverage', 1), ('important', 1), ('algorithm', 1), ('data', 1), ('structure', 1), ('christopher', 1), ('van', 1), ('wyk', 1), ('developed', 1), ('new', 1)]
[('security', 2), ('monitoring', 2), ('threat', 2), ('good', 1), ('attacker', 1), ('tell', 1), ('expensive', 1), ('prevention', 1), ('tool', 1), ('enough', 1), ('keep', 1), ('secure', 1), ('practical', 1), ('book', 1), ('demonstrates', 1), ('data', 1), ('centric', 1), ('approach', 1), ('distilling', 1), ('complex', 1), ('incident', 1), ('response', 1), ('analysis', 1), ('idea', 1), ('basic', 1), ('element', 1), ('learn', 1), ('develop', 1)]
[('programming', 2), ('mastermind', 1), ('feature', 1), ('exclusive', 1), ('interview', 1), ('creator', 1), ('several', 1), ('historic', 1), ('highly', 1), ('influential', 1), ('language', 1), ('unique', 1), ('collection', 1), ('learn', 1), ('process', 1), ('led', 1), ('specific', 1), ('design', 1), ('decision', 1), ('including', 1), ('goal', 1), ('mind', 1), ('trade', 1), ('offs', 1), ('make', 1), ('experience', 1), ('left', 1)]
[('apis', 2), ('programmer', 1), ('used', 1), ('excited', 1), ('growing', 1), ('number', 1), ('company', 1), ('see', 1), ('hot', 1), ('new', 1), ('product', 1), ('channel', 1), ('concise', 1), ('guide', 1), ('describes', 1), ('tremendous', 1), ('business', 1), ('potential', 1), ('demonstrates', 1), ('use', 1), ('provide', 1), ('valuable', 1), ('service', 1), ('client', 1), ('partner', 1), ('public', 1), ('via', 1), ('internet', 1), ('learn', 1)]
[('offer', 2), ('productivity', 2), ('anyone', 1), ('develops', 1), ('software', 1), ('living', 1), ('need', 1), ('proven', 1), ('way', 1), ('produce', 1), ('better', 1), ('faster', 1), ('cheaper', 1), ('productive', 1), ('programmer', 1), ('critical', 1), ('timesaving', 1), ('tool', 1), ('adopt', 1), ('right', 1), ('away', 1), ('matter', 1), ('platform', 1), ('use', 1), ('master', 1), ('developer', 1), ('neal', 1), ('ford', 1), ('advice', 1), ('mechanic', 1), ('work', 1)]
[('cnc', 2), ('fabrication', 2), ('getting', 1), ('started', 1), ('definitive', 1), ('introduction', 1), ('working', 1), ('affordable', 1), ('desktop', 1), ('benchtop', 1), ('cncs', 1), ('written', 1), ('creator', 1), ('popular', 1), ('open', 1), ('hardware', 1), ('shapeoko', 1), ('accessible', 1), ('printing', 1), ('introduced', 1), ('mass', 1), ('computer', 1), ('controlled', 1), ('additive', 1), ('flip', 1), ('side', 1), ('subtractive', 1), ('instead', 1), ('adding', 1)]
[('kernel', 4), ('linux', 3), ('user', 2), ('written', 1), ('leading', 1), ('developer', 1), ('maintainer', 1), ('nutshell', 1), ('comprehensiveoverview', 1), ('configuration', 1), ('building', 1), ('critical', 1), ('task', 1), ('forlinux', 1), ('administrator', 1), ('distribution', 1), ('provide', 1), ('meet', 1), ('need', 1), ('computer', 1), ('big', 1), ('small', 1), ('special', 1), ('requirement', 1)]
[('document', 4), ('file', 3), ('xslt', 2), ('language', 2), ('xml', 2), ('something', 2), ('powerful', 1), ('transforming', 1), ('html', 1), ('another', 1), ('portable', 1), ('format', 1), ('pdf', 1), ('scalable', 1), ('vector', 1), ('graphic', 1), ('svg', 1), ('virtual', 1), ('reality', 1), ('modeling', 1), ('vrml', 1), ('java', 1), ('code', 1), ('number', 1), ('thing', 1), ('write', 1), ('stylesheet', 1)]
[('distributed', 2), ('application', 2), ('zookeeper', 2), ('building', 1), ('difficult', 1), ('enough', 1), ('without', 1), ('coordinate', 1), ('action', 1), ('make', 1), ('work', 1), ('practical', 1), ('guide', 1), ('show', 1), ('apache', 1), ('help', 1), ('manage', 1), ('system', 1), ('focus', 1), ('mainly', 1), ('logic', 1), ('even', 1), ('implementing', 1), ('coordination', 1), ('task', 1), ('trivial', 1), ('book', 1), ('provides', 1), ('good', 1)]
[('visitor', 2), ('turn', 1), ('website', 1), ('customer', 1), ('conversion', 1), ('optimization', 1), ('offer', 1), ('practical', 1), ('advice', 1), ('persuade', 1), ('make', 1), ('buying', 1), ('decision', 1), ('without', 1), ('driving', 1), ('away', 1), ('data', 1), ('overload', 1), ('tedious', 1), ('navigation', 1), ('learn', 1), ('use', 1), ('marketing', 1), ('principle', 1), ('design', 1), ('usability', 1), ('analytics', 1), ('site', 1), ('increase', 1)]
[('yesod', 3), ('application', 2), ('fast', 1), ('moving', 1), ('guide', 1), ('introduces', 1), ('web', 1), ('development', 1), ('haskell', 1), ('potent', 1), ('language', 1), ('framework', 1), ('combination', 1), ('support', 1), ('high', 1), ('performing', 1), ('modular', 1), ('type', 1), ('safe', 1), ('concise', 1), ('fully', 1), ('updated', 1), ('second', 1), ('edition', 1), ('show', 1), ('handle', 1), ('widget', 1), ('form', 1), ('persistence', 1), ('restful', 1), ('content', 1), ('author', 1)]
[('feature', 3), ('type', 2), ('indesign', 2), ('fully', 1), ('updated', 1), ('guide', 1), ('show', 1), ('student', 1), ('create', 1), ('beautiful', 1), ('print', 1), ('web', 1), ('adobe', 1), ('using', 1), ('practical', 1), ('example', 1), ('load', 1), ('tip', 1), ('sidebar', 1), ('provide', 1), ('additional', 1), ('detail', 1), ('author', 1), ('nigel', 1), ('french', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('including', 1), ('new', 1), ('creative', 1), ('cloud', 1), ('included', 1)]
[('programming', 3), ('language', 3), ('powerful', 1), ('highly', 1), ('flexible', 1), ('adaptable', 1), ('allows', 1), ('software', 1), ('engineer', 1), ('organize', 1), ('process', 1), ('information', 1), ('quickly', 1), ('effectively', 1), ('high', 1), ('level', 1), ('relatively', 1), ('difficult', 1), ('master', 1), ('even', 1), ('already', 1), ('know', 1), ('nd', 1), ('edition', 1), ('practical', 1), ('complete', 1)]
[('messaging', 2), ('real', 2), ('time', 2), ('practical', 1), ('book', 1), ('provides', 1), ('everything', 1), ('need', 1), ('know', 1), ('extensible', 1), ('presence', 1), ('protocol', 1), ('xmpp', 1), ('open', 1), ('technology', 1), ('communication', 1), ('used', 1), ('many', 1), ('diverse', 1), ('application', 1), ('instant', 1), ('voice', 1), ('ip', 1), ('collaboration', 1), ('social', 1), ('networking', 1), ('microblogging', 1), ('lightweight', 1), ('middleware', 1), ('cloud', 1), ('computing', 1)]
[('data', 3), ('want', 1), ('attract', 1), ('retain', 1), ('user', 1), ('booming', 1), ('mobile', 1), ('service', 1), ('market', 1), ('need', 1), ('quick', 1), ('loading', 1), ('app', 1), ('churn', 1), ('plan', 1), ('key', 1), ('compress', 1), ('multimedia', 1), ('smaller', 1), ('file', 1), ('finding', 1), ('right', 1), ('method', 1), ('tricky', 1), ('witty', 1), ('book', 1), ('help', 1), ('understand', 1), ('compression', 1), ('algorithm', 1), ('work', 1), ('theory', 1)]
[('nan', 1)]
[('colorful', 1), ('page', 1), ('turner', 1), ('put', 1), ('artificial', 1), ('intelligence', 1), ('human', 1), ('perspective', 1), ('life', 1), ('geoff', 1), ('hinton', 1), ('major', 1), ('player', 1), ('metz', 1), ('explains', 1), ('transformative', 1), ('technology', 1), ('make', 1), ('quest', 1), ('thrilling', 1), ('walter', 1), ('isaacson', 1), ('author', 1)]
[('state', 2), ('explore', 1), ('cyberspace', 1), ('work', 1), ('analyze', 1), ('non', 1), ('actor', 1), ('exploit', 1), ('vulnerability', 1), ('discover', 1), ('way', 1), ('improve', 1), ('cybersecurity', 1)]
[('unified', 1), ('random', 1), ('matrix', 1), ('approach', 1), ('large', 1), ('dimensional', 1), ('machine', 1), ('learning', 1), ('cover', 1), ('application', 1), ('power', 1), ('detection', 1), ('deep', 1), ('neural', 1), ('network', 1)]
[('dependable', 2), ('system', 2), ('software', 1), ('everything', 1), ('make', 1), ('anything', 1), ('secure', 1), ('understand', 1), ('engineer', 1), ('newly', 1), ('updated', 1), ('classic', 1), ('security', 1), ('engineering', 1), ('guide', 1), ('building', 1), ('distributed', 1), ('third', 1), ('edition', 1)]
[('latest', 1), ('version', 1), ('official', 1), ('study', 1), ('guide', 1), ('demand', 1), ('ceh', 1), ('certification', 1), ('practice', 1), ('test', 1), ('question', 1), ('information', 1), ('security', 1), ('personal', 1), ('privacy', 1), ('remains', 1), ('growing', 1), ('concern', 1)]
[('microsoft', 2), ('azure', 2), ('fundamental', 2), ('exam', 2), ('highly', 1), ('effective', 1), ('integrated', 1), ('self', 1), ('study', 1), ('system', 1), ('prepare', 1), ('current', 1), ('version', 1), ('using', 1), ('detailed', 1), ('information', 1), ('contained', 1), ('test', 1), ('preparation', 1), ('guide', 1), ('written', 1), ('cloud', 1), ('computing', 1), ('expert', 1), ('experienced', 1), ('author', 1), ('book', 1), ('contains', 1), ('accurate', 1), ('practice', 1), ('question', 1)]
[('exam', 3), ('effective', 2), ('study', 2), ('guide', 2), ('coverage', 2), ('penetration', 2), ('tester', 2), ('provides', 1), ('every', 1), ('topic', 1), ('gpen', 1), ('giac', 1), ('self', 1), ('fully', 1), ('prepares', 1), ('global', 1), ('information', 1), ('assurance', 1), ('certification', 1), ('challenging', 1), ('validates', 1), ('advanced', 1), ('security', 1), ('skill', 1), ('book', 1), ('feature', 1), ('focused', 1)]
[('exam', 4), ('coverage', 2), ('ceh', 2), ('date', 1), ('every', 1), ('topic', 1), ('thoroughly', 1), ('updated', 1), ('objective', 1), ('integrated', 1), ('self', 1), ('study', 1), ('system', 1), ('offer', 1), ('complete', 1), ('ec', 1), ('council', 1), ('certified', 1), ('ethical', 1), ('hacker', 1), ('new', 1), ('edition', 1), ('security', 1), ('expert', 1), ('matt', 1), ('walker', 1), ('discus', 1), ('latest', 1), ('tool', 1), ('technique', 1), ('exploit', 1), ('relevant', 1)]
[('adobe', 1), ('illustrator', 1), ('classroom', 1), ('book', 1), ('release', 1), ('nbsp', 1), ('us', 1), ('real', 1), ('world', 1), ('project', 1), ('based', 1), ('learning', 1), ('cover', 1), ('basic', 1), ('beyond', 1), ('providing', 1), ('countless', 1), ('tip', 1), ('technique', 1), ('help', 1), ('become', 1), ('productive', 1), ('program', 1), ('beginner', 1)]
[('internet', 3), ('email', 3), ('mail', 2), ('killer', 1), ('app', 1), ('world', 1), ('wide', 1), ('web', 1), ('push', 1), ('technology', 1), ('humble', 1), ('electronic', 1), ('use', 1), ('application', 1), ('number', 1), ('user', 1), ('swell', 1), ('take', 1), ('greater', 1), ('role', 1), ('personal', 1), ('business', 1), ('communication', 1), ('protocol', 1), ('become', 1), ('enabling', 1)]
[('tableau', 2), ('want', 1), ('increase', 1), ('value', 1), ('organization', 1), ('practical', 1), ('book', 1), ('back', 1), ('author', 1), ('ann', 1), ('jackson', 1), ('luke', 1), ('stanke', 1), ('guide', 1), ('data', 1), ('analyst', 1), ('strategy', 1), ('solving', 1), ('real', 1), ('world', 1), ('analytics', 1), ('problem', 1), ('using', 1), ('starting', 1), ('basic', 1), ('building', 1), ('toward', 1), ('advanced', 1), ('topic', 1), ('multidimensional', 1), ('analysis', 1), ('user', 1), ('experience', 1)]
[('web', 4), ('database', 2), ('php', 2), ('tool', 2), ('highly', 1), ('flexible', 1), ('building', 1), ('dynamic', 1), ('driven', 1), ('application', 1), ('make', 1), ('programming', 1), ('language', 1), ('popular', 1), ('development', 1), ('use', 1), ('today', 1), ('work', 1), ('beautifully', 1), ('open', 1), ('source', 1), ('mysql', 1), ('apache', 1), ('server', 1), ('site', 1), ('developed', 1), ('become', 1)]
[('privacy', 3), ('software', 3), ('technology', 1), ('influence', 1), ('concern', 1), ('consumer', 1), ('political', 1), ('leader', 1), ('advocacy', 1), ('group', 1), ('architect', 1), ('design', 1), ('new', 1), ('product', 1), ('practical', 1), ('guide', 1), ('expert', 1), ('data', 1), ('analytics', 1), ('engineering', 1), ('security', 1), ('policy', 1), ('describe', 1), ('team', 1), ('make', 1), ('protective', 1), ('feature', 1), ('core', 1), ('part', 1)]
[('package', 3), ('data', 2), ('turn', 1), ('code', 1), ('others', 1), ('easily', 1), ('install', 1), ('use', 1), ('fully', 1), ('updated', 1), ('edition', 1), ('developer', 1), ('scientist', 1), ('learn', 1), ('bundle', 1), ('reusable', 1), ('function', 1), ('sample', 1), ('documentation', 1), ('together', 1), ('applying', 1), ('development', 1), ('philosophy', 1), ('used', 1), ('team', 1), ('maintains', 1), ('tidyverse', 1), ('suite', 1)]
[('data', 2), ('science', 2), ('ethic', 2), ('book', 1), ('examines', 1), ('variety', 1), ('different', 1), ('concept', 1), ('related', 1), ('technique', 1), ('help', 1), ('lead', 1), ('ethical', 1), ('concern', 1), ('whilst', 1), ('featuring', 1), ('cautionary', 1), ('tale', 1), ('illustrate', 1), ('importance', 1), ('potential', 1), ('impact', 1)]
[('example', 3), ('bayesian', 2), ('network', 2), ('using', 2), ('side', 2), ('second', 1), ('edition', 1), ('introduces', 1), ('hand', 1), ('approach', 1), ('simple', 1), ('yet', 1), ('meaningful', 1), ('illustrate', 1), ('step', 1), ('modelling', 1), ('process', 1), ('discus', 1), ('underlying', 1), ('theory', 1), ('application', 1), ('code', 1), ('start', 1), ('simplest', 1), ('notion', 1), ('gradually', 1), ('increase', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('power', 4), ('query', 3), ('data', 3), ('cleansing', 2), ('tool', 2), ('day', 2), ('amazing', 1), ('new', 1), ('excel', 1), ('bi', 1), ('desktop', 1), ('find', 1), ('performing', 1), ('step', 1), ('make', 1), ('faster', 1), ('clean', 1), ('first', 1), ('time', 1), ('powerful', 1), ('interface', 1), ('subtle', 1), ('hiding', 1), ('plain', 1), ('sight', 1), ('easy', 1), ('miss', 1)]
[('learn', 2), ('program', 2), ('computer', 2), ('easier', 1), ('everyone', 1), ('write', 1), ('previous', 1), ('experience', 1), ('necessary', 1), ('chris', 1), ('pine', 1), ('take', 1), ('thorough', 1), ('lighthearted', 1), ('approach', 1), ('teach', 1), ('fundamental', 1), ('programming', 1), ('minimum', 1), ('fuss', 1), ('bother', 1), ('whether', 1), ('interested', 1)]
[('book', 2), ('written', 1), ('casual', 1), ('conversational', 1), ('style', 1), ('easily', 1), ('accessible', 1), ('prior', 1), ('knowledge', 1), ('printing', 1), ('yet', 1), ('message', 1), ('solidly', 1), ('practical', 1), ('technically', 1), ('accurate', 1), ('consumer', 1), ('relevant', 1), ('chapter', 1), ('include', 1), ('contemporary', 1), ('real', 1), ('life', 1), ('learning', 1), ('exercise', 1), ('insight', 1), ('buy', 1), ('use', 1), ('maintain', 1), ('printer', 1)]
[('azure', 3), ('fundamental', 2), ('unlock', 1), ('potential', 1), ('world', 1), ('comprehensive', 1), ('az', 1), ('study', 1), ('guide', 1), ('whether', 1), ('seasoned', 1), ('professional', 1), ('venturing', 1), ('cloud', 1), ('aspiring', 1), ('technologist', 1), ('seeking', 1), ('launch', 1), ('career', 1), ('book', 1), ('ultimate', 1), ('companion', 1), ('mastering', 1), ('stay', 1), ('ahead', 1), ('game', 1), ('date', 1)]
[('practical', 1), ('example', 1), ('driven', 1), ('introduction', 1), ('teach', 1), ('foundation', 1), ('mathematica', 1), ('language', 1), ('applied', 1), ('solving', 1), ('concrete', 1), ('problem', 1)]
[('book', 1), ('cover', 1), ('mathematica', 1), ('beginner', 1), ('example', 1), ('driven', 1), ('text', 1), ('covering', 1), ('wide', 1), ('variety', 1), ('application', 1), ('containing', 1), ('exercise', 1), ('solution', 1), ('available', 1), ('online', 1)]
[('mitnick', 3), ('hacker', 2), ('kevin', 2), ('bestselling', 2), ('art', 2), ('deception', 2), ('extraordinaire', 1), ('delivers', 1), ('explosive', 1), ('encore', 1), ('world', 1), ('celebrated', 1), ('devotes', 1), ('life', 1), ('helping', 1), ('business', 1), ('government', 1), ('combat', 1), ('data', 1), ('thief', 1), ('cybervandals', 1), ('malicious', 1), ('computer', 1), ('intruder', 1)]
[('focus', 1), ('basic', 1), ('mathematical', 1), ('tool', 1), ('needed', 1), ('cryptographic', 1), ('design', 1), ('computational', 1), ('difficulty', 1), ('way', 1), ('function', 1), ('pseudorandomness', 1), ('zero', 1), ('knowledge', 1), ('proof', 1)]
[('vba', 2), ('computer', 2), ('help', 1), ('put', 1), ('place', 1), ('write', 1), ('program', 1), ('automate', 1), ('task', 1), ('make', 1), ('office', 1), ('work', 1), ('better', 1), ('becoming', 1), ('bos', 1), ('instead', 1), ('servant', 1), ('start', 1), ('using', 1), ('tell', 1), ('latest', 1)]
[('basic', 2), ('beyond', 1), ('dive', 1), ('right', 1), ('customize', 1), ('automate', 1), ('extend', 1), ('access', 1), ('using', 1), ('visual', 1), ('application', 1), ('vba', 1), ('supremely', 1), ('organized', 1), ('reference', 1), ('packed', 1), ('hundred', 1), ('time', 1), ('saving', 1), ('solution', 1), ('troubleshooting', 1), ('tip', 1)]
[('oracle', 2), ('programmer', 2), ('study', 2), ('guide', 2), ('exam', 2), ('ocp', 1), ('certified', 1), ('professional', 1), ('java', 1), ('se', 1), ('ii', 1), ('published', 1), ('announced', 1), ('major', 1)]
[('software', 3), ('development', 3), ('original', 1), ('introduction', 1), ('unified', 1), ('modeling', 1), ('language', 1), ('revolutionized', 1), ('every', 1), ('integrated', 1), ('environment', 1), ('world', 1), ('open', 1), ('source', 1), ('standard', 1), ('based', 1), ('proprietary', 1), ('support', 1), ('uml', 1), ('importantly', 1), ('model', 1), ('driven', 1), ('approach', 1), ('make', 1), ('learning', 1), ('newest', 1)]
[('security', 3), ('study', 2), ('version', 2), ('comptia', 2), ('exam', 2), ('information', 2), ('fully', 1), ('updated', 1), ('guide', 1), ('cover', 1), ('every', 1), ('topic', 1), ('current', 1), ('take', 1), ('latest', 1), ('complete', 1), ('confidence', 1), ('using', 1), ('detailed', 1), ('contained', 1), ('highly', 1), ('effective', 1), ('self', 1), ('system', 1), ('written', 1), ('team', 1), ('leading', 1), ('expert', 1), ('authoritative', 1)]
[('programming', 1), ('language', 1), ('based', 1), ('higher', 1), ('order', 1), ('logic', 1), ('provides', 1), ('declarative', 1), ('approach', 1), ('capturing', 1), ('computation', 1), ('involving', 1), ('type', 1), ('proof', 1), ('syntactic', 1), ('structure', 1)]
[('test', 2), ('information', 2), ('system', 2), ('security', 2), ('real', 1), ('first', 1), ('fully', 1), ('updated', 1), ('self', 1), ('study', 1), ('guide', 1), ('offer', 1), ('complete', 1), ('coverage', 1), ('eight', 1), ('certified', 1), ('professional', 1), ('exam', 1), ('domain', 1), ('developed', 1), ('international', 1), ('certification', 1), ('consortium', 1), ('isc', 1), ('reinforce', 1), ('important', 1), ('skill', 1), ('facilitate', 1), ('retention', 1), ('every', 1)]
[('data', 3), ('spark', 2), ('user', 1), ('deep', 1), ('knowledge', 1), ('love', 1), ('statistic', 1), ('organization', 1), ('continues', 1), ('collect', 1), ('huge', 1), ('amount', 1), ('adding', 1), ('tool', 1), ('apache', 1), ('make', 1), ('lot', 1), ('sense', 1), ('practical', 1), ('book', 1), ('scientist', 1), ('professional', 1), ('working', 1), ('large', 1), ('scale', 1), ('application', 1), ('learn', 1), ('use', 1)]
[('net', 3), ('programmer', 3), ('visual', 2), ('basic', 2), ('object', 2), ('oriented', 2), ('language', 2), ('programming', 2), ('book', 1), ('written', 1), ('experienced', 1), ('many', 1), ('jumping', 1), ('bandwagon', 1), ('coming', 1), ('non', 1), ('script', 1), ('javascript', 1), ('adopting', 1), ('vb', 1), ('first', 1)]
[('network', 3), ('job', 2), ('linux', 2), ('soup', 1), ('nut', 1), ('collection', 1), ('recipe', 1), ('cover', 1), ('everything', 1), ('need', 1), ('know', 1), ('perform', 1), ('administrator', 1), ('whether', 1), ('new', 1), ('year', 1), ('experience', 1), ('networking', 1), ('cookbook', 1), ('dive', 1), ('straight', 1), ('gnarly', 1), ('hand', 1), ('work', 1), ('building', 1), ('maintaining', 1), ('computer', 1), ('running', 1)]
[('second', 1), ('edition', 1), ('successful', 1), ('textbook', 1), ('provides', 1), ('date', 1), ('introduction', 1), ('distributed', 1), ('algorithm', 1), ('theory', 1), ('behind', 1)]
[('exam', 3), ('new', 2), ('comptia', 2), ('bestselling', 1), ('job', 1), ('reference', 1), ('test', 1), ('preparation', 1), ('guide', 1), ('fully', 1), ('revised', 1), ('objective', 1), ('written', 1), ('leading', 1), ('authority', 1), ('certification', 1), ('training', 1), ('self', 1), ('study', 1), ('set', 1), ('thoroughly', 1), ('updated', 1), ('cover', 1), ('topic', 1), ('covered', 1), ('latest', 1), ('edition', 1)]
[('java', 2), ('code', 2), ('developer', 1), ('core', 1), ('se', 1), ('skill', 1), ('hand', 1), ('book', 1), ('take', 1), ('language', 1), ('change', 1), ('triggered', 1), ('addition', 1), ('lambda', 1), ('expression', 1), ('learn', 1), ('example', 1), ('exercise', 1), ('fluid', 1), ('explanation', 1), ('anonymous', 1), ('function', 1), ('help', 1), ('write', 1), ('simple', 1), ('clean', 1), ('library', 1), ('level', 1), ('solves', 1), ('business', 1)]
[('business', 2), ('security', 2), ('five', 1), ('year', 1), ('first', 1), ('edition', 1), ('classic', 1), ('book', 1), ('published', 1), ('internet', 1), ('use', 1), ('exploded', 1), ('commercial', 1), ('world', 1), ('rushed', 1), ('headlong', 1), ('web', 1), ('often', 1), ('without', 1), ('integrating', 1), ('sound', 1), ('technology', 1), ('policy', 1), ('product', 1), ('method', 1), ('risk', 1), ('need', 1), ('protect', 1)]
[('writing', 1), ('code', 1), ('easy', 1), ('part', 1), ('work', 1), ('software', 1), ('developer', 1), ('practical', 1), ('book', 1), ('let', 1), ('explore', 1), ('everything', 1), ('requirement', 1), ('discovery', 1), ('rapid', 1), ('prototyping', 1), ('business', 1), ('analysis', 1), ('designing', 1), ('maintainability', 1), ('instead', 1), ('providing', 1), ('neatly', 1), ('packaged', 1), ('advice', 1), ('high', 1), ('author', 1), ('gregory', 1), ('brown', 1), ('present', 1), ('detailed', 1), ('example', 1)]
[('new', 2), ('database', 2), ('mariadb', 2), ('step', 2), ('programmer', 1), ('mysql', 1), ('community', 1), ('driven', 1), ('variant', 1), ('found', 1), ('perfect', 1), ('introduction', 1), ('hand', 1), ('guide', 1), ('provides', 1), ('easy', 1), ('approach', 1), ('installing', 1), ('using', 1), ('maintaining', 1), ('popular', 1), ('relational', 1), ('engine', 1), ('author', 1), ('russell', 1), ('dyer', 1), ('curriculum', 1), ('manager', 1), ('former', 1)]
[('nan', 1)]
[('design', 5), ('nbsp', 2), ('effective', 2), ('making', 1), ('sense', 1), ('heart', 1), ('everything', 1), ('software', 1), ('development', 1), ('engineering', 1), ('architecture', 1), ('really', 1), ('know', 1), ('process', 1), ('lead', 1), ('elegant', 1)]
[('animation', 1), ('limitless', 1), ('medium', 1), ('telling', 1), ('story', 1), ('artist', 1), ('create', 1), ('world', 1), ('defy', 1), ('gravity', 1), ('flip', 1), ('factual', 1), ('fantasy', 1), ('transport', 1), ('audience', 1), ('place', 1), ('never', 1), ('imagined', 1), ('challenge', 1), ('discipline', 1), ('reel', 1)]
[('book', 2), ('lot', 1), ('introductory', 1), ('first', 1), ('nonsense', 1), ('practical', 1), ('approach', 1), ('made', 1), ('nutshell', 1), ('handbook', 1), ('famous', 1), ('programming', 1), ('getting', 1), ('syntax', 1), ('right', 1), ('style', 1), ('debugging', 1), ('play', 1), ('tremendous', 1), ('part', 1), ('creating', 1), ('program', 1), ('run', 1), ('easy', 1), ('maintain', 1), ('teach', 1)]
[('despite', 1), ('highly', 1), ('adaptable', 1), ('flexible', 1), ('nature', 1), ('complex', 1), ('programming', 1), ('language', 1), ('learn', 1), ('mastered', 1), ('help', 1), ('organize', 1), ('process', 1), ('information', 1), ('amazing', 1), ('efficiency', 1), ('quickness', 1), ('cookbook', 1), ('make', 1), ('path', 1), ('mastery', 1), ('shorter', 1), ('practical', 1), ('problem', 1), ('solving', 1), ('guide', 1), ('ideal', 1)]
[('audio', 3), ('web', 2), ('application', 2), ('api', 2), ('go', 1), ('beyond', 1), ('html', 1), ('tag', 1), ('boost', 1), ('capability', 1), ('packed', 1), ('lot', 1), ('code', 1), ('example', 1), ('crisp', 1), ('description', 1), ('useful', 1), ('illustration', 1), ('concise', 1), ('guide', 1), ('show', 1), ('use', 1), ('javascript', 1), ('make', 1), ('sound', 1), ('music', 1), ('game', 1), ('interactive', 1), ('come', 1), ('alive', 1), ('need', 1)]
[('java', 4), ('servlets', 3), ('web', 2), ('write', 2), ('servlet', 2), ('exciting', 1), ('important', 1), ('technology', 1), ('tie', 1), ('allowing', 1), ('programmer', 1), ('program', 1), ('create', 1), ('dynamic', 1), ('content', 1), ('programming', 1), ('cover', 1), ('everything', 1), ('developer', 1), ('need', 1), ('know', 1), ('effective', 1), ('explains', 1), ('lifecycle', 1), ('showing', 1), ('use', 1), ('maintain', 1), ('state', 1)]
[('data', 3), ('analysis', 3), ('many', 2), ('file', 2), ('excel', 1), ('million', 1), ('user', 1), ('want', 1), ('repeating', 1), ('similar', 1), ('hundred', 1), ('combining', 1), ('time', 1), ('practical', 1), ('guide', 1), ('show', 1), ('ambitious', 1), ('non', 1), ('programmer', 1), ('automate', 1), ('scale', 1), ('processing', 1), ('different', 1), ('format', 1), ('using', 1)]
[('information', 2), ('security', 2), ('best', 1), ('selling', 1), ('book', 1), ('taylor', 1), ('francis', 1), ('cybersecurity', 1), ('canon', 1), ('hall', 1), ('fame', 1), ('winner', 1), ('todd', 1), ('fitzgerald', 1), ('co', 1), ('author', 1), ('ground', 1), ('breaking', 1), ('isc', 1), ('ciso', 1), ('leadership', 1), ('essential', 1), ('principle', 1), ('success', 1), ('governance', 1), ('simplified', 1), ('boardroom', 1), ('keyboard', 1)]
[('nan', 1)]
[('metasploit', 3), ('framework', 1), ('make', 1), ('discovering', 1), ('exploiting', 1), ('sharing', 1), ('vulnerability', 1), ('quick', 1), ('relatively', 1), ('painless', 1), ('used', 1), ('security', 1), ('professional', 1), ('everywhere', 1), ('tool', 1), ('hard', 1), ('grasp', 1), ('first', 1), ('time', 1), ('user', 1)]
[('nan', 1)]
[('java', 5), ('game', 3), ('although', 1), ('number', 1), ('commercial', 1), ('still', 1), ('small', 1), ('compared', 1), ('written', 1), ('market', 1), ('expanding', 1), ('rapidly', 1), ('recent', 1), ('update', 1), ('make', 1), ('faster', 1), ('easier', 1), ('create', 1), ('powerful', 1), ('gaming', 1), ('application', 1), ('particularly', 1), ('fueling', 1), ('explosive', 1), ('growth', 1), ('puzzle', 1), ('pirate', 1), ('chrome', 1), ('war', 1), ('galaxy', 1)]
[('help', 1), ('efficient', 1), ('work', 1), ('handy', 1), ('pocket', 1), ('reference', 1), ('give', 1), ('instant', 1), ('reminder', 1), ('use', 1), ('important', 1), ('mysql', 1), ('function', 1), ('especially', 1), ('conjunction', 1), ('key', 1), ('part', 1), ('lamp', 1), ('open', 1), ('source', 1), ('infrastructure', 1), ('powerful', 1), ('database', 1), ('system', 1), ('rich', 1), ('feature', 1), ('administrator', 1), ('programmer', 1), ('stay', 1), ('familiar', 1)]
[('design', 4), ('book', 3), ('theory', 3), ('make', 1), ('different', 1), ('others', 1), ('database', 1), ('many', 1), ('resource', 1), ('practice', 1), ('little', 1), ('explain', 1), ('underlying', 1), ('aimed', 1), ('primarily', 1), ('theoretician', 1), ('renowned', 1), ('expert', 1), ('chris', 1), ('date', 1), ('bridge', 1), ('gap', 1), ('introducing', 1), ('way', 1), ('practitioner', 1), ('understand', 1), ('drawing', 1), ('lesson', 1)]
[('responsive', 3), ('web', 2), ('design', 2), ('deliver', 1), ('optimal', 1), ('user', 1), ('experience', 1), ('device', 1), ('including', 1), ('tablet', 1), ('smartphones', 1), ('feature', 1), ('phone', 1), ('laptop', 1), ('large', 1), ('screen', 1), ('learning', 1), ('basic', 1), ('hand', 1), ('guide', 1), ('ux', 1), ('designer', 1), ('clarissa', 1), ('peterson', 1), ('explains', 1), ('work', 1), ('take', 1), ('workflow', 1), ('project', 1), ('kickoff', 1), ('site', 1)]
[('nan', 1)]
[('nan', 1)]
[('learn', 1), ('build', 1), ('wide', 1), ('range', 1), ('scalable', 1), ('real', 1), ('world', 1), ('web', 1), ('application', 1), ('using', 1), ('professional', 1), ('development', 1), ('toolkit', 1), ('already', 1), ('know', 1), ('basic', 1), ('node', 1), ('j', 1), ('time', 1), ('discover', 1), ('bring', 1), ('production', 1), ('level', 1), ('leveraging', 1), ('vast', 1)]
[('suelette', 1), ('dreyfus', 1), ('co', 1), ('author', 1), ('wikileaks', 1), ('founder', 1), ('julian', 1), ('assange', 1), ('tell', 1), ('extraordinary', 1), ('true', 1), ('story', 1), ('computer', 1), ('underground', 1), ('bizarre', 1), ('life', 1), ('crime', 1), ('elite', 1), ('ring', 1), ('international', 1), ('hacker', 1), ('took', 1), ('establishment', 1), ('spanning', 1), ('three', 1), ('continent', 1), ('decade', 1), ('high', 1), ('level', 1), ('infiltration', 1), ('created', 1), ('chaos', 1), ('amongst', 1)]
[('green', 2), ('business', 2), ('new', 1), ('legislation', 1), ('rising', 1), ('energy', 1), ('cost', 1), ('increasing', 1), ('demand', 1), ('credential', 1), ('moved', 1), ('sustainable', 1), ('agenda', 1), ('ebook', 1), ('look', 1), ('different', 1), ('aspect', 1), ('sustainably', 1), ('managing', 1), ('asset', 1), ('ethically', 1), ('recycling', 1), ('hardware', 1), ('using', 1), ('reduce', 1), ('carbon', 1), ('footprint', 1), ('incorporate', 1), ('strategy', 1)]
[('vr', 4), ('human', 3), ('virtual', 2), ('reality', 2), ('design', 2), ('creating', 2), ('experience', 2), ('strong', 1), ('foundation', 1), ('centric', 1), ('anyone', 1), ('everyone', 1), ('involved', 1), ('without', 1), ('clear', 1), ('understanding', 1), ('side', 1), ('always', 1), ('fail', 1), ('book', 1), ('bridge', 1), ('gap', 1), ('focusing', 1), ('centered', 1), ('compelling', 1), ('application', 1)]
[('managing', 4), ('writer', 3), ('project', 3), ('big', 2), ('practical', 1), ('guide', 1), ('documentation', 1), ('real', 1), ('world', 1), ('informal', 1), ('concise', 1), ('using', 1), ('example', 1), ('author', 1), ('experience', 1), ('working', 1), ('technical', 1), ('look', 1), ('beyond', 1), ('team', 1), ('methodology', 1), ('issue', 1), ('faced', 1), ('smaller', 1), ('le', 1), ('funded', 1)]
[('image', 2), ('handy', 1), ('guide', 1), ('speeding', 1), ('scientific', 1), ('calculation', 1), ('real', 1), ('world', 1), ('example', 1), ('including', 1), ('simulation', 1), ('processing', 1), ('registration', 1)]
[('research', 2), ('textbook', 1), ('survey', 1), ('field', 1), ('young', 1), ('hci', 1), ('researcher', 1), ('making', 1), ('way', 1), ('world', 1)]
[('google', 2), ('cloud', 2), ('machine', 2), ('learning', 2), ('expert', 1), ('guidance', 1), ('certification', 1), ('exam', 1), ('certified', 1), ('professional', 1), ('study', 1), ('guide', 1), ('team', 1), ('accomplished', 1), ('artificial', 1), ('intelligence', 1)]
[('security', 1), ('professional', 1), ('trained', 1), ('skeptic', 1), ('poke', 1), ('prod', 1), ('digital', 1), ('creation', 1), ('expecting', 1), ('fail', 1), ('unexpected', 1), ('way', 1), ('skeptical', 1), ('power', 1), ('turned', 1), ('inward', 1), ('practitioner', 1), ('ask', 1)]
[('exam', 2), ('master', 1), ('key', 1), ('objective', 1), ('crucial', 1), ('cybersecurity', 1), ('concept', 1), ('updated', 1), ('comptia', 1), ('cysa', 1), ('c', 1), ('along', 1), ('online', 1), ('test', 1), ('bank', 1), ('hundred', 1), ('practice', 1), ('question', 1), ('flashcard', 1), ('newly', 1)]
[('solution', 2), ('aws', 2), ('certified', 2), ('saa', 2), ('exam', 2), ('study', 2), ('guide', 2), ('master', 1), ('amazon', 1), ('web', 1), ('service', 1), ('delivery', 1), ('efficiently', 1), ('prepare', 1), ('architect', 1), ('associate', 1), ('th', 1), ('edition', 1), ('comprehensively', 1)]
[('network', 2), ('security', 2), ('step', 2), ('date', 1), ('strategy', 1), ('thwarting', 1), ('latest', 1), ('insidious', 1), ('attack', 1), ('fully', 1), ('updated', 1), ('industry', 1), ('standard', 1), ('resource', 1), ('show', 1), ('fortify', 1), ('computer', 1), ('learning', 1), ('applying', 1), ('effective', 1), ('ethical', 1), ('hacking', 1), ('technique', 1), ('based', 1), ('curriculum', 1), ('developed', 1), ('author', 1), ('major', 1), ('conference', 1), ('college', 1)]
[('aphr', 3), ('exam', 3), ('study', 2), ('complete', 2), ('human', 2), ('resource', 2), ('certification', 2), ('guide', 2), ('highly', 1), ('effective', 1), ('self', 1), ('system', 1), ('offer', 1), ('coverage', 1), ('every', 1), ('subject', 1), ('take', 1), ('institute', 1), ('confidence', 1), ('using', 1), ('integrated', 1), ('written', 1), ('team', 1), ('hr', 1), ('expert', 1), ('associate', 1), ('professional', 1)]
[('social', 3), ('engineering', 3), ('topic', 2), ('cutting', 1), ('edge', 1), ('testing', 1), ('technique', 1), ('provides', 1), ('core', 1), ('area', 1), ('nearly', 1), ('everything', 1), ('need', 1), ('know', 1), ('fundamental', 1), ('slashdot', 1), ('conduct', 1), ('ethical', 1), ('test', 1), ('identify', 1), ('organization', 1), ('susceptibility', 1), ('attack', 1), ('written', 1), ('global', 1), ('expert', 1), ('security', 1)]
[('exam', 3), ('study', 2), ('guide', 2), ('comptia', 2), ('security', 2), ('question', 2), ('fully', 1), ('updated', 1), ('self', 1), ('offer', 1), ('coverage', 1), ('every', 1), ('objective', 1), ('hundred', 1), ('practice', 1), ('including', 1), ('difficult', 1), ('performance', 1), ('based', 1), ('certification', 1), ('fourth', 1), ('edition', 1), ('cover', 1), ('need', 1), ('know', 1), ('show', 1), ('prepare', 1), ('challenging', 1)]
[('linux', 3), ('coverage', 2), ('comptia', 2), ('exam', 2), ('objective', 2), ('comprehensive', 1), ('study', 1), ('guide', 1), ('delivers', 1), ('every', 1), ('topic', 1), ('challenging', 1), ('complete', 1), ('included', 1), ('xk', 1), ('date', 1), ('resource', 1), ('written', 1), ('expert', 1), ('technology', 1), ('trainer', 1), ('book', 1), ('provides', 1), ('learning', 1), ('beginning', 1), ('chapter', 1)]
[('publisher', 2), ('product', 2), ('exam', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('best', 1), ('certification', 1), ('study', 1), ('system', 1), ('available', 1), ('filled', 1), ('hand', 1), ('exercise', 1), ('practice', 1), ('question', 1), ('comptia', 1), ('cloud', 1), ('essential', 1)]
[('system', 4), ('legacy', 1), ('critical', 1), ('continue', 1), ('migrate', 1), ('online', 1), ('need', 1), ('continuous', 1), ('operation', 1), ('imperative', 1), ('code', 1), ('handle', 1), ('data', 1), ('issue', 1), ('hard', 1), ('external', 1), ('problem', 1), ('today', 1), ('including', 1), ('outage', 1), ('network', 1), ('storage', 1), ('power', 1), ('ancillary', 1), ('practical', 1), ('guide', 1), ('provides', 1), ('administrator', 1), ('devsecops', 1), ('engineer', 1), ('cloud', 1)]
[('window', 4), ('conquer', 1), ('inside', 1), ('nbsp', 1), ('dive', 1), ('really', 1), ('put', 1), ('expertise', 1), ('work', 1), ('focusing', 1), ('powerful', 1), ('innovative', 1), ('feature', 1), ('supremely', 1), ('organized', 1), ('reference', 1), ('pack', 1), ('hundred', 1)]
[('law', 3), ('stanford', 2), ('clear', 1), ('correct', 1), ('deep', 1), ('welcome', 1), ('addition', 1), ('discussion', 1), ('computing', 1), ('anyone', 1), ('even', 1), ('lawyer', 1), ('lawrence', 1), ('lessig', 1), ('professor', 1), ('school', 1), ('founder', 1), ('center', 1), ('internet', 1), ('society', 1), ('work', 1), ('information', 1), ('technology', 1), ('intellectual', 1), ('property', 1), ('central', 1), ('job', 1), ('dealing', 1)]
[('nutshell', 4), ('book', 2), ('point', 1), ('authoritative', 1), ('nonsense', 1), ('solution', 1), ('always', 1), ('trademark', 1), ('reilly', 1), ('earned', 1), ('solid', 1), ('reputation', 1), ('field', 1), ('thumbed', 1), ('reference', 1), ('sit', 1), ('beside', 1), ('knowledgeable', 1), ('developer', 1), ('keyboard', 1), ('life', 1), ('promise', 1), ('lean', 1)]
[('business', 2), ('technology', 2), ('code', 2), ('accelerating', 1), ('speed', 1), ('increasing', 1), ('dependence', 1), ('company', 1), ('today', 1), ('significantly', 1), ('changing', 1), ('way', 1), ('build', 1), ('house', 1), ('solution', 1), ('many', 1), ('use', 1), ('low', 1), ('help', 1), ('deal', 1), ('specific', 1), ('issue', 1), ('beginning', 1), ('practical', 1), ('guide', 1), ('power', 1), ('user', 1), ('developer', 1)]
[('concerned', 2), ('many', 1), ('analyst', 1), ('tool', 1), ('technique', 1), ('cleansing', 1), ('modeling', 1), ('visualizing', 1), ('datasets', 1), ('enough', 1), ('asking', 1), ('right', 1), ('question', 1), ('practical', 1), ('guide', 1), ('data', 1), ('strategy', 1), ('consultant', 1), ('max', 1), ('shron', 1), ('show', 1), ('put', 1), ('often', 1), ('overlooked', 1), ('set', 1), ('analytical', 1), ('skill', 1), ('thinking', 1)]
[('web', 2), ('interface', 2), ('cgi', 2), ('programming', 1), ('today', 1), ('involve', 1), ('several', 1), ('technology', 1), ('common', 1), ('gateway', 1), ('held', 1), ('ground', 1), ('mature', 1), ('method', 1), ('powerful', 1), ('one', 1), ('providing', 1), ('dynamic', 1), ('content', 1), ('generic', 1), ('calling', 1), ('external', 1), ('program', 1), ('crunch', 1), ('number', 1), ('query', 1), ('database', 1), ('generate', 1), ('customized', 1), ('graphic', 1)]
[('template', 3), ('templating', 2), ('perl', 2), ('html', 2), ('system', 2), ('toolkit', 2), ('among', 1), ('many', 1), ('different', 1), ('approach', 1), ('embperl', 1), ('mason', 1), ('hundred', 1), ('lesser', 1), ('known', 1), ('widely', 1), ('recognized', 1), ('versatile', 1), ('allows', 1), ('programmer', 1), ('embed', 1), ('code', 1), ('custom', 1), ('macro', 1), ('document', 1)]
[('project', 4), ('business', 2), ('need', 2), ('emerge', 1), ('practice', 1), ('software', 1), ('developer', 1), ('accomplish', 1), ('big', 1), ('thing', 1), ('begin', 1), ('find', 1), ('analyse', 1), ('requirement', 1), ('plan', 1), ('management', 1), ('biggest', 1), ('problem', 1), ('delivering', 1), ('wrong', 1), ('product', 1)]
[('computer', 2), ('drawing', 1), ('impressive', 1), ('roster', 1), ('expert', 1), ('field', 1), ('fundamental', 1), ('graphic', 1), ('fifth', 1), ('edition', 1), ('offer', 1), ('ideal', 1), ('resource', 1), ('course', 1), ('curriculum', 1), ('user', 1), ('friendly', 1), ('personal', 1), ('professional', 1), ('reference', 1), ('focusing', 1), ('geometric', 1), ('intuition', 1), ('book', 1), ('give', 1), ('necessary', 1), ('information', 1), ('understanding', 1), ('image', 1), ('onto', 1)]
[('computer', 1), ('organization', 1), ('design', 1), ('hardware', 1), ('software', 1), ('interface', 1), ('sixth', 1), ('edition', 1), ('leading', 1), ('award', 1), ('winning', 1), ('textbook', 1), ('patterson', 1), ('hennessy', 1), ('used', 1), ('student', 1), ('per', 1), ('year', 1), ('continues', 1), ('present', 1), ('comprehensive', 1), ('readable', 1)]
[('compiler', 2), ('engineering', 1), ('third', 1), ('edition', 1), ('cover', 1), ('latest', 1), ('development', 1), ('technology', 1), ('new', 1), ('chapter', 1), ('focusing', 1), ('semantic', 1), ('elaboration', 1), ('problem', 1), ('arise', 1), ('generating', 1), ('code', 1), ('ad', 1), ('hoc', 1), ('syntax', 1), ('directed', 1), ('translation', 1), ('scheme', 1)]
[('use', 2), ('math', 2), ('improve', 2), ('performance', 2), ('sport', 2), ('predict', 1), ('outcome', 1), ('professional', 1), ('mathletics', 1), ('reveals', 1), ('mathematical', 1), ('method', 1), ('top', 1), ('coach', 1), ('manager', 1), ('evaluate', 1), ('player', 1), ('team', 1), ('give', 1), ('enthusiast', 1), ('practical', 1), ('skill', 1), ('need', 1), ('enhance', 1), ('understanding', 1), ('enjoyment', 1), ('favorite', 1), ('maybe', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nbsp', 4), ('azure', 3), ('api', 2), ('management', 2), ('service', 2), ('unsure', 1), ('started', 1), ('microsoft', 1), ('managed', 1), ('securing', 1), ('maintaining', 1), ('monitoring', 1), ('apis', 1), ('guide', 1), ('integrates', 1)]
[('exam', 3), ('study', 2), ('help', 2), ('companion', 1), ('prepare', 1), ('snowpro', 1), ('core', 1), ('certification', 1), ('author', 1), ('nbsp', 1), ('guide', 1), ('tackle', 1), ('track', 1), ('progress', 1), ('chapter', 1), ('book', 1), ('correspond', 1)]
[('learn', 1), ('detect', 1), ('analyze', 1), ('respond', 1), ('phishing', 1), ('email', 1), ('top', 1), ('infection', 1), ('vector', 1), ('used', 1), ('cybercriminals', 1), ('repeatable', 1), ('process', 1), ('described', 1), ('book', 1), ('cultivated', 1), ('tested', 1), ('real', 1), ('life', 1), ('incident', 1), ('validated', 1), ('across', 1), ('multiple', 1), ('threat', 1)]
[('using', 2), ('learn', 1), ('gui', 1), ('application', 1), ('development', 1), ('ground', 1), ('building', 1), ('simple', 1), ('project', 1), ('teach', 1), ('fundamental', 1), ('pyqt', 1), ('nd', 1), ('edition', 1), ('includes', 1), ('updated', 1), ('code', 1), ('program', 1), ('new', 1), ('chapter', 1), ('started', 1), ('newest', 1), ('version', 1), ('nbsp', 1)]
[('application', 2), ('dive', 1), ('gui', 1), ('development', 1), ('create', 1), ('useful', 1), ('practical', 1), ('relevant', 1), ('topic', 1), ('field', 1), ('business', 1), ('computer', 1), ('science', 1), ('research', 1), ('book', 1), ('us', 1), ('realistic', 1), ('approach', 1), ('help', 1), ('started', 1), ('designing', 1), ('building', 1)]
[('ethical', 2), ('know', 1), ('basic', 1), ('principle', 1), ('hacking', 1), ('book', 1), ('designed', 1), ('provide', 1), ('knowledge', 1), ('tactic', 1), ('tool', 1), ('needed', 1), ('prepare', 1), ('certified', 1), ('hacker', 1), ('ceh', 1), ('exam', 1), ('qualification', 1), ('test', 1), ('cybersecurity', 1), ('professional', 1)]
[('end', 3), ('back', 2), ('developer', 2), ('transition', 1), ('full', 1), ('stack', 1), ('knowledge', 1), ('dimension', 1), ('web', 1), ('application', 1), ('development', 1), ('namely', 1), ('front', 1), ('server', 1), ('side', 1), ('software', 1), ('nbsp', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1)]
[('sound', 4), ('effect', 2), ('practitioner', 1), ('guide', 1), ('basic', 1), ('principle', 1), ('creating', 1), ('using', 1), ('easily', 1), ('accessed', 1), ('free', 1), ('software', 1), ('designing', 1), ('teach', 1), ('student', 1), ('professional', 1), ('designer', 1), ('understand', 1), ('create', 1), ('starting', 1), ('nothing', 1), ('thesis', 1)]
[('successful', 1), ('technical', 1), ('blogging', 1), ('easy', 1), ('magic', 1), ('use', 1), ('technique', 1), ('attract', 1), ('keep', 1), ('audience', 1), ('loyal', 1), ('regular', 1), ('reader', 1), ('leverage', 1), ('popularity', 1), ('reach', 1), ('goal', 1), ('amplify', 1), ('influence', 1), ('field', 1), ('user', 1), ('startup', 1), ('open', 1), ('source', 1), ('project', 1), ('simply', 1), ('find', 1), ('outlet', 1), ('share', 1), ('expertise', 1)]
[('haskell', 2), ('work', 2), ('put', 1), ('power', 1), ('program', 1), ('learning', 1), ('engineer', 1), ('us', 1), ('daily', 1), ('practical', 1), ('done', 1), ('efficiently', 1), ('leverage', 1), ('powerful', 1), ('feature', 1), ('monad', 1), ('transformer', 1), ('type', 1), ('family', 1), ('build', 1), ('useful', 1), ('application', 1), ('realize', 1), ('benefit', 1), ('pure', 1), ('functional', 1), ('language', 1), ('protecting', 1), ('code', 1), ('side', 1), ('effect', 1), ('manage', 1)]
[('scala', 4), ('system', 3), ('native', 3), ('machine', 2), ('operating', 2), ('access', 1), ('power', 1), ('bare', 1), ('metal', 1), ('programming', 1), ('ahead', 1), ('time', 1), ('compiler', 1), ('without', 1), ('baggage', 1), ('legacy', 1), ('framework', 1), ('virtual', 1), ('let', 1), ('imagine', 1), ('program', 1), ('interact', 1), ('compile', 1), ('code', 1), ('instruction', 1), ('seamlessly', 1), ('invoke', 1)]
[('excel', 2), ('cool', 1), ('sh', 1), ('designed', 1), ('guru', 1), ('mind', 1), ('introducing', 1), ('advanced', 1), ('creative', 1), ('solution', 1), ('hack', 1), ('software', 1), ('challenging', 1), ('problem', 1), ('series', 1), ('technique', 1), ('formula', 1), ('dynamic', 1), ('array', 1), ('vba', 1), ('macro', 1), ('guide', 1), ('detail', 1), ('process', 1), ('used', 1), ('application', 1), ('across', 1), ('discipline', 1), ('includes', 1)]
[('rail', 2), ('completely', 1), ('redefines', 1), ('mean', 1), ('produce', 1), ('fantastic', 1), ('user', 1), ('experience', 1), ('provides', 1), ('way', 1), ('achieve', 1), ('benefit', 1), ('single', 1), ('page', 1), ('application', 1), ('fraction', 1), ('complexity', 1), ('integrates', 1), ('hotwire', 1), ('framework', 1), ('stimulus', 1), ('turbo', 1), ('directly', 1), ('new', 1), ('default', 1), ('together', 1), ('hot', 1), ('newness', 1), ('import', 1), ('map', 1), ('result', 1)]
[('user', 2), ('experience', 2), ('book', 1), ('provides', 1), ('reasoned', 1), ('authoritative', 1), ('description', 1), ('ux', 1), ('work', 1), ('tool', 1), ('technique', 1), ('involved', 1), ('line', 1), ('bcs', 1), ('foundation', 1), ('certificate', 1), ('based', 1), ('iso', 1)]
[('arduino', 4), ('looking', 2), ('learn', 2), ('dive', 1), ('world', 1), ('start', 1), ('creating', 1), ('project', 1), ('look', 1), ('beginner', 1), ('guide', 1), ('perfect', 1), ('resource', 1), ('anyone', 1), ('powerful', 1), ('microcontroller', 1), ('platform', 1), ('book', 1), ('different', 1), ('model', 1), ('hardware', 1), ('software', 1)]
[('talk', 2), ('artificial', 1), ('intelligence', 1), ('everywhere', 1), ('powering', 1), ('news', 1), ('feed', 1), ('curating', 1), ('search', 1), ('result', 1), ('invisibly', 1), ('steering', 1), ('life', 1), ('increasingly', 1), ('back', 1), ('sometimes', 1), ('answer', 1), ('seem', 1), ('eerily', 1), ('smart', 1), ('billion', 1), ('dollar', 1), ('poured', 1), ('ai', 1), ('yet', 1), ('keep', 1), ('surprising', 1), ('epic', 1), ('fails', 1), ('confidently', 1)]
[('data', 4), ('science', 3), ('python', 2), ('embark', 1), ('transformative', 1), ('journey', 1), ('world', 1), ('popular', 1), ('programming', 1), ('language', 1), ('analysis', 1), ('manipulation', 1), ('beginner', 1), ('comprehensive', 1), ('guide', 1), ('equips', 1), ('fundamental', 1), ('skill', 1), ('knowledge', 1), ('needed', 1), ('dive', 1), ('exciting', 1), ('field', 1), ('even', 1)]
[('data', 3), ('microsoft', 2), ('ready', 1), ('unlock', 1), ('full', 1), ('potential', 1), ('powerful', 1), ('tool', 1), ('excel', 1), ('mastering', 1), ('analysis', 1), ('visualization', 1), ('automation', 1), ('success', 1), ('embark', 1), ('transformative', 1), ('journey', 1), ('forever', 1), ('change', 1), ('way', 1), ('approach', 1), ('whether', 1), ('aspiring', 1), ('analyst', 1), ('seasoned', 1), ('professional', 1)]
[('ideal', 1), ('wishing', 1), ('deeper', 1), ('understanding', 1), ('mathematica', 1), ('programming', 1), ('software', 1), ('support', 1), ('solution', 1), ('exercise', 1), ('available', 1), ('web', 1)]
[('excel', 2), ('drawn', 1), ('actual', 1), ('conundrum', 1), ('posted', 1), ('author', 1), ('website', 1), ('high', 1), ('level', 1), ('resource', 1), ('designed', 1), ('want', 1), ('stretch', 1), ('limit', 1), ('tip', 1), ('solving', 1), ('incredibly', 1), ('difficult', 1), ('problem', 1), ('covered', 1), ('depth', 1), ('nbsp', 1), ('include', 1), ('extracting', 1), ('first', 1), ('letter', 1), ('word', 1), ('paragraph', 1), ('validating', 1), ('url', 1), ('generating', 1)]
[('exam', 3), ('coverage', 2), ('fully', 1), ('date', 1), ('every', 1), ('topic', 1), ('ceh', 1), ('certification', 1), ('thoroughly', 1), ('revised', 1), ('current', 1), ('objective', 1), ('integrated', 1), ('self', 1), ('study', 1), ('system', 1), ('offer', 1), ('complete', 1), ('ec', 1), ('council', 1), ('certified', 1), ('ethical', 1), ('hacker', 1), ('inside', 1), ('security', 1), ('expert', 1), ('matt', 1), ('walker', 1), ('discus', 1), ('tool', 1), ('technique', 1), ('exploit', 1), ('relevant', 1)]
[('excel', 3), ('stop', 1), ('guide', 1), ('thing', 1), ('dummy', 1), ('comprehensive', 1), ('reference', 1), ('market', 1), ('completely', 1), ('updated', 1), ('reflect', 1), ('microsoft', 1), ('change', 1)]
[('modern', 1), ('introduction', 1), ('theory', 1), ('coding', 1), ('decoding', 1), ('many', 1), ('exercise', 1), ('example', 1)]
[('web', 3), ('create', 2), ('site', 2), ('essential', 1), ('skill', 1), ('made', 1), ('easy', 1), ('professional', 1), ('quality', 1), ('time', 1), ('help', 1), ('hand', 1), ('tutorial', 1), ('fully', 1), ('updated', 1), ('cover', 1), ('latest', 1), ('technology', 1), ('technique', 1), ('design', 1), ('beginner', 1), ('guide', 1), ('second', 1), ('edition', 1), ('explains', 1), ('analyze', 1), ('requirement', 1), ('development', 1), ('proposal', 1), ('plan', 1), ('document', 1), ('project', 1)]
[('excel', 2), ('creative', 2), ('designed', 1), ('guru', 1), ('mind', 1), ('handbook', 1), ('introduces', 1), ('advanced', 1), ('solution', 1), ('hack', 1), ('software', 1), ('challenging', 1), ('problem', 1), ('series', 1), ('technique', 1), ('table', 1), ('formula', 1), ('chart', 1), ('guide', 1), ('detail', 1), ('process', 1), ('used', 1), ('application', 1), ('across', 1), ('discipline', 1), ('approach', 1)]
[('use', 2), ('project', 2), ('essential', 1), ('skill', 1), ('first', 1), ('time', 1), ('programmer', 1), ('easy', 1), ('book', 1), ('explains', 1), ('fundamental', 1), ('uml', 1), ('learn', 1), ('draw', 1), ('visual', 1), ('modeling', 1), ('language', 1), ('create', 1), ('clear', 1), ('effective', 1), ('blueprint', 1), ('software', 1), ('development', 1), ('modular', 1), ('approach', 1), ('series', 1), ('including', 1), ('drill', 1), ('sample', 1), ('mastery', 1), ('check', 1), ('make', 1)]
[('api', 2), ('design', 2), ('provides', 1), ('comprehensive', 1), ('discussion', 1), ('application', 1), ('programming', 1), ('interface', 1), ('development', 1), ('initial', 1), ('implementation', 1), ('testing', 1), ('documentation', 1), ('release', 1), ('versioning', 1), ('maintenance', 1), ('deprecation', 1)]
[('rigorous', 1), ('treatment', 1), ('encryption', 1), ('signature', 1), ('general', 1), ('cryptographic', 1), ('protocol', 1), ('emphasizing', 1), ('fundamental', 1), ('concept', 1)]
[('language', 3), ('programming', 2), ('microsoft', 2), ('built', 1), ('future', 1), ('application', 1), ('development', 1), ('mind', 1), ('pursuing', 1), ('vision', 1), ('designer', 1), ('succeeded', 1), ('creating', 1), ('safe', 1), ('simple', 1), ('component', 1), ('based', 1), ('high', 1), ('performance', 1), ('work', 1), ('effectively', 1), ('net', 1), ('framework', 1), ('favored', 1), ('among', 1), ('platform', 1)]
[('html', 2), ('know', 1), ('new', 1), ('feature', 1), ('available', 1), ('time', 1), ('find', 1), ('book', 1), ('provides', 1), ('practical', 1), ('information', 1), ('latest', 1), ('version', 1), ('markup', 1), ('language', 1), ('significantly', 1), ('change', 1), ('way', 1), ('develop', 1), ('web', 1), ('still', 1), ('evolving', 1), ('yet', 1), ('browser', 1), ('safari', 1), ('mozilla', 1), ('opera', 1), ('chrome', 1), ('already', 1), ('support', 1)]
[('information', 2), ('issue', 2), ('completely', 1), ('revised', 1), ('updated', 1), ('second', 1), ('edition', 1), ('includes', 1), ('additional', 1), ('important', 1), ('topic', 1), ('aviation', 1), ('security', 1), ('human', 1), ('error', 1), ('faa', 1), ('suggestion', 1), ('new', 1), ('requirement', 1), ('passenger', 1), ('satisfaction', 1), ('risk', 1), ('analysis', 1), ('factor', 1), ('crew', 1), ('resource', 1), ('management', 1), ('team', 1), ('work', 1), ('contains', 1), ('expanded', 1), ('standard', 1)]
[('java', 2), ('become', 2), ('language', 2), ('enterprise', 2), ('quickly', 1), ('important', 1), ('programming', 1), ('particularly', 1), ('professional', 1), ('level', 1), ('project', 1), ('infancy', 1), ('primarily', 1), ('used', 1), ('web', 1), ('applet', 1), ('maturity', 1), ('servlets', 1), ('javabeans', 1), ('database', 1), ('access', 1), ('complex', 1), ('robust', 1), ('tool', 1), ('today', 1), ('developer', 1)]
[('api', 3), ('change', 3), ('ef', 2), ('dbcontext', 1), ('capture', 1), ('entity', 1), ('framework', 1), ('commonly', 1), ('used', 1), ('feature', 1), ('task', 1), ('simplifying', 1), ('development', 1), ('concise', 1), ('book', 1), ('show', 1), ('use', 1), ('perform', 1), ('set', 1), ('operation', 1), ('dbset', 1), ('class', 1), ('handle', 1), ('tracking', 1), ('resolve', 1), ('concurrency', 1), ('conflict', 1), ('tracker', 1), ('validate', 1), ('data', 1)]
[('internet', 3), ('growth', 1), ('spectacular', 1), ('billion', 1), ('user', 1), ('across', 1), ('globe', 1), ('per', 1), ('cent', 1), ('world', 1), ('population', 1), ('meteoric', 1), ('rise', 1), ('phenomenon', 1), ('enormous', 1), ('significance', 1), ('economic', 1), ('political', 1), ('social', 1), ('life', 1), ('contemporary', 1), ('society', 1), ('popular', 1), ('academic', 1), ('writing', 1)]
[('network', 3), ('traditional', 1), ('intrusion', 1), ('detection', 1), ('logfile', 1), ('analysis', 1), ('longer', 1), ('enough', 1), ('protect', 1), ('today', 1), ('complex', 1), ('updated', 1), ('second', 1), ('edition', 1), ('practical', 1), ('guide', 1), ('security', 1), ('researcher', 1), ('michael', 1), ('collins', 1), ('show', 1), ('infosec', 1), ('personnel', 1), ('latest', 1), ('technique', 1), ('tool', 1), ('collecting', 1), ('analyzing', 1), ('traffic', 1), ('datasets', 1), ('understand', 1)]
[('software', 2), ('scale', 2), ('writing', 1), ('reliable', 1), ('maintainable', 1), ('hard', 1), ('designing', 1), ('add', 1), ('new', 1), ('set', 1), ('challenge', 1), ('creating', 1), ('large', 1), ('system', 1), ('requires', 1), ('practical', 1), ('understanding', 1), ('logical', 1), ('design', 1), ('beyond', 1), ('theoretical', 1), ('concept', 1), ('addressed', 1)]
[('book', 2), ('ebook', 1), ('printed', 1), ('include', 1), ('medium', 1), ('website', 1), ('access', 1), ('code', 1), ('print', 1), ('supplement', 1), ('come', 1), ('packaged', 1), ('bound', 1), ('programming', 1), ('skill', 1), ('indispensable', 1), ('today', 1), ('world', 1), ('computer', 1), ('science', 1)]
[('web', 2), ('app', 2), ('server', 2), ('grasp', 1), ('fundamental', 1), ('application', 1), ('development', 1), ('building', 1), ('simple', 1), ('database', 1), ('backed', 1), ('scratch', 1), ('using', 1), ('html', 1), ('javascript', 1), ('open', 1), ('source', 1), ('tool', 1), ('hand', 1), ('tutorial', 1), ('practical', 1), ('guide', 1), ('show', 1), ('inexperienced', 1), ('developer', 1), ('create', 1), ('user', 1), ('interface', 1), ('write', 1), ('build', 1), ('client', 1), ('communication', 1), ('use', 1)]
[('program', 2), ('dreamweaver', 2), ('step', 2), ('adobe', 1), ('website', 1), ('development', 1), ('let', 1), ('revamp', 1), ('existing', 1), ('site', 1), ('design', 1), ('build', 1), ('manage', 1), ('new', 1), ('without', 1), ('writing', 1), ('single', 1), ('line', 1), ('code', 1), ('learning', 1), ('tricky', 1), ('guide', 1), ('help', 1), ('master', 1), ('versatile', 1), ('jargon', 1), ('free', 1), ('language', 1), ('hand', 1), ('tutorial', 1), ('savvy', 1), ('advice', 1), ('pro', 1)]
[('data', 4), ('moment', 2), ('tool', 1), ('analyzing', 1), ('streaming', 1), ('real', 1), ('time', 1), ('gaining', 1), ('adoption', 1), ('ability', 1), ('visualize', 1), ('type', 1), ('yet', 1), ('catch', 1), ('dashboard', 1), ('good', 1), ('conveying', 1), ('daily', 1), ('weekly', 1), ('trend', 1), ('glance', 1), ('though', 1), ('capturing', 1), ('snapshot', 1), ('transforming', 1), ('difficult', 1), ('impossible', 1), ('practical', 1)]
[('cs', 2), ('learn', 1), ('solve', 1), ('real', 1), ('problem', 1), ('face', 1), ('cookbook', 1), ('offer', 1), ('hundred', 1), ('practical', 1), ('example', 1), ('using', 1), ('format', 1), ('web', 1), ('page', 1), ('includes', 1), ('code', 1), ('sample', 1), ('use', 1), ('right', 1), ('away', 1), ('find', 1), ('exactly', 1), ('need', 1), ('basic', 1), ('complex', 1), ('hack', 1), ('workarounds', 1), ('recipe', 1), ('explains', 1), ('customize', 1), ('solution', 1), ('meet', 1)]
[('web', 4), ('semantic', 3), ('book', 1), ('promise', 1), ('machine', 1), ('find', 1), ('share', 1), ('combine', 1), ('data', 1), ('technical', 1), ('possibility', 1), ('practical', 1), ('reality', 1), ('programming', 1), ('demonstrates', 1), ('several', 1), ('way', 1), ('implement', 1), ('application', 1), ('using', 1), ('current', 1), ('emerging', 1), ('standard', 1), ('technology', 1), ('learn', 1)]
[('nan', 1)]
[('signal', 2), ('processing', 2), ('time', 2), ('textbook', 1), ('give', 1), ('fresh', 1), ('approach', 1), ('introductory', 1), ('course', 1), ('unique', 1), ('feature', 1), ('alternate', 1), ('chapter', 1), ('continuous', 1), ('analog', 1), ('discrete', 1), ('digital', 1), ('concept', 1), ('parallel', 1), ('synchronized', 1), ('manner', 1), ('presentation', 1), ('style', 1), ('help', 1), ('reader', 1), ('realize', 1), ('understand', 1), ('close', 1), ('relationship', 1)]
[('joomla', 2), ('relatively', 1), ('easy', 1), ('install', 1), ('fair', 1), ('amount', 1), ('knowledge', 1), ('required', 1), ('order', 1), ('configure', 1), ('application', 1), ('specific', 1), ('need', 1), ('beginning', 1), ('answer', 1), ('many', 1), ('question', 1), ('sure', 1), ('guiding', 1), ('process', 1)]
[('excel', 5), ('designed', 2), ('tip', 2), ('mrexcel', 1), ('make', 1), ('reader', 1), ('far', 1), ('efficient', 1), ('use', 1), ('microsoft', 1), ('originally', 1), ('bill', 1), ('jelen', 1), ('live', 1), ('power', 1), ('seminar', 1), ('target', 1), ('audience', 1), ('already', 1), ('us', 1), ('hour', 1), ('week', 1), ('aha', 1), ('uncover', 1), ('secret', 1), ('method', 1), ('book', 1), ('cover', 1), ('general', 1), ('function', 1), ('pivot', 1), ('table', 1), ('formula', 1)]
[('book', 1), ('offer', 1), ('balanced', 1), ('treatment', 1), ('elementary', 1), ('concept', 1), ('recent', 1), ('development', 1), ('cloud', 1), ('computing', 1)]
[('third', 1), ('edition', 1), ('book', 1), ('focus', 1), ('practical', 1), ('algorithm', 1), ('mining', 1), ('data', 1), ('even', 1), ('largest', 1), ('datasets', 1)]
[('first', 1), ('time', 1), ('senior', 1), ('architect', 1), ('lead', 1), ('developer', 1), ('key', 1), ('enterprise', 1), ('system', 1), ('nasa', 1), ('ongoing', 1), ('mar', 1), ('exploration', 1), ('rover', 1), ('mission', 1), ('share', 1), ('secret', 1), ('difficult', 1), ('technology', 1), ('task', 1), ('successful', 1), ('software', 1), ('development', 1)]
[('level', 2), ('exam', 2), ('full', 1), ('coverage', 1), ('latest', 1), ('lpi', 1), ('bonus', 1), ('online', 1), ('test', 1), ('bank', 1), ('lpic', 1), ('stop', 1), ('preparation', 1), ('resource', 1), ('linux', 1), ('professional', 1), ('institute', 1), ('advanced', 1), ('certification', 1)]
[('machine', 2), ('learning', 2), ('intimidating', 1), ('subject', 1), ('know', 1), ('fundamental', 1), ('understand', 1), ('basic', 1), ('coding', 1), ('concept', 1), ('introductory', 1), ('guide', 1), ('help', 1), ('gain', 1), ('solid', 1), ('foundation', 1), ('principle', 1), ('using', 1), ('programming', 1), ('language', 1), ('first', 1), ('start', 1), ('learn', 1), ('regression', 1), ('modelling', 1), ('move', 1), ('advanced', 1), ('topic', 1)]
[('data', 3), ('ranging', 2), ('beautiful', 2), ('insightful', 1), ('book', 1), ('learn', 1), ('best', 1), ('practitioner', 1), ('field', 1), ('wide', 1), ('working', 1), ('join', 1), ('contributor', 1), ('explain', 1), ('developed', 1), ('simple', 1), ('elegant', 1), ('solution', 1), ('project', 1), ('mar', 1), ('lander', 1), ('radiohead', 1), ('video', 1), ('explore', 1)]
[('powerbuilder', 4), ('application', 2), ('development', 2), ('version', 1), ('introduces', 1), ('many', 1), ('feature', 1), ('designed', 1), ('specifically', 1), ('blend', 1), ('traditional', 1), ('strength', 1), ('rapid', 1), ('client', 1), ('server', 1), ('tool', 1), ('new', 1), ('emerging', 1), ('model', 1), ('distributed', 1), ('developer', 1), ('need', 1), ('specific', 1), ('information', 1), ('interacting', 1), ('java', 1)]
[('test', 3), ('good', 3), ('developer', 2), ('writing', 2), ('agree', 1), ('automated', 1), ('idea', 1), ('structured', 1), ('still', 1), ('elusive', 1), ('skill', 1), ('many', 1), ('java', 1), ('groovy', 1), ('news', 1), ('practical', 1), ('guide', 1), ('show', 1), ('write', 1), ('concise', 1), ('highly', 1), ('readable', 1), ('spock', 1), ('innovative', 1), ('testing', 1), ('specification', 1)]
[('unix', 4), ('mac', 3), ('o', 3), ('system', 2), ('developer', 1), ('administrator', 1), ('lured', 1), ('root', 1), ('quickly', 1), ('discover', 1), ('performing', 1), ('task', 1), ('different', 1), ('accustomed', 1), ('geek', 1), ('serf', 1), ('bridge', 1), ('apple', 1), ('darwin', 1), ('traditional', 1), ('clear', 1), ('concise', 1), ('guide', 1), ('give', 1)]
[('analytical', 2), ('every', 1), ('organization', 1), ('bureau', 1), ('agency', 1), ('corporation', 1), ('fundamental', 1), ('need', 1), ('traditionally', 1), ('require', 1), ('significant', 1), ('amount', 1), ('data', 1), ('integration', 1), ('resource', 1), ('whether', 1), ('investigating', 1), ('money', 1), ('laundering', 1), ('insider', 1), ('trading', 1), ('insurance', 1), ('fraud', 1), ('terrorist', 1), ('behavior', 1), ('process', 1), ('system', 1), ('architecture', 1), ('similar', 1), ('fact', 1)]
[('nan', 1)]
[('pattern', 3), ('mapreduce', 2), ('framework', 2), ('design', 1), ('scattered', 1), ('among', 1), ('various', 1), ('research', 1), ('paper', 1), ('blog', 1), ('book', 1), ('handy', 1), ('guide', 1), ('brings', 1), ('together', 1), ('unique', 1), ('collection', 1), ('valuable', 1), ('save', 1), ('time', 1), ('effort', 1), ('regardless', 1), ('domain', 1), ('language', 1), ('development', 1), ('using', 1), ('explained', 1)]
[('version', 2), ('alert', 1), ('purchase', 1), ('check', 1), ('instructor', 1), ('review', 1), ('course', 1), ('syllabus', 1), ('ensure', 1), ('select', 1), ('correct', 1), ('isbn', 1), ('several', 1), ('pearson', 1), ('mylab', 1), ('amp', 1), ('mastering', 1), ('product', 1), ('exist', 1), ('title', 1), ('including', 1), ('customized', 1)]
[('weblogic', 2), ('bea', 1), ('server', 1), ('implement', 1), ('full', 1), ('range', 1), ('ee', 1), ('technology', 1), ('includes', 1), ('many', 1), ('additional', 1), ('feature', 1), ('advanced', 1), ('management', 1), ('clustering', 1), ('web', 1), ('service', 1), ('widely', 1), ('adopted', 1), ('form', 1), ('core', 1), ('platform', 1), ('providing', 1), ('stable', 1), ('framework', 1), ('building', 1), ('scalable', 1), ('highly', 1), ('available', 1), ('secure', 1), ('application', 1), ('fact', 1), ('long', 1), ('list', 1)]
[('graph', 3), ('database', 3), ('query', 2), ('discover', 1), ('help', 1), ('manage', 1), ('highly', 1), ('connected', 1), ('data', 1), ('practical', 1), ('book', 1), ('learn', 1), ('design', 1), ('implement', 1), ('brings', 1), ('power', 1), ('bear', 1), ('broad', 1), ('range', 1), ('problem', 1), ('domain', 1), ('whether', 1), ('want', 1), ('speed', 1), ('response', 1), ('user', 1), ('build', 1), ('adapt', 1)]
[('tomcat', 3), ('web', 2), ('server', 2), ('guide', 2), ('take', 1), ('book', 1), ('versatile', 1), ('subject', 1), ('cover', 1), ('apache', 1), ('popular', 1), ('open', 1), ('source', 1), ('servlet', 1), ('jsp', 1), ('container', 1), ('high', 1), ('performance', 1), ('definitive', 1), ('valuable', 1), ('reference', 1), ('administrator', 1), ('webmaster', 1), ('useful', 1), ('programmer', 1), ('want', 1), ('use', 1), ('application', 1), ('development', 1)]
[('data', 2), ('search', 2), ('engine', 2), ('wanted', 2), ('internet', 1), ('profusion', 1), ('information', 1), ('made', 1), ('hungry', 1), ('better', 1), ('necessity', 1), ('many', 1), ('become', 1), ('pretty', 1), ('adept', 1), ('query', 1), ('time', 1), ('even', 1), ('powerful', 1), ('enough', 1), ('different', 1), ('form', 1), ('presented', 1)]
[('database', 2), ('application', 2), ('performance', 1), ('meet', 1), ('expectation', 1), ('turn', 1), ('expensive', 1), ('hardware', 1), ('upgrade', 1), ('solve', 1), ('problem', 1), ('reach', 1), ('book', 1), ('refactoring', 1), ('sql', 1), ('provides', 1), ('set', 1), ('tested', 1), ('option', 1), ('making', 1), ('code', 1), ('modification', 1), ('dramatically', 1), ('improve', 1), ('way', 1), ('function', 1), ('backed', 1), ('real', 1), ('world', 1)]
[('mobile', 2), ('user', 2), ('hundred', 1), ('thousand', 1), ('application', 1), ('available', 1), ('today', 1), ('app', 1), ('capture', 1), ('immediately', 1), ('book', 1), ('provides', 1), ('practical', 1), ('technique', 1), ('help', 1), ('catch', 1), ('keep', 1), ('attention', 1), ('learn', 1), ('core', 1), ('principle', 1), ('designing', 1), ('effective', 1), ('interface', 1), ('along', 1), ('set', 1), ('common', 1), ('pattern', 1), ('interaction', 1), ('design', 1), ('type', 1)]
[('java', 4), ('best', 2), ('feature', 2), ('build', 2), ('language', 2), ('condense', 1), ('better', 1), ('application', 1), ('simpler', 1), ('version', 1), ('book', 1), ('veteran', 1), ('sun', 1), ('lab', 1), ('engineer', 1), ('jim', 1), ('waldo', 1), ('reveals', 1), ('part', 1), ('useful', 1), ('make', 1), ('among', 1), ('programming', 1), ('available', 1), ('every', 1), ('eventually', 1), ('crud', 1)]
[('network', 2), ('guide', 2), ('linux', 1), ('administrator', 1), ('third', 1), ('edition', 1), ('dispenses', 1), ('practical', 1), ('advice', 1), ('need', 1), ('join', 1), ('along', 1), ('hardware', 1), ('consideration', 1), ('highly', 1), ('acclaimed', 1), ('take', 1), ('depth', 1), ('look', 1), ('essential', 1), ('networking', 1), ('software', 1), ('come', 1), ('operating', 1), ('system', 1), ('including', 1), ('basic', 1), ('infrastructure', 1), ('tcp', 1), ('ip', 1), ('wireless', 1)]
[('wordpress', 3), ('make', 2), ('whether', 1), ('promoting', 1), ('business', 1), ('writing', 1), ('travel', 1), ('adventure', 1), ('head', 1), ('first', 1), ('teach', 1), ('blog', 1), ('look', 1), ('unique', 1), ('attention', 1), ('grabbing', 1), ('dig', 1), ('complex', 1), ('feature', 1), ('website', 1), ('work', 1), ('learn', 1), ('move', 1), ('beyond', 1), ('standard', 1)]
[('edition', 2), ('programming', 2), ('style', 2), ('book', 2), ('new', 2), ('first', 1), ('exercise', 1), ('honored', 1), ('acm', 1), ('notable', 1), ('praised', 1), ('best', 1), ('decade', 1), ('retains', 1), ('presentation', 1), ('upgraded', 1), ('python', 1), ('section', 1), ('neural', 1), ('network', 1), ('using', 1), ('simple', 1), ('computational', 1), ('task', 1), ('term', 1), ('frequency', 1)]
[('maya', 3), ('animation', 3), ('book', 2), ('software', 2), ('pointer', 1), ('thrown', 1), ('guide', 1), ('written', 1), ('professional', 1), ('animator', 1), ('provides', 1), ('complete', 1), ('set', 1), ('step', 1), ('walkthroughs', 1), ('essential', 1), ('technique', 1), ('increase', 1), ('speed', 1), ('efficiency', 1), ('using', 1), ('character', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('new', 2), ('technology', 2), ('allow', 2), ('york', 1), ('time', 1), ('notable', 1), ('book', 1), ('year', 1), ('near', 1), ('future', 1), ('smart', 1), ('big', 1), ('data', 1), ('make', 1), ('large', 1), ('scale', 1), ('sophisticated', 1), ('intervention', 1), ('politics', 1), ('culture', 1), ('everyday', 1), ('life', 1), ('solve', 1), ('problem', 1), ('highly', 1), ('original', 1), ('way', 1), ('create', 1), ('incentive', 1), ('right', 1)]
[('lt', 3), ('gt', 3), ('zfs', 2), ('storage', 2), ('learn', 1), ('basic', 1), ('linux', 1), ('book', 1), ('delivers', 1), ('explanation', 1), ('key', 1), ('feature', 1), ('provides', 1), ('best', 1), ('practice', 1), ('planning', 1), ('creating', 1), ('sharing', 1), ('file', 1), ('system', 1), ('simplifies', 1), ('many', 1)]
[('ee', 2), ('write', 2), ('java', 2), ('discover', 1), ('jakarta', 1), ('context', 1), ('dependency', 1), ('injection', 1), ('cdi', 1), ('framework', 1), ('help', 1), ('better', 1), ('code', 1), ('use', 1), ('defined', 1), ('enterprise', 1), ('based', 1), ('component', 1), ('bean', 1), ('ejbs', 1), ('nbsp', 1), ('wanted', 1), ('clean', 1)]
[('business', 4), ('administration', 2), ('process', 1), ('management', 1), ('usually', 1), ('treated', 1), ('different', 1), ('perspective', 1), ('computer', 1), ('science', 1), ('professional', 1), ('tend', 1), ('consider', 1), ('information', 1), ('technology', 1), ('subordinate', 1), ('aspect', 1)]
[('team', 3), ('liftoff', 2), ('project', 2), ('ready', 1), ('set', 1), ('align', 1), ('purpose', 1), ('successful', 1), ('delivery', 1), ('learn', 1), ('new', 1), ('insight', 1), ('technique', 1), ('starting', 1), ('right', 1), ('way', 1), ('expanded', 1), ('concept', 1), ('planning', 1), ('organizing', 1), ('conducting', 1), ('meeting', 1), ('real', 1), ('life', 1), ('story', 1), ('illustrate', 1), ('others', 1), ('effectively', 1), ('started', 1), ('restarted', 1)]
[('excel', 4), ('outside', 2), ('box', 2), ('follow', 1), ('designed', 1), ('guru', 1), ('mind', 1), ('introducing', 1), ('advanced', 1), ('creative', 1), ('solution', 1), ('hack', 1), ('software', 1), ('challenging', 1), ('problem', 1), ('series', 1), ('technique', 1), ('table', 1), ('formula', 1), ('chart', 1), ('guide', 1), ('detail', 1), ('process', 1), ('used', 1)]
[('itil', 3), ('foundation', 2), ('essential', 1), ('contains', 1), ('everything', 1), ('need', 1), ('know', 1), ('pas', 1), ('certificate', 1), ('plus', 1), ('cover', 1), ('practice', 1), ('concept', 1), ('addressed', 1), ('part', 1), ('syllabus', 1), ('making', 1), ('ideal', 1), ('newly', 1), ('qualified', 1), ('practitioner', 1), ('second', 1), ('edition', 1), ('updated', 1), ('align', 1), ('amendment', 1)]
[('present', 1), ('mathematically', 1), ('rigorous', 1), ('philosophically', 1), ('sound', 1), ('foundation', 1), ('science', 1), ('information', 1)]
[('first', 1), ('introductory', 1), ('account', 1), ('using', 1), ('string', 1), ('diagram', 1), ('reason', 1), ('elementary', 1), ('category', 1), ('theory', 1)]
[('automaton', 2), ('explains', 1), ('real', 1), ('time', 1), ('specification', 1), ('technique', 1), ('duration', 1), ('calculus', 1), ('timed', 1), ('plc', 1), ('needed', 1), ('embedded', 1), ('safety', 1), ('critical', 1), ('application', 1)]
[('cambridge', 2), ('lcf', 2), ('logic', 2), ('book', 1), ('concerned', 1), ('technique', 1), ('formal', 1), ('theorem', 1), ('proving', 1), ('particular', 1), ('reference', 1), ('computable', 1), ('function', 1), ('computer', 1), ('program', 1), ('reasoning', 1), ('computation', 1), ('combine', 1), ('method', 1), ('mathematical', 1), ('domain', 1), ('theory', 1), ('basis', 1), ('denotational', 1), ('approach', 1), ('specifying', 1), ('meaning', 1)]
[('written', 1), ('fifty', 1), ('top', 1), ('researcher', 1), ('text', 1), ('comprehensively', 1), ('cover', 1), ('major', 1), ('inter', 1), ('disciplinary', 1), ('field', 1), ('important', 1), ('application', 1)]
[('explains', 1), ('method', 1), ('behind', 1), ('machine', 1), ('learning', 1), ('system', 1), ('personalize', 1), ('prediction', 1), ('individual', 1), ('user', 1), ('recommendation', 1), ('dating', 1), ('fashion', 1)]
[('process', 3), ('software', 2), ('evolving', 1), ('book', 1), ('provides', 1), ('basic', 1), ('building', 1), ('block', 1), ('evolution', 1), ('devops', 1), ('scaling', 1), ('agile', 1), ('gsd', 1), ('order', 1), ('lay', 1), ('solid', 1), ('foundation', 1), ('successful', 1)]
[('second', 1), ('edition', 1), ('accepted', 1), ('reference', 1), ('work', 1), ('updated', 1), ('reflect', 1), ('rapid', 1), ('development', 1), ('field', 1), ('cover', 1), ('imaging', 1), ('written', 1), ('expert', 1), ('practitioner', 1), ('leading', 1), ('company', 1), ('operating', 1), ('machine', 1), ('vision', 1)]
[('big', 3), ('data', 3), ('business', 2), ('integrate', 1), ('drive', 1), ('competitive', 1), ('advantage', 1), ('sustainable', 1), ('success', 1), ('mba', 1), ('brings', 1), ('insight', 1), ('expertise', 1), ('leveraging', 1)]
[('learning', 5), ('deep', 4), ('software', 2), ('demystifying', 1), ('discover', 1), ('train', 1), ('model', 1), ('build', 1), ('real', 1), ('library', 1), ('verification', 1), ('study', 1)]
[('python', 3), ('linguistics', 2), ('student', 2), ('learn', 1), ('use', 1), ('digital', 1), ('humanity', 1), ('research', 1), ('perfect', 1), ('working', 1), ('first', 1), ('time', 1), ('programming', 1), ('longer', 1), ('computer', 1), ('science', 1), ('essential', 1), ('skill', 1)]
[('advanced', 2), ('expand', 1), ('toolkit', 1), ('quickly', 1), ('efficiently', 1), ('resource', 1), ('newly', 1), ('revised', 1), ('sixth', 1), ('edition', 1), ('professional', 1), ('veteran', 1), ('software', 1), ('engineer', 1), ('developer', 1), ('marc', 1), ('gregoire', 1), ('delivers', 1), ('yet', 1), ('another', 1), ('volume', 1), ('raise', 1), ('bar', 1)]
[('cybersecurity', 3), ('risk', 2), ('management', 2), ('mastering', 1), ('fundamental', 1), ('using', 1), ('nist', 1), ('framework', 1), ('veteran', 1), ('technology', 1), ('analyst', 1), ('cynthia', 1), ('brumfield', 1), ('contribution', 1)]
[('book', 2), ('coverage', 2), ('market', 1), ('provide', 1), ('limited', 1), ('advanced', 1), ('cdns', 1), ('streaming', 1), ('technology', 1), ('concentrating', 1), ('solely', 1), ('fundamental', 1), ('provides', 1), ('date', 1), ('comprehensive', 1), ('state', 1), ('art', 1), ('advancement', 1)]
[('excel', 3), ('practical', 2), ('walkthroughs', 1), ('useful', 1), ('feature', 1), ('looking', 1), ('easy', 1), ('understand', 1), ('guidance', 1), ('go', 1), ('newbie', 1), ('number', 1), ('crunching', 1), ('pro', 1), ('workbook', 1), ('dummy', 1), ('hand', 1), ('tutorial', 1), ('waiting', 1)]
[('first', 2), ('cybersecurity', 2), ('chief', 2), ('expert', 1), ('discussion', 1), ('foundation', 1), ('principle', 1), ('rick', 1), ('howard', 1), ('security', 1), ('officer', 1), ('analyst', 1), ('senior', 1), ('fellow', 1)]
[('advance', 2), ('data', 2), ('science', 2), ('analytics', 2), ('presenting', 1), ('concept', 1), ('volume', 1), ('written', 1), ('edited', 1), ('global', 1), ('team', 1), ('expert', 1), ('go', 1), ('practical', 1), ('application', 1)]
[('comptia', 2), ('cysa', 2), ('certification', 2), ('exam', 2), ('using', 2), ('study', 2), ('detailed', 2), ('prepare', 1), ('fully', 1), ('updated', 1), ('self', 1), ('resource', 1), ('take', 1), ('current', 1), ('version', 1), ('challenging', 1), ('confidence', 1), ('information', 1), ('contained', 1), ('date', 1), ('integrated', 1), ('system', 1), ('based', 1), ('proven', 1), ('pedagogy', 1), ('book', 1), ('contains', 1), ('explanation', 1)]
[('exam', 3), ('comptia', 2), ('cysa', 2), ('self', 2), ('study', 2), ('objective', 2), ('prepare', 1), ('certification', 1), ('fully', 1), ('updated', 1), ('resource', 1), ('highly', 1), ('effective', 1), ('system', 1), ('provides', 1), ('complete', 1), ('coverage', 1), ('every', 1), ('challenging', 1), ('cybersecurity', 1), ('analyst', 1), ('find', 1), ('learning', 1), ('beginning', 1), ('chapter', 1), ('tip', 1), ('depth', 1), ('explanation', 1)]
[('advanced', 2), ('persistent', 2), ('threat', 2), ('master', 1), ('tactic', 1), ('tool', 1), ('hacker', 1), ('book', 1), ('security', 1), ('expert', 1), ('tyler', 1), ('wrightson', 1), ('reveals', 1), ('mindset', 1), ('skill', 1), ('effective', 1), ('attack', 1), ('vector', 1), ('needed', 1), ('compromise', 1), ('target', 1), ('choice', 1), ('hacking', 1), ('discus', 1), ('strategic', 1), ('issue', 1), ('make', 1), ('organization', 1), ('vulnerable', 1), ('provides', 1)]
[('become', 2), ('today', 1), ('technology', 1), ('part', 1), ('overall', 1), ('corporate', 1), ('success', 1), ('effectiveness', 1), ('left', 1), ('chance', 1), ('stake', 1), ('high', 1), ('fortunately', 1), ('idea', 1), ('quality', 1), ('management', 1), ('reinvigorated', 1), ('last', 1), ('decade', 1), ('process', 1), ('program', 1), ('prevalent', 1), ('available', 1), ('option', 1), ('three', 1), ('moved', 1)]
[('project', 2), ('concise', 1), ('yet', 1), ('comprehensive', 1), ('overview', 1), ('airtable', 1), ('versatile', 1), ('platform', 1), ('emerge', 1), ('code', 1), ('movement', 1), ('whether', 1), ('planning', 1), ('new', 1), ('sharing', 1), ('data', 1), ('analysis', 1), ('within', 1), ('organization', 1), ('tracking', 1), ('detailed', 1), ('initiative', 1), ('among', 1), ('stakeholder', 1), ('dealing', 1), ('requires', 1), ('structured', 1), ('collaboration', 1)]
[('sequence', 2), ('tool', 2), ('used', 2), ('comparative', 2), ('understand', 2), ('similarity', 1), ('powerful', 1), ('discovering', 1), ('biological', 1), ('function', 1), ('ancient', 1), ('greek', 1), ('anatomy', 1), ('human', 1), ('body', 1), ('linguist', 1), ('rosetta', 1), ('stone', 1), ('decipher', 1), ('egyptian', 1), ('hieroglyph', 1), ('today', 1), ('use', 1), ('analysis', 1), ('genome', 1), ('blast', 1), ('basic', 1), ('local', 1), ('alignment', 1), ('search', 1)]
[('agile', 2), ('transformation', 2), ('hesselberg', 2), ('long', 1), ('time', 1), ('competitive', 1), ('advantage', 1), ('disappear', 1), ('astute', 1), ('executive', 1), ('change', 1), ('agent', 1), ('know', 1), ('achieve', 1), ('true', 1), ('unlocking', 1), ('agility', 1), ('jorgen', 1), ('reveals', 1), ('work', 1), ('overcome', 1), ('daunting', 1), ('obstacle', 1), ('distilling', 1), ('year', 1), ('experience', 1), ('leading', 1), ('enterprise', 1)]
[('learner', 2), ('know', 2), ('created', 2), ('still', 1), ('training', 1), ('goal', 1), ('changing', 1), ('behavior', 1), ('anyone', 1), ('learning', 1), ('experience', 1), ('big', 1), ('gap', 1), ('knowing', 1)]
[('hour', 2), ('minecraft', 2), ('session', 1), ('le', 1), ('sam', 1), ('teach', 1), ('mod', 1), ('development', 1), ('help', 1), ('transform', 1), ('anything', 1), ('imagine', 1), ('share', 1), ('vision', 1), ('million', 1), ('player', 1), ('worldwide', 1), ('learn', 1)]
[('word', 3), ('microsoft', 2), ('quick', 1), ('way', 1), ('learn', 1), ('window', 1), ('learning', 1), ('made', 1), ('easy', 1), ('done', 1), ('quickly', 1), ('jump', 1), ('wherever', 1), ('need', 1), ('answer', 1), ('brisk', 1), ('lesson', 1), ('detailed', 1), ('screenshots', 1), ('show', 1), ('exactly', 1), ('step', 1)]
[('nan', 1)]
[('adobe', 2), ('indesign', 2), ('learn', 1), ('graphic', 1), ('design', 1), ('using', 1), ('classroom', 1), ('book', 1), ('release', 1), ('us', 1), ('real', 1), ('world', 1), ('project', 1), ('based', 1), ('learning', 1), ('cover', 1), ('basic', 1), ('beyond', 1), ('providing', 1), ('countless', 1), ('tip', 1), ('technique', 1), ('help', 1), ('become', 1), ('productive', 1)]
[('book', 2), ('part', 2), ('fourth', 2), ('algorithm', 2), ('edition', 1), ('robert', 1), ('sedgewick', 1), ('kevin', 1), ('wayne', 1), ('leading', 1), ('textbook', 1), ('today', 1), ('widely', 1), ('used', 1), ('college', 1), ('university', 1), ('worldwide', 1), ('contains', 1), ('chapter', 1)]
[('book', 2), ('part', 2), ('ii', 2), ('algorithm', 2), ('fourth', 1), ('edition', 1), ('robert', 1), ('sedgewick', 1), ('kevin', 1), ('wayne', 1), ('leading', 1), ('textbook', 1), ('today', 1), ('widely', 1), ('used', 1), ('college', 1), ('university', 1), ('worldwide', 1), ('contains', 1), ('chapter', 1)]
[('minecraft', 2), ('mojang', 2), ('synergy', 2), ('notch', 2), ('development', 2), ('ab', 2), ('registered', 1), ('trademark', 1), ('book', 1), ('affiliated', 1), ('sponsored', 1), ('easiest', 1), ('quickest', 1), ('entertaining', 1), ('introduction', 1), ('creating', 1)]
[('need', 1), ('know', 1), ('defending', 1), ('network', 1), ('book', 1), ('clearly', 1), ('explains', 1), ('concept', 1), ('terminology', 1), ('challenge', 1), ('tool', 1), ('skill', 1), ('cover', 1), ('key', 1), ('security', 1), ('standard', 1), ('model', 1), ('business', 1), ('government', 1), ('perfect', 1), ('introduction', 1)]
[('nan', 1)]
[('want', 2), ('mac', 2), ('system', 2), ('take', 1), ('real', 1), ('control', 1), ('hack', 1), ('book', 1), ('help', 1), ('dig', 1), ('surface', 1), ('tweak', 1), ('preference', 1), ('mount', 1), ('drive', 1), ('device', 1), ('generally', 1), ('thing', 1), ('apple', 1), ('expect', 1), ('little', 1), ('effort', 1), ('make', 1), ('application', 1), ('perform', 1), ('exactly', 1), ('way', 1)]
[('data', 3), ('business', 2), ('quality', 2), ('world', 1), ('ingest', 1), ('combined', 1), ('quintillion', 1), ('byte', 1), ('every', 1), ('day', 1), ('vast', 1), ('amount', 1), ('used', 1), ('build', 1), ('product', 1), ('power', 1), ('ai', 1), ('system', 1), ('drive', 1), ('decision', 1), ('poor', 1), ('plain', 1), ('bad', 1), ('practical', 1), ('book', 1), ('show', 1), ('ensure', 1), ('organization', 1), ('relies', 1), ('contains', 1), ('high', 1)]
[('data', 2), ('analytics', 1), ('project', 1), ('frequently', 1), ('long', 1), ('drawn', 1), ('affair', 1), ('requiring', 1), ('multiple', 1), ('team', 1), ('skill', 1), ('clean', 1), ('join', 1), ('eventually', 1), ('turn', 1), ('analysis', 1), ('timely', 1), ('decision', 1), ('making', 1), ('alteryx', 1), ('designer', 1), ('change', 1), ('low', 1), ('code', 1), ('self', 1), ('service', 1), ('drag', 1), ('drop', 1), ('workflow', 1), ('platform', 1), ('new', 1), ('experienced', 1), ('business', 1), ('analyst', 1), ('deliver', 1)]
[('visualization', 2), ('graphic', 1), ('presentation', 1), ('data', 1), ('portrayal', 1), ('meant', 1), ('reveal', 1), ('complex', 1), ('information', 1), ('glance', 1), ('think', 1), ('familiar', 1), ('map', 1), ('new', 1), ('york', 1), ('city', 1), ('subway', 1), ('system', 1), ('diagram', 1), ('human', 1), ('brain', 1), ('successful', 1), ('beautiful', 1), ('aesthetic', 1), ('design', 1), ('elegant', 1), ('layer', 1), ('detail', 1), ('efficiently', 1)]
[('browser', 3), ('real', 2), ('time', 2), ('communication', 2), ('peer', 2), ('piece', 2), ('deliver', 1), ('rich', 1), ('audio', 1), ('video', 1), ('data', 1), ('exchange', 1), ('right', 1), ('without', 1), ('need', 1), ('proprietary', 1), ('plug', 1), ('in', 1), ('concise', 1), ('hand', 1), ('guide', 1), ('show', 1), ('use', 1), ('emerging', 1), ('web', 1), ('webrtc', 1), ('technology', 1), ('build', 1), ('application', 1), ('author', 1)]
[('reporting', 2), ('tool', 2), ('effective', 1), ('repeatable', 1), ('insightful', 1), ('analytics', 1), ('key', 1), ('roi', 1), ('customer', 1), ('relationship', 1), ('management', 1), ('system', 1), ('many', 1), ('organization', 1), ('lack', 1), ('automated', 1), ('need', 1), ('run', 1), ('business', 1), ('instead', 1), ('choose', 1), ('massage', 1), ('data', 1), ('excel', 1), ('better', 1), ('way', 1), ('salesforce', 1), ('standard', 1), ('provide', 1), ('rich', 1), ('set', 1)]
[('reference', 2), ('hacker', 1), ('culture', 1), ('esoteric', 1), ('entertaining', 1), ('help', 1), ('written', 1), ('longtime', 1), ('cybersecurity', 1), ('researcher', 1), ('writer', 1), ('kim', 1), ('crawley', 1), ('fun', 1), ('introduces', 1), ('key', 1), ('company', 1), ('fundamental', 1), ('idea', 1), ('milestone', 1), ('film', 1), ('game', 1), ('magazine', 1), ('annals', 1), ('hacking', 1), ('airgapping', 1), ('phreaking', 1), ('zombie', 1), ('malware', 1)]
[('content', 2), ('cm', 2), ('need', 1), ('launch', 1), ('feature', 1), ('rich', 1), ('website', 1), ('quickly', 1), ('authoring', 1), ('want', 1), ('use', 1), ('powerful', 1), ('robust', 1), ('scalable', 1), ('management', 1), ('system', 1), ('trust', 1), ('short', 1), ('cut', 1), ('running', 1), ('joomla', 1), ('freely', 1), ('available', 1), ('open', 1), ('source', 1), ('learn', 1), ('install', 1), ('configure', 1), ('customize', 1), ('extend', 1)]
[('code', 2), ('maintain', 2), ('software', 2), ('easy', 2), ('felt', 1), ('frustrated', 1), ('working', 1), ('difficult', 1), ('source', 1), ('big', 1), ('problem', 1), ('development', 1), ('today', 1), ('leading', 1), ('costly', 1), ('delay', 1), ('defect', 1), ('part', 1), ('solution', 1), ('practical', 1), ('book', 1), ('learn', 1), ('follow', 1), ('guideline', 1), ('delivering', 1), ('adapt', 1)]
[('element', 2), ('score', 1), ('practical', 1), ('recipe', 1), ('use', 1), ('project', 1), ('right', 1), ('away', 1), ('cookbook', 1), ('help', 1), ('gain', 1), ('hand', 1), ('experience', 1), ('html', 1), ('versatile', 1), ('collection', 1), ('clear', 1), ('solution', 1), ('handling', 1), ('issue', 1), ('everything', 1), ('markup', 1), ('semantics', 1), ('web', 1), ('form', 1), ('audio', 1), ('video', 1), ('related', 1), ('technology', 1), ('geolocation', 1), ('rich', 1)]
[('wil', 2), ('geek', 2), ('true', 2), ('life', 2), ('wheaton', 1), ('blogger', 1), ('trek', 1), ('next', 1), ('generation', 1), ('wesley', 1), ('crusher', 1), ('give', 1), ('five', 1), ('short', 1), ('tale', 1), ('called', 1), ('space', 1), ('age', 1), ('dancing', 1), ('barefoot', 1), ('unflinching', 1), ('honesty', 1), ('examines', 1), ('love', 1), ('web', 1), ('absurdity', 1), ('hollywood', 1), ('compelling', 1), ('autobiographical', 1), ('narrative', 1), ('based', 1), ('piece', 1)]
[('engine', 2), ('learn', 1), ('everything', 1), ('need', 1), ('know', 1), ('use', 1), ('powerful', 1), ('unity', 1), ('full', 1), ('potential', 1), ('game', 1), ('development', 1), ('simulation', 1), ('artificial', 1), ('intelligence', 1), ('beyond', 1), ('basic', 1), ('scripting', 1), ('technique', 1), ('interactivity', 1), ('ai', 1), ('behavior', 1), ('animation', 1), ('narrative', 1), ('networking', 1), ('flexible', 1), ('mind', 1), ('bogglingly', 1), ('popular', 1), ('useful', 1)]
[('oracle', 3), ('performance', 2), ('even', 2), ('system', 1), ('inefficiency', 1), ('often', 1), ('go', 1), ('undetected', 1), ('month', 1), ('year', 1), ('intense', 1), ('scrutiny', 1), ('traditional', 1), ('analysis', 1), ('method', 1), ('tool', 1), ('fundamentally', 1), ('flawed', 1), ('unreliable', 1), ('inefficient', 1), ('dba', 1), ('developer', 1), ('familiar', 1), ('outlay', 1), ('time', 1), ('resource', 1), ('blown', 1), ('budget', 1)]
[('data', 3), ('quantity', 2), ('enormous', 1), ('go', 1), ('unused', 1), ('underused', 1), ('today', 1), ('simply', 1), ('visualize', 1), ('relationship', 1), ('using', 1), ('downloadable', 1), ('programming', 1), ('environment', 1), ('developed', 1), ('author', 1), ('visualizing', 1), ('demonstrates', 1), ('method', 1), ('representing', 1), ('accurately', 1), ('web', 1), ('elsewhere', 1), ('complete', 1), ('user', 1), ('interaction', 1), ('animation', 1)]
[('wearable', 2), ('perfect', 1), ('time', 1), ('enter', 1), ('industry', 1), ('range', 1), ('product', 1), ('appeared', 1), ('recent', 1), ('year', 1), ('determine', 1), ('idea', 1), ('resonate', 1), ('user', 1), ('leaping', 1), ('market', 1), ('practical', 1), ('guide', 1), ('author', 1), ('scott', 1), ('sullivan', 1), ('examines', 1), ('current', 1), ('ecosystem', 1), ('demonstrates', 1), ('impact', 1)]
[('data', 4), ('time', 2), ('missing', 1), ('part', 1), ('academic', 1), ('curriculum', 1), ('long', 1), ('affected', 1), ('challenging', 1), ('creating', 1), ('informed', 1), ('culture', 1), ('help', 1), ('pivot', 1), ('quickly', 1), ('prevent', 1), ('expensive', 1), ('misstep', 1), ('developing', 1), ('curious', 1), ('organization', 1), ('take', 1), ('advantage', 1), ('burgeoning', 1), ('resource', 1), ('available', 1), ('result', 1)]
[('intelligence', 2), ('ai', 2), ('agency', 2), ('ethic', 1), ('artificial', 1), ('develops', 1), ('thesis', 1), ('unprecedented', 1), ('divorce', 1), ('basis', 1), ('new', 1), ('form', 1), ('harnessed', 1), ('ethically', 1), ('unethically', 1), ('luciano', 1), ('floridi', 1), ('argues', 1), ('favour', 1), ('marriage', 1), ('green', 1), ('environmentalism', 1), ('blue', 1), ('digital', 1), ('technology', 1)]
[('social', 2), ('fascinating', 1), ('dictionary', 1), ('cover', 1), ('whole', 1), ('realm', 1), ('medium', 1), ('providing', 1), ('accessible', 1), ('authoritative', 1), ('concise', 1), ('entry', 1), ('centred', 1), ('primarily', 1), ('website', 1), ('application', 1), ('enable', 1), ('user', 1), ('create', 1), ('share', 1), ('content', 1), ('participate', 1), ('networking', 1)]
[('artificial', 1), ('intelligence', 1), ('ai', 1), ('continues', 1), ('seep', 1), ('area', 1), ('society', 1), ('culture', 1), ('critical', 1), ('social', 1), ('perspective', 1), ('technology', 1), ('urgent', 1), ('bringing', 1), ('together', 1), ('state', 1), ('art', 1), ('research', 1), ('experienced', 1), ('scholar', 1)]
[('product', 3), ('relational', 3), ('sql', 2), ('today', 1), ('mainstream', 1), ('database', 1), ('support', 1), ('language', 1), ('theory', 1), ('supposed', 1), ('based', 1), ('truly', 1), ('sadly', 1), ('answer', 1), ('book', 1), ('show', 1), ('real', 1), ('better', 1), ('currently', 1), ('available', 1)]
[('research', 2), ('field', 2), ('communication', 2), ('ai', 2), ('forward', 1), ('looking', 1), ('handbook', 1), ('make', 1), ('insightful', 1), ('contribution', 1), ('emerging', 1), ('study', 1), ('bringing', 1), ('together', 1), ('state', 1), ('art', 1), ('leading', 1), ('international', 1), ('scholar', 1), ('across', 1), ('various', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('complex', 1), ('intersection', 1)]
[('book', 1), ('straight', 1), ('talk', 1), ('delivering', 1), ('comprehensive', 1), ('privacy', 1), ('roadmap', 1), ('applied', 1), ('organized', 1), ('time', 1), ('tested', 1), ('organizational', 1), ('effectiveness', 1), ('model', 1), ('mckinsey', 1), ('framework', 1), ('practical', 1), ('insightful', 1), ('story', 1), ('lesson', 1), ('learned', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('openstack', 2), ('gain', 1), ('better', 1), ('understanding', 1), ('work', 1), ('modern', 1), ('iaa', 1), ('cloud', 1), ('platform', 1), ('updated', 1), ('book', 1), ('designed', 1), ('help', 1), ('pas', 1), ('latest', 1), ('yoga', 1), ('version', 1), ('certified', 1), ('administrator', 1), ('coa', 1), ('exam', 1), ('open', 1), ('infrastructure', 1)]
[('game', 2), ('develop', 1), ('engine', 1), ('give', 1), ('experience', 1), ('core', 1), ('understanding', 1), ('foundational', 1), ('concept', 1), ('building', 1), ('complex', 1), ('fun', 1), ('played', 1), ('across', 1), ('internet', 1), ('via', 1), ('popular', 1), ('web', 1), ('browser', 1), ('book', 1), ('organized', 1)]
[('query', 3), ('write', 2), ('optimized', 1), ('book', 1), ('help', 1), ('perform', 1), ('fast', 1), ('deliver', 1), ('result', 1), ('time', 1), ('learn', 1), ('optimization', 1), ('dark', 1), ('art', 1), ('practiced', 1), ('small', 1), ('secretive', 1), ('cabal', 1), ('sorcerer', 1), ('motivated', 1), ('professional', 1)]
[('lt', 1), ('div', 1), ('gt', 1), ('master', 1), ('sql', 1), ('server', 1), ('concurrency', 1), ('model', 1), ('implement', 1), ('high', 1), ('throughput', 1), ('system', 1), ('deliver', 1), ('transactional', 1), ('consistency', 1), ('application', 1), ('customer', 1), ('book', 1), ('explains', 1), ('troubleshoot', 1), ('address', 1), ('blocking', 1), ('problem', 1), ('deadlock', 1)]
[('design', 3), ('thinking', 3), ('solution', 2), ('learn', 1), ('fundamental', 1), ('apply', 1), ('technique', 1), ('defining', 1), ('software', 1), ('development', 1), ('ai', 1), ('approach', 1), ('innovation', 1), ('identifies', 1), ('problem', 1), ('generates', 1), ('idea', 1)]
[('sql', 2), ('take', 1), ('deep', 1), ('dive', 1), ('perhaps', 1), ('single', 1), ('important', 1), ('facet', 1), ('query', 1), ('performance', 1), ('index', 1), ('best', 1), ('use', 1), ('newly', 1), ('updated', 1), ('server', 1), ('azure', 1), ('fourth', 1), ('edition', 1), ('includes', 1), ('new', 1), ('guidance', 1), ('feature', 1), ('related', 1), ('columnstore', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('learn', 1), ('practical', 1), ('applied', 1), ('openstack', 1), ('cloud', 1), ('design', 1), ('solution', 1), ('gain', 1), ('maximum', 1), ('control', 1), ('infrastructure', 1), ('achieve', 1), ('complete', 1), ('controlled', 1), ('customizable', 1)]
[('search', 3), ('solr', 2), ('build', 1), ('anenterprise', 1), ('engine', 1), ('using', 1), ('apache', 1), ('index', 1), ('document', 1), ('ingestdata', 1), ('varied', 1), ('source', 1), ('apply', 1), ('various', 1), ('text', 1), ('processing', 1), ('technique', 1), ('utilizedifferent', 1), ('capability', 1), ('customize', 1), ('retrieve', 1), ('desiredresults', 1)]
[('step', 2), ('learn', 1), ('program', 1), ('using', 1), ('beginning', 1), ('first', 1), ('principle', 1), ('progressing', 1), ('example', 1), ('become', 1), ('competent', 1), ('language', 1), ('programmer', 1), ('need', 1), ('book', 1), ('widely', 1), ('available', 1), ('compiler', 1), ('soon', 1)]
[('book', 1), ('provides', 1), ('comprehensive', 1), ('learning', 1), ('journey', 1), ('aimed', 1), ('helping', 1), ('master', 1), ('ansible', 1), ('efficiently', 1), ('automate', 1), ('range', 1), ('enterprise', 1), ('network', 1), ('device', 1), ('router', 1), ('switch', 1), ('firewall', 1), ('nbsp', 1), ('wireless', 1), ('lan', 1), ('controller', 1), ('wlc', 1), ('linux', 1), ('server', 1)]
[('trace', 2), ('log', 2), ('book', 1), ('help', 1), ('analyze', 1), ('different', 1), ('software', 1), ('environment', 1), ('communicate', 1), ('analysis', 1), ('result', 1), ('using', 1), ('pattern', 1), ('language', 1), ('cover', 1), ('everything', 1), ('small', 1), ('debugging', 1), ('distributed', 1), ('billion', 1), ('message', 1)]
[('step', 2), ('troubleshoot', 1), ('window', 1), ('way', 1), ('expert', 1), ('whatever', 1), ('device', 1), ('form', 1), ('factor', 1), ('using', 1), ('focus', 1), ('problem', 1), ('commonly', 1), ('plague', 1), ('pc', 1), ('user', 1), ('fix', 1), ('approach', 1), ('help', 1), ('understand', 1), ('cause', 1), ('solution', 1)]
[('chatgpt', 2), ('explore', 1), ('role', 1), ('play', 1), ('business', 1), ('including', 1), ('operation', 1), ('marketing', 1), ('sale', 1), ('delivery', 1), ('concise', 1), ('book', 1), ('illustrates', 1), ('changing', 1), ('way', 1), ('individual', 1), ('interact', 1), ('machine', 1), ('take', 1), ('advantage', 1)]
[('godot', 2), ('learn', 1), ('fundamental', 1), ('diving', 1), ('headfirst', 1), ('creating', 1), ('platformer', 1), ('scratch', 1), ('book', 1), ('hand', 1), ('practical', 1), ('guide', 1), ('developing', 1), ('game', 1), ('using', 1), ('engine', 1), ('help', 1), ('gdscript', 1), ('author', 1), ('maithili', 1), ('dhule', 1)]
[('learn', 2), ('trick', 1), ('simple', 1), ('procedural', 1), ('generation', 1), ('various', 1), ('genre', 1), ('racing', 1), ('simulator', 1), ('platformers', 1), ('roguelikes', 1), ('benefit', 1), ('technique', 1), ('book', 1), ('combine', 1), ('hand', 1), ('crafted', 1), ('content', 1), ('algorithm', 1)]
[('apis', 2), ('enablers', 1), ('thriving', 1), ('ecosystem', 1), ('drive', 1), ('revenue', 1), ('growth', 1), ('roi', 1), ('organization', 1), ('book', 1), ('cover', 1), ('relevant', 1), ('topic', 1), ('trend', 1), ('enterprise', 1), ('architect', 1), ('need', 1), ('know', 1), ('build', 1), ('govern', 1), ('product', 1)]
[('quantum', 3), ('computing', 2), ('leverage', 1), ('benefit', 1), ('identifying', 1), ('business', 1), ('use', 1), ('case', 1), ('understanding', 1), ('design', 1), ('develop', 1), ('product', 1), ('service', 1), ('book', 1), ('guide', 1), ('effectively', 1), ('productize', 1), ('including', 1), ('best', 1), ('practice', 1)]
[('learning', 3), ('supervised', 2), ('beginner', 1), ('oriented', 1), ('book', 1), ('help', 1), ('understand', 1), ('perform', 1), ('anomaly', 1), ('detection', 1), ('cutting', 1), ('edge', 1), ('machine', 1), ('deep', 1), ('technique', 1), ('updated', 1), ('second', 1), ('edition', 1), ('focus', 1), ('semi', 1), ('unsupervised', 1)]
[('hand', 1), ('guide', 1), ('designing', 1), ('building', 1), ('operating', 1), ('api', 1), ('marketplace', 1), ('allow', 1), ('organization', 1), ('expose', 1), ('internal', 1), ('service', 1), ('customer', 1), ('data', 1), ('securely', 1), ('use', 1), ('external', 1), ('developer', 1), ('book', 1), ('show', 1), ('mutual', 1), ('nature', 1)]
[('system', 2), ('gain', 1), ('deeper', 1), ('understanding', 1), ('distributed', 1), ('work', 1), ('application', 1), ('used', 1), ('specific', 1), ('business', 1), ('domain', 1), ('industry', 1), ('book', 1), ('provides', 1), ('set', 1), ('solution', 1), ('architecture', 1), ('pattern', 1), ('developed', 1), ('based', 1)]
[('react', 2), ('node', 2), ('django', 2), ('explore', 1), ('python', 1), ('typescript', 1), ('webpack', 1), ('docker', 1), ('offer', 1), ('individually', 1), ('fit', 1), ('together', 1), ('modern', 1), ('app', 1), ('development', 1), ('updated', 1), ('version', 1), ('show', 1), ('build', 1), ('apps', 1), ('j', 1)]
[('platform', 2), ('book', 2), ('comprehensive', 2), ('end', 2), ('interested', 1), ('giving', 1), ('microsoft', 1), ('new', 1), ('multi', 1), ('app', 1), ('ui', 1), ('maui', 1), ('try', 1), ('provides', 1), ('developer', 1), ('set', 1), ('tool', 1), ('hand', 1), ('coding', 1), ('build', 1), ('cross', 1), ('application', 1)]
[('build', 2), ('application', 2), ('rust', 2), ('go', 1), ('beyond', 1), ('basic', 1), ('complete', 1), ('using', 1), ('programming', 1), ('language', 1), ('updated', 1), ('edition', 1), ('course', 1), ('book', 1), ('include', 1), ('high', 1), ('performance', 1), ('web', 1), ('client', 1), ('embedded', 1)]
[('new', 2), ('fully', 1), ('updated', 1), ('edition', 1), ('uniquely', 1), ('accessible', 1), ('textbook', 1), ('reference', 1), ('provides', 1), ('general', 1), ('introduction', 1), ('probabilistic', 1), ('graphical', 1), ('model', 1), ('pgms', 1), ('engineering', 1), ('perspective', 1), ('nbsp', 1), ('feature', 1), ('material', 1), ('partially', 1), ('observable', 1), ('markov', 1)]
[('proving', 2), ('mathematical', 2), ('problem', 2), ('lt', 1), ('gt', 1), ('reverse', 1), ('mathematics', 1), ('study', 1), ('complexity', 1), ('theorem', 1), ('solving', 1), ('typical', 1), ('question', 1), ('include', 1), ('prove', 1), ('result', 1), ('without', 1), ('first', 1), ('computer', 1), ('solve', 1), ('highly', 1)]
[('learning', 2), ('book', 1), ('offer', 1), ('comprehensive', 1), ('introduction', 1), ('central', 1), ('idea', 1), ('underpin', 1), ('deep', 1), ('intended', 1), ('newcomer', 1), ('machine', 1), ('already', 1), ('experienced', 1), ('field', 1), ('covering', 1), ('key', 1), ('concept', 1), ('relating', 1), ('contemporary', 1)]
[('monograph', 1), ('us', 1), ('julia', 1), ('language', 1), ('guide', 1), ('reader', 1), ('exploration', 1), ('fundamental', 1), ('concept', 1), ('probability', 1), ('statistic', 1), ('view', 1), ('mastering', 1), ('machine', 1), ('learning', 1), ('data', 1), ('science', 1), ('artificial', 1), ('intelligence', 1), ('text', 1)]
[('python', 3), ('book', 2), ('marketing', 2), ('provides', 1), ('introduction', 1), ('quantitative', 1), ('present', 1), ('hand', 1), ('approach', 1), ('using', 1), ('real', 1), ('question', 1), ('organized', 1), ('key', 1), ('topic', 1), ('area', 1), ('following', 1), ('scientific', 1), ('computing', 1), ('movement', 1), ('toward', 1)]
[('li', 3), ('language', 2), ('book', 1), ('provides', 1), ('reader', 1), ('brief', 1), ('account', 1), ('history', 1), ('identification', 1), ('research', 1), ('survey', 1), ('feature', 1), ('method', 1), ('used', 1), ('literature', 1), ('problem', 1), ('determining', 1), ('document', 1)]
[('computing', 3), ('relationship', 2), ('book', 1), ('cover', 1), ('recent', 1), ('technology', 1), ('blockchain', 1), ('iot', 1), ('cloud', 1), ('fog', 1), ('mobile', 1), ('edge', 1), ('limited', 1), ('architecture', 1), ('proposal', 1), ('trend', 1)]
[('diesis', 2), ('und', 2), ('beitragswerk', 1), ('bringt', 1), ('vorreiter', 1), ('öffentliche', 1), ('meinungsbildner', 1), ('renommierte', 1), ('fachexperten', 1), ('zu', 1), ('fragestellungen', 1), ('de', 1), ('digitalen', 1), ('wandels', 1), ('zusammen', 1), ('bündelt', 1), ('deren', 1), ('blickwinkel', 1), ('auf', 1), ('entscheidende', 1), ('zukunftsthema', 1), ('somit', 1), ('beleuchten', 1), ('die', 1), ('hochkarätigen', 1)]
[('system', 2), ('general', 1), ('framework', 1), ('constructing', 1), ('using', 1), ('probabilistic', 1), ('model', 1), ('complex', 1), ('enable', 1), ('computer', 1), ('use', 1), ('available', 1), ('information', 1), ('making', 1), ('decision', 1), ('task', 1), ('require', 1), ('person', 1), ('automated', 1), ('reason', 1), ('reach', 1)]
[('make', 2), ('memetic', 1), ('medium', 1), ('aggregate', 1), ('text', 1), ('collectively', 1), ('created', 1), ('circulated', 1), ('transformed', 1), ('become', 1), ('part', 1), ('public', 1), ('conversation', 1), ('shape', 1), ('broader', 1), ('cultural', 1), ('debate', 1), ('internet', 1), ('meme', 1), ('digital', 1), ('snippet', 1), ('joke', 1)]
[('graduate', 2), ('machine', 2), ('learning', 2), ('textbook', 2), ('new', 1), ('edition', 1), ('level', 1), ('focus', 1), ('analysis', 1), ('theory', 1), ('algorithm', 1), ('book', 1), ('general', 1), ('introduction', 1), ('serve', 1), ('student', 1), ('reference', 1)]
[('student', 2), ('idea', 2), ('thinking', 2), ('form', 2), ('explore', 1), ('computation', 1), ('learning', 1), ('write', 1), ('simple', 1), ('computer', 1), ('program', 1), ('task', 1), ('require', 1), ('thought', 1), ('book', 1), ('guide', 1), ('exploration', 1), ('might', 1), ('understood', 1)]
[('walling', 3), ('saas', 3), ('summary', 2), ('rob', 2), ('playbook', 2), ('minute', 1), ('please', 1), ('note', 1), ('original', 1), ('book', 1), ('comprehensive', 1), ('guide', 1), ('entrepreneur', 1), ('looking', 1), ('build', 1), ('successful', 1), ('startup', 1), ('without', 1), ('relying', 1), ('venture', 1), ('capital', 1), ('debunks', 1), ('myth', 1), ('external', 1), ('funding', 1), ('prerequisite', 1)]
[('funny', 2), ('woman', 2), ('want', 2), ('joyous', 1), ('wise', 1), ('reassuring', 1), ('laugh', 1), ('loud', 1), ('love', 1), ('elizabeth', 1), ('day', 1), ('funniest', 1), ('planet', 1), ('earth', 1), ('right', 1), ('dolly', 1), ('alderton', 1), ('fi', 1), ('jane', 1), ('grow', 1), ('clare', 1), ('balding', 1), ('book', 1), ('honest', 1), ('bit', 1), ('made', 1), ('cheer', 1), ('sara', 1), ('cox', 1), ('loved', 1)]
[('computer', 2), ('scientist', 1), ('electrical', 1), ('engineer', 1), ('others', 1), ('interested', 1), ('electronics', 1), ('targeted', 1), ('thus', 1), ('presentation', 1), ('directed', 1), ('toward', 1), ('understanding', 1), ('work', 1), ('still', 1), ('providing', 1), ('broad', 1), ('effective', 1), ('year', 1)]
[('knowledge', 3), ('recording', 1), ('common', 1), ('framework', 1), ('make', 1), ('possible', 1), ('seamlessly', 1), ('share', 1), ('global', 1), ('remains', 1), ('important', 1), ('challenge', 1), ('researcher', 1), ('brief', 1), ('examines', 1), ('several', 1), ('idea', 1), ('representation', 1), ('addressing', 1)]
[('medium', 3), ('printed', 2), ('th', 1), ('century', 1), ('mid', 1), ('based', 1), ('word', 1), ('book', 1), ('magazine', 1), ('handbill', 1), ('newspaper', 1), ('journal', 1), ('dominated', 1), ('society', 1), ('today', 1), ('onslaught', 1), ('digital', 1), ('centered', 1), ('internet', 1), ('developing', 1), ('breathtaking', 1), ('pace', 1), ('destabilizing', 1), ('idea', 1), ('fundamentally', 1), ('reshaping', 1), ('world', 1)]
[('graphic', 3), ('computer', 2), ('scratch', 1), ('demystifies', 1), ('algorithm', 1), ('used', 1), ('modern', 1), ('software', 1), ('guide', 1), ('beginner', 1), ('building', 1), ('photorealistic', 1), ('render', 1), ('programming', 1), ('book', 1), ('often', 1), ('math', 1), ('heavy', 1), ('intimidating', 1), ('newcomer', 1)]
[('python', 3), ('tool', 2), ('scientist', 2), ('introduction', 1), ('programming', 1), ('language', 1), ('popular', 1), ('engineer', 1), ('student', 1), ('anyone', 1), ('want', 1), ('use', 1), ('research', 1), ('simulation', 1), ('collaboration', 1), ('introduce', 1)]
[('software', 2), ('security', 2), ('every', 1), ('professional', 1), ('know', 1), ('designing', 1), ('secure', 1), ('consolidates', 1), ('loren', 1), ('kohnfelder', 1), ('rsquo', 1), ('twenty', 1), ('year', 1), ('experience', 1), ('concise', 1), ('elegant', 1), ('guide', 1), ('nbsp', 1), ('improving', 1), ('technology', 1), ('product', 1)]
[('internet', 2), ('focusing', 1), ('power', 1), ('medium', 1), ('theory', 1), ('text', 1), ('explains', 1), ('describes', 1), ('interprets', 1), ('evaluates', 1), ('insightful', 1), ('useful', 1), ('thoughtful', 1), ('way', 1), ('overview', 1), ('past', 1), ('anticipated', 1), ('future', 1), ('provided', 1)]
[('engineering', 2), ('step', 2), ('whether', 1), ('catalyst', 1), ('organizational', 1), ('change', 1), ('support', 1), ('need', 1), ('create', 1), ('culture', 1), ('embrace', 1), ('testing', 1), ('book', 1), ('help', 1), ('right', 1), ('instruction', 1), ('demystify', 1), ('entire', 1), ('process', 1), ('constructing', 1), ('test', 1), ('breaking', 1), ('decision', 1), ('factor', 1), ('build', 1), ('platform', 1)]
[('use', 2), ('kotlin', 2), ('programmer', 1), ('love', 1), ('even', 1), ('google', 1), ('adopted', 1), ('first', 1), ('class', 1), ('language', 1), ('android', 1), ('development', 1), ('intermix', 1), ('imperative', 1), ('functional', 1), ('object', 1), ('oriented', 1), ('style', 1), ('programming', 1), ('benefit', 1), ('approach', 1), ('suitable', 1), ('problem', 1), ('hand', 1), ('learn', 1), ('many', 1), ('feature', 1), ('highly', 1)]
[('view', 2), ('data', 2), ('start', 1), ('building', 1), ('native', 1), ('android', 1), ('apps', 1), ('modern', 1), ('way', 1), ('kotlin', 1), ('jetpack', 1), ('expansive', 1), ('set', 1), ('tool', 1), ('library', 1), ('best', 1), ('practice', 1), ('learn', 1), ('create', 1), ('efficient', 1), ('resilient', 1), ('fragment', 1), ('share', 1), ('viewmodels', 1), ('use', 1), ('room', 1), ('persist', 1), ('valuable', 1), ('quickly', 1), ('avoid', 1), ('nullpointerexceptions', 1), ('java', 1), ('verbose', 1), ('expression', 1)]
[('java', 2), ('code', 2), ('functional', 2), ('imagine', 1), ('writing', 1), ('read', 1), ('problem', 1), ('statement', 1), ('highly', 1), ('expressive', 1), ('concise', 1), ('easy', 1), ('modify', 1), ('reduced', 1), ('complexity', 1), ('programming', 1), ('capability', 1), ('fantasy', 1), ('book', 1), ('guide', 1), ('familiar', 1), ('imperative', 1), ('style', 1), ('practical', 1), ('aspect', 1)]
[('elixir', 2), ('challenge', 2), ('test', 2), ('offer', 1), ('new', 1), ('paradigm', 1), ('unconventional', 1), ('way', 1), ('start', 1), ('exunit', 1), ('almost', 1), ('everything', 1), ('need', 1), ('write', 1), ('covering', 1), ('level', 1), ('detail', 1), ('unit', 1), ('integration', 1), ('know', 1), ('use', 1), ('fullest', 1), ('show', 1), ('explore', 1), ('testing', 1), ('specific', 1), ('otp', 1), ('based', 1), ('module', 1)]
[('excel', 5), ('tip', 2), ('originally', 1), ('designed', 1), ('bill', 1), ('jelen', 1), ('live', 1), ('power', 1), ('seminar', 1), ('target', 1), ('audience', 1), ('already', 1), ('us', 1), ('hour', 1), ('week', 1), ('aha', 1), ('uncover', 1), ('secret', 1), ('method', 1), ('book', 1), ('cover', 1), ('general', 1), ('function', 1), ('pivot', 1), ('table', 1), ('formula', 1), ('vlookup', 1), ('new', 1), ('xlookup', 1), ('introduces', 1), ('element', 1), ('modern', 1)]
[('algorithm', 3), ('genetic', 2), ('language', 2), ('finance', 1), ('artificial', 1), ('intelligence', 1), ('powerful', 1), ('tool', 1), ('wide', 1), ('array', 1), ('application', 1), ('need', 1), ('exotic', 1), ('new', 1), ('framework', 1), ('started', 1), ('learn', 1), ('already', 1), ('familiar', 1), ('join', 1), ('depth', 1), ('look', 1), ('technique', 1), ('method', 1)]
[('python', 3), ('project', 2), ('developer', 1), ('power', 1), ('emphasizes', 1), ('readability', 1), ('ease', 1), ('use', 1), ('access', 1), ('meticulously', 1), ('maintained', 1), ('set', 1), ('package', 1), ('tool', 1), ('language', 1), ('continues', 1), ('improve', 1), ('every', 1), ('release', 1), ('writing', 1), ('full', 1), ('possibility', 1), ('maintain', 1), ('successful', 1), ('need', 1), ('know', 1)]
[('lt', 1), ('gt', 1), ('entering', 1), ('field', 1), ('artificial', 1), ('intelligence', 1), ('data', 1), ('science', 1), ('seem', 1), ('daunting', 1), ('beginner', 1), ('little', 1), ('prior', 1), ('background', 1), ('especially', 1), ('programming', 1), ('experience', 1), ('concept', 1), ('used', 1), ('self', 1), ('driving', 1), ('car', 1), ('virtual', 1)]
[('transistor', 3), ('multigate', 2), ('design', 2), ('high', 2), ('frequency', 2), ('application', 2), ('book', 1), ('discus', 1), ('evolution', 1), ('challenge', 1), ('modeling', 1), ('content', 1), ('particularly', 1), ('focus', 1)]
[('computer', 2), ('numerical', 1), ('adventure', 1), ('history', 1), ('retro', 1), ('know', 1), ('secret', 1), ('message', 1), ('hidden', 1), ('commodore', 1), ('basic', 1), ('highest', 1), ('score', 1), ('possible', 1), ('pac', 1), ('steve', 1), ('wozniak', 1), ('set', 1), ('price', 1), ('apple', 1), ('amstrad', 1), ('cpc', 1), ('chip', 1), ('never', 1), ('connected', 1)]
[('security', 2), ('iso', 2), ('understand', 1), ('information', 1), ('standard', 1), ('improve', 1), ('organisation', 1), ('set', 1), ('apart', 1), ('competitor', 1), ('introduction', 1), ('update', 1)]
[('ist', 3), ('ein', 2), ('für', 2), ('lt', 1), ('gt', 1), ('qualifiziertes', 1), ('management', 1), ('der', 1), ('informationssicherheit', 1), ('heutzutage', 1), ('jede', 1), ('organisation', 1), ('unverzichtbar', 1), ('die', 1), ('normenreihe', 1), ('iso', 1), ('dabei', 1), ('anerkannter', 1), ('wegweiser', 1), ('zu', 1), ('diesem', 1), ('ziel', 1), ('internationalen', 1), ('kontext', 1), ('ihre', 1), ('erfüllung', 1)]
[('social', 2), ('medium', 2), ('arguably', 1), ('powerful', 1), ('technology', 1), ('enabled', 1), ('innovation', 1), ('internet', 1), ('single', 1), ('volume', 1), ('book', 1), ('provides', 1), ('broad', 1), ('easily', 1), ('understandable', 1), ('discussion', 1), ('evolution', 1), ('related', 1), ('problem', 1)]
[('technology', 3), ('blockchain', 2), ('network', 2), ('presenting', 1), ('comprehensive', 1), ('view', 1), ('security', 1), ('principle', 1), ('core', 1), ('application', 1), ('book', 1), ('offer', 1), ('unprecedented', 1), ('insight', 1), ('recent', 1), ('advance', 1), ('development', 1), ('area', 1), ('make', 1), ('associated', 1), ('secure', 1), ('fit', 1), ('purpose', 1)]
[('device', 3), ('close', 1), ('eye', 1), ('begin', 1), ('imagine', 1), ('picture', 1), ('answer', 1), ('question', 1), ('provided', 1), ('knew', 1), ('phrase', 1), ('correctly', 1), ('simple', 1), ('calculation', 1), ('including', 1), ('number', 1), ('tablespoon', 1), ('cup', 1), ('tell', 1), ('weather', 1), ('today', 1), ('calculate', 1), ('many', 1), ('mile', 1), ('need', 1), ('run', 1)]
[('universal', 1), ('principle', 1), ('ux', 1), ('comprehensive', 1), ('cross', 1), ('disciplinary', 1), ('encyclopedia', 1), ('user', 1), ('experience', 1), ('designer', 1)]
[('resource', 1), ('designed', 1), ('bridge', 1), ('gap', 1), ('theoretical', 1), ('understanding', 1), ('practical', 1), ('application', 1), ('making', 1), ('useful', 1), ('tool', 1), ('software', 1), ('developer', 1), ('data', 1), ('scientist', 1), ('ai', 1), ('researcher', 1), ('tech', 1), ('enthusiast', 1), ('interested', 1), ('harnessing', 1), ('power', 1)]
[('book', 4), ('angular', 3), ('python', 2), ('machine', 2), ('learning', 2), ('want', 1), ('discover', 1), ('use', 1), ('react', 1), ('javascript', 1), ('bundle', 1), ('framework', 1), ('essential', 1), ('open', 1), ('source', 1), ('web', 1), ('app', 1), ('development', 1), ('using', 1), ('typescript', 1), ('algorithm', 1), ('design', 1), ('practical', 1), ('code', 1)]
[('book', 3), ('need', 3), ('programming', 3), ('access', 2), ('designed', 1), ('master', 1), ('fundamental', 1), ('without', 1), ('spending', 1), ('time', 1), ('short', 1), ('started', 1), ('show', 1), ('thing', 1), ('know', 1), ('feel', 1), ('home', 1), ('vba', 1), ('learn', 1), ('alsoapply', 1), ('say', 1), ('excel', 1)]
[('raspberry', 3), ('pi', 3), ('guide', 2), ('ready', 1), ('embark', 1), ('extraordinary', 1), ('journey', 1), ('world', 1), ('look', 1), ('whether', 1), ('tech', 1), ('enthusiast', 1), ('tinkerer', 1), ('curious', 1), ('mind', 1), ('eager', 1), ('explore', 1), ('endless', 1), ('possibility', 1), ('computing', 1), ('comprehensive', 1), ('tailored', 1), ('beginner', 1)]
[('language', 2), ('development', 2), ('python', 1), ('robust', 1), ('procedural', 1), ('object', 1), ('oriented', 1), ('functional', 1), ('feature', 1), ('make', 1), ('valuable', 1), ('web', 1), ('game', 1), ('business', 1), ('scientific', 1), ('programming', 1), ('book', 1), ('deal', 1), ('problem', 1), ('solving', 1)]
[('updated', 1), ('bestseller', 1), ('provides', 1), ('introduction', 1), ('programming', 1), ('interactive', 1), ('computer', 1), ('graphic', 1), ('emphasis', 1), ('game', 1), ('development', 1), ('using', 1), ('directx', 1), ('book', 1), ('divided', 1), ('three', 1), ('main', 1), ('part', 1), ('basic', 1), ('mathematical', 1), ('tool', 1), ('fundamental', 1), ('task', 1)]
[('revit', 3), ('de', 3), ('en', 2), ('la', 2), ('para', 2), ('desarrollar', 2), ('bim', 2), ('diseñadores', 1), ('delineantes', 1), ('interioristas', 1), ('arquitectos', 1), ('ingenieros', 1), ('han', 1), ('encontrado', 1), ('herramienta', 1), ('ideal', 1), ('sus', 1), ('proyectos', 1), ('este', 1), ('libro', 1), ('ofrece', 1), ('precisamente', 1), ('un', 1), ('cuerpo', 1), ('coherente', 1), ('conocimientos', 1), ('sobre', 1), ('controlar', 1), ('una', 1), ('obra', 1), ('partir', 1), ('nociones', 1), ('básicas', 1), ('arquitecture', 1), ('examina', 1), ('los', 1)]
[('microsoft', 2), ('access', 2), ('guide', 2), ('unlock', 1), ('potential', 1), ('never', 1), ('felt', 1), ('daunted', 1), ('vast', 1), ('functionality', 1), ('perhaps', 1), ('seeking', 1), ('advanced', 1), ('effortlessly', 1), ('transition', 1), ('basic', 1), ('true', 1), ('mastery', 1), ('dive', 1), ('deep', 1), ('intricacy', 1), ('database', 1), ('management', 1), ('comprehensive', 1)]
[('software', 2), ('perpetual', 1), ('licensing', 1), ('dead', 1), ('fact', 1), ('today', 1), ('college', 1), ('graduate', 1), ('unlikely', 1), ('encounter', 1), ('career', 1), ('service', 1), ('saas', 1), ('provides', 1), ('necessary', 1), ('customer', 1), ('insight', 1), ('company', 1), ('need', 1), ('innovate', 1), ('better', 1), ('faster', 1), ('competitor', 1), ('dominant', 1), ('business', 1), ('model', 1), ('nascent', 1), ('legacy', 1)]
[('en', 2), ('del', 2), ('lenguaje', 2), ('los', 2), ('este', 1), ('volumen', 1), ('el', 1), ('autor', 1), ('realiza', 1), ('un', 1), ('completo', 1), ('recorrido', 1), ('moderno', 1), ('desde', 1), ('fundamentos', 1), ('hasta', 1), ('temas', 1), ('más', 1), ('avanzados', 1), ('actualizada', 1), ('para', 1), ('esta', 1), ('edición', 1), ('trata', 1), ('muchas', 1), ('funciones', 1), ('nuevas', 1), ('tal', 1), ('como', 1), ('han', 1), ('sido', 1), ('implementadas', 1), ('por', 1), ('principales', 1), ('proveedores', 1), ('incluyendo', 1), ('módulos', 1), ('conceptos', 1), ('corrutinas', 1), ('rangos', 1)]
[('de', 6), ('para', 3), ('datos', 3), ('python', 3), ('panda', 2), ('obtén', 1), ('el', 1), ('manual', 1), ('definitivo', 1), ('manipular', 1), ('procesar', 1), ('limpiar', 1), ('restringir', 1), ('conjuntos', 1), ('en', 1), ('actualizado', 1), ('esta', 1), ('tercera', 1), ('edición', 1), ('análisis', 1), ('manipulación', 1), ('con', 1), ('nyumpy', 1), ('jupyter', 1), ('está', 1), ('llena', 1), ('casos', 1), ('prácticos', 1), ('que', 1), ('permiten', 1), ('averiguar', 1), ('cómo', 1), ('resolver', 1), ('una', 1), ('amplia', 1), ('variedad', 1)]
[('python', 4), ('machine', 4), ('learning', 3), ('popular', 1), ('programming', 1), ('language', 1), ('used', 1), ('data', 1), ('analysis', 1), ('comprehensive', 1), ('guide', 1), ('teach', 1), ('build', 1), ('intelligent', 1), ('system', 1), ('using', 1), ('learn', 1), ('fundamental', 1), ('library', 1), ('understand', 1), ('different', 1), ('type', 1)]
[('book', 3), ('android', 3), ('studio', 2), ('teach', 1), ('build', 1), ('application', 1), ('using', 1), ('jetpack', 1), ('compose', 1), ('giraffe', 1), ('material', 1), ('design', 1), ('kotlin', 1), ('programming', 1), ('language', 1), ('begin', 1), ('basic', 1), ('explaining', 1), ('set', 1), ('development', 1), ('environment', 1), ('includes', 1), ('depth', 1), ('chapter', 1), ('introducing', 1)]
[('sas', 4), ('cs', 3), ('stylesheets', 2), ('jump', 1), ('start', 1), ('popular', 1), ('preprocessor', 1), ('today', 1), ('using', 1), ('write', 1), ('concise', 1), ('dynamic', 1), ('readable', 1), ('way', 1), ('cut', 1), ('many', 1), ('tedious', 1), ('repetitive', 1), ('task', 1), ('come', 1), ('writing', 1), ('vanilla', 1), ('simplifies', 1), ('adding', 1), ('useful', 1), ('feature', 1), ('missing', 1), ('importantly', 1)]
[('typescript', 2), ('javascript', 1), ('developer', 1), ('struggling', 1), ('grip', 1), ('use', 1), ('effectively', 1), ('project', 1), ('book', 1), ('guide', 1), ('making', 1), ('powerful', 1), ('language', 1), ('latest', 1), ('feature', 1), ('help', 1), ('overcome', 1), ('common', 1), ('misunderstanding', 1), ('pitfall', 1), ('major', 1), ('advancement', 1), ('user', 1), ('friendliness', 1)]
[('vba', 3), ('excel', 2), ('task', 2), ('daily', 2), ('step', 2), ('discover', 1), ('power', 1), ('programming', 1), ('optimization', 1), ('work', 1), ('automation', 1), ('comprehensive', 1), ('guide', 1), ('take', 1), ('exciting', 1), ('journey', 1), ('world', 1), ('visual', 1), ('basic', 1), ('application', 1), ('unlocking', 1), ('endless', 1), ('possibility', 1), ('automating', 1), ('boosting', 1), ('productivity', 1), ('instruction', 1)]
[('book', 2), ('typescript', 2), ('provides', 1), ('comprehensive', 1), ('guide', 1), ('programming', 1), ('language', 1), ('extends', 1), ('javascript', 1), ('powerful', 1), ('feature', 1), ('static', 1), ('typing', 1), ('class', 1), ('interface', 1), ('divided', 1), ('thirteen', 1), ('chapter', 1), ('cover', 1), ('everything', 1), ('setting', 1), ('development', 1), ('environment', 1), ('building', 1), ('angular', 1), ('app', 1), ('start', 1)]
[('node', 2), ('j', 2), ('novice', 1), ('ninja', 1), ('hand', 1), ('guide', 1), ('learning', 1), ('everything', 1), ('needed', 1), ('build', 1), ('professional', 1), ('web', 1), ('application', 1), ('using', 1), ('hugely', 1), ('popular', 1), ('open', 1), ('source', 1), ('cross', 1), ('platform', 1), ('back', 1), ('end', 1), ('javascript', 1), ('runtime', 1), ('environment', 1), ('start', 1), ('getting', 1), ('familiar', 1), ('basic', 1), ('installation', 1), ('building', 1), ('first', 1), ('apps', 1), ('moving', 1), ('onto', 1)]
[('data', 2), ('filter', 2), ('new', 2), ('excel', 1), ('take', 1), ('large', 1), ('set', 1), ('getting', 1), ('hold', 1), ('required', 1), ('tricky', 1), ('different', 1), ('possibility', 1), ('explained', 1), ('vlookup', 1), ('often', 1), ('heard', 1), ('really', 1), ('mastered', 1), ('option', 1), ('advanced', 1), ('database', 1), ('function', 1), ('cutting', 1), ('edge', 1), ('one', 1), ('switch', 1), ('brand', 1)]
[('language', 2), ('summarynatural', 1), ('processing', 1), ('action', 1), ('guide', 1), ('creating', 1), ('machine', 1), ('understand', 1), ('human', 1), ('using', 1), ('power', 1), ('python', 1), ('ecosystem', 1), ('package', 1), ('dedicated', 1), ('nlp', 1), ('ai', 1), ('purchase', 1), ('print', 1), ('book', 1), ('includes', 1), ('free', 1), ('ebook', 1)]
[('learning', 2), ('summarymachine', 1), ('action', 1), ('unique', 1), ('book', 1), ('blend', 1), ('foundational', 1), ('theory', 1), ('machine', 1), ('practical', 1), ('reality', 1), ('building', 1), ('tool', 1), ('everyday', 1), ('data', 1), ('analysis', 1), ('use', 1), ('flexible', 1), ('python', 1), ('programming', 1), ('language', 1), ('build', 1)]
[('power', 2), ('bi', 2), ('dax', 2), ('function', 2), ('advanced', 2), ('step', 2), ('guide', 1), ('using', 1), ('basic', 1), ('data', 1), ('analysis', 1), ('gateway', 1), ('unleashing', 1), ('full', 1), ('potential', 1), ('discover', 1), ('language', 1), ('fundamental', 1), ('technique', 1), ('learn', 1), ('essential', 1), ('sum', 1), ('average', 1), ('explore', 1), ('calculation', 1), ('string', 1), ('time', 1), ('finance', 1)]
[('thinking', 2), ('beginning', 1), ('experienced', 1), ('programmer', 1), ('author', 1), ('multi', 1), ('award', 1), ('winning', 1), ('java', 1), ('kotlin', 1), ('team', 1), ('member', 1), ('come', 1), ('book', 1), ('break', 1), ('concept', 1), ('small', 1), ('easy', 1), ('digest', 1), ('atom', 1), ('along', 1), ('exercise', 1), ('supported', 1), ('hint', 1), ('solution', 1), ('directly', 1), ('inside', 1), ('intellij', 1), ('idea', 1), ('full', 1), ('support', 1)]
[('book', 2), ('concept', 2), ('tensorflow', 2), ('designed', 1), ('beginner', 1), ('professional', 1), ('mind', 1), ('meticulously', 1), ('structured', 1), ('cover', 1), ('broad', 1), ('spectrum', 1), ('application', 1), ('hand', 1), ('practice', 1), ('form', 1), ('core', 1), ('developer', 1), ('certificate', 1), ('exam', 1), ('starting', 1), ('foundational', 1), ('guide', 1), ('fundamental', 1), ('aspect', 1), ('machine', 1)]
[('writing', 5), ('book', 3), ('ai', 3), ('chatgpt', 3), ('money', 2), ('content', 2), ('fiction', 2), ('step', 2), ('ultimate', 1), ('guide', 1), ('use', 1), ('creation', 1), ('today', 1), ('discover', 1), ('world', 1), ('monetizing', 1), ('making', 1), ('unleash', 1), ('power', 1), ('profitable', 1), ('explore', 1), ('non', 1), ('path', 1), ('learn', 1)]
[('ai', 4), ('prompt', 3), ('engineering', 2), ('demystifying', 1), ('fingertip', 1), ('poised', 1), ('create', 1), ('whole', 1), ('new', 1), ('way', 1), ('working', 1), ('ready', 1), ('pivotal', 1), ('moment', 1), ('generative', 1), ('tool', 1), ('rapidly', 1), ('transforming', 1), ('business', 1), ('redefining', 1), ('career', 1), ('role', 1), ('ability', 1), ('communicate', 1), ('model', 1), ('chatgpt', 1), ('fast', 1), ('emerging', 1)]
[('rhcsa', 2), ('exam', 2), ('guide', 2), ('step', 2), ('red', 1), ('hat', 1), ('enterprise', 1), ('linux', 1), ('training', 1), ('preparation', 1), ('third', 1), ('edition', 1), ('provides', 1), ('depth', 1), ('coverage', 1), ('latest', 1), ('version', 1), ('ex', 1), ('objective', 1), ('definitive', 1), ('available', 1), ('subject', 1), ('book', 1), ('explains', 1), ('concept', 1), ('analyzes', 1), ('configuration', 1), ('file', 1), ('describes', 1), ('command', 1), ('output', 1), ('show', 1), ('procedure', 1)]
[('ai', 3), ('prompt', 2), ('design', 2), ('pattern', 2), ('dive', 1), ('headfirst', 1), ('electrifying', 1), ('universe', 1), ('ultimate', 1), ('blueprint', 1), ('sculpting', 1), ('unparalleled', 1), ('human', 1), ('dialogue', 1), ('tailored', 1), ('precision', 1), ('pro', 1), ('novice', 1), ('everyone', 1), ('spark', 1), ('curiosity', 1), ('tome', 1), ('unlocks', 1), ('secret', 1), ('transformative', 1), ('offering', 1), ('seamless', 1), ('fusion', 1)]
[('know', 2), ('system', 2), ('hacking', 2), ('hacked', 1), ('personal', 1), ('information', 1), ('stolen', 1), ('account', 1), ('always', 1), ('wanted', 1), ('learn', 1), ('protect', 1), ('attack', 1), ('answered', 1), ('yes', 1), ('question', 1), ('come', 1), ('right', 1), ('place', 1), ('unlike', 1), ('malicious', 1), ('ethical', 1), ('legal', 1), ('way', 1), ('test', 1)]
[('feature', 2), ('coming', 1), ('grip', 1), ('matter', 1), ('familiarizing', 1), ('introduce', 1), ('auto', 1), ('type', 1), ('declaration', 1), ('move', 1), ('semantics', 1), ('lambda', 1), ('expression', 1), ('concurrency', 1), ('support', 1), ('challenge', 1), ('learning', 1), ('use', 1), ('effectively', 1), ('software', 1), ('correct', 1), ('efficient', 1), ('maintainable', 1), ('portable', 1)]
[('time', 2), ('book', 2), ('conscience', 2), ('seen', 1), ('netflix', 1), ('documentary', 1), ('social', 1), ('dilemma', 1), ('wired', 1), ('favorite', 1), ('financial', 1), ('best', 1), ('silicon', 1), ('valley', 1), ('gq', 1), ('profound', 1), ('lanier', 1), ('show', 1), ('tactical', 1), ('value', 1), ('appealing', 1), ('individual', 1), ('face', 1), ('earnest', 1), ('argument', 1), ('felt', 1), ('piercing', 1), ('shame', 1)]
[('data', 5), ('streaming', 2), ('big', 2), ('deal', 1), ('day', 1), ('business', 1), ('seek', 1), ('tame', 1), ('massive', 1), ('unbounded', 1), ('set', 1), ('pervade', 1), ('world', 1), ('system', 1), ('finally', 1), ('reached', 1), ('level', 1), ('maturity', 1), ('sufficient', 1), ('mainstream', 1), ('adoption', 1), ('practical', 1), ('guide', 1), ('engineer', 1), ('scientist', 1), ('developer', 1), ('learn', 1), ('work', 1)]
[('python', 3), ('best', 1), ('selling', 1), ('book', 1), ('world', 1), ('million', 1), ('copy', 1), ('sold', 1), ('nbsp', 1), ('fast', 1), ('paced', 1), ('nonsense', 1), ('updated', 1), ('guide', 1), ('programming', 1), ('thinking', 1), ('learning', 1), ('code', 1), ('picking', 1), ('internationally', 1)]
[('information', 2), ('today', 1), ('technology', 1), ('driven', 1), ('environment', 1), ('increasing', 1), ('demand', 1), ('delivery', 1), ('compromise', 1), ('struck', 1), ('security', 1), ('availability', 1), ('book', 1), ('pragmatic', 1), ('guide', 1), ('assurance', 1), ('business', 1), ('professional', 1), ('technical', 1), ('expert', 1)]
[('service', 2), ('comprehensive', 1), ('understanding', 1), ('grpc', 1), ('fundamental', 1), ('real', 1), ('world', 1), ('example', 1), ('practical', 1), ('guide', 1), ('learn', 1), ('high', 1), ('performance', 1), ('interprocess', 1), ('communication', 1), ('protocol', 1), ('capable', 1), ('connecting', 1), ('polyglot', 1), ('microservices', 1), ('architecture', 1), ('providing', 1), ('rich', 1), ('framework', 1), ('defining', 1), ('contract', 1), ('data', 1), ('type', 1)]
[('sql', 2), ('know', 1), ('basic', 1), ('taking', 1), ('advantage', 1), ('expressive', 1), ('power', 1), ('second', 1), ('edition', 1), ('applies', 1), ('highly', 1), ('practical', 1), ('approach', 1), ('structured', 1), ('query', 1), ('language', 1), ('create', 1), ('manipulate', 1), ('large', 1), ('store', 1), ('data', 1), ('based', 1), ('real', 1), ('world', 1), ('example', 1), ('updated', 1), ('cookbook', 1), ('provides', 1), ('framework', 1), ('help', 1), ('construct', 1), ('solution', 1), ('executable', 1)]
[('learning', 4), ('deep', 2), ('machine', 2), ('software', 2), ('engineer', 2), ('resurgence', 1), ('neural', 1), ('network', 1), ('become', 1), ('essential', 1), ('practitioner', 1), ('even', 1), ('many', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('data', 1), ('scientist', 1), ('experience', 1), ('start', 1), ('basic', 1), ('move', 1), ('quickly', 1)]
[('machine', 2), ('learning', 2), ('research', 2), ('become', 1), ('integral', 1), ('part', 1), ('many', 1), ('commercial', 1), ('application', 1), ('project', 1), ('field', 1), ('exclusive', 1), ('large', 1), ('company', 1), ('extensive', 1), ('team', 1), ('use', 1), ('python', 1), ('even', 1), ('beginner', 1), ('book', 1), ('teach', 1), ('practical', 1), ('way', 1), ('build', 1), ('solution', 1), ('data', 1), ('available', 1), ('today', 1)]
[('exam', 3), ('fully', 2), ('revised', 2), ('comptia', 2), ('objective', 2), ('bestselling', 1), ('job', 1), ('reference', 1), ('test', 1), ('preparation', 1), ('guide', 1), ('new', 1), ('updated', 1), ('resource', 1), ('offer', 1), ('complete', 1), ('coverage', 1), ('latest', 1), ('release', 1), ('find', 1), ('learning', 1), ('beginning', 1), ('chapter', 1), ('tip', 1), ('practice', 1)]
[('refactoring', 2), ('design', 2), ('code', 2), ('improving', 1), ('existing', 1), ('process', 1), ('changing', 1), ('software', 1), ('system', 1), ('way', 1), ('alter', 1), ('external', 1), ('behavior', 1), ('yet', 1), ('improves', 1), ('internal', 1), ('structure', 1), ('even', 1), ('take', 1), ('bad', 1), ('rework', 1), ('good', 1), ('book', 1), ('offer', 1), ('thorough', 1), ('discussion', 1)]
[('data', 2), ('visualization', 2), ('create', 1), ('publish', 1), ('interactive', 1), ('project', 1), ('webâ', 1), ('even', 1), ('little', 1), ('experience', 1), ('web', 1), ('development', 1), ('itâ', 1), ('inspiring', 1), ('fun', 1), ('friendly', 1), ('accessible', 1), ('practical', 1), ('hand', 1), ('introduction', 1), ('fully', 1), ('updated', 1), ('expanded', 1), ('second', 1), ('edition', 1), ('take', 1), ('fundamental', 1)]
[('database', 2), ('thinking', 1), ('migrating', 1), ('postgresql', 1), ('clear', 1), ('fast', 1), ('paced', 1), ('introduction', 1), ('help', 1), ('understand', 1), ('use', 1), ('open', 1), ('source', 1), ('system', 1), ('learn', 1), ('enterprise', 1), ('class', 1), ('feature', 1), ('version', 1), ('youâ', 1), ('discover', 1), ('postgesql', 1), ('systemâ', 1), ('itâ', 1), ('impressive', 1), ('application', 1), ('platform', 1)]
[('ai', 2), ('transform', 2), ('medicine', 1), ('need', 1), ('know', 1), ('right', 1), ('development', 1), ('fundamental', 1), ('creation', 1), ('personal', 1), ('computer', 1), ('change', 1), ('way', 1), ('work', 1), ('learn', 1), ('communicate', 1), ('healthcare', 1)]
[('datasets', 2), ('bigquery', 2), ('query', 2), ('work', 1), ('petabyte', 1), ('scale', 1), ('building', 1), ('collaborative', 1), ('agile', 1), ('workplace', 1), ('process', 1), ('practical', 1), ('book', 1), ('canonical', 1), ('reference', 1), ('google', 1), ('engine', 1), ('let', 1), ('conduct', 1), ('interactive', 1), ('analysis', 1), ('large', 1), ('enables', 1), ('enterprise', 1), ('efficiently', 1), ('store', 1), ('ingest', 1), ('learn', 1), ('data', 1)]
[('quickly', 2), ('step', 2), ('plan', 2), ('learning', 1), ('made', 1), ('easy', 1), ('done', 1), ('project', 1), ('jump', 1), ('wherever', 1), ('need', 1), ('answer', 1), ('brisk', 1), ('lesson', 1), ('colourful', 1), ('screenshots', 1), ('show', 1), ('exactly', 1), ('start', 1), ('new', 1), ('build', 1), ('task', 1), ('list', 1), ('assign', 1), ('resource', 1), ('share', 1), ('track', 1), ('progress', 1), ('capture', 1), ('fine', 1), ('tune', 1), ('work', 1), ('cost', 1), ('detail', 1), ('use', 1)]
[('database', 4), ('exam', 2), ('across', 2), ('organisation', 2), ('prepare', 1), ('microsoft', 1), ('developing', 1), ('sql', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('skill', 1), ('building', 1), ('implementing', 1), ('designed', 1), ('professional', 1), ('build', 1), ('implement', 1), ('ensure', 1), ('high', 1), ('level', 1), ('data', 1), ('availability', 1), ('ref', 1), ('focus', 1)]
[('aws', 2), ('solution', 2), ('architect', 2), ('study', 2), ('guide', 2), ('associate', 2), ('certified', 1), ('saa', 1), ('exam', 1), ('complete', 1), ('fully', 1), ('updated', 1), ('resource', 1), ('certification', 1), ('invaluable', 1), ('sybex', 1), ('cover', 1)]
[('study', 2), ('guide', 2), ('linux', 2), ('professional', 2), ('institute', 2), ('certification', 2), ('lpic', 2), ('bestselling', 1), ('popular', 1), ('level', 1), ('updated', 1), ('fifth', 1), ('edition', 1), ('comprehensive', 1), ('volume', 1), ('resource', 1)]
[('publisher', 2), ('product', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('effective', 1), ('study', 1), ('guide', 1), ('provides', 1), ('coverage', 1), ('every', 1), ('topic', 1), ('latest', 1), ('version', 1), ('cism', 1), ('exam', 1), ('written', 1), ('information', 1), ('security', 1), ('executive', 1)]
[('ocp', 2), ('oracle', 2), ('developer', 2), ('certified', 1), ('professional', 1), ('java', 1), ('se', 1), ('complete', 1), ('study', 1), ('guide', 1), ('published', 1), ('announced', 1), ('major', 1), ('change', 1), ('certification', 1), ('program', 1), ('release', 1), ('new', 1)]
[('programming', 2), ('classroom', 1), ('tested', 1), ('ten', 1), ('thousand', 1), ('student', 1), ('new', 1), ('edition', 1), ('bestselling', 1), ('intro', 1), ('book', 1), ('anyone', 1), ('want', 1), ('understand', 1), ('computer', 1), ('science', 1), ('learn', 1), ('design', 1), ('algorithm', 1), ('testing', 1), ('debugging', 1), ('discover', 1), ('fundamental', 1), ('python', 1), ('language', 1), ('used', 1), ('million', 1), ('device', 1), ('write', 1), ('program', 1)]
[('business', 3), ('agility', 2), ('safe', 2), ('ability', 1), ('compete', 1), ('thrive', 1), ('digital', 1), ('age', 1), ('quickly', 1), ('responding', 1), ('unprecedented', 1), ('market', 1), ('change', 1), ('threat', 1), ('emerging', 1), ('opportunity', 1), ('innovative', 1), ('solution', 1), ('distilled', 1), ('achieving', 1), ('scaled', 1), ('agile', 1), ('framework', 1), ('explains', 1), ('adopting', 1), ('help', 1), ('enterprise', 1), ('use', 1), ('power', 1)]
[('microsoft', 3), ('manage', 3), ('design', 2), ('service', 2), ('prepare', 1), ('exam', 1), ('m', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('skill', 1), ('knowledge', 1), ('needed', 1), ('effectively', 1), ('deploy', 1), ('secure', 1), ('focus', 1), ('expertise', 1), ('measured', 1), ('objective', 1), ('implement', 1), ('user', 1), ('identity', 1), ('role', 1), ('access', 1), ('authentication', 1), ('plan', 1)]
[('software', 2), ('improve', 1), ('creativity', 1), ('effectiveness', 1), ('ultimately', 1), ('code', 1), ('modern', 1), ('engineering', 1), ('continuous', 1), ('delivery', 1), ('pioneer', 1), ('david', 1), ('farley', 1), ('help', 1), ('professional', 1), ('think', 1), ('work', 1), ('effectively', 1), ('manage', 1), ('successfully', 1)]
[('kotlin', 3), ('android', 2), ('language', 2), ('developing', 1), ('application', 1), ('mobile', 1), ('operating', 1), ('system', 1), ('seem', 1), ('daunting', 1), ('particularly', 1), ('requires', 1), ('learning', 1), ('new', 1), ('programming', 1), ('androidã', 1), ('officialdevelopment', 1), ('practical', 1), ('book', 1), ('developer', 1), ('learn', 1), ('make', 1), ('transition', 1), ('java', 1), ('including', 1), ('provides', 1), ('true', 1)]
[('exam', 3), ('comptia', 2), ('network', 2), ('coverage', 2), ('cram', 1), ('seventh', 1), ('edition', 1), ('perfect', 1), ('study', 1), ('guide', 1), ('help', 1), ('student', 1), ('pas', 1), ('provides', 1), ('practice', 1), ('question', 1), ('every', 1), ('topic', 1), ('including', 1), ('substantial', 1), ('new', 1), ('book', 1), ('present', 1), ('reader', 1), ('organized', 1), ('test', 1), ('preparation', 1), ('routine', 1), ('use', 1), ('proven', 1), ('series', 1), ('element', 1)]
[('exam', 2), ('prepare', 1), ('updated', 1), ('version', 1), ('microsoft', 1), ('md', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('skill', 1), ('andknowledge', 1), ('required', 1), ('deploy', 1), ('configure', 1), ('maintain', 1), ('window', 1), ('device', 1), ('andtechnologies', 1), ('enterprise', 1), ('environment', 1), ('organizes', 1), ('coverage', 1), ('objective', 1), ('feature', 1), ('strategic', 1), ('scenario', 1), ('challenge', 1)]
[('device', 4), ('usb', 2), ('fifth', 1), ('edition', 1), ('bridge', 1), ('gap', 1), ('technical', 1), ('specification', 1), ('real', 1), ('world', 1), ('designing', 1), ('programming', 1), ('connect', 1), ('universal', 1), ('serial', 1), ('bus', 1), ('reader', 1), ('learn', 1), ('select', 1), ('appropriate', 1), ('speed', 1), ('class', 1), ('hardware', 1), ('communicate', 1), ('using', 1), ('visual', 1), ('use', 1), ('standard', 1), ('host', 1)]
[('python', 2), ('financial', 1), ('industry', 1), ('recently', 1), ('adopted', 1), ('tremendous', 1), ('rate', 1), ('largest', 1), ('investment', 1), ('bank', 1), ('hedge', 1), ('fund', 1), ('using', 1), ('build', 1), ('core', 1), ('trading', 1), ('risk', 1), ('management', 1), ('system', 1), ('updated', 1), ('second', 1), ('edition', 1), ('hand', 1), ('book', 1), ('help', 1), ('started', 1), ('language', 1), ('guiding', 1), ('developer', 1), ('quantitative', 1), ('analyst', 1)]
[('python', 3), ('updated', 1), ('convenient', 1), ('pocket', 1), ('guide', 1), ('perfect', 1), ('job', 1), ('quick', 1), ('reference', 1), ('youâ', 1), ('find', 1), ('concise', 1), ('need', 1), ('know', 1), ('information', 1), ('type', 1), ('statement', 1), ('special', 1), ('method', 1), ('name', 1), ('built', 1), ('function', 1), ('exception', 1), ('commonly', 1), ('used', 1), ('standard', 1), ('library', 1), ('module', 1), ('prominent', 1), ('tool', 1), ('handy', 1), ('index', 1), ('let', 1)]
[('edition', 2), ('interaction', 2), ('new', 1), ('text', 1), ('human', 1), ('computer', 1), ('field', 1), ('hugely', 1), ('popular', 1), ('student', 1), ('professional', 1), ('alike', 1), ('fifth', 1), ('design', 1), ('ideal', 1)]
[('system', 3), ('development', 2), ('process', 1), ('creating', 1), ('maintaining', 1), ('information', 1), ('practical', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('topic', 1), ('used', 1), ('handy', 1), ('reference', 1), ('guide', 1), ('already', 1), ('working', 1), ('field', 1), ('textbook', 1), ('support', 1), ('bcs', 1), ('certificate', 1)]
[('scrum', 3), ('book', 2), ('team', 1), ('agile', 1), ('leader', 1), ('want', 1), ('enable', 1), ('greater', 1), ('business', 1), ('agility', 1), ('practical', 1), ('guide', 1), ('overcoming', 1), ('challenge', 1), ('maximising', 1), ('benefit', 1), ('unlike', 1), ('focused', 1), ('basic', 1), ('understanding', 1), ('framework', 1), ('heavy', 1), ('theory', 1), ('mastering', 1), ('professional', 1), ('based', 1), ('year', 1), ('training', 1), ('coaching', 1)]
[('layer', 2), ('classic', 1), ('guide', 1), ('computer', 1), ('work', 1), ('updated', 1), ('new', 1), ('chapter', 1), ('interactive', 1), ('graphic', 1), ('code', 1), ('revelation', 1), ('first', 1), ('book', 1), ('programming', 1), ('spoke', 1), ('started', 1), ('story', 1), ('built', 1), ('analogy', 1)]
[('microsoft', 3), ('manage', 2), ('security', 2), ('implement', 2), ('prepare', 1), ('exam', 1), ('m', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('skill', 1), ('knowledge', 1), ('needed', 1), ('mobility', 1), ('related', 1), ('administration', 1), ('task', 1), ('focus', 1), ('expertise', 1), ('measured', 1), ('objective', 1), ('modern', 1), ('device', 1), ('service', 1), ('threat', 1), ('management', 1)]
[('manage', 4), ('microsoft', 2), ('exam', 2), ('prepare', 1), ('md', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('skill', 1), ('knowledge', 1), ('required', 1), ('modern', 1), ('window', 1), ('desktop', 1), ('focus', 1), ('expertise', 1), ('measured', 1), ('objective', 1), ('deploy', 1), ('update', 1), ('operating', 1), ('system', 1), ('policy', 1), ('profile', 1), ('protect', 1), ('device', 1), ('apps', 1), ('data', 1), ('ref', 1)]
[('customer', 2), ('inconsistent', 1), ('experience', 1), ('product', 1), ('service', 1), ('understandably', 1), ('frustrated', 1), ('worse', 1), ('organization', 1), ('pinpoint', 1), ('cause', 1), ('problem', 1), ('focused', 1), ('process', 1), ('updated', 1), ('book', 1), ('show', 1), ('team', 1), ('use', 1), ('alignment', 1), ('diagram', 1), ('turn', 1), ('valuable', 1), ('observation', 1), ('actionable', 1)]
[('nan', 1)]
[('java', 5), ('updated', 2), ('definitive', 1), ('guide', 1), ('platform', 1), ('best', 1), ('practice', 1), ('changed', 1), ('dramatically', 1), ('previous', 1), ('edition', 1), ('effective', 1), ('published', 1), ('shortly', 1), ('release', 1), ('jolt', 1), ('award', 1), ('winning', 1), ('classic', 1), ('thoroughly', 1), ('take', 1), ('full', 1), ('advantage', 1), ('latest', 1), ('language', 1), ('library', 1), ('feature', 1)]
[('development', 3), ('application', 2), ('express', 2), ('build', 1), ('dynamic', 1), ('web', 1), ('key', 1), ('component', 1), ('node', 1), ('javascript', 1), ('stack', 1), ('updated', 1), ('edition', 1), ('author', 1), ('ethan', 1), ('brown', 1), ('teach', 1), ('fundamental', 1), ('walking', 1), ('example', 1), ('hand', 1), ('guide', 1), ('cover', 1), ('everything', 1), ('server', 1), ('side', 1), ('rendering', 1), ('api', 1), ('suitable', 1)]
[('search', 3), ('result', 2), ('girl', 2), ('term', 2), ('revealing', 1), ('look', 1), ('negative', 1), ('bias', 1), ('woman', 1), ('color', 1), ('embedded', 1), ('engine', 1), ('algorithm', 1), ('run', 1), ('google', 1), ('black', 1), ('find', 1), ('big', 1), ('booty', 1), ('sexually', 1), ('explicit', 1), ('likely', 1), ('come', 1), ('top', 1), ('type', 1), ('white', 1), ('radically', 1), ('different', 1)]
[('java', 2), ('continues', 2), ('evolve', 2), ('recipe', 2), ('grow', 1), ('cookbook', 1), ('tandem', 1), ('guide', 1), ('speed', 1), ('right', 1), ('away', 1), ('hundred', 1), ('hand', 1), ('across', 1), ('broad', 1), ('range', 1), ('topic', 1), ('learn', 1), ('useful', 1), ('technique', 1), ('everything', 1), ('string', 1), ('handling', 1), ('functional', 1), ('programming', 1), ('network', 1), ('communication', 1), ('includes', 1)]
[('complexity', 2), ('system', 2), ('company', 1), ('move', 1), ('toward', 1), ('microservices', 1), ('distributed', 1), ('technology', 1), ('increase', 1), ('remove', 1), ('chaos', 1), ('engineering', 1), ('discover', 1), ('vulnerability', 1), ('prevent', 1), ('outage', 1), ('impact', 1), ('customer', 1), ('practical', 1), ('guide', 1), ('show', 1), ('engineer', 1), ('navigate', 1), ('complex', 1)]
[('want', 2), ('create', 1), ('device', 1), ('interact', 1), ('physical', 1), ('world', 1), ('cookbook', 1), ('perfect', 1), ('anyone', 1), ('experiment', 1), ('popular', 1), ('arduino', 1), ('microcontroller', 1), ('programming', 1), ('environment', 1), ('find', 1), ('tip', 1), ('technique', 1), ('building', 1), ('variety', 1), ('object', 1), ('prototype', 1), ('iot', 1), ('solution', 1), ('environmental', 1), ('monitor', 1), ('location', 1)]
[('javascript', 3), ('language', 2), ('web', 2), ('little', 1), ('scripting', 1), ('used', 1), ('chiefly', 1), ('add', 1), ('interactivity', 1), ('browser', 1), ('window', 1), ('primary', 1), ('building', 1), ('block', 1), ('powerful', 1), ('robust', 1), ('application', 1), ('practical', 1), ('book', 1), ('new', 1), ('experienced', 1), ('developer', 1), ('learn', 1), ('use', 1), ('create', 1), ('apis', 1), ('mobile', 1)]
[('comptia', 3), ('study', 2), ('guide', 2), ('itf', 2), ('fundamental', 2), ('exam', 2), ('fully', 1), ('updated', 1), ('delivers', 1), ('coverage', 1), ('every', 1), ('topic', 1), ('take', 1), ('complete', 1), ('confidence', 1), ('using', 1), ('bestselling', 1), ('effective', 1), ('self', 1), ('system', 1), ('written', 1), ('certification', 1), ('training', 1), ('expert', 1), ('authoritative', 1), ('explains', 1), ('foundational', 1)]
[('graph', 3), ('data', 3), ('computer', 2), ('close', 1), ('gap', 1), ('way', 1), ('human', 1), ('view', 1), ('world', 1), ('rely', 1), ('static', 1), ('row', 1), ('column', 1), ('navigate', 1), ('reason', 1), ('life', 1), ('relationship', 1), ('practical', 1), ('guide', 1), ('demonstrates', 1), ('brings', 1), ('approach', 1), ('together', 1), ('working', 1), ('concept', 1), ('theory', 1), ('database', 1), ('schema', 1)]
[('data', 3), ('spark', 2), ('bigger', 1), ('arrives', 1), ('faster', 1), ('come', 1), ('variety', 1), ('formatsâ', 1), ('need', 1), ('processed', 1), ('scale', 1), ('analytics', 1), ('machine', 1), ('learning', 1), ('process', 1), ('varied', 1), ('workload', 1), ('efficiently', 1), ('enter', 1), ('apache', 1), ('updated', 1), ('include', 1), ('second', 1), ('edition', 1), ('show', 1), ('engineer', 1), ('scientist', 1), ('structure', 1), ('unification', 1)]
[('introduction', 2), ('elgar', 1), ('advanced', 1), ('stimulating', 1), ('thoughtful', 1), ('major', 1), ('field', 1), ('social', 1), ('science', 1), ('law', 1), ('expertly', 1), ('written', 1), ('world', 1), ('leading', 1), ('scholar', 1), ('designed', 1), ('accessible', 1), ('yet', 1), ('rigorous', 1), ('offer', 1), ('concise', 1), ('lucid', 1)]
[('aws', 2), ('certified', 2), ('security', 2), ('specialty', 2), ('certification', 2), ('prepared', 1), ('excellent', 1), ('resource', 1), ('earning', 1), ('professional', 1), ('gain', 1), ('valuable', 1)]
[('network', 3), ('prepare', 1), ('certification', 1), ('new', 1), ('career', 1), ('installation', 1), ('administration', 1), ('newly', 1), ('revised', 1), ('fifth', 1), ('edition', 1), ('comptia', 1), ('study', 1), ('guide', 1), ('exam', 1)]
[('algorithm', 3), ('material', 2), ('comprehensive', 1), ('update', 1), ('leading', 1), ('text', 1), ('new', 1), ('matchings', 1), ('bipartite', 1), ('graph', 1), ('online', 1), ('machine', 1), ('learning', 1), ('topic', 1), ('book', 1), ('rigorous', 1), ('incomplete', 1), ('others', 1), ('cover', 1), ('mass', 1)]
[('change', 2), ('legacy', 1), ('system', 1), ('performance', 1), ('functionality', 1), ('reliability', 1), ('manageability', 1), ('nbsp', 1), ('code', 1), ('easy', 1), ('nearly', 1), ('instantaneous', 1), ('feedback', 1), ('understand', 1), ('answer', 1)]
[('structure', 4), ('story', 2), ('visual', 2), ('updated', 1), ('edition', 1), ('best', 1), ('selling', 1), ('classic', 1), ('show', 1), ('visuals', 1), ('carefully', 1), ('writer', 1), ('composer', 1), ('music', 1), ('teach', 1), ('design', 1), ('control', 1), ('production', 1), ('using', 1), ('basic', 1), ('component', 1), ('space', 1), ('line', 1), ('shape', 1), ('tone', 1), ('color', 1), ('movement', 1)]
[('react', 3), ('hit', 1), ('ground', 1), ('running', 1), ('open', 1), ('source', 1), ('technology', 1), ('facebook', 1), ('building', 1), ('rich', 1), ('web', 1), ('application', 1), ('fast', 1), ('updated', 1), ('latest', 1), ('release', 1), ('second', 1), ('edition', 1), ('hand', 1), ('guide', 1), ('show', 1), ('build', 1), ('component', 1), ('organize', 1), ('maintainable', 1), ('large', 1), ('scale', 1), ('apps', 1), ('familiar', 1), ('javascript', 1), ('syntax', 1), ('ready', 1)]
[('sql', 4), ('effectively', 1), ('query', 1), ('modify', 1), ('data', 1), ('using', 1), ('transact', 1), ('sqlmaster', 1), ('fundamental', 1), ('write', 1), ('robust', 1), ('code', 1), ('microsoft', 1), ('server', 1), ('azure', 1), ('database', 1), ('itzik', 1), ('ben', 1), ('gan', 1), ('explains', 1), ('key', 1), ('concept', 1), ('help', 1), ('apply', 1), ('knowledge', 1), ('hand', 1)]
[('agile', 3), ('team', 3), ('coach', 2), ('project', 2), ('help', 1), ('become', 1), ('outstanding', 1), ('creating', 1), ('product', 1), ('make', 1), ('proud', 1), ('helping', 1), ('organisation', 1), ('reap', 1), ('powerful', 1), ('benefit', 1), ('deliver', 1), ('innovation', 1), ('excellence', 1), ('frequently', 1), ('scrummasters', 1), ('manager', 1), ('asked', 1), ('challenging', 1)]
[('dd', 2), ('domain', 1), ('driven', 1), ('design', 1), ('software', 1), ('modeling', 1), ('delivers', 1), ('powerful', 1), ('result', 1), ('practice', 1), ('theory', 1), ('developer', 1), ('worldwide', 1), ('rapidly', 1), ('moving', 1), ('adopt', 1), ('first', 1), ('time', 1), ('accessible', 1), ('guide', 1), ('basic', 1), ('problem', 1), ('solves', 1), ('work', 1), ('quickly', 1), ('gain', 1), ('value', 1)]
[('ideal', 1), ('learning', 1), ('reference', 1), ('book', 1), ('explains', 1), ('five', 1), ('main', 1), ('principle', 1), ('algorithm', 1), ('design', 1), ('implementation', 1), ('haskell', 1)]
[('powershell', 2), ('scripting', 2), ('language', 2), ('automate', 2), ('learn', 1), ('use', 1), ('microsoft', 1), ('real', 1), ('world', 1), ('task', 1), ('professional', 1), ('system', 1), ('administrator', 1), ('deal', 1), ('every', 1), ('day', 1), ('save', 1), ('time', 1), ('reg', 1), ('administrative', 1), ('shell', 1)]
[('youã', 2), ('framework', 2), ('io', 2), ('create', 2), ('view', 2), ('grounded', 1), ('basic', 1), ('swift', 1), ('xcode', 1), ('cocoa', 1), ('book', 1), ('provides', 1), ('structured', 1), ('explanation', 1), ('essential', 1), ('real', 1), ('world', 1), ('app', 1), ('component', 1), ('deep', 1), ('exploration', 1), ('copious', 1), ('code', 1), ('example', 1), ('learn', 1), ('manipulate', 1), ('controller', 1), ('add', 1), ('feature', 1), ('arrange', 1)]
[('development', 3), ('kent', 1), ('beck', 1), ('describes', 1), ('improve', 1), ('software', 1), ('integrating', 1), ('highly', 1), ('desirable', 1), ('concept', 1), ('daily', 1), ('process', 1), ('first', 1), ('edition', 1), ('extreme', 1), ('programming', 1), ('explained', 1), ('classic', 1), ('award', 1), ('radical', 1), ('idea', 1), ('improving', 1), ('small', 1), ('team', 1), ('developer', 1), ('write', 1), ('automated', 1), ('test', 1)]
[('book', 2), ('training', 2), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('adobe', 1), ('illustrator', 1), ('nbsp', 1), ('classroom', 1), ('best', 1), ('selling', 1), ('series', 1), ('hand', 1), ('software', 1), ('workbook', 1), ('offer', 1), ('program', 1), ('official', 1)]
[('accessible', 1), ('classroom', 1), ('tested', 1), ('textbook', 1), ('reference', 1), ('present', 1), ('introduction', 1), ('fundamental', 1), ('emerging', 1), ('interdisciplinary', 1), ('field', 1), ('data', 1), ('science', 1), ('coverage', 1), ('span', 1), ('key', 1), ('concept', 1), ('adopted', 1), ('statistic', 1), ('machine', 1), ('learning', 1), ('useful', 1)]
[('data', 3), ('company', 2), ('lake', 1), ('daring', 1), ('new', 1), ('approach', 1), ('harnessing', 1), ('power', 1), ('big', 1), ('technology', 1), ('providing', 1), ('convenient', 1), ('self', 1), ('service', 1), ('capability', 1), ('right', 1), ('book', 1), ('based', 1), ('discussion', 1), ('practitioner', 1), ('executive', 1), ('hundred', 1), ('organization', 1), ('ranging', 1), ('driven', 1), ('google', 1), ('linkedin', 1)]
[('data', 2), ('influence', 1), ('action', 1), ('book', 1), ('kind', 1), ('immersive', 1), ('learning', 1), ('experience', 1), ('become', 1), ('teach', 1), ('others', 1), ('powerful', 1), ('storyteller', 1)]
[('developed', 1), ('caribbean', 1), ('examination', 1), ('council', 1), ('book', 1), ('provides', 1), ('support', 1), ('maximise', 1), ('exam', 1), ('performance', 1), ('written', 1), ('team', 1), ('expert', 1), ('cover', 1), ('essential', 1), ('information', 1), ('easy', 1), ('use', 1), ('double', 1), ('page', 1), ('spread', 1), ('format', 1), ('topic', 1), ('begin', 1), ('learning', 1), ('outcome', 1), ('range', 1), ('feature', 1), ('help', 1), ('enhance', 1), ('study', 1)]
[('swift', 2), ('programming', 2), ('language', 2), ('learn', 1), ('book', 1), ('best', 1), ('known', 1), ('apple', 1), ('choice', 1), ('developing', 1), ('apps', 1), ('io', 1), ('ipados', 1), ('macos', 1), ('watchos', 1), ('tvos', 1), ('far', 1), ('versatile', 1), ('open', 1), ('source', 1), ('gaining', 1), ('ground', 1), ('system', 1), ('server', 1), ('side', 1), ('code', 1), ('run', 1), ('linux', 1), ('window', 1)]
[('absolute', 1), ('favorite', 1), ('kind', 1), ('interview', 1), ('preparation', 1), ('steven', 1), ('skiena', 1), ('algorithm', 1), ('design', 1), ('manual', 1), ('book', 1), ('helped', 1), ('understand', 1), ('astonishingly', 1), ('commonplace', 1), ('graph', 1), ('problem', 1), ('part', 1), ('every', 1)]
[('application', 3), ('java', 2), ('modular', 2), ('upcoming', 1), ('module', 1), ('system', 1), ('affect', 1), ('existing', 1), ('offer', 1), ('new', 1), ('way', 1), ('creating', 1), ('maintainable', 1), ('hand', 1), ('book', 1), ('developer', 1), ('learn', 1), ('joy', 1), ('modularity', 1), ('pattern', 1), ('needed', 1), ('create', 1), ('truly', 1), ('reliable', 1), ('author', 1), ('sander', 1), ('mak', 1), ('paul', 1)]
[('aws', 3), ('cloud', 2), ('set', 1), ('apart', 1), ('becoming', 1), ('certified', 1), ('practitioner', 1), ('take', 1), ('next', 1), ('step', 1), ('career', 1), ('expanding', 1), ('validating', 1), ('skill', 1), ('amazon', 1), ('web', 1), ('service', 1)]
[('widely', 1), ('considered', 1), ('best', 1), ('practical', 1), ('guide', 1), ('programming', 1), ('steve', 1), ('mcconnell', 1), ('original', 1), ('code', 1), ('complete', 1), ('helping', 1), ('developer', 1), ('write', 1), ('better', 1), ('software', 1), ('decade', 1), ('classic', 1), ('book', 1), ('fully', 1), ('updated', 1), ('revised', 1)]
[('nan', 1)]
[('computation', 2), ('programming', 2), ('day', 2), ('finally', 1), ('learn', 1), ('theory', 1), ('language', 1), ('design', 1), ('engaging', 1), ('practical', 1), ('way', 1), ('understanding', 1), ('explains', 1), ('theoretical', 1), ('computer', 1), ('science', 1), ('context', 1), ('recognize', 1), ('helping', 1), ('appreciate', 1), ('idea', 1), ('matter', 1), ('inform', 1), ('rather', 1), ('use', 1), ('mathematical', 1), ('notation', 1)]
[('system', 3), ('tool', 2), ('operating', 2), ('performance', 1), ('second', 1), ('edition', 1), ('cover', 1), ('concept', 1), ('strategy', 1), ('tuning', 1), ('application', 1), ('using', 1), ('linux', 1), ('based', 1), ('primary', 1), ('example', 1), ('deep', 1), ('understanding', 1), ('technique', 1), ('critical', 1)]
[('comprehensive', 1), ('expert', 1), ('guide', 1), ('programmer', 1), ('level', 1), ('welcome', 1), ('venerable', 1), ('trusted', 1), ('franchise', 1), ('dream', 1), ('world', 1), ('book', 1), ('probably', 1), ('far', 1), ('beyond', 1), ('mark', 1), ('super', 1), ('smart', 1), ('insists', 1)]
[('agile', 2), ('team', 2), ('lead', 1), ('organisation', 1), ('adopted', 1), ('method', 1), ('know', 1), ('crucial', 1), ('create', 1), ('right', 1), ('environment', 1), ('traditional', 1), ('tool', 1), ('gantt', 1), ('chart', 1), ('detailed', 1), ('plan', 1), ('internal', 1), ('kpis', 1), ('adequate', 1), ('complex', 1), ('fast', 1), ('changing', 1), ('market', 1), ('merely', 1), ('trusting', 1), ('employee', 1), ('self', 1), ('manage', 1), ('insufficient', 1)]
[('awk', 3), ('data', 2), ('processing', 1), ('text', 1), ('file', 1), ('language', 1), ('ideal', 1), ('handling', 1), ('extraction', 1), ('reporting', 1), ('reformatting', 1), ('job', 1), ('practical', 1), ('guide', 1), ('serf', 1), ('reference', 1), ('tutorial', 1), ('posix', 1), ('standard', 1), ('gnu', 1), ('implementation', 1), ('called', 1), ('gawk', 1), ('book', 1), ('useful', 1), ('novice', 1), ('expert', 1), ('alike', 1), ('thoroughly', 1), ('revised', 1)]
[('microservices', 2), ('architecture', 2), ('offer', 1), ('faster', 1), ('change', 1), ('speed', 1), ('better', 1), ('scalability', 1), ('cleaner', 1), ('evolvable', 1), ('system', 1), ('design', 1), ('implementing', 1), ('first', 1), ('difficult', 1), ('make', 1), ('myriad', 1), ('choice', 1), ('educate', 1), ('team', 1), ('technical', 1), ('detail', 1), ('navigate', 1), ('organization', 1), ('successful', 1), ('execution', 1), ('maximize', 1), ('chance', 1)]
[('command', 2), ('line', 2), ('data', 2), ('thoroughly', 1), ('revised', 1), ('guide', 1), ('demonstrates', 1), ('flexibility', 1), ('help', 1), ('become', 1), ('efficient', 1), ('productive', 1), ('scientist', 1), ('learn', 1), ('combine', 1), ('small', 1), ('yet', 1), ('powerful', 1), ('tool', 1), ('quickly', 1), ('obtain', 1), ('scrub', 1), ('explore', 1), ('model', 1), ('started', 1), ('author', 1), ('jeroen', 1), ('janssens', 1), ('provides', 1), ('docker', 1), ('image', 1), ('packed', 1)]
[('linux', 2), ('operating', 2), ('system', 2), ('best', 1), ('selling', 1), ('guide', 1), ('inner', 1), ('working', 1), ('copy', 1), ('sold', 1), ('original', 1), ('release', 1), ('nbsp', 1), ('unlike', 1), ('rsquo', 1), ('try', 1), ('hide', 1), ('important', 1), ('bit', 1), ('mdash', 1), ('give', 1)]
[('calendar', 2), ('algorithmic', 1), ('tool', 1), ('programmer', 1), ('astronomer', 1), ('enthusiast', 1), ('include', 1), ('forty', 1), ('astronomical', 1), ('function', 1)]
[('julia', 2), ('programming', 2), ('learning', 1), ('program', 1), ('excellent', 1), ('jit', 1), ('compiled', 1), ('dynamically', 1), ('typed', 1), ('language', 1), ('clean', 1), ('syntax', 1), ('hand', 1), ('guide', 1), ('us', 1), ('walk', 1), ('step', 1), ('time', 1), ('beginning', 1), ('basic', 1), ('concept', 1), ('moving', 1), ('advanced', 1), ('capability', 1), ('creating', 1), ('new', 1), ('type', 1), ('multiple', 1)]
[('easy', 3), ('book', 2), ('go', 2), ('make', 2), ('learn', 1), ('build', 1), ('software', 1), ('simple', 1), ('reliable', 1), ('efficient', 1), ('andthis', 1), ('programmer', 1), ('started', 1), ('googledesigned', 1), ('high', 1), ('performance', 1), ('networking', 1), ('multiprocessing', 1), ('python', 1), ('javascript', 1), ('language', 1), ('use', 1), ('thispractical', 1)]
[('book', 2), ('hurry', 1), ('learn', 1), ('j', 1), ('leading', 1), ('javascript', 1), ('library', 1), ('web', 1), ('based', 1), ('graphic', 1), ('visualization', 1), ('written', 1), ('technically', 1), ('savvy', 1), ('reader', 1), ('background', 1), ('programming', 1), ('data', 1), ('science', 1), ('move', 1), ('quickly', 1), ('emphasizing', 1), ('unifying', 1), ('concept', 1), ('pattern', 1), ('anticipating', 1), ('common', 1), ('difficulty', 1), ('author', 1), ('philipp', 1), ('janert', 1)]
[('data', 4), ('science', 1), ('big', 1), ('analytics', 1), ('harnessing', 1), ('power', 1), ('new', 1), ('insight', 1), ('book', 1), ('cover', 1), ('breadth', 1), ('activity', 1), ('method', 1), ('tool', 1), ('scientist', 1), ('use', 1), ('content', 1), ('focus', 1), ('concept', 1), ('principle', 1)]
[('rtf', 3), ('word', 3), ('text', 2), ('format', 2), ('file', 2), ('rich', 1), ('internal', 1), ('markup', 1), ('language', 1), ('used', 1), ('microsoft', 1), ('understood', 1), ('dozen', 1), ('processor', 1), ('universal', 1), ('pervades', 1), ('practically', 1), ('every', 1), ('desktop', 1), ('easier', 1), ('generate', 1), ('process', 1), ('binary', 1), ('doc', 1), ('programmer', 1), ('working', 1), ('processing', 1), ('document', 1)]
[('program', 3), ('working', 1), ('knowledge', 1), ('haskell', 1), ('hand', 1), ('book', 1), ('show', 1), ('use', 1), ('language', 1), ('many', 1), ('apis', 1), ('framework', 1), ('writing', 1), ('parallel', 1), ('concurrent', 1), ('learn', 1), ('parallelism', 1), ('exploit', 1), ('multicore', 1), ('processor', 1), ('speed', 1), ('computation', 1), ('heavy', 1), ('concurrency', 1), ('enables', 1), ('write', 1), ('thread', 1)]
[('game', 3), ('take', 2), ('full', 1), ('color', 1), ('th', 1), ('anniversary', 1), ('edition', 1), ('classic', 1), ('book', 1), ('deep', 1), ('influence', 1), ('underlie', 1), ('modern', 1), ('video', 1), ('examines', 1), ('element', 1), ('share', 1), ('traditional', 1), ('checker', 1), ('heart', 1), ('exploration', 1), ('veteran', 1), ('designer', 1), ('raph', 1), ('koster', 1), ('close', 1), ('look', 1), ('concept', 1), ('fun', 1)]
[('nan', 1)]
[('linux', 2), ('command', 2), ('line', 2), ('experienced', 1), ('shiny', 1), ('point', 1), ('click', 1), ('surface', 1), ('computer', 1), ('dive', 1), ('explore', 1), ('depth', 1), ('power', 1), ('take', 1), ('first', 1), ('terminal', 1), ('keystroke', 1), ('writing', 1), ('full', 1)]
[('offer', 2), ('step', 2), ('twenty', 1), ('first', 1), ('century', 1), ('technology', 1), ('seen', 1), ('new', 1), ('update', 1), ('apps', 1), ('coming', 1), ('time', 1), ('hard', 1), ('keep', 1), ('essential', 1), ('office', 1), ('help', 1), ('along', 1), ('easy', 1), ('follow', 1), ('instruction', 1), ('illustration', 1), ('photograph', 1), ('guide', 1), ('specific', 1), ('downloading', 1), ('installing', 1)]
[('pci', 2), ('express', 2), ('provides', 2), ('technology', 2), ('book', 2), ('system', 1), ('architecture', 1), ('depth', 1), ('description', 1), ('insight', 1), ('new', 1), ('feature', 1), ('implementation', 1), ('requirement', 1), ('comprehensive', 1), ('describes', 1), ('using', 1), ('approach', 1), ('easy', 1), ('reference', 1), ('organized', 1), ('relevant', 1), ('issue', 1), ('related', 1), ('key', 1)]
[('game', 2), ('design', 2), ('development', 2), ('third', 1), ('edition', 1), ('classic', 1), ('book', 1), ('completely', 1), ('revised', 1), ('include', 1), ('latest', 1), ('industry', 1), ('reader', 1), ('learn', 1), ('fundamental', 1), ('concept', 1), ('gameplay', 1), ('core', 1), ('mechanic', 1), ('user', 1)]
[('domain', 2), ('driven', 2), ('design', 2), ('approach', 2), ('implementing', 1), ('present', 1), ('top', 1), ('understanding', 1), ('dd', 1), ('way', 1), ('fluently', 1), ('connects', 1), ('strategic', 1), ('pattern', 1), ('fundamental', 1), ('tactical', 1), ('programming', 1), ('tool', 1), ('vaughn', 1), ('vernon', 1), ('couple', 1), ('guided', 1), ('implementation', 1), ('modern', 1), ('architecture', 1), ('highlighting', 1), ('importance', 1), ('value', 1), ('focusing', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('user', 2), ('process', 2), ('getting', 1), ('software', 1), ('released', 1), ('often', 1), ('painful', 1), ('risky', 1), ('time', 1), ('consuming', 1), ('book', 1), ('set', 1), ('principle', 1), ('technical', 1), ('practice', 1), ('enable', 1), ('rapid', 1), ('incremental', 1), ('delivery', 1), ('high', 1), ('quality', 1), ('valuable', 1), ('new', 1), ('functionality', 1), ('automation', 1), ('build', 1), ('deployment', 1), ('testing', 1), ('improved', 1), ('collaboration', 1)]
[('javascript', 4), ('definitive', 2), ('guide', 2), ('ubiquitous', 1), ('programming', 1), ('language', 1), ('web', 1), ('year', 1), ('bible', 1), ('programmer', 1), ('around', 1), ('world', 1), ('ideal', 1), ('developer', 1), ('level', 1), ('book', 1), ('new', 1), ('excerpt', 1), ('collecting', 1), ('essential', 1), ('part', 1), ('hefty', 1), ('volume', 1)]
[('fortnite', 2), ('game', 2), ('last', 2), ('standing', 2), ('enjoy', 1), ('playing', 1), ('battle', 1), ('royale', 1), ('hooked', 1), ('idea', 1), ('never', 1), ('newcomer', 1), ('need', 1), ('know', 1), ('best', 1), ('trick', 1), ('strategy', 1), ('exciting', 1), ('player', 1), ('object', 1), ('defeat', 1), ('enemy', 1), ('complexity', 1)]
[('interaction', 3), ('design', 3), ('essential', 2), ('guide', 1), ('fully', 1), ('revised', 1), ('updated', 1), ('mobile', 1), ('age', 1), ('face', 1), ('fourth', 1), ('edition', 1), ('latest', 1), ('update', 1), ('book', 1), ('shaped', 1), ('evolved', 1), ('landscape', 1)]
[('deep', 3), ('learning', 3), ('introduction', 1), ('broad', 1), ('range', 1), ('topic', 1), ('covering', 1), ('mathematical', 1), ('conceptual', 1), ('background', 1), ('technique', 1), ('used', 1), ('industry', 1), ('research', 1), ('perspective', 1), ('written', 1), ('three', 1), ('expert', 1), ('field', 1)]
[('linux', 3), ('basic', 3), ('practical', 1), ('tutorial', 1), ('style', 1), ('book', 1), ('us', 1), ('kali', 1), ('distribution', 1), ('teach', 1), ('focus', 1), ('hacker', 1), ('use', 1), ('topic', 1), ('include', 1), ('command', 1), ('line', 1), ('filesystems', 1), ('networking', 1), ('bash', 1), ('package', 1), ('management', 1), ('logging', 1)]
[('pivot', 3), ('table', 2), ('control', 2), ('use', 1), ('excel', 1), ('chart', 1), ('produce', 1), ('powerful', 1), ('dynamic', 1), ('report', 1), ('minute', 1), ('instead', 1), ('hour', 1), ('understand', 1), ('exactly', 1), ('going', 1), ('business', 1), ('take', 1), ('stay', 1), ('even', 1), ('never', 1), ('created', 1), ('book', 1), ('help', 1), ('leverage', 1), ('amazing', 1), ('flexibility', 1), ('analytical', 1), ('power', 1), ('drawing', 1)]
[('use', 2), ('electricity', 2), ('lot', 2), ('web', 2), ('pixel', 1), ('internet', 1), ('country', 1), ('sixth', 1), ('largest', 1), ('term', 1), ('today', 1), ('average', 1), ('page', 1), ('surpassed', 1), ('megabyte', 1), ('size', 1), ('leading', 1), ('slow', 1), ('load', 1), ('time', 1), ('frustrated', 1), ('user', 1), ('wasted', 1), ('energy', 1), ('practical', 1), ('guide', 1), ('design', 1), ('team', 1), ('learn', 1)]
[('core', 2), ('exam', 2), ('fifth', 1), ('edition', 1), ('comptia', 1), ('complete', 1), ('study', 1), ('guide', 1), ('offer', 1), ('accessible', 1), ('essential', 1), ('test', 1), ('preparation', 1), ('material', 1), ('popular', 1), ('certification', 1), ('providing', 1), ('full', 1), ('coverage', 1)]
[('database', 3), ('design', 3), ('step', 2), ('michael', 1), ('hernandez', 1), ('best', 1), ('selling', 1), ('mere', 1), ('mortal', 1), ('earned', 1), ('worldwide', 1), ('respect', 1), ('simplest', 1), ('way', 1), ('learn', 1), ('relational', 1), ('made', 1), ('hand', 1), ('software', 1), ('independent', 1), ('tutorial', 1), ('even', 1), ('clearer', 1), ('easier', 1), ('use', 1), ('new', 1), ('th', 1), ('anniversary', 1), ('edition', 1), ('show', 1), ('modern', 1)]
[('artificial', 1), ('intelligence', 1), ('present', 1), ('practical', 1), ('guide', 1), ('ai', 1), ('including', 1), ('agent', 1), ('machine', 1), ('learning', 1), ('problem', 1), ('solving', 1), ('simple', 1), ('complex', 1), ('domain', 1)]
[('tableau', 2), ('whether', 1), ('experience', 1), ('software', 1), ('getting', 1), ('started', 1), ('manual', 1), ('go', 1), ('beyond', 1), ('basic', 1), ('help', 1), ('build', 1), ('compelling', 1), ('interactive', 1), ('data', 1), ('visualization', 1), ('application', 1), ('author', 1), ('ryan', 1), ('sleeper', 1), ('worldâ', 1), ('qualified', 1), ('consultant', 1), ('complement', 1), ('web', 1), ('post', 1), ('instructional', 1), ('video', 1), ('guide', 1), ('give', 1)]
[('comprehensive', 1), ('authoritative', 1), ('guide', 1), ('teach', 1), ('dax', 1), ('language', 1), ('business', 1), ('intelligence', 1), ('data', 1), ('modeling', 1), ('analytics', 1), ('leading', 1), ('microsoft', 1), ('bi', 1), ('consultant', 1), ('marco', 1), ('russo', 1), ('alberto', 1), ('ferrari', 1), ('help', 1), ('master', 1), ('everything', 1), ('table', 1), ('function', 1), ('advanced', 1), ('code', 1), ('model', 1), ('optimisation', 1), ('learn', 1), ('exactly', 1), ('happens', 1), ('hood', 1)]
[('book', 2), ('programming', 2), ('language', 2), ('teach', 2), ('definitive', 1), ('creator', 1), ('widely', 1), ('used', 1), ('general', 1), ('purpose', 1), ('advanced', 1), ('pace', 1), ('work', 1), ('compiler', 1), ('updated', 1), ('new', 1), ('standard', 1), ('student', 1), ('heading', 1), ('toward', 1), ('domain', 1), ('mid', 1), ('size', 1), ('large', 1), ('application', 1), ('developed', 1)]
[('deep', 2), ('learning', 2), ('step', 2), ('whether', 1), ('software', 1), ('engineer', 1), ('aspiring', 1), ('enter', 1), ('world', 1), ('veteran', 1), ('data', 1), ('scientist', 1), ('hobbyist', 1), ('simple', 1), ('dream', 1), ('making', 1), ('next', 1), ('viral', 1), ('ai', 1), ('app', 1), ('might', 1), ('wondered', 1), ('begin', 1), ('guide', 1), ('teach', 1), ('build', 1), ('practical', 1), ('application', 1), ('cloud', 1), ('mobile', 1), ('browser', 1), ('edge', 1)]
[('bash', 2), ('youâ', 2), ('itâ', 1), ('simple', 1), ('want', 1), ('interact', 1), ('deeply', 1), ('mac', 1), ('o', 1), ('linux', 1), ('unix', 1), ('system', 1), ('need', 1), ('know', 1), ('work', 1), ('shell', 1), ('concise', 1), ('little', 1), ('book', 1), ('put', 1), ('essential', 1), ('information', 1), ('right', 1), ('fingertip', 1), ('quickly', 1), ('find', 1), ('answer', 1), ('annoying', 1), ('question', 1), ('generally', 1), ('come', 1)]
[('system', 4), ('unix', 2), ('linux', 2), ('guide', 2), ('cloud', 2), ('administration', 1), ('handbook', 1), ('today', 1), ('definitive', 1), ('installing', 1), ('configuring', 1), ('maintaining', 1), ('including', 1), ('supply', 1), ('core', 1), ('internet', 1), ('infrastructure', 1), ('updated', 1), ('new', 1), ('distribution', 1), ('environment', 1), ('comprehensive', 1), ('cover', 1), ('best', 1), ('practice', 1), ('every', 1), ('facet', 1)]
[('arista', 3), ('network', 3), ('become', 2), ('key', 2), ('player', 2), ('come', 2), ('software', 2), ('driven', 2), ('cloud', 2), ('networking', 1), ('solution', 1), ('large', 1), ('data', 1), ('center', 1), ('storage', 1), ('computing', 1), ('environment', 1), ('updated', 1), ('edition', 1), ('warrior', 1), ('renowned', 1), ('consultant', 1), ('technical', 1), ('author', 1), ('gary', 1), ('donahue', 1)]
[('erlang', 2), ('otp', 2), ('need', 1), ('build', 1), ('scalable', 1), ('fault', 1), ('tolerant', 1), ('system', 1), ('requirement', 1), ('high', 1), ('availability', 1), ('discover', 1), ('platform', 1), ('stand', 1), ('breadth', 1), ('depth', 1), ('consistency', 1), ('feature', 1), ('hand', 1), ('guide', 1), ('demonstrates', 1), ('use', 1), ('programming', 1), ('language', 1), ('framework', 1), ('reusable', 1), ('library', 1), ('tool', 1), ('design', 1)]
[('book', 3), ('flex', 3), ('bison', 3), ('need', 1), ('parse', 1), ('process', 1), ('text', 1), ('data', 1), ('linux', 1), ('unix', 1), ('useful', 1), ('explains', 1), ('use', 1), ('solve', 1), ('problem', 1), ('quickly', 1), ('long', 1), ('awaited', 1), ('sequel', 1), ('classic', 1), ('reilly', 1), ('lex', 1), ('yacc', 1), ('nearly', 1), ('decade', 1), ('original', 1), ('published', 1), ('utility', 1), ('proven', 1)]
[('algorithm', 1), ('proof', 1), ('implementation', 1), ('python', 1), ('need', 1), ('know', 1), ('tech', 1), ('job', 1), ('interview', 1), ('coding', 1), ('competition', 1)]
[('requirement', 4), ('right', 3), ('getting', 2), ('system', 2), ('crucial', 1), ('build', 1), ('best', 1), ('meet', 1), ('need', 1), ('know', 1), ('beyond', 1), ('doubt', 1), ('produce', 1), ('end', 1), ('result', 1), ('innovative', 1), ('beneficial', 1), ('development', 1), ('effective', 1), ('efficient', 1), ('mastering', 1), ('process', 1)]
[('xslt', 4), ('standard', 2), ('year', 1), ('anticipation', 1), ('delay', 1), ('finally', 1), ('released', 1), ('january', 1), ('revised', 1), ('edition', 1), ('classic', 1), ('book', 1), ('offer', 1), ('practical', 1), ('real', 1), ('world', 1), ('example', 1), ('demonstrate', 1), ('apply', 1), ('stylesheets', 1), ('xml', 1), ('data', 1), ('using', 1), ('either', 1), ('new', 1), ('specification', 1), ('older', 1), ('critical', 1), ('language', 1)]
[('order', 2), ('kernel', 2), ('thoroughly', 1), ('understand', 1), ('make', 1), ('linux', 1), ('tick', 1), ('work', 1), ('wide', 1), ('variety', 1), ('system', 1), ('need', 1), ('delve', 1), ('deep', 1), ('heart', 1), ('handle', 1), ('interaction', 1), ('cpu', 1), ('external', 1), ('world', 1), ('determines', 1), ('program', 1), ('share', 1), ('processor', 1), ('time', 1), ('manages', 1), ('limited', 1), ('memory', 1)]
[('latest', 2), ('javascript', 2), ('using', 2), ('guide', 2), ('web', 2), ('running', 1), ('standard', 1), ('fully', 1), ('updated', 1), ('beginner', 1), ('hand', 1), ('fast', 1), ('paced', 1), ('show', 1), ('start', 1), ('finish', 1), ('create', 1), ('dynamic', 1), ('page', 1), ('complete', 1), ('special', 1), ('effect', 1), ('edition', 1), ('contains', 1), ('update', 1), ('major', 1), ('new', 1), ('feature', 1), ('development', 1), ('technique', 1)]
[('ipv', 2), ('network', 2), ('organization', 1), ('gearing', 1), ('depth', 1), ('book', 1), ('provides', 1), ('practical', 1), ('information', 1), ('guidance', 1), ('need', 1), ('plan', 1), ('design', 1), ('implement', 1), ('vastly', 1), ('improved', 1), ('protocol', 1), ('author', 1), ('silvia', 1), ('hagen', 1), ('take', 1), ('system', 1), ('administrator', 1), ('engineer', 1), ('designer', 1), ('technical', 1), ('detail', 1), ('feature', 1), ('function', 1)]
[('come', 2), ('mysql', 1), ('price', 1), ('popularity', 1), ('flood', 1), ('question', 1), ('user', 1), ('solve', 1), ('specific', 1), ('data', 1), ('related', 1), ('issue', 1), ('cookbook', 1), ('need', 1), ('quick', 1), ('solution', 1), ('technique', 1), ('handy', 1), ('resource', 1), ('provides', 1), ('score', 1), ('short', 1), ('focused', 1), ('piece', 1), ('code', 1), ('hundred', 1), ('worked', 1), ('example', 1), ('clear', 1), ('concise', 1), ('explanation', 1)]
[('edition', 2), ('new', 1), ('version', 1), ('classic', 1), ('widely', 1), ('used', 1), ('text', 1), ('adapted', 1), ('javascript', 1), ('programming', 1), ('language', 1), ('publication', 1), ('first', 1), ('second', 1), ('structure', 1), ('interpretation', 1), ('computer', 1), ('program', 1), ('sicp', 1)]
[('destroy', 2), ('surveillance', 2), ('capitalism', 2), ('onezero', 1), ('medium', 1), ('official', 1), ('technology', 1), ('publication', 1), ('thrilled', 1), ('announce', 1), ('print', 1), ('demand', 1), ('edition', 1), ('cory', 1), ('doctorow', 1), ('exclusive', 1), ('new', 1), ('chapter', 1), ('first', 1), ('published', 1), ('online', 1), ('august', 1), ('instant', 1), ('hit', 1), ('reader', 1), ('scholar', 1), ('critic', 1), ('alike', 1)]
[('nan', 1)]
[('natural', 2), ('language', 2), ('source', 2), ('data', 2), ('news', 1), ('speech', 1), ('informal', 1), ('chatter', 1), ('social', 1), ('medium', 1), ('richest', 1), ('underutilized', 1), ('come', 1), ('constant', 1), ('stream', 1), ('always', 1), ('changing', 1), ('adapting', 1), ('context', 1), ('contains', 1), ('information', 1), ('conveyed', 1), ('traditional', 1), ('key', 1), ('unlocking', 1)]
[('new', 1), ('second', 1), ('edition', 1), ('advanced', 1), ('text', 1), ('several', 1), ('chapter', 1), ('regression', 1), ('including', 1), ('neural', 1), ('network', 1), ('deep', 1), ('learning', 1)]
[('excel', 3), ('renowned', 1), ('expert', 1), ('bill', 1), ('jelen', 1), ('mrexcel', 1), ('tracy', 1), ('syrstad', 1), ('explain', 1), ('build', 1), ('powerful', 1), ('reliable', 1), ('efficient', 1), ('spreadsheet', 1), ('nbsp', 1), ('use', 1), ('guide', 1), ('automate', 1), ('virtually', 1), ('routine', 1), ('task', 1), ('save', 1), ('hour', 1), ('day', 1), ('maybe', 1), ('even', 1)]
[('java', 5), ('programming', 2), ('step', 2), ('practical', 1), ('introduction', 1), ('fully', 1), ('revised', 1), ('long', 1), ('term', 1), ('support', 1), ('release', 1), ('se', 1), ('thoroughly', 1), ('updated', 1), ('platform', 1), ('standard', 1), ('edition', 1), ('hand', 1), ('resource', 1), ('show', 1), ('started', 1), ('first', 1), ('chapter', 1), ('written', 1), ('guru', 1), ('herbert', 1), ('schildt', 1), ('book', 1), ('start', 1), ('basic', 1)]
[('agile', 2), ('development', 2), ('security', 2), ('continues', 1), ('adopted', 1), ('software', 1), ('methodology', 1), ('among', 1), ('organization', 1), ('worldwide', 1), ('generally', 1), ('integrated', 1), ('traditional', 1), ('management', 1), ('technique', 1), ('professional', 1), ('speed', 1), ('understanding', 1), ('experience', 1), ('help', 1), ('bridge', 1), ('divide', 1)]
[('technology', 4), ('cloud', 3), ('computing', 3), ('concept', 2), ('architecture', 2), ('amp', 1), ('thomas', 1), ('erl', 1), ('world', 1), ('top', 1), ('selling', 1), ('author', 1), ('team', 1), ('expert', 1), ('researcher', 1), ('break', 1), ('proven', 1), ('mature', 1), ('practice', 1), ('series', 1), ('defined', 1), ('model', 1), ('mechanism', 1)]
[('php', 2), ('programming', 2), ('language', 2), ('web', 2), ('using', 2), ('widely', 1), ('used', 1), ('updated', 1), ('edition', 1), ('teach', 1), ('everything', 1), ('need', 1), ('know', 1), ('create', 1), ('effective', 1), ('application', 1), ('latest', 1), ('feature', 1), ('start', 1), ('big', 1), ('picture', 1), ('dive', 1), ('syntax', 1), ('technique', 1), ('detail', 1), ('example', 1), ('illustrate', 1)]
[('distributed', 4), ('application', 2), ('monitoring', 2), ('tracing', 2), ('today', 1), ('fashion', 1), ('health', 1), ('performance', 1), ('requires', 1), ('new', 1), ('approach', 1), ('enter', 1), ('method', 1), ('profiling', 1), ('particularly', 1), ('use', 1), ('microservice', 1), ('architecture', 1), ('problem', 1), ('hard', 1)]
[('many', 2), ('amp', 1), ('gt', 1), ('bible', 1), ('fundamental', 1), ('algorithm', 1), ('work', 1), ('taught', 1), ('today', 1), ('software', 1), ('developer', 1), ('know', 1), ('computer', 1), ('programming', 1), ('byte', 1), ('september', 1), ('nbsp', 1), ('begin', 1), ('tell', 1), ('pleasurable', 1), ('hour', 1)]
[('reliability', 3), ('sre', 2), ('organization', 1), ('big', 1), ('small', 1), ('started', 1), ('realize', 1), ('crucial', 1), ('system', 1), ('application', 1), ('business', 1), ('theyâ', 1), ('learned', 1), ('difficult', 1), ('maintain', 1), ('iterating', 1), ('speed', 1), ('demanded', 1), ('marketplace', 1), ('site', 1), ('engineering', 1), ('proven', 1), ('approach', 1), ('challenge', 1)]
[('router', 2), ('service', 2), ('step', 2), ('high', 2), ('layer', 2), ('discover', 1), ('juniper', 1), ('mx', 1), ('series', 1), ('advanced', 1), ('feature', 1), ('set', 1), ('record', 1), ('breaking', 1), ('scale', 1), ('popular', 1), ('among', 1), ('enterprise', 1), ('network', 1), ('provider', 1), ('revised', 1), ('expanded', 1), ('edition', 1), ('show', 1), ('implement', 1), ('density', 1), ('speed', 1), ('ethernet', 1), ('using', 1), ('engine', 1), ('ddos', 1), ('protection', 1)]
[('introduction', 2), ('network', 2), ('course', 2), ('companion', 1), ('guide', 1), ('official', 1), ('supplemental', 1), ('textbook', 1), ('cisco', 1), ('networking', 1), ('academy', 1), ('ccna', 1), ('curriculum', 1), ('introduces', 1), ('architecture', 1), ('protocol', 1), ('function', 1)]
[('course', 1), ('year', 1), ('engineering', 1), ('career', 1), ('author', 1), ('brian', 1), ('fitzpatrick', 1), ('ben', 1), ('collins', 1), ('sussman', 1), ('picked', 1), ('treasure', 1), ('trove', 1), ('wisdom', 1), ('anecdote', 1), ('successful', 1), ('team', 1), ('work', 1), ('together', 1), ('conclusion', 1), ('even', 1), ('among', 1), ('spent', 1), ('decade', 1), ('learning', 1), ('technical', 1), ('side', 1), ('job', 1), ('really', 1), ('focused', 1), ('human', 1)]
[('nan', 1)]
[('performance', 3), ('bpf', 2), ('tool', 2), ('optimize', 2), ('system', 2), ('use', 1), ('fix', 1), ('problem', 1), ('see', 1), ('inside', 1), ('running', 1), ('based', 1), ('give', 1), ('unprecedented', 1), ('visibility', 1), ('application', 1), ('troubleshoot', 1), ('code', 1), ('strengthen', 1)]
[('ccsp', 3), ('domain', 2), ('exam', 2), ('security', 2), ('comprehensive', 1), ('coverage', 1), ('every', 1), ('highly', 1), ('effective', 1), ('self', 1), ('study', 1), ('guide', 1), ('cover', 1), ('six', 1), ('release', 1), ('challenging', 1), ('certified', 1), ('cloud', 1), ('professional', 1), ('common', 1), ('body', 1), ('knowledge', 1), ('developed', 1), ('international', 1), ('information', 1), ('system', 1), ('certification', 1), ('consortium', 1), ('isc', 1)]
[('smart', 2), ('contract', 2), ('blockchain', 2), ('quickly', 2), ('ready', 1), ('dive', 1), ('development', 1), ('practical', 1), ('guide', 1), ('experienced', 1), ('engineer', 1), ('beginner', 1), ('alike', 1), ('learn', 1), ('entire', 1), ('process', 1), ('building', 1), ('ethereum', 1), ('open', 1), ('source', 1), ('based', 1), ('distributed', 1), ('computing', 1), ('platform', 1), ('llget', 1), ('speed', 1), ('fundamental', 1), ('move', 1)]
[('nan', 1)]
[('microsoft', 3), ('collaborative', 2), ('unlock', 1), ('potential', 1), ('powerful', 1), ('web', 1), ('based', 1), ('platform', 1), ('come', 1), ('standard', 1), ('sharepoint', 1), ('unlocks', 1), ('million', 1), ('remote', 1)]
[('vsphere', 3), ('exam', 3), ('vmware', 2), ('certified', 2), ('professional', 2), ('data', 2), ('center', 2), ('virtualization', 2), ('certification', 2), ('learn', 1), ('prepare', 1), ('practice', 1), ('success', 1), ('vcp', 1), ('dcv', 1), ('cert', 1), ('guide', 1), ('pearson', 1), ('leader', 1), ('learning', 1), ('master', 1)]
[('image', 4), ('using', 2), ('including', 2), ('learn', 1), ('correct', 1), ('improve', 1), ('digital', 1), ('seamlessly', 1), ('remove', 1), ('background', 1), ('repair', 1), ('content', 1), ('aware', 1), ('tool', 1), ('explore', 1), ('advanced', 1), ('filter', 1), ('enhance', 1), ('machine', 1), ('learning', 1), ('cloud', 1), ('processing', 1), ('select', 1), ('subject', 1), ('complex', 1), ('outline', 1), ('hair', 1), ('quickly', 1), ('precisely', 1), ('design', 1), ('composite', 1), ('instant', 1), ('sky', 1), ('replacement', 1)]
[('ipv', 2), ('address', 2), ('plan', 2), ('ready', 1), ('join', 1), ('move', 1), ('comprehensive', 1), ('guide', 1), ('get', 1), ('started', 1), ('showing', 1), ('create', 1), ('effective', 1), ('three', 1), ('example', 1), ('driven', 1), ('section', 1), ('preparation', 1), ('design', 1), ('maintenance', 1), ('learn', 1), ('principle', 1), ('best', 1), ('practice', 1), ('designing', 1), ('deploying', 1), ('maintaining', 1), ('far', 1), ('beyond', 1), ('possible', 1)]
[('shiny', 2), ('web', 2), ('data', 2), ('master', 1), ('framework', 1), ('take', 1), ('skill', 1), ('whole', 1), ('new', 1), ('level', 1), ('letting', 1), ('move', 1), ('beyond', 1), ('static', 1), ('report', 1), ('help', 1), ('create', 1), ('fully', 1), ('interactive', 1), ('apps', 1), ('analysis', 1), ('user', 1), ('able', 1), ('jump', 1), ('datasets', 1), ('explore', 1), ('different', 1), ('subset', 1), ('facet', 1), ('run', 1), ('model', 1), ('parameter', 1), ('value', 1), ('choosing', 1), ('customize', 1)]
[('data', 3), ('spark', 3), ('amount', 1), ('generated', 1), ('today', 1), ('staggering', 1), ('growing', 1), ('apache', 1), ('emerged', 1), ('de', 1), ('facto', 1), ('tool', 1), ('analyze', 1), ('big', 1), ('critical', 1), ('part', 1), ('science', 1), ('toolbox', 1), ('updated', 1), ('practical', 1), ('guide', 1), ('brings', 1), ('together', 1), ('statistical', 1), ('method', 1), ('real', 1), ('world', 1), ('datasets', 1), ('teach', 1), ('approach', 1), ('analytics', 1)]
[('devops', 2), ('cloud', 2), ('technology', 2), ('rise', 1), ('low', 1), ('cost', 1), ('computing', 1), ('container', 1), ('way', 1), ('java', 1), ('developer', 1), ('approach', 1), ('development', 1), ('today', 1), ('changed', 1), ('dramatically', 1), ('practical', 1), ('guide', 1), ('help', 1), ('take', 1), ('advantage', 1), ('microservices', 1), ('serverless', 1), ('native', 1), ('using', 1), ('latest', 1), ('technique', 1), ('simplify', 1), ('build', 1), ('process', 1), ('create', 1)]
[('system', 3), ('service', 3), ('individual', 2), ('early', 1), ('administration', 1), ('required', 1), ('depth', 1), ('knowledge', 1), ('variety', 1), ('job', 1), ('increasingly', 1), ('complex', 1), ('different', 1), ('company', 1), ('next', 1), ('growing', 1), ('list', 1), ('technology', 1), ('third', 1), ('party', 1), ('integrate', 1), ('stay', 1), ('relevant', 1), ('practical', 1)]
[('nan', 1)]
[('professional', 2), ('level', 2), ('rust', 2), ('master', 1), ('coding', 1), ('developer', 1), ('rsquo', 1), ('mastered', 1), ('basic', 1), ('book', 1), ('next', 1), ('step', 1), ('way', 1), ('programming', 1), ('cover', 1), ('everything', 1), ('need', 1), ('build', 1), ('maintain', 1), ('larger', 1), ('code', 1), ('base', 1)]
[('book', 1), ('unifies', 1), ('broad', 1), ('range', 1), ('programming', 1), ('language', 1), ('concept', 1), ('framework', 1), ('type', 1), ('system', 1), ('structural', 1), ('operational', 1), ('semantics', 1)]
[('field', 1), ('artificial', 1), ('intelligence', 1), ('made', 1), ('tremendous', 1), ('advance', 1), ('last', 1), ('decade', 1), ('smart', 1), ('ai', 1), ('getting', 1), ('exponentially', 1), ('smarter', 1), ('becoming', 1), ('autonomous', 1), ('action', 1), ('raise', 1), ('host', 1), ('challenge', 1), ('current', 1)]
[('new', 3), ('core', 2), ('exam', 2), ('coverage', 2), ('perfect', 1), ('study', 1), ('guide', 1), ('help', 1), ('pas', 1), ('comptia', 1), ('provides', 1), ('practice', 1), ('question', 1), ('every', 1), ('topic', 1), ('including', 1), ('substantial', 1), ('window', 1), ('pc', 1), ('hardware', 1), ('tablet', 1), ('smartphones', 1), ('macos', 1), ('linux', 1), ('cloud', 1), ('computing', 1), ('professional', 1), ('level', 1), ('networking', 1)]
[('book', 2), ('need', 1), ('coach', 1), ('five', 1), ('domain', 1), ('exam', 1), ('provides', 1), ('effective', 1), ('practice', 1), ('exercise', 1), ('prepare', 1), ('confidence', 1), ('thanks', 1), ('providing', 1), ('industry', 1), ('linda', 1), ('hainlen', 1), ('director', 1), ('learning', 1), ('solution', 1), ('indiana', 1), ('university', 1), ('health', 1), ('complete', 1), ('coverage', 1), ('material', 1)]
[('healthcare', 2), ('use', 2), ('ready', 1), ('take', 1), ('skill', 1), ('industry', 1), ('concise', 1), ('book', 1), ('provides', 1), ('candid', 1), ('assessment', 1), ('system', 1), ('ramp', 1), ('electronic', 1), ('health', 1), ('record', 1), ('ehrs', 1), ('form', 1), ('comply', 1), ('government', 1), ('meaningful', 1), ('requirement', 1), ('tremendous', 1), ('opportunity', 1), ('ten', 1), ('thousand', 1), ('professional', 1)]
[('programming', 2), ('language', 2), ('teach', 1), ('write', 1), ('program', 1), ('whether', 1), ('novice', 1), ('experienced', 1), ('programmer', 1), ('book', 1), ('provide', 1), ('clear', 1), ('understanding', 1), ('foundation', 1), ('many', 1)]
[('agile', 5), ('learning', 1), ('comprehensive', 1), ('guide', 1), ('popular', 1), ('method', 1), ('written', 1), ('light', 1), ('engaging', 1), ('style', 1), ('make', 1), ('easy', 1), ('learn', 1), ('revolutionized', 1), ('way', 1), ('team', 1), ('approach', 1), ('software', 1), ('development', 1), ('dozen', 1), ('methodology', 1), ('choose', 1), ('decision', 1), ('go', 1), ('tricky', 1), ('practical', 1), ('book', 1), ('help', 1)]
[('data', 2), ('size', 2), ('vault', 1), ('invented', 1), ('dan', 1), ('linstedt', 1), ('department', 1), ('defense', 1), ('standard', 1), ('successfully', 1), ('applied', 1), ('warehousing', 1), ('project', 1), ('organization', 1), ('different', 1), ('small', 1), ('large', 1), ('corporation', 1), ('due', 1)]
[('nan', 1)]
[('python', 3), ('language', 2), ('hitchhiker', 1), ('guide', 1), ('take', 1), ('journeyman', 1), ('pythonista', 1), ('true', 1), ('expertise', 1), ('created', 1), ('philosophy', 1), ('simplicity', 1), ('parsimony', 1), ('year', 1), ('old', 1), ('become', 1), ('primary', 1), ('secondary', 1), ('sql', 1), ('many', 1), ('business', 1), ('user', 1), ('popularity', 1), ('come', 1), ('diversityâ', 1), ('possibly', 1), ('dilution', 1)]
[('language', 2), ('complex', 1), ('many', 1), ('subtle', 1), ('facet', 1), ('especially', 1), ('true', 1), ('come', 1), ('object', 1), ('oriented', 1), ('template', 1), ('programming', 1), ('pocket', 1), ('reference', 1), ('memory', 1), ('aid', 1), ('programmer', 1), ('enabling', 1), ('quickly', 1), ('look', 1), ('usage', 1), ('syntax', 1), ('unfamiliar', 1), ('infrequently', 1), ('used', 1), ('aspect', 1), ('book', 1), ('small', 1), ('size', 1), ('make', 1), ('easy', 1)]
[('data', 3), ('work', 1), ('pro', 1), ('using', 1), ('guide', 1), ('break', 1), ('organize', 1), ('apply', 1), ('importantly', 1), ('understand', 1), ('analyzing', 1), ('order', 1), ('become', 1), ('true', 1), ('ninja', 1), ('stock', 1), ('market', 1), ('genomics', 1), ('laboratory', 1), ('census', 1), ('figure', 1), ('marketing', 1), ('email', 1), ('blast', 1), ('awash', 1), ('anyone', 1), ('opened', 1), ('spreadsheet', 1)]
[('unix', 3), ('new', 1), ('concise', 1), ('book', 1), ('tell', 1), ('need', 1), ('started', 1), ('first', 1), ('operating', 1), ('system', 1), ('written', 1), ('high', 1), ('level', 1), ('programming', 1), ('language', 1), ('natural', 1), ('portability', 1), ('low', 1), ('price', 1), ('made', 1), ('popular', 1), ('choice', 1), ('among', 1), ('university', 1), ('initially', 1), ('main', 1), ('dialect', 1), ('existed', 1), ('produced', 1)]
[('network', 3), ('application', 2), ('openssl', 2), ('day', 1), ('least', 1), ('somewhat', 1), ('aware', 1), ('protect', 1), ('common', 1), ('security', 1), ('threat', 1), ('many', 1), ('developer', 1), ('turning', 1), ('open', 1), ('source', 1), ('version', 1), ('ssl', 1), ('tl', 1), ('widely', 1), ('used', 1), ('protocol', 1), ('secure', 1), ('communication', 1), ('library', 1), ('seeing', 1), ('widespread', 1), ('adoption', 1)]
[('git', 4), ('guide', 2), ('version', 2), ('pocket', 1), ('perfect', 1), ('job', 1), ('companion', 1), ('distributed', 1), ('control', 1), ('system', 1), ('provides', 1), ('compact', 1), ('readable', 1), ('introduction', 1), ('new', 1), ('user', 1), ('reference', 1), ('common', 1), ('command', 1), ('procedure', 1), ('experience', 1), ('written', 1), ('handy', 1), ('task', 1), ('oriented', 1), ('organized', 1), ('around', 1)]
[('computer', 3), ('simple', 2), ('baffled', 1), ('work', 1), ('assume', 1), ('never', 1), ('understand', 1), ('realize', 1), ('daniel', 1), ('hillis', 1), ('short', 1), ('book', 1), ('brilliantly', 1), ('demonstrates', 1), ('seemingly', 1), ('complex', 1), ('operation', 1), ('broken', 1), ('part', 1), ('perform', 1), ('procedure', 1)]
[('agile', 5), ('project', 2), ('samurai', 2), ('printed', 1), ('full', 1), ('color', 1), ('faced', 1), ('software', 1), ('epic', 1), ('proportion', 1), ('tired', 1), ('committing', 1), ('delivering', 1), ('enter', 1), ('dojo', 1), ('expert', 1), ('jonathan', 1), ('rasmusson', 1), ('show', 1), ('kick', 1), ('start', 1), ('execute', 1), ('deliver', 1), ('combining', 1), ('cutting', 1), ('edge', 1), ('tool', 1), ('classic', 1), ('practice', 1)]
[('application', 2), ('developer', 2), ('database', 2), ('sql', 2), ('whether', 1), ('administrator', 1), ('web', 1), ('designer', 1), ('mobile', 1), ('app', 1), ('microsoft', 1), ('office', 1), ('user', 1), ('good', 1), ('working', 1), ('knowledge', 1), ('important', 1), ('part', 1), ('interacting', 1), ('sam', 1), ('teach', 1), ('minute', 1), ('offer', 1), ('straightforward', 1), ('practical', 1), ('answer', 1), ('need', 1), ('help', 1), ('job', 1)]
[('oracle', 3), ('pl', 3), ('sql', 3), ('language', 3), ('database', 2), ('productive', 1), ('fifth', 1), ('edition', 1), ('popular', 1), ('pocket', 1), ('reference', 1), ('put', 1), ('syntax', 1), ('specific', 1), ('element', 1), ('right', 1), ('fingertip', 1), ('including', 1), ('feature', 1), ('added', 1), ('whether', 1), ('developer', 1), ('administrator', 1), ('need', 1), ('answer', 1), ('quickly', 1)]
[('serverless', 2), ('computing', 2), ('revolutionizes', 1), ('way', 1), ('organization', 1), ('build', 1), ('deploy', 1), ('software', 1), ('hand', 1), ('guide', 1), ('java', 1), ('engineer', 1), ('learn', 1), ('use', 1), ('experience', 1), ('new', 1), ('world', 1), ('discover', 1), ('cloud', 1), ('execution', 1), ('model', 1), ('drastically', 1), ('decrease', 1), ('complexity', 1), ('developing', 1), ('operating', 1), ('application', 1)]
[('computer', 2), ('nine', 1), ('revolutionary', 1), ('algorithm', 1), ('power', 1), ('smartphones', 1), ('every', 1), ('day', 1), ('use', 1), ('perform', 1), ('remarkable', 1), ('feat', 1), ('simple', 1), ('web', 1), ('search', 1), ('pick', 1), ('handful', 1), ('relevant', 1), ('needle', 1), ('world', 1), ('biggest', 1), ('haystack', 1), ('uploading', 1), ('photo', 1), ('facebook', 1), ('transmits', 1), ('million', 1), ('piece', 1), ('information', 1), ('numerous', 1), ('error', 1), ('prone', 1), ('network', 1), ('link', 1), ('yet', 1)]
[('guide', 2), ('project', 2), ('management', 2), ('popular', 1), ('body', 1), ('knowledge', 1), ('fully', 1), ('updated', 1), ('eighth', 1), ('edition', 1), ('comprehensive', 1), ('long', 1), ('considered', 1), ('standard', 1)]
[('data', 3), ('good', 2), ('decision', 2), ('practical', 1), ('guide', 1), ('making', 1), ('world', 1), ('missing', 1), ('era', 1), ('big', 1), ('easy', 1), ('imagine', 1), ('information', 1), ('need', 1), ('make', 1), ('fact', 1), ('never', 1), ('complete', 1), ('tip', 1), ('iceberg', 1), ('universe', 1), ('composed', 1), ('dark', 1), ('matter', 1), ('invisible', 1)]
[('nan', 1)]
[('sql', 3), ('thousand', 2), ('bill', 1), ('karwin', 1), ('helped', 1), ('write', 1), ('better', 1), ('build', 1), ('stronger', 1), ('relational', 1), ('database', 1), ('sharing', 1), ('collection', 1), ('antipatterns', 1), ('common', 1), ('error', 1), ('identified', 1), ('request', 1), ('help', 1), ('developer', 1), ('expert', 1), ('get', 1), ('used', 1), ('inefficient', 1), ('hard', 1), ('maintain', 1)]
[('dom', 4), ('object', 2), ('cookbook', 2), ('enlightenment', 1), ('learn', 1), ('manipulate', 1), ('html', 1), ('efficiently', 1), ('scripting', 1), ('document', 1), ('model', 1), ('without', 1), ('library', 1), ('using', 1), ('code', 1), ('example', 1), ('style', 1), ('author', 1), ('cody', 1), ('lindley', 1), ('jquery', 1), ('walk', 1), ('modern', 1), ('concept', 1), ('demonstrate', 1), ('various', 1), ('node', 1), ('work', 1), ('past', 1), ('decade', 1), ('developer', 1)]
[('data', 2), ('software', 1), ('development', 1), ('today', 1), ('embracing', 1), ('event', 1), ('streaming', 1), ('optimizes', 1), ('technology', 1), ('interacts', 1), ('business', 1), ('integrate', 1), ('another', 1), ('meet', 1), ('customer', 1), ('need', 1), ('phenomenon', 1), ('called', 1), ('flow', 1), ('consists', 1), ('pattern', 1), ('standard', 1), ('determine', 1), ('activity', 1), ('related', 1), ('communicated', 1), ('party', 1)]
[('sql', 3), ('server', 3), ('dive', 1), ('administration', 1), ('really', 1), ('put', 1), ('dba', 1), ('expertise', 1), ('work', 1), ('supremely', 1), ('organised', 1), ('reference', 1), ('pack', 1), ('hundred', 1), ('timesaving', 1), ('solution', 1), ('tip', 1), ('workarounds', 1), ('need', 1), ('plan', 1), ('implement', 1), ('manage', 1), ('secure', 1), ('production', 1), ('environment', 1), ('premise', 1), ('cloud', 1), ('hybrid', 1), ('six', 1), ('expert', 1), ('thoroughly', 1)]
[('security', 3), ('usaf', 1), ('lieutenant', 1), ('colonel', 1), ('kathleen', 1), ('sweet', 1), ('seminal', 1), ('resource', 1), ('considered', 1), ('definitive', 1), ('handbook', 1), ('terrorist', 1), ('threat', 1), ('commercial', 1), ('airline', 1), ('airport', 1), ('presenting', 1), ('analysis', 1), ('modern', 1), ('day', 1), ('risk', 1), ('cover', 1), ('history', 1), ('aviation', 1), ('compare', 1), ('current', 1), ('flight', 1), ('practice', 1), ('country', 1), ('book', 1)]
[('microservice', 2), ('based', 2), ('project', 2), ('mvc', 1), ('crud', 1), ('make', 1), ('software', 1), ('easier', 1), ('write', 1), ('harder', 1), ('change', 1), ('architecture', 1), ('help', 1), ('even', 1), ('smallest', 1), ('remain', 1), ('agile', 1), ('long', 1), ('term', 1), ('tutorial', 1), ('meander', 1), ('theory', 1), ('completely', 1), ('miss', 1), ('point', 1), ('mean', 1), ('roll', 1), ('sleeve', 1), ('real', 1), ('learn', 1)]
[('learning', 3), ('guide', 2), ('deep', 2), ('programming', 2), ('prior', 2), ('nvidia', 1), ('full', 1), ('color', 1), ('studentsneed', 1), ('started', 1), ('result', 1), ('nbsp', 1), ('complete', 1), ('dl', 1), ('illuminating', 1), ('core', 1), ('concept', 1), ('hand', 1), ('technique', 1), ('needed', 1), ('succeed', 1), ('text', 1), ('used', 1), ('student', 1), ('experince', 1), ('machine', 1)]
[('nan', 1)]
[('artwork', 2), ('illustrator', 2), ('create', 1), ('precise', 1), ('drawing', 1), ('stylistic', 1), ('painting', 1), ('adobe', 1), ('completing', 1), ('series', 1), ('hand', 1), ('project', 1), ('logo', 1), ('illustration', 1), ('poster', 1), ('podcast', 1), ('cover', 1), ('flyer', 1), ('student', 1), ('start', 1), ('quick', 1), ('tour', 1), ('explore', 1), ('selection', 1), ('shape', 1), ('color', 1), ('editing', 1), ('progressing', 1), ('freeform', 1), ('gradient', 1)]
[('computer', 2), ('brand', 1), ('new', 1), ('edition', 1), ('popular', 1), ('introductory', 1), ('textbook', 1), ('explores', 1), ('hardware', 1), ('software', 1), ('network', 1), ('work', 1), ('everywhere', 1), ('highly', 1), ('visible', 1), ('laptop', 1), ('tablet', 1), ('cell', 1), ('phone', 1), ('smart', 1), ('watch', 1), ('invisible', 1), ('appliance', 1), ('car', 1), ('medical', 1), ('equipment', 1), ('transportation', 1), ('system', 1), ('power', 1), ('grid', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('microsoft', 2), ('new', 2), ('edition', 2), ('deliver', 1), ('eye', 1), ('catching', 1), ('insightful', 1), ('business', 1), ('intelligence', 1), ('power', 1), ('bi', 1), ('desktop', 1), ('updated', 1), ('cover', 1), ('latest', 1), ('feature', 1), ('continually', 1), ('evolving', 1), ('visualization', 1), ('product', 1), ('help', 1)]
[('kill', 2), ('fire', 2), ('system', 2), ('legacy', 2), ('chronicle', 1), ('challenge', 1), ('dealing', 1), ('aging', 1), ('computer', 1), ('along', 1), ('sound', 1), ('modernization', 1), ('strategy', 1), ('survive', 1), ('apocalypse', 1), ('nbsp', 1), ('ldquo', 1), ('rdquo', 1), ('typical', 1), ('first', 1), ('reaction', 1)]
[('career', 2), ('software', 1), ('startup', 1), ('make', 1), ('global', 1), ('headline', 1), ('every', 1), ('day', 1), ('technology', 1), ('company', 1), ('succeed', 1), ('grow', 1), ('engineering', 1), ('department', 1), ('suddenly', 1), ('opportunity', 1), ('lead', 1), ('team', 1), ('become', 1), ('manager', 1), ('often', 1), ('uncharted', 1), ('territory', 1), ('decide', 1), ('whether', 1), ('move', 1), ('right', 1)]
[('book', 2), ('build', 2), ('distributed', 2), ('go', 2), ('gopher', 1), ('want', 1), ('learn', 1), ('system', 1), ('know', 1), ('basic', 1), ('eager', 1), ('put', 1), ('knowledge', 1), ('work', 1), ('service', 1), ('highly', 1), ('available', 1), ('resilient', 1), ('scalable', 1), ('need', 1), ('apply', 1), ('real', 1), ('world', 1), ('situation', 1), ('level', 1), ('engineering', 1), ('skill', 1), ('today', 1), ('take', 1)]
[('information', 2), ('today', 1), ('technology', 1), ('driven', 1), ('environment', 1), ('increasing', 1), ('demand', 1), ('delivery', 1), ('compromise', 1), ('struck', 1), ('security', 1), ('availability', 1), ('book', 1), ('pragmatic', 1), ('guide', 1), ('assurance', 1), ('business', 1), ('professional', 1), ('technical', 1), ('expert', 1)]
[('port', 5), ('pc', 2), ('usb', 2), ('embedded', 2), ('using', 2), ('serial', 2), ('network', 2), ('virtual', 1), ('system', 1), ('addressed', 1), ('updated', 1), ('guide', 1), ('programming', 1), ('interfacing', 1), ('topic', 1), ('include', 1), ('net', 1), ('serialport', 1), ('class', 1), ('communication', 1), ('upgrading', 1), ('existing', 1), ('r', 1), ('design', 1), ('wireless', 1), ('creating', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('lot', 1), ('happened', 1), ('world', 1), ('digital', 1), ('design', 1), ('first', 1), ('edition', 1), ('title', 1), ('published', 1)]
[('asyncio', 3), ('developer', 2), ('among', 1), ('python', 1), ('put', 1), ('complexity', 1), ('time', 1), ('take', 1), ('another', 1), ('look', 1), ('complicated', 1), ('aim', 1), ('solve', 1), ('problem', 1), ('concurrent', 1), ('network', 1), ('programming', 1), ('framework', 1), ('end', 1), ('user', 1), ('feature', 1), ('need', 1), ('consider', 1), ('small', 1), ('subset', 1), ('whole', 1), ('api', 1), ('picking', 1), ('right', 1)]
[('data', 2), ('popular', 2), ('social', 2), ('mine', 1), ('rich', 1), ('tucked', 1), ('away', 1), ('website', 1), ('twitter', 1), ('facebook', 1), ('linkedin', 1), ('instagram', 1), ('third', 1), ('edition', 1), ('guide', 1), ('scientist', 1), ('analyst', 1), ('programmer', 1), ('learn', 1), ('glean', 1), ('insight', 1), ('medium', 1), ('including', 1), ('connecting', 1), ('talking', 1), ('located', 1), ('using', 1)]
[('file', 3), ('sed', 2), ('awk', 2), ('editing', 2), ('task', 2), ('create', 1), ('modify', 1), ('text', 1), ('power', 1), ('tool', 1), ('regular', 1), ('expression', 1), ('allow', 1), ('programmer', 1), ('system', 1), ('administrator', 1), ('automate', 1), ('need', 1), ('performed', 1), ('simplify', 1), ('performing', 1), ('edits', 1), ('multiple', 1), ('write', 1), ('conversion', 1), ('program', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('fill', 1), ('gap', 1), ('planning', 1), ('ssis', 1), ('release', 1), ('microsoft', 1), ('sql', 1), ('server', 1), ('integration', 1), ('service', 1), ('provides', 1), ('enhancement', 1), ('managing', 1), ('extraction', 1), ('transformation', 1), ('load', 1), ('operation', 1), ('plus', 1), ('expanded', 1)]
[('cloud', 2), ('developer', 1), ('often', 1), ('struggle', 1), ('first', 1), ('encountering', 1), ('learning', 1), ('distributed', 1), ('system', 1), ('becoming', 1), ('familiar', 1), ('technology', 1), ('container', 1), ('function', 1), ('knowing', 1), ('put', 1), ('everything', 1), ('together', 1), ('daunting', 1), ('practical', 1), ('guide', 1), ('speed', 1), ('pattern', 1), ('building', 1), ('native', 1), ('application', 1), ('best', 1), ('practice', 1)]
[('cryptography', 2), ('technology', 2), ('security', 2), ('information', 2), ('vital', 1), ('underpins', 1), ('computer', 1), ('network', 1), ('book', 1), ('present', 1), ('comprehensive', 1), ('introduction', 1), ('role', 1), ('play', 1), ('providing', 1), ('various', 1)]
[('online', 3), ('big', 2), ('real', 1), ('world', 1), ('advice', 1), ('invisible', 1), ('fbi', 1), ('wanted', 1), ('hacker', 1), ('wired', 1), ('without', 1), ('leaving', 1), ('trace', 1), ('every', 1), ('step', 1), ('tracked', 1), ('stored', 1), ('identity', 1), ('literally', 1), ('stolen', 1), ('company', 1), ('government', 1), ('want', 1), ('know', 1), ('exploit', 1), ('privacy', 1), ('luxury', 1), ('afford', 1)]
[('want', 1), ('learn', 1), ('program', 1), ('working', 1), ('python', 1), ('excellent', 1), ('way', 1), ('start', 1), ('hand', 1), ('guide', 1), ('take', 1), ('language', 1), ('step', 1), ('time', 1), ('beginning', 1), ('basic', 1), ('programming', 1), ('concept', 1), ('moving', 1), ('function', 1), ('recursion', 1), ('data', 1), ('structure', 1), ('object', 1), ('oriented', 1), ('design', 1), ('second', 1), ('edition', 1), ('supporting', 1), ('code', 1), ('updated', 1)]
[('xslt', 2), ('xpath', 2), ('combining', 1), ('coverage', 1), ('book', 1), ('definitive', 1), ('reference', 1), ('final', 1), ('recommendation', 1), ('status', 1), ('version', 1), ('specification', 1), ('author', 1), ('start', 1), ('covering', 1), ('concept', 1), ('delve', 1)]
[('code', 3), ('bad', 2), ('programmer', 1), ('seen', 1), ('source', 1), ('ugly', 1), ('buggy', 1), ('make', 1), ('brain', 1), ('ache', 1), ('past', 1), ('five', 1), ('year', 1), ('author', 1), ('dustin', 1), ('boswell', 1), ('trevor', 1), ('foucher', 1), ('analyzed', 1), ('hundred', 1), ('example', 1), ('determine', 1), ('improved', 1), ('conclusion', 1), ('need', 1), ('write', 1)]
[('angular', 4), ('book', 1), ('demystify', 1), ('framework', 1), ('provide', 1), ('clear', 1), ('instruction', 1), ('example', 1), ('started', 1), ('writing', 1), ('scalable', 1), ('application', 1), ('running', 1), ('cover', 1), ('major', 1), ('piece', 1), ('structured', 1), ('manner', 1), ('generally', 1), ('used', 1), ('hand', 1), ('training', 1), ('chapter', 1), ('take', 1), ('concept', 1), ('use', 1)]
[('processing', 2), ('programming', 2), ('learning', 1), ('second', 1), ('edition', 1), ('friendly', 1), ('start', 1), ('guide', 1), ('free', 1), ('open', 1), ('source', 1), ('alternative', 1), ('expensive', 1), ('software', 1), ('daunting', 1), ('language', 1), ('requiring', 1), ('previous', 1), ('experience', 1), ('book', 1), ('true', 1)]
[('tcp', 3), ('ip', 3), ('protocol', 2), ('illustrated', 1), ('volume', 1), ('detailed', 1), ('visual', 1), ('guide', 1), ('today', 1), ('suite', 1), ('fully', 1), ('updated', 1), ('newest', 1), ('innovation', 1), ('demonstrates', 1), ('action', 1), ('realistic', 1), ('example', 1), ('modern', 1), ('linux', 1), ('window', 1), ('mac', 1), ('o', 1), ('environment', 1), ('better', 1), ('way', 1), ('discover', 1), ('work', 1), ('reacts', 1), ('common', 1)]
[('penetration', 3), ('security', 2), ('tester', 1), ('simulate', 1), ('cyber', 1), ('attack', 1), ('find', 1), ('weakness', 1), ('network', 1), ('operating', 1), ('system', 1), ('application', 1), ('information', 1), ('expert', 1), ('worldwide', 1), ('use', 1), ('technique', 1), ('evaluate', 1), ('enterprise', 1), ('defense', 1), ('testing', 1)]
[('software', 2), ('head', 2), ('new', 2), ('printed', 1), ('full', 1), ('color', 1), ('development', 1), ('happens', 1), ('editor', 1), ('ide', 1), ('designtool', 1), ('educated', 1), ('work', 1), ('hardware', 1), ('wetware', 1), ('brain', 1), ('learning', 1), ('skill', 1), ('technology', 1), ('critical', 1), ('career', 1), ('book', 1), ('andy', 1), ('hunt', 1)]
[('comprehensive', 1), ('introduction', 1), ('computational', 1), ('analysis', 1), ('sentiment', 1), ('opinion', 1), ('emotion', 1), ('mood', 1), ('including', 1), ('deep', 1), ('learning', 1), ('method', 1)]
[('ømq', 2), ('message', 2), ('dive', 1), ('aka', 1), ('zeromq', 1), ('smart', 1), ('socket', 1), ('library', 1), ('give', 1), ('fast', 1), ('easy', 1), ('based', 1), ('concurrency', 1), ('application', 1), ('quick', 1), ('paced', 1), ('guide', 1), ('learn', 1), ('hand', 1), ('use', 1), ('scalable', 1), ('lightweight', 1), ('highly', 1), ('flexible', 1), ('networking', 1), ('tool', 1), ('exchanging', 1), ('among', 1), ('cluster', 1), ('cloud', 1), ('multi', 1), ('system', 1), ('environment', 1)]
[('java', 2), ('new', 2), ('want', 1), ('push', 1), ('skill', 1), ('next', 1), ('level', 1), ('book', 1), ('provides', 1), ('expert', 1), ('advice', 1), ('leader', 1), ('practitioner', 1), ('encouraged', 1), ('look', 1), ('problem', 1), ('way', 1), ('take', 1), ('broader', 1), ('responsibility', 1), ('work', 1), ('stretch', 1), ('learning', 1), ('technique', 1), ('become', 1), ('good', 1), ('entire', 1), ('craft', 1), ('development', 1), ('possibly', 1)]
[('kubernetes', 5), ('application', 4), ('operator', 2), ('way', 1), ('packaging', 1), ('deploying', 1), ('managing', 1), ('run', 1), ('composed', 1), ('managed', 1), ('term', 1), ('add', 1), ('specific', 1), ('operational', 1), ('knowledge', 1), ('cluster', 1), ('making', 1), ('easier', 1), ('automate', 1), ('complex', 1), ('stateful', 1), ('augment', 1)]
[('git', 3), ('build', 1), ('software', 1), ('practical', 1), ('guide', 1), ('delivers', 1), ('unique', 1), ('first', 1), ('approach', 1), ('version', 1), ('control', 1), ('explains', 1), ('using', 1), ('focal', 1), ('point', 1), ('help', 1), ('team', 1), ('work', 1), ('better', 1), ('together', 1), ('learn', 1), ('plan', 1), ('pursue', 1), ('workflow', 1), ('ensures', 1), ('accomplish', 1), ('project', 1), ('goal', 1), ('fit', 1)]
[('early', 2), ('user', 1), ('interface', 1), ('ui', 1), ('design', 1), ('rule', 1), ('guideline', 1), ('developed', 1), ('hci', 1), ('guru', 1), ('recognized', 1), ('throughout', 1), ('field', 1), ('based', 1), ('cognitive', 1), ('psychology', 1), ('study', 1), ('mental', 1), ('process', 1), ('problem', 1), ('solving', 1), ('memory', 1), ('language', 1)]
[('nan', 1)]
[('art', 2), ('often', 1), ('referred', 1), ('black', 1), ('complexity', 1), ('uncertainty', 1), ('software', 1), ('estimation', 1), ('difficult', 1), ('puzzling', 1), ('think', 1), ('fact', 1), ('generating', 1), ('accurate', 1), ('estimate', 1), ('straightforward', 1), ('understand', 1), ('creating', 1), ('highly', 1), ('anticipated', 1), ('book', 1), ('acclaimed', 1), ('author', 1), ('steve', 1), ('mcconnell', 1), ('unravels', 1), ('mystery', 1)]
[('microservices', 3), ('architecture', 2), ('whole', 1), ('indeed', 1), ('greater', 1), ('sum', 1), ('part', 1), ('practice', 1), ('individual', 1), ('inadvertently', 1), ('impact', 1), ('others', 1), ('alter', 1), ('end', 1), ('user', 1), ('experience', 1), ('effective', 1), ('require', 1), ('standardization', 1), ('organizational', 1), ('level', 1), ('help', 1), ('platform', 1), ('engineering', 1), ('team', 1), ('practical', 1)]
[('perl', 5), ('find', 2), ('cookbook', 2), ('example', 2), ('programmer', 1), ('copy', 1), ('comprehensive', 1), ('collection', 1), ('problem', 1), ('solution', 1), ('practical', 1), ('anyone', 1), ('programming', 1), ('book', 1), ('contains', 1), ('hundred', 1), ('rigorously', 1), ('reviewed', 1), ('recipe', 1), ('thousand', 1), ('ranging', 1), ('brief', 1), ('liner', 1), ('complete', 1)]
[('korn', 2), ('language', 2), ('unix', 2), ('shell', 1), ('interactive', 1), ('command', 1), ('scripting', 1), ('accessing', 1), ('computer', 1), ('system', 1), ('complete', 1), ('high', 1), ('level', 1), ('programming', 1), ('favorite', 1), ('developed', 1), ('mid', 1), ('david', 1), ('bell', 1), ('laboratory', 1), ('knowing', 1), ('use', 1), ('essential', 1), ('skill', 1), ('serious', 1), ('user', 1)]
[('python', 3), ('art', 2), ('computational', 2), ('problem', 2), ('solving', 2), ('using', 2), ('new', 1), ('edition', 1), ('introduction', 1), ('book', 1), ('introduces', 1), ('student', 1), ('little', 1), ('prior', 1), ('programming', 1), ('experience', 1), ('various', 1)]
[('rigorous', 1), ('treatment', 1), ('theory', 1), ('deep', 1), ('learning', 1), ('first', 1), ('principle', 1), ('application', 1), ('beautiful', 1), ('problem', 1), ('natural', 1), ('science', 1)]
[('take', 1), ('reader', 1), ('basic', 1), ('detailed', 1), ('derivation', 1), ('open', 1), ('source', 1), ('implementation', 1), ('fundamental', 1), ('quantum', 1), ('algorithm', 1)]
[('ada', 2), ('established', 1), ('textbook', 1), ('language', 1), ('year', 1), ('covering', 1), ('iso', 1), ('corrigendum', 1), ('introducing', 1)]
[('unique', 1), ('approach', 1), ('mathematical', 1), ('logic', 1), ('student', 1), ('implement', 1), ('underlying', 1), ('concept', 1), ('proof', 1), ('python', 1), ('programming', 1), ('language', 1)]
[('certified', 3), ('data', 3), ('privacy', 3), ('offer', 2), ('coverage', 2), ('solution', 2), ('engineer', 2), ('exam', 2), ('study', 1), ('guide', 1), ('every', 1), ('objective', 1), ('resource', 1), ('complete', 1), ('date', 1), ('material', 1), ('included', 1), ('current', 1), ('release', 1), ('written', 1), ('security', 1), ('expert', 1), ('cdpse', 1)]
[('strategic', 2), ('monolith', 2), ('microservices', 2), ('help', 1), ('business', 1), ('decision', 1), ('maker', 1), ('technical', 1), ('team', 1), ('member', 1), ('collaborate', 1), ('clearly', 1), ('understand', 1), ('problem', 1), ('identify', 1), ('optimal', 1), ('architectural', 1), ('approach', 1), ('whether', 1), ('turn', 1), ('distributed', 1), ('modularized', 1), ('coarse', 1), ('grained', 1), ('service', 1), ('partway', 1)]
[('adobe', 2), ('photoshop', 2), ('learn', 1), ('create', 1), ('edit', 1), ('image', 1), ('using', 1), ('classroom', 1), ('book', 1), ('release', 1), ('us', 1), ('real', 1), ('world', 1), ('project', 1), ('based', 1), ('learning', 1), ('cover', 1), ('basic', 1), ('beyond', 1), ('providing', 1), ('countless', 1), ('tip', 1), ('technique', 1), ('help', 1), ('become', 1)]
[('sprint', 2), ('goal', 2), ('book', 2), ('scrum', 2), ('leverage', 1), ('supercharge', 1), ('teamwork', 1), ('build', 1), ('winning', 1), ('product', 1), ('many', 1), ('right', 1), ('way', 1), ('driving', 1), ('value', 1), ('teach', 1), ('deliver', 1), ('exceptional', 1)]
[('nlp', 3), ('exploded', 1), ('popularity', 1), ('last', 1), ('year', 1), ('google', 1), ('facebook', 1), ('openai', 1), ('others', 1), ('continue', 1), ('release', 1), ('larger', 1), ('language', 1), ('model', 1), ('many', 1), ('team', 1), ('still', 1), ('struggle', 1), ('building', 1), ('application', 1), ('live', 1), ('hype', 1), ('hand', 1), ('guide', 1), ('help', 1), ('speed', 1), ('latest', 1), ('promising', 1), ('trend', 1), ('basic', 1)]
[('intelligence', 2), ('brain', 2), ('bestselling', 1), ('author', 1), ('neuroscientist', 1), ('computer', 1), ('engineer', 1), ('unveils', 1), ('theory', 1), ('revolutionize', 1), ('understanding', 1), ('future', 1), ('ai', 1), ('neuroscience', 1), ('advance', 1), ('made', 1), ('little', 1), ('progress', 1), ('biggest', 1), ('question', 1), ('simple', 1), ('cell', 1), ('create', 1), ('jeff', 1), ('hawkins', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('web', 2), ('microsoft', 2), ('build', 1), ('application', 1), ('net', 1), ('run', 1), ('modern', 1), ('browser', 1), ('become', 1), ('full', 1), ('stack', 1), ('developer', 1), ('thing', 1), ('using', 1), ('blazor', 1), ('framework', 1), ('technique', 1), ('shown', 1), ('book', 1), ('new', 1), ('edition', 1)]
[('documentation', 2), ('learn', 1), ('integrate', 1), ('programming', 1), ('good', 1), ('book', 1), ('teach', 1), ('craft', 1), ('step', 1), ('software', 1), ('development', 1), ('lifecycle', 1), ('understanding', 1), ('user', 1), ('need', 1), ('publishing', 1), ('measuring', 1), ('maintaining', 1), ('useful', 1)]
[('tool', 2), ('whether', 1), ('want', 1), ('automate', 1), ('task', 1), ('analyze', 1), ('data', 1), ('parse', 1), ('log', 1), ('talk', 1), ('network', 1), ('service', 1), ('address', 1), ('system', 1), ('requirement', 1), ('writing', 1), ('command', 1), ('line', 1), ('fastest', 1), ('perhaps', 1), ('fun', 1), ('way', 1), ('go', 1), ('programming', 1), ('language', 1), ('choice', 1), ('developing', 1), ('fast', 1), ('reliable', 1), ('cross', 1), ('platform', 1), ('create', 1)]
[('reconstruct', 1), ('scene', 1), ('image', 1), ('using', 1), ('geometry', 1), ('algebra', 1), ('application', 1), ('computer', 1), ('vision', 1)]
[('tech', 2), ('world', 1), ('infamous', 1), ('hacker', 1), ('offer', 1), ('insider', 1), ('view', 1), ('low', 1), ('threat', 1), ('high', 1), ('security', 1), ('kevin', 1), ('mitnick', 1), ('exploit', 1), ('cyber', 1), ('desperado', 1), ('fugitive', 1), ('form', 1), ('exhaustive', 1), ('fbi', 1), ('manhunt', 1), ('history', 1), ('spawned', 1)]
[('accessible', 1), ('introduction', 1), ('feature', 1), ('case', 1), ('study', 1), ('online', 1), ('advertising', 1), ('spectrum', 1), ('auction', 1), ('kidney', 1), ('exchange', 1), ('network', 1), ('management', 1)]
[('finally', 1), ('textbook', 1), ('explains', 1), ('quantum', 1), ('computing', 1), ('using', 1), ('technique', 1), ('concept', 1), ('familiar', 1), ('computer', 1), ('scientist', 1)]
[('agile', 3), ('martin', 2), ('clean', 2), ('nearly', 1), ('twenty', 1), ('year', 1), ('manifesto', 1), ('first', 1), ('presented', 1), ('legendary', 1), ('robert', 1), ('uncle', 1), ('bob', 1), ('reintroduces', 1), ('value', 1), ('principle', 1), ('new', 1), ('generation', 1), ('programmer', 1), ('nonprogrammers', 1), ('alike', 1), ('author', 1), ('code', 1), ('highly', 1), ('influential', 1), ('software', 1), ('development', 1), ('guide', 1), ('founding', 1)]
[('cloud', 2), ('spring', 2), ('separate', 1), ('traditional', 1), ('enterprise', 1), ('like', 1), ('amazon', 1), ('netflix', 1), ('etsy', 1), ('company', 1), ('refined', 1), ('art', 1), ('native', 1), ('development', 1), ('maintain', 1), ('competitive', 1), ('edge', 1), ('stay', 1), ('ahead', 1), ('competition', 1), ('practical', 1), ('guide', 1), ('show', 1), ('java', 1), ('jvm', 1), ('developer', 1), ('build', 1), ('better', 1), ('software', 1), ('faster', 1), ('using', 1), ('boot', 1)]
[('using', 1), ('flexible', 1), ('software', 1), ('system', 1), ('book', 1), ('teach', 1), ('evidential', 1), ('inferential', 1), ('issue', 1), ('used', 1), ('drawing', 1), ('conclusion', 1), ('mass', 1), ('evidence', 1)]
[('study', 2), ('package', 2), ('pmi', 2), ('acp', 2), ('exam', 2), ('ultimate', 1), ('new', 1), ('project', 1), ('management', 1), ('institute', 1), ('agile', 1), ('certified', 1), ('practitioner', 1), ('guide', 1), ('comprehensive', 1)]
[('panda', 2), ('data', 2), ('python', 2), ('hand', 1), ('example', 1), ('rich', 1), ('introduction', 1), ('analysis', 1), ('nbsp', 1), ('today', 1), ('analyst', 1), ('manage', 1), ('characterized', 1), ('extraordinary', 1), ('variety', 1), ('velocity', 1), ('volume', 1), ('using', 1), ('open', 1), ('source', 1), ('library', 1), ('use', 1), ('rapidly', 1)]
[('web', 3), ('svg', 2), ('illustration', 2), ('using', 1), ('scalable', 1), ('vector', 1), ('graphic', 1), ('scratch', 1), ('surface', 1), ('format', 1), ('potential', 1), ('practical', 1), ('guide', 1), ('learn', 1), ('use', 1), ('graphical', 1), ('document', 1), ('integrate', 1), ('complex', 1), ('html', 1), ('page', 1), ('style', 1), ('custom', 1), ('cs', 1), ('developer', 1), ('discover', 1)]
[('excel', 2), ('make', 1), ('work', 1), ('dummy', 1), ('offer', 1), ('eight', 1), ('book', 1), ('completely', 1), ('updated', 1), ('reflect', 1), ('major', 1), ('change', 1), ('microsoft', 1), ('making', 1), ('office', 1)]
[('format', 2), ('document', 2), ('pdf', 1), ('world', 1), ('stand', 1), ('rather', 1), ('tiresome', 1), ('used', 1), ('downloaded', 1), ('web', 1), ('slow', 1), ('load', 1), ('slower', 1), ('print', 1), ('hopelessly', 1), ('unsearchable', 1), ('impossible', 1), ('cut', 1), ('paste', 1), ('portable', 1), ('inspire', 1), ('affection', 1), ('average', 1), ('user', 1), ('pdfs', 1), ('done', 1), ('right', 1), ('another', 1), ('story', 1)]
[('nbsp', 4), ('python', 3), ('zed', 2), ('student', 2), ('learn', 2), ('shaw', 1), ('perfected', 1), ('world', 1), ('best', 1), ('system', 1), ('learning', 1), ('following', 1), ('succeed', 1), ('hundred', 1), ('thousand', 1), ('beginner', 1), ('taught', 1), ('date', 1), ('hard', 1), ('way', 1), ('working', 1), ('brilliantly', 1), ('crafted', 1), ('exercise', 1), ('type', 1)]
[('database', 2), ('management', 2), ('reference', 2), ('master', 1), ('creation', 1), ('access', 1), ('bible', 1), ('comprehensive', 1), ('world', 1), ('popular', 1), ('tool', 1), ('clear', 1), ('guidance', 1), ('toward', 1), ('everything', 1), ('basic', 1), ('advanced', 1), ('go', 1), ('help', 1)]
[('data', 3), ('actionable', 2), ('story', 2), ('tableau', 2), ('tell', 1), ('insightful', 1), ('business', 1), ('world', 1), ('leading', 1), ('visualization', 1), ('tool', 1), ('visual', 1), ('storytelling', 1), ('brings', 1), ('together', 1), ('knowledge', 1), ('context', 1), ('hand', 1), ('skill', 1), ('telling', 1), ('powerful', 1)]
[('developer', 2), ('software', 2), ('many', 1), ('linux', 1), ('unix', 1), ('familiar', 1), ('gnu', 1), ('debugger', 1), ('gbd', 1), ('invaluable', 1), ('open', 1), ('source', 1), ('tool', 1), ('testing', 1), ('fixing', 1), ('retesting', 1), ('gdb', 1), ('ported', 1), ('window', 1), ('microsoft', 1), ('others', 1), ('use', 1), ('platform', 1), ('take', 1), ('advantage', 1), ('amazing', 1), ('free', 1), ('allows', 1), ('see', 1), ('exactly', 1), ('going', 1)]
[('web', 2), ('oauth', 2), ('user', 2), ('whether', 1), ('develop', 1), ('application', 1), ('mobile', 1), ('apps', 1), ('protocol', 1), ('save', 1), ('lot', 1), ('headache', 1), ('concise', 1), ('introduction', 1), ('show', 1), ('provides', 1), ('single', 1), ('authorization', 1), ('technology', 1), ('across', 1), ('numerous', 1), ('apis', 1), ('securely', 1), ('access', 1), ('data', 1), ('profile', 1), ('photo', 1), ('video', 1), ('contact', 1), ('list', 1), ('improve', 1)]
[('guide', 1), ('understanding', 1), ('inner', 1), ('working', 1), ('outer', 1), ('limit', 1), ('technology', 1), ('never', 1), ('assume', 1), ('computer', 1), ('always', 1), ('right', 1), ('artificial', 1), ('unintelligence', 1), ('meredith', 1), ('broussard', 1), ('argues', 1), ('collective', 1), ('enthusiasm', 1), ('applying', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('programming', 2), ('book', 1), ('comprehensive', 1), ('beginner', 1), ('friendly', 1), ('guide', 1), ('world', 1), ('popular', 1), ('language', 1), ('statistical', 1), ('analysis', 1), ('even', 1), ('experience', 1), ('little', 1), ('grounding', 1), ('basic', 1), ('mathematics', 1)]
[('tableau', 2), ('visualization', 2), ('four', 1), ('color', 1), ('journey', 1), ('complete', 1), ('popular', 1), ('data', 1), ('tool', 1), ('easy', 1), ('individual', 1), ('desktop', 1), ('use', 1), ('enterprise', 1), ('used', 1), ('financial', 1), ('analyst', 1)]
[('excel', 4), ('vba', 2), ('maximize', 1), ('experience', 1), ('power', 1), ('programming', 1), ('fully', 1), ('updated', 1), ('cover', 1), ('latest', 1), ('tool', 1), ('trick', 1), ('encompassing', 1), ('analysis', 1), ('application', 1)]
[('cs', 3), ('lea', 2), ('design', 2), ('problem', 2), ('practical', 1), ('guide', 1), ('expert', 1), ('verou', 1), ('provides', 1), ('undocumented', 1), ('technique', 1), ('tip', 1), ('help', 1), ('intermediate', 1), ('advanced', 1), ('developer', 1), ('devise', 1), ('elegant', 1), ('solution', 1), ('wide', 1), ('range', 1), ('everyday', 1), ('web', 1), ('rather', 1), ('focus', 1), ('secret', 1), ('show', 1), ('solve', 1), ('code', 1), ('learn', 1), ('apply', 1), ('analytical', 1)]
[('html', 4), ('web', 2), ('reference', 2), ('need', 1), ('help', 1), ('finding', 1), ('right', 1), ('element', 1), ('attribute', 1), ('page', 1), ('application', 1), ('pocket', 1), ('classic', 1), ('designer', 1), ('developer', 1), ('keeping', 1), ('close', 1), ('hand', 1), ('thirteen', 1), ('year', 1), ('fifth', 1), ('edition', 1), ('updated', 1), ('reflect', 1), ('current', 1), ('state', 1), ('including', 1), ('candidate', 1)]
[('clojure', 2), ('experienced', 1), ('programmer', 1), ('worked', 1), ('guide', 1), ('perfect', 1), ('thorough', 1), ('gentle', 1), ('introduction', 1), ('author', 1), ('carin', 1), ('meier', 1), ('provides', 1), ('practical', 1), ('overview', 1), ('jvm', 1), ('language', 1), ('functional', 1), ('programming', 1), ('concept', 1), ('includes', 1), ('complete', 1), ('hand', 1), ('training', 1), ('course', 1), ('help', 1), ('learn', 1)]
[('cs', 2), ('web', 2), ('let', 1), ('create', 1), ('professional', 1), ('looking', 1), ('website', 1), ('learning', 1), ('finer', 1), ('point', 1), ('tricky', 1), ('even', 1), ('seasoned', 1), ('developer', 1), ('fully', 1), ('updated', 1), ('edition', 1), ('provides', 1), ('modern', 1), ('effective', 1), ('tip', 1), ('trick', 1), ('tutorial', 1), ('based', 1), ('instruction', 1), ('available', 1), ('today', 1), ('learn', 1), ('use', 1), ('new', 1), ('tool', 1), ('flexbox', 1), ('sas', 1), ('build', 1), ('page', 1), ('look', 1)]
[('javascript', 2), ('e', 2), ('exciting', 1), ('time', 1), ('learn', 1), ('latest', 1), ('specification', 1), ('ecmascript', 1), ('finalized', 1), ('learning', 1), ('develop', 1), ('high', 1), ('quality', 1), ('application', 1), ('language', 1), ('easier', 1), ('satisfying', 1), ('practical', 1), ('book', 1), ('take', 1), ('programmer', 1), ('amateur', 1), ('pro', 1), ('alike', 1), ('nonsense', 1), ('tour', 1), ('along', 1)]
[('nan', 1)]
[('cloud', 2), ('head', 1), ('business', 1), ('computing', 1), ('longer', 1), ('clever', 1), ('new', 1), ('toy', 1), ('world', 1), ('infrastructure', 1), ('despite', 1), ('nebulous', 1), ('name', 1), ('become', 1), ('real', 1), ('important', 1), ('part', 1)]
[('linux', 3), ('command', 2), ('line', 2), ('advance', 1), ('understanding', 1), ('invaluable', 1), ('resource', 1), ('shell', 1), ('scripting', 1), ('bible', 1), ('th', 1), ('edition', 1), ('newest', 1), ('installment', 1), ('indispensable', 1), ('series', 1), ('known', 1), ('developer', 1)]
[('java', 3), ('comprehensive', 1), ('guide', 1), ('show', 1), ('master', 1), ('importantchanges', 1), ('first', 1), ('released', 1), ('generic', 1), ('greatlyexpanded', 1), ('collection', 1), ('library', 1), ('tremendously', 1), ('increased', 1), ('power', 1), ('ofjava', 1), ('confused', 1), ('many', 1), ('developer', 1), ('whohaven', 1), ('known', 1), ('take', 1), ('advantage', 1), ('new', 1), ('feature', 1)]
[('nan', 1)]
[('malware', 2), ('analysis', 1), ('big', 1), ('business', 1), ('attack', 1), ('cost', 1), ('company', 1), ('dearly', 1), ('breach', 1), ('defense', 1), ('need', 1), ('act', 1), ('quickly', 1), ('cure', 1), ('current', 1), ('infection', 1), ('prevent', 1), ('future', 1), ('one', 1), ('occurring', 1), ('want', 1), ('stay', 1), ('ahead', 1), ('latest', 1)]
[('database', 3), ('design', 3), ('nbsp', 1), ('michael', 1), ('hernandez', 1), ('best', 1), ('selling', 1), ('mere', 1), ('mortal', 1), ('earned', 1), ('worldwide', 1), ('respect', 1), ('clearest', 1), ('simplest', 1), ('way', 1), ('learn', 1), ('relational', 1), ('made', 1), ('hand', 1), ('software', 1), ('independent', 1), ('tutorial', 1), ('even', 1), ('easier', 1), ('ensuring', 1), ('methodology', 1), ('still', 1), ('relevant', 1), ('latest', 1)]
[('system', 4), ('embedded', 3), ('computer', 3), ('growing', 2), ('literally', 1), ('surround', 1), ('cell', 1), ('phone', 1), ('pda', 1), ('car', 1), ('tv', 1), ('refrigerator', 1), ('heating', 1), ('fact', 1), ('rapidly', 1), ('segment', 1), ('industry', 1), ('today', 1), ('along', 1), ('list', 1), ('device', 1), ('appropriate', 1), ('interest', 1)]
[('fintech', 2), ('remaking', 1), ('financial', 1), ('institution', 1), ('explores', 1), ('transformative', 1), ('potential', 1), ('new', 1), ('entrant', 1), ('innovation', 1), ('business', 1), ('model', 1), ('survey', 1), ('analysis', 1), ('book', 1), ('address', 1), ('current', 1), ('future', 1), ('state', 1), ('money', 1), ('banking', 1)]
[('angular', 4), ('book', 2), ('accompanying', 1), ('online', 1), ('file', 1), ('example', 1), ('work', 1), ('without', 1), ('change', 1), ('welcome', 1), ('stop', 1), ('shop', 1), ('learning', 1), ('pro', 1), ('concise', 1), ('comprehensive', 1), ('guide', 1)]
[('mvp', 3), ('favorite', 2), ('excel', 2), ('learn', 1), ('technique', 1), ('group', 1), ('twenty', 1), ('friend', 1), ('competitor', 1), ('pulled', 1), ('trick', 1), ('impress', 1), ('fellow', 1)]
[('coherent', 1), ('introduction', 1), ('core', 1), ('concept', 1), ('deep', 1), ('learning', 1), ('technique', 1), ('critical', 1), ('academic', 1), ('research', 1), ('real', 1), ('world', 1), ('application', 1)]
[('self', 1), ('contained', 1), ('introduction', 1), ('contains', 1), ('student', 1), ('need', 1), ('start', 1), ('applying', 1), ('machine', 1), ('learning', 1), ('principle', 1), ('real', 1), ('world', 1), ('engineering', 1), ('problem', 1)]
[('advanced', 2), ('improve', 1), ('existing', 1), ('competency', 1), ('quickly', 1), ('efficiently', 1), ('volume', 1), ('professional', 1), ('th', 1), ('edition', 1), ('raise', 1), ('bar', 1), ('programming', 1), ('manual', 1), ('complete', 1)]
[('google', 2), ('cloud', 2), ('platform', 2), ('easy', 1), ('follow', 1), ('visual', 1), ('walkthrough', 1), ('every', 1), ('important', 1), ('part', 1), ('incorporates', 1), ('dozen', 1), ('specialized', 1), ('service', 1), ('enable', 1), ('organization', 1), ('offload', 1)]
[('pentest', 3), ('comptia', 3), ('certification', 2), ('exam', 2), ('study', 2), ('prepare', 1), ('new', 1), ('money', 1), ('saving', 1), ('comprehensive', 1), ('package', 1), ('designed', 1), ('complete', 1), ('self', 1), ('program', 1), ('collection', 1), ('offer', 1), ('variety', 1), ('proven', 1), ('resource', 1), ('use', 1), ('preparation', 1), ('august', 1), ('release', 1), ('comprised', 1)]
[('user', 2), ('book', 1), ('offer', 1), ('complete', 1), ('coverage', 1), ('aspect', 1), ('computer', 1), ('security', 1), ('including', 1), ('software', 1), ('device', 1), ('operating', 1), ('system', 1), ('network', 1), ('law', 1), ('ethic', 1), ('reflecting', 1), ('rapidly', 1), ('evolving', 1), ('attack', 1), ('countermeasure', 1), ('computing', 1), ('environment', 1), ('introduces', 1), ('minute', 1), ('best', 1), ('practice', 1), ('authenticating', 1), ('preventing', 1), ('malicious', 1), ('code', 1), ('execution', 1)]
[('student', 2), ('comptia', 1), ('network', 1), ('cert', 1), ('guide', 1), ('contains', 1), ('proven', 1), ('study', 1), ('feature', 1), ('enable', 1), ('succeed', 1), ('exam', 1), ('first', 1), ('time', 1), ('best', 1), ('selling', 1), ('author', 1), ('expert', 1), ('instructor', 1), ('anthony', 1), ('sequeira', 1), ('share', 1), ('preparation', 1), ('hint', 1), ('test', 1), ('taking', 1), ('tip', 1), ('helping', 1), ('identify', 1), ('area', 1), ('weakness', 1), ('improve', 1), ('conceptual', 1), ('knowledge', 1), ('hand', 1), ('skill', 1)]
[('java', 5), ('guide', 2), ('serious', 1), ('programmer', 1), ('fully', 1), ('updated', 1), ('core', 1), ('volume', 1), ('fundamental', 1), ('twelfth', 1), ('edition', 1), ('definitive', 1), ('writing', 1), ('robust', 1), ('maintainable', 1), ('code', 1), ('whatever', 1), ('version', 1), ('student', 1), ('using', 1), ('including', 1), ('book', 1), ('help', 1), ('achieve', 1), ('deep', 1), ('practical', 1), ('understanding', 1)]
[('android', 3), ('guide', 2), ('embedded', 2), ('device', 2), ('complete', 1), ('customizing', 1), ('new', 1), ('iot', 1), ('inside', 1), ('o', 1), ('comprehensive', 1), ('reference', 1), ('technical', 1), ('professional', 1), ('want', 1), ('customize', 1), ('integrate', 1)]
[('model', 2), ('book', 2), ('build', 2), ('whether', 1), ('company', 1), ('considering', 1), ('serverless', 1), ('computing', 1), ('already', 1), ('made', 1), ('decision', 1), ('adopt', 1), ('practical', 1), ('author', 1), ('jason', 1), ('katzer', 1), ('show', 1), ('early', 1), ('mid', 1), ('career', 1), ('developer', 1), ('required', 1), ('ship', 1), ('maintainable', 1), ('scalable', 1), ('service', 1), ('using', 1), ('learn', 1), ('modern', 1)]
[('mac', 2), ('applescript', 2), ('user', 1), ('everywhere', 1), ('even', 1), ('know', 1), ('nothing', 1), ('programming', 1), ('discovering', 1), ('value', 1), ('latest', 1), ('version', 1), ('apple', 1), ('vastly', 1), ('improved', 1), ('scripting', 1), ('language', 1), ('o', 1), ('tiger', 1), ('new', 1), ('edition', 1), ('top', 1), ('selling', 1), ('definitive', 1), ('guide', 1), ('anyone', 1), ('regardless', 1), ('level', 1), ('experience', 1), ('learn', 1), ('use', 1)]
[('professional', 2), ('security', 2), ('cybersecurity', 1), ('know', 1), ('often', 1), ('seems', 1), ('care', 1), ('understands', 1), ('information', 1), ('infosec', 1), ('frequently', 1), ('struggle', 1), ('integrate', 1), ('company', 1), ('process', 1), ('many', 1), ('odds', 1), ('organization', 1), ('resourced', 1), ('better', 1), ('way', 1), ('essential', 1)]
[('openshift', 2), ('application', 2), ('selling', 1), ('cto', 1), ('merit', 1), ('kubernetes', 1), ('beginning', 1), ('operate', 1), ('scale', 1), ('need', 1), ('know', 1), ('manage', 1), ('expose', 1), ('resource', 1), ('team', 1), ('continuously', 1), ('deliver', 1), ('change', 1), ('running', 1), ('environment', 1), ('practical', 1), ('book', 1), ('new', 1), ('experienced', 1), ('developer', 1), ('operator', 1)]
[('sql', 2), ('database', 2), ('lowdown', 1), ('cockroachdb', 1), ('elastic', 1), ('built', 1), ('handle', 1), ('demand', 1), ('today', 1), ('data', 1), ('driven', 1), ('world', 1), ('practical', 1), ('guide', 1), ('software', 1), ('developer', 1), ('architect', 1), ('devops', 1), ('team', 1), ('discover', 1), ('advantage', 1), ('building', 1), ('distributed', 1), ('learn', 1), ('create', 1), ('application', 1), ('scale', 1), ('elastically', 1), ('provide', 1), ('seamless', 1)]
[('healthcare', 2), ('learning', 2), ('next', 1), ('frontier', 1), ('data', 1), ('science', 1), ('using', 1), ('latest', 1), ('machine', 1), ('deep', 1), ('natural', 1), ('language', 1), ('processing', 1), ('able', 1), ('solve', 1), ('pressing', 1), ('problem', 1), ('reducing', 1), ('cost', 1), ('care', 1), ('ensuring', 1), ('patient', 1), ('best', 1), ('treatment', 1), ('increasing', 1), ('accessibility', 1), ('underserved', 1), ('first', 1), ('learn', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('net', 3), ('asp', 2), ('core', 2), ('lt', 1), ('gt', 1), ('professional', 1), ('developer', 1), ('produce', 1), ('leaner', 1), ('application', 1), ('platform', 1), ('using', 1), ('guidance', 1), ('best', 1), ('selling', 1), ('book', 1), ('th', 1), ('edition', 1), ('updated', 1), ('contains', 1), ('detailed', 1), ('explanation', 1)]
[('strategy', 1), ('building', 1), ('large', 1), ('system', 1), ('easily', 1), ('adapted', 1), ('new', 1), ('situation', 1), ('minor', 1), ('programming', 1), ('modification', 1), ('time', 1), ('pressure', 1), ('encourage', 1), ('programmer', 1), ('write', 1), ('code', 1), ('work', 1), ('narrow', 1), ('purpose', 1), ('room', 1), ('grow', 1)]
[('fully', 1), ('updated', 1), ('python', 1), ('second', 1), ('edition', 1), ('worldwide', 1), ('bestseller', 1), ('copy', 1), ('sold', 1), ('explores', 1), ('stealthier', 1), ('side', 1), ('programming', 1), ('brings', 1), ('nbsp', 1), ('new', 1), ('strategy', 1), ('hacking', 1), ('project', 1), ('come', 1), ('creating', 1), ('powerful', 1)]
[('programming', 2), ('language', 2), ('detailed', 1), ('introduction', 1), ('experienced', 1), ('programmer', 1), ('world', 1), ('run', 1), ('code', 1), ('written', 1), ('yet', 1), ('school', 1), ('begin', 1), ('curriculum', 1), ('python', 1), ('java', 1), ('effective', 1), ('bridge', 1), ('gap', 1), ('brings', 1)]
[('rust', 4), ('programming', 2), ('language', 2), ('rsquo', 2), ('copy', 1), ('sold', 1), ('quintessential', 1), ('guide', 1), ('thoroughly', 1), ('updated', 1), ('latest', 1), ('version', 1), ('edition', 1), ('considered', 1), ('official', 1), ('documentation', 1)]
[('agile', 2), ('learn', 2), ('proven', 1), ('effective', 1), ('practice', 1), ('make', 1), ('better', 1), ('developer', 1), ('pragmatic', 1), ('way', 1), ('approaching', 1), ('development', 1), ('process', 1), ('personal', 1), ('coding', 1), ('technique', 1), ('attitude', 1), ('issue', 1), ('working', 1), ('team', 1), ('best', 1), ('manage', 1), ('learning', 1), ('iterative', 1), ('incremental', 1), ('style', 1)]
[('social', 3), ('medium', 3), ('business', 2), ('writing', 2), ('engaging', 1), ('customer', 1), ('essential', 1), ('day', 1), ('age', 1), ('difficult', 1), ('right', 1), ('even', 1), ('big', 1), ('brand', 1), ('wrong', 1), ('book', 1), ('walk', 1), ('deliver', 1), ('maximum', 1), ('benefit', 1)]
[('comprehensive', 1), ('undergraduate', 1), ('textbook', 1), ('covering', 1), ('theory', 1), ('practical', 1), ('design', 1), ('issue', 1), ('emphasis', 1), ('object', 1), ('oriented', 1), ('language', 1)]
[('use', 2), ('book', 1), ('quickly', 1), ('nbsp', 1), ('student', 1), ('started', 1), ('using', 1), ('go', 1), ('effectively', 1), ('beginning', 1), ('end', 1), ('know', 1), ('write', 1), ('clear', 1), ('idiomatic', 1), ('efficient', 1), ('program', 1), ('solve', 1), ('real', 1), ('world', 1), ('problem', 1), ('understand', 1), ('standard', 1), ('library', 1), ('work', 1), ('apply', 1), ('design', 1), ('technique', 1)]
[('programming', 2), ('learn', 1), ('functional', 1), ('haskell', 1), ('language', 1), ('algorithmic', 1), ('music', 1), ('composition', 1), ('virtual', 1), ('instrument', 1), ('design', 1)]
[('comprehensive', 1), ('introduction', 1), ('principle', 1), ('functional', 1), ('programming', 1), ('using', 1), ('show', 1), ('apply', 1), ('basic', 1), ('theoretical', 1), ('concept', 1), ('produce', 1), ('succinct', 1), ('elegant', 1), ('program', 1)]
[('guide', 2), ('undeniably', 1), ('versatile', 1), ('programming', 1), ('language', 1), ('available', 1), ('engineer', 1), ('today', 1), ('comprehensive', 1), ('learn', 1), ('powerful', 1), ('combination', 1), ('net', 1), ('author', 1), ('ian', 1), ('griffith', 1), ('fundamental', 1), ('technique', 1), ('building', 1), ('cloud', 1), ('web', 1), ('desktop', 1), ('application', 1), ('designed', 1), ('experienced', 1)]
[('gentle', 1), ('introduction', 1), ('graduate', 1), ('student', 1), ('researcher', 1), ('art', 1), ('formalizing', 1), ('mathematics', 1), ('basis', 1), ('type', 1), ('theory', 1)]
[('first', 1), ('introductory', 1), ('textbook', 1), ('description', 1), ('logic', 1), ('relevant', 1), ('computer', 1), ('science', 1), ('knowledge', 1), ('representation', 1), ('semantic', 1), ('web', 1)]
[('plain', 1), ('language', 1), ('style', 1), ('worked', 1), ('example', 1), ('exercise', 1), ('book', 1), ('help', 1), ('student', 1), ('understand', 1), ('foundation', 1), ('computational', 1), ('physic', 1), ('engineering', 1)]
[('pipeline', 2), ('jenkins', 2), ('design', 1), ('implement', 1), ('execute', 1), ('continuous', 1), ('delivery', 1), ('level', 1), ('flexibility', 1), ('control', 1), ('ease', 1), ('maintenance', 1), ('possible', 1), ('practical', 1), ('book', 1), ('build', 1), ('administrator', 1), ('developer', 1), ('tester', 1), ('professional', 1), ('learn', 1), ('feature', 1), ('define', 1), ('code', 1), ('leverage', 1)]
[('date', 2), ('system', 2), ('complete', 2), ('coverage', 2), ('cisa', 2), ('exam', 2), ('latest', 2), ('self', 1), ('study', 1), ('delivers', 1), ('every', 1), ('topic', 1), ('version', 1), ('edition', 1), ('trusted', 1), ('resource', 1), ('offer', 1), ('material', 1), ('included', 1), ('release', 1), ('certified', 1), ('information', 1), ('auditor', 1), ('written', 1), ('security', 1), ('audit', 1), ('expert', 1)]
[('hadoop', 2), ('ready', 1), ('unlock', 1), ('power', 1), ('data', 1), ('fourth', 1), ('edition', 1), ('comprehensive', 1), ('guide', 1), ('youâ', 1), ('learn', 1), ('build', 1), ('maintain', 1), ('reliable', 1), ('scalable', 1), ('distributed', 1), ('system', 1), ('apache', 1), ('book', 1), ('ideal', 1), ('programmer', 1), ('looking', 1), ('analyze', 1), ('datasets', 1), ('size', 1), ('administrator', 1), ('want', 1), ('set', 1), ('run', 1), ('cluster', 1), ('using', 1)]
[('oracle', 2), ('programmer', 2), ('study', 2), ('guide', 2), ('exam', 2), ('ocp', 1), ('certified', 1), ('professional', 1), ('java', 1), ('se', 1), ('ii', 1), ('published', 1), ('announced', 1), ('major', 1), ('change', 1)]
[('become', 1), ('new', 1), ('standard', 1), ('reference', 1), ('wanting', 1), ('know', 1), ('lisp', 1), ('family', 1), ('language', 1)]
[('mobile', 2), ('hardware', 2), ('bluetooth', 1), ('low', 1), ('energy', 1), ('ble', 1), ('smart', 1), ('device', 1), ('become', 1), ('even', 1), ('smarter', 1), ('practical', 1), ('guide', 1), ('demonstrates', 1), ('exciting', 1), ('wireless', 1), ('technology', 1), ('help', 1), ('developer', 1), ('build', 1), ('apps', 1), ('share', 1), ('data', 1), ('external', 1), ('engineer', 1), ('gain', 1), ('easy', 1), ('reliable', 1), ('access', 1), ('operating', 1), ('system', 1), ('book', 1), ('provides', 1), ('solid', 1)]
[('vsphere', 2), ('guide', 2), ('vmware', 2), ('master', 1), ('virtual', 1), ('environment', 1), ('ultimate', 1), ('mastering', 1), ('fully', 1), ('updated', 1), ('edition', 1), ('bestselling', 1), ('virtualization', 1), ('solution', 1)]
[('nan', 1)]
[('net', 5), ('asp', 4), ('core', 4), ('th', 1), ('edition', 1), ('pro', 1), ('thoroughly', 1), ('updated', 1), ('online', 1), ('comprehensive', 1), ('full', 1), ('color', 1), ('guide', 1), ('book', 1), ('need', 1), ('learn', 1), ('development', 1), ('professional', 1)]
[('publisher', 2), ('product', 2), ('microsoft', 2), ('sql', 2), ('server', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('speed', 1), ('quickly', 1), ('easily', 1), ('start', 1), ('working', 1), ('time', 1), ('help', 1), ('thoroughly', 1)]
[('oracle', 4), ('exam', 4), ('database', 3), ('sql', 3), ('guide', 3), ('study', 2), ('fully', 1), ('updated', 1), ('integrated', 1), ('self', 1), ('system', 1), ('thoroughly', 1), ('revised', 1), ('press', 1), ('offer', 1), ('coverage', 1), ('objective', 1), ('latest', 1), ('version', 1), ('ideal', 1), ('job', 1), ('reference', 1), ('oca', 1), ('feature', 1), ('detailed', 1)]
[('software', 2), ('design', 2), ('righting', 1), ('present', 1), ('proven', 1), ('structured', 1), ('highly', 1), ('engineered', 1), ('approach', 1), ('renowned', 1), ('architect', 1), ('juval', 1), ('löwy', 1), ('practiced', 1), ('taught', 1), ('around', 1), ('world', 1), ('although', 1), ('company', 1), ('every', 1), ('kind', 1), ('successfully', 1), ('implemented', 1), ('original', 1), ('idea', 1), ('across', 1), ('hundred', 1), ('system', 1), ('insight', 1), ('never', 1), ('appeared', 1)]
[('python', 2), ('embedded', 2), ('exciting', 1), ('time', 1), ('involved', 1), ('micropython', 1), ('implementation', 1), ('microcontrollers', 1), ('system', 1), ('practical', 1), ('guide', 1), ('delivers', 1), ('knowledge', 1), ('need', 1), ('roll', 1), ('sleeve', 1), ('create', 1), ('exceptional', 1), ('project', 1), ('lean', 1), ('efficient', 1), ('programming', 1), ('language', 1), ('familiar', 1)]
[('xml', 4), ('java', 1), ('rd', 1), ('edition', 1), ('show', 1), ('cut', 1), ('hype', 1), ('put', 1), ('work', 1), ('teach', 1), ('use', 1), ('apis', 1), ('tool', 1), ('trick', 1), ('build', 1), ('real', 1), ('world', 1), ('application', 1), ('result', 1), ('new', 1), ('approach', 1), ('managing', 1), ('information', 1), ('touch', 1), ('everything', 1), ('configuration', 1), ('file', 1), ('web', 1), ('site', 1), ('chapter', 1), ('basic', 1)]
[('recipe', 2), ('reilly', 1), ('cookbook', 1), ('provides', 1), ('help', 1), ('scientist', 1), ('engineer', 1), ('programmer', 1), ('data', 1), ('analyst', 1), ('generate', 1), ('high', 1), ('quality', 1), ('graph', 1), ('quickly', 1), ('without', 1), ('comb', 1), ('detail', 1), ('graphing', 1), ('system', 1), ('tackle', 1), ('specific', 1), ('problem', 1), ('solution', 1), ('apply', 1), ('project', 1), ('includes', 1), ('discussion', 1)]
[('microservice', 2), ('biggest', 1), ('challenge', 1), ('organization', 1), ('adopted', 1), ('architecture', 1), ('lack', 1), ('architectural', 1), ('operational', 1), ('organizational', 1), ('standardization', 1), ('splitting', 1), ('monolithic', 1), ('application', 1), ('building', 1), ('ecosystem', 1), ('scratch', 1), ('many', 1), ('engineer', 1), ('left', 1), ('wondering', 1), ('next', 1), ('practical', 1), ('book', 1), ('author', 1), ('susan', 1)]
[('problem', 1), ('easy', 1), ('solve', 1), ('others', 1), ('seem', 1), ('nearly', 1), ('impossible', 1), ('compute', 1), ('given', 1), ('amount', 1), ('time', 1), ('memory', 1), ('computed', 1), ('quantum', 1), ('physic', 1), ('change', 1), ('landscape', 1), ('computation', 1), ('book', 1), ('give', 1), ('playful', 1), ('accessible', 1), ('introduction', 1), ('deep', 1), ('idea', 1), ('theoretical', 1), ('computer', 1), ('science', 1)]
[('nbsp', 2), ('primer', 1), ('plus', 1), ('carefully', 1), ('tested', 1), ('crafted', 1), ('complete', 1), ('tutorial', 1), ('subject', 1), ('core', 1), ('programmer', 1), ('developer', 1), ('computer', 1), ('science', 1), ('classic', 1), ('teach', 1), ('principle', 1), ('programming', 1), ('including', 1), ('structured', 1), ('code', 1), ('top', 1), ('design', 1), ('edition', 1), ('book', 1), ('updated', 1), ('expanded', 1), ('cover', 1), ('latest', 1), ('development', 1)]
[('pattern', 3), ('enterprise', 1), ('mda', 1), ('teach', 1), ('customize', 1), ('archetype', 1), ('customer', 1), ('product', 1), ('order', 1), ('reflect', 1), ('idiosyncrasy', 1), ('business', 1), ('environment', 1), ('work', 1), ('harmoniously', 1), ('together', 1)]
[('linux', 3), ('tool', 2), ('everything', 1), ('need', 1), ('know', 1), ('book', 1), ('written', 1), ('stephen', 1), ('figgins', 1), ('ellen', 1), ('siever', 1), ('robert', 1), ('love', 1), ('arnold', 1), ('robbins', 1), ('year', 1), ('active', 1), ('participation', 1), ('community', 1), ('nutshell', 1), ('sixth', 1), ('edition', 1), ('thoroughly', 1), ('cover', 1), ('programming', 1), ('system', 1), ('network', 1), ('administration', 1), ('shell', 1), ('editor', 1), ('lilo', 1)]
[('brain', 2), ('computer', 2), ('interfacing', 2), ('introduction', 1), ('designed', 1), ('course', 1), ('neural', 1), ('engineering', 1), ('student', 1), ('wide', 1), ('ranging', 1), ('discipline', 1)]
[('devops', 3), ('faster', 2), ('develop', 1), ('embrace', 1), ('culture', 1), ('unifying', 1), ('creation', 1), ('distribution', 1), ('technology', 1), ('way', 1), ('allows', 1), ('release', 1), ('cycle', 1), ('resource', 1), ('efficient', 1), ('product', 1), ('updating', 1), ('dummy', 1), ('provides', 1), ('guidebook', 1)]
[('software', 2), ('testing', 2), ('experience', 2), ('decade', 1), ('condensed', 1), ('important', 1), ('lesson', 1), ('learned', 1), ('world', 1), ('leading', 1), ('expert', 1), ('lend', 1), ('wisdom', 1), ('year', 1), ('help', 1), ('avoid', 1), ('common', 1)]
[('system', 2), ('providing', 1), ('overview', 1), ('certification', 1), ('accreditation', 1), ('second', 1), ('edition', 1), ('officially', 1), ('sanctioned', 1), ('guide', 1), ('demonstrates', 1), ('effectiveness', 1), ('risk', 1), ('management', 1), ('methodology', 1), ('public', 1), ('private', 1), ('organization', 1), ('enables', 1), ('reader', 1), ('document', 1), ('status', 1), ('security', 1), ('control', 1), ('learn', 1), ('secure', 1), ('via', 1)]
[('nan', 1)]
[('digital', 1), ('system', 1), ('engineering', 1), ('present', 1), ('comprehensive', 1), ('treatment', 1), ('speed', 1), ('reliability', 1), ('power', 1)]
[('learn', 1), ('build', 1), ('machine', 1), ('translation', 1), ('system', 1), ('deep', 1), ('learning', 1), ('ground', 1), ('basic', 1), ('concept', 1), ('cutting', 1), ('edge', 1), ('research', 1)]
[('word', 5), ('microsoft', 2), ('advance', 1), ('proficiency', 1), ('earn', 1), ('credential', 1), ('prof', 1), ('nbsp', 1), ('demonstrate', 1), ('expertise', 1), ('designed', 1), ('help', 1), ('practice', 1), ('prepare', 1), ('office', 1), ('specialist', 1), ('associate', 1)]
[('switching', 2), ('routing', 2), ('wireless', 2), ('essential', 2), ('companion', 2), ('course', 2), ('guide', 1), ('ccnav', 1), ('official', 1), ('supplemental', 1), ('textbook', 1), ('cisco', 1), ('networking', 1), ('academy', 1), ('ccna', 1), ('curriculum', 1), ('describes', 1), ('architecture', 1), ('component', 1), ('operation', 1), ('router', 1), ('switch', 1), ('small', 1), ('network', 1)]
[('cloud', 3), ('system', 2), ('engineer', 2), ('create', 1), ('manage', 1), ('operate', 1), ('configure', 1), ('running', 1), ('even', 1), ('work', 1), ('administrator', 1), ('software', 1), ('developer', 1), ('data', 1), ('scientist', 1), ('site', 1), ('reliability', 1), ('book', 1), ('professional', 1), ('around', 1), ('world', 1), ('provide', 1), ('valuable', 1), ('insight', 1), ('today', 1), ('engineering', 1), ('role', 1), ('concise', 1), ('article', 1)]
[('ai', 2), ('cloud', 2), ('working', 1), ('complicated', 1), ('expensive', 1), ('many', 1), ('developer', 1), ('provider', 1), ('stepped', 1), ('make', 1), ('easier', 1), ('offering', 1), ('free', 1), ('affordable', 1), ('state', 1), ('art', 1), ('model', 1), ('training', 1), ('tool', 1), ('started', 1), ('book', 1), ('learn', 1), ('use', 1), ('google', 1), ('powered', 1), ('service', 1), ('everything', 1), ('creating', 1), ('chatbot', 1)]
[('data', 2), ('many', 1), ('company', 1), ('ponder', 1), ('implementation', 1), ('detail', 1), ('distributed', 1), ('processing', 1), ('engine', 1), ('algorithm', 1), ('analysis', 1), ('practical', 1), ('book', 1), ('take', 1), ('wider', 1), ('view', 1), ('big', 1), ('development', 1), ('starting', 1), ('initial', 1), ('planning', 1), ('moving', 1), ('diligently', 1), ('toward', 1), ('execution', 1), ('author', 1), ('ted', 1), ('malaska', 1), ('jonathan', 1), ('seidman', 1), ('guide', 1), ('major', 1), ('component', 1)]
[('xml', 4), ('second', 1), ('edition', 1), ('bestselling', 1), ('learning', 1), ('provides', 1), ('web', 1), ('developer', 1), ('concise', 1), ('grounded', 1), ('understanding', 1), ('extensible', 1), ('markup', 1), ('language', 1), ('potential', 1), ('whirlwind', 1), ('tour', 1), ('author', 1), ('explains', 1), ('important', 1), ('relevant', 1), ('technology', 1), ('capability', 1), ('clearly', 1), ('succinctly', 1), ('plenty', 1), ('real', 1), ('life', 1)]
[('erlang', 2), ('new', 1), ('functional', 1), ('style', 1), ('seem', 1), ('difficult', 1), ('help', 1), ('hand', 1), ('introduction', 1), ('scale', 1), ('learning', 1), ('curve', 1), ('discover', 1), ('enjoyable', 1), ('powerful', 1), ('fun', 1), ('language', 1), ('updated', 1), ('second', 1), ('edition', 1), ('author', 1), ('simon', 1), ('st', 1), ('laurent', 1), ('show', 1), ('write', 1), ('simple', 1), ('program', 1), ('teaching', 1), ('skill', 1)]
[('audit', 3), ('new', 2), ('edition', 2), ('technology', 2), ('fifth', 1), ('information', 1), ('control', 1), ('significantly', 1), ('revised', 1), ('include', 1), ('comprehensive', 1), ('overview', 1), ('environment', 1), ('including', 1), ('revolutionizing', 1), ('legislation', 1), ('process', 1), ('governance', 1), ('strategy', 1), ('outsourcing', 1), ('among', 1), ('others', 1), ('outline', 1), ('common', 1), ('risk', 1), ('procedure', 1)]
[('nan', 1)]
[('nan', 1)]
[('hacking', 3), ('hand', 2), ('technique', 2), ('fast', 1), ('introduction', 1), ('offensive', 1), ('teach', 1), ('reader', 1), ('see', 1), ('eye', 1), ('adversary', 1), ('apply', 1), ('better', 1)]
[('social', 2), ('medium', 2), ('updated', 1), ('third', 1), ('edition', 1), ('present', 1), ('wide', 1), ('scale', 1), ('interdisciplinary', 1), ('guide', 1), ('examining', 1), ('platform', 1), ('facebook', 1), ('instagram', 1), ('linkedin', 1), ('snapchat', 1), ('tiktok', 1), ('twitter', 1), ('youtube', 1), ('book', 1), ('analyzes', 1), ('use', 1), ('journalism', 1), ('broadcasting', 1), ('public', 1), ('relation', 1), ('advertising', 1), ('marketing', 1), ('lipschultz', 1), ('focus', 1), ('key', 1), ('concept', 1), ('best', 1)]
[('exam', 6), ('ocp', 3), ('study', 2), ('java', 2), ('se', 2), ('programmer', 2), ('ii', 2), ('guide', 2), ('complete', 1), ('integrated', 1), ('system', 1), ('using', 1), ('effective', 1), ('preparation', 1), ('oracle', 1), ('press', 1), ('written', 1), ('team', 1), ('expert', 1), ('including', 1), ('developer', 1), ('original', 1), ('offer', 1), ('comprehensive', 1), ('coverage', 1), ('every', 1)]
[('linq', 3), ('need', 2), ('reference', 2), ('ready', 1), ('take', 1), ('advantage', 1), ('guide', 1), ('detail', 1), ('grasp', 1), ('microsoft', 1), ('new', 1), ('querying', 1), ('technology', 1), ('concise', 1), ('explanation', 1), ('help', 1), ('learn', 1), ('quickly', 1), ('begin', 1), ('apply', 1), ('book', 1), ('serf', 1), ('job', 1), ('immediate', 1), ('reminder', 1), ('example', 1), ('pocket', 1)]
[('object', 3), ('west', 2), ('thinking', 1), ('esteemed', 1), ('technologist', 1), ('david', 1), ('contends', 1), ('mindset', 1), ('make', 1), ('programmer', 1), ('tool', 1), ('technique', 1), ('delving', 1), ('history', 1), ('philosophy', 1), ('even', 1), ('politics', 1), ('oriented', 1), ('programming', 1), ('reveals', 1)]
[('nan', 1)]
[('nosql', 2), ('database', 2), ('need', 1), ('handle', 1), ('increasingly', 1), ('larger', 1), ('data', 1), ('volume', 1), ('factor', 1), ('driving', 1), ('adoption', 1), ('new', 1), ('class', 1), ('nonrelational', 1), ('advocate', 1), ('claim', 1), ('used', 1), ('build', 1), ('system', 1), ('performant', 1), ('scale', 1), ('better', 1)]
[('data', 2), ('xml', 1), ('schema', 1), ('gone', 1), ('strong', 1), ('typing', 1), ('positively', 1), ('stalwart', 1), ('powerful', 1), ('enforce', 1), ('database', 1), ('level', 1), ('constraint', 1), ('business', 1), ('rule', 1), ('transfer', 1), ('code', 1), ('book', 1), ('cover', 1), ('change', 1)]
[('organization', 1), ('policy', 1), ('generating', 1), ('using', 1), ('huge', 1), ('datasets', 1), ('full', 1), ('personal', 1), ('information', 1), ('book', 1), ('examines', 1), ('ethical', 1), ('question', 1), ('raised', 1), ('big', 1), ('data', 1), ('phenomenon', 1), ('explains', 1), ('enterprise', 1), ('need', 1), ('reconsider', 1), ('business', 1), ('decision', 1), ('concerning', 1), ('privacy', 1), ('identity', 1), ('author', 1), ('kord', 1), ('davis', 1), ('doug', 1), ('patterson', 1), ('provide', 1), ('method', 1), ('technique', 1)]
[('always', 2), ('place', 2), ('context', 2), ('make', 1), ('sense', 1), ('world', 1), ('trying', 1), ('thing', 1), ('whether', 1), ('environment', 1), ('physical', 1), ('cultural', 1), ('something', 1), ('altogether', 1), ('live', 1), ('among', 1), ('digital', 1), ('networked', 1), ('product', 1), ('apps', 1), ('complicated', 1), ('starting', 1), ('practical', 1), ('insightful', 1), ('book', 1)]
[('field', 3), ('juniper', 2), ('srx', 2), ('complete', 1), ('guide', 1), ('authorized', 1), ('network', 1), ('perfect', 1), ('hand', 1), ('reference', 1), ('deploying', 1), ('configuring', 1), ('operating', 1), ('series', 1), ('networking', 1), ('device', 1), ('author', 1), ('brad', 1), ('woodberg', 1), ('rob', 1), ('cameron', 1), ('provide', 1), ('tested', 1), ('best', 1), ('practice', 1), ('getting', 1), ('deployment', 1), ('based', 1), ('extensive', 1), ('experience', 1)]
[('nan', 1)]
[('nan', 1)]
[('spring', 3), ('quickly', 1), ('gain', 1), ('insight', 1), ('necessary', 1), ('address', 1), ('multitude', 1), ('java', 1), ('based', 1), ('framework', 1), ('boot', 1), ('coding', 1), ('challenge', 1), ('using', 1), ('succinct', 1), ('reference', 1), ('guide', 1), ('short', 1), ('focused', 1), ('code', 1), ('example', 1), ('help', 1), ('master', 1), ('many', 1), ('element', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('java', 2), ('learn', 1), ('use', 1), ('persistence', 1), ('api', 1), ('jpa', 1), ('related', 1), ('apis', 1), ('found', 1), ('ee', 1), ('platform', 1), ('perspective', 1), ('specification', 1), ('creator', 1), ('kind', 1), ('resource', 1), ('depth', 1), ('book', 1), ('provides', 1)]
[('four', 1), ('leading', 1), ('expert', 1), ('convey', 1), ('promise', 1), ('data', 1), ('science', 1), ('examine', 1), ('challenge', 1), ('achieving', 1), ('benefit', 1), ('mitigating', 1), ('harm', 1)]
[('introduces', 1), ('exciting', 1), ('new', 1), ('method', 1), ('assessing', 1), ('algorithm', 1), ('problem', 1), ('ranging', 1), ('clustering', 1), ('linear', 1), ('programming', 1), ('neural', 1), ('network', 1)]
[('autocad', 3), ('mastering', 2), ('give', 1), ('life', 1), ('design', 1), ('keep', 1), ('cad', 1), ('skill', 1), ('fresh', 1), ('lt', 1), ('continues', 1), ('tool', 1), ('choice', 1), ('architect', 1), ('project', 1)]
[('official', 3), ('study', 3), ('ccsp', 3), ('guide', 2), ('exam', 2), ('new', 1), ('objective', 1), ('effective', 1), ('isc', 1), ('certified', 1), ('cloud', 1), ('security', 1), ('professional', 1), ('rd', 1), ('edition', 1), ('ultimate', 1), ('resource', 1)]
[('smart', 2), ('forget', 1), ('far', 1), ('away', 1), ('dream', 1), ('future', 1), ('artificial', 1), ('intelligence', 1), ('every', 1), ('time', 1), ('use', 1), ('device', 1), ('sort', 1), ('slick', 1), ('technology', 1), ('smartwatch', 1), ('speaker', 1), ('security', 1), ('alarm', 1)]
[('window', 2), ('set', 1), ('secure', 1), ('network', 1), ('home', 1), ('office', 1), ('fully', 1), ('revised', 1), ('cover', 1), ('server', 1), ('new', 1), ('edition', 1), ('trusted', 1), ('networking', 1), ('dummy', 1), ('help', 1), ('beginning', 1)]
[('arm', 2), ('provides', 1), ('reader', 1), ('solid', 1), ('foundation', 1), ('assembly', 1), ('internals', 1), ('reverse', 1), ('engineering', 1), ('fundamental', 1), ('basis', 1), ('analyzing', 1), ('securing', 1), ('billion', 1), ('device', 1), ('finding', 1), ('mitigating', 1), ('security', 1)]
[('certification', 2), ('protecting', 1), ('information', 1), ('continues', 1), ('growing', 1), ('concern', 1), ('today', 1), ('business', 1), ('security', 1), ('become', 1), ('highly', 1), ('desirable', 1), ('even', 1), ('number', 1), ('grown', 1), ('set', 1), ('apart', 1)]
[('data', 2), ('scientist', 2), ('jump', 1), ('start', 1), ('career', 1), ('earn', 1), ('develop', 1), ('datasets', 1), ('exploration', 1), ('analysis', 1), ('machine', 1), ('learning', 1), ('sql', 1)]
[('software', 2), ('architect', 2), ('strategic', 1), ('state', 1), ('art', 1), ('architecture', 1), ('manual', 1), ('skill', 1), ('level', 1), ('veteran', 1), ('enterprise', 1), ('solution', 1), ('michael', 1), ('bell', 1), ('delivers', 1), ('hand', 1), ('playbook', 1)]
[('python', 2), ('simple', 1), ('straightforward', 1), ('hand', 1), ('roadmap', 1), ('world', 1), ('computer', 1), ('programming', 1), ('teach', 1), ('visually', 1), ('personal', 1), ('guide', 1), ('getting', 1), ('started', 1)]
[('excel', 4), ('data', 2), ('analysis', 2), ('turn', 1), ('jumble', 1), ('number', 1), ('graphic', 1), ('insight', 1), ('answer', 1), ('microsoft', 1), ('dummy', 1), ('help', 1), ('clear', 1), ('easy', 1)]
[('update', 1), ('architectural', 1), ('practice', 1), ('new', 1), ('challenge', 1), ('environment', 1), ('stakeholder', 1), ('expectation', 1), ('continuously', 1), ('delighted', 1), ('inspired', 1), ('work', 1), ('author', 1), ('first', 1), ('book', 1), ('laid', 1), ('groundwork', 1), ('understanding', 1), ('evolve', 1)]
[('software', 3), ('performance', 2), ('expert', 2), ('world', 1), ('renowned', 1), ('richard', 1), ('site', 1), ('offer', 1), ('method', 1), ('advanced', 1), ('tool', 1), ('understanding', 1), ('complex', 1), ('time', 1), ('constrained', 1), ('dynamic', 1), ('improving', 1), ('reliability', 1), ('troubleshooting', 1), ('challenging', 1), ('problem', 1), ('address', 1), ('cpu', 1), ('memory', 1), ('disk', 1), ('network', 1), ('helping', 1), ('student', 1), ('fix', 1), ('program', 1), ('always', 1)]
[('design', 3), ('introducing', 2), ('pattern', 1), ('changed', 1), ('landscape', 1), ('object', 1), ('oriented', 1), ('development', 1), ('classic', 1), ('solution', 1), ('recurring', 1), ('problem', 1), ('refactoring', 1), ('revolutionized', 1), ('effective', 1), ('process', 1), ('improving', 1), ('code', 1)]
[('sre', 3), ('site', 1), ('reliability', 1), ('engineering', 1), ('relevant', 1), ('knowing', 1), ('keep', 1), ('system', 1), ('reliable', 1), ('become', 1), ('critical', 1), ('skill', 1), ('practical', 1), ('book', 1), ('newcomer', 1), ('old', 1), ('hat', 1), ('alike', 1), ('explore', 1), ('broad', 1), ('range', 1), ('conversation', 1), ('happening', 1), ('actionable', 1), ('advice', 1), ('several', 1), ('topic', 1), ('including', 1), ('adopt', 1), ('slos', 1), ('matter', 1)]
[('xml', 3), ('developer', 1), ('know', 1), ('beauty', 1), ('extensible', 1), ('even', 1), ('point', 1), ('invent', 1), ('new', 1), ('element', 1), ('attribute', 1), ('write', 1), ('document', 1), ('need', 1), ('define', 1), ('change', 1), ('application', 1), ('able', 1), ('make', 1), ('sense', 1), ('schema', 1), ('language', 1), ('come', 1), ('play', 1), ('relax', 1), ('ng', 1), ('pronounced', 1)]
[('problem', 2), ('spend', 1), ('time', 1), ('coding', 1), ('others', 1), ('already', 1), ('solved', 1), ('making', 1), ('real', 1), ('progress', 1), ('ruby', 1), ('project', 1), ('updated', 1), ('cookbook', 1), ('provides', 1), ('recipe', 1), ('solving', 1), ('common', 1), ('topic', 1), ('ranging', 1), ('basic', 1), ('data', 1), ('structure', 1), ('class', 1), ('object', 1), ('web', 1), ('development', 1), ('distributed', 1), ('programming', 1), ('multithreading', 1)]
[('data', 2), ('ready', 1), ('use', 1), ('statistical', 1), ('machine', 1), ('learning', 1), ('technique', 1), ('across', 1), ('large', 1), ('set', 1), ('practical', 1), ('guide', 1), ('show', 1), ('hadoop', 1), ('ecosystem', 1), ('perfect', 1), ('job', 1), ('instead', 1), ('deployment', 1), ('operation', 1), ('software', 1), ('development', 1), ('usually', 1), ('associated', 1), ('distributed', 1), ('computing', 1), ('focus', 1), ('particular', 1), ('analysis', 1), ('build', 1), ('warehousing', 1)]
[('cloud', 1), ('computing', 1), ('typically', 1), ('associated', 1), ('backend', 1), ('development', 1), ('devops', 1), ('rise', 1), ('serverless', 1), ('technology', 1), ('new', 1), ('generation', 1), ('service', 1), ('framework', 1), ('frontend', 1), ('mobile', 1), ('developer', 1), ('build', 1), ('robust', 1), ('application', 1), ('production', 1), ('ready', 1), ('feature', 1), ('authentication', 1), ('authorization', 1), ('api', 1), ('gateway', 1), ('chatbots', 1), ('augmented', 1), ('reality', 1)]
[('kubernetes', 2), ('openshift', 2), ('gained', 1), ('significant', 1), ('popularity', 1), ('past', 1), ('year', 1), ('mature', 1), ('prominent', 1), ('distribution', 1), ('provides', 1), ('several', 1), ('layer', 1), ('abstraction', 1), ('vanilla', 1), ('software', 1), ('quickly', 1), ('become', 1), ('overwhelming', 1), ('itsrich', 1), ('feature', 1), ('set', 1), ('functionality', 1), ('practical', 1), ('book', 1), ('help', 1)]
[('internet', 2), ('smart', 2), ('sober', 1), ('lucid', 1), ('often', 1), ('wise', 1), ('nature', 1), ('powerful', 1), ('safe', 1), ('device', 1), ('proliferate', 1), ('risk', 1), ('worse', 1), ('unless', 1), ('act', 1), ('driverless', 1), ('car', 1), ('thermostat', 1), ('autonomous', 1), ('stock', 1), ('trading', 1), ('system', 1), ('drone', 1), ('equipped', 1), ('behavioral', 1), ('algorithm', 1), ('direct', 1), ('effect', 1)]
[('software', 4), ('revolutionary', 1), ('concept', 1), ('based', 1), ('approach', 1), ('thinking', 1), ('designing', 1), ('interacting', 1), ('dependence', 1), ('technology', 1), ('increase', 1), ('design', 1), ('matter', 1), ('flawed', 1), ('systematic', 1), ('scalable', 1), ('way', 1), ('create', 1), ('easy', 1), ('use', 1), ('robust', 1), ('secure', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('amp', 2), ('nbsp', 2), ('rpa', 2), ('robotic', 1), ('process', 1), ('automation', 1), ('around', 1), ('year', 1), ('hit', 1), ('inflection', 1), ('point', 1), ('convergence', 1), ('cloud', 1), ('computing', 1), ('big', 1), ('data', 1), ('ai', 1), ('book', 1), ('show', 1), ('leverage', 1), ('effectively', 1)]
[('programming', 3), ('language', 2), ('modern', 2), ('standard', 2), ('lt', 1), ('gt', 1), ('learn', 1), ('structured', 1), ('straightforward', 1), ('friendly', 1), ('manner', 1), ('book', 1), ('teach', 1), ('basic', 1), ('library', 1), ('previous', 1)]
[('practical', 1), ('hand', 1), ('introduction', 1), ('haskell', 1), ('language', 1), ('library', 1), ('environment', 1), ('functional', 1), ('programming', 1), ('paradigm', 1), ('fast', 1), ('growing', 1), ('importance', 1), ('software', 1), ('industry', 1), ('updated', 1), ('edition', 1), ('includes', 1), ('modern', 1)]
[('data', 2), ('book', 2), ('adf', 2), ('first', 2), ('engineer', 1), ('need', 1), ('hit', 1), ('ground', 1), ('running', 1), ('use', 1), ('build', 1), ('skill', 1), ('azure', 1), ('factory', 1), ('tutorial', 1), ('approach', 1), ('taken', 1), ('get', 1), ('working', 1), ('chapter', 1), ('explaining', 1), ('key', 1), ('idea', 1), ('naturally', 1)]
[('nbsp', 3), ('textbook', 2), ('method', 2), ('cover', 1), ('broader', 1), ('field', 1), ('artificial', 1), ('intelligence', 1), ('chapter', 1), ('span', 1), ('within', 1), ('three', 1), ('category', 1), ('deductive', 1), ('reasoning', 1), ('start', 1), ('pre', 1), ('defined', 1), ('hypothesis', 1), ('reason', 1)]
[('book', 1), ('integrates', 1), ('foundation', 1), ('quantum', 1), ('computing', 1), ('hand', 1), ('coding', 1), ('approach', 1), ('emerging', 1), ('field', 1), ('first', 1), ('bring', 1), ('element', 1), ('together', 1), ('updated', 1), ('manner', 1), ('work', 1), ('suitable', 1), ('academic', 1), ('coursework', 1)]
[('game', 2), ('sound', 2), ('examination', 1), ('many', 1), ('complex', 1), ('aspect', 1), ('audio', 1), ('perspective', 1), ('design', 1), ('music', 1), ('composition', 1), ('distinguishing', 1), ('feature', 1), ('video', 1), ('interactivity', 1), ('play', 1), ('important', 1), ('role', 1), ('player', 1)]
[('web', 2), ('inch', 2), ('today', 1), ('technology', 1), ('evolving', 1), ('near', 1), ('light', 1), ('speed', 1), ('bringing', 1), ('promise', 1), ('seamless', 1), ('internet', 1), ('closer', 1), ('reality', 1), ('user', 1), ('browse', 1), ('three', 1), ('phone', 1), ('screen', 1), ('easily', 1), ('fifty', 1), ('hdtv', 1)]
[('power', 4), ('data', 4), ('query', 3), ('cleansing', 2), ('day', 2), ('month', 2), ('clean', 2), ('time', 2), ('amazing', 1), ('new', 1), ('tool', 1), ('excel', 1), ('bi', 1), ('desktop', 1), ('find', 1), ('performing', 1), ('step', 1), ('make', 1), ('faster', 1), ('first', 1), ('single', 1), ('click', 1), ('every', 1), ('powerful', 1)]
[('file', 2), ('antlr', 2), ('programmer', 1), ('run', 1), ('parsing', 1), ('problem', 1), ('time', 1), ('whether', 1), ('data', 1), ('format', 1), ('json', 1), ('network', 1), ('protocol', 1), ('smtp', 1), ('server', 1), ('configuration', 1), ('apache', 1), ('postscript', 1), ('pdf', 1), ('simple', 1), ('spreadsheet', 1), ('macro', 1), ('language', 1), ('book', 1), ('demystify', 1), ('process', 1), ('rewritten', 1), ('scratch', 1), ('make', 1), ('easier', 1)]
[('site', 5), ('hugo', 2), ('static', 2), ('web', 2), ('framework', 2), ('database', 1), ('driven', 1), ('bring', 1), ('complexity', 1), ('might', 1), ('need', 1), ('building', 1), ('hand', 1), ('work', 1), ('generator', 1), ('development', 1), ('creates', 1), ('content', 1), ('quickly', 1), ('without', 1), ('overhead', 1), ('dependency', 1), ('dyanmic', 1), ('use', 1), ('html', 1), ('template', 1), ('markdown', 1), ('build', 1)]
[('powershell', 2), ('scripting', 2), ('language', 2), ('using', 2), ('window', 1), ('automation', 1), ('engine', 1), ('designed', 1), ('object', 1), ('oriented', 1), ('concept', 1), ('net', 1), ('framework', 1), ('provides', 1), ('graphical', 1), ('user', 1), ('interface', 1), ('gui', 1), ('command', 1), ('line', 1), ('component', 1), ('manipulate', 1), ('server', 1), ('workstation', 1), ('offer', 1), ('easy', 1), ('syntax', 1), ('book', 1), ('aim', 1)]
[('chatgpt', 3), ('use', 2), ('unlock', 1), ('full', 1), ('potential', 1), ('comprehensive', 1), ('guide', 1), ('written', 1), ('beginner', 1), ('book', 1), ('teach', 1), ('craft', 1), ('effective', 1), ('prompt', 1), ('business', 1), ('work', 1), ('everyday', 1), ('life', 1), ('become', 1), ('early', 1), ('adopter', 1), ('gain', 1), ('competitive', 1), ('edge', 1), ('mastering', 1), ('innovative', 1), ('technology', 1), ('learn', 1), ('automate', 1), ('task', 1)]
[('nan', 1)]
[('exam', 4), ('comptia', 2), ('network', 2), ('thoroughly', 1), ('revised', 1), ('new', 1), ('seventh', 1), ('edition', 1), ('bestselling', 1), ('guide', 1), ('delivers', 1), ('coverage', 1), ('objective', 1), ('serf', 1), ('valuable', 1), ('job', 1), ('reference', 1), ('take', 1), ('latest', 1), ('version', 1), ('complete', 1), ('confidence', 1), ('using', 1), ('fully', 1), ('updated', 1), ('information', 1), ('contained', 1)]
[('power', 4), ('query', 2), ('business', 2), ('intelligence', 2), ('excel', 2), ('component', 1), ('bi', 1), ('product', 1), ('microsoft', 1), ('name', 1), ('programming', 1), ('language', 1), ('created', 1), ('pro', 1), ('begin', 1), ('using', 1), ('pivot', 1), ('find', 1), ('skill', 1), ('clean', 1), ('data', 1), ('solves', 1), ('problem', 1), ('book', 1), ('show', 1)]
[('getting', 2), ('arduino', 2), ('valuable', 1), ('little', 1), ('book', 1), ('offer', 1), ('thorough', 1), ('introduction', 1), ('open', 1), ('source', 1), ('electronics', 1), ('prototyping', 1), ('platform', 1), ('taking', 1), ('design', 1), ('hobbyist', 1), ('world', 1), ('storm', 1), ('started', 1), ('give', 1), ('lot', 1), ('idea', 1), ('project', 1), ('help', 1), ('going', 1), ('right', 1), ('away', 1), ('organized', 1), ('putting', 1), ('final', 1), ('touch', 1)]
[('learning', 2), ('introduces', 1), ('machine', 1), ('algorithmic', 1), ('paradigm', 1), ('explaining', 1), ('principle', 1), ('behind', 1), ('automated', 1), ('approach', 1), ('consideration', 1), ('underlying', 1), ('usage', 1)]
[('provides', 1), ('sound', 1), ('basis', 1), ('logic', 1), ('introduces', 1), ('logical', 1), ('framework', 1), ('used', 1), ('modelling', 1), ('specifying', 1), ('verifying', 1), ('computer', 1), ('system', 1)]
[('powerpivot', 3), ('microsoft', 2), ('excel', 2), ('free', 1), ('add', 1), ('allows', 1), ('user', 1), ('produce', 1), ('new', 1), ('kind', 1), ('report', 1), ('analysis', 1), ('simply', 1), ('impossible', 1), ('book', 1), ('first', 1), ('tackle', 1), ('dax', 1), ('formula', 1), ('core', 1), ('capability', 1), ('perspective', 1), ('audience', 1), ('written', 1), ('world', 1), ('foremost', 1), ('blogger', 1)]
[('comptia', 2), ('security', 2), ('casp', 2), ('ca', 2), ('expert', 2), ('advanced', 1), ('practitioner', 1), ('cert', 1), ('guide', 1), ('focus', 1), ('specifically', 1), ('objective', 1), ('exam', 1), ('certification', 1), ('training', 1), ('robin', 1), ('abernathy', 1), ('troy', 1), ('mcmillan', 1), ('share', 1), ('preparation', 1), ('hint', 1), ('test', 1), ('taking', 1), ('tip', 1), ('helping', 1), ('identify', 1), ('area', 1), ('weakness', 1), ('improve', 1), ('conceptual', 1), ('knowledge', 1)]
[('use', 3), ('mac', 3), ('new', 2), ('ipad', 2), ('screen', 2), ('apple', 1), ('give', 1), ('macos', 1), ('feature', 1), ('improvement', 1), ('right', 1), ('desktop', 1), ('hood', 1), ('catalina', 1), ('aka', 1), ('o', 1), ('updated', 1), ('guide', 1), ('learn', 1), ('second', 1), ('work', 1), ('apps', 1), ('time', 1), ('edition', 1), ('bestselling', 1), ('book', 1), ('show', 1), ('revamped', 1)]
[('beaglebone', 2), ('depth', 1), ('instruction', 1), ('practical', 1), ('technique', 1), ('building', 1), ('embedded', 1), ('linux', 1), ('platform', 1), ('exploring', 1), ('hand', 1), ('guide', 1), ('bringing', 1), ('gadget', 1), ('gizmo', 1)]
[('public', 3), ('successfully', 1), ('transformed', 1), ('application', 1), ('microservices', 1), ('architecture', 1), ('running', 1), ('service', 1), ('across', 1), ('different', 1), ('environment', 1), ('private', 1), ('virtual', 1), ('machine', 1), ('container', 1), ('cloud', 1), ('native', 1), ('software', 1), ('beginning', 1), ('encounter', 1), ('reliability', 1), ('issue', 1), ('stay', 1), ('top', 1), ('increasing', 1)]
[('php', 2), ('mysql', 2), ('easy', 2), ('step', 2), ('learn', 1), ('programming', 1), ('quick', 1), ('way', 1), ('nbsp', 1), ('visual', 1), ('approach', 1), ('us', 1), ('demonstration', 1), ('real', 1), ('world', 1), ('example', 1), ('guide', 1), ('advanced', 1), ('technique', 1), ('dynamic', 1), ('web', 1), ('development', 1), ('using', 1), ('concise', 1)]
[('science', 3), ('computer', 2), ('development', 1), ('information', 1), ('technology', 1), ('obvious', 1), ('underpinning', 1), ('le', 1), ('apparent', 1), ('subrata', 1), ('dasgupta', 1), ('provides', 1), ('thought', 1), ('provoking', 1), ('introduction', 1), ('field', 1), ('core', 1), ('principle', 1), ('considering', 1), ('symbol', 1), ('processing', 1)]
[('strategy', 4), ('content', 3), ('first', 1), ('published', 1), ('web', 1), ('instant', 1), ('classic', 1), ('catalyst', 1), ('global', 1), ('conversation', 1), ('helping', 1), ('organisation', 1), ('understand', 1), ('implement', 1), ('part', 1), ('larger', 1), ('business', 1), ('simple', 1), ('introduction', 1), ('nbsp', 1), ('edition', 1), ('build', 1), ('upon', 1)]
[('definitive', 1), ('reference', 1), ('constraint', 1), ('handling', 1), ('rule', 1), ('creator', 1), ('language', 1)]
[('every', 1), ('day', 1), ('work', 1), ('home', 1), ('school', 1), ('bombarded', 1), ('vast', 1), ('amount', 1), ('free', 1), ('data', 1), ('collected', 1), ('shared', 1), ('everyone', 1), ('everything', 1), ('co', 1), ('worker', 1), ('calorie', 1), ('counter', 1), ('highly', 1), ('anticipated', 1), ('follow', 1), ('functional', 1), ('art', 1), ('alberto', 1), ('cairo', 1), ('foundational', 1), ('guide', 1), ('understanding', 1), ('information', 1), ('graphic', 1), ('visualisation', 1), ('respected', 1)]
[('network', 6), ('computer', 2), ('book', 1), ('brings', 1), ('together', 1), ('recent', 1), ('advance', 1), ('present', 1), ('comprehensive', 1), ('picture', 1), ('scientific', 1), ('study', 1), ('includes', 1), ('discussion', 1), ('social', 1), ('biological', 1), ('others', 1), ('introduction', 1), ('mathematics', 1), ('theory', 1), ('including', 1), ('analysis', 1), ('technique', 1), ('algorithm', 1), ('modeling', 1)]
[('first', 1), ('book', 1), ('show', 1), ('data', 1), ('structure', 1), ('crucial', 1), ('algorithmic', 1), ('topic', 1), ('trivial', 1), ('material', 1), ('illustrate', 1), ('object', 1), ('orientation', 1)]
[('chapter', 2), ('exam', 2), ('cisco', 1), ('cyberops', 1), ('associate', 1), ('cbrops', 1), ('official', 1), ('cert', 1), ('guide', 1), ('present', 1), ('organised', 1), ('test', 1), ('preparation', 1), ('routine', 1), ('using', 1), ('proven', 1), ('series', 1), ('element', 1), ('technique', 1), ('know', 1), ('already', 1), ('quiz', 1), ('open', 1), ('enable', 1), ('decide', 1), ('time', 1), ('need', 1), ('spend', 1), ('section', 1), ('topic', 1), ('list', 1), ('make', 1), ('referencing', 1), ('easy', 1), ('ending', 1)]
[('design', 4), ('software', 2), ('digital', 2), ('principle', 2), ('fuse', 1), ('fundamental', 1), ('training', 1), ('cohesive', 1), ('approach', 1), ('student', 1), ('production', 1), ('whether', 1), ('learning', 1), ('classroom', 1), ('need', 1), ('understand', 1), ('basic', 1), ('often', 1), ('excluded', 1), ('book', 1), ('teach', 1), ('foundation', 1), ('art', 1), ('reinvigorates', 1)]
[('publisher', 2), ('product', 2), ('study', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('prepare', 1), ('java', 1), ('se', 1), ('oca', 1), ('ocp', 1), ('programmer', 1), ('exam', 1), ('money', 1), ('saving', 1), ('comprehensive', 1), ('package', 1), ('designed', 1), ('complete', 1), ('self', 1)]
[('make', 3), ('project', 2), ('utility', 1), ('simply', 1), ('known', 1), ('enduring', 1), ('feature', 1), ('unix', 1), ('operating', 1), ('system', 1), ('first', 1), ('invented', 1), ('still', 1), ('turn', 1), ('day', 1), ('central', 1), ('engine', 1), ('programming', 1), ('even', 1), ('build', 1), ('linux', 1), ('kernel', 1), ('third', 1), ('edition', 1), ('classic', 1), ('managing', 1), ('gnu', 1), ('reader', 1)]
[('software', 2), ('student', 1), ('studying', 1), ('computer', 1), ('science', 1), ('developer', 1), ('preparing', 1), ('technical', 1), ('interview', 1), ('practical', 1), ('book', 1), ('help', 1), ('learn', 1), ('review', 1), ('important', 1), ('idea', 1), ('engineering', 1), ('data', 1), ('structure', 1), ('algorithm', 1), ('way', 1), ('clearer', 1), ('concise', 1), ('engaging', 1), ('material', 1), ('emphasizing', 1)]
[('fortran', 3), ('written', 1), ('leading', 1), ('expert', 1), ('field', 1), ('actively', 1), ('contributed', 1), ('modern', 1), ('explained', 1), ('complete', 1), ('authoritative', 1), ('description', 1), ('latest', 1), ('form', 1)]
[('nan', 1)]
[('ai', 2), ('mean', 1), ('business', 1), ('book', 1), ('find', 1), ('hal', 1), ('varian', 1), ('chief', 1), ('economist', 1), ('google', 1), ('artificial', 1), ('intelligence', 1), ('seemingly', 1), ('impossible', 1), ('magically', 1), ('bringing', 1), ('machine', 1), ('life', 1), ('driving', 1), ('car', 1), ('trading', 1), ('stock', 1), ('teaching', 1), ('child', 1), ('facing', 1), ('sea', 1), ('change', 1), ('bring', 1), ('paralyzing', 1), ('company', 1), ('set', 1)]
[('javascript', 2), ('application', 2), ('completely', 1), ('revised', 1), ('updated', 1), ('best', 1), ('selling', 1), ('introduction', 1), ('programming', 1), ('focus', 1), ('writing', 1), ('real', 1), ('lie', 1), ('heart', 1), ('almost', 1), ('every', 1), ('modern', 1), ('web', 1), ('social', 1), ('apps', 1), ('twitter', 1), ('browser', 1), ('based', 1)]
[('tutorial', 1), ('reference', 1), ('go', 1), ('use', 1), ('case', 1), ('complete', 1), ('architecture', 1), ('real', 1), ('time', 1), ('embedded', 1), ('system', 1), ('using', 1), ('sysml', 1), ('uml', 1), ('marte', 1)]
[('exam', 2), ('fundamental', 2), ('note', 1), ('name', 1), ('changed', 1), ('itf', 1), ('fc', 1), ('objective', 1), ('exactly', 1), ('book', 1), ('printed', 1)]
[('vi', 3), ('many', 2), ('vim', 2), ('command', 2), ('unix', 1), ('linux', 1), ('mac', 1), ('o', 1), ('geek', 1), ('enjoy', 1), ('using', 1), ('powerful', 1), ('platform', 1), ('agnostic', 1), ('text', 1), ('editor', 1), ('far', 1), ('anyone', 1), ('remember', 1), ('author', 1), ('arnold', 1), ('robbins', 1), ('chosen', 1), ('valuable', 1), ('main', 1), ('clonesâ', 1), ('vile', 1), ('elvis', 1), ('nviâ', 1), ('packed', 1), ('easy', 1), ('browse', 1), ('pocket', 1), ('reference', 1)]
[('vi', 4), ('editor', 3), ('unix', 2), ('text', 2), ('many', 1), ('user', 1), ('working', 1), ('environment', 1), ('mean', 1), ('using', 1), ('full', 1), ('screen', 1), ('available', 1), ('system', 1), ('even', 1), ('know', 1), ('often', 1), ('make', 1), ('use', 1), ('small', 1), ('number', 1), ('feature', 1), ('pocket', 1), ('reference', 1), ('companion', 1), ('volume', 1), ('reilly', 1), ('updated', 1), ('sixth', 1), ('edition', 1), ('learning', 1), ('complete', 1), ('guide', 1)]
[('configuration', 4), ('system', 2), ('productive', 1), ('make', 1), ('life', 1), ('easier', 1), ('ldap', 1), ('administration', 1), ('administrator', 1), ('often', 1), ('spend', 1), ('deal', 1), ('time', 1), ('managing', 1), ('information', 1), ('located', 1), ('many', 1), ('different', 1), ('machine', 1), ('usernames', 1), ('password', 1), ('printer', 1), ('email', 1), ('client', 1), ('network', 1), ('filesystem', 1), ('name', 1)]
[('cs', 3), ('youâ', 2), ('need', 2), ('working', 1), ('answer', 1), ('concise', 1), ('yet', 1), ('comprehensive', 1), ('quick', 1), ('reference', 1), ('provides', 1), ('essential', 1), ('information', 1), ('revised', 1), ('updated', 1), ('fifth', 1), ('edition', 1), ('ideal', 1), ('intermediate', 1), ('advanced', 1), ('web', 1), ('designer', 1), ('developer', 1), ('find', 1), ('short', 1), ('introduction', 1), ('key', 1), ('concept', 1), ('alphabetical', 1)]
[('cover', 1), ('mathematical', 1), ('algorithmic', 1), ('foundation', 1), ('data', 1), ('science', 1), ('machine', 1), ('learning', 1), ('high', 1), ('dimensional', 1), ('geometry', 1), ('analysis', 1), ('large', 1), ('network', 1)]
[('interview', 3), ('technical', 2), ('preparation', 2), ('ace', 1), ('smart', 1), ('programming', 1), ('exposed', 1), ('programmer', 1), ('ideal', 1), ('first', 1), ('choice', 1), ('updated', 1), ('reflect', 1)]
[('shrm', 8), ('certified', 4), ('professional', 4), ('exam', 3), ('cp', 2), ('senior', 2), ('scp', 2), ('take', 1), ('complete', 1), ('confidence', 1), ('integrated', 1), ('preparation', 1), ('system', 1), ('delivers', 1), ('coverage', 1), ('topic', 1), ('aid', 1), ('self', 1), ('study', 1)]
[('uml', 3), ('pocket', 2), ('aid', 2), ('language', 2), ('globe', 1), ('trotting', 1), ('traveler', 1), ('long', 1), ('resorted', 1), ('handy', 1), ('size', 1), ('dictionary', 1), ('communicating', 1), ('across', 1), ('barrier', 1), ('dan', 1), ('pilone', 1), ('reference', 1), ('go', 1), ('developer', 1), ('need', 1), ('converse', 1), ('unified', 1), ('modeling', 1), ('use', 1), ('book', 1), ('decipher', 1), ('many', 1), ('diagram', 1), ('encounter', 1)]
[('writing', 2), ('web', 2), ('follow', 2), ('learn', 1), ('everything', 1), ('need', 1), ('know', 1), ('create', 1), ('effective', 1), ('content', 1), ('using', 1), ('word', 1), ('picture', 1), ('sound', 1), ('along', 1), ('instructor', 1), ('writer', 1), ('lynda', 1), ('felder', 1), ('combine', 1), ('easy', 1), ('guideline', 1), ('photograph', 1), ('list', 1), ('table', 1), ('illustrate', 1), ('key', 1), ('concept', 1), ('behind', 1), ('nonlinear', 1), ('interactive', 1), ('story', 1), ('creating', 1)]
[('expert', 2), ('level', 2), ('excel', 2), ('microsoft', 2), ('nbsp', 2), ('advance', 1), ('proficiency', 1), ('earn', 1), ('credential', 1), ('prof', 1), ('demonstrate', 1), ('competency', 1), ('designed', 1), ('help', 1), ('practice', 1), ('prepare', 1), ('office', 1), ('specialist', 1)]
[('model', 3), ('create', 2), ('tabular', 2), ('bi', 2), ('semantic', 1), ('analyse', 1), ('data', 1), ('using', 1), ('sql', 1), ('server', 1), ('analysis', 1), ('service', 1), ('corporate', 1), ('level', 1), ('business', 1), ('intelligence', 1), ('solution', 1), ('led', 1), ('expert', 1), ('learn', 1), ('build', 1), ('deploy', 1), ('query', 1), ('following', 1), ('detailed', 1), ('example', 1), ('best', 1), ('practice', 1), ('hand', 1), ('book', 1), ('show', 1), ('use', 1)]
[('microsoft', 2), ('excel', 2), ('step', 2), ('quick', 1), ('way', 1), ('learn', 1), ('learning', 1), ('made', 1), ('easy', 1), ('done', 1), ('quickly', 1), ('jump', 1), ('wherever', 1), ('need', 1), ('answer', 1), ('brisk', 1), ('lesson', 1), ('detailed', 1), ('screenshots', 1), ('show', 1), ('exactly', 1)]
[('recipe', 2), ('task', 2), ('perform', 1), ('data', 1), ('analysis', 1), ('quickly', 1), ('efficiently', 1), ('practical', 1), ('expanded', 1), ('second', 1), ('edition', 1), ('language', 1), ('provides', 1), ('everything', 1), ('need', 1), ('statistical', 1), ('work', 1), ('structure', 1), ('difficult', 1), ('master', 1), ('oriented', 1), ('make', 1), ('productive', 1), ('immediately', 1), ('solution', 1), ('range', 1), ('basic', 1), ('input', 1)]
[('game', 3), ('using', 2), ('design', 2), ('book', 1), ('help', 1), ('create', 1), ('digital', 1), ('love', 1), ('play', 1), ('non', 1), ('technical', 1), ('approach', 1), ('without', 1), ('need', 1), ('programming', 1), ('artistic', 1), ('experience', 1), ('award', 1), ('winning', 1), ('author', 1), ('tracy', 1), ('fullerton', 1), ('demystifies', 1), ('creative', 1), ('process', 1), ('clear', 1), ('accessible', 1), ('guidance', 1), ('formal', 1), ('dramatic', 1), ('system', 1), ('example', 1)]
[('nan', 1)]
[('nan', 1)]
[('sharepoint', 2), ('update', 1), ('version', 1), ('offer', 1), ('best', 1), ('premise', 1), ('cloud', 1), ('using', 1), ('latest', 1), ('release', 1), ('cornerstone', 1), ('technology', 1), ('microsoft', 1), ('technical', 1), ('learning', 1), ('hat', 1), ('close', 1), ('confident', 1)]
[('practical', 1), ('guide', 1), ('data', 1), ('scientist', 1), ('want', 1), ('improve', 1), ('performance', 1), ('machine', 1), ('learning', 1), ('solution', 1), ('feature', 1), ('engineering', 1)]
[('excel', 3), ('bestselling', 1), ('book', 1), ('market', 1), ('new', 1), ('edition', 1), ('covering', 1), ('latest', 1), ('version', 1), ('spreadsheet', 1), ('data', 1), ('analysis', 1), ('tool', 1), ('choice', 1), ('across', 1), ('globe', 1), ('utilize', 1)]
[('marketer', 2), ('data', 2), ('business', 2), ('helping', 1), ('tech', 1), ('savvy', 1), ('analyst', 1), ('solve', 1), ('real', 1), ('world', 1), ('problem', 1), ('excel', 1), ('using', 1), ('driven', 1), ('analytics', 1), ('understand', 1), ('customer', 1), ('improve', 1), ('result', 1), ('idea', 1), ('theory', 1), ('today', 1), ('busy', 1), ('office', 1)]
[('kerberos', 3), ('single', 2), ('sign', 2), ('system', 2), ('network', 2), ('authentication', 1), ('originally', 1), ('developed', 1), ('mit', 1), ('deserves', 1), ('name', 1), ('faithful', 1), ('watchdog', 1), ('keep', 1), ('intruder', 1), ('equally', 1), ('fierce', 1), ('administrator', 1), ('complexity', 1), ('legendary', 1), ('holy', 1), ('grail', 1), ('administration', 1)]
[('uml', 3), ('software', 2), ('book', 2), ('edition', 1), ('get', 1), ('student', 1), ('thinking', 1), ('efficient', 1), ('object', 1), ('oriented', 1), ('design', 1), ('using', 1), ('latest', 1), ('version', 1), ('industry', 1), ('standard', 1), ('modeling', 1), ('author', 1), ('retained', 1), ('convenient', 1), ('concise', 1), ('format', 1), ('made', 1), ('essential', 1), ('resource', 1), ('course', 1), ('introducing', 1), ('describes', 1), ('major', 1), ('diagram', 1)]
[('pearl', 3), ('programmer', 2), ('programming', 2), ('real', 2), ('list', 1), ('favourite', 1), ('book', 1), ('jon', 1), ('bentley', 1), ('collection', 1), ('commonly', 1), ('included', 1), ('among', 1), ('classic', 1), ('natural', 1), ('grow', 1), ('grain', 1), ('sand', 1), ('irritate', 1), ('oyster', 1), ('grown', 1), ('problem', 1), ('irritated', 1), ('origin', 1), ('beyond', 1), ('solid', 1), ('engineering', 1), ('realm', 1)]
[('window', 4), ('internals', 2), ('delve', 1), ('inside', 1), ('architecture', 1), ('see', 1), ('core', 1), ('component', 1), ('work', 1), ('behind', 1), ('scene', 1), ('led', 1), ('team', 1), ('expert', 1), ('classic', 1), ('guide', 1), ('fully', 1), ('updated', 1), ('server', 1), ('whether', 1), ('developer', 1), ('professional', 1), ('critical', 1), ('insider', 1), ('perspective', 1), ('operates', 1)]
[('software', 3), ('architecture', 3), ('design', 3), ('designing', 1), ('teach', 1), ('systematic', 1), ('predictable', 1), ('repeatable', 1), ('cost', 1), ('effective', 1), ('way', 1), ('book', 1), ('introduces', 1), ('practical', 1), ('methodology', 1), ('professional', 1), ('engineer', 1), ('use', 1), ('provides', 1), ('structured', 1), ('method', 1), ('supported', 1), ('reusable', 1), ('chunk', 1)]
[('big', 3), ('data', 3), ('technology', 2), ('key', 2), ('science', 1), ('fundamental', 1), ('offer', 1), ('comprehensive', 1), ('easy', 1), ('understand', 1), ('date', 1), ('understanding', 1), ('business', 1), ('professional', 1), ('technologist', 1), ('leading', 1), ('enterprise', 1), ('author', 1), ('thomas', 1), ('erl', 1), ('introduces', 1), ('concept', 1), ('theory', 1), ('terminology', 1), ('analysis', 1), ('analytics', 1), ('technique', 1), ('logically', 1)]
[('digital', 3), ('evidence', 2), ('crime', 1), ('soar', 1), ('need', 1), ('expert', 1), ('recover', 1), ('evaluate', 1), ('successful', 1), ('prosecution', 1), ('dr', 1), ('darren', 1), ('hayes', 1), ('thoroughly', 1), ('updated', 1), ('definitive', 1), ('guide', 1), ('forensics', 1), ('investigation', 1), ('reflecting', 1), ('current', 1), ('best', 1), ('practice', 1), ('securely', 1), ('seizing', 1), ('extracting', 1), ('analysing', 1), ('protecting', 1), ('integrity', 1)]
[('layout', 3), ('specify', 2), ('designer', 1), ('rejoice', 1), ('cs', 1), ('finally', 1), ('update', 1), ('make', 1), ('life', 1), ('easier', 1), ('flexible', 1), ('box', 1), ('often', 1), ('called', 1), ('flexbox', 1), ('free', 1), ('challenge', 1), ('creating', 1), ('float', 1), ('padding', 1), ('let', 1), ('container', 1), ('content', 1), ('instead', 1), ('new', 1), ('model', 1), ('mean', 1), ('direction', 1), ('material', 1), ('flow', 1)]
[('palmpilot', 2), ('inventor', 1), ('come', 1), ('new', 1), ('compelling', 1), ('theory', 1), ('intelligence', 1), ('brain', 1), ('function', 1), ('future', 1), ('intelligent', 1), ('machine', 1), ('jeff', 1), ('hawkins', 1), ('created', 1), ('treo', 1), ('smart', 1), ('phone', 1), ('handheld', 1), ('device', 1), ('reshaped', 1), ('relationship', 1), ('computer', 1), ('stand', 1), ('ready', 1), ('revolutionize', 1), ('neuroscience', 1)]
[('nan', 1)]
[('deep', 2), ('learning', 2), ('theory', 2), ('algorithm', 2), ('important', 2), ('book', 1), ('cover', 1), ('classical', 1), ('modern', 1), ('model', 1), ('primary', 1), ('focus', 1), ('neural', 1), ('network', 1), ('particularly', 1), ('understanding', 1), ('concept', 1)]
[('sql', 4), ('brings', 2), ('together', 2), ('microsoft', 2), ('effective', 1), ('practical', 1), ('solution', 1), ('insight', 1), ('solve', 1), ('complex', 1), ('problem', 1), ('design', 1), ('database', 1), ('simplify', 1), ('data', 1), ('management', 1), ('future', 1), ('modern', 1), ('book', 1), ('advanced', 1), ('best', 1), ('practice', 1), ('realistic', 1), ('example', 1), ('code', 1), ('version', 1), ('ibm', 1), ('db', 1), ('access', 1)]
[('game', 2), ('ready', 1), ('make', 1), ('amazing', 1), ('iphone', 1), ('ipad', 1), ('apple', 1), ('swift', 1), ('programming', 1), ('language', 1), ('never', 1), ('easier', 1), ('updated', 1), ('cookbook', 1), ('provides', 1), ('detailed', 1), ('recipe', 1), ('managing', 1), ('wide', 1), ('range', 1), ('common', 1), ('io', 1), ('development', 1), ('issue', 1), ('ranging', 1), ('math', 1), ('spritekit', 1), ('opengl', 1), ('augmented', 1), ('reality', 1), ('arkit', 1), ('simple', 1), ('direct', 1)]
[('protocol', 4), ('bgp', 2), ('routing', 2), ('internet', 2), ('connect', 2), ('deal', 2), ('border', 1), ('gateway', 1), ('used', 1), ('exchange', 1), ('information', 1), ('across', 1), ('make', 1), ('possible', 1), ('isps', 1), ('end', 1), ('user', 1), ('isp', 1), ('designed', 1), ('network', 1), ('size', 1)]
[('algorithm', 4), ('problem', 2), ('creating', 1), ('robust', 1), ('software', 1), ('requires', 1), ('use', 1), ('efficient', 1), ('programmer', 1), ('seldom', 1), ('think', 1), ('occurs', 1), ('updated', 1), ('edition', 1), ('nutshell', 1), ('describes', 1), ('large', 1), ('number', 1), ('existing', 1), ('solving', 1), ('variety', 1), ('help', 1), ('select', 1), ('implement', 1), ('right', 1), ('need', 1)]
[('complexity', 2), ('science', 2), ('us', 1), ('computation', 1), ('explore', 1), ('physical', 1), ('social', 1), ('think', 1), ('use', 1), ('graph', 1), ('cellular', 1), ('automaton', 1), ('agent', 1), ('based', 1), ('model', 1), ('study', 1), ('topic', 1), ('physic', 1), ('biology', 1), ('economics', 1), ('whether', 1), ('intermediate', 1), ('level', 1), ('python', 1), ('programmer', 1), ('student', 1), ('computational', 1), ('modeling', 1), ('delve', 1), ('example', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('sql', 3), ('ready', 1), ('make', 1), ('easy', 1), ('updated', 1), ('latest', 1), ('version', 1), ('new', 1), ('edition', 1), ('perennial', 1), ('bestseller', 1), ('show', 1), ('programmer', 1), ('web', 1), ('developer', 1), ('use', 1), ('build', 1), ('relational', 1), ('database', 1)]
[('want', 2), ('design', 2), ('video', 2), ('game', 2), ('expert', 1), ('scott', 1), ('rogers', 1), ('show', 1), ('build', 1), ('cutting', 1), ('edge', 1), ('sure', 1), ('start', 1)]
[('visual', 3), ('basic', 3), ('net', 3), ('application', 2), ('development', 2), ('radically', 1), ('new', 1), ('version', 1), ('microsoft', 1), ('world', 1), ('widely', 1), ('used', 1), ('rapid', 1), ('rad', 1), ('package', 1), ('whether', 1), ('beginning', 1), ('already', 1), ('deep', 1), ('code', 1), ('appreciate', 1), ('easy', 1), ('valuable', 1), ('vb', 1), ('language', 1), ('pocket', 1), ('reference', 1)]
[('network', 3), ('ethernet', 3), ('switch', 2), ('ready', 1), ('build', 1), ('large', 1), ('system', 1), ('handy', 1), ('excerpt', 1), ('definitive', 1), ('guide', 1), ('second', 1), ('edition', 1), ('get', 1), ('speed', 1), ('basic', 1), ('building', 1), ('block', 1), ('whether', 1), ('working', 1), ('enterprise', 1), ('campus', 1), ('data', 1), ('center', 1), ('internet', 1), ('service', 1), ('provider', 1), ('learn', 1), ('function', 1)]
[('kotlin', 2), ('learn', 2), ('language', 2), ('use', 1), ('build', 1), ('android', 1), ('apps', 1), ('web', 1), ('application', 1), ('nuance', 1), ('popular', 1), ('unique', 1), ('cookbook', 1), ('developer', 1), ('apply', 1), ('thisjava', 1), ('based', 1), ('project', 1), ('experienced', 1), ('programmer', 1), ('new', 1), ('benefit', 1), ('practical', 1), ('recipe', 1), ('book', 1), ('author', 1), ('ken', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('science', 2), ('fun', 2), ('computational', 2), ('thinking', 2), ('show', 2), ('changed', 2), ('way', 2), ('team', 1), ('behind', 1), ('computer', 1), ('c', 1), ('fn', 1), ('power', 1), ('learning', 1), ('think', 1), ('fascinating', 1), ('yes', 1), ('book', 1), ('live', 1), ('work', 1), ('play', 1), ('done', 1), ('war', 1), ('created', 1), ('whole', 1), ('new', 1), ('industry', 1), ('saved', 1), ('life', 1)]
[('sql', 4), ('database', 3), ('latest', 1), ('dummy', 1), ('rd', 1), ('edition', 1), ('stop', 1), ('shop', 1), ('everything', 1), ('need', 1), ('know', 1), ('based', 1), ('relational', 1), ('everyone', 1), ('administrator', 1), ('application', 1), ('programmer', 1)]
[('shell', 2), ('way', 2), ('compendium', 1), ('scripting', 1), ('recipe', 1), ('immediately', 1), ('used', 1), ('adjusted', 1), ('applied', 1), ('primary', 1), ('communicating', 1), ('unix', 1), ('linux', 1), ('system', 1), ('providing', 1), ('direct', 1), ('program', 1)]
[('data', 3), ('master', 1), ('art', 1), ('science', 1), ('storytelling', 1), ('framework', 1), ('technique', 1), ('help', 1), ('craft', 1), ('compelling', 1), ('story', 1), ('ability', 1), ('effectively', 1), ('communicate', 1), ('longer', 1), ('luxury', 1)]
[('agile', 4), ('estimating', 3), ('planning', 3), ('definitive', 1), ('practical', 1), ('guide', 1), ('project', 1), ('book', 1), ('alliance', 1), ('cofounder', 1), ('mike', 1), ('cohn', 1), ('discus', 1), ('philosophy', 1), ('show', 1), ('exactly', 1)]
[('programming', 2), ('practical', 1), ('book', 1), ('attain', 1), ('solid', 1), ('understanding', 1), ('thread', 1), ('discover', 1), ('put', 1), ('powerful', 1), ('mode', 1), ('work', 1), ('real', 1), ('world', 1), ('application', 1), ('primary', 1), ('advantage', 1), ('threaded', 1), ('enables', 1)]
[('website', 2), ('application', 2), ('organization', 1), ('gain', 1), ('adopting', 1), ('faster', 1), ('simpler', 1), ('robust', 1), ('practical', 1), ('guide', 1), ('demonstrates', 1), ('latest', 1), ('version', 1), ('hypertext', 1), ('transfer', 1), ('protocol', 1), ('dramatically', 1), ('improve', 1), ('performance', 1), ('take', 1), ('deep', 1), ('dive', 1), ('detail', 1), ('learn', 1), ('updated', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('artificial', 2), ('intelligence', 2), ('overview', 1), ('ethical', 1), ('issue', 1), ('raised', 1), ('move', 1), ('beyond', 1), ('hype', 1), ('nightmare', 1), ('scenario', 1), ('address', 1), ('concrete', 1), ('question', 1), ('mdash', 1), ('offering', 1), ('compelling', 1), ('necessary', 1), ('chatgpt', 1), ('era', 1), ('power', 1)]
[('reinforcement', 2), ('learning', 2), ('active', 2), ('research', 2), ('area', 2), ('artificial', 2), ('significantly', 1), ('expanded', 1), ('updated', 1), ('new', 1), ('edition', 1), ('widely', 1), ('used', 1), ('text', 1), ('intelligence', 1)]
[('tmux', 3), ('mouse', 1), ('slowing', 1), ('time', 1), ('spend', 1), ('context', 1), ('switching', 1), ('editor', 1), ('console', 1), ('eats', 1), ('away', 1), ('productivity', 1), ('take', 1), ('control', 1), ('environment', 1), ('terminal', 1), ('multiplexer', 1), ('tailor', 1), ('workflow', 1), ('updated', 1), ('second', 1), ('edition', 1), ('customize', 1), ('script', 1), ('leverage', 1), ('unique', 1)]
[('provides', 1), ('academic', 1), ('journalist', 1), ('general', 1), ('reader', 1), ('bird', 1), ('eye', 1), ('view', 1), ('data', 1), ('driven', 1), ('practice', 1), ('impact', 1), ('politics', 1), ('medium', 1)]
[('undergraduate', 1), ('textbook', 1), ('introduces', 1), ('essential', 1), ('machine', 1), ('learning', 1), ('concept', 1), ('nlp', 1), ('unified', 1), ('gentle', 1), ('mathematical', 1), ('framework', 1)]
[('modern', 1), ('introduction', 1), ('machine', 1), ('learning', 1), ('neural', 1), ('network', 1), ('key', 1), ('principle', 1), ('topic', 1), ('described', 1), ('alongside', 1), ('cutting', 1), ('edge', 1), ('application', 1)]
[('teach', 1), ('creative', 1), ('effective', 1), ('visualization', 1), ('technique', 1), ('table', 1), ('time', 1), ('series', 1), ('map', 1), ('text', 1), ('network', 1), ('beginner', 1), ('python', 1)]
[('self', 1), ('contained', 1), ('practical', 1), ('introduction', 1), ('assumes', 1), ('prior', 1), ('knowledge', 1), ('programming', 1), ('machine', 1), ('learning', 1)]
[('security', 2), ('sy', 2), ('exam', 2), ('ready', 1), ('career', 1), ('efficiently', 1), ('prepare', 1), ('single', 1), ('comprehensive', 1), ('resource', 1), ('comptia', 1), ('practice', 1), ('test', 1)]
[('window', 3), ('need', 1), ('help', 1), ('find', 1), ('latest', 1), ('tip', 1), ('trick', 1), ('perennial', 1), ('favorite', 1), ('promise', 1), ('fastest', 1), ('secure', 1), ('flexible', 1), ('version', 1), ('microsoft', 1), ('operating', 1), ('system', 1), ('yet', 1)]
[('latest', 2), ('microsoft', 2), ('excel', 2), ('personal', 1), ('hand', 1), ('guide', 1), ('useful', 1), ('feature', 1), ('cloud', 1), ('based', 1), ('version', 1), ('world', 1), ('famous', 1), ('spreadsheet', 1), ('app', 1), ('powerful', 1)]
[('exam', 3), ('practice', 2), ('question', 2), ('version', 2), ('cism', 2), ('date', 1), ('cover', 1), ('every', 1), ('topic', 1), ('take', 1), ('current', 1), ('challenging', 1), ('complete', 1), ('confidence', 1), ('using', 1), ('detailed', 1), ('information', 1), ('contained', 1), ('fully', 1), ('updated', 1), ('self', 1), ('study', 1), ('guide', 1), ('written', 1), ('expert', 1), ('field', 1), ('book', 1), ('feature', 1), ('hundred', 1)]
[('even', 1), ('spending', 1), ('digital', 1), ('transformation', 1), ('continues', 1), ('skyrocket', 1), ('mainframe', 1), ('nevertheless', 1), ('major', 1), ('advantage', 1), ('global', 1), ('enterprise', 1), ('system', 1), ('still', 1), ('process', 1), ('huge', 1), ('amount', 1), ('information', 1), ('allow', 1), ('highly', 1), ('secure', 1), ('processing', 1), ('practical', 1), ('book', 1), ('author', 1), ('tom', 1), ('taulli', 1), ('show', 1), ('software', 1), ('developer', 1), ('pursue', 1), ('hybrid', 1), ('approach', 1), ('integrating', 1)]
[('ai', 2), ('greatest', 1), ('opportunity', 1), ('time', 1), ('potential', 1), ('add', 1), ('nearly', 1), ('trillion', 1), ('global', 1), ('economy', 1), ('next', 1), ('decade', 1), ('far', 1), ('adoption', 1), ('slower', 1), ('anticipated', 1), ('headline', 1), ('lead', 1), ('believe', 1), ('practical', 1), ('guide', 1), ('business', 1), ('leader', 1), ('discover', 1), ('journey', 1), ('learn', 1)]
[('networking', 3), ('understanding', 2), ('problem', 2), ('master', 1), ('modern', 1), ('solving', 1), ('real', 1), ('computer', 1), ('solution', 1), ('offer', 1), ('new', 1), ('approach', 1), ('illuminates', 1), ('current', 1), ('system', 1), ('prepares', 1), ('reader', 1), ('whatever', 1), ('come', 1)]
[('object', 4), ('oriented', 3), ('concept', 2), ('chapter', 2), ('cover', 2), ('concise', 1), ('readable', 1), ('primer', 1), ('thought', 1), ('process', 1), ('lay', 1), ('foundation', 1), ('explains', 1), ('various', 1), ('technology', 1), ('used', 1), ('early', 1), ('introduce', 1), ('abstraction', 1), ('public', 1), ('private', 1), ('class', 1), ('reusing', 1), ('code', 1), ('developing', 1), ('framework', 1), ('later', 1)]
[('game', 5), ('system', 3), ('design', 2), ('grow', 1), ('complex', 1), ('gamers', 1), ('expectation', 1), ('soar', 1), ('discipline', 1), ('becomes', 1), ('important', 1), ('designer', 1), ('plan', 1), ('rule', 1), ('balance', 1), ('character', 1), ('attribute', 1), ('data', 1), ('ai', 1), ('weapon', 1), ('object', 1), ('work', 1), ('interact', 1), ('introduction', 1), ('first', 1), ('complete', 1), ('beginner', 1)]
[('vendor', 2), ('neutral', 2), ('guide', 2), ('industry', 1), ('standard', 1), ('managing', 1), ('socs', 1), ('delivering', 1), ('soc', 1), ('service', 1), ('completely', 1), ('new', 1), ('brings', 1), ('together', 1), ('knowledge', 1), ('need', 1), ('build', 1), ('maintain', 1), ('operate', 1), ('modern', 1), ('security', 1), ('operation', 1)]
[('step', 2), ('adobe', 2), ('build', 1), ('strong', 1), ('foundation', 1), ('typographic', 1), ('page', 1), ('layout', 1), ('document', 1), ('construction', 1), ('skill', 1), ('lesson', 1), ('book', 1), ('real', 1), ('world', 1), ('project', 1), ('ranging', 1), ('printed', 1), ('postcard', 1), ('qr', 1), ('code', 1), ('interactive', 1), ('pdf', 1), ('form', 1), ('field', 1), ('designed', 1), ('guide', 1), ('novice', 1), ('indesign', 1), ('user', 1), ('fundamental', 1), ('feature', 1)]
[('microsoft', 2), ('azure', 2), ('prepare', 1), ('updated', 1), ('version', 1), ('exam', 1), ('az', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('knowledge', 1), ('cloud', 1), ('service', 1), ('provided', 1), ('including', 1), ('high', 1), ('level', 1), ('concept', 1), ('apply', 1), ('throughout', 1), ('key', 1)]
[('write', 1), ('code', 1), ('proud', 1), ('every', 1), ('single', 1), ('day', 1), ('timely', 1), ('humble', 1), ('reminder', 1), ('increasing', 1), ('complexity', 1), ('programmatic', 1), ('world', 1), ('owe', 1), ('legacy', 1), ('humankind', 1), ('practice', 1), ('ethical', 1)]
[('excel', 2), ('office', 2), ('master', 1), ('business', 1), ('modeling', 1), ('analysis', 1), ('technique', 1), ('microsoft', 1), ('transform', 1), ('data', 1), ('bottom', 1), ('line', 1), ('result', 1), ('written', 1), ('award', 1), ('winning', 1), ('educator', 1), ('wayne', 1), ('winston', 1), ('hand', 1), ('scenario', 1), ('focused', 1), ('guide', 1), ('help', 1), ('use', 1), ('ask', 1), ('right', 1), ('question', 1), ('accurate', 1), ('actionable', 1), ('answer', 1), ('lot', 1), ('changed', 1)]
[('science', 3), ('data', 2), ('customer', 2), ('guide', 1), ('show', 1), ('combine', 1), ('social', 1), ('gain', 1), ('unprecedented', 1), ('insight', 1), ('behaviour', 1), ('change', 1), ('joanne', 1), ('rodrigues', 1), ('bridge', 1), ('gap', 1), ('predictive', 1), ('statistical', 1), ('technique', 1), ('reveal', 1), ('important', 1), ('thing', 1), ('happen', 1), ('buy', 1), ('immediately', 1), ('leave', 1), ('site', 1)]
[('language', 3), ('modern', 2), ('feature', 2), ('leverage', 1), ('construct', 1), ('write', 1), ('high', 1), ('quality', 1), ('code', 1), ('fasterthe', 1), ('functional', 1), ('concurrent', 1), ('programming', 1), ('supported', 1), ('challenging', 1), ('even', 1), ('experienced', 1), ('developer', 1), ('appear', 1)]
[('software', 2), ('today', 1), ('many', 1), ('project', 1), ('continue', 1), ('run', 1), ('catastrophically', 1), ('schedule', 1), ('budget', 1), ('still', 1), ('deliver', 1), ('customer', 1), ('want', 1), ('organisation', 1), ('conclude', 1), ('development', 1), ('managed', 1), ('start', 1), ('extensively', 1), ('updated', 1), ('managing', 1), ('unmanageable', 1), ('nbsp', 1), ('mickey', 1), ('mantle', 1), ('ron', 1), ('lichty', 1)]
[('exam', 2), ('data', 2), ('professional', 2), ('ref', 1), ('dp', 1), ('microsoft', 1), ('azure', 1), ('fundamental', 1), ('offer', 1), ('level', 1), ('preparation', 1), ('help', 1), ('candidate', 1), ('maximize', 1), ('performance', 1), ('sharpen', 1), ('skill', 1), ('job', 1), ('focus', 1), ('specific', 1), ('area', 1), ('expertise', 1), ('modern', 1), ('need', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('foundational', 1), ('knowledge', 1), ('core', 1), ('concept', 1)]
[('exam', 2), ('data', 2), ('power', 2), ('bi', 2), ('professional', 2), ('ref', 1), ('da', 1), ('analysing', 1), ('microsoft', 1), ('offer', 1), ('level', 1), ('preparation', 1), ('help', 1), ('candidate', 1), ('maximise', 1), ('performance', 1), ('sharpen', 1), ('skill', 1), ('job', 1), ('focus', 1), ('specific', 1), ('area', 1), ('expertise', 1), ('modern', 1), ('need', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('analysis', 1), ('visualisation', 1), ('coverage', 1)]
[('developer', 2), ('discover', 1), ('beauty', 1), ('modern', 1), ('beautiful', 1), ('present', 1), ('core', 1), ('guideline', 1), ('point', 1), ('view', 1), ('emphasis', 1), ('benefit', 1), ('obtained', 1), ('following', 1), ('rule', 1), ('nightmare', 1), ('result', 1), ('ignoring', 1), ('true', 1), ('geek', 1), ('easy', 1), ('entertaining', 1), ('software', 1), ('offer', 1)]
[('game', 3), ('design', 2), ('designer', 2), ('advanced', 1), ('pioneering', 1), ('instructor', 1), ('michael', 1), ('seller', 1), ('situates', 1), ('practice', 1), ('strong', 1), ('theoretical', 1), ('framework', 1), ('system', 1), ('thinking', 1), ('enabling', 1), ('think', 1), ('deeply', 1), ('clearly', 1), ('work', 1)]
[('application', 2), ('data', 2), ('message', 2), ('every', 1), ('enterprise', 1), ('creates', 1), ('including', 1), ('log', 1), ('metric', 1), ('user', 1), ('activity', 1), ('outgoing', 1), ('learning', 1), ('move', 1), ('item', 1), ('almost', 1), ('important', 1), ('architect', 1), ('developer', 1), ('production', 1), ('engineer', 1), ('new', 1), ('apache', 1), ('pulsar', 1), ('practical', 1), ('guide', 1), ('show', 1), ('use', 1), ('open', 1), ('source', 1), ('event', 1)]
[('serverless', 2), ('application', 2), ('computing', 1), ('enables', 1), ('developer', 1), ('concentrate', 1), ('solely', 1), ('rather', 1), ('worry', 1), ('deployed', 1), ('ray', 1), ('general', 1), ('purpose', 1), ('implementation', 1), ('python', 1), ('programmer', 1), ('data', 1), ('scientist', 1), ('hide', 1), ('server', 1), ('implement', 1), ('stateful', 1), ('support', 1), ('direct', 1), ('communication', 1), ('task', 1), ('access', 1)]
[('guide', 2), ('management', 2), ('essential', 1), ('cover', 1), ('aspect', 1), ('linux', 1), ('system', 1), ('administration', 1), ('user', 1), ('maintenance', 1), ('backup', 1), ('filesystem', 1), ('housekeeping', 1), ('storage', 1), ('network', 1), ('setup', 1), ('hardware', 1), ('software', 1), ('troubleshooting', 1), ('application', 1), ('practical', 1), ('daily', 1), ('reference', 1), ('manual', 1), ('sysadmins', 1), ('pro', 1), ('handy', 1), ('study', 1)]
[('game', 7), ('theory', 2), ('design', 2), ('new', 2), ('despite', 1), ('proliferation', 1), ('video', 1), ('twenty', 1), ('first', 1), ('century', 1), ('largely', 1), ('underdeveloped', 1), ('leaving', 1), ('designer', 1), ('understand', 1), ('really', 1), ('helping', 1), ('produce', 1), ('better', 1), ('philosophy', 1), ('understanding', 1), ('present', 1), ('bold', 1), ('path', 1), ('analyzing', 1), ('designing', 1)]
[('design', 3), ('harris', 2), ('digital', 2), ('risc', 2), ('logic', 2), ('newest', 1), ('addition', 1), ('family', 1), ('computer', 1), ('architecture', 1), ('book', 1), ('edition', 1), ('cover', 1), ('fundamental', 1), ('reinforces', 1), ('concept', 1), ('microprocessor', 1)]
[('matlab', 2), ('programming', 2), ('practical', 1), ('introduction', 1), ('problem', 1), ('solving', 1), ('winner', 1), ('taa', 1), ('textbook', 1), ('excellence', 1), ('award', 1), ('texty', 1), ('guide', 1), ('reader', 1), ('built', 1), ('function', 1), ('easily', 1), ('exploit', 1), ('extensive', 1), ('capability', 1)]
[('language', 3), ('programming', 2), ('pragmatic', 1), ('fourth', 1), ('edition', 1), ('comprehensive', 1), ('textbook', 1), ('available', 1), ('today', 1), ('distinguished', 1), ('acclaimed', 1), ('integrated', 1), ('treatment', 1), ('design', 1), ('implementation', 1), ('emphasis', 1)]
[('digital', 3), ('design', 2), ('step', 2), ('computer', 1), ('architecture', 1), ('second', 1), ('edition', 1), ('take', 1), ('unique', 1), ('modern', 1), ('approach', 1), ('introducing', 1), ('reader', 1), ('fundamental', 1), ('logic', 1), ('showing', 1), ('build', 1), ('mips', 1), ('microprocessor', 1)]
[('data', 2), ('thoroughly', 1), ('update', 1), ('first', 1), ('edition', 1), ('addressing', 1), ('significant', 1), ('advance', 1), ('driven', 1), ('technology', 1), ('intrusion', 1), ('deeper', 1), ('life', 1), ('limit', 1), ('collection', 1), ('newly', 1), ('required', 1), ('government', 1), ('north', 1), ('america', 1), ('europe', 1), ('new', 1), ('security', 1), ('challenge', 1), ('world', 1), ('rife', 1), ('ransomware', 1), ('hacking', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('gpt', 3), ('nlp', 2), ('product', 2), ('book', 2), ('language', 2), ('model', 2), ('ultimate', 1), ('guide', 1), ('building', 1), ('openai', 1), ('api', 1), ('comprehensive', 1), ('generative', 1), ('pre', 1), ('trained', 1), ('transformer', 1), ('ai', 1), ('covering', 1), ('significance', 1), ('capability', 1), ('application', 1), ('creating', 1), ('innovative', 1), ('key', 1), ('feature', 1), ('exploration', 1), ('explores', 1), ('powerful', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('advance', 1), ('understanding', 1), ('generic', 1), ('data', 1), ('structure', 1), ('algorithm', 1), ('application', 1), ('using', 1), ('go', 1), ('effective', 1), ('use', 1), ('concurrency', 1), ('invited', 1), ('journey', 1), ('aim', 1), ('improve', 1), ('programming', 1), ('problem', 1), ('solving', 1), ('skill', 1), ('book', 1)]
[('cs', 2), ('example', 2), ('come', 1), ('tour', 1), ('modern', 1), ('driven', 1), ('book', 1), ('demonstrates', 1), ('concept', 1), ('showing', 1), ('code', 1), ('screenshots', 1), ('diagram', 1), ('help', 1), ('clearly', 1), ('communicate', 1), ('information', 1), ('start', 1), ('basic', 1), ('box', 1), ('model', 1), ('color', 1)]
[('security', 2), ('understand', 1), ('zero', 1), ('trust', 1), ('integrate', 1), ('organization', 1), ('book', 1), ('cover', 1), ('complexity', 1), ('enterprise', 1), ('environment', 1), ('provides', 1), ('realistic', 1), ('guidance', 1), ('requirement', 1), ('team', 1), ('need', 1), ('successfully', 1), ('plan', 1)]
[('java', 3), ('application', 3), ('ee', 2), ('recipe', 2), ('enterprise', 2), ('take', 1), ('example', 1), ('based', 1), ('approach', 1), ('showing', 1), ('program', 1), ('many', 1), ('different', 1), ('scenario', 1), ('small', 1), ('business', 1), ('web', 1), ('database', 1), ('provides', 1)]
[('developer', 1), ('opportunity', 1), ('learn', 1), ('in', 1), ('out', 1), ('entity', 1), ('framework', 1), ('core', 1), ('microsoft', 1), ('recently', 1), ('redesigned', 1), ('object', 1), ('relational', 1), ('mapper', 1), ('benefit', 1), ('hand', 1), ('learning', 1), ('teach', 1), ('tackle', 1), ('frustrating', 1), ('database', 1), ('challenge', 1)]
[('application', 2), ('know', 1), ('design', 1), ('use', 1), ('identity', 1), ('management', 1), ('protect', 1), ('data', 1), ('manages', 1), ('time', 1), ('security', 1), ('breach', 1), ('result', 1), ('increasingly', 1), ('onerous', 1), ('penalty', 1), ('paramount', 1), ('developer', 1), ('owner', 1), ('understand', 1)]
[('query', 3), ('write', 2), ('optimized', 1), ('book', 1), ('help', 1), ('perform', 1), ('fast', 1), ('deliver', 1), ('result', 1), ('time', 1), ('learn', 1), ('optimization', 1), ('dark', 1), ('art', 1), ('practiced', 1), ('small', 1), ('secretive', 1), ('cabal', 1), ('sorcerer', 1), ('motivated', 1), ('professional', 1)]
[('step', 2), ('lt', 1), ('gt', 1), ('learn', 1), ('program', 1), ('rust', 1), ('edition', 1), ('easy', 1), ('manner', 1), ('unix', 1), ('linux', 1), ('shell', 1), ('macos', 1), ('window', 1), ('command', 1), ('line', 1), ('amp', 1), ('nbsp', 1), ('book', 1), ('build', 1), ('knowledge', 1), ('gained', 1), ('previous', 1), ('chapter', 1), ('see', 1)]
[('machine', 3), ('learning', 3), ('lt', 1), ('gt', 1), ('explore', 1), ('rust', 1), ('learn', 1), ('intricacy', 1), ('creating', 1), ('application', 1), ('book', 1), ('begin', 1), ('covering', 1), ('important', 1), ('concept', 1), ('supervised', 1), ('unsupervised', 1), ('reinforcement', 1)]
[('django', 3), ('decoupled', 2), ('apply', 1), ('decoupling', 1), ('pattern', 1), ('properly', 1), ('test', 1), ('project', 1), ('integrate', 1), ('api', 1), ('react', 1), ('vue', 1), ('j', 1), ('book', 1), ('cover', 1), ('architecture', 1), ('rest', 1), ('framework', 1), ('graphql', 1), ('practical', 1), ('simple', 1), ('example', 1)]
[('game', 5), ('design', 3), ('achieve', 1), ('happier', 1), ('healthier', 1), ('process', 1), ('connecting', 1), ('creative', 1), ('aspect', 1), ('technique', 1), ('effective', 1), ('project', 1), ('management', 1), ('book', 1), ('teach', 1), ('designer', 1), ('aspiring', 1), ('developer', 1), ('student', 1)]
[('technical', 3), ('debt', 2), ('software', 2), ('practical', 1), ('implication', 1), ('entire', 1), ('lifecycle', 1), ('example', 1), ('case', 1), ('study', 1), ('incurred', 1), ('developer', 1), ('take', 1), ('shortcut', 1), ('make', 1), ('ill', 1), ('advised', 1), ('decision', 1), ('initial', 1), ('phase', 1)]
[('ruby', 3), ('powerful', 1), ('programming', 1), ('language', 1), ('focus', 1), ('simplicity', 1), ('beneath', 1), ('elegant', 1), ('syntax', 1), ('performs', 1), ('countless', 1), ('unseen', 1), ('task', 1), ('microscope', 1), ('give', 1), ('hand', 1), ('look', 1), ('core', 1), ('using', 1), ('extensive', 1), ('diagram', 1), ('thorough', 1)]
[('dax', 3), ('bi', 3), ('language', 2), ('power', 2), ('new', 2), ('data', 1), ('analysis', 1), ('expression', 1), ('formula', 1), ('learning', 1), ('key', 1), ('empower', 1), ('user', 1), ('take', 1), ('advantage', 1), ('business', 1), ('intelligence', 1), ('capability', 1), ('volume', 1), ('clearly', 1), ('explains', 1), ('concept', 1), ('time', 1), ('offering', 1), ('hand', 1), ('practice', 1), ('engage', 1), ('reader', 1), ('help', 1)]
[('team', 2), ('cucumber', 2), ('working', 1), ('jvm', 1), ('say', 1), ('goodbye', 1), ('forever', 1), ('misunderstood', 1), ('requirement', 1), ('tedious', 1), ('manual', 1), ('acceptance', 1), ('test', 1), ('date', 1), ('documentation', 1), ('popular', 1), ('open', 1), ('source', 1), ('tool', 1), ('help', 1), ('communicate', 1), ('effectively', 1), ('customer', 1), ('java', 1), ('version', 1), ('bestselling', 1), ('book', 1), ('updated', 1), ('match', 1)]
[('itil', 4), ('create', 3), ('deliver', 3), ('support', 3), ('cd', 2), ('excellent', 1), ('supplement', 1), ('training', 1), ('course', 1), ('companion', 1), ('managing', 1), ('professional', 1), ('certification', 1), ('study', 1), ('guide', 1), ('designed', 1), ('help', 1), ('student', 1), ('pas', 1), ('module', 1)]
[('der', 1), ('band', 1), ('bietet', 1), ('eine', 1), ('kompakte', 1), ('einführung', 1), ('die', 1), ('nichtsequentielle', 1), ('programmierung', 1), ('al', 1), ('gemeinsamen', 1), ('kern', 1), ('von', 1), ('vorlesungen', 1), ('über', 1), ('betriebssysteme', 1), ('verteilte', 1), ('systeme', 1), ('parallele', 1), ('algorithmen', 1), ('echtzeitprogrammierung', 1), ('und', 1), ('datenbanktransaktionen', 1), ('basiskonzepte', 1)]
[('microsoft', 3), ('office', 2), ('offer', 2), ('step', 2), ('formerly', 1), ('known', 1), ('many', 1), ('improved', 1), ('productivity', 1), ('feature', 1), ('service', 1), ('updated', 1), ('revised', 1), ('exploring', 1), ('help', 1), ('packed', 1), ('easy', 1), ('follow', 1), ('instruction', 1), ('illustration', 1), ('photograph', 1), ('video', 1), ('demo', 1), ('guide', 1), ('specific', 1), ('downloading', 1), ('installing', 1)]
[('world', 2), ('cowritten', 1), ('ralph', 1), ('kimball', 1), ('leading', 1), ('data', 1), ('warehousing', 1), ('authority', 1), ('whose', 1), ('previous', 1), ('book', 1), ('sold', 1), ('copy', 1), ('delivers', 1), ('real', 1), ('solution', 1), ('time', 1), ('labor', 1), ('intensive', 1)]
[('project', 2), ('quickly', 2), ('step', 2), ('quick', 1), ('way', 1), ('learn', 1), ('microsoft', 1), ('learning', 1), ('made', 1), ('easy', 1), ('done', 1), ('jump', 1), ('wherever', 1), ('need', 1), ('answer', 1), ('brisk', 1), ('lesson', 1), ('colorful', 1), ('screenshots', 1), ('show', 1), ('exactly', 1), ('start', 1)]
[('sure', 1), ('become', 1), ('go', 1), ('resource', 1), ('wishing', 1), ('learn', 1), ('language', 1), ('program', 1)]
[('excel', 2), ('simulation', 2), ('covering', 1), ('variety', 1), ('gambling', 1), ('genetics', 1), ('introduction', 1), ('interested', 1), ('modeling', 1), ('future', 1), ('event', 1), ('without', 1), ('cost', 1), ('expensive', 1), ('textbook', 1), ('covered', 1), ('offer', 1), ('fun', 1), ('alternative', 1), ('usual', 1), ('topic', 1), ('include', 1), ('situation', 1), ('roulette', 1), ('password', 1), ('cracking', 1), ('sex', 1), ('determination', 1), ('population', 1)]
[('java', 2), ('thread', 1), ('fundamental', 1), ('part', 1), ('platform', 1), ('multicore', 1), ('processor', 1), ('become', 1), ('norm', 1), ('using', 1), ('concurrency', 1), ('effectively', 1), ('becomes', 1), ('essential', 1), ('building', 1), ('high', 1), ('performance', 1), ('application', 1), ('se', 1), ('huge', 1), ('step', 1), ('forward', 1), ('development', 1)]
[('adobe', 3), ('premiere', 2), ('pro', 2), ('book', 2), ('creative', 1), ('professional', 1), ('seeking', 1), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('choose', 1), ('classroom', 1), ('release', 1), ('press', 1), ('project', 1), ('based', 1), ('lesson', 1), ('show', 1), ('student', 1)]
[('sql', 2), ('application', 2), ('developer', 2), ('sam', 1), ('teach', 1), ('minute', 1), ('fourth', 1), ('edition', 1), ('new', 1), ('full', 1), ('color', 1), ('code', 1), ('example', 1), ('help', 1), ('see', 1), ('statement', 1), ('structured', 1), ('whether', 1), ('database', 1), ('administrator', 1), ('web', 1), ('designer', 1), ('mobile', 1), ('app', 1)]
[('book', 1), ('give', 1), ('account', 1), ('combinatory', 1), ('logic', 1), ('lambda', 1), ('calculus', 1), ('model', 1)]
[('java', 2), ('programmer', 2), ('ii', 2), ('exam', 2), ('complete', 1), ('trusted', 1), ('preparation', 1), ('ocp', 1), ('oracle', 1), ('certified', 1), ('professional', 1), ('se', 1), ('study', 1), ('guide', 1), ('comprehensive', 1), ('companion', 1), ('preparing', 1)]
[('design', 2), ('need', 2), ('know', 2), ('psychology', 2), ('want', 1), ('intuitive', 1), ('engaging', 1), ('web', 1), ('site', 1), ('apps', 1), ('print', 1), ('material', 1), ('product', 1), ('underlies', 1), ('behaviour', 1), ('thing', 1), ('every', 1), ('designer', 1), ('explores', 1), ('foundational', 1), ('latest', 1), ('research', 1), ('conscious', 1), ('mind', 1), ('applies', 1)]
[('accelerate', 1), ('digital', 1), ('transformation', 1), ('break', 1), ('silo', 1), ('microsoft', 1), ('dynamic', 1), ('secret', 1), ('running', 1), ('business', 1), ('involves', 1), ('several', 1), ('complex', 1), ('part', 1), ('managing', 1), ('staff', 1), ('financials', 1)]
[('nan', 1)]
[('stop', 1), ('reference', 1), ('self', 1), ('contained', 1), ('theoretical', 1), ('topic', 1), ('presented', 1), ('conjunction', 1), ('implementation', 1), ('code', 1), ('supplied', 1)]
[('practice', 2), ('comptia', 2), ('security', 2), ('sy', 2), ('exam', 2), ('certification', 2), ('complete', 2), ('learn', 1), ('prepare', 1), ('success', 1), ('cert', 1), ('guide', 1), ('academic', 1), ('edition', 1), ('pearson', 1), ('leader', 1), ('learning', 1), ('companion', 1), ('website', 1), ('feature', 1), ('three', 1), ('video', 1), ('solution', 1), ('hand', 1), ('lab', 1), ('plus', 1), ('interactive', 1), ('flash', 1), ('based', 1)]
[('project', 5), ('step', 2), ('speed', 1), ('microsoft', 1), ('learn', 1), ('manage', 1), ('large', 1), ('small', 1), ('crystal', 1), ('clear', 1), ('book', 1), ('guide', 1), ('new', 1), ('feature', 1), ('give', 1), ('real', 1), ('world', 1), ('guidance', 1), ('prep', 1), ('touching', 1), ('pc', 1), ('tool', 1), ('keep', 1), ('target', 1), ('missing', 1), ('manual', 1)]
[('nan', 1)]
[('first', 1), ('book', 1), ('present', 1), ('basic', 1), ('technique', 1), ('main', 1), ('result', 1), ('expanding', 1), ('field', 1), ('research', 1)]
[('data', 2), ('thorough', 1), ('update', 1), ('industry', 1), ('standard', 1), ('designing', 1), ('developing', 1), ('deploying', 1), ('warehouse', 1), ('business', 1), ('intelligence', 1), ('system', 1), ('world', 1), ('warehousing', 1), ('changed', 1), ('remarkably', 1), ('first', 1), ('edition', 1)]
[('database', 3), ('step', 2), ('learning', 1), ('fundamental', 1), ('whole', 1), ('lot', 1), ('easier', 1), ('design', 1), ('build', 1), ('manage', 1), ('fully', 1), ('functional', 1), ('ease', 1), ('thoroughly', 1), ('updated', 1), ('cover', 1), ('latest', 1), ('technology', 1), ('technique', 1), ('demystified', 1), ('second', 1), ('edition', 1), ('give', 1), ('hand', 1), ('help', 1), ('need', 1), ('started', 1), ('written', 1), ('format', 1)]
[('project', 3), ('management', 3), ('pmo', 2), ('expanded', 1), ('thoroughly', 1), ('revised', 1), ('book', 1), ('extends', 1), ('concept', 1), ('consideration', 1), ('modern', 1), ('realm', 1), ('oversight', 1), ('control', 1), ('support', 1), ('recognizes', 1), ('need', 1), ('centralized', 1), ('organizational', 1), ('entity', 1), ('office', 1), ('perform', 1), ('capacity', 1), ('position', 1)]
[('nan', 1)]
[('nan', 1)]
[('built', 2), ('device', 2), ('devastating', 1), ('tsunami', 1), ('dyiers', 1), ('japan', 1), ('detect', 1), ('radiation', 1), ('level', 1), ('posted', 1), ('finding', 1), ('internet', 1), ('right', 1), ('thousand', 1), ('worldwide', 1), ('tracking', 1), ('environmental', 1), ('condition', 1), ('monitoring', 1), ('inspiring', 1), ('guide', 1), ('show', 1), ('use', 1)]
[('excel', 3), ('power', 2), ('formula', 2), ('leverage', 1), ('full', 1), ('fully', 1), ('updated', 1), ('cover', 1), ('tip', 1), ('trick', 1), ('technique', 1), ('need', 1), ('maximize', 1), ('use', 1)]
[('excel', 4), ('core', 2), ('mcfedries', 2), ('feature', 2), ('master', 1), ('tool', 1), ('building', 1), ('powerful', 1), ('reliable', 1), ('spreadsheet', 1), ('formula', 1), ('function', 1), ('expert', 1), ('paul', 1), ('show', 1), ('use', 1), ('solve', 1), ('problem', 1), ('answer', 1), ('need', 1), ('using', 1), ('real', 1), ('world', 1), ('example', 1), ('help', 1), ('absolute', 1), ('improvement', 1), ('ranging', 1), ('autofill', 1)]
[('vagrant', 2), ('show', 2), ('discover', 1), ('tool', 1), ('thousand', 1), ('developer', 1), ('ops', 1), ('engineer', 1), ('hand', 1), ('guide', 1), ('use', 1), ('open', 1), ('source', 1), ('software', 1), ('build', 1), ('virtual', 1), ('machine', 1), ('purpose', 1), ('including', 1), ('completely', 1), ('sandboxed', 1), ('fully', 1), ('provisioned', 1), ('development', 1), ('environment', 1), ('right', 1), ('desktop', 1), ('creator', 1), ('mitchell', 1), ('hashimoto', 1)]
[('issap', 3), ('need', 2), ('candidate', 1), ('cissp', 1), ('professional', 1), ('certification', 1), ('demonstrate', 1), ('thorough', 1), ('understanding', 1), ('six', 1), ('domain', 1), ('cbk', 1), ('ability', 1), ('apply', 1), ('depth', 1), ('knowledge', 1), ('develop', 1), ('detailed', 1), ('security', 1), ('architecture', 1), ('supplying', 1), ('authoritative', 1), ('review', 1), ('key', 1), ('concept', 1), ('requirement', 1)]
[('digital', 3), ('forensics', 3), ('basic', 1), ('provides', 1), ('foundation', 1), ('new', 1), ('field', 1), ('book', 1), ('offer', 1), ('guidance', 1), ('conduct', 1), ('examination', 1), ('discussing', 1), ('methodology', 1), ('used', 1), ('key', 1), ('tactical', 1), ('concept', 1)]
[('comprehensive', 1), ('rigorous', 1), ('introduction', 1), ('graduate', 1), ('student', 1), ('researcher', 1), ('application', 1), ('sequential', 1), ('decision', 1), ('making', 1), ('problem', 1)]
[('book', 1), ('explains', 1), ('design', 1), ('geometry', 1), ('algorithm', 1), ('including', 1), ('discussion', 1), ('implementation', 1), ('issue', 1), ('working', 1), ('code', 1)]
[('study', 2), ('guide', 2), ('google', 2), ('cloud', 2), ('proven', 1), ('prepares', 1), ('new', 1), ('exam', 1), ('certified', 1), ('professional', 1), ('data', 1), ('engineer', 1), ('provides', 1), ('everything', 1), ('need', 1), ('prepare', 1)]
[('data', 2), ('reference', 2), ('final', 1), ('edition', 1), ('incomparable', 1), ('warehousing', 1), ('business', 1), ('intelligence', 1), ('updated', 1), ('expanded', 1), ('kimball', 1), ('group', 1), ('reader', 1), ('remastered', 1), ('collection', 1), ('essential', 1)]
[('highly', 1), ('successful', 1), ('security', 1), ('book', 1), ('return', 1), ('new', 1), ('edition', 1), ('completely', 1), ('updated', 1), ('web', 1), ('application', 1), ('front', 1), ('door', 1), ('organization', 1), ('exposing', 1), ('attack', 1), ('disclose', 1), ('personal', 1), ('information', 1), ('execute', 1)]
[('auditing', 3), ('using', 2), ('step', 2), ('program', 2), ('secure', 1), ('system', 1), ('latest', 1), ('technique', 1), ('fully', 1), ('updated', 1), ('cover', 1), ('leading', 1), ('edge', 1), ('tool', 1), ('technology', 1), ('control', 1), ('protect', 1), ('information', 1), ('asset', 1), ('third', 1), ('edition', 1), ('explains', 1), ('implement', 1), ('successful', 1), ('enterprise', 1), ('wide', 1), ('audit', 1), ('new', 1), ('chapter', 1), ('cybersecurity', 1), ('big', 1), ('data', 1)]
[('bi', 2), ('microsoft', 2), ('sql', 2), ('server', 2), ('step', 2), ('distribute', 1), ('actionable', 1), ('timely', 1), ('power', 1), ('drive', 1), ('better', 1), ('faster', 1), ('informed', 1), ('decision', 1), ('making', 1), ('across', 1), ('organization', 1), ('using', 1), ('expert', 1), ('tip', 1), ('best', 1), ('practice', 1), ('featured', 1), ('hand', 1), ('guide', 1), ('delivering', 1), ('business', 1), ('intelligence', 1), ('fourth', 1), ('edition', 1), ('show', 1)]
[('safe', 2), ('framework', 2), ('world', 1), ('leading', 1), ('enterprise', 1), ('agility', 1), ('distilled', 1), ('book', 1), ('waiting', 1), ('break', 1), ('complexity', 1), ('easily', 1), ('digestible', 1), ('explanation', 1), ('actionable', 1), ('guidance', 1)]
[('power', 2), ('bi', 2), ('dashboard', 2), ('hand', 1), ('guide', 1), ('building', 1), ('effective', 1), ('expand', 1), ('expertise', 1), ('teach', 1), ('create', 1), ('world', 1), ('class', 1), ('business', 1), ('analysis', 1), ('bring', 1), ('data', 1), ('life', 1), ('better', 1), ('decision', 1), ('making', 1), ('experienced', 1)]
[('nbsp', 8), ('false', 3), ('none', 2), ('normal', 1), ('en', 1), ('need', 1), ('know', 1), ('defending', 1), ('network', 1), ('book', 1), ('clearly', 1), ('explains', 1), ('concept', 1), ('terminology', 1), ('challenge', 1), ('tool', 1), ('skill', 1)]
[('regular', 3), ('expression', 3), ('reference', 2), ('handy', 1), ('little', 1), ('book', 1), ('offer', 1), ('programmer', 1), ('complete', 1), ('overview', 1), ('syntax', 1), ('semantics', 1), ('heart', 1), ('every', 1), ('text', 1), ('processing', 1), ('application', 1), ('ideal', 1), ('quick', 1), ('pocket', 1), ('cover', 1), ('apis', 1), ('perl', 1), ('ruby', 1), ('including', 1), ('upcoming', 1), ('feature', 1), ('java', 1), ('php', 1)]
[('php', 3), ('mysql', 2), ('ready', 1), ('create', 1), ('web', 1), ('page', 1), ('complex', 1), ('build', 1), ('html', 1), ('cs', 1), ('head', 1), ('first', 1), ('ultimate', 1), ('learning', 1), ('guide', 1), ('building', 1), ('dynamic', 1), ('database', 1), ('driven', 1), ('website', 1), ('using', 1), ('packed', 1), ('real', 1), ('world', 1), ('example', 1), ('book', 1), ('teach', 1), ('essential', 1), ('server', 1), ('side', 1), ('programming', 1), ('fundamental', 1)]
[('hiring', 2), ('know', 1), ('manager', 1), ('consider', 1), ('certification', 1), ('part', 1), ('requirement', 1), ('professional', 1), ('new', 1), ('industry', 1), ('need', 1), ('strong', 1), ('foundational', 1), ('understanding', 1), ('fundamental', 1), ('moving', 1), ('towards', 1)]
[('leader', 1), ('field', 1), ('offer', 1), ('compelling', 1), ('analysis', 1), ('current', 1), ('state', 1), ('art', 1), ('reveal', 1), ('step', 1), ('take', 1), ('achieve', 1), ('robust', 1), ('artificial', 1), ('intelligence', 1), ('make', 1), ('life', 1), ('better', 1), ('ldquo', 1), ('finally', 1), ('book', 1), ('tell', 1), ('ai', 1)]
[('shrm', 6), ('exam', 3), ('cp', 2), ('scp', 2), ('study', 2), ('certified', 2), ('professional', 2), ('prepare', 1), ('money', 1), ('saving', 1), ('comprehensive', 1), ('package', 1), ('designed', 1), ('complete', 1), ('self', 1), ('program', 1), ('collection', 1), ('offer', 1), ('variety', 1), ('proven', 1), ('focused', 1), ('resource', 1), ('use', 1), ('preparation', 1), ('senior', 1), ('comprised', 1)]
[('mpls', 3), ('theory', 2), ('comprehensive', 1), ('introduction', 1), ('facet', 1), ('practice', 1), ('help', 1), ('networking', 1), ('professional', 1), ('choose', 1), ('suitable', 1), ('application', 1), ('design', 1), ('network', 1), ('provides', 1), ('relates', 1), ('basic', 1), ('io', 1), ('configuration', 1), ('example', 1)]
[('autocad', 2), ('drawing', 2), ('step', 2), ('engineering', 1), ('graphic', 1), ('award', 1), ('winning', 1), ('cad', 1), ('instructor', 1), ('author', 1), ('james', 1), ('bethune', 1), ('teach', 1), ('technical', 1), ('using', 1), ('instrument', 1), ('taking', 1), ('approach', 1), ('textbook', 1), ('encourages', 1), ('student', 1), ('work', 1), ('pace', 1), ('us', 1), ('sample', 1), ('problem', 1), ('illustration', 1), ('guide', 1), ('powerful', 1)]
[('adobe', 4), ('animate', 4), ('book', 2), ('step', 2), ('creative', 1), ('professional', 1), ('seeking', 1), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('choose', 1), ('classroom', 1), ('press', 1), ('project', 1), ('based', 1), ('lesson', 1), ('show', 1), ('user', 1), ('key', 1), ('technique', 1), ('working', 1), ('cc', 1), ('provides', 1), ('expressive', 1), ('tool', 1), ('powerful', 1), ('control', 1)]
[('data', 4), ('building', 1), ('testing', 1), ('machine', 1), ('learning', 1), ('model', 1), ('requires', 1), ('access', 1), ('large', 1), ('diverse', 1), ('find', 1), ('usable', 1), ('datasets', 1), ('without', 1), ('running', 1), ('privacy', 1), ('issue', 1), ('practical', 1), ('book', 1), ('introduces', 1), ('technique', 1), ('generating', 1), ('synthetic', 1), ('fake', 1), ('generated', 1), ('real', 1), ('perform', 1), ('secondary', 1), ('analysis', 1), ('research', 1), ('understand', 1), ('customer', 1)]
[('powershell', 2), ('want', 1), ('perform', 1), ('programming', 1), ('task', 1), ('better', 1), ('faster', 1), ('simpler', 1), ('make', 1), ('repeatable', 1), ('take', 1), ('deep', 1), ('dive', 1), ('window', 1), ('discover', 1), ('distributed', 1), ('automation', 1), ('platform', 1), ('whether', 1), ('net', 1), ('developer', 1), ('pro', 1), ('concise', 1), ('guide', 1), ('show', 1), ('scripting', 1), ('language', 1), ('help', 1), ('productive', 1), ('everyday', 1)]
[('grep', 3), ('system', 2), ('pocket', 1), ('reference', 1), ('first', 1), ('guide', 1), ('devoted', 1), ('powerful', 1), ('unix', 1), ('content', 1), ('location', 1), ('utility', 1), ('handy', 1), ('book', 1), ('ideal', 1), ('administrator', 1), ('security', 1), ('professional', 1), ('developer', 1), ('others', 1), ('want', 1), ('learn', 1), ('take', 1), ('new', 1), ('approach', 1), ('everything', 1), ('mail', 1), ('filtering', 1), ('log', 1), ('management', 1), ('malware', 1)]
[('arduino', 3), ('reference', 2), ('rather', 1), ('yet', 1), ('another', 1), ('project', 1), ('based', 1), ('workbook', 1), ('technical', 1), ('handbook', 1), ('thoroughly', 1), ('describes', 1), ('electrical', 1), ('performance', 1), ('aspect', 1), ('board', 1), ('software', 1), ('book', 1), ('brings', 1), ('together', 1), ('place', 1), ('information', 1), ('need', 1), ('something', 1), ('done', 1), ('save', 1), ('endless', 1)]
[('learn', 2), ('among', 1), ('many', 1), ('hobbyist', 1), ('designer', 1), ('came', 1), ('electronics', 1), ('arduino', 1), ('raspberry', 1), ('pi', 1), ('cookbook', 1), ('help', 1), ('apply', 1), ('basic', 1), ('electrical', 1), ('engineering', 1), ('without', 1), ('need', 1), ('ee', 1), ('degree', 1), ('series', 1), ('practical', 1), ('recipe', 1), ('solve', 1), ('specific', 1), ('problem', 1), ('diving', 1), ('little', 1)]
[('visual', 2), ('thinking', 2), ('science', 2), ('brings', 1), ('perception', 1), ('art', 1), ('design', 1), ('designer', 1), ('increasingly', 1), ('need', 1), ('present', 1), ('information', 1), ('way', 1), ('aid', 1), ('audience', 1), ('process', 1), ('fortunately', 1), ('result', 1), ('relatively', 1), ('new', 1), ('human', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('rust', 5), ('official', 2), ('book', 2), ('programming', 2), ('language', 2), ('written', 1), ('development', 1), ('team', 1), ('mozilla', 1), ('foundation', 1), ('fully', 1), ('updated', 1), ('open', 1), ('source', 1), ('system', 1)]
[('problem', 2), ('hacking', 1), ('art', 1), ('creative', 1), ('solving', 1), ('whether', 1), ('mean', 1), ('finding', 1), ('unconventional', 1), ('solution', 1), ('difficult', 1), ('exploiting', 1), ('hole', 1), ('sloppy', 1), ('programming', 1), ('many', 1), ('call', 1), ('hacker', 1), ('strong', 1), ('technical', 1)]
[('book', 1), ('show', 1), ('continuation', 1), ('passing', 1), ('style', 1), ('used', 1), ('intermediate', 1), ('representation', 1), ('perform', 1), ('optimisation', 1), ('program', 1), ('transformation', 1)]
[('excel', 2), ('new', 2), ('skill', 1), ('sore', 1), ('height', 1), ('bestselling', 1), ('guide', 1), ('updated', 1), ('reflect', 1), ('latest', 1), ('change', 1), ('microsoft', 1), ('office', 1), ('suite', 1), ('edition', 1), ('dummy', 1), ('quickly', 1), ('painlessly', 1)]
[('netsuite', 2), ('easy', 1), ('use', 1), ('customizable', 1), ('enterprise', 1), ('software', 1), ('running', 1), ('business', 1), ('offer', 1), ('integrated', 1), ('application', 1), ('wrap', 1), ('essential', 1), ('information', 1), ('technology', 1), ('need', 1), ('erp', 1), ('crm', 1)]
[('sql', 3), ('microsoft', 2), ('server', 2), ('feature', 2), ('date', 1), ('skill', 1), ('made', 1), ('easy', 1), ('running', 1), ('time', 1), ('help', 1), ('thoroughly', 1), ('revised', 1), ('practical', 1), ('resource', 1), ('book', 1), ('offer', 1), ('thorough', 1), ('coverage', 1), ('management', 1), ('development', 1), ('full', 1), ('detail', 1), ('newest', 1), ('business', 1), ('intelligence', 1), ('reporting', 1), ('security', 1), ('filled', 1)]
[('incident', 2), ('response', 2), ('definitive', 1), ('guide', 1), ('updated', 1), ('first', 1), ('time', 1), ('decade', 1), ('thoroughly', 1), ('revised', 1), ('cover', 1), ('latest', 1), ('effective', 1), ('tool', 1), ('technique', 1), ('computer', 1), ('forensics', 1), ('third', 1), ('edition', 1), ('arm', 1), ('information', 1), ('need', 1), ('organization', 1), ('trouble', 1), ('data', 1), ('breach', 1), ('occur', 1), ('practical', 1)]
[('agile', 5), ('head', 2), ('first', 2), ('real', 2), ('world', 2), ('idea', 2), ('practice', 2), ('learn', 2), ('complete', 1), ('guide', 1), ('learning', 1), ('principle', 1), ('book', 1), ('behind', 1), ('straightforward', 1), ('drive', 1), ('take', 1), ('deep', 1), ('dive', 1), ('scrum', 1), ('xp', 1), ('lean', 1), ('kanban', 1), ('common', 1)]
[('guide', 2), ('computer', 2), ('security', 2), ('comprehensive', 1), ('extensively', 1), ('revised', 1), ('newer', 1), ('technology', 1), ('method', 1), ('idea', 1), ('example', 1), ('nbsp', 1), ('updated', 1), ('university', 1), ('california', 1), ('davis', 1), ('laboratory', 1), ('co', 1), ('director', 1), ('matt', 1), ('bishop', 1), ('offer', 1)]
[('test', 2), ('tdd', 2), ('simple', 2), ('idea', 2), ('write', 2), ('code', 2), ('driven', 1), ('development', 1), ('established', 1), ('technique', 1), ('delivering', 1), ('better', 1), ('software', 1), ('faster', 1), ('based', 1), ('take', 1), ('skill', 1), ('judgment', 1)]
[('many', 2), ('nbsp', 2), ('bible', 1), ('fundamental', 1), ('algorithm', 1), ('work', 1), ('taught', 1), ('today', 1), ('software', 1), ('developer', 1), ('know', 1), ('computer', 1), ('programming', 1), ('byte', 1), ('september', 1), ('begin', 1), ('tell', 1), ('pleasurable', 1), ('hour', 1)]
[('system', 4), ('modeling', 2), ('sysml', 2), ('language', 1), ('extends', 1), ('uml', 1), ('powerful', 1), ('engineering', 1), ('capability', 1), ('wider', 1), ('spectrum', 1), ('capturing', 1), ('aspect', 1), ('design', 1), ('nbsp', 1), ('distilled', 1), ('first', 1), ('clear', 1), ('concise', 1), ('guide', 1)]
[('adobe', 4), ('premiere', 3), ('pro', 3), ('learn', 2), ('cc', 2), ('book', 2), ('step', 2), ('creative', 1), ('professional', 1), ('seeking', 1), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('nbsp', 1), ('choose', 1), ('classroom', 1), ('release', 1), ('press', 1), ('project', 1), ('based', 1), ('lesson', 1), ('show', 1), ('user', 1), ('key', 1), ('technique', 1), ('working', 1), ('edit', 1), ('video', 1)]
[('network', 4), ('complete', 1), ('guide', 1), ('setting', 1), ('running', 1), ('tcp', 1), ('ip', 1), ('essential', 1), ('administrator', 1), ('invaluable', 1), ('user', 1), ('home', 1), ('system', 1), ('access', 1), ('internet', 1), ('book', 1), ('start', 1), ('fundamental', 1), ('protocol', 1), ('work', 1), ('address', 1), ('routing', 1), ('used', 1), ('move', 1), ('data', 1), ('set', 1)]
[('xslt', 2), ('tool', 2), ('xml', 2), ('sun', 2), ('essential', 1), ('converting', 1), ('kind', 1), ('document', 1), ('html', 1), ('pdf', 1), ('file', 1), ('many', 1), ('others', 1), ('critical', 1), ('technology', 1), ('based', 1), ('platform', 1), ('microsoft', 1), ('net', 1), ('microsystems', 1), ('web', 1), ('browser', 1), ('authoring', 1), ('useful', 1), ('difficult', 1), ('time', 1), ('getting', 1), ('used', 1)]
[('manual', 2), ('unique', 1), ('better', 1), ('come', 1), ('yourcamera', 1), ('several', 1), ('important', 1), ('way', 1), ('organized', 1), ('according', 1), ('efficient', 1), ('workflow', 1), ('outof', 1), ('sony', 1), ('quickly', 1), ('least', 1), ('amount', 1), ('bother', 1), ('find', 1), ('looking', 1), ('interactively', 1), ('using', 1), ('interactivetable', 1), ('content', 1), ('choosing', 1)]
[('idea', 2), ('head', 2), ('sketching', 2), ('feel', 1), ('thought', 1), ('plan', 1), ('suffocated', 1), ('constant', 1), ('onslaught', 1), ('information', 1), ('want', 1), ('onto', 1), ('whiteboard', 1), ('everyone', 1), ('find', 1), ('hard', 1), ('start', 1), ('matter', 1), ('level', 1), ('think', 1), ('presto', 1), ('help', 1), ('lift', 1), ('game', 1)]
[('learn', 4), ('code', 3), ('book', 1), ('itã', 1), ('secret', 1), ('world', 1), ('around', 1), ('becoming', 1), ('connected', 1), ('configurable', 1), ('programmable', 1), ('computational', 1), ('remain', 1), ('passive', 1), ('participant', 1), ('head', 1), ('first', 1), ('youã', 1), ('think', 1), ('computationally', 1), ('write', 1), ('make', 1)]
[('cli', 2), ('hope', 1), ('outmaneuver', 1), ('threat', 1), ('actor', 1), ('speed', 1), ('efficiency', 1), ('need', 1), ('key', 1), ('component', 1), ('cybersecurity', 1), ('operation', 1), ('mastery', 1), ('standard', 1), ('command', 1), ('line', 1), ('interface', 1), ('invaluable', 1), ('skill', 1), ('time', 1), ('crisis', 1), ('software', 1), ('application', 1), ('match', 1), ('availability', 1), ('flexibility', 1), ('agility', 1), ('practical', 1), ('guide', 1), ('show', 1)]
[('data', 3), ('analytics', 2), ('use', 1), ('way', 1), ('protects', 1), ('individual', 1), ('privacy', 1), ('still', 1), ('provides', 1), ('useful', 1), ('meaningful', 1), ('practical', 1), ('book', 1), ('architect', 1), ('engineer', 1), ('learn', 1), ('establish', 1), ('integrate', 1), ('secure', 1), ('repeatable', 1), ('anonymization', 1), ('process', 1), ('flow', 1), ('sustainable', 1), ('manner', 1), ('luk', 1), ('arbuckle', 1), ('khaled', 1), ('el', 1)]
[('named', 1), ('best', 1), ('book', 1), ('economist', 1), ('wall', 1), ('street', 1), ('journal', 1), ('vox', 1), ('father', 1), ('virtual', 1), ('reality', 1), ('explains', 1), ('dazzling', 1), ('possibility', 1), ('reflecting', 1), ('lifelong', 1), ('relationship', 1), ('technology', 1), ('bridging', 1), ('gap', 1), ('tech', 1), ('mania', 1), ('experience', 1), ('inside', 1), ('human', 1), ('body', 1), ('dawn', 1), ('new', 1), ('everything', 1)]
[('basic', 3), ('information', 2), ('security', 2), ('knowledge', 2), ('part', 1), ('syngress', 1), ('series', 1), ('provides', 1), ('fundamental', 1), ('theoretical', 1), ('practical', 1), ('aspect', 1), ('author', 1), ('jason', 1), ('andress', 1), ('give', 1), ('needed', 1)]
[('cortex', 3), ('processor', 2), ('new', 1), ('edition', 1), ('fully', 1), ('revised', 1), ('updated', 1), ('include', 1), ('extensive', 1), ('information', 1), ('arm', 1), ('providing', 1), ('complete', 1), ('date', 1), ('guide', 1), ('enables', 1), ('migration', 1), ('various', 1)]
[('nan', 1)]
[('nan', 1)]
[('shocking', 1), ('untold', 1), ('story', 1), ('elite', 1), ('secret', 1), ('society', 1), ('hacker', 1), ('fighting', 1), ('protect', 1), ('privacy', 1), ('freedom', 1), ('even', 1), ('democracy', 1), ('cult', 1), ('dead', 1), ('cow', 1), ('tale', 1), ('oldest', 1), ('respected', 1), ('famous', 1), ('american', 1), ('hacking', 1), ('group', 1), ('time', 1), ('though', 1), ('remained', 1), ('mostly', 1), ('anonymous', 1), ('member', 1), ('invented', 1), ('concept', 1)]
[('programming', 3), ('completely', 1), ('revised', 1), ('edition', 1), ('offering', 1), ('new', 1), ('design', 1), ('recipe', 1), ('interactive', 1), ('program', 1), ('support', 1), ('image', 1), ('plain', 1), ('value', 1), ('testing', 1), ('event', 1), ('driven', 1), ('even', 1), ('distributed', 1), ('introduction', 1), ('place', 1), ('computer', 1), ('science', 1)]
[('security', 2), ('smart', 2), ('contract', 2), ('written', 1), ('expert', 1), ('forefront', 1), ('dynamic', 1), ('industry', 1), ('book', 1), ('teach', 1), ('state', 1), ('art', 1), ('principle', 1), ('practice', 1), ('innovative', 1), ('application', 1), ('blockchain', 1), ('technology', 1), ('acting', 1), ('decentralized', 1), ('custodian', 1), ('digital', 1), ('asset', 1), ('allow', 1), ('transfer', 1), ('value', 1), ('information', 1), ('effectively', 1)]
[('complete', 1), ('guide', 1), ('digital', 1), ('front', 1), ('end', 1), ('covering', 1), ('topic', 1), ('signal', 1), ('processing', 1), ('algorithm', 1), ('integrated', 1), ('circuit', 1), ('design', 1)]
[('book', 1), ('introduces', 1), ('theory', 1), ('method', 1), ('application', 1), ('density', 1), ('ratio', 1), ('estimation', 1), ('newly', 1), ('emerging', 1), ('paradigm', 1), ('machine', 1), ('learning', 1), ('community', 1)]
[('comprehensive', 2), ('study', 2), ('guide', 2), ('prepare', 1), ('pmp', 1), ('certification', 1), ('exam', 1), ('success', 1), ('fully', 1), ('updated', 1), ('serf', 1), ('resource', 1), ('plan', 1), ('taking', 1), ('project', 1), ('management', 1)]
[('analyzing', 2), ('hack', 1), ('done', 1), ('stop', 1), ('future', 1), ('reverse', 1), ('engineering', 1), ('process', 1), ('hardware', 1), ('software', 1), ('understanding', 1), ('without', 1), ('access', 1), ('source', 1), ('code', 1)]
[('pmp', 3), ('preparation', 2), ('exam', 2), ('project', 2), ('management', 2), ('best', 1), ('practice', 1), ('test', 1), ('boost', 1), ('confidence', 1), ('take', 1), ('new', 1), ('professional', 1)]
[('data', 2), ('health', 2), ('healthcare', 2), ('visualization', 1), ('book', 1), ('written', 1), ('professional', 1), ('information', 1), ('coming', 1), ('organization', 1), ('faster', 1), ('consume', 1)]
[('incident', 3), ('response', 2), ('critical', 1), ('active', 1), ('defense', 1), ('network', 1), ('responder', 1), ('need', 1), ('date', 1), ('immediately', 1), ('applicable', 1), ('technique', 1), ('engage', 1), ('adversary', 1), ('applied', 1), ('detail', 1)]
[('nikon', 2), ('easy', 1), ('follow', 1), ('photography', 1), ('class', 1), ('book', 1), ('powerful', 1), ('tool', 1), ('equipped', 1), ('take', 1), ('top', 1), ('notch', 1), ('photo', 1), ('unless', 1), ('know', 1), ('use', 1), ('full', 1), ('potential', 1), ('professional', 1), ('grade', 1), ('camera', 1)]
[('publisher', 2), ('product', 2), ('coverage', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('fully', 1), ('updated', 1), ('every', 1), ('topic', 1), ('current', 1), ('version', 1), ('gsec', 1), ('exam', 1), ('complete', 1), ('objective', 1), ('global', 1), ('information', 1)]
[('scrum', 4), ('zombie', 3), ('guard', 2), ('escape', 1), ('real', 1), ('value', 1), ('agile', 1), ('professional', 1), ('mortal', 1), ('enemy', 1), ('eternal', 1), ('combat', 1), ('relax', 1), ('come', 1), ('back', 1), ('guide', 1), ('help', 1), ('stay', 1), ('providing', 1), ('practical', 1)]
[('data', 4), ('foundational', 2), ('skill', 2), ('science', 2), ('hand', 1), ('need', 1), ('dive', 1), ('freeman', 1), ('ross', 1), ('created', 1), ('definitive', 1), ('resource', 1), ('new', 1), ('aspiring', 1), ('scientist', 1), ('learn', 1), ('programming', 1), ('foreword', 1), ('jared', 1), ('lander', 1), ('series', 1), ('editor', 1), ('using', 1), ('technique', 1), ('transform', 1), ('raw', 1)]
[('emacs', 2), ('yes', 1), ('possible', 1), ('thing', 1), ('talking', 1), ('editor', 1), ('user', 1), ('make', 1), ('kind', 1), ('customization', 1), ('want', 1), ('choosing', 1), ('keystroke', 1), ('invoke', 1), ('favorite', 1), ('command', 1), ('creating', 1), ('whole', 1), ('new', 1), ('work', 1), ('environment', 1), ('look', 1), ('nothing', 1), ('developed', 1), ('lisp', 1)]
[('java', 4), ('many', 2), ('programmer', 2), ('new', 2), ('nio', 2), ('edition', 2), ('serious', 1), ('especially', 1), ('enterprise', 1), ('consider', 1), ('api', 1), ('called', 1), ('input', 1), ('output', 1), ('important', 1), ('feature', 1), ('version', 1), ('standard', 1), ('package', 1), ('includes', 1), ('thing', 1), ('missing', 1), ('previous', 1), ('critical', 1), ('writing', 1), ('high', 1), ('performance', 1)]
[('need', 2), ('tool', 2), ('documentation', 2), ('docbook', 2), ('reliable', 1), ('technical', 1), ('clear', 1), ('concise', 1), ('reference', 1), ('help', 1), ('take', 1), ('advantage', 1), ('popular', 1), ('xml', 1), ('schema', 1), ('originally', 1), ('developed', 1), ('document', 1), ('computer', 1), ('hardware', 1), ('project', 1), ('expanded', 1), ('simplified', 1), ('address', 1), ('field', 1), ('quickly', 1), ('becoming', 1)]
[('based', 2), ('software', 2), ('development', 2), ('project', 2), ('explore', 1), ('latest', 1), ('java', 1), ('technique', 1), ('methodology', 1), ('approach', 1), ('practical', 1), ('guide', 1), ('unlike', 1), ('book', 1), ('use', 1), ('abstract', 1), ('example', 1), ('lot', 1), ('theory', 1), ('real', 1), ('world', 1), ('show', 1), ('develop', 1), ('several', 1), ('relevant', 1), ('learning', 1), ('best', 1), ('practice', 1), ('along', 1), ('way', 1)]
[('every', 2), ('html', 2), ('lucid', 1), ('depth', 1), ('description', 1), ('behavior', 1), ('tag', 1), ('major', 1), ('browser', 1), ('platform', 1), ('plus', 1), ('enough', 1), ('dry', 1), ('humor', 1), ('make', 1), ('book', 1), ('pleasure', 1), ('edward', 1), ('mendelson', 1), ('pc', 1), ('magazine', 1), ('say', 1), ('definitive', 1), ('kidding', 1), ('linda', 1), ('roeder', 1), ('put', 1), ('everthing', 1), ('need', 1), ('know', 1), ('xhtml', 1)]
[('xslt', 2), ('document', 2), ('file', 2), ('forget', 1), ('funky', 1), ('robot', 1), ('toy', 1), ('rage', 1), ('extensible', 1), ('stylesheet', 1), ('transformation', 1), ('ultimate', 1), ('transformer', 1), ('powerful', 1), ('language', 1), ('expert', 1), ('transforming', 1), ('xml', 1), ('pdf', 1), ('html', 1), ('jpeg', 1), ('virtually', 1), ('anything', 1), ('heart', 1), ('desire', 1), ('useful', 1), ('though', 1), ('difficult', 1)]
[('tcl', 4), ('tk', 2), ('reference', 2), ('combination', 1), ('increasingly', 1), ('popular', 1), ('let', 1), ('produce', 1), ('sophisticated', 1), ('graphical', 1), ('interface', 1), ('easy', 1), ('command', 1), ('develop', 1), ('change', 1), ('script', 1), ('quickly', 1), ('conveniently', 1), ('tie', 1), ('together', 1), ('existing', 1), ('utility', 1), ('programming', 1), ('library', 1), ('pocket', 1), ('handy', 1), ('guide', 1), ('basic', 1), ('language', 1), ('element', 1)]
[('rest', 2), ('apis', 2), ('popularity', 1), ('recent', 1), ('year', 1), ('led', 1), ('tremendous', 1), ('growth', 1), ('almost', 1), ('restful', 1), ('include', 1), ('many', 1), ('architecture', 1), ('benefit', 1), ('practical', 1), ('guide', 1), ('learn', 1), ('take', 1), ('design', 1), ('usable', 1), ('evolve', 1), ('time', 1), ('focusing', 1), ('solution', 1), ('cross', 1), ('variety', 1), ('domain', 1), ('book', 1), ('show', 1), ('create', 1)]
[('startup', 2), ('book', 1), ('hello', 1), ('world', 1), ('tutorial', 1), ('building', 1), ('product', 1), ('technology', 1), ('team', 1), ('environment', 1), ('based', 1), ('experience', 1), ('author', 1), ('yevgeniy', 1), ('jim', 1), ('brikman', 1), ('interview', 1), ('programmer', 1), ('successful', 1), ('last', 1), ('decade', 1), ('including', 1), ('google', 1), ('facebook', 1), ('linkedin', 1), ('twitter', 1), ('github', 1), ('stripe', 1)]
[('digital', 2), ('product', 2), ('design', 2), ('sprint', 2), ('new', 1), ('apps', 1), ('entering', 1), ('market', 1), ('every', 1), ('day', 1), ('take', 1), ('build', 1), ('successful', 1), ('greatly', 1), ('reduce', 1), ('risk', 1), ('failure', 1), ('process', 1), ('enables', 1), ('team', 1), ('prototype', 1), ('test', 1), ('idea', 1), ('within', 1), ('week', 1), ('practical', 1), ('guide', 1), ('show', 1), ('exactly', 1), ('involves', 1)]
[('client', 3), ('hypermedia', 2), ('powerful', 1), ('web', 1), ('based', 1), ('rest', 1), ('style', 1), ('apis', 1), ('becoming', 1), ('common', 1), ('every', 1), ('day', 1), ('instead', 1), ('applying', 1), ('technique', 1), ('pattern', 1), ('many', 1), ('developer', 1), ('rely', 1), ('custom', 1), ('code', 1), ('practical', 1), ('guide', 1), ('learn', 1), ('move', 1), ('implementation', 1), ('general', 1), ('purpose', 1), ('apps', 1), ('stable', 1)]
[('game', 3), ('unity', 2), ('engine', 2), ('discover', 1), ('use', 1), ('full', 1), ('potential', 1), ('development', 1), ('basic', 1), ('scripting', 1), ('useful', 1), ('trick', 1), ('gameplay', 1), ('behavior', 1), ('animation', 1), ('problem', 1), ('solving', 1), ('cookbook', 1), ('started', 1), ('way', 1), ('first', 1), ('learn', 1), ('brief', 1), ('recipe', 1), ('teach', 1), ('specific', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('data', 3), ('science', 2), ('concise', 1), ('introduction', 1), ('emerging', 1), ('field', 1), ('explaining', 1), ('evolution', 1), ('relation', 1), ('machine', 1), ('learning', 1), ('current', 1), ('us', 1), ('infrastructure', 1), ('issue', 1), ('ethical', 1), ('challenge', 1), ('goal', 1), ('improve', 1), ('decision', 1), ('making', 1)]
[('game', 3), ('computer', 2), ('python', 2), ('invent', 1), ('teach', 1), ('make', 1), ('using', 1), ('popular', 1), ('programming', 1), ('language', 1), ('even', 1), ('never', 1), ('programmed', 1), ('begin', 1), ('building', 1), ('classic', 1), ('hangman', 1), ('guess', 1), ('number', 1)]
[('edition', 2), ('mrexcel', 2), ('reader', 2), ('problem', 2), ('updating', 1), ('previous', 1), ('tip', 1), ('include', 1), ('feature', 1), ('office', 1), ('excel', 1), ('new', 1), ('popular', 1), ('software', 1), ('guide', 1), ('even', 1), ('incorporates', 1), ('suggestion', 1), ('sent', 1), ('featured', 1), ('topic', 1), ('statement', 1), ('description', 1), ('followed', 1), ('broad', 1), ('strategy', 1), ('solving', 1), ('walk', 1)]
[('development', 2), ('software', 2), ('program', 1), ('neglected', 1), ('test', 1), ('driven', 1), ('tdd', 1), ('modern', 1), ('practice', 1), ('dramatically', 1), ('reduce', 1), ('number', 1), ('defect', 1), ('system', 1), ('produce', 1), ('maintainable', 1), ('code', 1), ('give', 1), ('confidence', 1), ('change', 1), ('meet', 1), ('changing', 1), ('need', 1), ('programmer', 1), ('ignored', 1), ('promoting', 1)]
[('photon', 3), ('wifi', 2), ('open', 1), ('source', 1), ('inexpensive', 1), ('programmable', 1), ('enabled', 1), ('module', 1), ('building', 1), ('connected', 1), ('project', 1), ('prototype', 1), ('powered', 1), ('arm', 1), ('cortex', 1), ('microcontroller', 1), ('broadcom', 1), ('chip', 1), ('happy', 1), ('plugged', 1), ('hobbyist', 1), ('breadboard', 1), ('product', 1), ('rolling', 1), ('assembly', 1), ('line', 1)]
[('arduino', 2), ('electrical', 2), ('engineering', 2), ('step', 2), ('bestselling', 1), ('beginner', 1), ('guide', 1), ('updated', 1), ('new', 1), ('project', 1), ('exploring', 1), ('make', 1), ('embedded', 1), ('software', 1), ('accessible', 1), ('learn', 1), ('everything', 1), ('need', 1), ('know', 1), ('programming', 1)]
[('certification', 3), ('book', 1), ('leading', 1), ('hr', 1), ('aligned', 1), ('updated', 1), ('hrbok', 1), ('phr', 1), ('sphr', 1), ('offered', 1), ('human', 1), ('resource', 1), ('institute', 1), ('hrci', 1), ('become', 1), ('industry', 1), ('standard', 1)]
[('deep', 4), ('learning', 3), ('take', 1), ('dive', 1), ('provides', 1), ('mean', 1), ('discerning', 1), ('pattern', 1), ('data', 1), ('drive', 1), ('online', 1), ('business', 1), ('social', 1), ('medium', 1), ('outlet', 1)]
[('start', 2), ('make', 1), ('world', 1), ('reality', 1), ('dramatic', 1), ('visual', 1), ('effect', 1), ('seen', 1), ('top', 1), ('grossing', 1), ('movie', 1), ('heralded', 1), ('television', 1), ('series', 1), ('blender', 1), ('book', 1), ('help', 1)]
[('data', 3), ('modeling', 2), ('third', 1), ('volume', 1), ('best', 1), ('selling', 1), ('model', 1), ('resource', 1), ('book', 1), ('series', 1), ('revolutionizes', 1), ('discipline', 1), ('answering', 1), ('question', 1), ('save', 1), ('significant', 1), ('time', 1), ('improving', 1), ('quality', 1), ('type', 1), ('effort', 1)]
[('learn', 1), ('streamlined', 1), ('management', 1), ('maintenance', 1), ('capability', 1), ('microsoft', 1), ('business', 1), ('want', 1), ('make', 1), ('easy', 1), ('team', 1), ('work', 1), ('together', 1), ('using', 1), ('latest', 1), ('productivity', 1), ('solution', 1), ('built', 1)]
[('openshift', 2), ('depth', 1), ('tour', 1), ('container', 1), ('based', 1), ('software', 1), ('deployment', 1), ('management', 1), ('platform', 1), ('red', 1), ('hat', 1), ('provides', 1), ('secure', 1), ('multi', 1), ('tenant', 1), ('environment', 1), ('enterprise', 1), ('practical', 1), ('guide', 1), ('describes', 1), ('detail', 1), ('building', 1), ('kubernetes', 1), ('enables', 1), ('automate', 1), ('way', 1), ('create', 1), ('ship', 1), ('run', 1), ('application', 1)]
[('deploying', 2), ('machine', 2), ('learning', 2), ('process', 2), ('data', 2), ('building', 1), ('model', 1), ('small', 1), ('part', 1), ('story', 1), ('come', 1), ('application', 1), ('entire', 1), ('involves', 1), ('developing', 1), ('orchestrating', 1), ('running', 1), ('scalable', 1), ('portable', 1), ('workload', 1), ('kubeflow', 1), ('make', 1), ('easier', 1), ('practical', 1), ('book', 1), ('show', 1), ('scientist', 1), ('engineer', 1), ('platform', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('agile', 4), ('requirement', 3), ('effective', 2), ('discovery', 1), ('analysis', 1), ('critical', 1), ('best', 1), ('practice', 1), ('serious', 1), ('application', 1), ('development', 1), ('method', 1), ('rarely', 1), ('coexisted', 1), ('peacefully', 1), ('many', 1), ('enterprise', 1), ('considering', 1), ('approach', 1), ('absence', 1), ('scalable', 1), ('process', 1), ('showstopper', 1)]
[('kernel', 3), ('linux', 2), ('development', 1), ('detail', 1), ('design', 1), ('implementation', 1), ('presenting', 1), ('content', 1), ('manner', 1), ('beneficial', 1), ('writing', 1), ('developing', 1), ('code', 1), ('programmer', 1), ('seeking', 1), ('better', 1), ('understand', 1)]
[('web', 4), ('squid', 2), ('caching', 2), ('load', 2), ('popular', 1), ('software', 1), ('use', 1), ('today', 1), ('work', 1), ('variety', 1), ('platform', 1), ('including', 1), ('linux', 1), ('freebsd', 1), ('window', 1), ('improves', 1), ('network', 1), ('performance', 1), ('reducing', 1), ('amount', 1), ('bandwidth', 1), ('used', 1), ('surfing', 1), ('make', 1), ('page', 1), ('faster', 1), ('even', 1), ('reduce', 1), ('server', 1), ('reusing', 1)]
[('emacs', 6), ('gnu', 4), ('editor', 2), ('popular', 1), ('widespread', 1), ('family', 1), ('powerful', 1), ('flexible', 1), ('unlike', 1), ('text', 1), ('complete', 1), ('working', 1), ('environment', 1), ('stay', 1), ('within', 1), ('day', 1), ('without', 1), ('leaving', 1), ('pocket', 1), ('reference', 1), ('companion', 1), ('volume', 1), ('reilly', 1), ('learning', 1)]
[('excel', 4), ('feature', 3), ('program', 1), ('solving', 1), ('complex', 1), ('calculation', 1), ('presenting', 1), ('result', 1), ('amazingly', 1), ('complete', 1), ('every', 1), ('imaginable', 1), ('already', 1), ('place', 1), ('programming', 1), ('adding', 1), ('new', 1), ('combining', 1), ('existing', 1), ('solve', 1), ('particular', 1), ('problem', 1), ('modification', 1), ('transform', 1)]
[('network', 3), ('cisco', 2), ('router', 2), ('everywhere', 1), ('come', 1), ('size', 1), ('inexpensive', 1), ('unit', 1), ('home', 1), ('small', 1), ('office', 1), ('equipment', 1), ('costing', 1), ('capable', 1), ('routing', 1), ('gigabit', 1), ('speed', 1), ('fixture', 1), ('today', 1), ('claim', 1), ('roughly', 1), ('market', 1), ('producing', 1), ('high', 1), ('end', 1), ('switch', 1), ('hub', 1), ('hardware', 1)]
[('xml', 2), ('document', 2), ('extensible', 1), ('markup', 1), ('language', 1), ('everywhere', 1), ('syntax', 1), ('choice', 1), ('newly', 1), ('designed', 1), ('format', 1), ('across', 1), ('almost', 1), ('computer', 1), ('application', 1), ('used', 1), ('daily', 1), ('developer', 1), ('living', 1), ('reputation', 1), ('important', 1), ('development', 1), ('interchange', 1), ('history', 1), ('computing', 1), ('perennial', 1), ('bestseller', 1), ('handy', 1)]
[('learn', 1), ('code', 1), ('package', 1), ('deploy', 1), ('test', 1), ('functional', 1), ('enterprise', 1), ('javabeans', 1), ('latest', 1), ('edition', 1), ('bestselling', 1), ('guide', 1), ('written', 1), ('developer', 1), ('jboss', 1), ('ejb', 1), ('book', 1), ('brings', 1), ('speed', 1), ('component', 1), ('type', 1), ('container', 1), ('service', 1), ('implementation', 1), ('provides', 1), ('workbook', 1), ('several', 1), ('hand', 1), ('example', 1)]
[('edition', 2), ('section', 2), ('user', 2), ('book', 1), ('show', 1), ('use', 1), ('unix', 1), ('utility', 1), ('lex', 1), ('yacc', 1), ('program', 1), ('development', 1), ('tool', 1), ('help', 1), ('programmer', 1), ('build', 1), ('compiler', 1), ('interpreter', 1), ('wider', 1), ('range', 1), ('application', 1), ('second', 1), ('contains', 1), ('completely', 1), ('revised', 1), ('tutorial', 1), ('novice', 1), ('reference', 1), ('advanced', 1)]
[('directory', 2), ('edition', 2), ('step', 2), ('common', 2), ('take', 1), ('guesswork', 1), ('deploying', 1), ('administering', 1), ('automating', 1), ('active', 1), ('hundred', 1), ('proven', 1), ('recipe', 1), ('updated', 1), ('popular', 1), ('cookbook', 1), ('provides', 1), ('quick', 1), ('solution', 1), ('problem', 1), ('might', 1), ('encounter', 1), ('working', 1), ('microsoft', 1), ('network', 1), ('service', 1), ('fourth', 1), ('includes', 1)]
[('ethernet', 2), ('network', 2), ('speed', 1), ('latest', 1), ('capability', 1), ('building', 1), ('maintaining', 1), ('everything', 1), ('home', 1), ('office', 1), ('data', 1), ('center', 1), ('server', 1), ('machine', 1), ('room', 1), ('thoroughly', 1), ('revised', 1), ('comprehensive', 1), ('guide', 1), ('cover', 1), ('wide', 1), ('range', 1), ('technology', 1), ('basic', 1), ('operation', 1), ('management', 1), ('based', 1), ('author', 1), ('many', 1), ('year', 1), ('field', 1)]
[('html', 2), ('web', 2), ('step', 2), ('markup', 1), ('language', 1), ('collection', 1), ('several', 1), ('independent', 1), ('standard', 1), ('fortunately', 1), ('expanded', 1), ('guide', 1), ('cover', 1), ('everything', 1), ('need', 1), ('convenient', 1), ('place', 1), ('tutorial', 1), ('real', 1), ('world', 1), ('example', 1), ('missing', 1), ('manual', 1), ('show', 1), ('build', 1), ('apps', 1), ('include', 1), ('video', 1), ('tool', 1), ('dynamic', 1), ('graphic', 1), ('geolocation', 1)]
[('svg', 4), ('graphic', 3), ('image', 2), ('vector', 1), ('format', 1), ('us', 1), ('precisely', 1), ('defined', 1), ('geometric', 1), ('shape', 1), ('build', 1), ('mean', 1), ('look', 1), ('technical', 1), ('drawing', 1), ('shaded', 1), ('textured', 1), ('built', 1), ('partially', 1), ('transparent', 1), ('overlapping', 1), ('layer', 1), ('even', 1), ('filled', 1), ('photographic', 1), ('color', 1), ('pattern', 1), ('gradient', 1), ('take', 1)]
[('process', 2), ('poor', 1), ('software', 1), ('quality', 1), ('continue', 1), ('plague', 1), ('enterprise', 1), ('size', 1), ('industry', 1), ('part', 1), ('problem', 1), ('lie', 1), ('rather', 1), ('individual', 1), ('developer', 1), ('practical', 1), ('guide', 1), ('provides', 1), ('ten', 1), ('best', 1), ('practice', 1), ('help', 1), ('team', 1), ('leader', 1), ('create', 1), ('effective', 1), ('working', 1), ('environment', 1), ('key', 1), ('adjustment', 1), ('follow', 1)]
[('parallel', 3), ('computer', 2), ('scientific', 1), ('computation', 1), ('present', 1), ('methodology', 1), ('designing', 1), ('algorithm', 1), ('writing', 1), ('program', 1), ('modern', 1), ('architecture', 1), ('multiple', 1), ('processor', 1)]
[('guide', 2), ('excel', 2), ('scientist', 2), ('engineer', 2), ('liengme', 1), ('completely', 1), ('updated', 1), ('student', 1), ('want', 1), ('use', 1), ('microsoft', 1), ('full', 1), ('potential', 1), ('whether', 1), ('using', 1), ('pc', 1), ('mac', 1), ('electronic', 1), ('spreadsheet', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('itil', 3), ('book', 2), ('framework', 2), ('devops', 2), ('use', 1), ('guide', 1), ('fully', 1), ('updated', 1), ('second', 1), ('edition', 1), ('study', 1), ('foundation', 1), ('certification', 1), ('exam', 1), ('know', 1), ('latest', 1), ('concept', 1), ('take', 1), ('new', 1), ('nuance', 1)]
[('quantum', 3), ('accessible', 1), ('introduction', 1), ('exciting', 1), ('new', 1), ('area', 1), ('computation', 1), ('explaining', 1), ('topic', 1), ('qubits', 1), ('entanglement', 1), ('teleportation', 1), ('general', 1), ('reader', 1), ('computing', 1), ('beautiful', 1), ('fusion', 1), ('physic', 1), ('computer', 1), ('science', 1)]
[('comprehensive', 2), ('survey', 2), ('artificial', 2), ('intelligence', 2), ('algorithm', 1), ('programming', 1), ('organization', 1), ('robot', 1), ('system', 1), ('combining', 1), ('theoretical', 1), ('rigor', 1), ('practical', 1), ('application', 1), ('textbook', 1), ('offer', 1), ('ai', 1)]
[('make', 2), ('cybercrime', 1), ('rise', 1), ('sure', 1), ('company', 1), ('next', 1), ('grim', 1), ('headline', 1)]
[('source', 3), ('pattern', 3), ('reader', 2), ('learn', 1), ('build', 1), ('configuration', 1), ('file', 1), ('data', 1), ('model', 1), ('driven', 1), ('code', 1), ('generator', 1), ('translator', 1), ('analyzer', 1), ('interpreter', 1), ('need', 1), ('background', 1), ('computer', 1), ('science', 1), ('antlr', 1), ('creator', 1), ('terence', 1), ('parr', 1), ('demystifies', 1), ('language', 1), ('implementation', 1), ('breaking', 1), ('common', 1), ('design', 1)]
[('core', 4), ('data', 4), ('powerful', 2), ('io', 2), ('o', 2), ('example', 2), ('intricate', 1), ('necessary', 1), ('discover', 1), ('capability', 1), ('integrated', 1), ('use', 1), ('project', 1), ('current', 1), ('el', 1), ('capitan', 1), ('latest', 1), ('release', 1), ('code', 1), ('written', 1), ('swift', 1), ('including', 1), ('numerous', 1), ('best', 1), ('integrate', 1)]
[('sharp', 3), ('need', 2), ('programmer', 2), ('practice', 2), ('write', 1), ('software', 1), ('top', 1), ('game', 1), ('keep', 1), ('skill', 1), ('stay', 1), ('fifty', 1), ('exercise', 1), ('rooted', 1), ('real', 1), ('world', 1), ('scenario', 1), ('new', 1), ('challenge', 1), ('help', 1), ('learn', 1), ('break', 1), ('field', 1), ('seasoned', 1)]
[('de', 8), ('la', 5), ('seguridad', 2), ('información', 2), ('se', 2), ('esta', 1), ('guía', 1), ('bolsillo', 1), ('indispensable', 1), ('da', 1), ('una', 1), ('visión', 1), ('conjunto', 1), ('útil', 1), ('sobre', 1), ('do', 1), ('norma', 1), ('importantes', 1), ('llena', 1), ('consejos', 1), ('prácticos', 1), ('para', 1), ('implementar', 1), ('un', 1), ('sistema', 1), ('gestión', 1), ('preguntará', 1), ('como', 1), ('arregló', 1), ('sin', 1), ('ella', 1), ('consiga', 1), ('su', 1), ('copia', 1), ('hoy', 1)]
[('sa', 4), ('book', 3), ('little', 2), ('sixth', 2), ('edition', 2), ('hone', 1), ('skill', 1), ('exercise', 1), ('project', 1), ('best', 1), ('selling', 1), ('keep', 1), ('getting', 1), ('better', 1), ('reader', 1), ('worldwide', 1), ('study', 1), ('easy', 1), ('follow', 1), ('help', 1), ('learn', 1), ('basic', 1), ('programming', 1), ('rebecca', 1), ('ottesen', 1), ('teamed', 1), ('author', 1)]
[('learning', 2), ('accessible', 1), ('undergraduate', 1), ('introduction', 1), ('concept', 1), ('method', 1), ('pattern', 1), ('recognition', 1), ('machine', 1), ('deep', 1)]
[('online', 1), ('interaction', 1), ('create', 1), ('new', 1), ('form', 1), ('community', 1), ('knowledge', 1), ('reshaping', 1), ('individual', 1), ('society', 1)]
[('probabilistic', 1), ('program', 1), ('explained', 1), ('verified', 1), ('applied', 1)]
[('practical', 1), ('rigorous', 1), ('guide', 1), ('compressive', 1), ('imaging', 1), ('revolution', 1), ('fundamentally', 1), ('changed', 1), ('modern', 1), ('image', 1), ('reconstruction', 1)]
[('present', 1), ('carefully', 1), ('selected', 1), ('supervised', 1), ('unsupervised', 1), ('learning', 1), ('method', 1), ('basic', 1), ('state', 1), ('art', 1), ('coherent', 1), ('statistical', 1), ('framework', 1)]
[('worked', 1), ('problem', 1), ('offer', 1), ('interesting', 1), ('way', 1), ('learn', 1), ('practice', 1), ('key', 1), ('concept', 1), ('string', 1), ('algorithm', 1), ('combinatorics', 1), ('word', 1)]
[('comprehensive', 1), ('introduction', 1), ('bayesian', 1), ('optimization', 1), ('start', 1), ('scratch', 1), ('carefully', 1), ('develops', 1), ('key', 1), ('idea', 1), ('along', 1), ('way', 1)]
[('ready', 1), ('need', 1), ('know', 1), ('complete', 1), ('mastery', 1), ('comprehensive', 1), ('updated', 1), ('guide', 1), ('world', 1), ('popular', 1), ('programming', 1), ('language', 1), ('whether', 1), ('novice', 1)]
[('cool', 2), ('save', 1), ('expensive', 1), ('professional', 1), ('trusted', 1), ('bestseller', 1), ('running', 1), ('business', 1), ('pretty', 1), ('come', 1), ('financial', 1), ('side', 1), ('account', 1), ('payroll', 1), ('instance', 1)]
[('search', 3), ('engine', 2), ('website', 2), ('relevance', 1), ('score', 1), ('improve', 1), ('page', 1), ('speed', 1), ('optimize', 1), ('voice', 1), ('question', 1), ('optimization', 1), ('dummy', 1), ('show', 1), ('owner', 1), ('developer', 1), ('optimizers', 1), ('seos', 1), ('create', 1), ('rank', 1), ('top', 1)]
[('way', 3), ('android', 2), ('quickest', 1), ('easiest', 1), ('outsmart', 1), ('smartphone', 1), ('smartphones', 1), ('samsung', 1), ('galaxy', 1), ('google', 1), ('pixel', 1), ('model', 1), ('offer', 1), ('simplify', 1), ('enhance', 1), ('life', 1), ('easy', 1), ('stay', 1), ('touch', 1), ('friend', 1)]
[('machine', 2), ('learning', 2), ('mark', 1), ('cuban', 1), ('top', 1), ('read', 1), ('better', 1), ('understanding', 1), ('inc', 1), ('comprehensive', 1), ('entry', 1), ('level', 1), ('guide', 1), ('expertise', 1), ('quite', 1), ('mean', 1), ('create', 1)]
[('certification', 2), ('fully', 1), ('updated', 1), ('cover', 1), ('exam', 1), ('release', 1), ('comptia', 1), ('essential', 1), ('building', 1), ('successful', 1), ('career', 1), ('test', 1), ('taker', 1), ('pas', 1), ('question', 1)]
[('excel', 2), ('step', 2), ('find', 1), ('capable', 1), ('guide', 1), ('vba', 1), ('short', 1), ('changing', 1), ('tire', 1), ('car', 1), ('microsoft', 1), ('pretty', 1), ('anything', 1), ('possibility', 1), ('even', 1), ('endless', 1), ('learn', 1)]
[('linkedin', 2), ('know', 2), ('brand', 1), ('pro', 1), ('multiplies', 1), ('power', 1), ('deliver', 1), ('number', 1), ('social', 1), ('platform', 1), ('business', 1), ('professional', 1), ('new', 1), ('job', 1)]
[('networking', 3), ('ultimate', 1), ('stop', 1), ('reference', 1), ('designed', 1), ('replace', 1), ('groaning', 1), ('shelf', 1), ('load', 1), ('dull', 1), ('book', 1), ('buy', 1), ('house', 1)]
[('microsoft', 2), ('azure', 2), ('become', 1), ('proficient', 1), ('solution', 1), ('architect', 1), ('certification', 1), ('critical', 1), ('million', 1), ('professional', 1), ('certified', 1), ('mcse', 1), ('mcsa', 1), ('window', 1), ('server', 1), ('last', 1)]
[('pentest', 2), ('exam', 2), ('prepare', 1), ('success', 1), ('new', 1), ('certification', 1), ('exciting', 1), ('career', 1), ('penetration', 1), ('testing', 1), ('revamped', 1), ('second', 1), ('edition', 1), ('comptia', 1), ('study', 1), ('guide', 1)]
[('ccsp', 2), ('cloud', 2), ('security', 2), ('official', 1), ('body', 1), ('knowledge', 1), ('popular', 1), ('credential', 1), ('fully', 1), ('revised', 1), ('updated', 1), ('certified', 1), ('professional', 1), ('certification', 1), ('validates', 1), ('advanced', 1), ('technical', 1)]
[('ccsp', 2), ('practice', 2), ('isc', 2), ('official', 1), ('test', 1), ('product', 1), ('endorsed', 1), ('question', 1), ('new', 1), ('exam', 1), ('objective', 1)]
[('sscp', 2), ('isc', 2), ('security', 2), ('certification', 2), ('study', 1), ('guide', 1), ('officially', 1), ('approved', 1), ('system', 1), ('certified', 1), ('practitioner', 1), ('known', 1), ('vendor', 1), ('neutral', 1), ('global', 1)]
[('cloud', 3), ('google', 2), ('associate', 2), ('engineer', 2), ('quickly', 1), ('efficiently', 1), ('prepare', 1), ('certification', 1), ('proven', 1), ('sybex', 1), ('method', 1), ('newly', 1), ('updated', 1), ('second', 1), ('edition', 1), ('certified', 1)]
[('google', 2), ('certified', 2), ('professional', 2), ('cloud', 2), ('indispensable', 1), ('guide', 1), ('newest', 1), ('version', 1), ('architect', 1), ('certification', 1), ('newly', 1), ('revised', 1), ('second', 1), ('edition', 1)]
[('javascript', 2), ('newest', 1), ('feature', 1), ('depth', 1), ('made', 1), ('easy', 1), ('understand', 1), ('rapidly', 1), ('changing', 1), ('language', 1), ('challenging', 1), ('keep', 1), ('new', 1), ('toy', 1), ('added', 1)]
[('sharpen', 1), ('information', 1), ('security', 1), ('skill', 1), ('grab', 1), ('invaluable', 1), ('new', 1), ('credential', 1), ('unbeatable', 1), ('study', 1), ('guide', 1), ('cybersecurity', 1), ('becomes', 1), ('increasingly', 1), ('mission', 1), ('critical', 1), ('issue', 1), ('employer', 1), ('professional', 1), ('turning', 1), ('isaca', 1)]
[('test', 2), ('cysa', 2), ('cybersecurity', 2), ('analyst', 2), ('certification', 2), ('exam', 2), ('comptia', 2), ('practice', 2), ('real', 1), ('first', 1), ('prepare', 1), ('pas', 1), ('c', 1), ('obtain', 1), ('latest', 1), ('security', 1), ('credential', 1), ('using', 1), ('question', 1), ('contained', 1), ('guide', 1), ('offer', 1), ('coverage', 1), ('objective', 1)]
[('study', 2), ('guide', 2), ('comptia', 2), ('security', 2), ('exam', 2), ('quick', 1), ('review', 1), ('cram', 1), ('style', 1), ('offer', 1), ('coverage', 1), ('every', 1), ('topic', 1), ('latest', 1), ('version', 1), ('fast', 1), ('track', 1), ('becoming', 1), ('certified', 1), ('affordable', 1), ('portable', 1), ('tool', 1), ('inside', 1), ('cybersecurity', 1), ('expert', 1), ('preparation', 1), ('path', 1), ('providing', 1), ('insightful', 1), ('tip', 1), ('sound', 1)]
[('epub', 2), ('step', 2), ('create', 1), ('perfectly', 1), ('formatted', 1), ('book', 1), ('ground', 1), ('show', 1), ('develop', 1), ('state', 1), ('art', 1), ('electronic', 1), ('publication', 1), ('widely', 1), ('used', 1), ('standard', 1), ('industry', 1), ('practical', 1), ('guide', 1), ('walk', 1), ('basic', 1), ('html', 1), ('xhtml', 1), ('xml', 1), ('cs', 1), ('javascript', 1), ('prior', 1), ('experience', 1), ('markup', 1), ('language', 1)]
[('publisher', 2), ('product', 2), ('test', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('real', 1), ('first', 1), ('take', 1), ('current', 1), ('version', 1), ('challenging', 1), ('cism', 1), ('exam', 1), ('complete', 1), ('confidence', 1), ('using', 1), ('relevant', 1)]
[('practice', 3), ('question', 3), ('exam', 3), ('date', 1), ('study', 1), ('aid', 1), ('contains', 1), ('hundred', 1), ('accurate', 1), ('detailed', 1), ('answer', 1), ('explanation', 1), ('comptia', 1), ('security', 1), ('certification', 1), ('fourth', 1), ('edition', 1), ('sy', 1), ('filled', 1), ('realistic', 1), ('including', 1), ('new', 1), ('performance', 1), ('based', 1), ('prepare', 1), ('challenging', 1), ('help', 1)]
[('aws', 3), ('effective', 2), ('study', 2), ('guide', 2), ('offer', 2), ('coverage', 2), ('certified', 2), ('cloud', 2), ('practitioner', 2), ('exam', 2), ('every', 1), ('objective', 1), ('take', 1), ('challenging', 1), ('confidence', 1), ('using', 1), ('detailed', 1), ('information', 1), ('contained', 1), ('self', 1), ('written', 1), ('recognized', 1), ('expert', 1), ('book', 1), ('percent', 1)]
[('exam', 3), ('cisco', 3), ('version', 2), ('cct', 2), ('ccna', 2), ('certified', 2), ('new', 1), ('guide', 1), ('cover', 1), ('every', 1), ('topic', 1), ('current', 1), ('take', 1), ('technician', 1), ('network', 1), ('associate', 1), ('complete', 1), ('confidence', 1), ('using', 1), ('detailed', 1), ('information', 1), ('contained', 1), ('highly', 1), ('effective', 1), ('self', 1), ('study', 1), ('system', 1), ('written', 1), ('pair', 1)]
[('certified', 3), ('effective', 2), ('aws', 2), ('developer', 2), ('associate', 2), ('exam', 2), ('self', 1), ('study', 1), ('system', 1), ('delivers', 1), ('complete', 1), ('coverage', 1), ('every', 1), ('topic', 1), ('take', 1), ('challenging', 1), ('confidence', 1), ('using', 1), ('comprehensive', 1), ('information', 1), ('contained', 1), ('test', 1), ('preparation', 1), ('guide', 1), ('written', 1), ('amazon', 1), ('web', 1), ('service', 1), ('expert', 1)]
[('perforce', 3), ('software', 2), ('scm', 2), ('product', 2), ('developer', 1), ('build', 1), ('able', 1), ('keep', 1), ('track', 1), ('different', 1), ('version', 1), ('component', 1), ('use', 1), ('configuration', 1), ('management', 1), ('system', 1), ('popular', 1), ('authored', 1), ('vp', 1), ('technology', 1), ('practical', 1), ('ideal', 1), ('complement', 1), ('existing', 1)]
[('pattern', 4), ('python', 3), ('code', 2), ('design', 2), ('developer', 2), ('improve', 1), ('student', 1), ('modern', 1), ('object', 1), ('oriented', 1), ('write', 1), ('clean', 1), ('efficient', 1), ('maintainable', 1), ('everywhere', 1), ('turn', 1), ('specific', 1), ('guide', 1), ('friendly', 1), ('practical', 1), ('enough', 1), ('every', 1), ('regardless', 1), ('experience', 1), ('best', 1), ('selling', 1), ('author', 1), ('james', 1)]
[('office', 2), ('expert', 2), ('shortcut', 2), ('new', 2), ('renowned', 1), ('joe', 1), ('habraken', 1), ('offer', 1), ('complete', 1), ('tour', 1), ('cutting', 1), ('edge', 1), ('technique', 1), ('word', 1), ('excel', 1), ('powerpoint', 1), ('outlook', 1), ('onenote', 1), ('team', 1), ('discover', 1), ('tackle', 1), ('today', 1), ('key', 1), ('task', 1), ('gain', 1), ('level', 1), ('mastery', 1), ('create', 1), ('amazing', 1), ('content', 1), ('faster', 1), ('feature', 1), ('tool', 1), ('share', 1), ('collaborate', 1)]
[('roblox', 3), ('every', 2), ('hundred', 2), ('million', 2), ('fast', 2), ('developer', 2), ('month', 1), ('around', 1), ('world', 1), ('spending', 1), ('billion', 1), ('hour', 1), ('growing', 1), ('community', 1), ('already', 1), ('earned', 1), ('dollar', 1), ('creation', 1), ('burgeoning', 1), ('game', 1), ('looking', 1), ('take', 1), ('skill', 1), ('next', 1), ('level', 1), ('look', 1)]
[('standard', 2), ('speed', 2), ('gain', 1), ('deep', 1), ('practical', 1), ('understanding', 1), ('technology', 1), ('application', 1), ('architecture', 1), ('ecosystem', 1), ('ultra', 1), ('high', 1), ('wireless', 1), ('communication', 1), ('major', 1), ('technological', 1), ('leap', 1), ('forward', 1), ('substantially', 1), ('increasing', 1)]
[('window', 2), ('architecture', 2), ('drill', 1), ('internals', 1), ('discover', 1), ('core', 1), ('component', 1), ('work', 1), ('behind', 1), ('scene', 1), ('master', 1), ('information', 1), ('continually', 1), ('apply', 1), ('improve', 1), ('development', 1), ('system', 1), ('administration', 1), ('support', 1), ('led', 1)]
[('ebook', 2), ('edition', 2), ('access', 2), ('cisco', 1), ('software', 1), ('defined', 1), ('wide', 1), ('area', 1), ('network', 1), ('include', 1), ('companion', 1), ('website', 1), ('practice', 1), ('exam', 1), ('come', 1), ('print', 1), ('video', 1), ('mentoring', 1), ('available', 1), ('product', 1)]
[('programmer', 2), ('professional', 1), ('deitel', 1), ('nbsp', 1), ('guide', 1), ('written', 1), ('background', 1), ('another', 1), ('high', 1), ('level', 1), ('language', 1), ('book', 1), ('learn', 1), ('modern', 1), ('development', 1), ('hand', 1), ('using', 1), ('big', 1), ('four', 1), ('feature', 1), ('range', 1)]
[('adobe', 2), ('illustrator', 2), ('build', 1), ('valuable', 1), ('graphic', 1), ('art', 1), ('skill', 1), ('create', 1), ('digital', 1), ('artwork', 1), ('using', 1), ('classroom', 1), ('book', 1), ('release', 1), ('us', 1), ('real', 1), ('world', 1), ('project', 1), ('based', 1), ('learning', 1), ('cover', 1), ('basic', 1), ('beyond', 1), ('providing', 1), ('countless', 1), ('tip', 1)]
[('sql', 4), ('server', 3), ('administration', 2), ('conquer', 1), ('azure', 1), ('inside', 1), ('dive', 1), ('grow', 1), ('microsoft', 1), ('data', 1), ('platform', 1), ('skillset', 1), ('organized', 1), ('reference', 1), ('pack', 1), ('timesaving', 1), ('solution', 1), ('tip', 1)]
[('team', 3), ('agile', 2), ('distributed', 2), ('remote', 2), ('reimagining', 1), ('work', 1), ('inevitable', 1), ('conventional', 1), ('approach', 1), ('synchronous', 1), ('today', 1), ('meeting', 1), ('ceremony', 1), ('ritual', 1), ('become', 1), ('unsustainable', 1)]
[('blender', 3), ('edition', 2), ('fully', 1), ('updated', 1), ('lts', 1), ('long', 1), ('term', 1), ('support', 1), ('beyond', 1), ('learning', 1), ('rd', 1), ('walk', 1), ('every', 1), ('step', 1), ('creating', 1), ('outstanding', 1), ('animated', 1), ('character', 1), ('compositing', 1), ('real', 1), ('video', 1), ('using', 1), ('professional', 1), ('workflow', 1), ('cover', 1), ('extensive', 1), ('interface', 1), ('change', 1), ('software', 1)]
[('macos', 3), ('support', 3), ('book', 2), ('big', 2), ('sur', 2), ('step', 2), ('essential', 1), ('official', 1), ('top', 1), ('notch', 1), ('primer', 1), ('anyone', 1), ('need', 1), ('troubleshoot', 1), ('optimize', 1), ('apple', 1), ('pro', 1), ('training', 1), ('series', 1), ('cover', 1), ('student', 1), ('find', 1), ('depth', 1), ('instruction', 1), ('everything', 1), ('upgrading', 1), ('updating', 1), ('reinstalling', 1)]
[('project', 2), ('zero', 1), ('key', 1), ('initiation', 1), ('task', 1), ('build', 1), ('solid', 1), ('foundation', 1), ('successful', 1), ('software', 1), ('development', 1), ('concise', 1), ('guide', 1), ('critically', 1), ('acclaimed', 1), ('author', 1), ('karl', 1), ('wiegers', 1), ('fill', 1), ('void', 1), ('management', 1), ('literature', 1), ('focusing', 1)]
[('book', 2), ('ebook', 1), ('printed', 1), ('include', 1), ('medium', 1), ('website', 1), ('access', 1), ('code', 1), ('print', 1), ('supplement', 1), ('come', 1), ('packaged', 1), ('bound', 1), ('nbsp', 1), ('hour', 1), ('day', 1), ('skill', 1), ('need', 1), ('begin', 1), ('programming', 1)]
[('game', 2), ('design', 2), ('understand', 1), ('basic', 1), ('concept', 1), ('gameplay', 1), ('user', 1), ('interface', 1), ('core', 1), ('mechanic', 1), ('character', 1), ('storytelling', 1), ('want', 1), ('know', 1), ('apply', 1), ('strategy', 1), ('genre', 1), ('focused', 1), ('guide', 1), ('give', 1), ('exactly', 1), ('need', 1)]
[('comptia', 2), ('core', 2), ('exam', 2), ('practice', 2), ('question', 2), ('certification', 2), ('prepare', 1), ('success', 1), ('cram', 1), ('pearson', 1), ('leader', 1), ('nbsp', 1), ('ebook', 1), ('edition', 1)]
[('leader', 2), ('need', 2), ('organisational', 1), ('know', 1), ('agility', 1), ('paramount', 1), ('survival', 1), ('world', 1), ('unprecedented', 1), ('volatility', 1), ('uncertainty', 1), ('complexity', 1), ('ambiguity', 1), ('vuca', 1), ('thats', 1), ('many', 1), ('keep', 1), ('attempting', 1), ('agile', 1), ('transformation', 1), ('even', 1), ('previous', 1), ('initiative', 1), ('failed', 1), ('truth', 1), ('organisation', 1), ('new', 1), ('way', 1), ('thinking', 1)]
[('game', 1), ('designer', 1), ('spend', 1), ('life', 1), ('solving', 1), ('extraordinary', 1), ('problem', 1), ('facing', 1), ('mind', 1), ('bending', 1), ('paradox', 1), ('job', 1), ('make', 1), ('meticulous', 1), ('plan', 1), ('spontaneous', 1), ('fun', 1), ('player', 1), ('want', 1), ('experience', 1), ('pressure', 1), ('heaped', 1)]
[('computer', 2), ('graphic', 2), ('edition', 2), ('principle', 1), ('practice', 1), ('third', 1), ('remains', 1), ('authoritative', 1), ('introduction', 1), ('field', 1), ('first', 1), ('original', 1), ('foley', 1), ('van', 1), ('dam', 1), ('helped', 1), ('define', 1), ('taught', 1), ('second', 1)]
[('software', 3), ('updated', 2), ('new', 2), ('architecture', 2), ('definitive', 1), ('practical', 1), ('proven', 1), ('guide', 1), ('architecting', 1), ('modern', 1), ('fully', 1), ('content', 1), ('mobility', 1), ('cloud', 1), ('energy', 1), ('management', 1), ('devops', 1), ('quantum', 1), ('computing', 1), ('eleven', 1), ('chapter', 1), ('practice', 1), ('fourth', 1), ('edition', 1), ('thoroughly', 1), ('explains', 1), ('important', 1)]
[('template', 3), ('among', 1), ('powerful', 1), ('feature', 1), ('remain', 1), ('misunderstood', 1), ('underutilized', 1), ('even', 1), ('language', 1), ('development', 1), ('community', 1), ('advanced', 1), ('second', 1), ('edition', 1), ('three', 1), ('pioneering', 1), ('expert', 1), ('show', 1), ('use', 1), ('modern', 1), ('build', 1), ('software', 1), ('cleaner', 1), ('faster', 1), ('efficient', 1)]
[('xml', 4), ('text', 1), ('based', 1), ('markup', 1), ('language', 1), ('taken', 1), ('programming', 1), ('world', 1), ('storm', 1), ('powerful', 1), ('html', 1), ('yet', 1), ('le', 1), ('demanding', 1), ('sgml', 1), ('proven', 1), ('flexible', 1), ('resilient', 1), ('perfect', 1), ('tool', 1), ('formatting', 1), ('document', 1), ('even', 1), ('smallest', 1), ('bit', 1), ('complexity', 1), ('web', 1), ('page', 1), ('legal', 1), ('contract', 1), ('book', 1)]
[('tableau', 2), ('prep', 2), ('self', 1), ('service', 1), ('data', 1), ('preparation', 1), ('relatively', 1), ('easy', 1), ('use', 1), ('long', 1), ('know', 1), ('clean', 1), ('organize', 1), ('datasets', 1), ('carl', 1), ('allchin', 1), ('information', 1), ('lab', 1), ('london', 1), ('get', 1), ('speed', 1), ('series', 1), ('practical', 1), ('lesson', 1), ('include', 1), ('method', 1), ('preparing', 1), ('cleaning', 1), ('automating', 1), ('organizing', 1), ('outputting', 1)]
[('idea', 2), ('multiplayer', 2), ('game', 2), ('maybe', 2), ('next', 1), ('big', 1), ('virtual', 1), ('world', 1), ('based', 1), ('favorite', 1), ('sci', 1), ('fi', 1), ('television', 1), ('show', 1), ('online', 1), ('bowling', 1), ('league', 1), ('friend', 1), ('regardless', 1), ('challenge', 1), ('building', 1), ('networked', 1), ('computer', 1), ('go', 1), ('far', 1), ('beyond', 1), ('significant', 1)]
[('apache', 2), ('day', 2), ('new', 2), ('plenty', 1), ('documentation', 1), ('installing', 1), ('configuring', 1), ('web', 1), ('server', 1), ('find', 1), ('help', 1), ('stuff', 1), ('adding', 1), ('common', 1), ('module', 1), ('fine', 1), ('tuning', 1), ('activity', 1), ('logging', 1), ('easy', 1), ('edition', 1), ('cookbook', 1), ('offer', 1), ('updated', 1), ('solution', 1), ('problem', 1), ('likely', 1), ('encounter', 1)]
[('framework', 2), ('rdf', 2), ('structure', 2), ('describing', 2), ('resource', 1), ('description', 1), ('interchanging', 1), ('metadata', 1), ('web', 1), ('anything', 1), ('library', 1), ('catalog', 1), ('worldwide', 1), ('directory', 1), ('bioinformatics', 1), ('mozilla', 1), ('internal', 1), ('data', 1), ('knowledge', 1), ('base', 1), ('artificial', 1), ('intelligence', 1), ('project', 1), ('provides', 1), ('consistent', 1), ('syntax', 1)]
[('service', 3), ('network', 2), ('considered', 1), ('go', 1), ('study', 1), ('guide', 1), ('juniper', 1), ('enterprise', 1), ('routing', 1), ('certification', 1), ('exam', 1), ('book', 1), ('offer', 1), ('unparalleled', 1), ('coverage', 1), ('available', 1), ('juno', 1), ('administrator', 1), ('including', 1), ('recent', 1), ('set', 1), ('flow', 1), ('based', 1), ('security', 1), ('design', 1), ('guideline', 1), ('incorporate', 1), ('feature', 1), ('mx', 1), ('srx', 1), ('ex', 1)]
[('perl', 4), ('find', 2), ('reference', 2), ('programming', 1), ('question', 1), ('answer', 1), ('quickly', 1), ('handy', 1), ('easy', 1), ('use', 1), ('quick', 1), ('pocket', 1), ('condenses', 1), ('organizes', 1), ('stack', 1), ('documentation', 1), ('essential', 1), ('fact', 1), ('need', 1), ('heartbeat', 1), ('updated', 1), ('th', 1), ('edition', 1), ('provides', 1), ('summary', 1), ('syntax', 1)]
[('redis', 2), ('year', 1), ('initial', 1), ('release', 1), ('already', 1), ('impressive', 1), ('list', 1), ('adopter', 1), ('including', 1), ('engine', 1), ('yard', 1), ('github', 1), ('craigslist', 1), ('digg', 1), ('open', 1), ('source', 1), ('data', 1), ('structure', 1), ('server', 1), ('built', 1), ('speed', 1), ('flexibility', 1), ('making', 1), ('ideal', 1), ('many', 1), ('application', 1), ('using', 1), ('considering', 1), ('concise', 1), ('cookbook', 1), ('provides', 1), ('recipe', 1)]
[('wireless', 3), ('finally', 1), ('come', 1), ('age', 1), ('significant', 1), ('jump', 1), ('throughput', 1), ('previous', 1), ('standard', 1), ('first', 1), ('technology', 1), ('trade', 1), ('speed', 1), ('mobility', 1), ('user', 1), ('stormed', 1), ('onto', 1), ('network', 1), ('passion', 1), ('concise', 1), ('guide', 1), ('matthew', 1), ('gast', 1), ('chair', 1), ('iee', 1), ('group', 1), ('produced', 1), ('revision', 1), ('show', 1)]
[('principle', 2), ('part', 2), ('whole', 2), ('imagine', 1), ('set', 1), ('simple', 1), ('help', 1), ('understand', 1), ('combine', 1), ('become', 1), ('see', 1), ('perspective', 1), ('good', 1), ('matter', 1), ('whether', 1), ('talking', 1), ('human', 1), ('team', 1), ('bird', 1), ('flock', 1), ('computer', 1), ('datacenter', 1), ('cog', 1), ('swiss', 1), ('watch', 1), ('theory', 1)]
[('sound', 3), ('product', 2), ('profoundly', 1), ('impact', 1), ('interact', 1), ('designed', 1), ('exceptionally', 1), ('effective', 1), ('conveying', 1), ('subtle', 1), ('distinction', 1), ('emotion', 1), ('urgency', 1), ('information', 1), ('without', 1), ('adding', 1), ('visual', 1), ('clutter', 1), ('practical', 1), ('guide', 1), ('amber', 1), ('case', 1), ('aaron', 1), ('day', 1), ('explain', 1), ('design', 1), ('critical', 1), ('success', 1), ('environment', 1)]
[('cloud', 3), ('serverless', 2), ('application', 2), ('learn', 1), ('build', 1), ('real', 1), ('world', 1), ('reliable', 1), ('secure', 1), ('maintainable', 1), ('scalable', 1), ('experience', 1), ('building', 1), ('web', 1), ('traditional', 1), ('infrastructure', 1), ('hand', 1), ('guide', 1), ('show', 1), ('started', 1), ('run', 1), ('container', 1), ('based', 1), ('product', 1), ('google', 1), ('course', 1)]
[('healthcare', 3), ('ai', 2), ('poised', 1), ('transform', 1), ('every', 1), ('aspect', 1), ('including', 1), ('way', 1), ('manage', 1), ('personal', 1), ('health', 1), ('customer', 1), ('experience', 1), ('clinical', 1), ('care', 1), ('cost', 1), ('reduction', 1), ('practical', 1), ('book', 1), ('first', 1), ('describe', 1), ('present', 1), ('future', 1), ('use', 1), ('case', 1), ('help', 1), ('solve', 1), ('pernicious', 1), ('problem', 1), ('kerrie', 1), ('holley', 1), ('siupo', 1), ('becker', 1)]
[('data', 3), ('organization', 2), ('fantastic', 1), ('raw', 1), ('resource', 1), ('powering', 1), ('change', 1), ('often', 1), ('working', 1), ('necessary', 1), ('skill', 1), ('communicate', 1), ('effectively', 1), ('practical', 1), ('book', 1), ('subject', 1), ('matter', 1), ('expert', 1), ('learn', 1), ('way', 1), ('develop', 1), ('strong', 1), ('persuasive', 1), ('point', 1), ('presenting', 1), ('different', 1), ('group', 1)]
[('cloud', 4), ('destination', 2), ('capability', 2), ('vendor', 2), ('many', 1), ('company', 1), ('claim', 1), ('gone', 1), ('yet', 1), ('return', 1), ('effort', 1), ('meager', 1), ('worse', 1), ('defined', 1), ('using', 1), ('single', 1), ('stop', 1), ('fiction', 1), ('practice', 1), ('today', 1), ('organization', 1), ('use', 1), ('mosaic', 1), ('across', 1), ('several', 1), ('strategy', 1)]
[('data', 5), ('mesh', 2), ('lake', 1), ('warehouse', 1), ('become', 1), ('increasingly', 1), ('fragile', 1), ('costly', 1), ('difficult', 1), ('maintain', 1), ('get', 1), ('bigger', 1), ('move', 1), ('faster', 1), ('help', 1), ('organization', 1), ('decentralize', 1), ('giving', 1), ('ownership', 1), ('back', 1), ('engineer', 1), ('produced', 1), ('book', 1), ('provides', 1), ('concise', 1), ('yet', 1), ('comprehensive', 1), ('overview', 1), ('pattern', 1), ('streaming', 1)]
[('analysis', 2), ('proven', 1), ('textbook', 1), ('based', 1), ('material', 1), ('developed', 1), ('last', 1), ('decade', 1), ('teach', 1), ('linear', 1), ('generalized', 1), ('mixed', 1), ('model', 1), ('student', 1), ('ecology', 1), ('evolution', 1), ('environmental', 1), ('study', 1), ('used', 1), ('throughout', 1), ('focus', 1), ('firmly', 1), ('statistical', 1)]
[('game', 2), ('composing', 1), ('music', 1), ('guidebook', 1), ('launching', 1), ('maintaining', 1), ('successful', 1), ('career', 1), ('video', 1), ('composer', 1), ('offer', 1), ('pragmatic', 1), ('approach', 1), ('learning', 1), ('intensified', 1), ('challenging', 1), ('project', 1), ('assignment', 1), ('simulation', 1), ('author', 1), ('chance', 1), ('thomas', 1), ('begin', 1), ('foundation', 1), ('scoring', 1), ('principle', 1), ('applicable', 1), ('medium', 1), ('progress', 1)]
[('ai', 3), ('artificial', 2), ('intelligence', 1), ('fascinates', 1), ('challenge', 1), ('disturbs', 1), ('many', 1), ('voice', 1), ('society', 1), ('predict', 1), ('drastic', 1), ('change', 1), ('come', 1), ('consequence', 1), ('possible', 1), ('apocalypse', 1), ('eden', 1), ('earth', 1), ('truly', 1), ('understand', 1), ('limitation', 1), ('understanding', 1)]
[('book', 2), ('ai', 2), ('written', 1), ('accessible', 1), ('language', 1), ('without', 1), ('mathematical', 1), ('formula', 1), ('short', 1), ('provides', 1), ('overview', 1), ('wide', 1), ('varied', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('across', 1), ('spectrum', 1), ('physical', 1), ('science', 1), ('focusing', 1), ('particular', 1), ('ability', 1), ('extract', 1), ('pattern', 1), ('data', 1), ('known', 1), ('machine', 1), ('learning', 1), ('ml', 1), ('includes', 1), ('chapter', 1)]
[('window', 3), ('registry', 3), ('forensic', 2), ('forensics', 1), ('advanced', 1), ('digital', 1), ('analysis', 1), ('second', 1), ('edition', 1), ('provides', 1), ('depth', 1), ('guide', 1), ('investigation', 1), ('involving', 1), ('book', 1), ('kind', 1), ('giving', 1), ('background', 1)]
[('artificial', 2), ('intelligence', 2), ('healthcare', 2), ('section', 2), ('ai', 1), ('comprehensive', 1), ('introduction', 1), ('tool', 1), ('generation', 1), ('analysis', 1), ('data', 1), ('book', 1), ('split', 1), ('first', 1), ('describes', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('ict', 3), ('student', 2), ('collins', 1), ('cambridge', 1), ('igcsetm', 1), ('book', 1), ('third', 1), ('edition', 1), ('provides', 1), ('depth', 1), ('coverage', 1), ('igcse', 1), ('syllabus', 1), ('examination', 1), ('engaging', 1), ('approach', 1), ('us', 1), ('scenario', 1), ('build', 1), ('skill', 1), ('link', 1), ('theory', 1), ('practice', 1), ('course', 1), ('show', 1), ('make', 1), ('progress', 1), ('prepare', 1), ('exam', 1)]
[('deep', 2), ('learning', 2), ('applied', 2), ('utilize', 1), ('easy', 1), ('follow', 1), ('beginner', 1), ('guide', 1), ('understand', 1), ('task', 1), ('anomaly', 1), ('detection', 1), ('using', 1), ('kera', 1), ('pytorch', 1), ('python', 1), ('book', 1), ('focus', 1), ('various', 1), ('model', 1), ('semi', 1), ('supervised', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('gain', 1), ('practical', 1), ('introduction', 1), ('dataops', 1), ('new', 1), ('discipline', 1), ('delivering', 1), ('data', 1), ('science', 1), ('scale', 1), ('inspired', 1), ('practice', 1), ('company', 1), ('facebook', 1), ('uber', 1), ('linkedin', 1), ('twitter', 1), ('ebay', 1), ('organization', 1), ('need', 1), ('latest', 1)]
[('lt', 3), ('div', 3), ('gt', 3), ('design', 1), ('configure', 1), ('sql', 1), ('server', 1), ('instance', 1), ('database', 1), ('support', 1), ('high', 1), ('throughput', 1), ('mission', 1), ('critical', 1), ('application', 1), ('providing', 1), ('consistent', 1), ('response', 1), ('time', 1), ('face', 1), ('variation', 1), ('number', 1), ('user', 1), ('query', 1)]
[('quantum', 4), ('computing', 2), ('quickly', 1), ('scale', 1), ('machine', 1), ('learning', 1), ('foundation', 1), ('related', 1), ('mathematics', 1), ('expose', 1), ('different', 1), ('use', 1), ('case', 1), ('solved', 1), ('based', 1), ('algorithm', 1), ('book', 1), ('explains', 1), ('leverage', 1)]
[('sql', 3), ('guide', 2), ('pro', 1), ('ndash', 1), ('programmer', 1), ('rsquo', 1), ('making', 1), ('best', 1), ('use', 1), ('powerful', 1), ('transact', 1), ('programming', 1), ('language', 1), ('built', 1), ('microsoft', 1), ('server', 1), ('database', 1), ('engine', 1), ('edition', 1), ('updated', 1), ('cover', 1), ('new', 1), ('memory', 1)]
[('successful', 2), ('full', 2), ('stack', 2), ('developer', 2), ('understand', 1), ('technical', 1), ('foundation', 1), ('non', 1), ('programming', 1), ('skill', 1), ('needed', 1), ('web', 1), ('book', 1), ('reveals', 1), ('reason', 1), ('truly', 1), ('write', 1), ('code', 1), ('nbsp', 1)]
[('feature', 2), ('work', 1), ('essential', 1), ('advanced', 1), ('java', 1), ('release', 1), ('book', 1), ('cover', 1), ('annotation', 1), ('reflection', 1), ('generic', 1), ('topic', 1), ('complemented', 1), ('detail', 1), ('use', 1), ('lambda', 1), ('expression', 1), ('allowing', 1), ('build', 1)]
[('data', 3), ('azure', 3), ('lakehouse', 2), ('design', 1), ('implement', 1), ('modern', 1), ('platform', 1), ('using', 1), ('delta', 1), ('lake', 1), ('apache', 1), ('spark', 1), ('databricks', 1), ('synapse', 1), ('analytics', 1), ('snowflake', 1), ('book', 1), ('teach', 1), ('intricate', 1), ('detail', 1), ('paradigm', 1)]
[('pi', 2), ('use', 1), ('java', 1), ('whatever', 1), ('want', 1), ('raspberry', 1), ('device', 1), ('need', 1), ('project', 1), ('theory', 1), ('possible', 1), ('even', 1), ('easy', 1), ('work', 1), ('unfortunately', 1), ('reality', 1), ('bit', 1), ('different', 1), ('book', 1), ('feature', 1)]
[('world', 2), ('python', 2), ('explore', 1), ('programming', 1), ('language', 1), ('learn', 1), ('building', 1), ('block', 1), ('writing', 1), ('program', 1), ('book', 1), ('cover', 1), ('explaining', 1), ('six', 1), ('key', 1), ('concept', 1), ('chapter', 1), ('contains', 1), ('real', 1), ('example', 1), ('practical', 1), ('advice', 1)]
[('deep', 2), ('learning', 2), ('master', 1), ('practical', 1), ('aspect', 1), ('implementing', 1), ('solution', 1), ('pytorch', 1), ('using', 1), ('hand', 1), ('approach', 1), ('understanding', 1), ('theory', 1), ('practice', 1), ('updated', 1), ('edition', 1), ('nbsp', 1), ('prepare', 1), ('applying', 1), ('real', 1), ('world', 1), ('problem', 1)]
[('layer', 2), ('simplest', 1), ('term', 1), ('event', 1), ('driven', 1), ('architecture', 1), ('onion', 1), ('manageable', 1), ('single', 1), ('monolith', 1), ('begin', 1), ('cascade', 1), ('apart', 1), ('quickly', 1), ('realize', 1), ('many', 1), ('complex', 1)]
[('perfect', 1), ('companion', 1), ('learning', 1), ('developing', 1), ('react', 1), ('application', 1), ('book', 1), ('introduces', 1), ('concept', 1), ('innovatively', 1), ('using', 1), ('real', 1), ('world', 1), ('example', 1), ('based', 1), ('recommended', 1), ('practice', 1), ('help', 1), ('establish', 1), ('firm', 1), ('foundation', 1)]
[('business', 2), ('work', 2), ('build', 2), ('apps', 2), ('transform', 1), ('way', 1), ('easy', 1), ('updated', 1), ('expanded', 1), ('second', 1), ('edition', 1), ('company', 1), ('system', 1), ('database', 1), ('without', 1), ('enlist', 1), ('expertise', 1), ('costly', 1)]
[('docker', 2), ('harness', 1), ('power', 1), ('containerizing', 1), ('code', 1), ('library', 1), ('file', 1), ('system', 1), ('consistently', 1), ('run', 1), ('anywhere', 1), ('book', 1), ('source', 1), ('learning', 1), ('operation', 1), ('development', 1), ('divided', 1), ('unit', 1)]
[('design', 2), ('pattern', 2), ('implement', 1), ('net', 1), ('using', 1), ('latest', 1), ('version', 1), ('language', 1), ('book', 1), ('nbsp', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('field', 1), ('used', 1), ('today', 1), ('developer', 1), ('toolbox', 1), ('addition', 1), ('functional', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('day', 2), ('deal', 1), ('data', 1), ('build', 1), ('financial', 1), ('formula', 1), ('code', 1), ('scratch', 1), ('evaluate', 1), ('think', 1), ('money', 1), ('life', 1), ('book', 1), ('python', 1), ('personal', 1), ('finance', 1), ('effectively', 1), ('mix', 1)]
[('step', 2), ('begin', 1), ('programming', 1), ('journey', 1), ('starting', 1), ('basic', 1), ('progressing', 1), ('example', 1), ('help', 1), ('become', 1), ('proficient', 1), ('programmer', 1), ('book', 1), ('includes', 1), ('new', 1), ('feature', 1), ('standard', 1), ('module', 1)]
[('system', 2), ('practical', 2), ('example', 2), ('nbsp', 2), ('book', 1), ('teach', 1), ('programming', 1), ('latest', 1), ('version', 1), ('set', 1), ('problem', 1), ('cover', 1), ('development', 1), ('handful', 1), ('program', 1), ('implementing', 1), ('efficient', 1), ('coding', 1)]
[('go', 2), ('best', 1), ('selling', 1), ('author', 1), ('adam', 1), ('freeman', 1), ('explains', 1), ('starting', 1), ('basic', 1), ('building', 1), ('advanced', 1), ('sophisticated', 1), ('feature', 1), ('learn', 1), ('build', 1), ('simple', 1), ('consistent', 1), ('type', 1), ('system', 1), ('create', 1)]
[('quantum', 2), ('book', 1), ('provides', 1), ('self', 1), ('contained', 1), ('undergraduate', 1), ('course', 1), ('computing', 1), ('based', 1), ('classroom', 1), ('tested', 1), ('lecture', 1), ('note', 1), ('review', 1), ('fundamental', 1), ('mechanic', 1), ('double', 1), ('slit', 1), ('experiment', 1), ('entanglement', 1), ('progressing', 1), ('basic', 1)]
[('new', 2), ('building', 1), ('already', 1), ('comprehensive', 1), ('introduction', 1), ('competitive', 1), ('programming', 1), ('enhanced', 1), ('textbook', 1), ('feature', 1), ('material', 1), ('advanced', 1), ('topic', 1), ('calculating', 1), ('fourier', 1), ('transforms', 1), ('finding', 1), ('minimum', 1), ('cost', 1), ('flow', 1), ('graph', 1)]
[('book', 1), ('provides', 1), ('brief', 1), ('general', 1), ('introduction', 1), ('cybersecurity', 1), ('cyber', 1), ('risk', 1), ('assessment', 1), ('limited', 1), ('specific', 1), ('approach', 1), ('technique', 1), ('focus', 1), ('highly', 1), ('pragmatic', 1), ('based', 1), ('established', 1), ('international', 1), ('standard', 1), ('including', 1), ('iso', 1)]
[('application', 3), ('vision', 2), ('used', 2), ('computer', 1), ('algorithm', 1), ('nbsp', 1), ('explores', 1), ('variety', 1), ('technique', 1), ('analyze', 1), ('interpret', 1), ('image', 1), ('describes', 1), ('challenging', 1), ('real', 1), ('world', 1), ('successfully', 1), ('specialized', 1)]
[('classic', 2), ('paper', 2), ('computer', 2), ('science', 2), ('thinker', 1), ('ranging', 1), ('aristotle', 1), ('leibniz', 1), ('norbert', 1), ('wiener', 1), ('gordon', 1), ('moore', 1), ('chart', 1), ('evolution', 1), ('idea', 1), ('created', 1), ('future', 1), ('collect', 1), ('forty', 1), ('six', 1), ('map', 1)]
[('type', 2), ('system', 2), ('comprehensive', 1), ('introduction', 1), ('programming', 1), ('language', 1), ('syntactic', 1), ('method', 1), ('automatically', 1), ('checking', 1), ('absence', 1), ('certain', 1), ('erroneous', 1), ('behavior', 1), ('classifying', 1), ('program', 1), ('phrase', 1), ('according', 1), ('kind', 1), ('value', 1)]
[('guide', 1), ('implementing', 1), ('diy', 1), ('security', 1), ('solution', 1), ('readily', 1), ('available', 1), ('technology', 1), ('protect', 1), ('home', 1), ('small', 1), ('office', 1), ('network', 1), ('attack', 1), ('book', 1), ('easy', 1), ('follow', 1), ('series', 1), ('tutorial', 1), ('lead', 1), ('reader', 1), ('different', 1), ('facet', 1)]
[('solving', 2), ('coding', 2), ('learn', 1), ('code', 1), ('problem', 1), ('nbsp', 1), ('practical', 1), ('introduction', 1), ('programming', 1), ('using', 1), ('python', 1), ('us', 1), ('competition', 1), ('challenge', 1), ('teach', 1), ('mechanic', 1), ('think', 1), ('savvy', 1), ('programmer', 1), ('computer', 1), ('capable', 1)]
[('week', 1), ('month', 1), ('nay', 1), ('moment', 1), ('born', 1), ('felt', 1), ('calling', 1), ('long', 1), ('last', 1), ('united', 1), ('programming', 1), ('language', 1), ('longing', 1), ('clojure', 1), ('lisp', 1), ('style', 1), ('functional', 1)]
[('arduino', 2), ('prototyping', 2), ('open', 1), ('source', 1), ('electronics', 1), ('platform', 1), ('taken', 1), ('maker', 1), ('movement', 1), ('storm', 1), ('thorough', 1), ('introduction', 1), ('updated', 1), ('latest', 1), ('release', 1), ('help', 1), ('start', 1), ('right', 1), ('away', 1), ('obtaining', 1), ('required', 1), ('component', 1), ('putting', 1), ('final', 1), ('touch', 1), ('project', 1), ('information', 1), ('need', 1), ('getting', 1)]
[('cyber', 2), ('security', 1), ('never', 1), ('essential', 1), ('today', 1), ('case', 1), ('attack', 1), ('happen', 1), ('brand', 1), ('new', 1), ('edition', 1), ('cover', 1), ('various', 1), ('type', 1), ('threat', 1), ('explains', 1), ('mitigate', 1), ('risk', 1), ('keep', 1), ('data', 1), ('secure', 1)]
[('programming', 3), ('language', 3), ('widely', 1), ('used', 1), ('today', 1), ('first', 1), ('originating', 1), ('late', 1), ('early', 1), ('grown', 1), ('powerful', 1), ('learn', 1), ('book', 1), ('explains', 1), ('wide', 1), ('variety', 1), ('us', 1), ('capability', 1), ('learning', 1), ('provide', 1)]
[('bitcoin', 3), ('world', 2), ('currency', 2), ('rest', 1), ('speculated', 1), ('identity', 1), ('satoshi', 1), ('nakamoto', 1), ('anonymous', 1), ('creator', 1), ('first', 1), ('cryptocurrency', 1), ('went', 1), ('online', 1), ('revolutionized', 1), ('concept', 1), ('money', 1), ('supported', 1), ('government', 1), ('central', 1), ('bank', 1), ('completely', 1), ('electronic', 1), ('virtual', 1)]
[('pattern', 2), ('solution', 2), ('book', 2), ('use', 2), ('power', 2), ('general', 1), ('reusable', 1), ('frequent', 1), ('common', 1), ('challenge', 1), ('second', 1), ('edition', 1), ('comprehensive', 1), ('collection', 1), ('ready', 1), ('dax', 1), ('microsoft', 1), ('bi', 1), ('analysis', 1), ('service', 1), ('tabular', 1), ('pivot', 1), ('excel', 1), ('includes', 1), ('following', 1), ('time', 1), ('related', 1), ('calculation', 1)]
[('business', 3), ('chatgpt', 1), ('strategy', 1), ('success', 1), ('ultimate', 1), ('guide', 1), ('looking', 1), ('leverage', 1), ('power', 1), ('artificial', 1), ('intelligence', 1), ('boost', 1), ('bottom', 1), ('line', 1), ('book', 1), ('explores', 1), ('latest', 1), ('advancement', 1), ('chatbot', 1), ('technology', 1), ('including', 1), ('openai', 1), ('cutting', 1), ('edge', 1), ('language', 1), ('model', 1), ('show', 1), ('use', 1), ('tool', 1), ('streamline', 1)]
[('pci', 7), ('specification', 4), ('spec', 2), ('fourth', 1), ('edition', 1), ('system', 1), ('architecture', 1), ('provides', 1), ('detailed', 1), ('review', 1), ('rev', 1), ('easy', 1), ('understand', 1), ('manner', 1), ('cover', 1), ('following', 1), ('bridge', 1), ('bios', 1), ('bus', 1), ('power', 1), ('management', 1), ('interface', 1), ('hot', 1), ('plug', 1)]
[('powerpc', 4), ('system', 2), ('architecture', 2), ('specification', 2), ('describes', 1), ('hardware', 1), ('providing', 1), ('clear', 1), ('concise', 1), ('explanation', 1), ('template', 1), ('upon', 1), ('processor', 1), ('designed', 1), ('author', 1), ('provides', 1), ('complete', 1), ('description', 1), ('bit', 1), ('implementation', 1), ('second', 1), ('half', 1)]
[('medium', 3), ('developer', 2), ('storage', 2), ('device', 2), ('usb', 2), ('interface', 2), ('guide', 1), ('designer', 1), ('programmer', 1), ('mass', 1), ('use', 1), ('universal', 1), ('serial', 1), ('bus', 1), ('provides', 1), ('information', 1), ('choose', 1), ('microcontroller', 1), ('cpu', 1), ('write', 1), ('firmware', 1), ('access', 1), ('perform', 1), ('communication', 1), ('comparison', 1)]
[('covering', 1), ('main', 1), ('approach', 1), ('state', 1), ('art', 1), ('machine', 1), ('learning', 1), ('research', 1), ('set', 1), ('new', 1), ('standard', 1), ('introductory', 1), ('textbook', 1)]
[('agp', 3), ('edition', 2), ('system', 1), ('architecture', 1), ('second', 1), ('includes', 1), ('essential', 1), ('first', 1), ('expanded', 1), ('reorganized', 1), ('even', 1), ('better', 1), ('coverage', 1), ('comprehensive', 1), ('concise', 1), ('book', 1), ('provides', 1), ('overview', 1), ('technology', 1), ('discussion', 1), ('pro', 1), ('practical', 1), ('tutorial', 1), ('mastering', 1), ('particular', 1), ('focus', 1), ('graphic', 1)]
[('detailed', 1), ('guide', 1), ('programmer', 1), ('developer', 1), ('computer', 1), ('enthusiast', 1), ('show', 1), ('parallel', 1), ('port', 1), ('application', 1), ('project', 1), ('visual', 1), ('basic', 1), ('code', 1), ('circuit', 1), ('design', 1), ('include', 1), ('example', 1), ('use', 1), ('new', 1), ('enhanced', 1), ('epp', 1), ('expanded', 1), ('epc', 1), ('mode', 1)]
[('cm', 2), ('written', 1), ('leading', 1), ('expert', 1), ('content', 1), ('management', 1), ('system', 1), ('newly', 1), ('revised', 1), ('bestseller', 1), ('guide', 1), ('reader', 1), ('confusing', 1), ('often', 1), ('intimidating', 1), ('task', 1), ('building', 1), ('implementing', 1), ('running', 1), ('managing', 1), ('updated', 1), ('cover', 1), ('recent', 1)]
[('video', 3), ('practically', 1), ('every', 1), ('screen', 1), ('around', 1), ('working', 1), ('essential', 1), ('skill', 1), ('creative', 1), ('professional', 1), ('becoming', 1), ('proficient', 1), ('adobe', 1), ('premiere', 1), ('pro', 1), ('cc', 1), ('help', 1), ('deliver', 1), ('wide', 1), ('range', 1), ('project', 1), ('web', 1), ('friendly', 1)]
[('ebook', 3), ('version', 2), ('printed', 1), ('book', 1), ('print', 1), ('title', 1), ('come', 1), ('disc', 1), ('companion', 1), ('content', 1), ('reader', 1), ('access', 1), ('file', 1), ('nbsp', 1), ('see', 1), ('instruction', 1), ('back', 1), ('page', 1), ('following', 1)]
[('book', 1), ('present', 1), ('essential', 1), ('bluetooth', 1), ('way', 1), ('make', 1), ('sense', 1), ('programmer', 1)]
[('storage', 3), ('area', 2), ('network', 2), ('charged', 1), ('setting', 1), ('company', 1), ('learning', 1), ('sans', 1), ('work', 1), ('managing', 1), ('data', 1), ('problem', 1), ('might', 1), ('seem', 1), ('challenging', 1), ('dummy', 1), ('nd', 1)]
[('technology', 3), ('introduction', 2), ('new', 2), ('digital', 2), ('authoritative', 1), ('exciting', 1), ('money', 1), ('bitcoin', 1), ('cryptocurrency', 1), ('provides', 1), ('comprehensive', 1), ('revolutionary', 1), ('yet', 1), ('often', 1), ('misunderstood', 1), ('currency', 1), ('whether', 1), ('student', 1), ('software', 1), ('developer', 1), ('tech', 1), ('entrepreneur', 1), ('researcher', 1), ('computer', 1), ('science', 1)]
[('excel', 2), ('master', 1), ('core', 1), ('tool', 1), ('building', 1), ('powerful', 1), ('reliable', 1), ('spreadsheet', 1), ('nbsp', 1), ('use', 1), ('guide', 1), ('automate', 1), ('virtually', 1), ('routine', 1), ('task', 1), ('save', 1), ('hour', 1), ('day', 1), ('maybe', 1), ('even', 1), ('week', 1), ('make', 1), ('thing', 1), ('thought', 1), ('impossible', 1), ('discover', 1), ('macro', 1)]
[('excel', 4), ('microsoft', 2), ('advance', 1), ('everyday', 1), ('proficiency', 1), ('earn', 1), ('credential', 1), ('prof', 1), ('nbsp', 1), ('demonstrate', 1), ('expertise', 1), ('designed', 1), ('help', 1), ('practice', 1), ('prepare', 1), ('office', 1), ('specialist', 1), ('associate', 1)]
[('web', 2), ('moment', 1), ('published', 1), ('almost', 1), ('ten', 1), ('year', 1), ('ago', 1), ('element', 1), ('user', 1), ('experience', 1), ('became', 1), ('vital', 1), ('reference', 1), ('interaction', 1), ('designer', 1), ('world', 1), ('come', 1), ('define', 1), ('core', 1), ('principle', 1), ('practice', 1), ('updated', 1), ('expanded', 1), ('full', 1), ('colour', 1), ('new', 1), ('edition', 1), ('jesse', 1), ('james', 1), ('garrett', 1), ('refined', 1), ('thinking', 1), ('going', 1)]
[('practical', 1), ('application', 1), ('oriented', 1), ('book', 1), ('describes', 1), ('essential', 1), ('tool', 1), ('efficiently', 1), ('handling', 1), ('massive', 1), ('amount', 1), ('data', 1)]
[('exam', 6), ('ref', 2), ('study', 2), ('candidate', 2), ('official', 1), ('guide', 1), ('microsoft', 1), ('certification', 1), ('nbsp', 1), ('featuring', 1), ('concise', 1), ('coverage', 1), ('skill', 1), ('measured', 1), ('challenging', 1), ('thought', 1), ('experiment', 1), ('pointer', 1), ('depth', 1), ('material', 1), ('needing', 1), ('additional', 1), ('professional', 1), ('level', 1), ('preparation', 1), ('help', 1)]
[('adobe', 3), ('indesign', 3), ('step', 2), ('creative', 1), ('professional', 1), ('seeking', 1), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('choose', 1), ('cc', 1), ('classroom', 1), ('book', 1), ('press', 1), ('project', 1), ('based', 1), ('lesson', 1), ('show', 1), ('user', 1), ('key', 1), ('technique', 1), ('working', 1), ('designer', 1), ('build', 1), ('strong', 1), ('foundation', 1), ('typographic', 1), ('color', 1), ('page', 1), ('layout', 1)]
[('excel', 3), ('guide', 2), ('complete', 1), ('mr', 1), ('spreadsheet', 1), ('whether', 1), ('starting', 1), ('novice', 1), ('bible', 1), ('comprehensive', 1), ('go', 1)]
[('new', 2), ('data', 2), ('edition', 1), ('classic', 1), ('bestseller', 1), ('launched', 1), ('warehousing', 1), ('industry', 1), ('cover', 1), ('approach', 1), ('technology', 1), ('many', 1), ('pioneered', 1), ('inmon', 1), ('addition', 1), ('explaining', 1), ('fundamental', 1), ('warehouse', 1), ('system', 1)]
[('first', 1), ('introduction', 1), ('spark', 1), ('language', 1), ('tool', 1), ('verify', 1), ('program', 1), ('safety', 1), ('security', 1), ('critical', 1), ('application', 1)]
[('excel', 2), ('learn', 1), ('use', 1), ('dashboard', 1), ('report', 1), ('better', 1), ('conceptualize', 1), ('data', 1), ('updated', 1), ('latest', 1), ('feature', 1), ('capability', 1), ('go', 1), ('resource', 1), ('provides', 1), ('depth', 1), ('coverage', 1)]
[('database', 3), ('application', 2), ('developer', 2), ('vast', 1), ('majority', 1), ('software', 1), ('use', 1), ('relational', 1), ('virtually', 1), ('every', 1), ('work', 1), ('book', 1), ('introduces', 1), ('design', 1), ('whether', 1), ('dba', 1)]
[('web', 3), ('page', 3), ('build', 2), ('want', 1), ('previous', 1), ('experience', 1), ('friendly', 1), ('guide', 1), ('perfect', 1), ('place', 1), ('start', 1), ('begin', 1), ('square', 1), ('learning', 1), ('work', 1), ('steadily', 1), ('end', 1), ('book', 1), ('skill', 1), ('create', 1), ('simple', 1), ('site', 1), ('multi', 1), ('column', 1), ('adapt', 1), ('mobile', 1), ('device', 1)]
[('mac', 2), ('answer', 1), ('found', 1), ('apple', 1), ('latest', 1), ('software', 1), ('macos', 1), ('mojave', 1), ('glorious', 1), ('boxcar', 1), ('full', 1), ('new', 1), ('feature', 1), ('refinement', 1), ('still', 1), ('included', 1), ('though', 1), ('single', 1), ('page', 1), ('printed', 1), ('instruction', 1), ('fortunately', 1), ('david', 1), ('pogue', 1), ('back', 1), ('delivering', 1), ('expertise', 1), ('humor', 1), ('made', 1), ('bestselling', 1), ('book', 1), ('year', 1), ('straight', 1)]
[('describes', 1), ('underlying', 1), ('theory', 1), ('algorithm', 1), ('optimisation', 1), ('idea', 1), ('implementation', 1), ('detail', 1), ('includes', 1), ('numerous', 1), ('example', 1), ('exercise', 1)]
[('reverse', 2), ('engineering', 2), ('beginning', 1), ('basic', 1), ('primer', 1), ('including', 1), ('computer', 1), ('internals', 1), ('operating', 1), ('system', 1), ('assembly', 1), ('language', 1), ('discussing', 1), ('various', 1), ('application', 1), ('book', 1), ('provides', 1), ('reader', 1), ('practical', 1)]
[('excel', 4), ('core', 2), ('book', 1), ('content', 1), ('update', 1), ('program', 1), ('master', 1), ('tool', 1), ('building', 1), ('powerful', 1), ('reliable', 1), ('spreadsheet', 1), ('formula', 1), ('function', 1), ('expert', 1), ('paul', 1), ('mcfedries', 1), ('show', 1), ('use', 1), ('feature', 1), ('solve', 1), ('problem', 1)]
[('np', 2), ('starting', 1), ('basic', 1), ('computability', 1), ('undergraduate', 1), ('introduction', 1), ('focus', 1), ('versus', 1), ('question', 1), ('theory', 1), ('completeness', 1)]
[('book', 1), ('provides', 1), ('depth', 1), ('discussion', 1), ('challenge', 1), ('encountered', 1), ('deploying', 1), ('real', 1), ('life', 1), ('large', 1), ('scale', 1), ('system', 1), ('state', 1), ('art', 1), ('solution', 1), ('personalization', 1)]
[('business', 1), ('nonprofit', 1), ('organization', 1), ('responsible', 1), ('information', 1), ('system', 1), ('operation', 1), ('know', 1), ('disaster', 1), ('recovery', 1), ('planning', 1), ('pretty', 1), ('vital', 1), ('easy', 1), ('put', 1)]
[('java', 5), ('programming', 2), ('edition', 2), ('date', 1), ('essential', 1), ('skill', 1), ('made', 1), ('easy', 1), ('supplement', 1), ('key', 1), ('jdk', 1), ('new', 1), ('feature', 1), ('available', 1), ('book', 1), ('downloads', 1), ('resource', 1), ('page', 1), ('oraclepressbooks', 1), ('fully', 1), ('updated', 1), ('platform', 1), ('standard', 1), ('se', 1), ('beginner', 1), ('guide', 1), ('seventh', 1), ('get', 1), ('started', 1), ('right', 1), ('away', 1), ('bestselling', 1)]
[('question', 3), ('practice', 2), ('exam', 2), ('core', 2), ('every', 2), ('comptia', 1), ('cram', 1), ('complement', 1), ('study', 1), ('plan', 1), ('test', 1), ('book', 1), ('plus', 1), ('bonus', 1), ('companion', 1), ('website', 1), ('supported', 1), ('complete', 1), ('explanation', 1), ('answer', 1), ('package', 1), ('highly', 1), ('realistic', 1), ('cover', 1), ('area', 1), ('knowledge', 1), ('new', 1)]
[('machine', 2), ('learning', 2), ('although', 1), ('interest', 1), ('reached', 1), ('high', 1), ('point', 1), ('lofty', 1), ('expectation', 1), ('often', 1), ('scuttle', 1), ('project', 1), ('far', 1), ('especially', 1), ('deep', 1), ('neural', 1), ('network', 1), ('make', 1), ('real', 1), ('difference', 1), ('organization', 1), ('hand', 1), ('guide', 1), ('provides', 1), ('practical', 1), ('information', 1), ('available', 1), ('subject', 1), ('help', 1)]
[('quick', 1), ('easy', 1), ('way', 1), ('leap', 1), ('fascinating', 1), ('world', 1), ('physical', 1), ('computing', 1), ('ordinary', 1), ('circuit', 1), ('board', 1), ('arduino', 1), ('allows', 1), ('anyone', 1), ('whether', 1), ('artist', 1), ('designer', 1), ('programmer', 1), ('hobbyist', 1)]
[('programming', 2), ('language', 2), ('python', 1), ('powerful', 1), ('easy', 1), ('around', 1), ('limitation', 1), ('general', 1), ('purpose', 1), ('high', 1), ('level', 1), ('extended', 1), ('embedded', 1), ('smart', 1), ('option', 1), ('many', 1), ('problem', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('carefully', 2), ('example', 2), ('core', 1), ('java', 1), ('long', 1), ('recognised', 1), ('leading', 1), ('nonsense', 1), ('tutorial', 1), ('reliable', 1), ('reference', 1), ('explains', 1), ('important', 1), ('language', 1), ('library', 1), ('feature', 1), ('show', 1), ('build', 1), ('real', 1), ('world', 1), ('application', 1), ('thoroughly', 1), ('tested', 1), ('program', 1), ('crafted', 1), ('easy', 1), ('understand', 1), ('useful', 1)]
[('design', 2), ('engaging', 1), ('application', 1), ('love', 1), ('use', 1), ('book', 1), ('demonstrates', 1), ('several', 1), ('way', 1), ('include', 1), ('valuable', 1), ('input', 1), ('potential', 1), ('client', 1), ('customer', 1), ('throughout', 1), ('process', 1), ('practical', 1), ('guideline', 1), ('insight', 1), ('experience', 1), ('author', 1), ('travis', 1), ('lowdermilk', 1), ('show', 1), ('usability', 1), ('user', 1), ('centered', 1), ('dramatically', 1)]
[('book', 1), ('explores', 1), ('fundamental', 1), ('computer', 1), ('vision', 1), ('principle', 1), ('state', 1), ('art', 1), ('algorithm', 1), ('used', 1), ('create', 1), ('cutting', 1), ('edge', 1), ('visual', 1), ('effect', 1), ('movie', 1), ('television', 1)]
[('present', 1), ('new', 1), ('approach', 1), ('causal', 1), ('inference', 1), ('explanation', 1), ('addressing', 1), ('timing', 1), ('complexity', 1), ('relationship', 1)]
[('analytics', 3), ('new', 2), ('web', 2), ('adeptly', 1), ('address', 1), ('today', 1), ('business', 1), ('challenge', 1), ('powerful', 1), ('book', 1), ('thought', 1), ('leader', 1), ('avinash', 1), ('kaushik', 1), ('present', 1), ('framework', 1), ('permanently', 1), ('change', 1), ('think', 1)]
[('edition', 2), ('latest', 1), ('classic', 1), ('updated', 1), ('new', 1), ('problem', 1), ('set', 1), ('material', 1), ('second', 1), ('fundamental', 1), ('textbook', 1), ('maintains', 1), ('book', 1), ('tradition', 1), ('clear', 1), ('thought', 1), ('provoking', 1), ('instruction', 1), ('reader', 1)]
[('autocad', 4), ('designed', 1), ('introductory', 1), ('user', 1), ('discovering', 1), ('present', 1), ('hand', 1), ('activity', 1), ('based', 1), ('approach', 1), ('use', 1), ('drafting', 1), ('tool', 1), ('complete', 1), ('technique', 1), ('tip', 1), ('shortcut', 1), ('insight', 1), ('improve', 1), ('efficiency', 1), ('topic', 1), ('task', 1), ('carefully', 1), ('grouped', 1), ('lead', 1), ('student', 1), ('logically', 1), ('command', 1), ('set', 1)]
[('way', 2), ('learn', 2), ('javascript', 2), ('want', 2), ('book', 1), ('fastest', 1), ('use', 1), ('together', 1), ('cs', 1), ('html', 1), ('create', 1), ('powerful', 1), ('web', 1), ('mobile', 1), ('experience', 1), ('student', 1), ('nbsp', 1), ('incredibly', 1), ('easy', 1), ('step', 1), ('time', 1), ('never', 1), ('simple', 1), ('full', 1), ('text', 1), ('downloaded', 1), ('computer', 1), ('ebooks', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('data', 1), ('access', 1), ('essential', 1), ('serving', 1), ('public', 1), ('good', 1), ('book', 1), ('provides', 1), ('new', 1), ('framework', 1), ('address', 1), ('resultant', 1), ('privacy', 1), ('issue', 1)]
[('practical', 1), ('introduction', 1), ('model', 1), ('based', 1), ('formal', 1), ('method', 1), ('containing', 1), ('broad', 1), ('range', 1), ('illustrative', 1), ('example', 1)]
[('offer', 1), ('comprehensive', 1), ('coverage', 1), ('major', 1), ('modeling', 1), ('viewpoint', 1), ('provides', 1), ('detail', 1), ('collaboration', 1), ('class', 1), ('diagram', 1), ('filling', 1), ('design', 1), ('level', 1), ('model', 1)]
[('revit', 2), ('best', 1), ('selling', 1), ('guide', 1), ('complete', 1), ('new', 1), ('coverage', 1), ('release', 1), ('mastering', 1), ('autodesk', 1), ('packed', 1), ('focused', 1), ('discussion', 1), ('detailed', 1), ('exercise', 1), ('real', 1), ('world', 1), ('example', 1), ('help', 1), ('speed', 1), ('quickly', 1)]
[('excel', 4), ('vba', 2), ('maximize', 1), ('experience', 1), ('power', 1), ('programming', 1), ('fully', 1), ('updated', 1), ('cover', 1), ('latest', 1), ('tool', 1), ('trick', 1), ('encompassing', 1), ('analysis', 1), ('application', 1)]
[('skill', 3), ('architecture', 2), ('solid', 1), ('introduction', 1), ('practice', 1), ('plan', 1), ('required', 1), ('developing', 1), ('smart', 1), ('system', 1), ('information', 1), ('combine', 1), ('business', 1), ('order', 1), ('align', 1), ('structure', 1)]
[('python', 3), ('programming', 2), ('fast', 1), ('easy', 1), ('way', 1), ('learn', 1), ('statistic', 1), ('general', 1), ('purpose', 1), ('language', 1), ('created', 1), ('late', 1), ('named', 1), ('monty', 1), ('used', 1), ('thousand', 1)]
[('fascinating', 1), ('regular', 1), ('field', 1), ('manual', 1), ('meticulously', 1), ('researched', 1), ('entertaining', 1), ('gordon', 1), ('liddy', 1), ('thoroughly', 1), ('revised', 1), ('updated', 1), ('edition', 1), ('essential', 1), ('guide', 1), ('preserving', 1), ('personal', 1), ('security', 1), ('cyberspace', 1), ('crawl', 1), ('space', 1), ('new', 1), ('innovation', 1), ('information', 1), ('gathering', 1), ('left', 1), ('private', 1), ('life', 1), ('average', 1), ('person', 1), ('open', 1)]
[('exam', 3), ('version', 2), ('computer', 2), ('hacking', 2), ('forensic', 2), ('investigator', 2), ('ec', 2), ('council', 2), ('new', 1), ('guide', 1), ('chfi', 1), ('complete', 1), ('coverage', 1), ('material', 1), ('included', 1), ('comprehensive', 1), ('resource', 1), ('written', 1), ('expert', 1), ('information', 1), ('security', 1), ('professional', 1), ('educator', 1)]
[('rstudio', 2), ('software', 2), ('dive', 1), ('integrated', 1), ('development', 1), ('environment', 1), ('ide', 1), ('using', 1), ('programming', 1), ('popular', 1), ('open', 1), ('source', 1), ('statistical', 1), ('computing', 1), ('graphic', 1), ('concise', 1), ('book', 1), ('provides', 1), ('new', 1), ('experienced', 1), ('user', 1), ('overview', 1), ('hand', 1), ('instruction', 1), ('analyzing', 1), ('data', 1), ('generating', 1), ('report', 1), ('developing', 1)]
[('cisco', 1), ('certified', 1), ('devnet', 1), ('associate', 1), ('devasc', 1), ('official', 1), ('cert', 1), ('guide', 1), ('present', 1), ('organised', 1), ('test', 1), ('preparation', 1), ('routine', 1), ('using', 1), ('proven', 1), ('series', 1), ('element', 1), ('technique', 1), ('know', 1), ('already', 1), ('quiz', 1), ('open', 1), ('chapter', 1), ('enable', 1), ('decide', 1), ('time', 1), ('need', 1), ('spend', 1), ('section', 1), ('exam', 1), ('topic', 1), ('list', 1), ('make', 1), ('referencing', 1), ('easy', 1)]
[('help', 2), ('practice', 2), ('trust', 1), ('best', 1), ('selling', 1), ('official', 1), ('cert', 1), ('guide', 1), ('series', 1), ('cisco', 1), ('press', 1), ('learn', 1), ('prepare', 1), ('exam', 1), ('success', 1), ('built', 1), ('objective', 1), ('providing', 1), ('assessment', 1), ('review', 1), ('ensure', 1), ('fully', 1), ('prepared', 1)]
[('sam', 2), ('teach', 2), ('day', 2), ('programming', 1), ('hour', 1), ('seventh', 1), ('edition', 1), ('newest', 1), ('version', 1), ('worldwide', 1), ('best', 1), ('seller', 1), ('fully', 1), ('revised', 1), ('new', 1), ('standard', 1), ('library', 1), ('emphasizes', 1), ('platform', 1), ('independent', 1)]
[('design', 2), ('learn', 2), ('nbsp', 1), ('edition', 1), ('author', 1), ('bruce', 1), ('hyslop', 1), ('us', 1), ('crystal', 1), ('clear', 1), ('instruction', 1), ('friendly', 1), ('prose', 1), ('introduce', 1), ('today', 1), ('html', 1), ('cs', 1), ('essential', 1), ('book', 1), ('refreshed', 1), ('feature', 1), ('current', 1), ('web', 1), ('best', 1), ('practice', 1), ('student', 1), ('structure', 1), ('format', 1), ('website', 1), ('new', 1), ('element', 1), ('form', 1)]
[('kubernetes', 2), ('greatly', 1), ('simplified', 1), ('task', 1), ('deploying', 1), ('containerized', 1), ('application', 1), ('managing', 1), ('orchestration', 1), ('framework', 1), ('daily', 1), ('basis', 1), ('still', 1), ('complex', 1), ('undertaking', 1), ('practical', 1), ('book', 1), ('site', 1), ('reliability', 1), ('devops', 1), ('engineer', 1), ('learn', 1), ('build', 1), ('operate', 1), ('manage', 1), ('upgrade', 1), ('cluster', 1), ('whether', 1), ('resides', 1), ('cloud', 1)]
[('layout', 2), ('theory', 2), ('white', 1), ('space', 1), ('enemy', 1), ('practical', 1), ('graphic', 1), ('design', 1), ('guide', 1), ('introduces', 1), ('concept', 1), ('practice', 1), ('necessary', 1), ('producing', 1), ('effective', 1), ('visual', 1), ('communication', 1), ('across', 1), ('variety', 1), ('format', 1), ('web', 1), ('print', 1), ('section', 1), ('gestalt', 1), ('color', 1), ('wet', 1), ('expanded', 1), ('offer', 1), ('depth', 1), ('content', 1), ('topic', 1)]
[('nan', 1)]
[('third', 1), ('edition', 1), ('outstanding', 1), ('textbook', 1), ('explains', 1), ('everything', 1), ('need', 1), ('started', 1), ('using', 1), ('matlab', 1)]
[('language', 4), ('web', 2), ('easiest', 1), ('way', 1), ('anyone', 1), ('interested', 1), ('programming', 1), ('learn', 1), ('xml', 1), ('extensible', 1), ('markup', 1), ('enables', 1), ('efficient', 1), ('interchange', 1), ('structured', 1), ('data', 1), ('across', 1), ('written', 1), ('non', 1), ('technical', 1), ('offered', 1), ('price', 1), ('book', 1), ('cover', 1), ('detail', 1), ('demonstrates', 1), ('using', 1), ('real', 1), ('world', 1), ('example', 1)]
[('security', 2), ('drawing', 1), ('year', 1), ('experience', 1), ('instructor', 1), ('consultant', 1), ('researcher', 1), ('easttom', 1), ('help', 1), ('take', 1), ('proactive', 1), ('realistic', 1), ('approach', 1), ('assessing', 1), ('threat', 1), ('implementing', 1), ('countermeasure', 1), ('writing', 1), ('clearly', 1), ('simply', 1), ('address', 1), ('crucial', 1), ('issue', 1), ('many', 1), ('introductory', 1), ('book', 1), ('ignore', 1), ('addressing', 1), ('reality', 1), ('world', 1)]
[('scrum', 2), ('project', 2), ('rule', 1), ('practice', 1), ('simple', 1), ('process', 1), ('managing', 1), ('complex', 1), ('straightforward', 1), ('easy', 1), ('learn', 1), ('simplicity', 1), ('lack', 1), ('prescription', 1), ('disarming', 1), ('new', 1), ('practitioner', 1), ('often', 1), ('find', 1), ('reverting', 1), ('old', 1), ('management', 1), ('habit', 1), ('tool', 1), ('yielding', 1), ('lesser', 1), ('result', 1), ('illuminating', 1)]
[('linux', 3), ('useful', 1), ('tutorial', 1), ('reference', 1), ('hundred', 1), ('high', 1), ('quality', 1), ('example', 1), ('every', 1), ('popular', 1), ('distribution', 1), ('first', 1), ('sobell', 1), ('taught', 1), ('use', 1), ('teach', 1), ('power', 1), ('book', 1), ('anyone', 1), ('want', 1)]
[('data', 4), ('big', 2), ('technology', 2), ('end', 2), ('platform', 2), ('lot', 1), ('information', 1), ('splicing', 1), ('enterprise', 1), ('daunting', 1), ('task', 1), ('widely', 1), ('covered', 1), ('practical', 1), ('book', 1), ('learn', 1), ('build', 1), ('infrastructure', 1), ('premise', 1), ('cloud', 1), ('successfully', 1), ('architect', 1), ('modern', 1), ('ideal', 1)]
[('nan', 1)]
[('comprehensive', 1), ('accessible', 1), ('textbook', 1), ('introduces', 1), ('student', 1), ('basic', 1), ('modern', 1), ('signal', 1), ('processing', 1), ('technique', 1)]
[('comprehensive', 1), ('treatment', 1), ('fundamental', 1), ('concept', 1), ('computer', 1), ('science', 1), ('mathematics', 1), ('field', 1)]
[('book', 1), ('provides', 1), ('comprehensive', 1), ('treatment', 1), ('methodology', 1), ('application', 1), ('including', 1), ('cdma', 1), ('telephony', 1), ('coded', 1), ('radar', 1), ('stream', 1), ('cipher', 1), ('generation', 1)]
[('step', 2), ('revit', 2), ('architecture', 2), ('updated', 1), ('edition', 1), ('popular', 1), ('tutorial', 1), ('shortly', 1), ('first', 1), ('publication', 1), ('autodesk', 1), ('experience', 1), ('required', 1)]
[('design', 3), ('user', 2), ('web', 2), ('site', 2), ('experience', 1), ('discipline', 1), ('creating', 1), ('useful', 1), ('usable', 1), ('application', 1), ('easily', 1), ('navigated', 1), ('meet', 1), ('need', 1), ('owner', 1), ('lot', 1), ('successful', 1), ('ux', 1), ('knowing', 1), ('latest', 1), ('technology', 1), ('trend', 1), ('take', 1), ('diplomacy', 1), ('project', 1), ('management', 1), ('skill', 1)]
[('internet', 2), ('thing', 2), ('need', 2), ('connect', 2), ('change', 1), ('life', 1), ('know', 1), ('plain', 1), ('english', 1), ('iot', 1), ('smart', 1), ('home', 1), ('appliance', 1), ('car', 1), ('office', 1), ('factory', 1), ('city', 1), ('world', 1)]
[('ai', 3), ('feature', 3), ('based', 2), ('swift', 2), ('create', 1), ('implement', 1), ('apps', 1), ('io', 1), ('macos', 1), ('tvos', 1), ('watchos', 1), ('practical', 1), ('book', 1), ('programmer', 1), ('developer', 1), ('kind', 1), ('find', 1), ('stop', 1), ('shop', 1), ('machine', 1), ('learning', 1), ('taking', 1), ('task', 1), ('approach', 1), ('learn', 1), ('build', 1), ('use', 1), ('powerful', 1), ('identify', 1), ('image', 1), ('make', 1)]
[('good', 2), ('design', 2), ('understand', 2), ('software', 1), ('simple', 1), ('easy', 1), ('unfortunately', 1), ('average', 1), ('computer', 1), ('program', 1), ('today', 1), ('complex', 1), ('possibly', 1), ('comprehend', 1), ('code', 1), ('work', 1), ('concise', 1), ('guide', 1), ('help', 1), ('fundamental', 1), ('scientific', 1), ('law', 1), ('principle', 1), ('apply', 1), ('programming', 1), ('language', 1), ('project', 1)]
[('app', 4), ('apps', 2), ('inventor', 2), ('step', 2), ('yes', 1), ('create', 1), ('android', 1), ('device', 1), ('easy', 1), ('extraordinary', 1), ('book', 1), ('introduces', 1), ('powerful', 1), ('visual', 1), ('tool', 1), ('let', 1), ('anyone', 1), ('build', 1), ('learn', 1), ('basic', 1), ('hand', 1), ('instruction', 1), ('building', 1), ('dozen', 1), ('fun', 1), ('project', 1), ('including', 1), ('text', 1), ('answering', 1), ('machine', 1), ('quiz', 1)]
[('neural', 2), ('network', 2), ('end', 2), ('roughly', 1), ('inspired', 1), ('human', 1), ('brain', 1), ('deep', 1), ('trained', 1), ('large', 1), ('amount', 1), ('data', 1), ('solve', 1), ('complex', 1), ('task', 1), ('unprecedented', 1), ('accuracy', 1), ('practical', 1), ('book', 1), ('provides', 1), ('guide', 1), ('tensorflow', 1), ('leading', 1), ('open', 1), ('source', 1), ('software', 1), ('library', 1), ('help', 1), ('build', 1), ('train', 1), ('computer', 1), ('vision', 1), ('natural', 1), ('language', 1), ('processing', 1)]
[('mathematical', 1), ('introduction', 1), ('logic', 1)]
[('nan', 1)]
[('nan', 1)]
[('lisp', 3), ('language', 2), ('treat', 1), ('commercial', 1), ('application', 1), ('academic', 1), ('ai', 1), ('concern', 1), ('considered', 1), ('secondary', 1), ('text', 1), ('course', 1), ('school', 1), ('teach', 1), ('appeal', 1), ('student', 1), ('sat', 1)]
[('foundation', 2), ('level', 2), ('book', 1), ('excellent', 1), ('helpful', 1), ('date', 1), ('resource', 1), ('candidate', 1), ('preparing', 1), ('istqb', 1), ('certification', 1), ('exam', 1), ('based', 1), ('new', 1), ('syllabus', 1), ('although', 1), ('plenty', 1), ('sample', 1), ('question', 1), ('information', 1)]
[('book', 1), ('describes', 1), ('theoretical', 1), ('advance', 1), ('study', 1), ('artificial', 1), ('neural', 1), ('network', 1)]
[('best', 2), ('selling', 2), ('dummy', 2), ('book', 1), ('make', 1), ('easier', 1), ('th', 1), ('edition', 1), ('guide', 1), ('market', 1), ('fully', 1), ('revised', 1), ('update', 1)]
[('photoshop', 2), ('element', 2), ('picture', 1), ('perfect', 1), ('result', 1), ('reputation', 1), ('delivering', 1), ('photo', 1), ('editing', 1), ('power', 1), ('non', 1), ('professional', 1), ('photographer', 1)]
[('seeking', 3), ('agile', 1), ('project', 1), ('architectural', 1), ('root', 1), ('struggle', 1), ('complexity', 1), ('scale', 1), ('lightweight', 1), ('way', 1), ('still', 1), ('book', 1)]
[('canon', 2), ('eos', 2), ('camera', 2), ('excited', 1), ('amazing', 1), ('photo', 1), ('begin', 1), ('quality', 1), ('know', 1), ('use', 1), ('selected', 1), ('digital', 1)]
[('excel', 2), ('new', 2), ('maximize', 1), ('experience', 1), ('using', 1), ('vba', 1), ('application', 1), ('development', 1), ('boast', 1), ('updated', 1), ('feature', 1), ('enhanced', 1), ('power', 1), ('capability', 1), ('naturally', 1), ('mean', 1), ('john', 1), ('walkenbach', 1), ('return', 1)]
[('solidworks', 2), ('reference', 2), ('tutorial', 2), ('complete', 1), ('beginner', 1), ('advanced', 1), ('technique', 1), ('mastering', 1), ('user', 1), ('packed', 1)]
[('coverage', 2), ('effective', 1), ('study', 1), ('guide', 1), ('offer', 1), ('comprehensive', 1), ('topic', 1), ('comprising', 1), ('enterprise', 1), ('architecture', 1), ('body', 1), ('knowledge', 1), ('book', 1), ('provides', 1), ('detailed', 1), ('lay', 1), ('actionable', 1), ('methodology', 1), ('best', 1), ('practice', 1), ('create', 1), ('maintain', 1), ('successful', 1), ('ea', 1), ('model', 1), ('artifact', 1), ('building', 1), ('block', 1), ('help', 1), ('prepare', 1), ('reader', 1), ('take', 1), ('various', 1)]
[('mobile', 3), ('forensic', 3), ('investigation', 3), ('guide', 2), ('master', 1), ('tool', 1), ('technique', 1), ('conduct', 1), ('legal', 1), ('ethical', 1), ('highly', 1), ('effective', 1), ('using', 1), ('detailed', 1), ('information', 1), ('contained', 1), ('practical', 1), ('evidence', 1), ('collection', 1), ('analysis', 1), ('presentation', 1), ('second', 1), ('edition', 1), ('fully', 1), ('explains', 1)]
[('program', 2), ('concept', 2), ('programming', 2), ('looking', 1), ('reliable', 1), ('way', 1), ('learn', 1), ('without', 1), ('overwhelmed', 1), ('confusing', 1), ('head', 1), ('first', 1), ('introduces', 1), ('core', 1), ('writing', 1), ('computer', 1), ('variable', 1), ('decision', 1), ('loop', 1), ('function', 1), ('object', 1), ('apply', 1), ('regardless', 1), ('language', 1), ('book', 1), ('offer', 1), ('concrete', 1), ('example', 1)]
[('new', 3), ('edition', 2), ('primer', 1), ('plus', 1), ('approachable', 1), ('yet', 1), ('technically', 1), ('rigorous', 1), ('guide', 1), ('programmer', 1), ('language', 1), ('update', 1), ('important', 1), ('feature', 1), ('added', 1), ('standard', 1), ('keeping', 1), ('style', 1), ('approach', 1), ('made', 1), ('previous', 1), ('popular', 1), ('contains', 1), ('extensive', 1), ('code', 1), ('sample', 1), ('exercise', 1)]
[('programmer', 3), ('python', 2), ('professional', 1), ('deitel', 1), ('guide', 1), ('introductory', 1), ('artificial', 1), ('intelligence', 1), ('case', 1), ('study', 1), ('written', 1), ('background', 1), ('another', 1), ('high', 1), ('level', 1), ('language', 1), ('us', 1), ('hand', 1), ('instruction', 1), ('teach', 1)]
[('agile', 4), ('martin', 3), ('principle', 2), ('robert', 2), ('programmer', 2), ('award', 1), ('winning', 1), ('book', 1), ('software', 1), ('development', 1), ('pattern', 1), ('practice', 1), ('helped', 1), ('bring', 1), ('ten', 1), ('thousand', 1), ('java', 1), ('net', 1), ('definitive', 1), ('guide', 1), ('method', 1), ('completely', 1), ('updated', 1), ('volume', 1), ('micah', 1)]
[('designing', 1), ('effective', 1), ('architecture', 1), ('best', 1), ('strategy', 1), ('managing', 1), ('project', 1), ('complexity', 1), ('improving', 1), ('result', 1), ('principle', 1), ('practice', 1), ('software', 1), ('architecting', 1), ('author', 1), ('call', 1), ('science', 1), ('hard', 1), ('decision', 1), ('evolving', 1), ('cloud', 1), ('mobile', 1), ('shift', 1), ('fully', 1), ('revised', 1), ('updated', 1), ('book', 1), ('share', 1), ('knowledge', 1)]
[('emacs', 6), ('gnu', 4), ('editor', 3), ('popular', 1), ('widespread', 1), ('family', 1), ('powerful', 1), ('flexible', 1), ('unlike', 1), ('text', 1), ('complete', 1), ('working', 1), ('environment', 1), ('stay', 1), ('within', 1), ('day', 1), ('without', 1), ('leaving', 1), ('learning', 1), ('rd', 1), ('edition', 1), ('tell', 1), ('reader', 1), ('started', 1)]
[('php', 4), ('server', 2), ('want', 1), ('started', 1), ('book', 1), ('essential', 1), ('author', 1), ('david', 1), ('sklar', 1), ('cookbook', 1), ('guide', 1), ('aspect', 1), ('language', 1), ('need', 1), ('build', 1), ('dynamic', 1), ('side', 1), ('website', 1), ('exploring', 1), ('feature', 1), ('exciting', 1), ('enhancement', 1), ('latest', 1), ('release', 1), ('learn', 1), ('work', 1), ('web', 1), ('browser', 1), ('database', 1)]
[('search', 4), ('pattern', 2), ('experience', 2), ('saying', 1), ('delight', 1), ('thoughtful', 1), ('thought', 1), ('provoking', 1), ('comprehensive', 1), ('survey', 1), ('designing', 1), ('effective', 1), ('seen', 1), ('irene', 1), ('au', 1), ('director', 1), ('user', 1), ('google', 1), ('love', 1), ('book', 1), ('thanks', 1), ('peter', 1), ('jeffery', 1), ('know', 1), ('yes', 1)]
[('programmer', 1), ('thing', 1), ('common', 1), ('learning', 1), ('new', 1), ('language', 1), ('fact', 1), ('alone', 1), ('brings', 1), ('challenge', 1), ('frustration', 1), ('constant', 1), ('demand', 1), ('patience', 1), ('matter', 1), ('good', 1), ('reference', 1), ('book', 1), ('always', 1), ('stop', 1), ('thumb', 1), ('hundred', 1), ('page', 1), ('find', 1), ('piece', 1), ('information', 1), ('need', 1), ('answer', 1)]
[('perl', 6), ('tk', 4), ('programming', 2), ('marriage', 1), ('graphical', 1), ('toolkit', 1), ('powerful', 1), ('language', 1), ('used', 1), ('primarily', 1), ('system', 1), ('administration', 1), ('web', 1), ('database', 1), ('manipulation', 1), ('build', 1), ('program', 1), ('attractive', 1), ('intuitive', 1), ('gui', 1), ('interface', 1), ('power', 1), ('behind', 1), ('mastering', 1), ('bible', 1)]
[('network', 3), ('business', 2), ('phone', 2), ('local', 2), ('today', 1), ('receive', 1), ('service', 1), ('internet', 1), ('instead', 1), ('company', 1), ('line', 1), ('many', 1), ('using', 1), ('internal', 1), ('wide', 1), ('area', 1), ('infrastructure', 1), ('replace', 1), ('legacy', 1), ('enterprise', 1), ('telephone', 1), ('migration', 1), ('single', 1), ('carrying', 1), ('voice', 1), ('data', 1), ('called', 1), ('convergence', 1)]
[('language', 3), ('ruby', 2), ('programming', 2), ('guide', 2), ('authoritative', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('version', 1), ('written', 1), ('illustrated', 1), ('team', 1), ('david', 1), ('flanagan', 1), ('bestselling', 1), ('author', 1), ('bible', 1), ('including', 1), ('javascript', 1), ('definitive', 1), ('java', 1), ('nutshell', 1)]
[('exam', 3), ('new', 2), ('ee', 2), ('looking', 1), ('study', 1), ('sun', 1), ('certified', 1), ('web', 1), ('component', 1), ('developer', 1), ('scwcd', 1), ('book', 1), ('way', 1), ('speed', 1), ('technology', 1), ('know', 1), ('fact', 1), ('pas', 1), ('brand', 1), ('want', 1), ('maybe', 1), ('care', 1), ('need', 1), ('use', 1), ('servlets', 1), ('jsps', 1)]
[('visual', 2), ('studio', 2), ('head', 1), ('first', 1), ('complete', 1), ('learning', 1), ('experience', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('ide', 1), ('built', 1), ('brain', 1), ('book', 1), ('cover', 1), ('teach', 1), ('everything', 1), ('language', 1), ('fundamental', 1), ('advanced', 1), ('topic', 1), ('including', 1), ('garbage', 1), ('collection', 1), ('extension', 1), ('method', 1), ('double', 1), ('buffered', 1), ('animation', 1)]
[('early', 1), ('day', 1), ('twitter', 1), ('flickr', 1), ('etsy', 1), ('many', 1), ('company', 1), ('experienced', 1), ('sudden', 1), ('spike', 1), ('activity', 1), ('took', 1), ('web', 1), ('service', 1), ('minute', 1), ('today', 1), ('determining', 1), ('capacity', 1), ('need', 1), ('handling', 1), ('traffic', 1), ('surge', 1), ('still', 1), ('common', 1), ('frustration', 1), ('operation', 1), ('engineer', 1), ('software', 1), ('developer', 1), ('hand', 1), ('guide', 1), ('provides', 1)]
[('apple', 2), ('macos', 2), ('system', 2), ('new', 2), ('high', 1), ('sierra', 1), ('taken', 1), ('operating', 1), ('height', 1), ('efficient', 1), ('file', 1), ('improved', 1), ('video', 1), ('streaming', 1), ('support', 1), ('virtual', 1), ('reality', 1), ('latest', 1), ('version', 1), ('provides', 1), ('feature', 1), ('improve', 1), ('experience', 1), ('david', 1), ('pogue', 1), ('brings', 1), ('humor', 1), ('expertise', 1), ('bestselling', 1), ('mac', 1), ('book', 1), ('whether', 1)]
[('web', 2), ('javascript', 2), ('brisk', 1), ('introduction', 1), ('building', 1), ('fast', 1), ('interactive', 1), ('single', 1), ('page', 1), ('application', 1), ('vue', 1), ('j', 1), ('popular', 1), ('framework', 1), ('organizes', 1), ('simplifies', 1), ('development', 1), ('practical', 1), ('guide', 1), ('quickly', 1), ('move', 1), ('basic', 1), ('custom', 1), ('component', 1), ('advanced', 1), ('feature', 1), ('including', 1), ('jsx', 1), ('syntax', 1), ('extension', 1), ('author', 1), ('callum', 1)]
[('system', 3), ('company', 1), ('work', 1), ('hard', 1), ('avoid', 1), ('costly', 1), ('failure', 1), ('complex', 1), ('better', 1), ('approach', 1), ('embrace', 1), ('learn', 1), ('chaos', 1), ('engineering', 1), ('proactively', 1), ('hunt', 1), ('evidence', 1), ('weakness', 1), ('trigger', 1), ('crisis', 1), ('practical', 1), ('book', 1), ('show', 1), ('software', 1), ('developer', 1), ('administrator', 1), ('plan', 1), ('run', 1), ('successful', 1)]
[('scrum', 2), ('experience', 2), ('improve', 1), ('understanding', 1), ('proven', 1), ('collected', 1), ('wisdom', 1), ('expert', 1), ('around', 1), ('world', 1), ('based', 1), ('real', 1), ('life', 1), ('essay', 1), ('unique', 1), ('book', 1), ('provide', 1), ('wealth', 1), ('knowledge', 1), ('expertise', 1), ('established', 1), ('practitioner', 1), ('dealt', 1), ('specific', 1), ('problem', 1), ('challenge', 1), ('find', 1)]
[('computer', 2), ('sixth', 2), ('edition', 2), ('architecture', 1), ('quantitative', 1), ('approach', 1), ('considered', 1), ('essential', 1), ('reading', 1), ('instructor', 1), ('student', 1), ('practitioner', 1), ('design', 1), ('year', 1), ('classic', 1), ('textbook', 1), ('hennessy', 1)]
[('violent', 1), ('python', 1), ('show', 1), ('move', 1), ('theoretical', 1), ('understanding', 1), ('offensive', 1), ('computing', 1), ('concept', 1), ('practical', 1), ('implementation', 1), ('instead', 1), ('relying', 1), ('another', 1), ('attacker', 1), ('tool', 1), ('book', 1), ('teach', 1), ('forge', 1), ('weapon', 1), ('using', 1)]
[('managing', 1), ('data', 1), ('continues', 1), ('grow', 1), ('necessity', 1), ('modern', 1), ('organization', 1), ('seemingly', 1), ('infinite', 1), ('opportunity', 1), ('organic', 1), ('growth', 1), ('reduction', 1), ('cost', 1), ('creation', 1), ('new', 1), ('product', 1), ('service', 1), ('become', 1), ('apparent', 1), ('none', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('code', 4), ('coding', 2), ('write', 1), ('clean', 1), ('concise', 1), ('point', 1), ('others', 1), ('pleasure', 1), ('reuse', 1), ('comparing', 1), ('expert', 1), ('programmer', 1), ('way', 1), ('improve', 1), ('skill', 1), ('hand', 1), ('advice', 1), ('level', 1), ('style', 1), ('small', 1), ('understandable', 1), ('example', 1), ('compare', 1), ('flawed', 1), ('improved', 1), ('solution', 1)]
[('using', 2), ('enthusiastic', 1), ('introduction', 1), ('provides', 1), ('support', 1), ('excel', 1), ('beginner', 1), ('focus', 1), ('program', 1), ('immediately', 1), ('maximum', 1), ('efficiency', 1), ('screenshots', 1), ('explicit', 1), ('information', 1), ('everything', 1), ('row', 1), ('column', 1), ('cell', 1), ('subtotaling', 1), ('sorting', 1), ('pivot', 1), ('table', 1), ('guide', 1), ('aim', 1), ('alleviate', 1), ('frustration', 1), ('come', 1)]
[('science', 1), ('world', 1), ('luminary', 1), ('john', 1), ('brockman', 1), ('assembles', 1), ('twenty', 1), ('five', 1), ('important', 1), ('scientific', 1), ('mind', 1), ('thinking', 1), ('field', 1), ('artificial', 1), ('intelligence', 1), ('career', 1), ('unparalleled', 1), ('round', 1), ('table', 1), ('examination', 1)]
[('using', 1), ('example', 1), ('building', 1), ('intuition', 1), ('friendly', 1), ('guide', 1), ('help', 1), ('reader', 1), ('understand', 1), ('use', 1), ('probabilistic', 1), ('tool', 1), ('basic', 1), ('sophisticated', 1)]
[('search', 2), ('focus', 1), ('human', 1), ('user', 1), ('engine', 1), ('tool', 1), ('available', 1), ('interaction', 1), ('visualization', 1)]
[('machine', 2), ('learning', 2), ('time', 2), ('series', 2), ('learn', 1), ('apply', 1), ('principle', 1), ('modeling', 1), ('indispensable', 1), ('resource', 1), ('forecasting', 1)]
[('web', 3), ('design', 2), ('speed', 1), ('newest', 1), ('technology', 1), ('tool', 1), ('possibility', 1), ('idea', 1), ('site', 1), ('know', 1), ('begin', 1), ('dummy', 1), ('rd', 1), ('edition', 1)]
[('user', 2), ('experience', 2), ('strategy', 2), ('ux', 2), ('speed', 1), ('quickly', 1), ('latest', 1), ('design', 1), ('dummy', 1), ('hand', 1), ('guide', 1), ('developing', 1), ('implementing', 1), ('written', 1), ('globally', 1), ('recognized', 1), ('consultant', 1), ('essential', 1), ('resource', 1)]
[('apps', 2), ('create', 1), ('awesome', 1), ('io', 1), ('android', 1), ('single', 1), ('tool', 1), ('flutter', 1), ('app', 1), ('developer', 1), ('dream', 1), ('come', 1), ('true', 1), ('google', 1), ('open', 1), ('source', 1), ('toolkit', 1), ('easily', 1), ('build', 1), ('beautiful', 1), ('work', 1), ('across', 1)]
[('tableau', 2), ('transform', 1), ('organization', 1), ('data', 1), ('actionable', 1), ('insight', 1), ('designed', 1), ('specifically', 1), ('provide', 1), ('fast', 1), ('easy', 1), ('visual', 1), ('analytics', 1), ('intuitive', 1), ('drag', 1), ('drop', 1), ('interface', 1), ('help', 1), ('create', 1), ('interactive', 1)]
[('blockchain', 2), ('unravel', 1), ('mystery', 1), ('blockchains', 1), ('technology', 1), ('disrupting', 1), ('world', 1), ('biggest', 1), ('industry', 1), ('dummy', 1), ('provides', 1), ('fast', 1), ('way', 1), ('catch', 1)]
[('information', 3), ('security', 2), ('system', 2), ('expert', 1), ('guide', 1), ('business', 1), ('consumer', 1), ('become', 1), ('dependent', 1), ('complex', 1), ('multinational', 1), ('need', 1), ('understand', 1), ('devise', 1), ('sound', 1), ('never', 1), ('greater', 1), ('title', 1), ('take', 1)]
[('element', 2), ('graphic', 2), ('canvas', 1), ('revolutionary', 1), ('feature', 1), ('html', 1), ('enables', 1), ('powerful', 1), ('rich', 1), ('internet', 1), ('application', 1), ('pocket', 1), ('reference', 1), ('provides', 1), ('essential', 1), ('need', 1), ('put', 1), ('work', 1), ('working', 1), ('knowledge', 1), ('javascript', 1), ('book', 1), ('help', 1), ('create', 1), ('detailed', 1), ('interactive', 1), ('animated', 1), ('chart', 1)]
[('game', 3), ('project', 2), ('book', 2), ('step', 2), ('hour', 1), ('reader', 1), ('learn', 1), ('started', 1), ('developing', 1), ('unity', 1), ('approach', 1), ('hand', 1), ('modular', 1), ('chapter', 1), ('cover', 1), ('essential', 1), ('component', 1), ('development', 1), ('process', 1), ('topic', 1), ('illustrated', 1), ('sample', 1), ('concludes', 1), ('complete', 1), ('straightforward', 1)]
[('power', 4), ('query', 3), ('data', 2), ('using', 1), ('import', 1), ('reshape', 1), ('cleanse', 1), ('simple', 1), ('interface', 1), ('mine', 1), ('hidden', 1), ('insight', 1), ('embedded', 1), ('excel', 1), ('bi', 1), ('microsoft', 1), ('product', 1), ('leading', 1)]
[('product', 5), ('agile', 3), ('scrum', 3), ('management', 2), ('leading', 1), ('consultant', 1), ('roman', 1), ('pichler', 1), ('us', 1), ('real', 1), ('world', 1), ('example', 1), ('demonstrate', 1), ('owner', 1), ('create', 1), ('successful', 1), ('describes', 1), ('broad', 1), ('range', 1), ('practice', 1), ('including', 1), ('making', 1), ('discovery', 1), ('work', 1), ('taking', 1), ('advantage', 1), ('emergent', 1), ('requirement', 1), ('creating', 1)]
[('many', 2), ('nbsp', 2), ('bible', 1), ('fundamental', 1), ('algorithm', 1), ('work', 1), ('taught', 1), ('today', 1), ('software', 1), ('developer', 1), ('know', 1), ('computer', 1), ('programming', 1), ('byte', 1), ('september', 1), ('begin', 1), ('tell', 1), ('pleasurable', 1), ('hour', 1)]
[('algorithm', 2), ('robert', 1), ('sedgewick', 1), ('thoroughly', 1), ('rewritten', 1), ('substantially', 1), ('expanded', 1), ('popular', 1), ('work', 1), ('provide', 1), ('current', 1), ('comprehensive', 1), ('coverage', 1), ('important', 1), ('data', 1), ('structure', 1), ('many', 1), ('new', 1), ('presented', 1), ('explanation', 1)]
[('new', 3), ('edition', 2), ('devops', 2), ('chapter', 1), ('rd', 1), ('practice', 1), ('system', 1), ('network', 1), ('administration', 1), ('innovates', 1), ('yet', 1), ('revised', 1), ('thousand', 1), ('update', 1), ('clarification', 1), ('based', 1), ('reader', 1), ('feedback', 1), ('incorporates', 1), ('strategy', 1), ('even', 1), ('non', 1), ('environment', 1), ('nbsp', 1), ('whether', 1), ('use', 1), ('linux', 1), ('unix', 1), ('window', 1)]
[('knuth', 2), ('analysis', 2), ('multivolume', 1), ('algorithm', 1), ('widely', 1), ('recognised', 1), ('definitive', 1), ('description', 1), ('classical', 1), ('computer', 1), ('science', 1), ('first', 1), ('three', 1), ('volume', 1), ('work', 1), ('long', 1), ('comprised', 1), ('unique', 1), ('invaluable', 1), ('resource', 1), ('programming', 1), ('theory', 1), ('practice', 1), ('scientist', 1), ('marvelled', 1), ('beauty', 1), ('elegance', 1), ('practicing', 1)]
[('tcp', 4), ('ip', 4), ('illustrated', 2), ('ongoing', 1), ('series', 1), ('covering', 1), ('many', 1), ('facet', 1), ('brings', 1), ('highly', 1), ('effective', 1), ('visual', 1), ('approach', 1), ('learning', 1), ('networking', 1), ('protocol', 1), ('suite', 1), ('volume', 1), ('contains', 1), ('thorough', 1), ('explanation', 1)]
[('ubuntu', 4), ('linux', 2), ('edition', 2), ('new', 2), ('cover', 1), ('unleashed', 1), ('filled', 1), ('unique', 1), ('advanced', 1), ('information', 1), ('everyone', 1), ('want', 1), ('make', 1), ('operating', 1), ('system', 1), ('thoroughly', 1), ('updated', 1), ('long', 1), ('time', 1), ('user', 1), ('early', 1), ('community', 1), ('leader', 1), ('reflect', 1), ('exciting', 1), ('lts', 1)]
[('powerful', 2), ('photographer', 2), ('adobe', 1), ('photoshop', 1), ('lightroom', 1), ('classic', 1), ('cc', 1), ('tool', 1), ('digital', 1), ('toolset', 1), ('offering', 1), ('editing', 1), ('feature', 1), ('streamlined', 1), ('interface', 1), ('let', 1), ('import', 1), ('sort', 1), ('organize', 1), ('image', 1)]
[('adobe', 4), ('training', 3), ('photoshop', 2), ('book', 2), ('series', 2), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('lightroom', 1), ('classic', 1), ('classroom', 1), ('best', 1), ('selling', 1), ('hand', 1), ('software', 1), ('workbook', 1), ('offer', 1), ('program', 1), ('official', 1), ('developed', 1), ('support', 1), ('product', 1), ('expert', 1)]
[('voice', 1), ('user', 1), ('interface', 1), ('vuis', 1), ('becoming', 1), ('rage', 1), ('today', 1), ('build', 1), ('actually', 1), ('converse', 1), ('whether', 1), ('designing', 1), ('mobile', 1), ('app', 1), ('toy', 1), ('device', 1), ('home', 1), ('assistant', 1), ('practical', 1), ('book', 1), ('guide', 1), ('basic', 1), ('vui', 1), ('design', 1), ('principle', 1), ('help', 1), ('choose', 1), ('right', 1), ('speech', 1), ('recognition', 1), ('engine', 1), ('show', 1)]
[('review', 2), ('project', 2), ('edition', 2), ('medium', 1), ('management', 1), ('year', 1), ('considered', 1), ('subject', 1), ('matter', 1), ('expert', 1), ('pmbok', 1), ('guide', 1), ('third', 1), ('primarily', 1), ('manager', 1), ('led', 1), ('team', 1), ('developed', 1), ('consultant', 1), ('hired', 1), ('evaluate', 1), ('eight', 1), ('top', 1), ('selling', 1), ('pmp', 1), ('exam', 1), ('preparation', 1), ('book', 1)]
[('oracle', 4), ('written', 1), ('insider', 1), ('indispensable', 1), ('guide', 1), ('distills', 1), ('enormous', 1), ('amount', 1), ('information', 1), ('database', 1), ('compact', 1), ('volume', 1), ('ideal', 1), ('novice', 1), ('experienced', 1), ('dba', 1), ('developer', 1), ('manager', 1), ('user', 1), ('essential', 1), ('walk', 1), ('technology', 1), ('feature', 1), ('product', 1), ('line', 1), ('including', 1), ('architecture', 1), ('data', 1)]
[('machine', 2), ('learning', 2), ('experienced', 1), ('programmer', 1), ('interested', 1), ('crunching', 1), ('data', 1), ('book', 1), ('started', 1), ('toolkit', 1), ('algorithm', 1), ('enables', 1), ('computer', 1), ('train', 1), ('automate', 1), ('useful', 1), ('task', 1), ('author', 1), ('drew', 1), ('conway', 1), ('john', 1), ('myles', 1), ('white', 1), ('help', 1), ('understand', 1), ('statistic', 1), ('tool', 1), ('series', 1), ('hand', 1), ('case', 1)]
[('experience', 2), ('web', 2), ('want', 1), ('learn', 1), ('create', 1), ('user', 1), ('today', 1), ('book', 1), ('ui', 1), ('expert', 1), ('bill', 1), ('scott', 1), ('theresa', 1), ('neil', 1), ('present', 1), ('design', 1), ('pattern', 1), ('building', 1), ('interface', 1), ('provide', 1), ('rich', 1), ('interaction', 1), ('distilled', 1), ('author', 1), ('year', 1), ('sabre', 1), ('yahoo', 1), ('netflix', 1), ('best', 1), ('practice', 1), ('grouped', 1), ('six', 1), ('key', 1)]
[('unix', 3), ('open', 1), ('operating', 1), ('system', 1), ('improved', 1), ('anyone', 1), ('everyone', 1), ('individual', 1), ('company', 1), ('university', 1), ('result', 1), ('nature', 1), ('altered', 1), ('year', 1), ('numerous', 1), ('extension', 1), ('formulated', 1), ('assortment', 1), ('version', 1), ('today', 1), ('encompasses', 1), ('everything', 1), ('sun', 1), ('solaris', 1), ('apple', 1), ('mac', 1), ('o', 1)]
[('claim', 2), ('many', 1), ('made', 1), ('certain', 1), ('tool', 1), ('technology', 1), ('practice', 1), ('improve', 1), ('software', 1), ('development', 1), ('verifiable', 1), ('merely', 1), ('wishful', 1), ('thinking', 1), ('book', 1), ('leading', 1), ('thinker', 1), ('steve', 1), ('mcconnell', 1), ('barry', 1), ('boehm', 1), ('barbara', 1), ('kitchenham', 1), ('offer', 1), ('essay', 1), ('uncover', 1), ('truth', 1), ('unmask', 1), ('myth', 1), ('commonly', 1), ('held', 1), ('among', 1)]
[('dns', 2), ('bind', 2), ('cookbook', 2), ('solution', 2), ('problem', 2), ('name', 2), ('server', 2), ('present', 1), ('many', 1), ('faced', 1), ('network', 1), ('administrator', 1), ('responsible', 1), ('following', 1), ('reilly', 1), ('popular', 1), ('format', 1), ('title', 1), ('indispensable', 1), ('companion', 1), ('th', 1), ('edition', 1), ('definitive', 1), ('guide', 1), ('critical', 1), ('task', 1), ('administration', 1)]
[('html', 4), ('language', 3), ('markup', 2), ('web', 2), ('wild', 1), ('ride', 1), ('sure', 1), ('started', 1), ('mere', 1), ('recently', 1), ('put', 1), ('major', 1), ('muscle', 1), ('tuned', 1), ('building', 1), ('application', 1), ('storage', 1), ('drawing', 1), ('offline', 1), ('support', 1), ('socket', 1), ('thread', 1), ('speak', 1), ('go', 1), ('beyond', 1)]
[('computer', 2), ('vision', 2), ('want', 1), ('basic', 1), ('understanding', 1), ('underlying', 1), ('theory', 1), ('algorithm', 1), ('hand', 1), ('introduction', 1), ('ideal', 1), ('place', 1), ('start', 1), ('learn', 1), ('technique', 1), ('object', 1), ('recognition', 1), ('reconstruction', 1), ('stereo', 1), ('imaging', 1), ('augmented', 1), ('reality', 1), ('application', 1), ('follow', 1), ('clear', 1), ('example', 1), ('written', 1), ('python', 1), ('programming', 1)]
[('email', 3), ('application', 2), ('javamail', 2), ('send', 1), ('receive', 1), ('java', 1), ('using', 1), ('api', 1), ('concise', 1), ('book', 1), ('learn', 1), ('communicate', 1), ('existing', 1), ('smtp', 1), ('pop', 1), ('imap', 1), ('server', 1), ('write', 1), ('whether', 1), ('need', 1), ('build', 1), ('centric', 1), ('mailing', 1), ('list', 1), ('manager', 1), ('simply', 1), ('add', 1), ('notification', 1), ('larger', 1), ('product', 1)]
[('application', 2), ('json', 1), ('becoming', 1), ('backbone', 1), ('meaningful', 1), ('data', 1), ('interchange', 1), ('internet', 1), ('format', 1), ('supported', 1), ('entire', 1), ('ecosystem', 1), ('standard', 1), ('tool', 1), ('technology', 1), ('building', 1), ('truly', 1), ('elegant', 1), ('useful', 1), ('efficient', 1), ('hand', 1), ('guide', 1), ('author', 1), ('architect', 1), ('tom', 1), ('marrs', 1), ('show', 1), ('build', 1), ('enterprise', 1), ('class', 1)]
[('started', 2), ('raku', 2), ('perl', 2), ('web', 2), ('ready', 1), ('formerly', 1), ('book', 1), ('want', 1), ('whether', 1), ('programmer', 1), ('system', 1), ('administrator', 1), ('hacker', 1), ('new', 1), ('language', 1), ('modern', 1), ('reinvention', 1), ('suitable', 1), ('almost', 1), ('task', 1), ('short', 1), ('fix', 1), ('complete', 1), ('application', 1), ('hand', 1), ('tutorial', 1), ('get', 1), ('author', 1), ('brian', 1), ('foy', 1)]
[('window', 2), ('feature', 2), ('system', 2), ('update', 1), ('add', 1), ('host', 1), ('new', 1), ('improved', 1), ('microsoft', 1), ('flagship', 1), ('operating', 1), ('jargon', 1), ('free', 1), ('guide', 1), ('help', 1), ('every', 1), ('component', 1), ('depth', 1), ('missing', 1), ('manual', 1), ('cover', 1), ('entire', 1), ('introduces', 1), ('latest', 1), ('professional', 1), ('enterprise', 1), ('education', 1), ('home', 1)]
[('enumerative', 2), ('combinatorics', 2), ('text', 2), ('introduction', 1), ('analytic', 1), ('fill', 1), ('gap', 1), ('introductory', 1), ('discrete', 1), ('mathematics', 1), ('advanced', 1), ('graduate', 1), ('book', 1), ('first', 1), ('deal', 1), ('basic', 1), ('counting', 1), ('principle', 1), ('composition', 1), ('partition', 1), ('generating', 1), ('function', 1), ('focus', 1), ('structure', 1), ('permutation', 1), ('graph', 1), ('enumerat', 1)]
[('sysml', 3), ('practical', 2), ('guide', 2), ('third', 1), ('edition', 1), ('fully', 1), ('updated', 1), ('version', 1), ('provides', 1), ('comprehensive', 1), ('modeling', 1), ('system', 1), ('unique', 1), ('perspective', 1), ('leading', 1), ('contributor', 1), ('language', 1), ('friedenthal', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('lt', 5), ('gt', 5), ('native', 2), ('develop', 1), ('io', 1), ('android', 1), ('apps', 1), ('ease', 1), ('using', 1), ('react', 1), ('learn', 1), ('example', 1), ('driven', 1), ('approach', 1), ('substantial', 1), ('running', 1), ('app', 1), ('end', 1), ('chapter', 1), ('second', 1), ('edition', 1)]
[('immerse', 1), ('learning', 1), ('python', 1), ('introductory', 1), ('data', 1), ('analytics', 1), ('book', 1), ('project', 1), ('based', 1), ('approach', 1), ('structure', 1), ('ten', 1), ('week', 1), ('coding', 1), ('bootcamp', 1), ('course', 1), ('learn', 1), ('key', 1), ('concept', 1), ('gain', 1), ('hand', 1), ('experience', 1), ('weekly', 1)]
[('innovative', 1), ('textbook', 1), ('present', 1), ('experiential', 1), ('holistic', 1), ('approach', 1), ('multimedia', 1), ('computing', 1), ('along', 1), ('practical', 1), ('algorithm', 1)]
[('depth', 1), ('tutorial', 1), ('student', 1), ('researcher', 1), ('developer', 1), ('cover', 1), ('foundation', 1), ('plus', 1), ('application', 1), ('ranging', 1), ('search', 1), ('multimedia', 1)]
[('cryptography', 2), ('world', 1), ('renowned', 1), ('security', 1), ('technologist', 1), ('bruce', 1), ('schneier', 1), ('th', 1), ('anniversary', 1), ('edition', 1), ('definitive', 1), ('reference', 1), ('published', 1), ('seminal', 1), ('work', 1), ('cryptographic', 1), ('technique', 1)]
[('revit', 2), ('guide', 2), ('real', 2), ('tutorial', 1), ('based', 1), ('project', 1), ('workflow', 1), ('autodesk', 1), ('architecture', 1), ('experience', 1), ('required', 1), ('ultimate', 1), ('world', 1), ('mastering', 1), ('increasingly', 1), ('prevalent', 1), ('bim', 1)]
[('network', 2), ('forensics', 2), ('intensively', 1), ('hand', 1), ('training', 1), ('real', 1), ('world', 1), ('provides', 1), ('uniquely', 1), ('practical', 1), ('guide', 1), ('law', 1), ('enforcement', 1), ('professional', 1), ('seeking', 1), ('deeper', 1), ('understanding', 1)]
[('raspberry', 3), ('pi', 3), ('principle', 3), ('fundamental', 2), ('engineering', 2), ('expand', 1), ('capability', 1), ('exploring', 1), ('innovator', 1), ('guide', 1), ('bringing', 1), ('life', 1), ('book', 1), ('favor', 1), ('recipe', 1), ('approach', 1), ('give', 1), ('skill', 1), ('need', 1), ('design', 1), ('build', 1), ('project', 1), ('understand', 1), ('way', 1)]
[('aphr', 3), ('exam', 3), ('study', 2), ('complete', 2), ('new', 2), ('human', 2), ('resource', 2), ('certification', 2), ('guide', 2), ('highly', 1), ('effective', 1), ('self', 1), ('system', 1), ('offer', 1), ('coverage', 1), ('every', 1), ('topic', 1), ('take', 1), ('institute', 1), ('confidence', 1), ('using', 1), ('integrated', 1), ('written', 1), ('team', 1), ('hr', 1), ('expert', 1), ('associate', 1), ('professional', 1)]
[('user', 2), ('software', 2), ('thoroughly', 1), ('reviewed', 1), ('eagerly', 1), ('anticipated', 1), ('agile', 1), ('community', 1), ('story', 1), ('applied', 1), ('offer', 1), ('requirement', 1), ('process', 1), ('save', 1), ('time', 1), ('eliminates', 1), ('rework', 1), ('lead', 1), ('directly', 1), ('better', 1), ('best', 1), ('way', 1), ('build', 1), ('meet', 1)]
[('requirement', 3), ('software', 2), ('rd', 1), ('edition', 1), ('classic', 1), ('guide', 1), ('engineering', 1), ('fully', 1), ('updated', 1), ('new', 1), ('topic', 1), ('example', 1), ('guidance', 1), ('leader', 1), ('community', 1), ('teamed', 1), ('deliver', 1), ('contemporary', 1), ('set', 1), ('practice', 1), ('covering', 1), ('full', 1), ('range', 1), ('development', 1), ('management', 1), ('activity', 1), ('project', 1)]
[('automated', 2), ('testing', 2), ('effective', 2), ('cornerstone', 1), ('agile', 1), ('development', 1), ('strategy', 1), ('deliver', 1), ('new', 1), ('functionality', 1), ('aggressively', 1), ('accelerate', 1), ('user', 1), ('feedback', 1), ('improve', 1), ('quality', 1), ('many', 1), ('developer', 1), ('creating', 1)]
[('programmer', 3), ('zed', 2), ('skill', 2), ('shaw', 1), ('crafted', 1), ('perfect', 1), ('course', 1), ('beginning', 1), ('eager', 1), ('advance', 1), ('language', 1), ('follow', 1), ('learn', 1), ('many', 1), ('early', 1), ('junior', 1), ('need', 1), ('succeed', 1), ('hundred', 1), ('thousand', 1), ('taught', 1), ('date', 1), ('bring', 1), ('discipline', 1), ('commitment', 1), ('persistence', 1), ('experience', 1)]
[('quality', 2), ('time', 2), ('consistent', 1), ('high', 1), ('coding', 1), ('standard', 1), ('improve', 1), ('software', 1), ('reduce', 1), ('market', 1), ('promote', 1), ('teamwork', 1), ('eliminate', 1), ('wasted', 1), ('inconsequential', 1), ('matter', 1), ('simplify', 1), ('maintenance', 1), ('world', 1), ('respected', 1), ('expert', 1), ('distill', 1)]
[('game', 2), ('dreamed', 1), ('walking', 1), ('page', 1), ('book', 1), ('fighting', 1), ('dragon', 1), ('exploring', 1), ('planet', 1), ('twine', 1), ('interactive', 1), ('fiction', 1), ('program', 1), ('enables', 1), ('create', 1), ('computer', 1), ('world', 1), ('constructed', 1), ('word', 1), ('simple', 1), ('script', 1), ('allow', 1), ('player', 1), ('pick', 1), ('drop', 1), ('object', 1), ('use', 1), ('item', 1), ('collected', 1)]
[('service', 3), ('future', 2), ('cloud', 2), ('distributed', 2), ('platform', 2), ('prepare', 1), ('infrastructure', 1), ('moving', 1), ('module', 1), ('closer', 1), ('application', 1), ('d', 1), ('proof', 1), ('architecture', 1), ('improving', 1), ('performance', 1), ('responsiveness', 1)]
[('writing', 2), ('nbsp', 2), ('digital', 2), ('product', 2), ('book', 2), ('nicely', 1), ('said', 1), ('web', 1), ('style', 1), ('purpose', 1), ('practical', 1), ('guide', 1), ('website', 1), ('help', 1), ('student', 1), ('develop', 1), ('clear', 1), ('communication', 1), ('improve', 1), ('time', 1), ('answer', 1), ('question', 1), ('care', 1), ('business', 1), ('value', 1)]
[('data', 2), ('fairness', 1), ('increasingly', 1), ('important', 1), ('topic', 1), ('machine', 1), ('learning', 1), ('ai', 1), ('generally', 1), ('take', 1), ('world', 1), ('active', 1), ('area', 1), ('research', 1), ('many', 1), ('realistic', 1), ('best', 1), ('practice', 1), ('emerging', 1), ('step', 1), ('along', 1), ('pipeline', 1), ('selection', 1), ('preprocessing', 1), ('blackbox', 1), ('model', 1), ('audit', 1), ('book', 1), ('guide', 1), ('technical', 1)]
[('delivery', 2), ('skill', 2), ('developer', 2), ('continuous', 1), ('add', 1), ('enormous', 1), ('value', 1), ('business', 1), ('entire', 1), ('software', 1), ('lifecycle', 1), ('adopting', 1), ('practice', 1), ('mean', 1), ('mastering', 1), ('new', 1), ('typically', 1), ('outside', 1), ('comfort', 1), ('zone', 1), ('practical', 1), ('book', 1), ('daniel', 1), ('bryant', 1), ('abraham', 1), ('marín', 1), ('pérez', 1), ('provide', 1), ('guidance', 1), ('help', 1), ('experienced', 1), ('java', 1), ('master', 1)]
[('build', 2), ('natural', 2), ('language', 2), ('data', 2), ('scientist', 2), ('want', 1), ('enterprise', 1), ('quality', 1), ('application', 1), ('us', 1), ('text', 1), ('sure', 1), ('begin', 1), ('tool', 1), ('use', 1), ('practical', 1), ('guide', 1), ('help', 1), ('started', 1), ('alex', 1), ('thomas', 1), ('principal', 1), ('wisecube', 1), ('show', 1), ('software', 1), ('engineer', 1), ('scalable', 1), ('processing', 1), ('nlp', 1)]
[('java', 4), ('claim', 3), ('understand', 2), ('security', 2), ('striking', 1), ('provides', 1), ('secure', 1), ('programming', 1), ('environment', 1), ('yet', 1), ('despite', 1), ('endless', 1), ('discussion', 1), ('precisely', 1), ('mean', 1), ('back', 1), ('developer', 1), ('network', 1), ('administrator', 1), ('anyone', 1), ('work', 1), ('mechanism', 1)]
[('linux', 4), ('contemplating', 1), ('first', 1), ('installation', 1), ('using', 1), ('year', 1), ('need', 1), ('know', 1), ('adding', 1), ('network', 1), ('printer', 1), ('setting', 1), ('ftp', 1), ('server', 1), ('running', 1), ('fifth', 1), ('edition', 1), ('book', 1), ('want', 1), ('hand', 1), ('either', 1), ('case', 1), ('widely', 1), ('recognized', 1), ('community', 1), ('ultimate', 1), ('getting', 1), ('started', 1)]
[('step', 2), ('mercurial', 2), ('system', 2), ('instructive', 1), ('book', 1), ('take', 1), ('way', 1), ('track', 1), ('merge', 1), ('manage', 1), ('open', 1), ('source', 1), ('commercial', 1), ('software', 1), ('project', 1), ('using', 1), ('window', 1), ('mac', 1), ('o', 1), ('linux', 1), ('solaris', 1), ('easiest', 1), ('learn', 1), ('come', 1), ('distributed', 1), ('revision', 1), ('control', 1), ('flexible', 1), ('tool', 1), ('ideal', 1)]
[('java', 4), ('thread', 2), ('edition', 2), ('essential', 1), ('programming', 1), ('learning', 1), ('use', 1), ('effectively', 1), ('nontrivial', 1), ('task', 1), ('new', 1), ('classic', 1), ('show', 1), ('take', 1), ('full', 1), ('advantage', 1), ('threading', 1), ('facility', 1), ('brings', 1), ('date', 1), ('watershed', 1), ('change', 1), ('standard', 1), ('version', 1), ('se', 1), ('provides', 1), ('thorough', 1)]
[('ipv', 3), ('network', 2), ('book', 2), ('dns', 2), ('preparing', 1), ('roll', 1), ('concise', 1), ('provides', 1), ('essential', 1), ('need', 1), ('support', 1), ('protocol', 1), ('learn', 1), ('extended', 1), ('accommodate', 1), ('address', 1), ('configure', 1), ('bind', 1), ('name', 1), ('server', 1), ('run', 1), ('feature', 1), ('method', 1), ('troubleshooting', 1), ('problem', 1)]
[('xml', 4), ('create', 2), ('description', 2), ('schema', 2), ('set', 2), ('need', 1), ('use', 1), ('formal', 1), ('vocabulary', 1), ('offer', 1), ('powerful', 1), ('tool', 1), ('defining', 1), ('acceptable', 1), ('document', 1), ('structure', 1), ('content', 1), ('alternative', 1), ('dtds', 1), ('way', 1), ('describe', 1), ('validate', 1), ('data', 1), ('environment', 1), ('enables', 1), ('developer', 1), ('precise', 1), ('richer', 1)]
[('cloud', 3), ('application', 2), ('pattern', 2), ('platform', 2), ('team', 1), ('investigating', 1), ('way', 1), ('design', 1), ('concise', 1), ('book', 1), ('introduces', 1), ('architecture', 1), ('help', 1), ('take', 1), ('advantage', 1), ('service', 1), ('learn', 1), ('agnostic', 1), ('work', 1), ('might', 1), ('useful', 1), ('impact', 1)]
[('canvas', 2), ('book', 2), ('interactive', 2), ('flash', 1), ('fading', 1), ('fast', 1), ('continues', 1), ('climb', 1), ('second', 1), ('edition', 1), ('popular', 1), ('get', 1), ('started', 1), ('html', 1), ('showing', 1), ('build', 1), ('multimedia', 1), ('application', 1), ('learn', 1), ('draw', 1), ('render', 1), ('text', 1), ('manipulate', 1), ('image', 1), ('create', 1), ('animation', 1), ('course', 1), ('building', 1), ('web', 1), ('game', 1), ('throughout', 1)]
[('graphic', 2), ('create', 1), ('beautiful', 1), ('interactive', 1), ('image', 1), ('web', 1), ('raphaëljs', 1), ('javascript', 1), ('library', 1), ('let', 1), ('draw', 1), ('scalable', 1), ('vector', 1), ('svg', 1), ('right', 1), ('browser', 1), ('concise', 1), ('guide', 1), ('quickly', 1), ('learn', 1), ('paint', 1), ('screen', 1), ('shape', 1), ('color', 1), ('turn', 1), ('lively', 1), ('animated', 1), ('visualization', 1), ('author', 1), ('chris', 1), ('wilson', 1)]
[('design', 3), ('coming', 1), ('flood', 1), ('connected', 1), ('product', 1), ('many', 1), ('ux', 1), ('interaction', 1), ('designer', 1), ('looking', 1), ('hardware', 1), ('discipline', 1), ('largely', 1), ('unfamiliar', 1), ('among', 1), ('want', 1), ('blend', 1), ('digital', 1), ('physical', 1), ('concept', 1), ('successfully', 1), ('practical', 1), ('book', 1), ('help', 1), ('explore', 1), ('seven', 1), ('long', 1), ('standing', 1), ('principle', 1), ('industrial', 1)]
[('python', 2), ('take', 1), ('data', 1), ('analysis', 1), ('skill', 1), ('beyond', 1), ('excel', 1), ('next', 1), ('level', 1), ('learning', 1), ('enough', 1), ('stuff', 1), ('done', 1), ('hand', 1), ('guide', 1), ('show', 1), ('non', 1), ('programmer', 1), ('process', 1), ('information', 1), ('initially', 1), ('messy', 1), ('difficult', 1), ('access', 1), ('need', 1), ('know', 1), ('thing', 1), ('programming', 1), ('language', 1), ('started', 1)]
[('office', 2), ('google', 2), ('doc', 2), ('apps', 2), ('script', 2), ('vba', 2), ('whether', 1), ('moving', 1), ('microsoft', 1), ('simply', 1), ('want', 1), ('learn', 1), ('automate', 1), ('practical', 1), ('guide', 1), ('show', 1), ('example', 1), ('work', 1), ('major', 1), ('service', 1), ('still', 1), ('support', 1), ('likely', 1), ('longer', 1), ('net', 1), ('developer', 1)]
[('gain', 1), ('insight', 1), ('growing', 1), ('field', 1), ('neuroaesthetics', 1), ('demonstrating', 1), ('applied', 1), ('popular', 1), ('type', 1), ('content', 1), ('used', 1), ('improve', 1), ('customer', 1), ('engagement', 1), ('profit', 1)]
[('bestseller', 1), ('help', 1), ('student', 1), ('understand', 1), ('algorithm', 1), ('machine', 1), ('learning', 1), ('put', 1), ('path', 1), ('toward', 1), ('mastering', 1), ('relevant', 1), ('mathematics', 1), ('statistic', 1), ('necessary', 1), ('programming', 1), ('experimentation', 1), ('along', 1), ('improved', 1), ('python', 1), ('code', 1), ('second', 1), ('edition', 1), ('includes', 1), ('new', 1), ('chapter', 1), ('deep', 1), ('belief', 1), ('network', 1), ('gaussian', 1), ('process', 1)]
[('edition', 3), ('statistic', 2), ('version', 2), ('third', 1), ('cover', 1), ('today', 1), ('commonly', 1), ('used', 1), ('technique', 1), ('computational', 1), ('maintaining', 1), ('philosophy', 1), ('writing', 1), ('style', 1), ('bestselling', 1), ('previous', 1), ('us', 1), ('latest', 1), ('matlab', 1), ('corresponding', 1), ('machine', 1), ('learning', 1), ('toolbox', 1), ('incorporates', 1), ('new', 1), ('section', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('lt', 6), ('gt', 6), ('div', 3), ('data', 3), ('use', 1), ('popular', 1), ('mining', 1), ('technique', 1), ('microsoft', 1), ('excel', 1), ('better', 1), ('understand', 1), ('machine', 1), ('learning', 1), ('method', 1), ('software', 1), ('tool', 1), ('programming', 1), ('language', 1), ('package', 1), ('take', 1), ('input', 1), ('deliver', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('blazor', 2), ('build', 1), ('web', 1), ('application', 1), ('microsoft', 1), ('net', 1), ('run', 1), ('modern', 1), ('browser', 1), ('second', 1), ('edition', 1), ('updated', 1), ('work', 1), ('release', 1), ('version', 1), ('cover', 1), ('use', 1), ('creating', 1), ('server', 1), ('side', 1), ('webassembly', 1)]
[('architecture', 2), ('build', 1), ('java', 1), ('based', 1), ('microservices', 1), ('using', 1), ('spring', 1), ('boot', 1), ('framework', 1), ('evolving', 1), ('application', 1), ('small', 1), ('monolith', 1), ('event', 1), ('driven', 1), ('composed', 1), ('several', 1), ('service', 1), ('revised', 1), ('book', 1), ('follows', 1), ('incremental', 1), ('approach', 1)]
[('window', 2), ('microsoft', 1), ('presentation', 1), ('foundation', 1), ('wpf', 1), ('provides', 1), ('development', 1), ('framework', 1), ('building', 1), ('high', 1), ('quality', 1), ('user', 1), ('experience', 1), ('operating', 1), ('system', 1), ('blend', 1), ('together', 1), ('rich', 1), ('content', 1), ('wide', 1), ('range', 1), ('source', 1), ('allows', 1)]
[('thing', 2), ('done', 1), ('online', 1), ('ordered', 1), ('pizza', 1), ('checked', 1), ('weather', 1), ('booked', 1), ('hotel', 1), ('reconnected', 1), ('long', 1), ('lost', 1), ('friend', 1), ('time', 1), ('find', 1), ('work', 1), ('vinay', 1), ('trivedi', 1), ('peel', 1), ('back', 1), ('mystery', 1), ('internet', 1), ('explains', 1)]
[('apple', 2), ('swiftui', 2), ('dive', 1), ('world', 1), ('developing', 1), ('platform', 1), ('new', 1), ('framework', 1), ('make', 1), ('writing', 1), ('application', 1), ('faster', 1), ('easier', 1), ('fewer', 1), ('line', 1), ('code', 1), ('book', 1), ('teach', 1), ('basic', 1), ('help', 1), ('write', 1), ('amazing', 1), ('native', 1)]
[('query', 2), ('sql', 2), ('lt', 1), ('gt', 1), ('identify', 1), ('fix', 1), ('cause', 1), ('poor', 1), ('performance', 1), ('learn', 1), ('store', 1), ('adaptive', 1), ('execution', 1), ('plan', 1), ('automated', 1), ('tuning', 1), ('microsoft', 1), ('azure', 1), ('database', 1), ('platform', 1), ('anyone', 1), ('responsible', 1), ('writing', 1), ('creating', 1), ('find', 1)]
[('critical', 2), ('infrastructure', 2), ('present', 1), ('volume', 1), ('aim', 1), ('provide', 1), ('overview', 1), ('current', 1), ('understanding', 1), ('called', 1), ('ci', 1), ('particularly', 1), ('information', 1), ('cii', 1), ('form', 1), ('constituent', 1), ('sector', 1)]
[('britain', 2), ('ldquo', 1), ('sobering', 1), ('tale', 1), ('real', 1), ('consequence', 1), ('gender', 1), ('bias', 1), ('rdquo', 1), ('explores', 1), ('lost', 1), ('early', 1), ('dominance', 1), ('computing', 1), ('systematically', 1), ('discriminating', 1), ('qualified', 1), ('worker', 1), ('woman', 1), ('harvard', 1), ('magazine', 1)]
[('algorithm', 3), ('tradition', 1), ('real', 1), ('world', 1), ('beginner', 1), ('guide', 1), ('panos', 1), ('louridas', 1), ('back', 1), ('introduce', 1), ('accessible', 1), ('manner', 1), ('utilizing', 1), ('various', 1), ('example', 1), ('explain', 1), ('work', 1), ('digital', 1), ('technology', 1), ('run', 1)]
[('comprehensive', 1), ('hand', 1), ('introduction', 1), ('core', 1), ('concept', 1), ('method', 1), ('application', 1), ('agent', 1), ('based', 1), ('modeling', 1), ('including', 1), ('detailed', 1), ('netlogo', 1), ('example', 1), ('advent', 1), ('widespread', 1), ('fast', 1), ('computing', 1), ('enabled', 1), ('work', 1), ('complex', 1), ('problem', 1)]
[('python', 2), ('bridge', 1), ('gap', 1), ('novice', 1), ('professionalyou', 1), ('completed', 1), ('basic', 1), ('programming', 1), ('tutorial', 1), ('finished', 1), ('al', 1), ('sweigart', 1), ('bestseller', 1), ('automate', 1), ('boring', 1), ('stuff', 1), ('next', 1), ('step', 1), ('toward', 1), ('becoming', 1), ('capable', 1), ('confident', 1), ('software', 1)]
[('computer', 2), ('using', 2), ('word', 2), ('staring', 1), ('screen', 1), ('idea', 1), ('worry', 1), ('help', 1), ('written', 1), ('best', 1), ('selling', 1), ('technology', 1), ('author', 1), ('lecturer', 1), ('trainer', 1), ('kevin', 1), ('wilson', 1), ('packed', 1), ('easy', 1), ('follow', 1), ('instruction', 1), ('photo', 1), ('illustration', 1), ('helpful', 1), ('tip', 1), ('video', 1), ('demo', 1), ('updated', 1), ('cover', 1)]
[('learn', 1), ('computational', 1), ('logic', 1), ('developed', 1), ('artificial', 1), ('intelligence', 1), ('applied', 1), ('everyday', 1), ('situation', 1)]
[('engaging', 1), ('introduction', 1), ('critical', 1), ('tool', 1), ('needed', 1), ('design', 1), ('evaluate', 1), ('engineering', 1), ('system', 1), ('operating', 1), ('uncertain', 1), ('environment', 1)]
[('comprehensive', 1), ('survey', 1), ('computational', 1), ('aspect', 1), ('collective', 1), ('decision', 1), ('graduate', 1), ('student', 1), ('researcher', 1), ('professional', 1), ('computer', 1), ('science', 1), ('economics', 1)]
[('macos', 2), ('started', 1), ('guide', 1), ('world', 1), ('big', 1), ('sur', 1), ('wherever', 1), ('mac', 1), ('home', 1), ('front', 1), ('trusty', 1), ('imac', 1), ('coffee', 1), ('portable', 1), ('macbook', 1), ('air', 1), ('provides', 1)]
[('hacking', 2), ('build', 1), ('better', 1), ('defense', 1), ('motivated', 1), ('organized', 1), ('professional', 1), ('attack', 1), ('advanced', 1), ('penetration', 1), ('testing', 1), ('world', 1), ('secure', 1), ('network', 1), ('take', 1), ('far', 1), ('beyond', 1), ('kali', 1), ('linux', 1), ('metasploit', 1)]
[('pattern', 3), ('software', 2), ('approach', 2), ('oriented', 1), ('architecture', 1), ('new', 1), ('development', 1), ('book', 1), ('represents', 1), ('progression', 1), ('evolution', 1), ('system', 1), ('capable', 1), ('describing', 1), ('documenting', 1), ('large', 1), ('scale', 1), ('application', 1)]
[('phishing', 3), ('email', 2), ('address', 2), ('essential', 1), ('anti', 1), ('desk', 1), ('reference', 1), ('anyone', 1), ('dark', 1), ('water', 1), ('growing', 1), ('continuing', 1), ('scourge', 1), ('provides', 1), ('actionable', 1), ('defensive', 1)]
[('exam', 4), ('practice', 2), ('question', 2), ('complete', 1), ('prep', 1), ('course', 1), ('digital', 1), ('content', 1), ('hour', 1), ('video', 1), ('training', 1), ('hundred', 1), ('including', 1), ('new', 1), ('performance', 1), ('based', 1), ('type', 1), ('comptia', 1), ('network', 1), ('certification', 1), ('study', 1), ('guide', 1), ('seventh', 1), ('edition', 1), ('cover', 1), ('everything', 1), ('need', 1), ('know', 1), ('prepare', 1)]
[('exam', 3), ('test', 2), ('real', 1), ('first', 1), ('fully', 1), ('updated', 1), ('ceh', 1), ('objective', 1), ('practical', 1), ('guide', 1), ('contains', 1), ('realistic', 1), ('practice', 1), ('question', 1), ('prepare', 1), ('ec', 1), ('council', 1), ('certified', 1), ('ethical', 1), ('hacker', 1), ('aid', 1), ('understanding', 1), ('material', 1), ('depth', 1), ('explanation', 1), ('correct', 1), ('incorrect', 1), ('answer', 1)]
[('publisher', 2), ('product', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('hundred', 1), ('accurate', 1), ('practice', 1), ('question', 1), ('cover', 1), ('every', 1), ('topic', 1), ('latest', 1), ('version', 1), ('cisa', 1), ('exam', 1), ('written', 1), ('security', 1), ('audit', 1), ('expert', 1)]
[('healthcare', 5), ('information', 4), ('patient', 3), ('security', 3), ('privacy', 3), ('secure', 1), ('protect', 1), ('sensitive', 1), ('personal', 1), ('written', 1), ('expert', 1), ('definitive', 1), ('resource', 1), ('fully', 1), ('address', 1), ('control', 1), ('introduces', 1), ('realm', 1)]
[('show', 2), ('step', 2), ('cutting', 1), ('edge', 1), ('cybersecurity', 1), ('solution', 1), ('defend', 1), ('sophisticated', 1), ('attack', 1), ('professional', 1), ('guide', 1), ('design', 1), ('deploy', 1), ('highly', 1), ('secure', 1), ('system', 1), ('time', 1), ('within', 1), ('budget', 1), ('book', 1), ('offer', 1), ('comprehensive', 1), ('example', 1), ('objective', 1), ('best', 1), ('practice', 1), ('build', 1), ('maintain', 1), ('powerful', 1), ('cost', 1), ('effective', 1)]
[('nbsp', 3), ('book', 1), ('give', 1), ('thorough', 1), ('scholarly', 1), ('coverage', 1), ('area', 1), ('growing', 1), ('importance', 1), ('computer', 1), ('security', 1), ('every', 1), ('researcher', 1), ('student', 1), ('practicing', 1), ('professional', 1), ('software', 1), ('protection', 1), ('mikhail', 1), ('atallah', 1)]
[('language', 2), ('uncommon', 1), ('programming', 1), ('wonk', 1), ('speak', 1), ('comfortable', 1), ('friendly', 1), ('david', 1), ('walk', 1), ('syntax', 1), ('semantics', 1), ('javascript', 1), ('charming', 1), ('hugely', 1), ('insightful', 1), ('reminder', 1), ('gotchas', 1)]
[('many', 1), ('system', 1), ('development', 1), ('practitioner', 1), ('find', 1), ('traditional', 1), ('size', 1), ('fit', 1), ('process', 1), ('inadequate', 1), ('growing', 1), ('complexity', 1), ('diversity', 1), ('dynamism', 1), ('assurance', 1), ('need', 1), ('product', 1), ('service', 1), ('incremental', 1), ('commitment', 1), ('spiral', 1), ('model', 1), ('icsm', 1), ('responds', 1), ('principle', 1), ('risk', 1), ('based', 1), ('framework', 1), ('defining', 1), ('evolving', 1), ('project', 1)]
[('agile', 4), ('organisation', 2), ('management', 2), ('leading', 2), ('many', 1), ('biggest', 1), ('obstacle', 1), ('successful', 1), ('development', 1), ('unfortunately', 1), ('reliable', 1), ('guidance', 1), ('scarce', 1), ('indeed', 1), ('manager', 1), ('jurgen', 1), ('appelo', 1), ('fill', 1), ('gap', 1), ('introducing', 1), ('realistic', 1), ('approach', 1), ('managing', 1), ('growing', 1), ('team', 1), ('writing', 1)]
[('software', 3), ('vulnerability', 3), ('learn', 1), ('root', 1), ('cause', 1), ('avoid', 1), ('nbsp', 1), ('commonly', 1), ('exploited', 1), ('usually', 1), ('caused', 1), ('avoidable', 1), ('defect', 1), ('analyzed', 1), ('ten', 1), ('thousand', 1), ('report', 1)]
[('use', 4), ('case', 3), ('mean', 2), ('system', 2), ('writing', 1), ('capturing', 1), ('behavioral', 1), ('requirement', 1), ('software', 1), ('business', 1), ('process', 1), ('practice', 1), ('quickly', 1), ('gaining', 1), ('popularity', 1), ('provide', 1), ('beneficial', 1), ('project', 1), ('planning', 1), ('clearly', 1), ('show', 1), ('ultimately', 1), ('designed', 1), ('surface', 1), ('appear', 1)]
[('linux', 3), ('developer', 2), ('embedded', 2), ('system', 2), ('increasingly', 1), ('integrating', 1), ('support', 1), ('virtually', 1), ('hardware', 1), ('architecture', 1), ('many', 1), ('peripheral', 1), ('scale', 1), ('offer', 1), ('full', 1), ('source', 1), ('code', 1), ('requires', 1), ('royalty', 1), ('yocto', 1), ('project', 1), ('make', 1), ('easier', 1), ('customise', 1), ('working', 1), ('knowledge', 1)]
[('powerpoint', 2), ('microsoft', 2), ('advance', 1), ('everyday', 1), ('proficiency', 1), ('earn', 1), ('credential', 1), ('prof', 1), ('demonstrate', 1), ('expertise', 1), ('designed', 1), ('help', 1), ('practice', 1), ('prepare', 1), ('office', 1), ('specialist', 1), ('mo', 1), ('negetiveemoji', 1)]
[('nan', 1)]
[('software', 2), ('mancuso', 2), ('craftsmanship', 2), ('show', 2), ('craftsman', 1), ('sandro', 1), ('explains', 1), ('mean', 1), ('developer', 1), ('organisation', 1), ('live', 1), ('every', 1), ('day', 1), ('real', 1), ('world', 1), ('development', 1), ('environment', 1), ('fit', 1), ('help', 1), ('student', 1), ('improve', 1), ('upon', 1), ('best', 1), ('practice', 1), ('technical', 1), ('discipline', 1), ('agile', 1), ('lean', 1)]
[('web', 3), ('html', 1), ('cs', 1), ('remain', 1), ('linchpin', 1), ('every', 1), ('beginning', 1), ('developer', 1), ('need', 1), ('understand', 1), ('thoroughly', 1), ('including', 1), ('latest', 1), ('advance', 1), ('standard', 1), ('newest', 1), ('technique', 1), ('based', 1), ('decade', 1), ('professional', 1), ('turned', 1)]
[('machine', 3), ('learning', 3), ('master', 1), ('concept', 1), ('develop', 1), ('real', 1), ('world', 1), ('solution', 1), ('offer', 1), ('immense', 1), ('opportunity', 1), ('introducing', 1), ('delivers', 1), ('practical', 1), ('knowledge', 1), ('make', 1), ('dino', 1), ('francesco', 1), ('esposito', 1), ('start', 1)]
[('access', 3), ('microsoft', 2), ('advance', 1), ('everyday', 1), ('proficiency', 1), ('earn', 1), ('credential', 1), ('prof', 1), ('demonstrate', 1), ('expertise', 1), ('designed', 1), ('help', 1), ('practice', 1), ('prepare', 1), ('office', 1), ('specialist', 1), ('mo', 1), ('negetiveemoji', 1)]
[('digital', 3), ('forensics', 2), ('expert', 2), ('graf', 2), ('rapid', 1), ('proliferation', 1), ('cyber', 1), ('crime', 1), ('increasing', 1), ('demand', 1), ('law', 1), ('enforcement', 1), ('private', 1), ('sector', 1), ('archaeology', 1), ('practitioner', 1), ('michael', 1), ('written', 1), ('thorough', 1), ('realistic', 1), ('date', 1), ('guide', 1), ('principle', 1), ('technique', 1), ('modern', 1), ('begin', 1)]
[('perl', 3), ('programming', 2), ('example', 1), ('proven', 1), ('easy', 1), ('way', 1), ('master', 1), ('legendary', 1), ('silicon', 1), ('valley', 1), ('instructor', 1), ('ellie', 1), ('quigley', 1), ('fully', 1), ('updated', 1), ('focused', 1), ('classic', 1), ('text', 1), ('today', 1), ('key', 1), ('application', 1), ('especially', 1), ('automation', 1), ('testing', 1), ('data', 1), ('extraction', 1), ('legacy', 1), ('code', 1), ('maintenance', 1), ('revised', 1), ('edition', 1), ('reflect', 1), ('modern', 1)]
[('learning', 2), ('nbsp', 1), ('digital', 1), ('version', 1), ('printed', 1), ('book', 1), ('copyright', 1), ('basic', 1), ('modeling', 1), ('technique', 1), ('use', 1), ('apply', 1), ('develop', 1), ('data', 1), ('model', 1), ('organization', 1), ('gain', 1), ('insight', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('privacy', 3), ('organisation', 2), ('kind', 1), ('recognising', 1), ('crucial', 1), ('importance', 1), ('protecting', 1), ('customer', 1), ('employee', 1), ('stakeholder', 1), ('demand', 1), ('today', 1), ('failure', 1), ('safeguard', 1), ('destroy', 1), ('organisational', 1), ('reputation', 1), ('even', 1), ('implementing', 1), ('effective', 1), ('protection', 1), ('difficult', 1)]
[('nan', 1)]
[('form', 5), ('information', 2), ('creating', 1), ('intelligent', 1), ('challenging', 1), ('present', 1), ('critical', 1), ('compact', 1), ('format', 1), ('interactive', 1), ('respond', 1), ('data', 1), ('entry', 1), ('user', 1), ('require', 1), ('programming', 1), ('dynamic', 1), ('work', 1), ('seamlessly', 1), ('database', 1), ('collect', 1), ('customer', 1), ('plus', 1), ('need', 1), ('designed', 1), ('eliminate', 1)]
[('algorithm', 2), ('robert', 1), ('sedgewick', 1), ('provides', 1), ('current', 1), ('comprehensive', 1), ('introduction', 1), ('important', 1), ('focus', 1), ('time', 1), ('graph', 1), ('increasingly', 1), ('critical', 1), ('wide', 1), ('range', 1), ('application', 1), ('network', 1), ('connectivity', 1)]
[('window', 4), ('conquer', 1), ('today', 1), ('inside', 1), ('dive', 1), ('really', 1), ('put', 1), ('expertise', 1), ('work', 1), ('focusing', 1), ('newest', 1), ('powerful', 1), ('innovative', 1), ('feature', 1), ('supremely', 1), ('organized', 1), ('reference', 1), ('pack', 1), ('hundred', 1), ('timesaving', 1), ('solution', 1), ('date', 1), ('tip', 1), ('workarounds', 1), ('new', 1), ('timeline', 1), ('key', 1)]
[('oracle', 3), ('pl', 2), ('sql', 2), ('compact', 1), ('book', 1), ('steven', 1), ('feuerstein', 1), ('widely', 1), ('recognized', 1), ('world', 1), ('leading', 1), ('expert', 1), ('language', 1), ('distills', 1), ('many', 1), ('year', 1), ('programming', 1), ('teaching', 1), ('writing', 1), ('set', 1), ('best', 1), ('practice', 1), ('recommendation', 1), ('developing', 1), ('successful', 1), ('application', 1), ('covering', 1), ('latest', 1), ('release', 1), ('database', 1), ('gr', 1)]
[('performance', 2), ('step', 2), ('paramount', 1), ('today', 1), ('thoroughly', 1), ('updated', 1), ('guide', 1), ('show', 1), ('test', 1), ('mission', 1), ('critical', 1), ('application', 1), ('scalability', 1), ('deploy', 1), ('whether', 1), ('cloud', 1), ('mobile', 1), ('device', 1), ('learn', 1), ('complete', 1), ('testing', 1), ('process', 1), ('lifecycle', 1), ('along', 1), ('best', 1), ('practice', 1), ('plan', 1), ('coordinate', 1), ('conduct', 1)]
[('apps', 3), ('script', 3), ('application', 2), ('google', 2), ('step', 2), ('learn', 1), ('create', 1), ('dynamic', 1), ('web', 1), ('take', 1), ('full', 1), ('advantage', 1), ('hosted', 1), ('service', 1), ('basic', 1), ('coding', 1), ('skill', 1), ('javascript', 1), ('experience', 1), ('practical', 1), ('book', 1), ('show', 1), ('work', 1), ('provides', 1), ('guidance', 1), ('building', 1), ('use', 1), ('right', 1), ('away', 1)]
[('ipv', 3), ('level', 2), ('official', 1), ('network', 1), ('address', 1), ('close', 1), ('depletion', 1), ('moving', 1), ('business', 1), ('critical', 1), ('concise', 1), ('book', 1), ('help', 1), ('plan', 1), ('integration', 1), ('providing', 1), ('high', 1), ('overview', 1), ('technical', 1), ('nontechnical', 1), ('step', 1), ('involved', 1), ('many', 1), ('challenge', 1), ('enterprise', 1), ('organizational', 1), ('solution', 1), ('differ', 1)]
[('network', 2), ('remote', 2), ('subject', 1), ('security', 1), ('never', 1), ('stray', 1), ('far', 1), ('mind', 1), ('worker', 1), ('good', 1), ('reason', 1), ('even', 1), ('connection', 1), ('another', 1), ('need', 1), ('secured', 1), ('radius', 1), ('authentication', 1), ('dial', 1), ('user', 1), ('service', 1), ('widely', 1), ('deployed', 1), ('protocol', 1), ('enables', 1), ('company', 1), ('authenticate', 1), ('authorize', 1), ('account', 1)]
[('io', 2), ('way', 2), ('never', 1), ('something', 1), ('cried', 1), ('cookbook', 1), ('quite', 1), ('cisco', 1), ('internetwork', 1), ('operating', 1), ('system', 1), ('powerful', 1), ('flexible', 1), ('confusing', 1), ('daunting', 1), ('task', 1), ('accomplished', 1), ('several', 1), ('different', 1), ('want', 1), ('spend', 1), ('precious', 1), ('time', 1), ('figuring', 1), ('best', 1), ('trying', 1), ('solve', 1), ('problem', 1)]
[('nearly', 2), ('number', 2), ('internet', 2), ('seemed', 1), ('impossible', 1), ('turned', 1), ('reality', 1), ('available', 1), ('address', 1), ('exhausted', 1), ('due', 1), ('mostly', 1), ('explosion', 1), ('commercial', 1), ('website', 1), ('entry', 1), ('expanding', 1), ('country', 1), ('growing', 1), ('shortage', 1), ('effectively', 1), ('put', 1), ('community', 1), ('brilliant', 1), ('engineer', 1), ('alert', 1)]
[('backup', 3), ('recovery', 3), ('unix', 2), ('new', 2), ('complete', 2), ('packed', 1), ('practical', 1), ('freely', 1), ('available', 1), ('solution', 1), ('linux', 1), ('window', 1), ('mac', 1), ('o', 1), ('system', 1), ('various', 1), ('database', 1), ('guide', 1), ('overhaul', 1), ('author', 1), ('revised', 1), ('expanded', 1), ('material', 1), ('start', 1), ('overview', 1)]
[('use', 2), ('many', 1), ('programmer', 1), ('code', 1), ('instinct', 1), ('relying', 1), ('convenient', 1), ('habit', 1), ('style', 1), ('picked', 1), ('early', 1), ('conscious', 1), ('choice', 1), ('make', 1), ('format', 1), ('source', 1), ('name', 1), ('variable', 1), ('kind', 1), ('loop', 1), ('focused', 1), ('entirely', 1), ('problem', 1), ('solving', 1), ('solution', 1), ('creating', 1)]
[('application', 3), ('web', 1), ('service', 1), ('architecture', 1), ('provides', 1), ('new', 1), ('way', 1), ('think', 1), ('implement', 1), ('integration', 1), ('interoperability', 1), ('make', 1), ('development', 1), ('platform', 1), ('irrelevant', 1), ('regardless', 1), ('operating', 1), ('system', 1), ('programming', 1), ('language', 1), ('technical', 1), ('implementation', 1), ('detail', 1), ('communicate', 1), ('using', 1), ('xml', 1), ('message', 1), ('open', 1)]
[('language', 2), ('cookbook', 1), ('nd', 1), ('edition', 1), ('able', 1), ('learn', 1), ('improve', 1), ('mastery', 1), ('net', 1), ('platform', 1), ('updated', 1), ('bestseller', 1), ('completely', 1), ('revised', 1), ('account', 1), ('latest', 1), ('version', 1), ('popular', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('includes', 1), ('new', 1), ('code', 1), ('solution', 1), ('overall', 1)]
[('java', 2), ('rmi', 2), ('experience', 2), ('contains', 1), ('wealth', 1), ('designing', 1), ('implementing', 1), ('remote', 1), ('method', 1), ('invocation', 1), ('novice', 1), ('reader', 1), ('quickly', 1), ('brought', 1), ('speed', 1), ('powerful', 1), ('yet', 1), ('easy', 1), ('use', 1), ('tool', 1), ('distributed', 1), ('programming', 1), ('expert', 1), ('gain', 1), ('valuable', 1), ('constructing', 1), ('enterprise', 1)]
[('ganglion', 2), ('book', 2), ('written', 1), ('designer', 1), ('maintainer', 1), ('show', 1), ('collect', 1), ('visualize', 1), ('metric', 1), ('cluster', 1), ('grid', 1), ('cloud', 1), ('infrastructure', 1), ('scale', 1), ('want', 1), ('track', 1), ('cpu', 1), ('utilization', 1), ('host', 1), ('every', 1), ('ten', 1), ('second', 1), ('tool', 1), ('need', 1), ('know', 1), ('main', 1), ('component', 1), ('work', 1), ('together', 1), ('hand', 1), ('help', 1)]
[('font', 3), ('cs', 2), ('custom', 1), ('ad', 1), ('hoc', 1), ('family', 1), ('assemble', 1), ('variety', 1), ('individual', 1), ('face', 1), ('give', 1), ('typographic', 1), ('option', 1), ('concise', 1), ('guide', 1), ('show', 1), ('use', 1), ('property', 1), ('gain', 1), ('fine', 1), ('grained', 1), ('wide', 1), ('ranging', 1), ('influence', 1), ('display', 1), ('web', 1), ('short', 1), ('sweet', 1), ('book', 1), ('excerpt', 1)]
[('gradle', 2), ('familiar', 1), ('basic', 1), ('element', 1), ('possibly', 1), ('author', 1), ('previous', 1), ('reilly', 1), ('book', 1), ('building', 1), ('testing', 1), ('advanced', 1), ('guide', 1), ('provides', 1), ('recipe', 1), ('technique', 1), ('syntax', 1), ('help', 1), ('master', 1), ('build', 1), ('automation', 1), ('tool', 1), ('clear', 1), ('concise', 1), ('explanation', 1), ('lot', 1), ('ready', 1), ('use', 1), ('code', 1), ('example', 1), ('explore', 1), ('four', 1)]
[('turn', 2), ('little', 1), ('thing', 1), ('good', 1), ('digital', 1), ('product', 1), ('full', 1), ('color', 1), ('practical', 1), ('book', 1), ('learn', 1), ('design', 1), ('effective', 1), ('microinteractions', 1), ('small', 1), ('detail', 1), ('exist', 1), ('inside', 1), ('around', 1), ('feature', 1), ('user', 1), ('change', 1), ('setting', 1), ('mute', 1), ('know', 1), ('new', 1), ('email', 1), ('message', 1), ('vivid', 1), ('real', 1), ('world', 1)]
[('log', 3), ('book', 2), ('engineer', 2), ('easy', 1), ('humble', 1), ('abstraction', 1), ('lie', 1), ('heart', 1), ('many', 1), ('system', 1), ('nosql', 1), ('database', 1), ('cryptocurrencies', 1), ('even', 1), ('though', 1), ('think', 1), ('short', 1), ('show', 1), ('worthy', 1), ('attention', 1), ('based', 1), ('popular', 1), ('blog', 1), ('post', 1), ('linkedin', 1), ('principal', 1), ('jay', 1), ('kreps', 1)]
[('programming', 2), ('craft', 2), ('goodliffe', 2), ('present', 2), ('passionate', 1), ('want', 1), ('better', 1), ('come', 1), ('right', 1), ('source', 1), ('code', 1), ('author', 1), ('pete', 1), ('collection', 1), ('useful', 1), ('technique', 1), ('approach', 1), ('art', 1), ('help', 1), ('boost', 1), ('career', 1), ('sound', 1), ('advice', 1), ('learned', 1), ('year', 1)]
[('new', 2), ('recipe', 2), ('common', 2), ('completely', 1), ('updated', 1), ('edition', 1), ('bestseller', 1), ('offer', 1), ('code', 1), ('problem', 1), ('programmer', 1), ('face', 1), ('every', 1), ('day', 1), ('third', 1), ('rewritten', 1), ('take', 1), ('advantage', 1), ('feature', 1), ('prefer', 1), ('solution', 1), ('general', 1), ('language', 1), ('instruction', 1), ('quick', 1), ('answer', 1)]
[('node', 4), ('take', 1), ('web', 1), ('development', 1), ('skill', 1), ('browser', 1), ('server', 1), ('learn', 1), ('write', 1), ('fast', 1), ('highly', 1), ('scalable', 1), ('network', 1), ('application', 1), ('javascript', 1), ('based', 1), ('platform', 1), ('updated', 1), ('latest', 1), ('long', 1), ('term', 1), ('support', 1), ('lts', 1), ('current', 1), ('release', 1), ('hand', 1), ('edition', 1), ('help', 1), ('master', 1), ('core', 1), ('fundamental', 1), ('gain', 1), ('experience', 1)]
[('elixir', 3), ('powerful', 2), ('functional', 2), ('programming', 2), ('smooth', 1), ('small', 1), ('excellent', 1), ('language', 1), ('learning', 1), ('hand', 1), ('introduction', 1), ('discover', 1), ('author', 1), ('simon', 1), ('st', 1), ('laurent', 1), ('david', 1), ('eisenberg', 1), ('show', 1), ('combine', 1), ('robust', 1), ('erlang', 1), ('approach', 1), ('look', 1)]
[('bot', 3), ('conversational', 2), ('facebook', 1), ('messenger', 1), ('kik', 1), ('slack', 1), ('google', 1), ('assistant', 1), ('amazon', 1), ('alexa', 1), ('email', 1), ('new', 1), ('apps', 1), ('revolutionizing', 1), ('way', 1), ('interact', 1), ('software', 1), ('practical', 1), ('guide', 1), ('show', 1), ('design', 1), ('build', 1), ('experience', 1), ('delightful', 1), ('help', 1), ('productive', 1), ('whether', 1)]
[('data', 4), ('science', 4), ('java', 2), ('booming', 1), ('thanks', 1), ('python', 1), ('brings', 1), ('robustness', 1), ('convenience', 1), ('ability', 1), ('scale', 1), ('critical', 1), ('today', 1), ('application', 1), ('practical', 1), ('book', 1), ('software', 1), ('engineer', 1), ('looking', 1), ('add', 1), ('skill', 1), ('take', 1), ('logical', 1), ('journey', 1), ('pipeline', 1), ('author', 1), ('michael', 1), ('brzustowicz', 1), ('explains', 1)]
[('iphone', 2), ('guide', 2), ('pro', 1), ('max', 1), ('faster', 1), ('powerful', 1), ('camera', 1), ('latest', 1), ('edition', 1), ('bestselling', 1), ('funny', 1), ('gorgeously', 1), ('illustrated', 1), ('tip', 1), ('shortcut', 1), ('workarounds', 1), ('turn', 1), ('master', 1), ('written', 1), ('david', 1), ('pogue', 1), ('missing', 1), ('manual', 1), ('series', 1), ('creator', 1), ('new', 1), ('york', 1), ('time', 1)]
[('extensively', 1), ('revised', 1), ('reflect', 1), ('latest', 1), ('development', 1), ('third', 1), ('edition', 1), ('bestselling', 1), ('text', 1), ('explains', 1), ('create', 1), ('system', 1), ('scratch', 1), ('presenting', 1), ('invention', 1), ('design', 1), ('rule', 1), ('together', 1), ('clear', 1), ('explanation', 1), ('use', 1), ('author', 1), ('supply', 1), ('practical', 1), ('guideline', 1), ('avoiding', 1), ('common', 1), ('systematic', 1), ('failure', 1), ('implementing', 1), ('new', 1), ('mandate', 1)]
[('stereotype', 2), ('textbook', 2), ('subject', 2), ('matter', 2), ('computer', 1), ('science', 1), ('dry', 1), ('boring', 1), ('sometimes', 1), ('even', 1), ('intimidating', 1), ('result', 1), ('turn', 1), ('student', 1), ('interest', 1), ('instead', 1), ('enticing', 1), ('opposite', 1), ('author', 1), ('present', 1), ('refreshing', 1), ('story', 1), ('telling', 1), ('style', 1), ('aim', 1)]
[('storytelling', 2), ('game', 2), ('edited', 1), ('collection', 1), ('chapter', 1), ('concern', 1), ('evolving', 1), ('discipline', 1), ('procedural', 1), ('video', 1), ('interactive', 1), ('medium', 1), ('interplay', 1), ('author', 1), ('player', 1), ('machine', 1), ('provides', 1), ('new', 1), ('exciting', 1), ('way', 1), ('create', 1), ('tell', 1), ('story', 1), ('essay', 1), ('practitioner', 1), ('artform', 1), ('demonstrate', 1), ('traditional', 1)]
[('network', 3), ('data', 2), ('security', 2), ('unlike', 1), ('communication', 1), ('past', 1), ('today', 1), ('consist', 1), ('numerous', 1), ('device', 1), ('handle', 1), ('pass', 1), ('sender', 1), ('receiver', 1), ('concern', 1), ('frequently', 1), ('raised', 1), ('circumstance', 1), ('interconnected', 1), ('computer', 1), ('use', 1), ('controlled', 1), ('entity', 1), ('organization', 1), ('introduction', 1)]
[('book', 2), ('present', 2), ('hidden', 2), ('markov', 2), ('model', 2), ('integrated', 1), ('form', 1), ('analysis', 1), ('synthesis', 1), ('three', 1), ('different', 1), ('type', 1), ('unlike', 1), ('subject', 1), ('generic', 1), ('focus', 1), ('specific', 1), ('theme', 1), ('speech', 1), ('processing', 1), ('moreover', 1), ('translation', 1), ('concept', 1), ('domain', 1), ('formal', 1), ('mathematics', 1)]
[('design', 3), ('embedded', 2), ('system', 2), ('content', 2), ('computer', 1), ('component', 1), ('principle', 1), ('computing', 1), ('fourth', 1), ('edition', 1), ('continues', 1), ('focus', 1), ('foundational', 1), ('technology', 1), ('introducing', 1), ('new', 1), ('security', 1), ('safety', 1)]
[('analytics', 2), ('implementing', 1), ('demystifies', 1), ('concept', 1), ('technology', 1), ('application', 1), ('break', 1), ('implementation', 1), ('repeatable', 1), ('manageable', 1), ('step', 1), ('making', 1), ('possible', 1), ('widespread', 1), ('adoption', 1), ('across', 1), ('function', 1), ('organization', 1)]
[('ai', 3), ('teach', 2), ('common', 2), ('lisp', 2), ('paradigm', 1), ('programming', 1), ('first', 1), ('text', 1), ('advanced', 1), ('technique', 1), ('context', 1), ('building', 1), ('major', 1), ('system', 1), ('reconstructing', 1), ('authentic', 1), ('complex', 1), ('program', 1), ('using', 1), ('state', 1), ('art', 1), ('book', 1), ('student', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('fractal', 2), ('intricate', 1), ('geometrical', 1), ('form', 1), ('contain', 1), ('miniature', 1), ('copy', 1), ('smaller', 1), ('scale', 1), ('colorful', 1), ('book', 1), ('describes', 1), ('method', 1), ('producing', 1), ('endless', 1), ('variety', 1), ('art', 1), ('using', 1), ('computer', 1), ('program', 1), ('search', 1), ('million', 1), ('equation', 1), ('looking', 1), ('produce', 1), ('image', 1), ('aesthetic', 1), ('appeal', 1)]
[('phone', 2), ('mastering', 1), ('arm', 1), ('hardware', 1), ('architecture', 1), ('open', 1), ('world', 1), ('programming', 1), ('nearly', 1), ('tablet', 1), ('including', 1), ('iphone', 1), ('ipad', 1), ('android', 1), ('heart', 1), ('many', 1), ('single', 1), ('board', 1), ('computer', 1), ('raspberry', 1), ('pi', 1), ('gain', 1), ('skill', 1)]
[('python', 3), ('algorithm', 3), ('second', 1), ('edition', 1), ('explains', 1), ('approach', 1), ('analysis', 1), ('design', 1), ('written', 1), ('magnus', 1), ('lie', 1), ('hetland', 1), ('author', 1), ('beginning', 1), ('book', 1), ('sharply', 1), ('focused', 1), ('classical', 1), ('give', 1), ('solid', 1)]
[('tier', 2), ('write', 1), ('solid', 1), ('secure', 1), ('object', 1), ('oriented', 1), ('code', 1), ('new', 1), ('php', 1), ('book', 1), ('create', 1), ('complete', 1), ('three', 1), ('application', 1), ('using', 1), ('natural', 1), ('process', 1), ('building', 1), ('testing', 1), ('module', 1), ('within', 1), ('practical', 1), ('approach', 1), ('teach', 1), ('app', 1)]
[('nbsp', 2), ('program', 1), ('style', 1), ('book', 1), ('go', 1), ('beyond', 1), ('syntax', 1), ('design', 1), ('provides', 1), ('developer', 1), ('best', 1), ('practice', 1), ('guidance', 1), ('advice', 1), ('write', 1), ('beautiful', 1), ('maintainable', 1), ('correct', 1), ('code', 1), ('stylish', 1), ('cover', 1)]
[('kubernetes', 2), ('application', 2), ('master', 1), ('concept', 1), ('tool', 1), ('necessary', 1), ('start', 1), ('administering', 1), ('cluster', 1), ('deploying', 1), ('production', 1), ('cover', 1), ('entire', 1), ('curriculum', 1), ('certification', 1), ('developer', 1)]
[('use', 2), ('application', 2), ('attention', 1), ('net', 1), ('developer', 1), ('longer', 1), ('want', 1), ('javascript', 1), ('front', 1), ('end', 1), ('quickly', 1), ('efficiently', 1), ('learn', 1), ('single', 1), ('page', 1), ('spa', 1), ('thanks', 1), ('blazor', 1), ('today', 1), ('reality', 1), ('modern', 1), ('web', 1), ('based', 1)]
[('artificial', 2), ('intelligence', 2), ('argument', 1), ('despite', 1), ('dramatic', 1), ('advance', 1), ('field', 1), ('nowhere', 1), ('near', 1), ('developing', 1), ('system', 1), ('genuinely', 1), ('intelligent', 1), ('provocative', 1), ('book', 1), ('brian', 1), ('cantwell', 1), ('smith', 1), ('argues', 1)]
[('influential', 2), ('information', 2), ('classic', 1), ('work', 1), ('laid', 1), ('theoretical', 1), ('foundation', 1), ('theory', 1), ('timely', 1), ('text', 1), ('contemporary', 1), ('theorist', 1), ('practitioner', 1), ('book', 1), ('cybernetics', 1), ('first', 1), ('published', 1), ('norbert', 1), ('wiener', 1)]
[('python', 2), ('project', 2), ('impractical', 1), ('collection', 1), ('fun', 1), ('educational', 1), ('designed', 1), ('entertain', 1), ('programmer', 1), ('enhancing', 1), ('skill', 1), ('pick', 1), ('complete', 1), ('beginner', 1), ('book', 1), ('leave', 1), ('expanding', 1), ('existing', 1), ('concept', 1)]
[('android', 2), ('security', 2), ('billion', 1), ('device', 1), ('use', 1), ('today', 1), ('potential', 1), ('target', 1), ('unfortunately', 1), ('many', 1), ('fundamental', 1), ('feature', 1), ('little', 1), ('black', 1), ('box', 1), ('elite', 1)]
[('openbsd', 2), ('elegant', 1), ('highly', 1), ('secure', 1), ('unix', 1), ('operating', 1), ('system', 1), ('widely', 1), ('used', 1), ('basis', 1), ('critical', 1), ('dns', 1), ('server', 1), ('router', 1), ('firewall', 1), ('long', 1), ('awaited', 1), ('second', 1), ('edition', 1), ('absolute', 1), ('maintains', 1), ('author', 1), ('michael', 1), ('lucas', 1), ('trademark', 1)]
[('tip', 2), ('python', 2), ('indispensable', 1), ('collection', 1), ('practical', 1), ('real', 1), ('world', 1), ('advice', 1), ('tackling', 1), ('common', 1), ('problem', 1), ('taking', 1), ('code', 1), ('next', 1), ('level', 1), ('feature', 1), ('interview', 1), ('high', 1), ('profile', 1), ('developer', 1), ('share', 1), ('trick', 1), ('best', 1), ('practice', 1)]
[('pixel', 3), ('art', 2), ('make', 1), ('complete', 1), ('illustrated', 1), ('introduction', 1), ('creation', 1), ('aimed', 1), ('beginner', 1), ('starting', 1), ('right', 1), ('experienced', 1), ('artist', 1), ('wanting', 1), ('enhance', 1), ('skill', 1), ('hand', 1), ('anyone', 1), ('pencil', 1), ('paper', 1)]
[('natural', 3), ('language', 3), ('processing', 3), ('python', 3), ('spacy', 2), ('introduction', 1), ('using', 1), ('leading', 1), ('library', 1), ('show', 1), ('create', 1), ('nlp', 1), ('application', 1), ('chatbots', 1)]
[('medical', 2), ('device', 2), ('patient', 2), ('cybersecurity', 1), ('longer', 1), ('optional', 1), ('allow', 1), ('sensationalism', 1), ('headline', 1), ('drive', 1), ('discussion', 1), ('nevertheless', 1), ('proceed', 1), ('urgency', 1), ('end', 1), ('preventing', 1), ('harm', 1), ('preserving', 1), ('trust', 1), ('comprehensive', 1), ('guide', 1), ('secure', 1), ('lifecycle', 1), ('management', 1), ('book', 1)]
[('data', 5), ('cleansing', 2), ('name', 2), ('straight', 1), ('point', 1), ('guide', 1), ('provides', 1), ('introduction', 1), ('go', 1), ('munging', 1), ('wrangling', 1), ('whatever', 1), ('basically', 1), ('mean', 1), ('need', 1), ('done', 1), ('make', 1), ('useful', 1), ('trustworthy', 1), ('include', 1), ('following', 1), ('task', 1), ('deleting', 1), ('unnecessary', 1), ('headersdeleting', 1), ('summary', 1)]
[('researcher', 2), ('need', 1), ('write', 1), ('speak', 1), ('work', 1), ('research', 1), ('worth', 1), ('presenting', 1), ('based', 1), ('author', 1), ('decade', 1), ('experience', 1), ('advisor', 1), ('third', 1), ('edition', 1), ('provides', 1), ('detailed', 1), ('guidance', 1), ('writing', 1)]
[('financial', 2), ('exponential', 1), ('growth', 1), ('program', 1), ('trading', 1), ('global', 1), ('industry', 1), ('quantum', 1), ('finance', 1), ('underlying', 1), ('technology', 1), ('become', 1), ('hottest', 1), ('topic', 1), ('fintech', 1), ('community', 1), ('numerous', 1), ('institution', 1), ('fund', 1), ('house', 1), ('around', 1)]
[('full', 1), ('fascinating', 1), ('insight', 1), ('drawn', 1), ('impressive', 1), ('range', 1), ('discipline', 1), ('ascent', 1), ('information', 1), ('cast', 1), ('familiar', 1), ('foreign', 1), ('dramatic', 1), ('new', 1), ('light', 1), ('brian', 1), ('greene', 1), ('author', 1), ('elegant', 1), ('universeyour', 1)]
[('comprehensive', 1), ('analysis', 1), ('practical', 1), ('theoretical', 1), ('challenge', 1), ('surrounding', 1), ('use', 1), ('technology', 1), ('legal', 1), ('practice', 1)]
[('science', 2), ('concise', 1), ('accessible', 1), ('guide', 1), ('modern', 1), ('optimization', 1), ('method', 1), ('transforming', 1), ('computer', 1), ('data', 1), ('machine', 1), ('learning', 1)]
[('legal', 2), ('bayern', 1), ('set', 1), ('social', 1), ('political', 1), ('implication', 1), ('software', 1), ('program', 1), ('gaining', 1), ('personhood', 1)]
[('accessible', 1), ('overview', 1), ('introduces', 1), ('christoffel', 1), ('darboux', 1), ('kernel', 1), ('novel', 1), ('simple', 1), ('efficient', 1), ('tool', 1), ('statistical', 1), ('data', 1), ('analysis', 1)]
[('book', 1), ('introduces', 1), ('student', 1), ('full', 1), ('gamut', 1), ('different', 1), ('parallel', 1), ('programming', 1), ('style', 1), ('relationship', 1), ('hardware', 1), ('architecture', 1)]
[('rust', 2), ('programming', 2), ('practical', 2), ('step', 2), ('guide', 2), ('quickly', 1), ('learn', 1), ('rope', 1), ('language', 1), ('using', 1), ('beginning', 1), ('accomplished', 1), ('programmer', 1), ('author', 1), ('ric', 1), ('messier', 1), ('delivers', 1), ('highly', 1), ('real', 1), ('world', 1), ('coding', 1)]
[('window', 3), ('clear', 1), ('concise', 1), ('resource', 1), ('ideal', 1), ('guide', 1), ('beginner', 1), ('operating', 1), ('system', 1), ('fundamental', 1), ('cover', 1), ('everything', 1), ('need', 1), ('know', 1), ('learn', 1), ('master', 1)]
[('blockchain', 3), ('data', 2), ('technology', 2), ('ahead', 1), ('curve', 1), ('learn', 1), ('big', 1), ('came', 1), ('prominence', 1), ('disruptive', 1), ('made', 1), ('cryptocurrencies', 1), ('work', 1), ('pro', 1), ('using', 1)]
[('grade', 1), ('major', 1), ('language', 1), ('mastery', 1), ('take', 1), ('interesting', 1), ('new', 1), ('place', 1), ('almost', 1), ('year', 1), ('first', 1), ('appeared', 1), ('still', 1), ('world', 1)]
[('data', 2), ('monetize', 1), ('company', 1), ('science', 1), ('expertise', 1), ('without', 1), ('spending', 1), ('fortune', 1), ('hiring', 1), ('independent', 1), ('strategy', 1), ('consultant', 1), ('help', 1), ('simple', 1), ('clear', 1), ('process', 1), ('ensuring', 1)]
[('java', 2), ('programming', 2), ('guide', 2), ('become', 1), ('wizard', 1), ('popular', 1), ('consider', 1), ('beginning', 1), ('dummy', 1), ('indispensable', 1), ('learning', 1), ('program', 1)]
[('follow', 1), ('cory', 1), ('althoff', 1), ('bestselling', 1), ('self', 1), ('taught', 1), ('programmer', 1), ('inspired', 1), ('hundred', 1), ('thousand', 1), ('professional', 1), ('learn', 1), ('program', 1), ('outside', 1), ('school', 1), ('fresh', 1)]
[('mathematics', 2), ('data', 2), ('applied', 2), ('explains', 1), ('theory', 1), ('method', 1), ('big', 1), ('finance', 1), ('investing', 1), ('science', 1), ('fundamentally', 1), ('changed', 1), ('wall', 1), ('street', 1), ('software', 1), ('code', 1), ('increasingly', 1)]
[('taking', 2), ('photo', 2), ('wait', 1), ('took', 1), ('amazing', 1), ('picture', 1), ('simple', 1), ('point', 1), ('click', 1), ('good', 1), ('take', 1), ('bit', 1), ('know', 1), ('android', 1), ('smartphone', 1), ('photography', 1), ('dummy', 1)]
[('step', 2), ('unlock', 1), ('power', 1), ('excel', 1), ('roadmap', 1), ('formula', 1), ('function', 1), ('swiss', 1), ('army', 1), ('knife', 1), ('digital', 1), ('toolbox', 1), ('multiply', 1), ('productivity', 1), ('make', 1), ('smartest', 1), ('gal', 1), ('almost', 1)]
[('business', 2), ('tool', 2), ('large', 1), ('corporation', 1), ('ibm', 1), ('oracle', 1), ('using', 1), ('excel', 1), ('dashboard', 1), ('report', 1), ('intelligence', 1), ('many', 1), ('smaller', 1), ('looking', 1), ('order', 1), ('cut', 1), ('cost', 1), ('budgetary', 1), ('reason', 1), ('effective', 1), ('analyst', 1)]
[('database', 2), ('become', 1), ('bos', 1), ('fun', 1), ('accessible', 1), ('easy', 1), ('follow', 1), ('guide', 1), ('microsoft', 1), ('access', 1), ('hold', 1), ('key', 1), ('organizing', 1), ('accessing', 1), ('data', 1), ('convenient', 1)]
[('azure', 3), ('devops', 2), ('beginning', 2), ('software', 2), ('perfect', 1), ('guide', 1), ('user', 1), ('planning', 1), ('building', 1), ('testing', 1), ('releasing', 1), ('application', 1), ('award', 1), ('winning', 1)]
[('word', 3), ('microsoft', 2), ('create', 2), ('write', 1), ('professional', 1), ('looking', 1), ('document', 1), ('regular', 1), ('basis', 1), ('require', 1), ('mighty', 1), ('processor', 1), ('offer', 1), ('power', 1), ('capability', 1), ('enter', 1), ('pair', 1)]
[('office', 3), ('world', 2), ('straightforward', 2), ('multiply', 1), ('productivity', 1), ('guide', 1), ('popular', 1), ('software', 1), ('microsoft', 1), ('contains', 1), ('tool', 1), ('virtually', 1), ('every', 1), ('task', 1), ('possibly', 1)]
[('learn', 1), ('best', 1), ('application', 1), ('emailing', 1), ('scheduling', 1), ('collaborating', 1), ('plain', 1), ('getting', 1), ('stuff', 1), ('done', 1), ('know', 1), ('microsoft', 1), ('outlook', 1), ('everything', 1), ('including', 1), ('cook', 1), ('dinner', 1)]
[('database', 2), ('design', 2), ('concise', 1), ('introduction', 1), ('concept', 1), ('method', 1), ('technique', 1), ('cloud', 1), ('newly', 1), ('revised', 1), ('second', 1), ('edition', 1), ('beginning', 1), ('solution', 1), ('understanding', 1)]
[('reimagine', 1), ('future', 1), ('internet', 1), ('device', 1), ('gadget', 1), ('refrigerator', 1), ('home', 1), ('security', 1), ('system', 1), ('vacuum', 1), ('cleaner', 1), ('stereo', 1), ('going', 1), ('online', 1), ('computer', 1)]
[('linux', 2), ('exam', 2), ('best', 1), ('selling', 1), ('hand', 1), ('roadmap', 1), ('acing', 1), ('new', 1), ('newly', 1), ('updated', 1), ('fifth', 1), ('edition', 1), ('comptia', 1), ('study', 1), ('guide', 1), ('xk', 1), ('industry', 1), ('veteran', 1), ('tech', 1), ('education', 1), ('guru', 1)]
[('ceh', 2), ('master', 1), ('identify', 1), ('weak', 1), ('spot', 1), ('certified', 1), ('ethical', 1), ('hacker', 1), ('version', 1), ('practice', 1), ('test', 1), ('ideal', 1), ('preparation', 1), ('high', 1), ('stake', 1), ('exam', 1), ('five', 1), ('complete', 1), ('unique', 1)]
[('technology', 2), ('use', 2), ('implementation', 1), ('near', 1), ('field', 1), ('communication', 1), ('nfc', 1), ('smartphones', 1), ('grown', 1), ('rapidly', 1), ('especially', 1), ('due', 1), ('payment', 1), ('system', 1), ('addition', 1), ('ability', 1), ('energy', 1), ('transmitted', 1)]
[('python', 2), ('artificial', 2), ('intelligence', 2), ('programming', 2), ('hand', 1), ('roadmap', 1), ('using', 1), ('practical', 1), ('zero', 1), ('hero', 1), ('veteran', 1), ('educator', 1), ('photophysicist', 1)]
[('keep', 2), ('pace', 2), ('look', 1), ('sharp', 1), ('learn', 1), ('refresh', 1), ('skill', 1), ('latest', 1), ('version', 1), ('popular', 1), ('programming', 1), ('language', 1), ('frequent', 1), ('update', 1), ('help', 1), ('world', 1), ('coding', 1), ('change', 1)]
[('new', 2), ('thorough', 1), ('helpful', 1), ('reference', 1), ('aspiring', 1), ('website', 1), ('builder', 1), ('looking', 1), ('start', 1), ('exciting', 1), ('career', 1), ('front', 1), ('end', 1), ('web', 1), ('building', 1), ('design', 1), ('maybe', 1), ('want', 1), ('develop', 1), ('skill', 1), ('create', 1)]
[('python', 2), ('data', 2), ('heavy', 1), ('lifting', 1), ('analyze', 1), ('large', 1), ('datasets', 1), ('science', 1), ('dummy', 1), ('let', 1), ('hand', 1), ('dirty', 1), ('using', 1), ('top', 1), ('programming', 1), ('language', 1)]
[('secure', 1), ('application', 1), ('help', 1), ('favorite', 1), ('jedi', 1), ('master', 1), ('threat', 1), ('every', 1), ('engineer', 1), ('learn', 1), ('war', 1), ('accomplished', 1), ('security', 1), ('expert', 1), ('educator', 1), ('adam', 1), ('shostack', 1)]
[('memory', 3), ('forensics', 2), ('digital', 2), ('provides', 1), ('cutting', 1), ('edge', 1), ('technology', 1), ('help', 1), ('investigate', 1), ('attack', 1), ('art', 1), ('analyzing', 1), ('computer', 1), ('ram', 1), ('solve', 1), ('crime', 1), ('follow', 1), ('best', 1), ('seller', 1), ('malware', 1)]
[('cisco', 2), ('networking', 2), ('helpful', 1), ('guide', 1), ('thing', 1), ('wish', 1), ('complex', 1), ('topic', 1), ('router', 1), ('switch', 1), ('presented', 1), ('simple', 1), ('understandable', 1), ('presentation', 1)]
[('linux', 2), ('career', 2), ('learn', 1), ('take', 1), ('next', 1), ('level', 1), ('essential', 1), ('nd', 1), ('edition', 1), ('provides', 1), ('solid', 1), ('foundation', 1), ('knowledge', 1), ('anyone', 1), ('considering', 1), ('information', 1)]
[('data', 3), ('method', 2), ('learn', 1), ('analysis', 1), ('application', 1), ('real', 1), ('world', 1), ('set', 1), ('updated', 1), ('second', 1), ('edition', 1), ('serf', 1), ('introduction', 1), ('mining', 1), ('model', 1), ('including', 1), ('association', 1), ('rule', 1)]
[('risk', 2), ('connected', 2), ('car', 2), ('field', 1), ('manual', 1), ('contextualizing', 1), ('cyber', 1), ('threat', 1), ('vulnerability', 1), ('penetration', 1), ('testing', 1), ('assessment', 1), ('hacking', 1), ('deconstructs', 1)]
[('data', 2), ('field', 1), ('mining', 1), ('lie', 1), ('confluence', 1), ('predictive', 1), ('analytics', 1), ('statistical', 1), ('analysis', 1), ('business', 1), ('intelligence', 1), ('due', 1), ('increasing', 1), ('complexity', 1), ('size', 1), ('set', 1), ('wide', 1), ('range', 1), ('application', 1), ('computer', 1), ('science', 1)]
[('data', 3), ('need', 2), ('learn', 1), ('crunch', 1), ('huge', 1), ('amount', 1), ('powerpivot', 1), ('power', 1), ('query', 1), ('ton', 1), ('make', 1), ('sense', 1), ('microsoft', 1), ('excel', 1), ('program', 1), ('handle', 1), ('amazingly', 1), ('large', 1), ('set', 1)]
[('project', 5), ('management', 2), ('process', 2), ('easy', 1), ('way', 1), ('take', 1), ('control', 1), ('timeline', 1), ('resource', 1), ('budget', 1), ('detail', 1), ('manager', 1), ('meet', 1), ('new', 1), ('assistant', 1), ('discover', 1), ('amazed', 1), ('efficient', 1), ('effective', 1), ('written', 1), ('expert', 1), ('author', 1), ('know', 1), ('backward', 1), ('forward', 1)]
[('guide', 3), ('cisa', 2), ('exam', 2), ('certified', 2), ('information', 2), ('system', 2), ('auditor', 2), ('study', 2), ('edition', 2), ('ultimate', 1), ('prep', 1), ('practice', 1), ('sybex', 1), ('fourth', 1), ('newest', 1), ('industry', 1), ('leading', 1), ('fully', 1), ('updated', 1)]
[('book', 2), ('canon', 2), ('eos', 2), ('rebel', 2), ('shot', 2), ('taking', 2), ('photography', 1), ('class', 1), ('provides', 1), ('enough', 1), ('camera', 1), ('power', 1), ('take', 1), ('pro', 1), ('style', 1), ('dreamed', 1), ('shooting', 1), ('show', 1), ('dummy', 1), ('bridge', 1), ('gap', 1), ('quick', 1), ('auto', 1), ('mode', 1), ('charge', 1), ('setting', 1), ('offer', 1), ('full', 1), ('control', 1), ('picture', 1)]
[('internet', 2), ('amazon', 1), ('best', 1), ('history', 1), ('book', 1), ('month', 1), ('july', 1), ('invaluable', 1), ('guide', 1), ('understanding', 1), ('broken', 1), ('brain', 1), ('mdash', 1), ('fix', 1), ('original', 1), ('designed', 1), ('make', 1), ('upset', 1), ('distracted', 1), ('confused', 1), ('outraged', 1), ('something', 1), ('unexpected', 1), ('happened', 1), ('turn', 1), ('last', 1), ('decade', 1)]
[('logic', 3), ('introductory', 1), ('generally', 1), ('taught', 1), ('straightforward', 1), ('technical', 1), ('discipline', 1), ('book', 1), ('john', 1), ('macfarlane', 1), ('help', 1), ('reader', 1), ('think', 1), ('limitation', 1), ('presupposition', 1), ('alternative', 1), ('classical', 1), ('first', 1), ('order', 1), ('predicate', 1), ('making', 1), ('ideal', 1), ('introduction', 1), ('philosophical', 1), ('student', 1), ('already', 1), ('completed', 1)]
[('developing', 2), ('synthesizer', 2), ('vcv', 2), ('rack', 2), ('reader', 2), ('step', 2), ('virtual', 1), ('take', 1), ('process', 1), ('module', 1), ('beginning', 1), ('elementary', 1), ('leading', 1), ('engaging', 1), ('example', 1), ('using', 1), ('intuitive', 1), ('open', 1), ('source', 1), ('api', 1), ('book', 1), ('guide', 1), ('even', 1), ('inexperienced', 1), ('master', 1), ('efficient', 1), ('dsp', 1)]
[('social', 3), ('network', 3), ('mixed', 2), ('method', 2), ('analysis', 2), ('brings', 1), ('together', 1), ('diverse', 1), ('perspective', 1), ('international', 1), ('expert', 1), ('design', 1), ('implement', 1), ('evaluate', 1), ('mmsna', 1), ('increased', 1), ('recognition', 1), ('important', 1), ('catalyst', 1), ('change', 1), ('transformation', 1), ('edited', 1), ('book', 1), ('leading', 1)]
[('sound', 3), ('game', 3), ('leading', 2), ('video', 2), ('companion', 1), ('guide', 1), ('working', 1), ('project', 1), ('focused', 1), ('creative', 1), ('collaborative', 1), ('philosophical', 1), ('organizational', 1), ('skill', 1), ('behind', 1), ('eschewing', 1), ('technical', 1), ('book', 1), ('celebrates', 1), ('subject', 1), ('essential', 1), ('development', 1), ('level', 1), ('refuting', 1)]
[('publisher', 2), ('product', 2), ('test', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('real', 1), ('first', 1), ('highly', 1), ('effective', 1), ('self', 1), ('study', 1), ('guide', 1), ('cover', 1), ('six', 1), ('domain', 1), ('challenging', 1), ('certified', 1), ('cloud', 1)]
[('exam', 3), ('ct', 2), ('installation', 2), ('objective', 2), ('complete', 1), ('study', 1), ('system', 1), ('published', 1), ('infocomm', 1), ('international', 1), ('certified', 1), ('technology', 1), ('specialist', 1), ('guide', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('leading', 1), ('internationally', 1), ('recognized', 1), ('certification', 1), ('audiovisual', 1), ('professional', 1), ('chapter', 1), ('feature', 1), ('learning', 1)]
[('linux', 3), ('system', 2), ('set', 2), ('virtual', 1), ('machine', 1), ('showcasing', 1), ('book', 1), ('test', 1), ('configuration', 1), ('administration', 1), ('beginner', 1), ('guide', 1), ('seventh', 1), ('edition', 1), ('teach', 1), ('administrator', 1), ('configure', 1), ('quickly', 1), ('easily', 1), ('effectively', 1), ('manage', 1), ('version', 1), ('individual', 1), ('server', 1), ('entire', 1), ('network', 1), ('using', 1), ('practical', 1), ('resource', 1)]
[('oracle', 3), ('database', 3), ('pl', 3), ('sql', 3), ('master', 1), ('application', 1), ('development', 1), ('develop', 1), ('debug', 1), ('administer', 1), ('robust', 1), ('program', 1), ('filled', 1), ('detailed', 1), ('example', 1), ('expert', 1), ('strategy', 1), ('ace', 1), ('programming', 1), ('explains', 1), ('retrieve', 1), ('process', 1), ('data', 1), ('write', 1), ('statement', 1), ('execute', 1), ('effective', 1), ('query', 1), ('incorporate', 1), ('php', 1)]
[('design', 3), ('computer', 3), ('organization', 2), ('digital', 2), ('logic', 2), ('comprehensive', 1), ('guide', 1), ('modern', 1), ('computing', 1), ('system', 1), ('architecture', 1), ('security', 1), ('provides', 1), ('practicing', 1), ('engineer', 1), ('student', 1), ('clear', 1), ('understanding', 1), ('hardware', 1), ('technology', 1), ('fundamental', 1), ('use', 1)]
[('oracle', 3), ('implement', 2), ('manufacturing', 2), ('supply', 2), ('chain', 2), ('management', 2), ('internet', 1), ('based', 1), ('product', 1), ('using', 1), ('authorized', 1), ('resource', 1), ('comprehensive', 1), ('guide', 1), ('explains', 1), ('planning', 1), ('engineering', 1), ('pricing', 1), ('order', 1), ('fulfillment', 1), ('inventory', 1), ('component', 1), ('develop', 1), ('deliver', 1), ('good', 1)]
[('oracle', 4), ('dba', 3), ('database', 3), ('every', 2), ('definitive', 1), ('reference', 1), ('completely', 1), ('updated', 1), ('handbook', 1), ('quintessential', 1), ('tool', 1), ('emphasis', 1), ('big', 1), ('picture', 1), ('enabling', 1), ('administrator', 1), ('achieve', 1), ('effective', 1), ('efficient', 1), ('management', 1), ('fully', 1), ('revised', 1), ('cover', 1), ('new', 1), ('feature', 1), ('utility', 1)]
[('database', 4), ('oracle', 3), ('release', 2), ('performance', 2), ('proven', 1), ('optimization', 1), ('solution', 1), ('fully', 1), ('updated', 1), ('systematically', 1), ('identify', 1), ('eliminate', 1), ('problem', 1), ('help', 1), ('certified', 1), ('master', 1), ('richard', 1), ('niemiec', 1), ('filled', 1), ('real', 1), ('world', 1), ('case', 1), ('study', 1), ('best', 1), ('practice', 1), ('tuning', 1), ('tip', 1), ('technique', 1), ('detail', 1)]
[('java', 5), ('programming', 2), ('step', 2), ('practical', 1), ('introduction', 1), ('fully', 1), ('revised', 1), ('latest', 1), ('version', 1), ('se', 1), ('thoroughly', 1), ('updated', 1), ('platform', 1), ('standard', 1), ('edition', 1), ('hand', 1), ('resource', 1), ('show', 1), ('started', 1), ('first', 1), ('chapter', 1), ('written', 1), ('guru', 1), ('herbert', 1), ('schildt', 1), ('book', 1), ('start', 1), ('basic', 1)]
[('pattern', 3), ('ruby', 3), ('design', 2), ('praise', 1), ('document', 1), ('smart', 1), ('way', 1), ('resolve', 1), ('many', 1), ('problem', 1), ('developer', 1), ('commonly', 1), ('encounter', 1), ('rus', 1), ('olsen', 1), ('done', 1), ('job', 1), ('selecting', 1), ('classic', 1), ('augmenting', 1), ('newer', 1)]
[('cloud', 3), ('architect', 2), ('microsoft', 2), ('whether', 1), ('administrator', 1), ('developer', 1), ('technology', 1), ('transforming', 1), ('role', 1), ('guide', 1), ('brings', 1), ('together', 1), ('knowledge', 1), ('need', 1), ('transition', 1), ('smoothly', 1), ('office', 1), ('hybrid', 1), ('environment', 1), ('mvp', 1), ('ben', 1), ('curry', 1), ('leading', 1), ('brian', 1), ('law', 1), ('present', 1), ('specific', 1), ('date', 1), ('guidance', 1)]
[('go', 3), ('start', 2), ('writing', 1), ('production', 1), ('ready', 1), ('code', 1), ('fast', 1), ('thousand', 1), ('developer', 1), ('team', 1), ('want', 1), ('taking', 1), ('advantage', 1), ('powerful', 1), ('language', 1), ('used', 1), ('project', 1), ('nbsp', 1), ('ranging', 1), ('kubernetes', 1), ('docker', 1), ('vault', 1), ('fundamental', 1), ('specifically', 1), ('designed', 1)]
[('step', 2), ('photo', 2), ('easy', 1), ('clear', 1), ('readable', 1), ('focused', 1), ('want', 1), ('instruction', 1), ('task', 1), ('care', 1), ('large', 1), ('full', 1), ('color', 1), ('close', 1), ('callouts', 1), ('iphone', 1), ('show', 1), ('exactly', 1), ('common', 1), ('sense', 1), ('help', 1)]
[('drawing', 1), ('ibm', 1), ('unsurpassed', 1), ('technical', 1), ('communication', 1), ('experience', 1), ('reader', 1), ('discover', 1), ('today', 1), ('best', 1), ('practice', 1), ('meeting', 1), ('nine', 1), ('quality', 1), ('characteristic', 1), ('accuracy', 1), ('clarity', 1), ('completeness', 1), ('concreteness', 1), ('organisation', 1), ('retrievability', 1), ('style', 1), ('task', 1), ('orientation', 1), ('visual', 1), ('effectiveness', 1), ('nbsp', 1), ('packed', 1), ('guideline', 1), ('checklist', 1), ('example', 1)]
[('comptia', 3), ('pentest', 3), ('pt', 3), ('cert', 2), ('guide', 2), ('certification', 2), ('learn', 1), ('prepare', 1), ('practice', 1), ('exam', 1), ('success', 1), ('pearson', 1), ('leader', 1), ('learning', 1), ('present', 1), ('student', 1), ('organized', 1), ('test', 1), ('preparation', 1), ('routine', 1), ('use', 1), ('proven', 1), ('series', 1), ('element', 1), ('technique', 1)]
[('functional', 3), ('better', 2), ('programming', 2), ('practical', 1), ('guide', 1), ('cleaner', 1), ('code', 1), ('design', 1), ('renowned', 1), ('software', 1), ('engineer', 1), ('robert', 1), ('martin', 1), ('uncle', 1), ('bob', 1), ('explains', 1), ('use', 1), ('build', 1), ('system', 1), ('real', 1), ('customer', 1)]
[('software', 3), ('architecture', 2), ('system', 2), ('leverage', 1), ('leadership', 1), ('knowledge', 1), ('make', 1), ('better', 1), ('decision', 1), ('think', 1), ('deeply', 1), ('implement', 1), ('slowly', 1), ('nbsp', 1), ('overarching', 1), ('goal', 1), ('build', 1), ('meet', 1), ('quality', 1), ('standard', 1)]
[('business', 3), ('value', 2), ('analysis', 2), ('robertson', 2), ('deliver', 1), ('real', 1), ('understand', 1), ('customer', 1), ('truly', 1), ('solve', 1), ('problem', 1), ('really', 1), ('need', 1), ('solved', 1), ('help', 1), ('crucial', 1), ('agile', 1), ('environment', 1), ('always', 1), ('agility', 1), ('leading', 1), ('expert', 1), ('james', 1), ('suzanne', 1), ('show', 1), ('perform', 1)]
[('day', 1), ('acquire', 1), ('knowledge', 1), ('skill', 1), ('necessary', 1), ('develop', 1), ('application', 1), ('computer', 1), ('web', 1), ('server', 1), ('mobile', 1), ('device', 1), ('complete', 1), ('tutorial', 1), ('quickly', 1), ('master', 1), ('basic', 1), ('move', 1), ('advanced', 1), ('feature', 1)]
[('team', 3), ('managing', 2), ('microsoft', 2), ('environment', 2), ('exam', 1), ('ref', 1), ('m', 1), ('focus', 1), ('helping', 1), ('candidate', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('configuring', 1), ('deploying', 1), ('office', 1), ('workload', 1), ('improve', 1), ('collaboration', 1), ('communication', 1), ('enterprise', 1), ('learn', 1), ('plan', 1), ('configure', 1), ('upgrade', 1), ('skype', 1), ('business', 1)]
[('need', 2), ('core', 2), ('tool', 2), ('software', 2), ('development', 2), ('know', 1), ('nothing', 1), ('three', 1), ('needed', 1), ('modern', 1), ('unix', 1), ('command', 1), ('line', 1), ('text', 1), ('editor', 1), ('version', 1), ('control', 1), ('git', 1)]
[('help', 2), ('practice', 2), ('trust', 1), ('best', 1), ('selling', 1), ('cert', 1), ('guide', 1), ('series', 1), ('pearson', 1), ('certification', 1), ('learn', 1), ('prepare', 1), ('exam', 1), ('success', 1), ('built', 1), ('objective', 1), ('providing', 1), ('assessment', 1), ('review', 1), ('ensure', 1), ('fully', 1), ('prepared', 1)]
[('nan', 1)]
[('cybersecurity', 2), ('misconception', 1), ('myth', 1), ('busting', 1), ('skill', 1), ('need', 1), ('correct', 1), ('fraught', 1), ('hidden', 1), ('unsuspected', 1), ('danger', 1), ('difficulty', 1), ('despite', 1), ('best', 1), ('intention', 1), ('common', 1), ('nbsp', 1), ('avoidable', 1), ('mistake', 1)]
[('visual', 4), ('master', 2), ('analytics', 2), ('need', 2), ('fundamental', 1), ('modern', 1), ('craft', 1), ('compelling', 1), ('narrative', 1), ('tableau', 1), ('nbsp', 1), ('persuade', 1), ('inform', 1), ('data', 1), ('storytelling', 1), ('today', 1)]
[('exam', 4), ('topic', 3), ('list', 3), ('every', 1), ('feature', 1), ('book', 1), ('support', 1), ('efficient', 1), ('preparation', 1), ('long', 1), ('term', 1), ('mastery', 1), ('opening', 1), ('identify', 1), ('student', 1), ('need', 1), ('learn', 1), ('chapter', 1), ('ec', 1), ('council', 1), ('official', 1), ('objective', 1), ('key', 1), ('figure', 1), ('table', 1), ('call', 1), ('attention', 1), ('information', 1), ('crucial', 1), ('success', 1)]
[('android', 3), ('big', 2), ('nerd', 2), ('ranch', 2), ('guide', 2), ('programming', 1), ('introductory', 1), ('book', 1), ('programmer', 1), ('kotlin', 1), ('experience', 1), ('based', 1), ('popular', 1), ('bootcamp', 1), ('lead', 1), ('wilderness', 1), ('using', 1), ('hand', 1), ('example', 1), ('apps', 1)]
[('manage', 2), ('automate', 2), ('data', 2), ('panda', 2), ('python', 2), ('analysis', 1), ('today', 1), ('analyst', 1), ('characterized', 1), ('extraordinary', 1), ('variety', 1), ('velocity', 1), ('volume', 1), ('using', 1), ('open', 1), ('source', 1), ('library', 1), ('use', 1), ('rapidly', 1), ('perform', 1)]
[('visual', 3), ('guide', 3), ('adobe', 2), ('illustrator', 2), ('quickstart', 2), ('easy', 2), ('learn', 1), ('quick', 1), ('way', 1), ('approach', 1), ('learning', 1), ('concise', 1), ('step', 1), ('explanation', 1), ('getting', 1), ('running', 1)]
[('apis', 2), ('proven', 1), ('pattern', 1), ('designing', 1), ('evolvable', 1), ('high', 1), ('quality', 1), ('domain', 1), ('technology', 1), ('platform', 1), ('enable', 1), ('breakthrough', 1), ('innovation', 1), ('digital', 1), ('transformation', 1), ('organization', 1), ('ecosystem', 1), ('kind', 1), ('create', 1), ('user', 1), ('friendly', 1), ('reliable', 1)]
[('professional', 4), ('coaching', 3), ('help', 2), ('teaching', 1), ('skill', 1), ('unstuck', 1), ('find', 1), ('way', 1), ('forward', 1), ('virtually', 1), ('personal', 1), ('situation', 1), ('early', 1), ('increasingly', 1), ('applied', 1), ('individual', 1), ('team', 1), ('organisation', 1), ('move', 1), ('agile', 1), ('mindset', 1), ('method', 1)]
[('build', 2), ('software', 2), ('story', 2), ('better', 1), ('business', 1), ('telling', 1), ('visualizing', 1), ('working', 1), ('book', 1), ('help', 1), ('essence', 1), ('highly', 1), ('recommended', 1), ('oliver', 1), ('drotbohm', 1), ('storytelling', 1), ('heart', 1), ('human', 1)]
[('drawing', 1), ('year', 1), ('helping', 1), ('software', 1), ('team', 1), ('succeed', 1), ('nearly', 1), ('organization', 1), ('karl', 1), ('wiegers', 1), ('present', 1), ('concise', 1), ('lesson', 1), ('practical', 1), ('recommendation', 1), ('student', 1), ('apply', 1), ('kind', 1), ('project', 1), ('regardless', 1), ('application', 1), ('domain', 1), ('technology', 1), ('development', 1), ('lifecycle', 1), ('platform', 1), ('infrastructure', 1), ('embodying', 1), ('wisdom', 1), ('deeper', 1), ('understanding', 1)]
[('solidworks', 3), ('technique', 2), ('fully', 1), ('updated', 1), ('mastering', 1), ('nbsp', 1), ('rd', 1), ('edition', 1), ('thoroughly', 1), ('illuminates', 1), ('solid', 1), ('modeling', 1), ('cad', 1), ('developing', 1), ('part', 1), ('assembly', 1), ('drawing', 1), ('additional', 1), ('specialisation', 1), ('toolbox', 1), ('manufacturing', 1), ('covered', 1), ('including', 1), ('sheet', 1), ('metal', 1), ('injection', 1), ('molding', 1), ('animation', 1), ('new', 1)]
[('ebook', 2), ('edition', 2), ('comptia', 2), ('security', 2), ('sy', 2), ('practice', 2), ('cert', 1), ('guide', 1), ('include', 1), ('access', 1), ('pearson', 1), ('test', 1), ('prep', 1), ('exam', 1), ('come', 1), ('print', 1), ('learn', 1), ('prepare', 1)]
[('book', 3), ('nbsp', 3), ('continues', 1), ('high', 1), ('standard', 1), ('come', 1), ('expect', 1), ('servicetech', 1), ('press', 1), ('provides', 1), ('explained', 1), ('vendor', 1), ('agnostic', 1), ('pattern', 1), ('challenge', 1), ('providing', 1), ('using', 1), ('cloud', 1), ('solution', 1), ('paas', 1), ('saas', 1)]
[('visual', 2), ('guide', 2), ('beginning', 2), ('task', 2), ('step', 2), ('php', 1), ('web', 1), ('quickstart', 1), ('reader', 1), ('start', 1), ('tour', 1), ('programming', 1), ('language', 1), ('look', 1), ('specific', 1), ('learn', 1), ('need', 1), ('know', 1), ('based', 1), ('reference', 1), ('us', 1), ('instruction', 1), ('plenty', 1), ('screenshots', 1), ('teach', 1), ('intermediate', 1), ('user', 1), ('popular', 1)]
[('lightroom', 4), ('scott', 2), ('book', 2), ('latest', 2), ('first', 1), ('launched', 1), ('year', 1), ('ago', 1), ('kelby', 1), ('adobe', 1), ('photoshop', 1), ('world', 1), ('top', 1), ('selling', 1), ('translated', 1), ('dozen', 1), ('different', 1), ('language', 1), ('version', 1), ('classic', 1), ('biggest', 1), ('update', 1), ('sharing', 1), ('technique', 1), ('insight', 1)]
[('fundamental', 3), ('comptia', 2), ('concept', 2), ('first', 1), ('step', 1), ('towards', 1), ('career', 1), ('clear', 1), ('pathway', 1), ('advanced', 1), ('certification', 1), ('demonstrates', 1), ('understanding', 1), ('basic', 1), ('terminology', 1), ('infrastructure', 1), ('application', 1), ('software', 1), ('development', 1), ('database', 1), ('security', 1), ('cert', 1), ('guide', 1), ('comprehensive', 1)]
[('java', 6), ('nbsp', 2), ('classic', 1), ('guide', 1), ('advanced', 1), ('programming', 1), ('fully', 1), ('updated', 1), ('definitive', 1), ('reference', 1), ('instructional', 1), ('work', 1), ('ecosystem', 1), ('andrew', 1), ('binstock', 1), ('magazine', 1), ('core', 1), ('leading', 1), ('nonsense', 1)]
[('design', 3), ('team', 3), ('user', 1), ('experience', 1), ('often', 1), ('suffer', 1), ('decentralized', 1), ('blank', 1), ('canvas', 1), ('approach', 1), ('creating', 1), ('documenting', 1), ('solution', 1), ('new', 1), ('project', 1), ('repeatedly', 1), ('reinvent', 1), ('screen', 1), ('inconsistency', 1), ('result', 1), ('scramble', 1)]
[('complete', 2), ('mit', 1), ('app', 1), ('inventor', 1), ('anyone', 1), ('build', 1), ('working', 1), ('android', 1), ('apps', 1), ('without', 1), ('writing', 1), ('code', 1), ('tutorial', 1), ('help', 1), ('even', 1), ('absolutely', 1), ('programming', 1), ('experience', 1), ('nbsp', 1), ('unlike', 1), ('book', 1), ('focused', 1), ('obsolete', 1)]
[('exam', 4), ('nbsp', 3), ('practice', 2), ('thoroughly', 1), ('updated', 1), ('prepare', 1), ('candidate', 1), ('new', 1), ('book', 1), ('includes', 1), ('chapter', 1), ('map', 1), ('directly', 1), ('objective', 1), ('comprehensive', 1), ('foundational', 1), ('learning', 1), ('topic', 1), ('covered', 1), ('extensive', 1), ('collection', 1), ('question', 1), ('including', 1), ('full', 1), ('state', 1), ('art', 1), ('test', 1), ('engine', 1)]
[('book', 2), ('developer', 1), ('trying', 1), ('figure', 1), ('application', 1), ('responding', 1), ('need', 1), ('go', 1), ('diagnosing', 1), ('production', 1), ('issue', 1), ('saved', 1), ('hour', 1), ('troubleshooting', 1), ('complicated', 1), ('operation', 1), ('problem', 1)]
[('book', 3), ('object', 3), ('oriented', 2), ('analysis', 2), ('model', 2), ('innovative', 1), ('recognizes', 1), ('need', 1), ('within', 1), ('community', 1), ('go', 1), ('beyond', 1), ('tool', 1), ('technique', 1), ('typical', 1), ('methodology', 1), ('pattern', 1), ('reusable', 1), ('martin', 1), ('fowler', 1), ('focus', 1), ('end', 1), ('result', 1), ('design', 1), ('share', 1), ('wealth', 1)]
[('kotlin', 2), ('language', 2), ('statically', 1), ('typed', 1), ('programming', 1), ('designed', 1), ('interoperate', 1), ('java', 1), ('fully', 1), ('supported', 1), ('google', 1), ('android', 1), ('operating', 1), ('system', 1), ('multiplatform', 1), ('used', 1), ('write', 1), ('code', 1), ('shared', 1), ('across', 1), ('platform', 1), ('including', 1), ('macos', 1), ('io', 1), ('window', 1), ('javascript', 1), ('based', 1), ('big', 1), ('nerd', 1), ('ranch', 1), ('popular', 1)]
[('java', 7), ('reference', 2), ('classic', 1), ('guide', 1), ('advanced', 1), ('programming', 1), ('fully', 1), ('updated', 1), ('definitive', 1), ('instructional', 1), ('work', 1), ('ecosystem', 1), ('andrew', 1), ('binstock', 1), ('magazine', 1), ('core', 1), ('leading', 1), ('nonsense', 1), ('tutorial', 1), ('experienced', 1), ('programmer', 1), ('want', 1), ('write', 1), ('robust', 1), ('code', 1)]
[('delphi', 3), ('new', 2), ('application', 2), ('version', 2), ('name', 1), ('focus', 1), ('corba', 1), ('database', 1), ('driver', 1), ('microsoft', 1), ('back', 1), ('office', 1), ('inprise', 1), ('borland', 1), ('enjoying', 1), ('resurgence', 1), ('growing', 1), ('user', 1), ('base', 1), ('programmer', 1), ('use', 1), ('rapid', 1), ('development', 1), ('enterprise', 1), ('computing', 1), ('rest', 1), ('success', 1), ('latest', 1), ('includes', 1)]
[('parallel', 2), ('computing', 2), ('python', 2), ('modern', 1), ('system', 1), ('contain', 1), ('multi', 1), ('core', 1), ('cpu', 1), ('gpus', 1), ('potential', 1), ('many', 1), ('scientific', 1), ('tool', 1), ('designed', 1), ('leverage', 1), ('parallelism', 1), ('short', 1), ('thorough', 1), ('resource', 1), ('data', 1), ('scientist', 1), ('programmer', 1), ('learn', 1), ('dask', 1), ('open', 1), ('source', 1), ('library', 1), ('provides', 1), ('apis', 1), ('make', 1)]
[('mobile', 2), ('app', 2), ('pressure', 1), ('produce', 1), ('designed', 1), ('easy', 1), ('navigate', 1), ('time', 1), ('reinvent', 1), ('wheel', 1), ('need', 1), ('handy', 1), ('reference', 1), ('provides', 1), ('design', 1), ('pattern', 1), ('illustrated', 1), ('screenshots', 1), ('current', 1), ('android', 1), ('io', 1), ('window', 1), ('phone', 1), ('apps', 1), ('changed', 1), ('book', 1), ('first', 1), ('edition', 1)]
[('security', 2), ('process', 2), ('administrator', 2), ('computer', 1), ('ongoing', 1), ('relentless', 1), ('contest', 1), ('system', 1), ('intruder', 1), ('good', 1), ('need', 1), ('stay', 1), ('step', 1), ('ahead', 1), ('adversary', 1), ('often', 1), ('involves', 1), ('continuing', 1), ('education', 1), ('grounded', 1), ('basic', 1), ('necessarily', 1), ('want', 1), ('complete', 1), ('treatise', 1)]
[('application', 3), ('javaserver', 2), ('model', 2), ('web', 2), ('face', 1), ('jsf', 1), ('brings', 1), ('component', 1), ('based', 1), ('development', 1), ('similar', 1), ('used', 1), ('standalone', 1), ('gui', 1), ('year', 1), ('technology', 1), ('build', 1), ('experience', 1), ('gained', 1), ('java', 1), ('servlets', 1), ('page', 1), ('numerous', 1), ('commercial', 1), ('open', 1), ('source', 1), ('framework', 1), ('simplify', 1)]
[('oracle', 6), ('sql', 2), ('loader', 2), ('version', 2), ('ubiquitous', 1), ('tool', 1), ('world', 1), ('shipped', 1), ('least', 1), ('continues', 1), ('supported', 1), ('enhanced', 1), ('new', 1), ('including', 1), ('job', 1), ('load', 1), ('data', 1), ('flat', 1), ('file', 1), ('database', 1), ('optimized', 1), ('loading', 1), ('large', 1), ('volume', 1)]
[('application', 3), ('couchdb', 2), ('data', 2), ('three', 1), ('creator', 1), ('show', 1), ('use', 1), ('document', 1), ('oriented', 1), ('database', 1), ('standalone', 1), ('framework', 1), ('high', 1), ('volume', 1), ('distributed', 1), ('simple', 1), ('model', 1), ('storing', 1), ('processing', 1), ('accessing', 1), ('ideal', 1), ('web', 1), ('handle', 1), ('huge', 1), ('amount', 1), ('loosely', 1), ('structured', 1), ('alone', 1), ('stretch', 1)]
[('computer', 2), ('vision', 2), ('trace', 2), ('macintosh', 2), ('time', 1), ('long', 1), ('ago', 1), ('typewriter', 1), ('notebook', 1), ('ruled', 1), ('everyday', 1), ('tool', 1), ('simply', 1), ('revolution', 1), ('valley', 1), ('back', 1), ('earliest', 1), ('root', 1), ('hallway', 1), ('backroom', 1), ('apple', 1), ('groundbreaking', 1), ('born', 1), ('book', 1), ('development', 1)]
[('jenkins', 2), ('integration', 2), ('ci', 2), ('streamline', 1), ('software', 1), ('development', 1), ('popular', 1), ('java', 1), ('based', 1), ('open', 1), ('source', 1), ('tool', 1), ('revolutionized', 1), ('way', 1), ('team', 1), ('think', 1), ('continuous', 1), ('complete', 1), ('guide', 1), ('show', 1), ('automate', 1), ('build', 1), ('release', 1), ('deployment', 1), ('process', 1), ('demonstrates', 1), ('save', 1), ('time', 1), ('money', 1), ('many', 1)]
[('jira', 4), ('tracking', 2), ('plugins', 2), ('advantage', 1), ('using', 1), ('issue', 1), ('bug', 1), ('project', 1), ('management', 1), ('ability', 1), ('extend', 1), ('tool', 1), ('hundred', 1), ('community', 1), ('concise', 1), ('book', 1), ('software', 1), ('toolsmith', 1), ('matt', 1), ('doar', 1), ('author', 1), ('practical', 1), ('administration', 1), ('show', 1), ('create', 1), ('maintain', 1), ('meet', 1), ('specific', 1)]
[('perl', 3), ('programming', 3), ('database', 2), ('application', 2), ('dbi', 2), ('greatest', 1), ('strength', 1), ('language', 1), ('ability', 1), ('manipulate', 1), ('large', 1), ('amount', 1), ('data', 1), ('natural', 1), ('fit', 1), ('business', 1), ('cgi', 1), ('based', 1), ('web', 1), ('intranet', 1), ('primary', 1), ('interface', 1)]
[('language', 3), ('clojure', 2), ('practical', 1), ('general', 1), ('purpose', 1), ('offer', 1), ('expressivity', 1), ('rivaling', 1), ('dynamic', 1), ('ruby', 1), ('python', 1), ('seamlessly', 1), ('taking', 1), ('advantage', 1), ('java', 1), ('library', 1), ('service', 1), ('resource', 1), ('jvm', 1), ('ecosystem', 1), ('book', 1), ('help', 1), ('learn', 1), ('fundamental', 1), ('example', 1), ('relating', 1), ('know', 1)]
[('handbook', 2), ('practical', 1), ('guideline', 1), ('making', 1), ('website', 1), ('accessible', 1), ('disability', 1), ('learn', 1), ('design', 1), ('develop', 1), ('site', 1), ('conforms', 1), ('section', 1), ('rehabilitation', 1), ('act', 1), ('process', 1), ('discover', 1), ('provide', 1), ('better', 1), ('user', 1), ('experience', 1), ('everyone', 1), ('accessibility', 1), ('introduces', 1)]
[('need', 1), ('extract', 1), ('data', 1), ('text', 1), ('file', 1), ('aweb', 1), ('page', 1), ('want', 1), ('make', 1), ('yourapplication', 1), ('flexible', 1), ('user', 1), ('definedcommands', 1), ('search', 1), ('string', 1), ('doregular', 1), ('expression', 1), ('lex', 1), ('yacc', 1), ('makeyour', 1), ('eye', 1), ('blur', 1), ('brain', 1), ('hurt', 1), ('pyparsing', 1), ('solution', 1), ('pyparsingis', 1), ('pure', 1), ('python', 1), ('class', 1), ('library', 1), ('thatmakes', 1), ('easy', 1), ('build', 1)]
[('learn', 2), ('language', 2), ('programming', 2), ('guide', 1), ('multi', 1), ('paradigm', 1), ('offer', 1), ('enormous', 1), ('productivity', 1), ('boost', 1), ('functional', 1), ('let', 1), ('develop', 1), ('application', 1), ('using', 1), ('existing', 1), ('object', 1), ('oriented', 1), ('imperative', 1), ('skill', 1), ('quickly', 1), ('discover', 1), ('many', 1), ('advantage', 1), ('including', 1), ('access', 1)]
[('mongodb', 2), ('whether', 1), ('building', 1), ('social', 1), ('medium', 1), ('site', 1), ('internal', 1), ('use', 1), ('enterprise', 1), ('application', 1), ('hand', 1), ('guide', 1), ('show', 1), ('connection', 1), ('business', 1), ('problem', 1), ('designed', 1), ('solve', 1), ('learn', 1), ('apply', 1), ('design', 1), ('pattern', 1), ('several', 1), ('challenging', 1), ('domain', 1), ('ecommerce', 1), ('content', 1), ('management', 1), ('online', 1), ('gaming', 1), ('using', 1)]
[('test', 3), ('build', 2), ('testing', 2), ('scala', 1), ('application', 1), ('driven', 1), ('development', 1), ('quickly', 1), ('see', 1), ('advantage', 1), ('write', 1), ('production', 1), ('code', 1), ('hand', 1), ('book', 1), ('show', 1), ('create', 1), ('scalatest', 1), ('spec', 1), ('best', 1), ('framework', 1), ('available', 1), ('run', 1), ('simple', 1), ('tool', 1), ('sbt', 1), ('designed', 1)]
[('user', 2), ('server', 2), ('sse', 2), ('make', 1), ('sure', 1), ('website', 1), ('web', 1), ('application', 1), ('content', 1), ('update', 1), ('right', 1), ('minimal', 1), ('latency', 1), ('concise', 1), ('guide', 1), ('show', 1), ('push', 1), ('new', 1), ('data', 1), ('client', 1), ('html', 1), ('sent', 1), ('event', 1), ('exceptional', 1), ('technology', 1), ('require', 1), ('constant', 1), ('polling', 1), ('interaction', 1), ('learn', 1), ('build', 1), ('real', 1), ('world', 1)]
[('hibernate', 2), ('looking', 1), ('short', 1), ('sweet', 1), ('simple', 1), ('introduction', 1), ('reintroduction', 1), ('book', 1), ('want', 1), ('clear', 1), ('real', 1), ('world', 1), ('example', 1), ('learn', 1), ('object', 1), ('relational', 1), ('mapping', 1), ('ground', 1), ('starting', 1), ('basic', 1), ('dive', 1), ('framework', 1), ('moving', 1), ('part', 1), ('understand', 1), ('work', 1), ('action', 1)]
[('javascript', 3), ('web', 2), ('jquery', 2), ('let', 1), ('supercharge', 1), ('html', 1), ('animation', 1), ('interactivity', 1), ('visual', 1), ('effect', 1), ('many', 1), ('designer', 1), ('find', 1), ('language', 1), ('hard', 1), ('learn', 1), ('easy', 1), ('guide', 1), ('cover', 1), ('basic', 1), ('show', 1), ('save', 1), ('time', 1), ('effort', 1), ('ui', 1), ('library', 1), ('prewritten', 1), ('code', 1), ('build', 1), ('page', 1)]
[('beaglebone', 2), ('inexpensive', 1), ('web', 1), ('server', 1), ('linux', 1), ('desktop', 1), ('electronics', 1), ('hub', 1), ('includes', 1), ('tool', 1), ('need', 1), ('create', 1), ('project', 1), ('whether', 1), ('robotics', 1), ('gaming', 1), ('drone', 1), ('software', 1), ('defined', 1), ('radio', 1), ('new', 1), ('black', 1), ('want', 1), ('explore', 1), ('capability', 1), ('cookbook', 1), ('provides', 1), ('score', 1), ('recipe', 1), ('connecting', 1)]
[('new', 2), ('networked', 1), ('thermostat', 1), ('fitness', 1), ('monitor', 1), ('door', 1), ('lock', 1), ('show', 1), ('internet', 1), ('thing', 1), ('enable', 1), ('way', 1), ('interact', 1), ('world', 1), ('around', 1), ('designing', 1), ('connected', 1), ('product', 1), ('consumer', 1), ('brings', 1), ('challenge', 1), ('beyond', 1), ('conventional', 1), ('software', 1), ('ui', 1), ('interaction', 1), ('design', 1), ('book', 1), ('provides', 1), ('experienced', 1), ('ux', 1), ('designer', 1)]
[('svg', 3), ('text', 3), ('scalable', 1), ('vector', 1), ('graphic', 1), ('image', 1), ('format', 1), ('first', 1), ('thing', 1), ('might', 1), ('think', 1), ('considering', 1), ('us', 1), ('key', 1), ('feature', 1), ('ability', 1), ('encode', 1), ('machine', 1), ('readable', 1), ('form', 1), ('book', 1), ('take', 1), ('deep', 1), ('dive', 1), ('use', 1), ('within', 1), ('explore', 1), ('creative', 1), ('possibility', 1), ('potential', 1), ('pitfall', 1)]
[('bookkeeping', 2), ('quickbooks', 2), ('step', 2), ('make', 1), ('workflow', 1), ('smoother', 1), ('faster', 1), ('simple', 1), ('missing', 1), ('manual', 1), ('cover', 1), ('window', 1), ('version', 1), ('control', 1), ('instruction', 1), ('use', 1), ('specific', 1), ('feature', 1), ('along', 1), ('basic', 1), ('accounting', 1), ('advice', 1), ('guide', 1), ('learning', 1)]
[('vr', 4), ('development', 2), ('virtual', 1), ('reality', 1), ('approach', 1), ('mainstream', 1), ('consumer', 1), ('use', 1), ('vibrant', 1), ('ecosystem', 1), ('emerged', 1), ('past', 1), ('year', 1), ('hand', 1), ('guide', 1), ('take', 1), ('essential', 1), ('desktop', 1), ('mobile', 1), ('browser', 1), ('based', 1), ('application', 1), ('explore', 1), ('three', 1), ('go', 1), ('platform', 1), ('oculusvr', 1), ('gear', 1), ('cardboard', 1), ('several', 1)]
[('web', 2), ('app', 2), ('developer', 1), ('want', 1), ('spend', 1), ('time', 1), ('making', 1), ('secure', 1), ('definitely', 1), ('come', 1), ('territory', 1), ('practical', 1), ('guide', 1), ('provides', 1), ('latest', 1), ('information', 1), ('thwart', 1), ('security', 1), ('threat', 1), ('several', 1), ('level', 1), ('including', 1), ('new', 1), ('area', 1), ('microservices', 1), ('learn', 1), ('help', 1), ('protect', 1), ('matter', 1), ('run', 1)]
[('performance', 2), ('today', 1), ('fast', 1), ('competitive', 1), ('world', 1), ('program', 1), ('important', 1), ('customer', 1), ('feature', 1), ('provides', 1), ('practical', 1), ('guide', 1), ('teach', 1), ('developer', 1), ('tuning', 1), ('principle', 1), ('enable', 1), ('optimization', 1), ('learn', 1), ('make', 1), ('code', 1), ('already', 1), ('embodies', 1), ('best', 1), ('practice', 1), ('design', 1), ('run', 1), ('faster', 1), ('consume', 1), ('fewer', 1)]
[('series', 2), ('qfx', 2), ('cloud', 2), ('popular', 1), ('guide', 1), ('mx', 1), ('juniper', 1), ('practical', 1), ('book', 1), ('written', 1), ('author', 1), ('introduces', 1), ('new', 1), ('concept', 1), ('switching', 1), ('virtualization', 1), ('specifically', 1), ('core', 1), ('data', 1), ('center', 1), ('network', 1), ('rise', 1), ('computing', 1), ('service', 1), ('provider', 1), ('need', 1), ('create', 1), ('private', 1), ('enterprise', 1)]
[('computing', 2), ('architecture', 2), ('azure', 2), ('bioinformatics', 2), ('practical', 1), ('guide', 1), ('bridge', 1), ('gap', 1), ('general', 1), ('cloud', 1), ('microsoft', 1), ('scientific', 1), ('genomics', 1), ('solid', 1), ('understanding', 1), ('pattern', 1), ('service', 1), ('offered', 1), ('might', 1), ('used', 1), ('practice', 1), ('code', 1), ('example', 1)]
[('security', 3), ('engineer', 2), ('secure', 2), ('devops', 1), ('developer', 1), ('changing', 1), ('role', 1), ('play', 1), ('today', 1), ('cloud', 1), ('native', 1), ('world', 1), ('order', 1), ('build', 1), ('resilient', 1), ('application', 1), ('equipped', 1), ('knowledge', 1), ('enter', 1), ('code', 1), ('book', 1), ('author', 1), ('bk', 1), ('sarthak', 1), ('da', 1), ('virginia', 1), ('chu', 1), ('demonstrate', 1), ('use', 1), ('methodology', 1)]
[('game', 4), ('user', 2), ('research', 1), ('definitive', 1), ('guide', 1), ('method', 1), ('practice', 1), ('professional', 1), ('researcher', 1), ('student', 1), ('seeking', 1), ('additional', 1), ('expertise', 1), ('starting', 1), ('advice', 1), ('development', 1), ('industry', 1), ('go', 1), ('volume', 1), ('everyone', 1), ('working', 1), ('emphasis', 1), ('new', 1), ('field', 1)]
[('brain', 4), ('system', 2), ('computation', 1), ('connectivity', 1), ('work', 1), ('elucidates', 1), ('computed', 1), ('different', 1), ('describes', 1), ('current', 1), ('biologically', 1), ('plausible', 1), ('computational', 1), ('approach', 1), ('model', 1), ('computes', 1)]
[('computing', 2), ('analysis', 2), ('foundation', 1), ('offer', 1), ('comprehensive', 1), ('critical', 1), ('overview', 1), ('birth', 1), ('evolution', 1), ('important', 1), ('technical', 1), ('result', 1), ('philosophical', 1), ('problem', 1), ('discipline', 1), ('combining', 1), ('historical', 1), ('systematic', 1)]
[('human', 2), ('centered', 1), ('ai', 1), ('professor', 1), ('ben', 1), ('shneiderman', 1), ('provides', 1), ('optimistic', 1), ('realist', 1), ('guide', 1), ('artificial', 1), ('intelligence', 1), ('used', 1), ('augment', 1), ('enhance', 1), ('life', 1)]
[('computing', 3), ('magisterial', 1), ('draw', 1), ('elegant', 1), ('illuminating', 1), ('parallel', 1), ('late', 1), ('th', 1), ('century', 1), ('electrification', 1), ('america', 1), ('today', 1), ('world', 1), ('salon', 1), ('hailed', 1), ('influential', 1), ('book', 1), ('far', 1), ('cloud', 1), ('movement', 1), ('christian', 1), ('science', 1), ('monitor', 1), ('big', 1), ('switch', 1), ('make', 1), ('simple', 1), ('profound', 1), ('statement', 1), ('turning', 1)]
[('learn', 1), ('use', 1), ('analytics', 1), ('effectively', 1), ('convert', 1), ('data', 1), ('value', 1), ('facilitate', 1), ('smarter', 1), ('better', 1), ('decision', 1), ('making', 1), ('organization', 1)]
[('bank', 3), ('banking', 3), ('industry', 3), ('book', 1), ('cover', 1), ('decentralization', 1), ('without', 1), ('change', 1), ('blockchain', 1), ('adoption', 1), ('modern', 1)]
[('data', 2), ('behind', 2), ('sketch', 1), ('nadieh', 1), ('bremer', 1), ('shirley', 1), ('wu', 1), ('document', 1), ('deeply', 1), ('creative', 1), ('process', 1), ('unique', 1), ('visualization', 1), ('project', 1), ('combine', 1), ('powerful', 1), ('technical', 1), ('insight', 1), ('reveal', 1), ('mindset', 1), ('coding', 1), ('creatively', 1), ('exploring', 1), ('different', 1), ('theme', 1), ('olympics', 1), ('president', 1), ('royal', 1), ('movie', 1), ('myth', 1), ('legend', 1)]
[('text', 3), ('visualization', 3), ('visualizing', 1), ('uncovers', 1), ('rich', 1), ('palette', 1), ('element', 1), ('usable', 1), ('simple', 1), ('label', 1), ('document', 1), ('using', 1), ('multidisciplinary', 1), ('research', 1), ('effort', 1), ('spanning', 1), ('across', 1), ('field', 1), ('including', 1), ('typography', 1), ('cartography', 1), ('build', 1), ('solid', 1), ('foundation', 1), ('design', 1), ('space', 1), ('book', 1), ('illustrates', 1)]
[('software', 3), ('development', 2), ('embedded', 2), ('system', 2), ('book', 1), ('dependable', 1), ('designer', 1), ('implementers', 1), ('verifier', 1), ('experienced', 1), ('general', 1), ('facing', 1), ('prospect', 1), ('delivering', 1), ('based', 1), ('safety', 1), ('critical', 1), ('application', 1), ('aimed', 1), ('creating', 1), ('product', 1)]
[('graphic', 5), ('computer', 2), ('complete', 1), ('coverage', 1), ('current', 1), ('practice', 1), ('graphicscomputer', 1), ('pixel', 1), ('programmable', 1), ('hardware', 1), ('explores', 1), ('major', 1), ('area', 1), ('modern', 1), ('starting', 1), ('basic', 1), ('mathematics', 1), ('algorithm', 1), ('concluding', 1), ('opengl', 1), ('real', 1), ('time', 1), ('give', 1), ('student', 1), ('firm', 1), ('foundation', 1), ('today', 1), ('high', 1), ('performance', 1)]
[('application', 3), ('security', 3), ('vulnerability', 2), ('continue', 2), ('top', 1), ('list', 1), ('cyber', 1), ('concern', 1), ('attacker', 1), ('researcher', 1), ('expose', 1), ('new', 1), ('common', 1), ('flaw', 1), ('previous', 1), ('rediscovered', 1), ('threat', 1), ('text', 1), ('allows', 1), ('reader', 1), ('learn', 1), ('software', 1), ('renowned', 1), ('practitioner', 1)]
[('security', 3), ('high', 2), ('speed', 2), ('today', 1), ('rapidly', 1), ('changing', 1), ('development', 1), ('environment', 1), ('demand', 1), ('equally', 1), ('practice', 1), ('still', 1), ('achieving', 1), ('remains', 1), ('human', 1), ('endeavor', 1), ('core', 1), ('part', 1), ('designing', 1), ('generating', 1), ('verifying', 1), ('software', 1), ('dr', 1), ('james', 1), ('ransome', 1), ('brook', 1), ('schoenfield', 1), ('built', 1), ('upon', 1), ('previous', 1), ('work', 1), ('explain', 1), ('start', 1)]
[('game', 4), ('design', 3), ('situational', 2), ('lay', 1), ('new', 1), ('methodology', 1), ('designing', 1), ('critiquing', 1), ('videogames', 1), ('book', 1), ('focus', 1), ('formal', 1), ('system', 1), ('concentrate', 1), ('squarely', 1), ('player', 1), ('experience', 1), ('look', 1), ('playfulness', 1), ('property', 1), ('considered', 1), ('isolation', 1), ('rather', 1), ('result', 1), ('intersection', 1)]
[('game', 5), ('within', 1), ('field', 1), ('design', 1), ('balance', 1), ('best', 1), ('described', 1), ('black', 1), ('art', 1), ('process', 1), ('designer', 1), ('make', 1), ('simultaneously', 1), ('fair', 1), ('player', 1), ('providing', 1), ('right', 1), ('amount', 1), ('difficulty', 1), ('exciting', 1), ('challenging', 1), ('without', 1), ('making', 1), ('entirely', 1), ('predictable', 1), ('involves', 1), ('combination', 1)]
[('book', 3), ('storytelling', 2), ('day', 2), ('best', 1), ('time', 1), ('bookauthority', 1), ('provides', 1), ('industry', 1), ('professional', 1), ('firsthand', 1), ('pov', 1), ('narrative', 1), ('design', 1), ('practical', 1), ('usage', 1), ('role', 1), ('responsibility', 1), ('key', 1), ('breaking', 1), ('succeeding', 1), ('delve', 1), ('foundation', 1), ('compelling', 1), ('structural', 1)]
[('game', 4), ('animator', 2), ('anim', 1), ('teach', 1), ('technical', 1), ('artistic', 1), ('fundamental', 1), ('video', 1), ('animation', 1), ('go', 1), ('provide', 1), ('practical', 1), ('advice', 1), ('industry', 1), ('insight', 1), ('help', 1), ('become', 1), ('rounded', 1), ('successful', 1), ('covering', 1), ('every', 1), ('stage', 1), ('production', 1), ('perspective', 1), ('packed', 1), ('lesson', 1), ('learned', 1), ('working', 1)]
[('programming', 4), ('practical', 2), ('python', 2), ('maintaining', 1), ('perspective', 1), ('approach', 1), ('acquaints', 1), ('wonderful', 1), ('world', 1), ('book', 1), ('starting', 1), ('point', 1), ('want', 1), ('learn', 1), ('backbone', 1), ('data', 1), ('structure', 1), ('component', 1), ('string', 1), ('list', 1), ('etc', 1), ('illustrated', 1)]
[('software', 3), ('engineering', 3), ('methodical', 2), ('approach', 2), ('second', 1), ('edition', 1), ('provides', 1), ('comprehensive', 1), ('concise', 1), ('introduction', 1), ('adopts', 1), ('solving', 1), ('problem', 1), ('proven', 1), ('several', 1), ('year', 1), ('teaching', 1), ('outstanding', 1), ('result', 1), ('book', 1), ('cover', 1), ('concept', 1), ('principle', 1), ('design', 1), ('construction', 1)]
[('design', 3), ('mechanism', 3), ('game', 2), ('second', 2), ('edition', 2), ('cover', 2), ('building', 1), ('block', 1), ('tabletop', 1), ('encyclopedia', 1), ('compiles', 1), ('hundred', 1), ('organized', 1), ('category', 1), ('book', 1), ('used', 1), ('reference', 1), ('solve', 1), ('specific', 1), ('problem', 1), ('inspiration', 1), ('research', 1), ('new', 1), ('collect', 1), ('even', 1)]
[('ai', 2), ('influential', 1), ('scientist', 1), ('field', 1), ('artificial', 1), ('intelligence', 1), ('explains', 1), ('fundamental', 1), ('concept', 1), ('changing', 1), ('culture', 1), ('society', 1), ('particular', 1), ('form', 1), ('embedded', 1), ('tech', 1), ('infrastructure', 1), ('life', 1), ('concerned', 1), ('shortcut', 1)]
[('programming', 2), ('edition', 2), ('art', 1), ('multiprocessor', 1), ('second', 1), ('provides', 1), ('user', 1), ('authoritative', 1), ('guide', 1), ('multicore', 1), ('updated', 1), ('introduces', 1), ('higher', 1), ('level', 1), ('software', 1), ('development', 1), ('skill', 1), ('relative', 1), ('needed', 1), ('efficient', 1), ('single', 1), ('core', 1)]
[('data', 3), ('past', 1), ('year', 1), ('concept', 1), ('big', 1), ('matured', 1), ('science', 1), ('grown', 1), ('exponentially', 1), ('architecture', 1), ('become', 1), ('standard', 1), ('part', 1), ('organizational', 1), ('decision', 1), ('making', 1), ('throughout', 1), ('change', 1), ('basic', 1), ('principle', 1), ('shape', 1)]
[('user', 4), ('experience', 2), ('digital', 2), ('observing', 1), ('practitioner', 1), ('guide', 1), ('research', 1), ('aim', 1), ('bridge', 1), ('gap', 1), ('company', 1), ('think', 1), ('know', 1), ('actual', 1), ('individual', 1), ('engaged', 1), ('product', 1), ('service', 1)]
[('physical', 2), ('security', 2), ('edition', 2), ('new', 2), ('effective', 1), ('fifth', 1), ('best', 1), ('practice', 1), ('compendium', 1), ('detail', 1), ('essential', 1), ('element', 1), ('latest', 1), ('development', 1), ('protection', 1), ('completely', 1), ('updated', 1), ('chapter', 1), ('carefully', 1), ('selected', 1)]
[('fault', 2), ('system', 2), ('approach', 2), ('tolerant', 1), ('second', 1), ('edition', 1), ('first', 1), ('book', 1), ('tolerance', 1), ('design', 1), ('utilizing', 1), ('hardware', 1), ('software', 1), ('text', 1), ('take', 1), ('offer', 1), ('comprehensive', 1), ('date', 1), ('treatment', 1), ('koren', 1)]
[('measuring', 1), ('user', 1), ('experience', 1), ('collecting', 1), ('analyzing', 1), ('presenting', 1), ('ux', 1), ('metric', 1), ('third', 1), ('edition', 1), ('provides', 1), ('quantitative', 1), ('analysis', 1), ('training', 1), ('student', 1), ('professional', 1), ('need', 1), ('book', 1), ('present', 1), ('update', 1), ('first', 1), ('resource', 1), ('focused', 1)]
[('humanity', 2), ('practical', 1), ('guide', 1), ('data', 1), ('intensive', 1), ('research', 1), ('using', 1), ('python', 1), ('programming', 1), ('language', 1), ('use', 1), ('quantitative', 1), ('method', 1), ('related', 1), ('social', 1), ('science', 1), ('increased', 1), ('considerably', 1), ('recent', 1), ('year', 1), ('allowing', 1), ('researcher', 1), ('discover', 1), ('pattern', 1), ('vast', 1), ('range', 1), ('source', 1), ('material', 1), ('despite', 1), ('growth', 1), ('resource', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('explore', 2), ('feature', 2), ('java', 2), ('kotlin', 2), ('topic', 2), ('practical', 2), ('popular', 1), ('language', 1), ('interoperability', 1), ('advanced', 1), ('application', 1), ('building', 1), ('variety', 1), ('sample', 1), ('project', 1), ('key', 1), ('understand', 1), ('leverage', 1), ('syntax', 1), ('tool', 1), ('pattern', 1), ('writing', 1), ('code', 1), ('interop', 1), ('concurrency', 1), ('coroutines', 1), ('functional', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('using', 2), ('research', 2), ('reliable', 1), ('text', 1), ('updated', 1), ('latest', 1), ('recently', 1), ('published', 1), ('article', 1), ('book', 1), ('feedback', 1), ('professor', 1), ('student', 1), ('first', 1), ('edition', 1), ('providing', 1), ('introduction', 1), ('dominant', 1), ('approach', 1), ('key', 1), ('concept', 1), ('theory', 1), ('supply', 1), ('concrete', 1), ('advice', 1), ('planning', 1), ('implementing', 1), ('evaluating', 1), ('crime', 1)]
[('artificial', 2), ('ai', 2), ('eye', 1), ('opening', 1), ('narrative', 1), ('journey', 1), ('rapidly', 1), ('changing', 1), ('world', 1), ('intelligence', 1), ('reveals', 1), ('dangerous', 1), ('way', 1), ('exploiting', 1), ('unconscious', 1), ('habit', 1), ('mind', 1), ('real', 1), ('threat', 1), ('pose', 1), ('humanity', 1), ('best', 1), ('book', 1), ('new', 1), ('york', 1), ('time', 1), ('bestselling', 1), ('author', 1), ('roger', 1), ('mcnamee', 1)]
[('moment', 2), ('garry', 1), ('kasparov', 1), ('chess', 1), ('match', 1), ('ibm', 1), ('supercomputer', 1), ('deep', 1), ('blue', 1), ('watershed', 1), ('history', 1), ('technology', 1), ('dawn', 1), ('new', 1), ('era', 1), ('artificial', 1), ('intelligence', 1), ('machine', 1), ('capable', 1), ('beating', 1), ('reigning', 1), ('human', 1), ('champion', 1), ('cerebral', 1), ('game', 1), ('century', 1), ('making', 1)]
[('test', 2), ('automation', 2), ('rely', 1), ('robust', 1), ('thorough', 1), ('guide', 1), ('build', 1), ('maintain', 1), ('successful', 1), ('software', 1), ('industry', 1), ('shift', 1), ('traditional', 1), ('waterfall', 1), ('paradigm', 1), ('agile', 1), ('one', 1), ('becomes', 1), ('highly', 1), ('important', 1), ('tool', 1), ('allows', 1)]
[('quantum', 2), ('computer', 2), ('write', 1), ('algorithm', 1), ('program', 1), ('new', 1), ('field', 1), ('computing', 1), ('book', 1), ('cover', 1), ('major', 1), ('topic', 1), ('physical', 1), ('component', 1), ('qubits', 1), ('entanglement', 1), ('logic', 1), ('gate', 1), ('circuit', 1), ('differ', 1), ('traditional', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('explore', 1), ('deep', 1), ('learning', 1), ('application', 1), ('computer', 1), ('vision', 1), ('speech', 1), ('recognition', 1), ('chatbots', 1), ('using', 1), ('framework', 1), ('tensorflow', 1), ('kera', 1), ('book', 1), ('help', 1), ('ramp', 1), ('practical', 1), ('know', 1), ('short', 1), ('period', 1), ('time', 1)]
[('smart', 3), ('contract', 3), ('ethereum', 2), ('use', 1), ('book', 1), ('write', 1), ('blockchain', 1), ('test', 1), ('deploy', 1), ('create', 1), ('web', 1), ('application', 1), ('interact', 1), ('beginning', 1), ('programming', 1), ('fastest', 1), ('efficient', 1), ('mean', 1), ('getting', 1)]
[('sql', 2), ('server', 2), ('lt', 1), ('div', 1), ('gt', 1), ('use', 1), ('comprehensive', 1), ('guide', 1), ('dba', 1), ('covering', 1), ('practicing', 1), ('database', 1), ('administrator', 1), ('need', 1), ('know', 1), ('daily', 1), ('work', 1), ('done', 1), ('updated', 1), ('edition', 1), ('amp', 1), ('nbsp', 1), ('includes', 1), ('coverage', 1), ('new', 1), ('feature', 1)]
[('pipeline', 3), ('build', 2), ('tensorflow', 2), ('based', 1), ('modern', 1), ('approach', 1), ('rather', 1), ('outdated', 1), ('engineering', 1), ('concept', 1), ('book', 1), ('show', 1), ('deep', 1), ('learning', 1), ('real', 1), ('life', 1), ('project', 1), ('nbsp', 1), ('learn', 1)]
[('essential', 1), ('classic', 1), ('provides', 1), ('comprehensive', 1), ('foundation', 1), ('programming', 1), ('language', 1), ('framework', 1), ('life', 1), ('th', 1), ('edition', 1), ('find', 1), ('latest', 1), ('net', 1), ('feature', 1), ('served', 1), ('plenty', 1), ('behind', 1), ('curtain', 1)]
[('data', 3), ('query', 2), ('using', 2), ('design', 1), ('large', 1), ('scale', 1), ('high', 1), ('performance', 1), ('snowflake', 1), ('processing', 1), ('engine', 1), ('empower', 1), ('consumer', 1), ('timely', 1), ('comprehensive', 1), ('secure', 1), ('access', 1), ('book', 1), ('help', 1), ('protect', 1), ('valuable', 1), ('asset', 1)]
[('friend', 1), ('ed', 1)]
[('tdd', 2), ('react', 2), ('learn', 1), ('use', 1), ('accelerated', 1), ('test', 1), ('driven', 1), ('development', 1), ('build', 1), ('application', 1), ('scratch', 1), ('book', 1), ('explains', 1), ('component', 1), ('integrated', 1), ('refactor', 1), ('code', 1), ('make', 1), ('concise', 1), ('flexible', 1)]
[('pico', 2), ('learn', 1), ('program', 1), ('raspberry', 1), ('pi', 1), ('dual', 1), ('arm', 1), ('cortex', 1), ('cpu', 1), ('assembly', 1), ('language', 1), ('nbsp', 1), ('contains', 1), ('customer', 1), ('system', 1), ('chip', 1), ('soc', 1), ('called', 1), ('rp', 1), ('making', 1), ('foundation', 1), ('first', 1), ('entry', 1), ('low', 1), ('cost', 1), ('microcontroller', 1), ('market', 1)]
[('algorithm', 2), ('master', 1), ('programming', 1), ('using', 1), ('lisp', 1), ('including', 1), ('important', 1), ('data', 1), ('structure', 1), ('book', 1), ('cover', 1), ('essential', 1), ('tool', 1), ('help', 1), ('development', 1), ('algorithmic', 1), ('code', 1), ('give', 1), ('need', 1), ('enhance', 1)]
[('microservices', 2), ('know', 1), ('fundamental', 1), ('creating', 1), ('deploying', 1), ('using', 1), ('net', 1), ('gain', 1), ('insight', 1), ('prescriptive', 1), ('guidance', 1), ('book', 1), ('incorporate', 1), ('architecture', 1), ('way', 1), ('distributing', 1), ('process', 1), ('workload', 1)]
[('data', 3), ('grafana', 2), ('begin', 1), ('working', 1), ('visualization', 1), ('platform', 1), ('book', 1), ('manual', 1), ('deploying', 1), ('administering', 1), ('creating', 1), ('real', 1), ('time', 1), ('dashboard', 1), ('alert', 1), ('exploring', 1), ('even', 1), ('synthesizing', 1), ('new', 1), ('combining', 1)]
[('matlab', 3), ('python', 3), ('run', 1), ('code', 1), ('development', 1), ('show', 1), ('enhance', 1), ('solution', 1), ('vast', 1), ('array', 1), ('computational', 1), ('problem', 1), ('science', 1), ('engineering', 1), ('optimization', 1), ('statistic', 1), ('finance', 1), ('simulation', 1), ('three', 1), ('book', 1)]
[('software', 2), ('teach', 2), ('engineering', 1), ('education', 1), ('problem', 1), ('university', 1), ('bootcamps', 1), ('aspiring', 1), ('engineer', 1), ('write', 1), ('code', 1), ('leave', 1), ('graduate', 1), ('countless', 1), ('supporting', 1), ('tool', 1), ('required', 1), ('thrive', 1), ('real', 1), ('company', 1), ('building', 1)]
[('go', 1), ('beginner', 1), ('pro', 1), ('using', 1), ('effective', 1), ('widely', 1), ('used', 1), ('technology', 1), ('stack', 1), ('microsoft', 1), ('asp', 1), ('net', 1), ('beginning', 1), ('basic', 1), ('learn', 1), ('create', 1), ('interactive', 1), ('professional', 1), ('grade', 1), ('database', 1), ('driven', 1), ('web', 1), ('application', 1), ('time', 1)]
[('platform', 2), ('discover', 1), ('easy', 1), ('create', 1), ('multi', 1), ('user', 1), ('cross', 1), ('custom', 1), ('solution', 1), ('filemaker', 1), ('pro', 1), ('relational', 1), ('database', 1), ('published', 1), ('apple', 1), ('subsidiary', 1), ('claris', 1), ('international', 1), ('inc', 1), ('meticulously', 1), ('rewritten', 1), ('clearer', 1), ('lesson', 1)]
[('apache', 2), ('spark', 2), ('take', 1), ('journey', 1), ('toward', 1), ('discovering', 1), ('learning', 1), ('using', 1), ('book', 1), ('gain', 1), ('expertise', 1), ('powerful', 1), ('efficient', 1), ('distributed', 1), ('data', 1), ('processing', 1), ('engine', 1), ('inside', 1), ('user', 1), ('friendly', 1), ('comprehensive', 1), ('flexible', 1)]
[('docker', 2), ('learn', 1), ('fundamental', 1), ('containerization', 1), ('acquainted', 1), ('second', 1), ('edition', 1), ('build', 1), ('upon', 1), ('foundation', 1), ('first', 1), ('book', 1), ('revising', 1), ('chapter', 1), ('updating', 1), ('command', 1), ('code', 1), ('example', 1), ('meet', 1), ('change', 1)]
[('deep', 4), ('learning', 4), ('matlab', 3), ('book', 2), ('harness', 1), ('power', 1), ('challenge', 1), ('practical', 1), ('second', 1), ('edition', 1), ('remains', 1), ('kind', 1), ('provides', 1), ('introduction', 1), ('using', 1), ('toolbox', 1)]
[('kubernetes', 2), ('leverage', 1), ('rapid', 1), ('adoption', 1), ('emerging', 1), ('technology', 1), ('future', 1), ('enterprise', 1), ('platform', 1), ('development', 1), ('become', 1), ('popular', 1), ('often', 1), ('considered', 1), ('robust', 1), ('container', 1), ('orchestration', 1), ('system', 1), ('available', 1), ('today', 1)]
[('git', 2), ('exercise', 2), ('practice', 1), ('skill', 1), ('using', 1), ('environment', 1), ('book', 1), ('nbsp', 1), ('introduces', 1), ('concept', 1), ('abstract', 1), ('visual', 1), ('way', 1), ('enforces', 1), ('learning', 1), ('katas', 1), ('start', 1), ('basic', 1), ('interaction', 1)]
[('scala', 3), ('programming', 2), ('learn', 1), ('latest', 1), ('version', 1), ('simple', 1), ('practical', 1), ('example', 1), ('book', 1), ('introduces', 1), ('language', 1), ('object', 1), ('oriented', 1), ('functional', 1), ('characteristic', 1), ('guide', 1), ('construct', 1)]
[('learning', 2), ('perfect', 1), ('comprehensive', 1), ('guide', 1), ('reader', 1), ('basic', 1), ('intermediate', 1), ('level', 1), ('knowledge', 1), ('machine', 1), ('deep', 1), ('introduces', 1), ('tool', 1), ('numpy', 1), ('numerical', 1), ('processing', 1), ('panda', 1), ('panel', 1), ('data', 1), ('analysis', 1), ('matplotlib', 1)]
[('numerical', 2), ('python', 2), ('leverage', 1), ('mathematical', 1), ('module', 1), ('standard', 1), ('library', 1), ('popular', 1), ('open', 1), ('source', 1), ('package', 1), ('numpy', 1), ('scipy', 1), ('fipy', 1), ('matplotlib', 1), ('fully', 1), ('revised', 1), ('edition', 1), ('updated', 1), ('latest', 1), ('detail', 1)]
[('understanding', 1), ('ui', 1), ('pattern', 1), ('invaluable', 1), ('anyone', 1), ('creating', 1), ('website', 1), ('first', 1), ('time', 1), ('help', 1), ('make', 1), ('connection', 1), ('tool', 1), ('right', 1), ('job', 1), ('understand', 1), ('process', 1), ('think', 1), ('deeply', 1), ('context', 1), ('problem', 1), ('nbsp', 1)]
[('pattern', 3), ('gof', 2), ('hand', 1), ('experience', 1), ('gang', 1), ('four', 1), ('design', 1), ('using', 1), ('see', 1), ('least', 1), ('real', 1), ('world', 1), ('scenario', 1), ('coding', 1), ('example', 1), ('complete', 1), ('implementation', 1), ('including', 1), ('output', 1), ('addition', 1)]
[('power', 2), ('become', 1), ('self', 1), ('sufficient', 1), ('citizen', 1), ('developer', 1), ('learning', 1), ('tool', 1), ('within', 1), ('microsoft', 1), ('platform', 1), ('used', 1), ('together', 1), ('drive', 1), ('change', 1), ('multiply', 1), ('productivity', 1), ('learn', 1), ('powerapps', 1), ('building', 1), ('application', 1), ('automate', 1)]
[('basic', 2), ('gain', 1), ('foundation', 1), ('essential', 1), ('personal', 1), ('finance', 1), ('issue', 1), ('strategy', 1), ('specifically', 1), ('geared', 1), ('towards', 1), ('tech', 1), ('professional', 1), ('nbsp', 1), ('book', 1), ('build', 1), ('concept', 1), ('going', 1), ('investment', 1), ('advanced', 1), ('topic', 1)]
[('reinforcement', 2), ('learning', 2), ('finance', 2), ('book', 1), ('introduces', 1), ('mathematical', 1), ('theory', 1), ('practical', 1), ('example', 1), ('quantitative', 1), ('using', 1), ('tensorflow', 1), ('library', 1), ('begin', 1), ('describing', 1), ('method', 1), ('training', 1), ('neural', 1), ('network', 1), ('next', 1)]
[('technology', 2), ('artificial', 1), ('intelligence', 1), ('touch', 1), ('nearly', 1), ('every', 1), ('part', 1), ('day', 1), ('initially', 1), ('assume', 1), ('smart', 1), ('speaker', 1), ('digital', 1), ('assistant', 1), ('extent', 1), ('ai', 1), ('fact', 1), ('rapidly', 1), ('become', 1), ('general', 1), ('purpose', 1)]
[('spring', 3), ('boot', 2), ('framework', 2), ('learn', 1), ('micro', 1), ('build', 1), ('first', 1), ('java', 1), ('based', 1), ('cloud', 1), ('native', 1), ('application', 1), ('microservices', 1), ('lightweight', 1), ('nimbler', 1), ('cousin', 1), ('bigger', 1), ('plenty', 1), ('bell', 1), ('whistle', 1), ('updated', 1)]
[('step', 2), ('book', 1), ('guide', 1), ('productionizing', 1), ('ai', 1), ('solution', 1), ('using', 1), ('best', 1), ('breed', 1), ('cloud', 1), ('service', 1), ('workarounds', 1), ('lower', 1), ('cost', 1), ('supplemented', 1), ('instruction', 1), ('covering', 1), ('data', 1), ('import', 1), ('wrangling', 1), ('partitioning', 1), ('modeling', 1)]
[('apache', 2), ('spark', 2), ('leverage', 1), ('within', 1), ('modern', 1), ('data', 1), ('engineering', 1), ('ecosystem', 1), ('nbsp', 1), ('hand', 1), ('guide', 1), ('teach', 1), ('write', 1), ('fully', 1), ('functional', 1), ('application', 1), ('follow', 1), ('industry', 1), ('best', 1), ('practice', 1), ('learn', 1), ('rationale', 1), ('behind', 1), ('decision', 1)]
[('security', 2), ('devops', 2), ('automate', 1), ('core', 1), ('task', 1), ('embedding', 1), ('control', 1), ('process', 1), ('early', 1), ('workflow', 1), ('devsecops', 1), ('nbsp', 1), ('learn', 1), ('various', 1), ('stage', 1), ('pipeline', 1), ('example', 1), ('solution', 1), ('developed', 1), ('deployed', 1)]
[('go', 2), ('build', 2), ('adventure', 1), ('roguelike', 1), ('scratch', 1), ('using', 1), ('javascript', 1), ('help', 1), ('battle', 1), ('tested', 1), ('phaser', 1), ('library', 1), ('step', 1), ('small', 1), ('fun', 1), ('playable', 1), ('web', 1), ('roguelite', 1), ('game', 1), ('author', 1), ('guide', 1), ('add', 1)]
[('traefik', 2), ('microservices', 2), ('architecture', 2), ('book', 2), ('use', 1), ('load', 1), ('balancer', 1), ('reverse', 1), ('proxy', 1), ('based', 1), ('cover', 1), ('integration', 1), ('concern', 1), ('service', 1), ('discovery', 1), ('telemetry', 1), ('resiliency', 1), ('focus', 1), ('building', 1)]
[('source', 3), ('code', 2), ('blender', 2), ('learn', 1), ('essential', 1), ('unique', 1), ('build', 1), ('system', 1), ('nbsp', 1), ('book', 1), ('provides', 1), ('inner', 1), ('working', 1), ('based', 1), ('indispensable', 1), ('wanting', 1), ('contribute', 1), ('important', 1), ('open', 1)]
[('sql', 4), ('writing', 2), ('design', 1), ('write', 1), ('simple', 1), ('efficient', 1), ('code', 1), ('server', 1), ('beyond', 1), ('pull', 1), ('back', 1), ('correct', 1), ('result', 1), ('challenging', 1), ('book', 1), ('provides', 1), ('help', 1), ('need', 1), ('performs', 1), ('fast', 1), ('easy', 1), ('maintain', 1)]
[('terraform', 2), ('started', 1), ('foundation', 1), ('infrastructure', 1), ('code', 1), ('learn', 1), ('automate', 1), ('deployment', 1), ('management', 1), ('resource', 1), ('azure', 1), ('nbsp', 1), ('book', 1), ('cover', 1), ('software', 1), ('engineering', 1), ('practice', 1), ('related', 1)]
[('nbsp', 3), ('sharepoint', 2), ('team', 2), ('power', 2), ('platform', 2), ('build', 1), ('digital', 1), ('workplace', 1), ('solution', 1), ('scratch', 1), ('using', 1), ('online', 1), ('book', 1), ('help', 1), ('implement', 1), ('modern', 1), ('capability', 1), ('framework', 1)]
[('data', 2), ('cloud', 2), ('implement', 1), ('snowflake', 1), ('using', 1), ('best', 1), ('practice', 1), ('reap', 1), ('benefit', 1), ('scalability', 1), ('low', 1), ('cost', 1), ('industry', 1), ('leading', 1), ('based', 1), ('warehousing', 1), ('platform', 1), ('nbsp', 1), ('book', 1), ('provides', 1), ('detailed', 1), ('explanation', 1), ('assumes', 1)]
[('inspired', 1), ('explore', 1), ('depth', 1), ('devops', 1), ('field', 1), ('today', 1), ('rapidly', 1), ('transforming', 1), ('world', 1), ('infrastructure', 1), ('code', 1), ('iac', 1), ('emerged', 1), ('effective', 1), ('approach', 1), ('maintain', 1), ('scale', 1), ('deploy', 1), ('software', 1), ('system', 1), ('book', 1), ('offer', 1), ('mixture', 1)]
[('automate', 2), ('test', 2), ('automation', 2), ('nose', 2), ('learn', 1), ('unit', 1), ('python', 1), ('library', 1), ('doctest', 1), ('unittest', 1), ('pytest', 1), ('selenium', 1), ('book', 1), ('explores', 1), ('important', 1), ('concept', 1), ('software', 1), ('demonstrates', 1), ('organize', 1)]
[('side', 2), ('react', 2), ('application', 2), ('lt', 1), ('gt', 1), ('leverage', 1), ('benefit', 1), ('client', 1), ('server', 1), ('rendering', 1), ('end', 1), ('book', 1), ('able', 1), ('build', 1), ('deploy', 1), ('using', 1), ('next', 1), ('j', 1), ('framework', 1), ('fully', 1)]
[('api', 3), ('structure', 2), ('kubernetes', 2), ('lt', 1), ('gt', 1), ('book', 1), ('begin', 1), ('introducing', 1), ('operation', 1), ('serf', 1), ('following', 1), ('chapter', 1), ('demonstrate', 1), ('write', 1), ('native', 1), ('resource', 1), ('definition', 1), ('using', 1), ('go', 1), ('defined', 1)]
[('lt', 4), ('gt', 4), ('div', 3), ('control', 1), ('performance', 1), ('stability', 1), ('apps', 1), ('develop', 1), ('swift', 1), ('working', 1), ('understanding', 1), ('advanced', 1), ('concept', 1), ('data', 1), ('structure', 1), ('algorithm', 1), ('amp', 1), ('nbsp', 1), ('br', 1), ('professional', 1), ('developer', 1)]
[('design', 2), ('spring', 2), ('lt', 1), ('gt', 1), ('develop', 1), ('java', 1), ('based', 1), ('restful', 1), ('apis', 1), ('using', 1), ('latest', 1), ('version', 1), ('mvc', 1), ('boot', 1), ('framework', 1), ('book', 1), ('walk', 1), ('process', 1), ('designing', 1), ('building', 1), ('rest', 1), ('application', 1), ('delving', 1), ('principle', 1)]
[('raspberry', 2), ('pi', 2), ('pico', 2), ('microcontroller', 2), ('program', 1), ('latest', 1), ('board', 1), ('raspberrypi', 1), ('org', 1), ('micropython', 1), ('book', 1), ('take', 1), ('tour', 1), ('including', 1), ('started', 1), ('using', 1), ('seeing', 1), ('alternative', 1)]
[('syntax', 2), ('reference', 2), ('excel', 2), ('condensed', 1), ('present', 1), ('essential', 1), ('function', 1), ('organized', 1), ('format', 1), ('used', 1), ('quick', 1), ('handy', 1), ('use', 1), ('improve', 1), ('knowledge', 1), ('increase', 1), ('productivity', 1), ('help', 1)]
[('sql', 4), ('server', 3), ('learn', 1), ('effective', 1), ('scalable', 1), ('database', 1), ('design', 1), ('technique', 1), ('recent', 1), ('version', 1), ('book', 1), ('revised', 1), ('cover', 1), ('addition', 1), ('include', 1), ('graph', 1), ('enhancement', 1), ('memory', 1), ('online', 1), ('transaction', 1), ('processing', 1)]
[('php', 2), ('learn', 1), ('develop', 1), ('elegant', 1), ('rock', 1), ('solid', 1), ('system', 1), ('using', 1), ('aided', 1), ('three', 1), ('key', 1), ('element', 1), ('object', 1), ('fundamental', 1), ('design', 1), ('principle', 1), ('best', 1), ('practice', 1), ('th', 1), ('edition', 1), ('popular', 1), ('book', 1), ('fully', 1), ('updated', 1), ('including', 1), ('attribute', 1)]
[('requirement', 2), ('engineering', 2), ('written', 1), ('want', 1), ('develop', 1), ('knowledge', 1), ('process', 1), ('whether', 1), ('practitioner', 1), ('student', 1), ('using', 1), ('latest', 1), ('research', 1), ('driven', 1), ('practical', 1), ('experience', 1), ('industry', 1), ('give', 1), ('useful', 1), ('hint', 1)]
[('statistical', 2), ('data', 2), ('analysis', 2), ('textbook', 1), ('provides', 1), ('introduction', 1), ('free', 1), ('software', 1), ('python', 1), ('use', 1), ('cover', 1), ('common', 1), ('test', 1), ('continuous', 1), ('discrete', 1), ('categorical', 1), ('linear', 1), ('regression', 1), ('topic', 1)]
[('modern', 1), ('life', 1), ('revolve', 1), ('around', 1), ('objective', 1), ('science', 1), ('funded', 1), ('improving', 1), ('child', 1), ('educated', 1), ('nearly', 1), ('everything', 1), ('society', 1), ('become', 1), ('obsessed', 1), ('seductive', 1), ('illusion', 1), ('greatness', 1), ('result', 1)]
[('textbook', 1), ('explains', 1), ('concept', 1), ('technique', 1), ('required', 1), ('write', 1), ('program', 1), ('handle', 1), ('large', 1), ('amount', 1), ('data', 1), ('efficiently', 1), ('project', 1), ('oriented', 1), ('classroom', 1), ('tested', 1), ('book', 1), ('present', 1), ('number', 1), ('important', 1), ('algorithm', 1), ('supported', 1), ('example', 1)]
[('forensics', 2), ('nbsp', 2), ('textbook', 1), ('provides', 1), ('introduction', 1), ('digital', 1), ('rapidly', 1), ('evolving', 1), ('field', 1), ('solving', 1), ('crime', 1), ('beginning', 1), ('basic', 1), ('concept', 1), ('computer', 1), ('book', 1), ('chapter', 1), ('focus', 1), ('particular', 1), ('forensic', 1), ('topic', 1)]
[('company', 2), ('ai', 2), ('use', 1), ('soon', 1), ('obsolete', 1), ('making', 1), ('faster', 1), ('better', 1), ('decision', 1), ('automating', 1), ('rote', 1), ('work', 1), ('enabling', 1), ('robot', 1), ('respond', 1), ('emotion', 1), ('machine', 1), ('learning', 1), ('already', 1), ('reshaping', 1), ('business', 1), ('society', 1), ('today', 1), ('ensure', 1), ('poised', 1), ('success', 1), ('keeping', 1)]
[('die', 2), ('datenauswertung', 2), ('einen', 2), ('diesis', 1), ('buch', 1), ('liefert', 1), ('eine', 1), ('kompakte', 1), ('einführung', 1), ('mit', 1), ('der', 1), ('freien', 1), ('statistikumgebung', 1), ('ziel', 1), ('ist', 1), ('e', 1), ('dabei', 1), ('überblick', 1), ('über', 1), ('den', 1), ('basisumfang', 1), ('von', 1), ('zu', 1), ('schaffen', 1), ('und', 1), ('schnellen', 1), ('einstieg', 1), ('deskriptive', 1), ('sowie', 1)]
[('book', 1), ('become', 1), ('happy', 1), ('non', 1), ('gambler', 1), ('rest', 1), ('life', 1), ('allen', 1), ('carr', 1), ('easyway', 1), ('global', 1), ('phenomenon', 1), ('helped', 1), ('million', 1), ('smoker', 1), ('world', 1), ('successfully', 1), ('applied', 1), ('wide', 1), ('range', 1), ('issue', 1), ('including', 1), ('drinking', 1), ('eating', 1), ('spending', 1), ('method', 1), ('address', 1), ('fastest', 1), ('growing', 1)]
[('machine', 2), ('learning', 2), ('data', 2), ('comprehensive', 1), ('introduction', 1), ('us', 1), ('probabilistic', 1), ('model', 1), ('inference', 1), ('unifying', 1), ('approach', 1), ('today', 1), ('web', 1), ('enabled', 1), ('deluge', 1), ('electronic', 1), ('call', 1), ('automated', 1), ('method', 1), ('analysis', 1), ('provides', 1)]
[('human', 3), ('idea', 2), ('singularity', 2), ('ordinary', 2), ('intelligence', 2), ('technological', 1), ('mean', 1), ('enhanced', 1), ('overtaken', 1), ('artificial', 1), ('history', 1), ('approaching', 1)]
[('machine', 2), ('learning', 2), ('used', 2), ('predictive', 2), ('second', 1), ('edition', 1), ('comprehensive', 1), ('introduction', 1), ('approach', 1), ('data', 1), ('analytics', 1), ('covering', 1), ('theory', 1), ('practice', 1), ('often', 1), ('build', 1), ('model', 1), ('extracting', 1), ('pattern', 1), ('large', 1)]
[('compiler', 3), ('hand', 1), ('approach', 1), ('understanding', 1), ('building', 1), ('notoriously', 1), ('difficult', 1), ('program', 1), ('teach', 1), ('understand', 1), ('nbsp', 1), ('book', 1), ('dedicate', 1), ('chapter', 1), ('progressive', 1), ('stage', 1), ('structure', 1)]
[('type', 4), ('dependent', 2), ('introduction', 1), ('demonstrating', 1), ('beautiful', 1), ('aspect', 1), ('step', 1), ('time', 1), ('program', 1), ('describes', 1), ('behavior', 1), ('first', 1), ('class', 1), ('part', 1), ('language', 1), ('powerful', 1), ('kind', 1)]
[('basic', 2), ('category', 2), ('theory', 2), ('computer', 1), ('scientist', 1), ('provides', 1), ('straightforward', 1), ('presentation', 1), ('construction', 1), ('terminology', 1), ('including', 1), ('limit', 1), ('functors', 1), ('natural', 1), ('transformation', 1), ('adjoints', 1), ('cartesian', 1), ('closed', 1)]
[('learning', 2), ('substantially', 1), ('revised', 1), ('fourth', 1), ('edition', 1), ('comprehensive', 1), ('textbook', 1), ('including', 1), ('new', 1), ('coverage', 1), ('recent', 1), ('advance', 1), ('deep', 1), ('neural', 1), ('network', 1), ('goal', 1), ('machine', 1), ('program', 1), ('computer', 1), ('use', 1), ('example', 1), ('data', 1), ('past', 1), ('experience', 1), ('solve', 1)]
[('digital', 2), ('organization', 2), ('transformation', 1), ('management', 1), ('agile', 1), ('highlight', 1), ('explores', 1), ('new', 1), ('dynamic', 1), ('regarding', 1), ('current', 1), ('development', 1), ('globally', 1), ('scale', 1), ('examining', 1), ('threat', 1), ('opportunity', 1), ('innovation', 1), ('offer', 1), ('kind', 1)]
[('object', 3), ('oriented', 2), ('used', 1), ('traditional', 1), ('language', 1), ('java', 1), ('javascript', 1), ('probably', 1), ('seem', 1), ('concept', 1), ('class', 1), ('even', 1), ('need', 1), ('define', 1), ('order', 1), ('write', 1), ('code', 1)]
[('webassembly', 2), ('fast', 2), ('thorough', 1), ('practice', 1), ('based', 1), ('introduction', 1), ('learn', 1), ('create', 1), ('high', 1), ('performing', 1), ('lightning', 1), ('website', 1), ('application', 1), ('nbsp', 1), ('compact', 1), ('portable', 1), ('technology', 1), ('optimizes', 1), ('performance', 1)]
[('inkscape', 3), ('comprehensive', 1), ('user', 1), ('rsquo', 1), ('guide', 1), ('vector', 1), ('illustration', 1), ('application', 1), ('dmitry', 1), ('kirsanov', 1), ('former', 1), ('core', 1), ('developer', 1), ('share', 1), ('hisknowledge', 1), ('inner', 1), ('working', 1), ('show', 1), ('useinkscape', 1), ('draw', 1), ('various', 1), ('tool', 1), ('work', 1)]
[('lisp', 2), ('hailed', 1), ('world', 1), ('powerful', 1), ('programming', 1), ('language', 1), ('cryptic', 1), ('syntax', 1), ('academic', 1), ('reputation', 1), ('enough', 1), ('scare', 1), ('even', 1), ('experienced', 1), ('programmer', 1), ('dark', 1), ('day', 1), ('finally', 1), ('land', 1), ('brings', 1)]
[('type', 4), ('system', 3), ('program', 2), ('harness', 1), ('power', 1), ('write', 1), ('clearer', 1), ('simpler', 1), ('efficient', 1), ('foundation', 1), ('upon', 1), ('built', 1), ('show', 1), ('todefine', 1), ('implement', 1), ('value', 1)]
[('hacking', 3), ('hand', 1), ('guide', 1), ('computer', 1), ('system', 1), ('ground', 1), ('capturing', 1), ('traffic', 1), ('crafting', 1), ('sneaky', 1), ('successful', 1), ('trojan', 1), ('crash', 1), ('course', 1), ('modern', 1), ('technique', 1), ('ethical', 1), ('already', 1), ('used', 1), ('prepare', 1), ('next', 1), ('generation', 1)]
[('apis', 4), ('hacking', 2), ('crash', 2), ('course', 2), ('web', 2), ('api', 2), ('security', 2), ('testing', 2), ('prepare', 1), ('penetration', 1), ('test', 1), ('reap', 1), ('high', 1), ('reward', 1), ('bug', 1), ('bounty', 1), ('program', 1), ('make', 1), ('secure', 1)]
[('network', 3), ('programming', 3), ('software', 2), ('go', 1), ('teach', 1), ('write', 1), ('clean', 1), ('secure', 1), ('language', 1), ('designed', 1), ('make', 1), ('seem', 1), ('easy', 1), ('build', 1), ('simple', 1), ('reliable', 1), ('nbsp', 1), ('combining', 1), ('best', 1), ('part', 1), ('many', 1)]
[('openbsd', 2), ('pf', 2), ('stateful', 1), ('packet', 1), ('filter', 1), ('heart', 1), ('firewall', 1), ('service', 1), ('placing', 1), ('high', 1), ('demand', 1), ('bandwidth', 1), ('increasingly', 1), ('hostile', 1), ('internet', 1), ('environment', 1), ('sysadmin', 1), ('afford', 1), ('without', 1), ('expertise', 1)]
[('bug', 2), ('practical', 1), ('vulnerability', 1), ('management', 1), ('show', 1), ('weed', 1), ('system', 1), ('security', 1), ('weakness', 1), ('squash', 1), ('cyber', 1), ('threat', 1), ('track', 1), ('everywhere', 1), ('software', 1), ('firmware', 1), ('hardware', 1), ('even', 1), ('live', 1), ('cloud', 1)]
[('deep', 2), ('learning', 2), ('richly', 1), ('illustrated', 1), ('full', 1), ('color', 1), ('introduction', 1), ('offer', 1), ('visual', 1), ('conceptual', 1), ('explanation', 1), ('instead', 1), ('equation', 1), ('learn', 1), ('use', 1), ('key', 1), ('algorithm', 1), ('without', 1), ('need', 1), ('complex', 1), ('math', 1), ('computer', 1), ('began', 1)]
[('language', 3), ('assembly', 2), ('low', 1), ('level', 1), ('programming', 1), ('step', 1), ('computer', 1), ('native', 1), ('machine', 1), ('although', 1), ('commonly', 1), ('used', 1), ('writing', 1), ('device', 1), ('driver', 1), ('emulator', 1), ('video', 1), ('game', 1), ('many', 1), ('programmer', 1), ('find', 1), ('somewhat', 1)]
[('web', 2), ('application', 2), ('modern', 1), ('built', 1), ('tangle', 1), ('technology', 1), ('developed', 1), ('time', 1), ('haphazardly', 1), ('pieced', 1), ('together', 1), ('every', 1), ('piece', 1), ('stack', 1), ('request', 1), ('browser', 1), ('side', 1), ('script', 1), ('come', 1), ('important', 1), ('yet', 1)]
[('new', 2), ('single', 2), ('cell', 2), ('result', 2), ('dynamic', 2), ('office', 1), ('customer', 1), ('formula', 1), ('sitting', 1), ('return', 1), ('many', 1), ('extra', 1), ('spill', 1), ('adjacent', 1), ('major', 1), ('change', 1), ('calculation', 1), ('engine', 1), ('excel', 1), ('book', 1), ('cover', 1), ('function', 1), ('added', 1), ('array', 1), ('sort', 1), ('sortby', 1), ('filter', 1), ('unique', 1), ('sequence', 1), ('randarray', 1), ('show', 1)]
[('data', 3), ('web', 3), ('book', 2), ('getting', 2), ('vba', 2), ('excel', 1), ('workbook', 1), ('need', 1), ('regularly', 1), ('harvest', 1), ('page', 1), ('cover', 1), ('various', 1), ('method', 1), ('selenium', 1), ('power', 1), ('query', 1), ('address', 1), ('complexity', 1), ('modern', 1), ('lack', 1), ('support', 1), ('microsoft', 1), ('edge', 1)]
[('power', 2), ('bi', 2), ('step', 2), ('dashboard', 2), ('written', 1), ('member', 1), ('microsoft', 1), ('team', 1), ('resource', 1), ('provides', 1), ('practical', 1), ('guide', 1), ('creating', 1), ('financial', 1), ('book', 1), ('cover', 1), ('detail', 1), ('combine', 1), ('shape', 1), ('relevant', 1), ('data', 1), ('build', 1), ('providing', 1), ('layout', 1), ('design', 1), ('tip', 1), ('trick', 1), ('prepare', 1), ('model', 1), ('work', 1), ('fiscal', 1), ('date', 1), ('show', 1), ('value', 1)]
[('data', 3), ('step', 2), ('book', 1), ('includes', 1), ('example', 1), ('case', 1), ('study', 1), ('teach', 1), ('user', 1), ('many', 1), ('power', 1), ('trick', 1), ('analyzing', 1), ('excel', 1), ('tip', 1), ('honed', 1), ('bill', 1), ('jelen', 1), ('mrexcel', 1), ('oz', 1), ('soleil', 1), ('career', 1), ('run', 1), ('financial', 1), ('analyst', 1), ('charged', 1), ('taking', 1), ('mainframe', 1), ('turning', 1), ('useful', 1), ('information', 1), ('quickly', 1), ('topic', 1), ('include', 1)]
[('need', 2), ('value', 2), ('software', 2), ('project', 2), ('help', 2), ('sooner', 2), ('better', 2), ('free', 1), ('perfect', 1), ('cheaper', 1), ('book', 1), ('lead', 1), ('desire', 1), ('specific', 1), ('activity', 1), ('good', 1), ('agile', 1), ('deliver', 1), ('lower', 1), ('cost', 1), ('using', 1), ('simple', 1)]
[('code', 3), ('macro', 3), ('elixir', 2), ('possible', 2), ('language', 2), ('extend', 2), ('write', 1), ('writes', 1), ('make', 1), ('metaprogramming', 1), ('define', 1), ('book', 1), ('learn', 1), ('use', 1), ('fast', 1), ('maintainable', 1), ('share', 1), ('functionality', 1), ('way', 1), ('never', 1), ('thought', 1), ('discover', 1), ('first', 1), ('class', 1), ('feature', 1)]
[('network', 4), ('construct', 1), ('analyze', 1), ('visualize', 1), ('networkx', 1), ('python', 1), ('language', 1), ('module', 1), ('analysis', 1), ('powerful', 1), ('tool', 1), ('apply', 1), ('multitude', 1), ('datasets', 1), ('situation', 1), ('discover', 1), ('work', 1), ('kind', 1), ('including', 1), ('social', 1), ('product', 1), ('temporal', 1), ('spatial', 1), ('semantic', 1), ('convert', 1), ('almost', 1), ('real', 1), ('world', 1), ('data', 1), ('complex', 1)]
[('code', 3), ('working', 1), ('codebase', 1), ('cost', 1), ('overrun', 1), ('death', 1), ('march', 1), ('heroic', 1), ('fight', 1), ('legacy', 1), ('monster', 1), ('norm', 1), ('battle', 1), ('adversary', 1), ('novel', 1), ('way', 1), ('identify', 1), ('prioritize', 1), ('technical', 1), ('debt', 1), ('based', 1), ('behavioral', 1), ('data', 1), ('developer', 1), ('work', 1), ('starter', 1), ('good', 1), ('involves', 1), ('social', 1), ('design', 1)]
[('elixir', 3), ('without', 2), ('book', 1), ('introduction', 1), ('experienced', 1), ('programmer', 1), ('completely', 1), ('updated', 1), ('beyond', 1), ('explore', 1), ('functional', 1), ('programming', 1), ('academic', 1), ('overtone', 1), ('tell', 1), ('monad', 1), ('time', 1), ('create', 1), ('concurrent', 1), ('application', 1), ('butget', 1), ('right', 1), ('locking', 1), ('consistency', 1), ('headache', 1), ('meet', 1), ('modern', 1)]
[('mob', 2), ('programming', 2), ('build', 1), ('system', 1), ('faster', 1), ('effectively', 1), ('approach', 1), ('developing', 1), ('software', 1), ('radically', 1), ('reduces', 1), ('defect', 1), ('key', 1), ('person', 1), ('dependency', 1), ('group', 1), ('work', 1), ('together', 1), ('single', 1), ('machine', 1), ('see', 1), ('avoid', 1), ('common', 1), ('pitfall', 1), ('team', 1), ('make', 1), ('first', 1), ('starting', 1), ('discover', 1), ('take', 1)]
[('build', 2), ('brace', 1), ('fun', 1), ('challenge', 1), ('photorealistic', 1), ('renderer', 1), ('scratch', 1), ('easier', 1), ('think', 1), ('couple', 1), ('week', 1), ('ray', 1), ('tracer', 1), ('render', 1), ('beautiful', 1), ('scene', 1), ('shadow', 1), ('reflection', 1), ('brilliant', 1), ('refraction', 1), ('effect', 1), ('subject', 1), ('composed', 1), ('various', 1), ('graphic', 1), ('primitive', 1), ('sphere', 1), ('cube', 1), ('cylinder', 1), ('triangle', 1)]
[('product', 2), ('team', 2), ('scrum', 2), ('building', 1), ('successful', 1), ('usually', 1), ('involves', 1), ('many', 1), ('choose', 1), ('approach', 1), ('aid', 1), ('creating', 1), ('deliver', 1), ('highest', 1), ('possible', 1), ('value', 1), ('implementing', 1), ('give', 1), ('collection', 1), ('powerful', 1), ('idea', 1), ('assemble', 1), ('fit', 1), ('need', 1), ('meet', 1), ('goal', 1), ('ninety', 1), ('four', 1), ('pattern', 1), ('contained', 1), ('within', 1), ('elaborated', 1)]
[('rail', 3), ('developer', 2), ('step', 2), ('learn', 1), ('way', 1), ('core', 1), ('team', 1), ('recommends', 1), ('along', 1), ('ten', 1), ('thousand', 1), ('used', 1), ('broad', 1), ('far', 1), ('reaching', 1), ('tutorial', 1), ('reference', 1), ('new', 1), ('guidance', 1), ('experienced', 1), ('comprehensive', 1), ('insider', 1), ('information', 1), ('need', 1), ('latest', 1), ('version', 1), ('ruby', 1)]
[('working', 2), ('today', 1), ('tech', 1), ('unicorn', 1), ('develop', 1), ('software', 1), ('differently', 1), ('developed', 1), ('way', 1), ('let', 1), ('scale', 1), ('enterprise', 1), ('startup', 1), ('technique', 1), ('learned', 1), ('book', 1), ('take', 1), ('behind', 1), ('scene', 1), ('show', 1), ('company', 1), ('google', 1), ('facebook', 1), ('spotify', 1), ('leverage', 1), ('insight', 1), ('team', 1), ('work', 1)]
[('satellite', 2), ('computer', 2), ('want', 1), ('able', 1), ('receive', 1), ('image', 1), ('using', 1), ('nothing', 1), ('old', 1), ('tv', 1), ('antenna', 1), ('usb', 1), ('stick', 1), ('last', 1), ('technology', 1), ('exists', 1), ('turn', 1), ('super', 1), ('radio', 1), ('receiver', 1), ('capable', 1), ('tuning', 1), ('fm', 1), ('shortwave', 1), ('amateur', 1), ('ham', 1), ('even', 1), ('frequency', 1), ('around', 1), ('world', 1), ('listen', 1)]
[('learn', 1), ('different', 1), ('way', 1), ('writing', 1), ('concurrent', 1), ('code', 1), ('elixir', 1), ('increase', 1), ('application', 1), ('performance', 1), ('without', 1), ('sacrificing', 1), ('scalability', 1), ('fault', 1), ('tolerance', 1), ('project', 1), ('benefit', 1), ('running', 1), ('background', 1), ('task', 1), ('processing', 1), ('data', 1), ('concurrently', 1), ('world', 1), ('otp', 1), ('various', 1), ('library', 1), ('challenging', 1), ('supervisor', 1), ('strategy', 1), ('use', 1)]
[('rust', 3), ('language', 2), ('quirk', 2), ('understanding', 2), ('programming', 1), ('consistent', 1), ('best', 1), ('avoid', 1), ('surprising', 1), ('programmer', 1), ('though', 1), ('still', 1), ('present', 1), ('teaching', 1), ('opportunity', 1), ('book', 1), ('work', 1), ('series', 1), ('brain', 1), ('teaser', 1), ('challenge', 1), ('gap', 1)]
[('pi', 4), ('raspberry', 3), ('model', 2), ('use', 2), ('book', 1), ('serf', 1), ('beginner', 1), ('guide', 1), ('world', 1), ('different', 1), ('capability', 1), ('inside', 1), ('discover', 1), ('power', 1), ('microcomputer', 1), ('right', 1), ('set', 1), ('started', 1), ('first', 1)]
[('social', 3), ('medium', 3), ('platform', 3), ('marketing', 2), ('throughout', 1), ('book', 1), ('discus', 1), ('different', 1), ('pro', 1), ('con', 1), ('advertise', 1), ('effectively', 1), ('learn', 1), ('choosing', 1), ('right', 1), ('particular', 1), ('business', 1), ('importance', 1), ('creating', 1), ('plan', 1)]
[('facebook', 3), ('marketing', 2), ('social', 2), ('business', 2), ('largest', 1), ('network', 1), ('million', 1), ('daily', 1), ('user', 1), ('many', 1), ('embraced', 1), ('medium', 1), ('understanding', 1), ('beneficial', 1), ('increasing', 1), ('sale', 1), ('profit', 1), ('book', 1), ('learn', 1), ('use', 1), ('successfully', 1), ('grow', 1), ('brand', 1)]
[('complete', 2), ('course', 2), ('adobe', 1), ('illustrator', 1), ('compendium', 1), ('feature', 1), ('guide', 1), ('building', 1), ('vector', 1), ('graphic', 1), ('whether', 1), ('creating', 1), ('logo', 1), ('icon', 1), ('drawing', 1), ('typography', 1), ('illustration', 1), ('regardless', 1), ('destination', 1), ('print', 1), ('web', 1), ('video', 1), ('mobile', 1), ('first', 1), ('includes', 1), ('set', 1), ('project', 1), ('lesson', 1), ('derived', 1)]
[('test', 3), ('automation', 2), ('essential', 1), ('tool', 1), ('today', 1), ('software', 1), ('development', 1), ('environment', 1), ('increase', 1), ('testing', 1), ('efficiency', 1), ('make', 1), ('procedure', 1), ('reliably', 1), ('repeatable', 1), ('book', 1), ('provides', 1), ('complete', 1), ('overview', 1), ('design', 1), ('process', 1), ('integrate', 1), ('organization', 1), ('existing', 1), ('project', 1), ('detail', 1), ('functional', 1), ('technical', 1)]
[('book', 2), ('drive', 2), ('stakeholder', 2), ('value', 2), ('provides', 2), ('majority', 1), ('based', 1), ('official', 1), ('axelos', 1), ('itil', 1), ('publication', 1), ('associated', 1), ('mp', 1), ('syllabus', 1), ('student', 1), ('information', 1), ('need', 1), ('pas', 1), ('dsv', 1), ('exam', 1), ('addition', 1), ('essential', 1), ('study', 1), ('aid', 1), ('author', 1), ('additional', 1), ('guidance', 1), ('throughout', 1)]
[('information', 2), ('step', 2), ('workbook', 1), ('complete', 1), ('guide', 1), ('collecting', 1), ('organizing', 1), ('important', 1), ('paper', 1), ('author', 1), ('lead', 1), ('reader', 1), ('process', 1), ('prompting', 1), ('provide', 1), ('make', 1), ('sure', 1), ('family', 1), ('member', 1), ('lose', 1), ('money', 1), ('life', 1), ('insurance', 1), ('proceeds', 1), ('often', 1), ('go', 1), ('unclaimed', 1), ('example', 1), ('legal', 1), ('document', 1), ('good', 1)]
[('computer', 2), ('using', 2), ('excel', 2), ('staring', 1), ('screen', 1), ('idea', 1), ('worry', 1), ('help', 1), ('written', 1), ('best', 1), ('selling', 1), ('technology', 1), ('author', 1), ('lecturer', 1), ('trainer', 1), ('kevin', 1), ('wilson', 1), ('packed', 1), ('easy', 1), ('follow', 1), ('instruction', 1), ('photo', 1), ('illustration', 1), ('helpful', 1), ('tip', 1), ('video', 1), ('demo', 1), ('updated', 1)]
[('example', 4), ('sa', 3), ('programmer', 2), ('second', 2), ('edition', 2), ('topic', 2), ('learn', 1), ('program', 1), ('learning', 1), ('guide', 1), ('teach', 1), ('programming', 1), ('basic', 1), ('concept', 1), ('advanced', 1), ('prefer', 1), ('rather', 1), ('reference', 1), ('type', 1), ('syntax', 1), ('book', 1), ('us', 1), ('short', 1), ('explain', 1), ('brought', 1)]
[('email', 3), ('probably', 2), ('provider', 2), ('using', 2), ('million', 1), ('first', 1), ('aol', 1), ('juno', 1), ('hotmail', 1), ('communication', 1), ('tool', 1), ('around', 1), ('gmail', 1), ('widely', 1), ('used', 1), ('today', 1), ('considering', 1), ('good', 1), ('reason', 1), ('perhaps', 1)]
[('book', 1), ('provides', 1), ('introduction', 1), ('basic', 1), ('idea', 1), ('involved', 1), ('cybersecurity', 1), ('whose', 1), ('principal', 1), ('aim', 1), ('protection', 1), ('system', 1), ('unwanted', 1), ('behaviour', 1), ('mediated', 1), ('network', 1), ('connect', 1), ('due', 1), ('widespread', 1), ('use', 1), ('internet', 1)]
[('cover', 2), ('shell', 2), ('step', 2), ('highlight', 1), ('red', 1), ('hat', 1), ('enterprise', 1), ('linux', 1), ('latest', 1), ('official', 1), ('exam', 1), ('objective', 1), ('including', 1), ('scripting', 1), ('container', 1), ('self', 1), ('study', 1), ('class', 1), ('virtual', 1), ('training', 1), ('chapter', 1), ('real', 1), ('life', 1), ('exercise', 1), ('script', 1), ('challenge', 1), ('lab', 1), ('review', 1), ('question', 1)]
[('computer', 2), ('scientist', 2), ('simulation', 2), ('hypothesis', 2), ('written', 1), ('known', 1), ('silicon', 1), ('valley', 1), ('entrepreneur', 1), ('mit', 1), ('educated', 1), ('rizwan', 1), ('virk', 1), ('brings', 1), ('together', 1), ('disparate', 1), ('field', 1), ('explore', 1), ('daring', 1), ('consequential', 1), ('theory', 1), ('time', 1), ('whether', 1), ('fan', 1), ('science', 1), ('fiction', 1), ('matrix', 1), ('movie', 1)]
[('book', 2), ('looking', 1), ('comprehensive', 1), ('soup', 1), ('nut', 1), ('resource', 1), ('ssl', 1), ('tl', 1), ('look', 1), ('geared', 1), ('towards', 1), ('bridging', 1), ('gap', 1), ('absolute', 1), ('beginner', 1), ('veteran', 1), ('professional', 1), ('combine', 1), ('theoretical', 1), ('practical', 1), ('equal', 1), ('measure', 1), ('first', 1), ('half', 1), ('focus', 1), ('foundational', 1), ('theory', 1), ('covering', 1), ('topic', 1)]
[('visual', 3), ('basic', 3), ('application', 2), ('vba', 2), ('language', 2), ('office', 2), ('set', 1), ('tool', 1), ('based', 1), ('thing', 1), ('using', 1), ('enhance', 1), ('easier', 1), ('learn', 1), ('come', 1), ('license', 1), ('reading', 1), ('book', 1), ('reader', 1), ('proficient', 1), ('extensive', 1), ('knowledge', 1)]
[('pentium', 4), ('ii', 2), ('pro', 2), ('processor', 2), ('hardware', 2), ('software', 2), ('detailed', 1), ('discussion', 1), ('front', 1), ('side', 1), ('bus', 1), ('fsb', 1), ('protocol', 1), ('system', 1), ('implementation', 1), ('viewpoint', 1), ('written', 1), ('computer', 1), ('engineer', 1), ('book', 1), ('offer', 1), ('insight', 1), ('family', 1), ('translates', 1), ('legacy', 1), ('code', 1), ('risc', 1)]
[('asp', 2), ('net', 2), ('mvc', 1), ('framework', 1), ('latest', 1), ('evolution', 1), ('microsoft', 1), ('rsquo', 1), ('web', 1), ('platform', 1), ('provides', 1), ('high', 1), ('productivity', 1), ('programming', 1), ('model', 1), ('promotes', 1), ('cleaner', 1), ('code', 1), ('architecture', 1), ('test', 1), ('driven', 1), ('development', 1), ('powerful', 1), ('extensibility', 1), ('combined', 1)]
[('process', 2), ('isc', 2), ('credential', 2), ('result', 1), ('rigorous', 1), ('methodical', 1), ('follows', 1), ('routinely', 1), ('update', 1), ('exam', 1), ('announced', 1), ('enhancement', 1), ('made', 1), ('certified', 1), ('information', 1), ('system', 1), ('security', 1), ('professional', 1), ('cissp', 1), ('beginning', 1), ('april', 1), ('conduct', 1), ('regular', 1), ('basis', 1), ('ensure', 1), ('examination', 1)]
[('nan', 1)]
[('regex', 2), ('using', 2), ('supported', 1), ('major', 1), ('development', 1), ('environment', 1), ('use', 1), ('editing', 1), ('working', 1), ('code', 1), ('thus', 1), ('appeal', 1), ('anyone', 1), ('tool', 1), ('addition', 1), ('every', 1), ('javascript', 1), ('developer', 1), ('never', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('uml', 2), ('easier', 1), ('faster', 1), ('practical', 1), ('way', 1), ('learn', 1), ('really', 1), ('tough', 1), ('subject', 1), ('demystified', 1), ('explains', 1), ('model', 1), ('use', 1), ('create', 1), ('structured', 1), ('stable', 1), ('software', 1), ('product', 1), ('self', 1), ('teaching', 1), ('guide', 1), ('come', 1), ('complete', 1), ('key', 1), ('point', 1), ('background', 1), ('information', 1), ('quiz', 1), ('end', 1), ('chapter', 1), ('even', 1), ('final', 1), ('exam', 1), ('simple', 1)]
[('exam', 2), ('database', 2), ('prepare', 1), ('microsoft', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('skill', 1), ('administration', 1), ('intended', 1), ('administrator', 1), ('charged', 1), ('installation', 1), ('maintenance', 1), ('configuration', 1), ('task', 1)]
[('autocad', 1), ('premiere', 1), ('computer', 1), ('aided', 1), ('designing', 1), ('program', 1), ('let', 1), ('organize', 1), ('object', 1), ('draw', 1), ('property', 1), ('file', 1), ('help', 1), ('create', 1), ('looking', 1), ('model', 1), ('always', 1), ('easy', 1), ('figure', 1), ('perform', 1)]
[('project', 3), ('increase', 1), ('outsourcing', 1), ('forced', 1), ('traditional', 1), ('programmer', 1), ('take', 1), ('role', 1), ('manager', 1), ('quickly', 1), ('learn', 1), ('manage', 1), ('software', 1), ('author', 1), ('discus', 1), ('essential', 1)]
[('unix', 2), ('operating', 2), ('system', 2), ('shell', 1), ('programming', 1), ('tutorial', 1), ('aimed', 1), ('helping', 1), ('linux', 1), ('user', 1), ('optimal', 1), ('performance', 1), ('show', 1), ('take', 1), ('control', 1), ('work', 1), ('efficiently', 1), ('harnessing', 1)]
[('ti', 4), ('need', 2), ('titanium', 1), ('plus', 1), ('voyage', 1), ('graphing', 1), ('calculator', 1), ('school', 1), ('job', 1), ('know', 1), ('work', 1), ('make', 1), ('function', 1), ('dummy', 1)]
[('programming', 2), ('web', 2), ('even', 1), ('experience', 1), ('learn', 1), ('create', 1), ('dynamic', 1), ('interactive', 1), ('page', 1), ('help', 1), ('easy', 1), ('use', 1), ('self', 1), ('teaching', 1), ('guide', 1), ('author', 1), ('instructor', 1), ('jim', 1), ('keogh', 1), ('cover', 1), ('basic', 1), ('leading', 1), ('development', 1), ('language', 1), ('explains', 1), ('write', 1), ('cross', 1), ('browser', 1), ('javascript', 1), ('program', 1), ('time', 1)]
[('data', 3), ('structure', 3), ('algorithm', 3), ('course', 2), ('many', 2), ('java', 2), ('appropriate', 1), ('intermediate', 1), ('advanced', 1), ('level', 1), ('programming', 1), ('student', 1), ('view', 1), ('difficult', 1), ('understand', 1), ('book', 1), ('thoroughly', 1), ('demystifies', 1), ('working', 1), ('robert', 1), ('lafore', 1), ('present', 1), ('essential', 1)]
[('book', 1), ('introduction', 1), ('spiking', 1), ('neuron', 1), ('advanced', 1), ('undergraduate', 1), ('graduate', 1), ('student', 1)]
[('computer', 2), ('written', 1), ('scientist', 1), ('engineer', 1), ('mind', 1), ('book', 1), ('brings', 1), ('queueing', 1), ('theory', 1), ('decisively', 1), ('back', 1), ('science', 1)]
[('book', 1), ('give', 1), ('comprehensive', 1), ('introduction', 1), ('core', 1), ('area', 1), ('many', 1), ('emerging', 1), ('theme', 1), ('sentiment', 1), ('analysis', 1)]
[('computer', 2), ('forensics', 2), ('uncover', 1), ('digital', 1), ('trail', 1), ('evidence', 1), ('using', 1), ('helpful', 1), ('easy', 1), ('understand', 1), ('information', 1), ('dummy', 1), ('professional', 1), ('armchair', 1), ('investigator', 1), ('alike', 1), ('learn', 1), ('basic', 1), ('digging', 1)]
[('graphing', 2), ('calculator', 2), ('college', 2), ('calculus', 2), ('updated', 1), ('guide', 1), ('newest', 1), ('texas', 1), ('instrument', 1), ('ti', 1), ('nspire', 1), ('popular', 1), ('among', 1), ('high', 1), ('school', 1), ('student', 1), ('valuable', 1), ('tool', 1), ('ap', 1), ('level', 1), ('algebra', 1), ('course', 1)]
[('digital', 4), ('photography', 2), ('jay', 2), ('book', 2), ('cover', 2), ('master', 1), ('art', 1), ('dickman', 1), ('kinghorn', 1), ('brought', 1), ('insightful', 1), ('based', 1), ('creating', 1), ('best', 1), ('photograph', 1), ('regardless', 1), ('rapid', 1), ('change', 1), ('technology', 1), ('filled', 1), ('priceless', 1), ('information', 1), ('photo', 1)]
[('topic', 1), ('include', 1), ('transformation', 1), ('lighting', 1), ('shading', 1), ('ray', 1), ('tracing', 1), ('radiosity', 1), ('texture', 1), ('mapping', 1), ('colour', 1), ('theory', 1), ('aspect', 1), ('animation', 1)]
[('excel', 3), ('help', 1), ('bestselling', 1), ('spreadsheet', 1), ('guide', 1), ('john', 1), ('walkenbach', 1), ('name', 1), ('synonymous', 1), ('excellence', 1), ('computer', 1), ('book', 1), ('decipher', 1), ('complexity', 1), ('microsoft', 1), ('known', 1)]
[('web', 3), ('need', 3), ('site', 2), ('different', 2), ('designer', 1), ('know', 1), ('create', 1), ('dynamic', 1), ('database', 1), ('driven', 1), ('cutting', 1), ('edge', 1), ('serve', 1), ('html', 1), ('cs', 1), ('product', 1), ('specific', 1), ('customer', 1), ('using', 1), ('browser', 1)]
[('book', 2), ('programming', 2), ('language', 2), ('primer', 1), ('plus', 1), ('conversational', 1), ('style', 1), ('aimed', 1), ('new', 1), ('friendly', 1), ('easy', 1), ('use', 1), ('self', 1), ('study', 1), ('guide', 1), ('appropriate', 1), ('serious', 1), ('student', 1), ('developer', 1), ('proficient', 1), ('desire', 1), ('better', 1), ('understand', 1), ('fundamental', 1), ('core', 1)]
[('software', 2), ('need', 1), ('know', 1), ('model', 1), ('design', 1), ('application', 1), ('use', 1), ('case', 1), ('architecture', 1), ('uml', 1)]
[('mcsa', 2), ('window', 2), ('server', 2), ('page', 1), ('comprehensive', 1), ('exam', 1), ('prep', 1), ('entire', 1), ('certification', 1), ('process', 1), ('complete', 1), ('study', 1), ('guide', 1), ('ultimate', 1), ('companion', 1)]
[('word', 4), ('macro', 2), ('vba', 2), ('beyond', 1), ('basic', 1), ('take', 1), ('microsoft', 1), ('skill', 1), ('next', 1), ('level', 1), ('help', 1), ('hand', 1), ('guide', 1), ('made', 1), ('easy', 1), ('show', 1), ('automate', 1), ('task', 1), ('using', 1), ('tool', 1), ('available', 1), ('built', 1), ('programming', 1), ('language', 1), ('learn', 1), ('record', 1), ('create', 1), ('customize', 1), ('debug', 1), ('share', 1)]
[('training', 3), ('series', 2), ('adobe', 2), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('best', 1), ('selling', 1), ('hand', 1), ('software', 1), ('workbook', 1), ('offer', 1), ('book', 1), ('program', 1), ('official', 1), ('developed', 1), ('support', 1)]
[('file', 3), ('system', 3), ('definitive', 1), ('guide', 1), ('analysis', 1), ('key', 1), ('concept', 1), ('hand', 1), ('technique', 1), ('nbsp', 1), ('digital', 1), ('evidence', 1), ('stored', 1), ('within', 1), ('computer', 1), ('understanding', 1), ('work', 1), ('technically', 1), ('challenging', 1)]
[('practical', 1), ('introduction', 1), ('perfect', 1), ('final', 1), ('year', 1), ('undergraduate', 1), ('graduate', 1), ('student', 1), ('without', 1), ('solid', 1), ('background', 1), ('linear', 1), ('algebra', 1), ('calculus', 1)]
[('book', 1), ('describes', 1), ('range', 1), ('string', 1), ('problem', 1), ('computer', 1), ('science', 1), ('molecular', 1), ('biology', 1), ('algorithm', 1), ('developed', 1), ('solve', 1)]
[('step', 2), ('learn', 1), ('key', 1), ('concept', 1), ('hand', 1), ('experience', 1), ('guide', 1), ('constructing', 1), ('fully', 1), ('functioning', 1), ('software', 1), ('receiver', 1)]
[('teach', 1), ('new', 1), ('method', 1), ('specifying', 1), ('analyzing', 1), ('testing', 1), ('software', 1), ('increase', 1), ('automation', 1), ('step', 1)]
[('exam', 4), ('comptia', 3), ('complete', 1), ('coverage', 1), ('latest', 1), ('release', 1), ('inside', 1), ('fully', 1), ('revised', 1), ('updated', 1), ('resource', 1), ('written', 1), ('leading', 1), ('authority', 1), ('certification', 1), ('training', 1), ('expert', 1), ('guide', 1), ('cover', 1), ('find', 1), ('learning', 1), ('objective', 1), ('beginning', 1), ('chapter', 1), ('tip', 1), ('practice', 1)]
[('hour', 2), ('teach', 2), ('arduino', 2), ('session', 1), ('le', 1), ('sam', 1), ('programming', 1), ('programmingon', 1), ('start', 1), ('creating', 1), ('inspired', 1), ('diy', 1), ('hardwareprojects', 1), ('using', 1), ('book', 1), ('straightforward', 1)]
[('indesign', 2), ('guide', 2), ('new', 2), ('cc', 1), ('visual', 1), ('quickstart', 1), ('release', 1), ('complete', 1), ('core', 1), ('function', 1), ('important', 1), ('feature', 1), ('edition', 1), ('coverage', 1), ('greatly', 1), ('expanded', 1), ('ebook', 1), ('export', 1), ('capability', 1), ('including', 1)]
[('business', 4), ('intelligence', 2), ('topic', 2), ('modeling', 2), ('data', 2), ('describes', 1), ('basic', 1), ('architectural', 1), ('component', 1), ('environment', 1), ('ranging', 1), ('traditional', 1), ('process', 1), ('modern', 1), ('rule', 1), ('system', 1)]
[('system', 2), ('thinking', 1), ('third', 1), ('edition', 1), ('combine', 1), ('theory', 1), ('interactive', 1), ('design', 1), ('provide', 1), ('operational', 1), ('methodology', 1), ('defining', 1), ('problem', 1), ('designing', 1), ('solution', 1), ('environment', 1), ('increasingly', 1), ('characterized', 1), ('chaos', 1), ('complexity', 1), ('new', 1)]
[('ai', 2), ('artificial', 1), ('intelligence', 1), ('long', 1), ('mainstay', 1), ('science', 1), ('fiction', 1), ('increasingly', 1), ('feel', 1), ('entering', 1), ('everyday', 1), ('life', 1), ('technology', 1), ('apple', 1), ('siri', 1), ('prominent', 1), ('self', 1), ('driving', 1), ('car', 1), ('almost', 1), ('upon', 1), ('actually', 1), ('mean', 1), ('talk', 1), ('sentient', 1), ('machine', 1), ('matrix', 1), ('real', 1), ('possibility', 1)]
[('comprehensive', 1), ('guide', 1), ('sampling', 1), ('engineer', 1), ('covering', 1), ('fundamental', 1), ('mathematical', 1), ('underpinnings', 1), ('together', 1), ('practical', 1), ('engineering', 1), ('principle', 1), ('application', 1)]
[('financial', 2), ('perennial', 1), ('bestseller', 1), ('new', 1), ('edition', 1), ('quickbooks', 1), ('allows', 1), ('small', 1), ('business', 1), ('manage', 1), ('accounting', 1), ('management', 1), ('task', 1), ('without', 1), ('needing', 1), ('hire', 1), ('expensive', 1)]
[('book', 3), ('cover', 2), ('anyone', 1), ('deploying', 1), ('businessobjects', 1), ('everything', 1), ('planning', 1), ('upgrade', 1), ('latest', 1), ('release', 1), ('best', 1), ('practice', 1), ('universe', 1), ('design', 1), ('powerful', 1), ('report', 1), ('creation', 1), ('maximizes', 1), ('business', 1), ('insight', 1), ('frequently', 1), ('used', 1), ('feature', 1), ('full', 1), ('bi', 1), ('suite', 1), ('comprehensive', 1)]
[('office', 2), ('application', 2), ('corporate', 1), ('setting', 1), ('microsoft', 1), ('suite', 1), ('invaluable', 1), ('set', 1), ('biggest', 1), ('advantage', 1), ('work', 1), ('together', 1), ('share', 1), ('information', 1), ('produce', 1), ('report', 1), ('problem', 1), ('documentation', 1), ('cross', 1), ('usage', 1), ('introducing', 1), ('integrating', 1), ('excel', 1), ('access', 1)]
[('adobe', 3), ('indesign', 2), ('step', 2), ('creative', 1), ('professional', 1), ('seeking', 1), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('choose', 1), ('cc', 1), ('classroom', 1), ('book', 1), ('release', 1), ('press', 1), ('project', 1), ('based', 1), ('lesson', 1), ('show', 1), ('user', 1), ('key', 1)]
[('conception', 1), ('rule', 1), ('law', 1), ('reflect', 1), ('timeless', 1), ('truth', 1), ('fact', 1), ('contingent', 1), ('particular', 1), ('information', 1), ('communication', 1), ('infrastructure', 1), ('fast', 1), ('leaving', 1), ('behind', 1), ('hildebrandt', 1), ('engineered', 1), ('provocative', 1), ('encounter', 1)]
[('information', 2), ('business', 2), ('complete', 1), ('commerce', 1), ('book', 1), ('offer', 1), ('wealth', 1), ('design', 1), ('build', 1), ('maintain', 1), ('successful', 1), ('web', 1), ('based', 1), ('many', 1), ('chapter', 1), ('filled', 1), ('advice', 1), ('incorporate', 1), ('current', 1), ('principle', 1)]
[('microsoft', 1), ('office', 1), ('user', 1), ('familiar', 1), ('word', 1), ('excel', 1), ('powerpoint', 1), ('access', 1), ('outlook', 1), ('book', 1), ('provides', 1), ('tutorial', 1), ('tool', 1), ('trick', 1), ('automate', 1), ('program', 1), ('increased', 1), ('productivity', 1), ('lesson', 1), ('includes', 1), ('instruction', 1), ('downloadable', 1), ('file', 1), ('test', 1), ('vba', 1), ('macro', 1), ('procedure', 1), ('provided', 1), ('task', 1), ('covered', 1), ('include', 1), ('run', 1)]
[('book', 1), ('describes', 1), ('best', 1), ('practice', 1), ('good', 1), ('style', 1), ('rigorous', 1), ('usage', 1), ('fortran', 1), ('programmer', 1), ('novice', 1), ('expert', 1)]
[('guidebook', 1), ('want', 1), ('use', 1), ('computational', 1), ('experiment', 1), ('support', 1), ('work', 1), ('algorithm', 1), ('design', 1), ('analysis', 1)]
[('excel', 3), ('bestselling', 1), ('book', 1), ('completely', 1), ('updated', 1), ('world', 1), ('leading', 1), ('spreadsheet', 1), ('application', 1), ('enormous', 1), ('user', 1), ('base', 1), ('release', 1), ('office', 1), ('brings', 1), ('major', 1), ('change', 1)]
[('cryptography', 3), ('java', 2), ('beginning', 1), ('still', 1), ('controversial', 1), ('topic', 1), ('programming', 1), ('community', 1), ('weathered', 1), ('storm', 1), ('provides', 1), ('rich', 1), ('set', 1), ('apis', 1), ('allow', 1), ('developer', 1), ('effectively', 1), ('include', 1)]
[('data', 3), ('spark', 3), ('edition', 2), ('set', 2), ('second', 1), ('practical', 1), ('book', 1), ('four', 1), ('cloudera', 1), ('scientist', 1), ('present', 1), ('self', 1), ('contained', 1), ('pattern', 1), ('performing', 1), ('large', 1), ('scale', 1), ('analysis', 1), ('author', 1), ('bring', 1), ('statistical', 1), ('method', 1), ('real', 1), ('world', 1), ('together', 1), ('teach', 1), ('approach', 1), ('analytics', 1), ('problem', 1), ('example', 1), ('updated', 1)]
[('photoshop', 2), ('popular', 1), ('image', 1), ('editing', 1), ('application', 1), ('market', 1), ('today', 1), ('adobe', 1), ('indispensable', 1), ('part', 1), ('creative', 1), ('designer', 1), ('toolkit', 1), ('mastering', 1), ('photo', 1), ('retouching', 1), ('general', 1), ('design', 1), ('work', 1), ('first', 1), ('step', 1), ('path', 1)]
[('agile', 4), ('testing', 3), ('crispin', 2), ('gregory', 2), ('industry', 1), ('experienced', 1), ('practitioner', 1), ('consultant', 1), ('lisa', 1), ('janet', 1), ('teamed', 1), ('bring', 1), ('definitive', 1), ('answer', 1), ('question', 1), ('many', 1), ('others', 1), ('define', 1), ('illustrate', 1), ('tester', 1), ('role', 1), ('example', 1), ('real', 1), ('team', 1), ('teach', 1)]
[('window', 3), ('form', 3), ('programming', 2), ('successor', 1), ('highly', 1), ('praised', 1), ('edition', 1), ('significantly', 1), ('updated', 1), ('amalgamate', 1), ('sheer', 1), ('mass', 1), ('new', 1), ('improved', 1), ('support', 1), ('encompassed', 1)]
[('new', 1), ('popular', 1), ('book', 1), ('ideal', 1), ('way', 1), ('started', 1), ('completely', 1), ('revised', 1), ('latest', 1), ('version', 1), ('language', 1), ('learning', 1), ('start', 1), ('fundamental', 1), ('take', 1), ('intermediate', 1), ('advanced', 1), ('feature', 1), ('including', 1), ('generic', 1), ('interface', 1), ('delegate', 1), ('lambda', 1), ('expression', 1), ('linq', 1), ('learn', 1), ('build', 1)]
[('nan', 1)]
[('formula', 3), ('excel', 2), ('designed', 1), ('guru', 1), ('mind', 1), ('handbook', 1), ('outline', 1), ('create', 1), ('used', 1), ('solve', 1), ('everyday', 1), ('problem', 1), ('series', 1), ('data', 1), ('value', 1), ('standard', 1), ('arduous', 1), ('attempt', 1), ('beginning', 1), ('introduction', 1), ('array', 1), ('manual', 1), ('examines', 1), ('topic', 1), ('differ', 1), ('ordinary', 1)]
[('microsoft', 2), ('dynamic', 2), ('ax', 2), ('precise', 1), ('description', 1), ('instruction', 1), ('enable', 1), ('user', 1), ('officer', 1), ('consultant', 1), ('easily', 1), ('understand', 1), ('offer', 1), ('premium', 1), ('erp', 1), ('solution', 1), ('supply', 1), ('midsize', 1), ('larger', 1), ('organization', 1), ('complete', 1)]
[('object', 2), ('acclaimed', 1), ('beginner', 1), ('book', 1), ('technology', 1), ('present', 1), ('uml', 1), ('agile', 1), ('modeling', 1), ('development', 1), ('technique', 1)]
[('best', 2), ('practice', 2), ('data', 2), ('warehouse', 2), ('expert', 2), ('invaluable', 1), ('advice', 1), ('world', 1), ('renowned', 1), ('book', 1), ('leading', 1), ('kimball', 1), ('group', 1), ('share', 1), ('using', 1), ('upcoming', 1), ('business', 1), ('intelligence', 1)]
[('mac', 2), ('o', 2), ('released', 1), ('march', 1), ('many', 1), ('component', 1), ('mach', 1), ('bsd', 1), ('considerably', 1), ('older', 1), ('understanding', 1), ('design', 1), ('implementation', 1), ('working', 1), ('requires', 1), ('examination', 1), ('several', 1), ('technology', 1), ('differ', 1), ('age', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('learning', 4), ('deep', 2), ('machine', 2), ('intimidating', 1), ('recently', 1), ('method', 1), ('required', 1), ('year', 1), ('study', 1), ('framework', 1), ('kera', 1), ('tensorflow', 1), ('software', 1), ('engineer', 1), ('without', 1), ('background', 1), ('quickly', 1), ('enter', 1), ('field', 1), ('recipe', 1), ('cookbook', 1), ('learn', 1), ('solve', 1), ('problem', 1)]
[('network', 2), ('involved', 1), ('many', 1), ('aspect', 1), ('everyday', 1), ('life', 1), ('food', 1), ('web', 1), ('ecology', 1), ('spread', 1), ('pandemic', 1), ('social', 1), ('networking', 1), ('public', 1), ('transport', 1), ('short', 1), ('introduction', 1), ('explores', 1), ('basic', 1), ('theory', 1), ('understand', 1), ('science', 1), ('complexity', 1), ('importance', 1), ('using', 1), ('example', 1), ('nature', 1), ('technology', 1), ('society', 1), ('history', 1)]
[('book', 1), ('explains', 1), ('key', 1), ('feature', 1), ('maple', 1), ('focus', 1), ('showing', 1), ('thing', 1), ('work', 1), ('avoid', 1), ('common', 1), ('problem', 1)]
[('rigorous', 1), ('self', 1), ('contained', 1), ('introduction', 1), ('theory', 1), ('operational', 1), ('semantics', 1), ('programming', 1), ('language', 1), ('use', 1)]
[('order', 2), ('book', 1), ('describes', 1), ('architecture', 1), ('microprocessor', 1), ('simple', 1), ('short', 1), ('pipeline', 1), ('design', 1), ('superscalars', 1)]
[('important', 1), ('work', 1), ('new', 1), ('framework', 1), ('information', 1), ('retrieval', 1), ('implication', 1), ('artificial', 1), ('intelligence', 1), ('natural', 1), ('language', 1), ('processing', 1)]
[('book', 2), ('ebook', 1), ('printed', 1), ('include', 1), ('medium', 1), ('website', 1), ('access', 1), ('code', 1), ('print', 1), ('supplement', 1), ('come', 1), ('packaged', 1), ('bound', 1), ('nbsp', 1), ('hone', 1), ('advanced', 1), ('excel', 1), ('skill', 1), ('earn', 1), ('credential', 1), ('prof', 1)]
[('exam', 3), ('comptia', 2), ('security', 2), ('sy', 1), ('cram', 1), ('fifth', 1), ('edition', 1), ('perfect', 1), ('study', 1), ('guide', 1), ('help', 1), ('pas', 1), ('newly', 1), ('updated', 1), ('version', 1), ('provides', 1), ('coverage', 1), ('practice', 1), ('question', 1), ('every', 1), ('topic', 1), ('book', 1), ('contains', 1), ('set', 1)]
[('design', 2), ('autodesk', 2), ('inventor', 2), ('author', 2), ('engineering', 1), ('graphic', 1), ('award', 1), ('winning', 1), ('cad', 1), ('instructor', 1), ('james', 1), ('bethune', 1), ('show', 1), ('student', 1), ('use', 1), ('create', 1), ('document', 1), ('drawing', 1), ('put', 1), ('heavy', 1), ('emphasis', 1)]
[('explore', 1), ('new', 1), ('design', 1), ('discipline', 1), ('behind', 1), ('product', 1), ('ipod', 1), ('innovative', 1), ('web', 1), ('site', 1), ('flickr', 1), ('book', 1), ('subject', 1), ('either', 1), ('aimed', 1), ('seasoned', 1), ('practitioner', 1), ('focused', 1), ('particular', 1), ('medium', 1)]
[('brain', 2), ('information', 2), ('fearsomely', 1), ('complex', 1), ('processing', 1), ('environment', 1), ('often', 1), ('eludes', 1), ('ability', 1), ('understand', 1), ('given', 1), ('time', 1), ('collecting', 1), ('filtering', 1), ('analyzing', 1), ('response', 1), ('performing', 1), ('countless', 1), ('intricate', 1), ('process', 1), ('automatic', 1), ('voluntary', 1), ('conscious', 1)]
[('language', 2), ('introduction', 1), ('functional', 1), ('programming', 1), ('concept', 1), ('java', 1), ('se', 1), ('drastic', 1), ('change', 1), ('venerable', 1), ('object', 1), ('oriented', 1), ('lambda', 1), ('expression', 1), ('method', 1), ('reference', 1), ('stream', 1), ('fundamentally', 1), ('changed', 1), ('idiom', 1), ('many', 1), ('developer', 1), ('trying', 1), ('catch', 1), ('cookbook', 1), ('help', 1), ('detailed', 1)]
[('learning', 3), ('machine', 2), ('learn', 1), ('solve', 1), ('challenging', 1), ('problem', 1), ('tensorflow', 1), ('google', 1), ('revolutionary', 1), ('new', 1), ('software', 1), ('library', 1), ('deep', 1), ('background', 1), ('basic', 1), ('linear', 1), ('algebra', 1), ('calculus', 1), ('practical', 1), ('book', 1), ('introduces', 1), ('fundamental', 1), ('showing', 1), ('design', 1), ('system', 1), ('capable', 1), ('detecting', 1), ('object', 1), ('image', 1)]
[('casp', 2), ('exam', 2), ('study', 2), ('comprehensive', 1), ('coverage', 1), ('new', 1), ('hand', 1), ('practice', 1), ('interactive', 1), ('tool', 1), ('comptia', 1), ('advanced', 1), ('security', 1), ('practitioner', 1), ('guide', 1), ('ca', 1), ('third', 1), ('edition', 1)]
[('sql', 3), ('server', 3), ('change', 2), ('release', 2), ('microsoft', 2), ('speed', 1), ('extensive', 1), ('newest', 1), ('develop', 1), ('application', 1), ('comprehensive', 1), ('resource', 1)]
[('window', 3), ('command', 2), ('line', 2), ('perfect', 1), ('companion', 1), ('book', 1), ('server', 1), ('quickest', 1), ('way', 1), ('access', 1), ('critical', 1), ('information', 1), ('focusing', 1), ('essential', 1), ('interface', 1), ('cli', 1)]
[('data', 3), ('mining', 3), ('leading', 1), ('introductory', 1), ('book', 1), ('fully', 1), ('updated', 1), ('revised', 1), ('berry', 1), ('linoff', 1), ('wrote', 1), ('first', 1), ('edition', 1), ('technique', 1), ('late', 1), ('starting', 1), ('move', 1), ('lab', 1)]
[('illustrated', 2), ('step', 2), ('guide', 2), ('repair', 1), ('upgrade', 1), ('whether', 1), ('want', 1), ('prepare', 1), ('computer', 1), ('window', 1), ('avoid', 1), ('investing', 1), ('new', 1), ('go', 1), ('green', 1), ('fully', 1), ('need', 1)]
[('excel', 3), ('advanced', 2), ('technique', 2), ('power', 1), ('user', 1), ('crunch', 1), ('analyze', 1), ('data', 1), ('way', 1), ('professional', 1), ('clean', 1), ('uncluttered', 1), ('visual', 1), ('guide', 1), ('using', 1), ('numerous', 1), ('screenshots', 1)]
[('library', 2), ('template', 2), ('best', 1), ('selling', 1), ('genius', 1), ('herb', 1), ('schildt', 1), ('cover', 1), ('everything', 1), ('keywords', 1), ('syntax', 1), ('advanced', 1), ('feature', 1), ('overloading', 1), ('inheritance', 1), ('virtual', 1), ('function', 1), ('namespaces', 1), ('rtti', 1), ('plus', 1), ('complete', 1), ('description', 1), ('standard', 1), ('stl', 1)]
[('exam', 3), ('test', 2), ('java', 2), ('se', 2), ('programmer', 2), ('practice', 2), ('real', 1), ('first', 1), ('written', 1), ('lead', 1), ('developer', 1), ('ocp', 1), ('filled', 1), ('realistic', 1), ('question', 1), ('prepare', 1), ('challenging', 1), ('help', 1), ('understand', 1), ('material', 1), ('depth', 1), ('explanation', 1), ('correct', 1)]
[('python', 2), ('zed', 2), ('learn', 1), ('nbsp', 1), ('shaw', 1), ('perfected', 1), ('world', 1), ('best', 1), ('system', 1), ('learning', 1), ('follow', 1), ('succeed', 1), ('hundred', 1), ('thousand', 1), ('beginner', 1), ('taught', 1), ('date', 1), ('bring', 1), ('discipline', 1), ('commitment', 1)]
[('sharepoint', 4), ('office', 3), ('nbsp', 2), ('knowledge', 2), ('administration', 2), ('microsoft', 1), ('online', 1), ('concise', 1), ('reference', 1), ('help', 1), ('student', 1), ('configure', 1), ('manage', 1), ('book', 1), ('assumes', 1), ('prem', 1), ('basic', 1), ('really', 1), ('focus', 1), ('nexus', 1), ('managing', 1)]
[('wpf', 2), ('book', 2), ('presentation', 2), ('updated', 1), ('thorough', 1), ('authoritative', 1), ('coverage', 1), ('practical', 1), ('example', 1), ('clear', 1), ('writing', 1), ('full', 1), ('color', 1), ('make', 1), ('widely', 1), ('acclaimed', 1), ('programming', 1), ('last', 1), ('decade', 1), ('window', 1)]
[('word', 3), ('microsoft', 2), ('mo', 2), ('advance', 1), ('everyday', 1), ('proficiency', 1), ('earn', 1), ('credential', 1), ('prof', 1), ('demonstrate', 1), ('expertise', 1), ('designed', 1), ('help', 1), ('practice', 1), ('prepare', 1), ('office', 1), ('specialist', 1), ('negetiveemoji', 1), ('core', 1), ('certification', 1), ('official', 1), ('study', 1), ('guide', 1), ('delivers', 1), ('depth', 1), ('preparation', 1), ('objective', 1)]
[('practical', 1), ('visual', 1), ('take', 1), ('straight', 1), ('forward', 1), ('nonsense', 1), ('approach', 1), ('teaching', 1), ('start', 1), ('learning', 1), ('basic', 1), ('developer', 1), ('studio', 1), ('use', 1), ('wizard', 1), ('editor', 1), ('debugger', 1), ('move', 1), ('core', 1), ('language', 1), ('including', 1), ('program', 1)]
[('html', 3), ('cs', 3), ('javascript', 2), ('beginner', 2), ('sam', 1), ('teach', 1), ('guide', 1), ('covering', 1), ('three', 1), ('important', 1), ('language', 1), ('web', 1), ('development', 1), ('cover', 1), ('everything', 1), ('need', 1), ('know', 1)]
[('data', 4), ('learn', 2), ('collecting', 1), ('relatively', 1), ('easy', 1), ('turning', 1), ('raw', 1), ('information', 1), ('something', 1), ('useful', 1), ('requires', 1), ('know', 1), ('extract', 1), ('precisely', 1), ('need', 1), ('insightful', 1), ('book', 1), ('intermediate', 1), ('experienced', 1), ('programmer', 1), ('interested', 1), ('analysis', 1), ('technique', 1), ('working', 1), ('business', 1), ('environment', 1), ('look', 1)]
[('using', 3), ('vbscript', 2), ('server', 2), ('side', 2), ('web', 2), ('script', 2), ('lightweight', 1), ('yet', 1), ('powerful', 1), ('microsoft', 1), ('used', 1), ('four', 1), ('main', 1), ('area', 1), ('application', 1), ('active', 1), ('page', 1), ('asp', 1), ('client', 1), ('internet', 1), ('explorer', 1), ('code', 1), ('behind', 1), ('outlook', 1), ('form', 1), ('automating', 1), ('repetitive', 1), ('task', 1), ('window', 1), ('host', 1), ('wsh', 1), ('nutshell', 1), ('second', 1), ('edition', 1), ('delivers', 1), ('current', 1)]
[('swift', 3), ('programming', 2), ('apple', 2), ('valuable', 1), ('hand', 1), ('experience', 1), ('open', 1), ('source', 1), ('language', 1), ('developed', 1), ('practical', 1), ('guide', 1), ('skilled', 1), ('programmer', 1), ('little', 1), ('knowledge', 1), ('development', 1), ('learn', 1), ('code', 1), ('latest', 1), ('version', 1), ('developing', 1), ('working', 1), ('io', 1), ('app', 1), ('start', 1), ('finish', 1), ('begin', 1)]
[('exam', 4), ('publisher', 2), ('product', 2), ('comptia', 2), ('security', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('fully', 1), ('updated', 1), ('guide', 1), ('training', 1), ('preparation', 1), ('expert', 1), ('mike', 1), ('meyers', 1), ('take', 1), ('sy', 1)]
[('sketching', 3), ('step', 2), ('way', 2), ('think', 2), ('working', 1), ('experience', 1), ('workbook', 1), ('provides', 1), ('information', 1), ('process', 1), ('different', 1), ('technique', 1), ('offer', 1), ('method', 1), ('called', 1), ('design', 1), ('thinking', 1), ('user', 1)]
[('offer', 1), ('fresh', 1), ('approach', 1), ('digital', 1), ('signal', 1), ('processing', 1), ('dsp', 1), ('combining', 1), ('heuristic', 1), ('reasoning', 1), ('physical', 1), ('appreciation', 1), ('mathematical', 1), ('method', 1)]
[('introduces', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('machine', 1), ('learning', 1), ('theory', 1), ('practice', 1), ('providing', 1), ('accessible', 1), ('modern', 1), ('algorithmic', 1), ('toolkit', 1)]
[('concise', 1), ('yet', 1), ('comprehensive', 1), ('view', 1), ('role', 1), ('memory', 1), ('play', 1), ('aspect', 1), ('programming', 1), ('first', 1), ('published', 1)]
[('go', 1), ('basic', 1), ('class', 1), ('inheritance', 1), ('interface', 1), ('advanced', 1), ('concept', 1), ('reflection', 1), ('object', 1), ('persistence', 1), ('design', 1), ('pattern', 1), ('refactoring', 1)]
[('method', 2), ('definitive', 1), ('book', 1), ('essential', 1), ('working', 1), ('formal', 1), ('safety', 1), ('critical', 1), ('software', 1)]
[('calendar', 3), ('expanded', 1), ('coverage', 1), ('includes', 1), ('generic', 1), ('cyclical', 1), ('astronomical', 1), ('lunar', 1), ('korean', 1), ('vietnamese', 1), ('aztec', 1), ('tibetan', 1)]
[('security', 4), ('different', 2), ('book', 1), ('targeted', 1), ('engineer', 1), ('specialist', 1), ('show', 1), ('build', 1), ('software', 1), ('none', 1), ('breakdown', 1), ('concern', 1), ('facing', 1), ('level', 1), ('system', 1), ('enterprise', 1), ('architectural', 1)]
[('data', 3), ('practical', 1), ('design', 1), ('tip', 1), ('visualization', 1), ('expert', 1), ('modern', 1), ('age', 1), ('decrease', 1), ('increasing', 1), ('overwhelming', 1), ('organize', 1), ('way', 1), ('make', 1), ('sense', 1), ('intended', 1), ('audience', 1)]
[('office', 3), ('enhance', 1), ('productivity', 1), ('application', 1), ('zero', 1), ('programming', 1), ('experience', 1), ('mastering', 1), ('vba', 1), ('microsoft', 1), ('help', 1), ('extend', 1), ('capability', 1), ('entire', 1), ('suite', 1), ('using', 1), ('visual', 1), ('basic', 1)]
[('edition', 2), ('bestselling', 2), ('introduction', 2), ('assembly', 2), ('language', 2), ('eagerly', 1), ('anticipated', 1), ('new', 1), ('long', 1), ('awaited', 1), ('third', 1), ('completely', 1), ('rewritten', 1), ('focus', 1)]
[('book', 2), ('programming', 2), ('intended', 1), ('anyone', 1), ('starting', 1), ('php', 1), ('previously', 1), ('worked', 1), ('another', 1), ('language', 1), ('java', 1), ('perl', 1), ('probably', 1), ('pick', 1), ('concept', 1), ('earlier', 1), ('chapter', 1), ('quickly', 1)]
[('ee', 2), ('without', 2), ('ejb', 2), ('book', 1), ('expert', 1), ('development', 1), ('show', 1), ('java', 1), ('developer', 1), ('architect', 1), ('build', 1), ('robust', 1), ('application', 1), ('use', 1), ('enterprise', 1), ('javabeans', 1), ('practical', 1), ('code', 1), ('intensive', 1), ('guide', 1), ('provides', 1), ('best', 1)]
[('web', 3), ('attack', 2), ('practitioner', 2), ('application', 2), ('thought', 2), ('latest', 1), ('app', 1), ('countermeasure', 1), ('world', 1), ('renowned', 1), ('protect', 1), ('malicious', 1), ('mastering', 1), ('weapon', 1), ('process', 1), ('today', 1), ('hacker', 1), ('written', 1), ('recognized', 1), ('security', 1), ('leader', 1), ('hacking', 1), ('exposed', 1), ('third', 1), ('edition', 1), ('fully', 1), ('updated', 1), ('cover', 1), ('new', 1)]
[('microsoft', 3), ('azure', 3), ('exam', 2), ('developer', 2), ('focus', 2), ('prepare', 1), ('az', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('solution', 1), ('development', 1), ('designed', 1), ('working', 1), ('ref', 1), ('critical', 1), ('thinking', 1), ('decision', 1), ('making', 1), ('acumen', 1), ('needed', 1), ('success', 1), ('certified', 1), ('associate', 1), ('level', 1), ('expertise', 1)]
[('security', 3), ('information', 2), ('knowledge', 2), ('world', 2), ('principle', 1), ('practice', 1), ('nbsp', 1), ('cover', 1), ('domain', 1), ('today', 1), ('common', 1), ('body', 1), ('written', 1), ('experienced', 1), ('practitioner', 1), ('brings', 1), ('together', 1), ('foundational', 1), ('prepares', 1), ('reader', 1), ('real', 1), ('environment', 1), ('making', 1), ('ideal', 1), ('introductory', 1), ('course', 1)]
[('samba', 4), ('share', 2), ('book', 1), ('comprehensive', 1), ('guide', 1), ('administration', 1), ('officially', 1), ('adopted', 1), ('team', 1), ('wondering', 1), ('integrate', 1), ('authentication', 1), ('window', 1), ('domain', 1), ('serve', 1), ('microsoft', 1), ('dfs', 1), ('file', 1), ('mac', 1), ('o', 1), ('dozen', 1), ('issue', 1), ('interest', 1), ('system', 1), ('administrator', 1), ('covered', 1)]
[('excel', 3), ('user', 2), ('use', 1), ('simple', 1), ('list', 1), ('confused', 1), ('frustrated', 1), ('come', 1), ('actually', 1), ('something', 1), ('useful', 1), ('data', 1), ('stop', 1), ('tearing', 1), ('hair', 1), ('head', 1), ('first', 1), ('help', 1), ('painlessly', 1), ('move', 1), ('spreadsheet', 1), ('dabbler', 1), ('savvy', 1), ('whether', 1), ('completely', 1), ('new', 1), ('experienced', 1), ('looking', 1), ('make', 1), ('program', 1), ('work', 1)]
[('internet', 1), ('development', 1), ('dynamic', 1), ('tackled', 1), ('handbook', 1), ('leading', 1), ('scholar', 1), ('representing', 1), ('mainstream', 1), ('institutional', 1), ('evolutionary', 1), ('economics', 1), ('political', 1), ('economy', 1), ('perspective', 1), ('show', 1), ('complex', 1), ('market', 1), ('digital', 1), ('technology', 1), ('service', 1)]
[('autonomous', 2), ('vehicle', 2), ('attracted', 1), ('deal', 1), ('attention', 1), ('medium', 1), ('inconsistency', 1), ('perception', 1), ('capability', 1), ('actual', 1), ('function', 1), ('book', 1), ('provides', 1), ('accessible', 1), ('explanation', 1)]
[('high', 1), ('level', 1), ('concept', 1), ('business', 1), ('intelligence', 1), ('nitty', 1), ('gritty', 1), ('instruction', 1), ('using', 1), ('vendor', 1), ('tool', 1), ('lie', 1), ('essential', 1), ('yet', 1), ('poorly', 1), ('understood', 1), ('layer', 1), ('architecture', 1), ('design', 1), ('process', 1), ('without', 1), ('knowledge', 1), ('big', 1), ('data', 1), ('belittled', 1)]
[('computer', 4), ('problem', 4), ('science', 2), ('whose', 2), ('solution', 2), ('quickly', 2), ('transform', 1), ('life', 1), ('know', 1), ('np', 1), ('important', 1), ('open', 1), ('mathematics', 1), ('simply', 1), ('stated', 1), ('asks', 1), ('whether', 1), ('every', 1), ('checked', 1), ('solved', 1), ('golden', 1), ('ticket', 1), ('provides', 1)]
[('nan', 1)]
[('nan', 1)]
[('programmer', 3), ('good', 2), ('joel', 2), ('outproduce', 1), ('five', 1), ('ten', 1), ('sometimes', 1), ('run', 1), ('mill', 1), ('secret', 1), ('success', 1), ('software', 1), ('company', 1), ('hire', 1), ('hiring', 1), ('spolsky', 1), ('draw', 1)]
[('test', 3), ('design', 2), ('comprehensive', 1), ('date', 1), ('practical', 1), ('introduction', 1), ('software', 1), ('invaluable', 1), ('book', 1), ('present', 1), ('important', 1), ('technique', 1), ('single', 1), ('place', 1), ('consistent', 1), ('easy', 1), ('digest', 1), ('format', 1), ('immediately', 1), ('useful', 1), ('handbook', 1), ('engineer', 1), ('developer', 1), ('quality', 1), ('assurance', 1), ('professional', 1), ('requirement', 1)]
[('book', 4), ('computer', 2), ('day', 2), ('emerged', 1), ('powerful', 1), ('tool', 1), ('working', 1), ('methodology', 1), ('service', 1), ('titled', 1), ('basic', 1), ('science', 1), ('specially', 1), ('written', 1), ('first', 1), ('second', 1), ('semester', 1), ('student', 1), ('tamil', 1), ('nadu', 1), ('polytechnic', 1), ('institution', 1), ('comprises', 1), ('three', 1), ('part', 1), ('main', 1), ('feature', 1), ('exactly', 1), ('per', 1)]
[('conceptual', 1), ('introduction', 1), ('modern', 1), ('topic', 1), ('complexity', 1), ('advanced', 1), ('undergraduate', 1), ('graduate', 1), ('student', 1)]
[('ada', 2), ('book', 1), ('explains', 1), ('tasking', 1), ('model', 1), ('covering', 1), ('latest', 1), ('version', 1), ('use', 1), ('real', 1), ('time', 1), ('concurrent', 1), ('system', 1)]
[('survey', 1), ('mathematical', 1), ('theory', 1), ('application', 1), ('computer', 1), ('network', 1), ('vlsi', 1), ('circuit', 1), ('data', 1), ('structure', 1)]
[('fraud', 2), ('detect', 1), ('earlier', 1), ('mitigate', 1), ('loss', 1), ('prevent', 1), ('cascading', 1), ('damage', 1), ('analytics', 1), ('using', 1), ('descriptive', 1), ('predictive', 1), ('social', 1), ('network', 1), ('technique', 1), ('authoritative', 1), ('guidebook', 1), ('setting', 1)]
[('autocad', 2), ('civil', 2), ('utilize', 1), ('real', 1), ('world', 1), ('workflow', 1), ('expert', 1), ('trick', 1), ('tip', 1), ('mastering', 1), ('complete', 1), ('detailed', 1), ('reference', 1), ('tutorial', 1), ('autodesk', 1), ('extremely', 1)]
[('wordpress', 3), ('full', 1), ('color', 1), ('guide', 1), ('creating', 1), ('dynamic', 1), ('website', 1), ('familiar', 1), ('fundamental', 1), ('want', 1), ('take', 1), ('skill', 1), ('next', 1), ('level', 1), ('bestselling', 1), ('author', 1), ('expert', 1), ('lisa', 1)]
[('dummy', 3), ('coding', 2), ('previously', 1), ('published', 1), ('version', 1), ('feature', 1), ('new', 1), ('cover', 1), ('design', 1), ('content', 1), ('prior', 1), ('release', 1)]
[('comptia', 3), ('study', 2), ('cloud', 2), ('certification', 2), ('exam', 2), ('authorized', 2), ('best', 1), ('fully', 1), ('integrated', 1), ('system', 1), ('available', 1), ('hundred', 1), ('practice', 1), ('question', 1), ('guide', 1), ('cover', 1), ('need', 1), ('know', 1), ('show', 1), ('prepare', 1), ('challenging', 1), ('mcgraw', 1), ('hill', 1), ('professional', 1), ('gold', 1), ('level', 1), ('partner', 1), ('offering', 1)]
[('security', 2), ('cutting', 1), ('edge', 1), ('technique', 1), ('finding', 1), ('fixing', 1), ('critical', 1), ('flaw', 1), ('fortify', 1), ('network', 1), ('avert', 1), ('digital', 1), ('catastrophe', 1), ('proven', 1), ('strategy', 1), ('team', 1), ('expert', 1), ('completely', 1), ('updated', 1), ('featuring', 1), ('new', 1), ('chapter', 1), ('gray', 1), ('hat', 1), ('hacking', 1), ('ethical', 1), ('hacker', 1), ('handbook', 1), ('fifth', 1), ('edition', 1), ('explains', 1), ('enemy', 1), ('current', 1), ('weapon', 1), ('skill', 1)]
[('google', 3), ('use', 2), ('product', 1), ('service', 1), ('help', 1), ('easy', 1), ('guide', 1), ('everything', 1), ('tool', 1), ('show', 1), ('search', 1), ('engine', 1), ('offering', 1), ('feature', 1), ('shopping', 1), ('mapping', 1), ('blogging', 1), ('advertising', 1), ('learn', 1), ('email', 1), ('communication', 1), ('document', 1)]
[('beginner', 2), ('guide', 2), ('swing', 2), ('world', 1), ('bestselling', 1), ('programming', 1), ('author', 1), ('using', 1), ('practical', 1), ('pedagogy', 1), ('made', 1), ('successful', 1), ('herb', 1), ('schildt', 1), ('provides', 1), ('new', 1), ('programmer', 1), ('completely', 1), ('integrated', 1), ('learning', 1), ('package', 1), ('perfect', 1), ('classroom', 1), ('self', 1), ('study', 1), ('delivers', 1), ('appropriate', 1), ('mix', 1), ('theory', 1)]
[('step', 2), ('best', 1), ('selling', 1), ('guide', 1), ('author', 1), ('elaine', 1), ('weinmann', 1), ('peter', 1), ('lourekas', 1), ('go', 1), ('tutorial', 1), ('reference', 1), ('book', 1), ('photography', 1), ('design', 1), ('student', 1), ('textbook', 1), ('choice', 1), ('college', 1), ('classroom', 1), ('decade', 1), ('edition', 1), ('includes', 1), ('trademark', 1), ('feature', 1), ('clear', 1), ('concise', 1), ('instruction', 1), ('hundred', 1), ('full', 1), ('color', 1), ('image', 1)]
[('author', 2), ('clear', 1), ('visual', 1), ('style', 1), ('provides', 1), ('comprehensive', 1), ('look', 1), ('currently', 1), ('possible', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('glimpse', 1), ('magic', 1), ('come', 1), ('tim', 1), ('urban', 1), ('wait', 1), ('fully', 1), ('practical', 1), ('insightful', 1)]
[('help', 2), ('practice', 2), ('trust', 1), ('best', 1), ('selling', 1), ('official', 1), ('cert', 1), ('guide', 1), ('series', 1), ('cisco', 1), ('press', 1), ('learn', 1), ('prepare', 1), ('exam', 1), ('success', 1), ('built', 1), ('objective', 1), ('providing', 1), ('assessment', 1), ('review', 1), ('ensure', 1), ('fully', 1), ('prepared', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('oracle', 4), ('sql', 3), ('want', 2), ('vast', 1), ('majority', 1), ('book', 1), ('discus', 1), ('syntax', 1), ('provide', 1), ('barest', 1), ('rudiment', 1), ('using', 1), ('perhaps', 1), ('include', 1), ('simple', 1), ('example', 1), ('might', 1), ('enough', 1), ('pas', 1), ('survey', 1), ('course', 1), ('give', 1), ('buzz', 1), ('word', 1), ('drop', 1), ('conversation', 1), ('real', 1), ('dba', 1), ('use', 1), ('regular', 1), ('basis', 1)]
[('excel', 2), ('given', 1), ('improved', 1), ('analytical', 1), ('capability', 1), ('scientist', 1), ('engineer', 1), ('everywhere', 1), ('using', 1), ('instead', 1), ('fortran', 1), ('solve', 1), ('problem', 1), ('installed', 1), ('million', 1), ('computer', 1), ('feature', 1), ('rich', 1), ('set', 1), ('built', 1), ('analysis', 1), ('tool', 1), ('includes', 1), ('integrated', 1), ('visual', 1), ('basic', 1), ('application', 1), ('vba', 1), ('programming', 1), ('language', 1), ('wonder', 1)]
[('long', 2), ('project', 2), ('maven', 2), ('developer', 1), ('worked', 1), ('disorganized', 1), ('application', 1), ('every', 1), ('part', 1), ('seemed', 1), ('build', 1), ('system', 1), ('common', 1), ('repository', 1), ('existed', 1), ('information', 1), ('state', 1), ('help', 1), ('awaited', 1), ('official', 1), ('documentation', 1), ('written', 1), ('creator', 1), ('jason', 1), ('van', 1), ('zyl', 1), ('team', 1)]
[('software', 3), ('held', 1), ('back', 1), ('developing', 1), ('open', 1), ('source', 1), ('free', 1), ('project', 1), ('understand', 1), ('implication', 1), ('various', 1), ('license', 1), ('alone', 1), ('many', 1), ('developer', 1), ('believe', 1), ('releasing', 1), ('freely', 1), ('hesitated', 1), ('concerned', 1), ('losing', 1), ('control', 1), ('licensing', 1), ('issue', 1)]
[('applescript', 3), ('mac', 2), ('newspaper', 1), ('nasa', 1), ('user', 1), ('around', 1), ('world', 1), ('use', 1), ('automate', 1), ('daily', 1), ('computing', 1), ('routine', 1), ('famed', 1), ('similarity', 1), ('english', 1), ('ease', 1), ('integration', 1), ('program', 1), ('perfect', 1), ('programming', 1), ('language', 1), ('time', 1), ('squeezed', 1), ('fan', 1), ('beginner', 1), ('quickly', 1), ('realize', 1), ('major', 1)]
[('step', 2), ('plan', 2), ('want', 1), ('learn', 1), ('create', 1), ('model', 1), ('using', 1), ('google', 1), ('sketchup', 1), ('missing', 1), ('manual', 1), ('ideal', 1), ('place', 1), ('start', 1), ('filled', 1), ('tutorial', 1), ('entertaining', 1), ('reader', 1), ('friendly', 1), ('guide', 1), ('creating', 1), ('detailed', 1), ('object', 1), ('including', 1), ('building', 1), ('furniture', 1), ('landscaping', 1), ('even', 1), ('character', 1), ('computer', 1), ('game', 1), ('time', 1)]
[('book', 2), ('want', 1), ('tap', 1), ('power', 1), ('behind', 1), ('search', 1), ('ranking', 1), ('product', 1), ('recommendation', 1), ('social', 1), ('bookmarking', 1), ('online', 1), ('matchmaking', 1), ('fascinating', 1), ('demonstrates', 1), ('build', 1), ('web', 1), ('application', 1), ('mine', 1), ('enormous', 1), ('amount', 1), ('data', 1), ('created', 1), ('internet', 1), ('sophisticated', 1), ('algorithm', 1), ('write', 1), ('smart', 1), ('program', 1), ('access', 1)]
[('programming', 2), ('cocoa', 2), ('step', 2), ('build', 1), ('solid', 1), ('application', 1), ('mac', 1), ('o', 1), ('iphone', 1), ('ipod', 1), ('touch', 1), ('regardless', 1), ('whether', 1), ('basic', 1), ('skill', 1), ('year', 1), ('experience', 1), ('book', 1), ('learn', 1), ('use', 1), ('apple', 1), ('framework', 1), ('objective', 1), ('language', 1), ('tutorial', 1), ('hand', 1), ('exercise', 1), ('clear', 1), ('example', 1), ('sound', 1), ('advice', 1)]
[('expect', 2), ('automate', 2), ('application', 2), ('quickly', 1), ('becoming', 1), ('part', 1), ('every', 1), ('unix', 1), ('user', 1), ('toolbox', 1), ('allows', 1), ('telnet', 1), ('ftp', 1), ('passwd', 1), ('rlogin', 1), ('hundred', 1), ('normally', 1), ('require', 1), ('human', 1), ('interaction', 1), ('using', 1), ('allow', 1), ('speed', 1), ('task', 1), ('many', 1), ('case', 1), ('solve', 1), ('new', 1), ('problem', 1), ('never', 1), ('even', 1)]
[('imovie', 3), ('movie', 2), ('step', 2), ('edition', 1), ('cover', 1), ('mac', 1), ('io', 1), ('sophisticated', 1), ('tool', 1), ('make', 1), ('easier', 1), ('turn', 1), ('raw', 1), ('footage', 1), ('sleek', 1), ('entertaining', 1), ('understand', 1), ('harness', 1), ('feature', 1), ('expert', 1), ('david', 1), ('pogue', 1), ('aaron', 1), ('miller', 1), ('give', 1), ('hand', 1), ('advice', 1), ('instruction', 1), ('creating', 1), ('polished', 1)]
[('data', 5), ('insight', 2), ('mound', 1), ('front', 1), ('suite', 1), ('computation', 1), ('tool', 1), ('disposal', 1), ('part', 1), ('actually', 1), ('matter', 1), ('hiding', 1), ('scientist', 1), ('trying', 1), ('navigate', 1), ('murky', 1), ('space', 1), ('practical', 1), ('book', 1), ('show', 1), ('make', 1), ('sense', 1), ('high', 1), ('level', 1), ('question', 1)]
[('recently', 1), ('learning', 1), ('coredns', 1), ('required', 1), ('reading', 1), ('code', 1), ('combing', 1), ('skimpy', 1), ('documentation', 1), ('website', 1), ('longer', 1), ('practical', 1), ('book', 1), ('developer', 1), ('operator', 1), ('working', 1), ('docker', 1), ('linux', 1), ('container', 1), ('learn', 1), ('use', 1), ('standard', 1), ('dns', 1), ('server', 1), ('kubernetes', 1), ('john', 1), ('belamaric', 1), ('senior', 1), ('staff', 1), ('software', 1), ('engineer', 1), ('google', 1)]
[('introduction', 1), ('proof', 1), ('theory', 1), ('application', 1), ('mathematical', 1), ('logic', 1), ('theoretical', 1), ('computer', 1), ('science', 1), ('artificial', 1), ('intelligence', 1)]
[('colorful', 1), ('example', 1), ('rich', 1), ('introduction', 1), ('state', 1), ('art', 1), ('student', 1), ('data', 1), ('science', 1), ('researcher', 1), ('practitioner', 1)]
[('meet', 1), ('challenge', 1), ('integrating', 1), ('building', 1), ('information', 1), ('modeling', 1), ('sustainability', 1), ('depth', 1), ('guide', 1), ('pair', 1), ('revolutionary', 1), ('movement', 1), ('create', 1), ('environmentally', 1), ('friendly', 1), ('design', 1), ('streamlined', 1), ('process', 1), ('written', 1)]
[('note', 1), ('correct', 1), ('url', 1), ('access', 1), ('sybex', 1), ('interactive', 1), ('online', 1), ('test', 1), ('bank', 1), ('study', 1), ('tool', 1), ('book', 1), ('back', 1), ('cover', 1), ('introduction', 1), ('last', 1), ('page', 1)]
[('window', 2), ('networking', 2), ('core', 1), ('concept', 1), ('technology', 1), ('complex', 1), ('topic', 1), ('especially', 1), ('new', 1), ('field', 1), ('focused', 1), ('full', 1), ('color', 1), ('book', 1), ('take', 1), ('unique', 1), ('approach', 1), ('teaching', 1)]
[('data', 2), ('warehousing', 2), ('cutting', 1), ('edge', 1), ('content', 1), ('guidance', 1), ('expertnow', 1), ('expanded', 1), ('reflect', 1), ('field', 1), ('trend', 1), ('revolutionized', 1), ('way', 1), ('business', 1), ('wide', 1), ('variety', 1), ('industry', 1), ('perform', 1), ('analysis', 1)]
[('blogger', 2), ('bemused', 1), ('blog', 1), ('eager', 1), ('become', 1), ('google', 1), ('dummy', 1), ('help', 1), ('start', 1), ('blogging', 1), ('sooner', 1), ('think', 1), ('million', 1), ('promoting', 1), ('business', 1), ('connecting', 1), ('family', 1)]
[('xml', 2), ('language', 2), ('complete', 1), ('update', 1), ('covering', 1), ('many', 1), ('advance', 1), ('become', 1), ('standard', 1), ('writing', 1), ('document', 1), ('internet', 1), ('constantly', 1), ('improving', 1), ('evolving', 1), ('new', 1), ('edition', 1), ('cover', 1)]
[('whether', 1), ('first', 1), ('venture', 1), ('technical', 1), ('drawing', 1), ('software', 1), ('switching', 1), ('solidworks', 1), ('something', 1), ('probably', 1), ('excited', 1), ('cad', 1), ('program', 1), ('offer', 1), ('chance', 1), ('figure', 1), ('going', 1), ('take', 1), ('awhile', 1)]
[('database', 3), ('make', 2), ('powerful', 1), ('low', 1), ('cost', 1), ('development', 1), ('tool', 1), ('possible', 1), ('virtually', 1), ('anybody', 1), ('create', 1), ('hand', 1), ('guide', 1), ('fun', 1), ('easy', 1), ('permeate', 1), ('every', 1), ('nook', 1), ('cranny', 1)]
[('hobby', 2), ('blog', 2), ('take', 1), ('next', 1), ('level', 1), ('turn', 1), ('real', 1), ('income', 1), ('anyone', 1), ('know', 1), ('fun', 1), ('creative', 1), ('way', 1), ('sharing', 1), ('thought', 1), ('opinion', 1), ('imagine', 1), ('making', 1), ('money', 1), ('practical', 1)]
[('new', 2), ('tracy', 1), ('kidder', 1), ('riveting', 1), ('washington', 1), ('post', 1), ('story', 1), ('company', 1), ('effort', 1), ('bring', 1), ('microcomputer', 1), ('market', 1), ('pulitzer', 1), ('prize', 1), ('national', 1), ('book', 1), ('award', 1), ('become', 1), ('essential', 1), ('reading', 1), ('understanding', 1), ('history', 1), ('american', 1), ('tech', 1), ('industry', 1), ('computer', 1), ('changed', 1), ('soul', 1), ('machine', 1), ('first', 1)]
[('information', 2), ('assurance', 2), ('security', 2), ('best', 1), ('practice', 1), ('protecting', 1), ('critical', 1), ('data', 1), ('system', 1), ('handbook', 1), ('effective', 1), ('computer', 1), ('risk', 1), ('management', 1), ('strategy', 1), ('discus', 1), ('tool', 1), ('technique', 1), ('required', 1), ('prevent', 1), ('detect', 1), ('contain', 1), ('correct', 1), ('recover', 1), ('breach', 1), ('failure', 1), ('practical', 1), ('resource', 1), ('explains', 1)]
[('linq', 3), ('data', 3), ('programming', 2), ('take', 1), ('skill', 1), ('top', 1), ('tier', 1), ('resolve', 1), ('format', 1), ('impedance', 1), ('mismatch', 1), ('guidance', 1), ('expert', 1), ('microsoft', 1), ('mvp', 1), ('detail', 1), ('cutting', 1), ('edge', 1), ('technique', 1), ('effectively', 1), ('assimilate', 1), ('xml', 1), ('sql', 1), ('ado', 1), ('net', 1), ('unstructured', 1), ('source', 1), ('build', 1), ('powerful', 1), ('query', 1), ('handle', 1), ('hierarchical', 1), ('relational', 1), ('use', 1)]
[('publisher', 2), ('product', 2), ('coverage', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('comprehensive', 1), ('study', 1), ('guide', 1), ('delivers', 1), ('every', 1), ('topic', 1), ('challenging', 1), ('comptia', 1), ('linux', 1), ('exam', 1), ('complete', 1), ('objective', 1)]
[('ccsp', 3), ('guide', 2), ('new', 2), ('exam', 2), ('self', 1), ('study', 1), ('delivers', 1), ('coverage', 1), ('topic', 1), ('highly', 1), ('effective', 1), ('test', 1), ('preparation', 1), ('cover', 1), ('six', 1), ('domain', 1), ('within', 1), ('body', 1), ('knowledge', 1), ('established', 1), ('csa', 1), ('isc', 1), ('book', 1), ('offer', 1), ('clear', 1), ('explanation', 1), ('every', 1), ('subject', 1), ('brand', 1), ('feature', 1), ('accurate', 1), ('practice', 1)]
[('database', 5), ('access', 2), ('essential', 1), ('skill', 1), ('made', 1), ('easy', 1), ('learn', 1), ('standard', 1), ('design', 1), ('management', 1), ('technique', 1), ('applicable', 1), ('type', 1), ('featuring', 1), ('clear', 1), ('example', 1), ('using', 1), ('microsoft', 1), ('oracle', 1), ('beginner', 1), ('guide', 1), ('begin', 1), ('showing', 1), ('use', 1), ('structured', 1), ('query', 1), ('language', 1), ('sql', 1), ('create', 1), ('object', 1)]
[('complete', 2), ('coverage', 2), ('comptia', 2), ('security', 2), ('exam', 2), ('every', 1), ('topic', 1), ('advanced', 1), ('practitioner', 1), ('certification', 1), ('objective', 1), ('included', 1), ('casp', 1), ('ca', 1), ('comprehensive', 1), ('resource', 1), ('written', 1), ('team', 1), ('leading', 1), ('information', 1), ('expert', 1), ('authoritative', 1), ('guide', 1), ('fully', 1), ('address', 1), ('skill', 1), ('required', 1)]
[('asynchronous', 2), ('javascript', 2), ('promise', 2), ('everywhere', 1), ('whether', 1), ('using', 1), ('ajax', 1), ('angularjs', 1), ('node', 1), ('j', 1), ('webrtc', 1), ('practical', 1), ('guide', 1), ('show', 1), ('intermediate', 1), ('advanced', 1), ('developer', 1), ('help', 1), ('manage', 1), ('code', 1), ('effectively', 1), ('including', 1), ('inevitable', 1), ('flood', 1), ('callback', 1), ('codebase', 1), ('grows', 1), ('learn', 1), ('inner', 1), ('working', 1)]
[('window', 5), ('universal', 2), ('apps', 2), ('phone', 2), ('total', 1), ('game', 1), ('changer', 1), ('write', 1), ('deploy', 1), ('app', 1), ('modern', 1), ('pc', 1), ('tablet', 1), ('world', 1), ('expert', 1), ('microsoft', 1), ('xaml', 1), ('brings', 1), ('together', 1), ('knowledge', 1), ('developer', 1), ('need', 1), ('build', 1), ('adapt', 1), ('smoothly', 1), ('device', 1), ('running', 1)]
[('play', 3), ('game', 3), ('design', 2), ('book', 1), ('offer', 1), ('focused', 1), ('process', 1), ('oriented', 1), ('approach', 1), ('designing', 1), ('love', 1), ('drawing', 1), ('combined', 1), ('year', 1), ('teaching', 1), ('experience', 1), ('colleen', 1), ('macklin', 1), ('john', 1), ('sharp', 1), ('link', 1), ('concept', 1), ('element', 1), ('practical', 1), ('task', 1), ('using', 1), ('full', 1), ('colour', 1), ('example', 1), ('reveal', 1), ('real', 1), ('designer', 1)]
[('photoshop', 2), ('commonsense', 1), ('number', 1), ('approach', 1), ('professional', 1), ('shaped', 1), ('workflow', 1), ('generation', 1), ('expert', 1), ('new', 1), ('edition', 1), ('first', 1), ('nearly', 1), ('five', 1), ('year', 1), ('completely', 1), ('updated', 1), ('age', 1), ('digital', 1), ('photography', 1)]
[('lean', 2), ('development', 2), ('agile', 2), ('large', 2), ('product', 2), ('thinking', 2), ('method', 1), ('scale', 1), ('key', 1), ('organizational', 1), ('tool', 1), ('sustainable', 1), ('competitive', 1), ('success', 1), ('nbsp', 1), ('increasingly', 1), ('organization', 1), ('turning', 1), ('principle', 1)]
[('content', 2), ('provide', 2), ('smartphones', 1), ('ebook', 1), ('reader', 1), ('tablet', 1), ('computer', 1), ('apple', 1), ('ipad', 1), ('forever', 1), ('changed', 1), ('way', 1), ('access', 1), ('interact', 1), ('customer', 1), ('expect', 1), ('adaptive', 1), ('responding', 1), ('device', 1), ('location', 1), ('situation', 1), ('personalised', 1), ('need', 1), ('author', 1), ('ann', 1), ('rockley', 1), ('charles', 1), ('cooper', 1)]
[('hour', 2), ('step', 2), ('session', 1), ('le', 1), ('sam', 1), ('teach', 1), ('python', 1), ('help', 1), ('started', 1), ('fast', 1), ('master', 1), ('core', 1), ('concept', 1), ('programming', 1), ('build', 1), ('anything', 1), ('website', 1), ('game', 1), ('using', 1), ('book', 1), ('straightforward', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('design', 2), ('microservices', 2), ('book', 1), ('combine', 1), ('comprehensive', 1), ('guide', 1), ('success', 1), ('microsoft', 1), ('azure', 1), ('service', 1), ('fabric', 1), ('practical', 1), ('catalogue', 1), ('pattern', 1), ('best', 1), ('practice', 1), ('implementation', 1), ('operation', 1), ('haishi', 1), ('bai', 1), ('brings', 1), ('together', 1), ('information', 1), ('need', 1), ('deliver', 1), ('scalable', 1), ('reliable', 1), ('distributed', 1), ('application', 1)]
[('cc', 3), ('lightroom', 2), ('photoshop', 2), ('book', 2), ('lesson', 2), ('adobe', 1), ('photographer', 1), ('classroom', 1), ('contains', 1), ('cover', 1), ('basic', 1), ('beyond', 1), ('providing', 1), ('countless', 1), ('tip', 1), ('technique', 1), ('help', 1), ('become', 1), ('productive', 1), ('program', 1), ('follow', 1), ('start', 1), ('finish', 1), ('choose', 1), ('interest', 1), ('using', 1)]
[('cuda', 1), ('engineer', 1), ('give', 1), ('direct', 1), ('hand', 1), ('engagement', 1), ('personal', 1), ('high', 1), ('performance', 1), ('parallel', 1), ('computing', 1), ('enabling', 1), ('computation', 1), ('gaming', 1), ('level', 1), ('pc', 1), ('required', 1), ('supercomputer', 1), ('year', 1), ('ago', 1), ('nbsp', 1), ('author', 1)]
[('game', 3), ('studio', 3), ('language', 2), ('program', 1), ('top', 1), ('worldwide', 1), ('remains', 1), ('key', 1), ('many', 1), ('leading', 1), ('development', 1), ('used', 1), ('throughout', 1), ('enormous', 1), ('code', 1), ('base', 1), ('use', 1), ('maintain', 1), ('improve', 1)]
[('heard', 3), ('know', 1), ('thinking', 1), ('applescript', 1), ('amazing', 1), ('thing', 1), ('automate', 1), ('away', 1), ('tiring', 1), ('redundant', 1), ('repetitive', 1), ('task', 1), ('computer', 1), ('true', 1), ('sure', 1)]
[('design', 2), ('team', 2), ('successful', 1), ('web', 1), ('depend', 1), ('clear', 1), ('communication', 1), ('developer', 1), ('client', 1), ('among', 1), ('member', 1), ('development', 1), ('wireframes', 1), ('site', 1), ('map', 1), ('flow', 1), ('chart', 1), ('diagram', 1), ('establish', 1), ('common', 1), ('language', 1), ('designer', 1)]
[('book', 3), ('programmer', 3), ('knowledgeable', 1), ('second', 1), ('give', 1), ('advanced', 1), ('tip', 1), ('trick', 1), ('help', 1), ('reach', 1), ('new', 1), ('height', 1), ('professional', 1), ('organized', 1), ('make', 1), ('easy', 1), ('reader', 1)]
[('network', 2), ('path', 2), ('design', 1), ('configure', 1), ('manage', 1), ('mpls', 1), ('te', 1), ('optimize', 1), ('performance', 1), ('almost', 1), ('every', 1), ('busy', 1), ('backbone', 1), ('congested', 1), ('link', 1), ('others', 1), ('remain', 1), ('underutilized', 1), ('shortest', 1), ('routing', 1), ('protocol', 1), ('send', 1), ('traffic', 1)]
[('data', 3), ('constitutes', 1), ('big', 1), ('information', 1), ('online', 1), ('activity', 1), ('leave', 1), ('easy', 1), ('follow', 1), ('trail', 1), ('digital', 1), ('footprint', 1), ('reveal', 1), ('buy', 1), ('go', 1), ('eye', 1), ('opening', 1), ('book', 1), ('explores', 1), ('raging', 1), ('privacy', 1), ('debate', 1), ('use', 1), ('personal', 1), ('undeniable', 1), ('conclusion', 1)]
[('erlang', 2), ('concurrency', 2), ('book', 1), ('depth', 1), ('introduction', 1), ('programming', 1), ('language', 1), ('ideal', 1), ('situation', 1), ('fault', 1), ('tolerance', 1), ('fast', 1), ('response', 1), ('essential', 1), ('gaining', 1), ('widespread', 1), ('adoption', 1), ('advent', 1), ('multi', 1), ('core', 1), ('processor', 1), ('new', 1), ('scalable', 1), ('approach', 1), ('guide', 1), ('learn', 1), ('write', 1), ('complex', 1)]
[('good', 2), ('easy', 2), ('demand', 2), ('software', 2), ('use', 2), ('designing', 1), ('interface', 1), ('user', 1), ('behaved', 1), ('looking', 1), ('client', 1), ('manager', 1), ('originality', 1), ('short', 1), ('time', 1), ('market', 1), ('ui', 1), ('technology', 1), ('web', 1), ('application', 1), ('desktop', 1), ('even', 1), ('mobile', 1), ('device', 1), ('give', 1), ('tool', 1), ('need', 1), ('little', 1), ('guidance', 1)]
[('gimp', 3), ('image', 2), ('pocket', 1), ('reference', 1), ('explains', 1), ('numerous', 1), ('feature', 1), ('gnu', 1), ('manipulation', 1), ('program', 1), ('affectionately', 1), ('known', 1), ('essential', 1), ('guide', 1), ('designer', 1), ('working', 1), ('linux', 1), ('unix', 1), ('environment', 1), ('open', 1), ('source', 1), ('editor', 1), ('design', 1), ('application', 1), ('parallel', 1), ('adobe', 1), ('photoshop', 1), ('functionality', 1)]
[('information', 2), ('need', 2), ('matter', 1), ('flexible', 1), ('convenient', 1), ('digital', 1), ('become', 1), ('done', 1), ('away', 1), ('see', 1), ('print', 1), ('extensible', 1), ('style', 1), ('language', 1), ('formatting', 1), ('object', 1), ('xsl', 1), ('fo', 1), ('set', 1), ('tool', 1), ('developer', 1), ('web', 1), ('designer', 1), ('use', 1), ('describe', 1), ('page', 1), ('printout', 1), ('xml', 1), ('including', 1), ('xhtml', 1), ('document', 1), ('produce', 1), ('high', 1)]
[('language', 2), ('net', 2), ('though', 1), ('programmer', 1), ('use', 1), ('usually', 1), ('mastery', 1), ('although', 1), ('microsoft', 1), ('advertised', 1), ('runtime', 1), ('agnostic', 1), ('visual', 1), ('basic', 1), ('close', 1), ('switching', 1), ('really', 1), ('quite', 1), ('easy', 1), ('true', 1), ('point', 1), ('difference', 1), ('obvious', 1), ('others', 1)]
[('stl', 3), ('standard', 3), ('function', 2), ('template', 2), ('library', 2), ('pocket', 1), ('reference', 1), ('describes', 1), ('class', 1), ('part', 1), ('often', 1), ('referred', 1), ('encompasses', 1), ('container', 1), ('iterators', 1), ('algorithm', 1), ('object', 1), ('collectively', 1), ('represent', 1), ('important', 1), ('widely', 1), ('used', 1), ('subset', 1)]
[('jquery', 3), ('using', 2), ('us', 1), ('regular', 1), ('basis', 1), ('surprising', 1), ('discover', 1), ('library', 1), ('book', 1), ('indispensable', 1), ('anyone', 1), ('serious', 1), ('non', 1), ('trivial', 1), ('application', 1), ('raffaele', 1), ('cecco', 1), ('longtime', 1), ('developer', 1), ('video', 1), ('game', 1), ('including', 1), ('cybernoid', 1), ('exolon', 1), ('stormlord', 1), ('write', 1), ('le', 1)]
[('javascript', 2), ('code', 2), ('easier', 2), ('take', 1), ('advantage', 1), ('power', 1), ('build', 1), ('robust', 1), ('web', 1), ('scale', 1), ('enterprise', 1), ('application', 1), ('easy', 1), ('extend', 1), ('maintain', 1), ('applying', 1), ('design', 1), ('pattern', 1), ('outlined', 1), ('practical', 1), ('book', 1), ('experienced', 1), ('developer', 1), ('learn', 1), ('write', 1), ('flexible', 1), ('resilient', 1), ('yes', 1), ('work', 1), ('base', 1), ('grows', 1)]
[('data', 2), ('unimaginably', 1), ('vast', 1), ('amount', 1), ('generated', 1), ('line', 1), ('life', 1), ('business', 1), ('time', 1), ('ability', 1), ('store', 1), ('manage', 1), ('analyse', 1), ('exploit', 1), ('becoming', 1), ('sophisticated', 1), ('short', 1), ('introduction', 1), ('map', 1), ('technology', 1), ('range', 1), ('possibility', 1), ('challenge', 1), ('ethical', 1), ('question', 1), ('raise', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('microsoft', 3), ('dynamic', 3), ('enterprise', 3), ('financial', 2), ('boost', 1), ('accounting', 1), ('skill', 1), ('book', 1), ('make', 1), ('real', 1), ('time', 1), ('data', 1), ('driven', 1), ('decision', 1), ('edition', 1), ('configure', 1), ('set', 1), ('module', 1), ('via', 1), ('highly', 1), ('useful', 1), ('tip', 1), ('trick', 1), ('administer', 1), ('customer', 1), ('relation', 1), ('plan', 1)]
[('sap', 2), ('erp', 2), ('use', 2), ('module', 1), ('notoriously', 1), ('hard', 1), ('configure', 1), ('effectively', 1), ('without', 1), ('lot', 1), ('practice', 1), ('experience', 1), ('financial', 1), ('accounting', 1), ('controlling', 1), ('configuration', 1), ('management', 1), ('show', 1), ('difficult', 1)]
[('python', 2), ('gain', 1), ('fundamental', 1), ('understanding', 1), ('syntax', 1), ('feature', 1), ('date', 1), ('introduction', 1), ('practical', 1), ('reference', 1), ('covering', 1), ('wide', 1), ('array', 1), ('related', 1), ('programming', 1), ('topic', 1), ('including', 1), ('addressing', 1), ('language', 1), ('internals', 1), ('database', 1), ('integration', 1)]
[('lt', 5), ('gt', 5), ('strong', 2), ('em', 2), ('assembly', 2), ('language', 2), ('programming', 2), ('modern', 1), ('show', 1), ('fundamental', 1), ('focus', 1), ('aspect', 1), ('instruction', 1), ('set', 1), ('relevant', 1)]
[('lopp', 2), ('managing', 1), ('human', 1), ('selection', 1), ('best', 1), ('essay', 1), ('michael', 1), ('popular', 1), ('website', 1), ('rand', 1), ('repose', 1), ('sought', 1), ('manager', 1), ('silicon', 1), ('valley', 1), ('draw', 1), ('experience', 1), ('apple', 1), ('netscape', 1)]
[('mvc', 2), ('steven', 1), ('sanderson', 1), ('seen', 1), ('asp', 1), ('net', 1), ('framework', 1), ('mature', 1), ('start', 1), ('experience', 1), ('combined', 1), ('comprehensive', 1), ('coverage', 1), ('feature', 1), ('including', 1), ('official', 1), ('development', 1), ('toolkit', 1), ('offer', 1), ('clearest', 1), ('understanding', 1)]
[('internet', 2), ('history', 1), ('digital', 1), ('future', 1), ('tell', 1), ('story', 1), ('development', 1), ('present', 1), ('examines', 1), ('balance', 1), ('power', 1), ('shifted', 1), ('individual', 1), ('state', 1), ('area', 1), ('censorship', 1), ('copyright', 1), ('infringement', 1), ('intellectual', 1), ('freedom', 1), ('terrorism', 1), ('warfare', 1), ('johnny', 1), ('ryan', 1), ('explains', 1)]
[('iso', 3), ('iec', 1), ('important', 1), ('international', 1), ('standard', 1), ('service', 1), ('provider', 1), ('book', 1), ('crammed', 1), ('practical', 1), ('advice', 1), ('recommendation', 1), ('prepare', 1), ('audit', 1), ('implementation', 1), ('ideal', 1), ('companion', 1), ('course', 1), ('range', 1), ('certification', 1), ('body', 1), ('exin', 1), ('peoplecert', 1), ('others', 1)]
[('explains', 1), ('artificial', 1), ('intelligence', 1), ('method', 1), ('used', 1), ('aid', 1), ('conservation', 1), ('wildlife', 1), ('forest', 1), ('coral', 1), ('reef', 1), ('river', 1), ('natural', 1), ('resource', 1)]
[('social', 1), ('medium', 1), ('technology', 1), ('company', 1), ('rule', 1), ('internet', 1), ('digital', 1), ('constitution', 1), ('protect', 1), ('right', 1), ('online', 1)]
[('introduction', 1), ('random', 1), ('matrix', 1), ('theory', 1), ('application', 1), ('real', 1), ('world', 1), ('problem', 1), ('signal', 1), ('processing', 1), ('wireless', 1), ('communication', 1)]
[('book', 1), ('present', 1), ('basic', 1), ('tool', 1), ('probability', 1), ('theory', 1), ('used', 1), ('algorithmic', 1), ('application', 1), ('concrete', 1), ('example', 1)]
[('book', 1), ('teach', 1), ('functional', 1), ('programming', 1), ('using', 1), ('haskell', 1), ('example', 1), ('drawn', 1), ('multimedia', 1), ('application', 1)]
[('reasoning', 2), ('book', 1), ('provides', 1), ('practical', 1), ('argumentation', 1), ('model', 1), ('intelligent', 1), ('mean', 1), ('end', 1), ('distinctive', 1), ('type', 1), ('used', 1), ('problem', 1), ('solving', 1), ('decision', 1), ('making', 1)]
[('computer', 2), ('theoretical', 2), ('question', 2), ('function', 2), ('principle', 1), ('inherent', 1), ('limitation', 1), ('scientist', 1), ('address', 1), ('framework', 1), ('enables', 1), ('answered', 1), ('developed', 1), ('last', 1), ('fifty', 1), ('year', 1), ('idea', 1), ('computable', 1), ('intuitively', 1), ('whose', 1)]
[('data', 4), ('science', 3), ('answer', 1), ('question', 1), ('half', 1), ('business', 1), ('using', 1), ('generate', 1), ('insight', 1), ('value', 1), ('big', 1), ('strategy', 1)]
[('outlook', 2), ('use', 2), ('speed', 1), ('world', 1), ('best', 1), ('email', 1), ('application', 1), ('million', 1), ('percent', 1), ('feature', 1), ('stay', 1), ('dark', 1)]
[('editing', 2), ('photo', 2), ('bestselling', 1), ('guide', 1), ('leading', 1), ('image', 1), ('software', 1), ('photoshop', 1), ('c', 1), ('fully', 1), ('updated', 1), ('want', 1), ('picture', 1), ('perfect', 1), ('every', 1), ('time', 1), ('speed', 1), ('popular', 1), ('professional', 1)]
[('step', 2), ('object', 2), ('oriented', 2), ('programming', 2), ('objective', 2), ('language', 2), ('guide', 1), ('understanding', 1), ('primary', 1), ('iphone', 1), ('ipad', 1), ('mac', 1), ('o', 1), ('application', 1), ('reflective', 1)]
[('pattern', 2), ('distributed', 2), ('eagerly', 1), ('awaited', 1), ('oriented', 1), ('software', 1), ('architecture', 1), ('posa', 1), ('volume', 1), ('language', 1), ('computing', 1), ('author', 1), ('guide', 1), ('best', 1), ('practice', 1), ('introduce', 1), ('key', 1), ('area', 1), ('building', 1)]
[('book', 3), ('system', 2), ('focus', 1), ('analysis', 1), ('broadly', 1), ('defined', 1), ('include', 1), ('problem', 1), ('formulation', 1), ('interpretation', 1), ('proposed', 1), ('alternative', 1), ('term', 1), ('value', 1), ('stakeholder', 1), ('complement', 1), ('substitute', 1)]
[('kind', 1), ('book', 1), ('provides', 1), ('depth', 1), ('expert', 1), ('insight', 1), ('hacker', 1), ('infiltrate', 1), ('business', 1), ('stopped', 1)]
[('multimedia', 4), ('learn', 1), ('cutting', 1), ('edge', 1), ('skill', 1), ('discover', 1), ('create', 1), ('impressive', 1), ('project', 1), ('using', 1), ('state', 1), ('art', 1), ('tool', 1), ('technique', 1), ('demystified', 1), ('filled', 1), ('information', 1), ('latest', 1), ('technology', 1), ('design', 1), ('production', 1), ('guideline', 1), ('practical', 1), ('guide', 1), ('provides', 1), ('background', 1), ('delf', 1)]
[('system', 3), ('cisa', 3), ('coverage', 2), ('every', 2), ('topic', 2), ('exam', 2), ('certified', 2), ('information', 2), ('date', 1), ('self', 1), ('study', 1), ('offer', 1), ('version', 1), ('fully', 1), ('revised', 1), ('new', 1), ('edition', 1), ('delivers', 1), ('complete', 1), ('latest', 1), ('release', 1), ('auditor', 1), ('written', 1), ('security', 1), ('auditing', 1), ('expert', 1)]
[('agile', 2), ('definitive', 1), ('realistic', 1), ('actionable', 1), ('guide', 1), ('starting', 1), ('fast', 1), ('scrum', 1), ('succeeding', 1), ('long', 1), ('haul', 1), ('leading', 1), ('consultant', 1), ('practitioner', 1), ('mike', 1), ('cohn', 1), ('present', 1), ('detailed', 1), ('recommendation', 1), ('powerful', 1), ('tip', 1), ('real', 1), ('world', 1), ('case', 1), ('study', 1), ('drawn', 1), ('unparalleled', 1), ('experience', 1), ('helping', 1), ('hundred', 1), ('software', 1), ('organisation', 1), ('make', 1)]
[('digital', 1), ('colorist', 1), ('job', 1), ('longer', 1), ('simply', 1), ('balance', 1), ('fix', 1), ('optimize', 1), ('today', 1), ('filmmaker', 1), ('often', 1), ('want', 1), ('recreate', 1), ('idiosyncrasy', 1), ('older', 1), ('recording', 1), ('method', 1), ('looking', 1), ('something', 1), ('completely', 1), ('new', 1), ('differentiate', 1), ('look', 1)]
[('php', 3), ('mysql', 2), ('quickly', 2), ('database', 2), ('web', 2), ('application', 2), ('popular', 1), ('open', 1), ('source', 1), ('technology', 1), ('ideal', 1), ('developing', 1), ('driven', 1), ('powerful', 1), ('scripting', 1), ('language', 1), ('designed', 1), ('enable', 1), ('developer', 1), ('create', 1), ('highly', 1), ('featured', 1), ('fast', 1), ('reliable', 1), ('integrates', 1), ('suited', 1), ('dynamic', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('ue', 2), ('unreal', 1), ('engine', 1), ('created', 1), ('develop', 1), ('video', 1), ('game', 1), ('gone', 1), ('viral', 1), ('among', 1), ('architecture', 1), ('science', 1), ('engineering', 1), ('medical', 1), ('visualization', 1), ('community', 1), ('stunning', 1), ('visual', 1), ('quality', 1), ('cutting', 1), ('edge', 1), ('toolset', 1), ('unbeatable', 1), ('price', 1), ('free', 1), ('unprecedented', 1), ('ease', 1), ('use', 1), ('redefines', 1), ('state', 1), ('art', 1), ('turned', 1), ('gaming', 1), ('film', 1)]
[('game', 3), ('guide', 2), ('networked', 1), ('multiplayer', 1), ('multibillion', 1), ('dollar', 1), ('business', 1), ('attract', 1), ('ten', 1), ('million', 1), ('player', 1), ('practical', 1), ('code', 1), ('rich', 1), ('joshua', 1), ('glazer', 1), ('sanjay', 1), ('madhav', 1), ('every', 1), ('aspect', 1), ('engineering', 1), ('drawing', 1), ('immense', 1), ('experience', 1), ('developer', 1), ('instructor', 1), ('author', 1), ('lead', 1)]
[('selling', 2), ('top', 1), ('de', 1), ('facto', 1), ('guide', 1), ('soa', 1), ('updated', 1), ('new', 1), ('content', 1), ('coverage', 1), ('microservices', 1), ('decade', 1), ('thomas', 1), ('erl', 1), ('best', 1), ('service', 1), ('oriented', 1), ('architecture', 1), ('concept', 1), ('technology', 1), ('design', 1), ('definitive', 1)]
[('book', 2), ('software', 2), ('remarkable', 1), ('combine', 1), ('practical', 1), ('advice', 1), ('ready', 1), ('use', 1), ('technique', 1), ('anda', 1), ('deep', 1), ('understanding', 1), ('right', 1), ('way', 1), ('develop', 1), ('haveseen', 1), ('team', 1), ('transformed', 1), ('idea', 1), ('mike', 1), ('cohn', 1), ('author', 1), ('agile', 1)]
[('adobe', 2), ('chapter', 2), ('step', 2), ('photoshop', 1), ('element', 1), ('classroom', 1), ('book', 1), ('thorough', 1), ('comprehensive', 1), ('way', 1), ('master', 1), ('industry', 1), ('leading', 1), ('consumer', 1), ('targeted', 1), ('photo', 1), ('editing', 1), ('software', 1), ('lesson', 1), ('based', 1), ('guide', 1), ('contains', 1), ('project', 1), ('build', 1), ('growing', 1), ('knowledge', 1), ('program', 1), ('end', 1), ('review', 1), ('question', 1)]
[('book', 2), ('number', 1), ('secure', 1), ('programming', 1), ('market', 1), ('none', 1), ('go', 1), ('deep', 1), ('depth', 1), ('detail', 1), ('exceeds', 1), ('know', 1), ('order', 1), ('magnitude', 1), ('halvar', 1), ('flake', 1), ('ceo', 1), ('head', 1), ('research', 1), ('sabre', 1), ('security', 1), ('gmbh', 1)]
[('warren', 2), ('hack', 2), ('hacker', 1), ('delight', 1), ('henry', 1), ('compiles', 1), ('irresistible', 1), ('collection', 1), ('programming', 1), ('timesaving', 1), ('technique', 1), ('algorithm', 1), ('trick', 1), ('help', 1), ('programmer', 1), ('build', 1), ('elegant', 1), ('efficient', 1), ('software', 1), ('gaining', 1), ('deeper', 1), ('insight', 1), ('craft', 1), ('eminently', 1), ('practical', 1), ('intrinsically', 1)]
[('modern', 2), ('networking', 2), ('foundation', 1), ('comprehensive', 1), ('unified', 1), ('survey', 1), ('technology', 1), ('application', 1), ('today', 1), ('professional', 1), ('manager', 1), ('student', 1), ('dr', 1), ('william', 1), ('stalling', 1), ('offer', 1), ('clear', 1), ('organized', 1), ('coverage', 1), ('five', 1), ('key', 1)]
[('program', 2), ('policy', 2), ('everything', 1), ('need', 1), ('know', 1), ('information', 1), ('security', 1), ('book', 1), ('clearly', 1), ('explains', 1), ('facet', 1), ('infosec', 1), ('planning', 1), ('development', 1), ('deployment', 1), ('management', 1), ('thoroughly', 1), ('updated', 1), ('today', 1), ('challenge', 1)]
[('effect', 2), ('written', 1), ('stu', 1), ('maschwitz', 1), ('co', 1), ('founder', 1), ('orphanage', 1), ('legendary', 1), ('guerrilla', 1), ('visual', 1), ('studio', 1), ('responsible', 1), ('amazing', 1), ('award', 1), ('winning', 1), ('movie', 1), ('sin', 1), ('city', 1), ('day', 1), ('tomorrow', 1), ('harry', 1), ('potter', 1), ('goblet', 1), ('fire', 1)]
[('ebook', 2), ('print', 2), ('practice', 2), ('version', 1), ('title', 1), ('note', 1), ('provide', 1), ('access', 1), ('test', 1), ('software', 1), ('accompanies', 1), ('book', 1), ('learn', 1), ('prepare', 1), ('cisa', 1), ('exam', 1), ('success', 1), ('cert', 1), ('guide', 1), ('pearson', 1)]
[('calibre', 2), ('library', 2), ('ipad', 1), ('project', 1), ('single', 1), ('walk', 1), ('downloading', 1), ('configuring', 1), ('free', 1), ('ebook', 1), ('conversion', 1), ('application', 1), ('mac', 1), ('window', 1), ('linux', 1), ('learn', 1), ('add', 1), ('ebooks', 1), ('convert', 1), ('book', 1), ('file', 1)]
[('web', 2), ('animation', 2), ('learning', 2), ('thanks', 1), ('faster', 1), ('browser', 1), ('better', 1), ('standard', 1), ('support', 1), ('powerful', 1), ('device', 1), ('defines', 1), ('next', 1), ('generation', 1), ('user', 1), ('interface', 1), ('fun', 1), ('practical', 1), ('fluid', 1), ('memorable', 1), ('key', 1), ('create', 1), ('hard', 1), ('existing', 1), ('material', 1), ('explain', 1), ('context', 1), ('ui', 1), ('problem', 1)]
[('quarkus', 2), ('optimized', 1), ('kubernetes', 1), ('designed', 1), ('help', 1), ('create', 1), ('java', 1), ('application', 1), ('cloud', 1), ('first', 1), ('container', 1), ('native', 1), ('serverless', 1), ('capable', 1), ('cookbook', 1), ('author', 1), ('alex', 1), ('soto', 1), ('bueno', 1), ('jason', 1), ('porter', 1), ('red', 1), ('hat', 1), ('provide', 1), ('detailed', 1), ('solution', 1), ('installing', 1), ('interacting', 1), ('using', 1), ('development', 1), ('production', 1)]
[('system', 4), ('essential', 3), ('administration', 3), ('guide', 2), ('unix', 2), ('rd', 1), ('edition', 1), ('definitive', 1), ('covering', 1), ('fundamental', 1), ('task', 1), ('required', 1), ('run', 1), ('divergent', 1), ('aix', 1), ('freebsd', 1), ('hp', 1), ('ux', 1), ('linux', 1), ('solaris', 1), ('tru', 1), ('provides', 1), ('clear', 1), ('concise', 1), ('practical', 1), ('real', 1), ('world', 1)]
[('multi', 2), ('core', 2), ('processor', 2), ('looking', 1), ('take', 1), ('full', 1), ('advantage', 1), ('concurrent', 1), ('programming', 1), ('practical', 1), ('book', 1), ('provides', 1), ('knowledge', 1), ('hand', 1), ('experience', 1), ('need', 1), ('art', 1), ('concurrency', 1), ('resource', 1), ('focus', 1), ('implementing', 1), ('algorithm', 1), ('shared', 1), ('memory', 1), ('model', 1), ('rather', 1), ('theoretical', 1)]
[('suse', 3), ('distribution', 3), ('linux', 2), ('complete', 1), ('guide', 1), ('novell', 1), ('community', 1), ('speed', 1), ('quickly', 1), ('easily', 1), ('friendly', 1), ('usable', 1), ('around', 1), ('quick', 1), ('easy', 1), ('installation', 1), ('excellent', 1), ('hardware', 1), ('detection', 1), ('support', 1), ('wonder', 1), ('highly', 1), ('rated', 1), ('planet', 1)]
[('eclipse', 2), ('java', 2), ('need', 2), ('world', 1), ('popular', 1), ('ide', 1), ('development', 1), ('although', 1), ('plenty', 1), ('large', 1), ('tome', 1), ('cover', 1), ('nook', 1), ('cranny', 1), ('really', 1), ('quick', 1), ('handy', 1), ('guide', 1), ('feature', 1), ('used', 1), ('programming', 1), ('answer', 1), ('basic', 1), ('question', 1), ('menu', 1)]
[('internet', 2), ('home', 2), ('million', 1), ('computer', 1), ('around', 1), ('world', 1), ('today', 1), ('connected', 1), ('still', 1), ('hard', 1), ('hook', 1), ('pc', 1), ('whether', 1), ('want', 1), ('share', 1), ('connection', 1), ('install', 1), ('wifi', 1), ('maybe', 1), ('cut', 1), ('number', 1), ('printer', 1), ('network', 1), ('supposed', 1), ('help', 1), ('make', 1), ('life', 1), ('easier', 1), ('instead', 1), ('aspiring', 1)]
[('raid', 2), ('system', 2), ('redundant', 1), ('array', 1), ('independent', 1), ('disk', 1), ('technology', 1), ('becoming', 1), ('standard', 1), ('feature', 1), ('computer', 1), ('support', 1), ('mission', 1), ('critical', 1), ('service', 1), ('file', 1), ('sharing', 1), ('mail', 1), ('exchange', 1), ('web', 1), ('server', 1), ('offer', 1), ('benefit', 1), ('essential', 1), ('improved', 1), ('performance', 1), ('fail', 1), ('safe', 1), ('data', 1), ('storage', 1), ('although', 1), ('bandwidth', 1), ('problem', 1), ('network', 1)]
[('iphone', 4), ('graphic', 3), ('programming', 2), ('step', 2), ('take', 1), ('build', 1), ('app', 1), ('stunning', 1), ('book', 1), ('show', 1), ('apply', 1), ('opengl', 1), ('technique', 1), ('device', 1), ('running', 1), ('o', 1), ('including', 1), ('ipad', 1), ('ipod', 1), ('touch', 1), ('development', 1), ('experience', 1), ('required', 1), ('provides', 1), ('clear', 1)]
[('jdbc', 2), ('java', 2), ('database', 2), ('complex', 2), ('application', 2), ('developer', 2), ('need', 2), ('time', 2), ('connectivity', 1), ('specification', 1), ('set', 1), ('programming', 1), ('interface', 1), ('apis', 1), ('understand', 1), ('want', 1), ('work', 1), ('even', 1), ('experienced', 1), ('refresh', 1), ('memory', 1), ('specific', 1), ('method', 1)]
[('net', 2), ('framework', 2), ('support', 1), ('dynamic', 1), ('programming', 1), ('continues', 1), ('evolve', 1), ('versatile', 1), ('language', 1), ('used', 1), ('combination', 1), ('incredibly', 1), ('powerful', 1), ('bestselling', 1), ('tutorial', 1), ('show', 1), ('build', 1), ('web', 1), ('desktop', 1), ('rich', 1), ('internet', 1), ('application', 1), ('using', 1), ('database', 1), ('capability', 1), ('ui', 1)]
[('best', 2), ('javascript', 2), ('approach', 1), ('developing', 1), ('application', 1), ('book', 1), ('help', 1), ('answer', 1), ('question', 1), ('numerous', 1), ('coding', 1), ('pattern', 1), ('practice', 1), ('experienced', 1), ('developer', 1), ('looking', 1), ('solve', 1), ('problem', 1), ('related', 1), ('object', 1), ('function', 1), ('inheritance', 1), ('language', 1), ('specific', 1), ('category', 1), ('abstraction', 1), ('code', 1)]
[('step', 2), ('learn', 1), ('develop', 1), ('application', 1), ('monitor', 1), ('control', 1), ('instrumentation', 1), ('hardware', 1), ('whether', 1), ('need', 1), ('acquire', 1), ('data', 1), ('device', 1), ('automate', 1), ('function', 1), ('practical', 1), ('book', 1), ('show', 1), ('use', 1), ('python', 1), ('rapid', 1), ('development', 1), ('capability', 1), ('build', 1), ('interface', 1), ('include', 1), ('everything', 1), ('software', 1), ('wiring', 1)]
[('search', 3), ('google', 2), ('behind', 1), ('deceptively', 1), ('simple', 1), ('interface', 1), ('immense', 1), ('power', 1), ('market', 1), ('competitive', 1), ('research', 1), ('know', 1), ('use', 1), ('sure', 1), ('basic', 1), ('easy', 1), ('complex', 1), ('require', 1), ('specialized', 1), ('skill', 1), ('concise', 1), ('book', 1), ('take', 1), ('full', 1), ('range', 1), ('powerful', 1), ('refinement', 1), ('feature', 1), ('quickly', 1), ('find', 1)]
[('build', 2), ('test', 2), ('gradle', 2), ('tool', 2), ('software', 1), ('written', 1), ('java', 1), ('many', 1), ('language', 1), ('open', 1), ('source', 1), ('project', 1), ('automation', 1), ('getting', 1), ('lot', 1), ('attention', 1), ('concise', 1), ('introduction', 1), ('provides', 1), ('numerous', 1), ('code', 1), ('example', 1), ('help', 1), ('explore', 1), ('complete', 1), ('solution', 1), ('automating', 1), ('compilation', 1), ('release', 1), ('process', 1)]
[('aws', 2), ('python', 2), ('based', 2), ('intend', 1), ('use', 1), ('amazon', 1), ('web', 1), ('service', 1), ('remote', 1), ('computing', 1), ('storage', 1), ('ideal', 1), ('programming', 1), ('language', 1), ('developing', 1), ('application', 1), ('controlling', 1), ('cloud', 1), ('infrastructure', 1), ('cookbook', 1), ('get', 1), ('started', 1), ('dozen', 1), ('recipe', 1), ('using', 1), ('author', 1), ('boto', 1), ('library', 1), ('find', 1), ('detailed', 1)]
[('data', 2), ('working', 1), ('database', 1), ('certainly', 1), ('daunting', 1), ('coming', 1), ('vb', 1), ('vba', 1), ('access', 1), ('hand', 1), ('guide', 1), ('shorten', 1), ('learning', 1), ('curve', 1), ('considerably', 1), ('master', 1), ('accessing', 1), ('adding', 1), ('updating', 1), ('deleting', 1), ('basic', 1), ('skill', 1), ('need', 1), ('intend', 1), ('program', 1), ('language', 1), ('previous', 1), ('knowledge', 1)]
[('thoroughly', 1), ('updated', 1), ('fourth', 1), ('edition', 1), ('focus', 1), ('modern', 1), ('technique', 1), ('used', 1), ('generate', 1), ('synthetic', 1), ('three', 1), ('dimensional', 1), ('image', 1), ('fraction', 1), ('second', 1)]
[('neural', 3), ('network', 3), ('response', 1), ('exponentially', 1), ('increasing', 1), ('need', 1), ('analyze', 1), ('vast', 1), ('amount', 1), ('data', 1), ('applied', 1), ('science', 1), ('engineering', 1), ('fundamental', 1), ('complex', 1), ('pattern', 1), ('recognition', 1), ('provides', 1), ('scientist', 1), ('simple', 1), ('systematic', 1), ('introduction', 1), ('beginning', 1), ('introductory', 1), ('discussion', 1), ('role', 1)]
[('design', 3), ('digital', 2), ('arm', 2), ('logic', 2), ('computer', 1), ('architecture', 1), ('edition', 1), ('cover', 1), ('fundamental', 1), ('reinforces', 1), ('concept', 1), ('microprocessor', 1), ('combining', 1), ('engaging', 1), ('humorous', 1), ('writing', 1), ('style', 1), ('updated', 1)]
[('data', 3), ('quality', 3), ('practitioner', 1), ('guide', 1), ('improvement', 1), ('offer', 1), ('comprehensive', 1), ('look', 1), ('business', 1), ('encompassing', 1), ('process', 1), ('technology', 1), ('share', 1), ('fundamental', 1), ('understanding', 1), ('impact', 1), ('poor', 1)]
[('persona', 3), ('guide', 2), ('essential', 1), ('lifecycle', 1), ('building', 1), ('using', 1), ('offer', 1), ('practical', 1), ('creation', 1), ('use', 1), ('help', 1), ('product', 1), ('designer', 1), ('team', 1), ('organization', 1), ('become', 1), ('user', 1), ('focused', 1), ('book', 1)]
[('risc', 2), ('open', 2), ('source', 2), ('architecture', 2), ('computing', 2), ('new', 1), ('edition', 1), ('computer', 1), ('organization', 1), ('design', 1), ('feature', 1), ('instruction', 1), ('set', 1), ('first', 1), ('designed', 1), ('used', 1), ('modern', 1), ('environment', 1), ('cloud', 1), ('mobile', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('csfs', 2), ('measurement', 2), ('sharing', 1), ('crucial', 1), ('tip', 1), ('developing', 1), ('measuring', 1), ('using', 1), ('critical', 1), ('success', 1), ('factor', 1), ('book', 1), ('simplifies', 1), ('identification', 1), ('use', 1), ('successfully', 1), ('implement', 1), ('strategy', 1), ('manage', 1), ('project', 1), ('improve', 1), ('process', 1), ('provides', 1), ('effective', 1), ('technique', 1), ('tracking', 1), ('progress', 1), ('highlighting', 1), ('problem', 1), ('area', 1)]
[('net', 3), ('library', 2), ('explore', 1), ('advanced', 1), ('apis', 1), ('create', 1), ('basic', 1), ('core', 1), ('dynamic', 1), ('code', 1), ('generation', 1), ('metadata', 1), ('inspection', 1), ('used', 1), ('client', 1), ('application', 1), ('book', 1), ('start', 1), ('benefit', 1), ('including', 1), ('fundamental', 1), ('task', 1)]
[('learn', 1), ('intel', 1), ('assembly', 1), ('language', 1), ('architecture', 1), ('become', 1), ('proficient', 1), ('understand', 1), ('program', 1), ('compiled', 1), ('executed', 1), ('machine', 1), ('instruction', 1), ('enabling', 1), ('write', 1), ('robust', 1), ('high', 1), ('performance', 1), ('code', 1), ('low', 1), ('level', 1)]
[('ggplot', 2), ('data', 2), ('new', 1), ('edition', 1), ('classic', 1), ('book', 1), ('creator', 1), ('hadley', 1), ('wickham', 1), ('highlight', 1), ('compatibility', 1), ('knitr', 1), ('rstudio', 1), ('visualization', 1), ('package', 1), ('help', 1), ('user', 1), ('create', 1), ('graphic', 1), ('including', 1), ('multi', 1), ('layered', 1)]
[('schedule', 2), ('today', 1), ('shortened', 1), ('fiscal', 1), ('horizon', 1), ('contracted', 1), ('time', 1), ('market', 1), ('traditional', 1), ('approach', 1), ('capacity', 1), ('planning', 1), ('seen', 1), ('management', 1), ('inflating', 1), ('production', 1), ('face', 1), ('relentless', 1), ('pressure', 1), ('thing', 1), ('done', 1), ('faster', 1)]
[('intelligence', 2), ('powerful', 1), ('new', 1), ('technology', 1), ('used', 1), ('solve', 1), ('world', 1), ('important', 1), ('problem', 1), ('hunger', 1), ('poverty', 1), ('conflict', 1), ('employment', 1), ('disease', 1), ('link', 1), ('dr', 1), ('lorien', 1), ('pratt', 1), ('answer', 1), ('question', 1), ('exploring', 1), ('solution', 1), ('emerging', 1), ('worldwide', 1), ('take', 1), ('artificial', 1), ('next', 1), ('level', 1), ('decision', 1)]
[('rust', 3), ('programming', 2), ('language', 2), ('official', 1), ('book', 1), ('open', 1), ('source', 1), ('community', 1), ('developed', 1), ('system', 1), ('run', 1), ('blazingly', 1), ('fast', 1), ('prevents', 1), ('segfaults', 1), ('guarantee', 1), ('thread', 1), ('safety', 1), ('undisputed', 1), ('go', 1), ('guide', 1)]
[('book', 2), ('product', 2), ('designer', 1), ('developer', 1), ('manager', 1), ('charged', 1), ('sometimes', 1), ('seems', 1), ('impossible', 1), ('task', 1), ('making', 1), ('sure', 1), ('work', 1), ('way', 1), ('user', 1), ('expect', 1), ('find', 1), ('design', 1), ('application', 1), ('website', 1), ('use', 1), ('absolutely', 1), ('love', 1), ('second', 1), ('edition', 1), ('brings', 1), ('date', 1)]
[('make', 2), ('ready', 1), ('join', 1), ('personal', 1), ('fabrication', 1), ('movement', 1), ('hand', 1), ('book', 1), ('show', 1), ('wide', 1), ('variety', 1), ('physical', 1), ('object', 1), ('amazing', 1), ('makerbot', 1), ('printer', 1), ('handy', 1), ('need', 1), ('replacement', 1), ('something', 1), ('lost', 1), ('broken', 1), ('longer', 1), ('made', 1), ('knob', 1), ('stove', 1), ('thing', 1), ('instead', 1), ('buying', 1), ('solve', 1), ('problem', 1)]
[('agile', 3), ('auditor', 2), ('risk', 2), ('professional', 2), ('title', 1), ('bridge', 1), ('gap', 1), ('auditing', 1), ('requirement', 1), ('methodology', 1), ('provides', 1), ('overview', 1), ('encountered', 1), ('approach', 1), ('book', 1), ('tell', 1), ('team', 1), ('need', 1), ('question', 1), ('likely', 1), ('ask', 1)]
[('service', 2), ('management', 2), ('completely', 1), ('updated', 1), ('guru', 1), ('suzanne', 1), ('van', 1), ('hove', 1), ('mark', 1), ('thomas', 1), ('second', 1), ('edition', 1), ('pragmatic', 1), ('application', 1), ('five', 1), ('anchor', 1), ('approach', 1), ('provides', 1), ('comprehensive', 1), ('guidance', 1), ('instructive', 1), ('illustration', 1), ('helpful', 1), ('table', 1), ('create', 1), ('integrated', 1), ('system', 1), ('based', 1), ('cobit', 1), ('iso', 1), ('itil', 1), ('cmmi', 1), ('svc', 1)]
[('made', 2), ('secure', 1), ('purchase', 1), ('credit', 1), ('card', 1), ('internet', 1), ('seen', 1), ('cryptography', 1), ('crypto', 1), ('action', 1), ('stephen', 1), ('levy', 1), ('author', 1), ('hacker', 1), ('household', 1), ('word', 1), ('come', 1), ('account', 1), ('revolution', 1)]
[('research', 2), ('genealogy', 2), ('maximize', 1), ('progress', 1), ('harness', 1), ('powerful', 1), ('timesaving', 1), ('organization', 1), ('feature', 1), ('evernote', 1), ('free', 1), ('software', 1), ('mobile', 1), ('apps', 1), ('manage', 1), ('comprehensive', 1), ('user', 1), ('guide', 1), ('explains', 1), ('organize', 1), ('kind', 1)]
[('depth', 1), ('introduction', 1), ('student', 1), ('researcher', 1), ('show', 1), ('use', 1), ('asp', 1), ('intelligent', 1), ('task', 1), ('including', 1), ('answering', 1), ('query', 1), ('planning', 1), ('diagnostics', 1)]
[('book', 1), ('aim', 1), ('present', 1), ('testing', 1), ('concept', 1), ('method', 1), ('used', 1), ('practice', 1)]
[('describes', 1), ('phase', 1), ('modern', 1), ('compiler', 1), ('including', 1), ('technique', 1), ('code', 1), ('generation', 1), ('register', 1), ('allocation', 1), ('imperative', 1), ('functional', 1), ('object', 1), ('oriented', 1), ('language', 1)]
[('book', 1), ('teach', 1), ('fundamental', 1), ('stream', 1), ('processing', 1), ('covering', 1), ('application', 1), ('design', 1), ('distributed', 1), ('system', 1), ('infrastructure', 1), ('continuous', 1), ('analytic', 1), ('algorithm', 1)]
[('present', 1), ('state', 1), ('art', 1), ('sparse', 1), ('multiscale', 1), ('image', 1), ('signal', 1), ('processing', 1), ('application', 1), ('astronomy', 1), ('biology', 1), ('mri', 1), ('medium', 1), ('forensics', 1)]
[('digital', 2), ('waveform', 2), ('generation', 2), ('introduces', 1), ('powerful', 1), ('flexible', 1), ('practical', 1), ('technique', 1), ('enabling', 1), ('design', 1), ('bespoke', 1), ('system', 1), ('scratch', 1)]
[('original', 1), ('essay', 1), ('world', 1), ('leading', 1), ('researcher', 1), ('reveal', 1), ('alan', 1), ('turing', 1), ('lasting', 1), ('contribution', 1), ('modern', 1), ('research', 1)]
[('multidisciplinary', 1), ('book', 1), ('provides', 1), ('systematic', 1), ('introduction', 1), ('analysis', 1), ('passive', 1), ('sensor', 1), ('array', 1), ('imaging', 1), ('using', 1), ('ambient', 1), ('noise', 1), ('source', 1)]
[('design', 2), ('introduction', 1), ('market', 1), ('discus', 1), ('theory', 1), ('empirical', 1), ('result', 1), ('relevant', 1), ('multi', 1), ('object', 1), ('auction', 1), ('matching', 1)]
[('introduction', 1), ('type', 1), ('theory', 1), ('computer', 1), ('scientist', 1)]
[('book', 1), ('offer', 1), ('critical', 1), ('reconstruction', 1), ('fundamental', 1), ('idea', 1), ('method', 1), ('artificial', 1), ('intelligence', 1), ('research', 1)]
[('computing', 2), ('revolution', 2), ('use', 1), ('raspberry', 1), ('pi', 1), ('smart', 1), ('fundamental', 1), ('tech', 1), ('kickstarted', 1), ('flood', 1), ('relatively', 1), ('inexpensive', 1), ('highly', 1), ('programmable', 1), ('computer', 1), ('commodore', 1), ('second', 1)]
[('farming', 2), ('game', 2), ('learn', 1), ('basic', 1), ('modeling', 1), ('popular', 1), ('simulator', 1), ('want', 1), ('started', 1), ('creating', 1), ('vehicle', 1), ('map', 1), ('landscape', 1), ('tool', 1), ('use', 1), ('share', 1)]
[('ccnp', 2), ('enterprise', 2), ('certification', 2), ('study', 2), ('guide', 2), ('practical', 1), ('conceptual', 1), ('knowledge', 1), ('need', 1), ('attain', 1), ('trusted', 1), ('publisher', 1), ('come', 1)]
[('computer', 2), ('encryption', 2), ('organization', 1), ('protected', 1), ('day', 1), ('quantum', 1), ('break', 1), ('internet', 1), ('vital', 1), ('protecting', 1), ('user', 1), ('data', 1), ('infrastructure', 1), ('digital', 1), ('age', 1), ('using', 1)]
[('window', 3), ('easy', 1), ('way', 1), ('running', 1), ('senior', 1), ('dummy', 1), ('becoming', 1), ('familiarized', 1), ('painless', 1), ('process', 1), ('interested', 1)]
[('security', 3), ('learn', 1), ('combine', 1), ('theory', 1), ('code', 1), ('produce', 1), ('secure', 1), ('system', 1), ('clearly', 1), ('crucial', 1), ('issue', 1), ('consider', 1), ('design', 1), ('implementation', 1), ('distributed', 1), ('software', 1), ('architecture', 1), ('pattern', 1)]
[('cybersecurity', 2), ('hand', 1), ('guide', 1), ('working', 1), ('profession', 1), ('involves', 1), ('preventative', 1), ('method', 1), ('protect', 1), ('information', 1), ('attack', 1), ('requires', 1), ('thorough', 1), ('understanding', 1)]
[('qos', 3), ('service', 2), ('advanced', 1), ('multi', 1), ('ip', 1), ('mpls', 1), ('network', 1), ('definitive', 1), ('guide', 1), ('quality', 1), ('comprehensive', 1), ('information', 1), ('feature', 1), ('benefit', 1), ('find', 1), ('solid', 1), ('theoretical', 1), ('practical', 1), ('overview', 1), ('implemented', 1)]
[('wordpress', 3), ('book', 2), ('highest', 1), ('rated', 1), ('development', 1), ('design', 1), ('market', 1), ('back', 1), ('new', 1), ('third', 1), ('edition', 1), ('professional', 1), ('targeted', 1), ('developer', 1), ('advanced', 1), ('content', 1), ('exploit', 1), ('full', 1), ('functionality', 1)]
[('security', 3), ('professional', 2), ('network', 2), ('smart', 1), ('self', 1), ('guided', 1), ('defend', 1), ('wide', 1), ('range', 1), ('existing', 1), ('emerging', 1), ('threat', 1), ('written', 1), ('certified', 1), ('information', 1), ('system', 1), ('year', 1), ('experience', 1), ('field', 1), ('beginner', 1), ('guide', 1), ('third', 1), ('edition', 1), ('fully', 1), ('updated', 1), ('include', 1), ('latest', 1)]
[('data', 3), ('essential', 1), ('skill', 1), ('made', 1), ('easy', 1), ('learn', 1), ('create', 1), ('model', 1), ('allow', 1), ('complex', 1), ('analyzed', 1), ('manipulated', 1), ('extracted', 1), ('reported', 1), ('upon', 1), ('accurately', 1), ('modeling', 1), ('beginner', 1), ('guide', 1), ('teach', 1), ('technique', 1), ('gathering', 1), ('business', 1), ('requirement', 1), ('using', 1), ('produce', 1), ('conceptual', 1), ('logical', 1), ('physical', 1), ('database', 1), ('design', 1), ('detail', 1)]
[('ebay', 3), ('seller', 3), ('tax', 3), ('hundred', 2), ('legal', 2), ('deduction', 2), ('tip', 2), ('online', 1), ('take', 1), ('note', 1), ('reduce', 1), ('even', 1), ('eliminate', 1), ('pay', 1), ('using', 1), ('insider', 1), ('loophole', 1), ('discover', 1), ('little', 1), ('known', 1), ('completely', 1), ('reporting', 1), ('unique', 1), ('designed', 1), ('benefit', 1)]
[('study', 2), ('exam', 2), ('best', 1), ('fully', 1), ('integrated', 1), ('system', 1), ('available', 1), ('written', 1), ('lead', 1), ('developer', 1), ('hundred', 1), ('practice', 1), ('question', 1), ('hand', 1), ('exercise', 1), ('scjp', 1), ('sun', 1), ('certified', 1), ('programmer', 1), ('java', 1), ('guide', 1), ('cover', 1), ('need', 1), ('know', 1), ('show', 1), ('prepare', 1), ('challenging', 1), ('complete', 1), ('coverage', 1), ('official', 1)]
[('mdm', 2), ('latest', 1), ('technique', 1), ('building', 1), ('customer', 1), ('focused', 1), ('enterprise', 1), ('environment', 1), ('author', 1), ('appreciated', 1), ('complex', 1), ('multidimensional', 1), ('area', 1), ('set', 1), ('cover', 1), ('dimension', 1), ('sufficient', 1), ('detail', 1), ('provide', 1), ('adequate', 1), ('practical', 1), ('guidance', 1), ('anyone', 1), ('implementing', 1), ('necessarily', 1), ('make', 1), ('book', 1), ('rather', 1), ('long', 1)]
[('lambda', 4), ('java', 3), ('definitive', 1), ('guide', 1), ('expression', 1), ('mastering', 1), ('programming', 1), ('multicore', 1), ('world', 1), ('describes', 1), ('related', 1), ('feature', 1), ('se', 1), ('enable', 1), ('meet', 1), ('challenge', 1), ('next', 1), ('generation', 1), ('parallel', 1), ('hardware', 1), ('architecture', 1), ('book', 1), ('explains', 1), ('write', 1), ('use', 1), ('stream', 1), ('collection', 1)]
[('exam', 5), ('comptia', 3), ('server', 3), ('complete', 2), ('coverage', 2), ('every', 2), ('guide', 2), ('objective', 1), ('take', 1), ('confidence', 1), ('using', 1), ('highly', 1), ('effective', 1), ('self', 1), ('study', 1), ('certification', 1), ('sk', 1), ('offer', 1), ('topic', 1), ('latest', 1), ('version', 1), ('depth', 1), ('explanation', 1)]
[('website', 3), ('long', 1), ('take', 1), ('load', 1), ('web', 1), ('performance', 1), ('critical', 1), ('small', 1), ('medium', 1), ('sized', 1), ('massive', 1), ('receive', 1), ('ton', 1), ('hit', 1), ('pour', 1), ('money', 1), ('time', 1), ('rewriting', 1), ('code', 1), ('replacing', 1), ('infrastructure', 1), ('first', 1), ('consider', 1), ('reverse', 1), ('caching', 1), ('proxy', 1), ('server', 1), ('varnish', 1), ('practical', 1)]
[('security', 2), ('operation', 2), ('center', 2), ('complete', 1), ('guide', 1), ('building', 1), ('operating', 1), ('managing', 1), ('environment', 1), ('drawing', 1), ('experience', 1), ('hundred', 1), ('customer', 1), ('ranging', 1), ('fortune', 1), ('enterprise', 1), ('large', 1), ('military', 1), ('organisation', 1), ('three', 1), ('leading', 1), ('expert', 1), ('thoroughly', 1), ('review', 1), ('soc', 1), ('model', 1), ('including', 1), ('virtual', 1), ('socs', 1), ('learn', 1)]
[('bluetooth', 3), ('low', 2), ('energy', 2), ('first', 1), ('complete', 1), ('guide', 1), ('work', 1), ('apply', 1), ('nbsp', 1), ('radical', 1), ('departure', 1), ('conventional', 1), ('technology', 1), ('ble', 1), ('enables', 1), ('breakthrough', 1), ('wireless', 1), ('application', 1)]
[('dita', 3), ('implementing', 2), ('information', 2), ('start', 1), ('finish', 1), ('best', 1), ('practice', 1), ('guide', 1), ('using', 1), ('nbsp', 1), ('darwin', 1), ('typing', 1), ('architecture', 1), ('today', 1), ('powerful', 1), ('toolbox', 1), ('constructing', 1), ('organization', 1), ('gain', 1), ('value', 1)]
[('analytics', 3), ('ecommerce', 3), ('data', 2), ('source', 2), ('profit', 1), ('throughout', 1), ('entire', 1), ('customer', 1), ('experience', 1), ('lifecycle', 1), ('make', 1), ('fast', 1), ('changing', 1), ('available', 1), ('executive', 1), ('strategist', 1), ('entrepreneur', 1), ('marketer', 1), ('analyst', 1), ('scientist', 1), ('nbsp', 1), ('complete', 1), ('single', 1), ('guide', 1)]
[('book', 2), ('code', 2), ('ebook', 1), ('printed', 1), ('include', 1), ('medium', 1), ('website', 1), ('access', 1), ('print', 1), ('supplement', 1), ('come', 1), ('packaged', 1), ('bound', 1), ('master', 1), ('powerful', 1), ('python', 1), ('standard', 1), ('library', 1), ('real', 1), ('example', 1), ('nbsp', 1)]
[('networking', 3), ('enterprise', 2), ('security', 2), ('automation', 2), ('course', 2), ('companion', 1), ('guide', 1), ('official', 1), ('supplemental', 1), ('textbook', 1), ('cisco', 1), ('academy', 1), ('ccna', 1), ('curriculum', 1), ('describes', 1)]
[('book', 2), ('nbsp', 2), ('ebook', 1), ('printed', 1), ('include', 1), ('medium', 1), ('website', 1), ('access', 1), ('code', 1), ('print', 1), ('supplement', 1), ('come', 1), ('packaged', 1), ('bound', 1), ('advance', 1), ('expert', 1), ('skill', 1), ('word', 1), ('earn', 1), ('credential', 1), ('prof', 1)]
[('learning', 3), ('machine', 2), ('system', 2), ('python', 2), ('complete', 1), ('beginner', 1), ('guide', 1), ('understanding', 1), ('building', 1), ('everyone', 1), ('help', 1), ('master', 1), ('process', 1), ('pattern', 1), ('strategy', 1), ('need', 1), ('build', 1), ('effective', 1)]
[('printed', 2), ('latex', 2), ('digial', 1), ('version', 1), ('book', 1), ('copyright', 1), ('companion', 1), ('long', 1), ('essential', 1), ('resource', 1), ('anyone', 1), ('using', 1), ('create', 1), ('high', 1), ('quality', 1), ('document', 1), ('completely', 1), ('updated', 1), ('edition', 1), ('brings', 1)]
[('easy', 2), ('step', 2), ('learning', 1), ('made', 1), ('done', 1), ('quickly', 1), ('outlook', 1), ('jump', 1), ('wherever', 1), ('need', 1), ('answer', 1), ('brisk', 1), ('lesson', 1), ('colourful', 1), ('screenshots', 1), ('show', 1), ('exactly', 1), ('follow', 1), ('guidance', 1), ('certified', 1), ('microsoft', 1), ('office', 1), ('specialist', 1), ('master', 1), ('learn', 1), ('practice', 1), ('new', 1), ('skill', 1), ('working', 1), ('sample', 1), ('content', 1), ('look', 1)]
[('nan', 1)]
[('network', 2), ('security', 1), ('professional', 1), ('already', 1), ('know', 1), ('t', 1), ('run', 1), ('av', 1), ('software', 1), ('firewall', 1), ('lock', 1), ('system', 1), ('use', 1), ('encryption', 1), ('watch', 1), ('traffic', 1), ('follow', 1), ('best', 1), ('practice', 1), ('hire', 1), ('expensive', 1), ('consultant', 1)]
[('answer', 2), ('step', 2), ('need', 1), ('quickly', 1), ('sharepoint', 1), ('demand', 1), ('provides', 1), ('visual', 1), ('format', 1), ('show', 1), ('exactly', 1), ('lot', 1), ('full', 1), ('color', 1), ('illustration', 1), ('easy', 1), ('follow', 1), ('instruction', 1), ('nbsp', 1), ('inside', 1), ('book', 1), ('take', 1)]
[('epub', 3), ('almost', 1), ('overnight', 1), ('become', 1), ('favored', 1), ('standard', 1), ('displaying', 1), ('digital', 1), ('text', 1), ('ereaders', 1), ('specification', 1), ('powerful', 1), ('method', 1), ('creating', 1), ('gorgeous', 1), ('ebooks', 1), ('capable', 1), ('reader', 1), ('ipad', 1), ('nook', 1), ('kindle', 1), ('ala', 1), ('far', 1)]
[('programmer', 2), ('deitel', 2), ('programming', 2), ('code', 2), ('professional', 1), ('guide', 1), ('procedural', 1), ('working', 1), ('example', 1), ('nbsp', 1), ('written', 1), ('background', 1), ('high', 1), ('level', 1), ('language', 1), ('book', 1), ('applies', 1), ('signature', 1), ('live', 1)]
[('volume', 3), ('nbsp', 3), ('boxed', 2), ('set', 2), ('art', 2), ('computer', 2), ('programming', 2), ('check', 1), ('brings', 1), ('together', 1), ('elegant', 1), ('case', 1), ('isbn', 1), ('fascicle', 1), ('mmix', 1), ('risc', 1)]
[('java', 5), ('advanced', 2), ('updated', 2), ('core', 2), ('guide', 1), ('programming', 1), ('fully', 1), ('long', 1), ('recognized', 1), ('leading', 1), ('nonsense', 1), ('tutorial', 1), ('reference', 1), ('experienced', 1), ('programmer', 1), ('want', 1), ('write', 1), ('robust', 1), ('code', 1), ('real', 1), ('world', 1), ('application', 1), ('volume', 1), ('ii', 1), ('feature', 1), ('eleventh', 1), ('edition', 1)]
[('cluster', 2), ('application', 2), ('data', 2), ('create', 1), ('mongodb', 1), ('grow', 1), ('meet', 1), ('need', 1), ('short', 1), ('concise', 1), ('book', 1), ('guideline', 1), ('setting', 1), ('using', 1), ('store', 1), ('large', 1), ('volume', 1), ('learn', 1), ('access', 1), ('efficiently', 1), ('process', 1), ('understand', 1), ('make', 1), ('work', 1), ('distributed', 1), ('database', 1)]
[('hadoop', 3), ('guide', 2), ('hive', 2), ('need', 1), ('move', 1), ('relational', 1), ('database', 1), ('application', 1), ('comprehensive', 1), ('introduces', 1), ('apache', 1), ('data', 1), ('warehouse', 1), ('infrastructure', 1), ('quickly', 1), ('learn', 1), ('use', 1), ('sql', 1), ('dialect', 1), ('hiveql', 1), ('summarize', 1), ('query', 1), ('analyze', 1), ('large', 1), ('datasets', 1), ('stored', 1), ('distributed', 1), ('filesystem', 1), ('example', 1), ('driven', 1), ('show', 1)]
[('software', 3), ('architecture', 3), ('essay', 2), ('ingredient', 1), ('robust', 1), ('elegant', 1), ('flexible', 1), ('maintainable', 1), ('beautiful', 1), ('answer', 1), ('question', 1), ('collection', 1), ('intriguing', 1), ('dozen', 1), ('today', 1), ('leading', 1), ('designer', 1), ('architect', 1), ('contributor', 1), ('present', 1), ('notable', 1), ('analyze', 1)]
[('computer', 2), ('library', 1), ('useful', 1), ('practitioner', 1), ('excellent', 1), ('tool', 1), ('entering', 1), ('field', 1), ('set', 1), ('vision', 1), ('algorithm', 1), ('work', 1), ('advertised', 1), ('william', 1), ('freeman', 1), ('science', 1), ('artificial', 1), ('intelligence', 1), ('laboratory', 1), ('massachusetts', 1), ('institute', 1), ('technology', 1), ('learning', 1), ('opencv', 1), ('put', 1), ('middle', 1), ('rapidly', 1)]
[('java', 3), ('example', 3), ('best', 2), ('book', 2), ('learn', 2), ('author', 1), ('selling', 1), ('nutshell', 1), ('created', 1), ('entire', 1), ('real', 1), ('world', 1), ('programming', 1), ('third', 1), ('edition', 1), ('cover', 1), ('contains', 1), ('complete', 1), ('practical', 1), ('line', 1), ('densely', 1), ('commented', 1), ('professionally', 1), ('written', 1)]
[('soa', 4), ('java', 2), ('cookbook', 2), ('offer', 1), ('practical', 1), ('solution', 1), ('advice', 1), ('programmer', 1), ('charged', 1), ('implementing', 1), ('service', 1), ('oriented', 1), ('architecture', 1), ('organization', 1), ('instead', 1), ('providing', 1), ('another', 1), ('conceptual', 1), ('high', 1), ('level', 1), ('view', 1), ('show', 1), ('make', 1), ('work', 1), ('full', 1), ('xml', 1), ('code', 1), ('insert', 1), ('directly', 1), ('application', 1)]
[('software', 2), ('java', 1), ('message', 1), ('service', 1), ('second', 1), ('edition', 1), ('thorough', 1), ('introduction', 1), ('standard', 1), ('api', 1), ('support', 1), ('messaging', 1), ('exchange', 1), ('crucial', 1), ('data', 1), ('among', 1), ('network', 1), ('computer', 1), ('learn', 1), ('jms', 1), ('help', 1), ('solve', 1), ('many', 1), ('architectural', 1), ('challenge', 1), ('integrating', 1), ('dissimilar', 1), ('system', 1), ('application', 1), ('increasing', 1), ('scalability', 1)]
[('linux', 3), ('book', 3), ('fedora', 3), ('neither', 1), ('starting', 1), ('dry', 1), ('reference', 1), ('manual', 1), ('lot', 1), ('offer', 1), ('coming', 1), ('operating', 1), ('system', 1), ('distros', 1), ('behdad', 1), ('esfahbod', 1), ('developer', 1), ('speed', 1), ('quickly', 1), ('securely', 1), ('designed', 1), ('distribution', 1), ('includes', 1), ('massive', 1), ('selection', 1), ('free', 1), ('software', 1)]
[('multi', 1), ('core', 1), ('chip', 1), ('intel', 1), ('amd', 1), ('offer', 1), ('dramatic', 1), ('boost', 1), ('speed', 1), ('responsiveness', 1), ('plenty', 1), ('opportunity', 1), ('multiprocessing', 1), ('ordinary', 1), ('desktop', 1), ('computer', 1), ('present', 1), ('challenge', 1), ('multithreading', 1), ('requirement', 1), ('good', 1), ('performance', 1), ('guide', 1), ('explains', 1), ('maximize', 1), ('benefit', 1), ('processor', 1)]
[('ejb', 2), ('want', 2), ('ford', 1), ('financial', 1), ('ibm', 1), ('victoria', 1), ('secret', 1), ('common', 1), ('enterprise', 1), ('javabeans', 1), ('industry', 1), ('standard', 1), ('platform', 1), ('independent', 1), ('reusable', 1), ('business', 1), ('component', 1), ('become', 1), ('sun', 1), ('microsystem', 1), ('latest', 1), ('developer', 1), ('certification', 1), ('whether', 1), ('certifiable', 1), ('learn', 1), ('technology', 1), ('inside', 1), ('head', 1), ('first', 1)]
[('cocoa', 3), ('class', 3), ('framework', 3), ('application', 2), ('collection', 1), ('certainly', 1), ('simple', 1), ('complete', 1), ('api', 1), ('set', 1), ('library', 1), ('development', 1), ('environment', 1), ('building', 1), ('tool', 1), ('run', 1), ('mac', 1), ('o', 1), ('divided', 1), ('essential', 1), ('foundation', 1), ('kit', 1)]
[('web', 4), ('rest', 2), ('design', 2), ('service', 2), ('philosophy', 1), ('captured', 1), ('imagination', 1), ('enterprise', 1), ('developer', 1), ('alike', 1), ('using', 1), ('approach', 1), ('develop', 1), ('real', 1), ('picnic', 1), ('cookbook', 1), ('includes', 1), ('recipe', 1), ('help', 1), ('take', 1), ('advantage', 1), ('infrastructure', 1), ('learn', 1), ('way', 1), ('restful', 1), ('client', 1)]
[('javascript', 2), ('developer', 1), ('rely', 1), ('heavily', 1), ('build', 1), ('interactive', 1), ('quick', 1), ('responding', 1), ('web', 1), ('application', 1), ('problem', 1), ('line', 1), ('code', 1), ('slow', 1), ('apps', 1), ('book', 1), ('reveals', 1), ('technique', 1), ('strategy', 1), ('help', 1), ('eliminate', 1), ('performance', 1), ('bottleneck', 1), ('development', 1), ('learn', 1), ('improve', 1)]
[('iphone', 2), ('app', 2), ('design', 2), ('idea', 1), ('along', 1), ('everyone', 1), ('planet', 1), ('set', 1), ('apart', 1), ('elegant', 1), ('efficient', 1), ('usability', 1), ('healthy', 1), ('dose', 1), ('personality', 1), ('accessible', 1), ('written', 1), ('guide', 1), ('show', 1), ('exceptional', 1), ('user', 1), ('experience', 1), ('ipod', 1), ('touch', 1), ('practical', 1), ('principle', 1), ('rich', 1)]
[('scala', 2), ('language', 2), ('learn', 1), ('need', 1), ('data', 1), ('scientist', 1), ('distributed', 1), ('computing', 1), ('expert', 1), ('appreciate', 1), ('object', 1), ('oriented', 1), ('functional', 1), ('programming', 1), ('practical', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('yet', 1), ('approachable', 1), ('introduction', 1), ('complete', 1), ('syntax', 1), ('diagram', 1), ('example', 1), ('exercise', 1), ('start', 1), ('core', 1), ('type', 1)]
[('software', 3), ('important', 1), ('today', 1), ('yet', 1), ('commercial', 1), ('value', 1), ('steadily', 1), ('declining', 1), ('microsoft', 1), ('instance', 1), ('seen', 1), ('gross', 1), ('margin', 1), ('decrease', 1), ('decade', 1), ('startup', 1), ('corporation', 1), ('alike', 1), ('distributing', 1), ('free', 1), ('worth', 1), ('million', 1), ('year', 1), ('ago', 1), ('welcome', 1), ('paradox', 1), ('reilly', 1)]
[('square', 4), ('rectangle', 4), ('apply', 2), ('subtype', 2), ('type', 1), ('inheritance', 1), ('phenomenon', 1), ('according', 1), ('say', 1), ('example', 1), ('every', 1), ('property', 1), ('general', 1), ('particular', 1), ('word', 1), ('supertype', 1), ('recognizing', 1), ('acting', 1), ('upon', 1)]
[('many', 1), ('organization', 1), ('big', 1), ('part', 1), ('devops', 1), ('appeal', 1), ('software', 1), ('automation', 1), ('using', 1), ('infrastructure', 1), ('code', 1), ('technique', 1), ('book', 1), ('present', 1), ('developer', 1), ('architect', 1), ('infra', 1), ('ops', 1), ('engineer', 1), ('practical', 1), ('option', 1), ('learn', 1), ('container', 1), ('centric', 1), ('approach', 1), ('openshift', 1), ('red', 1), ('hat', 1), ('cloud', 1), ('based', 1), ('paas', 1), ('help', 1), ('team', 1), ('deliver', 1), ('quality', 1)]
[('azure', 2), ('service', 2), ('big', 2), ('data', 2), ('analytics', 2), ('solution', 2), ('microsoft', 1), ('platform', 1), ('paas', 1), ('offering', 1), ('act', 1), ('support', 1), ('right', 1), ('project', 1), ('practical', 1), ('book', 1), ('help', 1), ('understand', 1), ('breadth', 1), ('organizing', 1), ('reference', 1), ('framework', 1), ('use', 1), ('crafting', 1)]
[('team', 2), ('platform', 1), ('designed', 1), ('rapid', 1), ('adaptation', 1), ('failure', 1), ('recovery', 1), ('amazon', 1), ('web', 1), ('service', 1), ('cloud', 1), ('computing', 1), ('programming', 1), ('traditional', 1), ('system', 1), ('administration', 1), ('tool', 1), ('automatic', 1), ('scaling', 1), ('instance', 1), ('replacement', 1), ('allow', 1), ('even', 1), ('small', 1), ('devops', 1), ('manage', 1), ('massively', 1), ('scalable', 1), ('application', 1), ('infrastructure', 1), ('member', 1), ('drop', 1), ('old', 1)]
[('method', 3), ('concept', 2), ('based', 2), ('textbook', 1), ('cover', 1), ('programming', 1), ('language', 1), ('software', 1), ('tool', 1), ('designing', 1), ('developing', 1), ('window', 1), ('web', 1), ('information', 1), ('system', 1), ('specifically', 1), ('data', 1), ('modeling', 1), ('design', 1), ('designed', 1), ('enable', 1), ('student', 1), ('professional', 1), ('engineering', 1), ('business', 1), ('science', 1), ('field', 1), ('learn', 1), ('date', 1)]
[('edition', 2), ('number', 2), ('theory', 2), ('cryptography', 2), ('topic', 2), ('building', 1), ('success', 1), ('first', 1), ('introduction', 1), ('second', 1), ('increase', 1), ('coverage', 1), ('popular', 1), ('andimportant', 1), ('integrating', 1), ('traditional', 1)]
[('student', 2), ('writing', 2), ('program', 2), ('code', 2), ('programming', 2), ('text', 1), ('provides', 1), ('stepping', 1), ('stone', 1), ('intermediate', 1), ('level', 1), ('go', 1), ('short', 1), ('real', 1), ('show', 1), ('identify', 1), ('eliminate', 1), ('bug', 1), ('write', 1), ('clean', 1), ('share', 1), ('others', 1), ('use', 1), ('standard', 1), ('linux', 1), ('based', 1), ('tool', 1), ('enhances', 1), ('skill', 1), ('explaining', 1), ('concept', 1)]
[('ro', 5), ('systematic', 1), ('approach', 1), ('learning', 1), ('robot', 1), ('programming', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('essential', 1), ('component', 1), ('detailed', 1), ('explanation', 1), ('simple', 1), ('code', 1), ('example', 1), ('along', 1), ('corresponding', 1), ('theory', 1), ('operation', 1), ('book', 1), ('explores', 1), ('organization', 1), ('understand', 1), ('package', 1), ('use', 1), ('tool', 1)]
[('computer', 4), ('security', 3), ('user', 2), ('information', 2), ('perform', 2), ('significant', 1), ('impact', 1), ('personal', 1), ('result', 1), ('action', 1), ('helping', 1), ('average', 1), ('broadly', 1), ('technology', 1), ('make', 1), ('sound', 1), ('decision', 1), ('literacy', 1), ('staying', 1), ('safe', 1), ('digital', 1), ('world', 1), ('focus', 1), ('practica', 1)]
[('fluid', 3), ('engine', 2), ('splash', 1), ('breaking', 1), ('wave', 1), ('turbulent', 1), ('swirling', 1), ('smoke', 1), ('mathematical', 1), ('dynamic', 1), ('varied', 1), ('continue', 1), ('challenging', 1), ('aspect', 1), ('animation', 1), ('development', 1), ('demonstrates', 1), ('create', 1), ('working', 1), ('use', 1), ('particle', 1), ('grid', 1), ('even', 1), ('combination', 1), ('core', 1), ('algorithm', 1)]
[('computer', 2), ('scientist', 2), ('praise', 1), ('second', 1), ('edition', 1), ('author', 1), ('done', 1), ('homework', 1), ('statistical', 1), ('tool', 1), ('needed', 1), ('particular', 1), ('challenge', 1), ('encounter', 1), ('taken', 1), ('care', 1), ('select', 1), ('example', 1), ('interesting', 1), ('practical', 1), ('content', 1), ('illustrated', 1), ('numerous', 1), ('figure', 1), ('concludes', 1)]
[('computer', 1), ('organization', 1), ('design', 1), ('fourth', 1), ('edition', 1), ('updated', 1), ('new', 1), ('exercise', 1), ('improvement', 1), ('throughout', 1), ('suggested', 1), ('instructor', 1), ('teaching', 1), ('book', 1), ('cover', 1), ('revolutionary', 1), ('change', 1), ('sequential', 1), ('parallel', 1), ('computing', 1)]
[('classic', 1), ('reference', 1), ('copy', 1), ('print', 1), ('massively', 1), ('expanded', 1), ('thoroughly', 1), ('updated', 1), ('include', 1), ('state', 1), ('art', 1), ('method', 1), ('new', 1), ('full', 1), ('color', 1), ('image', 1), ('ilm', 1), ('compositing', 1), ('important', 1), ('tool', 1), ('use', 1)]
[('visual', 3), ('application', 2), ('design', 2), ('imagine', 1), ('easier', 1), ('creating', 1), ('web', 1), ('mobile', 1), ('practical', 1), ('concise', 1), ('hand', 1), ('guide', 1), ('usability', 1), ('get', 1), ('nitty', 1), ('gritty', 1), ('applying', 1), ('principle', 1), ('complex', 1)]
[('practical', 1), ('lock', 1), ('picking', 1), ('second', 1), ('edition', 1), ('instructional', 1), ('manual', 1), ('cover', 1), ('everything', 1), ('straightforward', 1), ('lockpicking', 1), ('quick', 1), ('entry', 1), ('technique', 1), ('shimming', 1), ('bumping', 1), ('bypassing', 1), ('written', 1), ('deviant', 1), ('ollam', 1), ('security', 1), ('industry', 1)]
[('human', 2), ('interaction', 2), ('empirical', 2), ('research', 2), ('computer', 1), ('perspective', 1), ('definitive', 1), ('guide', 1), ('hci', 1), ('book', 1), ('begin', 1), ('foundational', 1), ('topic', 1), ('including', 1), ('historical', 1), ('context', 1), ('factor', 1), ('element', 1), ('fundamental', 1)]
[('architecture', 3), ('enterprise', 2), ('togaf', 2), ('modeling', 1), ('explains', 1), ('everything', 1), ('need', 1), ('know', 1), ('effectively', 1), ('model', 1), ('open', 1), ('group', 1), ('framework', 1), ('leading', 1), ('ea', 1), ('standard', 1), ('solution', 1), ('focused', 1), ('reference', 1), ('present', 1), ('key', 1)]
[('system', 2), ('sophistication', 1), ('cyber', 1), ('attack', 1), ('increase', 1), ('understanding', 1), ('defend', 1), ('critical', 1), ('infrastructure', 1), ('energy', 1), ('production', 1), ('water', 1), ('gas', 1), ('vital', 1), ('becomes', 1), ('important', 1), ('heavily', 1), ('mandated', 1), ('industrial', 1), ('network', 1), ('security', 1), ('second', 1)]
[('networking', 2), ('richard', 1), ('stevens', 1), ('addison', 1), ('wesley', 1), ('published', 1), ('classic', 1), ('tcp', 1), ('ip', 1), ('illustrated', 1), ('model', 1), ('book', 1), ('brilliant', 1), ('unfettered', 1), ('approach', 1), ('concept', 1), ('proven', 1), ('time', 1), ('popular', 1), ('reader', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('javascript', 3), ('design', 2), ('pattern', 2), ('pro', 1), ('start', 1), ('basic', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('applicable', 1), ('including', 1), ('making', 1), ('expressive', 1), ('inheritance', 1), ('encapsulation', 1), ('information', 1), ('hiding', 1)]
[('game', 2), ('learn', 1), ('build', 1), ('fully', 1), ('functional', 1), ('inspired', 1), ('atari', 1), ('classic', 1), ('asteroid', 1), ('using', 1), ('html', 1), ('cs', 1), ('javascript', 1), ('developing', 1), ('never', 1), ('easier', 1), ('new', 1), ('web', 1), ('technology', 1), ('allows', 1), ('even', 1), ('beginner', 1), ('developer', 1), ('turn', 1)]
[('database', 4), ('outside', 1), ('world', 1), ('enterprise', 1), ('computing', 1), ('enables', 1), ('huge', 1), ('range', 1), ('software', 1), ('hardware', 1), ('flex', 1), ('relational', 1), ('capability', 1), ('without', 1), ('baggage', 1), ('cost', 1), ('traditional', 1), ('management', 1), ('system', 1)]
[('java', 2), ('using', 2), ('spring', 2), ('configuration', 2), ('work', 1), ('aspect', 1), ('batch', 1), ('processing', 1), ('modern', 1), ('environment', 1), ('selection', 1), ('framework', 1), ('book', 1), ('provides', 1), ('date', 1), ('example', 1), ('latest', 1), ('technique', 1), ('based', 1), ('boot', 1)]
[('python', 2), ('nbsp', 2), ('familiarize', 1), ('basic', 1), ('engineering', 1), ('scientific', 1), ('computation', 1), ('using', 1), ('concise', 1), ('practical', 1), ('tutorial', 1), ('focused', 1), ('writing', 1), ('code', 1), ('learn', 1), ('concept', 1), ('introduction', 1), ('useful', 1), ('industry', 1), ('engineer', 1)]
[('jquery', 2), ('take', 1), ('office', 1), ('sharepoint', 1), ('project', 1), ('higher', 1), ('level', 1), ('using', 1), ('powerapps', 1), ('flow', 1), ('power', 1), ('bi', 1), ('javascript', 1), ('ui', 1), ('widget', 1), ('cascading', 1), ('style', 1), ('sheet', 1), ('cs', 1), ('book', 1), ('help', 1), ('create', 1), ('nbsp', 1), ('easier', 1), ('solution', 1), ('client', 1), ('side', 1)]
[('organization', 2), ('tried', 1), ('implement', 1), ('agile', 1), ('probably', 1), ('learned', 1), ('lot', 1), ('development', 1), ('practice', 1), ('teamwork', 1), ('process', 1), ('tool', 1), ('little', 1), ('manage', 1), ('yet', 1), ('managerial', 1), ('support', 1), ('often', 1)]
[('program', 2), ('distributed', 2), ('process', 2), ('modern', 1), ('computing', 1), ('usually', 1), ('among', 1), ('several', 1), ('fundamental', 1), ('challenge', 1), ('developing', 1), ('reliable', 1), ('secure', 1), ('support', 1), ('cooperation', 1), ('required', 1), ('execute', 1), ('common', 1), ('task', 1), ('even', 1)]
[('business', 2), ('process', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('management', 1), ('bpm', 1), ('held', 1), ('brisbane', 1), ('australia', 1), ('september', 1), ('paper', 1), ('organized', 1), ('topical', 1), ('section', 1), ('maturity', 1)]
[('youtube', 1), ('changed', 1), ('viewing', 1), ('habit', 1), ('million', 1), ('around', 1), ('world', 1), ('pioneering', 1), ('vloggers', 1), ('zoella', 1), ('sugg', 1), ('jack', 1), ('finn', 1), ('harries', 1), ('caspar', 1), ('lee', 1), ('marcus', 1), ('butler', 1), ('many', 1), ('others', 1), ('built', 1), ('channel', 1), ('scratch', 1), ('broke', 1), ('mould', 1), ('put', 1), ('life', 1), ('online', 1), ('see', 1), ('used', 1), ('called', 1), ('famous', 1), ('star', 1)]
[('second', 1), ('edition', 1), ('grune', 1), ('jacob', 1), ('brilliant', 1), ('work', 1), ('present', 1), ('new', 1), ('development', 1), ('discovery', 1), ('made', 1), ('field', 1), ('parsing', 1), ('referred', 1), ('syntax', 1), ('analysis', 1), ('continues', 1), ('essential', 1), ('part', 1), ('computer', 1), ('science', 1)]
[('math', 3), ('python', 2), ('learn', 1), ('getting', 1), ('creative', 1), ('code', 1), ('use', 1), ('programming', 1), ('language', 1), ('transform', 1), ('learning', 1), ('high', 1), ('school', 1), ('level', 1), ('topic', 1), ('algebra', 1), ('geometry', 1), ('trigonometry', 1), ('calculus', 1), ('adventure', 1), ('show', 1), ('harness', 1), ('power', 1)]
[('code', 2), ('cucumber', 2), ('customer', 1), ('want', 1), ('rock', 1), ('solid', 1), ('bug', 1), ('free', 1), ('software', 1), ('exactly', 1), ('expect', 1), ('yet', 1), ('always', 1), ('articulate', 1), ('idea', 1), ('clearly', 1), ('enough', 1), ('turn', 1), ('need', 1), ('testing', 1), ('communication', 1), ('requirement', 1), ('tool', 1), ('rolled', 1), ('book', 1), ('updated', 1), ('rail', 1)]
[('jumpstart', 2), ('make', 1), ('book', 1), ('provide', 1), ('quick', 1), ('way', 1), ('maker', 1), ('knowledge', 1), ('certain', 1), ('topic', 1), ('jumpstarting', 1), ('take', 1), ('reader', 1), ('page', 1), ('journey', 1), ('installing', 1), ('raspberry', 1), ('pi', 1), ('creating', 1), ('first', 1), ('hello', 1), ('world', 1), ('program', 1), ('building', 1), ('programming', 1), ('handheld', 1), ('color', 1), ('memory', 1), ('game', 1), ('using', 1), ('pushbuttons', 1), ('led', 1)]
[('pmi', 2), ('acp', 2), ('certification', 2), ('revised', 1), ('version', 1), ('passing', 1), ('project', 1), ('management', 1), ('institute', 1), ('agile', 1), ('certified', 1), ('practitioner', 1), ('examination', 1), ('wont', 1), ('easy', 1), ('youll', 1), ('boost', 1), ('chance', 1), ('success', 1), ('consult', 1), ('study', 1), ('guide', 1), ('vivek', 1), ('vaishampayan', 1), ('information', 1), ('technology', 1), ('expert', 1), ('hold', 1), ('several', 1), ('including', 1), ('designation', 1)]
[('intelligence', 2), ('collection', 2), ('osint', 1), ('rapidly', 1), ('evolving', 1), ('approach', 1), ('wide', 1), ('application', 1), ('make', 1), ('useful', 1), ('methodology', 1), ('numerous', 1), ('practice', 1), ('including', 1), ('within', 1), ('criminal', 1), ('investigation', 1), ('community', 1), ('tao', 1), ('open', 1), ('source', 1), ('guide', 1), ('cutting', 1), ('edge', 1), ('information', 1), ('capability', 1)]
[('exploring', 3), ('chromebook', 3), ('updated', 2), ('step', 2), ('cover', 1), ('new', 1), ('feature', 1), ('perfect', 1), ('companion', 1), ('written', 1), ('best', 1), ('selling', 1), ('technology', 1), ('author', 1), ('lecturer', 1), ('computer', 1), ('trainer', 1), ('kevin', 1), ('wilson', 1), ('packed', 1), ('instruction', 1), ('full', 1), ('color', 1), ('photo', 1), ('illustration', 1), ('helpful', 1), ('tip', 1), ('video', 1), ('demo', 1)]
[('top', 1), ('researcher', 1), ('investigate', 1), ('main', 1), ('challenge', 1), ('state', 1), ('art', 1), ('automated', 1), ('negotiation', 1), ('discus', 1), ('potential', 1), ('application', 1)]
[('book', 1), ('equips', 1), ('student', 1), ('crucial', 1), ('mathematical', 1), ('algorithmic', 1), ('tool', 1), ('understand', 1), ('complete', 1), ('computer', 1), ('vision', 1), ('system', 1)]
[('leader', 1), ('academia', 1), ('industry', 1), ('offer', 1), ('guidance', 1), ('professional', 1), ('general', 1), ('reader', 1), ('ethical', 1), ('question', 1), ('posed', 1), ('modern', 1), ('technology', 1)]
[('explores', 1), ('ethical', 1), ('issue', 1), ('cyberpsychology', 1), ('research', 1), ('praxis', 1), ('arise', 1), ('algorithmically', 1), ('paired', 1), ('technology', 1)]
[('social', 3), ('medium', 2), ('mining', 2), ('integrates', 1), ('network', 1), ('analysis', 1), ('data', 1), ('provide', 1), ('understanding', 1), ('potential', 1)]
[('definitive', 1), ('history', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('dream', 1), ('early', 1), ('pioneer', 1), ('achievement', 1), ('modern', 1), ('research', 1)]
[('artificial', 1), ('neural', 1), ('network', 1), ('learning', 1), ('statistical', 1), ('mechanic', 1), ('background', 1), ('material', 1), ('mathematics', 1), ('physic', 1), ('example', 1), ('exercise', 1), ('textbook', 1), ('reference', 1)]
[('book', 1), ('first', 1), ('published', 1), ('illustrates', 1), ('rule', 1), ('java', 1), ('code', 1), ('writing', 1), ('parallel', 1), ('example', 1), ('correct', 1), ('incorrect', 1), ('usage', 1)]
[('practically', 1), ('minded', 1), ('software', 1), ('engineering', 1), ('textbook', 1), ('aimed', 1), ('final', 1), ('year', 1), ('undergraduate', 1), ('graduate', 1), ('student', 1)]
[('contains', 1), ('state', 1), ('art', 1), ('algorithm', 1), ('dealing', 1), ('multiple', 1), ('precision', 1), ('integer', 1), ('floating', 1), ('point', 1), ('number', 1), ('ready', 1), ('implement', 1), ('format', 1)]
[('system', 3), ('software', 2), ('technique', 2), ('designer', 1), ('architect', 1), ('building', 1), ('need', 1), ('aware', 1), ('construction', 1), ('available', 1), ('choose', 1), ('one', 1), ('appropriate', 1), ('book', 1), ('provides', 1), ('implementer', 1), ('guide', 1), ('different', 1), ('complete', 1), ('development', 1), ('process', 1), ('definition', 1)]
[('edited', 1), ('volume', 1), ('written', 1), ('leading', 1), ('expert', 1), ('providing', 1), ('state', 1), ('art', 1), ('survey', 1), ('line', 1), ('learning', 1), ('neural', 1), ('network', 1)]
[('cover', 1), ('whole', 1), ('spectrum', 1), ('finite', 1), ('state', 1), ('method', 1), ('theory', 1), ('practical', 1), ('application', 1)]
[('wordpress', 4), ('web', 2), ('know', 1), ('simple', 1), ('approachable', 1), ('reference', 1), ('dummy', 1), ('th', 1), ('edition', 1), ('help', 1), ('reader', 1), ('discover', 1), ('power', 1), ('content', 1), ('building', 1), ('tool', 1), ('builder', 1), ('created', 1), ('million', 1), ('website', 1), ('using', 1)]
[('step', 3), ('autonomous', 2), ('vehicle', 2), ('offer', 1), ('guide', 1), ('building', 1), ('robot', 1), ('source', 1), ('code', 1), ('accompanying', 1), ('video', 1), ('first', 1), ('book', 1), ('kind', 1), ('detailed', 1), ('creating', 1)]
[('git', 2), ('development', 2), ('professional', 2), ('leverage', 1), ('power', 1), ('smooth', 1), ('cycle', 1), ('take', 1), ('approach', 1), ('learning', 1), ('massively', 1), ('popular', 1), ('software', 1), ('tool', 1), ('provides', 1), ('date', 1)]
[('comprehensive', 1), ('reference', 1), ('newest', 1), ('version', 1), ('world', 1), ('popular', 1), ('spreadsheet', 1), ('application', 1), ('excel', 1), ('john', 1), ('walkenbach', 1), ('name', 1), ('synonymous', 1), ('excellence', 1), ('computer', 1), ('book', 1), ('decipher', 1), ('complex', 1), ('technical', 1)]
[('new', 2), ('edition', 2), ('book', 2), ('influential', 1), ('managing', 1), ('software', 1), ('hardware', 1), ('testing', 1), ('top', 1), ('selling', 1), ('rex', 1), ('black', 1), ('walk', 1), ('step', 1), ('necessary', 1), ('manage', 1)]
[('photoshop', 2), ('restoration', 2), ('retouching', 2), ('new', 2), ('adobe', 1), ('c', 1), ('digital', 1), ('photographer', 1), ('complete', 1), ('guide', 1), ('whether', 1), ('using', 1), ('year', 1), ('learn', 1), ('lot', 1)]
[('guide', 2), ('twitter', 2), ('fully', 1), ('updated', 1), ('new', 1), ('edition', 1), ('fun', 1), ('easy', 1), ('getting', 1), ('running', 1), ('half', 1), ('billion', 1), ('registered', 1), ('user', 1), ('continues', 1), ('grow', 1), ('leap', 1), ('bound', 1), ('handy', 1)]
[('legal', 2), ('cyber', 2), ('security', 2), ('book', 1), ('examines', 1), ('policy', 1), ('aspect', 1), ('take', 1), ('needed', 1), ('look', 1), ('geopolitical', 1), ('perspective', 1), ('lens', 1), ('seek', 1), ('broaden', 1), ('reader', 1), ('understanding', 1), ('political', 1), ('consideration', 1), ('individual', 1), ('corporation', 1), ('law', 1), ('enforcement', 1), ('regulatory', 1), ('body', 1), ('management', 1)]
[('human', 2), ('bina', 2), ('virtually', 1), ('explores', 1), ('distant', 1), ('future', 1), ('look', 1), ('cyberconsciousness', 1), ('simulation', 1), ('brain', 1), ('via', 1), ('software', 1), ('computer', 1), ('technology', 1), ('allows', 1), ('consciousness', 1), ('present', 1), ('forever', 1), ('meet', 1), ('world', 1), ('sentient', 1), ('robot', 1), ('commissioned', 1), ('martine', 1), ('rothblatt', 1), ('created', 1), ('hanson', 1), ('robotics', 1)]
[('oracle', 5), ('olap', 3), ('product', 2), ('essbase', 2), ('book', 1), ('cover', 1), ('compare', 1), ('online', 1), ('analytic', 1), ('processing', 1), ('acquisition', 1), ('hyperion', 1), ('system', 1), ('find', 1), ('owning', 1), ('capable', 1), ('market', 1), ('option', 1), ('database', 1), ('written', 1), ('knowledgeable', 1), ('expert', 1)]
[('publisher', 2), ('product', 2), ('exam', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('fully', 1), ('updated', 1), ('focused', 1), ('study', 1), ('aid', 1), ('cover', 1), ('everything', 1), ('need', 1), ('know', 1), ('show', 1), ('prepare', 1), ('comptia', 1), ('security', 1), ('hundred', 1)]
[('security', 4), ('end', 2), ('complete', 2), ('reference', 2), ('develop', 1), ('implement', 1), ('effective', 1), ('program', 1), ('today', 1), ('complex', 1), ('world', 1), ('mobile', 1), ('platform', 1), ('cloud', 1), ('computing', 1), ('ubiquitous', 1), ('data', 1), ('access', 1), ('put', 1), ('new', 1), ('demand', 1), ('every', 1), ('professional', 1), ('information', 1), ('second', 1), ('edition', 1), ('previously', 1), ('titled', 1), ('network', 1)]
[('photoshop', 2), ('unlocking', 1), ('key', 1), ('perfect', 1), ('selection', 1), ('amazing', 1), ('effect', 1), ('totally', 1), ('realistic', 1), ('composite', 1), ('compositing', 1), ('hottest', 1), ('trend', 1), ('photography', 1), ('today', 1), ('portrait', 1), ('photographer', 1), ('designer', 1), ('walk', 1), ('life', 1)]
[('looking', 1), ('complete', 1), ('treatment', 1), ('business', 1), ('intelligence', 1), ('go', 1), ('book', 1), ('larissa', 1), ('moss', 1), ('shaku', 1), ('atre', 1), ('covered', 1), ('base', 1), ('cohesive', 1), ('logical', 1), ('order', 1), ('making', 1), ('easy', 1), ('reader', 1), ('follow', 1), ('line', 1)]
[('digital', 1), ('version', 1), ('printed', 1), ('book', 1), ('copyright', 1), ('nbsp', 1), ('based', 1), ('award', 1), ('winning', 1), ('doctoral', 1), ('thesis', 1), ('carnegie', 1), ('mellon', 1), ('university', 1), ('measuring', 1), ('managing', 1), ('performance', 1), ('organization', 1), ('present', 1), ('captivating', 1), ('analysis', 1), ('peril', 1)]
[('skype', 2), ('microsoft', 2), ('unified', 2), ('communication', 2), ('comprehensive', 1), ('realistic', 1), ('useful', 1), ('guide', 1), ('business', 1), ('powerful', 1), ('system', 1), ('four', 1), ('leading', 1), ('consultant', 1), ('share', 1), ('trench', 1), ('guidance', 1), ('planning', 1), ('integration', 1), ('migration', 1), ('deployment', 1), ('administration', 1), ('author', 1), ('thoroughly', 1), ('introduce', 1)]
[('computer', 4), ('augmented', 2), ('reality', 2), ('human', 2), ('overlaying', 1), ('generated', 1), ('information', 1), ('real', 1), ('world', 1), ('ar', 1), ('amplifies', 1), ('perception', 1), ('cognition', 1), ('remarkable', 1), ('way', 1), ('working', 1), ('fast', 1), ('growing', 1), ('field', 1), ('requires', 1), ('knowledge', 1), ('multiple', 1), ('discipline', 1), ('including', 1), ('vision', 1), ('graphic', 1), ('interaction', 1), ('principle', 1)]
[('freebsd', 2), ('extensively', 2), ('third', 2), ('complete', 1), ('authoritative', 1), ('technical', 1), ('guide', 1), ('kernel', 1), ('internal', 1), ('structure', 1), ('updated', 1), ('cover', 1), ('major', 1), ('improvement', 1), ('version', 1), ('approximately', 1), ('edition', 1), ('content', 1), ('completely', 1), ('new', 1), ('another', 1), ('rewritten', 1), ('three', 1), ('long', 1), ('time', 1), ('project', 1)]
[('algorithm', 2), ('robert', 1), ('sedgewick', 1), ('provides', 1), ('current', 1), ('comprehensive', 1), ('introduction', 1), ('important', 1), ('focus', 1), ('time', 1), ('graph', 1), ('increasingly', 1), ('critical', 1), ('wide', 1), ('range', 1), ('application', 1), ('network', 1), ('connectivity', 1)]
[('library', 3), ('standard', 2), ('tutorial', 1), ('reference', 1), ('describes', 1), ('incorporated', 1), ('new', 1), ('ansi', 1), ('iso', 1), ('language', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('documentation', 1), ('component', 1), ('including', 1), ('introduction', 1), ('purpose', 1), ('design', 1), ('clearly', 1), ('written', 1), ('explanation', 1), ('complex', 1), ('concept', 1), ('practical', 1)]
[('scrum', 2), ('time', 1), ('extend', 1), ('benefit', 1), ('greater', 1), ('agility', 1), ('higher', 1), ('quality', 1), ('product', 1), ('lower', 1), ('cost', 1), ('individual', 1), ('team', 1), ('entire', 1), ('enterprise', 1), ('lack', 1), ('prescribed', 1), ('rule', 1), ('friction', 1), ('change', 1), ('challenging', 1)]
[('book', 2), ('programming', 2), ('nbsp', 1), ('introduction', 1), ('core', 1), ('principle', 1), ('generic', 1), ('experienced', 1), ('programmer', 1), ('author', 1), ('work', 1), ('example', 1), ('showing', 1), ('analyse', 1), ('requirement', 1), ('algorithm', 1), ('make', 1), ('general', 1), ('possible', 1), ('includes', 1), ('several', 1), ('law', 1), ('particular', 1), ('interest', 1), ('building', 1), ('software', 1)]
[('o', 2), ('covering', 1), ('bulk', 1), ('need', 1), ('know', 1), ('develop', 1), ('full', 1), ('featured', 1), ('application', 1), ('edition', 1), ('updated', 1), ('yosemite', 1), ('xcode', 1), ('swift', 1), ('written', 1), ('engaging', 1), ('tutorial', 1), ('style', 1), ('class', 1), ('tested', 1), ('clarity', 1), ('accuracy', 1), ('invaluable', 1), ('resource', 1), ('mac', 1), ('programmer', 1), ('author', 1), ('introduce', 1), ('commonly', 1), ('used', 1)]
[('vb', 2), ('make', 2), ('learn', 1), ('master', 1), ('building', 1), ('complete', 1), ('feature', 1), ('rich', 1), ('application', 1), ('navigate', 1), ('discover', 1), ('new', 1), ('shortcut', 1), ('work', 1), ('object', 1), ('collection', 1), ('event', 1), ('build', 1), ('attractive', 1), ('highly', 1), ('functional', 1), ('user', 1), ('interface', 1), ('form', 1), ('control', 1), ('module', 1), ('procedure', 1), ('efficiently', 1), ('store', 1), ('data', 1), ('program', 1), ('database', 1)]
[('oracle', 2), ('minute', 2), ('cover', 1), ('dbms', 1), ('version', 1), ('xe', 1), ('nbsp', 1), ('sam', 1), ('teach', 1), ('pl', 1), ('sql', 1), ('offer', 1), ('straightforward', 1), ('practical', 1), ('answer', 1), ('need', 1), ('fast', 1), ('result', 1), ('working', 1), ('book', 1), ('lesson', 1), ('le', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('security', 3), ('new', 2), ('computer', 2), ('book', 1), ('author', 1), ('year', 1), ('best', 1), ('selling', 1), ('classic', 1), ('computing', 1), ('take', 1), ('fresh', 1), ('contemporary', 1), ('powerfully', 1), ('relevant', 1), ('approach', 1), ('introducing', 1), ('nbsp', 1), ('organised', 1), ('around', 1), ('attack', 1), ('mitigation', 1), ('pfleegers', 1), ('analyzing', 1), ('attract', 1), ('student', 1), ('attention', 1), ('building', 1)]
[('network', 2), ('comprehensive', 1), ('guide', 1), ('deployment', 1), ('reference', 1), ('building', 1), ('flexible', 1), ('data', 1), ('centre', 1), ('fabric', 1), ('vxlan', 1), ('bgp', 1), ('evpn', 1), ('technology', 1), ('writing', 1), ('experienced', 1), ('professional', 1), ('three', 1), ('leading', 1), ('cisco', 1), ('expert', 1), ('address', 1), ('everything', 1), ('standard', 1), ('protocol', 1), ('function', 1), ('configuration', 1), ('operation', 1), ('author', 1), ('first', 1), ('explain', 1)]
[('networking', 3), ('advanced', 2), ('practical', 1), ('guide', 1), ('third', 1), ('edition', 1), ('take', 1), ('pragmatic', 1), ('hand', 1), ('approach', 1), ('teaching', 1), ('modern', 1), ('concept', 1), ('network', 1), ('administrator', 1), ('point', 1), ('view', 1), ('thoroughly', 1), ('updated', 1), ('latest', 1), ('technology', 1)]
[('agile', 3), ('software', 2), ('development', 2), ('highly', 1), ('stimulating', 1), ('rich', 1), ('book', 1), ('author', 1), ('deep', 1), ('background', 1), ('give', 1), ('tour', 1), ('de', 1), ('force', 1), ('emerging', 1), ('method', 1), ('tom', 1), ('gilb', 1), ('nbsp', 1), ('model', 1), ('taken', 1), ('world', 1), ('storm', 1)]
[('configuration', 2), ('management', 2), ('critical', 2), ('successfully', 1), ('implement', 1), ('high', 1), ('value', 1), ('process', 1), ('development', 1), ('environment', 1), ('nbsp', 1), ('system', 1), ('grown', 1), ('increasingly', 1), ('complex', 1), ('mission', 1), ('effective', 1), ('cm', 1), ('become', 1)]
[('embedded', 2), ('system', 2), ('programming', 2), ('first', 1), ('practical', 1), ('hand', 1), ('guide', 1), ('android', 1), ('nbsp', 1), ('today', 1), ('valuable', 1), ('discipline', 1), ('driven', 1), ('fast', 1), ('growing', 1), ('new', 1), ('field', 1), ('wearable', 1), ('technology', 1), ('internet', 1)]
[('development', 3), ('tool', 2), ('agile', 1), ('software', 1), ('team', 1), ('seeking', 1), ('better', 1), ('way', 1), ('create', 1), ('business', 1), ('facing', 1), ('automated', 1), ('test', 1), ('support', 1), ('right', 1), ('product', 1), ('cucumber', 1), ('rapidly', 1), ('becoming', 1), ('popular', 1), ('accomplishing', 1), ('objective', 1), ('book', 1), ('covered', 1), ('behavior', 1), ('driven', 1), ('bdd', 1), ('practice', 1), ('sufficient', 1), ('depth', 1)]
[('iot', 3), ('key', 2), ('solution', 2), ('building', 2), ('author', 1), ('begin', 1), ('high', 1), ('level', 1), ('overview', 1), ('internet', 1), ('thing', 1), ('introduce', 1), ('concept', 1), ('needed', 1), ('successfully', 1), ('design', 1), ('next', 1), ('walk', 1), ('technology', 1), ('protocol', 1), ('technical', 1), ('block', 1), ('combine', 1), ('complete', 1), ('essential', 1), ('present', 1), ('several', 1), ('detailed', 1)]
[('daydream', 2), ('android', 2), ('developer', 2), ('new', 1), ('google', 1), ('platform', 1), ('enables', 1), ('deliver', 1), ('advanced', 1), ('virtual', 1), ('reality', 1), ('game', 1), ('wide', 1), ('spectrum', 1), ('modern', 1), ('device', 1), ('first', 1), ('time', 1), ('comprehensive', 1), ('deep', 1), ('dive', 1), ('every', 1), ('designer', 1), ('multi', 1), ('award', 1), ('winning', 1), ('vr', 1), ('sam', 1), ('keene', 1), ('take', 1), ('hand', 1), ('approach', 1), ('leading', 1)]
[('node', 3), ('j', 3), ('build', 2), ('learning', 1), ('brings', 1), ('together', 1), ('knowledge', 1), ('javascript', 1), ('code', 1), ('needed', 1), ('master', 1), ('platform', 1), ('server', 1), ('side', 1), ('application', 1), ('extraordinary', 1), ('speed', 1), ('scalability', 1), ('start', 1), ('installing', 1), ('running', 1), ('understanding', 1), ('extension', 1), ('us', 1), ('quickly', 1), ('writing', 1), ('first', 1), ('app', 1), ('next', 1), ('building', 1), ('basic', 1)]
[('core', 4), ('comptia', 3), ('exam', 2), ('certification', 2), ('learn', 1), ('prepare', 1), ('practice', 1), ('success', 1), ('cert', 1), ('guide', 1), ('pearson', 1), ('leader', 1), ('learning', 1), ('master', 1), ('topic', 1), ('ass', 1), ('knowledge', 1), ('chapter', 1), ('ending', 1), ('quiz', 1), ('review', 1), ('key', 1)]
[('nan', 1)]
[('window', 2), ('internet', 2), ('everything', 1), ('casual', 1), ('user', 1), ('need', 1), ('know', 1), ('new', 1), ('pc', 1), ('software', 1), ('nbsp', 1), ('best', 1), ('selling', 1), ('beginner', 1), ('guide', 1), ('completely', 1), ('updated', 1), ('today', 1), ('popular', 1), ('tool', 1), ('including', 1)]
[('filemaker', 2), ('new', 1), ('allows', 1), ('build', 1), ('unparalleled', 1), ('database', 1), ('wide', 1), ('variety', 1), ('device', 1), ('window', 1), ('mac', 1), ('desktop', 1), ('iphones', 1), ('ipad', 1), ('million', 1), ('registered', 1), ('customer', 1), ('user', 1), ('average', 1), ('joes', 1), ('knowledge', 1), ('worker', 1)]
[('nan', 1)]
[('data', 2), ('center', 2), ('comprehensive', 1), ('guide', 1), ('designing', 1), ('operating', 1), ('reliable', 1), ('server', 1), ('environment', 1), ('nbsp', 1), ('keep', 1), ('cool', 1), ('clean', 1), ('scalable', 1), ('secure', 1), ('learn', 1), ('five', 1), ('principle', 1), ('effective', 1), ('design', 1), ('avoid', 1), ('natural', 1), ('made', 1), ('hazard', 1)]
[('nan', 1)]
[('programming', 2), ('skill', 2), ('historically', 1), ('considered', 1), ('critical', 1), ('biologist', 1), ('access', 1), ('vast', 1), ('amount', 1), ('biological', 1), ('data', 1), ('contained', 1), ('public', 1), ('database', 1), ('increasingly', 1), ('strong', 1), ('demand', 1), ('biology', 1), ('research', 1), ('development', 1), ('perl', 1), ('highly', 1), ('developed', 1), ('capacity', 1), ('string', 1), ('handling', 1), ('text', 1), ('processing', 1)]
[('mongodb', 2), ('application', 2), ('issue', 2), ('getting', 1), ('started', 1), ('easy', 1), ('begin', 1), ('building', 1), ('face', 1), ('complex', 1), ('tradeoff', 1), ('normalized', 1), ('denormalized', 1), ('data', 1), ('handle', 1), ('replica', 1), ('set', 1), ('failure', 1), ('failover', 1), ('collection', 1), ('tip', 1), ('trick', 1), ('hack', 1), ('help', 1), ('resolve', 1), ('everything', 1)]
[('development', 2), ('provides', 2), ('cocoa', 2), ('getting', 1), ('started', 1), ('io', 1), ('want', 1), ('firmer', 1), ('grasp', 1), ('basic', 1), ('practical', 1), ('guide', 1), ('clear', 1), ('view', 1), ('fundamental', 1), ('building', 1), ('block', 1), ('objective', 1), ('xcode', 1), ('touch', 1), ('learn', 1), ('object', 1), ('oriented', 1), ('concept', 1), ('understand', 1), ('use', 1), ('apple', 1), ('tool', 1), ('discover', 1), ('underlying', 1)]
[('learn', 2), ('make', 2), ('development', 2), ('work', 2), ('io', 2), ('mobile', 1), ('native', 1), ('app', 1), ('easier', 1), ('team', 1), ('frequently', 1), ('android', 1), ('plan', 1), ('transition', 1), ('hand', 1), ('guide', 1), ('show', 1), ('perform', 1), ('common', 1), ('task', 1), ('platform', 1), ('want', 1), ('network', 1), ('connection', 1), ('database', 1)]
[('building', 2), ('serverless', 2), ('application', 2), ('recipe', 2), ('enterprise', 1), ('developer', 1), ('face', 1), ('several', 1), ('challenge', 1), ('come', 1), ('integrating', 1), ('container', 1), ('image', 1), ('source', 1), ('practical', 1), ('cookbook', 1), ('help', 1), ('solve', 1), ('issue', 1), ('knative', 1), ('first', 1), ('platform', 1), ('natively', 1), ('designed', 1), ('kubernetes', 1)]
[('django', 2), ('framework', 2), ('client', 2), ('side', 2), ('application', 2), ('take', 1), ('advantage', 1), ('integrate', 1), ('complex', 1), ('interaction', 1), ('real', 1), ('time', 1), ('feature', 1), ('web', 1), ('series', 1), ('rapid', 1), ('development', 1), ('project', 1), ('hand', 1), ('book', 1), ('show', 1), ('experienced', 1), ('developer', 1), ('include', 1), ('rest', 1), ('apis', 1), ('websockets', 1), ('mvc', 1)]
[('photo', 2), ('step', 2), ('apple', 1), ('new', 1), ('app', 1), ('let', 1), ('whole', 1), ('lot', 1), ('simply', 1), ('store', 1), ('edit', 1), ('picture', 1), ('video', 1), ('mac', 1), ('io', 1), ('device', 1), ('comprehensive', 1), ('guide', 1), ('learn', 1), ('import', 1), ('organize', 1), ('share', 1), ('digital', 1), ('memory', 1), ('improve', 1), ('print', 1), ('use', 1), ('creative', 1), ('project', 1), ('lesa', 1), ('snider', 1), ('instruction', 1)]
[('language', 2), ('generating', 2), ('relational', 2), ('database', 2), ('sql', 1), ('structured', 1), ('query', 1), ('standard', 1), ('programming', 1), ('manipulating', 1), ('retrieving', 1), ('information', 1), ('working', 1), ('whether', 1), ('writing', 1), ('application', 1), ('performing', 1), ('administrative', 1), ('task', 1), ('report', 1), ('need', 1), ('know', 1), ('interact', 1), ('data', 1), ('even', 1)]
[('java', 2), ('application', 2), ('incorporating', 2), ('new', 2), ('practical', 1), ('guide', 1), ('show', 1), ('make', 1), ('web', 1), ('responsive', 1), ('dynamic', 1), ('ajaxian', 1), ('feature', 1), ('including', 1), ('suggestion', 1), ('list', 1), ('drag', 1), ('drop', 1), ('developer', 1), ('choose', 1), ('many', 1), ('different', 1), ('way', 1), ('ajax', 1), ('building', 1), ('javascript', 1), ('hand', 1), ('using', 1)]
[('software', 2), ('corporate', 1), ('market', 1), ('embracing', 1), ('free', 1), ('open', 1), ('source', 1), ('never', 1), ('evidenced', 1), ('recent', 1), ('success', 1), ('technology', 1), ('underlying', 1), ('lamp', 1), ('linux', 1), ('apache', 1), ('mysql', 1), ('php', 1), ('result', 1), ('publicly', 1), ('collaborative', 1), ('process', 1), ('among', 1), ('numerous', 1), ('developer', 1), ('volunteer', 1), ('time', 1), ('energy', 1), ('create', 1), ('better', 1), ('truth', 1)]
[('information', 2), ('xml', 2), ('needle', 2), ('referring', 1), ('specific', 1), ('inside', 1), ('document', 1), ('little', 1), ('finding', 1), ('haystack', 1), ('differentiate', 1), ('need', 1), ('everything', 1), ('xpath', 1), ('xpointer', 1), ('closely', 1), ('related', 1), ('language', 1), ('play', 1), ('key', 1), ('role', 1), ('processing', 1), ('allowing', 1), ('developer', 1), ('find', 1), ('manipulate', 1), ('embedded', 1)]
[('web', 2), ('site', 2), ('page', 2), ('want', 1), ('display', 1), ('quickly', 1), ('book', 1), ('present', 1), ('specific', 1), ('rule', 1), ('cut', 1), ('response', 1), ('time', 1), ('user', 1), ('request', 1), ('author', 1), ('steve', 1), ('souders', 1), ('job', 1), ('chief', 1), ('performance', 1), ('yahoo', 1), ('collected', 1), ('best', 1), ('practice', 1), ('optimizing', 1), ('visited', 1), ('even', 1), ('already', 1), ('highly', 1)]
[('server', 2), ('service', 2), ('attempt', 2), ('linux', 1), ('consistently', 1), ('appears', 1), ('high', 1), ('list', 1), ('popular', 1), ('internet', 1), ('whether', 1), ('web', 1), ('anonymous', 1), ('ftp', 1), ('general', 1), ('dns', 1), ('delivering', 1), ('mail', 1), ('security', 1), ('foremost', 1), ('concern', 1), ('anyone', 1), ('providing', 1), ('experience', 1), ('casual', 1), ('probe', 1), ('dozen', 1), ('time', 1), ('day', 1), ('serious', 1), ('break', 1)]
[('system', 4), ('reputation', 2), ('amazon', 1), ('product', 1), ('review', 1), ('ebay', 1), ('feedback', 1), ('score', 1), ('slashdot', 1), ('karma', 1), ('xbox', 1), ('live', 1), ('achievement', 1), ('common', 1), ('example', 1), ('successful', 1), ('enable', 1), ('consumer', 1), ('website', 1), ('manage', 1), ('present', 1), ('user', 1), ('contribution', 1), ('effectively', 1), ('book', 1), ('show', 1), ('design', 1), ('develop', 1)]
[('web', 4), ('world', 2), ('hypertext', 1), ('transfer', 1), ('protocol', 1), ('backbone', 1), ('wide', 1), ('language', 1), ('browser', 1), ('client', 1), ('us', 1), ('communicate', 1), ('server', 1), ('around', 1), ('programmer', 1), ('administrator', 1), ('application', 1), ('developer', 1), ('need', 1), ('familiar', 1), ('order', 1), ('work', 1), ('effectively', 1), ('pocket', 1)]
[('nfc', 2), ('step', 2), ('jump', 1), ('world', 1), ('near', 1), ('field', 1), ('communication', 1), ('fast', 1), ('growing', 1), ('technology', 1), ('let', 1), ('device', 1), ('close', 1), ('proximity', 1), ('exchange', 1), ('data', 1), ('using', 1), ('radio', 1), ('signal', 1), ('lot', 1), ('example', 1), ('sample', 1), ('code', 1), ('exercise', 1), ('project', 1), ('hand', 1), ('guide', 1), ('show', 1), ('build', 1), ('application', 1), ('android', 1), ('arduino', 1), ('microcontroller', 1), ('embedded', 1)]
[('consumer', 2), ('mobile', 2), ('purchase', 1), ('phone', 1), ('rise', 1), ('design', 1), ('payment', 1), ('app', 1), ('safe', 1), ('easy', 1), ('use', 1), ('compelling', 1), ('practical', 1), ('book', 1), ('interaction', 1), ('product', 1), ('designer', 1), ('skip', 1), ('allums', 1), ('provides', 1), ('ux', 1), ('best', 1), ('practice', 1), ('recommendation', 1), ('help', 1), ('create', 1), ('familiar', 1), ('friendly', 1), ('trustworthy', 1), ('experience', 1), ('want', 1)]
[('ruby', 2), ('language', 2), ('learn', 1), ('book', 1), ('buzz', 1), ('right', 1), ('ask', 1), ('tired', 1), ('extra', 1), ('declaration', 1), ('keywords', 1), ('compilation', 1), ('step', 1), ('want', 1), ('productive', 1), ('programmer', 1), ('love', 1), ('unique', 1), ('hand', 1), ('learning', 1), ('experience', 1)]
[('application', 2), ('developer', 2), ('docker', 2), ('whether', 1), ('deploying', 1), ('premise', 1), ('cloud', 1), ('cookbook', 1), ('provides', 1), ('operator', 1), ('professional', 1), ('proven', 1), ('recipe', 1), ('working', 1), ('practical', 1), ('solution', 1), ('experienced', 1), ('previous', 1), ('knowledge', 1), ('able', 1), ('package', 1), ('deploy', 1), ('distributed', 1)]
[('code', 2), ('maintain', 2), ('software', 2), ('easy', 2), ('felt', 1), ('frustrated', 1), ('working', 1), ('difficult', 1), ('source', 1), ('big', 1), ('problem', 1), ('development', 1), ('today', 1), ('leading', 1), ('costly', 1), ('delay', 1), ('defect', 1), ('part', 1), ('solution', 1), ('practical', 1), ('book', 1), ('learn', 1), ('follow', 1), ('guideline', 1), ('delivering', 1), ('java', 1), ('adapt', 1)]
[('program', 2), ('reactive', 2), ('today', 1), ('app', 1), ('driven', 1), ('era', 1), ('asynchronous', 1), ('responsiveness', 1), ('vital', 1), ('programming', 1), ('help', 1), ('write', 1), ('code', 1), ('reliable', 1), ('easier', 1), ('scale', 1), ('better', 1), ('performing', 1), ('practical', 1), ('book', 1), ('java', 1), ('developer', 1), ('first', 1), ('learn', 1), ('view', 1), ('problem', 1), ('way', 1), ('build', 1), ('leverage', 1), ('best', 1)]
[('tool', 2), ('use', 2), ('system', 2), ('graphite', 1), ('become', 1), ('powerful', 1), ('monitoring', 1), ('available', 1), ('today', 1), ('due', 1), ('ease', 1), ('rapid', 1), ('graph', 1), ('prototyping', 1), ('ability', 1), ('friendly', 1), ('rendering', 1), ('api', 1), ('practical', 1), ('guide', 1), ('administrator', 1), ('engineer', 1), ('learn', 1), ('open', 1), ('source', 1), ('track', 1), ('operational', 1), ('data', 1), ('need', 1), ('monitor', 1)]
[('apps', 2), ('ionic', 2), ('learn', 1), ('build', 1), ('app', 1), ('store', 1), ('ready', 1), ('hybrid', 1), ('framework', 1), ('built', 1), ('top', 1), ('apache', 1), ('cordova', 1), ('formerly', 1), ('phonegap', 1), ('angular', 1), ('revised', 1), ('guide', 1), ('show', 1), ('use', 1), ('tool', 1), ('service', 1), ('develop', 1), ('html', 1), ('cs', 1), ('typescript', 1), ('rather', 1), ('rely', 1), ('platform', 1), ('specific', 1), ('solution', 1), ('found', 1), ('android', 1), ('io', 1), ('window', 1), ('universal', 1)]
[('time', 2), ('microservices', 2), ('nearly', 1), ('every', 1), ('vertical', 1), ('regardless', 1), ('domain', 1), ('seems', 1), ('need', 1), ('software', 1), ('running', 1), ('cloud', 1), ('make', 1), ('money', 1), ('provide', 1), ('agility', 1), ('drastically', 1), ('reduced', 1), ('market', 1), ('require', 1), ('hand', 1), ('guide', 1), ('show', 1), ('create', 1), ('test', 1), ('compile', 1), ('deploy', 1), ('using', 1), ('asp', 1), ('net', 1), ('core', 1), ('free', 1), ('open', 1), ('source', 1), ('framework', 1)]
[('interface', 2), ('product', 2), ('today', 1), ('ability', 1), ('connect', 1), ('speech', 1), ('touch', 1), ('haptic', 1), ('gestural', 1), ('engage', 1), ('several', 1), ('human', 1), ('sens', 1), ('practical', 1), ('book', 1), ('explores', 1), ('example', 1), ('current', 1), ('designer', 1), ('device', 1), ('describe', 1), ('blend', 1), ('multiple', 1), ('mode', 1), ('together', 1), ('cohesive', 1), ('user', 1), ('experience', 1), ('author', 1), ('christine', 1), ('park', 1)]
[('application', 2), ('step', 2), ('serverless', 1), ('computing', 1), ('greatly', 1), ('simplifies', 1), ('software', 1), ('development', 1), ('team', 1), ('focus', 1), ('solely', 1), ('cloud', 1), ('provider', 1), ('manages', 1), ('server', 1), ('need', 1), ('practical', 1), ('guide', 1), ('show', 1), ('build', 1), ('deploy', 1), ('complex', 1), ('flexible', 1), ('multicloud', 1), ('multilanguage', 1), ('environment', 1), ('using', 1), ('apache', 1), ('openwhisk', 1), ('learn', 1)]
[('security', 3), ('privacy', 3), ('isc', 2), ('healthcare', 2), ('information', 2), ('practitioner', 2), ('hcisppsm', 2), ('backed', 1), ('credential', 1), ('confirms', 1), ('core', 1), ('knowledge', 1), ('experience', 1), ('control', 1), ('personal', 1), ('health', 1), ('official', 1), ('guide', 1), ('cbk', 1), ('provides', 1), ('comprehensive', 1), ('review', 1)]
[('security', 4), ('concept', 2), ('volume', 1), ('provides', 1), ('clear', 1), ('understanding', 1), ('behind', 1), ('cyber', 1), ('prevalent', 1), ('threat', 1), ('tactic', 1), ('procedure', 1), ('team', 1), ('professional', 1), ('verisign', 1), ('idefense', 1), ('intelligence', 1), ('service', 1), ('supply', 1), ('extensive', 1), ('review', 1), ('computer', 1), ('landscape', 1), ('address', 1), ('key', 1), ('series', 1)]
[('book', 2), ('computation', 2), ('python', 2), ('script', 2), ('show', 1), ('perform', 1), ('chimera', 1), ('environment', 1), ('cover', 1), ('topic', 1), ('deal', 1), ('primarily', 1), ('protein', 1), ('structure', 1), ('encourages', 1), ('mathematical', 1), ('analysis', 1), ('providing', 1), ('firm', 1), ('foundation', 1), ('exercise', 1), ('involve', 1), ('development', 1), ('give', 1), ('reader', 1)]
[('data', 2), ('clustering', 2), ('dvd', 1), ('color', 1), ('figure', 1), ('book', 1), ('provides', 1), ('expert', 1), ('guide', 1), ('extracting', 1), ('pertinent', 1), ('information', 1), ('pharmaceutical', 1), ('biomedical', 1), ('offer', 1), ('concise', 1), ('overview', 1), ('common', 1), ('recent', 1), ('method', 1), ('used', 1), ('bioinformatics', 1), ('drug', 1), ('discovery', 1), ('author', 1), ('cover', 1), ('small', 1), ('large', 1), ('set', 1), ('parallelization', 1)]
[('step', 2), ('entry', 2), ('software', 2), ('learn', 1), ('network', 1), ('data', 1), ('security', 1), ('analyzing', 1), ('anthem', 1), ('breach', 1), ('hacker', 1), ('gain', 1), ('place', 1), ('hidden', 1), ('download', 1), ('information', 1), ('hide', 1), ('evidence', 1), ('understand', 1), ('tool', 1), ('establishing', 1), ('persistent', 1), ('presence', 1), ('use', 1), ('site', 1), ('testbeds', 1), ('determine', 1), ('successful', 1), ('variation', 1), ('elude', 1), ('detection', 1)]
[('data', 2), ('analytics', 2), ('auditor', 2), ('many', 1), ('webinars', 1), ('training', 1), ('course', 1), ('internal', 1), ('handbook', 1), ('written', 1), ('practitioner', 1), ('viewpoint', 1), ('covering', 1), ('need', 1), ('theory', 1), ('practical', 1), ('hand', 1), ('approach', 1), ('conducting', 1), ('spread', 1), ('system', 1), ('make', 1), ('necessary', 1), ('management', 1), ('ability', 1)]
[('first', 1), ('edition', 1), ('popular', 1), ('textbook', 1), ('contemporary', 1), ('artificial', 1), ('intelligence', 1), ('provided', 1), ('accessible', 1), ('student', 1), ('friendly', 1), ('introduction', 1), ('ai', 1), ('fully', 1), ('revised', 1), ('expanded', 1), ('update', 1), ('retains', 1), ('accessibility', 1), ('problem', 1), ('solving', 1), ('approach', 1), ('providing', 1), ('new', 1), ('material', 1), ('method', 1), ('including', 1), ('neural', 1), ('network', 1), ('deep', 1), ('learning', 1)]
[('language', 2), ('comprehensive', 1), ('handbook', 1), ('present', 1), ('practical', 1), ('tool', 1), ('technique', 1), ('implementing', 1), ('natural', 1), ('processing', 1), ('computer', 1), ('system', 1), ('along', 1), ('removing', 1), ('outdated', 1), ('material', 1), ('edition', 1), ('offer', 1), ('greater', 1), ('prominence', 1), ('statistical', 1), ('approach', 1), ('broader', 1), ('multilingual', 1), ('scope', 1), ('include', 1), ('asian', 1), ('european', 1), ('contains', 1), ('new', 1), ('application', 1)]
[('missed', 2), ('requirement', 2), ('product', 2), ('incomplete', 1), ('omission', 1), ('ambiguous', 1), ('feature', 1), ('lack', 1), ('user', 1), ('involvement', 1), ('unrealistic', 1), ('customer', 1), ('expectation', 1), ('proverbial', 1), ('scope', 1), ('creep', 1), ('result', 1), ('cost', 1), ('overrun', 1), ('deadline', 1), ('poor', 1), ('quality', 1), ('ruin', 1), ('project', 1), ('book', 1), ('explains', 1), ('elicit', 1), ('document', 1), ('manage', 1), ('control', 1)]
[('object', 3), ('mathematical', 2), ('implementation', 2), ('emphasizing', 1), ('connection', 1), ('practical', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('theory', 1), ('behind', 1), ('programming', 1), ('oriented', 1), ('three', 1), ('dimensional', 1), ('mesh', 1), ('facilitates', 1), ('understanding', 1), ('nature', 1), ('requiring', 1)]
[('ipv', 2), ('introduced', 1), ('development', 1), ('ietf', 1), ('year', 1), ('reached', 1), ('deployment', 1), ('stage', 1), ('kame', 1), ('de', 1), ('facto', 1), ('open', 1), ('source', 1), ('reference', 1), ('implementation', 1), ('standard', 1), ('played', 1), ('significant', 1), ('role', 1)]
[('distributed', 2), ('computing', 2), ('parallel', 2), ('cloud', 1), ('processing', 1), ('internet', 1), ('thing', 1), ('offer', 1), ('complete', 1), ('coverage', 1), ('modern', 1), ('technology', 1), ('including', 1), ('cluster', 1), ('grid', 1), ('service', 1), ('oriented', 1), ('architecture', 1), ('massively', 1), ('processor', 1)]
[('sql', 2), ('smarties', 1), ('hailed', 1), ('first', 1), ('book', 1), ('devoted', 1), ('explicitly', 1), ('advanced', 1), ('technique', 1), ('needed', 1), ('transform', 1), ('experienced', 1), ('programmer', 1), ('expert', 1), ('year', 1), ('later', 1), ('fifth', 1), ('edition', 1), ('classic', 1), ('reference', 1), ('still', 1), ('reign', 1), ('supreme', 1)]
[('emotion', 3), ('design', 2), ('introduces', 1), ('designing', 1), ('improve', 1), ('user', 1), ('connection', 1), ('satisfaction', 1), ('loyalty', 1), ('incorporating', 1), ('personality', 1), ('process', 1), ('conscious', 1), ('unconscious', 1)]
[('perception', 2), ('science', 2), ('information', 1), ('visualization', 1), ('design', 1), ('fourth', 1), ('edition', 1), ('explores', 1), ('art', 1), ('see', 1), ('object', 1), ('way', 1), ('based', 1), ('vision', 1), ('author', 1), ('present', 1), ('key', 1), ('principle', 1), ('work', 1), ('wide', 1), ('range', 1)]
[('information', 3), ('security', 3), ('basic', 1), ('provides', 1), ('fundamental', 1), ('knowledge', 1), ('theoretical', 1), ('practical', 1), ('aspect', 1), ('book', 1), ('packed', 1), ('key', 1), ('concept', 1), ('confidentiality', 1), ('integrity', 1)]
[('fuzzy', 3), ('system', 2), ('volume', 1), ('cover', 1), ('integration', 1), ('logic', 1), ('expert', 1), ('vital', 1), ('resource', 1), ('field', 1), ('includes', 1), ('technique', 1), ('applying', 1), ('neural', 1), ('network', 1), ('modeling', 1), ('control', 1), ('systematic', 1), ('design', 1), ('procedure', 1), ('realizing', 1)]
[('application', 3), ('management', 2), ('performance', 1), ('apm', 1), ('digital', 1), ('enterprise', 1), ('enables', 1), ('professional', 1), ('successful', 1), ('managing', 1), ('company', 1), ('explores', 1), ('fundamental', 1), ('examines', 1), ('latest', 1)]
[('internet', 2), ('thing', 2), ('technology', 2), ('principle', 1), ('paradigm', 1), ('capture', 1), ('state', 1), ('art', 1), ('research', 1), ('application', 1), ('architecture', 1), ('book', 1), ('identifies', 1), ('potential', 1), ('future', 1), ('direction', 1), ('facilitate', 1), ('insight', 1)]
[('process', 2), ('auditing', 2), ('basic', 1), ('audit', 1), ('purpose', 1), ('practical', 1), ('information', 1), ('provides', 1), ('thorough', 1), ('yet', 1), ('concise', 1), ('overview', 1), ('packed', 1), ('specific', 1), ('example', 1), ('book', 1), ('give', 1), ('insight', 1), ('explains', 1), ('regulation', 1)]
[('google', 3), ('earth', 2), ('book', 2), ('use', 2), ('investigation', 2), ('forensics', 1), ('first', 1), ('explain', 1), ('digital', 1), ('forensic', 1), ('teach', 1), ('leverage', 1), ('free', 1), ('tool', 1), ('craft', 1), ('compelling', 1), ('location', 1), ('based', 1), ('evidence', 1)]
[('fluid', 2), ('engineer', 2), ('computational', 1), ('dynamic', 1), ('enables', 1), ('model', 1), ('predict', 1), ('flow', 1), ('powerful', 1), ('visually', 1), ('impressive', 1), ('way', 1), ('core', 1), ('engineering', 1), ('design', 1), ('tool', 1), ('essential', 1), ('study', 1), ('future', 1), ('work', 1), ('many', 1), ('textbook', 1)]
[('accessible', 2), ('rigorous', 2), ('undergraduate', 2), ('computer', 2), ('science', 2), ('textbook', 1), ('introducing', 1), ('theory', 1), ('computed', 1), ('uniquely', 1), ('yet', 1), ('introduction', 1), ('profound', 1), ('idea', 1), ('heart', 1), ('crafted', 1), ('specifically', 1), ('studying', 1), ('subject', 1), ('first', 1), ('time', 1), ('requiring', 1), ('minimal', 1)]
[('knowledge', 2), ('management', 2), ('km', 2), ('healthcare', 1), ('primer', 1), ('explores', 1), ('explains', 1), ('nature', 1), ('essential', 1), ('principle', 1), ('healtcare', 1), ('setting', 1), ('introductory', 1), ('easy', 1), ('understand', 1), ('fashion', 1), ('accessibility', 1), ('usability', 1), ('manner', 1), ('use', 1), ('student', 1), ('professional', 1), ('wishing', 1), ('learn', 1), ('key', 1), ('aspect', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('book', 1), ('describes', 1), ('use', 1), ('logic', 1), ('reasoning', 1), ('critical', 1), ('thinking', 1), ('scientific', 1), ('method', 1), ('conduct', 1), ('improve', 1), ('criminal', 1), ('civil', 1), ('investigation', 1), ('author', 1), ('discus', 1), ('investigator', 1), ('attorney', 1), ('avoid', 1), ('assumption', 1), ('false', 1), ('premise', 1), ('instead', 1), ('make', 1), ('valid', 1), ('deduction', 1), ('induction', 1), ('inference', 1), ('explains', 1), ('tool', 1)]
[('america', 2), ('inside', 1), ('story', 1), ('enemy', 1), ('launched', 1), ('cyber', 1), ('war', 1), ('learned', 1), ('fight', 1), ('back', 1), ('passing', 1), ('year', 1), ('internet', 1), ('linked', 1), ('attack', 1), ('interest', 1), ('grown', 1), ('frequency', 1), ('severity', 1), ('overmatched', 1), ('military', 1), ('country', 1), ('north', 1), ('korea', 1), ('china', 1), ('iran', 1), ('russia', 1), ('found', 1), ('vulnerable', 1)]
[('logic', 5), ('mathematical', 2), ('related', 2), ('computer', 2), ('science', 2), ('book', 2), ('essentially', 1), ('describes', 1), ('aspect', 1), ('closely', 1), ('including', 1), ('classical', 1), ('constructive', 1), ('modal', 1), ('intended', 1), ('attend', 1), ('peculiarity', 1), ('logical', 1), ('system', 1), ('requirement', 1)]
[('digital', 2), ('data', 2), ('new', 2), ('humanity', 1), ('arrived', 1), ('moment', 1), ('big', 1), ('becoming', 1), ('readily', 1), ('available', 1), ('opening', 1), ('exciting', 1), ('avenue', 1), ('inquiry', 1), ('challenge', 1), ('pioneering', 1), ('book', 1), ('describes', 1), ('demonstrates', 1), ('way', 1), ('explored', 1), ('construct', 1), ('cultural', 1), ('heritage', 1), ('knowledge', 1), ('research', 1), ('teaching', 1), ('learning', 1)]
[('computer', 3), ('algebra', 3), ('step', 2), ('book', 1), ('give', 1), ('comprehensive', 1), ('introduction', 1), ('together', 1), ('advanced', 1), ('topic', 1), ('field', 1), ('provides', 1), ('detailed', 1), ('coverage', 1), ('mathematics', 1), ('guide', 1), ('implement', 1), ('system', 1), ('object', 1), ('oriented', 1), ('language', 1), ('used', 1), ('tool', 1), ('introduced', 1), ('detail', 1), ('numerous', 1)]
[('application', 3), ('solution', 2), ('enterprise', 2), ('take', 1), ('problem', 1), ('approach', 1), ('programming', 1), ('java', 1), ('microservices', 1), ('cloud', 1), ('based', 1), ('database', 1), ('even', 1), ('small', 1), ('business', 1), ('web', 1), ('book', 1), ('nbsp', 1), ('provides', 1), ('effective', 1), ('proven', 1), ('code', 1)]
[('netbeans', 4), ('ide', 2), ('oracle', 2), ('beginning', 1), ('authoritative', 1), ('tutorial', 1), ('learning', 1), ('using', 1), ('open', 1), ('source', 1), ('platform', 1), ('backed', 1), ('written', 1), ('product', 1), ('manager', 1), ('geertjan', 1), ('wielenga', 1), ('show', 1), ('really', 1)]
[('learn', 2), ('lt', 1), ('gt', 1), ('started', 1), ('dart', 1), ('program', 1), ('language', 1), ('suitable', 1), ('high', 1), ('performing', 1), ('modern', 1), ('application', 1), ('gain', 1), ('basic', 1), ('ready', 1), ('move', 1), ('next', 1), ('level', 1), ('web', 1), ('mobile', 1), ('apps', 1), ('specific', 1)]
[('scalable', 2), ('gain', 1), ('essential', 1), ('need', 1), ('create', 1), ('microservices', 1), ('help', 1), ('solve', 1), ('real', 1), ('challenge', 1), ('deploying', 1), ('service', 1), ('production', 1), ('book', 1), ('take', 1), ('creating', 1), ('data', 1), ('layer', 1), ('polygot', 1), ('persistence', 1)]
[('recipe', 3), ('book', 2), ('spring', 2), ('collection', 1), ('developer', 1), ('code', 1), ('best', 1), ('practice', 1), ('persisting', 1), ('data', 1), ('using', 1), ('particularly', 1), ('boot', 1), ('structured', 1), ('around', 1), ('practical', 1), ('discus', 1), ('performance', 1), ('case', 1)]
[('django', 2), ('commerce', 2), ('make', 2), ('beginning', 1), ('guide', 1), ('producing', 1), ('site', 1), ('using', 1), ('popular', 1), ('python', 1), ('web', 1), ('development', 1), ('framework', 1), ('topic', 1), ('covered', 1), ('include', 1), ('shopping', 1), ('cart', 1), ('checkout', 1), ('payment', 1), ('processor', 1)]
[('essay', 2), ('cover', 1), ('three', 1), ('year', 1), ('best', 1), ('range', 1), ('technical', 1), ('humorous', 1), ('always', 1), ('tangible', 1), ('beautifully', 1), ('written', 1), ('extremely', 1), ('timely', 1), ('google', 1), ('list', 1), ('link', 1), ('joel', 1), ('software', 1), ('spolsky', 1), ('popular', 1)]
[('sql', 3), ('database', 3), ('server', 2), ('introducing', 1), ('fast', 1), ('easy', 1), ('introduction', 1), ('world', 1), ('relational', 1), ('learn', 1), ('work', 1), ('use', 1), ('language', 1), ('practicing', 1), ('widely', 1), ('used', 1), ('powerful', 1)]
[('objective', 2), ('programming', 2), ('recipe', 1), ('provides', 1), ('problem', 1), ('solution', 1), ('approach', 1), ('dealing', 1), ('key', 1), ('aspect', 1), ('ensuring', 1), ('indispensable', 1), ('reference', 1), ('need', 1), ('successfully', 1), ('execute', 1), ('common', 1), ('task', 1), ('see', 1), ('use', 1)]
[('security', 4), ('step', 2), ('information', 2), ('follow', 1), ('guidance', 1), ('craft', 1), ('successful', 1), ('program', 1), ('identify', 1), ('paradox', 1), ('discover', 1), ('handy', 1), ('tool', 1), ('hook', 1), ('control', 1), ('business', 1), ('process', 1)]
[('sql', 4), ('server', 2), ('data', 2), ('learn', 1), ('automate', 1), ('operation', 1), ('using', 1), ('framework', 1), ('built', 1), ('metadata', 1), ('driven', 1), ('stored', 1), ('procedure', 1), ('integration', 1), ('service', 1), ('ssis', 1), ('bring', 1), ('power', 1), ('transact', 1), ('microsoft', 1), ('net', 1), ('bear', 1), ('repetitive', 1)]
[('image', 2), ('processing', 2), ('python', 2), ('gain', 1), ('insight', 1), ('methodology', 1), ('algorithm', 1), ('using', 1), ('machine', 1), ('learning', 1), ('neural', 1), ('network', 1), ('book', 1), ('begin', 1), ('environment', 1), ('setup', 1), ('understanding', 1), ('basic', 1), ('terminology', 1), ('exploring', 1), ('concept', 1)]
[('net', 2), ('knowing', 2), ('visual', 2), ('mastering', 1), ('development', 1), ('application', 1), ('le', 1), ('language', 1), ('use', 1), ('functionality', 1), ('framework', 1), ('class', 1), ('library', 1), ('effectively', 1), ('recipe', 1), ('explores', 1)]
[('sql', 3), ('server', 3), ('integration', 2), ('service', 2), ('design', 2), ('pattern', 2), ('book', 2), ('newly', 1), ('revised', 1), ('recipe', 1), ('ssis', 1), ('help', 1), ('solve', 1), ('common', 1), ('problem', 1), ('encountered', 1), ('developing', 1), ('data', 1)]
[('azure', 2), ('active', 2), ('directory', 2), ('explore', 1), ('tool', 1), ('integrating', 1), ('resource', 1), ('application', 1), ('authentication', 1), ('authorization', 1), ('book', 1), ('start', 1), ('introduction', 1), ('aad', 1), ('learn', 1), ('core', 1), ('concept', 1), ('necessary', 1)]
[('way', 2), ('joel', 1), ('apress', 1), ('blog', 1), ('blooks', 1), ('learning', 1), ('hard', 1), ('publisher', 1), ('probably', 1), ('spending', 1), ('time', 1), ('looking', 1), ('web', 1), ('site', 1), ('programming', 1), ('response', 1), ('anyway', 1), ('day', 1), ('came', 1), ('across', 1)]
[('nginx', 2), ('web', 2), ('teach', 1), ('start', 1), ('quickly', 1), ('take', 1), ('expertise', 1), ('level', 1), ('comfortably', 1), ('work', 1), ('various', 1), ('aspect', 1), ('server', 1), ('make', 1), ('informed', 1), ('design', 1), ('decision', 1), ('farm', 1), ('power', 1), ('top', 1)]
[('item', 2), ('learn', 1), ('render', 1), ('list', 1), ('without', 1), ('repeating', 1), ('code', 1), ('structure', 1), ('work', 1), ('conditional', 1), ('rendering', 1), ('event', 1), ('handling', 1), ('containing', 1), ('need', 1), ('know', 1), ('started', 1), ('vue', 1), ('j', 1), ('book', 1), ('take', 1), ('using', 1), ('build', 1)]
[('code', 2), ('solve', 1), ('spring', 1), ('problem', 1), ('using', 1), ('complete', 1), ('real', 1), ('world', 1), ('example', 1), ('start', 1), ('new', 1), ('project', 1), ('able', 1), ('copy', 1), ('configuration', 1), ('file', 1), ('book', 1), ('modify', 1), ('need', 1), ('save', 1), ('deal', 1)]
[('html', 2), ('markup', 2), ('ahead', 1), ('including', 1), ('styling', 1), ('scripting', 1), ('many', 1), ('practical', 1), ('example', 1), ('best', 1), ('practice', 1), ('insight', 1), ('quickly', 1), ('understand', 1), ('element', 1), ('use', 1), ('apply', 1), ('latest', 1), ('cs', 1), ('feature', 1), ('create', 1), ('amazing', 1)]
[('gain', 1), ('technical', 1), ('business', 1), ('insight', 1), ('needed', 1), ('plan', 1), ('deploy', 1), ('manage', 1), ('service', 1), ('provided', 1), ('microsoft', 1), ('azure', 1), ('cloud', 1), ('nbsp', 1), ('second', 1), ('edition', 1), ('focus', 1), ('improving', 1), ('operational', 1), ('decision', 1), ('tipping', 1), ('point', 1), ('professional', 1), ('leading', 1), ('devops', 1)]
[('azure', 2), ('adopt', 1), ('iaa', 1), ('migrate', 1), ('premise', 1), ('infrastructure', 1), ('partially', 1), ('fully', 1), ('book', 1), ('provides', 1), ('practical', 1), ('solution', 1), ('following', 1), ('microsoft', 1), ('design', 1), ('best', 1), ('practice', 1), ('guideline', 1), ('building', 1), ('highly', 1), ('available', 1), ('scalable', 1), ('secure', 1)]
[('markdown', 2), ('annotate', 2), ('text', 2), ('information', 2), ('discover', 1), ('write', 1), ('manuscript', 1), ('translate', 1), ('pandoc', 1), ('different', 1), ('output', 1), ('format', 1), ('use', 1), ('formatting', 1), ('strong', 1), ('focus', 1), ('semantic', 1)]
[('container', 3), ('azure', 2), ('application', 2), ('deploy', 1), ('execute', 1), ('microsoft', 1), ('containerized', 1), ('second', 1), ('book', 1), ('author', 1), ('shimon', 1), ('ifrah', 1), ('series', 1), ('help', 1), ('manage', 1), ('scale', 1), ('along', 1), ('tool', 1)]
[('using', 2), ('io', 2), ('learn', 1), ('write', 1), ('apps', 1), ('today', 1), ('hottest', 1), ('technology', 1), ('including', 1), ('iphone', 1), ('ipad', 1), ('mac', 1), ('o', 1), ('start', 1), ('objective', 1), ('base', 1), ('language', 1), ('native', 1), ('software', 1), ('development', 1), ('kit', 1), ('sdk', 1)]
[('problem', 2), ('book', 1), ('teach', 1), ('evaluate', 1), ('distributed', 1), ('system', 1), ('perspective', 1), ('immutable', 1), ('object', 1), ('understand', 1), ('existing', 1), ('design', 1), ('know', 1), ('make', 1), ('small', 1), ('modification', 1), ('correct', 1), ('learn', 1), ('apply', 1)]
[('create', 1), ('fully', 1), ('working', 1), ('multiplayer', 1), ('game', 1), ('scratch', 1), ('using', 1), ('typescript', 1), ('socket', 1), ('io', 1), ('community', 1), ('edition', 1), ('phaser', 1), ('j', 1), ('achieve', 1), ('amazing', 1), ('feat', 1), ('browser', 1), ('without', 1), ('install', 1), ('software', 1), ('book', 1), ('teach', 1), ('use', 1)]
[('discover', 1), ('essential', 1), ('concept', 1), ('new', 1), ('io', 1), ('sdk', 1), ('swift', 1), ('programming', 1), ('language', 1), ('apis', 1), ('build', 1), ('iphone', 1), ('ipad', 1), ('database', 1), ('driven', 1), ('application', 1), ('using', 1), ('defacto', 1), ('standard', 1), ('data', 1), ('storage', 1), ('mobile', 1), ('apps', 1), ('sqlite', 1), ('learn', 1), ('nbsp', 1), ('sql', 1)]
[('lt', 2), ('em', 2), ('gt', 2), ('objective', 2), ('programmer', 1), ('reference', 1), ('provides', 1), ('tool', 1), ('necessary', 1), ('write', 1), ('software', 1), ('amp', 1), ('mdash', 1), ('language', 1), ('choice', 1), ('developing', 1), ('io', 1), ('o', 1), ('application', 1), ('author', 1), ('carlos', 1), ('oliveira', 1), ('begin', 1), ('basic', 1), ('building', 1)]
[('groovy', 5), ('lt', 1), ('gt', 1), ('start', 1), ('building', 1), ('powerful', 1), ('apps', 1), ('take', 1), ('advantage', 1), ('dynamic', 1), ('scripting', 1), ('capability', 1), ('language', 1), ('including', 1), ('new', 1), ('version', 1), ('book', 1), ('cover', 1), ('fundamental', 1), ('installing', 1), ('using', 1)]
[('lt', 2), ('em', 2), ('gt', 2), ('language', 2), ('objective', 1), ('programming', 1), ('continues', 1), ('grow', 1), ('popularity', 1), ('usage', 1), ('power', 1), ('ease', 1), ('use', 1), ('along', 1), ('numerous', 1), ('feature', 1), ('continue', 1), ('added', 1), ('platform', 1)]
[('lt', 2), ('gt', 2), ('div', 1), ('understand', 1), ('nut', 1), ('bolt', 1), ('blockchain', 1), ('different', 1), ('flavor', 1), ('simple', 1), ('use', 1), ('case', 1), ('cryptographic', 1), ('fundamental', 1), ('learn', 1), ('design', 1), ('consideration', 1), ('help', 1), ('build', 1), ('custom', 1)]
[('lt', 3), ('gt', 3), ('swift', 2), ('already', 1), ('learned', 1), ('basic', 1), ('io', 1), ('programming', 1), ('time', 1), ('take', 1), ('skill', 1), ('next', 1), ('level', 1), ('follow', 1), ('work', 1), ('best', 1), ('selling', 1), ('beginning', 1), ('iphone', 1), ('development', 1), ('amp', 1), ('nbsp', 1)]
[('lt', 3), ('gt', 3), ('em', 2), ('beginner', 2), ('beginning', 1), ('tutorial', 1), ('discus', 1), ('subset', 1), ('suitable', 1), ('language', 1), ('syntax', 1), ('corresponds', 1), ('standard', 1), ('book', 1), ('environment', 1), ('neutral', 1)]
[('distributed', 2), ('architecture', 2), ('lt', 1), ('div', 1), ('gt', 1), ('take', 1), ('application', 1), ('next', 1), ('level', 1), ('see', 1), ('reference', 1), ('associated', 1), ('microservices', 1), ('book', 1), ('begin', 1), ('showing', 1), ('computing', 1), ('landscape', 1), ('provides', 1)]
[('brokerage', 2), ('data', 2), ('learn', 1), ('trade', 1), ('algorithmically', 1), ('existing', 1), ('management', 1), ('strategy', 1), ('optimization', 1), ('order', 1), ('execution', 1), ('using', 1), ('free', 1), ('publicly', 1), ('available', 1), ('connect', 1), ('api', 1), ('source', 1), ('code', 1)]
[('discover', 1), ('everything', 1), ('need', 1), ('know', 1), ('speed', 1), ('javascript', 1), ('development', 1), ('add', 1), ('dynamic', 1), ('enhancement', 1), ('web', 1), ('page', 1), ('nbsp', 1), ('completely', 1), ('updated', 1), ('third', 1), ('edition', 1), ('reveals', 1), ('code', 1), ('work', 1), ('use', 1), ('closure', 1), ('constant', 1), ('execution', 1)]
[('learn', 2), ('integrate', 1), ('interface', 1), ('element', 1), ('io', 1), ('user', 1), ('come', 1), ('know', 1), ('love', 1), ('button', 1), ('switch', 1), ('picker', 1), ('toolbars', 1), ('slider', 1), ('edition', 1), ('best', 1), ('selling', 1), ('book', 1), ('touch', 1), ('gesture', 1), ('table', 1), ('view', 1)]
[('react', 2), ('use', 1), ('enormously', 1), ('popular', 1), ('framework', 1), ('build', 1), ('dynamic', 1), ('javascript', 1), ('application', 1), ('take', 1), ('advantage', 1), ('capability', 1), ('modern', 1), ('browser', 1), ('device', 1), ('learn', 1), ('brings', 1), ('power', 1), ('strong', 1), ('architecture', 1), ('responsive', 1), ('data', 1)]
[('culture', 2), ('techgnosis', 1), ('cult', 1), ('classic', 1), ('medium', 1), ('study', 1), ('straddle', 1), ('line', 1), ('academic', 1), ('discourse', 1), ('popular', 1), ('appeal', 1), ('secular', 1), ('spiritual', 1), ('fan', 1), ('cyberpunk', 1), ('hacker', 1), ('literature', 1), ('new', 1), ('thought', 1)]
[('data', 3), ('mining', 2), ('textbook', 1), ('explores', 1), ('different', 1), ('aspect', 1), ('fundamental', 1), ('complex', 1), ('type', 1), ('application', 1), ('capturing', 1), ('wide', 1), ('diversity', 1), ('problem', 1), ('domain', 1), ('issue', 1), ('go', 1), ('beyond', 1), ('traditional', 1), ('focus', 1)]
[('decade', 1), ('comprehensive', 1), ('manual', 1), ('standard', 1), ('introduction', 1), ('complete', 1), ('reference', 1), ('writing', 1), ('article', 1), ('book', 1), ('containing', 1), ('mathematical', 1), ('formula', 1), ('reader', 1), ('requires', 1), ('streamlined', 1), ('approach', 1), ('learning', 1), ('latex', 1)]
[('online', 2), ('young', 1), ('think', 1), ('moral', 1), ('ethical', 1), ('dilemma', 1), ('encounter', 1), ('share', 1), ('use', 1), ('content', 1), ('participate', 1), ('community', 1), ('fresh', 1), ('party', 1), ('teen', 1), ('post', 1), ('photo', 1), ('facebook', 1), ('friend', 1), ('drinking', 1), ('beer', 1), ('college', 1)]
[('cybersecurity', 2), ('breach', 2), ('learn', 1), ('aftermath', 1), ('better', 1), ('job', 1), ('protecting', 1), ('online', 1), ('data', 1), ('incident', 1), ('make', 1), ('news', 1), ('startling', 1), ('regularity', 1), ('theft', 1), ('million', 1), ('american', 1)]
[('gangnam', 2), ('style', 2), ('taking', 1), ('seriously', 1), ('internet', 1), ('meme', 1), ('tell', 1), ('digital', 1), ('culture', 1), ('december', 1), ('exuberant', 1), ('video', 1), ('became', 1), ('first', 1), ('youtube', 1), ('clip', 1), ('viewed', 1), ('billion', 1), ('time', 1), ('thousand', 1)]
[('data', 1), ('cipher', 1), ('find', 1), ('used', 1), ('take', 1), ('marketing', 1), ('new', 1), ('level', 1)]
[('use', 3), ('world', 1), ('popular', 1), ('language', 1), ('developing', 1), ('statistical', 1), ('software', 1), ('archaeologist', 1), ('track', 1), ('spread', 1), ('ancient', 1), ('civilization', 1), ('drug', 1), ('company', 1), ('discover', 1), ('medication', 1), ('safe', 1), ('effective', 1), ('actuary', 1)]
[('kid', 2), ('step', 2), ('teach', 1), ('code', 1), ('parent', 1), ('teacher', 1), ('guide', 1), ('teaching', 1), ('basic', 1), ('programming', 1), ('problem', 1), ('solving', 1), ('using', 1), ('python', 1), ('powerful', 1), ('language', 1), ('used', 1), ('college', 1), ('course', 1), ('tech', 1), ('company', 1), ('google', 1), ('ibm', 1), ('explanation', 1)]
[('project', 3), ('raspberry', 2), ('pi', 2), ('step', 2), ('twenty', 1), ('using', 1), ('tiny', 1), ('affordable', 1), ('computer', 1), ('beginner', 1), ('looking', 1), ('make', 1), ('cool', 1), ('thing', 1), ('right', 1), ('away', 1), ('explained', 1), ('full', 1), ('color', 1), ('visuals', 1), ('simple', 1), ('instruction', 1), ('easy', 1)]
[('shell', 2), ('script', 2), ('efficient', 1), ('way', 1), ('interact', 1), ('machine', 1), ('manage', 1), ('file', 1), ('system', 1), ('operation', 1), ('line', 1), ('code', 1), ('computer', 1), ('exactly', 1), ('want', 1), ('use', 1), ('many', 1)]
[('team', 2), ('stressed', 1), ('priority', 1), ('unclear', 1), ('sure', 1), ('teammate', 1), ('working', 1), ('management', 1), ('helping', 1), ('struggling', 1), ('symptom', 1), ('four', 1), ('case', 1), ('study', 1), ('guide', 1), ('project', 1), ('success', 1), ('see', 1), ('kanban', 1), ('used', 1), ('significantly', 1), ('improve', 1), ('time', 1), ('market', 1), ('create', 1), ('shared', 1), ('focus', 1), ('across', 1)]
[('user', 2), ('need', 2), ('erlang', 2), ('multi', 1), ('game', 1), ('web', 1), ('site', 1), ('cloud', 1), ('application', 1), ('networked', 1), ('database', 1), ('thousand', 1), ('interacting', 1), ('time', 1), ('powerful', 1), ('industrial', 1), ('strength', 1), ('tool', 1), ('handle', 1), ('really', 1), ('hard', 1), ('problem', 1), ('inherent', 1), ('parallel', 1), ('concurrent', 1), ('environment', 1), ('second', 1), ('edition', 1), ('bestselling', 1), ('programming', 1)]
[('modern', 3), ('javascript', 2), ('syntax', 2), ('code', 2), ('best', 1), ('simple', 1), ('readable', 1), ('predictable', 1), ('learn', 1), ('write', 1), ('memorizing', 1), ('list', 1), ('new', 1), ('practical', 1), ('example', 1), ('change', 1), ('make', 1), ('expressive', 1), ('starting', 1), ('variable', 1), ('declaration', 1), ('communicate', 1), ('intention', 1), ('clearly', 1), ('see', 1), ('principle', 1), ('improve', 1), ('part', 1)]
[('lt', 3), ('gt', 3), ('easy', 1), ('follow', 1), ('classroom', 1), ('tested', 1), ('textbook', 1), ('guide', 1), ('reader', 1), ('fundamental', 1), ('programming', 1), ('python', 1), ('accessible', 1), ('language', 1), ('learned', 1), ('incrementally', 1), ('amp', 1), ('nbsp', 1), ('feature', 1), ('incus', 1), ('numerous', 1)]
[('gadget', 2), ('mindstorms', 2), ('arduino', 2), ('make', 1), ('amazing', 1), ('robot', 1), ('today', 1), ('hottest', 1), ('diy', 1), ('technology', 1), ('easy', 1), ('follow', 1), ('guide', 1), ('learn', 1), ('build', 1), ('device', 1), ('lego', 1), ('nxt', 1), ('prototyping', 1), ('platform', 1), ('add', 1), ('component', 1), ('bridge', 1), ('alone', 1), ('let', 1), ('create', 1), ('incredible', 1), ('bring', 1), ('jaw', 1), ('dropping', 1)]
[('data', 5), ('big', 4), ('ebook', 1), ('aim', 1), ('give', 1), ('practical', 1), ('guidance', 1), ('want', 1), ('understand', 1), ('better', 1), ('learn', 1), ('make', 1), ('topic', 1), ('range', 1), ('analysis', 1), ('mobile', 1), ('managing', 1), ('unstructured', 1), ('technology', 1), ('governance', 1), ('intellectual', 1), ('property', 1), ('security', 1), ('issue', 1), ('surrounding', 1)]
[('linux', 3), ('book', 2), ('operating', 2), ('system', 2), ('cover', 1), ('topic', 1), ('teach', 1), ('incredible', 1), ('help', 1), ('soon', 1), ('discover', 1), ('exactly', 1), ('operates', 1), ('differs', 1), ('likely', 1), ('better', 1), ('option', 1), ('computing', 1), ('need', 1), ('even', 1), ('brand', 1), ('new', 1)]
[('understand', 1), ('basic', 1), ('business', 1), ('continuity', 1), ('iso', 1), ('concise', 1), ('pocket', 1), ('guide', 1), ('help', 1), ('ensure', 1), ('organisation', 1), ('continue', 1), ('operate', 1), ('event', 1), ('disruption', 1)]
[('itil', 2), ('providing', 2), ('text', 1), ('cover', 1), ('everything', 1), ('need', 1), ('entry', 1), ('level', 1), ('foundation', 1), ('course', 1), ('candidate', 1), ('solid', 1), ('grounding', 1), ('key', 1), ('element', 1), ('concept', 1), ('terminology', 1), ('used', 1), ('service', 1), ('lifecycle', 1), ('go', 1), ('beyond', 1), ('practical', 1), ('guidance', 1), ('newly', 1), ('qualified', 1), ('practitioner', 1), ('enter', 1), ('real', 1), ('world', 1)]
[('digital', 3), ('modelmaking', 2), ('manufacturing', 1), ('become', 1), ('intrinsic', 1), ('part', 1), ('profession', 1), ('today', 1), ('practitioner', 1), ('skilled', 1), ('traditional', 1), ('hand', 1), ('making', 1), ('technique', 1), ('technology', 1), ('relevant', 1), ('wide', 1), ('variety', 1), ('creative', 1), ('industry', 1), ('including', 1), ('film', 1), ('television', 1), ('theatre', 1), ('architecture', 1), ('product', 1), ('design', 1), ('offer', 1)]
[('cyber', 2), ('security', 2), ('timely', 1), ('review', 1), ('fundamental', 1), ('latest', 1), ('development', 1), ('diverse', 1), ('application', 1), ('nature', 1), ('inspired', 1), ('algorithm', 1), ('resiliency', 1), ('based', 1), ('concept', 1), ('natural', 1), ('process', 1), ('phenomenon', 1), ('organism', 1), ('present', 1), ('novel', 1), ('methodology', 1), ('cope', 1), ('challenge', 1)]
[('challenge', 3), ('opportunity', 2), ('cyberspace', 2), ('cyber', 1), ('domain', 1), ('undergoing', 1), ('extraordinary', 1), ('change', 1), ('present', 1), ('exceptional', 1), ('major', 1), ('user', 1), ('arise', 1), ('malevolent', 1), ('actor', 1), ('use', 1), ('many', 1), ('security', 1), ('vulnerability', 1), ('plague', 1), ('sphere', 1), ('exploiting', 1), ('overcoming', 1), ('require', 1)]
[('sql', 3), ('case', 3), ('study', 3), ('example', 2), ('author', 2), ('student', 2), ('us', 1), ('teach', 1), ('reader', 1), ('basic', 1), ('structured', 1), ('query', 1), ('language', 1), ('skill', 1), ('tested', 1), ('classroom', 1), ('thousand', 1), ('text', 1), ('tend', 1), ('use', 1), ('many', 1), ('different', 1), ('data', 1), ('set', 1), ('found', 1), ('used', 1), ('learn', 1)]
[('macos', 2), ('macbook', 2), ('pro', 2), ('something', 2), ('revolutionary', 2), ('thin', 2), ('note', 1), ('book', 1), ('based', 1), ('catalina', 1), ('getting', 1), ('started', 1), ('macbooks', 1), ('imacs', 1), ('contains', 1), ('additional', 1), ('content', 1), ('spec', 1), ('apple', 1), ('released', 1), ('notebook', 1), ('fit', 1), ('envelope', 1), ('newest', 1), ('equally', 1), ('nearly', 1)]
[('cover', 2), ('red', 2), ('hat', 2), ('enterprise', 2), ('linux', 2), ('exam', 2), ('step', 2), ('highlight', 1), ('official', 1), ('objective', 1), ('rhcsa', 1), ('based', 1), ('equally', 1), ('good', 1), ('self', 1), ('study', 1), ('class', 1), ('training', 1), ('exercise', 1), ('challenge', 1), ('lab', 1), ('check', 1), ('understanding', 1), ('question', 1), ('answer', 1), ('concept', 1), ('explained', 1), ('diagram', 1)]
[('wolfram', 4), ('short', 2), ('ebook', 2), ('computation', 2), ('stephen', 1), ('creator', 1), ('mathematica', 1), ('alpha', 1), ('author', 1), ('new', 1), ('kind', 1), ('science', 1), ('elementary', 1), ('introduction', 1), ('language', 1), ('dr', 1), ('dive', 1), ('theory', 1), ('universe', 1), ('take', 1), ('look', 1), ('excerpt', 1), ('future', 1), ('human', 1)]
[('wolfram', 1), ('discus', 1), ('history', 1), ('computation', 1), ('earliest', 1), ('beginning', 1), ('current', 1), ('application', 1), ('emergence', 1), ('computable', 1), ('knowledge', 1), ('notable', 1), ('figure', 1), ('include', 1), ('pythagoras', 1), ('archimedes', 1), ('isaac', 1), ('newton', 1), ('galileo', 1), ('gottfried', 1), ('leibniz', 1), ('carl', 1), ('linnaeus', 1), ('john', 1), ('von', 1), ('neumann', 1), ('many', 1), ('others', 1)]
[('book', 2), ('necessary', 2), ('io', 2), ('swift', 2), ('goal', 1), ('teach', 1), ('skill', 1), ('build', 1), ('application', 1), ('using', 1), ('swiftui', 1), ('xcode', 1), ('programming', 1), ('language', 1), ('beginning', 1), ('basic', 1), ('provides', 1), ('outline', 1), ('step', 1), ('set', 1), ('development', 1), ('environment', 1), ('together', 1), ('introduction', 1), ('use', 1), ('playground', 1), ('learn', 1)]
[('book', 2), ('prescient', 1), ('important', 1), ('fascinating', 1), ('new', 1), ('york', 1), ('review', 1), ('single', 1), ('invention', 1), ('last', 1), ('half', 1), ('century', 1), ('changed', 1), ('way', 1), ('live', 1), ('internet', 1), ('alexander', 1), ('klimburg', 1), ('member', 1)]
[('iot', 2), ('valuable', 1), ('guide', 1), ('new', 1), ('experienced', 1), ('reader', 1), ('featuring', 1), ('complex', 1), ('massive', 1), ('world', 1), ('based', 1), ('solution', 1)]
[('fundamental', 1), ('algorithm', 1), ('data', 1), ('structure', 1), ('power', 1), ('standard', 1), ('bioscience', 1), ('workflow', 1), ('rigorous', 1), ('computer', 1), ('science', 1), ('formulation', 1)]
[('book', 1), ('offer', 1), ('detailed', 1), ('coverage', 1), ('basic', 1), ('computation', 1), ('programming', 1), ('concept', 1), ('supported', 1), ('numerous', 1), ('computer', 1), ('program', 1)]
[('data', 2), ('comprehensive', 1), ('introduction', 1), ('flexible', 1), ('efficient', 1), ('tool', 1), ('describing', 1), ('massive', 1), ('set', 1), ('improve', 1), ('scalability', 1), ('analysis', 1)]
[('learn', 1), ('latest', 1), ('theoretical', 1), ('practical', 1), ('advance', 1), ('radar', 1), ('signal', 1), ('processing', 1), ('using', 1), ('tool', 1), ('compressive', 1), ('sensing', 1)]
[('present', 1), ('basic', 1), ('theory', 1), ('graduate', 1), ('student', 1), ('researcher', 1), ('application', 1), ('circuit', 1), ('proof', 1), ('complexity', 1), ('streaming', 1), ('algorithm', 1), ('distributed', 1), ('computing', 1)]
[('book', 1), ('provides', 1), ('comprehensive', 1), ('authoritative', 1), ('survey', 1), ('covering', 1), ('modeling', 1), ('automatic', 1), ('detection', 1), ('analysis', 1), ('synthesis', 1), ('nonverbal', 1), ('social', 1), ('signal', 1)]
[('summarises', 1), ('idea', 1), ('information', 1), ('system', 1), ('development', 1), ('graduate', 1), ('student', 1), ('professional', 1)]
[('train', 1), ('researcher', 1), ('graduate', 1), ('student', 1), ('state', 1), ('art', 1), ('statistical', 1), ('machine', 1), ('learning', 1), ('method', 1), ('build', 1), ('model', 1), ('real', 1), ('world', 1), ('data', 1)]
[('create', 1), ('web', 1), ('apps', 1), ('allow', 1), ('student', 1), ('learn', 1), ('quantitative', 1), ('material', 1), ('interactive', 1), ('dynamic', 1), ('way', 1), ('using', 1), ('existing', 1), ('skill', 1)]
[('economic', 2), ('examines', 1), ('interplay', 1), ('artificial', 1), ('intelligence', 1), ('international', 1), ('law', 1), ('effect', 1), ('global', 1), ('order', 1), ('title', 1), ('available', 1), ('open', 1), ('access', 1)]
[('guide', 1), ('scientific', 1), ('tutorial', 1), ('covering', 1), ('universe', 1), ('reinforcement', 1), ('learning', 1), ('control', 1), ('theory', 1), ('online', 1), ('decision', 1), ('making', 1)]
[('show', 1), ('traditional', 1), ('nontraditional', 1), ('method', 1), ('anomaly', 1), ('detection', 1), ('time', 1), ('series', 1), ('extended', 1), ('using', 1), ('data', 1), ('analytics', 1)]
[('introduces', 1), ('bayesian', 1), ('method', 1), ('implementation', 1), ('application', 1), ('ranging', 1), ('pointing', 1), ('based', 1), ('interface', 1), ('modelling', 1), ('cognitive', 1), ('process', 1)]
[('pragmatic', 1), ('guide', 1), ('take', 1), ('basic', 1), ('ocaml', 1), ('language', 1), ('understanding', 1), ('type', 1), ('system', 1), ('toolchain', 1), ('runtime', 1)]
[('graduate', 1), ('coursebook', 1), ('offer', 1), ('mathematical', 1), ('foundation', 1), ('modern', 1), ('cryptography', 1), ('reader', 1), ('basic', 1), ('knowledge', 1), ('probability', 1), ('theory', 1)]
[('practice', 2), ('data', 2), ('spss', 2), ('statistic', 2), ('software', 2), ('making', 1), ('sense', 1), ('ibm', 1), ('workbook', 1), ('dummy', 1), ('give', 1), ('need', 1), ('navigate', 1), ('leading', 1), ('statistical', 1), ('suite', 1), ('management', 1), ('analysis', 1), ('advanced', 1), ('analytics', 1), ('business', 1)]
[('written', 1), ('top', 1), ('internationally', 1), ('recognized', 1), ('expert', 1), ('field', 1), ('book', 1), ('concentrate', 1), ('topic', 1), ('remain', 1), ('fundamental', 1), ('low', 1), ('power', 1), ('computing', 1), ('reversible', 1), ('programming', 1), ('language', 1), ('application', 1), ('thermodynamics', 1)]
[('learn', 2), ('application', 2), ('security', 2), ('start', 1), ('comprehensive', 1), ('approachable', 1), ('guide', 1), ('alice', 1), ('bob', 1), ('accessible', 1), ('thorough', 1), ('resource', 1), ('anyone', 1), ('seeking', 1), ('incorporate', 1), ('beginning', 1), ('system', 1)]
[('net', 2), ('latest', 1), ('coverage', 1), ('newest', 1), ('feature', 1), ('professional', 1), ('edition', 1), ('microsoft', 1), ('mvp', 1), ('visual', 1), ('studio', 1), ('development', 1), ('technology', 1), ('veteran', 1), ('developer', 1), ('christian', 1), ('nagel', 1), ('delivers', 1), ('comprehensive', 1), ('tour', 1)]
[('network', 4), ('exam', 2), ('prep', 1), ('success', 1), ('new', 1), ('career', 1), ('administration', 1), ('resource', 1), ('newly', 1), ('updated', 1), ('fifth', 1), ('edition', 1), ('comptia', 1), ('review', 1), ('guide', 1), ('leading', 1), ('expert', 1)]
[('project', 3), ('managing', 2), ('blow', 1), ('past', 1), ('jargon', 1), ('hand', 1), ('practical', 1), ('guidance', 1), ('microsoft', 1), ('lean', 1), ('agile', 1), ('hybrid', 1), ('seems', 1), ('management', 1), ('day', 1), ('come', 1), ('confusing', 1), ('buzzword', 1), ('make', 1)]
[('social', 2), ('medium', 2), ('security', 2), ('enjoy', 1), ('top', 1), ('site', 1), ('ease', 1), ('done', 1), ('correctly', 1), ('way', 1), ('connect', 1), ('friend', 1), ('family', 1), ('world', 1), ('still', 1), ('maintaining', 1)]
[('new', 2), ('facebook', 2), ('user', 2), ('face', 1), ('community', 1), ('shy', 1), ('joining', 1), ('around', 1), ('billion', 1), ('roughly', 1), ('half', 1), ('china', 1), ('worldwide', 1), ('want', 1), ('make', 1), ('sure', 1)]
[('rediscover', 1), ('fundamental', 1), ('advanced', 1), ('topic', 1), ('ipam', 1), ('dns', 1), ('dhcp', 1), ('core', 1), ('networking', 1), ('technology', 1), ('updated', 1), ('stop', 1), ('reference', 1), ('thoroughly', 1), ('revised', 1), ('second', 1), ('edition', 1), ('ip', 1), ('address', 1)]
[('fritzson', 1), ('cover', 1), ('modelica', 1), ('language', 1), ('impressive', 1), ('depth', 1), ('basic', 1), ('concept', 1), ('cyber', 1), ('physical', 1), ('equation', 1), ('base', 1), ('object', 1), ('oriented', 1), ('system', 1), ('model', 1), ('simulation', 1), ('incorporating', 1), ('hundred', 1), ('exercise', 1), ('solution', 1)]
[('life', 2), ('learn', 1), ('think', 1), ('hacker', 1), ('secure', 1), ('system', 1), ('data', 1), ('smartphone', 1), ('laptop', 1), ('desktop', 1), ('computer', 1), ('important', 1), ('business', 1), ('top', 1), ('making', 1), ('easier', 1)]
[('software', 3), ('supply', 2), ('chain', 2), ('discover', 1), ('new', 1), ('cybersecurity', 1), ('landscape', 1), ('interconnected', 1), ('transparency', 1), ('security', 1), ('era', 1), ('driven', 1), ('society', 1), ('team', 1), ('veteran', 1)]
[('die', 3), ('git', 2), ('und', 2), ('der', 2), ('nicht', 2), ('hat', 1), ('sich', 1), ('al', 1), ('quellcodeverwaltung', 1), ('durchgesetzt', 1), ('ist', 1), ('de', 1), ('facto', 1), ('standard', 1), ('softwareentwicklung', 1), ('alle', 1), ('unternehmen', 1), ('noch', 1), ('auf', 1), ('sind', 1), ('werden', 1), ('nächsten', 1), ('jahre', 1), ('wechseln', 1), ('nur', 1), ('entwicklung', 1), ('auch', 1), ('administration', 1)]
[('adobe', 2), ('learn', 1), ('make', 1), ('digital', 1), ('photo', 1), ('pop', 1), ('easy', 1), ('follow', 1), ('help', 1), ('using', 1), ('ai', 1), ('powered', 1), ('software', 1), ('prior', 1), ('photography', 1), ('editing', 1), ('experience', 1), ('necessary', 1), ('photoshop', 1)]
[('data', 4), ('big', 2), ('provides', 1), ('date', 1), ('analysis', 1), ('multi', 1), ('agent', 1), ('system', 1), ('term', 1), ('refers', 1), ('case', 1), ('set', 1), ('large', 1), ('complex', 1), ('traditional', 1), ('processing', 1), ('software', 1)]
[('data', 3), ('organization', 1), ('make', 1), ('science', 1), ('repeatable', 1), ('predictable', 1), ('tool', 1), ('business', 1), ('professional', 1), ('use', 1), ('value', 1), ('enterprise', 1), ('ai', 1), ('project', 1), ('often', 1), ('scattershot', 1)]
[('practice', 2), ('question', 1), ('answer', 1), ('explanation', 1), ('organized', 1), ('full', 1), ('length', 1), ('test', 1), ('plus', 1), ('exam', 1), ('complement', 1), ('lpic', 1), ('study', 1), ('guide', 1), ('linux', 1), ('server', 1), ('currently', 1), ('market', 1), ('share', 1)]
[('done', 1), ('slack', 1), ('wondered', 1), ('le', 1), ('overwhelmed', 1), ('efficient', 1), ('engaged', 1), ('work', 1), ('way', 1), ('make', 1), ('happen', 1), ('course', 1)]
[('security', 3), ('sybex', 1), ('guide', 1), ('window', 1), ('concept', 1), ('perfect', 1), ('beginner', 1), ('important', 1), ('component', 1), ('every', 1), ('company', 1), ('computer', 1), ('network', 1), ('fundamental', 1), ('mta', 1)]
[('design', 3), ('book', 1), ('written', 1), ('product', 1), ('software', 1), ('development', 1), ('graphic', 1), ('ux', 1), ('professional', 1), ('focus', 1), ('creating', 1), ('measurably', 1), ('better', 1), ('user', 1), ('experience', 1), ('want', 1)]
[('android', 3), ('conquer', 1), ('world', 1), ('app', 1), ('development', 1), ('taken', 1), ('mobile', 1), ('tv', 1), ('market', 1), ('become', 1), ('unstoppable', 1), ('offer', 1), ('vast', 1), ('stage', 1), ('developer', 1), ('serve', 1), ('million', 1), ('rake', 1)]
[('creative', 3), ('cloud', 2), ('adobe', 2), ('fly', 1), ('higher', 1), ('make', 1), ('popular', 1), ('tool', 1), ('used', 1), ('designer', 1), ('photographer', 1), ('professional', 1), ('accessible', 1), ('single', 1), ('place', 1)]
[('increased', 2), ('building', 1), ('secure', 1), ('car', 1), ('explores', 1), ('automotive', 1), ('industry', 1), ('address', 1), ('risk', 1), ('cyberattacks', 1), ('incorporate', 1), ('security', 1), ('software', 1), ('development', 1), ('lifecycle', 1)]
[('microsoft', 2), ('amp', 1), ('collaboration', 1), ('skill', 1), ('rock', 1), ('modern', 1), ('workplace', 1), ('harnessing', 1), ('power', 1), ('stop', 1), ('guide', 1), ('world', 1), ('leading', 1), ('productivity', 1), ('platform', 1)]
[('primer', 1), ('currency', 1), ('alternative', 1), ('changing', 1), ('world', 1), ('bitcoin', 1), ('bit', 1), ('puzzling', 1), ('uninitiated', 1), ('ledger', 1), ('blockchain', 1), ('mining', 1), ('cryptocurrency', 1), ('concept', 1), ('going', 1), ('away', 1)]
[('turn', 1), ('data', 1), ('head', 1), ('become', 1), ('valuable', 1), ('employee', 1), ('make', 1), ('organization', 1), ('successful', 1), ('thomas', 1), ('davenport', 1), ('research', 1), ('fellow', 1), ('author', 1), ('competing', 1), ('analytics', 1)]
[('google', 2), ('master', 1), ('in', 1), ('out', 1), ('free', 1), ('use', 1), ('office', 1), ('productivity', 1), ('software', 1), ('teach', 1), ('visually', 1), ('workspace', 1), ('delivers', 1), ('ultimate', 1), ('guide', 1), ('getting', 1)]
[('kali', 3), ('linux', 2), ('ultimate', 1), ('guide', 1), ('pentesting', 1), ('popular', 1), ('powerful', 1), ('distribution', 1), ('used', 1), ('cybersecurity', 1), ('professional', 1), ('around', 1), ('world', 1), ('penetration', 1), ('tester', 1), ('master', 1), ('varied', 1)]
[('azure', 2), ('administrator', 2), ('exam', 2), ('learn', 1), ('take', 1), ('efficiently', 1), ('prepare', 1), ('az', 1), ('authoritative', 1), ('resource', 1), ('mca', 1), ('microsoft', 1), ('study', 1), ('guide', 1)]
[('apple', 3), ('bundle', 2), ('service', 2), ('place', 1), ('favorite', 1), ('available', 1), ('convenient', 1), ('dummy', 1), ('help', 1), ('full', 1), ('value', 1)]
[('add', 2), ('voice', 2), ('larger', 2), ('podcasting', 1), ('revolution', 1), ('world', 1), ('tuning', 1), ('podcasts', 1), ('number', 1), ('ready', 1), ('mix', 1), ('book', 1), ('help', 1), ('find', 1)]
[('privacy', 2), ('discover', 1), ('counterproductive', 1), ('obsolete', 1), ('concept', 1), ('startling', 1), ('new', 1), ('book', 1), ('matter', 1), ('time', 1), ('modern', 1), ('notion', 1), ('quickly', 1), ('evaporating', 1)]
[('data', 4), ('lake', 3), ('take', 1), ('dive', 1), ('latest', 1), ('buzz', 1), ('word', 1), ('world', 1), ('storage', 1), ('management', 1), ('analysis', 1), ('dummy', 1), ('decodes', 1), ('demystifies', 1)]
[('cloud', 2), ('native', 2), ('explore', 1), ('latest', 1), ('comprehensive', 1), ('guide', 1), ('securing', 1), ('technology', 1), ('stack', 1), ('security', 1), ('delivers', 1), ('detailed', 1), ('study', 1), ('minimizing', 1), ('attack', 1), ('surface', 1)]
[('programming', 2), ('running', 1), ('start', 1), ('learning', 1), ('fun', 1), ('easy', 1), ('guide', 1), ('versatile', 1), ('powerful', 1), ('language', 1), ('around', 1), ('might', 1), ('think', 1), ('intimidating', 1)]
[('engineer', 2), ('programming', 2), ('complete', 1), ('textbook', 1), ('reference', 1), ('learn', 1), ('fundamental', 1), ('computer', 1), ('modern', 1), ('introduction', 1), ('original', 1)]
[('raspberry', 3), ('pi', 2), ('computer', 2), ('recipe', 1), ('fun', 1), ('getting', 1), ('thing', 1), ('done', 1), ('make', 1), ('easy', 1), ('learn', 1), ('programming', 1)]
[('powershell', 3), ('take', 1), ('advantage', 1), ('everything', 1), ('microsoft', 1), ('new', 1), ('offer', 1), ('pro', 1), ('guide', 1), ('using', 1), ('open', 1), ('source', 1), ('cross', 1), ('platform', 1), ('version', 1)]
[('big', 2), ('data', 2), ('analytics', 2), ('peek', 1), ('hood', 1), ('world', 1), ('grows', 1), ('complex', 1), ('many', 1), ('work', 1), ('superficially', 1), ('specific', 1), ('framework', 1), ('far', 1), ('fewer', 1), ('understand', 1)]
[('photoshop', 2), ('picture', 1), ('perfect', 1), ('cc', 1), ('stunning', 1), ('program', 1), ('put', 1), ('power', 1), ('professional', 1), ('photography', 1), ('studio', 1), ('hand', 1), ('jungle', 1), ('navigate', 1), ('dense', 1)]
[('become', 2), ('visual', 2), ('studio', 2), ('code', 2), ('python', 2), ('proficient', 1), ('efficient', 1), ('learn', 1), ('integrate', 1), ('external', 1), ('tool', 1), ('programmer', 1), ('help', 1), ('developer', 1)]
[('move', 1), ('beyond', 1), ('checklist', 1), ('fully', 1), ('protect', 1), ('third', 1), ('party', 1), ('cybersecurity', 1), ('risk', 1), ('last', 1), ('decade', 1), ('hundred', 1), ('big', 1), ('name', 1), ('organization', 1), ('every', 1), ('sector', 1), ('experienced', 1)]
[('business', 2), ('regulation', 2), ('privacy', 2), ('protect', 1), ('value', 1), ('stay', 1), ('compliant', 1), ('global', 1), ('meet', 1), ('stakeholder', 1), ('demand', 1), ('cybersecurity', 1), ('essential', 1)]
[('pc', 2), ('show', 1), ('bos', 1), ('nothing', 1), ('annoying', 1), ('tech', 1), ('malfunction', 1), ('especially', 1), ('exception', 1), ('perhaps', 1), ('wading', 1), ('ream', 1), ('random', 1), ('unreliable', 1), ('theory', 1), ('online', 1), ('looking', 1)]
[('guide', 2), ('selling', 1), ('wi', 1), ('fi', 1), ('networking', 1), ('reference', 1), ('world', 1), ('cwna', 1), ('certified', 1), ('wireless', 1), ('network', 1), ('administrator', 1), ('study', 1), ('ultimate', 1), ('preparation', 1), ('resource', 1)]
[('cloud', 3), ('comptia', 2), ('newly', 1), ('revised', 1), ('third', 1), ('edition', 1), ('study', 1), ('guide', 1), ('exam', 1), ('cvo', 1), ('expert', 1), ('ben', 1), ('piper', 1), ('delivers', 1), ('industry', 1), ('leading', 1), ('resource', 1), ('anyone', 1), ('preparing', 1), ('certification', 1), ('career', 1)]
[('harden', 1), ('business', 1), ('internal', 1), ('external', 1), ('cybersecurity', 1), ('threat', 1), ('single', 1), ('accessible', 1), ('resource', 1), ('step', 1), ('better', 1), ('security', 1), ('simple', 1), ('cyber', 1), ('resilience', 1), ('guide', 1)]
[('matlab', 2), ('learning', 1), ('program', 1), ('introductory', 1), ('text', 1), ('integrating', 1), ('science', 1), ('mathematics', 1), ('engineering', 1), ('give', 1), ('basic', 1), ('understanding', 1), ('fundamental', 1), ('computer', 1), ('programming', 1)]
[('mac', 2), ('unlock', 1), ('potential', 1), ('macos', 1), ('monterey', 1), ('updated', 1), ('guide', 1), ('dr', 1), ('famously', 1), ('absolute', 1), ('pleasure', 1), ('use', 1), ('even', 1), ('fun', 1), ('discovering', 1), ('cool', 1), ('thing', 1), ('new', 1)]
[('sscp', 2), ('isc', 2), ('²', 2), ('practice', 2), ('smarter', 1), ('faster', 1), ('prep', 1), ('exam', 1), ('official', 1), ('test', 1), ('nd', 1), ('edition', 1), ('endorsed', 1), ('set', 1), ('question', 1), ('system', 1), ('security', 1), ('certified', 1), ('practitioner', 1)]
[('quickbooks', 3), ('make', 2), ('soup', 1), ('nut', 1), ('reference', 1), ('small', 1), ('business', 1), ('life', 1), ('simpler', 1), ('quick', 1), ('book', 1)]
[('go', 2), ('announced', 2), ('practical', 1), ('hand', 1), ('guide', 1), ('writing', 1), ('application', 1), ('using', 1), ('google', 1), ('programming', 1), ('language', 1), ('public', 1), ('version', 1), ('release', 1)]
[('excel', 3), ('microsoft', 2), ('erate', 1), ('productivity', 1), ('guide', 1), ('need', 1), ('latest', 1), ('version', 1), ('offer', 1), ('unsurpassed', 1), ('functionality', 1), ('accessibility', 1), ('data', 1), ('exploration', 1), ('analysis', 1), ('million', 1)]
[('sc', 2), ('exam', 2), ('study', 2), ('guide', 2), ('prep', 1), ('pro', 1), ('sybex', 1), ('latest', 1), ('mce', 1), ('microsoft', 1), ('certified', 1), ('expert', 1), ('cybersecurity', 1), ('architect', 1), ('team', 1), ('dedicated', 1), ('software', 1)]
[('learn', 2), ('step', 2), ('zoom', 1), ('flash', 1), ('instruction', 1), ('clear', 1), ('full', 1), ('size', 1), ('screenshots', 1), ('anyone', 1), ('looking', 1), ('fast', 1), ('easy', 1), ('way', 1), ('popular', 1), ('videoconferencing', 1), ('software', 1), ('market', 1)]
[('engaging', 2), ('design', 2), ('delightful', 1), ('comprehensive', 1), ('overview', 1), ('interaction', 1), ('effective', 1), ('critical', 1), ('component', 1), ('digital', 1), ('product', 1), ('virtual', 1), ('reality', 1), ('software', 1), ('chatbots', 1), ('smartphone', 1), ('apps', 1)]
[('business', 2), ('cybersecurity', 2), ('learn', 1), ('effectively', 1), ('deliver', 1), ('aligned', 1), ('outcome', 1), ('ciso', 1), ('evolution', 1), ('knowledge', 1), ('executive', 1), ('information', 1), ('security', 1), ('expert', 1), ('matthew', 1)]
[('autocad', 2), ('project', 2), ('step', 1), ('away', 1), ('creating', 1), ('crystal', 1), ('clear', 1), ('computer', 1), ('aided', 1), ('draft', 1), ('started', 1), ('give', 1), ('quite', 1), ('hang', 1), ('coming', 1)]
[('software', 2), ('engineering', 2), ('discover', 1), ('foundation', 1), ('easy', 1), ('intuitive', 1), ('guide', 1), ('newly', 1), ('updated', 1), ('second', 1), ('edition', 1), ('beginning', 1), ('expert', 1), ('programmer', 1), ('tech', 1), ('educator', 1)]
[('machine', 1), ('learning', 1), ('optimization', 1), ('technique', 1), ('revolutionizing', 1), ('world', 1), ('type', 1), ('information', 1), ('technology', 1), ('progressed', 1), ('rapidly', 1), ('recent', 1), ('year', 1), ('term', 1), ('real', 1), ('impact', 1), ('aim', 1), ('book', 1), ('present', 1), ('innovative', 1)]
[('system', 2), ('society', 1), ('today', 1), ('dependent', 1), ('malfunction', 1), ('devastating', 1), ('consequence', 1), ('human', 1), ('financial', 1), ('technical', 1), ('design', 1), ('functional', 1), ('complexity', 1), ('numerous', 1), ('interface', 1), ('justify', 1), ('significant', 1)]
[('sie', 2), ('ist', 2), ('buch', 2), ('wollten', 1), ('schon', 1), ('immer', 1), ('ihre', 1), ('eigene', 1), ('spielidee', 1), ('umsetzen', 1), ('gamedesign', 1), ('ihr', 1), ('traumberuf', 1), ('diesis', 1), ('zeigt', 1), ('ihnen', 1), ('wie', 1), ('eigenen', 1), ('spielcharakteren', 1), ('leben', 1), ('einhauchen', 1), ('und', 1), ('spieler', 1), ('mit', 1), ('originellen', 1), ('spielregeln', 1), ('lange', 1), ('begeistern', 1), ('da', 1), ('ganze', 1), ('al', 1)]
[('java', 2), ('beginning', 1), ('coder', 1), ('resource', 1), ('learning', 1), ('popular', 1), ('coding', 1), ('language', 1), ('dummy', 1), ('book', 1), ('rounded', 1), ('knowledge', 1), ('market', 1)]
[('happens', 1), ('researcher', 1), ('practitioner', 1), ('spend', 1), ('hour', 1), ('crammed', 1), ('fiat', 1), ('discussing', 1), ('data', 1), ('visualization', 1), ('beyond', 1), ('creating', 1), ('beautiful', 1), ('chart', 1), ('found', 1), ('greater', 1), ('richness', 1), ('craft', 1), ('integrated', 1), ('whole', 1), ('drawing', 1)]
[('mca', 2), ('md', 2), ('complete', 1), ('updated', 1), ('study', 1), ('guide', 1), ('modern', 1), ('desktop', 1), ('administrator', 1), ('certification', 1), ('exam', 1), ('cover', 1), ('new', 1), ('window', 1), ('service', 1), ('technology', 1), ('microsoft', 1), ('certified', 1), ('associate', 1)]
[('metaverse', 2), ('first', 1), ('step', 1), ('understanding', 1), ('probably', 1), ('heard', 1), ('word', 1), ('seemingly', 1), ('went', 1), ('nonexistent', 1), ('everywhere', 1), ('next', 1), ('big', 1), ('thing', 1)]
[('study', 2), ('guide', 2), ('data', 2), ('azure', 2), ('cloud', 2), ('authoritative', 1), ('complete', 1), ('beginning', 1), ('work', 1), ('mc', 1), ('fundamental', 1), ('exam', 1), ('dp', 1), ('expert', 1), ('solution', 1)]
[('data', 2), ('analytics', 2), ('team', 2), ('organize', 1), ('plan', 1), ('build', 1), ('exceptional', 1), ('within', 1), ('organization', 1), ('minding', 1), ('machine', 1), ('building', 1), ('leading', 1), ('science', 1), ('ai', 1)]
[('holistic', 1), ('real', 1), ('world', 1), ('approach', 1), ('operationalizing', 1), ('artificial', 1), ('intelligence', 1), ('company', 1), ('operating', 1), ('ai', 1), ('director', 1), ('technology', 1), ('architecture', 1), ('ericsson', 1), ('ab', 1), ('ulrika', 1)]
[('system', 2), ('society', 1), ('today', 1), ('dependent', 1), ('malfunction', 1), ('devastating', 1), ('consequence', 1), ('human', 1), ('financial', 1), ('technical', 1), ('design', 1), ('functional', 1), ('complexity', 1), ('numerous', 1), ('interface', 1), ('justify', 1), ('significant', 1)]
[('edition', 2), ('assembly', 2), ('language', 2), ('step', 2), ('long', 1), ('awaited', 1), ('bestselling', 1), ('introduction', 1), ('intel', 1), ('newly', 1), ('revised', 1), ('fourth', 1), ('programming', 1), ('linux', 1)]
[('edition', 2), ('study', 2), ('guide', 2), ('aws', 2), ('advanced', 2), ('networking', 2), ('latest', 1), ('official', 1), ('certification', 1), ('specialty', 1), ('exam', 1), ('newly', 1), ('revised', 1), ('second', 1), ('certified', 1)]
[('new', 2), ('certification', 2), ('help', 2), ('advance', 1), ('existing', 1), ('career', 1), ('build', 1), ('pentest', 1), ('looking', 1), ('hand', 1), ('achieving', 1), ('tech', 1), ('industry', 1), ('leading', 1), ('complete', 1), ('online', 1), ('test', 1), ('bank', 1)]
[('window', 3), ('server', 3), ('running', 2), ('essential', 1), ('administering', 1), ('book', 1), ('looking', 1), ('little', 1), ('help', 1), ('installing', 1), ('configuring', 1), ('securing', 1), ('network', 1)]
[('iphone', 2), ('pro', 2), ('learn', 1), ('new', 1), ('max', 1), ('capable', 1), ('color', 1), ('screen', 1), ('shot', 1), ('teach', 1), ('visually', 1), ('ultimate', 1), ('guide', 1), ('getting', 1)]
[('human', 3), ('machine', 3), ('system', 3), ('handbook', 2), ('insightful', 1), ('cutting', 1), ('edge', 1), ('discussion', 1), ('recent', 1), ('development', 1), ('team', 1)]
[('next', 2), ('ai', 2), ('discover', 1), ('major', 1), ('revolution', 1), ('data', 1), ('science', 1), ('applies', 1), ('organization', 1), ('causal', 1), ('artificial', 1), ('intelligence', 1), ('step', 1), ('effective', 1), ('efficient', 1), ('practical', 1)]
[('core', 3), ('exam', 2), ('improve', 1), ('understanding', 1), ('objective', 1), ('prepare', 1), ('new', 1), ('career', 1), ('computer', 1), ('technician', 1), ('third', 1), ('edition', 1), ('comptia', 1), ('complete', 1), ('practice', 1), ('test', 1)]
[('html', 2), ('cs', 2), ('visually', 2), ('level', 1), ('web', 1), ('development', 1), ('skill', 1), ('dynamic', 1), ('visual', 1), ('guide', 1), ('teach', 1), ('perfect', 1), ('resource', 1), ('prefer', 1), ('learn', 1)]
[('und', 2), ('studierende', 1), ('von', 1), ('bachelor', 1), ('studiengängen', 1), ('hochschulen', 1), ('universitäten', 1), ('bei', 1), ('denen', 1), ('die', 1), ('informatik', 1), ('auf', 1), ('irgendeine', 1), ('weise', 1), ('curriculum', 1), ('auftaucht', 1), ('dürfen', 1), ('sich', 1), ('freuen', 1), ('diesis', 1), ('buch', 1), ('verschafft', 1), ('ihnen', 1), ('einfach', 1), ('schnell', 1), ('unterhaltsam', 1), ('wie', 1), ('möglich', 1)]
[('impact', 2), ('brand', 1), ('new', 1), ('edition', 1), ('definitive', 1), ('textbook', 1), ('humankind', 1), ('earth', 1), ('environment', 1), ('full', 1), ('color', 1), ('classic', 1), ('text', 1), ('explores', 1), ('multitude', 1), ('human', 1), ('time', 1)]
[('data', 2), ('learn', 1), ('easily', 1), ('transform', 1), ('engaging', 1), ('interactive', 1), ('visual', 1), ('report', 1), ('longer', 1), ('sole', 1), ('domain', 1), ('tech', 1), ('professional', 1), ('scientist', 1), ('whether', 1), ('personal', 1), ('business', 1)]
[('architecting', 2), ('blockchain', 2), ('enterprise', 2), ('demystify', 1), ('complex', 1), ('application', 1), ('environment', 1), ('solution', 1), ('help', 1), ('engineer', 1), ('administrator', 1), ('understand', 1)]
[('android', 3), ('create', 2), ('apps', 2), ('programming', 2), ('mobile', 1), ('required', 1), ('even', 1), ('limited', 1), ('experience', 1), ('easily', 1), ('learn', 1), ('platform', 1), ('complete', 1), ('guide', 1), ('app', 1), ('inventor', 1)]
[('analysis', 2), ('graph', 2), ('wring', 1), ('data', 1), ('scientific', 1), ('approach', 1), ('visualization', 1), ('brings', 1), ('theory', 1), ('lab', 1), ('real', 1), ('world', 1), ('using', 1), ('sophisticated', 1), ('method', 1), ('tool', 1)]
[('book', 1), ('take', 1), ('sting', 1), ('learning', 1), ('object', 1), ('oriented', 1), ('design', 1), ('pattern', 1), ('using', 1), ('vignette', 1), ('fictional', 1), ('world', 1), ('harry', 1), ('potter', 1), ('author', 1), ('avinash', 1), ('kak', 1), ('provides', 1), ('refreshing', 1), ('alternative', 1), ('typically', 1), ('abstract', 1)]
[('nosql', 2), ('database', 2), ('speed', 1), ('nuance', 1), ('mean', 1), ('organization', 1), ('easy', 1), ('guide', 1), ('provides', 1), ('type', 1), ('nonsense', 1), ('overview', 1), ('analysis', 1), ('need', 1), ('learn', 1)]
[('pi', 5), ('raspberry', 3), ('guide', 2), ('learn', 1), ('expert', 1), ('user', 1), ('th', 1), ('edition', 1), ('unofficial', 1), ('official', 1), ('everything', 1), ('written', 1), ('creator', 1), ('leading', 1), ('guru', 1)]
[('practice', 2), ('exam', 2), ('comptia', 2), ('project', 2), ('question', 1), ('full', 1), ('explanation', 1), ('test', 1), ('pk', 1), ('compliment', 1), ('sybex', 1), ('study', 1), ('guide', 1), ('providing', 1), ('last', 1), ('minute', 1), ('review', 1)]
[('book', 2), ('photoshop', 2), ('user', 1), ('need', 1), ('body', 1), ('shape', 1), ('full', 1), ('color', 1), ('show', 1), ('newest', 1), ('previous', 1), ('version', 1), ('used', 1), ('retouch', 1), ('enhance', 1), ('entire', 1), ('human', 1)]
[('developer', 2), ('administrator', 2), ('stellar', 1), ('author', 1), ('team', 1), ('microsoft', 1), ('mvp', 1), ('help', 1), ('window', 1), ('ii', 1), ('want', 1), ('thoroughly', 1), ('speed', 1)]
[('bbc', 2), ('micro', 2), ('bit', 2), ('go', 1), ('guide', 1), ('getting', 1), ('started', 1), ('exploring', 1), ('amazing', 1), ('capability', 1), ('pocket', 1), ('sized', 1), ('electronic', 1), ('development', 1), ('platform', 1), ('built', 1), ('education', 1)]
[('cultural', 2), ('thorough', 1), ('look', 1), ('society', 1), ('use', 1), ('algorithm', 1), ('understand', 1), ('human', 1), ('social', 1), ('evolution', 1), ('working', 1), ('computational', 1), ('intelligence', 1), ('developing', 1), ('understanding', 1)]
[('visualize', 2), ('data', 2), ('step', 2), ('guide', 1), ('tell', 1), ('story', 1), ('providing', 1), ('practical', 1), ('design', 1), ('tip', 1), ('complemented', 1), ('tutorial', 1), ('begin', 1), ('description', 1), ('huge', 1), ('growth', 1), ('visualization', 1)]
[('near', 2), ('field', 2), ('communication', 2), ('nonsense', 1), ('guide', 1), ('newcomer', 1), ('baffled', 1), ('scant', 1), ('documentation', 1), ('online', 1), ('support', 1), ('available', 1), ('powerful', 1), ('new', 1), ('technology', 1), ('come', 1)]
[('secure', 2), ('dive', 1), ('future', 1), ('professional', 1), ('look', 1), ('ethereum', 1), ('blockchain', 1), ('based', 1), ('platform', 1), ('develop', 1), ('safe', 1), ('application', 1), ('conduct', 1), ('transaction', 1), ('take', 1), ('knowledgeable', 1), ('guiding', 1), ('hand', 1)]
[('database', 2), ('easy', 1), ('step', 1), ('practical', 1), ('really', 1), ('know', 1), ('build', 1), ('populate', 1), ('simplify', 1), ('far', 1), ('access', 1), ('dummy', 1), ('help', 1), ('join', 1)]
[('programming', 3), ('functional', 2), ('paradigm', 2), ('guide', 1), ('mainly', 1), ('see', 1), ('use', 1), ('math', 1), ('computation', 1), ('including', 1), ('used', 1), ('artificial', 1), ('intelligence', 1), ('gaming', 1)]
[('data', 3), ('science', 3), ('learn', 1), ('using', 1), ('python', 1), ('plugged', 1), ('world', 1), ('widespread', 1)]
[('reference', 2), ('window', 2), ('server', 2), ('powershell', 2), ('stop', 1), ('know', 1), ('dummy', 1), ('offer', 1), ('single', 1), ('help', 1), ('build', 1)]
[('zbrush', 2), ('learn', 1), ('work', 1), ('effectively', 1), ('creatively', 1), ('version', 1), ('used', 1), ('top', 1), ('artist', 1), ('hollywood', 1), ('model', 1), ('sculpt', 1), ('character', 1), ('film', 1), ('avatar', 1), ('iron', 1)]
[('visual', 2), ('guide', 2), ('samsung', 2), ('galaxy', 2), ('step', 2), ('unlocking', 1), ('full', 1), ('potential', 1), ('teach', 1), ('visually', 1), ('everything', 1), ('new', 1), ('phone', 1), ('offer', 1), ('expert', 1)]
[('pattern', 3), ('first', 1), ('volume', 1), ('posa', 1), ('series', 1), ('introduced', 1), ('broad', 1), ('spectrum', 1), ('general', 1), ('purpose', 1), ('software', 1), ('design', 1), ('architecture', 1), ('second', 1), ('narrowed', 1), ('focus', 1), ('fundamental', 1), ('building', 1), ('sophisticated', 1), ('concurrent', 1), ('networked', 1)]
[('photoshop', 2), ('element', 2), ('touch', 1), ('creative', 1), ('side', 1), ('using', 1), ('dummy', 1), ('cover', 1), ('newest', 1), ('version', 1), ('adobe', 1), ('beginner', 1), ('friendly', 1), ('photo', 1), ('editing', 1), ('software', 1), ('help', 1)]
[('make', 1), ('powerpoint', 1), ('power', 1), ('ful', 1), ('weapon', 1), ('office', 1), ('arsenal', 1), ('captivate', 1), ('audience', 1), ('presentation', 1), ('opportunity', 1), ('stand', 1), ('crowd', 1), ('impress', 1), ('colleague', 1)]
[('microsoft', 2), ('power', 2), ('bi', 2), ('comprehensive', 1), ('fully', 1), ('visual', 1), ('guide', 1), ('teach', 1), ('visually', 1), ('collect', 1), ('resource', 1), ('need', 1), ('master', 1), ('everyday', 1), ('use', 1), ('powerful', 1), ('data', 1), ('visualization', 1), ('software', 1), ('delivers', 1), ('single', 1)]
[('practice', 3), ('test', 2), ('ass', 1), ('improve', 1), ('networking', 1), ('skillset', 1), ('proven', 1), ('sybex', 1), ('freshly', 1), ('revised', 1), ('second', 1), ('edition', 1), ('comptia', 1), ('network', 1), ('exam', 1), ('expert', 1), ('author', 1), ('craig', 1), ('zacker', 1), ('delivers', 1), ('set', 1), ('accessible', 1), ('useful', 1)]
[('researcher', 2), ('start', 1), ('finish', 1), ('guide', 1), ('useful', 1), ('programming', 1), ('language', 1), ('variety', 1), ('field', 1), ('newly', 1), ('revised', 1), ('third', 1), ('edition', 1), ('book', 1), ('team', 1), ('distinguished', 1), ('teacher', 1), ('delivers', 1), ('user', 1), ('friendly', 1)]
[('problem', 2), ('includes', 2), ('coverage', 1), ('accessible', 1), ('practitioner', 1), ('academic', 1), ('reader', 1), ('alike', 1), ('feature', 1), ('end', 1), ('chapter', 1), ('answer', 1), ('provided', 1), ('appendix', 1), ('discussion', 1), ('rule', 1), ('based', 1), ('system', 1), ('available', 1), ('book', 1), ('set', 1)]
[('book', 2), ('xml', 2), ('tool', 2), ('apache', 2), ('java', 1), ('programmer', 1), ('working', 1), ('probably', 1), ('already', 1), ('use', 1), ('developed', 1), ('software', 1), ('foundation', 1), ('code', 1), ('intensive', 1), ('guide', 1), ('relevant', 1)]
[('nikon', 2), ('guide', 1), ('capturing', 1), ('perfect', 1), ('shot', 1), ('created', 1), ('buzz', 1), ('photography', 1), ('community', 1), ('gaining', 1), ('recognition', 1), ('appealing', 1), ('combination', 1), ('high', 1), ('end', 1), ('feature', 1), ('compact', 1), ('size', 1), ('upgrading', 1), ('existing', 1), ('dslr', 1), ('even', 1), ('purchasing', 1), ('first', 1), ('camera', 1), ('dummy', 1), ('help', 1), ('feel', 1), ('pro', 1)]
[('concept', 3), ('professional', 2), ('network', 2), ('master', 1), ('fundamental', 1), ('heart', 1), ('networking', 1), ('subnetting', 1), ('aspiring', 1), ('guide', 1), ('practice', 1), ('core', 1), ('field', 1), ('dividing', 1), ('single', 1), ('physical', 1), ('smaller', 1), ('subnetworks', 1), ('gain', 1), ('greater', 1), ('control', 1), ('performance', 1), ('access', 1), ('security', 1), ('simple', 1)]
[('machine', 2), ('learning', 2), ('technique', 2), ('computational', 2), ('increasingly', 1), ('used', 1), ('address', 1), ('problem', 1), ('biology', 1), ('bioinformatics', 1), ('novel', 1), ('analyze', 1), ('high', 1), ('throughput', 1), ('data', 1), ('form', 1), ('sequence', 1), ('gene', 1), ('protein', 1)]
[('financial', 3), ('turn', 1), ('data', 1), ('insightful', 1), ('decision', 1), ('straightforward', 1), ('guide', 1), ('modeling', 1), ('excel', 1), ('interested', 1), ('learning', 1), ('build', 1), ('practical', 1), ('model', 1), ('forecast', 1), ('concerned', 1), ('math', 1), ('skill', 1)]
[('computer', 2), ('exhilarating', 1), ('elegant', 1), ('memoir', 1), ('significant', 1), ('polemic', 1), ('algorithm', 1), ('shape', 1), ('understanding', 1), ('world', 1), ('bitwise', 1), ('wondrous', 1), ('ode', 1), ('lan', 1), ('shy', 1), ('guages', 1), ('code', 1), ('captured', 1), ('technologist', 1)]
[('approach', 3), ('linguistics', 3), ('significance', 2), ('test', 2), ('researcher', 2), ('corpus', 2), ('traditional', 1), ('focused', 1), ('often', 1), ('difficult', 1), ('visualise', 1), ('statistic', 1), ('research', 1), ('new', 1), ('break', 1), ('linguistic', 1), ('analysis', 1), ('promoting', 1), ('visual', 1), ('understanding', 1), ('performance', 1)]
[('music', 4), ('ubiquitous', 3), ('computer', 2), ('interdisciplinary', 1), ('area', 1), ('research', 1), ('lie', 1), ('intersection', 1), ('science', 1), ('initially', 1), ('evolving', 1), ('related', 1), ('concept', 1), ('computing', 1), ('today', 1), ('offer', 1), ('paradigm', 1), ('understanding', 1), ('everyday', 1), ('presence', 1), ('led', 1), ('highly', 1), ('diverse', 1), ('practice', 1), ('move', 1)]
[('shooting', 3), ('written', 2), ('instinct', 2), ('long', 1), ('gun', 1), ('little', 1), ('published', 1), ('handgun', 1), ('publication', 1), ('pioneering', 1), ('author', 1), ('concept', 1), ('combat', 1), ('defensive', 1), ('handgunning', 1), ('police', 1), ('fourth', 1), ('edition', 1), ('winning', 1), ('target', 1), ('competition', 1)]
[('around', 2), ('data', 2), ('political', 2), ('multidisciplinary', 1), ('book', 1), ('expert', 1), ('globe', 1), ('examine', 1), ('driven', 1), ('campaigning', 1), ('work', 1), ('challenge', 1), ('pose', 1), ('personal', 1), ('privacy', 1), ('democracy', 1), ('emerging', 1), ('practice', 1), ('regulated', 1), ('rise', 1), ('big', 1), ('analytics', 1), ('process', 1), ('triggered', 1), ('official', 1), ('investigation', 1), ('many', 1), ('country', 1)]
[('record', 3), ('digital', 3), ('trust', 2), ('open', 1), ('environment', 1), ('explores', 1), ('issue', 1), ('arise', 1), ('entrusted', 1), ('cloud', 1), ('help', 1), ('professional', 1), ('make', 1), ('informed', 1), ('choice', 1), ('context', 1), ('rapidly', 1), ('changing', 1), ('economy', 1), ('showing', 1), ('need', 1), ('ensure', 1), ('public', 1), ('especially', 1), ('era', 1), ('alternative', 1), ('truth', 1), ('volume', 1)]
[('creative', 2), ('electronic', 2), ('music', 2), ('process', 2), ('production', 2), ('producer', 1), ('examines', 1), ('idea', 1), ('discovery', 1), ('perception', 1), ('power', 1), ('improvising', 1), ('editing', 1), ('effect', 1), ('processing', 1), ('sound', 1), ('design', 1), ('featuring', 1), ('case', 1), ('study', 1), ('across', 1), ('globe', 1), ('musical', 1), ('system', 1), ('workflow', 1), ('used', 1), ('book', 1), ('highlight', 1)]
[('crime', 2), ('internet', 2), ('punishment', 1), ('future', 1), ('examination', 1), ('development', 1), ('impact', 1), ('digital', 1), ('frontier', 1), ('technology', 1), ('dfts', 1), ('artificial', 1), ('intelligence', 1), ('thing', 1), ('autonomous', 1), ('mobile', 1), ('robot', 1), ('blockchain', 1), ('offending', 1), ('control', 1), ('criminal', 1), ('justice', 1), ('system', 1), ('discipline', 1), ('criminology', 1), ('pose', 1)]
[('step', 3), ('applied', 2), ('efa', 2), ('spss', 2), ('concise', 1), ('easy', 1), ('use', 1), ('guide', 1), ('researcher', 1), ('conducting', 1), ('exploratory', 1), ('factor', 1), ('analysis', 1), ('using', 1), ('book', 1), ('dr', 1), ('watkins', 1), ('systematically', 1), ('review', 1), ('decision', 1), ('screen', 1), ('shot', 1), ('code', 1), ('recommends', 1), ('evidence', 1), ('based', 1), ('best', 1), ('practice', 1), ('procedure', 1), ('eminently', 1), ('practical', 1)]
[('production', 3), ('real', 2), ('time', 2), ('content', 2), ('live', 2), ('video', 1), ('virtual', 1), ('entertainment', 1), ('look', 1), ('evolution', 1), ('current', 1), ('software', 1), ('hardware', 1), ('tool', 1), ('used', 1), ('plan', 1), ('dependent', 1), ('rock', 1), ('concert', 1), ('theatre', 1), ('television', 1), ('broadcast', 1), ('film', 1), ('art', 1), ('installation', 1), ('immersive', 1), ('experience', 1), ('book', 1)]
[('healthcare', 3), ('information', 2), ('technology', 2), ('exam', 2), ('guide', 2), ('hit', 2), ('complete', 1), ('reference', 1), ('gain', 1), ('skill', 1), ('knowledge', 1), ('required', 1), ('implement', 1), ('support', 1), ('system', 1), ('various', 1), ('clinical', 1), ('business', 1), ('setting', 1), ('health', 1), ('chts', 1), ('cahims', 1), ('certification', 1), ('prepares', 1), ('professional', 1), ('transition', 1)]
[('data', 3), ('bi', 3), ('using', 2), ('microsoft', 2), ('power', 2), ('explore', 1), ('create', 1), ('manage', 1), ('highly', 1), ('interactive', 1), ('visualization', 1), ('extract', 1), ('meaningful', 1), ('business', 1), ('insight', 1), ('disparate', 1), ('enterprise', 1), ('detailed', 1), ('information', 1), ('contained', 1), ('practical', 1), ('guide', 1), ('written', 1), ('recognized', 1), ('expert', 1), ('bestselling', 1), ('author', 1), ('analysis', 1), ('teach', 1)]
[('industry', 2), ('foreword', 1), ('mark', 1), ('stephen', 1), ('larow', 1), ('vice', 1), ('president', 1), ('product', 1), ('microstrategy', 1), ('unique', 1), ('authoritative', 1), ('book', 1), ('blend', 1), ('recent', 1), ('research', 1), ('development', 1), ('level', 1), ('practice', 1), ('researcher', 1), ('student', 1), ('practitioner', 1), ('il', 1), ('yeol', 1), ('song', 1), ('professor', 1), ('college', 1), ('information', 1), ('science', 1), ('technology', 1), ('drexel', 1), ('university', 1)]
[('data', 3), ('business', 2), ('intelligence', 2), ('warehouse', 2), ('develop', 1), ('custom', 1), ('agile', 1), ('warehousing', 1), ('architecture', 1), ('empower', 1), ('user', 1), ('drive', 1), ('better', 1), ('decision', 1), ('making', 1), ('across', 1), ('enterprise', 1), ('detailed', 1), ('instruction', 1), ('best', 1), ('practice', 1), ('expert', 1), ('developer', 1), ('trainer', 1), ('mentor', 1), ('practical', 1), ('insight', 1), ('show', 1), ('plan', 1)]
[('comptia', 3), ('publisher', 2), ('product', 2), ('storage', 2), ('exam', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('concise', 1), ('focused', 1), ('coverage', 1), ('prepare', 1), ('mcgraw', 1), ('hill', 1), ('platinum', 1), ('level', 1), ('authorized', 1)]
[('mobile', 3), ('forensics', 3), ('investigation', 3), ('guide', 2), ('evidence', 2), ('collection', 2), ('analysis', 2), ('depth', 1), ('reveals', 1), ('art', 1), ('comprehensive', 1), ('coverage', 1), ('entire', 1), ('lifecycle', 1), ('advanced', 1), ('data', 1), ('reporting', 1), ('presenting', 1), ('finding', 1), ('presentation', 1), ('lead', 1)]
[('oracle', 2), ('real', 2), ('application', 2), ('cluster', 2), ('comprehensive', 1), ('guide', 1), ('fully', 1), ('updated', 1), ('cover', 1), ('latest', 1), ('feature', 1), ('tool', 1), ('clear', 1), ('instruction', 1), ('detailed', 1), ('example', 1), ('database', 1), ('handbook', 1), ('concept', 1), ('administration', 1), ('tuning', 1), ('troubleshooting', 1), ('teach', 1), ('build', 1), ('configure', 1), ('maintain', 1), ('dynamic', 1)]
[('oracle', 2), ('rman', 2), ('authoritative', 1), ('press', 1), ('resource', 1), ('thoroughly', 1), ('revised', 1), ('cover', 1), ('every', 1), ('new', 1), ('feature', 1), ('offering', 1), ('date', 1), ('information', 1), ('fully', 1), ('updated', 1), ('volume', 1), ('lay', 1), ('easiest', 1), ('fastest', 1), ('effective', 1), ('method', 1), ('deploying', 1), ('database', 1), ('environment', 1), ('size', 1), ('keeping', 1), ('previous', 1), ('edition', 1), ('book', 1), ('teach', 1)]
[('oracle', 4), ('database', 3), ('master', 2), ('multitenant', 2), ('step', 2), ('powerful', 1), ('feature', 1), ('govern', 1), ('scalable', 1), ('extensible', 1), ('highly', 1), ('available', 1), ('enterprise', 1), ('environment', 1), ('using', 1), ('practical', 1), ('information', 1), ('contained', 1), ('press', 1), ('guide', 1), ('written', 1), ('team', 1), ('release', 1), ('show', 1), ('deploy', 1), ('manage', 1)]
[('oracle', 5), ('database', 3), ('new', 2), ('leverage', 1), ('improved', 1), ('feature', 1), ('written', 1), ('expert', 1), ('bob', 1), ('bryla', 1), ('robert', 1), ('freeman', 1), ('press', 1), ('guide', 1), ('describes', 1), ('myriad', 1), ('enhanced', 1), ('capability', 1), ('available', 1), ('latest', 1), ('release', 1), ('inside', 1), ('find', 1), ('everything', 1), ('need', 1), ('know', 1), ('running', 1), ('quickly', 1)]
[('publisher', 2), ('product', 2), ('exam', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('best', 1), ('fully', 1), ('integrated', 1), ('study', 1), ('system', 1), ('available', 1), ('save', 1), ('comptia', 1), ('voucher', 1), ('coupon', 1), ('code', 1), ('inside', 1), ('hundred', 1), ('practice', 1), ('question', 1)]
[('oracle', 3), ('quickly', 2), ('database', 2), ('exadata', 2), ('cloud', 2), ('service', 2), ('step', 2), ('running', 1), ('install', 1), ('configure', 1), ('start', 1), ('using', 1), ('hand', 1), ('information', 1), ('contained', 1), ('comprehensive', 1), ('press', 1), ('guide', 1), ('designed', 1), ('easy', 1), ('learning', 1), ('book', 1), ('feature', 1), ('real', 1), ('world', 1), ('example', 1), ('detailed', 1), ('illustration', 1)]
[('aws', 3), ('self', 2), ('study', 2), ('resource', 2), ('certified', 2), ('security', 2), ('specialty', 2), ('exam', 2), ('offer', 1), ('complete', 1), ('coverage', 1), ('every', 1), ('topic', 1), ('take', 1), ('confidence', 1), ('using', 1), ('detailed', 1), ('information', 1), ('contained', 1), ('effective', 1), ('written', 1), ('team', 1), ('insider', 1), ('book', 1), ('show', 1), ('develop', 1), ('deploy', 1), ('maintain', 1)]
[('information', 4), ('healthcare', 3), ('security', 3), ('privacy', 3), ('hcispp', 2), ('practitioner', 2), ('exam', 2), ('guide', 1), ('prepare', 1), ('current', 1), ('release', 1), ('using', 1), ('detailed', 1), ('contained', 1), ('effective', 1), ('self', 1), ('study', 1), ('resource', 1), ('written', 1), ('expert', 1)]
[('comptia', 2), ('cysa', 2), ('focused', 1), ('coverage', 1), ('every', 1), ('topic', 1), ('current', 1), ('version', 1), ('exam', 1), ('fast', 1), ('track', 1), ('becoming', 1), ('certified', 1), ('affordable', 1), ('portable', 1), ('study', 1), ('tool', 1), ('inside', 1), ('cybersecurity', 1), ('professional', 1), ('bobby', 1), ('rogers', 1), ('guide', 1), ('career', 1), ('path', 1), ('providing', 1), ('expert', 1), ('tip', 1), ('sound', 1), ('advice', 1), ('along', 1), ('way', 1), ('intensive', 1), ('focus', 1)]
[('cysa', 3), ('certification', 2), ('exam', 2), ('study', 2), ('comptia', 2), ('prepare', 1), ('challenging', 1), ('money', 1), ('saving', 1), ('date', 1), ('package', 1), ('designed', 1), ('complete', 1), ('self', 1), ('program', 1), ('collection', 1), ('offer', 1), ('variety', 1), ('proven', 1), ('resource', 1), ('use', 1), ('preparation', 1), ('latest', 1), ('edition', 1), ('cybersecurity', 1), ('analyst', 1), ('comprised', 1)]
[('go', 3), ('lightweight', 2), ('program', 2), ('using', 2), ('step', 2), ('write', 1), ('efficient', 1), ('performant', 1), ('quickly', 1), ('start', 1), ('developing', 1), ('google', 1), ('practical', 1), ('information', 1), ('contained', 1), ('engaging', 1), ('resource', 1), ('social', 1), ('medium', 1), ('personality', 1), ('tanmay', 1), ('bakshi', 1), ('baheer', 1), ('kamal', 1), ('show', 1), ('develop', 1), ('custom', 1), ('application', 1), ('fully', 1), ('utilize', 1)]
[('window', 4), ('distributed', 2), ('component', 2), ('object', 2), ('technology', 2), ('larger', 2), ('dcom', 1), ('model', 1), ('recent', 1), ('upgrade', 1), ('time', 1), ('honored', 1), ('tested', 1), ('promoted', 1), ('microsoft', 1), ('programming', 1), ('playing', 1), ('part', 1), ('nt', 1), ('every', 1), ('programmer', 1), ('want', 1), ('understand', 1)]
[('view', 3), ('table', 2), ('virtual', 1), ('mean', 1), ('updatable', 1), ('real', 1), ('base', 1), ('fact', 1), ('updatability', 1), ('desirable', 1), ('crucial', 1), ('practical', 1), ('reason', 1), ('theoretical', 1), ('one', 1), ('updating', 1), ('always', 1), ('controversial', 1), ('topic', 1), ('relational', 1), ('model', 1), ('first', 1), ('appeared', 1), ('widespread', 1)]
[('web', 2), ('attack', 2), ('rigorously', 1), ('test', 1), ('improve', 1), ('security', 1), ('software', 1), ('nbsp', 1), ('certain', 1), ('death', 1), ('tax', 1), ('hacker', 1), ('mercilessly', 1), ('site', 1), ('application', 1), ('service', 1), ('vulnerable', 1), ('better', 1), ('discover', 1)]
[('nbsp', 3), ('emf', 2), ('eclipse', 2), ('modeling', 2), ('framework', 1), ('dave', 1), ('steinberg', 1), ('frank', 1), ('budinsky', 1), ('marcelo', 1), ('paternostro', 1), ('ed', 1), ('merks', 1), ('series', 1), ('editor', 1), ('erich', 1), ('gamma', 1), ('lee', 1), ('nackman', 1), ('john', 1), ('wiegand', 1), ('authoritative', 1), ('guide', 1), ('code', 1), ('generation', 1)]
[('rail', 4), ('complete', 1), ('guide', 1), ('building', 1), ('highly', 1), ('scalable', 1), ('service', 1), ('based', 1), ('application', 1), ('nbsp', 1), ('ruby', 1), ('deployment', 1), ('growing', 1), ('increasingly', 1), ('adopted', 1), ('larger', 1), ('environment', 1), ('today', 1), ('developer', 1), ('architect', 1), ('need', 1), ('better', 1)]
[('networking', 2), ('design', 1), ('future', 1), ('network', 1), ('worthy', 1), ('society', 1), ('trust', 1), ('put', 1), ('discipline', 1), ('computer', 1), ('stronger', 1), ('foundation', 1), ('book', 1), ('rise', 1), ('considerable', 1), ('minutia', 1), ('today', 1), ('technology', 1), ('emphasize', 1)]
[('prepare', 1), ('microsoft', 1), ('exam', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('skill', 1), ('needed', 1), ('build', 1), ('manage', 1), ('software', 1), ('defined', 1), ('infrastructure', 1), ('window', 1), ('server', 1), ('system', 1), ('center', 1), ('virtual', 1), ('machine', 1), ('manager', 1), ('sc', 1), ('vmm', 1), ('designed', 1)]
[('step', 2), ('designed', 1), ('beginner', 1), ('previous', 1), ('programming', 1), ('experience', 1), ('book', 1), ('straightforward', 1), ('approach', 1), ('show', 1), ('use', 1), ('javascript', 1), ('add', 1), ('wide', 1), ('array', 1), ('interactive', 1), ('feature', 1), ('effect', 1), ('web', 1), ('page', 1), ('every', 1), ('lesson', 1), ('build', 1), ('already', 1), ('learned', 1), ('giving', 1), ('rock', 1), ('solid', 1), ('foundation', 1), ('real', 1), ('world', 1), ('success', 1)]
[('java', 5), ('core', 2), ('clear', 1), ('concise', 1), ('guide', 1), ('language', 1), ('library', 1), ('updated', 1), ('modern', 1), ('introduces', 1), ('major', 1), ('enhancement', 1), ('impact', 1), ('technology', 1), ('apis', 1), ('heart', 1), ('platform', 1), ('many', 1), ('old', 1), ('idiom', 1), ('longer', 1)]
[('author', 2), ('cisco', 2), ('show', 1), ('create', 1), ('production', 1), ('solution', 1), ('run', 1), ('interact', 1), ('nexus', 1), ('nx', 1), ('o', 1), ('based', 1), ('switch', 1), ('aci', 1), ('campus', 1), ('wan', 1), ('technology', 1), ('learn', 1), ('use', 1), ('advanced', 1), ('tool', 1), ('together', 1), ('industry', 1), ('standard', 1), ('language', 1), ('platform', 1), ('including', 1), ('python', 1), ('json', 1), ('linux', 1), ('demonstrate', 1), ('support', 1), ('dynamic', 1)]
[('network', 4), ('intent', 3), ('based', 2), ('networking', 2), ('ibn', 1), ('create', 1), ('capture', 1), ('automatically', 1), ('activate', 1), ('business', 1), ('assure', 1), ('responds', 1), ('properly', 1), ('proactively', 1), ('detect', 1), ('contain', 1), ('security', 1), ('threat', 1), ('remedy', 1), ('issue', 1), ('user', 1), ('even', 1), ('notice', 1), ('make', 1), ('far', 1), ('valuable', 1), ('organisation', 1)]
[('scala', 3), ('concise', 2), ('clear', 1), ('guide', 1), ('consistent', 1), ('flexible', 1), ('robust', 1), ('efficient', 1), ('lot', 1), ('learn', 1), ('navigating', 1), ('feature', 1), ('improvement', 1), ('challenging', 1), ('impatient', 1), ('third', 1), ('edition', 1), ('complete', 1), ('yet', 1)]
[('webpage', 2), ('text', 2), ('interactive', 2), ('add', 2), ('learn', 1), ('create', 1), ('modern', 1), ('web', 1), ('incorporate', 1), ('graphic', 1), ('build', 1), ('rich', 1), ('application', 1), ('link', 1), ('image', 1), ('element', 1), ('site', 1), ('work', 1), ('html', 1), ('cs', 1), ('code', 1), ('structure', 1), ('adapt', 1), ('design', 1), ('wide', 1), ('variety', 1), ('desktop', 1), ('computer', 1), ('mobile', 1), ('device', 1), ('minimum', 1), ('hand', 1), ('coding', 1)]
[('network', 4), ('management', 3), ('nbsp', 3), ('fundamental', 1), ('guide', 1), ('understanding', 1), ('technology', 1), ('really', 1), ('work', 1), ('alexander', 1), ('clemm', 1), ('ph', 1), ('essential', 1), ('factor', 1), ('successfully', 1), ('operating', 1), ('company', 1), ('becomes', 1)]
[('ebook', 2), ('print', 2), ('practice', 2), ('version', 1), ('title', 1), ('note', 1), ('provide', 1), ('access', 1), ('test', 1), ('software', 1), ('accompanies', 1), ('book', 1), ('learn', 1), ('prepare', 1), ('aws', 1), ('certified', 1), ('solution', 1), ('architect', 1), ('associate', 1), ('saa', 1), ('exam', 1)]
[('cyber', 2), ('security', 2), ('engineering', 2), ('modern', 2), ('dr', 2), ('definitive', 1), ('reference', 1), ('tutorial', 1), ('full', 1), ('range', 1), ('capability', 1), ('associated', 1), ('pioneering', 1), ('software', 1), ('assurance', 1), ('expert', 1), ('nancy', 1), ('mead', 1), ('carol', 1), ('woody', 1), ('bring', 1)]
[('content', 4), ('digital', 1), ('published', 1), ('across', 1), ('channel', 1), ('make', 1), ('easy', 1), ('find', 1), ('use', 1), ('share', 1), ('ready', 1), ('next', 1), ('wave', 1), ('platform', 1), ('device', 1), ('nbsp', 1), ('designing', 1), ('connected', 1), ('mike', 1)]
[('cisco', 2), ('aci', 2), ('platform', 2), ('application', 1), ('centric', 1), ('infrastructure', 1), ('software', 1), ('defined', 1), ('networking', 1), ('achieve', 1), ('dramatic', 1), ('improvement', 1), ('data', 1), ('centre', 1), ('performance', 1), ('redundancy', 1), ('security', 1), ('visibility', 1), ('efficiency', 1), ('agility', 1), ('deploying', 1), ('three', 1), ('leading', 1), ('expert', 1), ('introduce', 1), ('breakthrough', 1), ('walk', 1), ('network', 1), ('professional', 1)]
[('exam', 4), ('comptia', 3), ('practice', 2), ('pentest', 2), ('pt', 2), ('certification', 2), ('learn', 1), ('prepare', 1), ('success', 1), ('cert', 1), ('guide', 1), ('pearson', 1), ('leader', 1), ('master', 1), ('topic', 1), ('ass', 1), ('knowledge', 1), ('chapter', 1), ('ending', 1), ('quiz', 1), ('review', 1), ('key', 1), ('concept', 1), ('preparation', 1), ('task', 1), ('realistic', 1)]
[('apps', 4), ('device', 3), ('native', 2), ('software', 1), ('developer', 1), ('option', 1), ('build', 1), ('targeting', 1), ('specific', 1), ('web', 1), ('run', 1), ('building', 1), ('challenging', 1), ('especially', 1), ('app', 1), ('target', 1), ('multiple', 1), ('system', 1), ('type', 1), ('desktop', 1), ('computer', 1), ('smartphones', 1), ('television', 1), ('user', 1), ('experience', 1), ('varies', 1), ('dramatically', 1), ('across', 1)]
[('development', 2), ('scrum', 2), ('master', 1), ('proven', 1), ('process', 1), ('improving', 1), ('azure', 1), ('devops', 1), ('guide', 1), ('help', 1), ('team', 1), ('plan', 1), ('track', 1), ('manage', 1), ('work', 1), ('far', 1), ('effectively', 1), ('combining', 1), ('today', 1), ('leading', 1), ('agile', 1), ('framework', 1), ('microsoft', 1)]
[('microsoft', 5), ('outlook', 5), ('nbsp', 2), ('mo', 2), ('office', 2), ('specialist', 2), ('study', 1), ('guide', 1), ('cover', 1), ('specifically', 1), ('skill', 1), ('required', 1), ('pas', 1), ('exam', 1), ('demonstrate', 1), ('expertise', 1), ('designed', 1), ('help', 1), ('student', 1), ('practice', 1), ('prepare', 1), ('negetiveemoji', 1)]
[('nan', 1)]
[('product', 2), ('owner', 2), ('business', 2), ('analyst', 1), ('maximize', 1), ('value', 1), ('delivered', 1), ('stakeholder', 1), ('integrating', 1), ('ba', 1), ('competency', 1), ('agile', 1), ('methodology', 1), ('book', 1), ('become', 1), ('staple', 1), ('reference', 1), ('analysis', 1)]
[('pivot', 3), ('excel', 2), ('table', 2), ('learn', 1), ('use', 1), ('chart', 1), ('produce', 1), ('powerful', 1), ('dynamic', 1), ('report', 1), ('minute', 1), ('instead', 1), ('hour', 1), ('take', 1), ('control', 1), ('data', 1), ('business', 1), ('even', 1), ('never', 1), ('created', 1), ('book', 1), ('help', 1), ('leverage', 1), ('remarkable', 1), ('flexibility', 1), ('analytical', 1), ('power', 1), ('including', 1), ('valuable', 1), ('improvement', 1)]
[('customize', 2), ('gain', 1), ('hand', 1), ('experience', 1), ('creating', 1), ('manipulating', 1), ('optimizing', 1), ('motion', 1), ('graphic', 1), ('film', 1), ('video', 1), ('web', 1), ('mobile', 1), ('device', 1), ('learn', 1), ('animate', 1), ('text', 1), ('image', 1), ('wide', 1), ('range', 1), ('effect', 1), ('track', 1), ('sync', 1), ('content', 1), ('rotoscope', 1), ('manipulate', 1), ('timing', 1), ('correct', 1), ('color', 1), ('remove', 1), ('unwanted', 1), ('object', 1), ('camera', 1), ('lighting', 1), ('create', 1)]
[('visual', 4), ('fundamental', 2), ('studio', 2), ('hand', 1), ('guide', 1), ('expand', 1), ('expertise', 1), ('teach', 1), ('programming', 1), ('latest', 1), ('version', 1), ('book', 1), ('provides', 1), ('software', 1), ('developer', 1)]
[('ebook', 2), ('print', 2), ('practice', 2), ('version', 1), ('title', 1), ('note', 1), ('provide', 1), ('access', 1), ('test', 1), ('software', 1), ('accompanies', 1), ('book', 1), ('nbsp', 1), ('learn', 1), ('prepare', 1), ('cissp', 1), ('exam', 1), ('success', 1), ('cert', 1), ('guide', 1), ('pearson', 1)]
[('sql', 4), ('data', 3), ('query', 1), ('modify', 1), ('effectively', 1), ('latest', 1), ('feature', 1), ('master', 1), ('transact', 1), ('fundamental', 1), ('write', 1), ('correct', 1), ('robust', 1), ('code', 1), ('querying', 1), ('modifying', 1), ('modern', 1), ('microsoft', 1), ('technology', 1), ('including', 1), ('server', 1), ('azure', 1)]
[('book', 2), ('lesson', 2), ('adobe', 1), ('dreamweaver', 1), ('classroom', 1), ('release', 1), ('contains', 1), ('cover', 1), ('basic', 1), ('beyond', 1), ('providing', 1), ('countless', 1), ('tip', 1), ('technique', 1), ('help', 1), ('become', 1), ('productive', 1), ('program', 1), ('follow', 1), ('start', 1), ('finish', 1), ('choose', 1), ('interest', 1), ('full', 1), ('text', 1), ('downloaded', 1), ('computer', 1)]
[('adobe', 2), ('animate', 2), ('book', 2), ('lesson', 2), ('student', 2), ('classroom', 1), ('release', 1), ('contains', 1), ('cover', 1), ('basic', 1), ('beyond', 1), ('providing', 1), ('countless', 1), ('tip', 1), ('technique', 1), ('help', 1), ('become', 1), ('productive', 1), ('program', 1), ('follow', 1), ('start', 1), ('finish', 1), ('choose', 1), ('interest', 1), ('cc', 1), ('provides', 1), ('expressive', 1)]
[('training', 3), ('book', 2), ('series', 2), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('adobe', 1), ('premiere', 1), ('pro', 1), ('classroom', 1), ('best', 1), ('selling', 1), ('hand', 1), ('software', 1), ('workbook', 1), ('offer', 1), ('program', 1), ('official', 1)]
[('product', 2), ('hone', 1), ('agile', 1), ('owner', 1), ('behavior', 1), ('lead', 1), ('marketplace', 1), ('winner', 1), ('organization', 1), ('pour', 1), ('vast', 1), ('resource', 1), ('building', 1), ('new', 1), ('service', 1), ('yet', 1), ('many', 1), ('poorly', 1), ('conceived', 1), ('delight', 1), ('even', 1), ('satisfy', 1), ('customer', 1), ('fail', 1)]
[('requirement', 3), ('software', 2), ('learn', 1), ('proven', 1), ('real', 1), ('world', 1), ('technique', 1), ('specifying', 1), ('practical', 1), ('reference', 1), ('detail', 1), ('pattern', 1), ('offering', 1), ('realistic', 1), ('example', 1), ('situation', 1), ('specific', 1), ('guidance', 1), ('building', 1), ('effective', 1)]
[('data', 2), ('prepare', 1), ('microsoft', 1), ('exam', 1), ('pl', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('ability', 1), ('deliver', 1), ('actionable', 1), ('insight', 1), ('power', 1), ('bi', 1), ('leveraging', 1), ('available', 1), ('domain', 1), ('expertise', 1), ('provide', 1), ('meaningful', 1), ('business', 1), ('value', 1), ('clear', 1), ('visualization', 1)]
[('quickly', 2), ('directx', 2), ('programming', 2), ('step', 2), ('graphic', 2), ('started', 1), ('experience', 1), ('needed', 1), ('text', 1), ('demystifies', 1), ('modern', 1), ('start', 1), ('writing', 1), ('professional', 1), ('code', 1), ('hlsl', 1), ('expert', 1), ('instructor', 1), ('paul', 1)]
[('adobe', 1), ('indesign', 1), ('classroom', 1), ('book', 1), ('release', 1), ('nbsp', 1), ('us', 1), ('real', 1), ('world', 1), ('project', 1), ('based', 1), ('learning', 1), ('cover', 1), ('basic', 1), ('beyond', 1), ('providing', 1), ('countless', 1), ('tip', 1), ('technique', 1), ('help', 1), ('become', 1), ('productive', 1), ('program', 1), ('beginner', 1), ('experienced', 1)]
[('nan', 1)]
[('software', 2), ('use', 1), ('actor', 1), ('model', 1), ('build', 1), ('simpler', 1), ('system', 1), ('better', 1), ('performance', 1), ('scalability', 1), ('nbsp', 1), ('enterprise', 1), ('development', 1), ('difficult', 1), ('failure', 1), ('prone', 1), ('need', 1), ('veteran', 1), ('engineer', 1), ('author', 1), ('vaughn', 1), ('vernon', 1)]
[('roblox', 3), ('lesson', 2), ('hour', 2), ('le', 1), ('coding', 1), ('lua', 1), ('official', 1), ('guide', 1), ('help', 1), ('learn', 1), ('skill', 1), ('technique', 1), ('need', 1), ('code', 1), ('experience', 1), ('perfect', 1), ('beginner', 1), ('short', 1), ('easy', 1)]
[('guide', 2), ('comptia', 1), ('cybersecurity', 1), ('analyst', 1), ('cysa', 1), ('c', 1), ('cert', 1), ('best', 1), ('breed', 1), ('exam', 1), ('study', 1), ('expert', 1), ('technology', 1), ('instructor', 1), ('certification', 1), ('author', 1), ('troy', 1), ('mcmillan', 1), ('share', 1), ('preparation', 1), ('hint', 1), ('test', 1), ('taking', 1), ('tip', 1), ('helping', 1), ('identify', 1), ('area', 1), ('weakness', 1)]
[('nan', 1)]
[('relational', 3), ('data', 3), ('warehouse', 2), ('solution', 2), ('azure', 2), ('cloud', 1), ('technology', 1), ('advancing', 1), ('accelerating', 1), ('pace', 1), ('supplanting', 1), ('traditional', 1), ('storage', 1), ('novel', 1), ('high', 1), ('value', 1), ('alternative', 1), ('book', 1), ('three', 1), ('pioneering', 1), ('microsoft', 1), ('consultant', 1), ('offer', 1), ('expert', 1), ('introduction', 1), ('non', 1), ('offered', 1)]
[('data', 2), ('science', 2), ('learn', 1), ('foundational', 1), ('python', 1), ('need', 1), ('solve', 1), ('real', 1), ('problem', 1), ('machine', 1), ('learning', 1), ('world', 1), ('hottest', 1), ('field', 1), ('attracting', 1), ('talent', 1), ('wide', 1), ('variety', 1), ('technical', 1), ('business', 1), ('liberal', 1), ('art', 1)]
[('step', 2), ('data', 2), ('microsoft', 1), ('excel', 1), ('student', 1), ('master', 1), ('skill', 1), ('need', 1), ('quickly', 1), ('set', 1), ('workbook', 1), ('enter', 1), ('format', 1), ('easier', 1), ('viewing', 1), ('perform', 1), ('calculation', 1), ('find', 1), ('correct', 1), ('error', 1), ('create', 1), ('sophisticated', 1), ('forecast', 1), ('worksheet', 1), ('key', 1), ('performance', 1), ('indicator', 1), ('kpis', 1), ('timeline', 1), ('visualize', 1), ('map', 1), ('funnel', 1), ('chart', 1)]
[('networking', 4), ('essential', 3), ('companion', 1), ('guide', 1), ('official', 1), ('supplemental', 1), ('textbook', 1), ('course', 1), ('cisco', 1), ('academy', 1), ('heart', 1), ('digital', 1), ('transformation', 1), ('network', 1)]
[('organization', 2), ('ransomware', 2), ('cyber', 2), ('extortion', 2), ('protect', 1), ('devastating', 1), ('attack', 1), ('crime', 1), ('reached', 1), ('epidemic', 1), ('proportion', 1), ('secrecy', 1), ('surrounding', 1), ('left', 1), ('many', 1), ('unprepared', 1), ('respond', 1)]
[('need', 2), ('design', 2), ('know', 1), ('nothing', 1), ('start', 1), ('creating', 1), ('deploying', 1), ('web', 1), ('site', 1), ('full', 1), ('color', 1), ('build', 1), ('deploy', 1), ('modern', 1), ('website', 1), ('three', 1), ('core', 1), ('skill', 1), ('ability', 1), ('write', 1), ('edit', 1), ('html', 1), ('wield', 1), ('cs', 1), ('control', 1), ('page', 1)]
[('service', 3), ('deliver', 2), ('customer', 2), ('far', 1), ('effectively', 1), ('based', 1), ('really', 1), ('want', 1), ('stack', 1), ('grow', 1), ('complex', 1), ('becomes', 1), ('even', 1), ('tougher', 1), ('demand', 1), ('meet', 1), ('expectation', 1), ('speed', 1), ('consistency', 1)]
[('linux', 3), ('developer', 1), ('show', 1), ('start', 1), ('writing', 1), ('code', 1), ('whether', 1), ('user', 1), ('little', 1), ('coding', 1), ('experience', 1), ('experienced', 1), ('window', 1), ('programmer', 1), ('leading', 1), ('trainer', 1), ('author', 1), ('william', 1), ('bo', 1), ('rothwell', 1), ('begin', 1), ('clear', 1)]
[('vulkan', 3), ('next', 1), ('generation', 1), ('opengl', 1), ('specification', 1), ('redesigned', 1), ('ground', 1), ('giving', 1), ('application', 1), ('direct', 1), ('control', 1), ('gpu', 1), ('acceleration', 1), ('unprecedented', 1), ('performance', 1), ('predictability', 1), ('programming', 1), ('guide', 1), ('essential', 1), ('authoritative', 1), ('reference', 1), ('new', 1), ('standard', 1), ('experienced', 1), ('graphic', 1), ('programmer', 1)]
[('office', 3), ('microsoft', 2), ('dive', 1), ('administration', 1), ('really', 1), ('put', 1), ('expertise', 1), ('work', 1), ('supremely', 1), ('organised', 1), ('reference', 1), ('pack', 1), ('hundred', 1), ('timesaving', 1), ('solution', 1), ('tip', 1), ('workarounds', 1), ('need', 1), ('plan', 1), ('implement', 1), ('operate', 1), ('environment', 1), ('completely', 1), ('revamped', 1), ('nd', 1), ('edition', 1), ('new', 1), ('author', 1), ('team', 1)]
[('bret', 1), ('malley', 1), ('world', 1), ('father', 1), ('suspended', 1), ('air', 1), ('among', 1), ('baby', 1), ('collection', 1), ('toy', 1), ('big', 1), ('box', 1), ('store', 1), ('parking', 1), ('lot', 1), ('transformed', 1), ('scene', 1), ('reclaimed', 1), ('nature', 1), ('ordinary', 1), ('person', 1), ('sculpt', 1), ('fire', 1), ('bare', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('window', 3), ('dive', 1), ('really', 1), ('put', 1), ('expertise', 1), ('work', 1), ('focusing', 1), ('newest', 1), ('powerful', 1), ('innovative', 1), ('feature', 1), ('supremely', 1), ('organised', 1), ('reference', 1), ('packed', 1), ('hundred', 1), ('time', 1), ('saving', 1), ('solution', 1), ('date', 1), ('tip', 1), ('workarounds', 1), ('new', 1), ('chromium', 1), ('based', 1), ('microsoft', 1), ('edge', 1), ('browser', 1), ('improved', 1), ('security', 1)]
[('opengl', 3), ('superbible', 1), ('definitive', 1), ('programmer', 1), ('guide', 1), ('tutorial', 1), ('reference', 1), ('world', 1), ('leading', 1), ('api', 1), ('real', 1), ('time', 1), ('computer', 1), ('graphic', 1), ('best', 1), ('introduction', 1), ('developer', 1), ('clearly', 1), ('explains', 1), ('newest', 1), ('apis', 1), ('key', 1), ('extension', 1), ('shaders', 1), ('essential', 1), ('related', 1), ('concept', 1), ('find', 1), ('date', 1), ('hand', 1), ('guidance', 1)]
[('effective', 1), ('second', 1), ('edition', 1), ('world', 1), ('renowned', 1), ('net', 1), ('expert', 1), ('bill', 1), ('wagner', 1), ('identifies', 1), ('illuminates', 1), ('intermediate', 1), ('advanced', 1), ('technique', 1), ('writing', 1), ('exceptionally', 1), ('robust', 1), ('performing', 1), ('code', 1), ('reflecting', 1), ('growing', 1), ('sophistication', 1)]
[('rail', 6), ('way', 2), ('first', 2), ('time', 2), ('bible', 1), ('development', 1), ('fully', 1), ('updated', 1), ('felt', 1), ('truly', 1), ('understood', 1), ('steve', 1), ('klabnik', 1), ('contributor', 1), ('mentor', 1)]
[('step', 2), ('student', 2), ('straightforward', 1), ('approach', 1), ('show', 1), ('work', 1), ('database', 1), ('structure', 1), ('object', 1), ('query', 1), ('table', 1), ('hour', 1), ('applying', 1), ('advanced', 1), ('technique', 1), ('including', 1), ('view', 1), ('transaction', 1), ('web', 1), ('connection', 1), ('powerful', 1), ('oracle', 1), ('sql', 1), ('server', 1), ('extension', 1), ('every', 1), ('lesson', 1), ('build', 1), ('already', 1), ('learned', 1)]
[('anywhere', 3), ('student', 2), ('book', 1), ('show', 1), ('make', 1), ('excel', 1), ('thing', 1), ('thought', 1), ('impossible', 1), ('discover', 1), ('macro', 1), ('technique', 1), ('find', 1), ('create', 1), ('automated', 1), ('report', 1), ('amazingly', 1), ('powerful', 1), ('bill', 1), ('jelen', 1), ('tracy', 1), ('syrstad', 1), ('help', 1), ('instantly', 1), ('visualize', 1), ('information', 1), ('act', 1), ('capture', 1), ('data', 1), ('use', 1)]
[('adobe', 4), ('training', 3), ('book', 2), ('series', 2), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('photoshop', 1), ('lightroom', 1), ('classic', 1), ('classroom', 1), ('best', 1), ('selling', 1), ('hand', 1), ('software', 1), ('workbook', 1), ('offer', 1), ('program', 1), ('official', 1), ('developed', 1), ('support', 1), ('product', 1), ('expert', 1), ('nbsp', 1)]
[('red', 2), ('hat', 2), ('rhcsa', 2), ('ex', 2), ('exam', 2), ('certification', 2), ('learn', 1), ('prepare', 1), ('practice', 1), ('success', 1), ('cert', 1), ('guide', 1), ('pearson', 1), ('leader', 1), ('learning', 1), ('master', 1), ('topic', 1), ('ass', 1), ('knowledge', 1), ('chapter', 1), ('ending', 1)]
[('azure', 3), ('sql', 2), ('database', 2), ('fundamental', 2), ('hand', 1), ('guide', 1), ('expand', 1), ('expertise', 1), ('teach', 1), ('microsoft', 1), ('previous', 1), ('programming', 1), ('experience', 1), ('new', 1), ('tutorial', 1), ('delivers', 1)]
[('window', 3), ('master', 1), ('intricacy', 1), ('application', 1), ('development', 1), ('unmanaged', 1), ('code', 1), ('straight', 1), ('expert', 1), ('jeffrey', 1), ('richter', 1), ('classic', 1), ('book', 1), ('fully', 1), ('revised', 1), ('xp', 1), ('vista', 1), ('server', 1), ('depth', 1), ('comprehensive', 1)]
[('practical', 1), ('augmented', 1), ('reality', 1), ('ideal', 1), ('practitioner', 1), ('student', 1), ('concerned', 1), ('application', 1), ('gaming', 1), ('medicine', 1), ('brings', 1), ('together', 1), ('comprehensive', 1), ('coverage', 1), ('theory', 1), ('practice', 1), ('emphasising', 1), ('leading', 1), ('edge', 1), ('display', 1), ('sensor', 1), ('diy', 1), ('tool', 1), ('already', 1), ('available', 1), ('commercially', 1), ('soon', 1), ('beginning', 1), ('foreword', 1), ('nasa', 1)]
[('metal', 2), ('graphic', 2), ('programming', 2), ('apple', 2), ('developer', 2), ('master', 1), ('next', 1), ('generation', 1), ('gpu', 1), ('platform', 1), ('nbsp', 1), ('enables', 1), ('maximize', 1), ('performance', 1), ('demanding', 1), ('task', 1), ('game', 1), ('scientific', 1), ('visualization', 1)]
[('blown', 2), ('bit', 2), ('know', 1), ('protect', 1), ('today', 1), ('digital', 1), ('technology', 1), ('explosion', 1), ('everything', 1), ('blast', 1), ('provided', 1), ('new', 1), ('challenge', 1), ('opportunity', 1), ('second', 1), ('edition', 1), ('delivers', 1), ('knowledge', 1)]
[('help', 2), ('practice', 2), ('trust', 1), ('best', 1), ('selling', 1), ('official', 1), ('cert', 1), ('guide', 1), ('series', 1), ('cisco', 1), ('press', 1), ('learn', 1), ('prepare', 1), ('exam', 1), ('success', 1), ('built', 1), ('objective', 1), ('providing', 1), ('assessment', 1), ('review', 1), ('ensure', 1), ('fully', 1), ('prepared', 1)]
[('exam', 2), ('prepare', 1), ('microsoft', 1), ('sc', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('skill', 1), ('knowledge', 1), ('required', 1), ('work', 1), ('stakeholder', 1), ('secure', 1), ('system', 1), ('rapidly', 1), ('remediate', 1), ('active', 1), ('attack', 1), ('designed', 1), ('window', 1), ('administrator', 1), ('ref', 1)]
[('pattern', 3), ('nbsp', 3), ('design', 2), ('student', 2), ('explained', 1), ('simple', 1), ('clear', 1), ('practical', 1), ('introduction', 1), ('using', 1), ('dozen', 1), ('new', 1), ('updated', 1), ('java', 1), ('example', 1), ('show', 1), ('use', 1), ('develop', 1), ('deliver', 1), ('software', 1), ('far', 1), ('effectively', 1), ('book', 1), ('try', 1), ('tackle', 1), ('gamma', 1), ('known', 1), ('work', 1)]
[('window', 3), ('ipv', 2), ('network', 2), ('essential', 1), ('guide', 1), ('deploying', 1), ('depth', 1), ('technical', 1), ('information', 1), ('put', 1), ('technology', 1), ('work', 1), ('including', 1), ('hardware', 1), ('running', 1), ('server', 1), ('written', 1), ('networking', 1), ('expert', 1)]
[('sql', 2), ('squeeze', 1), ('maximum', 1), ('performance', 1), ('efficiency', 1), ('every', 1), ('query', 1), ('write', 1), ('tune', 1), ('four', 1), ('leading', 1), ('expert', 1), ('take', 1), ('depth', 1), ('look', 1), ('internal', 1), ('architecture', 1), ('offer', 1), ('advanced', 1), ('practical', 1), ('technique', 1), ('optimising', 1), ('response', 1), ('time', 1), ('resource', 1), ('usage', 1), ('emphasising', 1), ('correct', 1), ('understanding', 1), ('language', 1), ('foundation', 1), ('author', 1), ('present', 1)]
[('guide', 2), ('exam', 2), ('lpic', 1), ('cert', 1), ('best', 1), ('breed', 1), ('study', 1), ('expert', 1), ('linux', 1), ('unix', 1), ('instructor', 1), ('william', 1), ('bo', 1), ('rothwell', 1), ('share', 1), ('preparation', 1), ('hint', 1), ('test', 1), ('taking', 1), ('tip', 1), ('helping', 1), ('stuents', 1), ('identify', 1), ('area', 1), ('weakness', 1), ('improve', 1), ('conceptual', 1), ('knowledge', 1), ('hand', 1), ('skill', 1), ('material', 1), ('presented', 1), ('concise', 1), ('manner', 1), ('focusing', 1)]
[('image', 2), ('make', 2), ('lightroom', 1), ('photoshop', 1), ('integral', 1), ('part', 1), ('photographer', 1), ('workflow', 1), ('making', 1), ('start', 1), ('importing', 1), ('organizing', 1), ('collection', 1), ('sense', 1), ('develop', 1), ('picture', 1), ('every', 1), ('pixel', 1)]
[('agile', 3), ('lifecycle', 2), ('alm', 2), ('application', 1), ('management', 1), ('comprehensive', 1), ('development', 1), ('encompasses', 1), ('essential', 1), ('principle', 1), ('guide', 1), ('activity', 1), ('needed', 1), ('deliver', 1), ('successful', 1), ('software', 1), ('customised', 1), ('product', 1), ('service', 1), ('flexible', 1), ('robust', 1), ('offer', 1), ('enough', 1), ('process', 1), ('job', 1), ('done', 1), ('efficiently', 1), ('utilises', 1)]
[('step', 2), ('example', 2), ('author', 2), ('technique', 2), ('student', 2), ('using', 1), ('clear', 1), ('instruction', 1), ('professional', 1), ('katrin', 1), ('eismann', 1), ('co', 1), ('wayne', 1), ('palmer', 1), ('dennis', 1), ('dunbar', 1), ('present', 1), ('powerful', 1), ('tool', 1), ('adobe', 1), ('photoshop', 1), ('cc', 1), ('photography', 1), ('design', 1), ('new', 1), ('image', 1), ('illustration', 1), ('throughout', 1), ('learn', 1), ('transform', 1), ('faded', 1), ('damaged', 1)]
[('business', 3), ('analysis', 3), ('technique', 2), ('problem', 2), ('end', 2), ('beyond', 1), ('requirement', 1), ('show', 1), ('use', 1), ('practice', 1), ('identify', 1), ('key', 1), ('find', 1), ('optimal', 1), ('solution', 1), ('successfully', 1), ('implement', 1), ('unlike', 1), ('text', 1), ('place', 1), ('context', 1), ('positioning', 1), ('mean', 1), ('solving', 1), ('organisational', 1)]
[('core', 2), ('master', 1), ('hardware', 1), ('software', 1), ('installation', 1), ('configuration', 1), ('repair', 1), ('maintenance', 1), ('troubleshooting', 1), ('fully', 1), ('prepare', 1), ('comptia', 1), ('exam', 1), ('real', 1), ('world', 1), ('full', 1), ('color', 1), ('guide', 1)]
[('python', 3), ('tapping', 1), ('full', 1), ('power', 1), ('difficult', 1), ('supercharged', 1), ('written', 1), ('learned', 1), ('fundamental', 1), ('language', 1), ('want', 1), ('take', 1), ('skill', 1), ('next', 1), ('level', 1), ('quick', 1), ('review', 1), ('book', 1), ('cover', 1), ('advanced', 1), ('list', 1), ('string', 1), ('technique', 1), ('way', 1), ('handle', 1), ('text', 1), ('binary', 1), ('file', 1)]
[('mariadb', 2), ('offer', 2), ('mysql', 2), ('database', 1), ('server', 1), ('drop', 1), ('replacement', 1), ('functionality', 1), ('built', 1), ('original', 1), ('author', 1), ('assistance', 1), ('broader', 1), ('community', 1), ('free', 1), ('open', 1), ('source', 1), ('software', 1), ('developer', 1), ('rich', 1), ('set', 1)]
[('nan', 1)]
[('objective', 2), ('easy', 2), ('phrasebook', 1), ('give', 1), ('code', 1), ('phrase', 1), ('need', 1), ('quickly', 1), ('effectively', 1), ('complete', 1), ('programming', 1), ('project', 1), ('system', 1), ('including', 1), ('io', 1), ('mac', 1), ('o', 1), ('nbsp', 1), ('concise', 1), ('accessible', 1), ('carry', 1), ('use', 1), ('let', 1)]
[('game', 3), ('html', 2), ('step', 2), ('core', 1), ('programming', 1), ('walk', 1), ('reader', 1), ('building', 1), ('arcade', 1), ('style', 1), ('entirely', 1), ('scratch', 1), ('third', 1), ('party', 1), ('framework', 1), ('showing', 1), ('implement', 1), ('key', 1), ('component', 1), ('ground', 1), ('packed', 1), ('code', 1), ('example', 1), ('full', 1), ('colour', 1), ('tutorial', 1), ('give', 1), ('nbsp', 1), ('depth', 1), ('understanding', 1), ('needed', 1), ('design', 1)]
[('requirement', 2), ('yet', 2), ('purpose', 1), ('create', 1), ('best', 1), ('book', 1), ('written', 1), ('author', 1), ('succeeded', 1), ('caper', 1), ('jones', 1), ('widely', 1), ('recognized', 1), ('incorrect', 1), ('account', 1), ('percent', 1), ('error', 1), ('software', 1), ('product', 1)]
[('change', 2), ('testing', 1), ('surefire', 1), ('way', 1), ('dramatically', 1), ('improve', 1), ('website', 1), ('conversion', 1), ('rate', 1), ('increase', 1), ('revenue', 1), ('run', 1), ('experiment', 1), ('design', 1), ('content', 1), ('quickly', 1), ('discover', 1), ('better', 1), ('motivate', 1), ('user', 1), ('take', 1), ('action', 1)]
[('game', 2), ('design', 2), ('understand', 1), ('basic', 1), ('concept', 1), ('gameplay', 1), ('user', 1), ('interface', 1), ('core', 1), ('mechanic', 1), ('character', 1), ('storytelling', 1), ('want', 1), ('know', 1), ('apply', 1), ('construction', 1), ('simulation', 1), ('genre', 1), ('focused', 1), ('guide', 1), ('give', 1)]
[('collection', 3), ('data', 3), ('net', 2), ('build', 1), ('skill', 1), ('apply', 1), ('microsoft', 1), ('effectively', 1), ('put', 1), ('work', 1), ('manage', 1), ('issue', 1), ('gui', 1), ('binding', 1), ('threading', 1), ('querying', 1), ('storage', 1), ('led', 1), ('expert', 1), ('gain', 1), ('task', 1), ('oriented', 1), ('guidance', 1)]
[('sql', 2), ('introduction', 1), ('decade', 1), ('ago', 1), ('microsoft', 1), ('server', 1), ('query', 1), ('language', 1), ('transact', 1), ('become', 1), ('increasingly', 1), ('popular', 1), ('powerful', 1), ('current', 1), ('version', 1), ('sport', 1), ('advanced', 1), ('feature', 1), ('ole', 1), ('automation', 1), ('support', 1), ('cross', 1), ('platform', 1)]
[('effective', 2), ('volume', 1), ('three', 1), ('really', 1), ('good', 1), ('herb', 1), ('sutter', 1), ('independent', 1), ('consultant', 1), ('secretary', 1), ('iso', 1), ('ansi', 1), ('standard', 1), ('committee', 1), ('book', 1), ('programmer', 1), ('add', 1), ('stl', 1)]
[('birt', 3), ('million', 2), ('eclipse', 2), ('ten', 1), ('downloaded', 1), ('business', 1), ('intelligence', 1), ('reporting', 1), ('tool', 1), ('web', 1), ('site', 1), ('developer', 1), ('estimated', 1), ('using', 1), ('built', 1), ('open', 1), ('source', 1), ('platform', 1)]
[('leadership', 2), ('enhance', 1), ('fundamental', 1), ('value', 1), ('establish', 1), ('competitive', 1), ('advantage', 1), ('agility', 1), ('nbsp', 1), ('whether', 1), ('leading', 1), ('organization', 1), ('team', 1), ('project', 1), ('stand', 1), ('back', 1), ('deliver', 1), ('give', 1), ('agile', 1), ('tool', 1), ('need', 1), ('achieve', 1)]
[('nan', 1)]
[('project', 4), ('management', 2), ('learn', 1), ('best', 1), ('practice', 1), ('proven', 1), ('method', 1), ('professional', 1), ('apply', 1), ('skill', 1), ('work', 1), ('microsoft', 1), ('practical', 1), ('guide', 1), ('expert', 1), ('bonnie', 1), ('biafore', 1), ('show', 1), ('manage', 1), ('efficiently', 1)]
[('everyone', 1), ('spammer', 1), ('cracker', 1), ('hacker', 1), ('globe', 1), ('attempting', 1), ('infiltrate', 1), ('million', 1), ('website', 1), ('goal', 1), ('break', 1), ('proverbial', 1), ('front', 1), ('door', 1), ('take', 1), ('security', 1), ('concern', 1), ('seriously', 1)]
[('book', 1), ('specification', 1), ('still', 1), ('assume', 1), ('requirement', 1), ('known', 1), ('front', 1), ('change', 1), ('project', 1), ('today', 1), ('real', 1), ('world', 1), ('specify', 1), ('build', 1), ('software', 1), ('face', 1), ('high', 1), ('continuing', 1), ('uncertainty', 1)]
[('nbsp', 2), ('full', 1), ('colour', 1), ('practical', 1), ('hand', 1), ('guide', 1), ('mastering', 1), ('autodesk', 1), ('d', 1), ('max', 1), ('computer', 1), ('graphic', 1), ('animation', 1), ('game', 1), ('film', 1), ('tv', 1), ('architectural', 1), ('design', 1), ('step', 1), ('time', 1), ('book', 1), ('teach', 1), ('essential', 1), ('cg', 1), ('skill', 1), ('technique', 1), ('needed', 1), ('using', 1), ('simple', 1), ('primitive', 1), ('transforms', 1), ('creating', 1), ('complex', 1), ('hair', 1), ('fur', 1)]
[('html', 2), ('cs', 2), ('step', 2), ('thoroughly', 1), ('revised', 1), ('updated', 1), ('example', 1), ('rewritten', 1), ('conform', 1), ('contemporary', 1), ('web', 1), ('development', 1), ('practice', 1), ('easy', 1), ('understand', 1), ('tutorial', 1), ('help', 1), ('quickly', 1), ('master', 1), ('basic', 1), ('moving', 1), ('advanced', 1), ('topic', 1), ('graphic', 1), ('video', 1), ('interactivity', 1), ('javascript', 1), ('jquery', 1)]
[('problem', 2), ('program', 2), ('javascript', 2), ('full', 1), ('colour', 1), ('book', 1), ('inspire', 1), ('start', 1), ('solving', 1), ('creating', 1), ('even', 1), ('absolutely', 1), ('programming', 1), ('experience', 1), ('friendly', 1), ('easy', 1), ('first', 1), ('beginner', 1), ('guide', 1), ('put', 1), ('control', 1), ('learning', 1), ('empowers', 1), ('build', 1), ('unique', 1), ('solve', 1), ('care', 1)]
[('quantum', 2), ('volume', 1), ('introduction', 1), ('computing', 1), ('clearly', 1), ('explains', 1), ('core', 1), ('concept', 1), ('terminology', 1), ('technique', 1), ('cover', 1), ('foundational', 1), ('physic', 1), ('math', 1), ('information', 1), ('theory', 1), ('need', 1), ('provides', 1), ('hand', 1), ('practice', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1)]
[('hardware', 2), ('level', 2), ('scientific', 1), ('engineering', 1), ('project', 1), ('grow', 1), ('larger', 1), ('complex', 1), ('written', 1), ('embedded', 1), ('growing', 1), ('powerful', 1), ('software', 1), ('moving', 1), ('master', 1), ('gain', 1), ('strong', 1), ('skill', 1), ('programming', 1), ('nearly', 1), ('every', 1), ('close', 1), ('highest', 1), ('abstraction', 1)]
[('network', 2), ('yang', 2), ('today', 1), ('evolve', 1), ('scale', 1), ('faster', 1), ('manage', 1), ('everything', 1), ('hand', 1), ('anymore', 1), ('need', 1), ('automate', 1), ('relentlessly', 1), ('along', 1), ('netconf', 1), ('restconf', 1), ('grpc', 1), ('gnmi', 1), ('protocol', 1), ('practical', 1), ('solution', 1), ('implementers', 1), ('learn', 1), ('trial', 1), ('error', 1), ('programmability', 1), ('give', 1)]
[('comptia', 3), ('ebook', 2), ('print', 2), ('practice', 2), ('certification', 2), ('version', 1), ('title', 1), ('note', 1), ('provide', 1), ('access', 1), ('test', 1), ('software', 1), ('accompanies', 1), ('book', 1), ('learn', 1), ('prepare', 1), ('pentest', 1), ('pt', 1), ('exam', 1), ('success', 1), ('cert', 1), ('guide', 1), ('pearson', 1), ('leader', 1), ('master', 1)]
[('javascript', 3), ('learn', 2), ('hour', 2), ('web', 2), ('cover', 1), ('ajax', 1), ('jquery', 1), ('lesson', 1), ('le', 1), ('create', 1), ('dynamic', 1), ('interactive', 1), ('page', 1), ('popular', 1), ('ubiquitous', 1), ('programming', 1), ('language', 1), ('using', 1)]
[('joomla', 3), ('official', 1), ('book', 1), ('authoritative', 1), ('comprehensive', 1), ('reference', 1), ('every', 1), ('administrator', 1), ('developer', 1), ('designer', 1), ('content', 1), ('manager', 1), ('distilling', 1), ('unsurpassed', 1), ('experience', 1), ('long', 1), ('time', 1), ('contributor', 1), ('teach', 1), ('exactly', 1)]
[('code', 3), ('java', 2), ('guideline', 2), ('organisation', 1), ('worldwide', 1), ('rely', 1), ('perform', 1), ('mission', 1), ('critical', 1), ('task', 1), ('reliable', 1), ('robust', 1), ('fast', 1), ('maintainable', 1), ('secure', 1), ('coding', 1), ('brings', 1), ('together', 1), ('expert', 1), ('recommendation', 1), ('example', 1), ('help', 1), ('meet', 1), ('demand', 1), ('written', 1), ('team', 1), ('brought', 1), ('cert', 1), ('oracle', 1)]
[('atl', 4), ('work', 2), ('classic', 1), ('guide', 1), ('updated', 1), ('visual', 1), ('studio', 1), ('nbsp', 1), ('four', 1), ('leading', 1), ('window', 1), ('programming', 1), ('expert', 1), ('systematically', 1), ('reveal', 1), ('inner', 1), ('working', 1), ('explaining', 1), ('way', 1), ('client', 1), ('side', 1)]
[('data', 2), ('perl', 2), ('language', 2), ('biologist', 2), ('highly', 1), ('developed', 1), ('capacity', 1), ('detect', 1), ('pattern', 1), ('become', 1), ('popular', 1), ('biological', 1), ('analysis', 1), ('little', 1), ('programming', 1), ('experience', 1), ('starting', 1), ('challenge', 1), ('many', 1), ('difficult', 1), ('time', 1), ('learning', 1), ('apply', 1), ('bioinformatics', 1)]
[('experienced', 1), ('javascript', 1), ('developer', 1), ('moving', 1), ('server', 1), ('side', 1), ('programming', 1), ('need', 1), ('implement', 1), ('classic', 1), ('data', 1), ('structure', 1), ('algorithm', 1), ('associated', 1), ('conventional', 1), ('object', 1), ('oriented', 1), ('language', 1), ('java', 1), ('practical', 1), ('guide', 1), ('show', 1), ('work', 1), ('hand', 1), ('variety', 1), ('storage', 1), ('mechanism', 1), ('including', 1), ('linked', 1), ('list', 1), ('stack', 1), ('queue', 1)]
[('programmer', 2), ('perl', 2), ('latest', 2), ('worldwide', 1), ('community', 1), ('user', 1), ('million', 1), ('dedicated', 1), ('proven', 1), ('effective', 1), ('language', 1), ('trend', 1), ('computing', 1), ('business', 1), ('every', 1), ('keep', 1), ('tool', 1), ('technique', 1), ('updated', 1), ('version', 1), ('advanced', 1), ('programming', 1), ('reilly', 1), ('give', 1), ('essential', 1)]
[('web', 3), ('site', 3), ('apache', 2), ('server', 2), ('world', 2), ('far', 1), ('away', 1), ('widely', 1), ('used', 1), ('platform', 1), ('versatile', 1), ('run', 1), ('half', 1), ('existing', 1), ('free', 1), ('rock', 1), ('solid', 1), ('running', 1), ('million', 1), ('ranging', 1), ('huge', 1), ('commerce', 1), ('operation', 1), ('corporate', 1), ('intranet', 1), ('smaller', 1), ('hobby', 1), ('new', 1), ('third', 1), ('edition', 1)]
[('ruby', 3), ('language', 2), ('absolutely', 1), ('pure', 1), ('object', 1), ('oriented', 1), ('scripting', 1), ('written', 1), ('designed', 1), ('perl', 1), ('python', 1), ('capability', 1), ('mind', 1), ('root', 1), ('japan', 1), ('slowly', 1), ('surely', 1), ('gaining', 1), ('ground', 1), ('goal', 1), ('yukihiro', 1), ('matsumoto', 1), ('creator', 1), ('author', 1), ('book', 1), ('incorporate', 1), ('strength', 1)]
[('web', 2), ('service', 2), ('tool', 2), ('poised', 1), ('become', 1), ('key', 1), ('technology', 1), ('wide', 1), ('range', 1), ('internet', 1), ('enabled', 1), ('application', 1), ('spanning', 1), ('everything', 1), ('straight', 1), ('system', 1), ('mobile', 1), ('device', 1), ('proprietary', 1), ('house', 1), ('software', 1), ('several', 1), ('platform', 1), ('used', 1), ('building', 1), ('developer', 1), ('finding', 1), ('powerful', 1), ('microsoft', 1)]
[('internet', 2), ('scam', 2), ('real', 2), ('large', 1), ('unregulated', 1), ('fertile', 1), ('breeding', 1), ('ground', 1), ('kind', 1), ('scheme', 1), ('usually', 1), ('credit', 1), ('card', 1), ('number', 1), ('stop', 1), ('mere', 1), ('annoyance', 1), ('crime', 1), ('victim', 1), ('thanks', 1), ('forensics', 1), ('reilly', 1), ('something', 1)]
[('book', 3), ('juno', 2), ('switching', 2), ('ex', 2), ('platform', 2), ('enterprise', 1), ('detailed', 1), ('technical', 1), ('juniper', 1), ('network', 1), ('new', 1), ('ethernet', 1), ('product', 1), ('learn', 1), ('hardware', 1), ('asic', 1), ('design', 1), ('prowess', 1), ('software', 1), ('power', 1), ('extremely', 1), ('practical', 1), ('useful', 1), ('hand', 1), ('manual', 1)]
[('stream', 5), ('java', 2), ('input', 2), ('output', 2), ('data', 2), ('different', 2), ('facility', 1), ('based', 1), ('provide', 1), ('simple', 1), ('way', 1), ('write', 1), ('type', 1), ('provides', 1), ('many', 1), ('kind', 1), ('application', 1), ('universe', 1), ('divided', 1), ('four', 1), ('largecategories', 1), ('reading', 1), ('writing', 1), ('binary', 1)]
[('easy', 2), ('data', 2), ('nice', 1), ('thing', 1), ('internet', 1), ('anyone', 1), ('access', 1), ('web', 1), ('site', 1), ('drawback', 1), ('php', 1), ('component', 1), ('lamp', 1), ('make', 1), ('produce', 1), ('afunctional', 1), ('useful', 1), ('website', 1), ('course', 1), ('secure', 1), ('orthogonal', 1), ('concept', 1), ('care', 1), ('customer', 1), ('need', 1), ('think', 1), ('security', 1)]
[('swing', 3), ('java', 3), ('developer', 2), ('hack', 1), ('help', 1), ('move', 1), ('beyond', 1), ('basic', 1), ('graphical', 1), ('user', 1), ('interface', 1), ('gui', 1), ('standard', 1), ('looking', 1), ('build', 1), ('enterprise', 1), ('application', 1), ('first', 1), ('class', 1), ('look', 1), ('feel', 1), ('definitely', 1), ('skill', 1), ('need', 1), ('master', 1), ('latest', 1), ('title', 1), ('reilly', 1), ('reference', 1), ('cool', 1), ('stuff', 1)]
[('system', 3), ('linux', 3), ('server', 2), ('competent', 1), ('administrator', 1), ('know', 1), ('high', 1), ('performance', 1), ('routing', 1), ('large', 1), ('amount', 1), ('information', 1), ('network', 1), ('connection', 1), ('setting', 1), ('maintaining', 1), ('requires', 1), ('understanding', 1), ('hardware', 1), ('in', 1), ('out', 1), ('operating', 1), ('along', 1), ('supporting', 1), ('cast', 1), ('utility', 1)]
[('name', 3), ('identify', 2), ('address', 2), ('domain', 2), ('dns', 2), ('computer', 1), ('device', 1), ('network', 1), ('internet', 1), ('using', 1), ('unique', 1), ('made', 1), ('number', 1), ('human', 1), ('rely', 1), ('system', 1), ('distributed', 1), ('database', 1), ('allows', 1), ('machine', 1), ('work', 1), ('translating', 1), ('numerical', 1), ('ip', 1), ('routing', 1), ('mail', 1), ('proper', 1)]
[('web', 4), ('jsp', 3), ('page', 2), ('create', 2), ('javaserver', 1), ('harmonizing', 1), ('designer', 1), ('programmer', 1), ('dynamic', 1), ('reason', 1), ('simple', 1), ('capitalizes', 1), ('power', 1), ('java', 1), ('servlets', 1), ('effective', 1), ('reusable', 1), ('application', 1), ('allows', 1), ('develop', 1), ('robust', 1), ('powerful', 1), ('content', 1), ('best', 1), ('part', 1), ('required', 1), ('hard', 1), ('core', 1)]
[('pattern', 3), ('regular', 2), ('expression', 2), ('sql', 2), ('oracle', 2), ('matching', 2), ('support', 1), ('pl', 1), ('exciting', 1), ('feature', 1), ('database', 1), ('long', 1), ('supported', 1), ('ansi', 1), ('standard', 1), ('predicate', 1), ('rudimentary', 1), ('take', 1), ('new', 1), ('level', 1), ('provide', 1), ('powerful', 1), ('way', 1), ('select', 1), ('data', 1), ('match', 1)]
[('oracle', 4), ('sql', 2), ('plus', 2), ('pocket', 1), ('reference', 1), ('anyone', 1), ('working', 1), ('database', 1), ('especially', 1), ('looking', 1), ('maximize', 1), ('effectiveness', 1), ('sqlplus', 1), ('long', 1), ('standing', 1), ('interactive', 1), ('query', 1), ('tool', 1), ('available', 1), ('every', 1), ('site', 1), ('largest', 1), ('data', 1), ('warehouse', 1), ('smallest', 1), ('single', 1), ('user', 1), ('system', 1), ('despite', 1), ('wide', 1)]
[('perl', 2), ('debugger', 2), ('programmer', 1), ('know', 1), ('nifty', 1), ('little', 1), ('built', 1), ('utility', 1), ('use', 1), ('fully', 1), ('debug', 1), ('program', 1), ('write', 1), ('inside', 1), ('interactive', 1), ('environment', 1), ('prompted', 1), ('command', 1), ('examine', 1), ('source', 1), ('code', 1), ('set', 1), ('breakpoints', 1), ('dump', 1), ('function', 1), ('call', 1), ('stack', 1), ('change', 1), ('value', 1), ('variable', 1)]
[('junit', 2), ('test', 2), ('code', 2), ('created', 1), ('kent', 1), ('beck', 1), ('erich', 1), ('gamma', 1), ('open', 1), ('source', 1), ('framework', 1), ('driven', 1), ('development', 1), ('java', 1), ('based', 1), ('automates', 1), ('unit', 1), ('testing', 1), ('reduces', 1), ('effort', 1), ('required', 1), ('frequently', 1), ('developing', 1), ('lot', 1), ('bit', 1), ('documentation', 1), ('place', 1), ('go', 1), ('manual', 1), ('serf', 1), ('quick', 1)]
[('juno', 2), ('security', 2), ('juniper', 2), ('srx', 2), ('complete', 1), ('authorized', 1), ('introduction', 1), ('new', 1), ('network', 1), ('hardware', 1), ('series', 1), ('book', 1), ('provides', 1), ('practical', 1), ('hand', 1), ('field', 1), ('guide', 1), ('deploying', 1), ('configuring', 1), ('operating', 1), ('serf', 1), ('reference', 1), ('help', 1), ('prepare', 1), ('certification', 1), ('examination', 1), ('offered', 1)]
[('enterprise', 2), ('project', 2), ('rest', 2), ('typical', 1), ('go', 1), ('smoothly', 1), ('develop', 1), ('web', 1), ('architectural', 1), ('style', 1), ('really', 1), ('present', 1), ('viable', 1), ('alternative', 1), ('building', 1), ('distributed', 1), ('system', 1), ('class', 1), ('application', 1), ('insightful', 1), ('book', 1), ('three', 1), ('soa', 1), ('expert', 1), ('provide', 1), ('earth', 1), ('explanation', 1), ('demonstrate', 1)]
[('perl', 4), ('journal', 2), ('tpj', 2), ('every', 2), ('something', 1), ('print', 1), ('aspire', 1), ('succeed', 1), ('within', 1), ('remarkable', 1), ('short', 1), ('time', 1), ('acquired', 1), ('cult', 1), ('following', 1), ('became', 1), ('voice', 1), ('community', 1), ('serious', 1), ('programmer', 1), ('subscribed', 1), ('notable', 1), ('guru', 1), ('jumped', 1), ('opportunity', 1), ('write', 1), ('back', 1), ('issue', 1), ('swapped', 1)]
[('another', 2), ('application', 2), ('developer', 1), ('system', 1), ('administrator', 1), ('alike', 1), ('uncovering', 1), ('true', 1), ('power', 1), ('xml', 1), ('extensible', 1), ('markup', 1), ('language', 1), ('enables', 1), ('data', 1), ('sent', 1), ('internet', 1), ('computer', 1), ('platform', 1), ('retain', 1), ('original', 1), ('format', 1), ('flexible', 1), ('enough', 1), ('customized', 1), ('diverse', 1), ('web', 1), ('site', 1), ('electronic', 1)]
[('multicore', 2), ('device', 2), ('processor', 1), ('coming', 1), ('mobile', 1), ('take', 1), ('advantage', 1), ('core', 1), ('without', 1), ('manage', 1), ('thread', 1), ('concise', 1), ('book', 1), ('show', 1), ('use', 1), ('apple', 1), ('grand', 1), ('central', 1), ('dispatch', 1), ('gcd', 1), ('simplify', 1), ('programming', 1), ('io', 1), ('mac', 1), ('o', 1), ('managing', 1), ('application', 1), ('resource', 1)]
[('security', 3), ('unix', 2), ('edition', 2), ('practical', 1), ('first', 1), ('published', 1), ('decade', 1), ('ago', 1), ('became', 1), ('instant', 1), ('classic', 1), ('crammed', 1), ('information', 1), ('host', 1), ('saved', 1), ('many', 1), ('system', 1), ('administrator', 1), ('disaster', 1), ('second', 1), ('added', 1), ('needed', 1), ('internet', 1), ('coverage', 1), ('doubled', 1), ('size', 1), ('original', 1), ('volume', 1), ('third', 1)]
[('jira', 3), ('tracking', 2), ('administration', 2), ('familiar', 1), ('issue', 1), ('bug', 1), ('us', 1), ('know', 1), ('sometimes', 1), ('tricky', 1), ('set', 1), ('manage', 1), ('concise', 1), ('book', 1), ('software', 1), ('toolsmith', 1), ('matt', 1), ('doar', 1), ('clarifies', 1), ('confusing', 1), ('aspect', 1), ('answering', 1), ('difficult', 1), ('frequently', 1), ('asked', 1), ('question', 1), ('practical', 1)]
[('ajax', 3), ('using', 3), ('apps', 2), ('apache', 2), ('want', 1), ('make', 1), ('dynamic', 1), ('short', 1), ('cut', 1), ('show', 1), ('cover', 1), ('framework', 1), ('build', 1), ('mvc', 1), ('application', 1), ('incorporating', 1), ('design', 1), ('pattern', 1), ('building', 1), ('custom', 1), ('module', 1), ('handle', 1), ('request', 1), ('json', 1), ('solving', 1), ('page', 1), ('refresh', 1), ('problem', 1), ('tracking', 1), ('persistent', 1), ('session', 1)]
[('schematron', 2), ('rule', 2), ('xml', 2), ('schema', 2), ('language', 2), ('checking', 2), ('element', 2), ('based', 1), ('offering', 1), ('flexibility', 1), ('power', 1), ('relax', 1), ('ng', 1), ('dtds', 1), ('simply', 1), ('match', 1), ('need', 1), ('settle', 1), ('check', 1), ('go', 1), ('beyond', 1), ('document', 1), ('structure', 1), ('bar', 1), ('included', 1), ('foo', 1)]
[('ssis', 3), ('data', 3), ('integration', 2), ('solution', 2), ('workflow', 2), ('sql', 1), ('server', 1), ('service', 1), ('let', 1), ('build', 1), ('high', 1), ('performance', 1), ('wrap', 1), ('sophisticated', 1), ('around', 1), ('task', 1), ('extract', 1), ('transform', 1), ('load', 1), ('etl', 1), ('wide', 1), ('variety', 1), ('source', 1), ('short', 1), ('cut', 1), ('begin', 1), ('overview', 1), ('key', 1), ('concept', 1), ('capability', 1), ('standard', 1)]
[('schema', 3), ('factor', 2), ('information', 2), ('model', 2), ('wondered', 1), ('started', 1), ('writing', 1), ('prepare', 1), ('create', 1), ('consider', 1), ('number', 1), ('guide', 1), ('explains', 1), ('detail', 1), ('recommends', 1), ('approach', 1), ('documenting', 1), ('development', 1), ('plan', 1), ('used', 1)]
[('framework', 2), ('robotlegs', 1), ('standout', 1), ('among', 1), ('actionscript', 1), ('development', 1), ('available', 1), ('today', 1), ('flash', 1), ('flex', 1), ('air', 1), ('developer', 1), ('create', 1), ('architected', 1), ('testable', 1), ('flexible', 1), ('rich', 1), ('internet', 1), ('application', 1), ('fast', 1), ('concise', 1), ('guide', 1), ('show', 1), ('light', 1), ('footprint', 1), ('focused', 1), ('scope', 1), ('open', 1), ('source', 1), ('solves', 1)]
[('learn', 1), ('leverage', 1), ('mongodb', 1), ('python', 1), ('application', 1), ('using', 1), ('hand', 1), ('recipe', 1), ('book', 1), ('complete', 1), ('code', 1), ('sample', 1), ('task', 1), ('making', 1), ('fast', 1), ('geo', 1), ('query', 1), ('location', 1), ('based', 1), ('apps', 1), ('efficiently', 1), ('indexing', 1), ('user', 1), ('document', 1), ('social', 1), ('graph', 1), ('lookup', 1), ('many', 1), ('scenario', 1), ('guide', 1), ('explains', 1), ('basic', 1)]
[('sinatra', 3), ('web', 2), ('application', 2), ('take', 1), ('advantage', 1), ('ruby', 1), ('based', 1), ('library', 1), ('domain', 1), ('specific', 1), ('language', 1), ('used', 1), ('heroku', 1), ('github', 1), ('apple', 1), ('engine', 1), ('yard', 1), ('prominent', 1), ('organization', 1), ('concise', 1), ('book', 1), ('quickly', 1), ('gain', 1), ('working', 1), ('knowledge', 1), ('minimalist', 1), ('approach', 1), ('building', 1), ('standalone', 1), ('modular', 1)]
[('social', 3), ('network', 2), ('analysis', 2), ('sna', 2), ('startup', 1), ('rely', 1), ('concise', 1), ('guide', 1), ('provides', 1), ('statistical', 1), ('framework', 1), ('help', 1), ('identify', 1), ('process', 1), ('hidden', 1), ('among', 1), ('ton', 1), ('data', 1), ('available', 1), ('discipline', 1), ('predates', 1), ('facebook', 1), ('twitter', 1), ('year', 1), ('expert', 1), ('researcher', 1), ('learn', 1), ('concept', 1)]
[('xml', 3), ('publishing', 2), ('indesign', 2), ('discover', 1), ('power', 1), ('create', 1), ('content', 1), ('multiple', 1), ('application', 1), ('including', 1), ('digital', 1), ('first', 1), ('workflow', 1), ('book', 1), ('evangelist', 1), ('dorothy', 1), ('hoskins', 1), ('teach', 1), ('several', 1), ('technique', 1), ('working', 1), ('built', 1), ('capability', 1), ('c', 1), ('using', 1), ('real', 1), ('example', 1), ('college', 1), ('course', 1), ('catalog', 1), ('project', 1)]
[('connect', 2), ('step', 2), ('enterprise', 1), ('wide', 1), ('range', 1), ('saas', 1), ('platform', 1), ('open', 1), ('apis', 1), ('social', 1), ('network', 1), ('quickly', 1), ('without', 1), ('difficulty', 1), ('instruction', 1), ('numerous', 1), ('real', 1), ('world', 1), ('example', 1), ('concise', 1), ('guide', 1), ('show', 1), ('seamlessly', 1), ('integrate', 1), ('external', 1), ('service', 1), ('need', 1), ('mule', 1), ('esb', 1), ('powerful', 1), ('cloud', 1), ('toolset', 1), ('learn', 1)]
[('language', 2), ('easy', 2), ('learn', 2), ('realbasic', 1), ('programming', 1), ('best', 1), ('macintosh', 1), ('tradition', 1), ('visual', 1), ('intuitive', 1), ('allows', 1), ('create', 1), ('interface', 1), ('minute', 1), ('entire', 1), ('compiled', 1), ('application', 1), ('without', 1), ('complicated', 1), ('strong', 1), ('object', 1), ('orientation', 1), ('make', 1), ('even', 1), ('beginner', 1), ('develop', 1), ('maintain', 1), ('alter', 1), ('project', 1)]
[('website', 2), ('database', 2), ('user', 2), ('today', 1), ('highly', 1), ('interactive', 1), ('pose', 1), ('challenge', 1), ('traditional', 1), ('sql', 1), ('ability', 1), ('scale', 1), ('rapidly', 1), ('serve', 1), ('load', 1), ('concurrent', 1), ('concise', 1), ('guide', 1), ('learn', 1), ('build', 1), ('web', 1), ('application', 1), ('top', 1), ('couchbase', 1), ('server', 1), ('nosql', 1), ('handle', 1), ('social', 1), ('medium', 1), ('hundred', 1), ('thousand', 1)]
[('shell', 4), ('korn', 2), ('command', 2), ('nutshell', 1), ('handbook', 1), ('thorough', 1), ('introduction', 1), ('user', 1), ('interface', 1), ('programming', 1), ('language', 1), ('bourne', 1), ('program', 1), ('interprets', 1), ('unix', 1), ('many', 1), ('feature', 1), ('found', 1), ('including', 1), ('history', 1), ('ability', 1), ('recall', 1), ('edit', 1), ('previous', 1)]
[('twisted', 2), ('event', 2), ('driven', 2), ('networking', 2), ('learn', 2), ('build', 2), ('protocol', 2), ('started', 1), ('framework', 1), ('written', 1), ('python', 1), ('introductory', 1), ('guide', 1), ('key', 1), ('concept', 1), ('design', 1), ('pattern', 1), ('client', 1), ('server', 1), ('application', 1), ('many', 1), ('popular', 1), ('tool', 1), ('new', 1), ('using', 1), ('primitive', 1), ('start', 1)]
[('perl', 4), ('every', 2), ('first', 1), ('five', 1), ('year', 1), ('existence', 1), ('journal', 1), ('ran', 1), ('article', 1), ('author', 1), ('serious', 1), ('programmer', 1), ('subscribed', 1), ('notable', 1), ('guru', 1), ('jumped', 1), ('opportunity', 1), ('write', 1), ('tpj', 1), ('explained', 1), ('critical', 1), ('topic', 1), ('regular', 1), ('expression', 1), ('database', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('demonstrated', 1)]
[('java', 3), ('programming', 2), ('need', 1), ('quick', 1), ('answer', 1), ('developing', 1), ('debugging', 1), ('program', 1), ('pocket', 1), ('guide', 1), ('provides', 1), ('handy', 1), ('reference', 1), ('standard', 1), ('feature', 1), ('language', 1), ('platform', 1), ('find', 1), ('helpful', 1), ('example', 1), ('table', 1), ('figure', 1), ('list', 1), ('supplemental', 1), ('information', 1), ('topic', 1), ('including', 1), ('scripting', 1), ('api', 1)]
[('data', 3), ('learn', 2), ('programming', 2), ('perform', 1), ('analysis', 1), ('language', 1), ('software', 1), ('environment', 1), ('even', 1), ('little', 1), ('experience', 1), ('tutorial', 1), ('hand', 1), ('guide', 1), ('youâ', 1), ('use', 1), ('essential', 1), ('tool', 1), ('need', 1), ('know', 1), ('analyze', 1), ('including', 1), ('type', 1), ('concept', 1), ('second', 1), ('half', 1), ('learning', 1), ('show', 1)]
[('actor', 2), ('avoid', 1), ('common', 1), ('mistake', 1), ('building', 1), ('distributed', 1), ('asynchronous', 1), ('high', 1), ('performance', 1), ('software', 1), ('akka', 1), ('toolkit', 1), ('runtime', 1), ('concise', 1), ('guide', 1), ('author', 1), ('jamie', 1), ('allen', 1), ('provides', 1), ('collection', 1), ('best', 1), ('practice', 1), ('based', 1), ('several', 1), ('year', 1), ('using', 1), ('model', 1), ('book', 1), ('includes', 1), ('example', 1), ('application', 1), ('type', 1), ('primary', 1), ('pattern', 1)]
[('text', 5), ('web', 1), ('designer', 1), ('probably', 1), ('spend', 1), ('time', 1), ('working', 1), ('element', 1), ('concise', 1), ('guide', 1), ('learn', 1), ('cs', 1), ('property', 1), ('changing', 1), ('appearance', 1), ('without', 1), ('altering', 1), ('font', 1), ('face', 1), ('including', 1), ('horizontal', 1), ('vertical', 1), ('alignment', 1), ('transformation', 1), ('word', 1), ('letter', 1), ('spacing', 1), ('wrapping', 1), ('direction', 1)]
[('recent', 1), ('digital', 1), ('mobile', 1), ('revolution', 1), ('minor', 1), ('blip', 1), ('compared', 1), ('next', 1), ('wave', 1), ('technological', 1), ('change', 1), ('everything', 1), ('robot', 1), ('swarm', 1), ('skin', 1), ('top', 1), ('embeddable', 1), ('computer', 1), ('bio', 1), ('printable', 1), ('organ', 1), ('start', 1), ('appearing', 1), ('coming', 1), ('year', 1), ('collection', 1), ('inspiring', 1), ('essay', 1), ('designer', 1), ('engineer', 1), ('researcher', 1), ('discus', 1), ('approach', 1)]
[('use', 2), ('build', 2), ('framework', 2), ('knockout', 1), ('j', 1), ('design', 1), ('dynamic', 1), ('client', 1), ('side', 1), ('web', 1), ('application', 1), ('extremely', 1), ('responsive', 1), ('easy', 1), ('maintain', 1), ('example', 1), ('driven', 1), ('book', 1), ('show', 1), ('lightweight', 1), ('javascript', 1), ('model', 1), ('view', 1), ('viewmodel', 1), ('mvvm', 1), ('pattern', 1), ('learn', 1), ('data', 1), ('binding', 1), ('extend', 1), ('reusable', 1)]
[('openbts', 3), ('mobile', 2), ('network', 2), ('open', 2), ('software', 2), ('step', 2), ('deploy', 1), ('private', 1), ('source', 1), ('project', 1), ('convert', 1), ('gsm', 1), ('umts', 1), ('wireless', 1), ('radio', 1), ('interface', 1), ('ip', 1), ('protocol', 1), ('hand', 1), ('guide', 1), ('learn', 1), ('use', 1), ('construct', 1), ('simple', 1), ('flexible', 1), ('inexpensive', 1), ('distribute', 1)]
[('book', 2), ('open', 2), ('author', 2), ('provides', 1), ('something', 1), ('far', 1), ('valuable', 1), ('either', 1), ('cheerleading', 1), ('fear', 1), ('mongering', 1), ('hears', 1), ('source', 1), ('dan', 1), ('wood', 1), ('former', 1), ('cto', 1), ('thestreet', 1), ('consultant', 1), ('several', 1), ('gautam', 1), ('guliani', 1), ('director', 1), ('software', 1), ('architecture', 1), ('kaplan', 1), ('test', 1), ('prep', 1), ('admission', 1), ('used', 1)]
[('hadoop', 3), ('data', 2), ('show', 2), ('corporation', 1), ('turn', 1), ('store', 1), ('process', 1), ('valuable', 1), ('risk', 1), ('potential', 1), ('breach', 1), ('system', 1), ('increase', 1), ('exponentially', 1), ('practical', 1), ('book', 1), ('administrator', 1), ('security', 1), ('architect', 1), ('protect', 1), ('unauthorized', 1), ('access', 1), ('limit', 1), ('ability', 1), ('attacker', 1)]
[('web', 2), ('component', 2), ('although', 1), ('still', 1), ('bleeding', 1), ('edge', 1), ('barely', 1), ('supported', 1), ('modern', 1), ('browser', 1), ('technology', 1), ('moving', 1), ('extremely', 1), ('fast', 1), ('practical', 1), ('guide', 1), ('get', 1), ('speed', 1), ('concept', 1), ('underlying', 1), ('emerging', 1), ('standard', 1), ('show', 1), ('build', 1), ('custom', 1), ('reusable', 1), ('html', 1), ('regardless', 1), ('experience', 1), ('library', 1)]
[('cs', 2), ('aspect', 1), ('formatting', 1), ('model', 1), ('seem', 1), ('counterintuitive', 1), ('first', 1), ('learn', 1), ('practical', 1), ('guide', 1), ('work', 1), ('feature', 1), ('make', 1), ('sense', 1), ('author', 1), ('eric', 1), ('meyer', 1), ('give', 1), ('good', 1), ('grounding', 1), ('visual', 1), ('rendering', 1), ('element', 1), ('box', 1), ('rule', 1), ('concept', 1), ('specific', 1), ('managing', 1), ('tricky', 1), ('layout', 1)]
[('project', 2), ('unix', 2), ('net', 2), ('framework', 2), ('mono', 1), ('talked', 1), ('open', 1), ('source', 1), ('initiative', 1), ('create', 1), ('implementation', 1), ('microsoft', 1), ('development', 1), ('purpose', 1), ('allow', 1), ('developer', 1), ('build', 1), ('deploy', 1), ('cross', 1), ('platform', 1), ('application', 1), ('sparked', 1), ('interest', 1), ('developing', 1), ('component', 1), ('library', 1)]
[('salt', 4), ('manage', 2), ('complete', 1), ('introduction', 1), ('widely', 1), ('used', 1), ('python', 1), ('based', 1), ('configuration', 1), ('management', 1), ('remote', 1), ('execution', 1), ('tool', 1), ('practical', 1), ('guide', 1), ('show', 1), ('system', 1), ('administrator', 1), ('complex', 1), ('infrastructure', 1), ('teach', 1), ('developer', 1), ('use', 1), ('deploy', 1), ('application', 1), ('written', 1), ('expert', 1)]
[('web', 2), ('model', 2), ('human', 2), ('platform', 2), ('slowly', 1), ('surely', 1), ('changing', 1), ('reader', 1), ('browse', 1), ('content', 1), ('page', 1), ('service', 1), ('client', 1), ('necessarily', 1), ('exchange', 1), ('information', 1), ('author', 1), ('silvia', 1), ('puglisi', 1), ('explains', 1), ('make', 1), ('sense', 1), ('build', 1), ('instead', 1), ('product', 1), ('application', 1)]
[('peer', 2), ('term', 1), ('come', 1), ('applied', 1), ('network', 1), ('expect', 1), ('end', 1), ('user', 1), ('contribute', 1), ('file', 1), ('computing', 1), ('time', 1), ('resource', 1), ('shared', 1), ('project', 1), ('even', 1), ('interesting', 1), ('system', 1), ('technical', 1), ('underpinnings', 1), ('socially', 1), ('disruptive', 1), ('potential', 1), ('various', 1), ('way', 1), ('return', 1), ('content', 1), ('choice', 1), ('control', 1)]
[('apple', 2), ('apps', 2), ('watch', 1), ('sort', 1), ('science', 1), ('fiction', 1), ('gadget', 1), ('used', 1), ('dream', 1), ('kid', 1), ('kind', 1), ('envision', 1), ('new', 1), ('device', 1), ('comfortable', 1), ('using', 1), ('o', 1), ('xcode', 1), ('io', 1), ('familiar', 1), ('swift', 1), ('concise', 1), ('book', 1), ('show', 1), ('basic', 1), ('building', 1), ('wrist', 1), ('mounted', 1), ('computer', 1), ('watchkit', 1)]
[('table', 4), ('layout', 3), ('web', 2), ('cs', 2), ('something', 1), ('designer', 1), ('want', 1), ('avoid', 1), ('yes', 1), ('rather', 1), ('use', 1), ('book', 1), ('way', 1), ('laid', 1), ('process', 1), ('complicated', 1), ('appears', 1), ('concise', 1), ('guide', 1), ('take', 1), ('deep', 1), ('dive', 1), ('concept', 1), ('necessary', 1), ('understanding', 1)]
[('apps', 2), ('io', 2), ('experience', 2), ('ready', 1), ('build', 1), ('mobile', 1), ('perform', 1), ('rest', 1), ('developer', 1), ('app', 1), ('building', 1), ('practical', 1), ('guide', 1), ('provides', 1), ('tip', 1), ('best', 1), ('practice', 1), ('help', 1), ('solve', 1), ('many', 1), ('common', 1), ('performance', 1), ('issue', 1), ('learn', 1), ('design', 1), ('optimize', 1), ('deliver', 1), ('smooth', 1), ('even', 1), ('network', 1), ('poor', 1), ('memory', 1), ('low', 1)]
[('float', 3), ('image', 2), ('cs', 2), ('flowing', 1), ('text', 1), ('around', 1), ('certainly', 1), ('nothing', 1), ('new', 1), ('element', 1), ('paragraph', 1), ('list', 1), ('practical', 1), ('guide', 1), ('author', 1), ('eric', 1), ('meyer', 1), ('reveals', 1), ('interesting', 1), ('surprising', 1), ('way', 1), ('use', 1), ('web', 1), ('design', 1), ('including', 1), ('latest', 1), ('capability', 1), ('flow', 1), ('content', 1), ('past', 1), ('non', 1), ('rectangular', 1), ('shape', 1), ('short', 1)]
[('web', 2), ('frontend', 2), ('development', 2), ('imagine', 1), ('large', 1), ('scale', 1), ('project', 1), ('look', 1), ('treated', 1), ('add', 1), ('equal', 1), ('partner', 1), ('backend', 1), ('content', 1), ('strategy', 1), ('practical', 1), ('book', 1), ('take', 1), ('experienced', 1), ('developer', 1), ('new', 1), ('discipline', 1), ('architecture', 1), ('including', 1), ('latest', 1), ('tool', 1), ('standard', 1), ('best', 1), ('practice', 1)]
[('android', 3), ('gradle', 2), ('build', 2), ('adopted', 1), ('preferred', 1), ('automation', 1), ('system', 1), ('year', 1), ('ago', 1), ('many', 1), ('developer', 1), ('still', 1), ('unfamiliar', 1), ('open', 1), ('source', 1), ('tool', 1), ('hand', 1), ('guide', 1), ('provides', 1), ('collection', 1), ('recipe', 1), ('help', 1), ('quickly', 1), ('easily', 1), ('accomplish', 1), ('common', 1), ('task', 1), ('apps', 1), ('learn', 1), ('customize', 1)]
[('hbase', 3), ('remarkable', 1), ('tool', 1), ('indexing', 1), ('mass', 1), ('volume', 1), ('data', 1), ('getting', 1), ('started', 1), ('distributed', 1), ('database', 1), ('ecosystem', 1), ('daunting', 1), ('hand', 1), ('guide', 1), ('learn', 1), ('architect', 1), ('design', 1), ('deploy', 1), ('application', 1), ('examining', 1), ('real', 1), ('world', 1), ('solution', 1), ('along', 1), ('principle', 1), ('cluster', 1), ('deployment', 1)]
[('high', 2), ('image', 2), ('quality', 1), ('amazing', 1), ('power', 1), ('attraction', 1), ('add', 1), ('stunning', 1), ('photo', 1), ('graphic', 1), ('website', 1), ('app', 1), ('watch', 1), ('user', 1), ('engagement', 1), ('conversion', 1), ('number', 1), ('climb', 1), ('tricky', 1), ('practical', 1), ('guide', 1), ('master', 1), ('many', 1), ('facet', 1), ('delivering', 1), ('performance', 1), ('internet', 1), ('without', 1), ('adversely', 1), ('affecting', 1)]
[('come', 1), ('big', 1), ('data', 1), ('processing', 1), ('longer', 1), ('ignore', 1), ('concurrency', 1), ('try', 1), ('add', 1), ('fact', 1), ('fortunately', 1), ('solution', 1), ('new', 1), ('paradigm', 1), ('development', 1), ('rather', 1), ('old', 1), ('hand', 1), ('guide', 1), ('java', 1), ('scala', 1), ('developer', 1), ('learn', 1), ('embrace', 1), ('concurrent', 1), ('distributed', 1), ('application', 1), ('open', 1), ('source', 1), ('akka', 1)]
[('working', 2), ('recipe', 2), ('jump', 1), ('build', 1), ('android', 1), ('apps', 1), ('help', 1), ('tested', 1), ('second', 1), ('edition', 1), ('acclaimed', 1), ('cookbook', 1), ('includes', 1), ('user', 1), ('interface', 1), ('multitouch', 1), ('gesture', 1), ('location', 1), ('awareness', 1), ('web', 1), ('service', 1), ('specific', 1), ('device', 1), ('feature', 1), ('phone', 1), ('camera', 1), ('accelerometer', 1), ('useful', 1), ('info', 1)]
[('technology', 2), ('becomes', 1), ('deeply', 1), ('integrated', 1), ('every', 1), ('aspect', 1), ('life', 1), ('begun', 1), ('expect', 1), ('emotionally', 1), ('intelligent', 1), ('interaction', 1), ('smartphones', 1), ('know', 1), ('bad', 1), ('day', 1), ('car', 1), ('care', 1), ('le', 1), ('compassion', 1), ('developing', 1), ('iq', 1), ('still', 1), ('lack', 1), ('eq', 1), ('book', 1), ('pamela', 1), ('pavliscak', 1), ('design', 1), ('researcher', 1)]
[('computer', 2), ('code', 2), ('hacking', 1), ('everywhere', 1), ('legendary', 1), ('cybersecurity', 1), ('expert', 1), ('new', 1), ('york', 1), ('time', 1), ('best', 1), ('selling', 1), ('author', 1), ('bruce', 1), ('schneier', 1), ('reveals', 1), ('using', 1), ('hacker', 1), ('mindset', 1), ('change', 1), ('think', 1), ('life', 1), ('world', 1), ('hack', 1), ('mean', 1), ('subverting', 1), ('system', 1), ('rule', 1), ('unintended', 1), ('way', 1), ('tax', 1), ('series', 1)]
[('game', 5), ('medium', 2), ('video', 2), ('teaching', 1), ('study', 1), ('literature', 1), ('classroom', 1), ('offer', 1), ('practical', 1), ('suggestion', 1), ('educator', 1), ('looking', 1), ('incorporate', 1), ('ludic', 1), ('ranging', 1), ('novel', 1), ('poem', 1), ('board', 1), ('curriculum', 1), ('across', 1), ('globe', 1), ('interactive', 1), ('already', 1), ('granted', 1), ('department', 1), ('numerous', 1), ('larger', 1)]
[('data', 4), ('defined', 2), ('never', 1), ('mattered', 1), ('life', 1), ('increasingly', 1), ('shaped', 1), ('collected', 1), ('used', 1), ('count', 1), ('collection', 1), ('analysis', 1), ('application', 1), ('important', 1), ('book', 1), ('first', 1), ('look', 1), ('queer', 1), ('relating', 1), ('gender', 1), ('sex', 1), ('sexual', 1), ('orientation', 1), ('trans', 1), ('identity', 1), ('history', 1), ('author', 1), ('show', 1)]
[('learn', 1), ('organizational', 1), ('data', 1), ('governed', 1), ('according', 1), ('ethical', 1), ('principle', 1), ('practical', 1), ('guide', 1)]
[('study', 3), ('computer', 2), ('gcse', 2), ('need', 2), ('technique', 2), ('work', 1), ('focus', 1), ('essential', 1), ('grade', 1), ('want', 1), ('book', 1), ('give', 1), ('advice', 1), ('course', 1), ('exam', 1), ('knowledge', 1), ('full', 1), ('note', 1), ('know', 1), ('model', 1), ('answer', 1), ('giving', 1), ('explanation', 1), ('practice', 1), ('question', 1), ('build', 1), ('skill', 1)]
[('internet', 2), ('attack', 2), ('computer', 2), ('system', 2), ('pervasive', 1), ('take', 1), ('le', 1), ('minute', 1), ('eight', 1), ('hour', 1), ('unprotected', 1), ('machine', 1), ('connected', 1), ('completely', 1), ('compromised', 1), ('information', 1), ('security', 1), ('architect', 1), ('job', 1), ('prevent', 1), ('securing', 1), ('book', 1), ('describes', 1), ('process', 1), ('practice', 1)]
[('book', 4), ('cover', 2), ('forensics', 2), ('technical', 1), ('detail', 1), ('mobile', 1), ('device', 1), ('transmission', 1), ('forensic', 1), ('method', 1), ('extracting', 1), ('evidence', 1), ('specific', 1), ('issue', 1), ('android', 1), ('io', 1), ('currently', 1), ('topic', 1)]
[('process', 2), ('within', 2), ('behavior', 2), ('book', 1), ('explains', 1), ('achieve', 1), ('dramatic', 1), ('improvement', 1), ('service', 1), ('agility', 1), ('enhancing', 1), ('culture', 1), ('organization', 1), ('detail', 1), ('various', 1), ('role', 1), ('technology', 1), ('management', 1), ('supply', 1), ('insight', 1), ('reality', 1), ('human', 1), ('including', 1), ('range', 1), ('best', 1), ('worst', 1), ('manager', 1)]
[('map', 3), ('web', 2), ('design', 2), ('mobile', 2), ('written', 1), ('basic', 1), ('understanding', 1), ('making', 1), ('without', 1), ('knowledge', 1), ('textbook', 1), ('explains', 1), ('create', 1), ('effective', 1), ('interaction', 1), ('animation', 1), ('layout', 1), ('put', 1), ('online', 1), ('platform', 1), ('concept', 1), ('driven', 1), ('product', 1), ('free', 1), ('reference', 1), ('emphasizes', 1), ('cartographic', 1), ('principle', 1)]
[('game', 5), ('writing', 3), ('special', 2), ('book', 1), ('written', 1), ('edited', 1), ('member', 1), ('international', 1), ('developer', 1), ('association', 1), ('igda', 1), ('interest', 1), ('group', 1), ('follows', 1), ('acclaimed', 1), ('professional', 1), ('technique', 1), ('video', 1), ('deliver', 1), ('practical', 1), ('advice', 1), ('seasoned', 1), ('veteran', 1), ('challenge', 1), ('first', 1), ('person', 1), ('shooter', 1), ('fps', 1), ('role', 1), ('playing', 1)]
[('handbook', 3), ('student', 2), ('discrete', 2), ('mathematics', 2), ('duck', 2), ('review', 2), ('example', 2), ('reference', 1), ('supplemental', 1), ('learning', 1), ('srrsleh', 1), ('mirror', 1), ('content', 1), ('author', 1), ('popular', 1), ('textbook', 1), ('dmwd', 1), ('provides', 1), ('key', 1), ('material', 1), ('illustrative', 1), ('new', 1), ('problem', 1), ('accompanying', 1), ('soluti', 1)]
[('cryptography', 2), ('edition', 2), ('used', 1), ('texbook', 1), ('introductory', 1), ('course', 1), ('mathematics', 1), ('computer', 1), ('science', 1), ('third', 1), ('build', 1), ('upon', 1), ('previous', 1), ('offering', 1), ('several', 1), ('new', 1), ('section', 1), ('topic', 1), ('exercise', 1), ('author', 1), ('present', 1), ('core', 1), ('principle', 1), ('modern', 1), ('emphasis', 1), ('formal', 1), ('definition', 1), ('rigorous', 1), ('proof', 1), ('security', 1)]
[('map', 4), ('book', 2), ('combinatorial', 2), ('geometric', 2), ('gather', 1), ('important', 1), ('idea', 1), ('related', 1), ('explains', 1), ('applied', 1), ('modeling', 1), ('image', 1), ('processing', 1), ('focus', 1), ('subclass', 1), ('gmaps', 1), ('present', 1), ('data', 1), ('structure', 1), ('operation', 1), ('algorithm', 1), ('useful', 1), ('handling', 1), ('subdivided', 1), ('object', 1)]
[('algorithm', 4), ('book', 2), ('isosurface', 2), ('work', 1), ('represents', 1), ('first', 1), ('focus', 1), ('basic', 1), ('construction', 1), ('give', 1), ('rigorous', 1), ('mathematical', 1), ('perspective', 1), ('result', 1), ('color', 1), ('throughout', 1), ('cover', 1), ('marching', 1), ('cube', 1), ('variant', 1), ('dual', 1), ('contouring', 1), ('multilinear', 1), ('interpolation', 1), ('multiresolution', 1)]
[('edition', 2), ('building', 1), ('unique', 1), ('feature', 1), ('made', 1), ('first', 1), ('bestseller', 1), ('second', 1), ('includes', 1), ('additional', 1), ('solved', 1), ('problem', 1), ('web', 1), ('access', 1), ('large', 1), ('collection', 1), ('matlab', 1), ('script', 1), ('highlighted', 1), ('throughout', 1), ('text', 1), ('book', 1), ('offer', 1), ('expanded', 1), ('coverage', 1), ('audio', 1), ('engineering', 1), ('transducer', 1), ('sensor', 1), ('networking', 1), ('technology', 1)]
[('text', 2), ('richly', 1), ('illustrated', 1), ('color', 1), ('bestselling', 1), ('provides', 1), ('clear', 1), ('rigorous', 1), ('description', 1), ('powerful', 1), ('analysis', 1), ('technique', 1), ('algorithm', 1), ('mining', 1), ('interpreting', 1), ('biological', 1), ('information', 1), ('omitting', 1), ('tedious', 1), ('detail', 1), ('heavy', 1), ('formalism', 1), ('cryptic', 1), ('notation', 1), ('take', 1), ('hand', 1), ('example', 1), ('based', 1), ('approach', 1), ('explains', 1), ('basic', 1), ('micr', 1)]
[('bestselling', 1), ('classic', 1), ('textbook', 1), ('continues', 1), ('provide', 1), ('complete', 1), ('semester', 1), ('introduction', 1), ('mathematical', 1), ('logic', 1), ('sixth', 1), ('edition', 1), ('incorporates', 1), ('recent', 1), ('work', 1), ('godel', 1), ('second', 1), ('incompleteness', 1), ('theorem', 1), ('appendix', 1), ('consistency', 1), ('proof', 1), ('first', 1), ('order', 1), ('arithmetic', 1), ('offer', 1), ('historical', 1), ('perspective', 1), ('many', 1), ('new', 1), ('exercise', 1), ('varying', 1)]
[('graphic', 2), ('code', 2), ('full', 1), ('practical', 1), ('tool', 1), ('trick', 1), ('color', 1), ('book', 1), ('help', 1), ('new', 1), ('programmer', 1), ('learn', 1), ('concept', 1), ('technique', 1), ('used', 1), ('produce', 1), ('appealing', 1), ('start', 1), ('basic', 1), ('move', 1), ('topic', 1), ('pertaining', 1), ('motion', 1), ('depth', 1), ('describes', 1), ('advanced', 1), ('sample', 1), ('text', 1), ('online', 1), ('allow', 1), ('reader', 1), ('see', 1), ('particular', 1), ('line', 1)]
[('visual', 3), ('perception', 3), ('underwater', 3), ('control', 1), ('robot', 1), ('cover', 1), ('theory', 1), ('application', 1), ('aquatic', 1), ('robotics', 1), ('within', 1), ('framework', 1), ('operation', 1), ('image', 1), ('restoration', 1), ('binocular', 1), ('measurement', 1), ('object', 1), ('detection', 1), ('addressed', 1), ('specifically', 1), ('book', 1), ('includes', 1), ('adversarial', 1), ('critic', 1)]
[('organization', 2), ('many', 1), ('poor', 1), ('collecting', 1), ('data', 1), ('either', 1), ('software', 1), ('project', 1), ('baseline', 1), ('benchmark', 1), ('study', 1), ('revealed', 1), ('collect', 1), ('actual', 1), ('effort', 1), ('invisible', 1), ('unmeasured', 1)]
[('image', 3), ('feature', 3), ('book', 1), ('emphasizes', 1), ('various', 1), ('pre', 1), ('processing', 1), ('method', 1), ('necessary', 1), ('early', 1), ('extraction', 1), ('leading', 1), ('improved', 1), ('detection', 1), ('local', 1), ('global', 1), ('different', 1), ('approach', 1), ('enrichment', 1), ('improvement', 1), ('included', 1), ('affect', 1), ('analysis', 1), ('depending', 1), ('procedure', 1), ('employed', 1)]
[('improving', 1), ('student', 1), ('ability', 1), ('tackle', 1), ('mathematical', 1), ('problem', 1), ('second', 1), ('edition', 1), ('retains', 1), ('structure', 1), ('predecessor', 1), ('expanding', 1), ('updating', 1), ('content', 1), ('chapter', 1)]
[('many', 2), ('theory', 2), ('comprehensive', 1), ('handbook', 1), ('present', 1), ('hundred', 1), ('classical', 1), ('theorem', 1), ('proof', 1), ('span', 1), ('area', 1), ('including', 1), ('basic', 1), ('equality', 1), ('inequality', 1), ('combinatorics', 1), ('linear', 1), ('algebra', 1), ('calculus', 1), ('trigonometry', 1), ('geometry', 1), ('set', 1), ('game', 1), ('recursion', 1), ('algorithm', 1), ('derives', 1), ('form', 1), ('mathematical', 1), ('induction', 1), ('infinite', 1), ('descent', 1)]
[('computer', 3), ('musical', 2), ('programming', 2), ('concept', 2), ('music', 2), ('creative', 2), ('requiring', 1), ('minimal', 1), ('experience', 1), ('text', 1), ('introduces', 1), ('important', 1), ('skill', 1), ('necessary', 1), ('generate', 1), ('interweaves', 1), ('computing', 1), ('pedagogy', 1), ('activity', 1), ('helping', 1), ('student', 1), ('learn', 1), ('context', 1), ('understand', 1), ('build', 1)]
[('photoshop', 3), ('book', 2), ('provides', 2), ('step', 2), ('clear', 1), ('conversational', 1), ('language', 1), ('using', 1), ('extensive', 1), ('image', 1), ('screenshots', 1), ('depth', 1), ('guidance', 1), ('learning', 1), ('use', 1), ('requiring', 1), ('prior', 1), ('experience', 1), ('first', 1), ('offer', 1), ('beginner', 1), ('tutorial', 1), ('main', 1), ('feature', 1), ('next', 1), ('solution', 1), ('common', 1), ('question', 1), ('asked', 1), ('new', 1)]
[('time', 2), ('chapter', 2), ('step', 2), ('book', 1), ('provides', 1), ('clear', 1), ('interesting', 1), ('easy', 1), ('understand', 1), ('coverage', 1), ('continuous', 1), ('discrete', 1), ('signal', 1), ('system', 1), ('open', 1), ('historical', 1), ('profile', 1), ('career', 1), ('talk', 1), ('followed', 1), ('objective', 1), ('principle', 1), ('presented', 1), ('lucid', 1), ('logical', 1), ('approach', 1), ('author', 1), ('encourage', 1), ('use', 1), ('matlab', 1)]
[('science', 3), ('illustrated', 2), ('guide', 2), ('diagram', 2), ('building', 1), ('graphic', 1), ('communicating', 1), ('visualization', 1), ('textbook', 1), ('practical', 1), ('anyone', 1), ('regardless', 1), ('previous', 1), ('design', 1), ('experience', 1), ('preferred', 1), ('drawing', 1), ('tool', 1), ('interested', 1), ('creating', 1), ('centric', 1), ('explanatory', 1)]
[('game', 2), ('audio', 2), ('level', 2), ('topic', 2), ('volume', 1), ('contains', 1), ('chapter', 1), ('top', 1), ('programmer', 1), ('industry', 1), ('dive', 1), ('subject', 1), ('apply', 1), ('diverse', 1), ('genre', 1), ('low', 1), ('thread', 1), ('safe', 1), ('command', 1), ('buffer', 1), ('high', 1), ('object', 1), ('management', 1), ('music', 1), ('system', 1), ('tool', 1)]
[('user', 3), ('design', 3), ('designer', 2), ('although', 1), ('numerous', 1), ('source', 1), ('document', 1), ('aspect', 1), ('centered', 1), ('reference', 1), ('consider', 1), ('transforms', 1), ('information', 1), ('gathered', 1), ('work', 1), ('effective', 1), ('interface', 1), ('book', 1), ('explains', 1), ('bridge', 1), ('gap', 1), ('group', 1), ('leading', 1), ('expert', 1), ('gui', 1), ('describe', 1), ('method', 1)]
[('data', 4), ('age', 1), ('big', 1), ('able', 1), ('make', 1), ('sense', 1), ('important', 1), ('key', 1), ('success', 1), ('interactive', 1), ('visual', 1), ('analysis', 1), ('advocate', 1), ('synthesis', 1), ('visualization', 1), ('interaction', 1), ('automatic', 1), ('computation', 1), ('facilitate', 1), ('insight', 1), ('generation', 1), ('knowledge', 1), ('crystallization', 1), ('large', 1), ('complex', 1), ('book', 1), ('provides', 1), ('systematic', 1)]
[('behavior', 3), ('algorithm', 2), ('swarm', 1), ('intelligence', 1), ('form', 1), ('nature', 1), ('based', 1), ('optimization', 1), ('main', 1), ('inspiration', 1), ('cooperative', 1), ('animal', 1), ('within', 1), ('specific', 1), ('community', 1), ('described', 1), ('simple', 1), ('individual', 1), ('along', 1), ('mechanism', 1), ('sharing', 1), ('knowledge', 1), ('resulting', 1), ('complex', 1), ('entire', 1)]
[('graph', 3), ('semantic', 2), ('ai', 2), ('knowledge', 2), ('recent', 1), ('combination', 1), ('technology', 1), ('artificial', 1), ('intelligence', 1), ('present', 1), ('new', 1), ('technique', 1), ('build', 1), ('intelligent', 1), ('system', 1), ('identify', 1), ('precise', 1), ('result', 1), ('locates', 1), ('forefront', 1), ('novel', 1), ('development', 1), ('uncovering', 1), ('role', 1), ('machine', 1), ('learning', 1), ('extend', 1), ('mapping', 1)]
[('algebra', 3), ('clifford', 2), ('dual', 2), ('quaternion', 2), ('computer', 2), ('graphic', 2), ('associated', 2), ('emerged', 1), ('recently', 1), ('alternative', 1), ('standard', 1), ('matrix', 1), ('computational', 1), ('framework', 1), ('book', 1), ('present', 1), ('new', 1), ('light', 1), ('accessible', 1), ('geared', 1), ('toward', 1), ('community', 1), ('collecting', 1)]
[('machine', 2), ('learning', 2), ('technique', 2), ('undergone', 1), ('rapid', 1), ('growth', 1), ('diversification', 1), ('practicality', 1), ('repertoire', 1), ('evolved', 1), ('expanded', 1), ('aim', 1), ('book', 1), ('provide', 1), ('broad', 1), ('overview', 1), ('available', 1), ('utilized', 1), ('solving', 1), ('civil', 1), ('engineering', 1), ('problem', 1), ('fundamental', 1), ('theoretical', 1)]
[('linear', 3), ('algebra', 3), ('undergraduate', 2), ('level', 2), ('course', 2), ('many', 1), ('example', 1), ('real', 1), ('world', 1), ('application', 1), ('practical', 1), ('geometry', 1), ('toolbox', 1), ('third', 1), ('edition', 1), ('teach', 1), ('comprehensive', 1), ('geometric', 1), ('algorithmic', 1), ('way', 1), ('designed', 1), ('semester', 1), ('book', 1), ('give', 1), ('instructor', 1), ('option', 1), ('tailoring', 1)]
[('network', 5), ('intrusion', 3), ('detection', 2), ('state', 1), ('art', 1), ('prevention', 1), ('analyzes', 1), ('latest', 1), ('trend', 1), ('issue', 1), ('surrounding', 1), ('system', 1), ('computer', 1), ('especially', 1), ('communication', 1), ('broad', 1), ('scope', 1), ('coverage', 1), ('includes', 1), ('wired', 1), ('wireless', 1), ('mobile', 1), ('next', 1), ('generation', 1), ('converged', 1), ('social', 1), ('presenti', 1)]
[('machine', 4), ('vision', 4), ('area', 2), ('application', 2), ('quality', 2), ('system', 1), ('combine', 1), ('image', 1), ('processing', 1), ('industrial', 1), ('automation', 1), ('primary', 1), ('industry', 1), ('control', 1), ('provides', 1), ('fast', 1), ('economic', 1), ('reliable', 1), ('inspection', 1), ('improves', 1), ('business', 1), ('productivity', 1), ('building', 1)]
[('fluid', 2), ('simulation', 2), ('practical', 1), ('introduction', 1), ('second', 1), ('edition', 1), ('computer', 1), ('graphic', 1), ('show', 1), ('animate', 1), ('fully', 1), ('three', 1), ('dimensional', 1), ('incompressible', 1), ('flow', 1), ('cover', 1), ('aspect', 1), ('mathematics', 1), ('algorithm', 1), ('implementation', 1), ('making', 1), ('revision', 1), ('update', 1), ('reflect', 1), ('change', 1), ('field', 1), ('first', 1)]
[('create', 2), ('developing', 1), ('graphic', 1), ('framework', 1), ('java', 1), ('opengl', 1), ('show', 1), ('software', 1), ('rendering', 1), ('complete', 1), ('three', 1), ('dimensional', 1), ('scene', 1), ('book', 1), ('explains', 1), ('foundational', 1), ('theoretical', 1), ('concept', 1), ('practical', 1), ('programming', 1), ('technique', 1), ('enable', 1), ('animated', 1), ('interactive', 1), ('computer', 1), ('generated', 1), ('world', 1)]
[('designing', 2), ('visualization', 2), ('system', 2), ('many', 2), ('decision', 2), ('constraint', 2), ('complete', 1), ('involves', 1), ('subtle', 1), ('complex', 1), ('real', 1), ('world', 1), ('involve', 1), ('type', 1), ('performance', 1), ('platform', 1), ('dependence', 1), ('available', 1), ('programming', 1), ('language', 1), ('style', 1), ('user', 1), ('interface', 1), ('toolkits', 1), ('input', 1), ('output', 1), ('data', 1), ('format', 1), ('integration', 1), ('wi', 1)]
[('game', 5), ('designer', 4), ('development', 2), ('writer', 2), ('narrative', 1), ('critical', 1), ('digital', 1), ('analog', 1), ('book', 1), ('provides', 1), ('detailed', 1), ('look', 1), ('work', 1), ('perform', 1), ('every', 1), ('day', 1), ('project', 1), ('includes', 1), ('practical', 1), ('advice', 1), ('break', 1), ('industry', 1), ('reader', 1), ('use', 1), ('template', 1)]
[('game', 3), ('successful', 2), ('video', 2), ('ux', 2), ('making', 1), ('hard', 1), ('even', 1), ('received', 1), ('launch', 1), ('fail', 1), ('engage', 1), ('player', 1), ('long', 1), ('term', 1), ('due', 1), ('issue', 1), ('user', 1), ('experience', 1), ('delivering', 1), ('maker', 1), ('fortnite', 1), ('assassin', 1), ('creed', 1), ('invest', 1), ('time', 1), ('money', 1), ('perfecting', 1), ('strategy', 1), ('top', 1)]
[('deep', 3), ('learning', 3), ('dl', 3), ('ml', 3), ('comprehensive', 2), ('book', 2), ('guide', 1), ('provides', 1), ('coverage', 1), ('machine', 1), ('concept', 1), ('sought', 1), ('domain', 1), ('requiring', 1), ('understanding', 1), ('give', 1), ('le', 1), ('enables', 1), ('reader', 1), ('build', 1), ('innovative', 1), ('useful', 1), ('application', 1), ('based', 1), ('starting', 1)]
[('zero', 2), ('trust', 2), ('strategy', 1), ('organization', 1), ('need', 1), ('implement', 1), ('stay', 1), ('ahead', 1), ('cyber', 1), ('threat', 1), ('period', 1), ('industry', 1), ('plus', 1), ('year', 1), ('categorical', 1), ('failure', 1), ('show', 1), ('past', 1), ('approach', 1), ('earnest', 1), ('effort', 1), ('stopped', 1), ('attacker', 1), ('strategically', 1), ('focus', 1), ('systematically', 1), ('remove', 1), ('power', 1), ('initiative', 1)]
[('built', 2), ('environment', 2), ('web', 2), ('digital', 2), ('digitizing', 1), ('rapidly', 1), ('transforming', 1), ('physical', 1), ('world', 1), ('time', 1), ('supplemented', 1), ('fully', 1), ('supported', 1), ('interconnected', 1), ('version', 1), ('often', 1), ('referred', 1), ('twin', 1), ('book', 1), ('show', 1), ('diverse', 1), ('data', 1), ('model', 1), ('technology', 1), ('created', 1), ('used', 1), ('key', 1)]
[('internet', 4), ('service', 2), ('book', 1), ('fifth', 1), ('edition', 1), ('explains', 1), ('computer', 1), ('communicate', 1), ('work', 1), ('offer', 1), ('designed', 1), ('reader', 1), ('strong', 1), ('technical', 1), ('background', 1), ('early', 1), ('chapter', 1), ('clearly', 1), ('explain', 1), ('terminology', 1), ('concept', 1), ('needed', 1), ('understand', 1), ('help', 1)]
[('mathematical', 3), ('principle', 3), ('internet', 3), ('volume', 2), ('set', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('engineering', 1), ('book', 1), ('aim', 1), ('provide', 1), ('foundation', 1), ('upon', 1), ('based', 1), ('instead', 1), ('cover', 1), ('partial', 1), ('panorama', 1), ('key', 1), ('explores', 1)]
[('cloud', 5), ('data', 3), ('computing', 2), ('service', 2), ('center', 2), ('book', 1), ('provides', 1), ('technical', 1), ('description', 1), ('technology', 1), ('covering', 1), ('infrastructure', 1), ('platform', 1), ('address', 1), ('basic', 1), ('operating', 1), ('offered', 1), ('provider', 1), ('carrier', 1), ('role', 1), ('connecting', 1), ('user', 1), ('process', 1), ('interconnecting', 1)]
[('apps', 3), ('native', 2), ('io', 2), ('android', 2), ('web', 2), ('desktop', 2), ('thought', 1), ('creating', 1), ('beautiful', 1), ('blazing', 1), ('fast', 1), ('single', 1), ('codebase', 1), ('dreamt', 1), ('taking', 1), ('without', 1), ('costing', 1), ('fortune', 1), ('pragmatic', 1), ('flutter', 1), ('building', 1), ('cross', 1), ('platform', 1), ('mobile', 1), ('right', 1), ('place', 1), ('start', 1), ('journey', 1)]
[('engine', 3), ('community', 2), ('virtual', 2), ('machine', 2), ('along', 1), ('increasingly', 1), ('important', 1), ('runtime', 1), ('pervasive', 1), ('daily', 1), ('life', 1), ('computing', 1), ('strong', 1), ('demand', 1), ('software', 1), ('solid', 1), ('presentation', 1), ('design', 1), ('implementation', 1), ('modern', 1), ('including', 1), ('java', 1), ('javascript', 1), ('android', 1), ('execution', 1), ('expects', 1), ('see', 1)]
[('group', 2), ('teach', 2), ('hundred', 1), ('grassroots', 1), ('sprung', 1), ('around', 1), ('world', 1), ('programming', 1), ('web', 1), ('design', 1), ('robotics', 1), ('skill', 1), ('outside', 1), ('traditional', 1), ('classroom', 1), ('exist', 1), ('learn', 1), ('thing', 1), ('ironically', 1), ('founder', 1), ('instructor', 1), ('often', 1), ('teaching', 1), ('better', 1)]
[('edition', 2), ('electrical', 2), ('engineering', 2), ('handbook', 2), ('field', 2), ('spanning', 1), ('decade', 1), ('stand', 1), ('definitive', 1), ('reference', 1), ('multidisciplinary', 1), ('knowledge', 1), ('continues', 1), ('grow', 1), ('third', 1), ('expanded', 1), ('set', 1), ('six', 1), ('book', 1), ('carefully', 1), ('focused', 1), ('specialized', 1), ('area', 1)]
[('pharmacy', 3), ('informatics', 2), ('profession', 2), ('applies', 1), ('principle', 1), ('professionemphasizes', 1), ('evidence', 1), ('based', 1), ('practice', 1), ('quality', 1), ('improvement', 1), ('approachesleading', 1), ('way', 1), ('integration', 1), ('information', 1), ('technology', 1), ('healthcare', 1), ('reflects', 1), ('rapid', 1), ('change', 1), ('developed', 1), ('written', 1), ('educator', 1)]
[('signal', 3), ('processing', 3), ('unsupervised', 2), ('channel', 1), ('equalization', 1), ('source', 1), ('separation', 1), ('provides', 1), ('unified', 1), ('systematic', 1), ('synthetic', 1), ('presentation', 1), ('theory', 1), ('always', 1), ('maintaining', 1), ('focus', 1), ('oriented', 1), ('approach', 1), ('book', 1), ('describes', 1), ('subject', 1), ('evolved', 1), ('assumed', 1), ('wider', 1), ('scope', 1), ('cover', 1)]
[('author', 2), ('delaunay', 2), ('mesh', 2), ('surface', 2), ('written', 1), ('forefront', 1), ('modern', 1), ('algorithm', 1), ('research', 1), ('generation', 1), ('demonstrates', 1), ('power', 1), ('versatility', 1), ('meshers', 1), ('tackling', 1), ('complex', 1), ('geometric', 1), ('domain', 1), ('ranging', 1), ('polyhedron', 1), ('internal', 1), ('boundary', 1), ('piecewise', 1), ('smooth', 1), ('covering', 1), ('volume', 1), ('fully', 1), ('explain', 1), ('thes', 1)]
[('design', 3), ('combinatorial', 2), ('theory', 2), ('area', 2), ('fastest', 1), ('growing', 1), ('modern', 1), ('mathematics', 1), ('focusing', 1), ('major', 1), ('part', 1), ('subject', 1), ('introduction', 1), ('second', 1), ('edition', 1), ('provides', 1), ('solid', 1), ('foundation', 1), ('classical', 1), ('contemporary', 1), ('based', 1), ('application', 1), ('variety', 1), ('field', 1)]
[('time', 2), ('carefully', 1), ('coordinated', 1), ('reliable', 1), ('accurate', 1), ('synchronization', 1), ('vital', 1), ('wide', 1), ('spectrum', 1), ('field', 1), ('air', 1), ('ground', 1), ('traffic', 1), ('control', 1), ('buying', 1), ('selling', 1), ('good', 1), ('service', 1), ('tv', 1), ('network', 1), ('programming', 1), ('ill', 1), ('gotten', 1), ('even', 1), ('lead', 1), ('unimaginable', 1), ('cause', 1), ('dns', 1), ('cache', 1), ('expire', 1), ('leaving', 1), ('entire', 1), ('internet', 1), ('implode', 1), ('root', 1)]
[('dependability', 4), ('software', 3), ('engineer', 2), ('computer', 2), ('system', 2), ('fundamental', 1), ('dependable', 1), ('computing', 1), ('present', 1), ('essential', 1), ('element', 1), ('book', 1), ('describes', 1), ('comprehensive', 1), ('engineering', 1), ('process', 1), ('explains', 1), ('role', 1), ('reader', 1), ('learn', 1), ('matterswhat', 1), ('mean', 1)]
[('structural', 3), ('structure', 2), ('beauty', 1), ('protein', 1), ('mathematics', 1), ('behind', 1), ('bioinformaticsproviding', 1), ('framework', 1), ('semester', 1), ('undergraduate', 1), ('course', 1), ('bioinformatics', 1), ('algorithmic', 1), ('approach', 1), ('show', 1), ('apply', 1), ('key', 1), ('algorithm', 1), ('solve', 1), ('problem', 1), ('related', 1), ('macromolecular', 1), ('help', 1), ('student', 1), ('go', 1), ('study', 1), ('biolog', 1)]
[('theory', 3), ('generating', 2), ('function', 2), ('important', 2), ('combinatorics', 2), ('mathematics', 2), ('tool', 1), ('enumerative', 1), ('bridge', 1), ('discrete', 1), ('continuous', 1), ('analysis', 1), ('numerous', 1), ('application', 1), ('especially', 1), ('probability', 1), ('statistic', 1), ('markov', 1), ('chain', 1), ('number', 1)]
[('mode', 4), ('language', 3), ('access', 2), ('real', 2), ('protected', 2), ('assembly', 2), ('program', 2), ('apply', 1), ('oop', 1), ('concept', 1), ('interface', 1), ('high', 1), ('level', 1), ('achieve', 1), ('direct', 1), ('hardware', 1), ('manipulation', 1), ('memory', 1), ('explore', 1), ('archite', 1)]
[('book', 1), ('cover', 1), ('planning', 1), ('design', 1), ('implementation', 1), ('hybrid', 1), ('fiber', 1), ('optic', 1), ('coaxial', 1), ('hfc', 1), ('broadband', 1), ('network', 1), ('school', 1), ('university', 1), ('hospital', 1), ('factory', 1), ('office', 1), ('whether', 1), ('single', 1), ('building', 1), ('multiple', 1), ('campus', 1), ('within', 1), ('next', 1), ('yea', 1)]
[('design', 4), ('software', 3), ('pattern', 3), ('apply', 2), ('engineering', 1), ('computer', 1), ('science', 1), ('student', 1), ('need', 1), ('resource', 1), ('explains', 1), ('enterprise', 1), ('level', 1), ('allowing', 1), ('implement', 1), ('system', 1), ('high', 1), ('stability', 1), ('quality', 1), ('architecture', 1), ('java', 1), ('detailed', 1), ('explanation', 1), ('develop', 1)]
[('game', 4), ('development', 2), ('making', 1), ('intensive', 1), ('process', 1), ('planned', 1), ('accurately', 1), ('easily', 1), ('run', 1), ('budget', 1), ('use', 1), ('procedural', 1), ('generation', 1), ('design', 1), ('help', 1), ('intricate', 1), ('multifarious', 1), ('aspect', 1), ('thus', 1), ('facilitating', 1), ('cost', 1), ('reduction', 1), ('form', 1), ('enables', 1), ('create', 1), ('play', 1), ('area', 1), ('object', 1), ('story', 1)]
[('mattesi', 2), ('force', 2), ('drawing', 2), ('human', 2), ('different', 2), ('body', 2), ('newest', 1), ('book', 1), ('michael', 1), ('series', 1), ('take', 1), ('movement', 1), ('next', 1), ('level', 1), ('anatomy', 1), ('explores', 1), ('facet', 1), ('motion', 1), ('opposed', 1), ('memorization', 1), ('technique', 1), ('stress', 1), ('function', 1), ('part', 1), ('gravity', 1), ('relative', 1), ('pose', 1), ('affect', 1), ('aesthetic', 1)]
[('student', 2), ('easy', 1), ('use', 1), ('classroom', 1), ('tested', 1), ('textbook', 1), ('cover', 1), ('programming', 1), ('language', 1), ('computer', 1), ('science', 1), ('designed', 1), ('compulsory', 1), ('fundamental', 1), ('course', 1), ('present', 1), ('theory', 1), ('principle', 1), ('exercise', 1), ('example', 1), ('progressive', 1), ('difficulty', 1), ('aid', 1), ('understanding', 1), ('aspect', 1), ('peculiarity', 1)]
[('statistic', 3), ('directional', 2), ('modern', 1), ('collect', 1), ('important', 1), ('advance', 1), ('methodology', 1), ('theory', 1), ('last', 1), ('decade', 1), ('provides', 1), ('detailed', 1), ('overview', 1), ('analysis', 1), ('recent', 1), ('result', 1), ('help', 1), ('researcher', 1), ('practitioner', 1), ('knowledge', 1), ('multivariate', 1), ('eas', 1), ('reading', 1), ('mandatory', 1), ('field', 1)]
[('volume', 1), ('existing', 1), ('biography', 1), ('america', 1), ('greatest', 1), ('influential', 1), ('cartoonist', 1), ('winsor', 1), ('mccay', 1), ('universally', 1), ('acknowledged', 1), ('first', 1), ('master', 1), ('comic', 1), ('strip', 1), ('animated', 1), ('cartoon', 1), ('although', 1), ('invented', 1), ('others', 1), ('genre', 1), ('developed', 1), ('enduring', 1), ('popular', 1), ('art', 1), ('highest', 1), ('imagination', 1)]
[('book', 2), ('programming', 2), ('aim', 1), ('capture', 1), ('fundamental', 1), ('computer', 1), ('without', 1), ('tying', 1), ('topic', 1), ('specific', 1), ('language', 1), ('best', 1), ('author', 1), ('knowledge', 1), ('market', 1)]
[('system', 2), ('modelling', 2), ('microbial', 2), ('community', 2), ('computational', 2), ('level', 1), ('theory', 1), ('practice', 1), ('introduces', 1), ('various', 1), ('aspect', 1), ('present', 1), ('detailed', 1), ('overview', 1), ('method', 1), ('developed', 1), ('area', 1), ('book', 1), ('aimed', 1), ('researcher', 1), ('field', 1), ('biology', 1)]
[('book', 1), ('author', 1), ('assembled', 1), ('best', 1), ('technique', 1), ('variety', 1), ('source', 1), ('establishing', 1), ('benchmark', 1), ('field', 1), ('statistical', 1), ('computing', 1), ('mathematics', 1), ('computation', 1), ('text', 1), ('highly', 1), ('readable', 1), ('illustrated', 1), ('example', 1), ('reader', 1), ('intends', 1), ('take', 1), ('hand', 1), ('designing', 1), ('regression', 1), ('multivariate', 1)]
[('programming', 3), ('python', 2), ('student', 2), ('book', 2), ('introduction', 1), ('written', 1), ('beginner', 1), ('field', 1), ('computer', 1), ('present', 1), ('intuitive', 1), ('approach', 1), ('concept', 1), ('differs', 1), ('traditional', 1), ('text', 1), ('philosophy', 1), ('overall', 1), ('focus', 1), ('level', 1), ('activity', 1), ('development', 1)]
[('data', 2), ('emerging', 2), ('source', 2), ('book', 2), ('publishing', 2), ('open', 1), ('access', 1), ('cutting', 1), ('edge', 1), ('scholarship', 1), ('concise', 1), ('provides', 1), ('guidance', 1), ('generating', 1), ('research', 1), ('idea', 1), ('result', 1), ('young', 1), ('researcher', 1), ('established', 1), ('scholar', 1), ('use', 1), ('upgrade', 1), ('skill', 1), ('respect', 1), ('analysis', 1), ('even', 1), ('post', 1), ('promotion', 1)]
[('professional', 2), ('video', 2), ('game', 2), ('writing', 2), ('new', 2), ('guide', 2), ('second', 1), ('edition', 1), ('technique', 1), ('updated', 1), ('chapter', 1), ('author', 1), ('still', 1), ('nonsense', 1), ('craft', 1), ('text', 1), ('cover', 1), ('story', 1), ('narrative', 1), ('element', 1), ('address', 1), ('dialogue', 1), ('documentation', 1), ('strategy', 1), ('seasoned', 1)]
[('edition', 3), ('revised', 1), ('breadth', 1), ('depth', 1), ('coverage', 1), ('first', 1), ('information', 1), ('technology', 1), ('introduction', 1), ('today', 1), ('digital', 1), ('world', 1), ('introduces', 1), ('undergraduate', 1), ('student', 1), ('wide', 1), ('variety', 1), ('concept', 1), ('encounter', 1), ('throughout', 1), ('study', 1), ('career', 1), ('feature', 1), ('include', 1), ('introductory', 1), ('system', 1)]
[('dpdk', 3), ('practical', 2), ('data', 2), ('packet', 2), ('processing', 2), ('book', 1), ('brings', 1), ('together', 1), ('insight', 1), ('experience', 1), ('experienced', 1), ('plane', 1), ('development', 1), ('kit', 1), ('technical', 1), ('expert', 1), ('detailing', 1), ('trend', 1), ('hardware', 1), ('acceleration', 1), ('virtualization', 1), ('application', 1), ('field', 1), ('sdn', 1), ('nfv', 1), ('network', 1)]
[('combinatorial', 2), ('search', 2), ('topic', 2), ('textbook', 1), ('thoroughly', 1), ('outline', 1), ('algorithm', 1), ('generation', 1), ('enumeration', 1), ('include', 1), ('backtracking', 1), ('heuristic', 1), ('method', 1), ('applied', 1), ('various', 1), ('structure', 1), ('combination', 1), ('permutation', 1), ('graph', 1), ('design', 1), ('many', 1), ('classical', 1), ('area', 1), ('covered', 1), ('new', 1), ('research', 1), ('included', 1)]
[('game', 4), ('step', 3), ('book', 2), ('unity', 2), ('teach', 1), ('beginner', 1), ('aspiring', 1), ('developer', 1), ('develop', 1), ('thousand', 1), ('commercial', 1), ('built', 1), ('reader', 1), ('learn', 1), ('complete', 1), ('process', 1), ('development', 1), ('theory', 1), ('behind', 1), ('fully', 1), ('explained', 1), ('contains', 1), ('numerous', 1), ('color', 1), ('illustration', 1), ('access', 1)]
[('search', 5), ('ps', 3), ('google', 2), ('engine', 2), ('programmable', 1), ('previously', 1), ('called', 1), ('custom', 1), ('provide', 1), ('opportunity', 1), ('unavailable', 1), ('tool', 1), ('advanced', 1), ('setting', 1), ('operator', 1), ('supported', 1), ('regular', 1), ('possible', 1), ('perform', 1), ('filtered', 1), ('within', 1), ('part', 1), ('web', 1)]
[('search', 4), ('engine', 4), ('optimization', 3), ('marketing', 3), ('web', 2), ('recipe', 1), ('success', 1), ('digital', 1), ('analyzes', 1), ('traffic', 1), ('online', 1), ('promotion', 1), ('includes', 1), ('careful', 1), ('analysis', 1), ('nuance', 1), ('semantic', 1), ('seo', 1), ('practical', 1), ('set', 1), ('reader', 1), ('put', 1)]
[('deep', 2), ('learning', 2), ('framework', 2), ('metaprogramming', 2), ('developer', 2), ('using', 1), ('implementation', 1), ('example', 1), ('template', 1), ('practice', 1), ('explains', 1), ('application', 1), ('relatively', 1), ('large', 1), ('project', 1), ('emphasizes', 1), ('way', 1), ('optimize', 1), ('system', 1), ('performance', 1), ('book', 1), ('suitable', 1), ('basic', 1), ('knowledge', 1)]
[('real', 3), ('time', 3), ('multicore', 2), ('embedded', 2), ('make', 2), ('application', 2), ('theory', 2), ('proliferation', 1), ('processor', 1), ('market', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('cyber', 1), ('physical', 1), ('system', 1), ('cps', 1), ('developing', 1), ('increasingly', 1), ('difficult', 1), ('underlying', 1), ('possible', 1), ('influence', 1), ('design', 1), ('operating', 1)]
[('industry', 2), ('reality', 2), ('human', 2), ('revolution', 1), ('changing', 1), ('world', 1), ('around', 1), ('artificial', 1), ('intelligence', 1), ('machine', 1), ('learning', 1), ('automation', 1), ('robotics', 1), ('big', 1), ('data', 1), ('internet', 1), ('thing', 1), ('augmented', 1), ('virtual', 1), ('creativity', 1), ('tool', 1), ('improved', 1), ('collaboration', 1), ('seen', 1), ('smart', 1), ('system', 1), ('merges', 1), ('critical', 1)]
[('software', 3), ('edition', 2), ('testing', 2), ('updated', 1), ('reorganized', 1), ('fifth', 1), ('craftsman', 1), ('approach', 1), ('continues', 1), ('valuable', 1), ('reference', 1), ('tester', 1), ('developer', 1), ('engineer', 1), ('applying', 1), ('strong', 1), ('mathematics', 1), ('content', 1), ('previous', 1), ('coherent', 1), ('treatment', 1), ('responding', 1), ('instructor', 1), ('student', 1), ('survey', 1), ('input', 1)]
[('application', 4), ('artificial', 2), ('intelligence', 2), ('technology', 2), ('challenge', 2), ('invaluable', 1), ('resource', 1), ('reader', 1), ('explore', 1), ('utilization', 1), ('underlying', 1), ('different', 1), ('area', 1), ('using', 1), ('series', 1), ('present', 1), ('future', 1), ('indoor', 1), ('outdoor', 1), ('security', 1), ('graphic', 1)]
[('edge', 3), ('computing', 3), ('text', 2), ('integration', 2), ('reference', 1), ('present', 1), ('state', 1), ('art', 1), ('primitive', 1), ('device', 1), ('simulator', 1), ('application', 1), ('healthcare', 1), ('based', 1), ('case', 1), ('study', 1), ('provides', 1), ('blockchain', 1), ('system', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('cloud', 1), ('facilitate', 1), ('reader', 1), ('setup', 1)]
[('business', 3), ('marketing', 3), ('analytics', 2), ('application', 2), ('big', 1), ('data', 1), ('explores', 1), ('concept', 1), ('related', 1), ('future', 1), ('research', 1), ('direction', 1), ('examines', 1), ('emerging', 1), ('field', 1), ('extended', 1), ('performance', 1), ('management', 1), ('decision', 1), ('making', 1), ('investment', 1), ('create', 1), ('value', 1)]
[('intelligence', 3), ('school', 3), ('ai', 3), ('artificial', 2), ('teacher', 2), ('realistically', 1), ('use', 1), ('hat', 1), ('best', 1), ('done', 1), ('human', 1), ('v', 1), ('bring', 1), ('strength', 1), ('together', 1), ('look', 1), ('ready', 1), ('help', 1), ('headteachers', 1), ('understand', 1), ('enough', 1)]
[('organisation', 3), ('seem', 1), ('expend', 1), ('energy', 1), ('firefighting', 1), ('dealing', 1), ('incident', 1), ('arise', 1), ('fixing', 1), ('patching', 1), ('breakage', 1), ('restarting', 1), ('computer', 1), ('seen', 1), ('standard', 1), ('method', 1), ('resolve', 1), ('many', 1), ('issue', 1), ('perhaps', 1), ('best', 1), ('way', 1), ('identify', 1), ('whether', 1), ('understands', 1), ('problem', 1), ('management', 1)]
[('requirement', 2), ('engineering', 2), ('software', 2), ('tool', 2), ('solid', 1), ('increasingly', 1), ('recognized', 1), ('key', 1), ('improved', 1), ('time', 1), ('budget', 1), ('delivery', 1), ('system', 1), ('project', 1), ('new', 1), ('emerging', 1), ('empowering', 1), ('practicing', 1), ('engineer', 1), ('improve', 1), ('habit', 1), ('usually', 1), ('easy', 1), ('use', 1), ('without', 1), ('significant', 1)]
[('digital', 3), ('blockchain', 2), ('healthcare', 2), ('book', 1), ('health', 1), ('transformation', 1), ('artificial', 1), ('intelligence', 1), ('cover', 1), ('global', 1), ('revolution', 1), ('field', 1), ('sector', 1), ('population', 1), ('overcoming', 1), ('covid', 1), ('period', 1), ('need', 1), ('establish', 1), ('intelligent', 1), ('system', 1), ('using', 1), ('various', 1), ('emerging', 1), ('technology', 1)]
[('eeg', 5), ('signal', 3), ('processing', 3), ('brain', 1), ('computer', 1), ('interface', 1), ('discus', 1), ('electroencephalogram', 1), ('using', 1), ('effective', 1), ('methodology', 1), ('algorithm', 1), ('book', 1), ('provides', 1), ('basic', 1), ('introduction', 1), ('classification', 1), ('different', 1), ('component', 1), ('present', 1), ('help', 1), ('reader', 1), ('understand', 1), ('scope', 1)]
[('game', 3), ('sex', 2), ('hoping', 1), ('add', 1), ('steam', 1), ('next', 1), ('book', 1), ('practical', 1), ('guide', 1), ('provides', 1), ('foundational', 1), ('tool', 1), ('needed', 1), ('write', 1), ('design', 1), ('create', 1), ('healthy', 1), ('sexual', 1), ('content', 1), ('video', 1), ('way', 1), ('narratively', 1), ('compelling', 1), ('varied', 1), ('hot', 1), ('challenging', 1), ('assumption', 1), ('superfluous', 1)]
[('data', 3), ('big', 2), ('power', 2), ('midst', 1), ('fourth', 1), ('industrial', 1), ('revolution', 1), ('weighed', 1), ('gold', 1), ('placing', 1), ('enormous', 1), ('hand', 1), ('scientist', 1), ('modern', 1), ('ai', 1), ('alchemist', 1), ('come', 1), ('greater', 1), ('responsibility', 1), ('book', 1), ('seek', 1), ('shape', 1), ('practical', 1), ('diverse', 1), ('inclusive', 1), ('way', 1), ('ethical', 1), ('compass', 1), ('entrusted', 1)]
[('ai', 3), ('scientific', 3), ('discovery', 3), ('technology', 2), ('support', 2), ('provides', 1), ('accessible', 1), ('introduction', 1), ('wide', 1), ('ranging', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('research', 1), ('across', 1), ('full', 1), ('breadth', 1), ('discipline', 1), ('science', 1), ('multiple', 1), ('way', 1), ('literature', 1), ('management', 1), ('synthesis', 1)]
[('data', 3), ('excel', 2), ('tool', 2), ('book', 1), ('close', 1), ('gap', 1), ('think', 1), ('achieve', 1), ('past', 1), ('year', 1), ('recognition', 1), ('importance', 1), ('effectively', 1), ('visualizing', 1), ('led', 1), ('explosion', 1), ('analysis', 1), ('visualization', 1), ('software', 1), ('many', 1), ('microsoft', 1), ('continues', 1), ('workhorse', 1)]
[('information', 2), ('game', 2), ('augmented', 1), ('reality', 1), ('ar', 1), ('blending', 1), ('digital', 1), ('real', 1), ('world', 1), ('environment', 1), ('common', 1), ('example', 1), ('seen', 1), ('televised', 1), ('football', 1), ('digitally', 1), ('overlaid', 1), ('field', 1), ('player', 1), ('move', 1)]
[('online', 3), ('social', 3), ('network', 2), ('human', 2), ('cognitive', 1), ('constraint', 1), ('facebook', 1), ('twitter', 1), ('provides', 1), ('new', 1), ('insight', 1), ('structural', 1), ('property', 1), ('personal', 1), ('mechanism', 1), ('underpinning', 1), ('behavior', 1), ('availability', 1)]
[('oceb', 2), ('fundamental', 2), ('certification', 1), ('guide', 1), ('second', 1), ('edition', 1), ('updated', 1), ('cover', 1), ('new', 1), ('version', 1), ('bpmn', 1), ('standard', 1), ('delivers', 1), ('expert', 1), ('insight', 1), ('bpm', 1), ('developer', 1), ('exam', 1), ('offering', 1), ('full', 1), ('coverage', 1)]
[('information', 3), ('security', 2), ('program', 2), ('building', 1), ('practical', 1), ('provides', 1), ('user', 1), ('strategic', 1), ('view', 1), ('build', 1), ('aligns', 1), ('business', 1), ('objective', 1), ('provided', 1), ('enables', 1), ('executive', 1), ('management', 1), ('manager', 1)]
[('new', 1), ('textbook', 1), ('signal', 1), ('system', 1), ('provides', 1), ('pedagogically', 1), ('rich', 1), ('approach', 1), ('commonly', 1), ('mathematically', 1), ('dry', 1), ('subject', 1), ('feature', 1), ('historical', 1), ('note', 1), ('highlighted', 1), ('common', 1), ('mistake', 1), ('application', 1), ('control', 1), ('communication', 1)]
[('security', 3), ('intelligence', 2), ('led', 2), ('understand', 1), ('justify', 1), ('implement', 1), ('new', 1), ('approach', 1), ('concise', 1), ('review', 1), ('concept', 1), ('protecting', 1), ('business', 1), ('including', 1), ('information', 1), ('intellectual', 1), ('property', 1), ('physical', 1)]
[('numerical', 2), ('method', 2), ('assuming', 1), ('prior', 1), ('background', 1), ('linear', 1), ('algebra', 1), ('real', 1), ('analysis', 1), ('introduction', 1), ('matlab', 1), ('programming', 1), ('engineer', 1), ('enables', 1), ('develop', 1), ('good', 1), ('computational', 1), ('problem', 1), ('solving', 1), ('technique', 1), ('use', 1)]
[('data', 3), ('steward', 1), ('organization', 1), ('backbone', 1), ('successful', 1), ('governance', 1), ('implementation', 1), ('work', 1), ('make', 1), ('trusted', 1), ('dependable', 1), ('high', 1), ('quality', 1), ('publication', 1), ('first', 1), ('edition', 1), ('critical', 1), ('new', 1)]
[('cyber', 2), ('security', 2), ('overview', 2), ('threat', 2), ('ceo', 1), ('managment', 1), ('concise', 1), ('posed', 1), ('organization', 1), ('network', 1), ('ubiquity', 1), ('usb', 1), ('flash', 1), ('drive', 1), ('used', 1), ('storage', 1), ('device', 1), ('book', 1), ('provide', 1)]
[('user', 2), ('practical', 2), ('quantifying', 1), ('experience', 1), ('statistic', 1), ('research', 1), ('second', 1), ('edition', 1), ('provides', 1), ('practitioner', 1), ('researcher', 1), ('information', 1), ('need', 1), ('confidently', 1), ('quantify', 1), ('qualify', 1), ('justify', 1), ('data', 1), ('book', 1), ('present', 1)]
[('real', 2), ('time', 2), ('system', 2), ('embedded', 2), ('software', 2), ('book', 1), ('integrates', 1), ('new', 1), ('idea', 1), ('topic', 1), ('engineering', 1), ('give', 1), ('complete', 1), ('picture', 1), ('whole', 1), ('process', 1), ('developing', 1), ('application', 1), ('gain', 1)]
[('usability', 2), ('step', 2), ('testing', 1), ('essential', 1), ('present', 1), ('practical', 1), ('approach', 1), ('learning', 1), ('entire', 1), ('process', 1), ('planning', 1), ('conducting', 1), ('test', 1), ('explains', 1), ('analyze', 1), ('apply', 1), ('result', 1), ('confronted', 1), ('budgetary', 1)]
[('deep', 2), ('learning', 2), ('medical', 2), ('imaging', 2), ('model', 1), ('explains', 1), ('concept', 1), ('dl', 1), ('importance', 1), ('healthcare', 1), ('using', 1), ('different', 1), ('case', 1), ('study', 1), ('cytology', 1), ('image', 1), ('analysis', 1), ('coronavirus', 1), ('covid', 1), ('prediction', 1)]
[('know', 1), ('weapon', 1), ('used', 1), ('protect', 1), ('cyber', 1), ('warfare', 1), ('tool', 1), ('use', 1), ('minimize', 1), ('impact', 1), ('gather', 1), ('intelligence', 1), ('allow', 1), ('configure', 1), ('system', 1), ('ward', 1), ('attack', 1), ('online', 1), ('security', 1), ('privacy', 1), ('issue', 1)]
[('core', 2), ('network', 2), ('powering', 1), ('digitalization', 1), ('provides', 1), ('overview', 1), ('architecture', 1), ('giving', 1), ('description', 1), ('cloud', 1), ('technology', 1), ('key', 1), ('concept', 1), ('gpp', 1), ('rel', 1), ('specification', 1), ('written', 1), ('author', 1)]
[('computer', 2), ('network', 2), ('example', 2), ('system', 1), ('approach', 1), ('fifth', 1), ('edition', 1), ('explores', 1), ('key', 1), ('principle', 1), ('networking', 1), ('drawn', 1), ('real', 1), ('world', 1), ('protocol', 1), ('design', 1), ('using', 1), ('internet', 1), ('primary', 1), ('best', 1), ('selling', 1)]
[('security', 2), ('technology', 2), ('book', 1), ('serf', 1), ('practitioner', 1), ('guide', 1), ('today', 1), ('crucial', 1), ('issue', 1), ('cyber', 1), ('infrastructure', 1), ('offer', 1), ('depth', 1), ('coverage', 1), ('theory', 1), ('practice', 1), ('relate', 1), ('established', 1)]
[('opencl', 2), ('heterogeneous', 1), ('computing', 1), ('teach', 1), ('parallel', 1), ('programming', 1), ('complex', 1), ('system', 1), ('include', 1), ('variety', 1), ('device', 1), ('architecture', 1), ('multi', 1), ('core', 1), ('cpu', 1), ('gpus', 1), ('fully', 1), ('integrated', 1), ('accelerated', 1), ('processing', 1), ('unit', 1), ('apus', 1)]
[('database', 2), ('system', 2), ('provide', 2), ('time', 1), ('relational', 1), ('theory', 1), ('provides', 1), ('depth', 1), ('description', 1), ('temporal', 1), ('special', 1), ('facility', 1), ('storing', 1), ('querying', 1), ('updating', 1), ('historical', 1), ('future', 1), ('data', 1), ('traditionally', 1), ('management', 1), ('little', 1)]
[('method', 3), ('user', 2), ('research', 2), ('new', 1), ('completely', 1), ('updated', 1), ('edition', 1), ('comprehensive', 1), ('easy', 1), ('guide', 1), ('learn', 1), ('many', 1), ('distinct', 1), ('pre', 1), ('post', 1), ('consideration', 1), ('recruiting', 1), ('facilitating', 1)]
[('research', 3), ('tactile', 2), ('sensing', 2), ('skill', 2), ('learning', 2), ('dexterous', 2), ('line', 2), ('robotic', 1), ('manipulation', 1), ('focus', 1), ('cross', 1), ('disciplinary', 1), ('groundbreaking', 1), ('idea', 1), ('three', 1), ('control', 1), ('book', 1)]
[('cybersecurity', 2), ('connected', 2), ('medical', 2), ('device', 2), ('patient', 2), ('biggest', 1), ('challenge', 1), ('facing', 1), ('healthcare', 1), ('today', 1), ('compromise', 1), ('result', 1), ('severe', 1), ('consequence', 1), ('health', 1), ('data', 1)]
[('nsm', 3), ('network', 2), ('applied', 1), ('security', 1), ('monitoring', 1), ('essential', 1), ('guide', 1), ('becoming', 1), ('analyst', 1), ('ground', 1), ('book', 1), ('take', 1), ('fundamental', 1), ('approach', 1), ('complete', 1), ('dozen', 1), ('real', 1), ('world', 1), ('example', 1), ('teach', 1), ('key', 1), ('concept', 1)]
[('programming', 2), ('parallel', 2), ('computing', 2), ('core', 2), ('multicore', 1), ('gpu', 1), ('integrated', 1), ('approach', 1), ('second', 1), ('edition', 1), ('offer', 1), ('broad', 1), ('coverage', 1), ('key', 1), ('tool', 1), ('essential', 1), ('multi', 1), ('cpu', 1), ('many', 1), ('massively', 1), ('using', 1), ('thread', 1), ('openmp', 1), ('mpi', 1), ('cuda', 1)]
[('parallel', 2), ('introduction', 1), ('programming', 1), ('second', 1), ('edition', 1), ('present', 1), ('tried', 1), ('true', 1), ('tutorial', 1), ('approach', 1), ('show', 1), ('student', 1), ('develop', 1), ('effective', 1), ('program', 1), ('mpi', 1), ('pthreads', 1), ('openmp', 1), ('first', 1), ('undergraduate', 1), ('text', 1), ('directly', 1), ('address', 1)]
[('data', 2), ('machine', 2), ('learning', 2), ('technique', 2), ('science', 1), ('analytics', 1), ('explains', 1), ('principle', 1), ('mining', 1), ('accentuates', 1), ('importance', 1), ('applied', 1), ('multivariate', 1), ('modeling', 1), ('book', 1), ('emphasizes', 1), ('fundamental', 1)]
[('engineering', 3), ('agile', 2), ('system', 2), ('present', 1), ('vision', 1), ('precise', 1), ('specification', 1), ('requirement', 1), ('structure', 1), ('behavior', 1), ('meet', 1), ('larger', 1), ('concern', 1), ('safety', 1), ('security', 1), ('reliability', 1), ('performance', 1), ('context', 1)]
[('calculation', 3), ('soil', 2), ('mechanic', 2), ('principle', 2), ('method', 1), ('provides', 1), ('expert', 1), ('insight', 1), ('nature', 1), ('use', 1), ('problem', 1), ('solving', 1), ('technique', 1), ('informed', 1), ('reference', 1), ('begin', 1), ('basic', 1)]
[('professional', 3), ('cell', 2), ('phone', 2), ('location', 2), ('evidence', 2), ('legal', 1), ('understanding', 1), ('warrant', 1), ('courtroom', 1), ('guide', 1), ('plain', 1), ('language', 1), ('digital', 1), ('forensics', 1), ('attorney', 1), ('law', 1), ('enforcement', 1)]
[('volume', 2), ('computer', 2), ('digital', 1), ('twin', 1), ('paradigm', 1), ('smarter', 1), ('system', 1), ('environment', 1), ('industry', 1), ('use', 1), ('case', 1), ('latest', 1), ('advance', 1), ('series', 1), ('present', 1), ('detailed', 1), ('coverage', 1), ('new', 1), ('advancement', 1), ('hardware', 1), ('software', 1), ('theory', 1)]
[('machine', 4), ('learning', 3), ('thinking', 1), ('hardware', 1), ('implementation', 1), ('cover', 1), ('theory', 1), ('application', 1), ('neuromorphic', 1), ('computing', 1), ('neural', 1), ('network', 1), ('first', 1), ('book', 1), ('focus', 1), ('accelerator', 1)]
[('undergraduate', 2), ('course', 2), ('theory', 2), ('innovative', 1), ('textbook', 1), ('present', 1), ('key', 1), ('foundational', 1), ('concept', 1), ('semester', 1), ('computation', 1), ('offer', 1), ('accessible', 1), ('motivational', 1), ('material', 1), ('available', 1), ('computer', 1), ('class', 1)]
[('essential', 2), ('matlab', 2), ('engineer', 1), ('scientist', 1), ('eighth', 1), ('edition', 1), ('provides', 1), ('concise', 1), ('balanced', 1), ('overview', 1), ('functionality', 1), ('covering', 1), ('fundamental', 1), ('application', 1), ('illustrated', 1), ('throughout', 1), ('featuring', 1), ('complete', 1), ('coverage', 1)]
[('career', 2), ('book', 1), ('offer', 1), ('new', 1), ('approach', 1), ('introductory', 1), ('scientific', 1), ('computing', 1), ('aim', 1), ('make', 1), ('student', 1), ('comfortable', 1), ('using', 1), ('computer', 1), ('science', 1), ('provide', 1), ('computational', 1), ('tool', 1), ('knowledge', 1), ('need', 1), ('throughout', 1), ('college', 1), ('professional', 1), ('show', 1), ('piece', 1), ('work', 1), ('together', 1), ('rubin', 1), ('landau', 1)]
[('quest', 2), ('machine', 2), ('world', 2), ('chess', 2), ('riveting', 1), ('construct', 1), ('take', 1), ('greatest', 1), ('human', 1), ('player', 1), ('told', 1), ('built', 1), ('million', 1), ('worldwide', 1), ('heard', 1), ('news', 1), ('stunning', 1), ('victory', 1), ('defeated', 1), ('defending', 1), ('champion', 1), ('garry', 1), ('kasparov', 1), ('behind', 1), ('deep', 1), ('blue', 1), ('tell', 1), ('inside', 1), ('story', 1), ('create', 1)]
[('mail', 2), ('way', 1), ('manage', 1), ('affect', 1), ('efficiency', 1), ('work', 1), ('learn', 1), ('make', 1), ('optimum', 1), ('use', 1), ('software', 1), ('help', 1), ('function', 1), ('organized', 1), ('manner', 1)]
[('tiktok', 2), ('idea', 2), ('life', 1), ('short', 1), ('tiktoks', 1), ('waiting', 1), ('release', 1), ('creativity', 1), ('making', 1), ('video', 1), ('go', 1), ('viral', 1), ('quirky', 1), ('grab', 1), ('attention', 1), ('little', 1), ('second', 1), ('whether', 1)]
[('police', 3), ('ethical', 2), ('designed', 1), ('administrator', 1), ('level', 1), ('book', 1), ('present', 1), ('proven', 1), ('strategy', 1), ('prevent', 1), ('corruption', 1), ('maintain', 1), ('culture', 1), ('policing', 1), ('written', 1), ('leading', 1), ('international', 1), ('authority', 1), ('text', 1), ('describes', 1), ('diverse', 1), ('type', 1), ('misconduct', 1), ('impact', 1), ('community', 1), ('establishes', 1)]
[('written', 1), ('expert', 1), ('conduct', 1), ('training', 1), ('consulting', 1), ('worldwide', 1), ('text', 1), ('enables', 1), ('police', 1), ('public', 1), ('safety', 1), ('agency', 1), ('easily', 1), ('case', 1), ('court', 1)]
[('privacy', 2), ('help', 2), ('trade', 2), ('offs', 2), ('digital', 1), ('data', 1), ('collection', 1), ('surveillance', 1), ('pervasive', 1), ('protect', 1), ('without', 1), ('need', 1), ('understand', 1), ('new', 1), ('technology', 1), ('benefit', 1), ('provide', 1), ('require', 1), ('convenience', 1), ('softened', 1), ('behavior', 1)]
[('today', 2), ('nearly', 1), ('century', 1), ('ago', 1), ('famed', 1), ('educator', 1), ('john', 1), ('dewey', 1), ('said', 1), ('teach', 1), ('student', 1), ('taught', 1), ('yesterday', 1), ('rob', 1), ('tomorrow', 1), ('wisdom', 1), ('resonates', 1), ('strongly', 1), ('maxim', 1), ('underlies', 1), ('insightful', 1), ('look', 1)]
[('bestselling', 1), ('cyberpunk', 1), ('author', 1), ('produced', 1), ('far', 1), ('stylish', 1), ('report', 1), ('computer', 1), ('outlaw', 1), ('culture', 1), ('steven', 1), ('levy', 1), ('hacker', 1), ('publisher', 1), ('weekly', 1), ('bruce', 1), ('sterling', 1), ('delf', 1), ('world', 1), ('high', 1), ('tech', 1), ('crime', 1), ('punishment', 1), ('first', 1), ('book', 1), ('explore', 1), ('cyberspace', 1), ('breach', 1), ('threaten', 1), ('national', 1), ('security', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('book', 3), ('text', 2), ('processing', 2), ('pattern', 2), ('matching', 2), ('implement', 2), ('using', 2), ('gawk', 2), ('simplified', 1), ('master', 1), ('fastest', 1), ('elegant', 1), ('big', 1), ('data', 1), ('munging', 1), ('language', 1), ('advanced', 1), ('feature', 1), ('awk', 1), ('debugging', 1), ('inter', 1), ('process', 1), ('communication', 1), ('developer', 1)]
[('book', 2), ('approach', 2), ('seven', 1), ('expert', 1), ('logic', 1), ('semantics', 1), ('examine', 1), ('reason', 1), ('using', 1), ('intensional', 1), ('operator', 1), ('variable', 1), ('binding', 1), ('vice', 1), ('versa', 1), ('originally', 1), ('published', 1), ('special', 1), ('issue', 1), ('inquiry', 1)]
[('step', 2), ('result', 2), ('integral', 1), ('guide', 1), ('postgraduate', 1), ('researcher', 1), ('forge', 1), ('strong', 1), ('methodology', 1), ('studying', 1), ('respective', 1), ('phenomenon', 1), ('interest', 1), ('providing', 1), ('instruction', 1), ('run', 1), ('analysis', 1), ('important', 1), ('output', 1), ('clearly', 1), ('present', 1), ('final', 1)]
[('perspective', 2), ('investigation', 2), ('trafficking', 2), ('approaching', 1), ('topic', 1), ('law', 1), ('enforcement', 1), ('volume', 1), ('provides', 1), ('unprecedented', 1), ('look', 1), ('human', 1), ('america', 1), ('beginning', 1), ('historical', 1), ('sociological', 1), ('psychological', 1), ('book', 1), ('discus', 1), ('authority', 1), ('best', 1), ('conduct', 1), ('review', 1), ('federal', 1), ('agency', 1)]
[('system', 2), ('beginning', 1), ('historical', 1), ('backdrop', 1), ('describing', 1), ('dawn', 1), ('age', 1), ('global', 1), ('terrorism', 1), ('continuing', 1), ('present', 1), ('time', 1), ('volume', 1), ('demonstrates', 1), ('broad', 1), ('social', 1), ('political', 1), ('context', 1), ('underlying', 1), ('aviation', 1), ('security', 1), ('place', 1), ('september', 1), ('th', 1), ('evolved', 1), ('response', 1), ('attack', 1)]
[('preference', 3), ('agent', 2), ('matching', 1), ('problem', 1), ('around', 1), ('arise', 1), ('seek', 1), ('allocated', 1), ('another', 1), ('basis', 1), ('ranked', 1), ('potential', 1), ('outcome', 1), ('efficient', 1), ('algorithm', 1), ('needed', 1), ('producing', 1), ('matchings', 1), ('optimise', 1), ('satisfaction', 1), ('according', 1), ('list', 1), ('recent', 1), ('year', 1)]
[('algorithm', 4), ('book', 2), ('term', 1), ('stringology', 1), ('popular', 1), ('nickname', 1), ('text', 1), ('string', 1), ('deal', 1), ('basic', 1), ('area', 1), ('viewed', 1), ('algorithmic', 1), ('jewel', 1), ('deserve', 1), ('reader', 1), ('friendly', 1), ('presentation', 1), ('main', 1), ('aim', 1), ('present', 1), ('several', 1), ('celebrated', 1), ('simple', 1)]
[('understanding', 2), ('computer', 2), ('graphic', 2), ('mathematics', 1), ('vital', 1), ('volume', 1), ('help', 1), ('reader', 1), ('gain', 1), ('presenting', 1), ('introductory', 1), ('advanced', 1), ('topic', 1), ('field', 1), ('mathematical', 1), ('description', 1), ('derivation', 1), ('offering', 1), ('balance', 1), ('theory', 1), ('application', 1), ('code', 1), ('underlying', 1), ('numerical', 1), ('method', 1)]
[('application', 2), ('book', 1), ('present', 1), ('concise', 1), ('exposition', 1), ('modern', 1), ('mathematical', 1), ('concept', 1), ('model', 1), ('method', 1), ('computer', 1), ('graphic', 1), ('vision', 1), ('machine', 1), ('learning', 1), ('compendium', 1), ('organized', 1), ('four', 1), ('part', 1), ('algebra', 1), ('geometry', 1), ('topology', 1), ('feature', 1), ('unique', 1), ('treatment', 1), ('tensor', 1), ('manifold', 1), ('topic', 1), ('make', 1), ('easier', 1)]
[('data', 2), ('computational', 2), ('increasing', 1), ('availability', 1), ('omics', 1), ('mounting', 1), ('evidence', 1), ('usefulness', 1), ('approach', 1), ('tackle', 1), ('multi', 1), ('level', 1), ('problem', 1), ('bioinformatics', 1), ('biomedical', 1), ('research', 1), ('post', 1), ('genomics', 1), ('era', 1), ('biology', 1), ('playing', 1), ('increasingly', 1), ('important', 1), ('role', 1), ('paving', 1), ('way', 1), ('basis', 1), ('patient', 1), ('centric', 1)]
[('scientific', 2), ('cybersecurity', 2), ('field', 2), ('principle', 2), ('deploying', 1), ('method', 1), ('today', 1), ('common', 1), ('sense', 1), ('approach', 1), ('tough', 1), ('topic', 1), ('publication', 1), ('emphasize', 1), ('necessary', 1), ('guide', 1), ('uncover', 1), ('book', 1), ('give', 1), ('reader', 1), ('practical', 1), ('tool', 1)]
[('course', 2), ('textbook', 1), ('originated', 1), ('simulation', 1), ('modeling', 1), ('computation', 1), ('biophysics', 1), ('taught', 1), ('university', 1), ('chicago', 1), ('student', 1), ('typically', 1), ('came', 1), ('wide', 1), ('range', 1), ('background', 1), ('including', 1), ('biology', 1), ('physic', 1), ('chemistry', 1), ('biochemistry', 1), ('mathematics', 1), ('intentionally', 1), ('adapted', 1), ('senior', 1)]
[('language', 3), ('wolfram', 2), ('programming', 1), ('mathematica', 1), ('used', 1), ('increasingly', 1), ('scientist', 1), ('due', 1), ('ease', 1), ('learning', 1), ('user', 1), ('friendliness', 1), ('book', 1), ('focus', 1), ('application', 1), ('applied', 1), ('mathematics', 1), ('physic', 1), ('chemistry', 1), ('topic', 1), ('discussed', 1), ('broad', 1), ('comprehensive', 1), ('differential', 1), ('equation', 1), ('special', 1)]
[('many', 1), ('user', 1), ('internet', 1), ('aware', 1), ('bot', 1), ('automated', 1), ('program', 1), ('work', 1), ('behind', 1), ('scene', 1), ('come', 1), ('search', 1), ('suggestion', 1), ('check', 1), ('weather', 1), ('filter', 1), ('email', 1), ('clean', 1), ('wikipedia', 1), ('entry', 1), ('recently', 1), ('new', 1), ('software', 1), ('robot', 1), ('making', 1), ('presence', 1), ('felt', 1), ('social', 1), ('medium', 1), ('site', 1), ('facebook', 1), ('twitter', 1), ('socialbot', 1), ('unlike', 1)]
[('modern', 2), ('start', 1), ('developing', 1), ('single', 1), ('page', 1), ('application', 1), ('spa', 1), ('architecture', 1), ('book', 1), ('show', 1), ('create', 1), ('design', 1), ('publish', 1), ('native', 1), ('web', 1), ('component', 1), ('ultimately', 1), ('allowing', 1), ('piece', 1), ('together', 1), ('element', 1), ('javascript', 1)]
[('end', 3), ('front', 2), ('harness', 1), ('power', 1), ('jakarta', 1), ('ee', 1), ('build', 1), ('sturdy', 1), ('back', 1), ('applying', 1), ('vue', 1), ('j', 1), ('demand', 1), ('modern', 1), ('high', 1), ('performing', 1), ('enterprise', 1), ('web', 1), ('application', 1), ('growing', 1), ('swiftly', 1), ('basic', 1), ('html', 1), ('longer', 1), ('enough', 1), ('meet', 1), ('customer', 1)]
[('exam', 2), ('microsoft', 2), ('improve', 1), ('odds', 1), ('passing', 1), ('highly', 1), ('sought', 1), ('developer', 1), ('working', 1), ('cloud', 1), ('platform', 1), ('az', 1), ('developing', 1), ('solution', 1), ('azure', 1), ('book', 1), ('guide', 1), ('practical', 1), ('example', 1)]
[('take', 2), ('deep', 1), ('dive', 1), ('architectural', 1), ('approach', 1), ('best', 1), ('practice', 1), ('key', 1), ('consideration', 1), ('needed', 1), ('comprehend', 1), ('evaluate', 1), ('design', 1), ('efficient', 1), ('scalable', 1), ('sustainable', 1), ('salesforce', 1), ('based', 1), ('solution', 1), ('book', 1), ('comprehensive', 1), ('look', 1)]
[('security', 4), ('use', 1), ('red', 1), ('hat', 1), ('tool', 1), ('establish', 1), ('set', 1), ('strategy', 1), ('work', 1), ('together', 1), ('help', 1), ('protect', 1), ('digital', 1), ('data', 1), ('begin', 1), ('basic', 1), ('concept', 1), ('devops', 1), ('topic', 1), ('cia', 1), ('triage', 1), ('standard', 1)]
[('game', 2), ('programming', 2), ('swift', 2), ('concept', 1), ('explained', 1), ('prior', 1), ('knowledge', 1), ('language', 1), ('required', 1), ('nbsp', 1), ('image', 1), ('audio', 1), ('provided', 1), ('professional', 1), ('clean', 1), ('william', 1), ('fahle', 1), ('computing', 1), ('review', 1)]
[('lt', 8), ('gt', 8), ('ul', 4), ('li', 2), ('div', 1), ('create', 1), ('execute', 1), ('modify', 1), ('share', 1), ('machine', 1), ('learning', 1), ('application', 1), ('python', 1), ('tensorflow', 1), ('jupyter', 1), ('notebook', 1), ('environment', 1), ('amp', 1), ('nbsp', 1), ('book', 1), ('break', 1)]
[('nbsp', 5), ('book', 2), ('concise', 1), ('guide', 1), ('ansible', 1), ('simple', 1), ('way', 1), ('automate', 1), ('apps', 1), ('infrastructure', 1), ('le', 1), ('page', 1), ('take', 1), ('knowing', 1), ('nothing', 1), ('configuration', 1), ('management', 1), ('understanding', 1), ('use', 1)]
[('mongodb', 3), ('third', 2), ('edition', 2), ('version', 2), ('definitive', 1), ('guide', 1), ('updated', 1), ('includes', 1), ('latest', 1), ('feature', 1), ('including', 1), ('aggregation', 1), ('framework', 1), ('introduced', 1), ('hashed', 1), ('index', 1)]
[('venture', 1), ('capital', 1), ('industrial', 1), ('resource', 1), ('increasingly', 1), ('poured', 1), ('rapid', 1), ('advance', 1), ('artificial', 1), ('intelligence', 1), ('actual', 1), ('usage', 1), ('success', 1), ('ai', 1), ('depends', 1), ('satisfactory', 1), ('experience', 1), ('user', 1), ('ux', 1), ('play', 1), ('significant', 1), ('role', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('software', 2), ('write', 1), ('maintainable', 1), ('extensible', 1), ('durable', 1), ('modern', 1), ('book', 1), ('updated', 1), ('recently', 1), ('released', 1), ('standard', 1), ('every', 1), ('developer', 1), ('architect', 1), ('team', 1), ('leader', 1), ('interested', 1)]
[('design', 2), ('learn', 1), ('build', 1), ('system', 1), ('framed', 1), ('within', 1), ('context', 1), ('specific', 1), ('business', 1), ('need', 1), ('book', 1), ('guide', 1), ('process', 1), ('defining', 1), ('language', 1), ('understood', 1), ('across', 1), ('team', 1), ('establishing', 1), ('communication', 1)]
[('use', 1), ('depth', 1), ('guide', 1), ('correctly', 1), ('design', 1), ('benchmark', 1), ('measure', 1), ('key', 1), ('performance', 1), ('metric', 1), ('net', 1), ('application', 1), ('analyze', 1), ('result', 1), ('book', 1), ('present', 1), ('dozen', 1), ('case', 1), ('study', 1), ('help', 1), ('understand', 1), ('complicated', 1), ('benchmarking', 1), ('topic', 1), ('nbsp', 1)]
[('essential', 1), ('classic', 1), ('provides', 1), ('comprehensive', 1), ('foundation', 1), ('programming', 1), ('language', 1), ('framework', 1), ('life', 1), ('th', 1), ('edition', 1), ('find', 1), ('latest', 1), ('net', 1), ('core', 1), ('feature', 1), ('along', 1), ('new', 1), ('chapter', 1), ('microsoft', 1)]
[('swift', 2), ('tdd', 2), ('leverage', 1), ('practice', 1), ('effective', 1), ('efficient', 1), ('test', 1), ('driven', 1), ('development', 1), ('methodology', 1), ('software', 1), ('testing', 1), ('evergreen', 1), ('programming', 1), ('concept', 1), ('yet', 1), ('developer', 1), ('widely', 1), ('adopted', 1), ('needed', 1), ('clear', 1), ('roadmap', 1), ('learn', 1)]
[('java', 2), ('reference', 2), ('quickly', 1), ('gain', 1), ('insight', 1), ('necessary', 1), ('address', 1), ('multitude', 1), ('coding', 1), ('challenge', 1), ('using', 1), ('succinct', 1), ('guide', 1), ('quick', 1), ('syntax', 1), ('third', 1), ('edition', 1), ('short', 1), ('focused', 1), ('code', 1), ('example', 1), ('help', 1), ('learn', 1), ('master', 1), ('various', 1), ('existing', 1)]
[('threat', 2), ('understand', 1), ('process', 1), ('setting', 1), ('successful', 1), ('cyber', 1), ('intelligence', 1), ('cti', 1), ('practice', 1), ('within', 1), ('established', 1), ('security', 1), ('team', 1), ('book', 1), ('show', 1), ('information', 1), ('collected', 1), ('evaluated', 1), ('analyzed', 1), ('critical', 1), ('component', 1)]
[('programming', 2), ('step', 2), ('started', 1), ('using', 1), ('language', 1), ('based', 1), ('author', 1), ('year', 1), ('experience', 1), ('teaching', 1), ('beginner', 1), ('book', 1), ('provides', 1), ('introduction', 1), ('principle', 1), ('rather', 1), ('think', 1), ('programmer', 1)]
[('design', 3), ('pattern', 3), ('apply', 1), ('latest', 1), ('edition', 1), ('standard', 1), ('implementation', 1), ('covering', 1), ('traditional', 1), ('book', 1), ('flesh', 1), ('new', 1), ('approach', 1), ('useful', 1), ('modern', 1), ('developer', 1), ('author', 1)]
[('data', 4), ('pipeline', 2), ('end', 2), ('build', 1), ('scalable', 1), ('etl', 1), ('cloud', 1), ('using', 1), ('azure', 1), ('factory', 1), ('mapping', 1), ('flow', 1), ('chapter', 1), ('book', 1), ('address', 1), ('different', 1), ('aspect', 1), ('includes', 1), ('repeatable', 1), ('design', 1), ('pattern', 1), ('based', 1), ('best', 1), ('practice', 1)]
[('business', 2), ('technology', 2), ('book', 2), ('enhance', 1), ('technical', 1), ('skill', 1), ('better', 1), ('manage', 1), ('organization', 1), ('ecosystem', 1), ('aim', 1), ('explain', 1), ('align', 1), ('landscape', 1), ('service', 1), ('company', 1), ('operating', 1), ('model', 1), ('begin', 1), ('exploring', 1)]
[('apache', 2), ('selling', 2), ('definitive', 1), ('guide', 1), ('third', 1), ('edition', 1), ('new', 1), ('revision', 1), ('peter', 1), ('wainwright', 1), ('best', 1), ('actually', 1), ('highest', 1), ('book', 1), ('configuration', 1), ('administration', 1), ('provides', 1), ('multiple', 1), ('method', 1), ('example', 1), ('solve', 1)]
[('develop', 2), ('using', 2), ('flask', 2), ('restful', 1), ('web', 1), ('service', 1), ('micro', 1), ('framework', 1), ('integrate', 1), ('mysql', 1), ('use', 1), ('deploy', 1), ('manage', 1), ('rest', 1), ('apis', 1), ('easy', 1), ('understand', 1), ('python', 1), ('code', 1), ('solve', 1), ('problem', 1), ('choice', 1), ('library', 1), ('learn', 1)]
[('index', 2), ('take', 1), ('deep', 1), ('dive', 1), ('perhaps', 1), ('single', 1), ('important', 1), ('facet', 1), ('good', 1), ('performance', 1), ('best', 1), ('use', 1), ('recent', 1), ('update', 1), ('sql', 1), ('server', 1), ('made', 1), ('possible', 1), ('create', 1), ('situation', 1), ('past', 1), ('prevented', 1)]
[('example', 2), ('step', 2), ('learn', 1), ('use', 1), ('bulma', 1), ('html', 1), ('file', 1), ('applying', 1), ('easy', 1), ('understand', 1), ('practical', 1), ('create', 1), ('responsive', 1), ('mobile', 1), ('first', 1), ('website', 1), ('featuring', 1), ('nbsp', 1), ('approach', 1), ('book', 1), ('encourages', 1), ('modify', 1), ('code', 1), ('review', 1)]
[('customer', 2), ('experience', 2), ('sharepoint', 2), ('online', 2), ('build', 1), ('enrich', 1), ('transform', 1), ('using', 1), ('book', 1), ('discus', 1), ('different', 1), ('approach', 1), ('use', 1), ('enhance', 1), ('including', 1), ('digital', 1), ('portal', 1), ('enterprise', 1), ('content', 1), ('management', 1)]
[('learn', 2), ('web', 2), ('apps', 2), ('use', 1), ('mern', 1), ('stack', 1), ('mongodb', 1), ('express', 1), ('j', 1), ('react', 1), ('node', 1), ('build', 1), ('five', 1), ('fully', 1), ('functioning', 1), ('dating', 1), ('video', 1), ('sharing', 1), ('messaging', 1), ('social', 1), ('medium', 1), ('creating', 1), ('key', 1), ('development', 1), ('concept', 1), ('including', 1)]
[('programming', 2), ('language', 2), ('nbsp', 2), ('java', 2), ('depth', 1), ('introduction', 1), ('go', 1), ('associated', 1), ('standard', 1), ('runtime', 1), ('library', 1), ('book', 1), ('targeted', 1), ('towards', 1), ('programmer', 1), ('already', 1), ('know', 1), ('us', 1), ('knowledge', 1), ('direct', 1)]
[('phishing', 3), ('mitigate', 1), ('danger', 1), ('posed', 1), ('activity', 1), ('common', 1), ('cybercrime', 1), ('carried', 1), ('email', 1), ('attack', 1), ('book', 1), ('detail', 1), ('tool', 1), ('technique', 1), ('protect', 1), ('various', 1), ('communication', 1), ('channel', 1), ('aim', 1), ('fraudulently', 1)]
[('time', 2), ('app', 2), ('io', 2), ('platform', 2), ('know', 1), ('basic', 1), ('swift', 1), ('code', 1), ('flow', 1), ('logic', 1), ('ease', 1), ('first', 1), ('building', 1), ('workable', 1), ('build', 1), ('magical', 1), ('move', 1), ('beyond', 1), ('mastered', 1), ('best', 1), ('selling', 1)]
[('map', 3), ('io', 3), ('work', 1), ('apple', 1), ('google', 1), ('mapbox', 1), ('swift', 1), ('programming', 1), ('guided', 1), ('practical', 1), ('example', 1), ('book', 1), ('cover', 1), ('three', 1), ('framework', 1), ('ensure', 1), ('properly', 1), ('select', 1), ('best', 1), ('suit', 1), ('app', 1), ('need', 1), ('working', 1)]
[('end', 2), ('step', 2), ('rely', 1), ('practical', 1), ('guide', 1), ('cyber', 1), ('safety', 1), ('privacy', 1), ('written', 1), ('expressly', 1), ('non', 1), ('technical', 1), ('audience', 1), ('need', 1), ('protect', 1), ('without', 1), ('judgment', 1), ('little', 1), ('jargon', 1), ('possible', 1)]
[('tensorflow', 3), ('j', 3), ('develop', 1), ('deploy', 1), ('deep', 1), ('learning', 1), ('web', 1), ('apps', 1), ('using', 1), ('library', 1), ('part', 1), ('bigger', 1), ('framework', 1), ('named', 1), ('many', 1), ('tool', 1), ('supplement', 1), ('tensorboard', 1), ('ml', 1), ('tfjs', 1), ('vi', 1), ('book', 1), ('cover', 1)]
[('oil', 2), ('gas', 2), ('apply', 1), ('machine', 1), ('deep', 1), ('learning', 1), ('solve', 1), ('challenge', 1), ('industry', 1), ('book', 1), ('begin', 1), ('brief', 1), ('discussion', 1), ('exploration', 1), ('production', 1), ('life', 1), ('cycle', 1), ('context', 1), ('data', 1), ('flow', 1), ('different', 1), ('stage', 1)]
[('learn', 1), ('think', 1), ('apply', 1), ('knowledge', 1), ('practical', 1), ('way', 1), ('tackling', 1), ('cissp', 1), ('exam', 1), ('vastly', 1), ('different', 1), ('simply', 1), ('understanding', 1), ('subject', 1), ('matter', 1), ('even', 1), ('experienced', 1), ('security', 1), ('professional', 1), ('fail', 1), ('question', 1), ('tricky', 1), ('ask', 1)]
[('formatting', 2), ('master', 1), ('syntax', 1), ('working', 1), ('plotting', 1), ('function', 1), ('graphic', 1), ('stats', 1), ('easy', 1), ('reference', 1), ('plot', 1), ('nbsp', 1), ('approach', 1), ('visualizing', 1), ('data', 1), ('toward', 1), ('application', 1), ('ggplot', 1), ('follow', 1), ('structure', 1)]
[('asp', 1), ('net', 1), ('core', 1), ('identity', 1), ('best', 1), ('selling', 1), ('author', 1), ('adam', 1), ('freeman', 1), ('teach', 1), ('developer', 1), ('common', 1), ('authentication', 1), ('user', 1), ('management', 1), ('scenario', 1), ('explains', 1), ('implemented', 1), ('application', 1), ('cover', 1), ('topic', 1), ('clearly', 1), ('concisely', 1)]
[('json', 4), ('beginning', 2), ('definitive', 1), ('guide', 1), ('javascript', 1), ('object', 1), ('notation', 1), ('today', 1), ('standard', 1), ('data', 1), ('formatting', 1), ('web', 1), ('book', 1), ('start', 1), ('basic', 1), ('walk', 1), ('aspect', 1), ('using', 1), ('format', 1), ('cover', 1)]
[('familiarize', 1), ('matlab', 1), ('using', 1), ('concise', 1), ('practical', 1), ('tutorial', 1), ('focused', 1), ('writing', 1), ('code', 1), ('learn', 1), ('concept', 1), ('starting', 1), ('basic', 1), ('book', 1), ('cover', 1), ('array', 1), ('based', 1), ('computing', 1), ('plotting', 1), ('working', 1), ('file', 1), ('numerical', 1), ('computation', 1)]
[('work', 1), ('quickly', 1), ('uniquely', 1), ('succinct', 1), ('visual', 1), ('format', 1), ('used', 1), ('present', 1), ('language', 1), ('whether', 1), ('getting', 1), ('grip', 1), ('first', 1), ('time', 1), ('working', 1), ('deepen', 1), ('understanding', 1), ('find', 1), ('book', 1), ('clear', 1)]
[('java', 3), ('enterprise', 2), ('using', 2), ('development', 2), ('build', 1), ('based', 1), ('application', 1), ('open', 1), ('source', 1), ('eclipse', 1), ('jakarta', 1), ('ee', 1), ('platform', 1), ('feature', 1), ('packed', 1), ('book', 1), ('teach', 1), ('top', 1), ('bottom', 1), ('cover', 1), ('web', 1), ('tier', 1), ('servlets', 1), ('javaserver', 1), ('face', 1), ('jsf', 1)]
[('openshift', 2), ('design', 1), ('architect', 1), ('resilient', 1), ('cluster', 1), ('gain', 1), ('keen', 1), ('understanding', 1), ('hundred', 1), ('project', 1), ('integrated', 1), ('powerful', 1), ('solution', 1), ('many', 1), ('resource', 1), ('available', 1), ('developer', 1), ('book', 1), ('focus', 1), ('nbsp', 1)]
[('microservices', 2), ('using', 2), ('python', 2), ('explore', 1), ('based', 1), ('django', 1), ('framework', 1), ('review', 1), ('benefit', 1), ('drawback', 1), ('book', 1), ('examine', 1), ('look', 1), ('talk', 1), ('crafted', 1), ('programming', 1)]
[('apply', 1), ('machine', 1), ('learning', 1), ('using', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('agriculture', 1), ('telecom', 1), ('energy', 1), ('domain', 1), ('case', 1), ('study', 1), ('book', 1), ('begin', 1), ('covering', 1), ('set', 1), ('software', 1), ('hardware', 1), ('component', 1), ('including', 1), ('various', 1), ('sensor', 1), ('implement', 1)]
[('machine', 2), ('learning', 2), ('access', 1), ('real', 1), ('world', 1), ('documentation', 1), ('example', 1), ('spark', 1), ('platform', 1), ('building', 1), ('large', 1), ('scale', 1), ('enterprise', 1), ('grade', 1), ('application', 1), ('past', 1), ('decade', 1), ('seen', 1), ('astonishing', 1), ('series', 1), ('advance', 1), ('breakthrough', 1)]
[('application', 2), ('go', 1), ('beyond', 1), ('basic', 1), ('build', 1), ('complete', 1), ('using', 1), ('rust', 1), ('programming', 1), ('language', 1), ('nbsp', 1), ('book', 1), ('include', 1), ('high', 1), ('performance', 1), ('web', 1), ('client', 1), ('microcontroller', 1), ('robot', 1), ('example', 1), ('game', 1), ('app', 1), ('run', 1), ('android', 1)]
[('project', 3), ('microsoft', 2), ('learn', 1), ('perspective', 1), ('manager', 1), ('guide', 1), ('training', 1), ('resource', 1), ('reference', 1), ('cover', 1), ('version', 1), ('found', 1), ('suite', 1), ('manual', 1), ('covering', 1)]
[('application', 3), ('oracle', 2), ('book', 1), ('show', 1), ('developer', 1), ('professional', 1), ('build', 1), ('practical', 1), ('non', 1), ('trivial', 1), ('web', 1), ('using', 1), ('rapid', 1), ('development', 1), ('environment', 1), ('express', 1), ('apex', 1), ('third', 1), ('edition', 1), ('revised', 1), ('cover', 1), ('new', 1), ('feature', 1)]
[('discover', 1), ('methodology', 1), ('best', 1), ('practice', 1), ('getting', 1), ('started', 1), ('container', 1), ('service', 1), ('monitoring', 1), ('using', 1), ('prometheus', 1), ('appdynamics', 1), ('dynatrace', 1), ('nbsp', 1), ('book', 1), ('begin', 1), ('basic', 1), ('working', 1), ('containerization', 1), ('microservices', 1)]
[('html', 3), ('dynamic', 2), ('page', 2), ('discover', 1), ('concept', 1), ('creating', 1), ('web', 1), ('python', 1), ('book', 1), ('review', 1), ('several', 1), ('method', 1), ('available', 1), ('serve', 1), ('including', 1), ('cgi', 1), ('ssi', 1), ('django', 1), ('flask', 1), ('nbsp', 1), ('start', 1), ('covering', 1), ('cs', 1), ('general', 1)]
[('create', 1), ('edit', 1), ('sort', 1), ('analyze', 1), ('summarize', 1), ('format', 1), ('data', 1), ('graph', 1), ('excel', 1), ('chock', 1), ('full', 1), ('visuals', 1), ('user', 1), ('friendly', 1), ('instruction', 1), ('reader', 1), ('exercise', 1), ('depth', 1), ('guide', 1), ('make', 1), ('easy', 1), ('bandwagon', 1), ('taking', 1), ('advantage', 1)]
[('nbsp', 4), ('arduino', 3), ('iot', 2), ('develop', 1), ('internet', 1), ('thing', 1), ('project', 1), ('sketch', 1), ('build', 1), ('program', 1), ('book', 1), ('quick', 1), ('reference', 1), ('guide', 1), ('getting', 1), ('started', 1), ('nano', 1), ('popular', 1), ('board', 1), ('learn', 1), ('access', 1)]
[('ruby', 2), ('learn', 1), ('principle', 1), ('behind', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('within', 1), ('chapter', 1), ('create', 1), ('fully', 1), ('functional', 1), ('based', 1), ('application', 1), ('gain', 1), ('basic', 1), ('understanding', 1), ('many', 1), ('ancillary', 1), ('technology', 1), ('database', 1), ('xml', 1), ('web', 1), ('framework', 1)]
[('php', 2), ('scripting', 2), ('pocket', 1), ('reference', 1), ('updated', 1), ('new', 1), ('release', 1), ('condensed', 1), ('code', 1), ('rich', 1), ('syntax', 1), ('handbook', 1), ('language', 1), ('nbsp', 1), ('find', 1), ('technical', 1), ('jargon', 1), ('bloated', 1), ('sample', 1), ('drawn', 1), ('history', 1), ('lesson', 1)]
[('jungle', 1), ('delivering', 1), ('software', 1), ('solution', 1), ('predictable', 1), ('cost', 1), ('time', 1), ('scope', 1), ('quality', 1), ('become', 1), ('complicated', 1), ('developer', 1), ('need', 1), ('account', 1), ('multiple', 1), ('moving', 1), ('target', 1), ('including', 1), ('often', 1), ('avoided', 1), ('always', 1), ('relevant', 1), ('factor', 1)]
[('machine', 3), ('learning', 3), ('model', 2), ('data', 2), ('design', 1), ('develop', 1), ('validate', 1), ('streaming', 1), ('using', 1), ('scikit', 1), ('multiflow', 1), ('framework', 1), ('book', 1), ('quick', 1), ('start', 1), ('guide', 1), ('scientist', 1), ('engineer', 1), ('looking', 1), ('implement', 1)]
[('microsoft', 2), ('power', 2), ('produce', 1), ('high', 1), ('quality', 1), ('visually', 1), ('attractive', 1), ('analysis', 1), ('quickly', 1), ('effectively', 1), ('key', 1), ('bi', 1), ('tool', 1), ('book', 1), ('teach', 1), ('analyst', 1), ('manager', 1), ('user', 1), ('developer', 1), ('harness', 1), ('self', 1), ('service', 1), ('business', 1), ('intelligence', 1)]
[('time', 2), ('book', 1), ('teach', 1), ('practical', 1), ('implementation', 1), ('various', 1), ('concept', 1), ('series', 1), ('analysis', 1), ('modeling', 1), ('python', 1), ('problem', 1), ('solution', 1), ('style', 1), ('recipe', 1), ('starting', 1), ('data', 1), ('reading', 1), ('preprocessing', 1), ('nbsp', 1), ('begin', 1), ('fundamental', 1)]
[('ui', 2), ('develop', 1), ('heavy', 1), ('application', 1), ('easily', 1), ('faster', 1), ('error', 1), ('free', 1), ('based', 1), ('several', 1), ('enhancement', 1), ('swift', 1), ('language', 1), ('swiftui', 1), ('take', 1), ('declarative', 1), ('approach', 1), ('building', 1), ('uis', 1), ('instead', 1), ('imperatively', 1), ('coding', 1), ('book', 1), ('show', 1)]
[('net', 2), ('programming', 2), ('nbsp', 2), ('discover', 1), ('new', 1), ('window', 1), ('book', 1), ('condensed', 1), ('code', 1), ('syntax', 1), ('reference', 1), ('language', 1), ('updated', 1), ('latest', 1), ('feature', 1), ('version', 1), ('review', 1), ('essential', 1)]
[('service', 2), ('oriented', 2), ('architecture', 1), ('fundamental', 1), ('many', 1), ('new', 1), ('application', 1), ('web', 1), ('development', 1), ('social', 1), ('software', 1), ('cloud', 1), ('computing', 1), ('principle', 1), ('applied', 1), ('every', 1), ('aspect', 1), ('enterprise', 1)]
[('burp', 2), ('suite', 2), ('use', 1), ('comprehensive', 1), ('guide', 1), ('learn', 1), ('practical', 1), ('aspect', 1), ('basic', 1), ('advanced', 1), ('topic', 1), ('book', 1), ('go', 1), ('beyond', 1), ('standard', 1), ('owasp', 1), ('top', 1), ('cover', 1), ('security', 1), ('testing', 1), ('apis', 1), ('mobile', 1), ('apps', 1), ('simple', 1)]
[('j', 4), ('express', 3), ('pro', 1), ('reader', 1), ('want', 1), ('quickly', 1), ('speed', 1), ('flexible', 1), ('node', 1), ('framework', 1), ('author', 1), ('azat', 1), ('mardan', 1), ('clearly', 1), ('explains', 1), ('start', 1), ('developing', 1), ('basic', 1), ('hello', 1), ('world', 1), ('delf', 1)]
[('day', 2), ('linux', 2), ('system', 2), ('learn', 1), ('command', 1), ('line', 1), ('trick', 1), ('program', 1), ('hack', 1), ('use', 1), ('user', 1), ('programmer', 1), ('administrator', 1), ('interact', 1), ('digital', 1), ('world', 1), ('go', 1), ('far', 1), ('without', 1), ('interacting', 1), ('nbsp', 1), ('book', 1), ('show', 1)]
[('google', 4), ('developer', 2), ('nbsp', 2), ('analytics', 2), ('tag', 2), ('manager', 2), ('whether', 1), ('marketer', 1), ('development', 1), ('skill', 1), ('full', 1), ('web', 1), ('analyst', 1), ('practical', 1), ('show', 1), ('implement', 1), ('using', 1), ('jumpstart', 1)]
[('data', 2), ('salesforce', 2), ('migrate', 1), ('build', 1), ('low', 1), ('maintenance', 1), ('high', 1), ('performing', 1), ('integration', 1), ('make', 1), ('go', 1), ('place', 1), ('organization', 1), ('customer', 1), ('information', 1), ('company', 1), ('choose', 1), ('roll', 1)]
[('imagemagick', 2), ('definitive', 1), ('guide', 1), ('first', 1), ('book', 1), ('cover', 1), ('comprehensively', 1), ('popular', 1), ('open', 1), ('source', 1), ('software', 1), ('suite', 1), ('creating', 1), ('manipulating', 1), ('image', 1), ('beginner', 1), ('intermediate', 1)]
[('iphone', 2), ('hottest', 1), ('gadget', 1), ('generation', 1), ('success', 1), ('fueled', 1), ('app', 1), ('store', 1), ('apple', 1), ('online', 1), ('marketplace', 1), ('application', 1), ('billion', 1), ('apps', 1), ('downloaded', 1), ('nine', 1), ('month', 1), ('following', 1), ('launch', 1)]
[('take', 1), ('systematic', 1), ('approach', 1), ('identifying', 1), ('intrusion', 1), ('range', 1), ('basic', 1), ('sophisticated', 1), ('using', 1), ('wireshark', 1), ('open', 1), ('source', 1), ('protocol', 1), ('analyzer', 1), ('nbsp', 1), ('book', 1), ('show', 1), ('effectively', 1), ('manipulate', 1), ('monitor', 1), ('different', 1)]
[('problem', 2), ('selenium', 2), ('webdriver', 2), ('solve', 1), ('seleniumwebdriver', 1), ('quick', 1), ('guide', 1), ('automated', 1), ('testing', 1), ('webapplications', 1), ('recipe', 1), ('inc', 1), ('second', 1), ('edition', 1), ('contains', 1), ('hundred', 1), ('solution', 1), ('real', 1), ('world', 1), ('clear', 1)]
[('sqlite', 3), ('book', 2), ('introduction', 2), ('nbsp', 2), ('brief', 1), ('io', 1), ('android', 1), ('developer', 1), ('includes', 1), ('optional', 1), ('sql', 1), ('discussion', 1), ('use', 1), ('chapter', 1), ('devoted', 1), ('using', 1), ('likely', 1)]
[('lean', 3), ('framework', 2), ('development', 2), ('game', 2), ('apply', 1), ('concept', 1), ('software', 1), ('process', 1), ('resistance', 1), ('agile', 1), ('methodology', 1), ('gaming', 1), ('industry', 1), ('often', 1), ('due', 1), ('frustrated', 1), ('attempt', 1), ('use', 1), ('tool', 1)]
[('system', 3), ('mechanical', 2), ('explore', 1), ('complex', 1), ('electronics', 1), ('engineer', 1), ('work', 1), ('together', 1), ('cross', 1), ('functional', 1), ('team', 1), ('using', 1), ('working', 1), ('example', 1), ('book', 1), ('practical', 1), ('guide', 1), ('designing', 1), ('drone', 1), ('design', 1), ('becomes', 1)]
[('assembly', 3), ('program', 2), ('avx', 2), ('starting', 1), ('simple', 1), ('basic', 1), ('way', 1), ('programming', 1), ('end', 1), ('book', 1), ('able', 1), ('write', 1), ('code', 1), ('mix', 1), ('higher', 1), ('level', 1), ('language', 1), ('know', 1), ('lot', 1)]
[('language', 2), ('discover', 1), ('ada', 1), ('programming', 1), ('gently', 1), ('guided', 1), ('various', 1), ('part', 1), ('latest', 1), ('available', 1), ('stable', 1), ('release', 1), ('goal', 1), ('book', 1), ('slowly', 1), ('ease', 1), ('different', 1), ('topic', 1), ('understood', 1)]
[('hand', 1), ('knowledge', 1), ('bert', 1), ('bidirectional', 1), ('encoder', 1), ('representation', 1), ('transformer', 1), ('used', 1), ('develop', 1), ('question', 1), ('answering', 1), ('qa', 1), ('system', 1), ('using', 1), ('natural', 1), ('language', 1), ('processing', 1), ('nlp', 1), ('deep', 1), ('learning', 1), ('book', 1), ('begin', 1), ('overview', 1)]
[('performance', 2), ('mongodb', 2), ('application', 2), ('use', 1), ('fast', 1), ('complete', 1), ('guide', 1), ('optimize', 1), ('database', 1), ('depend', 1), ('able', 1), ('turbo', 1), ('charge', 1), ('provide', 1), ('better', 1), ('experience', 1)]
[('firmware', 3), ('boot', 3), ('solution', 2), ('find', 1), ('right', 1), ('bootloader', 1), ('combination', 1), ('required', 1), ('platform', 1), ('considering', 1), ('security', 1), ('product', 1), ('feature', 1), ('optimized', 1), ('book', 1), ('cover', 1), ('system', 1), ('focusing', 1), ('real', 1), ('world', 1), ('migration', 1)]
[('recommender', 2), ('system', 2), ('learning', 2), ('book', 1), ('teach', 1), ('build', 1), ('machine', 1), ('algorithm', 1), ('using', 1), ('python', 1), ('become', 1), ('essential', 1), ('part', 1), ('every', 1), ('internet', 1), ('based', 1), ('business', 1), ('today', 1), ('start', 1), ('basic', 1), ('concept', 1)]
[('machine', 3), ('learning', 3), ('solution', 2), ('understand', 1), ('apply', 1), ('auto', 1), ('data', 1), ('stream', 1), ('create', 1), ('transactional', 1), ('tml', 1), ('frictionless', 1), ('require', 1), ('minimal', 1), ('human', 1), ('intervention', 1), ('elastic', 1), ('scale', 1)]
[('neural', 3), ('network', 3), ('develop', 1), ('application', 1), ('using', 1), ('java', 1), ('environment', 1), ('learning', 1), ('rule', 1), ('involved', 1), ('processing', 1), ('second', 1), ('edition', 1), ('show', 1), ('manually', 1), ('process', 1), ('first', 1), ('example', 1), ('book', 1), ('cover', 1), ('internals', 1)]
[('quantum', 3), ('computing', 2), ('software', 2), ('developer', 2), ('dive', 1), ('hand', 1), ('introduction', 1), ('microsoft', 1), ('development', 1), ('kit', 1), ('heard', 1), ('mean', 1), ('many', 1)]
[('use', 2), ('data', 2), ('platform', 2), ('search', 2), ('practical', 1), ('guide', 1), ('splunk', 1), ('operational', 1), ('intelligence', 1), ('visualize', 1), ('analyze', 1), ('petabyte', 1), ('scale', 1), ('unstructured', 1), ('machine', 1), ('heart', 1), ('processing', 1), ('language', 1), ('spl', 1), ('tool', 1), ('query', 1)]
[('application', 2), ('help', 2), ('learn', 1), ('build', 1), ('front', 1), ('end', 1), ('ship', 1), ('faster', 1), ('fewer', 1), ('defect', 1), ('many', 1), ('software', 1), ('project', 1), ('fail', 1), ('planned', 1), ('lack', 1), ('organization', 1), ('applying', 1), ('strategy', 1), ('industry', 1)]
[('user', 2), ('interface', 2), ('tame', 1), ('power', 1), ('apple', 1), ('new', 1), ('toolkit', 1), ('swiftui', 1), ('integrate', 1), ('element', 1), ('io', 1), ('come', 1), ('know', 1), ('love', 1), ('button', 1), ('switch', 1), ('picker', 1), ('toolbars', 1), ('slider', 1), ('le', 1), ('effort', 1), ('efficiency', 1)]
[('ai', 4), ('healthcare', 2), ('practical', 1), ('professional', 1), ('nbsp', 1), ('artificial', 1), ('intelligence', 1), ('buzzword', 1), ('sphere', 1), ('today', 1), ('notion', 1), ('actually', 1), ('work', 1), ('often', 1), ('discussed', 1), ('furthermore', 1), ('information', 1)]
[('team', 4), ('successful', 2), ('project', 2), ('learn', 1), ('run', 1), ('big', 1), ('data', 1), ('resource', 1), ('work', 1), ('cost', 1), ('effective', 1), ('book', 1), ('introduces', 1), ('three', 1), ('necessary', 1)]
[('spring', 2), ('quickly', 1), ('productively', 1), ('develop', 1), ('complex', 1), ('application', 1), ('microservices', 1), ('box', 1), ('minimal', 1), ('fuss', 1), ('thing', 1), ('configuration', 1), ('book', 1), ('show', 1), ('fully', 1), ('leverage', 1), ('boot', 1), ('productivity', 1), ('suite', 1), ('tool', 1)]
[('data', 3), ('next', 2), ('generation', 2), ('big', 2), ('utilize', 1), ('practical', 1), ('easy', 1), ('follow', 1), ('guide', 1), ('modernize', 1), ('traditional', 1), ('enterprise', 1), ('warehouse', 1), ('business', 1), ('intelligence', 1), ('environment', 1), ('technology', 1), ('nbsp', 1), ('take', 1), ('holistic', 1), ('approach', 1), ('covering', 1)]
[('arkit', 2), ('io', 2), ('augmented', 2), ('reality', 2), ('explore', 1), ('use', 1), ('create', 1), ('apps', 1), ('learn', 1), ('basic', 1), ('diving', 1), ('specific', 1), ('topic', 1), ('book', 1), ('reveals', 1), ('allows', 1), ('view', 1), ('screen', 1), ('device', 1), ('aim', 1), ('camera', 1)]
[('connection', 2), ('learn', 1), ('set', 1), ('configure', 1), ('network', 1), ('create', 1), ('robust', 1), ('quickly', 1), ('diagnose', 1), ('repair', 1), ('problem', 1), ('something', 1), ('go', 1), ('wrong', 1), ('whatever', 1), ('version', 1), ('window', 1), ('using', 1), ('need', 1), ('stable', 1), ('internet', 1), ('access', 1)]
[('practical', 1), ('hand', 1), ('introduction', 1), ('haskell', 1), ('language', 1), ('library', 1), ('environment', 1), ('functional', 1), ('programming', 1), ('paradigm', 1), ('fast', 1), ('growing', 1), ('importance', 1), ('software', 1), ('industry', 1), ('nbsp', 1), ('book', 1), ('contains', 1), ('excellent', 1), ('coverage', 1)]
[('basic', 2), ('programming', 2), ('easy', 2), ('nbsp', 2), ('running', 1), ('fast', 1), ('using', 1), ('java', 1), ('example', 1), ('language', 1), ('short', 1), ('book', 1), ('get', 1), ('thinking', 1), ('programmer', 1), ('entertaining', 1), ('way', 1), ('modern', 1), ('made', 1), ('teach', 1), ('coding', 1)]
[('react', 2), ('node', 2), ('development', 2), ('explore', 1), ('typescript', 1), ('webpack', 1), ('docker', 1), ('offer', 1), ('individually', 1), ('fit', 1), ('together', 1), ('modern', 1), ('app', 1), ('nbsp', 1), ('popular', 1), ('web', 1), ('tool', 1), ('available', 1), ('today', 1), ('j', 1), ('extremely', 1)]
[('failing', 1), ('consider', 1), ('need', 1), ('different', 1), ('telling', 1), ('welcome', 1), ('app', 1), ('technology', 1), ('whole', 1), ('hyperbole', 1), ('registered', 1)]
[('using', 3), ('create', 2), ('blockchain', 2), ('java', 2), ('step', 2), ('crypto', 1), ('currency', 1), ('implementing', 1), ('technology', 1), ('guide', 1), ('teach', 1), ('user', 1), ('interface', 1), ('fx', 1), ('implement', 1), ('sqlite', 1), ('db', 1), ('jdbc', 1), ('driver', 1), ('introducing', 1)]
[('feature', 2), ('nbsp', 2), ('discover', 1), ('new', 1), ('updated', 1), ('php', 1), ('jit', 1), ('compiler', 1), ('union', 1), ('type', 1), ('attribute', 1), ('code', 1), ('example', 1), ('author', 1), ('includes', 1), ('real', 1), ('life', 1), ('case', 1), ('use', 1), ('explains', 1), ('benefit', 1)]
[('apply', 2), ('serverless', 2), ('computing', 2), ('fundamental', 2), ('basic', 1), ('security', 1), ('new', 1), ('existing', 1), ('project', 1), ('hand', 1), ('guide', 1), ('provides', 1), ('practical', 1), ('example', 1), ('aspect', 1), ('improving', 1), ('code', 1)]
[('office', 3), ('microsoft', 2), ('access', 2), ('learn', 1), ('building', 1), ('powerful', 1), ('database', 1), ('application', 1), ('start', 1), ('finish', 1), ('ship', 1), ('every', 1), ('version', 1), ('home', 1), ('personal', 1), ('edition', 1), ('understand', 1), ('value', 1)]
[('harness', 1), ('untapped', 1), ('potential', 1), ('combining', 1), ('decentralized', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('ability', 1), ('make', 1), ('prediction', 1), ('real', 1), ('world', 1), ('fuzzy', 1), ('data', 1), ('book', 1), ('cover', 1), ('theory', 1), ('behind', 1), ('machine', 1), ('learning', 1), ('model', 1), ('show', 1), ('program', 1)]
[('hcl', 2), ('started', 1), ('programming', 1), ('using', 1), ('hashicorp', 1), ('language', 1), ('nbsp', 1), ('book', 1), ('introduces', 1), ('syntax', 1), ('ecosystem', 1), ('show', 1), ('integrate', 1), ('part', 1), ('overall', 1), ('devops', 1), ('approach', 1), ('next', 1), ('learn', 1)]
[('engineering', 2), ('end', 2), ('implement', 1), ('arduino', 1), ('based', 1), ('design', 1), ('project', 1), ('build', 1), ('debug', 1), ('extend', 1), ('using', 1), ('solid', 1), ('approach', 1), ('second', 1), ('edition', 1), ('expanded', 1), ('provide', 1), ('better', 1), ('understanding', 1), ('process', 1), ('mean', 1)]
[('learn', 1), ('computer', 1), ('vision', 1), ('work', 1), ('augmented', 1), ('reality', 1), ('render', 1), ('digital', 1), ('graphic', 1), ('physical', 1), ('world', 1), ('via', 1), ('iphone', 1), ('camera', 1), ('incorporate', 1), ('technology', 1), ('apps', 1), ('book', 1), ('show', 1), ('take', 1), ('full', 1), ('advantage', 1)]
[('augmented', 2), ('reality', 2), ('embark', 1), ('journey', 1), ('build', 1), ('world', 1), ('book', 1), ('put', 1), ('theory', 1), ('practical', 1), ('application', 1), ('building', 1), ('unique', 1), ('nbsp', 1), ('apps', 1), ('specific', 1), ('chapter', 1), ('topic', 1), ('learn', 1), ('engineer', 1), ('successful', 1), ('designed', 1)]
[('data', 6), ('understand', 1), ('modern', 1), ('fabric', 1), ('mesh', 1), ('concept', 1), ('using', 1), ('ai', 1), ('based', 1), ('self', 1), ('service', 1), ('discovery', 1), ('delivery', 1), ('capability', 1), ('range', 1), ('intelligent', 1), ('integration', 1), ('style', 1), ('automated', 1), ('unified', 1), ('governance', 1), ('designed', 1), ('deliver', 1)]
[('project', 2), ('net', 2), ('machine', 1), ('learning', 1), ('developer', 1), ('show', 1), ('build', 1), ('smarter', 1), ('application', 1), ('learn', 1), ('data', 1), ('using', 1), ('simple', 1), ('algorithm', 1), ('technique', 1), ('applied', 1), ('wide', 1), ('range', 1), ('real', 1), ('world', 1), ('problem', 1), ('rsquo', 1), ('code', 1)]
[('couchbase', 3), ('pro', 1), ('development', 1), ('nosql', 1), ('platform', 1), ('enterprise', 1), ('discus', 1), ('programming', 1), ('using', 1), ('java', 1), ('scripting', 1), ('language', 1), ('querying', 1), ('searching', 1), ('handling', 1), ('migration', 1), ('integrating', 1), ('hadoop', 1), ('hdfs', 1), ('json', 1)]
[('drone', 4), ('ai', 3), ('enabled', 3), ('artificial', 1), ('intelligence', 1), ('better', 1), ('human', 1), ('controlled', 1), ('book', 1), ('answer', 1), ('question', 1), ('empower', 1), ('develop', 1)]
[('design', 1), ('configure', 1), ('sql', 1), ('server', 1), ('instance', 1), ('database', 1), ('support', 1), ('high', 1), ('throughput', 1), ('application', 1), ('mission', 1), ('critical', 1), ('provide', 1), ('consistent', 1), ('response', 1), ('time', 1), ('face', 1), ('variation', 1), ('user', 1), ('number', 1), ('query', 1), ('volume', 1), ('learn', 1)]
[('python', 2), ('book', 1), ('show', 1), ('use', 1), ('create', 1), ('graphic', 1), ('object', 1), ('technical', 1), ('illustration', 1), ('data', 1), ('visualization', 1), ('nbsp', 1), ('often', 1), ('function', 1), ('need', 1), ('produce', 1), ('image', 1), ('want', 1), ('found', 1), ('standard', 1), ('library', 1), ('knowing', 1)]
[('serverless', 2), ('take', 1), ('python', 1), ('machine', 1), ('learning', 1), ('idea', 1), ('create', 1), ('web', 1), ('application', 1), ('accessible', 1), ('anyone', 1), ('internet', 1), ('connection', 1), ('popular', 1), ('cloud', 1), ('provider', 1), ('covered', 1), ('book', 1), ('amazon', 1), ('microsoft', 1), ('google', 1)]
[('typescript', 3), ('work', 1), ('versatile', 1), ('open', 1), ('source', 1), ('language', 1), ('author', 1), ('adam', 1), ('freeman', 1), ('begin', 1), ('book', 1), ('describing', 1), ('benefit', 1), ('offer', 1), ('go', 1), ('show', 1), ('use', 1), ('realistic', 1), ('scenario', 1), ('going', 1)]
[('algorithm', 1), ('friend', 1), ('foe', 1), ('human', 1), ('mind', 1), ('evolutionarily', 1), ('designed', 1), ('take', 1), ('shortcut', 1), ('order', 1), ('survive', 1), ('jump', 1), ('conclusion', 1), ('brain', 1), ('want', 1), ('keep', 1), ('safe', 1), ('majority', 1), ('bias', 1), ('work', 1), ('favor', 1), ('feel', 1), ('car', 1)]
[('design', 2), ('code', 2), ('explore', 1), ('spring', 1), ('mvc', 1), ('webflux', 1), ('framework', 1), ('apply', 1), ('similar', 1), ('technique', 1), ('along', 1), ('detailed', 1), ('analysis', 1), ('functionality', 1), ('book', 1), ('includes', 1), ('numerous', 1), ('tip', 1), ('trick', 1), ('help', 1)]
[('product', 3), ('enhance', 1), ('management', 1), ('skill', 1), ('set', 1), ('apart', 1), ('manager', 1), ('working', 1), ('iot', 1), ('industry', 1), ('book', 1), ('show', 1), ('navigate', 1), ('world', 1), ('small', 1), ('edge', 1), ('device', 1), ('successfully', 1), ('launch', 1), ('monitor', 1)]
[('lock', 4), ('know', 1), ('work', 1), ('mysql', 1), ('relate', 1), ('transaction', 1), ('book', 1), ('explains', 1), ('major', 1), ('role', 1), ('play', 1), ('database', 1), ('system', 1), ('showing', 1), ('essential', 1), ('allowing', 1), ('high', 1), ('concurrency', 1), ('workload', 1), ('learn', 1), ('access', 1)]
[('professional', 2), ('looking', 2), ('code', 2), ('create', 1), ('app', 1), ('start', 1), ('finish', 1), ('take', 1), ('advantage', 1), ('icloud', 1), ('technology', 1), ('rather', 1), ('working', 1), ('storyboarding', 1), ('building', 1), ('ui', 1), ('use', 1), ('build', 1), ('screen', 1), ('using', 1), ('standard', 1)]
[('accessibility', 2), ('take', 1), ('deep', 1), ('look', 1), ('applies', 1), ('mobile', 1), ('wearable', 1), ('book', 1), ('cover', 1), ('topic', 1), ('within', 1), ('domain', 1), ('rarely', 1), ('covered', 1), ('understood', 1), ('despite', 1), ('fact', 1), ('nearly', 1), ('half', 1), ('world', 1), ('population', 1), ('us', 1), ('smartphones', 1)]
[('application', 3), ('develop', 2), ('structured', 1), ('using', 1), ('tested', 1), ('technique', 1), ('pattern', 1), ('start', 1), ('think', 1), ('idea', 1), ('finished', 1), ('evolve', 1), ('built', 1), ('book', 1)]
[('oracle', 2), ('database', 2), ('best', 2), ('fourth', 1), ('edition', 1), ('covering', 1), ('selling', 1), ('book', 1), ('continues', 1), ('bring', 1), ('thinking', 1), ('apply', 1), ('produce', 1), ('scalable', 1), ('application', 1), ('perform', 1), ('deliver', 1), ('correct', 1), ('result', 1), ('tom', 1)]
[('deep', 2), ('learning', 2), ('method', 2), ('learn', 1), ('harness', 1), ('modern', 1), ('many', 1), ('context', 1), ('packed', 1), ('intuitive', 1), ('theory', 1), ('practical', 1), ('implementation', 1), ('case', 1), ('study', 1), ('book', 1), ('reveals', 1), ('acquire', 1), ('tool', 1), ('need', 1), ('design', 1), ('implement', 1)]
[('design', 3), ('pattern', 3), ('step', 2), ('book', 2), ('use', 1), ('approach', 1), ('learn', 1), ('implement', 1), ('real', 1), ('world', 1), ('application', 1), ('focus', 1), ('classical', 1), ('java', 1), ('eclipse', 1), ('addition', 1), ('gang', 1), ('four', 1), ('gof', 1)]
[('data', 5), ('warehouse', 2), ('degree', 1), ('view', 1), ('journey', 1), ('analytics', 1), ('solution', 1), ('evolved', 1), ('monolithic', 1), ('store', 1), ('enterprise', 1), ('lake', 1), ('modern', 1), ('willthis', 1), ('book', 1), ('includes', 1), ('comprehensive', 1), ('coverage', 1)]
[('image', 3), ('processing', 3), ('modern', 2), ('utilize', 1), ('method', 1), ('digital', 1), ('take', 1), ('advantage', 1), ('many', 1), ('time', 1), ('saving', 1), ('template', 1), ('provided', 1), ('project', 1), ('book', 1), ('algorithm', 1), ('nbsp', 1), ('approach', 1), ('topic', 1)]
[('application', 2), ('build', 1), ('enhanced', 1), ('visual', 1), ('experience', 1), ('design', 1), ('deploy', 1), ('modern', 1), ('easy', 1), ('maintain', 1), ('client', 1), ('across', 1), ('variety', 1), ('platform', 1), ('book', 1), ('show', 1), ('take', 1), ('advantage', 1), ('latest', 1), ('user', 1), ('interface', 1), ('component', 1)]
[('syntax', 2), ('reference', 2), ('condensed', 1), ('code', 1), ('present', 1), ('essential', 1), ('haskell', 1), ('organized', 1), ('format', 1), ('used', 1), ('quick', 1), ('handy', 1), ('including', 1), ('application', 1), ('cloud', 1), ('computing', 1), ('data', 1), ('analysis', 1), ('book', 1), ('cover', 1), ('functional', 1)]
[('synapse', 4), ('analytics', 2), ('book', 2), ('started', 1), ('azure', 1), ('microsoft', 1), ('modern', 1), ('data', 1), ('platform', 1), ('cover', 1), ('core', 1), ('component', 1), ('sql', 1), ('spark', 1), ('pipeline', 1), ('many', 1), ('along', 1), ('architecture', 1), ('implementation', 1)]
[('quantum', 2), ('machine', 2), ('learning', 2), ('know', 1), ('adapt', 1), ('computing', 1), ('algorithm', 1), ('book', 1), ('take', 1), ('journey', 1), ('hand', 1), ('qml', 1), ('various', 1), ('option', 1), ('available', 1), ('industry', 1), ('research', 1), ('first', 1), ('three', 1), ('chapter', 1), ('offer', 1), ('insight', 1)]
[('discover', 1), ('methodology', 1), ('best', 1), ('practice', 1), ('getting', 1), ('started', 1), ('hashicorp', 1), ('tool', 1), ('including', 1), ('terraform', 1), ('vault', 1), ('packer', 1), ('book', 1), ('begin', 1), ('introduction', 1), ('infrastructure', 1), ('code', 1), ('concept', 1), ('establishing', 1), ('need', 1), ('automation', 1)]
[('aws', 2), ('fundamental', 2), ('create', 1), ('deploy', 1), ('full', 1), ('stack', 1), ('spring', 1), ('boot', 1), ('application', 1), ('react', 1), ('practical', 1), ('authoritative', 1), ('guide', 1), ('teach', 1), ('amazon', 1), ('web', 1), ('service', 1), ('prior', 1), ('experience', 1), ('start', 1), ('learning', 1)]
[('book', 1), ('stop', 1), ('guide', 1), ('professional', 1), ('background', 1), ('traditional', 1), ('software', 1), ('defined', 1), ('network', 1), ('looking', 1), ('expand', 1), ('hone', 1), ('skill', 1), ('set', 1), ('developed', 1), ('combination', 1), ('extensive', 1), ('research', 1), ('testing', 1)]
[('gain', 1), ('deep', 1), ('understanding', 1), ('data', 1), ('science', 1), ('thought', 1), ('process', 1), ('needed', 1), ('solve', 1), ('problem', 1), ('field', 1), ('using', 1), ('required', 1), ('technique', 1), ('technology', 1), ('skill', 1), ('go', 1), ('forming', 1), ('interdisciplinary', 1), ('team', 1), ('book', 1), ('enable', 1), ('set', 1)]
[('game', 4), ('create', 1), ('polished', 1), ('includes', 1), ('many', 1), ('level', 1), ('fight', 1), ('using', 1), ('monogame', 1), ('book', 1), ('show', 1), ('add', 1), ('ai', 1), ('agent', 1), ('physic', 1), ('improving', 1), ('performance', 1), ('engine', 1), ('end', 1), ('development', 1)]
[('wasm', 2), ('cloud', 2), ('journey', 1), ('amazing', 1), ('world', 1), ('webassembly', 1), ('learn', 1), ('applied', 1), ('book', 1), ('introduction', 1), ('aimed', 1), ('professional', 1), ('accustomed', 1), ('working', 1), ('related', 1), ('technology', 1), ('kubernetes', 1), ('istio', 1)]
[('network', 4), ('wireshark', 2), ('tool', 2), ('understand', 1), ('fundamental', 1), ('key', 1), ('engineer', 1), ('security', 1), ('analyst', 1), ('book', 1), ('explains', 1), ('used', 1), ('analyze', 1), ('traffic', 1), ('teach', 1), ('protocol', 1)]
[('game', 3), ('computer', 2), ('hci', 2), ('deepen', 1), ('understanding', 1), ('human', 1), ('interaction', 1), ('development', 1), ('learn', 1), ('develop', 1), ('video', 1), ('grab', 1), ('player', 1), ('go', 1), ('book', 1), ('explores', 1), ('design', 1), ('maximize', 1), ('collaborative', 1)]
[('api', 3), ('testing', 3), ('software', 2), ('explore', 1), ('web', 1), ('application', 1), ('architecture', 1), ('coding', 1), ('practice', 1), ('standard', 1), ('better', 1), ('test', 1), ('automation', 1), ('development', 1), ('management', 1), ('book', 1), ('focus', 1), ('aspiring', 1), ('engineer', 1), ('currently', 1), ('working', 1)]
[('java', 3), ('ee', 3), ('application', 3), ('solution', 2), ('enterprise', 2), ('take', 1), ('problem', 1), ('approach', 1), ('programming', 1), ('microservices', 1), ('cloud', 1), ('based', 1), ('database', 1), ('even', 1), ('small', 1), ('business', 1), ('web', 1), ('nbsp', 1), ('jakarta', 1)]
[('write', 1), ('efficient', 1), ('smart', 1), ('optimized', 1), ('code', 1), ('containerized', 1), ('application', 1), ('public', 1), ('private', 1), ('cloud', 1), ('generic', 1), ('level', 1), ('book', 1), ('show', 1), ('set', 1), ('microservices', 1), ('robust', 1), ('scalable', 1), ('capable', 1), ('running', 1), ('gke', 1), ('google', 1), ('kubernetes', 1)]
[('nbsp', 3), ('cyberattacks', 1), ('continue', 1), ('increase', 1), ('volume', 1), ('sophistication', 1), ('targeting', 1), ('everything', 1), ('owned', 1), ('managed', 1), ('serviced', 1), ('cloud', 1), ('today', 1), ('widespread', 1), ('consensus', 1), ('matter', 1), ('rather', 1), ('organization', 1)]
[('platform', 2), ('every', 1), ('solution', 1), ('way', 1), ('related', 1), ('iot', 1), ('need', 1), ('learn', 1), ('create', 1), ('book', 1), ('agile', 1), ('reducing', 1), ('time', 1), ('market', 1), ('without', 1), ('breaking', 1), ('bank', 1), ('designing', 1), ('something', 1)]
[('nbsp', 2), ('pc', 2), ('diagnose', 1), ('troubleshoot', 1), ('repair', 1), ('type', 1), ('problem', 1), ('startup', 1), ('file', 1), ('access', 1), ('cloud', 1), ('service', 1), ('issue', 1), ('caused', 1), ('hybrid', 1), ('work', 1), ('book', 1), ('contains', 1), ('everything', 1), ('need', 1), ('know', 1), ('keep', 1), ('system', 1), ('running', 1), ('optimally', 1)]
[('web', 2), ('almost', 1), ('developer', 1), ('today', 1), ('plenty', 1), ('experience', 1), ('building', 1), ('regular', 1), ('page', 1), ('apps', 1), ('lot', 1), ('knowledge', 1), ('transfer', 1), ('come', 1), ('creating', 1), ('browser', 1), ('extension', 1), ('nbsp', 1), ('book', 1), ('provides', 1), ('complete', 1), ('reference', 1)]
[('technical', 3), ('product', 2), ('book', 1), ('offer', 1), ('comprehensive', 1), ('coverage', 1), ('various', 1), ('technology', 1), ('technique', 1), ('used', 1), ('build', 1), ('learn', 1), ('development', 1), ('collaboratively', 1), ('done', 1), ('across', 1), ('multiple', 1), ('team', 1), ('primarily', 1)]
[('opengl', 3), ('e', 3), ('pro', 1), ('io', 1), ('find', 1), ('harness', 1), ('full', 1), ('power', 1), ('design', 1), ('application', 1), ('building', 1), ('fully', 1), ('functional', 1), ('solar', 1), ('system', 1), ('model', 1), ('using', 1), ('open', 1), ('gl', 1), ('set', 1), ('standard', 1), ('computer', 1)]
[('powerful', 2), ('pro', 1), ('vim', 1), ('teach', 1), ('real', 1), ('world', 1), ('workflow', 1), ('tip', 1), ('trick', 1), ('terminal', 1), ('based', 1), ('text', 1), ('editor', 1), ('book', 1), ('cover', 1), ('essential', 1), ('lesser', 1), ('known', 1), ('equally', 1), ('feature', 1), ('ensure', 1), ('become', 1), ('top', 1), ('level', 1)]
[('python', 3), ('take', 2), ('next', 2), ('rsquo', 1), ('learned', 1), ('basic', 1), ('skill', 1), ('stage', 1), ('even', 1), ('know', 1), ('enough', 1), ('productive', 1), ('number', 1), ('feature', 1), ('level', 1), ('pro', 1), ('second', 1), ('edition', 1)]
[('simd', 2), ('programming', 2), ('learn', 1), ('fundamental', 1), ('single', 1), ('instruction', 1), ('multiple', 1), ('data', 1), ('using', 1), ('intrinsic', 1), ('function', 1), ('assembly', 1), ('language', 1), ('book', 1), ('emphasizes', 1), ('topic', 1), ('technology', 1), ('relevant', 1), ('modern', 1), ('software', 1)]
[('lisp', 3), ('common', 2), ('condition', 2), ('system', 2), ('discover', 1), ('functioning', 1), ('example', 1), ('us', 1), ('book', 1), ('supplement', 1), ('already', 1), ('existing', 1), ('material', 1), ('studying', 1), ('language', 1), ('providing', 1), ('detailed', 1), ('information', 1), ('control', 1)]
[('matlab', 3), ('learn', 1), ('state', 1), ('art', 1), ('example', 1), ('robotics', 1), ('motor', 1), ('detection', 1), ('filter', 1), ('chemical', 1), ('process', 1), ('aircraft', 1), ('spacecraft', 1), ('book', 1), ('review', 1), ('contemporary', 1), ('coding', 1), ('including', 1), ('latest', 1), ('language', 1), ('feature', 1), ('use', 1)]
[('digital', 2), ('nbsp', 2), ('curious', 1), ('basic', 1), ('artificial', 1), ('intelligence', 1), ('blockchain', 1), ('technology', 1), ('quantum', 1), ('computing', 1), ('key', 1), ('enablers', 1), ('transformation', 1), ('innovation', 1), ('fluency', 1), ('handy', 1), ('guide', 1), ('real', 1), ('world', 1), ('application', 1)]
[('matplotlib', 2), ('learn', 1), ('core', 1), ('aspect', 1), ('numpy', 1), ('panda', 1), ('use', 1), ('write', 1), ('program', 1), ('python', 1), ('book', 1), ('focus', 1), ('heavily', 1), ('various', 1), ('data', 1), ('visualization', 1), ('technique', 1), ('help', 1), ('acquire', 1), ('expert', 1), ('level', 1), ('knowledge', 1), ('working', 1)]
[('implement', 1), ('numerical', 1), ('algorithm', 1), ('java', 1), ('using', 1), ('nm', 1), ('dev', 1), ('object', 1), ('oriented', 1), ('high', 1), ('performance', 1), ('programming', 1), ('library', 1), ('mathematics', 1), ('see', 1), ('help', 1), ('easily', 1), ('create', 1), ('solution', 1), ('complex', 1), ('engineering', 1), ('problem', 1), ('quickly', 1), ('putting', 1)]
[('book', 2), ('introduced', 1), ('software', 1), ('verification', 1), ('proving', 1), ('correctness', 1), ('using', 1), ('microsoft', 1), ('research', 1), ('backed', 1), ('programming', 1), ('language', 1), ('dafny', 1), ('nbsp', 1), ('topic', 1), ('quite', 1), ('mathematically', 1), ('rigorous', 1), ('use', 1), ('little', 1)]
[('book', 2), ('technique', 2), ('cover', 1), ('essential', 1), ('theory', 1), ('implementation', 1), ('popular', 1), ('bayesian', 1), ('optimization', 1), ('intuitive', 1), ('illustrated', 1), ('manner', 1), ('covered', 1), ('enable', 1), ('better', 1), ('tune', 1), ('hyperparemeters', 1)]
[('application', 3), ('deploy', 2), ('book', 2), ('powershell', 2), ('learn', 1), ('simple', 1), ('complex', 1), ('beyond', 1), ('scope', 1), ('default', 1), ('intune', 1), ('deployment', 1), ('scenario', 1), ('limitation', 1), ('help', 1), ('using', 1), ('script', 1), ('start', 1)]
[('semiconductor', 2), ('gain', 1), ('complete', 1), ('understanding', 1), ('electronic', 1), ('system', 1), ('constituent', 1), ('part', 1), ('origin', 1), ('industry', 1), ('right', 1), ('today', 1), ('book', 1), ('serf', 1), ('technical', 1), ('nbsp', 1), ('primer', 1), ('technology', 1), ('spanning', 1), ('design', 1)]
[('build', 1), ('apis', 1), ('web', 1), ('apps', 1), ('based', 1), ('asynchronous', 1), ('server', 1), ('gateway', 1), ('interface', 1), ('asgi', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('explanation', 1), ('using', 1), ('pydantic', 1), ('model', 1), ('construct', 1), ('request', 1), ('response', 1), ('object', 1), ('fastapi', 1), ('path', 1), ('operation', 1), ('nbsp', 1), ('start', 1)]
[('book', 2), ('snowflake', 2), ('project', 1), ('oriented', 1), ('give', 1), ('hand', 1), ('approach', 1), ('designing', 1), ('developing', 1), ('templating', 1), ('platform', 1), ('delivery', 1), ('written', 1), ('seasoned', 1), ('practitioner', 1), ('full', 1), ('practical', 1), ('guidance', 1), ('advice', 1), ('accelerate', 1)]
[('inclusive', 2), ('disability', 2), ('web', 1), ('five', 1), ('living', 1), ('uk', 1), ('microsoft', 1), ('design', 1), ('movement', 1), ('creating', 1), ('adaptive', 1), ('controller', 1), ('user', 1), ('range', 1), ('beyoncé', 1), ('site', 1), ('sued', 1), ('failure', 1)]
[('ux', 2), ('design', 2), ('user', 1), ('experience', 1), ('practice', 1), ('seen', 1), ('fundamental', 1), ('shift', 1), ('software', 1), ('product', 1), ('incorporate', 1), ('machine', 1), ('learning', 1), ('ml', 1), ('component', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('algorithm', 1), ('core', 1), ('book', 1), ('probe', 1)]
[('ai', 2), ('help', 2), ('gain', 1), ('working', 1), ('knowledge', 1), ('prescriptive', 1), ('history', 1), ('current', 1), ('future', 1), ('trend', 1), ('book', 1), ('evaluate', 1), ('different', 1), ('driven', 1), ('predictive', 1), ('analytics', 1), ('technique', 1), ('incorporate', 1), ('decision', 1), ('intelligence', 1), ('business', 1)]
[('application', 2), ('build', 1), ('enhanced', 1), ('visual', 1), ('experience', 1), ('design', 1), ('deploy', 1), ('modern', 1), ('easy', 1), ('maintain', 1), ('client', 1), ('across', 1), ('variety', 1), ('platform', 1), ('book', 1), ('show', 1), ('take', 1), ('advantage', 1), ('javafx', 1), ('latest', 1), ('user', 1), ('interface', 1), ('component', 1)]
[('programming', 2), ('lt', 1), ('gt', 1), ('learn', 1), ('inventor', 1), ('become', 1), ('expert', 1), ('latest', 1), ('version', 1), ('powerful', 1), ('language', 1), ('seamlessly', 1), ('integrate', 1), ('functional', 1), ('imperative', 1), ('object', 1), ('oriented', 1), ('query', 1), ('style', 1), ('flexibly', 1), ('elegantly', 1)]
[('lt', 4), ('gt', 4), ('div', 2), ('leverage', 1), ('flexibility', 1), ('power', 1), ('sap', 1), ('mii', 1), ('integrate', 1), ('business', 1), ('operation', 1), ('manufacturing', 1), ('process', 1), ('explore', 1), ('important', 1), ('new', 1), ('feature', 1), ('product', 1), ('see', 1), ('apply', 1), ('best', 1)]
[('lt', 3), ('gt', 3), ('server', 3), ('sql', 2), ('edition', 2), ('fast', 1), ('start', 1), ('using', 1), ('alwayson', 1), ('solution', 1), ('high', 1), ('availability', 1), ('disaster', 1), ('recovery', 1), ('second', 1), ('newly', 1), ('updated', 1), ('cover', 1), ('window', 1)]
[('syntax', 2), ('lt', 1), ('div', 1), ('gt', 1), ('quick', 1), ('guide', 1), ('condensed', 1), ('code', 1), ('reference', 1), ('popular', 1), ('programming', 1), ('language', 1), ('fully', 1), ('updated', 1), ('present', 1), ('essential', 1), ('organized', 1), ('format', 1), ('used', 1), ('handy', 1)]
[('lt', 6), ('gt', 6), ('div', 5), ('system', 2), ('take', 1), ('advantage', 1), ('python', 1), ('automate', 1), ('complex', 1), ('readable', 1), ('code', 1), ('new', 1), ('edition', 1), ('help', 1), ('move', 1), ('operation', 1), ('administration', 1), ('easy', 1), ('learn', 1), ('coding', 1), ('br', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('take', 1), ('developer', 1), ('journey', 1), ('pave', 1), ('way', 1), ('enterprise', 1), ('level', 1), ('database', 1), ('access', 1), ('net', 1), ('using', 1), ('object', 1), ('relational', 1), ('mapper', 1), ('orm', 1), ('choice', 1), ('amp', 1), ('nbsp', 1), ('second', 1), ('edition', 1), ('revised', 1), ('cover', 1), ('entity', 1), ('framework', 1), ('core', 1)]
[('breach', 2), ('lt', 1), ('gt', 1), ('cybersecurity', 1), ('industry', 1), ('seen', 1), ('investment', 1), ('billion', 1), ('past', 1), ('year', 1), ('hundred', 1), ('thousand', 1), ('job', 1), ('field', 1), ('remain', 1), ('unfilled', 1), ('amid', 1), ('problem', 1), ('come', 1), ('head', 1), ('time', 1)]
[('lt', 3), ('gt', 3), ('xcode', 2), ('running', 1), ('apple', 1), ('latest', 1), ('version', 1), ('see', 1), ('use', 1), ('swift', 1), ('build', 1), ('variety', 1), ('project', 1), ('already', 1), ('programming', 1), ('experience', 1), ('io', 1), ('sdk', 1), ('objective', 1), ('want', 1)]
[('lt', 3), ('gt', 3), ('em', 2), ('metaprogramming', 2), ('tmp', 2), ('advanced', 1), ('classic', 1), ('aim', 1), ('introduction', 1), ('reference', 1), ('template', 1), ('presented', 1), ('book', 1), ('set', 1), ('technique', 1), ('bring', 1), ('new', 1), ('style', 1)]
[('lt', 6), ('gt', 6), ('div', 4), ('learn', 1), ('essential', 1), ('concept', 1), ('technique', 1), ('build', 1), ('simple', 1), ('advanced', 1), ('project', 1), ('overcome', 1), ('common', 1), ('programming', 1), ('challenge', 1), ('micro', 1), ('bit', 1), ('development', 1), ('amp', 1), ('nbsp', 1), ('br', 1), ('beginning', 1), ('bbc', 1)]
[('developer', 2), ('something', 2), ('boost', 1), ('io', 1), ('career', 1), ('learning', 1), ('real', 1), ('life', 1), ('example', 1), ('start', 1), ('writing', 1), ('code', 1), ('successful', 1), ('platform', 1), ('matter', 1), ('experienced', 1), ('beginner', 1), ('find', 1), ('new', 1)]
[('programming', 2), ('language', 2), ('modern', 2), ('standard', 2), ('lt', 1), ('div', 1), ('gt', 1), ('learn', 1), ('structured', 1), ('straightforward', 1), ('friendly', 1), ('manner', 1), ('book', 1), ('teach', 1), ('basic', 1), ('library', 1), ('including', 1)]
[('edition', 2), ('new', 1), ('hand', 1), ('guide', 1), ('developer', 1), ('administrator', 1), ('want', 1), ('use', 1), ('power', 1), ('flexibility', 1), ('couchbase', 1), ('server', 1), ('application', 1), ('second', 1), ('extends', 1), ('coverage', 1), ('ql', 1), ('sql', 1), ('query', 1), ('language', 1)]
[('lt', 1), ('div', 1), ('gt', 1), ('explore', 1), ('latest', 1), ('python', 1), ('tool', 1), ('technique', 1), ('help', 1), ('tackle', 1), ('world', 1), ('data', 1), ('acquisition', 1), ('analysis', 1), ('review', 1), ('scientific', 1), ('computing', 1), ('numpy', 1), ('visualization', 1), ('matplotlib', 1), ('machine', 1), ('learning', 1)]
[('model', 2), ('lt', 1), ('div', 1), ('gt', 1), ('integrate', 1), ('mlops', 1), ('principle', 1), ('existing', 1), ('future', 1), ('project', 1), ('using', 1), ('mlflow', 1), ('operationalize', 1), ('deploy', 1), ('aws', 1), ('sagemaker', 1), ('google', 1), ('cloud', 1), ('microsoft', 1), ('azure', 1), ('book', 1), ('guide', 1), ('process', 1), ('data', 1), ('analysis', 1)]
[('typing', 3), ('typescript', 2), ('javascript', 2), ('lt', 1), ('div', 1), ('gt', 1), ('learn', 1), ('essential', 1), ('popular', 1), ('superset', 1), ('language', 1), ('add', 1), ('support', 1), ('static', 1), ('combine', 1), ('feature', 1), ('java', 1), ('flexibility', 1), ('reducing', 1)]
[('lt', 2), ('gt', 2), ('colab', 2), ('ecosystem', 2), ('div', 1), ('use', 1), ('tensorflow', 1), ('google', 1), ('create', 1), ('state', 1), ('art', 1), ('deep', 1), ('learning', 1), ('model', 1), ('guided', 1), ('hand', 1), ('example', 1), ('provides', 1), ('free', 1), ('cloud', 1), ('service', 1), ('easy', 1), ('access', 1), ('demand', 1), ('gpu', 1), ('tpu', 1)]
[('ai', 2), ('auditing', 2), ('use', 1), ('artificial', 1), ('intelligence', 1), ('technique', 1), ('build', 1), ('tool', 1), ('organization', 1), ('practical', 1), ('book', 1), ('implementation', 1), ('recipe', 1), ('demystify', 1), ('ml', 1), ('data', 1), ('science', 1), ('role', 1), ('applied', 1), ('learn', 1)]
[('cloud', 3), ('integration', 2), ('sql', 2), ('server', 2), ('book', 2), ('cover', 2), ('lt', 1), ('div', 1), ('gt', 1), ('know', 1), ('use', 1), ('new', 1), ('capability', 1), ('many', 1), ('innovative', 1), ('azure', 1), ('make', 1), ('connected', 1), ('edition', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('hadoop', 2), ('jump', 1), ('start', 1), ('using', 1), ('azure', 1), ('hdinsight', 1), ('ecosystem', 1), ('component', 1), ('big', 1), ('data', 1), ('project', 1), ('written', 1), ('either', 1), ('java', 1), ('scala', 1), ('python', 1), ('book', 1), ('minimizes', 1), ('effort', 1), ('learn', 1), ('another', 1), ('language', 1)]
[('spring', 2), ('basic', 2), ('lt', 1), ('gt', 1), ('master', 1), ('core', 1), ('topic', 1), ('share', 1), ('author', 1), ('insight', 1), ('real', 1), ('world', 1), ('experience', 1), ('remoting', 1), ('hibernate', 1), ('ejb', 1), ('beyond', 1), ('learn', 1), ('leverage', 1), ('framework', 1), ('build', 1), ('various', 1), ('tier', 1), ('part', 1)]
[('lt', 2), ('gt', 2), ('data', 2), ('sql', 2), ('div', 1), ('harness', 1), ('power', 1), ('polybase', 1), ('virtualization', 1), ('software', 1), ('make', 1), ('variety', 1), ('source', 1), ('easily', 1), ('accessible', 1), ('query', 1), ('using', 1), ('skill', 1), ('already', 1), ('know', 1)]
[('lt', 5), ('div', 5), ('gt', 5), ('amp', 2), ('nbsp', 2), ('running', 1), ('basic', 1), ('geographic', 1), ('information', 1), ('system', 1), ('gi', 1), ('geospatial', 1), ('analysis', 1), ('machine', 1), ('learning', 1), ('spatial', 1), ('data', 1), ('python', 1), ('book', 1), ('start', 1)]
[('data', 2), ('work', 2), ('create', 1), ('apps', 1), ('rich', 1), ('capability', 1), ('receive', 1), ('process', 1), ('intelligently', 1), ('store', 1), ('across', 1), ('multiple', 1), ('device', 1), ('apple', 1), ('ecosystem', 1), ('amp', 1), ('nbsp', 1), ('book', 1), ('show', 1), ('organize', 1), ('app', 1), ('make', 1)]
[('mobile', 3), ('device', 2), ('medium', 2), ('application', 2), ('evolved', 1), ('focus', 1), ('rich', 1), ('production', 1), ('consumption', 1), ('developer', 1), ('able', 1), ('create', 1), ('allow', 1), ('play', 1), ('capture', 1), ('share', 1), ('variety', 1), ('new', 1), ('way', 1)]
[('lt', 2), ('gt', 2), ('world', 2), ('data', 2), ('visual', 1), ('animal', 1), ('see', 1), ('true', 1), ('splendor', 1), ('brain', 1), ('computer', 1), ('sort', 1), ('organize', 1), ('raw', 1), ('transform', 1), ('produce', 1), ('new', 1), ('image', 1), ('em', 1), ('beginning', 1)]
[('lt', 3), ('gt', 3), ('swift', 3), ('development', 2), ('em', 2), ('programming', 1), ('language', 1), ('transformed', 1), ('world', 1), ('io', 1), ('started', 1), ('new', 1), ('age', 1), ('modern', 1), ('pro', 1), ('design', 1), ('pattern', 1), ('show', 1), ('harness', 1), ('power', 1), ('flexibility', 1)]
[('sharepoint', 3), ('lt', 2), ('em', 2), ('gt', 2), ('practical', 1), ('enterprise', 1), ('content', 1), ('management', 1), ('first', 1), ('book', 1), ('guide', 1), ('planning', 1), ('designing', 1), ('phase', 1), ('information', 1), ('life', 1), ('cycle', 1), ('author', 1), ('expert', 1), ('steve', 1), ('goodyear', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('data', 2), ('defense', 2), ('protect', 1), ('attack', 1), ('using', 1), ('sql', 1), ('server', 1), ('technology', 1), ('implement', 1), ('depth', 1), ('strategy', 1), ('performing', 1), ('threat', 1), ('analysis', 1), ('encrypting', 1), ('sensitive', 1), ('last', 1), ('line', 1), ('compromise', 1)]
[('step', 2), ('lt', 1), ('div', 1), ('gt', 1), ('learn', 1), ('program', 1), ('using', 1), ('updated', 1), ('language', 1), ('start', 1), ('basic', 1), ('progress', 1), ('example', 1), ('become', 1), ('working', 1), ('programmer', 1), ('need', 1), ('beginning', 1), ('recent', 1), ('compiler', 1)]
[('cs', 2), ('style', 2), ('sheet', 2), ('lt', 1), ('gt', 1), ('leverage', 1), ('various', 1), ('feature', 1), ('combination', 1), ('popular', 1), ('architecture', 1), ('order', 1), ('bring', 1), ('back', 1), ('control', 1), ('primary', 1), ('technology', 1), ('used', 1), ('building', 1), ('beautiful', 1), ('web', 1), ('user', 1), ('interface', 1)]
[('power', 2), ('bi', 2), ('desktop', 2), ('ai', 2), ('feature', 2), ('book', 1), ('explains', 1), ('enrich', 1), ('data', 1), ('loaded', 1), ('accessing', 1), ('suite', 1), ('artificial', 1), ('intelligence', 1), ('built', 1), ('help', 1), ('gain', 1), ('new', 1), ('insight', 1), ('existing', 1)]
[('power', 3), ('bi', 3), ('lt', 2), ('div', 2), ('gt', 2), ('tool', 2), ('manage', 1), ('within', 1), ('organization', 1), ('book', 1), ('help', 1), ('systematize', 1), ('administration', 1), ('microsoft', 1), ('shift', 1), ('self', 1), ('service', 1), ('enterprise', 1), ('learn', 1), ('best', 1), ('practice', 1), ('many', 1), ('administrator', 1)]
[('lt', 3), ('gt', 3), ('code', 3), ('visual', 2), ('studio', 2), ('use', 1), ('write', 1), ('debug', 1), ('quickly', 1), ('efficiently', 1), ('platform', 1), ('device', 1), ('using', 1), ('programming', 1), ('language', 1), ('operating', 1), ('system', 1), ('choice', 1), ('open', 1), ('source', 1)]
[('learning', 2), ('forecasting', 2), ('lt', 1), ('gt', 1), ('cover', 1), ('machine', 1), ('technique', 1), ('relevant', 1), ('problem', 1), ('ranging', 1), ('univariate', 1), ('multivariate', 1), ('time', 1), ('series', 1), ('supervised', 1), ('state', 1), ('art', 1), ('deep', 1), ('model', 1), ('lstms', 1), ('recurrent', 1), ('neural', 1)]
[('learn', 1), ('psychological', 1), ('constriction', 1), ('attention', 1), ('perception', 1), ('memory', 1), ('disposition', 1), ('motivation', 1), ('social', 1), ('influence', 1), ('determine', 1), ('whether', 1), ('customer', 1), ('receptive', 1), ('digital', 1), ('innovation', 1), ('bottleneck', 1), ('nbsp', 1), ('aligning', 1), ('ux', 1), ('design', 1), ('user', 1)]
[('video', 2), ('service', 2), ('technology', 2), ('improve', 1), ('multimedia', 1), ('work', 1), ('develop', 1), ('using', 1), ('tool', 1), ('netflix', 1), ('disney', 1), ('youtube', 1), ('skype', 1), ('book', 1), ('introduces', 1), ('core', 1), ('enable', 1), ('metaverse', 1), ('xr', 1), ('extended', 1), ('reality', 1)]
[('computer', 2), ('concept', 2), ('understand', 1), ('essential', 1), ('science', 1), ('skill', 1), ('book', 1), ('focus', 1), ('foundational', 1), ('fundamental', 1), ('upon', 1), ('expertise', 1), ('specific', 1), ('area', 1), ('developed', 1), ('including', 1), ('architecture', 1), ('programming', 1), ('language', 1), ('algorithm', 1)]
[('robotic', 2), ('process', 1), ('automation', 1), ('rpa', 1), ('program', 1), ('successful', 1), ('need', 1), ('follow', 1), ('general', 1), ('framework', 1), ('governance', 1), ('model', 1), ('book', 1), ('cover', 1), ('detail', 1), ('look', 1), ('adapt', 1), ('organization', 1), ('introducing', 1)]
[('big', 2), ('data', 2), ('architecture', 2), ('learn', 1), ('integrate', 1), ('full', 1), ('stack', 1), ('open', 1), ('source', 1), ('choose', 1), ('correct', 1), ('technology', 1), ('scala', 1), ('spark', 1), ('mesos', 1), ('akka', 1), ('cassandra', 1), ('kafka', 1), ('every', 1), ('layer', 1), ('nbsp', 1), ('becoming', 1), ('requirement', 1), ('many', 1), ('different', 1)]
[('cryptography', 2), ('cryptographic', 2), ('develop', 1), ('greater', 1), ('intuition', 1), ('proper', 1), ('use', 1), ('book', 1), ('teach', 1), ('basic', 1), ('writing', 1), ('algorithm', 1), ('python', 1), ('demystifies', 1), ('internals', 1), ('demonstrates', 1), ('common', 1), ('way', 1), ('used', 1)]
[('learning', 3), ('take', 1), ('systematic', 1), ('approach', 1), ('understanding', 1), ('fundamental', 1), ('machine', 1), ('deep', 1), ('ground', 1), ('applied', 1), ('practice', 1), ('use', 1), ('comprehensive', 1), ('guide', 1), ('building', 1), ('deploying', 1), ('model', 1), ('address', 1)]
[('human', 1), ('attention', 1), ('highest', 1), ('demand', 1), ('drastic', 1), ('increase', 1), ('available', 1), ('information', 1), ('compelled', 1), ('individual', 1), ('find', 1), ('way', 1), ('sift', 1), ('medium', 1), ('literally', 1), ('fingertip', 1), ('content', 1), ('recommendation', 1), ('system', 1)]
[('sql', 3), ('access', 3), ('server', 1), ('comprehensive', 1), ('reference', 1), ('tool', 1), ('developer', 1), ('find', 1), ('efficient', 1), ('solution', 1), ('common', 1), ('problem', 1), ('task', 1), ('helpful', 1), ('hint', 1), ('warning', 1), ('avoid', 1), ('learning', 1), ('jet', 1)]
[('always', 3), ('availability', 3), ('group', 2), ('book', 1), ('nbsp', 1), ('field', 1), ('guide', 1), ('planning', 1), ('deploying', 1), ('managing', 1), ('troubleshooting', 1), ('feature', 1), ('enterprise', 1), ('level', 1), ('solution', 1), ('high', 1), ('disaster', 1), ('recovery', 1)]
[('pointer', 3), ('gain', 1), ('better', 1), ('understanding', 1), ('basic', 1), ('function', 1), ('machine', 1), ('level', 1), ('using', 1), ('variety', 1), ('common', 1), ('advanced', 1), ('scenario', 1), ('short', 1), ('contemporary', 1), ('guide', 1), ('book', 1), ('programming', 1), ('provides', 1), ('resource', 1)]
[('microservices', 2), ('help', 2), ('build', 1), ('design', 1), ('using', 1), ('java', 1), ('red', 1), ('hat', 1), ('quarkus', 1), ('framework', 1), ('nbsp', 1), ('book', 1), ('quickly', 1), ('started', 1), ('feature', 1), ('concern', 1), ('architecture', 1), ('introduce', 1), ('docker', 1), ('kubernetes', 1), ('deploy', 1)]
[('hibernate', 2), ('java', 2), ('persistence', 2), ('new', 2), ('started', 1), ('open', 1), ('source', 1), ('layer', 1), ('gain', 1), ('clear', 1), ('introduction', 1), ('current', 1), ('standard', 1), ('object', 1), ('relational', 1), ('updated', 1), ('edition', 1), ('includes', 1), ('framework', 1), ('cover', 1)]
[('understand', 2), ('order', 1), ('deploy', 1), ('use', 1), ('microsoft', 1), ('certificate', 1), ('service', 1), ('need', 1), ('fundamental', 1), ('cryptography', 1), ('digital', 1), ('signature', 1), ('encryption', 1), ('tl', 1), ('mime', 1), ('important', 1), ('concept', 1), ('behind', 1), ('public', 1), ('key', 1), ('infrastructure', 1)]
[('encryption', 2), ('data', 2), ('depth', 1), ('look', 1), ('tool', 1), ('available', 1), ('sql', 1), ('server', 1), ('show', 1), ('protect', 1), ('encrypting', 1), ('rest', 1), ('transparent', 1), ('tde', 1), ('transit', 1), ('transport', 1), ('level', 1), ('security', 1), ('tl', 1), ('know', 1), ('add', 1), ('highest', 1)]
[('streamlit', 2), ('based', 2), ('application', 2), ('machine', 2), ('web', 2), ('book', 1), ('teach', 1), ('basic', 1), ('python', 1), ('framework', 1), ('used', 1), ('build', 1), ('interactive', 1), ('dashboard', 1), ('learning', 1), ('apps', 1), ('reduces', 1), ('development', 1), ('time', 1), ('prototype', 1), ('data', 1)]
[('nbsp', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('optimization', 1), ('learning', 1), ('algorithm', 1), ('application', 1), ('ol', 1), ('held', 1), ('bragança', 1), ('portugal', 1), ('october', 1), ('full', 1), ('short', 1)]
[('business', 3), ('change', 2), ('shape', 1), ('changed', 1), ('day', 1), ('main', 1), ('dominant', 1), ('fact', 1), ('way', 1), ('operation', 1), ('running', 1), ('topic', 1), ('innovation', 1), ('entrepreneurship', 1), ('leadership', 1), ('blockchain', 1), ('mobile', 1), ('social', 1), ('medium', 1), ('learning', 1)]
[('practically', 1), ('oriented', 1), ('textbook', 1), ('present', 1), ('accessible', 1), ('introduction', 1), ('discrete', 1), ('mathematics', 1), ('substantial', 1), ('collection', 1), ('classroom', 1), ('tested', 1), ('exercise', 1), ('chapter', 1), ('open', 1), ('concise', 1), ('coverage', 1), ('theory', 1), ('underlying', 1), ('topic', 1), ('reviewing', 1)]
[('intelligence', 2), ('book', 1), ('present', 1), ('collection', 1), ('state', 1), ('art', 1), ('artificial', 1), ('big', 1), ('data', 1), ('analytics', 1), ('approach', 1), ('cybersecurity', 1), ('illustrates', 1), ('latest', 1), ('trend', 1), ('ai', 1), ('ml', 1), ('based', 1), ('strategic', 1), ('defense', 1), ('mechanism', 1), ('malware', 1)]
[('deep', 2), ('learning', 2), ('theory', 2), ('algorithm', 2), ('important', 2), ('book', 1), ('cover', 1), ('classical', 1), ('modern', 1), ('model', 1), ('primary', 1), ('focus', 1), ('neural', 1), ('network', 1), ('particularly', 1), ('understanding', 1), ('concept', 1)]
[('digital', 3), ('forensic', 1), ('science', 1), ('forensics', 1), ('application', 1), ('scientific', 1), ('tool', 1), ('method', 1), ('identify', 1), ('collect', 1), ('analyze', 1), ('data', 1), ('artifact', 1), ('support', 1), ('legal', 1), ('proceeding', 1), ('technical', 1), ('perspective', 1), ('process', 1)]
[('topic', 2), ('book', 1), ('first', 1), ('publication', 1), ('give', 1), ('comprehensive', 1), ('structured', 1), ('treatment', 1), ('important', 1), ('situational', 1), ('awareness', 1), ('cyber', 1), ('defense', 1), ('present', 1), ('subject', 1), ('logical', 1), ('consistent', 1), ('continuous', 1), ('discourse', 1), ('covering', 1), ('key', 1)]
[('book', 2), ('meant', 1), ('textbook', 1), ('undergraduate', 1), ('graduate', 1), ('student', 1), ('willing', 1), ('understand', 1), ('essential', 1), ('element', 1), ('machine', 1), ('learning', 1), ('theoretical', 1), ('practical', 1), ('perspective', 1), ('choice', 1), ('topic', 1), ('made', 1), ('based', 1)]
[('statistical', 2), ('addressing', 1), ('broad', 1), ('range', 1), ('big', 1), ('data', 1), ('analytics', 1), ('cross', 1), ('disciplinary', 1), ('application', 1), ('essential', 1), ('handbook', 1), ('focus', 1), ('prospect', 1), ('offered', 1), ('recent', 1), ('development', 1), ('field', 1), ('cover', 1), ('method', 1)]
[('resource', 2), ('monograph', 1), ('introduces', 1), ('novel', 1), ('multiset', 1), ('based', 1), ('conceptual', 1), ('mathematical', 1), ('knowledge', 1), ('engineering', 1), ('paradigm', 1), ('called', 1), ('multigrammatical', 1), ('framework', 1), ('mgf', 1), ('used', 1), ('planning', 1), ('scheduling', 1), ('consuming', 1), ('producing', 1), ('industrial', 1)]
[('data', 3), ('many', 1), ('application', 1), ('process', 1), ('high', 1), ('volume', 1), ('streaming', 1), ('among', 1), ('internet', 1), ('traffic', 1), ('analysis', 1), ('financial', 1), ('ticker', 1), ('transaction', 1), ('log', 1), ('mining', 1), ('general', 1), ('stream', 1), ('unbounded', 1), ('set', 1), ('produced', 1), ('incrementally', 1), ('time', 1), ('rather', 1)]
[('statistical', 2), ('data', 2), ('analysis', 2), ('second', 1), ('edition', 1), ('textbook', 1), ('provides', 1), ('introduction', 1), ('python', 1), ('use', 1), ('cover', 1), ('common', 1), ('test', 1), ('continuous', 1), ('discrete', 1), ('categorical', 1), ('linear', 1), ('regression', 1)]
[('aspect', 2), ('software', 2), ('first', 1), ('book', 1), ('present', 1), ('comprehensive', 1), ('overview', 1), ('sustainability', 1), ('engineering', 1), ('format', 1), ('follows', 1), ('structure', 1), ('swebok', 1), ('cover', 1), ('key', 1), ('area', 1), ('involved', 1), ('incorporation', 1), ('green', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('data', 1), ('mining', 1), ('application', 1), ('adma', 1), ('held', 1), ('sydney', 1), ('australia', 1), ('february', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('symposium', 1), ('artificial', 1), ('life', 1), ('intelligent', 1), ('agent', 1), ('alia', 1), ('held', 1), ('bangor', 1), ('uk', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('agile', 4), ('one', 2), ('attracted', 1), ('promise', 1), ('method', 1), ('put', 1), ('fanaticism', 1), ('many', 1), ('text', 1), ('know', 1), ('technique', 1), ('work', 1), ('matter', 1), ('harm', 1), ('project', 1), ('need', 1)]
[('music', 2), ('concept', 2), ('time', 2), ('book', 1), ('take', 1), ('reader', 1), ('journey', 1), ('organized', 1), ('approach', 1), ('develops', 1), ('essential', 1), ('tone', 1), ('pitch', 1), ('note', 1), ('interval', 1), ('chord', 1), ('score', 1), ('interpreting', 1)]
[('computational', 2), ('topic', 2), ('social', 1), ('choice', 1), ('expanding', 1), ('field', 1), ('merges', 1), ('classical', 1), ('economics', 1), ('voting', 1), ('theory', 1), ('modern', 1), ('artificial', 1), ('intelligence', 1), ('multiagent', 1), ('system', 1), ('complexity', 1), ('book', 1), ('provides', 1), ('concise', 1)]
[('optimization', 3), ('lyapunov', 2), ('text', 1), ('present', 1), ('modern', 1), ('theory', 1), ('analysis', 1), ('control', 1), ('dynamic', 1), ('network', 1), ('mathematical', 1), ('technique', 1), ('drift', 1), ('developed', 1), ('shown', 1), ('enable', 1), ('constrained', 1), ('time', 1), ('average', 1)]
[('book', 1), ('present', 1), ('statistical', 1), ('learning', 1), ('theory', 1), ('detailed', 1), ('easy', 1), ('understand', 1), ('way', 1), ('using', 1), ('practical', 1), ('example', 1), ('algorithm', 1), ('source', 1), ('code', 1), ('used', 1), ('textbook', 1), ('graduation', 1), ('undergraduation', 1), ('course', 1), ('self', 1), ('learner', 1)]
[('international', 3), ('hci', 3), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('cybersecurity', 1), ('privacy', 1), ('trust', 1), ('cpt', 1), ('held', 1), ('part', 1), ('rd', 1), ('took', 1), ('place', 1), ('virtually', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('database', 1), ('expert', 1), ('system', 1), ('application', 1), ('dexa', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('held', 1), ('virtually', 1)]
[('tool', 2), ('intelligence', 2), ('book', 1), ('focus', 1), ('definition', 1), ('implementation', 1), ('data', 1), ('driven', 1), ('computational', 1), ('supporting', 1), ('decision', 1), ('making', 1), ('along', 1), ('heterogeneous', 1), ('scenario', 1), ('analysis', 1), ('includes', 1), ('methodology', 1), ('activity', 1), ('aimed', 1), ('obtaining', 1)]
[('language', 2), ('scala', 2), ('practically', 1), ('focused', 1), ('textbook', 1), ('present', 1), ('concise', 1), ('tutorial', 1), ('data', 1), ('structure', 1), ('algorithm', 1), ('using', 1), ('object', 1), ('functional', 1), ('material', 1), ('build', 1), ('upon', 1), ('foundation', 1), ('established', 1), ('title', 1), ('nbsp', 1), ('programming', 1)]
[('programming', 2), ('julia', 2), ('language', 2), ('main', 1), ('goal', 1), ('book', 1), ('teach', 1), ('fundamental', 1), ('principle', 1), ('beginner', 1), ('using', 1), ('fastest', 1), ('growing', 1), ('today', 1), ('classified', 1), ('modern', 1), ('possessing', 1), ('many', 1), ('feature', 1), ('available', 1)]
[('design', 2), ('algebraic', 2), ('graph', 2), ('algorithm', 2), ('textbook', 1), ('discus', 1), ('implementation', 1), ('basic', 1), ('complex', 1), ('network', 1), ('employing', 1), ('matroids', 1), ('whenever', 1), ('possible', 1), ('text', 1), ('describes', 1), ('simple', 1), ('parallel', 1), ('matrix', 1)]
[('data', 4), ('science', 3), ('nbsp', 2), ('book', 1), ('provides', 1), ('undergraduate', 1), ('introduction', 1), ('analysing', 1), ('computer', 1), ('quantitative', 1), ('social', 1), ('student', 1), ('uniquely', 1), ('combine', 1), ('hand', 1), ('approach', 1), ('analysis', 1), ('supported', 1), ('numerous', 1), ('real', 1)]
[('advanced', 2), ('guide', 1), ('python', 1), ('programming', 1), ('nd', 1), ('edition', 1), ('delf', 1), ('deeply', 1), ('host', 1), ('subject', 1), ('need', 1), ('understand', 1), ('develop', 1), ('sophisticated', 1), ('real', 1), ('world', 1), ('program', 1), ('topic', 1), ('preceded', 1), ('introduction', 1), ('followed', 1)]
[('learning', 2), ('reinforcement', 1), ('powerful', 1), ('tool', 1), ('artificial', 1), ('intelligence', 1), ('virtual', 1), ('physical', 1), ('agent', 1), ('learn', 1), ('optimize', 1), ('decision', 1), ('making', 1), ('achieve', 1), ('long', 1), ('term', 1), ('goal', 1), ('case', 1), ('machine', 1), ('approach', 1), ('save', 1), ('programmer', 1), ('time', 1)]
[('computer', 2), ('lt', 1), ('gt', 1), ('network', 1), ('incredible', 1), ('invention', 1), ('th', 1), ('century', 1), ('expanding', 1), ('role', 1), ('daily', 1), ('life', 1), ('enabling', 1), ('complex', 1), ('human', 1), ('activity', 1), ('area', 1), ('entertainment', 1), ('education', 1), ('commerce', 1)]
[('data', 2), ('lt', 1), ('gt', 1), ('engaging', 1), ('clearly', 1), ('written', 1), ('textbook', 1), ('reference', 1), ('provides', 1), ('introduction', 1), ('rapidly', 1), ('emerging', 1), ('interdisciplinary', 1), ('field', 1), ('science', 1), ('focus', 1), ('principle', 1), ('fundamental', 1), ('becoming', 1), ('good', 1), ('scientist', 1), ('key', 1)]
[('system', 3), ('control', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('fundamental', 1), ('security', 1), ('industrial', 1), ('ic', 1), ('including', 1), ('supervisory', 1), ('data', 1), ('acquisition', 1), ('scada', 1), ('touching', 1), ('cyber', 1), ('physical', 1), ('general', 1), ('careful', 1), ('attention', 1)]
[('indispensable', 1), ('text', 1), ('reference', 1), ('present', 1), ('comprehensive', 1), ('overview', 1), ('detection', 1), ('prevention', 1), ('anomaly', 1), ('computer', 1), ('network', 1), ('traffic', 1), ('coverage', 1), ('fundamental', 1), ('theoretical', 1), ('concept', 1), ('depth', 1), ('analysis', 1), ('system', 1), ('method', 1)]
[('reader', 2), ('learn', 2), ('lt', 1), ('gt', 1), ('concise', 1), ('guide', 1), ('designed', 1), ('enable', 1), ('program', 1), ('assembly', 1), ('language', 1), ('quickly', 1), ('possible', 1), ('hand', 1), ('programming', 1), ('approach', 1), ('architecture', 1), ('intel', 1), ('processor', 1)]
[('database', 2), ('system', 2), ('lt', 1), ('div', 1), ('gt', 1), ('textbook', 1), ('examines', 1), ('viewpoint', 1), ('software', 1), ('developer', 1), ('perspective', 1), ('make', 1), ('possible', 1), ('investigate', 1), ('way', 1), ('course', 1), ('important', 1), ('able', 1), ('write', 1), ('query', 1)]
[('discrete', 2), ('lt', 1), ('gt', 1), ('textbook', 1), ('serve', 1), ('comprehensive', 1), ('manual', 1), ('mathematics', 1), ('graph', 1), ('theory', 1), ('non', 1), ('computer', 1), ('science', 1), ('major', 1), ('reference', 1), ('study', 1), ('aid', 1), ('professional', 1), ('researcher', 1), ('taken', 1), ('math', 1), ('course', 1)]
[('step', 2), ('lt', 1), ('gt', 1), ('book', 1), ('harmonious', 1), ('synthesis', 1), ('functional', 1), ('programming', 1), ('numerical', 1), ('computation', 1), ('show', 1), ('expressiveness', 1), ('ocaml', 1), ('allows', 1), ('fast', 1), ('safe', 1), ('development', 1), ('data', 1), ('science', 1), ('application', 1), ('author', 1), ('build', 1)]
[('quantum', 2), ('lt', 1), ('gt', 1), ('textbook', 1), ('present', 1), ('elementary', 1), ('aspect', 1), ('computing', 1), ('mathematical', 1), ('form', 1), ('intended', 1), ('core', 1), ('supplementary', 1), ('reading', 1), ('physicist', 1), ('mathematician', 1), ('computer', 1), ('scientist', 1), ('taking', 1), ('first', 1), ('course', 1), ('amp', 1), ('nbsp', 1)]
[('technology', 2), ('lt', 1), ('div', 1), ('gt', 1), ('book', 1), ('introduces', 1), ('reader', 1), ('fundamental', 1), ('contemporary', 1), ('emerging', 1), ('future', 1), ('service', 1), ('internet', 1), ('computing', 1), ('cover', 1), ('essential', 1), ('concept', 1), ('distributed', 1), ('system', 1), ('architecture', 1), ('web', 1)]
[('use', 2), ('make', 1), ('software', 1), ('application', 1), ('activity', 1), ('applying', 1), ('tool', 1), ('carrying', 1), ('task', 1), ('good', 1), ('easy', 1), ('effective', 1), ('efficient', 1), ('enjoyable', 1), ('principal', 1), ('goal', 1), ('design', 1), ('book', 1), ('present', 1)]
[('lt', 1), ('gt', 1), ('graph', 1), ('structured', 1), ('data', 1), ('ubiquitous', 1), ('throughout', 1), ('natural', 1), ('social', 1), ('science', 1), ('telecommunication', 1), ('network', 1), ('quantum', 1), ('chemistry', 1), ('building', 1), ('relational', 1), ('inductive', 1), ('bias', 1), ('deep', 1), ('learning', 1), ('architecture', 1), ('crucial', 1), ('creating', 1), ('system', 1)]
[('suitable', 2), ('lt', 1), ('gt', 1), ('book', 1), ('provides', 1), ('concise', 1), ('yet', 1), ('comprehensive', 1), ('overview', 1), ('computer', 1), ('internet', 1), ('security', 1), ('term', 1), ('introductory', 1), ('course', 1), ('junior', 1), ('senior', 1), ('undergrad', 1), ('first', 1), ('year', 1), ('graduate', 1), ('student', 1), ('self', 1), ('study', 1)]
[('failure', 2), ('mode', 2), ('effect', 2), ('identifying', 1), ('critical', 1), ('software', 1), ('analysis', 1), ('largely', 1), ('depends', 1), ('analyst', 1), ('experience', 1), ('skill', 1), ('book', 1), ('develops', 1), ('series', 1), ('reading', 1), ('technique', 1), ('based', 1), ('common', 1), ('prioritized', 1)]
[('design', 3), ('textbook', 1), ('provides', 1), ('balanced', 1), ('coverage', 1), ('software', 1), ('including', 1), ('principle', 1), ('methodology', 1), ('technique', 1), ('context', 1), ('designing', 1), ('module', 1), ('small', 1), ('larger', 1), ('size', 1), ('multi', 1), ('paradigm', 1), ('viewpoint', 1), ('emphasizing', 1), ('trade', 1)]
[('similarity', 2), ('operator', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('tutorial', 1), ('author', 1), ('systematically', 1), ('survey', 1), ('set', 1), ('primarily', 1), ('focusing', 1), ('semantics', 1), ('touching', 1), ('upon', 1), ('mechanism', 1), ('processing', 1), ('effectively', 1)]
[('book', 3), ('data', 2), ('privacy', 2), ('framework', 2), ('offer', 1), ('novel', 1), ('approach', 1), ('unifying', 1), ('side', 1), ('channel', 1), ('attack', 1), ('within', 1), ('general', 1), ('conceptual', 1), ('applies', 1), ('three', 1), ('concrete', 1), ('domain', 1), ('nbsp', 1), ('first', 1), ('examines', 1), ('preserving', 1), ('publishing', 1)]
[('software', 2), ('testing', 2), ('thinking', 2), ('book', 1), ('present', 1), ('new', 1), ('paradigm', 1), ('emphasizing', 1), ('role', 1), ('critical', 1), ('system', 1), ('rationality', 1), ('important', 1), ('skill', 1), ('tester', 1), ('thus', 1), ('approach', 1), ('different', 1), ('perspective', 1)]
[('research', 2), ('aim', 1), ('book', 1), ('provide', 1), ('latest', 1), ('finding', 1), ('innovative', 1), ('result', 1), ('method', 1), ('development', 1), ('technique', 1), ('theoretical', 1), ('practical', 1), ('perspective', 1), ('related', 1), ('emerging', 1), ('area', 1), ('information', 1), ('networking', 1), ('application', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('decision', 1), ('support', 1), ('system', 1), ('technology', 1), ('icdsst', 1), ('held', 1), ('planned', 1), ('take', 1), ('place', 1), ('loughborough', 1), ('uk', 1), ('changed', 1), ('online', 1)]
[('suitable', 2), ('book', 1), ('provides', 1), ('concise', 1), ('yet', 1), ('comprehensive', 1), ('overview', 1), ('computer', 1), ('internet', 1), ('security', 1), ('term', 1), ('introductory', 1), ('course', 1), ('junior', 1), ('senior', 1), ('undergrad', 1), ('first', 1), ('year', 1), ('graduate', 1), ('student', 1), ('self', 1), ('study', 1), ('anyone', 1), ('seeking', 1)]
[('game', 3), ('gamers', 3), ('video', 2), ('recent', 1), ('year', 1), ('seen', 1), ('increase', 1), ('public', 1), ('attention', 1), ('identity', 1), ('representation', 1), ('including', 1), ('journalist', 1), ('blogger', 1), ('holding', 1), ('digital', 1), ('industry', 1), ('accountable', 1), ('discrimination', 1), ('routinely', 1), ('endured', 1), ('female', 1), ('queer', 1), ('color', 1), ('developer', 1), ('responding', 1), ('critique', 1), ('scholarly', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('three', 1), ('confederated', 1), ('international', 1), ('conference', 1), ('cooperative', 1), ('information', 1), ('system', 1), ('coopis', 1), ('distributed', 1), ('object', 1), ('application', 1), ('secure', 1), ('virtual', 1), ('infrastructure', 1)]
[('new', 3), ('book', 2), ('present', 1), ('recent', 1), ('research', 1), ('using', 1), ('cognitive', 1), ('science', 1), ('apprehend', 1), ('risk', 1), ('situation', 1), ('elaborate', 1), ('organization', 1), ('system', 1), ('methodological', 1), ('tool', 1), ('response', 1), ('demonstrates', 1), ('reason', 1), ('advantage', 1), ('implication', 1)]
[('curve', 2), ('surface', 2), ('nurbs', 2), ('recently', 1), ('spline', 1), ('principally', 1), ('interest', 1), ('computer', 1), ('aided', 1), ('design', 1), ('community', 1), ('become', 1), ('standard', 1), ('description', 1), ('today', 1), ('seeing', 1), ('expanded', 1), ('use', 1), ('modeling', 1)]
[('dream', 2), ('personal', 1), ('motivation', 1), ('creating', 1), ('artificial', 1), ('device', 1), ('reach', 1), ('outperform', 1), ('human', 1), ('inteuigence', 1), ('old', 1), ('youth', 1), ('never', 1), ('left', 1), ('make', 1), ('challenge', 1), ('interesting', 1), ('solution', 1)]
[('first', 1), ('book', 1), ('integrates', 1), ('nonmonotonic', 1), ('reasoning', 1), ('belief', 1), ('change', 1), ('single', 1), ('framework', 1), ('artificial', 1), ('intelligence', 1), ('logic', 1), ('point', 1), ('view', 1), ('approach', 1), ('subject', 1), ('based', 1), ('powerful', 1), ('notion', 1), ('epistemic', 1), ('state', 1)]
[('nfc', 3), ('ist', 2), ('von', 2), ('und', 2), ('technologie', 2), ('da', 2), ('technik', 2), ('eine', 1), ('systematische', 1), ('weiterentwicklung', 1), ('kontaktloser', 1), ('smartcard', 1), ('reader', 1), ('buch', 1), ('anwendungen', 1), ('standardwerk', 1), ('zur', 1), ('e', 1), ('bietet', 1), ('einen', 1), ('umfassenden', 1), ('überblick', 1), ('über', 1), ('grundlagen', 1)]
[('analysis', 2), ('first', 1), ('textbook', 1), ('formal', 1), ('concept', 1), ('give', 1), ('systematic', 1), ('presentation', 1), ('mathematical', 1), ('foundation', 1), ('relation', 1), ('application', 1), ('computer', 1), ('science', 1), ('especially', 1), ('data', 1), ('knowledge', 1), ('processing', 1), ('present', 1)]
[('die', 4), ('und', 3), ('um', 3), ('diesis', 1), ('buch', 1), ('gibt', 1), ('eine', 1), ('einführung', 1), ('mathematische', 1), ('informatische', 1), ('modellierung', 1), ('sowie', 1), ('simulation', 1), ('al', 1), ('universelle', 1), ('methodik', 1), ('geht', 1), ('e', 1), ('klassen', 1), ('von', 1), ('modellen', 1), ('deren', 1), ('herleitung', 1), ('vielfalt', 1), ('beschreibungsarten', 1)]
[('agile', 3), ('team', 2), ('continuous', 2), ('improvement', 2), ('struggling', 1), ('concept', 1), ('first', 1), ('framework', 1), ('developed', 1), ('still', 1), ('little', 1), ('written', 1), ('practice', 1), ('environment', 1), ('although', 1)]
[('diesis', 2), ('und', 2), ('beitragswerk', 1), ('bringt', 1), ('vorreiter', 1), ('öffentliche', 1), ('meinungsbildner', 1), ('renommierte', 1), ('fachexperten', 1), ('zu', 1), ('fragestellungen', 1), ('de', 1), ('digitalen', 1), ('wandels', 1), ('zusammen', 1), ('bündelt', 1), ('deren', 1), ('blickwinkel', 1), ('auf', 1), ('entscheidende', 1), ('zukunftsthema', 1), ('somit', 1), ('beleuchten', 1), ('die', 1)]
[('computational', 1), ('geometry', 1), ('emerged', 1), ('field', 1), ('algorithm', 1), ('design', 1), ('anal', 1), ('ysis', 1), ('late', 1), ('grown', 1), ('recognized', 1), ('discipline', 1), ('journal', 1), ('conference', 1), ('large', 1), ('community', 1), ('active', 1), ('researcher', 1), ('suc', 1), ('ce', 1)]
[('die', 2), ('ist', 2), ('quantenwelt', 1), ('längst', 1), ('alltag', 1), ('angekommen', 1), ('ohne', 1), ('das', 1), ('e', 1), ('vielen', 1), ('bewusst', 1), ('dazu', 1), ('gehören', 1), ('transistoren', 1), ('dioden', 1), ('und', 1), ('laser', 1), ('au', 1), ('alltagsgeräten', 1), ('nicht', 1), ('mehr', 1), ('fortzudenken', 1), ('sind', 1), ('nach', 1), ('dieser', 1), ('ersten', 1), ('generation', 1), ('der', 1), ('quantentechnologien', 1), ('leben', 1), ('wir', 1)]
[('der', 5), ('und', 3), ('bibliothek', 2), ('mediengestaltung', 2), ('die', 2), ('von', 2), ('dieser', 1), ('band', 1), ('behandelt', 1), ('nbsp', 1), ('theorie', 1), ('praxis', 1), ('verwendung', 1), ('farben', 1), ('produktion', 1), ('digital', 1), ('printmedien', 1), ('für', 1), ('diese', 1), ('wurden', 1), ('themen', 1), ('de', 1), ('kompendiums', 1)]
[('seal', 2), ('lncs', 1), ('volume', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('th', 1), ('int', 1), ('nationalconference', 1), ('simulated', 1), ('evolutionand', 1), ('learning', 1), ('held', 1), ('december', 1), ('melbourne', 1), ('australia', 1), ('prestigious', 1), ('international', 1), ('conference', 1), ('series', 1)]
[('petri', 3), ('net', 3), ('conference', 2), ('volume', 1), ('contains', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('application', 1), ('theory', 1), ('model', 1), ('concurrency', 1), ('icatpn', 1), ('serve', 1), ('discus', 1), ('yearly', 1), ('progress', 1), ('eld', 1)]
[('computer', 3), ('algorithm', 1), ('essential', 1), ('building', 1), ('block', 1), ('application', 1), ('advancement', 1), ('hardware', 1), ('render', 1), ('traditional', 1), ('model', 1), ('unrealistic', 1), ('increasing', 1), ('demand', 1), ('efficient', 1), ('solution', 1), ('actual', 1), ('real', 1)]
[('petri', 2), ('net', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('application', 1), ('theory', 1), ('concurrency', 1), ('held', 1), ('milan', 1), ('italy', 1), ('june', 1), ('regular', 1), ('tool', 1), ('presented', 1)]
[('die', 3), ('buch', 2), ('erläutert', 2), ('und', 2), ('datenbanken', 2), ('diesis', 1), ('theorie', 1), ('praxis', 1), ('zu', 1), ('relationalen', 1), ('sind', 1), ('relationale', 1), ('antwort', 1), ('darauf', 1), ('geben', 1), ('theoretischen', 1), ('grundlagen', 1), ('praxisbeispiele', 1), ('diesem', 1), ('zunächst', 1), ('thomas', 1), ('studer', 1), ('mathematisch', 1)]
[('software', 4), ('process', 2), ('engineering', 2), ('concept', 1), ('heart', 1), ('system', 1), ('model', 1), ('integrate', 1), ('method', 1), ('technique', 1), ('basis', 1), ('managing', 1), ('large', 1), ('scale', 1), ('project', 1), ('high', 1), ('product', 1), ('quality', 1)]
[('rstudio', 2), ('practitioner', 2), ('objective', 1), ('text', 1), ('introduce', 1), ('student', 1), ('enable', 1), ('use', 1), ('everyday', 1), ('work', 1), ('statistical', 1), ('textbook', 1), ('purpose', 1), ('transmit', 1), ('joy', 1), ('analyzing', 1), ('data', 1)]
[('pleased', 1), ('positive', 1), ('resonance', 1), ('book', 1), ('necessitates', 1), ('fourth', 1), ('edition', 1), ('used', 1), ('opportunity', 1), ('implement', 1), ('correction', 1), ('misprint', 1), ('amendment', 1), ('several', 1), ('place', 1), ('extend', 1), ('improve', 1), ('discussion', 1), ('many', 1)]
[('static', 3), ('analysis', 3), ('program', 2), ('self', 1), ('contained', 1), ('introduction', 1), ('abstract', 1), ('interpretation', 1), ('based', 1), ('essential', 1), ('resource', 1), ('student', 1), ('developer', 1), ('user', 1), ('aim', 1), ('discover', 1), ('semantic', 1), ('property', 1), ('without', 1)]
[('music', 2), ('expanded', 1), ('updated', 1), ('fully', 1), ('revised', 1), ('mdash', 1), ('definitive', 1), ('introduction', 1), ('electronic', 1), ('ready', 1), ('new', 1), ('generation', 1), ('student', 1), ('essential', 1), ('state', 1), ('art', 1), ('computer', 1), ('tutorial', 1), ('second', 1), ('edition', 1), ('singular', 1), ('text', 1), ('introduces', 1)]
[('computer', 2), ('easy', 1), ('follow', 1), ('introduction', 1), ('science', 1), ('reveals', 1), ('familiar', 1), ('story', 1), ('hansel', 1), ('gretel', 1), ('sherlock', 1), ('holmes', 1), ('harry', 1), ('potter', 1), ('illustrate', 1), ('concept', 1), ('everyday', 1), ('relevance', 1), ('computing', 1), ('picture', 1), ('scientist', 1), ('staring', 1)]
[('scheme', 3), ('thoroughly', 1), ('updated', 1), ('expanded', 1), ('edition', 1), ('brings', 1), ('popular', 1), ('introductory', 1), ('text', 1), ('reference', 1), ('date', 1), ('current', 1), ('standard', 1), ('revised', 1), ('report', 1), ('general', 1), ('purpose', 1), ('programming', 1), ('language', 1), ('descended', 1), ('algol', 1)]
[('alan', 2), ('turing', 2), ('accessible', 1), ('fascinating', 1), ('exploration', 1), ('rsquo', 1), ('mathematical', 1), ('theory', 1), ('gave', 1), ('rise', 1), ('modern', 1), ('computer', 1), ('science', 1), ('application', 1), ('mdash', 1), ('desktop', 1), ('cell', 1), ('phone', 1), ('year', 1), ('old', 1), ('wrote', 1)]
[('data', 2), ('system', 2), ('nbsp', 2), ('empower', 1), ('community', 1), ('user', 1), ('centric', 1), ('ownership', 1), ('transparent', 1), ('accountable', 1), ('algorithm', 1), ('secure', 1), ('digital', 1), ('transaction', 1), ('central', 1), ('economy', 1), ('government', 1), ('health', 1), ('mdash', 1)]
[('logic', 2), ('testing', 2), ('verification', 2), ('software', 2), ('digital', 2), ('circuit', 2), ('introduction', 1), ('applying', 1), ('predicate', 1), ('focus', 1), ('application', 1), ('rather', 1), ('theory', 1), ('computer', 1), ('scientist', 1), ('use', 1)]
[('information', 4), ('study', 2), ('human', 2), ('interaction', 2), ('fresh', 1), ('research', 1), ('approach', 1), ('bridge', 1), ('design', 1), ('system', 1), ('hii', 1), ('emerging', 1), ('area', 1), ('investigates', 1), ('interact', 1)]
[('ability', 2), ('insightful', 1), ('investigation', 1), ('mechanism', 1), ('underlying', 1), ('predictive', 1), ('function', 1), ('neural', 1), ('network', 1), ('mdash', 1), ('chart', 1), ('new', 1), ('path', 1), ('ai', 1), ('prediction', 1), ('cognitive', 1), ('advantage', 1), ('others', 1), ('inherently', 1), ('linked', 1)]
[('game', 4), ('design', 2), ('framework', 2), ('impassioned', 1), ('look', 1), ('offer', 1), ('ambitious', 1), ('understanding', 1), ('date', 1), ('pop', 1), ('culture', 1), ('important', 1), ('film', 1), ('television', 1), ('yet', 1), ('develop', 1), ('theoretical', 1)]
[('cloud', 3), ('computing', 2), ('business', 2), ('represents', 1), ('paradigm', 1), ('shift', 1), ('user', 1), ('best', 1), ('take', 1), ('advantage', 1), ('service', 1), ('information', 1), ('available', 1), ('either', 1), ('highly', 1), ('technical', 1), ('detail', 1), ('irrelevant', 1)]
[('cloud', 4), ('digital', 2), ('militarized', 1), ('legacy', 1), ('grew', 1), ('older', 1), ('network', 1), ('technology', 1), ('politics', 1), ('imagine', 1), ('placeless', 1), ('mute', 1), ('ethereal', 1), ('unmediated', 1), ('yet', 1), ('reality', 1), ('embodied', 1), ('thousand', 1)]
[('proof', 3), ('step', 2), ('introduction', 1), ('writing', 1), ('computer', 1), ('program', 1), ('written', 1), ('accessible', 1), ('question', 1), ('answer', 1), ('style', 1), ('complete', 1), ('example', 1), ('simple', 1), ('assistant', 1), ('little', 1), ('prover', 1), ('introduces', 1), ('inductive', 1), ('way', 1), ('determine', 1)]
[('updated', 2), ('revised', 2), ('comprehensive', 1), ('overview', 1), ('concept', 1), ('related', 1), ('cloud', 1), ('computing', 1), ('including', 1), ('recent', 1), ('application', 1), ('innovation', 1), ('future', 1), ('evolution', 1), ('essential', 1), ('knowledge', 1), ('volume', 1), ('nayan', 1), ('ruparelia', 1), ('provides', 1)]
[('online', 2), ('game', 2), ('odyssey', 1), ('group', 1), ('ldquo', 1), ('refugee', 1), ('rdquo', 1), ('closed', 1), ('exploration', 1), ('emergent', 1), ('fan', 1), ('culture', 1), ('virtual', 1), ('world', 1), ('play', 1), ('community', 1), ('existed', 1), ('long', 1), ('massively', 1), ('multiplayer', 1), ('ranged', 1), ('bridge', 1)]
[('artificial', 2), ('intelligence', 2), ('technology', 2), ('enables', 2), ('computer', 2), ('vision', 2), ('accessible', 1), ('introduction', 1), ('speech', 1), ('recognition', 1), ('machine', 1), ('translation', 1), ('driverless', 1), ('car', 1), ('deep', 1), ('learning', 1)]
[('new', 1), ('approach', 1), ('teaching', 1), ('computing', 1), ('technology', 1), ('ethic', 1), ('using', 1), ('science', 1), ('fiction', 1), ('story', 1), ('autonomous', 1), ('weapon', 1), ('legal', 1), ('cared', 1), ('robot', 1), ('old', 1), ('age', 1), ('efficiency', 1), ('online', 1), ('banking', 1), ('outweigh', 1), ('risk', 1), ('theft', 1)]
[('new', 3), ('edition', 1), ('classic', 1), ('primer', 1), ('psychology', 1), ('computation', 1), ('introduction', 1), ('epilogue', 1), ('extensive', 1), ('note', 1), ('added', 1), ('original', 1), ('text', 1), ('second', 1), ('self', 1), ('sherry', 1), ('turkle', 1), ('look', 1), ('computer', 1), ('tool', 1), ('part', 1)]
[('machine', 2), ('joy', 1), ('telling', 1), ('heart', 1), ('desire', 1), ('informative', 1), ('accessible', 1), ('funny', 1), ('book', 1), ('michael', 1), ('nbsp', 1), ('littman', 1), ('inspires', 1), ('reader', 1), ('learn', 1), ('tell', 1), ('rather', 1), ('give', 1)]
[('activity', 3), ('theory', 3), ('systematic', 1), ('presentation', 1), ('application', 1), ('interaction', 1), ('design', 1), ('argument', 1), ('development', 1), ('basis', 1), ('understanding', 1), ('interact', 1), ('technology', 1), ('hold', 1), ('human', 1), ('mind', 1)]
[('comprehensive', 1), ('introduction', 1), ('mathematical', 1), ('foundation', 1), ('movement', 1), ('actuation', 1), ('apply', 1), ('equally', 1), ('animal', 1), ('machine', 1), ('textbook', 1), ('offer', 1), ('computational', 1), ('framework', 1), ('sensorimotor', 1), ('stage', 1), ('development', 1), ('applied', 1), ('robotics', 1)]
[('compiler', 3), ('hand', 1), ('approach', 1), ('understanding', 1), ('building', 1), ('using', 1), ('programming', 1), ('language', 1), ('python', 1), ('notoriously', 1), ('difficult', 1), ('program', 1), ('teach', 1), ('understand', 1), ('nbsp', 1), ('book', 1), ('dedicate', 1), ('chapter', 1), ('progressive', 1), ('stage', 1)]
[('digital', 2), ('medium', 2), ('pixel', 1), ('organizing', 1), ('principle', 1), ('picture', 1), ('cave', 1), ('painting', 1), ('toy', 1), ('story', 1), ('convergence', 1), ('type', 1), ('universal', 1), ('occurred', 1), ('little', 1), ('fanfare', 1), ('recent', 1), ('turn', 1), ('millennium', 1), ('bit', 1)]
[('high', 3), ('school', 3), ('technological', 1), ('change', 1), ('reshaping', 1), ('future', 1), ('work', 1), ('transform', 1), ('american', 1), ('education', 1), ('look', 1), ('twenty', 1), ('year', 1), ('student', 1), ('educated', 1), ('today', 1), ('take', 1), ('place', 1)]
[('data', 2), ('method', 2), ('book', 1), ('intersection', 1), ('science', 1), ('medium', 1), ('study', 1), ('presenting', 1), ('concept', 1), ('computational', 1), ('analysis', 1), ('cultural', 1), ('see', 1), ('billion', 1), ('image', 1), ('analytical', 1), ('bring', 1), ('bear', 1), ('astonishing', 1), ('scale', 1)]
[('quantum', 2), ('thorough', 1), ('exposition', 1), ('computing', 1), ('underlying', 1), ('concept', 1), ('physic', 1), ('explanation', 1), ('relevant', 1), ('mathematics', 1), ('numerous', 1), ('example', 1), ('combination', 1), ('twentieth', 1), ('century', 1), ('influential', 1), ('revolutionary', 1)]
[('introductory', 2), ('text', 2), ('algorithmic', 2), ('driving', 2), ('advance', 2), ('bioinformatics', 2), ('emphasizes', 1), ('underlying', 1), ('idea', 1), ('offer', 1), ('clear', 1), ('exposition', 1), ('principle', 1), ('accessible', 1)]
[('expert', 1), ('mind', 1), ('considers', 1), ('animal', 1), ('smart', 1), ('machine', 1), ('measure', 1), ('human', 1), ('intelligence', 1), ('octopus', 1), ('open', 1), ('jar', 1), ('food', 1), ('chimpanzee', 1), ('plan', 1), ('future', 1), ('ibm', 1), ('computer', 1), ('named', 1), ('watson', 1), ('jeopardy', 1), ('alexa', 1), ('know', 1), ('favorite', 1)]
[('ai', 2), ('revolution', 2), ('business', 2), ('web', 1), ('scale', 1), ('network', 1), ('autonomous', 1), ('micromanagers', 1), ('challenge', 1), ('combat', 1), ('high', 1), ('cost', 1), ('quantitative', 1), ('optimization', 1), ('artificial', 1), ('intelligence', 1), ('leaving', 1), ('behind', 1), ('small', 1), ('organization', 1)]
[('openmp', 3), ('programmer', 2), ('twenty', 2), ('essential', 2), ('component', 2), ('become', 1), ('parallel', 1), ('learning', 1), ('book', 1), ('guide', 1), ('reader', 1), ('element', 1), ('use', 1), ('time', 1)]
[('original', 2), ('stop', 2), ('trying', 2), ('embrace', 2), ('influence', 2), ('instead', 2), ('please', 1), ('note', 1), ('companion', 1), ('version', 1), ('book', 1), ('running', 1), ('away', 1), ('make', 1), ('something', 1), ('nothing', 1), ('mix', 1), ('choose', 1), ('allow', 1), ('life', 1), ('result', 1)]
[('social', 2), ('medium', 2), ('fbi', 2), ('book', 1), ('explores', 1), ('total', 1), ('information', 1), ('awareness', 1), ('empowered', 1), ('citizen', 1), ('academy', 1), ('february', 1), ('asked', 1), ('january', 1), ('capitol', 1), ('riot', 1), ('organized', 1), ('led', 1), ('unprecedented', 1), ('ban', 1), ('sitting', 1)]
[('cyberterrorism', 2), ('first', 1), ('book', 1), ('present', 1), ('multidisciplinary', 1), ('approach', 1), ('trace', 1), ('threat', 1), ('posed', 1), ('today', 1), ('chapter', 1), ('discussing', 1), ('possible', 1), ('technological', 1), ('vulnerability', 1), ('potential', 1), ('motivation', 1), ('engage', 1)]
[('detailed', 2), ('knowledge', 2), ('comprehensive', 1), ('reference', 1), ('provides', 1), ('reader', 1), ('working', 1), ('mathematica', 1), ('general', 1), ('key', 1), ('aspect', 1), ('needed', 1), ('create', 1), ('fastest', 1), ('shortest', 1), ('elegant', 1), ('implementation', 1), ('possible', 1), ('give', 1)]
[('applied', 2), ('business', 2), ('statistic', 2), ('microsoft', 2), ('excel', 2), ('step', 2), ('management', 1), ('using', 1), ('first', 1), ('book', 1), ('illustrate', 1), ('capability', 1), ('teach', 1), ('effectively', 1), ('exercise', 1), ('driven', 1), ('guide', 1), ('student', 1)]
[('lt', 3), ('gt', 3), ('new', 2), ('present', 1), ('unique', 1), ('foundation', 1), ('producing', 1), ('almost', 1), ('every', 1), ('quantitative', 1), ('graphic', 1), ('found', 1), ('scientific', 1), ('journal', 1), ('newspaper', 1), ('statistical', 1), ('package', 1), ('data', 1), ('visualization', 1), ('system', 1), ('edition', 1), ('feature', 1), ('six', 1), ('chapter', 1)]
[('internet', 2), ('cutting', 1), ('edge', 1), ('cultural', 1), ('commentator', 1), ('documentary', 1), ('filmmaker', 1), ('bold', 1), ('brilliant', 1), ('challenge', 1), ('cherished', 1), ('notion', 1), ('democratizing', 1), ('force', 1), ('age', 1), ('hailed', 1), ('place', 1)]
[('done', 1), ('right', 1), ('money', 1), ('influence', 1), ('made', 1), ('podcasting', 1), ('simply', 1), ('pas', 1), ('discover', 1), ('secret', 1), ('many', 1), ('ignored', 1)]
[('handbook', 2), ('podcast', 2), ('cover', 2), ('comprehensive', 1), ('overview', 1), ('burgeoning', 1), ('industry', 1), ('history', 1), ('podcasting', 1), ('root', 1), ('radio', 1), ('variety', 1), ('genre', 1), ('topic', 1), ('style', 1), ('today', 1), ('podcasts', 1), ('individual', 1), ('corporate', 1), ('step', 1), ('required', 1), ('build', 1), ('element', 1), ('needed', 1), ('create', 1)]
[('security', 2), ('information', 2), ('threat', 1), ('pervade', 1), ('fabric', 1), ('everyday', 1), ('life', 1), ('vulnerable', 1), ('system', 1), ('describes', 1), ('even', 1), ('demand', 1), ('increase', 1), ('need', 1), ('society', 1), ('met', 1), ('result', 1), ('confidentiality', 1), ('personal', 1), ('data', 1), ('integrity', 1), ('election', 1), ('stability', 1), ('foreign', 1), ('relation', 1)]
[('deeply', 1), ('informed', 1), ('yet', 1), ('playful', 1), ('ironic', 1), ('look', 1), ('internet', 1), ('changed', 1), ('human', 1), ('experience', 1), ('memory', 1), ('sense', 1), ('self', 1), ('belongs', 1), ('shelf', 1), ('best', 1), ('writing', 1), ('roland', 1), ('barthes', 1), ('jean', 1), ('baudrillard', 1), ('ldquo', 1), ('day', 1)]
[('chapter', 2), ('textbook', 1), ('course', 1), ('expert', 1), ('system', 1), ('emphasis', 1), ('placed', 1), ('selection', 1), ('material', 1), ('option', 1), ('using', 1), ('additional', 1), ('commercially', 1), ('available', 1), ('sheu', 1), ('programming', 1), ('project', 1)]
[('encryption', 2), ('practical', 1), ('guide', 1), ('modern', 1), ('break', 1), ('fundamental', 1), ('mathematical', 1), ('concept', 1), ('heart', 1), ('cryptography', 1), ('without', 1), ('shying', 1), ('away', 1), ('meaty', 1), ('discussion', 1), ('work', 1), ('rsquo', 1), ('learn', 1), ('authenticated', 1), ('secure', 1)]
[('internet', 2), ('accessible', 1), ('comic', 1), ('book', 1), ('illustrated', 1), ('introduction', 1), ('work', 1), ('hood', 1), ('designed', 1), ('give', 1), ('basic', 1), ('understanding', 1), ('technical', 1), ('aspect', 1), ('need', 1), ('order', 1), ('advocate', 1), ('digital', 1), ('right', 1)]
[('library', 2), ('fast', 1), ('paced', 1), ('thorough', 1), ('introduction', 1), ('modern', 1), ('written', 1), ('experienced', 1), ('programmer', 1), ('reading', 1), ('nbsp', 1), ('crash', 1), ('course', 1), ('proficient', 1), ('core', 1), ('language', 1), ('concept', 1), ('standard', 1), ('boost', 1)]
[('hacker', 2), ('written', 1), ('hand', 1), ('book', 1), ('teach', 1), ('penetration', 1), ('tester', 1), ('identify', 1), ('vulnerability', 1), ('apps', 1), ('use', 1), ('graphql', 1), ('data', 1), ('query', 1), ('manipulation', 1), ('language', 1), ('apis', 1), ('adopted', 1), ('major', 1), ('company', 1), ('facebook', 1), ('github', 1), ('black', 1), ('hat', 1)]
[('cyber', 2), ('attack', 2), ('nation', 2), ('state', 2), ('practical', 1), ('guide', 1), ('understanding', 1), ('analyzing', 1), ('advanced', 1), ('attacker', 1), ('longer', 1), ('domain', 1), ('petty', 1), ('criminal', 1), ('today', 1), ('company', 1), ('find', 1), ('targeted', 1), ('sophisticated', 1)]
[('language', 2), ('programmer', 2), ('python', 2), ('complete', 1), ('core', 1), ('existing', 1), ('dead', 1), ('simple', 1), ('thorough', 1), ('introduction', 1), ('every', 1), ('feature', 1), ('impatient', 1), ('write', 1), ('production', 1), ('code', 1), ('instead', 1), ('revisiting', 1), ('elementary', 1), ('computer', 1), ('science', 1)]
[('bug', 2), ('want', 2), ('learn', 1), ('break', 1), ('website', 1), ('real', 1), ('world', 1), ('hunting', 1), ('premier', 1), ('field', 1), ('guide', 1), ('finding', 1), ('software', 1), ('whether', 1), ('cyber', 1), ('security', 1), ('beginner', 1), ('make', 1), ('internet', 1), ('safer', 1), ('seasoned', 1), ('developer', 1)]
[('eight', 2), ('principle', 2), ('code', 2), ('learn', 1), ('simplify', 1), ('become', 1), ('effective', 1), ('successful', 1), ('programmer', 1), ('software', 1), ('developer', 1), ('waste', 1), ('thousand', 1), ('hour', 1), ('working', 1), ('overly', 1), ('complex', 1), ('core', 1), ('art', 1), ('clean', 1), ('coding', 1)]
[('application', 2), ('high', 1), ('level', 1), ('overview', 1), ('information', 1), ('security', 1), ('field', 1), ('cover', 1), ('key', 1), ('concept', 1), ('confidentiality', 1), ('integrity', 1), ('availability', 1), ('dive', 1), ('practical', 1), ('idea', 1), ('area', 1), ('operational', 1), ('physical', 1), ('network', 1)]
[('code', 4), ('level', 3), ('low', 2), ('computer', 2), ('understand', 2), ('explains', 1), ('compiler', 1), ('translate', 1), ('high', 1), ('language', 1), ('source', 1), ('written', 1), ('python', 1), ('machine', 1), ('help', 1), ('reader', 1), ('produce', 1), ('best', 1), ('readable', 1)]
[('container', 2), ('hand', 1), ('guidebook', 1), ('inner', 1), ('working', 1), ('peel', 1), ('back', 1), ('layer', 1), ('provide', 1), ('deep', 1), ('understanding', 1), ('containerization', 1), ('change', 1), ('way', 1), ('program', 1), ('run', 1), ('kubernetes', 1), ('provides', 1), ('computing', 1), ('networking', 1)]
[('liner', 3), ('python', 2), ('useful', 2), ('programmer', 1), ('improve', 1), ('computer', 1), ('science', 1), ('skill', 1), ('teach', 1), ('write', 1), ('concise', 1), ('statement', 1), ('functionality', 1), ('packed', 1), ('single', 1), ('line', 1), ('code', 1)]
[('tag', 1), ('along', 1), ('master', 1), ('hacker', 1), ('truly', 1), ('memorable', 1), ('attack', 1), ('reconnaissance', 1), ('infiltration', 1), ('rsquo', 1), ('experience', 1), ('every', 1), ('thought', 1), ('frustration', 1), ('strategic', 1), ('decision', 1), ('making', 1), ('first', 1), ('hand', 1), ('exhilarating', 1), ('narrative', 1), ('journey', 1)]
[('rsquo', 3), ('program', 2), ('best', 1), ('selling', 1), ('author', 1), ('al', 1), ('sweigart', 1), ('nbsp', 1), ('show', 1), ('easily', 1), ('build', 1), ('fun', 1), ('minimal', 1), ('code', 1), ('maximum', 1), ('creativity', 1), ('mastered', 1), ('basic', 1), ('python', 1), ('syntax', 1), ('ready', 1), ('start', 1), ('writing', 1), ('find', 1)]
[('gnu', 1), ('make', 1), ('widely', 1), ('used', 1), ('build', 1), ('automation', 1), ('tool', 1), ('challenging', 1), ('master', 1), ('terse', 1), ('language', 1), ('tough', 1), ('parse', 1), ('even', 1), ('experienced', 1), ('programmer', 1), ('run', 1), ('difficulty', 1), ('face', 1), ('long', 1), ('involved', 1), ('struggle', 1), ('often', 1)]
[('comprehensive', 1), ('guide', 1), ('threat', 1), ('facing', 1), ('apple', 1), ('computer', 1), ('foundational', 1), ('knowledge', 1), ('needed', 1), ('nbsp', 1), ('become', 1), ('proficient', 1), ('mac', 1), ('malware', 1), ('analyst', 1), ('defender', 1), ('fully', 1), ('understand', 1), ('malicious', 1), ('software', 1), ('work', 1), ('hope', 1), ('stay', 1), ('ahead', 1)]
[('algorithm', 4), ('dive', 2), ('broad', 1), ('introduction', 1), ('using', 1), ('python', 1), ('programming', 1), ('language', 1), ('wide', 1), ('ranging', 1), ('pythonic', 1), ('tour', 1), ('many', 1), ('world', 1), ('interesting', 1), ('little', 1), ('bit', 1), ('computer', 1)]
[('system', 2), ('updated', 1), ('edition', 1), ('michael', 1), ('lucas', 1), ('definitive', 1), ('volume', 1), ('freebsd', 1), ('based', 1), ('add', 1), ('coverage', 1), ('modern', 1), ('disk', 1), ('zfs', 1), ('filesystem', 1), ('ipv', 1), ('redesigned', 1), ('jail', 1), ('packaging', 1), ('virtualization', 1), ('among', 1), ('dozen', 1), ('new', 1), ('feature', 1), ('added', 1), ('last', 1)]
[('computer', 3), ('step', 2), ('kid', 1), ('gave', 1), ('senior', 1), ('full', 1), ('color', 1), ('guide', 1), ('take', 1), ('way', 1), ('pressing', 1), ('button', 1), ('new', 1), ('confident', 1), ('user', 1), ('send', 1), ('email', 1), ('family', 1)]
[('assembly', 4), ('language', 4), ('art', 3), ('hyde', 2), ('new', 1), ('programming', 1), ('book', 1), ('loved', 1), ('master', 1), ('bit', 1), ('capitalizes', 1), ('long', 1), ('lived', 1), ('success', 1), ('seminal', 1), ('randall', 1), ('go', 1)]
[('devops', 3), ('need', 2), ('desperate', 1), ('hand', 1), ('nonsense', 1), ('guide', 1), ('land', 1), ('environment', 1), ('running', 1), ('quickly', 1), ('book', 1), ('introduces', 1), ('fundamental', 1), ('concept', 1), ('software', 1), ('developer', 1), ('know', 1), ('flourish', 1), ('modern', 1)]
[('computer', 2), ('hand', 1), ('tutorial', 1), ('broad', 1), ('examination', 1), ('modern', 1), ('work', 1), ('classroom', 1), ('tested', 1), ('decade', 1), ('give', 1), ('reader', 1), ('firm', 1), ('understanding', 1), ('covering', 1), ('essential', 1), ('data', 1), ('storage', 1), ('logic', 1), ('gate', 1)]
[('data', 2), ('sql', 2), ('language', 2), ('analyze', 1), ('pro', 1), ('even', 1), ('rsquo', 1), ('beginner', 1), ('practical', 1), ('approachable', 1), ('fast', 1), ('paced', 1), ('guide', 1), ('structured', 1), ('query', 1), ('standard', 1), ('programming', 1), ('defining', 1), ('organizing', 1), ('exploring', 1), ('relational', 1)]
[('bug', 2), ('bounty', 2), ('learn', 2), ('bootcamp', 1), ('teach', 1), ('hack', 1), ('web', 1), ('application', 1), ('perform', 1), ('reconnaissance', 1), ('target', 1), ('identify', 1), ('vulnerability', 1), ('exploit', 1), ('rsquo', 1), ('navigate', 1), ('program', 1), ('set', 1)]
[('bare', 2), ('program', 2), ('embedded', 2), ('learn', 2), ('metal', 1), ('teach', 1), ('system', 1), ('programming', 1), ('language', 1), ('rsquo', 1), ('interact', 1), ('hardware', 1), ('directly', 1), ('go', 1), ('behind', 1), ('scene', 1), ('compiler', 1), ('linker', 1), ('feature', 1)]
[('project', 2), ('python', 2), ('based', 1), ('approach', 1), ('learning', 1), ('programming', 1), ('beginner', 1), ('intriguing', 1), ('teach', 1), ('tackle', 1), ('challenging', 1), ('problem', 1), ('code', 1), ('mastered', 1), ('basic', 1), ('ready', 1), ('explore', 1), ('powerful', 1), ('tool', 1)]
[('new', 2), ('software', 2), ('engineer', 2), ('rsquo', 2), ('key', 1), ('concept', 1), ('best', 1), ('practice', 1), ('nbsp', 1), ('mdash', 1), ('stuff', 1), ('critical', 1), ('workplace', 1), ('success', 1), ('taught', 1), ('school', 1), ('knowing', 1), ('program', 1), ('half', 1), ('battle', 1)]
[('engineering', 2), ('software', 2), ('code', 2), ('third', 1), ('volume', 1), ('landmark', 1), ('write', 1), ('series', 1), ('randall', 1), ('hyde', 1), ('help', 1), ('create', 1), ('readable', 1), ('maintainable', 1), ('generate', 1), ('awe', 1), ('fellow', 1), ('programmer', 1), ('field', 1), ('value', 1), ('team', 1)]
[('system', 2), ('good', 1), ('administrator', 1), ('recognize', 1), ('problem', 1), ('long', 1), ('anyone', 1), ('asks', 1), ('hey', 1), ('internet', 1), ('nagios', 1), ('open', 1), ('source', 1), ('network', 1), ('monitoring', 1), ('tool', 1), ('emerged', 1), ('popular', 1), ('solution', 1), ('sys', 1), ('admins', 1), ('organization', 1), ('size', 1)]
[('internet', 2), ('deep', 1), ('dive', 1), ('political', 1), ('root', 1), ('advertising', 1), ('contemporary', 1), ('de', 1), ('facto', 1), ('business', 1), ('model', 1), ('surveillance', 1), ('browser', 1), ('cooky', 1), ('follow', 1), ('around', 1), ('web', 1), ('amazon', 1), ('target', 1), ('eerily', 1), ('prescient', 1), ('ad', 1), ('facebook', 1), ('google', 1), ('message', 1), ('analyze', 1), ('pattern', 1), ('apps', 1), ('record', 1), ('every', 1), ('move', 1), ('profit', 1)]
[('third', 1), ('edition', 1), ('completely', 1), ('revised', 1), ('updated', 1), ('reference', 1), ('provides', 1), ('thorough', 1), ('comprehensive', 1), ('introduction', 1), ('ssl', 1), ('tl', 1), ('dtls', 1), ('protocol', 1), ('explaining', 1), ('detail', 1), ('technical', 1), ('subtlety', 1), ('showing', 1), ('current', 1), ('design', 1), ('help', 1), ('mitigate', 1), ('attack', 1), ('made', 1), ('press', 1), ('headline', 1), ('past', 1), ('book', 1), ('tell', 1), ('complete', 1)]
[('scm', 3), ('control', 2), ('software', 2), ('development', 2), ('process', 2), ('take', 1), ('new', 1), ('book', 1), ('comprehensive', 1), ('explanation', 1), ('configuration', 1), ('management', 1), ('provides', 1), ('everything', 1), ('need', 1), ('know', 1), ('basic', 1), ('definition', 1), ('scientific', 1), ('tool', 1), ('brings', 1), ('procedure', 1), ('implementation', 1)]
[('language', 4), ('need', 2), ('programmer', 1), ('born', 1), ('made', 1), ('industry', 1), ('moving', 1), ('object', 1), ('oriented', 1), ('functional', 1), ('commit', 1), ('radical', 1), ('improvement', 1), ('new', 1), ('programming', 1), ('arm', 1), ('tool', 1), ('idiom', 1), ('refine', 1), ('craft', 1), ('primer', 1), ('take', 1), ('basic', 1), ('installation', 1), ('hello', 1), ('world', 1)]
[('internet', 2), ('see', 1), ('increasingly', 1), ('know', 1), ('importantly', 1), ('make', 1), ('work', 1), ('way', 1), ('real', 1), ('power', 1), ('lay', 1), ('supposed', 1), ('thing', 1), ('revolution', 1), ('dream', 1), ('curdles', 1)]
[('crystal', 3), ('ruby', 2), ('programmer', 1), ('want', 1), ('performance', 1), ('developer', 1), ('enjoy', 1), ('working', 1), ('high', 1), ('level', 1), ('scripting', 1), ('environment', 1), ('combine', 1), ('native', 1), ('execution', 1), ('speed', 1), ('concurrency', 1), ('syntax', 1), ('feel', 1), ('right', 1), ('home', 1), ('book', 1), ('first', 1), ('available', 1), ('show', 1), ('write', 1), ('application', 1), ('beauty', 1)]
[('creator', 3), ('fast', 2), ('phoenix', 2), ('accept', 1), ('compromise', 1), ('beautiful', 1), ('chris', 1), ('mccord', 1), ('elixir', 1), ('jose', 1), ('valim', 1), ('award', 1), ('winning', 1), ('author', 1), ('bruce', 1), ('tate', 1), ('walk', 1), ('building', 1), ('application', 1), ('reliable', 1), ('every', 1), ('step', 1), ('learn', 1), ('packed', 1), ('insider', 1)]
[('data', 4), ('core', 3), ('powerful', 2), ('apple', 1), ('storage', 1), ('framework', 1), ('built', 1), ('integrate', 1), ('icloud', 1), ('discover', 1), ('capability', 1), ('learn', 1), ('fundamental', 1), ('principle', 1), ('including', 1), ('thread', 1), ('memory', 1), ('management', 1), ('add', 1), ('io', 1), ('o', 1), ('project', 1), ('example', 1), ('edition', 1), ('based', 1), ('objective', 1)]
[('level', 2), ('basic', 2), ('excel', 2), ('written', 1), ('question', 1), ('answer', 1), ('format', 1), ('lowest', 1), ('beginner', 1), ('book', 1), ('cover', 1), ('extreme', 1), ('using', 1), ('spreadsheet', 1), ('instead', 1), ('delving', 1), ('advanced', 1), ('topic', 1), ('scare', 1), ('novice', 1), ('away', 1), ('guide', 1), ('start', 1), ('quickly', 1), ('providing', 1), ('passable', 1), ('knowledge', 1), ('program', 1), ('allowing', 1), ('user', 1), ('overcome', 1)]
[('table', 3), ('excel', 2), ('creating', 1), ('allows', 1), ('easier', 1), ('formatting', 1), ('reporting', 1), ('new', 1), ('syntax', 1), ('implies', 1), ('intimidating', 1), ('uninitiated', 1), ('guide', 1), ('developer', 1), ('official', 1), ('microsoft', 1), ('template', 1), ('employ', 1), ('help', 1), ('introduce', 1), ('reader', 1), ('multiple', 1), ('benefit', 1), ('book', 1), ('begin', 1), ('explaining', 1)]
[('excel', 4), ('many', 2), ('new', 2), ('formula', 2), ('book', 1), ('microsoft', 1), ('version', 1), ('history', 1), ('power', 1), ('feature', 1), ('possibility', 1), ('calculation', 1), ('engine', 1), ('built', 1), ('function', 1), ('creating', 1), ('solution', 1), ('business', 1), ('model', 1), ('dramatically', 1), ('easier', 1), ('time', 1)]
[('lean', 2), ('need', 2), ('real', 2), ('know', 1), ('agile', 1), ('development', 1), ('buzzword', 1), ('book', 1), ('system', 1), ('serious', 1), ('overhaul', 1), ('see', 1), ('work', 1), ('life', 1), ('situation', 1), ('trench', 1), ('actual', 1), ('practice', 1), ('every', 1), ('key', 1), ('point', 1), ('illustrated', 1), ('photo', 1), ('diagram', 1), ('anecdote', 1), ('bring', 1), ('inside', 1), ('project', 1)]
[('full', 2), ('project', 2), ('printed', 1), ('color', 1), ('book', 1), ('targeted', 1), ('beginner', 1), ('computing', 1), ('programming', 1), ('part', 1), ('small', 1), ('electronics', 1), ('setting', 1), ('web', 1), ('server', 1), ('assume', 1), ('intermediate', 1), ('skill', 1), ('raspberry', 1), ('pi', 1), ('successful', 1), ('open', 1), ('source', 1), ('hardware', 1), ('le', 1), ('blown', 1), ('pc', 1)]
[('ruby', 4), ('slow', 2), ('rail', 2), ('guide', 2), ('optimization', 2), ('code', 2), ('accept', 1), ('performance', 1), ('comprehensive', 1), ('learn', 1), ('write', 1), ('faster', 1), ('beginning', 1), ('see', 1), ('exactly', 1), ('make', 1), ('fix', 1), ('alex', 1), ('dymo', 1), ('peril', 1), ('memory', 1), ('cpu', 1), ('profiling', 1), ('measuring', 1)]
[('software', 2), ('development', 2), ('practice', 2), ('work', 2), ('losing', 1), ('ten', 1), ('billion', 1), ('dollar', 1), ('year', 1), ('broken', 1), ('new', 1), ('idea', 1), ('agile', 1), ('scrum', 1), ('always', 1), ('pay', 1), ('hope', 1), ('nine', 1), ('beyond', 1), ('legacy', 1), ('code', 1), ('designed', 1), ('solve', 1), ('problem', 1), ('facing', 1), ('industry', 1), ('discover', 1)]
[('work', 3), ('team', 3), ('step', 2), ('happiest', 1), ('productive', 1), ('choose', 1), ('self', 1), ('selecting', 1), ('give', 1), ('choice', 1), ('build', 1), ('designed', 1), ('efficient', 1), ('organization', 1), ('instruction', 1), ('set', 1), ('quickly', 1), ('efficiently', 1), ('create', 1), ('process', 1)]
[('application', 3), ('concurrency', 2), ('java', 2), ('platform', 2), ('learning', 1), ('program', 1), ('critical', 1), ('creating', 1), ('faster', 1), ('responsive', 1), ('speedy', 1), ('affordable', 1), ('multicore', 1), ('hardware', 1), ('driving', 1), ('demand', 1), ('high', 1), ('performing', 1), ('leverage', 1), ('bring', 1), ('life', 1), ('evolved', 1)]
[('use', 3), ('page', 2), ('ship', 1), ('collection', 1), ('tip', 1), ('show', 1), ('tool', 1), ('andtechniques', 1), ('successful', 1), ('project', 1), ('team', 1), ('themwell', 1), ('quick', 1), ('easy', 1), ('follow', 1), ('advice', 1), ('modernpractices', 1), ('applied', 1), ('bookavoids', 1), ('current', 1), ('fashion', 1), ('trend', 1), ('marketing', 1), ('hype', 1), ('instead', 1), ('readersfind', 1), ('solid', 1)]
[('cloud', 4), ('fugue', 2), ('infrastructure', 2), ('time', 2), ('harness', 1), ('promise', 1), ('operating', 1), ('system', 1), ('built', 1), ('program', 1), ('fraction', 1), ('take', 1), ('current', 1), ('tool', 1), ('debug', 1), ('design', 1), ('centralize', 1), ('change', 1), ('control', 1), ('process', 1), ('written', 1), ('development', 1), ('team', 1), ('definitive', 1), ('resource', 1), ('scalable', 1)]
[('complexity', 2), ('clojure', 2), ('drowning', 1), ('unnecessary', 1), ('unmanaged', 1), ('state', 1), ('tangle', 1), ('spaghetti', 1), ('code', 1), ('best', 1), ('tradition', 1), ('lisp', 1), ('get', 1), ('way', 1), ('focus', 1), ('expressing', 1), ('simple', 1), ('solution', 1), ('hard', 1), ('problem', 1), ('cut', 1), ('providing', 1), ('set', 1), ('composable', 1), ('tool', 1), ('immutable', 1), ('data', 1), ('function', 1), ('macro', 1), ('interactive', 1), ('repl', 1)]
[('database', 3), ('ecto', 3), ('elixir', 2), ('module', 2), ('language', 1), ('come', 1), ('go', 1), ('relational', 1), ('endures', 1), ('learn', 1), ('use', 1), ('premier', 1), ('library', 1), ('connect', 1), ('phoenix', 1), ('apps', 1), ('firm', 1), ('handle', 1), ('fundamental', 1), ('tour', 1), ('critical', 1), ('part', 1), ('move', 1), ('advanced', 1), ('topic', 1), ('advice', 1), ('best', 1), ('practice', 1)]
[('docker', 2), ('development', 2), ('devops', 1), ('rail', 1), ('web', 1), ('give', 1), ('new', 1), ('set', 1), ('superpower', 1), ('gone', 1), ('work', 1), ('machine', 1), ('woe', 1), ('lengthy', 1), ('setup', 1), ('task', 1), ('replaced', 1), ('instead', 1), ('simple', 1), ('consistent', 1), ('based', 1), ('environment', 1), ('team', 1), ('running', 1), ('second', 1), ('gain', 1), ('hand', 1), ('real', 1), ('world', 1), ('experience', 1), ('tool', 1)]
[('elm', 2), ('functional', 2), ('new', 2), ('language', 2), ('brings', 1), ('safety', 1), ('stability', 1), ('programing', 1), ('front', 1), ('end', 1), ('development', 1), ('making', 1), ('popular', 1), ('nature', 1), ('static', 1), ('typing', 1), ('mean', 1), ('run', 1), ('time', 1), ('error', 1), ('nearly', 1), ('impossible', 1), ('compiles', 1), ('javascript', 1), ('easy', 1), ('web', 1), ('deployment', 1), ('book', 1), ('help', 1), ('take', 1), ('advantage', 1)]
[('creator', 3), ('fast', 2), ('phoenix', 2), ('accept', 1), ('compromise', 1), ('beautiful', 1), ('chris', 1), ('mccord', 1), ('elixir', 1), ('jose', 1), ('valim', 1), ('award', 1), ('winning', 1), ('author', 1), ('bruce', 1), ('tate', 1), ('walk', 1), ('building', 1), ('application', 1), ('reliable', 1), ('every', 1), ('step', 1), ('learn', 1), ('packed', 1), ('insider', 1)]
[('code', 4), ('io', 3), ('test', 2), ('learn', 2), ('fearlessly', 1), ('change', 1), ('design', 1), ('solid', 1), ('unit', 1), ('use', 1), ('xcode', 1), ('built', 1), ('framework', 1), ('xctest', 1), ('swift', 1), ('rapid', 1), ('feedback', 1), ('including', 1), ('legacy', 1), ('trick', 1), ('technique', 1), ('testing', 1), ('especially', 1), ('view', 1), ('controller', 1), ('uiviewcontrollers', 1), ('critical', 1), ('apps', 1), ('isolate', 1)]
[('code', 3), ('software', 2), ('reusing', 1), ('written', 1), ('debugged', 1), ('tested', 1), ('improves', 1), ('productivity', 1), ('quality', 1), ('configurability', 1), ('relief', 1), ('pressure', 1), ('developer', 1), ('organize', 1), ('self', 1), ('contained', 1), ('modular', 1), ('unit', 1), ('use', 1), ('building', 1), ('block', 1), ('future', 1), ('project', 1), ('share', 1), ('programmer', 1), ('needed', 1)]
[('game', 3), ('design', 1), ('develop', 1), ('sophisticated', 1), ('fun', 1), ('make', 1), ('play', 1), ('particle', 1), ('effect', 1), ('pathfinding', 1), ('social', 1), ('integration', 1), ('monetization', 1), ('complete', 1), ('tour', 1), ('apple', 1), ('powerful', 1), ('suite', 1), ('technology', 1), ('cover', 1), ('familiar', 1), ('swift', 1), ('new', 1), ('development', 1), ('problem', 1), ('start', 1), ('basic', 1)]
[('python', 3), ('language', 2), ('simple', 2), ('quirk', 2), ('geek', 1), ('love', 1), ('puzzle', 1), ('solving', 1), ('programming', 1), ('book', 1), ('us', 1), ('teaching', 1), ('opportunity', 1), ('via', 1), ('program', 1), ('challenge', 1), ('understanding', 1), ('teaser', 1), ('help', 1), ('avoid', 1), ('mistake', 1), ('see', 1), ('gap', 1), ('knowledge', 1), ('become', 1)]
[('book', 2), ('understanding', 2), ('go', 2), ('contains', 1), ('short', 1), ('program', 1), ('challenge', 1), ('big', 1), ('project', 1), ('developer', 1), ('make', 1), ('design', 1), ('decision', 1), ('time', 1), ('seem', 1), ('surprising', 1), ('us', 1), ('quirk', 1), ('teaching', 1), ('opportunity', 1), ('gap', 1), ('knowledge', 1), ('become', 1), ('better', 1), ('teaser', 1)]
[('javascript', 3), ('instead', 2), ('e', 2), ('today', 1), ('interact', 1), ('data', 1), ('intensive', 1), ('apis', 1), ('network', 1), ('solution', 1), ('program', 1), ('work', 1), ('asynchronously', 1), ('finishing', 1), ('task', 1), ('order', 1), ('modern', 1), ('callback', 1), ('use', 1), ('promise', 1), ('improve', 1), ('application', 1), ('performance', 1), ('responsiveness', 1), ('feature', 1), ('introduced', 1)]
[('web', 3), ('clojure', 2), ('development', 2), ('today', 1), ('developer', 1), ('increasingly', 1), ('adopting', 1), ('platform', 1), ('see', 1), ('make', 1), ('desirable', 1), ('create', 1), ('series', 1), ('apps', 1), ('growing', 1), ('complexity', 1), ('exploring', 1), ('full', 1), ('process', 1), ('using', 1), ('modern', 1), ('functional', 1), ('language', 1), ('fully', 1), ('updated', 1), ('third', 1), ('edition', 1), ('reveals', 1), ('change', 1), ('rapidly', 1)]
[('python', 2), ('code', 2), ('make', 1), ('good', 1), ('even', 1), ('better', 1), ('following', 1), ('proven', 1), ('effective', 1), ('pythonic', 1), ('programming', 1), ('tip', 1), ('avoid', 1), ('logical', 1), ('error', 1), ('usually', 1), ('go', 1), ('undetected', 1), ('linters', 1), ('formatters', 1), ('frequent', 1), ('data', 1), ('look', 1), ('ups', 1), ('long', 1), ('list', 1), ('improper', 1), ('use', 1), ('local', 1), ('global', 1), ('variable', 1), ('mishandled', 1), ('user', 1), ('input', 1), ('discover', 1), ('rare', 1), ('language', 1), ('feature', 1)]
[('elixir', 3), ('many', 2), ('erlang', 2), ('functional', 1), ('language', 1), ('cross', 1), ('boundary', 1), ('syntax', 1), ('borrowing', 1), ('heavily', 1), ('ruby', 1), ('runtime', 1), ('beam', 1), ('macro', 1), ('system', 1), ('lisp', 1), ('streaming', 1), ('library', 1), ('might', 1), ('find', 1), ('haskell', 1), ('take', 1), ('best', 1), ('feature', 1), ('environment', 1), ('borrows', 1), ('crash', 1), ('philosophy', 1)]
[('mockito', 3), ('framework', 2), ('java', 2), ('unit', 2), ('testing', 2), ('popular', 1), ('world', 1), ('automating', 1), ('dependency', 1), ('learn', 1), ('api', 1), ('use', 1), ('stub', 1), ('mock', 1), ('spy', 1), ('deeper', 1), ('level', 1), ('discover', 1), ('simplify', 1), ('using', 1), ('able', 1), ('isolate', 1), ('code', 1), ('want', 1)]
[('electronic', 3), ('value', 2), ('exchange', 2), ('examines', 1), ('detail', 1), ('transformation', 1), ('visa', 1), ('payment', 1), ('system', 1), ('collection', 1), ('non', 1), ('integrated', 1), ('localized', 1), ('paper', 1), ('based', 1), ('bank', 1), ('credit', 1), ('card', 1), ('program', 1), ('cooperative', 1), ('global', 1)]
[('type', 2), ('theory', 2), ('martin', 2), ('extensional', 1), ('construct', 1), ('intensional', 1), ('present', 1), ('novel', 1), ('approach', 1), ('treatment', 1), ('equality', 1), ('loef', 1), ('basis', 1), ('important', 1), ('work', 1), ('mechanised', 1), ('mathematics', 1), ('program', 1), ('verification', 1), ('hofmann', 1), ('attempt', 1)]
[('programming', 4), ('logic', 2), ('language', 2), ('prolog', 2), ('name', 1), ('given', 1), ('distinctive', 1), ('style', 1), ('different', 1), ('conventional', 1), ('java', 1), ('far', 1), ('widely', 1), ('used', 1), ('good', 1)]
[('design', 3), ('object', 1), ('oriented', 1), ('analysis', 1), ('ooad', 1), ('year', 1), ('become', 1), ('vast', 1), ('field', 1), ('encompassing', 1), ('diverse', 1), ('topic', 1), ('process', 1), ('principle', 1), ('documentation', 1), ('tool', 1), ('refactoring', 1), ('architectural', 1), ('pattern', 1), ('student', 1)]
[('provides', 2), ('introduction', 2), ('textbook', 1), ('accessible', 1), ('general', 1), ('essential', 1), ('topic', 1), ('computer', 1), ('vision', 1), ('classroom', 1), ('tested', 1), ('programming', 1), ('exercise', 1), ('review', 1), ('question', 1), ('supplied', 1), ('end', 1), ('chapter', 1), ('feature', 1)]
[('computer', 3), ('john', 1), ('vince', 1), ('explains', 1), ('wide', 1), ('range', 1), ('mathematical', 1), ('technique', 1), ('problem', 1), ('solving', 1), ('strategy', 1), ('associated', 1), ('game', 1), ('animation', 1), ('virtual', 1), ('reality', 1), ('cad', 1), ('area', 1), ('graphic', 1), ('completely', 1), ('revised', 1), ('expanded', 1), ('fifth', 1)]
[('visual', 2), ('microsofts', 1), ('contains', 1), ('many', 1), ('new', 1), ('feature', 1), ('help', 1), ('developer', 1), ('build', 1), ('high', 1), ('performance', 1), ('application', 1), ('book', 1), ('ideal', 1), ('reading', 1), ('want', 1), ('quick', 1), ('introduction', 1), ('window', 1), ('programming', 1), ('microsoft', 1), ('foundation', 1)]
[('computation', 2), ('book', 1), ('present', 1), ('clear', 1), ('understanding', 1), ('new', 1), ('type', 1), ('system', 1), ('cellular', 1), ('neural', 1), ('network', 1), ('cnn', 1), ('successfully', 1), ('applied', 1), ('solution', 1), ('many', 1), ('heavy', 1), ('problem', 1), ('mainly', 1), ('field', 1), ('image', 1), ('processing', 1)]
[('human', 2), ('safety', 2), ('system', 2), ('error', 1), ('play', 1), ('significant', 1), ('role', 1), ('many', 1), ('accident', 1), ('involving', 1), ('critical', 1), ('standard', 1), ('requirement', 1), ('europe', 1), ('factor', 1), ('hf', 1), ('taken', 1), ('account', 1), ('design', 1), ('assessment', 1)]
[('approach', 2), ('lt', 1), ('gt', 1), ('world', 1), ('increasing', 1), ('complexity', 1), ('instant', 1), ('information', 1), ('availability', 1), ('constant', 1), ('flux', 1), ('system', 1), ('provide', 1), ('opportunity', 1), ('tangible', 1), ('anchor', 1), ('purpose', 1), ('iterate', 1), ('learning', 1), ('five', 1), ('outlined', 1), ('book', 1), ('offer', 1)]
[('le', 2), ('fabshop', 2), ('model', 2), ('france', 1), ('extensive', 1), ('experience', 1), ('testing', 1), ('printer', 1), ('creating', 1), ('digital', 1), ('articulated', 1), ('makey', 1), ('robot', 1), ('posable', 1), ('elephant', 1), ('samuel', 1), ('bernier', 1), ('rest', 1), ('team', 1), ('created', 1), ('printed', 1), ('design', 1), ('printing', 1), ('world', 1), ('book', 1), ('us', 1), ('work', 1), ('teach', 1)]
[('design', 2), ('hardware', 2), ('chip', 2), ('use', 1), ('software', 1), ('imagine', 1), ('specifying', 1), ('behavior', 1), ('complex', 1), ('parallel', 1), ('computer', 1), ('sending', 1), ('run', 1), ('without', 1), ('manufacturing', 1), ('field', 1), ('programmable', 1), ('gate', 1), ('array', 1), ('fpgas', 1), ('machine', 1), ('mouse', 1), ('keyboard', 1), ('deploy', 1)]
[('management', 3), ('problem', 2), ('real', 2), ('service', 1), ('process', 1), ('tends', 1), ('return', 1), ('benefit', 1), ('quickly', 1), ('others', 1), ('book', 1), ('offer', 1), ('world', 1), ('guidance', 1), ('aspect', 1), ('implementing', 1), ('running', 1), ('effective', 1), ('function', 1), ('give', 1), ('practitioner', 1), ('consultant', 1), ('manager', 1), ('tool', 1), ('add', 1), ('value', 1), ('business', 1)]
[('book', 2), ('software', 2), ('developer', 2), ('explains', 1), ('role', 1), ('including', 1), ('relevant', 1), ('skill', 1), ('competency', 1), ('need', 1), ('discussion', 1), ('popular', 1), ('programming', 1), ('language', 1), ('covered', 1), ('tool', 1), ('technique', 1), ('trade', 1), ('career', 1), ('progression', 1), ('tip', 1), ('case', 1), ('study', 1), ('round', 1)]
[('ai', 3), ('quality', 3), ('testing', 2), ('management', 2), ('present', 1), ('new', 1), ('paradigm', 1), ('development', 1), ('software', 1), ('representing', 1), ('biggest', 1), ('change', 1), ('think', 1), ('decade', 1), ('many', 1), ('known', 1), ('issue', 1), ('around', 1), ('manifest', 1), ('problem', 1), ('book', 1), ('explores', 1), ('angle', 1), ('aimed', 1), ('practitioner', 1), ('want', 1), ('understand', 1)]
[('autonomous', 2), ('enterprise', 2), ('journey', 1), ('towards', 1), ('begun', 1), ('already', 1), ('company', 1), ('operating', 1), ('highly', 1), ('automated', 1), ('way', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('solution', 1), ('offering', 1), ('compelling', 1), ('return', 1), ('investment', 1), ('organisation', 1), ('joining', 1), ('rank', 1), ('workforce', 1), ('machine', 1), ('augmented', 1), ('human', 1)]
[('cyber', 2), ('cybercrime', 2), ('focus', 1), ('fraud', 1), ('extortion', 1), ('book', 1), ('explores', 1), ('attack', 1), ('method', 1), ('impact', 1), ('use', 1), ('real', 1), ('world', 1), ('case', 1), ('study', 1), ('alongside', 1), ('practical', 1), ('suggestion', 1), ('preventative', 1), ('measure', 1), ('warning', 1), ('sign', 1), ('next', 1), ('step', 1), ('find', 1), ('victim', 1)]
[('computer', 2), ('course', 2), ('unrivalled', 1), ('study', 1), ('aid', 1), ('reference', 1), ('tool', 1), ('divided', 1), ('themed', 1), ('section', 1), ('making', 1), ('list', 1), ('definition', 1), ('designed', 1), ('support', 1), ('taking', 1), ('used', 1), ('including', 1), ('gcse', 1), ('level', 1), ('functional', 1), ('skill', 1), ('qualification', 1), ('school', 1), ('education', 1), ('college', 1)]
[('data', 4), ('quality', 3), ('management', 3), ('book', 1), ('explains', 1), ('practical', 1), ('term', 1), ('focusing', 1), ('three', 1), ('key', 1), ('area', 1), ('nature', 1), ('enterprise', 1), ('purpose', 1), ('scope', 1), ('implementing', 1), ('system', 1), ('line', 1), ('iso', 1)]
[('screen', 3), ('image', 2), ('ubiquitous', 1), ('today', 1), ('display', 1), ('information', 1), ('present', 1), ('world', 1), ('portable', 1), ('connect', 1), ('mobile', 1), ('network', 1), ('mesmerize', 1), ('contemporary', 1), ('medium', 1), ('seek', 1), ('eliminate', 1), ('presence', 1), ('visibility', 1), ('boundary', 1), ('becomes', 1), ('increasingly', 1), ('indistinguishable', 1), ('viewer', 1), ('actual', 1)]
[('book', 2), ('game', 2), ('written', 1), ('guide', 1), ('help', 1), ('anyone', 1), ('struggling', 1), ('online', 1), ('multiplayer', 1), ('first', 1), ('person', 1), ('shooter', 1), ('fps', 1), ('even', 1), ('want', 1), ('sharpen', 1), ('existing', 1), ('skill', 1), ('reading', 1), ('strategy', 1), ('easily', 1), ('improve', 1), ('become', 1), ('formidable', 1), ('opponent', 1), ('cover', 1), ('potential', 1), ('problem', 1)]
[('fft', 3), ('fourier', 2), ('transform', 2), ('implementation', 2), ('following', 1), ('introduction', 1), ('basis', 1), ('fast', 1), ('book', 1), ('focus', 1), ('detail', 1), ('parallel', 1), ('computer', 1), ('efficient', 1), ('discrete', 1), ('dft', 1), ('widely', 1)]
[('image', 2), ('fusion', 2), ('book', 1), ('systematically', 1), ('discus', 1), ('basic', 1), ('concept', 1), ('theory', 1), ('research', 1), ('latest', 1), ('trend', 1), ('focus', 1), ('three', 1), ('category', 1), ('pixel', 1), ('feature', 1), ('decision', 1), ('presenting', 1), ('various', 1), ('application', 1), ('medical', 1), ('imaging', 1)]
[('machine', 2), ('learning', 2), ('data', 2), ('science', 2), ('essence', 2), ('crucial', 1), ('ability', 1), ('mathematical', 1), ('logic', 1), ('grasping', 1), ('rather', 1), ('knowledge', 1), ('experience', 1), ('textbook', 1), ('approach', 1), ('considering', 1), ('math', 1)]
[('essence', 2), ('crucial', 1), ('ability', 1), ('machine', 1), ('learning', 1), ('data', 1), ('science', 1), ('mathematical', 1), ('logic', 1), ('grasping', 1), ('rather', 1), ('knowledge', 1), ('experience', 1), ('textbook', 1), ('approach', 1), ('sparse', 1), ('estimation', 1), ('considering', 1), ('math', 1), ('problem', 1)]
[('computer', 2), ('today', 1), ('workplace', 1), ('cybersecurity', 1), ('professional', 1), ('understand', 1), ('hardware', 1), ('software', 1), ('deploy', 1), ('effective', 1), ('security', 1), ('solution', 1), ('book', 1), ('introduces', 1), ('reader', 1), ('fundamental', 1), ('architecture', 1), ('organization', 1)]
[('embedded', 2), ('system', 2), ('book', 1), ('present', 1), ('unique', 1), ('examination', 1), ('mobile', 1), ('robot', 1), ('introductory', 1), ('intermediate', 1), ('level', 1), ('structured', 1), ('three', 1), ('part', 1), ('dealing', 1), ('hardware', 1), ('software', 1), ('design', 1), ('actuator', 1), ('sensor', 1), ('pid', 1), ('control', 1)]
[('abstract', 2), ('cell', 2), ('complex', 2), ('image', 2), ('processing', 2), ('book', 1), ('explains', 1), ('finite', 1), ('topological', 1), ('space', 1), ('known', 1), ('important', 1), ('successful', 1), ('present', 1), ('method', 1), ('based', 1), ('especially', 1), ('tracing', 1), ('encoding', 1), ('boundary', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('mobile', 1), ('internet', 1), ('security', 1), ('mobisec', 1), ('held', 1), ('taichung', 1), ('taiwan', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('security', 3), ('book', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('data', 1), ('cloud', 1), ('storage', 1), ('ranging', 1), ('basic', 1), ('paradigm', 1), ('principle', 1), ('typical', 1), ('issue', 1), ('practical', 1), ('solution', 1), ('illustrates', 1), ('malicious', 1), ('attacker', 1), ('benefit', 1)]
[('software', 4), ('oriented', 2), ('book', 1), ('cover', 1), ('theory', 1), ('application', 1), ('automation', 1), ('testing', 1), ('tool', 1), ('technique', 1), ('various', 1), ('type', 1), ('object', 1), ('aspect', 1), ('web', 1), ('based', 1), ('fails', 1), ('often', 1), ('due', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('symposium', 1), ('machine', 1), ('learning', 1), ('metaheuristics', 1), ('algorithm', 1), ('application', 1), ('somma', 1), ('held', 1), ('chennai', 1), ('india', 1), ('october', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('conference', 1)]
[('reinforcement', 2), ('learning', 2), ('book', 1), ('start', 1), ('presenting', 1), ('basic', 1), ('using', 1), ('highly', 1), ('intuitive', 1), ('easy', 1), ('understand', 1), ('example', 1), ('application', 1), ('introduces', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('advance', 1), ('make', 1), ('capable', 1)]
[('education', 2), ('quality', 2), ('assessment', 2), ('ai', 2), ('technology', 2), ('teaching', 2), ('book', 1), ('collect', 1), ('paper', 1), ('based', 1), ('introduces', 1), ('latest', 1), ('research', 1), ('direction', 1), ('progress', 1), ('field', 1), ('including', 1), ('classroom', 1)]
[('book', 2), ('cover', 1), ('research', 1), ('work', 1), ('spanning', 1), ('breadth', 1), ('venture', 1), ('variety', 1), ('challenge', 1), ('finest', 1), ('technique', 1), ('used', 1), ('address', 1), ('data', 1), ('analytics', 1), ('subject', 1), ('matter', 1), ('expert', 1), ('business', 1), ('world', 1), ('content', 1), ('highlight', 1)]
[('software', 2), ('testing', 2), ('foundation', 2), ('istqb', 2), ('th', 1), ('edition', 1), ('provides', 1), ('information', 1), ('necessary', 1), ('pas', 1), ('certified', 1), ('tester', 1), ('level', 1), ('exam', 1), ('version', 1), ('defined', 1), ('us', 1), ('format', 1), ('designed', 1), ('self', 1), ('study', 1), ('defines', 1), ('technical', 1), ('term', 1), ('according', 1), ('updated', 1), ('glossary', 1), ('professional', 1), ('essential', 1), ('task', 1), ('requires', 1)]
[('testing', 4), ('software', 3), ('professional', 2), ('international', 2), ('qualification', 2), ('essential', 1), ('task', 1), ('requires', 1), ('profound', 1), ('knowledge', 1), ('technique', 1), ('board', 1), ('istqb', 1), ('developed', 1), ('universally', 1), ('accepted', 1), ('scheme', 1), ('aimed', 1), ('system', 1), ('created', 1), ('syllabus', 1), ('test', 1)]
[('informative', 1), ('guide', 1), ('parent', 1), ('best', 1), ('screen', 1), ('time', 1), ('gaming', 1), ('gadget', 1), ('child', 1)]
[('full', 1), ('colour', 1), ('compendium', 1), ('strangest', 1), ('funniest', 1), ('captivating', 1), ('story', 1), ('trivia', 1), ('video', 1), ('game', 1), ('history', 1)]
[('definitive', 1), ('history', 1), ('capcom', 1), ('groundbreaking', 1), ('resident', 1), ('evil', 1), ('video', 1), ('game', 1), ('series', 1)]
[('business', 3), ('continuity', 3), ('iso', 2), ('management', 2), ('understand', 1), ('plan', 1), ('implement', 1), ('enhance', 1), ('system', 1), ('bcms', 1), ('walk', 1), ('requirement', 1), ('explaining', 1), ('mean', 1), ('organisation', 1), ('achieve', 1), ('compliance', 1), ('essential', 1), ('companion', 1), ('guide', 1), ('working', 1)]
[('manager', 3), ('risk', 2), ('ideal', 1), ('information', 1), ('security', 1), ('lead', 1), ('implementers', 1), ('compliance', 1), ('consultant', 1), ('providing', 1), ('useful', 1), ('background', 1), ('material', 1), ('auditor', 1), ('book', 1), ('enable', 1), ('reader', 1), ('develop', 1), ('iso', 1), ('compliant', 1), ('assessment', 1), ('framework', 1), ('organisation', 1), ('deliver', 1), ('real', 1), ('bottom', 1), ('line', 1), ('business', 1), ('benefit', 1)]
[('siam', 4), ('foundation', 3), ('service', 1), ('integration', 1), ('management', 1), ('body', 1), ('knowledge', 1), ('bok', 1), ('second', 1), ('edition', 1), ('updated', 1), ('reflect', 1), ('change', 1), ('market', 1), ('official', 1), ('guide', 1), ('exin', 1), ('certification', 1), ('prepare', 1), ('exam', 1), ('understand', 1), ('benefit', 1), ('organization', 1)]
[('service', 4), ('desk', 4), ('handbook', 1), ('guide', 1), ('implementation', 1), ('management', 1), ('support', 1), ('provides', 1), ('operational', 1), ('guidance', 1), ('implementing', 1), ('managing', 1), ('supporting', 1), ('enterprise', 1), ('help', 1), ('team', 1), ('adopting', 1), ('itil', 1), ('accomplish', 1), ('task', 1), ('making', 1), ('necessary', 1), ('adaptation', 1), ('per', 1), ('organisation', 1), ('need', 1)]
[('book', 1), ('detail', 1), ('essential', 1), ('strategy', 1), ('create', 1), ('effective', 1), ('data', 1), ('visualization', 1), ('jonathan', 1), ('schwabish', 1), ('walk', 1), ('reader', 1), ('step', 1), ('creating', 1), ('better', 1), ('graph', 1), ('move', 1), ('beyond', 1), ('simple', 1), ('line', 1), ('bar', 1), ('pie', 1), ('chart', 1)]
[('student', 3), ('exam', 2), ('providing', 1), ('guidance', 1), ('help', 1), ('practice', 1), ('troubleshoot', 1), ('technique', 1), ('book', 1), ('send', 1), ('confidence', 1), ('aim', 1), ('best', 1), ('grade', 1), ('enables', 1), ('avoid', 1), ('common', 1), ('misconception', 1), ('mistake', 1), ('highlighting', 1), ('throughout', 1), ('build', 1), ('skill', 1), ('constructing', 1), ('writing', 1), ('answer', 1), ('progress', 1)]
[('vue', 2), ('j', 2), ('nbsp', 1), ('started', 1), ('quickly', 1), ('easily', 1), ('bookthis', 1), ('book', 1), ('provides', 1), ('compact', 1), ('practical', 1), ('introduction', 1), ('popular', 1), ('use', 1), ('mvvc', 1), ('concept', 1), ('application', 1), ('web', 1), ('basis', 1), ('mvc', 1), ('design', 1), ('pattern', 1), ('create', 1)]
[('dynamic', 2), ('finance', 2), ('operation', 2), ('precise', 1), ('instruction', 1), ('description', 1), ('book', 1), ('enable', 1), ('user', 1), ('consultant', 1), ('manager', 1), ('student', 1), ('understand', 1), ('microsoft', 1), ('rapidly', 1), ('comprehensive', 1), ('business', 1)]
[('buch', 2), ('der', 2), ('mit', 1), ('diesem', 1), ('erlangen', 1), ('sie', 1), ('grundlagenwissen', 1), ('bereich', 1), ('computernetzwerkedieses', 1), ('bietet', 1), ('ihnen', 1), ('einen', 1), ('kompakten', 1), ('überblick', 1), ('über', 1), ('da', 1), ('thema', 1), ('computernetzwerke', 1), ('sein', 1), ('aufbau', 1), ('orientiert', 1), ('sich', 1), ('den', 1), ('schichten', 1), ('etablierten', 1), ('referenzmodelle', 1), ('und', 1)]
[('book', 1), ('focus', 1), ('art', 1), ('managing', 1), ('simple', 1), ('robust', 1), ('framework', 1), ('proposed', 1), ('describe', 1), ('structure', 1), ('essential', 1), ('element', 1), ('management', 1), ('author', 1), ('pay', 1), ('particular', 1), ('attention', 1), ('didactic', 1), ('aspect', 1), ('order', 1), ('facilitate', 1)]
[('book', 1), ('comprehensive', 1), ('introduction', 1), ('method', 1), ('algorithm', 1), ('modern', 1), ('data', 1), ('analytics', 1), ('provides', 1), ('sound', 1), ('mathematical', 1), ('basis', 1), ('discus', 1), ('advantage', 1), ('drawback', 1), ('different', 1), ('approach', 1), ('enables', 1), ('reader', 1), ('design', 1), ('implement', 1)]
[('da', 2), ('für', 2), ('und', 2), ('vorliegende', 1), ('buch', 1), ('bietet', 1), ('eine', 1), ('strukturierte', 1), ('gut', 1), ('lesbare', 1), ('einführung', 1), ('dynamische', 1), ('thema', 1), ('internetsicherheit', 1), ('ausgehend', 1), ('von', 1), ('grundlegenden', 1), ('sicherheitsstandards', 1), ('lokale', 1), ('netzwerke', 1), ('lan', 1), ('ip', 1), ('tcp', 1), ('werden', 1), ('bedrohungen', 1), ('schutzmaßnahmen', 1)]
[('und', 3), ('für', 2), ('die', 2), ('der', 1), ('klassiker', 1), ('ausbildung', 1), ('studium', 1), ('stellt', 1), ('klassischen', 1), ('informatik', 1), ('inhalte', 1), ('wie', 1), ('sortieralgorithmen', 1), ('baumstrukturen', 1), ('komplexität', 1), ('rekursion', 1), ('algorithmenklassen', 1), ('bereit', 1), ('wurde', 1), ('angepasst', 1), ('aktuelle', 1), ('java', 1), ('version', 1), ('vorteil', 1), ('de', 1), ('buches', 1)]
[('programming', 2), ('python', 2), ('christoph', 1), ('schäfer', 1), ('introduces', 1), ('world', 1), ('provides', 1), ('quick', 1), ('introduction', 1), ('independent', 1), ('script', 1), ('development', 1), ('point', 1), ('language', 1), ('established', 1), ('recent', 1), ('year', 1), ('alongside', 1), ('matlab', 1)]
[('atr', 2), ('problem', 2), ('third', 1), ('edition', 1), ('automatic', 1), ('target', 1), ('recognition', 1), ('provides', 1), ('roadmap', 1), ('breakthrough', 1), ('design', 1), ('increased', 1), ('intelligence', 1), ('performance', 1), ('autonomy', 1), ('clear', 1), ('distinction', 1), ('made', 1), ('military', 1), ('comparable', 1), ('commercial', 1), ('deep', 1), ('learning', 1), ('consideration', 1), ('need', 1), ('understood', 1), ('engineer', 1), ('working', 1)]
[('across', 2), ('book', 1), ('representing', 1), ('researcher', 1), ('practitioner', 1), ('different', 1), ('information', 1), ('profession', 1), ('explore', 1), ('social', 1), ('tag', 1), ('link', 1), ('content', 1), ('variety', 1), ('environment', 1)]
[('use', 3), ('tpms', 2), ('case', 2), ('book', 1), ('describes', 1), ('primary', 1), ('us', 1), ('trusted', 1), ('platform', 1), ('module', 1), ('practical', 1), ('consideration', 1), ('used', 1), ('advantage', 1), ('provide', 1), ('actually', 1), ('make', 1), ('worked', 1), ('example', 1), ('implement', 1), ('real', 1), ('system', 1)]
[('artificial', 1), ('intelligence', 1), ('drug', 1), ('discovery', 1), ('aim', 1), ('introduce', 1), ('reader', 1), ('ai', 1), ('machine', 1), ('learning', 1), ('tool', 1), ('technique', 1), ('outline', 1), ('specific', 1), ('challenge', 1), ('including', 1), ('designing', 1), ('new', 1), ('molecular', 1), ('structure', 1), ('synthesis', 1), ('planning', 1), ('simulation', 1)]
[('lernen', 1), ('sie', 1), ('programmieren', 1), ('mit', 1), ('freude', 1), ('zahlreiche', 1), ('beispiele', 1), ('machen', 1), ('den', 1), ('einstieg', 1), ('schwierige', 1), ('themen', 1), ('einfach', 1), ('datenstrukturen', 1), ('und', 1), ('algorithmen', 1), ('werden', 1), ('ihrem', 1), ('vollen', 1), ('umfang', 1), ('anschaulich', 1), ('dargestellt', 1), ('anhand', 1), ('vieler', 1), ('übungsaufgaben', 1), ('kann', 1), ('da', 1), ('erlernte', 1)]
[('pl', 3), ('new', 2), ('o', 2), ('classic', 1), ('textbook', 1), ('eberhard', 1), ('sturm', 1), ('date', 1), ('book', 1), ('currently', 1), ('available', 1), ('english', 1), ('language', 1), ('show', 1), ('range', 1), ('computer', 1), ('platform', 1), ('window', 1), ('aix', 1), ('basis', 1)]
[('wordpress', 2), ('platform', 2), ('day', 2), ('open', 1), ('source', 1), ('cm', 1), ('content', 1), ('management', 1), ('system', 1), ('founded', 1), ('year', 1), ('mike', 1), ('little', 1), ('matt', 1), ('mullenweg', 1), ('initial', 1), ('stage', 1), ('based', 1), ('single', 1), ('bit', 1), ('code', 1), ('made', 1), ('enhance', 1), ('typography', 1), ('writing', 1), ('top', 1), ('recommended', 1), ('kind', 1), ('blogging', 1), ('site', 1), ('time', 1)]
[('programming', 2), ('mobile', 1), ('application', 1), ('development', 1), ('hottest', 1), ('trend', 1), ('world', 1), ('book', 1), ('learn', 1), ('android', 1), ('basic', 1)]
[('question', 5), ('interview', 4), ('hr', 1), ('real', 1), ('life', 1), ('scenario', 1), ('based', 1), ('strategy', 1), ('respond', 1), ('aptitude', 1), ('test', 1), ('likely', 1), ('asked', 1), ('perfect', 1), ('companion', 1), ('stand', 1), ('ahead', 1), ('rest', 1), ('today', 1), ('competitive', 1), ('job', 1), ('market', 1), ('rather', 1), ('going', 1)]
[('question', 5), ('interview', 4), ('data', 2), ('structure', 2), ('algorithm', 2), ('hr', 1), ('real', 1), ('life', 1), ('scenario', 1), ('based', 1), ('strategy', 1), ('respond', 1), ('free', 1), ('aptitude', 1), ('test', 1), ('online', 1), ('likely', 1), ('asked', 1), ('perfect', 1), ('companion', 1), ('stand', 1), ('rest', 1), ('today', 1)]
[('question', 5), ('interview', 4), ('operating', 2), ('system', 2), ('hr', 1), ('real', 1), ('life', 1), ('scenario', 1), ('based', 1), ('strategy', 1), ('respond', 1), ('aptitude', 1), ('test', 1), ('likely', 1), ('asked', 1), ('perfect', 1), ('companion', 1), ('stand', 1), ('ahead', 1), ('rest', 1), ('today', 1), ('competitive', 1), ('job', 1), ('market', 1), ('rather', 1)]
[('question', 5), ('interview', 4), ('cloud', 2), ('computing', 2), ('hr', 1), ('real', 1), ('life', 1), ('scenario', 1), ('based', 1), ('strategy', 1), ('respond', 1), ('aptitude', 1), ('test', 1), ('likely', 1), ('asked', 1), ('second', 1), ('edition', 1), ('perfect', 1), ('companion', 1), ('stand', 1), ('ahead', 1), ('rest', 1), ('today', 1), ('competitive', 1), ('job', 1)]
[('infographics', 3), ('picture', 2), ('word', 2), ('create', 1), ('compelling', 1), ('business', 1), ('sa', 1), ('familiar', 1), ('office', 1), ('productivity', 1), ('tool', 1), ('worth', 1), ('thousand', 1), ('billion', 1), ('analyzing', 1), ('big', 1), ('data', 1), ('need', 1), ('cut', 1), ('noise', 1), ('come', 1), ('representation', 1), ('information', 1), ('graphic', 1), ('format', 1)]
[('jmp', 3), ('biostatistics', 2), ('using', 2), ('introduction', 2), ('explore', 1), ('refreshing', 1), ('presented', 1), ('easy', 1), ('understand', 1), ('way', 1), ('introduces', 1), ('undergraduate', 1), ('student', 1), ('biological', 1), ('science', 1), ('commonly', 1), ('used', 1), ('misused', 1), ('statistical', 1), ('method', 1), ('need', 1), ('analyze', 1), ('experimental', 1), ('data', 1), ('cover', 1)]
[('sa', 4), ('data', 4), ('visualization', 3), ('visual', 2), ('analytics', 2), ('viya', 2), ('elevate', 1), ('storytelling', 1), ('gateway', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('big', 1), ('insightful', 1), ('show', 1), ('latest', 1), ('tool', 1), ('used', 1), ('create', 1), ('easier', 1), ('smarter', 1), ('engaging', 1), ('way', 1)]
[('data', 3), ('sa', 3), ('report', 2), ('web', 2), ('based', 2), ('visual', 2), ('analytics', 2), ('discover', 1), ('create', 1), ('elegant', 1), ('intuitive', 1), ('interface', 1), ('viya', 1), ('practical', 1), ('guide', 1), ('designed', 1), ('started', 1), ('investigating', 1), ('creating', 1), ('tool', 1), ('enables', 1), ('explore', 1), ('huge', 1), ('volume', 1), ('identify', 1), ('pattern', 1), ('trend', 1)]
[('model', 4), ('mixed', 3), ('jmp', 2), ('discover', 1), ('power', 1), ('pro', 1), ('mainstream', 1), ('method', 1), ('choice', 1), ('analyzing', 1), ('experimental', 1), ('data', 1), ('arguably', 1), ('straightforward', 1), ('powerful', 1), ('way', 1), ('handle', 1), ('correlated', 1), ('observation', 1), ('designed', 1), ('experiment', 1), ('reaching', 1), ('beyond', 1), ('standard', 1), ('linear', 1), ('enable', 1), ('make', 1)]
[('programming', 2), ('start', 2), ('python', 2), ('step', 2), ('information', 1), ('online', 1), ('coding', 1), ('tutorial', 1), ('difficult', 1), ('know', 1), ('beginner', 1), ('fill', 1), ('gap', 1), ('provides', 1), ('place', 1), ('learning', 1), ('computer', 1), ('using', 1), ('bestselling', 1), ('straightforward', 1), ('visual', 1), ('approach', 1), ('learn', 1), ('download', 1)]
[('computer', 2), ('understanding', 2), ('google', 2), ('doc', 2), ('staring', 1), ('screen', 1), ('idea', 1), ('worry', 1), ('help', 1), ('written', 1), ('best', 1), ('selling', 1), ('technology', 1), ('author', 1), ('lecturer', 1), ('trainer', 1), ('kevin', 1), ('wilson', 1), ('packed', 1), ('easy', 1), ('follow', 1), ('instruction', 1), ('photo', 1), ('illustration', 1), ('helpful', 1), ('tip', 1), ('video', 1)]
[('chromebook', 4), ('exploring', 2), ('help', 2), ('understand', 1), ('fundamental', 1), ('written', 1), ('clear', 1), ('accessible', 1), ('way', 1), ('using', 1), ('full', 1), ('color', 1), ('illustration', 1), ('screenshots', 1), ('video', 1), ('demo', 1), ('easy', 1), ('follow', 1), ('instruction', 1), ('set', 1), ('configure', 1), ('learn', 1), ('feature', 1), ('share', 1), ('screen', 1), ('capture', 1)]
[('ipad', 4), ('pro', 4), ('exploring', 3), ('step', 2), ('perfect', 1), ('companion', 1), ('new', 1), ('written', 1), ('best', 1), ('selling', 1), ('technology', 1), ('author', 1), ('lecturer', 1), ('computer', 1), ('trainer', 1), ('kevin', 1), ('wilson', 1), ('packed', 1), ('instruction', 1), ('full', 1), ('color', 1), ('photo', 1), ('illustration', 1), ('helpful', 1), ('tip', 1), ('video', 1), ('demo', 1), ('updated', 1), ('cover', 1), ('ipados', 1), ('update', 1), ('help', 1)]
[('iphone', 3), ('getting', 2), ('new', 2), ('toy', 2), ('work', 2), ('already', 2), ('exciting', 1), ('almost', 1), ('feel', 1), ('nobody', 1), ('like', 1), ('make', 1), ('lengthy', 1), ('manual', 1), ('figure', 1), ('darn', 1), ('thing', 1), ('maybe', 1), ('sev', 1), ('eral', 1), ('chance', 1), ('know', 1), ('throw', 1), ('curveball', 1), ('home', 1)]
[('used', 2), ('pay', 2), ('computer', 2), ('catch', 2), ('ready', 1), ('enter', 1), ('cloud', 1), ('remember', 1), ('thing', 1), ('software', 1), ('almost', 1), ('new', 1), ('time', 1), ('certainly', 1), ('changed', 1), ('today', 1), ('many', 1), ('company', 1), ('giving', 1), ('stuff', 1), ('hundred', 1), ('dollar', 1), ('free', 1), ('sometimes', 1)]
[('word', 2), ('chance', 1), ('grew', 1), ('office', 1), ('user', 1), ('maybe', 1), ('rebel', 1), ('committed', 1), ('herd', 1), ('openoffice', 1), ('dare', 1), ('say', 1), ('wordperfect', 1), ('majority', 1), ('life', 1), ('loyal', 1), ('microsoft', 1), ('small', 1), ('little', 1), ('startup', 1), ('named', 1), ('upstartle', 1), ('developed', 1), ('something', 1), ('unheard', 1), ('time', 1), ('web', 1), ('based', 1), ('processor', 1), ('called', 1), ('writely', 1)]
[('google', 3), ('search', 2), ('surface', 2), ('become', 1), ('power', 1), ('searcher', 1), ('meet', 1), ('eye', 1), ('lot', 1), ('type', 1), ('looking', 1), ('click', 1), ('go', 1), ('result', 1), ('sound', 1), ('scratching', 1), ('certain', 1), ('filter', 1), ('command', 1)]
[('iwork', 2), ('mac', 2), ('probably', 2), ('use', 2), ('powerful', 1), ('software', 1), ('free', 1), ('face', 1), ('spent', 1), ('life', 1), ('using', 1), ('office', 1), ('user', 1), ('make', 1), ('document', 1), ('really', 1), ('shine', 1), ('first', 1), ('need', 1), ('know', 1), ('guide', 1), ('help', 1), ('instead', 1), ('spending', 1), ('hundred', 1), ('page', 1), ('function', 1), ('never', 1)]
[('web', 3), ('application', 2), ('penetration', 2), ('security', 2), ('administrator', 2), ('guide', 1), ('considered', 1), ('entry', 1), ('medium', 1), ('level', 1), ('website', 1), ('testing', 1), ('good', 1), ('starting', 1), ('point', 1), ('want', 1), ('start', 1), ('career', 1), ('tester', 1), ('analyst', 1), ('book', 1), ('valuable', 1), ('information', 1), ('manager', 1), ('system', 1)]
[('structured', 2), ('keep', 2), ('content', 2), ('le', 2), ('rhetoric', 2), ('process', 2), ('writing', 1), ('never', 1), ('important', 1), ('confusing', 1), ('trying', 1), ('give', 1), ('time', 1), ('help', 1), ('track', 1), ('efficient', 1), ('relationship', 1), ('easy', 1)]
[('content', 4), ('web', 3), ('search', 2), ('change', 1), ('use', 1), ('easy', 1), ('find', 1), ('immediately', 1), ('helpful', 1), ('reader', 1), ('move', 1), ('almost', 1), ('child', 1), ('come', 1), ('information', 1), ('system', 1), ('including', 1), ('product', 1), ('documentation', 1), ('looking', 1), ('box', 1), ('expecting', 1), ('every', 1)]
[('technical', 3), ('communication', 2), ('term', 2), ('language', 1), ('dual', 1), ('objective', 1), ('define', 1), ('form', 1), ('core', 1), ('practiced', 1), ('today', 1), ('predicting', 1), ('field', 1), ('go', 1), ('future', 1), ('choice', 1), ('defined', 1), ('book', 1), ('followed', 1), ('overarching', 1), ('principle', 1), ('include', 1), ('aspect', 1), ('discipline', 1)]
[('gdpr', 2), ('edition', 2), ('ultimate', 1), ('practitioner', 1), ('guide', 1), ('nd', 1), ('provides', 1), ('tasked', 1), ('implementing', 1), ('data', 1), ('protection', 1), ('process', 1), ('useful', 1), ('information', 1), ('supporting', 1), ('case', 1), ('law', 1), ('aid', 1), ('achieving', 1), ('compliance', 1), ('second', 1), ('crammed', 1), ('new', 1), ('updated', 1), ('advice', 1), ('guidance', 1), ('template', 1), ('includes', 1), ('copy', 1), ('full', 1), ('regulation', 1), ('text', 1)]
[('de', 5), ('la', 3), ('en', 3), ('html', 2), ('tecnologías', 2), ('el', 2), ('web', 2), ('este', 2), ('libro', 2), ('cs', 1), ('javascript', 1), ('son', 1), ('tres', 1), ('básicas', 1), ('que', 1), ('se', 1), ('sustenta', 1), ('desarrollo', 1), ('páginas', 1), ('le', 1), ('servirá', 1), ('ayuda', 1), ('hora', 1), ('adentrarse', 1), ('uso', 1), ('aprendizaje', 1), ('estas', 1), ('con', 1), ('aprenderá', 1), ('usar', 1), ('para', 1), ('generar', 1), ('contenido', 1), ('su', 1), ('sitio', 1), ('agregando', 1), ('bloques', 1), ('texto', 1), ('párrafos', 1), ('tablas', 1), ('listas', 1)]
[('living', 2), ('simulation', 2), ('multiple', 1), ('version', 1), ('exist', 1), ('parallel', 1), ('universe', 1), ('life', 1), ('different', 1), ('timeline', 1), ('follow', 1), ('bestseller', 1), ('hypothesis', 1), ('mit', 1), ('computer', 1), ('scientist', 1), ('silicon', 1), ('valley', 1), ('game', 1), ('pioneer', 1), ('rizwan', 1), ('virk', 1), ('explores', 1), ('topic', 1), ('new', 1), ('lens', 1), ('theory', 1), ('simulated', 1)]
[('threat', 4), ('cyber', 3), ('intelligence', 3), ('term', 1), ('gained', 1), ('considerable', 1), ('interest', 1), ('information', 1), ('security', 1), ('community', 1), ('past', 1), ('year', 1), ('main', 1), ('purpose', 1), ('implementing', 1), ('cti', 1), ('program', 1), ('prepare', 1), ('business', 1), ('gain', 1), ('awareness', 1), ('implement', 1), ('adequate', 1), ('defense', 1), ('disaster', 1), ('strike', 1)]
[('security', 4), ('monitoring', 2), ('analytics', 1), ('defined', 1), ('process', 1), ('continuously', 1), ('analyzing', 1), ('activity', 1), ('enterprise', 1), ('network', 1), ('ensure', 1), ('minimal', 1), ('number', 1), ('occurrence', 1), ('breach', 1), ('analyst', 1), ('individual', 1), ('qualified', 1), ('perform', 1), ('function', 1), ('necessary', 1), ('accomplish', 1), ('goal', 1)]
[('metric', 4), ('agile', 3), ('velocity', 2), ('software', 2), ('delivery', 2), ('commonly', 1), ('used', 1), ('perhaps', 1), ('least', 1), ('effective', 1), ('escape', 1), ('doc', 1), ('norton', 1), ('walk', 1), ('reader', 1), ('common', 1), ('issue', 1), ('avoid', 1), ('altermative', 1), ('help', 1), ('team', 1), ('perform', 1), ('better', 1), ('enable', 1)]
[('autodesk', 2), ('maya', 2), ('integrated', 2), ('software', 2), ('design', 2), ('powerful', 1), ('modeling', 1), ('animation', 1), ('visual', 1), ('effect', 1), ('rendering', 1), ('developed', 1), ('inc', 1), ('node', 1), ('based', 1), ('find', 1), ('application', 1), ('development', 1), ('film', 1), ('game', 1), ('project', 1), ('intuitive', 1), ('user', 1), ('interface', 1), ('workflow', 1), ('tool', 1), ('made', 1), ('job', 1)]
[('attacker', 2), ('honeypot', 2), ('break', 1), ('network', 1), ('home', 1), ('field', 1), ('advantage', 1), ('use', 1), ('intrusion', 1), ('detection', 1), ('foundational', 1), ('guide', 1), ('building', 1), ('deploying', 1), ('monitoring', 1), ('security', 1), ('resource', 1), ('whose', 1), ('value', 1), ('lie', 1), ('probed', 1), ('attacked', 1), ('fake', 1), ('system', 1), ('service', 1), ('token', 1), ('lure', 1)]
[('everything', 2), ('best', 1), ('help', 1), ('world', 1), ('written', 1), ('fujifilm', 1), ('outstanding', 1), ('hybrid', 1), ('camera', 1), ('explained', 1), ('easy', 1), ('understand', 1), ('language', 1), ('manual', 1), ('steroid', 1), ('assume', 1), ('photographer', 1), ('dive', 1), ('basic', 1), ('photography', 1), ('except', 1), ('appendix', 1), ('come', 1)]
[('scale', 3), ('challenge', 2), ('lot', 1), ('appreciation', 1), ('backend', 1), ('distributed', 1), ('system', 1), ('tends', 1), ('le', 1), ('empathy', 1), ('mobile', 1), ('development', 1), ('hard', 1), ('done', 1), ('book', 1), ('collect', 1), ('engineer', 1), ('face', 1), ('building', 1), ('io', 1), ('android', 1), ('apps', 1), ('common', 1), ('way', 1), ('tackle', 1), ('mean', 1), ('number', 1), ('user', 1)]
[('attack', 2), ('cybersecurity', 2), ('every', 1), ('year', 1), ('thousand', 1), ('fall', 1), ('victim', 1), ('phone', 1), ('scam', 1), ('phishing', 1), ('identity', 1), ('theft', 1), ('consequence', 1), ('completely', 1), ('preventable', 1), ('practice', 1), ('awareness', 1), ('many', 1), ('associate', 1), ('large', 1), ('corporation', 1), ('important', 1), ('cyber', 1), ('curiosity', 1), ('beginner', 1), ('guide', 1)]
[('sdn', 3), ('software', 2), ('defined', 1), ('network', 1), ('transforming', 1), ('internet', 1), ('replacing', 1), ('bundled', 1), ('proprietary', 1), ('hardware', 1), ('control', 1), ('embraced', 1), ('cloud', 1), ('provider', 1), ('telco', 1), ('enterprise', 1), ('enables', 1), ('new', 1), ('era', 1), ('innovation', 1), ('networking', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('perspective', 1)]
[('starting', 3), ('business', 3), ('company', 1), ('staying', 1), ('motivated', 1), ('designing', 1), ('building', 1), ('launching', 1), ('first', 1), ('product', 1), ('beyond', 1), ('developer', 1), ('looking', 1), ('start', 1), ('take', 1), ('lot', 1), ('knowing', 1), ('write', 1), ('good', 1), ('code', 1), ('learned', 1), ('software', 1), ('involves', 1)]
[('python', 4), ('advanced', 3), ('programming', 3), ('technique', 3), ('comprehensive', 2), ('developer', 2), ('mastery', 1), ('unleashed', 1), ('guide', 1), ('mastering', 1), ('designed', 1), ('seasoned', 1), ('aspiring', 1), ('programmer', 1), ('alike', 1), ('book', 1), ('offer', 1), ('understanding', 1), ('used', 1), ('experienced', 1), ('build', 1)]
[('ipad', 3), ('quickly', 1), ('master', 1), ('feature', 1), ('function', 1), ('handy', 1), ('crafted', 1), ('pocket', 1), ('guide', 1), ('versatile', 1), ('portable', 1), ('powerful', 1), ('ergonomically', 1), ('functionally', 1), ('designed', 1), ('perfect', 1), ('companion', 1), ('digital', 1), ('medium', 1), ('photo', 1), ('music', 1), ('movie', 1), ('mail', 1), ('apps', 1), ('help', 1), ('organize', 1), ('explore', 1), ('maximize', 1)]
[('firewire', 2), ('iee', 2), ('standard', 2), ('high', 1), ('speed', 1), ('serial', 1), ('bus', 1), ('communication', 1), ('come', 1), ('forefront', 1), ('important', 1), ('technology', 1), ('supporting', 1), ('today', 1), ('emerging', 1), ('data', 1), ('intensive', 1), ('application', 1), ('system', 1), ('architecture', 1), ('provides', 1), ('depth', 1), ('description', 1), ('including', 1), ('cable', 1), ('environment', 1), ('arbitration', 1), ('enhancement', 1), ('improvement', 1)]
[('usb', 3), ('universal', 2), ('serial', 2), ('bus', 2), ('specification', 2), ('system', 1), ('architecture', 1), ('second', 1), ('edition', 1), ('provides', 1), ('depth', 1), ('discussion', 1), ('based', 1), ('version', 1), ('focus', 1), ('protocol', 1), ('signaling', 1), ('environment', 1), ('electrical', 1), ('along', 1), ('hardware', 1), ('software', 1), ('interaction', 1), ('required', 1), ('configure', 1), ('access', 1), ('device', 1)]
[('isa', 4), ('system', 2), ('detailed', 2), ('device', 2), ('authoritative', 1), ('guide', 1), ('specification', 1), ('internal', 1), ('pc', 1), ('data', 1), ('exchange', 1), ('architecture', 1), ('provides', 1), ('tutorial', 1), ('intel', 1), ('microprocessor', 1), ('communicate', 1), ('memory', 1), ('theory', 1), ('operation', 1), ('ram', 1), ('rom', 1), ('along', 1), ('implementation', 1), ('commonly', 1), ('used', 1), ('discussion', 1)]
[('microsoft', 2), ('log', 2), ('parser', 2), ('book', 2), ('written', 1), ('developer', 1), ('first', 1), ('available', 1), ('popular', 1), ('yet', 1), ('undocumented', 1), ('tool', 1), ('accompanying', 1), ('web', 1), ('site', 1), ('contain', 1), ('hundred', 1), ('customized', 1), ('working', 1), ('script', 1), ('template', 1), ('system', 1)]
[('card', 4), ('pc', 3), ('pcmcia', 2), ('system', 2), ('association', 2), ('architecture', 1), ('bit', 1), ('second', 1), ('edition', 1), ('describes', 1), ('hardware', 1), ('software', 1), ('interface', 1), ('relationship', 1), ('overall', 1), ('design', 1), ('developed', 1), ('personal', 1), ('computer', 1), ('memory', 1), ('international', 1), ('japan', 1), ('electronics', 1), ('industry', 1), ('development', 1), ('jeida', 1), ('standard', 1), ('defines', 1)]
[('mode', 5), ('protected', 3), ('understanding', 2), ('real', 2), ('operation', 2), ('fundamental', 1), ('v', 1), ('key', 1), ('basic', 1), ('pc', 1), ('platform', 1), ('mindshare', 1), ('book', 1), ('software', 1), ('architecture', 1), ('detail', 1), ('challenge', 1), ('associated', 1)]
[('pci', 8), ('system', 1), ('architecture', 1), ('detailed', 1), ('comprehensive', 1), ('guide', 1), ('technology', 1), ('highlight', 1), ('many', 1), ('change', 1), ('improvement', 1), ('build', 1), ('knowledge', 1), ('master', 1), ('greater', 1), ('ease', 1), ('book', 1), ('discus', 1), ('drawback', 1), ('solves', 1), ('problem', 1), ('achieve', 1), ('faster', 1), ('transfer', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('objective', 1), ('become', 1), ('standard', 1), ('programming', 1), ('language', 1), ('application', 1), ('development', 1), ('mac', 1), ('o', 1), ('io', 1)]
[('way', 2), ('everyone', 1), ('looking', 1), ('save', 1), ('money', 1), ('day', 1), ('hard', 1), ('business', 1), ('complex', 1), ('need', 1), ('custom', 1), ('software', 1), ('application', 1), ('vba', 1), ('macro', 1), ('microsoft', 1), ('excel', 1), ('teach', 1), ('customize', 1), ('pre', 1), ('existing', 1)]
[('pentium', 3), ('processor', 2), ('audience', 2), ('unabridged', 1), ('offer', 1), ('unparalleled', 1), ('coverage', 1), ('intel', 1), ('ia', 1), ('family', 1), ('unlike', 1), ('text', 1), ('address', 1), ('either', 1), ('hardware', 1), ('software', 1), ('book', 1), ('serf', 1), ('comprehensive', 1), ('technical', 1), ('reference', 1), ('please', 1), ('note', 1), ('supplementary', 1), ('cd', 1), ('rom', 1)]
[('html', 3), ('best', 2), ('selling', 2), ('step', 2), ('need', 1), ('learn', 1), ('fast', 1), ('reference', 1), ('visual', 1), ('format', 1), ('task', 1), ('based', 1), ('instruction', 1), ('running', 1), ('time', 1), ('completely', 1), ('updated', 1), ('edition', 1), ('guide', 1), ('web', 1), ('expert', 1)]
[('step', 2), ('vba', 2), ('excel', 2), ('instruction', 1), ('creating', 1), ('macro', 1), ('harness', 1), ('power', 1), ('create', 1), ('custom', 1), ('application', 1), ('make', 1), ('work', 1), ('clear', 1), ('nonintimidating', 1), ('guide', 1), ('show', 1)]
[('cover', 2), ('access', 2), ('updated', 1), ('latest', 1), ('feature', 1), ('capability', 1), ('resource', 1), ('provides', 1), ('new', 1), ('inexperienced', 1), ('user', 1), ('eight', 1), ('task', 1), ('oriented', 1), ('minibooks', 1), ('begininning', 1), ('advanced', 1), ('level', 1)]
[('acrobat', 4), ('adobe', 2), ('application', 2), ('across', 2), ('represents', 1), ('quantum', 1), ('leap', 1), ('development', 1), ('newest', 1), ('iteration', 1), ('last', 1), ('piece', 1), ('complex', 1), ('integrated', 1), ('design', 1), ('software', 1), ('complete', 1), ('web', 1), ('integration', 1), ('accessibility', 1), ('compatibility', 1), ('major', 1), ('office', 1), ('remains', 1), ('viewing', 1), ('standard', 1), ('platform', 1)]
[('tutorial', 1), ('graduate', 1), ('student', 1), ('cover', 1), ('practical', 1), ('theoretical', 1), ('aspect', 1), ('separation', 1), ('logic', 1), ('construction', 1), ('proof', 1), ('coq', 1)]
[('sa', 2), ('architecture', 2), ('scsi', 2), ('mindshare', 1), ('press', 1), ('storage', 1), ('provides', 1), ('comprehensive', 1), ('description', 1), ('serial', 1), ('attached', 1), ('harry', 1), ('mason', 1), ('president', 1), ('trade', 1), ('association', 1), ('board', 1), ('director', 1)]
[('digital', 2), ('ipad', 1), ('game', 1), ('changing', 1), ('product', 1), ('reinvented', 1), ('way', 1), ('interact', 1), ('content', 1), ('web', 1), ('versitile', 1), ('portable', 1), ('powerful', 1), ('ergonomically', 1), ('functionally', 1), ('designed', 1), ('perfect', 1), ('companion', 1), ('medium', 1), ('photo', 1), ('music', 1)]
[('book', 3), ('adobe', 3), ('photoshop', 3), ('ebook', 2), ('version', 2), ('c', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('fourteen', 1), ('lesson', 1), ('classroom', 1), ('cover', 1), ('basic', 1), ('advanced', 1), ('technique', 1)]
[('concise', 1), ('easy', 1), ('understand', 1), ('guideline', 1), ('standard', 1), ('creating', 1), ('uml', 1), ('diagram', 1)]
[('world', 2), ('adobe', 1), ('microsoft', 1), ('amazon', 1), ('google', 1), ('common', 1), ('use', 1), ('develop', 1), ('product', 1), ('provide', 1), ('service', 1), ('popular', 1), ('programming', 1), ('language', 1), ('open', 1), ('possibility', 1), ('willing', 1), ('learn', 1)]
[('programming', 2), ('learn', 1), ('language', 1), ('best', 1), ('stephen', 1), ('kochan', 1), ('thorough', 1), ('easy', 1), ('follow', 1), ('instruction', 1), ('sure', 1), ('benefit', 1), ('beginning', 1), ('programmer', 1), ('book', 1), ('provides', 1), ('reader', 1), ('practical', 1), ('example', 1)]
[('first', 1), ('comprehensive', 1), ('tutorial', 1), ('reference', 1), ('implementation', 1), ('data', 1), ('structure', 1), ('algorithm', 1)]
[('photoshop', 3), ('world', 2), ('digital', 2), ('scott', 1), ('kelby', 1), ('bestselling', 1), ('author', 1), ('changed', 1), ('photography', 1), ('ground', 1), ('breaking', 1), ('award', 1), ('winning', 1), ('book', 1), ('photographer', 1), ('unveils', 1), ('exciting', 1), ('brand', 1), ('new', 1), ('way', 1)]
[('exam', 2), ('bi', 2), ('data', 2), ('prepare', 1), ('microsoft', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('power', 1), ('analysis', 1), ('visualization', 1), ('designed', 1), ('experienced', 1), ('professional', 1), ('analyst', 1), ('ready', 1), ('advance', 1), ('status', 1), ('ref', 1), ('focus', 1), ('critical', 1)]
[('build', 2), ('step', 2), ('amp', 1), ('gt', 1), ('nbsp', 1), ('session', 1), ('hour', 1), ('le', 1), ('learn', 1), ('powerful', 1), ('application', 1), ('world', 1), ('first', 1), ('complete', 1), ('open', 1), ('free', 1), ('mobile', 1), ('platform', 1), ('android', 1), ('using', 1), ('book', 1), ('straightforward', 1), ('approach', 1)]
[('formula', 2), ('microsoft', 2), ('excel', 2), ('user', 2), ('world', 1), ('mathematical', 1), ('jargon', 1), ('complex', 1), ('intimidating', 1), ('even', 1), ('advanced', 1), ('computer', 1), ('perhaps', 1), ('majority', 1), ('find', 1), ('difficult', 1), ('valuable', 1), ('program', 1), ('function', 1), ('strives', 1), ('break', 1), ('complexity', 1)]
[('window', 3), ('hardware', 2), ('plug', 2), ('play', 2), ('system', 2), ('designed', 1), ('companion', 1), ('volume', 1), ('official', 1), ('design', 1), ('guide', 1), ('architecture', 1), ('provides', 1), ('detailed', 1), ('software', 1), ('description', 1), ('technology', 1), ('integrated', 1), ('soon', 1), ('appear', 1), ('operating', 1), ('including', 1), ('nt', 1), ('addition', 1), ('coverage', 1), ('isa', 1)]
[('net', 2), ('tutorial', 1), ('reference', 1), ('implementation', 1), ('using', 1), ('vb', 1), ('data', 1), ('structure', 1), ('algorithm', 1), ('framework', 1), ('class', 1), ('library', 1), ('elsewhere', 1)]
[('tcp', 1), ('ip', 1), ('socket', 1), ('excellent', 1), ('book', 1), ('anyone', 1), ('interested', 1), ('writing', 1), ('network', 1), ('application', 1), ('using', 1), ('microsoft', 1), ('net', 1), ('framework', 1), ('unique', 1), ('combination', 1), ('written', 1), ('concise', 1), ('text', 1), ('rich', 1), ('carefully', 1), ('selected', 1), ('set', 1), ('working', 1), ('example', 1)]
[('word', 3), ('book', 3), ('need', 3), ('help', 1), ('build', 1), ('solid', 1), ('skill', 1), ('create', 1), ('document', 1), ('right', 1), ('expert', 1), ('level', 1), ('guidance', 1), ('leveraging', 1), ('advanced', 1), ('feature', 1), ('whenever', 1), ('buy', 1)]
[('sharepoint', 2), ('microsoft', 1), ('percent', 1), ('share', 1), ('portal', 1), ('market', 1), ('new', 1), ('release', 1), ('feature', 1), ('enhanced', 1), ('integration', 1), ('office', 1), ('sure', 1), ('give', 1), ('boost', 1), ('offer', 1), ('clear', 1), ('instruction', 1)]
[('us', 1), ('friendly', 1), ('easy', 1), ('understand', 1), ('dummy', 1), ('style', 1), ('help', 1), ('reader', 1), ('learn', 1), ('model', 1), ('system', 1), ('latest', 1), ('version', 1), ('uml', 1), ('modeling', 1), ('language', 1), ('used', 1), ('company', 1), ('throughout', 1), ('world', 1), ('develop', 1), ('blueprint', 1), ('complex', 1), ('computer', 1)]
[('edit', 2), ('video', 1), ('pro', 1), ('save', 1), ('common', 1), ('saying', 1), ('among', 1), ('film', 1), ('professional', 1), ('editing', 1), ('make', 1), ('difference', 1), ('boring', 1), ('vacation', 1), ('movie', 1), ('exciting', 1), ('travelogue', 1), ('whole', 1), ('dull', 1), ('news', 1), ('conference', 1), ('highlight', 1), ('evening', 1)]
[('step', 2), ('data', 2), ('book', 1), ('includes', 1), ('example', 1), ('case', 1), ('study', 1), ('teach', 1), ('user', 1), ('many', 1), ('power', 1), ('trick', 1), ('analyzing', 1), ('excel', 1), ('tip', 1), ('honed', 1), ('bill', 1), ('jelen', 1), ('mrexcel', 1), ('year', 1), ('run', 1), ('financial', 1), ('analyst', 1), ('charged', 1), ('taking', 1), ('mainframe', 1), ('turning', 1), ('useful', 1), ('information', 1), ('quickly', 1), ('topic', 1), ('include', 1), ('perfectly', 1), ('sorting', 1)]
[('excel', 3), ('language', 3), ('vba', 2), ('application', 2), ('book', 1), ('aimed', 1), ('squarely', 1), ('user', 1), ('want', 1), ('harness', 1), ('power', 1), ('time', 1), ('presented', 1), ('context', 1), ('general', 1), ('programming', 1)]
[('web', 2), ('taken', 1), ('developer', 1), ('long', 1), ('discover', 1), ('come', 1), ('creating', 1), ('dynamic', 1), ('database', 1), ('driven', 1), ('site', 1), ('mysql', 1), ('php', 1), ('provide', 1), ('winning', 1), ('open', 1), ('source', 1), ('combination', 1), ('add', 1), ('book', 1), ('mix', 1), ('limit', 1), ('powerful', 1), ('interactive', 1)]
[('information', 1), ('presented', 1), ('natural', 1), ('sometimes', 1), ('presentation', 1), ('almost', 1), ('important', 1), ('content', 1), ('create', 1), ('report', 1)]
[('sql', 3), ('microsoft', 2), ('minute', 2), ('need', 2), ('sam', 1), ('teach', 1), ('server', 1), ('offer', 1), ('straightforward', 1), ('practical', 1), ('answer', 1), ('fast', 1), ('result', 1), ('working', 1), ('lesson', 1), ('learn', 1), ('everything', 1), ('know', 1), ('take', 1), ('advantage', 1)]
[('book', 1), ('introduces', 1), ('different', 1), ('approach', 1), ('developing', 1), ('recommender', 1), ('system', 1), ('automate', 1), ('choice', 1), ('making', 1), ('strategy', 1), ('provide', 1), ('affordable', 1), ('personal', 1), ('high', 1), ('quality', 1), ('recommendation', 1)]
[('ipad', 2), ('guide', 2), ('meet', 1), ('pocket', 1), ('essential', 1), ('introduction', 1), ('hand', 1), ('steer', 1), ('navigate', 1), ('home', 1), ('screen', 1), ('launch', 1), ('run', 1), ('switch', 1), ('apps', 1), ('use', 1), ('magical', 1), ('smart', 1), ('cover', 1), ('put', 1), ('sleep', 1), ('wake', 1)]
[('programming', 2), ('hand', 1), ('introduction', 1), ('exciting', 1), ('new', 1), ('language', 1), ('includes', 1), ('carefully', 1), ('chosen', 1), ('exercise', 1), ('project', 1)]
[('nbsp', 2), ('printed', 1), ('entirely', 1), ('color', 1), ('helpful', 1), ('figure', 1), ('syntax', 1), ('coloring', 1), ('make', 1), ('code', 1), ('sample', 1), ('appear', 1), ('visual', 1), ('studio', 1), ('window', 1), ('presentation', 1), ('foundation', 1), ('wpf', 1), ('key', 1), ('component', 1), ('net', 1), ('framework', 1), ('giving', 1), ('power', 1)]
[('exam', 2), ('focus', 2), ('prepare', 1), ('microsoft', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('window', 1), ('server', 1), ('identity', 1), ('feature', 1), ('functionality', 1), ('designed', 1), ('experienced', 1), ('professional', 1), ('ready', 1), ('advance', 1), ('status', 1), ('ref', 1), ('critical', 1), ('thinking', 1), ('decision', 1), ('making', 1), ('acumen', 1), ('needed', 1), ('success', 1), ('mcsa', 1), ('level', 1), ('expertise', 1)]
[('computer', 2), ('smarter', 1), ('computerif', 1), ('understand', 1), ('quickly', 1), ('left', 1), ('behind', 1), ('today', 1), ('fast', 1), ('paced', 1), ('machine', 1), ('dependent', 1), ('society', 1), ('science', 1), ('made', 1), ('simple', 1), ('offer', 1), ('straightforward', 1), ('resource', 1), ('technology', 1), ('novice', 1), ('advanced', 1)]
[('business', 3), ('fail', 2), ('process', 1), ('production', 1), ('line', 1), ('new', 1), ('economy', 1), ('product', 1), ('service', 1), ('customer', 1), ('fails', 1), ('owner', 1), ('change', 1), ('concern', 1)]
[('issep', 3), ('guide', 2), ('official', 1), ('isc', 1), ('cissp', 1), ('cbk', 1), ('provides', 1), ('inclusive', 1), ('analysis', 1), ('topic', 1), ('covered', 1), ('newly', 1), ('created', 1), ('exam', 1), ('first', 1), ('fully', 1), ('comprehensive', 1), ('test', 1), ('book', 1), ('promotes', 1), ('understanding', 1), ('four', 1), ('domain', 1), ('volume', 1), ('explains', 1), ('isse', 1), ('comparing', 1), ('traditional', 1), ('system', 1), ('engineering', 1), ('model', 1), ('enabling', 1)]
[('access', 2), ('vba', 2), ('programming', 2), ('programmer', 1), ('reference', 1), ('cover', 1), ('wide', 1), ('spectrum', 1), ('topic', 1), ('relevant', 1), ('although', 1), ('assumes', 1), ('reader', 1), ('familiarity', 1), ('language', 1), ('begin', 1), ('brief', 1), ('introduction', 1)]
[('xml', 3), ('tag', 3), ('data', 2), ('see', 1), ('work', 1), ('business', 1), ('need', 1), ('r', 1), ('feed', 1), ('create', 1), ('consistency', 1), ('web', 1), ('different', 1), ('purpose', 1), ('share', 1), ('format', 1)]
[('sql', 4), ('server', 2), ('gain', 1), ('solid', 1), ('understanding', 1), ('write', 1), ('better', 1), ('query', 1), ('master', 1), ('fundamental', 1), ('transact', 1), ('develop', 1), ('code', 1), ('querying', 1), ('modifying', 1), ('data', 1), ('microsoft', 1), ('led', 1), ('expert', 1), ('learn', 1), ('concept', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('something', 1), ('big', 1), ('happen', 1), ('foreword', 1), ('box', 1), ('architect', 1), ('microsoft', 1), ('corporation', 1), ('nbsp', 1)]
[('networking', 3), ('first', 2), ('step', 2), ('computer', 2), ('world', 1), ('experience', 1), ('required', 1), ('includes', 1), ('clear', 1), ('easily', 1), ('understood', 1), ('explanation', 1), ('make', 1), ('learning', 1), ('easy', 1), ('begin', 1), ('learn', 1), ('basic', 1), ('terminology', 1)]
[('php', 3), ('mysql', 3), ('web', 3), ('database', 2), ('development', 1), ('fourth', 1), ('edition', 1), ('definitive', 1), ('guide', 1), ('building', 1), ('drive', 1), ('application', 1), ('popular', 1), ('open', 1), ('source', 1), ('technology', 1), ('ideal', 1), ('quickly', 1), ('developing', 1), ('driven', 1)]
[('web', 2), ('site', 2), ('packed', 1), ('latest', 1), ('dreamweaver', 1), ('tip', 1), ('technique', 1), ('speed', 1), ('fast', 1), ('start', 1), ('creating', 1), ('dynamite', 1), ('want', 1), ('create', 1), ('sophisticated', 1), ('easy', 1)]
[('access', 2), ('resource', 2), ('database', 2), ('ultimate', 1), ('microsoft', 1), ('office', 1), ('build', 1), ('highly', 1), ('responsive', 1), ('track', 1), ('report', 1), ('share', 1), ('information', 1), ('make', 1), ('informed', 1), ('decision', 1), ('comprehensive', 1), ('show', 1), ('design', 1), ('develop', 1), ('custom', 1), ('even', 1), ('little', 1), ('programming', 1), ('experience', 1), ('learn', 1), ('collect', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('developer', 2), ('iphone', 2), ('amp', 1), ('gt', 1), ('clear', 1), ('easy', 1), ('understand', 1), ('tutorial', 1), ('want', 1), ('write', 1), ('software', 1), ('today', 1), ('hottest', 1), ('market', 1), ('itouch', 1), ('app', 1), ('store', 1), ('nbsp', 1), ('start', 1), ('finish', 1), ('hand', 1), ('introduction', 1), ('programming', 1), ('every', 1)]
[('language', 2), ('uml', 2), ('omg', 2), ('popular', 1), ('unified', 1), ('modeling', 1), ('notation', 1), ('developed', 1), ('object', 1), ('management', 1), ('group', 1), ('used', 1), ('design', 1), ('create', 1), ('specification', 1), ('software', 1), ('system', 1), ('recent', 1), ('release', 1), ('version', 1)]
[('ready', 1), ('made', 1), ('customizable', 1), ('framework', 1), ('cover', 1), ('aspect', 1), ('software', 1), ('testing', 1)]
[('business', 2), ('case', 2), ('excel', 2), ('solution', 2), ('containing', 1), ('study', 1), ('illustrate', 1), ('nearly', 1), ('every', 1), ('aspect', 1), ('book', 1), ('present', 1), ('real', 1), ('life', 1), ('problem', 1), ('work', 1), ('addition', 1), ('exemplary', 1), ('analysis', 1), ('considers', 1), ('alternate', 1), ('approach', 1), ('gotchas', 1), ('includes', 1), ('summary', 1), ('necessary', 1), ('command', 1), ('function', 1), ('file', 1)]
[('codenotes', 2), ('technology', 2), ('provides', 1), ('succinct', 1), ('accurate', 1), ('speedy', 1), ('way', 1), ('developer', 1), ('ramp', 1), ('new', 1), ('language', 1), ('unlike', 1), ('programming', 1), ('book', 1), ('drill', 1), ('core', 1), ('aspect', 1), ('focusing', 1), ('key', 1), ('element', 1)]
[('window', 2), ('server', 2), ('curious', 1), ('hesitant', 1), ('finding', 1), ('way', 1), ('around', 1), ('microsoft', 1), ('new', 1), ('dummy', 1), ('book', 1), ('friendly', 1), ('reference', 1), ('show', 1), ('everything', 1), ('need', 1), ('know', 1)]
[('autocad', 2), ('dummy', 1), ('updated', 1), ('reflect', 1), ('new', 1), ('feature', 1), ('latest', 1), ('release', 1)]
[('best', 2), ('join', 1), ('league', 1), ('thousand', 1), ('programmer', 1), ('learn', 1), ('fifth', 1), ('edition', 1), ('seller', 1), ('sam', 1), ('teach', 1), ('day', 1), ('written', 1), ('jesse', 1), ('liberty', 1), ('known', 1), ('programming', 1), ('manual', 1), ('author', 1), ('bradley', 1)]
[('active', 3), ('directory', 3), ('guide', 1), ('learning', 1), ('quick', 1), ('easy', 1), ('way', 1), ('whether', 1), ('new', 1), ('ad', 1), ('savvy', 1), ('system', 1), ('administrator', 1), ('looking', 1), ('brush', 1), ('skill', 1), ('dummy', 1), ('steer', 1)]
[('web', 3), ('site', 2), ('dotnetnuke', 2), ('want', 1), ('develop', 1), ('without', 1), ('help', 1), ('programmer', 1), ('lucky', 1), ('content', 1), ('management', 1), ('system', 1), ('allows', 1), ('build', 1), ('maintain', 1), ('dynamic', 1), ('using', 1), ('browser', 1)]
[('edition', 2), ('language', 2), ('proudly', 1), ('presenting', 1), ('latest', 1), ('time', 1), ('bestselling', 1), ('book', 1), ('successful', 1), ('author', 1), ('ivor', 1), ('horton', 1), ('repeat', 1), ('formula', 1), ('made', 1), ('previous', 1), ('popular', 1), ('teaching', 1), ('standard', 1)]
[('exam', 2), ('prepare', 1), ('microsoft', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('window', 1), ('server', 1), ('installation', 1), ('storage', 1), ('compute', 1), ('feature', 1), ('capability', 1), ('designed', 1), ('experienced', 1), ('professional', 1), ('ready', 1), ('advance', 1), ('status', 1), ('ref', 1), ('focus', 1), ('critical', 1), ('thinking', 1), ('decision', 1), ('making', 1), ('acumen', 1), ('needed', 1), ('success', 1), ('mcsa', 1), ('level', 1)]
[('critical', 3), ('project', 3), ('chain', 2), ('management', 2), ('time', 2), ('artech', 1), ('house', 1), ('bestseller', 1), ('build', 1), ('success', 1), ('second', 1), ('edition', 1), ('packed', 1), ('fresh', 1), ('field', 1), ('tested', 1), ('insight', 1), ('plan', 1), ('lead', 1), ('complete', 1), ('half', 1), ('provides', 1), ('expanded', 1), ('coverage', 1), ('planning', 1), ('multiple', 1), ('selection', 1)]
[('design', 2), ('discover', 1), ('technique', 1), ('behind', 1), ('beautiful', 1), ('deconstructing', 1), ('understand', 1), ('term', 1), ('hacker', 1), ('redefined', 1), ('consist', 1), ('anyone', 1), ('insatiable', 1), ('curiosity', 1), ('thing', 1), ('work', 1)]
[('want', 4), ('spreadsheet', 2), ('microsoft', 2), ('excel', 2), ('tip', 2), ('hand', 1), ('fast', 1), ('collected', 1), ('shortest', 1), ('cut', 1), ('coolest', 1), ('trick', 1), ('find', 1), ('place', 1), ('anywhere', 1), ('put', 1), ('portable', 1), ('fun', 1), ('package', 1)]
[('step', 2), ('programming', 2), ('minimal', 1), ('technical', 1), ('jargon', 1), ('discussion', 1), ('quiz', 1), ('end', 1), ('chapter', 1), ('make', 1), ('easy', 1), ('understand', 1), ('guide', 1), ('quickly', 1), ('learn', 1), ('language', 1), ('anatomy', 1), ('jump', 1), ('right', 1), ('creating', 1), ('program', 1), ('expert', 1), ('guidance', 1), ('discover', 1), ('function', 1), ('object', 1), ('compiler', 1), ('linkers', 1)]
[('exam', 2), ('sql', 2), ('prepare', 1), ('microsoft', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('server', 1), ('transact', 1), ('data', 1), ('management', 1), ('query', 1), ('database', 1), ('programming', 1), ('designed', 1), ('experienced', 1), ('professional', 1), ('ready', 1), ('advance', 1), ('status', 1), ('ref', 1)]
[('excel', 2), ('use', 1), ('vba', 1), ('macro', 1), ('automate', 1), ('virtually', 1), ('routine', 1), ('task', 1), ('save', 1), ('hour', 1), ('day', 1), ('maybe', 1), ('even', 1), ('week', 1), ('learn', 1), ('make', 1), ('thing', 1), ('thought', 1), ('simply', 1), ('impossible', 1), ('book', 1), ('reveals', 1), ('scripting', 1), ('technique', 1), ('find', 1)]
[('description', 1), ('logic', 1), ('handbook', 1), ('unique', 1), ('reference', 1), ('field', 1), ('knowledge', 1), ('representation', 1)]
[('window', 2), ('release', 2), ('comprehensive', 1), ('reference', 1), ('microsoft', 1), ('expert', 1), ('cover', 1), ('aspect', 1), ('new', 1), ('anticipated', 1), ('numerous', 1), ('change', 1), ('need', 1), ('complete', 1), ('guide', 1), ('take', 1), ('full', 1)]
[('access', 2), ('take', 2), ('using', 1), ('probably', 1), ('aware', 1), ('power', 1), ('potential', 1), ('itching', 1), ('advantage', 1), ('vba', 1), ('programming', 1), ('dummie', 1), ('beyond', 1), ('form', 1), ('report', 1), ('show', 1), ('use', 1)]
[('algorithm', 3), ('beginning', 1), ('good', 1), ('understanding', 1), ('knowledge', 1), ('apply', 1), ('crucial', 1), ('producing', 1), ('software', 1), ('work', 1), ('correctly', 1), ('performs', 1), ('efficiently', 1), ('book', 1), ('impart', 1), ('essential', 1), ('information', 1), ('basic', 1), ('data', 1), ('structure', 1), ('performance', 1), ('characteristic', 1)]
[('nan', 1)]
[('multidimensional', 2), ('data', 2), ('warehouse', 2), ('serving', 1), ('tutorial', 1), ('reference', 1), ('guide', 1), ('mdx', 1), ('expression', 1), ('query', 1), ('language', 1), ('book', 1), ('show', 1), ('developer', 1), ('need', 1), ('know', 1), ('build', 1), ('effective', 1), ('brief', 1), ('overview', 1)]
[('excel', 3), ('depth', 1), ('beyond', 1), ('basic', 1), ('beneath', 1), ('surface', 1), ('guide', 1), ('everyone', 1), ('want', 1), ('streamline', 1), ('work', 1), ('done', 1), ('le', 1), ('time', 1), ('legendary', 1), ('expert', 1), ('bill', 1), ('jelen', 1), ('provides', 1), ('specific', 1), ('tested', 1), ('proven', 1), ('solution', 1)]
[('server', 2), ('access', 2), ('compared', 1), ('industrial', 1), ('strength', 1), ('database', 1), ('product', 1), ('microsoft', 1), ('sql', 1), ('breeze', 1), ('use', 1), ('run', 1), ('pc', 1), ('rather', 1), ('ideal', 1), ('small', 1), ('mid', 1), ('sized', 1), ('business', 1), ('household', 1), ('still', 1), ('intimidating', 1), ('learn', 1), ('help', 1), ('new', 1), ('version', 1), ('crammed', 1), ('yet', 1), ('another', 1), ('set', 1), ('feature', 1), ('many', 1), ('fact', 1)]
[('programming', 2), ('nonsense', 1), ('introduction', 1), ('software', 1), ('design', 1), ('using', 1), ('python', 1), ('language', 1), ('experience', 1)]
[('accessible', 1), ('refreshingly', 1), ('candid', 1), ('helpful', 1), ('pragmatic', 1), ('guide', 1), ('address', 1), ('real', 1), ('need', 1), ('dealing', 1), ('problem', 1), ('face', 1), ('new', 1), ('manager', 1), ('providing', 1), ('number', 1), ('practical', 1), ('recommendation', 1), ('approach', 1), ('including', 1), ('make', 1)]
[('crystal', 2), ('report', 2), ('authorized', 1), ('guide', 1), ('latest', 1), ('edition', 1), ('business', 1), ('intelligence', 1), ('software', 1), ('product', 1), ('million', 1), ('license', 1), ('shipped', 1), ('date', 1), ('nbsp', 1), ('book', 1), ('reference', 1), ('designed', 1), ('provide', 1), ('hand', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('third', 1), ('edition', 1), ('thoroughly', 1), ('updated', 1), ('expanded', 1), ('extensive', 1), ('new', 1), ('coverage', 1), ('nbsp', 1), ('session', 1), ('hour', 1), ('le', 1), ('master', 1), ('entire', 1), ('sap', 1), ('project', 1), ('lifecycle', 1), ('planning', 1)]
[('iphone', 2), ('programmer', 1), ('looking', 1), ('new', 1), ('challenge', 1), ('thought', 1), ('building', 1), ('app', 1), ('make', 1), ('heart', 1), ('race', 1), ('pulse', 1), ('quicken', 1), ('beginning', 1), ('development', 1), ('book', 1), ('assuming', 1), ('minimal', 1), ('working', 1)]
[('java', 2), ('development', 2), ('book', 2), ('technology', 2), ('agile', 1), ('spring', 1), ('hibernate', 1), ('eclipse', 1), ('robust', 1), ('effective', 1), ('method', 1), ('help', 1), ('bring', 1), ('simplicity', 1), ('back', 1), ('world', 1), ('enterprise', 1), ('three', 1), ('key', 1), ('covered', 1)]
[('office', 3), ('book', 2), ('need', 2), ('special', 1), ('edition', 1), ('using', 1), ('microsoft', 1), ('nbsp', 1), ('crafted', 1), ('grow', 1), ('providing', 1), ('reference', 1), ('material', 1), ('move', 1), ('toward', 1), ('proficiency', 1), ('use', 1), ('advanced', 1), ('feature', 1), ('buy', 1)]
[('computer', 3), ('different', 2), ('identify', 2), ('amp', 1), ('gt', 1), ('nbsp', 1), ('book', 1), ('learn', 1), ('recognize', 1), ('type', 1), ('form', 1), ('memory', 1), ('cable', 1), ('connector', 1), ('troubleshoot', 1), ('irq', 1), ('conflict', 1), ('resource', 1), ('problem', 1)]
[('excel', 2), ('something', 2), ('data', 2), ('learned', 1), ('method', 1), ('madness', 1), ('formula', 1), ('function', 1), ('friend', 1), ('instead', 1), ('foe', 1), ('yet', 1), ('know', 1), ('missing', 1), ('make', 1), ('job', 1), ('even', 1), ('easier', 1), ('efficient', 1), ('effective', 1), ('management', 1), ('managing', 1), ('book', 1), ('market', 1), ('focus', 1), ('learn', 1)]
[('microsoft', 2), ('dynamic', 2), ('ax', 2), ('precise', 1), ('description', 1), ('instruction', 1), ('enable', 1), ('user', 1), ('student', 1), ('consultant', 1), ('easily', 1), ('understand', 1), ('offer', 1), ('premium', 1), ('erp', 1), ('solution', 1), ('support', 1), ('large', 1), ('mid', 1), ('sized', 1), ('organization', 1), ('complete', 1)]
[('home', 3), ('turn', 2), ('want', 2), ('tomorrow', 1), ('today', 1), ('absolute', 1), ('beginner', 1), ('guide', 1), ('automation', 1), ('help', 1), ('ordinary', 1), ('high', 1), ('tech', 1), ('schedule', 1), ('light', 1), ('vacation', 1), ('stuck', 1), ('late', 1), ('work', 1), ('start', 1)]
[('java', 2), ('second', 1), ('edition', 1), ('feature', 1), ('redesigned', 1), ('compiler', 1), ('project', 1), ('subset', 1)]
[('textbook', 1), ('teach', 1), ('student', 1), ('think', 1), ('algorithm', 1), ('expert', 1), ('without', 1), ('getting', 1), ('bogged', 1), ('formal', 1), ('proof', 1)]
[('window', 3), ('perfect', 1), ('plain', 1), ('english', 1), ('guide', 1), ('anticipated', 1), ('release', 1), ('whether', 1), ('new', 1), ('computer', 1), ('eager', 1), ('start', 1), ('using', 1), ('newest', 1), ('version', 1), ('dummy', 1), ('enhanced', 1)]
[('show', 1), ('tech', 1), ('hobbyist', 1), ('build', 1), ('perfect', 1), ('pc', 1), ('whether', 1), ('want', 1), ('create', 1), ('ultimate', 1), ('gaming', 1), ('machine', 1), ('combine', 1), ('new', 1), ('recycled', 1), ('part', 1), ('construct', 1), ('inexpensive', 1), ('computer', 1), ('child', 1)]
[('manage', 2), ('customer', 2), ('sale', 1), ('service', 1), ('marketing', 1), ('process', 1), ('together', 1), ('find', 1), ('information', 1), ('make', 1), ('business', 1), ('productive', 1), ('whether', 1), ('completely', 1), ('new', 1), ('relationship', 1), ('management', 1), ('crm', 1), ('software', 1), ('want', 1)]
[('new', 3), ('example', 2), ('classic', 1), ('primer', 1), ('plus', 1), ('th', 1), ('edition', 1), ('revised', 1), ('include', 1), ('programming', 1), ('exercise', 1), ('newly', 1), ('improved', 1), ('ansi', 1), ('iso', 1), ('standard', 1), ('task', 1), ('oriented', 1), ('teach', 1), ('fundamental', 1)]
[('security', 4), ('infosec', 2), ('career', 2), ('hacking', 1), ('start', 1), ('describing', 1), ('many', 1), ('different', 1), ('available', 1), ('including', 1), ('engineer', 1), ('analyst', 1), ('penetration', 1), ('tester', 1), ('auditor', 1), ('administrator', 1), ('programmer', 1), ('program', 1), ('manager', 1)]
[('nan', 1)]
[('new', 1), ('york', 1), ('time', 1), ('bestseller', 1), ('know', 1), ('scroll', 1), ('web', 1), ('page', 1), ('tapping', 1), ('space', 1), ('bar', 1), ('recover', 1), ('photo', 1), ('deleted', 1), ('accident', 1), ('cell', 1), ('phone', 1), ('battery', 1), ('dead', 1), ('dinnertime', 1), ('day', 1), ('come', 1), ('technology', 1), ('driver', 1), ('ed', 1), ('class', 1), ('government', 1), ('issued', 1), ('pamphlet', 1), ('covering', 1)]
[('ata', 3), ('sata', 2), ('serial', 2), ('interface', 2), ('standard', 2), ('drive', 2), ('intended', 1), ('expand', 1), ('eventually', 1), ('replace', 1), ('parallel', 1), ('connection', 1), ('hard', 1), ('cd', 1), ('rom', 1), ('dvd', 1), ('personal', 1), ('computer', 1), ('nearly', 1), ('twenty', 1), ('year', 1), ('high', 1), ('speed', 1), ('version', 1), ('designed', 1), ('maintain', 1), ('compatibility', 1), ('software', 1), ('written', 1)]
[('word', 4), ('microsoft', 2), ('power', 2), ('yes', 1), ('lot', 1), ('world', 1), ('popular', 1), ('processing', 1), ('software', 1), ('nothing', 1), ('take', 1), ('boil', 1), ('tip', 1), ('speed', 1), ('manipulating', 1), ('text', 1), ('adding', 1), ('graphic', 1), ('using', 1), ('table', 1), ('putting', 1), ('web', 1)]
[('step', 2), ('guide', 2), ('microsoft', 2), ('office', 2), ('application', 2), ('friendly', 1), ('database', 1), ('access', 1), ('least', 1), ('understood', 1), ('challenging', 1), ('suite', 1), ('designed', 1), ('help', 1), ('anyone', 1)]
[('second', 3), ('life', 3), ('maybe', 2), ('heard', 1), ('already', 1), ('jumped', 1), ('foot', 1), ('gotten', 1), ('stuck', 1), ('veteran', 1), ('want', 1), ('build', 1), ('something', 1), ('run', 1), ('business', 1), ('fear', 1), ('dummy', 1), ('hear', 1)]
[('linux', 2), ('programming', 2), ('beginning', 1), ('fourth', 1), ('edition', 1), ('continues', 1), ('unique', 1), ('approach', 1), ('teaching', 1), ('unix', 1), ('simple', 1), ('structured', 1), ('way', 1), ('platform', 1), ('use', 1), ('detailed', 1), ('realistic', 1), ('example', 1), ('student', 1), ('learn', 1)]
[('sql', 3), ('pl', 2), ('find', 1), ('tip', 1), ('creating', 1), ('efficient', 1), ('code', 1), ('know', 1), ('bit', 1), ('book', 1), ('make', 1), ('programming', 1), ('painless', 1), ('oracle', 1), ('spoken', 1), ('need', 1), ('speed', 1)]
[('ipaq', 3), ('pocket', 2), ('whole', 1), ('world', 1), ('technology', 1), ('literally', 1), ('fingertip', 1), ('pda', 1), ('pc', 1), ('almost', 1), ('anything', 1), ('home', 1), ('desktop', 1), ('computer', 1), ('know', 1)]
[('reader', 2), ('taking', 1), ('basic', 1), ('language', 1), ('right', 1), ('advanced', 1), ('topic', 1), ('book', 1), ('practical', 1), ('hand', 1), ('resource', 1), ('aim', 1), ('keep', 1), ('involved', 1), ('time', 1), ('focus', 1), ('sql', 1), ('standard', 1), ('loaded', 1), ('detailed', 1), ('example', 1)]
[('site', 3), ('flash', 2), ('web', 2), ('know', 1), ('audience', 1), ('plan', 1), ('make', 1), ('interactive', 1), ('cool', 1), ('gone', 1), ('day', 1), ('boring', 1), ('add', 1), ('interactivity', 1), ('video', 1)]
[('exam', 2), ('sql', 2), ('focus', 2), ('prepare', 1), ('microsoft', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('provisioning', 1), ('server', 1), ('database', 1), ('premise', 1), ('azure', 1), ('designed', 1), ('experienced', 1), ('professional', 1), ('ready', 1), ('advance', 1), ('status', 1), ('ref', 1), ('critical', 1), ('thinking', 1), ('decision', 1), ('making', 1), ('acumen', 1), ('needed', 1), ('success', 1), ('mcsa', 1), ('level', 1)]
[('security', 3), ('comprehensive', 1), ('coverage', 1), ('given', 1), ('date', 1), ('practical', 1), ('guide', 1), ('web', 1), ('service', 1), ('first', 1), ('cover', 1), ('final', 1), ('release', 1), ('new', 1), ('standard', 1), ('saml', 1), ('w', 1), ('rosenberg', 1), ('remy', 1), ('expert', 1), ('co', 1), ('founded', 1), ('geotrust', 1)]
[('book', 3), ('ebook', 2), ('version', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('real', 1), ('world', 1), ('business', 1), ('explosion', 1), ('ebay', 1), ('entrepreneur', 1), ('absolute', 1), ('beginner', 1), ('guide', 1), ('launching', 1)]
[('book', 2), ('free', 2), ('nbsp', 2), ('make', 1), ('new', 1), ('amp', 1), ('nookcolor', 1), ('nook', 1), ('ebook', 1), ('reader', 1), ('play', 1), ('medium', 1), ('content', 1), ('uncover', 1), ('powerful', 1), ('little', 1), ('known', 1), ('feature', 1), ('love', 1), ('find', 1)]
[('book', 2), ('excel', 2), ('finally', 1), ('treat', 1), ('powerful', 1), ('development', 1), ('platform', 1), ('really', 1), ('cover', 1), ('every', 1), ('facet', 1), ('developing', 1), ('commercial', 1), ('quality', 1), ('application', 1), ('beginner', 1), ('writing', 1), ('professional', 1), ('developer', 1)]
[('mindstorms', 2), ('new', 2), ('cable', 2), ('ultimate', 1), ('tool', 1), ('maniacsthe', 1), ('kit', 1), ('updated', 1), ('include', 1), ('programming', 1), ('brick', 1), ('usb', 1), ('rj', 1), ('motor', 1), ('sensor', 1), ('book', 1), ('update', 1), ('robotics', 1), ('information', 1), ('compatible', 1), ('set', 1)]
[('vlookup', 5), ('excel', 3), ('function', 2), ('enables', 1), ('use', 1), ('database', 1), ('joining', 1), ('data', 1), ('different', 1), ('worksheet', 1), ('awesome', 1), ('quick', 1), ('ehnanced', 1), ('ebook', 1), ('designed', 1), ('reader', 1), ('speed', 1), ('book', 1), ('start', 1), ('basic', 1), ('explain', 1), ('plain', 1), ('english', 1), ('enter', 1), ('first', 1)]
[('codenotes', 2), ('technology', 2), ('provides', 1), ('succinct', 1), ('accurate', 1), ('speedy', 1), ('way', 1), ('forum', 1), ('developer', 1), ('ramp', 1), ('new', 1), ('language', 1), ('unlike', 1), ('programming', 1), ('book', 1), ('drill', 1), ('tothe', 1), ('core', 1), ('aspect', 1), ('focusing', 1), ('key', 1), ('element', 1), ('needed', 1)]
[('codenotes', 2), ('technology', 2), ('provides', 1), ('succinct', 1), ('accurate', 1), ('speedy', 1), ('way', 1), ('developer', 1), ('ramp', 1), ('new', 1), ('language', 1), ('unlike', 1), ('programming', 1), ('book', 1), ('drill', 1), ('core', 1), ('aspect', 1), ('focusing', 1), ('key', 1), ('element', 1)]
[('unique', 1), ('reference', 1), ('field', 1), ('knowledge', 1), ('representation', 1), ('available', 1), ('paperback', 1)]
[('matlab', 2), ('guide', 1), ('programmer', 1), ('offer', 1), ('collection', 1), ('standard', 1), ('guideline', 1), ('creating', 1), ('code', 1), ('easy', 1), ('understand', 1)]
[('access', 3), ('reference', 2), ('microsoft', 2), ('aspect', 1), ('want', 1), ('learn', 1), ('inside', 1), ('nine', 1), ('minibooks', 1), ('easy', 1), ('exactly', 1), ('need', 1), ('book', 1), ('cover', 1)]
[('xp', 3), ('modeling', 2), ('created', 2), ('first', 1), ('book', 1), ('cover', 1), ('agile', 1), ('new', 1), ('technique', 1), ('specifically', 1), ('project', 1), ('extreme', 1), ('programming', 1), ('buzz', 1), ('software', 1), ('development', 1), ('community', 1), ('design', 1), ('pattern', 1), ('several', 1), ('year', 1), ('ago', 1), ('although', 1)]
[('visio', 2), ('whether', 1), ('designing', 1), ('network', 1), ('business', 1), ('plan', 1), ('office', 1), ('building', 1), ('transform', 1), ('vision', 1), ('sophisticated', 1), ('diagram', 1), ('drawing', 1), ('comprehensive', 1), ('reference', 1), ('show', 1), ('discover', 1), ('use', 1)]
[('nbsp', 2), ('next', 1), ('time', 1), ('kid', 1), ('show', 1), ('door', 1), ('asking', 1), ('code', 1), ('review', 1), ('book', 1), ('going', 1), ('throw', 1), ('aaron', 1), ('hillegass', 1), ('founder', 1), ('big', 1), ('nerd', 1), ('ranch', 1), ('inc', 1), ('author', 1), ('cocoa', 1), ('programming', 1), ('mac', 1), ('o', 1), ('unlocking', 1)]
[('networking', 3), ('cisco', 2), ('enough', 2), ('simplified', 1), ('second', 1), ('edition', 1), ('nbsp', 1), ('master', 1), ('today', 1), ('world', 1), ('book', 1), ('completely', 1), ('updated', 1), ('fully', 1), ('illustrated', 1), ('visual', 1), ('approach', 1), ('easy', 1), ('novice', 1), ('substantive', 1), ('professional', 1)]
[('access', 2), ('appliance', 2), ('juniper', 1), ('network', 1), ('secure', 1), ('ssl', 1), ('vpn', 1), ('provide', 1), ('complete', 1), ('range', 1), ('remote', 1), ('smallest', 1), ('company', 1), ('largest', 1), ('service', 1), ('provider', 1), ('comprehensive', 1), ('configuration', 1), ('guide', 1), ('allow', 1), ('system', 1), ('administrator', 1)]
[('outlook', 3), ('microsoft', 1), ('widely', 1), ('used', 1), ('mail', 1), ('program', 1), ('offer', 1), ('programmability', 1), ('sue', 1), ('mosher', 1), ('introduces', 1), ('key', 1), ('concept', 1), ('programming', 1), ('using', 1), ('visual', 1), ('basic', 1), ('application', 1), ('custom', 1), ('form', 1), ('external', 1), ('script', 1), ('without', 1)]
[('picture', 1), ('happen', 1), ('make', 1), ('unleash', 1), ('creative', 1), ('potential', 1), ('essential', 1), ('guide', 1), ('myriad', 1), ('feature', 1), ('paint', 1), ('shop', 1), ('pro', 1), ('photo', 1), ('written', 1), ('specifically', 1), ('photographer', 1), ('working', 1), ('professional', 1), ('tell', 1), ('exactly', 1), ('need', 1), ('know', 1), ('master', 1), ('powerful', 1), ('creation', 1), ('editing', 1), ('technique', 1), ('award', 1), ('winning', 1)]
[('dan', 1), ('gookin', 1), ('dummy', 1), ('guide', 1), ('word', 1), ('consistently', 1), ('led', 1), ('pack', 1), ('selling', 1), ('million', 1), ('copy', 1), ('previous', 1), ('edition', 1), ('author', 1), ('irreverent', 1), ('sense', 1), ('humor', 1), ('crystal', 1), ('clear', 1)]
[('user', 3), ('power', 2), ('book', 1), ('single', 1), ('reference', 1), ('indispensable', 1), ('excel', 1), ('beginner', 1), ('intermediate', 1), ('everywhere', 1), ('fully', 1), ('updated', 1), ('new', 1), ('release', 1), ('latest', 1), ('edition', 1)]
[('project', 2), ('tool', 2), ('combine', 1), ('power', 1), ('excel', 1), ('microsoft', 1), ('office', 1), ('sharepoint', 1), ('server', 1), ('sound', 1), ('management', 1), ('boost', 1), ('skill', 1), ('set', 1), ('maximize', 1), ('productivity', 1), ('walk', 1), ('learn', 1), ('use', 1), ('powerful', 1), ('schedule', 1), ('job', 1)]
[('excel', 3), ('vba', 2), ('develop', 1), ('custom', 1), ('macro', 1), ('perfect', 1), ('power', 1), ('user', 1), ('practical', 1), ('resource', 1), ('reveals', 1), ('maximize', 1), ('feature', 1), ('functionality', 1), ('depth', 1), ('detail', 1), ('programming', 1), ('application', 1), ('development', 1), ('followed', 1), ('real', 1), ('world', 1), ('project', 1), ('complete', 1), ('source', 1), ('code', 1), ('show', 1), ('set', 1), ('specific', 1), ('subroutine', 1)]
[('web', 2), ('page', 2), ('responsible', 1), ('producing', 1), ('quality', 1), ('printed', 1), ('material', 1), ('creating', 1), ('looking', 1), ('business', 1), ('organization', 1), ('adobe', 1), ('new', 1), ('creative', 1), ('suite', 1), ('need', 1), ('complete', 1), ('set', 1), ('integrated', 1), ('graphic', 1), ('design', 1)]
[('software', 2), ('documentation', 2), ('form', 1), ('basis', 1), ('communication', 1), ('relating', 1), ('project', 1), ('truly', 1), ('effective', 1), ('usable', 1), ('based', 1), ('need', 1), ('known', 1), ('agile', 1), ('provides', 1), ('sound', 1), ('advice', 1), ('produce', 1), ('lean', 1)]
[('edition', 2), ('actionscript', 2), ('description', 1), ('refers', 1), ('first', 1), ('bible', 1), ('greatly', 1), ('revised', 1), ('updated', 1), ('second', 1), ('published', 1), ('april', 1), ('search', 1), ('author', 1), ('roger', 1), ('braunstein', 1), ('name', 1), ('isbn', 1), ('matured', 1)]
[('autocad', 4), ('need', 2), ('nobody', 1), ('said', 1), ('easy', 1), ('lt', 1), ('desk', 1), ('reference', 1), ('dummy', 1), ('nine', 1), ('minibooks', 1), ('cover', 1), ('stuff', 1), ('know', 1), ('set', 1), ('create', 1), ('drawing', 1), ('modify', 1), ('share', 1)]
[('attack', 3), ('latest', 2), ('tactic', 1), ('thwarting', 1), ('digital', 1), ('new', 1), ('reality', 1), ('zero', 1), ('day', 1), ('apt', 1), ('state', 1), ('sponsored', 1), ('today', 1), ('security', 1), ('professional', 1), ('need', 1), ('hacker', 1), ('mind', 1), ('method', 1), ('toolbox', 1), ('successfully', 1), ('deter', 1), ('relentless', 1), ('assault', 1), ('edition', 1), ('brings', 1), ('reader', 1), ('abreast', 1), ('vector', 1), ('arm', 1)]
[('html', 3), ('handy', 2), ('definition', 2), ('element', 2), ('low', 1), ('priced', 1), ('book', 1), ('packed', 1), ('xhtml', 1), ('tip', 1), ('including', 1), ('depth', 1), ('snappy', 1), ('writing', 1), ('illustrative', 1), ('code', 1), ('sample', 1), ('walk', 1), ('reader', 1), ('us', 1), ('pocket', 1), ('size', 1), ('provides', 1)]
[('pc', 3), ('build', 2), ('fix', 2), ('beginner', 2), ('guide', 2), ('building', 2), ('upgrading', 1), ('nbsp', 1), ('ultimate', 1), ('fixing', 1), ('friendly', 1), ('knowledgeable', 1), ('tone', 1), ('book', 1), ('show', 1), ('beginning', 1)]
[('android', 2), ('development', 2), ('market', 2), ('start', 1), ('finish', 1), ('guide', 1), ('concept', 1), ('nbsp', 1), ('wireless', 1), ('application', 1), ('combine', 1), ('reliable', 1), ('information', 1), ('sample', 1), ('code', 1), ('best', 1), ('practice', 1), ('need', 1), ('build', 1), ('distribute', 1), ('successful', 1)]
[('shell', 4), ('vast', 1), ('majority', 1), ('user', 1), ('utilize', 1), ('korn', 1), ('variant', 1), ('bourne', 1), ('bash', 1), ('sam', 1), ('teach', 1), ('programming', 1), ('hour', 1), ('cover', 1), ('begin', 1), ('generalized', 1), ('tutorial', 1), ('unix', 1), ('tool', 1), ('move', 1)]
[('sql', 2), ('smarties', 1), ('hailed', 1), ('first', 1), ('book', 1), ('devoted', 1), ('explicitly', 1), ('advanced', 1), ('technique', 1), ('needed', 1), ('transform', 1), ('experienced', 1), ('programmer', 1), ('expert', 1), ('year', 1), ('later', 1), ('third', 1), ('edition', 1), ('classic', 1), ('still', 1), ('reign', 1), ('supreme', 1)]
[('data', 2), ('mining', 2), ('edition', 2), ('second', 1), ('describes', 1), ('technique', 1), ('show', 1), ('work', 1), ('book', 1), ('major', 1), ('revision', 1), ('first', 1), ('appeared', 1), ('basic', 1), ('core', 1), ('remains', 1), ('updated', 1), ('reflect', 1), ('change', 1)]
[('plan', 1), ('launch', 1), ('ppc', 1), ('campaign', 1), ('keep', 1), ('track', 1), ('progress', 1), ('want', 1), ('potential', 1), ('customer', 1), ('form', 1), ('traffic', 1), ('jam', 1), ('web', 1), ('site', 1), ('pay', 1), ('per', 1), ('click', 1), ('might', 1), ('trick', 1), ('book', 1), ('help', 1), ('decide', 1), ('tell', 1)]
[('programming', 2), ('object', 1), ('oriented', 1), ('begin', 1), ('basic', 1), ('principle', 1), ('language', 1), ('systematically', 1), ('introduces', 1), ('increasingly', 1), ('advanced', 1), ('topic', 1), ('illustrating', 1), ('oop', 1), ('methodology', 1), ('structure', 1), ('book', 1), ('similar', 1)]
[('microsoft', 3), ('exam', 2), ('cloud', 2), ('prepare', 1), ('az', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('deploying', 1), ('managing', 1), ('infrastructure', 1), ('azure', 1), ('environment', 1), ('designed', 1), ('experienced', 1), ('professional', 1), ('ready', 1), ('advance', 1), ('status', 1), ('ref', 1), ('focus', 1), ('critical', 1), ('thinking', 1), ('decision', 1), ('making', 1), ('acumen', 1), ('needed', 1), ('success', 1)]
[('first', 2), ('time', 2), ('wcf', 2), ('nbsp', 2), ('whether', 1), ('fifty', 1), ('using', 1), ('learn', 1), ('something', 1), ('new', 1), ('reading', 1), ('book', 1), ('nicholas', 1), ('allen', 1), ('program', 1), ('manager', 1), ('web', 1), ('service', 1), ('microsoft', 1), ('window', 1), ('communication', 1), ('foundation', 1)]
[('sql', 2), ('server', 2), ('basic', 2), ('written', 1), ('clarity', 1), ('earth', 1), ('approach', 1), ('sam', 1), ('teach', 1), ('express', 1), ('hour', 1), ('cover', 1), ('microsoft', 1), ('latest', 1), ('version', 1), ('expert', 1), ('author', 1), ('alison', 1), ('balter', 1), ('take', 1), ('concept', 1), ('intermediate', 1)]
[('step', 2), ('lesson', 1), ('hour', 1), ('le', 1), ('learn', 1), ('create', 1), ('java', 1), ('application', 1), ('free', 1), ('netbeans', 1), ('visual', 1), ('editing', 1), ('tool', 1), ('using', 1), ('straightforward', 1), ('approach', 1), ('popular', 1), ('author', 1), ('rogers', 1), ('cadenhead', 1), ('help', 1), ('master', 1), ('skill', 1)]
[('blog', 2), ('nerdy', 1), ('anymore', 1), ('today', 1), ('seems', 1), ('everyone', 1), ('multinational', 1), ('corporation', 1), ('neighbor', 1), ('street', 1), ('part', 1), ('folk', 1), ('wordpress', 1), ('make', 1), ('easy', 1)]
[('digital', 3), ('forensics', 3), ('basic', 1), ('provides', 1), ('foundation', 1), ('new', 1), ('field', 1), ('book', 1), ('teach', 1), ('conduct', 1), ('examination', 1), ('explaining', 1), ('methodology', 1), ('used', 1), ('key', 1), ('technical', 1), ('concept', 1)]
[('sql', 4), ('server', 4), ('express', 2), ('edition', 2), ('free', 1), ('relational', 1), ('database', 1), ('management', 1), ('system', 1), ('microsoft', 1), ('provides', 1), ('major', 1), ('subset', 1), ('full', 1), ('functionality', 1), ('many', 1), ('user', 1), ('learn', 1), ('move', 1)]
[('cover', 1), ('text', 1), ('mining', 1), ('link', 1), ('detection', 1), ('algorithm', 1), ('pre', 1), ('processing', 1), ('technique', 1), ('knowledge', 1), ('representation', 1), ('visualization', 1), ('application', 1)]
[('perfect', 1), ('book', 1), ('manager', 1), ('stake', 1), ('success', 1), ('software', 1), ('project', 1)]
[('photoshop', 3), ('latest', 1), ('version', 1), ('new', 1), ('trick', 1), ('sleeve', 1), ('adobe', 1), ('c', 1), ('dummy', 1), ('teach', 1), ('use', 1), ('basic', 1), ('getting', 1), ('image', 1), ('enhancing', 1), ('cropping', 1)]
[('software', 2), ('architecture', 2), ('development', 2), ('purpose', 1), ('large', 1), ('scale', 1), ('capture', 1), ('describe', 1), ('practical', 1), ('representation', 1), ('make', 1), ('team', 1), ('effective', 1), ('book', 1), ('author', 1), ('show', 1), ('utilise', 1), ('tool', 1), ('guide', 1)]
[('language', 2), ('unlike', 1), ('high', 1), ('level', 1), ('java', 1), ('assembly', 1), ('closer', 1), ('machine', 1), ('code', 1), ('actually', 1), ('run', 1), ('computer', 1), ('used', 1), ('create', 1), ('program', 1), ('module', 1), ('fast', 1), ('efficient', 1), ('hacking', 1), ('exploit', 1), ('reverse', 1)]
[('adobe', 2), ('effect', 2), ('book', 2), ('step', 2), ('key', 2), ('classroom', 1), ('best', 1), ('selling', 1), ('guide', 1), ('powerful', 1), ('motion', 1), ('graphic', 1), ('program', 1), ('project', 1), ('based', 1), ('lesson', 1), ('show', 1), ('student', 1), ('technique', 1), ('working', 1), ('work', 1), ('efficiently', 1), ('deliver', 1), ('widest', 1), ('possible', 1), ('range', 1), ('medium', 1), ('type', 1), ('addition', 1), ('learning', 1)]
[('exam', 2), ('prepare', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('microsoft', 1), ('sharepoint', 1), ('server', 1), ('core', 1), ('solution', 1), ('designed', 1), ('experienced', 1), ('professional', 1), ('ready', 1), ('advance', 1), ('status', 1), ('ref', 1), ('focus', 1), ('critical', 1), ('thinking', 1)]
[('home', 3), ('guide', 2), ('networking', 2), ('beginner', 2), ('finally', 1), ('written', 1), ('true', 1), ('absolute', 1), ('go', 1), ('far', 1), ('beyond', 1), ('traditional', 1), ('printer', 1), ('internet', 1), ('sharing', 1), ('geared', 1), ('help', 1), ('understand', 1), ('network', 1), ('type', 1)]
[('vba', 3), ('microsoft', 2), ('expertise', 2), ('office', 1), ('system', 1), ('jam', 1), ('packed', 1), ('code', 1), ('sample', 1), ('able', 1), ('reuse', 1), ('right', 1), ('away', 1), ('project', 1), ('barrette', 1), ('mvp', 1), ('amp', 1), ('regional', 1), ('director', 1), ('net', 1), ('nbsp', 1), ('develop', 1)]
[('web', 2), ('create', 2), ('cascading', 2), ('style', 2), ('sheet', 2), ('lt', 1), ('gt', 1), ('microsoft', 1), ('expression', 1), ('demand', 1), ('rather', 1), ('shown', 1), ('told', 1), ('see', 1), ('site', 1), ('using', 1), ('drag', 1), ('drop', 1), ('control', 1), ('employ', 1), ('formatting', 1), ('management', 1)]
[('site', 2), ('household', 1), ('internet', 1), ('connection', 1), ('looking', 1), ('develop', 1), ('sophisticated', 1), ('web', 1), ('need', 1), ('easy', 1), ('grasp', 1), ('information', 1), ('make', 1), ('interactive', 1), ('designed', 1), ('never', 1)]
[('window', 2), ('server', 2), ('unleashed', 1), ('comprehensive', 1), ('realistic', 1), ('guide', 1), ('planning', 1), ('design', 1), ('prototyping', 1), ('implementation', 1), ('migration', 1), ('administration', 1), ('support', 1), ('based', 1), ('author', 1), ('unsurpassed', 1), ('experience', 1), ('working', 1)]
[('access', 3), ('depth', 1), ('beyond', 1), ('basic', 1), ('beneath', 1), ('surface', 1), ('guide', 1), ('everyone', 1), ('want', 1), ('streamline', 1), ('work', 1), ('done', 1), ('le', 1), ('time', 1), ('legendary', 1), ('expert', 1), ('roger', 1), ('jennings', 1), ('provides', 1), ('specific', 1), ('tested', 1), ('proven', 1)]
[('print', 3), ('production', 2), ('key', 1), ('successful', 1), ('understanding', 1), ('entire', 1), ('workflow', 1), ('scanning', 1), ('file', 1), ('creation', 1), ('prepress', 1), ('fully', 1), ('updated', 1), ('author', 1), ('publishing', 1), ('consultant', 1), ('brian', 1), ('lawler', 1), ('official', 1), ('adobe', 1)]
[('good', 2), ('manual', 1), ('guide', 1), ('scientific', 1), ('computing', 1), ('style', 1), ('explaining', 1), ('write', 1), ('software', 1), ('test', 1), ('bug', 1), ('accuracy', 1), ('performance', 1)]
[('web', 3), ('standard', 2), ('html', 2), ('xhtml', 2), ('page', 2), ('essential', 1), ('update', 1), ('key', 1), ('authoring', 1), ('cs', 1), ('existence', 1), ('depends', 1), ('three', 1), ('vital', 1), ('technology', 1), ('base', 1), ('language', 1), ('written', 1), ('define', 1), ('write', 1)]
[('access', 3), ('guide', 1), ('thing', 1), ('know', 1), ('relational', 1), ('database', 1), ('isolationist', 1), ('table', 1), ('still', 1), ('need', 1), ('figure', 1), ('organize', 1), ('analyze', 1), ('data', 1)]
[('project', 3), ('management', 3), ('strategy', 2), ('learn', 1), ('proven', 1), ('master', 1), ('world', 1), ('software', 1), ('winning', 1), ('combination', 1), ('series', 1), ('successful', 1), ('cover', 1), ('every', 1), ('phase', 1), ('process', 1), ('insider', 1), ('guide', 1)]
[('service', 2), ('offer', 2), ('level', 1), ('agreement', 1), ('slas', 1), ('provider', 1), ('way', 1), ('distinguish', 1), ('competitor', 1), ('today', 1), ('volatile', 1), ('hypercompetitive', 1), ('market', 1), ('book', 1), ('innovative', 1), ('approach', 1), ('take', 1), ('full', 1), ('advantage', 1), ('current', 1), ('interface', 1)]
[('excel', 3), ('reporting', 2), ('create', 1), ('powerful', 1), ('innovative', 1), ('solution', 1), ('new', 1), ('book', 1), ('significantly', 1), ('updated', 1), ('bestselling', 1), ('version', 1), ('author', 1), ('timothy', 1), ('zapawa', 1), ('provides', 1), ('depth', 1), ('coverage', 1), ('enhanced', 1)]
[('window', 3), ('understand', 1), ('architecture', 1), ('operating', 1), ('system', 1), ('including', 1), ('nt', 1), ('server', 1), ('configure', 1), ('computer', 1), ('manage', 1), ('user', 1), ('design', 1), ('active', 1), ('directory', 1), ('implement', 1), ('group', 1), ('policy', 1), ('enterprise', 1), ('service', 1), ('disaster', 1), ('planning', 1), ('recovery', 1), ('process', 1)]
[('crystal', 1), ('report', 1), ('official', 1), ('guide', 1), ('whether', 1), ('dba', 1), ('data', 1), ('warehousing', 1), ('business', 1), ('intelligence', 1), ('professional', 1), ('reporting', 1), ('specialist', 1), ('developer', 1), ('book', 1), ('answer', 1), ('need', 1), ('hand', 1), ('example', 1), ('systematically', 1), ('master', 1)]
[('data', 4), ('warehouse', 3), ('exam', 2), ('etl', 2), ('prepare', 1), ('microsoft', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('skill', 1), ('managing', 1), ('intended', 1), ('extract', 1), ('transform', 1), ('load', 1), ('developer', 1), ('create', 1), ('business', 1), ('intelligence', 1), ('bi', 1), ('solution', 1), ('responsibility', 1), ('include', 1), ('cleansing', 1), ('implementation', 1)]
[('ebay', 3), ('business', 3), ('hobby', 2), ('power', 1), ('online', 1), ('auction', 1), ('attracting', 1), ('hundred', 1), ('thousand', 1), ('million', 1), ('user', 1), ('want', 1), ('turn', 1), ('profitable', 1), ('turning', 1), ('might', 1), ('look', 1), ('easy', 1), ('making', 1)]
[('book', 2), ('help', 1), ('intermediate', 1), ('powerpoint', 1), ('user', 1), ('improve', 1), ('skill', 1), ('advanced', 1), ('level', 1), ('benefit', 1), ('professionally', 1), ('personally', 1), ('comprehensive', 1), ('bore', 1), ('nbsp', 1), ('every', 1)]
[('excel', 4), ('think', 2), ('getting', 1), ('creative', 1), ('mean', 1), ('underhanded', 1), ('tweaking', 1), ('number', 1), ('hack', 1), ('show', 1), ('even', 1), ('experienced', 1), ('user', 1), ('thing', 1), ('might', 1), ('never', 1), ('thought', 1), ('let', 1), ('little', 1), ('fun', 1), ('microsoft', 1), ('dominant', 1), ('spreadsheet', 1), ('world', 1)]
[('net', 4), ('version', 2), ('new', 2), ('visual', 2), ('studio', 2), ('microsoft', 1), ('largest', 1), ('development', 1), ('software', 1), ('launch', 1), ('unlike', 1), ('completely', 1), ('replaces', 1), ('previous', 1), ('orca', 1), ('created', 1), ('framework', 1), ('together', 1)]
[('book', 4), ('reader', 2), ('student', 2), ('purpose', 1), ('provide', 1), ('introductory', 1), ('text', 1), ('understanding', 1), ('language', 1), ('empower', 1), ('write', 1), ('program', 1), ('introduces', 1), ('paradigm', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('main', 1), ('strength', 1), ('usp', 1), ('written', 1), ('equally', 1)]
[('use', 2), ('onenote', 2), ('covering', 1), ('microsoft', 1), ('wide', 1), ('variety', 1), ('situation', 1), ('handbook', 1), ('provides', 1), ('tip', 1), ('anyone', 1), ('take', 1), ('note', 1), ('organizes', 1), ('material', 1), ('keep', 1), ('list', 1), ('addition', 1), ('providing', 1), ('basic', 1), ('information', 1), ('using', 1), ('product', 1), ('interface', 1), ('guide', 1), ('teach', 1), ('specific', 1), ('task', 1), ('brainstorming', 1), ('mind', 1), ('mapping', 1)]
[('accessible', 1), ('guide', 1), ('learning', 1), ('key', 1), ('feature', 1), ('unix', 1), ('perl', 1), ('written', 1), ('non', 1), ('programmer', 1), ('mind', 1)]
[('detailed', 1), ('algorithm', 1), ('string', 1), ('process', 1), ('pattern', 1), ('matching', 1), ('example', 1), ('natural', 1), ('language', 1), ('processing', 1), ('molecular', 1), ('sequencing', 1), ('database', 1)]
[('database', 2), ('filemaker', 2), ('pro', 2), ('scoop', 1), ('designing', 1), ('mac', 1), ('window', 1), ('use', 1), ('design', 1), ('scripting', 1), ('quickly', 1), ('easily', 1), ('build', 1), ('solve', 1), ('real', 1), ('problem', 1)]
[('asp', 2), ('net', 2), ('step', 2), ('definitive', 1), ('programming', 1), ('guide', 1), ('popular', 1), ('author', 1), ('microsoft', 1), ('mvp', 1), ('imar', 1), ('spaanjaars', 1), ('updated', 1), ('introductory', 1), ('book', 1), ('retains', 1), ('helpful', 1), ('example', 1), ('format', 1), ('previous', 1)]
[('unix', 2), ('covering', 1), ('aspect', 1), ('operating', 1), ('system', 1), ('assuming', 1), ('prior', 1), ('knowledge', 1), ('book', 1), ('begin', 1), ('fundamental', 1), ('work', 1), ('ground', 1), ('advanced', 1), ('programming', 1), ('technique', 1)]
[('programming', 2), ('learn', 1), ('basic', 1), ('beginning', 1), ('introduction', 1), ('object', 1), ('oriented', 1), ('book', 1), ('present', 1), ('introductory', 1), ('information', 1), ('intuitive', 1), ('format', 1), ('prior', 1), ('experience', 1), ('want', 1)]
[('window', 3), ('dummy', 2), ('world', 1), ('popular', 1), ('operating', 1), ('system', 1), ('bestselling', 1), ('computer', 1), ('book', 1), ('look', 1), ('xp', 1), ('nd', 1), ('edition', 1), ('easy', 1)]
[('google', 2), ('go', 1), ('exciting', 1), ('architectural', 1), ('design', 1), ('software', 1), ('mac', 1), ('window', 1), ('whether', 1), ('need', 1), ('learn', 1), ('modeling', 1), ('business', 1), ('eager', 1), ('see', 1), ('create', 1), ('sketchup', 1)]
[('customer', 2), ('performance', 2), ('sugarcrm', 1), ('innovative', 1), ('relationship', 1), ('management', 1), ('software', 1), ('solution', 1), ('enhances', 1), ('company', 1), ('marketing', 1), ('effectiveness', 1), ('drive', 1), ('sale', 1), ('improves', 1), ('satisfaction', 1), ('provides', 1), ('executive', 1), ('insight', 1), ('business', 1)]
[('home', 3), ('network', 2), ('increase', 1), ('work', 1), ('efficiency', 1), ('minimizes', 1), ('confusion', 1), ('want', 1), ('set', 1), ('quite', 1), ('sure', 1), ('start', 1), ('networking', 1), ('dummy', 1), ('make', 1), ('easy', 1)]
[('data', 2), ('cutting', 1), ('edge', 1), ('response', 1), ('ralph', 1), ('kimball', 1), ('challenge', 1), ('warehouse', 1), ('community', 1), ('answer', 1), ('tough', 1), ('question', 1), ('effectiveness', 1), ('relational', 1), ('approach', 1), ('warehousing', 1), ('written', 1), ('best', 1), ('known', 1), ('exponent', 1), ('bill', 1), ('inmon', 1)]
[('adobe', 3), ('premiere', 3), ('element', 2), ('offer', 2), ('tool', 2), ('amateur', 1), ('home', 1), ('moviemakers', 1), ('opportunity', 1), ('work', 1), ('editing', 1), ('powerful', 1), ('packed', 1), ('pro', 1), ('top', 1), ('market', 1), ('dummy', 1)]
[('use', 2), ('course', 2), ('quick', 1), ('start', 1), ('guide', 1), ('create', 1), ('flash', 1), ('post', 1), ('material', 1), ('give', 1), ('quiz', 1), ('facilitate', 1), ('discussion', 1), ('handle', 1), ('grade', 1), ('educator', 1), ('psychic', 1), ('know', 1), ('blackboard', 1), ('instruction', 1)]
[('iphone', 3), ('apple', 2), ('expert', 1), ('guidance', 1), ('need', 1), ('begin', 1), ('building', 1), ('native', 1), ('application', 1), ('new', 1), ('ipod', 1), ('touch', 1), ('hottest', 1), ('mobile', 1), ('device', 1), ('planet', 1), ('million', 1), ('phone', 1), ('sold', 1), ('first', 1), ('three', 1)]
[('application', 3), ('language', 2), ('used', 2), ('office', 2), ('comprehensive', 1), ('guide', 1), ('customize', 1), ('microsoft', 1), ('visual', 1), ('basic', 1), ('vba', 1), ('writing', 1), ('macro', 1), ('automating', 1), ('creating', 1), ('custom', 1), ('word', 1), ('excel', 1), ('powerpoint', 1)]
[('database', 3), ('learn', 2), ('sql', 2), ('language', 2), ('data', 2), ('easier', 1), ('faster', 1), ('practical', 1), ('way', 1), ('really', 1), ('tough', 1), ('subject', 1), ('demystified', 1), ('explains', 1), ('use', 1), ('structured', 1), ('query', 1), ('ubiquitous', 1), ('programming', 1), ('reader', 1), ('create', 1), ('object', 1), ('add', 1), ('retrieve', 1), ('modify', 1), ('existing', 1), ('self', 1), ('teaching', 1), ('guide', 1)]
[('access', 4), ('vba', 3), ('macro', 2), ('programming', 2), ('develop', 1), ('custom', 1), ('perfect', 1), ('power', 1), ('user', 1), ('microsoft', 1), ('reveals', 1), ('maximize', 1), ('feature', 1), ('functionality', 1), ('depth', 1), ('detail', 1), ('application', 1), ('development', 1), ('followed', 1), ('real', 1), ('world', 1), ('project', 1), ('complete', 1), ('source', 1), ('code', 1), ('show', 1), ('set', 1)]
[('sequential', 2), ('book', 1), ('provides', 1), ('general', 1), ('framework', 1), ('repeated', 1), ('game', 1), ('playing', 1), ('adaptive', 1), ('data', 1), ('compression', 1), ('investment', 1), ('pattern', 1), ('analysis', 1), ('problem', 1)]
[('self', 1), ('contained', 1), ('entertaining', 1), ('introduction', 1), ('computational', 1), ('genomics', 1), ('using', 1), ('case', 1), ('study', 1), ('approach', 1), ('matlab', 1), ('demo', 1)]
[('integrated', 1), ('collection', 1), ('cover', 1), ('range', 1), ('parallelization', 1), ('platform', 1), ('concurrent', 1), ('programming', 1), ('framework', 1), ('machine', 1), ('learning', 1), ('setting', 1), ('case', 1), ('study', 1)]
[('book', 1), ('provides', 1), ('everything', 1), ('working', 1), ('scientist', 1), ('need', 1), ('know', 1), ('start', 1), ('using', 1), ('python', 1), ('effectively', 1)]
[('book', 3), ('visual', 2), ('basic', 2), ('offer', 1), ('deal', 1), ('functionality', 1), ('tool', 1), ('language', 1), ('cover', 1), ('entirety', 1), ('need', 1), ('library', 1), ('aim', 1), ('started', 1), ('quickly', 1)]
[('newest', 2), ('release', 2), ('wow', 2), ('world', 2), ('bestselling', 1), ('programming', 1), ('book', 1), ('back', 1), ('updated', 1), ('expanded', 1), ('coverage', 1), ('warcraft', 1), ('currently', 1), ('largest', 1), ('massively', 1), ('multiplayer', 1), ('online', 1), ('role', 1), ('playing', 1), ('game', 1)]
[('quickbooks', 2), ('perennial', 1), ('bestseller', 1), ('covering', 1), ('involved', 1), ('small', 1), ('business', 1), ('accounting', 1), ('last', 1), ('thing', 1), ('want', 1), ('spend', 1), ('lot', 1), ('time', 1), ('luckily', 1)]
[('sharepoint', 2), ('thorough', 1), ('coverage', 1), ('improvement', 1), ('change', 1), ('boast', 1), ('variety', 1), ('incredible', 1), ('new', 1), ('feature', 1), ('challenge', 1), ('even', 1), ('experienced', 1), ('administrator', 1)]
[('coverage', 2), ('development', 2), ('thorough', 1), ('sharepoint', 1), ('team', 1), ('known', 1), ('microsoft', 1), ('mvp', 1), ('join', 1), ('force', 1), ('fully', 1), ('updated', 1), ('resource', 1), ('providing', 1), ('depth', 1), ('tool', 1)]
[('data', 4), ('warehousing', 3), ('business', 2), ('hottest', 1), ('topic', 1), ('understanding', 1), ('technology', 1), ('might', 1), ('think', 1), ('find', 1), ('basic', 1), ('facilitates', 1), ('mining', 1), ('intelligence', 1)]
[('system', 2), ('center', 2), ('configuration', 2), ('manager', 2), ('invaluable', 1), ('coverage', 1), ('aspect', 1), ('completely', 1), ('updated', 1), ('comprehensive', 1), ('book', 1), ('provides', 1), ('intermediate', 1)]
[('visual', 2), ('basic', 2), ('programming', 2), ('favorite', 1), ('language', 1), ('new', 1), ('place', 1), ('start', 1), ('dummy', 1), ('fun', 1), ('easy', 1), ('way', 1), ('begin', 1), ('creating', 1), ('application', 1), ('right', 1), ('away', 1)]
[('virus', 2), ('new', 2), ('computer', 1), ('thought', 1), ('trusty', 1), ('pc', 1), ('catching', 1), ('probably', 1), ('enough', 1), ('make', 1), ('sick', 1), ('thanks', 1), ('cyber', 1), ('sickies', 1), ('persist', 1), ('coming', 1), ('strain', 1), ('major', 1), ('cyberattack', 1), ('nearly', 1), ('every', 1), ('day', 1), ('sneak', 1)]
[('resource', 2), ('web', 2), ('developer', 2), ('programmer', 2), ('stop', 1), ('book', 1), ('indispensable', 1), ('program', 1), ('cgi', 1), ('application', 1), ('perl', 1), ('designed', 1), ('function', 1), ('comprehensive', 1), ('reference', 1)]
[('menace', 1), ('computer', 1), ('system', 1), ('worldwide', 1), ('network', 1), ('hacking', 1), ('result', 1), ('mysterious', 1), ('server', 1), ('crash', 1), ('data', 1), ('loss', 1), ('problem', 1), ('costly', 1), ('fix', 1), ('difficult', 1), ('recognize', 1), ('author', 1), ('john', 1), ('chirillo', 1), ('know', 1), ('prevented', 1)]
[('new', 2), ('zos', 2), ('support', 2), ('discus', 1), ('feature', 1), ('provided', 1), ('improved', 1), ('security', 1), ('intelligent', 1), ('resource', 1), ('director', 1), ('bit', 1), ('real', 1), ('storage', 1), ('explains', 1), ('system', 1), ('configuration', 1), ('made', 1), ('easier', 1), ('interface', 1), ('us', 1), ('wizard', 1)]
[('document', 3), ('pdf', 2), ('learn', 1), ('use', 1), ('adobe', 1), ('acrobat', 1), ('write', 1), ('manage', 1), ('pro', 1), ('convert', 1), ('universal', 1), ('file', 1), ('format', 1), ('preserving', 1), ('font', 1), ('formatting', 1), ('graphic', 1), ('color', 1), ('source', 1), ('regardless', 1)]
[('book', 3), ('java', 2), ('updated', 2), ('comprehensive', 1), ('introduction', 1), ('programming', 1), ('language', 1), ('thoroughly', 1), ('new', 1), ('latest', 1), ('sdk', 1), ('release', 1), ('show', 1), ('reader', 1), ('build', 1), ('real', 1), ('world', 1), ('application', 1)]
[('developer', 2), ('visual', 1), ('web', 1), ('express', 1), ('edition', 1), ('low', 1), ('cost', 1), ('entry', 1), ('level', 1), ('version', 1), ('centered', 1), ('around', 1), ('pre', 1), ('built', 1), ('project', 1), ('new', 1), ('easily', 1), ('deploy', 1), ('customize', 1), ('site', 1), ('explains', 1), ('harness', 1), ('drag', 1), ('drop', 1), ('tool', 1), ('build', 1)]
[('ajax', 2), ('reach', 2), ('short', 1), ('asynchronous', 1), ('javascript', 1), ('cs', 1), ('dom', 1), ('xmlhttprequest', 1), ('even', 1), ('intimidated', 1), ('tidbit', 1), ('probably', 1), ('enough', 1), ('make', 1), ('excedrin', 1), ('dummy', 1), ('instead', 1), ('screen', 1), ('shot', 1), ('actual', 1), ('code', 1)]
[('database', 2), ('sql', 2), ('create', 1), ('modify', 1), ('keep', 1), ('secure', 1), ('speed', 1), ('using', 1), ('store', 1), ('manipulate', 1), ('data', 1), ('server', 1), ('improves', 1), ('already', 1), ('management', 1), ('system', 1), ('book', 1), ('show', 1), ('put', 1), ('work', 1), ('hurry', 1), ('find', 1)]
[('learn', 2), ('visual', 2), ('basic', 2), ('easier', 1), ('faster', 1), ('practical', 1), ('way', 1), ('really', 1), ('tough', 1), ('subject', 1), ('demystified', 1), ('fully', 1), ('explains', 1), ('language', 1), ('library', 1), ('application', 1), ('even', 1), ('create', 1), ('program', 1), ('without', 1), ('writing', 1), ('code', 1), ('self', 1), ('teaching', 1), ('guide', 1), ('come', 1), ('complete', 1), ('key', 1), ('point', 1), ('background', 1), ('information', 1), ('quiz', 1)]
[('sharepoint', 3), ('microsoft', 2), ('master', 1), ('everything', 1), ('stephen', 1), ('cawood', 1), ('former', 1), ('member', 1), ('development', 1), ('team', 1), ('explains', 1), ('powerful', 1), ('business', 1), ('collaboration', 1), ('platform', 1), ('learn', 1), ('use', 1), ('document', 1), ('management', 1), ('function', 1), ('wikis', 1), ('taxonomy', 1), ('blog', 1), ('site', 1), ('web', 1), ('part', 1), ('take', 1)]
[('adobe', 2), ('book', 2), ('step', 2), ('dreamweaver', 1), ('cc', 1), ('classroom', 1), ('best', 1), ('selling', 1), ('guide', 1), ('powerful', 1), ('web', 1), ('design', 1), ('application', 1), ('fully', 1), ('updated', 1), ('project', 1), ('based', 1), ('lesson', 1), ('show', 1), ('student', 1), ('everything', 1), ('need', 1), ('know', 1), ('order', 1), ('create', 1), ('professional', 1), ('website', 1), ('without', 1), ('write', 1), ('code', 1), ('hand', 1), ('often', 1), ('useful', 1), ('understand', 1)]
[('microsoft', 2), ('exam', 2), ('needed', 2), ('prepare', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('skill', 1), ('provision', 1), ('manage', 1), ('monitor', 1), ('troubleshoot', 1), ('office', 1), ('identity', 1), ('cloud', 1), ('service', 1), ('designed', 1), ('experienced', 1), ('pro', 1), ('ready', 1), ('advance', 1), ('status', 1), ('ref', 1), ('focus', 1), ('critical', 1), ('thinking', 1), ('decision', 1), ('making', 1), ('acumen', 1)]
[('web', 3), ('page', 2), ('professional', 1), ('designer', 1), ('want', 1), ('design', 1), ('decent', 1), ('place', 1), ('better', 1), ('start', 1), ('de', 1), ('facto', 1), ('tool', 1), ('choice', 1), ('anybody', 1), ('creating', 1), ('slim', 1), ('low', 1), ('priced', 1), ('guide', 1)]
[('web', 2), ('service', 2), ('according', 1), ('recent', 1), ('press', 1), ('report', 1), ('everyone', 1), ('developing', 1), ('many', 1), ('still', 1), ('exploratory', 1), ('phase', 1), ('learning', 1), ('involved', 1), ('achieve', 1), ('roi', 1), ('book', 1), ('designed', 1), ('give', 1), ('working', 1), ('introduction', 1), ('help', 1)]
[('cmmi', 2), ('survival', 2), ('praise', 1), ('guide', 1), ('traveling', 1), ('road', 1), ('difficult', 1), ('time', 1), ('consuming', 1), ('garcia', 1), ('turner', 1), ('given', 1), ('practical', 1), ('roadmap', 1), ('address', 1), ('key', 1), ('point', 1), ('learn', 1), ('many', 1), ('pothole', 1), ('avoid', 1)]
[('whether', 1), ('second', 1), ('virtual', 1), ('life', 1), ('begun', 1), ('world', 1), ('long', 1), ('time', 1), ('successful', 1), ('rewarding', 1), ('experience', 1), ('depends', 1), ('mastery', 1), ('design', 1), ('everything', 1), ('avatar', 1), ('home', 1), ('clothes', 1), ('behavior', 1), ('say', 1)]
[('comprehensive', 1), ('realistic', 1), ('guide', 1), ('window', 1), ('server', 1), ('planning', 1), ('design', 1), ('prototyping', 1), ('implementation', 1), ('migration', 1), ('administration', 1), ('support', 1), ('extensively', 1), ('updated', 1), ('contains', 1), ('unsurpassed', 1), ('independent', 1), ('objective', 1), ('coverage', 1)]
[('net', 3), ('new', 2), ('isbn', 2), ('wcf', 2), ('technology', 2), ('web', 2), ('service', 2), ('edition', 1), ('title', 1), ('available', 1), ('nbsp', 1), ('window', 1), ('communication', 1), ('foundation', 1), ('microsoft', 1), ('allowing', 1), ('software', 1), ('communicate', 1), ('superseding', 1), ('earlier', 1), ('dcom', 1), ('remoting', 1), ('asp', 1), ('enhancement', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('microsoft', 1), ('net', 1), ('revolutionizing', 1), ('window', 1), ('based', 1), ('software', 1), ('development', 1), ('initial', 1), ('release', 1)]
[('book', 1), ('first', 1), ('published', 1), ('cover', 1), ('application', 1), ('semiotics', 1), ('computer', 1), ('system', 1), ('development', 1), ('aimed', 1), ('professional', 1), ('academic', 1)]
[('class', 1), ('tested', 1), ('date', 1), ('textbook', 1), ('introductory', 1), ('course', 1), ('information', 1), ('retrieval', 1)]
[('excel', 1), ('basic', 1), ('blackbelt', 1), ('intended', 1), ('serve', 1), ('accelerated', 1), ('guide', 1), ('decision', 1), ('support', 1), ('design', 1)]
[('access', 4), ('thing', 3), ('visual', 1), ('way', 1), ('speed', 1), ('gain', 1), ('another', 1), ('entirely', 1), ('figure', 1), ('want', 1), ('software', 1)]
[('exchange', 3), ('server', 3), ('microsoft', 2), ('help', 2), ('handle', 2), ('made', 1), ('mail', 1), ('meeting', 1), ('management', 1), ('essential', 1), ('office', 1), ('service', 1), ('dummy', 1), ('pretty', 1), ('slick', 1), ('huh', 1)]
[('eai', 2), ('learn', 1), ('utilize', 1), ('today', 1), ('hottest', 1), ('technology', 1), ('ensure', 1), ('interoperability', 1), ('across', 1), ('organization', 1), ('exactly', 1), ('enterprise', 1), ('application', 1), ('integration', 1), ('make', 1), ('million', 1), ('market', 1), ('hot', 1), ('expected', 1), ('grow', 1), ('billion', 1)]
[('tcp', 3), ('ip', 3), ('latest', 2), ('packed', 1), ('information', 1), ('standard', 1), ('protocol', 1), ('hot', 1), ('topic', 1), ('glue', 1), ('hold', 1), ('internet', 1), ('web', 1), ('together', 1), ('network', 1), ('administrator', 1), ('need', 1), ('stay', 1), ('top', 1), ('development', 1)]
[('drawn', 1), ('page', 1), ('scientific', 1), ('american', 1), ('collected', 1), ('first', 1), ('time', 1), ('work', 1), ('contains', 1), ('updated', 1), ('condensed', 1), ('information', 1), ('made', 1), ('accessible', 1), ('general', 1), ('popular', 1), ('science', 1), ('audience', 1), ('subject', 1), ('artificial', 1), ('intelligence', 1)]
[('microsoft', 2), ('reporting', 2), ('service', 2), ('sql', 2), ('server', 2), ('data', 2), ('product', 1), ('vital', 1), ('part', 1), ('business', 1), ('intelligence', 1), ('platform', 1), ('work', 1), ('virtually', 1), ('source', 1), ('hand', 1), ('guide', 1), ('explains', 1), ('transform', 1), ('insightful', 1), ('interactive', 1), ('web', 1), ('based', 1), ('report', 1), ('using', 1), ('coverage', 1), ('everything', 1)]
[('show', 2), ('company', 2), ('blog', 2), ('exclusive', 1), ('look', 1), ('inside', 1), ('google', 1), ('disney', 1), ('yahoo', 1), ('ibm', 1), ('others', 1), ('book', 1), ('use', 1), ('raise', 1), ('visibility', 1), ('transform', 1), ('internal', 1), ('communication', 1), ('large', 1), ('small', 1), ('know', 1), ('reaching', 1), ('customer', 1), ('directly', 1), ('influencing', 1), ('influenced', 1), ('essential', 1), ('success', 1), ('marketing', 1)]
[('window', 2), ('server', 2), ('definitive', 1), ('resource', 1), ('microsoft', 1), ('build', 1), ('network', 1), ('right', 1), ('way', 1), ('expert', 1), ('advice', 1), ('book', 1), ('provides', 1), ('real', 1), ('world', 1), ('help', 1), ('implementing', 1), ('attention', 1), ('use', 1), ('virtualization', 1), ('solution', 1), ('covering', 1), ('need', 1), ('know', 1), ('written', 1), ('guide', 1), ('success', 1), ('bob', 1), ('kelly', 1), ('appdeploy', 1)]
[('proven', 1), ('strategy', 1), ('getting', 1), ('hired', 1), ('professional', 1), ('practical', 1), ('guide', 1), ('developing', 1), ('winning', 1), ('interviewing', 1), ('skill', 1), ('fully', 1), ('updated', 1), ('revised', 1), ('focus', 1), ('today', 1), ('sought', 1), ('job', 1), ('go', 1), ('behind', 1), ('scene', 1), ('interview', 1), ('process', 1), ('inside', 1), ('mind', 1), ('potential', 1), ('employer', 1), ('find', 1), ('make', 1), ('first', 1)]
[('guide', 2), ('crystal', 2), ('report', 2), ('stop', 1), ('enterprise', 1), ('reporting', 1), ('transform', 1), ('disconnected', 1), ('corporate', 1), ('data', 1), ('compelling', 1), ('interactive', 1), ('business', 1), ('intelligence', 1), ('using', 1), ('powerful', 1), ('tool', 1), ('available', 1), ('detailed', 1), ('explanation', 1), ('real', 1), ('world', 1), ('example', 1), ('expert', 1), ('advice', 1), ('comprehensive', 1), ('show', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('resemblance', 1), ('java', 1), ('make', 1), ('easier', 1), ('learn', 1), ('downside', 1), ('programmer', 1), ('often', 1), ('continue', 1), ('use', 1), ('older', 1), ('technique', 1), ('far', 1), ('better', 1), ('alternative', 1), ('available', 1), ('effective', 1), ('respected', 1), ('net', 1), ('expert', 1), ('bill', 1), ('wagner', 1), ('identifies', 1)]
[('visio', 2), ('step', 2), ('quick', 1), ('way', 1), ('learn', 1), ('microsoft', 1), ('learning', 1), ('made', 1), ('easy', 1), ('done', 1), ('quickly', 1), ('jump', 1), ('wherever', 1), ('need', 1), ('answer', 1), ('brisk', 1), ('lesson', 1), ('colorful', 1), ('screenshots', 1), ('show', 1), ('exactly', 1), ('result', 1)]
[('network', 2), ('security', 2), ('year', 1), ('counter', 1), ('hack', 1), ('primary', 1), ('resource', 1), ('every', 1), ('system', 1), ('administrator', 1), ('professional', 1), ('need', 1), ('deep', 1), ('hand', 1), ('understanding', 1), ('hacker', 1), ('attack', 1), ('countermeasure', 1), ('leading', 1), ('expert', 1), ('ed', 1), ('skoudis', 1)]
[('telecommunication', 2), ('essential', 1), ('second', 1), ('edition', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('rapidly', 1), ('evolving', 1), ('world', 1), ('providing', 1), ('depth', 1), ('stop', 1), ('reference', 1), ('anyone', 1), ('wanting', 1), ('speed', 1), ('trillion', 1)]
[('book', 2), ('iphone', 2), ('looking', 1), ('focus', 1), ('important', 1), ('useful', 1), ('fun', 1), ('stuff', 1), ('g', 1), ('found', 1), ('basically', 1), ('type', 1), ('negetiveemoji', 1), ('tell', 1), ('kind', 1)]
[('web', 3), ('design', 2), ('real', 1), ('connection', 1), ('craftsmanship', 1), ('theme', 1), ('running', 1), ('handcrafted', 1), ('cs', 1), ('bulletproof', 1), ('bestselling', 1), ('author', 1), ('dan', 1), ('cederholm', 1), ('chapter', 1), ('contributed', 1), ('renowned', 1), ('designer', 1), ('developer', 1)]
[('pivot', 3), ('excel', 2), ('table', 2), ('crunch', 1), ('data', 1), ('source', 1), ('quickly', 1), ('easily', 1), ('use', 1), ('chart', 1), ('produce', 1), ('powerful', 1), ('dynamic', 1), ('report', 1), ('minute', 1), ('instead', 1), ('hour', 1), ('understand', 1), ('exactly', 1), ('going', 1)]
[('power', 1), ('spend', 1), ('thousand', 1), ('dollar', 1), ('recording', 1), ('studio', 1), ('time', 1), ('anymore', 1), ('using', 1), ('pro', 1), ('tool', 1), ('digital', 1), ('audio', 1), ('workstation', 1), ('record', 1), ('demo', 1), ('home', 1), ('computer', 1), ('edit', 1), ('track', 1), ('add', 1), ('effect', 1), ('even', 1), ('output', 1), ('song', 1), ('cd', 1), ('new', 1), ('working', 1), ('sound', 1), ('digitally', 1), ('face', 1), ('daunting', 1), ('learning', 1), ('curve', 1)]
[('nan', 1)]
[('nan', 1)]
[('social', 2), ('book', 1), ('catch', 1), ('crest', 1), ('web', 1), ('show', 1), ('business', 1), ('harness', 1), ('power', 1), ('increasing', 1), ('whuffie', 1), ('store', 1), ('capital', 1), ('currency', 1), ('digital', 1), ('world', 1), ('everyone', 1), ('know', 1), ('blog', 1), ('network', 1)]
[('microsoft', 2), ('excel', 2), ('user', 2), ('continues', 1), ('grow', 1), ('power', 1), ('sophistication', 1), ('capability', 1), ('thing', 1), ('changed', 1), ('little', 1), ('early', 1), ('interface', 1), ('simple', 1), ('toolbar', 1), ('packed', 1), ('many', 1), ('feature', 1), ('year', 1), ('know', 1), ('find', 1), ('addressed', 1), ('problem', 1), ('radically', 1)]
[('business', 3), ('architecture', 3), ('introducing', 1), ('enterprise', 1), ('eba', 1), ('concept', 1), ('term', 1), ('book', 1), ('emphasizes', 1), ('importance', 1), ('reaching', 1), ('goal', 1), ('challenge', 1), ('reader', 1), ('research', 1), ('analyze', 1), ('architectural', 1), ('need', 1), ('enabling', 1), ('understand', 1), ('chosen', 1), ('behavior', 1), ('discipline', 1), ('needed', 1)]
[('call', 2), ('center', 2), ('designing', 1), ('best', 1), ('business', 1), ('examines', 1), ('key', 1), ('aspect', 1), ('opening', 1), ('expanding', 1), ('live', 1), ('agent', 1), ('depth', 1), ('coverage', 1), ('facility', 1), ('workstation', 1), ('design', 1), ('site', 1), ('selection', 1), ('including', 1), ('communication', 1), ('power', 1), ('backup', 1)]
[('design', 2), ('need', 2), ('sketching', 1), ('user', 1), ('experience', 1), ('approach', 1), ('thinking', 1), ('something', 1), ('distinct', 1), ('better', 1), ('understood', 1), ('designer', 1), ('work', 1), ('order', 1), ('achieve', 1), ('success', 1), ('new', 1), ('product', 1), ('system', 1)]
[('word', 2), ('redish', 1), ('done', 1), ('homework', 1), ('created', 1), ('thorough', 1), ('overview', 1), ('issue', 1), ('writing', 1), ('web', 1), ('ironically', 1), ('recommend', 1), ('every', 1), ('find', 1), ('customer', 1), ('many', 1), ('website', 1)]
[('initiative', 2), ('data', 2), ('key', 1), ('successful', 1), ('mdm', 1), ('technology', 1), ('method', 1), ('stakeholder', 1), ('organization', 1), ('complex', 1), ('ownership', 1), ('affect', 1), ('master', 1), ('management', 1), ('equips', 1), ('deeply', 1)]
[('ruby', 2), ('guide', 2), ('beginning', 1), ('thoroughly', 1), ('contemporary', 1), ('powerful', 1), ('object', 1), ('oriented', 1), ('language', 1), ('aimed', 1), ('novice', 1), ('programmer', 1), ('experienced', 1), ('developer', 1), ('new', 1), ('book', 1), ('start', 1), ('explaining', 1)]
[('photoshop', 3), ('stop', 1), ('reference', 1), ('filled', 1), ('latest', 1), ('tip', 1), ('technique', 1), ('reason', 1), ('industry', 1), ('standard', 1), ('image', 1), ('editing', 1), ('software', 1), ('big', 1), ('many', 1), ('facet', 1)]
[('project', 3), ('management', 2), ('flex', 1), ('muscle', 1), ('agile', 1), ('fast', 1), ('flexible', 1), ('approach', 1), ('managing', 1), ('software', 1), ('development', 1), ('learning', 1), ('principle', 1), ('technique', 1), ('book', 1)]
[('site', 2), ('corporation', 1), ('finally', 1), ('realized', 1), ('value', 1), ('collaboration', 1), ('tool', 1), ('knowledge', 1), ('sharing', 1), ('wiki', 1), ('open', 1), ('source', 1), ('technology', 1), ('creating', 1), ('collaborative', 1), ('web', 1), ('either', 1), ('public', 1), ('internet', 1), ('private', 1)]
[('business', 2), ('intelligence', 2), ('information', 2), ('microsoft', 2), ('sql', 2), ('server', 2), ('transform', 1), ('disparate', 1), ('enterprise', 1), ('data', 1), ('actionable', 1), ('put', 1), ('timely', 1), ('mission', 1), ('critical', 1), ('hand', 1), ('employee', 1), ('across', 1), ('organization', 1), ('using', 1), ('comprehensive', 1), ('unique', 1), ('resource', 1), ('delivering', 1), ('show', 1)]
[('book', 3), ('network', 3), ('cisco', 2), ('hacking', 2), ('first', 1), ('focus', 1), ('solely', 1), ('security', 1), ('auditing', 1), ('defense', 1), ('issue', 1), ('using', 1), ('proven', 1), ('exposed', 1), ('methodology', 1), ('show', 1), ('locate', 1), ('patch', 1), ('system', 1), ('vulnerability', 1), ('looking', 1), ('eye', 1), ('hacker', 1), ('cover', 1), ('device', 1), ('specific', 1), ('centered', 1), ('attack', 1)]
[('step', 2), ('learn', 1), ('java', 1), ('fun', 1), ('painless', 1), ('self', 1), ('teaching', 1), ('guide', 1), ('easy', 1), ('understand', 1), ('instruction', 1), ('explains', 1), ('commonly', 1), ('used', 1), ('programming', 1), ('language', 1), ('designing', 1), ('dynamic', 1), ('web', 1), ('page', 1), ('numerous', 1), ('example', 1), ('quiz', 1), ('end', 1), ('chapter', 1), ('final', 1), ('exam', 1), ('solidify', 1), ('knowledge', 1), ('learned', 1)]
[('resume', 3), ('job', 2), ('create', 1), ('first', 1), ('rate', 1), ('hired', 1), ('stand', 1), ('crowd', 1), ('applicant', 1), ('creating', 1), ('submitting', 1), ('winning', 1), ('cover', 1), ('letter', 1), ('help', 1), ('practical', 1), ('guide', 1), ('fully', 1), ('revised', 1), ('updated', 1), ('latest', 1), ('trend', 1), ('technology', 1), ('demand', 1), ('ace', 1), ('second', 1), ('edition', 1), ('reveals', 1), ('best', 1), ('showcase', 1)]
[('sharepoint', 2), ('application', 2), ('definitive', 1), ('guide', 1), ('microsoft', 1), ('office', 1), ('server', 1), ('planned', 1), ('written', 1), ('book', 1), ('offer', 1), ('comprehensive', 1), ('reference', 1), ('professional', 1), ('developer', 1), ('business', 1), ('analyst', 1), ('working', 1), ('james', 1), ('robertson', 1), ('mcsd', 1), ('net', 1), ('senior', 1), ('software', 1), ('engineer', 1), ('applied', 1), ('information', 1), ('science', 1), ('deploy', 1)]
[('programming', 4), ('recipe', 2), ('ultimate', 1), ('guide', 1), ('legendary', 1), ('author', 1), ('herb', 1), ('schildt', 1), ('share', 1), ('favorite', 1), ('technique', 1), ('high', 1), ('powered', 1), ('cookbook', 1), ('organized', 1), ('quick', 1), ('reference', 1), ('show', 1), ('accomplish', 1), ('practical', 1), ('task', 1), ('begin', 1), ('list', 1), ('key', 1), ('ingredient', 1), ('class', 1), ('function', 1)]
[('new', 2), ('includes', 1), ('example', 1), ('practice', 1), ('database', 1), ('previous', 1), ('edition', 1), ('sold', 1), ('copy', 1)]
[('business', 2), ('intelligence', 2), ('microsoft', 2), ('sql', 2), ('server', 2), ('data', 2), ('maximize', 1), ('tool', 1), ('manage', 1), ('analyze', 1), ('distribute', 1), ('enterprise', 1), ('help', 1), ('expert', 1), ('resource', 1), ('delivering', 1), ('cover', 1), ('entire', 1), ('bi', 1), ('lifecycle', 1), ('explains', 1), ('build', 1), ('robust', 1), ('integration', 1), ('reporting', 1), ('analysis', 1), ('solution', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('visual', 3), ('basic', 3), ('unleashed', 1), ('comprehensive', 1), ('practical', 1), ('reference', 1), ('modern', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('written', 1), ('mvp', 1), ('alessandro', 1), ('del', 1), ('sole', 1), ('long', 1), ('time', 1), ('leader', 1), ('global', 1), ('vb', 1), ('community', 1), ('book', 1)]
[('excel', 3), ('dive', 1), ('microsoft', 1), ('really', 1), ('put', 1), ('spreadsheet', 1), ('expertise', 1), ('work', 1), ('supremely', 1), ('organised', 1), ('reference', 1), ('pack', 1), ('hundred', 1), ('timesaving', 1), ('solution', 1), ('tip', 1), ('workarounds', 1), ('need', 1), ('make', 1), ('powerful', 1), ('tool', 1), ('analysing', 1), ('data', 1), ('making', 1), ('better', 1), ('decision', 1), ('renowned', 1), ('expert', 1), ('bill', 1), ('jelen', 1), ('offer', 1), ('complete', 1), ('tour', 1)]
[('another', 1), ('seo', 1), ('book', 1), ('written', 1), ('marketing', 1), ('professional', 1), ('nbsp', 1), ('cover', 1), ('find', 1), ('practical', 1), ('advice', 1), ('example', 1), ('build', 1), ('website', 1), ('aiming', 1), ('reach', 1), ('target', 1), ('audience', 1), ('chapter', 1), ('introduce', 1), ('best', 1)]
[('excel', 3), ('save', 2), ('vba', 2), ('macro', 2), ('time', 1), ('supercharge', 1), ('nbsp', 1), ('use', 1), ('automate', 1), ('virtually', 1), ('routine', 1), ('task', 1), ('hour', 1), ('day', 1), ('maybe', 1), ('even', 1), ('week', 1), ('learn', 1), ('make', 1), ('thing', 1), ('thought', 1)]
[('best', 2), ('scott', 2), ('matt', 2), ('photoshop', 2), ('element', 2), ('selling', 1), ('author', 1), ('kelby', 1), ('pair', 1), ('kloskowski', 1), ('deliver', 1), ('definitive', 1), ('book', 1), ('using', 1), ('create', 1), ('possible', 1), ('image', 1), ('newest', 1), ('release', 1), ('show', 1), ('reader', 1), ('work', 1)]
[('new', 2), ('photoshop', 2), ('feature', 2), ('handy', 1), ('pocket', 1), ('guide', 1), ('expert', 1), ('brie', 1), ('gyncild', 1), ('introduces', 1), ('reader', 1), ('powerful', 1), ('c', 1), ('including', 1), ('content', 1), ('aware', 1), ('fill', 1), ('hdr', 1), ('pro', 1), ('bristle', 1), ('effect', 1), ('mixer', 1), ('brush', 1), ('puppet', 1), ('warp', 1), ('book', 1), ('cover', 1)]
[('wimax', 2), ('technology', 2), ('definitive', 1), ('guide', 1), ('promising', 1), ('new', 1), ('broadband', 1), ('wireless', 1), ('access', 1), ('ip', 1), ('service', 1), ('serve', 1), ('extraordinary', 1), ('range', 1), ('application', 1), ('environment', 1), ('data', 1), ('voice', 1), ('multimedia', 1), ('fixed', 1), ('mobile', 1)]
[('based', 2), ('reader', 1), ('unfamiliar', 1), ('window', 1), ('environment', 1), ('find', 1), ('plenty', 1), ('introductory', 1), ('help', 1), ('brings', 1), ('quickly', 1), ('speed', 1), ('digital', 1), ('short', 1), ('cut', 1), ('show', 1), ('work', 1), ('word', 1), ('manage', 1), ('many', 1), ('internet', 1)]
[('perl', 3), ('problem', 2), ('classic', 1), ('guide', 1), ('solving', 1), ('real', 1), ('world', 1), ('fully', 1), ('updated', 1), ('today', 1), ('best', 1), ('idiom', 1), ('nbsp', 1), ('year', 1), ('experienced', 1), ('programmer', 1), ('relied', 1), ('effective', 1), ('programming', 1), ('discover', 1), ('better', 1), ('way', 1), ('solve', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('sql', 2), ('server', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('lt', 1), ('gt', 1), ('microsoft', 1), ('unleashed', 1), ('offer', 1), ('comprehensive', 1), ('coverage', 1), ('go', 1), ('beyond', 1), ('basic', 1), ('syntax', 1), ('information', 1), ('find', 1), ('product', 1), ('manual', 1), ('providing', 1), ('depth', 1)]
[('nan', 1)]
[('excel', 3), ('technique', 2), ('advanced', 2), ('hack', 2), ('million', 1), ('user', 1), ('create', 1), ('share', 1), ('spreadsheet', 1), ('every', 1), ('day', 1), ('go', 1), ('deeply', 1), ('enough', 1), ('learn', 1), ('make', 1), ('work', 1), ('easier', 1), ('many', 1), ('way', 1), ('take', 1), ('advantage', 1), ('capability', 1), ('without', 1), ('spending', 1), ('hour', 1), ('study', 1), ('provides', 1), ('clever', 1), ('tool', 1), ('tip', 1)]
[('filemaker', 3), ('pro', 2), ('database', 2), ('help', 2), ('hand', 1), ('friendly', 1), ('guide', 1), ('show', 1), ('harness', 1), ('power', 1), ('make', 1), ('information', 1), ('work', 1), ('mouse', 1), ('click', 1), ('create', 1), ('print', 1), ('corporate', 1), ('report', 1), ('manage', 1), ('mailing', 1), ('list', 1), ('run', 1), ('entire', 1), ('business', 1), ('missing', 1), ('manual', 1), ('started', 1), ('build', 1)]
[('uml', 3), ('statecharts', 2), ('practical', 1), ('second', 1), ('edition', 1), ('bridge', 1), ('gap', 1), ('high', 1), ('level', 1), ('abstract', 1), ('concept', 1), ('unified', 1), ('modeling', 1), ('language', 1), ('actual', 1), ('programming', 1), ('aspect', 1), ('modern', 1), ('hierarchical', 1), ('state', 1), ('machine', 1), ('book', 1), ('describes', 1), ('lightweight', 1), ('open', 1), ('source', 1), ('event', 1), ('driven', 1), ('infrastructure', 1), ('called', 1), ('qp', 1), ('enables', 1), ('direct', 1), ('manual', 1), ('cod', 1)]
[('business', 3), ('process', 3), ('change', 2), ('rd', 1), ('edition', 1), ('provides', 1), ('balanced', 1), ('view', 1), ('field', 1), ('bestselling', 1), ('author', 1), ('paul', 1), ('harmon', 1), ('offer', 1), ('concept', 1), ('method', 1), ('case', 1), ('aspect', 1), ('phase', 1), ('successful', 1), ('improvement', 1), ('updated', 1)]
[('warfare', 2), ('technique', 2), ('tool', 2), ('cyber', 1), ('tactic', 1), ('security', 1), ('practitioner', 1), ('provides', 1), ('comprehensive', 1), ('look', 1), ('digital', 1), ('waged', 1), ('book', 1), ('explores', 1), ('participant', 1), ('battlefield', 1), ('used', 1), ('today', 1)]
[('celko', 2), ('sql', 2), ('joe', 1), ('tree', 1), ('hierarchy', 1), ('intermediate', 1), ('advanced', 1), ('level', 1), ('practitioner', 1), ('guide', 1), ('mastering', 1), ('challenging', 1), ('aspect', 1), ('developing', 1), ('database', 1), ('application', 1), ('book', 1), ('illustrates', 1), ('several', 1), ('major', 1), ('approach', 1)]
[('arm', 2), ('architecture', 2), ('world', 2), ('last', 1), ('ten', 1), ('year', 1), ('become', 1), ('pervasive', 1), ('billion', 1), ('based', 1), ('processor', 1), ('embedded', 1), ('product', 1), ('ranging', 1), ('cell', 1), ('phone', 1), ('automotive', 1), ('braking', 1), ('system', 1), ('wide', 1)]
[('want', 2), ('good', 2), ('code', 2), ('lt', 1), ('gt', 1), ('book', 1), ('anyone', 1), ('write', 1), ('even', 1), ('never', 1), ('programmed', 1), ('writing', 1), ('challenge', 1), ('many', 1), ('option', 1), ('especially', 1), ('net', 1), ('language', 1), ('really', 1), ('best', 1)]
[('classroom', 3), ('student', 3), ('addressing', 1), ('teacher', 1), ('need', 1), ('simultaneous', 1), ('manage', 1), ('full', 1), ('meet', 1), ('state', 1), ('mandated', 1), ('assessment', 1), ('standard', 1), ('track', 1), ('performance', 1), ('rubric', 1), ('overview', 1), ('excel', 1), ('show', 1), ('put', 1), ('feature', 1), ('use', 1), ('immediately', 1), ('tracking', 1), ('attendance', 1), ('grade', 1), ('book', 1), ('school', 1), ('library', 1)]
[('seo', 2), ('search', 2), ('tip', 1), ('trick', 1), ('little', 1), ('known', 1), ('method', 1), ('used', 1), ('professional', 1), ('consultant', 1), ('rank', 1), ('competitive', 1), ('phrase', 1), ('engine', 1), ('optimization', 1), ('process', 1), ('creating', 1)]
[('sharepoint', 2), ('learn', 1), ('leverage', 1), ('feature', 1), ('newest', 1), ('version', 1), ('update', 1), ('bestseller', 1), ('simply', 1), ('portal', 1), ('microsoft', 1), ('popular', 1), ('content', 1), ('management', 1), ('solution', 1), ('building', 1), ('intranet', 1)]
[('web', 2), ('site', 2), ('quickly', 1), ('create', 1), ('poweful', 1), ('tool', 1), ('use', 1), ('free', 1), ('easy', 1), ('programming', 1), ('language', 1), ('commerce', 1), ('blog', 1), ('need', 1), ('build', 1), ('database', 1), ('application', 1)]
[('office', 4), ('leading', 2), ('microsoft', 2), ('updated', 2), ('book', 1), ('fully', 1), ('world', 1), ('productivity', 1), ('suite', 1), ('new', 1), ('tool', 1), ('veteran', 1), ('user', 1), ('newcomer', 1), ('need', 1)]
[('html', 2), ('xhtml', 2), ('cs', 2), ('web', 2), ('indispensable', 1), ('introductory', 1), ('reference', 1), ('guide', 1), ('even', 1), ('though', 1), ('new', 1), ('technology', 1), ('enable', 1), ('end', 1), ('still', 1), ('root', 1), ('site', 1), ('newest', 1), ('edition', 1)]
[('see', 2), ('excel', 2), ('way', 1), ('spreadsheet', 1), ('stardom', 1), ('visual', 1), ('guide', 1), ('always', 1), ('hearing', 1), ('cool', 1), ('thing', 1), ('chance', 1), ('teach', 1), ('visually', 1)]
[('end', 2), ('solution', 2), ('industry', 1), ('insider', 1), ('close', 1), ('look', 1), ('high', 1), ('performance', 1), ('switching', 1), ('load', 1), ('balancer', 1), ('fast', 1), ('becoming', 1), ('indispensable', 1), ('handling', 1), ('huge', 1), ('traffic', 1), ('demand', 1), ('web', 1), ('ability', 1), ('solve', 1), ('multitude', 1), ('network', 1)]
[('perl', 2), ('programming', 2), ('providing', 1), ('introduction', 1), ('language', 1), ('helpful', 1), ('guide', 1), ('teach', 1), ('computer', 1), ('networking', 1), ('using', 1), ('topic', 1), ('discussed', 1), ('include', 1), ('ethernet', 1), ('network', 1), ('analysis', 1), ('standard', 1), ('internet', 1), ('protocol', 1), ('exploring', 1), ('mobile', 1), ('agent', 1)]
[('mac', 2), ('o', 1), ('tiger', 1), ('sum', 1), ('part', 1), ('lot', 1), ('easier', 1), ('handy', 1), ('minibook', 1), ('covering', 1), ('ready', 1), ('answer', 1), ('every', 1), ('question', 1), ('venturing', 1), ('world', 1), ('first', 1), ('time', 1), ('chosen', 1)]
[('step', 3), ('home', 2), ('go', 2), ('wireless', 2), ('wi', 1), ('fi', 1), ('networking', 1), ('dummy', 1), ('way', 1), ('ready', 1), ('install', 1), ('network', 1), ('book', 1), ('easy', 1), ('navigate', 1), ('design', 1), ('feature', 1), ('column', 1), ('numbered', 1), ('instruction', 1), ('side', 1)]
[('laptop', 3), ('keep', 1), ('top', 1), ('game', 1), ('find', 1), ('care', 1), ('go', 1), ('wrong', 1), ('fix', 1), ('pc', 1), ('shrank', 1), ('unique', 1), ('need', 1), ('book', 1), ('show', 1), ('meet', 1), ('discover', 1)]
[('web', 3), ('need', 2), ('performing', 1), ('first', 1), ('site', 1), ('analysis', 1), ('whole', 1), ('lot', 1), ('easier', 1), ('analytics', 1), ('dummy', 1), ('offer', 1), ('everything', 1), ('know', 1), ('nail', 1), ('pump', 1), ('roi', 1), ('presence', 1), ('explains', 1), ('stats', 1), ('help', 1), ('analyze', 1)]
[('filemaker', 2), ('pro', 2), ('refocused', 1), ('completely', 1), ('rewritten', 1), ('need', 1), ('business', 1), ('user', 1), ('developer', 1), ('mind', 1), ('bible', 1), ('show', 1), ('design', 1), ('industrial', 1), ('strength', 1), ('database', 1), ('make', 1), ('intuitive', 1), ('automate', 1), ('script', 1), ('programming', 1)]
[('photoshop', 2), ('designer', 2), ('full', 1), ('color', 1), ('value', 1), ('packed', 1), ('reference', 1), ('c', 1), ('world', 1), ('popular', 1), ('image', 1), ('editing', 1), ('software', 1), ('four', 1), ('million', 1), ('user', 1), ('worldwide', 1), ('professional', 1), ('photographer', 1), ('graphic', 1), ('web', 1), ('photo', 1)]
[('step', 2), ('world', 1), ('popular', 1), ('photo', 1), ('editing', 1), ('tool', 1), ('easier', 1), ('use', 1), ('user', 1), ('friendly', 1), ('resource', 1), ('break', 1), ('full', 1), ('range', 1), ('feature', 1), ('show', 1), ('become', 1), ('productive', 1), ('photoshop', 1), ('even', 1), ('point', 1), ('potential', 1), ('stumbling', 1), ('block', 1), ('beginner', 1)]
[('million', 2), ('online', 2), ('profit', 2), ('ebay', 2), ('groundbreaking', 1), ('strategy', 1), ('reaching', 1), ('customer', 1), ('boosting', 1), ('traffic', 1), ('sale', 1), ('full', 1), ('color', 1), ('seminar', 1), ('book', 1), ('present', 1), ('proven', 1), ('plan', 1), ('maximizing', 1), ('leveraging', 1), ('top', 1), ('three', 1), ('service', 1), ('yahoo', 1), ('google', 1), ('learn', 1), ('expand', 1), ('existing', 1), ('business', 1), ('reach', 1), ('targeted', 1)]
[('excel', 3), ('create', 2), ('use', 2), ('master', 1), ('latest', 1), ('version', 1), ('help', 1), ('hand', 1), ('guide', 1), ('learn', 1), ('powerful', 1), ('easy', 1), ('spreadsheet', 1), ('bring', 1), ('speed', 1), ('new', 1), ('improved', 1), ('feature', 1), ('available', 1), ('discover', 1), ('enter', 1), ('format', 1), ('data', 1), ('graphic', 1), ('effectively', 1), ('formula', 1)]
[('word', 3), ('use', 3), ('picture', 2), ('know', 1), ('worth', 1), ('thousand', 1), ('went', 1), ('heavy', 1), ('light', 1), ('easy', 1), ('guide', 1), ('color', 1), ('screenshots', 1), ('brief', 1), ('instruction', 1), ('show', 1), ('microsoft', 1), ('feature', 1), ('time', 1), ('follow', 1), ('along', 1), ('learn', 1), ('format', 1), ('text', 1), ('include', 1), ('graphic', 1), ('template', 1), ('track', 1), ('merge', 1), ('comment', 1), ('create', 1), ('mailing', 1), ('label', 1)]
[('google', 2), ('adwords', 2), ('run', 1), ('profitable', 1), ('campaign', 1), ('reach', 1), ('million', 1), ('targeted', 1), ('new', 1), ('customer', 1), ('precise', 1), ('moment', 1), ('looking', 1), ('product', 1), ('service', 1), ('selling', 1), ('help', 1), ('hand', 1), ('guide', 1), ('winning', 1), ('result', 1), ('second', 1), ('edition', 1), ('reveals', 1), ('latest', 1), ('strategy', 1), ('writing', 1), ('successful', 1), ('ad', 1), ('selecting', 1), ('grouping', 1), ('specific', 1)]
[('easy', 2), ('use', 2), ('essential', 1), ('skill', 1), ('made', 1), ('develop', 1), ('test', 1), ('debug', 1), ('iphone', 1), ('ipad', 1), ('ipod', 1), ('touch', 1), ('application', 1), ('help', 1), ('practical', 1), ('resource', 1), ('io', 1), ('sdk', 1), ('programming', 1), ('beginner', 1), ('guide', 1), ('show', 1), ('objective', 1), ('apple', 1), ('new', 1), ('xcode', 1), ('development', 1), ('environment', 1), ('integrated', 1), ('interface', 1), ('builder', 1), ('learn', 1), ('uiview', 1), ('subclass', 1)]
[('pivottables', 2), ('excel', 2), ('feature', 2), ('powerful', 1), ('microsoft', 1), ('estimated', 1), ('user', 1), ('take', 1), ('advantage', 1), ('companion', 1), ('pivotcharts', 1), ('reputation', 1), ('difficult', 1)]
[('book', 3), ('ebook', 2), ('version', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('real', 1), ('world', 1), ('business', 1), ('explosion', 1), ('ebay', 1), ('entrepreneur', 1), ('absolute', 1), ('beginner', 1), ('guide', 1), ('launching', 1)]
[('security', 3), ('guide', 2), ('enterprise', 2), ('metric', 2), ('definitive', 1), ('quantifying', 1), ('classifying', 1), ('measuring', 1), ('operation', 1), ('nbsp', 1), ('first', 1), ('comprehensive', 1), ('best', 1), ('practice', 1), ('defining', 1), ('creating', 1), ('utilizing', 1)]
[('firewall', 3), ('cisco', 2), ('asa', 1), ('pix', 1), ('fwsm', 1), ('handbook', 1), ('second', 1), ('edition', 1), ('guide', 1), ('commonly', 1), ('implemented', 1), ('feature', 1), ('popular', 1), ('security', 1), ('solution', 1), ('fully', 1), ('updated', 1), ('cover', 1), ('latest', 1), ('release', 1), ('book', 1), ('help', 1)]
[('business', 2), ('make', 2), ('decision', 2), ('nbsp', 2), ('answer', 1), ('key', 1), ('question', 1), ('control', 1), ('company', 1), ('finance', 1), ('forecast', 1), ('sale', 1), ('prepare', 1), ('case', 1), ('better', 1), ('investment', 1), ('improve', 1), ('quality', 1), ('use', 1), ('excel', 1), ('gain', 1), ('deeper', 1), ('insight', 1), ('smarter', 1), ('earn', 1), ('profit', 1), ('using', 1)]
[('new', 2), ('suddenly', 1), ('everyone', 1), ('talking', 1), ('html', 1), ('ready', 1), ('need', 1), ('acquainted', 1), ('powerful', 1), ('development', 1), ('web', 1), ('application', 1), ('design', 1), ('feature', 1), ('already', 1), ('implemented', 1), ('existing', 1), ('browser', 1)]
[('nbsp', 2), ('edition', 2), ('new', 2), ('essential', 1), ('organized', 1), ('fluff', 1), ('guide', 1), ('version', 1), ('programmer', 1), ('level', 1), ('experience', 1), ('fully', 1), ('updated', 1), ('show', 1), ('make', 1), ('feature', 1), ('programming', 1), ('pattern', 1), ('write', 1), ('code', 1), ('simple', 1), ('yet', 1), ('powerful', 1), ('contains', 1), ('chapter', 1)]
[('nan', 1)]
[('itunes', 2), ('library', 2), ('want', 1), ('reflect', 1), ('project', 1), ('nbsp', 1), ('concentrate', 1), ('improve', 1), ('look', 1), ('adding', 1), ('cover', 1), ('art', 1), ('getting', 1), ('song', 1), ('lyric', 1), ('managing', 1), ('duplicate', 1), ('track', 1), ('single', 1)]
[('objective', 2), ('approach', 2), ('based', 2), ('programming', 2), ('exciting', 1), ('dynamic', 1), ('object', 1), ('oriented', 1), ('adopted', 1), ('apple', 1), ('foundation', 1), ('mac', 1), ('o', 1), ('unix', 1), ('operating', 1), ('system', 1), ('gaining', 1), ('wide', 1), ('acceptance', 1), ('among', 1), ('programmer', 1), ('technologist', 1), ('easy', 1), ('learn', 1), ('simple', 1), ('elegance', 1), ('welcome', 1)]
[('data', 2), ('cloud', 2), ('computing', 2), ('country', 1), ('increasingly', 1), ('introducing', 1), ('localization', 1), ('law', 1), ('export', 1), ('restriction', 1), ('threatening', 1), ('digital', 1), ('globalization', 1), ('inhibiting', 1), ('adoption', 1), ('despite', 1), ('acknowledged', 1), ('benefit', 1), ('lens', 1)]
[('software', 3), ('testing', 3), ('requirement', 2), ('third', 2), ('edition', 2), ('continuous', 2), ('often', 1), ('assumed', 1), ('based', 1), ('clearly', 1), ('defined', 1), ('development', 1), ('standard', 1), ('typically', 1), ('performed', 1), ('changing', 1), ('sometimes', 1), ('inaccurate', 1), ('bestseller', 1), ('quality', 1), ('improvement', 1), ('provides', 1)]
[('mind', 2), ('completely', 1), ('updated', 1), ('revised', 1), ('edition', 1), ('designing', 1), ('jeff', 1), ('johnson', 1), ('provides', 1), ('enough', 1), ('background', 1), ('perceptual', 1), ('cognitive', 1), ('psychology', 1), ('user', 1), ('interface', 1), ('ui', 1), ('design', 1), ('guideline', 1), ('make', 1), ('intuitive', 1), ('sense', 1), ('rather', 1)]
[('nan', 1)]
[('php', 3), ('mysql', 2), ('fourth', 2), ('edition', 2), ('update', 2), ('beginning', 1), ('novice', 1), ('professional', 1), ('major', 1), ('jason', 1), ('gilmore', 1), ('authoritative', 1), ('book', 1), ('includes', 1), ('complete', 1), ('coverage', 1), ('feature', 1), ('including', 1), ('namespacing', 1)]
[('workflow', 2), ('window', 1), ('foundation', 1), ('wf', 1), ('revolutionary', 1), ('part', 1), ('net', 1), ('framework', 1), ('allows', 1), ('orchestrate', 1), ('human', 1), ('system', 1), ('interaction', 1), ('series', 1), ('easily', 1), ('mapped', 1), ('analyzed', 1), ('adjusted', 1), ('implemented', 1), ('business', 1)]
[('nbsp', 3), ('example', 1), ('world', 1), ('science', 1), ('engineering', 1), ('reference', 1), ('teach', 1), ('scientist', 1), ('create', 1), ('graph', 1), ('analyze', 1), ('statistic', 1), ('regression', 1), ('plot', 1), ('organize', 1), ('scientific', 1), ('data', 1), ('physicist', 1), ('engineer', 1), ('learn', 1), ('tip', 1), ('technique', 1), ('excel', 1), ('tailor', 1), ('specifically', 1), ('experiment', 1), ('design', 1), ('research', 1)]
[('analysis', 3), ('produce', 2), ('marketing', 2), ('powerful', 1), ('microsoft', 1), ('excel', 1), ('feature', 1), ('used', 1), ('sort', 1), ('data', 1), ('meaningful', 1), ('outlined', 1), ('manual', 1), ('manager', 1), ('learn', 1), ('math', 1), ('function', 1), ('budget', 1), ('forecast', 1), ('use', 1), ('survey', 1), ('quickly', 1), ('spot', 1), ('trend', 1), ('using', 1), ('pivot', 1), ('table', 1), ('tool', 1), ('idea', 1)]
[('health', 4), ('guide', 1), ('explains', 1), ('use', 1), ('internet', 1), ('improve', 1), ('help', 1), ('find', 1), ('right', 1), ('information', 1), ('practitioner', 1), ('need', 1), ('book', 1), ('aim', 1), ('give', 1), ('control', 1), ('decision', 1), ('easier', 1), ('access', 1), ('good', 1), ('quality', 1), ('care', 1)]
[('world', 1), ('want', 1), ('according', 1), ('john', 1), ('battelle', 1), ('company', 1), ('answer', 1), ('question', 1), ('shade', 1), ('meaning', 1), ('unlock', 1), ('intractable', 1), ('riddle', 1), ('business', 1), ('arguably', 1), ('human', 1), ('culture', 1), ('past', 1)]
[('scientific', 1), ('topic', 1), ('theory', 1), ('biological', 1), ('evolution', 1), ('inspired', 1), ('controversy', 1), ('artificial', 1), ('intelligence', 1), ('even', 1), ('fifty', 1), ('year', 1), ('term', 1), ('first', 1), ('made', 1), ('appearance', 1), ('academic', 1), ('journal', 1), ('many', 1), ('philosopher', 1)]
[('complete', 1), ('guide', 1), ('understanding', 1), ('implementing', 1), ('multi', 1), ('core', 1), ('concurrent', 1), ('embedded', 1), ('distributed', 1), ('real', 1), ('time', 1), ('application', 1), ('ada', 1), ('related', 1), ('technology', 1)]
[('rigourous', 1), ('self', 1), ('contained', 1), ('graduate', 1), ('text', 1), ('covering', 1), ('method', 1), ('ass', 1), ('performance', 1), ('networked', 1), ('system', 1)]
[('address', 1), ('challenge', 1), ('building', 1), ('intelligent', 1), ('agent', 1), ('cooperate', 1), ('complex', 1), ('task', 1), ('uncertain', 1), ('environment', 1)]
[('access', 3), ('microsoft', 2), ('easy', 1), ('guide', 1), ('return', 1), ('update', 1), ('latest', 1), ('version', 1), ('allows', 1), ('store', 1), ('organize', 1), ('view', 1), ('analyze', 1), ('share', 1), ('data', 1), ('new', 1), ('release', 1), ('enables', 1)]
[('android', 2), ('o', 2), ('create', 1), ('application', 1), ('latest', 1), ('popular', 1), ('flexible', 1), ('platform', 1), ('many', 1), ('today', 1), ('demand', 1), ('mobile', 1), ('device', 1), ('full', 1), ('color', 1), ('guide', 1), ('offer', 1), ('hand', 1), ('introduction', 1)]
[('first', 1), ('book', 1), ('provide', 1), ('depth', 1), ('coverage', 1), ('schema', 1), ('aggregate', 1), ('used', 1), ('dimensional', 1), ('modeling', 1), ('selection', 1), ('design', 1), ('loading', 1), ('usage', 1), ('specific', 1), ('task', 1), ('deliverable', 1), ('implementation', 1)]
[('wrox', 2), ('beginner', 2), ('microsoft', 2), ('update', 1), ('leading', 1), ('book', 1), ('ready', 1), ('next', 1), ('release', 1), ('programming', 1), ('language', 1), ('essential', 1), ('guide', 1), ('beginning', 1), ('visual', 1)]
[('step', 4), ('maya', 2), ('practical', 1), ('guide', 1), ('four', 1), ('previous', 1), ('edition', 1), ('wrong', 1), ('book', 1), ('perfect', 1), ('introduction', 1), ('learn', 1), ('build', 1), ('animate', 1), ('digital', 1), ('model', 1), ('scene', 1)]
[('word', 3), ('microsoft', 3), ('mvp', 2), ('depth', 1), ('guidance', 1), ('arrives', 1), ('many', 1), ('change', 1), ('improvement', 1), ('comprehensive', 1), ('guide', 1), ('herb', 1), ('tyson', 1), ('expert', 1), ('stop', 1), ('resource', 1), ('master', 1)]
[('email', 3), ('marketing', 3), ('idea', 1), ('starting', 1), ('campaign', 1), ('overwhelms', 1), ('author', 1), ('hour', 1), ('day', 1), ('introduce', 1), ('basic', 1), ('demonstrate', 1), ('manage', 1), ('detail', 1), ('describe', 1), ('track', 1), ('measure', 1), ('result', 1)]
[('site', 3), ('design', 2), ('dynamic', 2), ('web', 2), ('build', 1), ('maintain', 1), ('balance', 1), ('form', 1), ('function', 1), ('find', 1), ('thorough', 1), ('explanation', 1), ('effective', 1), ('architecture', 1), ('layout', 1), ('navigational', 1), ('feature', 1), ('discover', 1), ('add', 1), ('graphic', 1), ('link', 1), ('multimedia', 1), ('learn', 1), ('handle', 1), ('privacy', 1), ('security', 1), ('issue', 1), ('respect', 1), ('program', 1)]
[('picture', 2), ('word', 2), ('use', 2), ('html', 2), ('web', 2), ('site', 2), ('know', 1), ('worth', 1), ('thousand', 1), ('went', 1), ('heavy', 1), ('light', 1), ('easy', 1), ('guide', 1), ('color', 1), ('screenshots', 1), ('brief', 1), ('instruction', 1), ('show', 1), ('build', 1), ('time', 1), ('follow', 1), ('along', 1), ('learn', 1), ('write', 1), ('code', 1), ('work', 1), ('browser', 1), ('platform', 1), ('create', 1), ('customized', 1), ('add', 1)]
[('learn', 2), ('fine', 2), ('art', 2), ('photograph', 2), ('secret', 1), ('digital', 1), ('photography', 1), ('produce', 1), ('captivating', 1), ('high', 1), ('quality', 1), ('easily', 1), ('consistently', 1), ('help', 1), ('invaluable', 1), ('guide', 1), ('based', 1), ('renowned', 1), ('photographer', 1), ('george', 1), ('dewolfe', 1), ('popular', 1), ('workshop', 1), ('inside', 1), ('bit', 1), ('workflow', 1), ('technique', 1), ('mastering', 1), ('craft', 1), ('printing', 1)]
[('oracle', 4), ('database', 3), ('express', 2), ('edition', 2), ('step', 2), ('fastest', 1), ('way', 1), ('running', 1), ('xe', 1), ('take', 1), ('full', 1), ('advantage', 1), ('powerful', 1), ('feature', 1), ('available', 1), ('help', 1), ('easy', 1), ('follow', 1), ('press', 1), ('guide', 1), ('hand', 1), ('window', 1), ('show', 1), ('set', 1), ('administer', 1), ('tune', 1)]
[('word', 3), ('make', 2), ('step', 2), ('getting', 1), ('date', 1), ('guide', 1), ('easy', 1), ('beginner', 1), ('experienced', 1), ('user', 1), ('master', 1), ('powerful', 1), ('feature', 1), ('new', 1), ('interface', 1), ('learn', 1), ('create', 1), ('professional', 1), ('looking', 1), ('document', 1), ('effortlessly', 1), ('practical', 1), ('example', 1), ('instruction', 1), ('even', 1)]
[('step', 2), ('color', 2), ('new', 2), ('full', 1), ('graphic', 1), ('started', 1), ('using', 1), ('access', 1), ('right', 1), ('away', 1), ('quickstep', 1), ('way', 1), ('screenshots', 1), ('clear', 1), ('instruction', 1), ('show', 1), ('use', 1), ('improved', 1), ('feature', 1), ('follow', 1), ('along', 1), ('learn', 1), ('work', 1), ('office', 1), ('interface', 1), ('ribbon', 1), ('create', 1), ('database', 1), ('table', 1), ('enter', 1), ('edit', 1), ('data', 1), ('find', 1)]
[('visio', 4), ('microsoft', 3), ('office', 3), ('create', 1), ('distribute', 1), ('data', 1), ('connected', 1), ('diagram', 1), ('report', 1), ('full', 1), ('detail', 1), ('powerful', 1), ('feature', 1), ('inside', 1), ('comprehensive', 1), ('volume', 1), ('written', 1), ('expert', 1), ('david', 1), ('parker', 1), ('visualizing', 1), ('information', 1), ('demonstrates', 1), ('effectively', 1), ('visualize', 1), ('explore', 1)]
[('office', 3), ('using', 2), ('microsoft', 2), ('business', 2), ('intelligence', 2), ('extract', 1), ('analyze', 1), ('mission', 1), ('critical', 1), ('enterprise', 1), ('data', 1), ('authoritative', 1), ('volume', 1), ('practical', 1), ('guide', 1), ('powerful', 1), ('new', 1), ('collaborative', 1), ('tool', 1), ('available', 1), ('real', 1), ('world', 1), ('example', 1), ('clear', 1), ('explanation', 1), ('reporting', 1), ('analysis', 1)]
[('window', 3), ('security', 3), ('attack', 2), ('latest', 1), ('defense', 1), ('strategy', 1), ('securing', 1), ('begin', 1), ('reading', 1), ('book', 1), ('james', 1), ('costello', 1), ('cissp', 1), ('specialist', 1), ('honeywell', 1), ('meet', 1), ('challenge', 1), ('exclusive', 1), ('hacking', 1), ('exposed', 1), ('countermeasure', 1), ('approach', 1), ('learn', 1), ('real', 1), ('world', 1), ('malicious', 1), ('hacker', 1), ('conduct', 1), ('reconnaissance', 1)]
[('filemaker', 2), ('pro', 2), ('visual', 2), ('need', 1), ('learn', 1), ('fast', 1), ('try', 1), ('quickstart', 1), ('guide', 1), ('recently', 1), ('upgraded', 1), ('teach', 1), ('powerful', 1), ('database', 1), ('software', 1), ('quick', 1), ('easy', 1), ('way', 1), ('using', 1), ('picture', 1), ('rather', 1), ('lengthy', 1), ('explanation', 1)]
[('lesson', 2), ('step', 2), ('hour', 1), ('le', 1), ('able', 1), ('install', 1), ('configure', 1), ('microsoft', 1), ('window', 1), ('server', 1), ('various', 1), ('service', 1), ('size', 1), ('network', 1), ('using', 1), ('straightforward', 1), ('approach', 1), ('build', 1), ('previous', 1), ('one', 1)]
[('system', 3), ('center', 3), ('configuration', 3), ('manager', 3), ('book', 1), ('complete', 1), ('source', 1), ('depth', 1), ('information', 1), ('microsoft', 1), ('nbsp', 1), ('unleashed', 1), ('comprehensive', 1), ('guide', 1)]
[('step', 2), ('session', 1), ('hour', 1), ('le', 1), ('learn', 1), ('build', 1), ('complete', 1), ('reliable', 1), ('modern', 1), ('application', 1), ('visual', 1), ('basic', 1), ('using', 1), ('book', 1), ('straightforward', 1), ('approach', 1), ('master', 1), ('entire', 1), ('process', 1), ('navigating', 1), ('vb', 1)]
[('ipad', 3), ('apple', 1), ('popular', 1), ('mini', 1), ('tablet', 1), ('incredibly', 1), ('useful', 1), ('tool', 1), ('photographer', 1), ('go', 1), ('instead', 1), ('hauling', 1), ('laptop', 1), ('tuck', 1), ('lightweight', 1), ('camera', 1), ('bag', 1), ('take', 1), ('advantage', 1), ('large', 1), ('screen', 1), ('third', 1), ('party', 1), ('software', 1), ('apps', 1)]
[('web', 3), ('publishing', 2), ('html', 2), ('book', 2), ('sam', 1), ('teach', 1), ('cs', 1), ('hour', 1), ('day', 1), ('nbsp', 1), ('new', 1), ('edition', 1), ('best', 1), ('selling', 1), ('started', 1), ('whole', 1), ('phenomenon', 1), ('entire', 1), ('revised', 1), ('refined', 1), ('reflect', 1), ('current', 1)]
[('nbsp', 3), ('medium', 3), ('player', 3), ('window', 1), ('latest', 1), ('update', 1), ('microsoft', 1), ('popular', 1), ('digital', 1), ('program', 1), ('wmp', 1), ('offer', 1), ('giant', 1), ('step', 1), ('forward', 1), ('feature', 1), ('ease', 1), ('use', 1), ('many', 1), ('critic', 1), ('calling', 1), ('best', 1), ('software', 1)]
[('pc', 3), ('hardware', 2), ('step', 2), ('year', 1), ('upgrading', 1), ('repairing', 1), ('industry', 1), ('guide', 1), ('single', 1), ('source', 1), ('reliable', 1), ('information', 1), ('identifying', 1), ('fixing', 1), ('problem', 1), ('adding', 1), ('optimizing', 1), ('performance', 1), ('building', 1), ('new', 1)]
[('programming', 2), ('sql', 2), ('server', 2), ('essential', 1), ('guide', 1), ('key', 1), ('feature', 1), ('microsoft', 1), ('take', 1), ('database', 1), ('skill', 1), ('new', 1), ('level', 1), ('build', 1), ('customized', 1), ('application', 1), ('using', 1), ('developer', 1), ('tool', 1), ('introduced', 1), ('hand', 1)]
[('adobe', 3), ('book', 3), ('training', 3), ('learn', 2), ('classroom', 2), ('series', 2), ('software', 2), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('photoshop', 1), ('element', 1), ('best', 1), ('selling', 1), ('hand', 1), ('workbook', 1), ('help', 1), ('feature', 1), ('quickly', 1), ('easily', 1), ('er', 1), ('program', 1), ('official', 1)]
[('office', 3), ('depth', 1), ('beyond', 1), ('basic', 1), ('beneath', 1), ('surface', 1), ('guide', 1), ('everyone', 1), ('want', 1), ('streamline', 1), ('work', 1), ('done', 1), ('le', 1), ('time', 1), ('best', 1), ('selling', 1), ('technology', 1), ('expert', 1), ('joe', 1), ('habraken', 1), ('provides', 1), ('specific', 1), ('tested', 1), ('proven', 1), ('solution', 1), ('problem', 1), ('user', 1), ('run', 1), ('every', 1), ('day', 1), ('challenge', 1), ('book', 1), ('ignore', 1)]
[('microsoft', 3), ('exam', 3), ('nbsp', 3), ('sql', 3), ('data', 3), ('ref', 2), ('new', 2), ('implementing', 2), ('warehouse', 2), ('direct', 1), ('official', 1), ('study', 1), ('guide', 1), ('developing', 1), ('model', 1), ('certification', 1), ('first', 1), ('book', 1), ('bundle', 1), ('isbn', 1), ('offer', 1)]
[('jquery', 2), ('popular', 1), ('javascript', 1), ('library', 1), ('simplifies', 1), ('event', 1), ('handling', 1), ('animating', 1), ('ajax', 1), ('interaction', 1), ('rapid', 1), ('web', 1), ('development', 1), ('many', 1), ('company', 1), ('using', 1), ('including', 1), ('amazon', 1), ('google', 1), ('twitter', 1), ('bank', 1), ('america', 1), ('bbc', 1), ('espn', 1), ('cbs', 1), ('news', 1), ('digg', 1)]
[('facebook', 2), ('join', 2), ('heard', 1), ('maybe', 1), ('friend', 1), ('invited', 1), ('hot', 1), ('topic', 1), ('around', 1), ('water', 1), ('cooler', 1), ('sure', 1), ('relax', 1), ('million', 1), ('member', 1), ('day', 1)]
[('perl', 5), ('book', 2), ('learning', 1), ('popularly', 1), ('known', 1), ('llama', 1), ('programmer', 1), ('rely', 1), ('started', 1), ('bestselling', 1), ('tutorial', 1), ('first', 1), ('published', 1), ('new', 1), ('fifth', 1), ('edition', 1), ('cover', 1), ('recent', 1), ('change', 1), ('language', 1), ('reflects', 1), ('combined', 1), ('experience', 1), ('author', 1), ('taught', 1)]
[('python', 3), ('language', 2), ('learning', 2), ('portable', 1), ('powerful', 1), ('breeze', 1), ('use', 1), ('popular', 1), ('open', 1), ('source', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('used', 1), ('standalone', 1), ('program', 1), ('scripting', 1), ('application', 1), ('considered', 1), ('easy', 1), ('learn', 1), ('quicker', 1), ('way', 1), ('mastery', 1), ('expert', 1), ('teacher', 1), ('edition', 1), ('put', 1)]
[('photoshop', 3), ('c', 1), ('truly', 1), ('amazing', 1), ('overwhelming', 1), ('getting', 1), ('started', 1), ('book', 1), ('make', 1), ('learning', 1), ('breeze', 1), ('explaining', 1), ('thing', 1), ('friendly', 1), ('conversational', 1), ('style', 1), ('without', 1), ('technical', 1), ('jargon', 1), ('thorough', 1), ('introduction', 1), ('program', 1), ('delve', 1), ('deep', 1), ('secret', 1), ('expert', 1), ('tip', 1), ('practical', 1)]
[('data', 2), ('considering', 1), ('statistical', 1), ('computing', 1), ('visualization', 1), ('book', 1), ('provides', 1), ('quick', 1), ('practical', 1), ('guide', 1), ('everything', 1), ('open', 1), ('source', 1), ('language', 1), ('software', 1), ('environment', 1), ('learn', 1), ('write', 1), ('function', 1), ('use', 1), ('package', 1), ('help', 1), ('prepare', 1), ('visualize', 1), ('analyze', 1), ('author', 1), ('joseph', 1), ('adler', 1)]
[('organization', 2), ('information', 2), ('rely', 1), ('digital', 1), ('today', 1), ('unfortunately', 1), ('equally', 1), ('sought', 1), ('criminal', 1), ('new', 1), ('security', 1), ('standard', 1), ('regulation', 1), ('implemented', 1), ('deal', 1), ('threat', 1), ('broad', 1), ('require', 1), ('focused', 1), ('guidance', 1), ('adapt', 1), ('guideline', 1), ('specific', 1), ('need', 1)]
[('electronic', 2), ('global', 1), ('shift', 1), ('toward', 1), ('delivering', 1), ('service', 1), ('online', 1), ('requires', 1), ('organization', 1), ('evolve', 1), ('using', 1), ('traditional', 1), ('paper', 1), ('file', 1), ('storage', 1), ('modern', 1), ('method', 1), ('little', 1), ('information', 1), ('navigate', 1), ('change', 1), ('implementing', 1), ('document', 1), ('record', 1), ('management', 1), ('system', 1), ('explains', 1), ('efficiently', 1)]
[('requirement', 2), ('book', 1), ('practical', 1), ('value', 1), ('lot', 1), ('fun', 1), ('michael', 1), ('jackson', 1), ('open', 1), ('university', 1), ('need', 1), ('know', 1), ('create', 1), ('good', 1), ('discovering', 1), ('offer', 1), ('set', 1), ('simple', 1), ('robust', 1), ('effective', 1)]
[('take', 1), ('excel', 1), ('formula', 1), ('next', 1), ('level', 1), ('updated', 1), ('reference', 1), ('john', 1), ('walkenbach', 1), ('name', 1), ('synonymous', 1), ('excellence', 1), ('computer', 1), ('book', 1), ('decipher', 1), ('complex', 1), ('technical', 1), ('topic', 1), ('known', 1), ('mr', 1), ('spreadsheet', 1)]
[('know', 2), ('sharpen', 1), ('knowledge', 1), ('want', 1), ('professional', 1), ('microsoft', 1), ('developer', 1), ('good', 1), ('little', 1), ('building', 1), ('tool', 1), ('web', 1), ('mobile', 1), ('apps', 1), ('development', 1), ('task', 1)]
[('programming', 2), ('visual', 2), ('studio', 2), ('easily', 1), ('started', 1), ('using', 1), ('ultra', 1), ('versatile', 1), ('beginning', 1), ('beginner', 1), ('ultimate', 1), ('guide', 1)]
[('spreadsheet', 2), ('excel', 2), ('crunch', 1), ('number', 1), ('create', 1), ('speed', 1), ('friendly', 1), ('book', 1), ('get', 1), ('started', 1), ('basic', 1), ('creating', 1), ('scratch', 1), ('selecting', 1), ('command', 1)]
[('unix', 2), ('shell', 2), ('expert', 1), ('randal', 1), ('michael', 1), ('guide', 1), ('every', 1), ('detail', 1), ('writing', 1), ('script', 1), ('automate', 1), ('specific', 1), ('task', 1), ('chapter', 1), ('begin', 1), ('typical', 1), ('everyday', 1), ('challenge', 1), ('show', 1), ('take', 1), ('basic', 1), ('syntax', 1), ('turn', 1)]
[('dreamweaver', 2), ('bible', 2), ('step', 2), ('updated', 1), ('version', 1), ('bestselling', 1), ('series', 1), ('packed', 1), ('hand', 1), ('instruction', 1), ('tutorial', 1), ('c', 1), ('everything', 1), ('need', 1), ('harness', 1), ('incredible', 1)]
[('access', 2), ('comprehensive', 1), ('reference', 1), ('updated', 1), ('new', 1), ('feature', 1), ('world', 1), ('popular', 1), ('database', 1), ('management', 1), ('tool', 1), ('enables', 1), ('organize', 1), ('present', 1), ('analyze', 1), ('share', 1), ('data', 1)]
[('window', 2), ('new', 2), ('feature', 2), ('bestselling', 1), ('book', 1), ('updated', 1), ('microsoft', 1), ('fine', 1), ('tuned', 1), ('important', 1), ('veteran', 1), ('author', 1), ('andy', 1), ('rathbone', 1), ('explains', 1), ('every', 1)]
[('new', 2), ('edition', 1), ('successful', 1), ('previous', 1), ('version', 1), ('percent', 1), ('revised', 1), ('packed', 1), ('page', 1), ('material', 1), ('release', 1), ('sql', 1), ('server', 1), ('integration', 1), ('service', 1), ('ssis', 1), ('renowned', 1), ('author', 1)]
[('window', 3), ('server', 3), ('prepared', 1), ('high', 1), ('stake', 1), ('mcsa', 1), ('certification', 1), ('exam', 1), ('latest', 1), ('version', 1), ('microsoft', 1), ('operating', 1), ('system', 1)]
[('window', 2), ('o', 2), ('core', 1), ('concept', 1), ('technology', 1), ('need', 1), ('administer', 1), ('server', 1), ('administering', 1), ('operating', 1), ('system', 1), ('difficult', 1), ('topic', 1), ('grasp', 1), ('particularly', 1), ('new', 1), ('field', 1)]
[('illustrator', 4), ('adobe', 1), ('gold', 1), ('standard', 1), ('creating', 1), ('exciting', 1), ('color', 1), ('rich', 1), ('artwork', 1), ('print', 1), ('web', 1), ('even', 1), ('mobile', 1), ('device', 1), ('whether', 1), ('stepping', 1), ('c', 1), ('tackling', 1), ('first', 1), ('time', 1), ('find', 1)]
[('guide', 2), ('edition', 2), ('bestselling', 1), ('leading', 1), ('image', 1), ('editing', 1), ('software', 1), ('fully', 1), ('updated', 1), ('previous', 1), ('dummy', 1), ('sold', 1), ('copy', 1), ('richly', 1), ('illustrated', 1), ('full', 1), ('color', 1)]
[('visio', 2), ('idea', 2), ('reveal', 1), ('inner', 1), ('business', 1), ('artist', 1), ('turn', 1), ('diagram', 1), ('drawing', 1), ('stencil', 1), ('template', 1), ('want', 1), ('electronic', 1)]
[('autocad', 3), ('leading', 1), ('software', 1), ('tool', 1), ('creating', 1), ('technical', 1), ('architectural', 1), ('drawing', 1), ('definitely', 1), ('lead', 1), ('easy', 1), ('master', 1), ('category', 1), ('lt', 1), ('desk', 1), ('reference', 1), ('dummy', 1), ('perfect', 1), ('way', 1)]
[('cryptography', 1), ('effective', 1), ('way', 1), ('achieve', 1), ('data', 1), ('security', 1), ('essential', 1), ('commerce', 1), ('activity', 1), ('online', 1), ('shopping', 1), ('stock', 1), ('trading', 1), ('banking', 1), ('invaluable', 1), ('introduction', 1), ('basic', 1), ('encryption', 1), ('cover', 1), ('everything', 1)]
[('window', 3), ('bestselling', 1), ('tech', 1), ('book', 1), ('time', 1), ('updated', 1), ('microsoft', 1), ('operating', 1), ('system', 1), ('run', 1), ('nearly', 1), ('percent', 1), ('world', 1), ('computer', 1), ('offer', 1), ('new', 1), ('interface', 1), ('update', 1), ('cloud', 1), ('based', 1), ('service', 1)]
[('easy', 2), ('page', 2), ('brace', 1), ('youself', 1), ('come', 1), ('quickstep', 1), ('fast', 1), ('accessible', 1), ('information', 1), ('outlook', 1), ('full', 1), ('color', 1), ('cookbook', 1), ('style', 1), ('format', 1), ('provides', 1), ('answer', 1), ('question', 1), ('concise', 1), ('meaningful', 1), ('way', 1), ('lengthwise', 1), ('layout', 1), ('allows', 1), ('viewing', 1), ('useful', 1), ('tip', 1), ('caution', 1), ('displayed', 1), ('margin', 1)]
[('ebay', 2), ('product', 2), ('sell', 2), ('want', 1), ('build', 1), ('profitable', 1), ('consistent', 1), ('business', 1), ('need', 1), ('start', 1), ('strategic', 1), ('sourcing', 1), ('reveals', 1), ('technique', 1), ('used', 1), ('successful', 1), ('commerce', 1), ('entrepreneur', 1), ('major', 1), ('retail', 1), ('chain', 1), ('determine', 1), ('supplier', 1), ('deliver', 1)]
[('java', 3), ('take', 2), ('max', 1), ('expert', 1), ('help', 1), ('beginning', 1), ('intermediate', 1), ('advanced', 1), ('programmer', 1), ('alike', 1), ('note', 1), ('everything', 1), ('need', 1), ('best', 1), ('performance', 1), ('applet', 1), ('servlets', 1), ('packed', 1), ('complete', 1), ('reference', 1), ('world', 1), ('renowned', 1), ('author', 1), ('patrick', 1), ('naughton', 1), ('espn', 1), ('sportszone', 1), ('disney', 1), ('abc', 1), ('news', 1), ('web', 1), ('site', 1), ('herb', 1)]
[('linux', 4), ('service', 2), ('latest', 1), ('security', 1), ('solution', 1), ('authoritative', 1), ('guide', 1), ('help', 1), ('secure', 1), ('network', 1), ('whether', 1), ('use', 1), ('desktop', 1), ('o', 1), ('internet', 1), ('telecommunication', 1), ('wireless', 1), ('completely', 1), ('rewritten', 1), ('isecom', 1), ('way', 1), ('hacking', 1), ('exposed', 1), ('third', 1), ('edition', 1), ('provides', 1), ('date', 1), ('coverage', 1), ('available', 1)]
[('data', 4), ('xml', 3), ('essential', 1), ('skill', 1), ('made', 1), ('easy', 1), ('started', 1), ('programming', 1), ('right', 1), ('away', 1), ('help', 1), ('hand', 1), ('tutorial', 1), ('beginner', 1), ('guide', 1), ('explains', 1), ('store', 1), ('retrieve', 1), ('document', 1), ('format', 1), ('cascading', 1), ('style', 1), ('sheet', 1), ('display', 1), ('web', 1), ('browser', 1), ('use', 1), ('java', 1), ('javascript', 1), ('book', 1), ('cover', 1), ('latest', 1), ('innovation', 1)]
[('provides', 1), ('right', 1), ('mix', 1), ('practical', 1), ('knowledge', 1), ('straightforward', 1), ('informative', 1), ('fashion', 1), ('tie', 1), ('complex', 1), ('piece', 1), ('together', 1), ('real', 1), ('world', 1), ('case', 1), ('study', 1), ('delivers', 1), ('valuable', 1), ('insight', 1), ('market', 1), ('author', 1), ('cut', 1), ('chase', 1), ('understand', 1), ('effectively', 1), ('perform', 1), ('computer', 1), ('forensic', 1), ('investigation', 1)]
[('customer', 4), ('social', 2), ('crm', 2), ('critical', 1), ('business', 1), ('success', 1), ('today', 1), ('hyper', 1), ('connected', 1), ('environment', 1), ('expectation', 1), ('demand', 1), ('empowered', 1), ('strategy', 1), ('built', 1), ('around', 1), ('collaboration', 1), ('engagement', 1), ('traditional', 1), ('operational', 1), ('management', 1), ('company', 1), ('response', 1), ('control', 1)]
[('html', 3), ('web', 3), ('standard', 2), ('definitive', 1), ('guide', 1), ('cs', 1), ('fully', 1), ('updated', 1), ('written', 1), ('development', 1), ('expert', 1), ('fifth', 1), ('edition', 1), ('trusted', 1), ('resource', 1), ('thoroughly', 1), ('revised', 1), ('reorganized', 1), ('address', 1), ('revolutionary', 1), ('new', 1), ('book', 1), ('cover', 1), ('element', 1), ('supported', 1), ('today', 1), ('browser', 1), ('tag', 1), ('archaic', 1)]
[('best', 1), ('selling', 1), ('guide', 1), ('author', 1), ('elaine', 1), ('weinmann', 1), ('peter', 1), ('lourekas', 1), ('go', 1), ('tutorial', 1), ('reference', 1), ('book', 1), ('photography', 1), ('design', 1), ('professional', 1), ('textbook', 1), ('choice', 1), ('college', 1), ('classroom', 1), ('decade', 1), ('edition', 1), ('includes', 1)]
[('video', 2), ('adobe', 2), ('study', 1), ('guide', 1), ('us', 1), ('text', 1), ('integrated', 1), ('help', 1), ('learner', 1), ('gain', 1), ('real', 1), ('world', 1), ('skill', 1), ('started', 1), ('career', 1), ('print', 1), ('digital', 1), ('medium', 1), ('design', 1), ('publication', 1), ('lay', 1), ('foundation', 1), ('taking', 1), ('indesign', 1), ('certified', 1), ('associate', 1), ('aca', 1), ('exam', 1), ('mix', 1), ('project', 1), ('based', 1), ('lesson', 1), ('quiz', 1), ('throughout', 1), ('prepares', 1)]
[('carefully', 2), ('example', 2), ('take', 1), ('programmer', 1), ('basic', 1), ('concept', 1), ('advanced', 1), ('building', 1), ('extended', 1), ('short', 1), ('manageable', 1), ('code', 1), ('fragment', 1), ('us', 1), ('graduated', 1), ('exercise', 1), ('despite', 1), ('generally', 1), ('small', 1), ('size', 1), ('include', 1), ('interesting', 1), ('math', 1), ('algorithm', 1), ('useful', 1), ('utility', 1), ('game', 1), ('nbsp', 1), ('brian', 1), ('overland', 1)]
[('pivot', 4), ('excel', 3), ('table', 3), ('data', 2), ('nbsp', 2), ('crunching', 1), ('crunch', 1), ('source', 1), ('quickly', 1), ('easily', 1), ('use', 1), ('chart', 1), ('produce', 1), ('powerful', 1), ('dynamic', 1), ('report', 1), ('minute', 1), ('instead', 1), ('hour', 1)]
[('unreal', 3), ('engine', 3), ('level', 2), ('design', 2), ('mastering', 1), ('technology', 1), ('volume', 1), ('introduction', 1), ('start', 1), ('finish', 1), ('guide', 1), ('modding', 1), ('world', 1), ('hottest', 1), ('new', 1), ('gaming', 1), ('everything', 1), ('need', 1), ('know', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('past', 1), ('three', 1), ('year', 1), ('php', 1), ('evolved', 1), ('niche', 1), ('language', 1), ('used', 1), ('add', 1), ('dynamic', 1), ('functionality', 1)]
[('music', 3), ('logic', 2), ('apple', 2), ('step', 2), ('completely', 1), ('revised', 1), ('updated', 1), ('pro', 1), ('express', 1), ('certified', 1), ('guide', 1), ('show', 1), ('record', 1), ('produce', 1), ('polish', 1), ('file', 1), ('professional', 1), ('audio', 1), ('software', 1), ('veteran', 1), ('producer', 1), ('david', 1), ('nahmani', 1), ('instruction', 1), ('teach', 1), ('everything', 1), ('basic', 1), ('creation', 1), ('advanced', 1), ('production', 1), ('technique', 1), ('using', 1)]
[('troubleshooting', 2), ('sql', 2), ('server', 2), ('never', 1), ('published', 1), ('insider', 1), ('information', 1), ('nbsp', 1), ('definitive', 1), ('guide', 1), ('microsoft', 1), ('database', 1), ('engine', 1), ('direct', 1), ('know', 1), ('intimately', 1)]
[('nan', 1)]
[('vsto', 1), ('mere', 1), ('mortal', 1), ('vba', 1), ('developer', 1), ('interested', 1), ('migrating', 1), ('skill', 1), ('next', 1), ('generation', 1), ('office', 1), ('development', 1), ('reader', 1), ('benefit', 1), ('straightforward', 1), ('practical', 1), ('introduction', 1), ('writing', 1), ('managed', 1), ('code', 1), ('application', 1)]
[('office', 2), ('learn', 2), ('amp', 1), ('gt', 1), ('paul', 1), ('mcfedries', 1), ('insider', 1), ('help', 1), ('application', 1), ('inside', 1), ('designed', 1), ('bridge', 1), ('gap', 1), ('expectation', 1), ('reality', 1), ('go', 1), ('beyond', 1), ('basic', 1), ('newly', 1), ('discovered', 1), ('technique', 1)]
[('data', 3), ('modeling', 2), ('developer', 1), ('guide', 1), ('sql', 1), ('server', 1), ('explains', 1), ('concept', 1), ('practice', 1), ('clarity', 1), ('make', 1), ('technology', 1), ('accessible', 1), ('anyone', 1), ('building', 1), ('database', 1), ('driven', 1), ('application', 1), ('eric', 1), ('johnson', 1), ('joshua', 1)]
[('adobe', 2), ('c', 2), ('dreamweaver', 2), ('release', 1), ('creative', 1), ('suite', 1), ('solidifies', 1), ('role', 1), ('de', 1), ('facto', 1), ('tool', 1), ('choice', 1), ('anyone', 1), ('using', 1), ('photoshop', 1), ('designing', 1), ('web', 1), ('window', 1), ('macintosh', 1), ('visual', 1), ('quickstart', 1), ('guide', 1), ('us', 1)]
[('guide', 3), ('visual', 2), ('quickstart', 2), ('designed', 1), ('attractive', 1), ('tutorial', 1), ('reference', 1), ('format', 1), ('quickest', 1), ('easiest', 1), ('thorough', 1), ('way', 1), ('learn', 1), ('application', 1), ('task', 1), ('technology', 1), ('smart', 1), ('choice', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('adobe', 2), ('illustrator', 2), ('real', 1), ('world', 1), ('c', 1), ('definitive', 1), ('reference', 1), ('industry', 1), ('standard', 1), ('vector', 1), ('graphic', 1), ('software', 1), ('color', 1), ('easy', 1), ('engaging', 1), ('style', 1), ('author', 1), ('past', 1), ('product', 1), ('manager', 1), ('mordy', 1), ('golding', 1), ('take', 1), ('reader', 1)]
[('window', 2), ('server', 2), ('fully', 1), ('updated', 1), ('prepare', 1), ('microsoft', 1), ('exam', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('implementing', 1), ('configuring', 1), ('core', 1), ('service', 1), ('designed', 1), ('experienced', 1), ('professional', 1), ('ready', 1)]
[('sql', 2), ('database', 2), ('standard', 1), ('interactive', 1), ('programming', 1), ('language', 1), ('querying', 1), ('modifying', 1), ('data', 1), ('managing', 1), ('task', 1), ('based', 1), ('tutorial', 1), ('reference', 1), ('guide', 1), ('take', 1), ('mystery', 1), ('learning', 1), ('applying', 1), ('going', 1), ('relational', 1)]
[('cobol', 3), ('teach', 2), ('programming', 2), ('step', 2), ('lesson', 2), ('sam', 1), ('hour', 1), ('basic', 1), ('build', 1), ('previous', 1), ('providing', 1), ('solid', 1), ('foundation', 1), ('concept', 1), ('technique', 1), ('nbsp', 1), ('hand', 1), ('guide', 1)]
[('web', 4), ('site', 3), ('designer', 2), ('dreamweaver', 1), ('tool', 1), ('choice', 1), ('professional', 1), ('year', 1), ('became', 1), ('part', 1), ('adobe', 1), ('creative', 1), ('suite', 1), ('even', 1), ('user', 1), ('including', 1), ('beginning', 1), ('turned', 1), ('start', 1), ('creating', 1), ('book', 1), ('beginner', 1), ('itching', 1), ('design', 1), ('first', 1)]
[('version', 4), ('ebook', 2), ('book', 2), ('mysql', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('complete', 1), ('practical', 1), ('guide', 1), ('powerful', 1), ('sql', 1), ('dialect', 1), ('nbsp', 1)]
[('iwork', 2), ('come', 2), ('guide', 2), ('apple', 1), ('productivity', 1), ('application', 1), ('age', 1), ('unfortunately', 1), ('user', 1), ('stuck', 1), ('infancy', 1), ('missing', 1), ('manual', 1), ('book', 1), ('quickly', 1), ('everything', 1), ('need', 1), ('know', 1), ('page', 1), ('word', 1), ('processor', 1), ('number', 1), ('spreadsheet', 1), ('keynote', 1), ('presentation', 1), ('program', 1), ('al', 1)]
[('entity', 3), ('framework', 3), ('net', 2), ('use', 1), ('visual', 1), ('studio', 1), ('book', 1), ('want', 1), ('programming', 1), ('st', 1), ('edition', 1), ('offer', 1), ('experienced', 1), ('developer', 1), ('thorough', 1), ('introduction', 1), ('microsoft', 1), ('core', 1), ('modeling', 1), ('interacting', 1), ('data', 1), ('application', 1), ('hand', 1), ('tour', 1), ('provides', 1), ('deep', 1), ('understanding', 1)]
[('network', 2), ('need', 2), ('written', 1), ('networking', 1), ('veteran', 1), ('year', 1), ('experience', 1), ('warrior', 1), ('provides', 1), ('thorough', 1), ('practical', 1), ('introduction', 1), ('entire', 1), ('infrastructure', 1), ('cabling', 1), ('router', 1), ('learn', 1), ('pas', 1), ('cisco', 1), ('certification', 1), ('exam', 1), ('ccna', 1), ('know', 1), ('survive', 1), ('real', 1), ('world', 1), ('different', 1), ('thing', 1)]
[('game', 3), ('microsoft', 2), ('xna', 2), ('take', 1), ('become', 1), ('developer', 1), ('hand', 1), ('book', 1), ('learn', 1), ('quickly', 1), ('easily', 1), ('develop', 1), ('computer', 1), ('framework', 1), ('pc', 1), ('xbox', 1), ('zune', 1), ('written', 1), ('experienced', 1), ('university', 1), ('level', 1), ('development', 1), ('instructor', 1), ('learning', 1), ('walk', 1)]
[('trading', 2), ('electronic', 1), ('algorithmic', 1), ('become', 1), ('part', 1), ('mainstream', 1), ('response', 1), ('buy', 1), ('side', 1), ('trader', 1), ('need', 1), ('move', 1), ('large', 1), ('block', 1), ('share', 1), ('minimum', 1), ('market', 1), ('impact', 1), ('today', 1), ('complex', 1), ('institutional', 1), ('environment', 1), ('book', 1), ('illustrates', 1), ('overview', 1)]
[('penetration', 3), ('hacking', 2), ('testing', 2), ('ethical', 2), ('basic', 1), ('serf', 1), ('introduction', 1), ('step', 1), ('required', 1), ('complete', 1), ('test', 1), ('perform', 1), ('hack', 1), ('beginning', 1), ('end', 1), ('book', 1), ('make', 1), ('easy', 1), ('prior', 1)]
[('new', 2), ('product', 2), ('microcontrollers', 1), ('present', 1), ('many', 1), ('existing', 1), ('electronic', 1), ('pic', 1), ('microcontroller', 1), ('leading', 1), ('processor', 1), ('embedded', 1), ('application', 1), ('market', 1), ('student', 1), ('development', 1), ('engineer', 1), ('need', 1), ('able', 1), ('design', 1), ('using', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('language', 2), ('influential', 1), ('net', 1), ('platform', 1), ('microsoft', 1), ('preferred', 1), ('established', 1), ('solid', 1), ('user', 1), ('base', 1), ('recent', 1), ('version', 1), ('attracting', 1), ('convert', 1), ('among', 1), ('developer', 1), ('older', 1), ('technology', 1), ('increasing', 1), ('rate', 1)]
[('database', 3), ('beginning', 1), ('visual', 1), ('basic', 1), ('teach', 1), ('everything', 1), ('need', 1), ('know', 1), ('relational', 1), ('sql', 1), ('ado', 1), ('net', 1), ('give', 1), ('sound', 1), ('start', 1), ('developing', 1), ('console', 1), ('window', 1), ('application', 1), ('book', 1), ('includes', 1), ('chapter', 1)]
[('design', 3), ('database', 2), ('sql', 2), ('server', 2), ('learn', 1), ('effective', 1), ('scalable', 1), ('technique', 1), ('environment', 1), ('pro', 1), ('relational', 1), ('implementation', 1), ('cover', 1), ('everything', 1), ('logic', 1), ('business', 1), ('user', 1), ('understand', 1), ('way', 1)]
[('build', 2), ('apps', 2), ('company', 2), ('business', 2), ('mobile', 1), ('specifically', 1), ('target', 1), ('unique', 1), ('need', 1), ('ease', 1), ('writing', 1), ('simple', 1), ('spreadsheet', 1), ('book', 1), ('designed', 1), ('work', 1), ('system', 1), ('database', 1), ('without', 1)]
[('android', 2), ('learn', 1), ('develop', 1), ('application', 1), ('mobile', 1), ('device', 1), ('using', 1), ('simple', 1), ('example', 1), ('ready', 1), ('run', 1), ('copy', 1), ('software', 1), ('development', 1), ('kit', 1), ('author', 1), ('columnist', 1), ('writer', 1), ('developer', 1), ('community', 1), ('advocate', 1), ('mark', 1), ('murphy', 1), ('show', 1)]
[('data', 3), ('technique', 2), ('audit', 2), ('spreadsheet', 2), ('performing', 2), ('providing', 1), ('tool', 1), ('necessary', 1), ('finding', 1), ('error', 1), ('fraud', 1), ('guide', 1), ('auditor', 1), ('looking', 1), ('better', 1), ('validate', 1), ('microsoft', 1), ('excel', 1), ('provides', 1), ('risk', 1), ('assessment', 1), ('gathering', 1), ('company', 1), ('system', 1), ('analysis', 1), ('using', 1), ('analytical', 1)]
[('show', 3), ('cri', 3), ('computer', 2), ('billion', 1), ('dollar', 1), ('bargain', 1), ('related', 1), ('illness', 1), ('common', 1), ('led', 1), ('believe', 1), ('operator', 1), ('susceptible', 1), ('explains', 1), ('origin', 1), ('mechanism', 1), ('demonstrates', 1), ('science', 1), ('render', 1), ('cost', 1), ('effective', 1), ('approach', 1), ('preventing', 1), ('treating', 1), ('penny', 1), ('prevention', 1)]
[('tip', 3), ('microsoft', 2), ('window', 2), ('popular', 1), ('operating', 1), ('system', 1), ('universe', 1), ('betting', 1), ('going', 1), ('believe', 1), ('know', 1), ('collected', 1), ('include', 1), ('networking', 1), ('shortcut', 1), ('troubleshooting', 1), ('trick', 1), ('even', 1), ('basic', 1), ('file', 1)]
[('book', 1), ('explains', 1), ('affect', 1), ('opinion', 1), ('posted', 1), ('online', 1), ('organization', 1), ('use', 1), ('social', 1), ('medium', 1), ('data', 1), ('inform', 1), ('strategy', 1)]
[('new', 1), ('edition', 1), ('feature', 1), ('development', 1), ('graphical', 1), ('user', 1), ('interface', 1), ('gui', 1), ('using', 1), ('latest', 1), ('java', 1), ('swing', 1), ('component', 1)]
[('focus', 1), ('important', 1), ('clustering', 1), ('algorithm', 1), ('context', 1), ('information', 1), ('retrieval', 1)]
[('find', 1), ('spend', 1), ('time', 1), ('writing', 1), ('complex', 1), ('software', 1), ('distribute', 1), ('source', 1), ('code', 1), ('free', 1)]
[('self', 1), ('contained', 1), ('guide', 1), ('kind', 1), ('enables', 1), ('engineer', 1), ('find', 1), ('optimum', 1), ('algorithm', 1), ('specific', 1), ('application', 1)]
[('self', 1), ('contained', 1), ('tutorial', 1), ('working', 1), ('programmer', 1), ('discussing', 1), ('practical', 1), ('way', 1), ('apply', 1), ('formal', 1), ('method', 1), ('real', 1), ('project', 1), ('first', 1), ('published', 1)]
[('book', 1), ('offer', 1), ('fresh', 1), ('perspective', 1), ('fundamental', 1), ('programming', 1), ('language', 1), ('use', 1), ('type', 1), ('theory', 1)]
[('bringing', 1), ('together', 1), ('result', 1), ('new', 1), ('design', 1), ('study', 1), ('understanding', 1), ('knowledge', 1), ('hardware', 1), ('software', 1), ('capability', 1), ('author', 1), ('practical', 1), ('experience', 1), ('gained', 1), ('year', 1), ('work', 1), ('display', 1), ('based', 1), ('system', 1)]
[('information', 2), ('visual', 2), ('make', 1), ('memorable', 1), ('creative', 1), ('design', 1), ('technique', 1), ('research', 1), ('show', 1), ('quickly', 1), ('easily', 1), ('understood', 1), ('likely', 1), ('remembered', 1), ('innovative', 1)]
[('window', 2), ('server', 2), ('pro', 1), ('guide', 1), ('mastering', 1), ('complete', 1), ('resource', 1), ('professional', 1), ('needing', 1), ('quickly', 1), ('date', 1), ('latest', 1), ('release', 1), ('designed', 1)]
[('web', 2), ('design', 2), ('solve', 1), ('traffic', 1), ('trouble', 1), ('turn', 1), ('browser', 1), ('buyer', 1), ('expert', 1), ('ben', 1), ('hunt', 1), ('set', 1), ('quantify', 1), ('difference', 1), ('ordinary', 1), ('site', 1), ('expected', 1), ('find', 1), ('key', 1)]
[('dreamweaver', 2), ('web', 2), ('start', 1), ('creating', 1), ('website', 1), ('wow', 1), ('c', 1), ('powerful', 1), ('yet', 1), ('easy', 1), ('master', 1), ('dominant', 1), ('professional', 1), ('development', 1), ('tool', 1), ('design', 1), ('expert', 1), ('janine', 1), ('warner', 1), ('updated', 1)]
[('designer', 3), ('sharepoint', 2), ('teaching', 1), ('web', 1), ('developer', 1), ('professional', 1), ('use', 1), ('new', 1), ('version', 1), ('covering', 1), ('design', 1), ('business', 1), ('application', 1), ('complete', 1), ('wrox', 1), ('guide', 1), ('brings', 1)]
[('sql', 3), ('server', 3), ('version', 2), ('book', 1), ('written', 1), ('maintain', 1), ('root', 1), ('going', 1), ('back', 1), ('look', 1), ('backward', 1), ('compatibility', 1), ('issue', 1), ('old', 1), ('enough', 1)]
[('solid', 1), ('foundation', 1), ('improving', 1), ('drawing', 1), ('skill', 1), ('teaching', 1), ('new', 1), ('observational', 1), ('method', 1), ('based', 1), ('math', 1), ('computer', 1), ('graphic', 1), ('principle', 1), ('book', 1), ('offer', 1), ('innovative', 1), ('approach', 1), ('show', 1), ('use', 1), ('side', 1)]
[('sql', 3), ('server', 2), ('guide', 1), ('experienced', 1), ('dba', 1), ('tutorial', 1), ('based', 1), ('book', 1), ('learning', 1), ('curve', 1), ('configure', 1), ('administer', 1), ('whether', 1), ('administrator', 1), ('developer', 1), ('using', 1)]
[('step', 2), ('eclipse', 2), ('integrated', 2), ('guide', 1), ('introduces', 1), ('novice', 1), ('using', 1), ('major', 1), ('feature', 1), ('open', 1), ('source', 1), ('extensible', 1), ('development', 1), ('environment', 1), ('ide', 1), ('help', 1), ('java', 1), ('programmer', 1), ('build', 1), ('best', 1), ('breed', 1), ('tool', 1), ('covering', 1), ('whole', 1)]
[('sql', 4), ('function', 3), ('programmer', 2), ('coverage', 2), ('give', 1), ('complete', 1), ('reference', 1), ('standard', 1), ('language', 1), ('database', 1), ('query', 1), ('book', 1), ('advanced', 1), ('help', 1), ('write', 1)]
[('end', 1), ('received', 1), ('comptia', 1), ('vendor', 1), ('neutral', 1), ('certification', 1), ('key', 1), ('credential', 1), ('anyone', 1), ('pursuing', 1), ('career', 1), ('computer', 1), ('technician', 1), ('competitively', 1), ('priced', 1), ('new', 1), ('guide', 1), ('offer', 1), ('seven', 1), ('minibooks', 1), ('page', 1)]
[('order', 1), ('multi', 1), ('course', 1), ('gourmet', 1), ('buffet', 1), ('eat', 1), ('salad', 1), ('ti', 1), ('plus', 1), ('graphing', 1), ('calculator', 1), ('veritable', 1), ('feast', 1), ('feature', 1), ('function', 1), ('fingertip', 1), ('chance', 1), ('take', 1), ('full', 1), ('advantage', 1)]
[('word', 3), ('popular', 2), ('processing', 2), ('software', 2), ('microsoft', 2), ('office', 2), ('complete', 1), ('guide', 1), ('world', 1), ('planet', 1), ('used', 1), ('application', 1), ('productivity', 1), ('suite', 1), ('along', 1), ('rest', 1)]
[('easy', 2), ('page', 2), ('brace', 1), ('youself', 1), ('come', 1), ('quickstep', 1), ('fast', 1), ('accessible', 1), ('information', 1), ('excel', 1), ('full', 1), ('color', 1), ('cookbook', 1), ('style', 1), ('format', 1), ('provides', 1), ('answer', 1), ('question', 1), ('concise', 1), ('meaningful', 1), ('way', 1), ('lengthwise', 1), ('layout', 1), ('allows', 1), ('viewing', 1), ('useful', 1), ('tip', 1), ('caution', 1), ('displayed', 1), ('margin', 1)]
[('dell', 2), ('axim', 2), ('step', 2), ('guide', 1), ('everything', 1), ('handheld', 1), ('second', 1), ('edition', 1), ('fully', 1), ('revised', 1), ('cover', 1), ('microsoft', 1), ('new', 1), ('operating', 1), ('system', 1), ('pocket', 1), ('pc', 1), ('window', 1), ('mobile', 1), ('find', 1), ('manage', 1), ('personal', 1), ('information', 1), ('send', 1), ('receive', 1), ('mail', 1), ('synchronize', 1), ('desktop', 1), ('computer', 1), ('go', 1)]
[('use', 2), ('maximize', 1), ('powerful', 1), ('capability', 1), ('ipaq', 1), ('pocket', 1), ('pc', 1), ('help', 1), ('easy', 1), ('guide', 1), ('learn', 1), ('email', 1), ('internet', 1), ('phone', 1), ('camera', 1), ('feature', 1), ('enjoy', 1), ('entertainment', 1), ('option', 1), ('movie', 1), ('music', 1), ('find', 1), ('productive', 1), ('go', 1), ('using', 1), ('mobile', 1), ('office', 1), ('software', 1), ('work', 1), ('document', 1)]
[('use', 2), ('full', 1), ('color', 1), ('easy', 1), ('book', 1), ('award', 1), ('winning', 1), ('designer', 1), ('best', 1), ('selling', 1), ('author', 1), ('colin', 1), ('smith', 1), ('teach', 1), ('fundamental', 1), ('photoshop', 1), ('cover', 1), ('advanced', 1), ('feature', 1), ('software', 1), ('offer', 1), ('learn', 1), ('traditional', 1), ('drawing', 1), ('painting', 1), ('tool', 1), ('ranging', 1), ('pencil', 1), ('airbrush', 1), ('discover', 1), ('add', 1), ('manipulate', 1), ('text', 1), ('retouch', 1)]
[('easier', 1), ('faster', 1), ('practical', 1), ('way', 1), ('learn', 1), ('really', 1), ('tough', 1), ('subject', 1), ('visual', 1), ('demystified', 1), ('explains', 1), ('language', 1), ('library', 1), ('application', 1), ('use', 1), ('integrated', 1), ('development', 1), ('environment', 1), ('self', 1), ('teaching', 1), ('guide', 1), ('come', 1), ('complete', 1), ('key', 1), ('point', 1), ('background', 1), ('information', 1), ('quiz', 1), ('end', 1)]
[('pl', 4), ('sql', 4), ('oracle', 2), ('create', 1), ('dynamic', 1), ('client', 1), ('server', 1), ('application', 1), ('using', 1), ('comprehensive', 1), ('information', 1), ('contained', 1), ('authoritative', 1), ('volume', 1), ('expert', 1), ('insider', 1), ('cover', 1), ('feature', 1), ('explain', 1), ('scripting', 1), ('semantics', 1), ('syntax', 1), ('fully', 1), ('detail', 1), ('functionality', 1), ('database', 1), ('learn', 1), ('write', 1), ('powerful', 1), ('program', 1)]
[('networking', 2), ('introductory', 1), ('guide', 1), ('focus', 1), ('fundamental', 1), ('including', 1), ('design', 1), ('configuration', 1), ('hardware', 1), ('protocol', 1), ('network', 1), ('client', 1), ('security', 1), ('issue', 1)]
[('report', 3), ('create', 1), ('presentation', 1), ('quality', 1), ('complex', 1), ('interactive', 1), ('analysis', 1), ('document', 1), ('web', 1), ('help', 1), ('thorough', 1), ('resource', 1), ('learn', 1), ('use', 1), ('powerful', 1), ('reporting', 1), ('tool', 1), ('develop', 1), ('design', 1), ('make', 1), ('map', 1), ('table', 1), ('chart', 1), ('produce', 1), ('visually', 1), ('appealing', 1), ('quickly', 1), ('effectively', 1), ('extract', 1), ('present', 1), ('data', 1)]
[('step', 2), ('color', 2), ('digital', 2), ('photo', 2), ('full', 1), ('graphic', 1), ('take', 1), ('right', 1), ('away', 1), ('quickstep', 1), ('way', 1), ('screenshots', 1), ('clear', 1), ('instruction', 1), ('show', 1), ('camera', 1), ('follow', 1), ('along', 1), ('learn', 1), ('manage', 1), ('control', 1), ('setting', 1), ('compose', 1), ('shot', 1), ('photograph', 1), ('landscape', 1), ('object', 1), ('capture', 1), ('action', 1)]
[('linux', 5), ('stop', 1), ('guide', 1), ('fully', 1), ('revised', 1), ('expanded', 1), ('depth', 1), ('coverage', 1), ('feature', 1), ('tool', 1), ('utility', 1), ('thoroughly', 1), ('updated', 1), ('comprehensive', 1), ('resource', 1), ('designed', 1), ('distribution', 1), ('written', 1), ('expert', 1), ('richard', 1), ('petersen', 1), ('book', 1), ('explains', 1), ('running', 1), ('use', 1), ('desktop', 1), ('shell', 1)]
[('guide', 2), ('ibm', 2), ('cognos', 2), ('business', 2), ('intelligence', 2), ('authorized', 1), ('develop', 1), ('deploy', 1), ('maintain', 1), ('complete', 1), ('bi', 1), ('solution', 1), ('across', 1), ('enterprise', 1), ('official', 1), ('show', 1), ('take', 1), ('full', 1), ('advantage', 1), ('robust', 1), ('service', 1), ('oriented', 1), ('architecture', 1), ('simplified', 1), ('role', 1), ('based', 1), ('user', 1), ('interface', 1), ('learn', 1), ('create', 1)]
[('php', 3), ('essential', 1), ('skill', 1), ('made', 1), ('easy', 1), ('learn', 1), ('build', 1), ('dynamic', 1), ('data', 1), ('driven', 1), ('web', 1), ('application', 1), ('using', 1), ('covering', 1), ('latest', 1), ('release', 1), ('cross', 1), ('platform', 1), ('open', 1), ('source', 1), ('scripting', 1), ('language', 1), ('beginner', 1), ('guide', 1), ('teach', 1), ('write', 1), ('basic', 1), ('program', 1), ('enhance', 1), ('advanced', 1), ('feature', 1), ('mysql', 1), ('sqlite', 1), ('database', 1), ('integration', 1)]
[('programming', 3), ('essential', 1), ('skill', 1), ('made', 1), ('easy', 1), ('learn', 1), ('fundamental', 1), ('quickly', 1), ('help', 1), ('hand', 1), ('tutorial', 1), ('previous', 1), ('experience', 1), ('required', 1), ('beginner', 1), ('guide', 1), ('get', 1), ('started', 1), ('right', 1), ('away', 1), ('writing', 1), ('simple', 1), ('useful', 1), ('program', 1), ('visual', 1), ('basic', 1), ('express', 1), ('edition', 1), ('move', 1), ('advanced', 1), ('project', 1), ('including', 1), ('quiz', 1)]
[('microsoft', 2), ('sql', 2), ('server', 2), ('reporting', 2), ('service', 2), ('mobile', 2), ('report', 2), ('date', 1), ('coverage', 1), ('including', 1), ('publisher', 1), ('build', 1), ('publish', 1), ('maintain', 1), ('paginated', 1), ('using', 1), ('expert', 1), ('tip', 1), ('best', 1), ('practice', 1), ('contained', 1), ('hand', 1), ('guide', 1), ('written', 1), ('member', 1), ('original', 1), ('development', 1), ('team', 1)]
[('end', 2), ('tool', 2), ('sharepoint', 1), ('developer', 1), ('finally', 1), ('powerful', 1), ('development', 1), ('need', 1), ('build', 1), ('outstanding', 1), ('solution', 1), ('quickly', 1), ('painlessly', 1), ('built', 1), ('directly', 1), ('latest', 1), ('version', 1), ('visual', 1), ('studio', 1)]
[('catch', 1), ('user', 1), ('experience', 1), ('bug', 1), ('world', 1), ('change', 1), ('door', 1), ('open', 1), ('wrong', 1), ('way', 1), ('website', 1), ('work', 1), ('company', 1), ('seem', 1), ('care', 1), ('anyone', 1), ('learn', 1), ('ux', 1), ('remedy', 1), ('usability', 1), ('testing', 1), ('persona', 1), ('prototyping', 1), ('unless', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('web', 2), ('service', 2), ('sam', 1), ('assembled', 1), ('team', 1), ('expert', 1), ('provide', 1), ('detailed', 1), ('reference', 1), ('guide', 1), ('xml', 1), ('soap', 1), ('usdl', 1), ('uddi', 1), ('building', 1), ('java', 1), ('second', 1), ('edition', 1), ('includes', 1), ('newest', 1), ('standard', 1), ('managing', 1), ('security', 1)]
[('android', 4), ('development', 2), ('introduction', 1), ('application', 1), ('useful', 1), ('real', 1), ('world', 1), ('guide', 1), ('building', 1), ('robust', 1), ('commercial', 1), ('grade', 1), ('apps', 1), ('new', 1), ('marshmallow', 1), ('sdk', 1), ('studio', 1), ('latest', 1), ('best', 1), ('practice', 1), ('bigger', 1), ('better', 1), ('comprehensive', 1), ('book', 1), ('cover', 1), ('everything', 1), ('nbsp', 1), ('student', 1), ('need', 1), ('start', 1)]
[('sharpen', 1), ('print', 1), ('production', 1), ('skill', 1), ('definitive', 1), ('resource', 1), ('created', 1), ('specifically', 1), ('design', 1), ('professional', 1), ('need', 1), ('create', 1), ('file', 1), ('using', 1), ('adobe', 1), ('creative', 1), ('cloud', 1), ('including', 1), ('indesign', 1), ('photoshop', 1), ('illustrator', 1), ('acrobat', 1), ('output', 1)]
[('deep', 4), ('learning', 3), ('reinforcement', 2), ('rl', 2), ('problem', 2), ('game', 2), ('combine', 1), ('artificial', 1), ('agent', 1), ('learn', 1), ('solve', 1), ('sequential', 1), ('decision', 1), ('making', 1), ('past', 1), ('decade', 1), ('achieved', 1), ('remarkable', 1), ('result', 1), ('range', 1), ('single', 1), ('multiplayer', 1), ('go', 1), ('atari', 1), ('dota', 1), ('robotics', 1)]
[('actionscript', 3), ('programming', 3), ('game', 2), ('gary', 1), ('rosenzweig', 1), ('university', 1), ('nbsp', 1), ('best', 1), ('hand', 1), ('tutorial', 1), ('learning', 1), ('language', 1), ('behind', 1), ('flash', 1), ('professional', 1), ('c', 1), ('reader', 1), ('master', 1), ('basic', 1), ('building', 1), ('robust', 1), ('step', 1), ('time', 1), ('learn', 1), ('technique', 1), ('tested', 1)]
[('complex', 1), ('world', 1), ('product', 1), ('easy', 1), ('use', 1), ('win', 1), ('favor', 1), ('consumer', 1), ('first', 1), ('book', 1), ('topic', 1), ('simplicity', 1), ('aimed', 1), ('specifically', 1), ('interaction', 1), ('designer', 1), ('show', 1), ('drill', 1), ('simplify', 1), ('user', 1), ('experience', 1), ('designing', 1)]
[('almost', 1), ('decade', 1), ('best', 1), ('selling', 1), ('visual', 1), ('quickstart', 1), ('guide', 1), ('elaine', 1), ('weinmann', 1), ('peter', 1), ('lourekas', 1), ('textbook', 1), ('choice', 1), ('classroom', 1), ('go', 1), ('tutorial', 1), ('reference', 1), ('art', 1), ('design', 1), ('professional', 1), ('edition', 1), ('includes', 1)]
[('excel', 4), ('microsoft', 1), ('productivity', 1), ('better', 1), ('answer', 1), ('greater', 1), ('success', 1), ('drawing', 1), ('unsurpassed', 1), ('experience', 1), ('bill', 1), ('jelen', 1), ('mr', 1), ('brings', 1), ('together', 1), ('intensely', 1), ('useful', 1), ('knowledge', 1), ('need', 1), ('insight', 1), ('technique', 1), ('tip', 1), ('shortcut', 1), ('find', 1), ('anywhere', 1), ('depth', 1), ('fastest', 1), ('best', 1)]
[('wpf', 2), ('nbsp', 2), ('full', 2), ('color', 2), ('book', 1), ('updated', 1), ('code', 1), ('sample', 1), ('appear', 1), ('visual', 1), ('studio', 1), ('thorough', 1), ('authoritative', 1), ('coverage', 1), ('practical', 1), ('example', 1), ('clear', 1), ('writing', 1), ('presentation', 1), ('make', 1), ('widely', 1)]
[('step', 2), ('session', 1), ('hour', 1), ('le', 1), ('learn', 1), ('build', 1), ('nbsp', 1), ('complete', 1), ('reliable', 1), ('modern', 1), ('application', 1), ('visual', 1), ('basic', 1), ('using', 1), ('book', 1), ('straightforward', 1), ('approach', 1), ('master', 1), ('entire', 1), ('process', 1)]
[('new', 2), ('smartart', 2), ('tm', 2), ('graphic', 2), ('chart', 2), ('microsoft', 1), ('provides', 1), ('fantastic', 1), ('business', 1), ('diagramming', 1), ('engine', 1), ('powerpoint', 1), ('word', 1), ('excel', 1), ('form', 1), ('allow', 1), ('create', 1), ('process', 1), ('radial', 1), ('organization', 1)]
[('sharepoint', 3), ('advanced', 1), ('concept', 1), ('world', 1), ('class', 1), ('consultant', 1), ('show', 1), ('make', 1), ('jump', 1), ('hoop', 1), ('exactly', 1), ('want', 1), ('nbsp', 1), ('jason', 1), ('nadrowski', 1), ('stacy', 1), ('draper', 1), ('built', 1), ('diverse', 1)]
[('web', 2), ('step', 2), ('session', 1), ('hour', 1), ('le', 1), ('learn', 1), ('build', 1), ('complete', 1), ('professional', 1), ('quality', 1), ('solution', 1), ('asp', 1), ('net', 1), ('microsoft', 1), ('visual', 1), ('developer', 1), ('using', 1), ('book', 1), ('straightforward', 1), ('approach', 1), ('master', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('sql', 2), ('background', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('come', 1), ('first', 1), ('laid', 1), ('eye', 1), ('server', 1), ('shocked', 1), ('scared', 1), ('clr', 1), ('xml', 1), ('suddenly', 1), ('urgent', 1), ('need', 1), ('learn', 1)]
[('step', 4), ('data', 2), ('form', 2), ('sharepoint', 2), ('infopath', 2), ('real', 1), ('solution', 1), ('creating', 1), ('managing', 1), ('fast', 1), ('accurate', 1), ('proven', 1), ('easy', 1), ('use', 1), ('nbsp', 1), ('concise', 1), ('task', 1), ('based', 1), ('guide', 1), ('adopter', 1), ('want', 1), ('enhance', 1), ('business', 1), ('process', 1), ('workflow', 1), ('powerful', 1), ('tested', 1), ('procedure', 1), ('solving', 1)]
[('cd', 3), ('ebook', 2), ('version', 2), ('book', 2), ('nbsp', 2), ('linux', 2), ('live', 2), ('printed', 1), ('print', 1), ('includes', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('dream', 1), ('perfect', 1), ('computer', 1), ('system', 1), ('build', 1), ('run', 1)]
[('question', 4), ('practice', 2), ('exam', 2), ('every', 2), ('comptia', 1), ('cram', 1), ('th', 1), ('edition', 1), ('complement', 1), ('study', 1), ('plan', 1), ('nbsp', 1), ('test', 1), ('book', 1), ('supported', 1), ('complete', 1), ('explanation', 1), ('answer', 1), ('package', 1), ('highly', 1), ('realistic', 1), ('cover', 1), ('area', 1), ('knowledge', 1), ('feature', 1)]
[('maybe', 1), ('know', 1), ('filemaker', 1), ('used', 1), ('year', 1), ('need', 1), ('quick', 1), ('reference', 1), ('immediately', 1), ('accessible', 1), ('interrupting', 1), ('work', 1), ('screen', 1), ('nbsp', 1), ('book', 1), ('market', 1), ('expressly', 1), ('focused', 1), ('describing', 1), ('calculation', 1)]
[('use', 2), ('layout', 2), ('note', 1), ('customer', 1), ('print', 1), ('version', 1), ('book', 1), ('highly', 1), ('formatted', 1), ('many', 1), ('page', 1), ('contain', 1), ('example', 1), ('variety', 1), ('approach', 1), ('text', 1), ('including', 1), ('multiple', 1), ('font', 1), ('subtlety', 1), ('lost', 1), ('converted', 1)]
[('project', 3), ('world', 2), ('expert', 1), ('complete', 1), ('practical', 1), ('guide', 1), ('succeeding', 1), ('microsoft', 1), ('renowned', 1), ('management', 1), ('consultant', 1), ('quantumpm', 1), ('help', 1), ('improve', 1), ('planning', 1), ('scheduling', 1), ('resource', 1), ('assignment', 1), ('budgeting', 1)]
[('java', 4), ('fix', 2), ('programmer', 1), ('know', 1), ('finicky', 1), ('work', 1), ('omitted', 1), ('semi', 1), ('colon', 1), ('slightest', 1), ('typo', 1), ('cause', 1), ('command', 1), ('line', 1), ('compiler', 1), ('spew', 1), ('page', 1), ('annoying', 1), ('error', 1), ('message', 1), ('across', 1), ('screen', 1), ('compile', 1), ('hope', 1), ('nothing', 1), ('go', 1), ('wrong', 1), ('time', 1), ('eclipse', 1), ('popular', 1)]
[('access', 3), ('database', 2), ('fast', 1), ('paced', 1), ('book', 1), ('teach', 1), ('basic', 1), ('start', 1), ('using', 1), ('popular', 1), ('program', 1), ('right', 1), ('away', 1), ('learn', 1), ('work', 1), ('useful', 1), ('feature', 1), ('design', 1), ('maintain', 1), ('search', 1), ('valuable', 1), ('nugget', 1), ('information', 1), ('build', 1), ('attractive', 1), ('form', 1), ('quick', 1), ('easy', 1), ('data', 1), ('entry', 1), ('new', 1)]
[('mobile', 4), ('device', 1), ('outnumber', 1), ('desktop', 1), ('laptop', 1), ('computer', 1), ('three', 1), ('worldwide', 1), ('yet', 1), ('little', 1), ('information', 1), ('available', 1), ('designing', 1), ('developing', 1), ('application', 1), ('design', 1), ('development', 1), ('fill', 1), ('void', 1), ('practical', 1), ('guideline', 1), ('standard', 1), ('technique', 1), ('best', 1), ('practice', 1), ('building', 1), ('product', 1), ('start', 1), ('finish', 1), ('book', 1)]
[('jquery', 2), ('simplifies', 1), ('building', 1), ('rich', 1), ('interactive', 1), ('web', 1), ('frontends', 1), ('getting', 1), ('started', 1), ('javascript', 1), ('library', 1), ('easy', 1), ('take', 1), ('year', 1), ('fully', 1), ('realize', 1), ('breadth', 1), ('depth', 1), ('cookbook', 1), ('shortens', 1), ('learning', 1), ('curve', 1), ('considerably', 1), ('recipe', 1), ('learn', 1), ('pattern', 1), ('practice', 1), ('leading', 1), ('developer', 1), ('use', 1), ('everything', 1)]
[('photoshop', 3), ('c', 1), ('amazing', 1), ('overwhelming', 1), ('getting', 1), ('started', 1), ('book', 1), ('make', 1), ('learning', 1), ('breeze', 1), ('explaining', 1), ('thing', 1), ('conversational', 1), ('friendly', 1), ('style', 1), ('technical', 1), ('jargon', 1), ('thorough', 1), ('introduction', 1), ('program', 1), ('delve', 1), ('deep', 1), ('secret', 1), ('expert', 1), ('tip', 1)]
[('linux', 3), ('deployment', 1), ('continues', 1), ('increase', 1), ('demand', 1), ('qualified', 1), ('certified', 1), ('system', 1), ('administrator', 1), ('seeking', 1), ('job', 1), ('based', 1), ('certification', 1), ('professional', 1), ('institute', 1), ('lpi', 1), ('updated', 1), ('guide', 1), ('help', 1), ('prepare', 1), ('technically', 1), ('challenging', 1), ('lpic', 1), ('level', 1), ('exam', 1), ('third', 1), ('edition', 1), ('book', 1)]
[('architecture', 5), ('framework', 2), ('enterprise', 1), ('examines', 1), ('cost', 1), ('saving', 1), ('trend', 1), ('planning', 1), ('administration', 1), ('management', 1), ('provides', 1), ('extensive', 1), ('review', 1), ('widely', 1), ('deployed', 1), ('model', 1), ('including', 1), ('open', 1), ('group', 1), ('zachman', 1), ('architectural', 1), ('formal', 1), ('standard', 1)]
[('design', 2), ('game', 1), ('poised', 1), ('major', 1), ('evolution', 1), ('driven', 1), ('growth', 1), ('technical', 1), ('sophistication', 1), ('audience', 1), ('reach', 1), ('work', 1), ('reveals', 1), ('key', 1), ('good', 1), ('leveraging', 1), ('player', 1), ('psychology', 1), ('understanding', 1), ('memorable', 1), ('exciting', 1), ('useful', 1), ('person', 1), ('real', 1), ('life', 1), ('social', 1), ('interaction', 1), ('applying', 1), ('insight', 1), ('character', 1)]
[('book', 2), ('mathematical', 2), ('first', 1), ('available', 1), ('programming', 1), ('written', 1), ('specifically', 1), ('audience', 1), ('mathematician', 1), ('omits', 1), ('language', 1), ('obscure', 1), ('feature', 1), ('favor', 1), ('aspect', 1), ('greatest', 1), ('utility', 1), ('work', 1), ('emphasizing', 1), ('essential', 1), ('role', 1), ('practice', 1), ('part', 1), ('learning', 1), ('process', 1), ('ideally', 1), ('desig', 1)]
[('edition', 2), ('second', 1), ('first', 1), ('introductory', 1), ('textbook', 1), ('written', 1), ('fortran', 1), ('standard', 1), ('remains', 1), ('suitable', 1), ('novice', 1), ('scientific', 1), ('programmer', 1), ('drawing', 1), ('larger', 1), ('number', 1), ('example', 1), ('exercise', 1), ('new', 1)]
[('call', 4), ('center', 3), ('cover', 2), ('centre', 1), ('become', 1), ('crucial', 1), ('front', 1), ('line', 1), ('managing', 1), ('customer', 1), ('relationship', 1), ('book', 1), ('range', 1), ('terminology', 1), ('explains', 1), ('relevant', 1), ('term', 1), ('provides', 1), ('manager', 1), ('quick', 1), ('reference', 1), ('technology', 1), ('operational', 1), ('issue', 1), ('come', 1), ('running', 1), ('improving', 1)]
[('houdini', 3), ('technique', 2), ('packed', 1), ('book', 1), ('delivers', 1), ('need', 1), ('know', 1), ('spot', 1), ('concise', 1), ('presentation', 1), ('professional', 1), ('suited', 1), ('experienced', 1), ('artist', 1), ('whether', 1), ('migrating', 1), ('another', 1), ('visual', 1), ('effect', 1), ('application', 1), ('upgrading', 1), ('seeking', 1), ('handy', 1), ('reference', 1), ('raise', 1), ('proficiency', 1)]
[('ux', 2), ('book', 2), ('quality', 2), ('user', 2), ('experience', 2), ('process', 1), ('guideline', 1), ('ensuring', 1), ('aim', 1), ('help', 1), ('reader', 1), ('learn', 1), ('create', 1), ('refine', 1), ('interaction', 1), ('design', 1), ('ensure', 1), ('seek', 1), ('expand', 1), ('concept', 1), ('traditional', 1)]
[('today', 1), ('truly', 1), ('useful', 1), ('interactive', 1), ('graphic', 1), ('available', 1), ('affordable', 1), ('computer', 1), ('hardware', 1), ('progress', 1), ('impressive', 1), ('widespread', 1), ('gain', 1), ('software', 1), ('expertise', 1), ('come', 1), ('slowly', 1), ('information', 1), ('advanced', 1), ('technique', 1), ('beyond', 1)]
[('powerful', 1), ('earthquake', 1), ('trigger', 1), ('tsunami', 1), ('pacific', 1), ('hurricane', 1), ('isaac', 1), ('make', 1), ('landfall', 1), ('gulf', 1), ('coast', 1), ('wildfire', 1), ('burn', 1), ('hundred', 1), ('house', 1), ('business', 1), ('colorado', 1), ('tornado', 1), ('touch', 1), ('missouri', 1), ('headline', 1), ('caught', 1), ('attention', 1)]
[('petroleum', 3), ('production', 3), ('engineering', 1), ('computer', 1), ('assisted', 1), ('approach', 1), ('provides', 1), ('handy', 1), ('guideline', 1), ('designing', 1), ('analyzing', 1), ('optimizing', 1), ('system', 1), ('broken', 1), ('four', 1), ('part', 1), ('book', 1), ('cover', 1), ('full', 1), ('scope', 1)]
[('mips', 3), ('edition', 2), ('first', 2), ('best', 2), ('known', 2), ('see', 1), ('run', 1), ('second', 1), ('thorough', 1), ('update', 1), ('marriage', 1), ('risc', 1), ('architecture', 1), ('open', 1), ('source', 1), ('o', 1), ('linux', 1), ('part', 1), ('book', 1), ('begin', 1), ('design', 1)]
[('identity', 2), ('theft', 2), ('steadily', 1), ('rising', 1), ('recent', 1), ('year', 1), ('credit', 1), ('card', 1), ('data', 1), ('number', 1), ('target', 1), ('piece', 1), ('key', 1), ('information', 1), ('organized', 1), ('crime', 1), ('made', 1), ('malware', 1), ('development', 1), ('computer', 1), ('networking', 1), ('attack', 1)]
[('web', 2), ('emergence', 1), ('provoking', 1), ('challenging', 1), ('question', 1), ('developer', 1), ('product', 1), ('service', 1), ('company', 1), ('provide', 1), ('customer', 1), ('employee', 1), ('using', 1), ('rich', 1), ('internet', 1), ('application', 1), ('mash', 1), ('ups', 1), ('feed', 1), ('ajax', 1), ('business', 1), ('model', 1)]
[('financial', 2), ('learn', 1), ('business', 1), ('thinking', 1), ('behind', 1), ('modeling', 1), ('execute', 1), ('know', 1), ('effectively', 1), ('using', 1), ('microsoft', 1), ('excel', 1), ('many', 1), ('believe', 1), ('sale', 1), ('profitability', 1), ('projection', 1), ('shown', 1), ('model', 1), ('key', 1), ('success', 1), ('attracting', 1), ('investor', 1)]
[('book', 2), ('excel', 2), ('market', 1), ('dedicated', 1), ('function', 1), ('tool', 1), ('built', 1), ('key', 1), ('many', 1), ('business', 1), ('analysis', 1), ('scenario', 1), ('focused', 1), ('point', 1), ('force', 1), ('reader', 1), ('wade', 1), ('page', 1)]
[('programming', 3), ('language', 1), ('choice', 1), ('speed', 1), ('reliability', 1), ('required', 1), ('used', 1), ('many', 1), ('low', 1), ('level', 1), ('task', 1), ('device', 1), ('driver', 1), ('operating', 1), ('system', 1), ('example', 1), ('window', 1), ('linux', 1), ('based', 1)]
[('reporting', 2), ('edition', 2), ('pro', 1), ('sql', 1), ('server', 1), ('service', 1), ('third', 1), ('apress', 1), ('top', 1), ('book', 1), ('microsoft', 1), ('enterprise', 1), ('level', 1), ('tool', 1), ('previous', 1), ('sold', 1), ('unit', 1), ('year', 1), ('period', 1), ('revision', 1), ('combined', 1), ('impending', 1)]
[('linux', 3), ('user', 2), ('mind', 1), ('typing', 1), ('administrator', 1), ('tend', 1), ('flexibility', 1), ('speed', 1), ('administration', 1), ('command', 1), ('line', 1), ('byte', 1), ('sized', 1), ('chunk', 1), ('instead', 1), ('fairly', 1), ('standard', 1), ('graphical', 1)]
[('python', 3), ('beginning', 2), ('totaling', 1), ('page', 1), ('covering', 1), ('topic', 1), ('important', 1), ('new', 1), ('intermediate', 1), ('user', 1), ('intended', 1), ('comprehensive', 1), ('book', 1), ('written', 1), ('lt', 1), ('gt', 1), ('sample', 1), ('project', 1)]
[('application', 2), ('first', 1), ('book', 1), ('show', 1), ('php', 1), ('javascript', 1), ('technology', 1), ('work', 1), ('together', 1), ('create', 1), ('next', 1), ('generation', 1), ('covering', 1), ('many', 1), ('commonplace', 1), ('topic', 1), ('developer', 1), ('encounter', 1), ('daily', 1), ('web', 1), ('development', 1), ('task', 1), ('author', 1)]
[('book', 1), ('explores', 1), ('weird', 1), ('mean', 1), ('characterize', 1), ('everyday', 1), ('expression', 1), ('online', 1), ('absurdist', 1), ('photoshops', 1), ('antagonistic', 1), ('twitter', 1), ('hashtags', 1), ('deceptive', 1), ('identity', 1), ('play', 1), ('whitney', 1), ('phillips', 1), ('ryan', 1), ('milner', 1), ('focus', 1), ('especially', 1)]
[('business', 4), ('administration', 2), ('process', 1), ('management', 1), ('usually', 1), ('treated', 1), ('different', 1), ('perspective', 1), ('computer', 1), ('science', 1), ('professional', 1), ('tend', 1), ('consider', 1), ('information', 1), ('technology', 1), ('subordinate', 1), ('aspect', 1)]
[('requirement', 3), ('handbook', 2), ('book', 2), ('concise', 1), ('thorough', 1), ('analysis', 1), ('invaluable', 1), ('perfect', 1), ('desk', 1), ('guide', 1), ('system', 1), ('software', 1), ('development', 1), ('work', 1), ('first', 1), ('kind', 1), ('enables', 1), ('identify', 1), ('real', 1), ('customer', 1), ('project', 1), ('control', 1), ('change', 1), ('addition', 1), ('help', 1), ('understand', 1)]
[('nan', 1)]
[('control', 3), ('engineer', 2), ('subject', 2), ('machine', 1), ('important', 1), ('functional', 1), ('area', 1), ('electrical', 1), ('mechanical', 1), ('working', 1), ('industry', 1), ('era', 1), ('automation', 1), ('every', 1), ('acquaint', 1), ('design', 1), ('installation', 1), ('maintenance', 1), ('system', 1), ('find', 1), ('place', 1), ('compulsory', 1), ('applied', 1), ('engineering', 1)]
[('fuzzy', 4), ('logic', 4), ('neural', 4), ('network', 4), ('book', 2), ('knowledge', 2), ('primary', 1), ('purpose', 1), ('provide', 1), ('student', 1), ('comprehensive', 1), ('basic', 1), ('concept', 1), ('hybridization', 1), ('included', 1), ('previous', 1), ('required', 1)]
[('book', 2), ('topic', 2), ('programming', 2), ('easy', 2), ('live', 2), ('programme', 2), ('author', 1), ('taken', 1), ('special', 1), ('care', 1), ('present', 1), ('various', 1), ('learn', 1), ('style', 1), ('almost', 1), ('every', 1), ('followed', 1), ('designed', 1), ('becomes', 1), ('grasp', 1), ('underlying', 1), ('principle', 1), ('technique', 1), ('total', 1), ('included', 1)]
[('edition', 2), ('mrexcel', 2), ('reader', 2), ('problem', 2), ('updating', 1), ('previous', 1), ('tip', 1), ('include', 1), ('feature', 1), ('excel', 1), ('new', 1), ('popular', 1), ('software', 1), ('guide', 1), ('even', 1), ('incorporates', 1), ('suggestion', 1), ('sent', 1), ('featured', 1), ('topic', 1), ('statement', 1), ('description', 1), ('followed', 1), ('broad', 1), ('strategy', 1), ('solving', 1), ('walk', 1), ('specific', 1), ('step', 1)]
[('computer', 5), ('system', 3), ('design', 2), ('step', 2), ('architecture', 2), ('introduction', 1), ('depicting', 1), ('arrangement', 1), ('simple', 1), ('complete', 1), ('hypothetical', 1), ('integrates', 1), ('four', 1), ('category', 1), ('digital', 1), ('logic', 1), ('organization', 1), ('hardware', 1)]
[('cd', 2), ('isi', 2), ('information', 2), ('package', 2), ('user', 2), ('micro', 1), ('developed', 1), ('unesco', 1), ('general', 1), ('programme', 1), ('widely', 1), ('used', 1), ('retrieval', 1), ('software', 1), ('worldwide', 1), ('designed', 1), ('complement', 1), ('reference', 1), ('manual', 1), ('supplied', 1), ('handbook', 1), ('provides', 1), ('friendly', 1), ('introduction', 1), ('arranged', 1), ('order', 1)]
[('author', 1), ('zero', 1), ('explains', 1), ('scientific', 1), ('revolution', 1), ('transforming', 1), ('way', 1), ('understand', 1), ('world', 1), ('previously', 1), ('domain', 1), ('philosopher', 1), ('linguist', 1), ('information', 1), ('theory', 1), ('moved', 1), ('beyond', 1), ('province', 1), ('code', 1), ('breaker', 1), ('become', 1)]
[('conway', 2), ('gary', 1), ('rivlin', 1), ('tell', 1), ('story', 1), ('ron', 1), ('placed', 1), ('bet', 1), ('internet', 1), ('start', 1), ('ups', 1), ('anyone', 1), ('eise', 1), ('silicon', 1), ('valley', 1), ('reader', 1), ('friendly', 1), ('way', 1), ('realm', 1), ('angel', 1), ('financing', 1), ('independently', 1), ('wealthy', 1), ('investor', 1), ('link', 1)]
[('application', 2), ('coherent', 1), ('source', 1), ('including', 1), ('robotics', 1), ('computational', 1), ('biology', 1), ('graphic', 1), ('manufacturing', 1), ('aerospace', 1), ('medicine', 1)]
[('broad', 1), ('overview', 1), ('graduate', 1), ('student', 1), ('introduces', 1), ('multidisciplinary', 1), ('topic', 1), ('robotics', 1), ('sociology', 1), ('needed', 1), ('understand', 1), ('area', 1)]
[('software', 2), ('project', 2), ('management', 2), ('another', 1), ('book', 1), ('time', 1), ('field', 1), ('computer', 1), ('science', 1), ('development', 1), ('growing', 1), ('rapidly', 1), ('concurrently', 1), ('effective', 1), ('support', 1), ('enterprise', 1), ('demand', 1), ('merging', 1)]
[('skype', 3), ('business', 2), ('administrator', 2), ('authoritative', 1), ('hand', 1), ('guidance', 1), ('mastering', 1), ('give', 1), ('comprehensive', 1), ('coverage', 1), ('need', 1), ('effectively', 1), ('utilize', 1)]
[('javascript', 2), ('bestselling', 1), ('reference', 1), ('updated', 1), ('reflect', 1), ('change', 1), ('technology', 1), ('best', 1), ('practice', 1), ('comprehensive', 1), ('book', 1), ('market', 1), ('bible', 1)]
[('computer', 2), ('forensics', 2), ('essential', 1), ('reading', 1), ('launching', 1), ('career', 1), ('internet', 1), ('crime', 1), ('rise', 1), ('catapulting', 1), ('need', 1), ('specialist', 1), ('new', 1), ('edition', 1), ('present', 1), ('completely', 1), ('updated', 1), ('overview', 1)]
[('python', 3), ('beginning', 1), ('using', 1), ('introduces', 1), ('open', 1), ('source', 1), ('portable', 1), ('interpreted', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('language', 1), ('combine', 1), ('remarkable', 1), ('power', 1), ('clear', 1), ('syntax', 1), ('book', 1), ('enables', 1), ('quickly', 1), ('create', 1)]
[('outlook', 2), ('speed', 1), ('new', 1), ('feature', 1), ('fun', 1), ('friendly', 1), ('guide', 1), ('although', 1), ('microsoft', 1), ('number', 1), ('popular', 1), ('mail', 1), ('productivity', 1), ('tool', 1), ('many', 1), ('utilize', 1), ('fraction', 1), ('true', 1)]
[('security', 2), ('cloud', 2), ('computing', 2), ('known', 1), ('expert', 1), ('decipher', 1), ('challenging', 1), ('aspect', 1), ('allows', 1), ('large', 1), ('small', 1), ('organization', 1), ('opportunity', 1), ('use', 1), ('internet', 1), ('based', 1), ('service', 1)]
[('revit', 2), ('best', 1), ('selling', 1), ('guide', 1), ('complete', 1), ('new', 1), ('coverage', 1), ('release', 1), ('mastering', 1), ('autodesk', 1), ('architecture', 1), ('packed', 1), ('focused', 1), ('discussion', 1)]
[('right', 2), ('business', 2), ('heard', 2), ('least', 2), ('intelligent', 1), ('already', 1), ('figured', 1), ('intelligence', 1), ('pretty', 1), ('valuable', 1), ('making', 1), ('decision', 1), ('dozen', 1), ('definition', 1)]
[('vhdl', 2), ('fpga', 2), ('book', 1), ('us', 1), ('learn', 1), ('approach', 1), ('introduce', 1), ('concept', 1), ('technique', 1), ('designer', 1), ('series', 1), ('hand', 1), ('experiment', 1), ('prototyping', 1), ('example', 1), ('provides', 1), ('collection', 1), ('clear', 1), ('easy', 1), ('follow', 1), ('template', 1)]
[('programming', 3), ('visual', 2), ('step', 2), ('started', 1), ('beginner', 1), ('guide', 1), ('beginning', 1), ('studio', 1), ('provides', 1), ('direction', 1)]
[('server', 2), ('ii', 2), ('first', 1), ('update', 1), ('microsoft', 1), ('operating', 1), ('system', 1), ('nearly', 1), ('five', 1), ('year', 1), ('window', 1), ('boast', 1), ('new', 1), ('internet', 1), ('information', 1), ('service', 1), ('largest', 1), ('departure', 1), ('previous', 1), ('version', 1), ('written', 1), ('author', 1)]
[('active', 2), ('directory', 2), ('new', 2), ('find', 1), ('information', 1), ('need', 1), ('manage', 1), ('maintain', 1), ('mastering', 1), ('window', 1), ('server', 1), ('depth', 1), ('guide', 1), ('updated', 1), ('page', 1), ('material', 1), ('revised', 1), ('address', 1)]
[('excel', 3), ('vba', 2), ('master', 1), ('automation', 1), ('quickly', 1), ('easily', 1), ('hour', 1), ('trainer', 1), ('nd', 1), ('edition', 1), ('quick', 1), ('start', 1), ('guide', 1), ('getting', 1), ('using', 1), ('visual', 1)]
[('access', 3), ('authoritative', 1), ('comprehensive', 1), ('coverage', 1), ('building', 1), ('solution', 1), ('popular', 1), ('database', 1), ('system', 1), ('world', 1), ('opened', 1), ('new', 1), ('frontier', 1), ('cloud', 1), ('provides', 1)]
[('guide', 2), ('word', 2), ('bestselling', 1), ('beginner', 1), ('microsoft', 1), ('whether', 1), ('used', 1), ('older', 1), ('version', 1), ('popular', 1), ('program', 1), ('never', 1), ('processed', 1), ('single', 1), ('hand', 1), ('get', 1)]
[('autocad', 2), ('way', 1), ('running', 1), ('fast', 1), ('learning', 1), ('friendly', 1), ('dummy', 1), ('guide', 1), ('perfect', 1), ('speed', 1), ('basic', 1), ('start', 1), ('creating', 1)]
[('actionscript', 2), ('updated', 1), ('edition', 1), ('latest', 1), ('feature', 1), ('capability', 1), ('flash', 1), ('player', 1), ('popular', 1), ('programming', 1), ('language', 1), ('used', 1), ('primarily', 1), ('development', 1), ('web', 1), ('site', 1), ('software', 1)]
[('autocad', 2), ('hot', 1), ('computer', 1), ('aided', 1), ('design', 1), ('software', 1), ('known', 1), ('powerful', 1), ('tool', 1), ('complexity', 1), ('dummy', 1), ('bestselling', 1), ('guide', 1), ('walk', 1), ('complicated', 1), ('program', 1), ('build', 1), ('complex', 1)]
[('bestselling', 2), ('author', 2), ('stephen', 2), ('nelson', 2), ('return', 2), ('big', 1), ('help', 1), ('small', 1), ('business', 1), ('offering', 1), ('expert', 1), ('advice', 1), ('updated', 1), ('coverage', 1), ('latest', 1), ('revision', 1), ('enhancement', 1)]
[('new', 2), ('nikon', 2), ('picture', 1), ('perfect', 1), ('beginner', 1), ('guide', 1), ('eager', 1), ('take', 1), ('shot', 1), ('using', 1), ('exciting', 1), ('introductory', 1), ('book', 1), ('aimed', 1), ('first', 1), ('time', 1), ('dslr', 1), ('shooter', 1), ('need', 1), ('friendly', 1)]
[('nan', 1)]
[('data', 3), ('make', 2), ('statistic', 2), ('big', 2), ('fast', 1), ('easy', 1), ('way', 1), ('sense', 1), ('subject', 1), ('analysis', 1), ('dizzy', 1), ('come', 1), ('right', 1), ('place', 1), ('dummy', 1), ('break', 1)]
[('indesign', 2), ('speed', 1), ('latest', 1), ('feature', 1), ('enhancement', 1), ('c', 1), ('industry', 1), ('standard', 1), ('professional', 1), ('layout', 1), ('design', 1), ('delivers', 1), ('powerful', 1), ('publishing', 1), ('solution', 1), ('magazine', 1), ('newspaper', 1)]
[('automation', 2), ('window', 2), ('prepare', 1), ('future', 1), ('microsoft', 1), ('nonsense', 1), ('guide', 1), ('powershell', 1), ('scripting', 1), ('language', 1), ('enables', 1), ('within', 1), ('operating', 1), ('system', 1), ('packed', 1), ('powerful', 1), ('new', 1), ('feature', 1)]
[('open', 2), ('source', 2), ('guide', 1), ('managing', 1), ('integrating', 1), ('model', 1), ('phenomenal', 1), ('success', 1), ('linux', 1), ('company', 1), ('taking', 1), ('business', 1), ('solution', 1), ('seriously', 1), ('book', 1), ('help', 1), ('satisfy', 1), ('growing', 1), ('demand', 1)]
[('model', 2), ('business', 2), ('meta', 2), ('data', 2), ('heart', 1), ('book', 1), ('provides', 1), ('complete', 1), ('set', 1), ('support', 1), ('organization', 1), ('core', 1), ('function', 1), ('including', 1), ('universal', 1), ('enterprise', 1), ('wide', 1), ('system', 1), ('stewardship', 1), ('portfolio', 1)]
[('step', 2), ('based', 2), ('system', 2), ('practical', 1), ('nut', 1), ('bolt', 1), ('guide', 1), ('architectural', 1), ('solution', 1), ('describes', 1), ('design', 1), ('robustness', 1), ('flexibility', 1), ('internet', 1), ('real', 1), ('world', 1), ('problem', 1), ('illustrated', 1), ('running', 1), ('case', 1), ('study', 1)]
[('time', 2), ('cut', 2), ('wireless', 2), ('network', 2), ('probably', 1), ('heard', 1), ('expression', 1), ('cord', 1), ('cable', 1), ('office', 1), ('free', 1), ('desk', 1), ('computer', 1), ('wave', 1), ('future', 1), ('literally', 1)]
[('system', 3), ('configure', 1), ('customize', 1), ('administer', 1), ('aix', 1), ('version', 1), ('effectively', 1), ('using', 1), ('expert', 1), ('resource', 1), ('use', 1), ('management', 1), ('tool', 1), ('work', 1), ('network', 1), ('distributed', 1), ('file', 1), ('manage', 1), ('user', 1), ('environment', 1), ('tune', 1), ('monitor', 1)]
[('report', 3), ('advice', 2), ('build', 2), ('user', 2), ('produce', 1), ('winning', 1), ('presentation', 1), ('expert', 1), ('definitive', 1), ('guide', 1), ('discover', 1), ('vital', 1), ('tip', 1), ('best', 1), ('utilize', 1), ('crystal', 1), ('feature', 1), ('analyze', 1), ('data', 1), ('professional', 1), ('complex', 1), ('effective', 1), ('find', 1), ('entire', 1), ('spectrum', 1), ('knowledge', 1), ('new', 1), ('develop', 1), ('design', 1), ('simple', 1)]
[('server', 4), ('web', 3), ('step', 2), ('see', 1), ('microsoft', 1), ('internet', 1), ('information', 1), ('quickly', 1), ('becoming', 1), ('force', 1), ('area', 1), ('instruction', 1), ('installing', 1), ('configuring', 1), ('maintaining', 1), ('administering', 1), ('ii', 1), ('troubleshoot', 1), ('learn', 1), ('industry', 1), ('security', 1), ('standard', 1), ('cover', 1), ('virtual', 1), ('directory', 1), ('frontpage', 1)]
[('step', 2), ('color', 2), ('new', 2), ('full', 1), ('graphic', 1), ('started', 1), ('using', 1), ('outlook', 1), ('right', 1), ('away', 1), ('quickstep', 1), ('way', 1), ('screenshots', 1), ('clear', 1), ('instruction', 1), ('show', 1), ('use', 1), ('improved', 1), ('feature', 1), ('follow', 1), ('along', 1), ('learn', 1), ('work', 1), ('office', 1), ('interface', 1), ('ribbon', 1), ('send', 1), ('receive', 1), ('manage', 1), ('mail', 1), ('enter', 1), ('contact', 1), ('information', 1), ('schedule', 1)]
[('oracle', 5), ('storage', 4), ('automatic', 3), ('management', 3), ('build', 1), ('manage', 1), ('scalable', 1), ('infrastructure', 1), ('streamline', 1), ('data', 1), ('provisioning', 1), ('using', 1), ('asm', 1), ('detailed', 1), ('information', 1), ('contained', 1), ('exclusive', 1), ('press', 1), ('resource', 1), ('written', 1), ('team', 1), ('database', 1), ('expert', 1)]
[('filled', 1), ('hundred', 1), ('hand', 1), ('tutorial', 1), ('tip', 1), ('technique', 1), ('thorough', 1), ('depth', 1), ('reference', 1), ('every', 1), ('second', 1), ('life', 1), ('resident', 1), ('need', 1), ('learn', 1), ('create', 1), ('unique', 1), ('avatar', 1), ('explore', 1), ('build', 1), ('socialize', 1), ('even', 1), ('earn', 1), ('real', 1), ('money', 1), ('inside', 1), ('find', 1), ('exclusive', 1), ('coverage', 1), ('menu', 1), ('feature', 1), ('utility', 1), ('whether', 1)]
[('oracle', 3), ('dba', 2), ('offer', 1), ('hundred', 1), ('hint', 1), ('tip', 1), ('trick', 1), ('trade', 1), ('useful', 1), ('wanting', 1), ('achieve', 1), ('maximum', 1), ('performance', 1), ('application', 1), ('library', 1), ('complete', 1), ('without', 1), ('book', 1), ('ken', 1), ('dr', 1), ('jacob', 1), ('vice', 1), ('president', 1), ('product', 1), ('strategy', 1), ('server', 1), ('technology', 1), ('corporation', 1), ('rich', 1), ('first', 1), ('last', 1), ('stop', 1)]
[('business', 3), ('step', 2), ('color', 2), ('ebay', 2), ('create', 2), ('set', 2), ('full', 1), ('graphic', 1), ('started', 1), ('right', 1), ('away', 1), ('quickstep', 1), ('way', 1), ('screenshots', 1), ('clear', 1), ('instruction', 1), ('show', 1), ('establish', 1), ('run', 1), ('profitable', 1), ('time', 1), ('follow', 1), ('along', 1), ('learn', 1), ('plan', 1), ('build', 1), ('inventory', 1), ('processing', 1), ('center', 1), ('appealing', 1), ('listing', 1)]
[('database', 5), ('oracle', 3), ('step', 2), ('solid', 1), ('foundation', 1), ('technology', 1), ('master', 1), ('fundamental', 1), ('quickly', 1), ('easily', 1), ('using', 1), ('self', 1), ('paced', 1), ('tutorial', 1), ('book', 1), ('cover', 1), ('core', 1), ('essential', 1), ('role', 1), ('administrator', 1), ('high', 1), ('availability', 1), ('large', 1), ('feature', 1), ('beginner', 1), ('guide', 1), ('walk', 1)]
[('oracle', 4), ('fusion', 2), ('using', 2), ('master', 1), ('middleware', 1), ('successfully', 1), ('design', 1), ('rich', 1), ('enterprise', 1), ('web', 1), ('application', 1), ('detailed', 1), ('information', 1), ('press', 1), ('volume', 1), ('developer', 1), ('guide', 1), ('go', 1), ('beyond', 1), ('predominant', 1), ('drag', 1), ('drop', 1), ('method', 1), ('jdeveloper', 1), ('provides', 1), ('wealth', 1), ('example', 1), ('address', 1), ('common', 1), ('development', 1), ('scenario', 1)]
[('end', 2), ('iam', 2), ('oracle', 2), ('develop', 1), ('implement', 1), ('solution', 1), ('maintain', 1), ('high', 1), ('performance', 1), ('fully', 1), ('integrated', 1), ('security', 1), ('foundation', 1), ('across', 1), ('enterprise', 1), ('using', 1), ('detailed', 1), ('information', 1), ('press', 1), ('guide', 1), ('designing', 1), ('framework', 1), ('identity', 1), ('access', 1), ('management', 1), ('suite', 1), ('explains', 1), ('reduce', 1), ('risk', 1), ('exposure', 1), ('effectively', 1), ('managing', 1), ('full', 1)]
[('using', 2), ('herb', 2), ('cover', 2), ('definitive', 1), ('guide', 1), ('linq', 1), ('covariance', 1), ('string', 1), ('formatting', 1), ('optional', 1), ('argument', 1), ('update', 1), ('need', 1), ('know', 1), ('real', 1), ('world', 1), ('michael', 1), ('howard', 1), ('microsoft', 1), ('corporation', 1), ('bestselling', 1), ('author', 1), ('schildt', 1), ('updated', 1), ('expanded', 1), ('classic', 1), ('programming', 1), ('reference', 1), ('latest', 1), ('release', 1)]
[('oracle', 3), ('exam', 2), ('step', 2), ('fully', 1), ('integrated', 1), ('study', 1), ('system', 1), ('ocp', 1), ('prepare', 1), ('certified', 1), ('professional', 1), ('upgrade', 1), ('database', 1), ('exclusive', 1), ('press', 1), ('guide', 1), ('chapter', 1), ('feature', 1), ('example', 1), ('certification', 1), ('summary', 1), ('minute', 1), ('drill', 1), ('self', 1), ('test', 1), ('reinforce', 1), ('topic', 1), ('presented', 1), ('authoritative', 1), ('resource', 1)]
[('security', 2), ('cutting', 1), ('edge', 1), ('technique', 1), ('finding', 1), ('fixing', 1), ('critical', 1), ('flaw', 1), ('fortify', 1), ('network', 1), ('avert', 1), ('digital', 1), ('catastrophe', 1), ('proven', 1), ('strategy', 1), ('team', 1), ('expert', 1), ('completely', 1), ('updated', 1), ('featuring', 1), ('new', 1), ('chapter', 1), ('gray', 1), ('hat', 1), ('hacking', 1), ('ethical', 1), ('hacker', 1), ('handbook', 1), ('fourth', 1), ('edition', 1), ('explains', 1), ('enemy', 1), ('current', 1), ('weapon', 1), ('skill', 1)]
[('genealogy', 3), ('traditional', 2), ('written', 1), ('renowned', 1), ('expert', 1), ('fully', 1), ('updated', 1), ('bestseller', 1), ('show', 1), ('use', 1), ('online', 1), ('research', 1), ('method', 1), ('thoroughly', 1), ('revised', 1), ('latest', 1), ('tool', 1), ('technique', 1), ('everything', 1), ('fourth', 1), ('edition', 1), ('uniquely', 1), ('address', 1), ('different', 1), ('genealogical', 1), ('record', 1), ('type', 1), ('explaining', 1)]
[('cissp', 2), ('harris', 2), ('bestselling', 2), ('completely', 1), ('revised', 1), ('updated', 1), ('body', 1), ('knowledge', 1), ('new', 1), ('edition', 1), ('fernando', 1), ('maymì', 1), ('continues', 1), ('shon', 1), ('legacy', 1), ('providing', 1), ('comprehensive', 1), ('overhaul', 1), ('content', 1), ('leading', 1), ('chosen', 1), ('resource', 1), ('exam', 1), ('success', 1), ('made', 1), ('name', 1), ('security', 1), ('certification', 1)]
[('java', 4), ('programming', 2), ('definitive', 1), ('guide', 1), ('supplement', 1), ('key', 1), ('jdk', 1), ('new', 1), ('feature', 1), ('available', 1), ('book', 1), ('downloads', 1), ('resource', 1), ('page', 1), ('oraclepressbooks', 1), ('fully', 1), ('updated', 1), ('se', 1), ('complete', 1), ('reference', 1), ('tenth', 1), ('edition', 1), ('explains', 1), ('develop', 1), ('compile', 1), ('debug', 1), ('run', 1), ('program', 1), ('bestselling', 1), ('author', 1), ('herb', 1), ('schildt', 1), ('cover', 1)]
[('project', 3), ('step', 2), ('building', 2), ('need', 2), ('experience', 1), ('learning', 1), ('made', 1), ('easy', 1), ('quickly', 1), ('teach', 1), ('manage', 1), ('set', 1), ('pace', 1), ('practicing', 1), ('skill', 1), ('topic', 1), ('include', 1)]
[('safe', 2), ('world', 2), ('reference', 1), ('guide', 1), ('ideal', 1), ('anyone', 1), ('serious', 1), ('learning', 1), ('implementing', 1), ('leading', 1), ('framework', 1), ('enterprise', 1), ('agility', 1), ('inside', 1), ('find', 1), ('complete', 1), ('coverage', 1), ('scaledagileframework', 1), ('knowledge', 1), ('base', 1), ('website', 1), ('thousand', 1), ('largest', 1), ('brand', 1), ('turn', 1), ('building', 1), ('better', 1), ('software', 1), ('system', 1)]
[('telecom', 2), ('writing', 1), ('plain', 1), ('easy', 1), ('understand', 1), ('language', 1), ('expert', 1), ('annabel', 1), ('dodd', 1), ('demystifies', 1), ('today', 1), ('significant', 1), ('networking', 1), ('technology', 1), ('standard', 1), ('architecture', 1), ('introduces', 1), ('leading', 1), ('provider', 1), ('worldwide', 1), ('explains', 1), ('fit', 1), ('fast', 1), ('changing', 1), ('marketplace', 1), ('present', 1), ('key', 1), ('strategy', 1), ('extensive', 1), ('update', 1), ('edition', 1)]
[('network', 3), ('security', 3), ('every', 2), ('business', 2), ('today', 1), ('relies', 1), ('internet', 1), ('requires', 1), ('strong', 1), ('first', 1), ('step', 1), ('second', 1), ('edition', 1), ('explains', 1), ('basic', 1), ('modern', 1), ('easy', 1), ('language', 1), ('anyone', 1), ('understand', 1), ('even', 1), ('previous', 1), ('technical', 1), ('experience', 1), ('nbsp', 1), ('throughout', 1), ('consistent', 1), ('feature', 1), ('simplify', 1)]
[('access', 2), ('sharepoint', 2), ('ebook', 1), ('version', 1), ('printed', 1), ('book', 1), ('tightly', 1), ('integrated', 1), ('short', 1), ('cut', 1), ('provides', 1), ('reader', 1), ('everything', 1), ('need', 1), ('know', 1), ('working', 1), ('topic', 1), ('covered', 1), ('include', 1)]
[('tcp', 4), ('ip', 4), ('first', 2), ('step', 2), ('world', 1), ('experience', 1), ('required', 1), ('includes', 1), ('clear', 1), ('easily', 1), ('understood', 1), ('explanation', 1), ('make', 1), ('learning', 1), ('easy', 1), ('understanding', 1), ('begin', 1), ('learn', 1), ('basic', 1), ('discover', 1)]
[('version', 3), ('print', 2), ('ebook', 2), ('buy', 1), ('microsoft', 1), ('sql', 1), ('server', 1), ('unleashed', 1), ('free', 1), ('includes', 1), ('chapter', 1), ('included', 1), ('see', 1), ('inside', 1), ('book', 1), ('access', 1), ('code', 1), ('detail', 1), ('minute', 1), ('content', 1)]
[('wordpress', 2), ('visual', 2), ('quickstart', 1), ('guide', 1), ('us', 1), ('approach', 1), ('teach', 1), ('essential', 1), ('element', 1), ('world', 1), ('popular', 1), ('publishing', 1), ('platform', 1), ('book', 1), ('give', 1), ('reader', 1), ('tool', 1), ('need', 1), ('create', 1), ('beautiful', 1), ('functional', 1)]
[('ebay', 3), ('trick', 2), ('take', 1), ('mystery', 1), ('enviable', 1), ('powersellers', 1), ('master', 1), ('second', 1), ('edition', 1), ('nbsp', 1), ('full', 1), ('advice', 1), ('expert', 1), ('user', 1), ('learned', 1), ('going', 1), ('pas', 1), ('wisdom', 1), ('find', 1)]
[('know', 2), ('bert', 2), ('work', 2), ('step', 2), ('monroy', 1), ('personal', 1), ('portfolio', 1), ('commercial', 1), ('case', 1), ('study', 1), ('take', 1), ('client', 1), ('apple', 1), ('logitech', 1), ('glean', 1), ('creative', 1), ('photoshop', 1), ('specific', 1), ('insight', 1), ('adobe', 1)]
[('blog', 2), ('tired', 1), ('filling', 1), ('boring', 1), ('post', 1), ('take', 1), ('next', 1), ('step', 1), ('inspired', 1), ('create', 1), ('something', 1), ('unique', 1), ('author', 1), ('margaret', 1), ('mason', 1), ('show', 1), ('way', 1), ('fun', 1), ('collection', 1), ('inspirational', 1), ('idea', 1), ('nobody', 1), ('care', 1)]
[('indesign', 2), ('template', 2), ('design', 2), ('instant', 1), ('first', 1), ('comprehensive', 1), ('guide', 1), ('adobe', 1), ('focus', 1), ('exclusively', 1), ('art', 1), ('production', 1), ('learn', 1), ('everything', 1), ('need', 1), ('know', 1), ('key', 1), ('principle', 1), ('basic', 1), ('architecture', 1)]
[('mac', 2), ('o', 2), ('leopard', 2), ('nbsp', 2), ('book', 2), ('need', 2), ('special', 1), ('edition', 1), ('using', 1), ('crafted', 1), ('grow', 1), ('providing', 1), ('reference', 1), ('material', 1), ('move', 1), ('toward', 1), ('software', 1), ('proficiency', 1), ('use', 1), ('advanced', 1)]
[('programming', 3), ('objective', 3), ('object', 2), ('oriented', 2), ('language', 2), ('concise', 1), ('carefully', 1), ('written', 1), ('tutorial', 1), ('basic', 1), ('apple', 1), ('io', 1), ('o', 1), ('platform', 1), ('book', 1), ('make', 1), ('assumption', 1), ('prior', 1), ('experience', 1), ('based', 1), ('upon', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('user', 2), ('ensure', 1), ('start', 1), ('taking', 1), ('advantage', 1), ('final', 1), ('cut', 1), ('express', 1), ('powerful', 1), ('editing', 1), ('capability', 1), ('immediately', 1), ('thoroughly', 1), ('updated', 1), ('task', 1), ('based', 1), ('guide', 1), ('program', 1), ('best', 1), ('selling', 1), ('author', 1), ('digital', 1), ('video', 1), ('expert', 1), ('lisa', 1), ('brenneis', 1)]
[('photoshop', 3), ('matt', 2), ('adobe', 1), ('pro', 1), ('best', 1), ('selling', 1), ('author', 1), ('kloskowski', 1), ('broke', 1), ('new', 1), ('ground', 1), ('teaching', 1), ('focusing', 1), ('thing', 1), ('make', 1), ('amazing', 1), ('sometimes', 1), ('difficult', 1), ('understand', 1), ('program', 1), ('layer', 1), ('return', 1)]
[('filemaker', 3), ('depth', 2), ('nbsp', 1), ('le', 1), ('time', 1), ('comprehensive', 1), ('coherent', 1), ('practical', 1), ('guide', 1), ('creating', 1), ('professional', 1), ('quality', 1), ('solution', 1), ('newest', 1), ('version', 1), ('drawing', 1), ('unsurpassed', 1)]
[('nbsp', 3), ('beyond', 1), ('basic', 1), ('beneath', 1), ('surface', 1), ('depth', 1), ('microsoft', 1), ('expression', 1), ('web', 1), ('advice', 1), ('technique', 1), ('need', 1), ('job', 1), ('done', 1), ('looking', 1), ('way', 1), ('streamline', 1), ('work', 1), ('focus', 1), ('maximizing', 1), ('time', 1)]
[('object', 3), ('visual', 3), ('basic', 2), ('oriented', 2), ('authoritative', 1), ('guide', 1), ('design', 1), ('architecture', 1), ('development', 1), ('author', 1), ('deborah', 1), ('kurata', 1), ('original', 1), ('pioneer', 1), ('building', 1), ('application', 1)]
[('image', 3), ('digital', 2), ('every', 1), ('requires', 1), ('sharpening', 1), ('softness', 1), ('inevitably', 1), ('introduced', 1), ('digitizing', 1), ('process', 1), ('oftentimes', 1), ('photography', 1), ('sharpened', 1), ('badly', 1), ('second', 1), ('edition', 1), ('definitive', 1), ('book', 1)]
[('javascript', 4), ('developer', 2), ('testing', 2), ('test', 2), ('driven', 2), ('development', 2), ('agile', 2), ('working', 1), ('increasingly', 1), ('large', 1), ('complex', 1), ('project', 1), ('effective', 1), ('automated', 1), ('crucial', 1), ('success', 1), ('complete', 1), ('best', 1), ('practice', 1), ('guide', 1), ('quality', 1), ('assurance', 1), ('tdd', 1), ('methodology', 1), ('leading', 1)]
[('animation', 3), ('digital', 2), ('whether', 1), ('creating', 1), ('television', 1), ('advertising', 1), ('game', 1), ('multimedia', 1), ('character', 1), ('help', 1), ('bring', 1), ('imagination', 1), ('life', 1), ('updated', 1), ('classic', 1), ('newcomer', 1), ('old', 1), ('hand', 1), ('looking', 1)]
[('xml', 4), ('week', 2), ('document', 2), ('sam', 1), ('teach', 1), ('day', 1), ('written', 1), ('expert', 1), ('author', 1), ('steve', 1), ('holzner', 1), ('offer', 1), ('hundred', 1), ('real', 1), ('world', 1), ('example', 1), ('demonstrating', 1), ('us', 1), ('newest', 1), ('tool', 1), ('developer', 1), ('need', 1), ('make', 1), ('start', 1), ('basic', 1), ('syntax', 1), ('discus', 1), ('structure', 1), ('type', 1), ('benefit', 1), ('schema', 1)]
[('step', 2), ('newly', 1), ('updated', 1), ('final', 1), ('cut', 1), ('pro', 1), ('visual', 1), ('quickpro', 1), ('guide', 1), ('hand', 1), ('sought', 1), ('book', 1), ('apple', 1), ('non', 1), ('linear', 1), ('editing', 1), ('system', 1), ('undisputed', 1), ('master', 1), ('digital', 1), ('video', 1), ('medium', 1), ('lisa', 1), ('brenneis', 1), ('demystifies', 1), ('complexity', 1), ('program', 1), ('straightforward', 1), ('approach', 1), ('us', 1), ('tasked', 1), ('based', 1)]
[('need', 3), ('answer', 2), ('step', 2), ('nbsp', 1), ('quickly', 1), ('microsoft', 1), ('excel', 1), ('demand', 1), ('provides', 1), ('visual', 1), ('format', 1), ('show', 1), ('exactly', 1), ('lot', 1), ('full', 1), ('color', 1), ('illustration', 1), ('easy', 1), ('follow', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('mysql', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('definitive', 1), ('guide', 1), ('using', 1), ('programming', 1), ('administering', 1), ('nbsp', 1), ('open', 1)]
[('book', 2), ('scott', 1), ('kelby', 1), ('editor', 1), ('publisher', 1), ('photoshop', 1), ('user', 1), ('magazine', 1), ('best', 1), ('selling', 1), ('photography', 1), ('author', 1), ('world', 1), ('today', 1), ('take', 1), ('whole', 1), ('new', 1), ('level', 1), ('uncovers', 1), ('latest', 1), ('important', 1), ('useful', 1), ('adobe', 1)]
[('microsoft', 2), ('excel', 2), ('user', 2), ('world', 1), ('popular', 1), ('spreadsheet', 1), ('program', 1), ('used', 1), ('school', 1), ('office', 1), ('home', 1), ('completely', 1), ('redesigned', 1), ('interface', 1), ('making', 1), ('intuitive', 1), ('attractive', 1), ('anyone', 1), ('needing', 1)]
[('nbsp', 2), ('build', 2), ('enterprise', 2), ('application', 2), ('foreword', 1), ('craig', 1), ('weissman', 1), ('cto', 1), ('salesforce', 1), ('cloud', 1), ('based', 1), ('fast', 1), ('drive', 1), ('value', 1), ('lower', 1), ('cost', 1), ('using', 1), ('force', 1), ('platform', 1), ('developer', 1), ('deploy', 1), ('powerful', 1), ('far', 1)]
[('web', 3), ('pervasive', 1), ('business', 1), ('analyst', 1), ('technologist', 1), ('struggling', 1), ('comprehend', 1), ('opportunity', 1), ('represents', 1), ('exactly', 1), ('marketing', 1), ('term', 1), ('technical', 1), ('reality', 1), ('fascinating', 1), ('book', 1), ('finally', 1), ('put', 1), ('substance', 1), ('behind', 1), ('phenomenon', 1), ('identifying', 1), ('core', 1), ('pattern', 1), ('introducing', 1), ('abstract', 1)]
[('design', 2), ('pattern', 2), ('want', 1), ('speed', 1), ('development', 1), ('net', 1), ('application', 1), ('ready', 1), ('elegant', 1), ('accepted', 1), ('proven', 1), ('way', 1), ('tackle', 1), ('common', 1), ('programming', 1), ('problem', 1), ('practical', 1), ('guide', 1), ('offer', 1), ('clear', 1), ('introduction', 1), ('classic', 1), ('object', 1), ('oriented', 1), ('explains', 1), ('use', 1), ('latest', 1), ('feature', 1), ('code', 1)]
[('excel', 3), ('user', 2), ('moving', 1), ('routine', 1), ('upgrade', 1), ('microsoft', 1), ('radical', 1), ('redesign', 1), ('application', 1), ('interface', 1), ('led', 1), ('confusion', 1), ('among', 1), ('many', 1), ('relied', 1), ('year', 1), ('new', 1), ('edition', 1), ('pocket', 1), ('guide', 1), ('written', 1), ('ground', 1), ('help', 1), ('newcomer', 1), ('longtime', 1), ('alike', 1), ('find', 1), ('way', 1), ('around', 1)]
[('leopard', 2), ('mac', 2), ('o', 2), ('pogue', 2), ('missing', 2), ('manual', 2), ('apple', 1), ('unleashed', 1), ('greatest', 1), ('version', 1), ('yet', 1), ('david', 1), ('back', 1), ('another', 1), ('meticulous', 1), ('cover', 1), ('operating', 1), ('system', 1), ('wealth', 1), ('detail', 1), ('new', 1), ('better', 1), ('known', 1), ('faster', 1), ('predecessor', 1), ('nothing', 1), ('fast', 1)]
[('iphone', 2), ('html', 2), ('cs', 2), ('javascript', 2), ('development', 2), ('web', 2), ('technology', 2), ('saying', 1), ('building', 1), ('apps', 1), ('future', 1), ('mobile', 1), ('clearly', 1), ('jonathan', 1), ('stark', 1), ('show', 1), ('leverage', 1), ('existing', 1), ('skill', 1), ('build', 1), ('native', 1), ('application', 1), ('using', 1), ('john', 1), ('allsopp', 1), ('author', 1)]
[('docker', 2), ('container', 2), ('offer', 1), ('simpler', 1), ('faster', 1), ('robust', 1), ('method', 1), ('developing', 1), ('distributing', 1), ('running', 1), ('software', 1), ('previously', 1), ('available', 1), ('hand', 1), ('guide', 1), ('learn', 1), ('important', 1), ('gain', 1), ('adopting', 1), ('make', 1), ('part', 1), ('development', 1), ('process', 1), ('ideal', 1), ('developer', 1), ('operation', 1)]
[('post', 1), ('blog', 1), ('tweet', 1), ('follower', 1), ('arrested', 1), ('cost', 1), ('lot', 1), ('money', 1), ('legal', 1), ('battle', 1), ('practical', 1), ('guide', 1), ('show', 1), ('stay', 1), ('trouble', 1), ('write', 1), ('online', 1)]
[('game', 6), ('basic', 1), ('design', 1), ('anyone', 1), ('wanting', 1), ('become', 1), ('professional', 1), ('designer', 1), ('focusing', 1), ('creating', 1), ('mechanic', 1), ('data', 1), ('driven', 1), ('cover', 1), ('role', 1), ('playing', 1), ('real', 1), ('time', 1), ('strategy', 1), ('first', 1), ('person', 1), ('shooter', 1), ('simulation', 1), ('written', 1), ('year', 1), ('veteran', 1), ('industry', 1), ('guide', 1), ('offer', 1), ('detailed', 1), ('explanation', 1)]
[('flash', 2), ('content', 2), ('space', 1), ('latest', 1), ('enhancement', 1), ('ubiquitous', 1), ('environment', 1), ('enabling', 1), ('developer', 1), ('enhance', 1), ('delivery', 1), ('interactivity', 1), ('web', 1), ('site', 1), ('game', 1), ('interactive', 1), ('learning', 1), ('system', 1)]
[('security', 3), ('standard', 2), ('information', 2), ('handbook', 2), ('considered', 1), ('gold', 1), ('reference', 1), ('full', 1), ('content', 1), ('sixth', 1), ('edition', 1), ('management', 1), ('available', 1), ('print', 1), ('cd', 1), ('rom', 1), ('organized', 1), ('cissp', 1), ('common', 1), ('body', 1), ('knowledge', 1), ('domain', 1), ('become', 1), ('program', 1), ('certification', 1)]
[('project', 4), ('management', 3), ('business', 2), ('written', 1), ('nation', 1), ('highly', 1), ('regarded', 1), ('mentor', 1), ('complete', 1), ('methodology', 1), ('toolkit', 1), ('provides', 1), ('relevant', 1), ('solution', 1), ('readily', 1), ('applied', 1), ('industry', 1), ('novice', 1), ('experienced', 1), ('manager', 1), ('aligned', 1), ('common', 1), ('practice', 1), ('gerard', 1), ('hill', 1), ('method', 1)]
[('edition', 2), ('date', 1), ('third', 1), ('pmi', 1), ('standard', 1), ('program', 1), ('management', 1), ('comprehensive', 1), ('resource', 1), ('available', 1), ('help', 1), ('prepare', 1), ('reader', 1), ('pgmp', 1), ('exam', 1), ('updated', 1), ('new', 1), ('changed', 1), ('terminology', 1), ('incorporates', 1), ('concept', 1), ('five', 1), ('performance', 1), ('domain', 1), ('book', 1), ('feature', 1), ('practical', 1), ('study', 1), ('hint', 1), ('list', 1), ('major', 1)]
[('opportunity', 3), ('step', 2), ('management', 2), ('threat', 2), ('guideline', 1), ('bestselling', 1), ('reference', 1), ('discus', 1), ('project', 1), ('expanding', 1), ('traditional', 1), ('risk', 1), ('process', 1), ('address', 1), ('alongside', 1), ('offer', 1), ('valuable', 1), ('tool', 1), ('technique', 1), ('expose', 1), ('capture', 1), ('minimize', 1), ('deal', 1), ('type', 1), ('uncertainty', 1)]
[('value', 2), ('information', 1), ('technology', 1), ('support', 1), ('efficient', 1), ('operation', 1), ('enterprise', 1), ('integration', 1), ('seamless', 1), ('delivery', 1), ('yet', 1), ('often', 1), ('inefficient', 1), ('un', 1), ('integrated', 1), ('unclear', 1), ('completely', 1), ('rewritten', 1), ('version', 1), ('bestselling', 1), ('architecture', 1)]
[('language', 2), ('free', 1), ('open', 1), ('source', 1), ('processing', 1), ('programming', 1), ('environment', 1), ('created', 1), ('mit', 1), ('want', 1), ('develop', 1), ('image', 1), ('animation', 1), ('sound', 1), ('based', 1), ('ubiquitous', 1), ('java', 1), ('provides', 1), ('alternative', 1), ('daunting', 1), ('expensive', 1)]
[('modeling', 2), ('information', 1), ('relational', 1), ('database', 1), ('second', 1), ('edition', 1), ('provides', 1), ('introduction', 1), ('orm', 1), ('object', 1), ('role', 1), ('fact', 1), ('book', 1), ('go', 1), ('beyond', 1), ('introductory', 1), ('coverage', 1), ('provide', 1), ('depth', 1), ('instruction', 1)]
[('resource', 2), ('planning', 2), ('architecture', 1), ('pattern', 1), ('service', 1), ('management', 1), ('governance', 1), ('making', 1), ('shoe', 1), ('cobbler', 1), ('child', 1), ('provides', 1), ('independent', 1), ('examination', 1), ('development', 1), ('enterprise', 1), ('information', 1), ('major', 1), ('company', 1)]
[('cissp', 3), ('security', 2), ('exam', 2), ('study', 1), ('guide', 1), ('serf', 1), ('review', 1), ('want', 1), ('take', 1), ('certified', 1), ('information', 1), ('system', 1), ('professional', 1), ('obtain', 1), ('certification', 1), ('designed', 1), ('ensure', 1), ('handling', 1), ('computer', 1)]
[('standard', 2), ('us', 2), ('usability', 1), ('interaction', 1), ('design', 1), ('web', 1), ('site', 1), ('software', 1), ('known', 1), ('everyone', 1), ('correctly', 1), ('large', 1), ('body', 1), ('knowledge', 1), ('best', 1), ('practice', 1), ('proven', 1), ('result', 1), ('field', 1)]
[('information', 2), ('promise', 1), ('semantic', 1), ('web', 1), ('provide', 1), ('universal', 1), ('medium', 1), ('exchange', 1), ('data', 1), ('knowledge', 1), ('publicized', 1), ('many', 1), ('source', 1), ('basic', 1), ('extension', 1), ('ww', 1), ('permit', 1), ('content', 1), ('expressed', 1)]
[('newnes', 1), ('know', 1), ('series', 1), ('take', 1), ('best', 1), ('author', 1), ('written', 1), ('create', 1), ('hard', 1), ('working', 1), ('desk', 1), ('reference', 1), ('engineer', 1), ('first', 1), ('port', 1), ('call', 1), ('key', 1), ('information', 1), ('design', 1), ('technique', 1), ('rule', 1), ('thumb', 1), ('guaranteed', 1), ('gather', 1)]
[('data', 3), ('increasingly', 1), ('scientist', 1), ('engineer', 1), ('quickly', 1), ('efficiently', 1), ('analyze', 1), ('visualize', 1), ('extremely', 1), ('large', 1), ('set', 1), ('interactive', 1), ('language', 1), ('idl', 1), ('designed', 1), ('address', 1), ('need', 1), ('popular', 1), ('analysis', 1), ('visualization', 1), ('programming', 1)]
[('distributed', 2), ('algorithm', 2), ('nancy', 1), ('lynch', 1), ('provides', 1), ('blueprint', 1), ('designing', 1), ('implementing', 1), ('analyzing', 1), ('directs', 1), ('book', 1), ('wide', 1), ('audience', 1), ('including', 1), ('student', 1), ('programmer', 1), ('system', 1), ('designer', 1), ('researcher', 1)]
[('machine', 3), ('learning', 3), ('data', 2), ('mining', 2), ('practical', 2), ('tool', 2), ('technique', 2), ('third', 1), ('edition', 1), ('offer', 1), ('thorough', 1), ('grounding', 1), ('concept', 1), ('advice', 1), ('applying', 1), ('real', 1), ('world', 1)]
[('cloud', 3), ('computing', 2), ('securing', 1), ('first', 1), ('book', 1), ('help', 1), ('secure', 1), ('information', 1), ('taking', 1), ('part', 1), ('time', 1), ('cost', 1), ('saving', 1), ('company', 1), ('turn', 1), ('burgeoning', 1), ('technology', 1), ('streamline', 1), ('save', 1), ('money', 1), ('security', 1)]
[('blogging', 4), ('clear', 2), ('term', 2), ('blog', 2), ('apress', 1), ('technology', 1), ('action', 1), ('book', 1), ('answer', 1), ('non', 1), ('technical', 1), ('offer', 1), ('never', 1), ('keep', 1), ('hearing', 1), ('news', 1), ('show', 1)]
[('linq', 2), ('language', 1), ('integrated', 1), ('query', 1), ('new', 1), ('addition', 1), ('net', 1), ('framework', 1), ('microsoft', 1), ('releasing', 1), ('alongside', 1), ('next', 1), ('version', 1), ('visual', 1), ('studio', 1), ('orca', 1), ('mid', 1), ('foundation', 1), ('first', 1), ('book', 1), ('subject', 1), ('provide', 1)]
[('dashboard', 3), ('excel', 2), ('book', 1), ('take', 1), ('hand', 1), ('approach', 1), ('developing', 1), ('instructing', 1), ('user', 1), ('advanced', 1), ('technique', 1), ('addressing', 1), ('pitfall', 1), ('common', 1), ('real', 1), ('world', 1), ('key', 1), ('creating', 1), ('informative', 1), ('actionable', 1)]
[('technology', 2), ('completely', 1), ('date', 1), ('asp', 1), ('net', 1), ('demonstrates', 1), ('new', 1), ('best', 1), ('practice', 1), ('coding', 1), ('style', 1), ('requires', 1), ('focus', 1), ('developer', 1), ('need', 1), ('explaining', 1), ('manner', 1), ('applicable', 1), ('development', 1), ('project', 1)]
[('source', 2), ('intelligence', 2), ('apply', 1), ('open', 1), ('osint', 1), ('technique', 1), ('method', 1), ('tool', 1), ('acquire', 1), ('information', 1), ('publicly', 1), ('available', 1), ('online', 1), ('support', 1), ('analysis', 1), ('use', 1), ('harvested', 1), ('data', 1), ('different', 1), ('scenario', 1), ('financial', 1), ('crime', 1)]
[('chart', 2), ('deliver', 1), ('eye', 1), ('catching', 1), ('business', 1), ('intelligence', 1), ('microsoft', 1), ('power', 1), ('bi', 1), ('desktop', 1), ('new', 1), ('edition', 1), ('updated', 1), ('cover', 1), ('latest', 1), ('feature', 1), ('including', 1), ('combo', 1), ('cartesian', 1), ('trend', 1), ('line', 1), ('use', 1), ('gauge', 1), ('covered', 1), ('top', 1)]
[('lt', 3), ('gt', 3), ('python', 3), ('em', 2), ('gain', 1), ('fundamental', 1), ('understanding', 1), ('syntax', 1), ('feature', 1), ('second', 1), ('edition', 1), ('beginning', 1), ('date', 1), ('introduction', 1), ('practical', 1), ('reference', 1), ('covering', 1), ('wide', 1), ('array', 1), ('related', 1), ('programming', 1)]
[('net', 3), ('workflow', 2), ('window', 1), ('foundation', 1), ('part', 1), ('bundle', 1), ('new', 1), ('product', 1), ('update', 1), ('book', 1), ('first', 1), ('cover', 1), ('important', 1), ('addition', 1), ('aim', 1), ('provide', 1), ('reader', 1), ('solid', 1), ('grounding', 1)]
[('robot', 5), ('book', 2), ('teach', 1), ('anyone', 1), ('interested', 1), ('build', 1), ('lego', 1), ('mindstorms', 1), ('author', 1), ('start', 1), ('easy', 1), ('get', 1), ('detail', 1), ('succeeding', 1), ('six', 1), ('built', 1), ('present', 1), ('award', 1), ('winning', 1), ('giving', 1)]
[('third', 1), ('edition', 1), ('highly', 1), ('practical', 1), ('work', 1), ('offer', 1), ('comprehensive', 1), ('introduction', 1), ('prominent', 1), ('open', 1), ('source', 1), ('technology', 1), ('planet', 1), ('php', 1), ('scripting', 1), ('language', 1), ('mysql', 1), ('database', 1), ('server', 1), ('incarnation', 1)]
[('data', 2), ('visualization', 2), ('world', 2), ('made', 1), ('simple', 1), ('practical', 1), ('guide', 1), ('fundamental', 1), ('strategy', 1), ('real', 1), ('case', 1), ('essential', 1), ('skill', 1), ('required', 1), ('today', 1), ('information', 1), ('rich', 1)]
[('world', 2), ('classical', 2), ('science', 2), ('positivistic', 1), ('technology', 1), ('obtained', 1), ('success', 1), ('vanished', 1), ('way', 1), ('thinking', 1), ('promoted', 1), ('epoch', 1), ('still', 1), ('lingers', 1), ('social', 1), ('consciousness', 1), ('sometimes', 1), ('burden', 1), ('conquer', 1), ('shortcoming', 1), ('analytical', 1), ('modern', 1), ('complex', 1), ('system', 1), ('theory', 1)]
[('covering', 1), ('fundamental', 1), ('kernel', 1), ('based', 1), ('learning', 1), ('theory', 1), ('essential', 1), ('resource', 1), ('graduate', 1), ('student', 1), ('professional', 1), ('computer', 1), ('science', 1)]
[('social', 2), ('resource', 1), ('scientist', 1), ('twitter', 1), ('data', 1), ('used', 1), ('study', 1), ('individual', 1), ('behavior', 1), ('interaction', 1)]
[('book', 1), ('unifies', 1), ('consolidates', 1), ('method', 1), ('analyzing', 1), ('multilayer', 1), ('network', 1), ('arising', 1), ('social', 1), ('physical', 1), ('science', 1), ('computing', 1)]
[('social', 1), ('medium', 1), ('invaluable', 1), ('crisis', 1), ('natural', 1), ('disaster', 1), ('difficult', 1), ('analyze', 1), ('book', 1), ('show', 1), ('computer', 1), ('science', 1), ('help', 1)]
[('book', 1), ('guide', 1), ('programmer', 1), ('creating', 1), ('application', 1), ('use', 1), ('internet', 1)]
[('textbook', 1), ('graduate', 1), ('course', 1), ('formal', 1), ('language', 1), ('automaton', 1), ('theory', 1), ('building', 1), ('prior', 1), ('knowledge', 1), ('theoretical', 1), ('computer', 1), ('model', 1)]
[('updated', 1), ('introduction', 1), ('software', 1), ('modelling', 1), ('using', 1), ('vdm', 1), ('includes', 1), ('advanced', 1), ('online', 1), ('tool', 1), ('support', 1), ('date', 1), ('report', 1), ('real', 1), ('commercial', 1), ('application', 1)]
[('moving', 1), ('frame', 1), ('explained', 1), ('language', 1), ('undergraduate', 1), ('calculus', 1), ('suitable', 1), ('graduate', 1), ('student', 1)]
[('book', 1), ('develops', 1), ('theory', 1), ('typed', 1), ('feature', 1), ('structure', 1), ('provides', 1), ('logical', 1), ('foundation', 1), ('logic', 1), ('programming', 1), ('constraint', 1), ('based', 1), ('reasoning', 1), ('system', 1)]
[('provides', 1), ('introduction', 1), ('category', 1), ('theory', 1), ('whilst', 1), ('retaining', 1), ('level', 1), ('mathematical', 1), ('correctness', 1), ('thus', 1), ('appealing', 1), ('student', 1), ('computer', 1), ('science', 1), ('mathematics', 1)]
[('present', 1), ('state', 1), ('art', 1), ('sparse', 1), ('multiscale', 1), ('image', 1), ('signal', 1), ('processing', 1)]
[('book', 1), ('introduces', 1), ('theoretical', 1), ('foundation', 1), ('error', 1), ('correcting', 1), ('code', 1), ('senior', 1), ('undergraduate', 1), ('graduate', 1), ('student', 1)]
[('accessible', 1), ('introduction', 1), ('undergraduate', 1), ('explains', 1), ('cryptographic', 1), ('protocol', 1), ('privacy', 1), ('use', 1), ('digital', 1), ('signature', 1), ('certifying', 1), ('integrity', 1), ('message', 1), ('program', 1)]
[('second', 1), ('edition', 1), ('book', 1), ('focus', 1), ('practical', 1), ('algorithm', 1), ('mining', 1), ('data', 1), ('even', 1), ('largest', 1), ('datasets', 1)]
[('social', 2), ('engineer', 2), ('learn', 1), ('identify', 1), ('non', 1), ('verbal', 1), ('behavior', 1), ('unmasking', 1), ('human', 1), ('element', 1), ('security', 1), ('focus', 1), ('combining', 1), ('science', 1), ('understanding', 1)]
[('next', 1), ('wave', 1), ('business', 1), ('intelligence', 1), ('self', 1), ('service', 1), ('bi', 1), ('seek', 1), ('meet', 1), ('demand', 1), ('powerful', 1), ('hardware', 1), ('shorter', 1), ('decision', 1), ('time', 1), ('frame', 1), ('book', 1), ('introduces', 1), ('powerpivot', 1), ('excel', 1), ('sharepoint', 1), ('showing', 1), ('use', 1), ('innovative', 1), ('software', 1)]
[('excel', 2), ('access', 2), ('ultimate', 1), ('handbook', 1), ('analyst', 1), ('need', 1), ('reporting', 1), ('solution', 1), ('using', 1), ('intended', 1), ('work', 1), ('together', 1), ('book', 1), ('offer', 1), ('comprehensive', 1), ('review', 1), ('extensive', 1), ('analytical', 1)]
[('cloud', 2), ('computing', 2), ('expert', 1), ('guide', 1), ('selecting', 1), ('right', 1), ('service', 1), ('model', 1), ('business', 1), ('rage', 1), ('allowing', 1), ('delivery', 1), ('storage', 1), ('capacity', 1), ('diverse', 1), ('community', 1), ('end', 1), ('recipient', 1)]
[('sql', 2), ('server', 2), ('microsoft', 2), ('harness', 1), ('power', 1), ('high', 1), ('performance', 1), ('database', 1), ('data', 1), ('analysis', 1), ('software', 1), ('package', 1), ('accesing', 1), ('everything', 1), ('need', 1), ('know', 1), ('bible', 1), ('learn', 1), ('best', 1), ('practice', 1), ('tip', 1), ('trick', 1)]
[('computing', 4), ('woman', 2), ('profession', 1), ('face', 1), ('serious', 1), ('gender', 1), ('crisis', 1), ('today', 1), ('fewer', 1), ('enter', 1), ('anytime', 1), ('past', 1), ('year', 1), ('book', 1), ('provides', 1), ('unprecedented', 1), ('look', 1), ('history', 1), ('men', 1), ('detailing', 1)]
[('data', 2), ('science', 2), ('logical', 1), ('linear', 1), ('guide', 1), ('fundamental', 1), ('programming', 1), ('exploding', 1), ('good', 1), ('way', 1), ('forecast', 1), ('megabyte', 1), ('new', 1), ('information', 1), ('created', 1), ('every', 1), ('second', 1)]
[('step', 2), ('solidworks', 2), ('continuous', 1), ('tutorial', 1), ('cad', 1), ('manufacturing', 1), ('software', 1), ('package', 1), ('used', 1), ('design', 1), ('everything', 1), ('aerospace', 1), ('robotics', 1), ('bicycle', 1), ('book', 1), ('teach', 1), ('beginner', 1)]
[('asp', 3), ('net', 3), ('feature', 2), ('book', 1), ('introduces', 1), ('capability', 1), ('offer', 1), ('explains', 1), ('foundation', 1), ('provides', 1), ('cover', 1), ('major', 1), ('new', 1), ('included', 1), ('detail', 1), ('retaining', 1), ('unique', 1), ('vb', 1), ('dual', 1), ('language', 1)]
[('bestseller', 2), ('perennial', 1), ('show', 1), ('share', 1), ('file', 1), ('internet', 1), ('connection', 1), ('across', 1), ('wireless', 1), ('network', 1), ('fully', 1), ('updated', 1), ('window', 1), ('mac', 1), ('o', 1), ('snow', 1), ('leopard', 1), ('new', 1), ('edition', 1), ('return', 1)]
[('office', 2), ('mac', 2), ('started', 1), ('discover', 1), ('creative', 1), ('possibility', 1), ('leading', 1), ('suite', 1), ('productivity', 1), ('software', 1), ('microsoft', 1), ('help', 1), ('user', 1), ('complete', 1), ('common', 1), ('business', 1), ('task', 1), ('including', 1), ('word', 1)]
[('text', 2), ('mining', 2), ('provides', 1), ('reader', 1), ('method', 1), ('algorithm', 1), ('mean', 1), ('perform', 1), ('task', 1), ('book', 1), ('devoted', 1), ('fundamental', 1), ('using', 1), ('perl', 1), ('open', 1), ('source', 1), ('programming', 1), ('tool', 1), ('freely', 1), ('available', 1), ('via', 1)]
[('pentaho', 3), ('complete', 2), ('guide', 2), ('kettle', 2), ('data', 1), ('lntegration', 1), ('toolset', 1), ('etl', 1), ('practical', 1), ('book', 1), ('installing', 1), ('configuring', 1), ('managing', 1), ('database', 1), ('administrator', 1)]
[('crime', 3), ('authoritative', 1), ('guide', 1), ('investigating', 1), ('high', 1), ('technology', 1), ('internet', 1), ('seemingly', 1), ('rise', 1), ('making', 1), ('need', 1), ('comprehensive', 1), ('resource', 1), ('investigate', 1), ('even', 1), ('dire', 1)]
[('mvc', 2), ('update', 2), ('technology', 2), ('popular', 2), ('asp', 1), ('net', 1), ('insider', 1), ('cover', 1), ('latest', 1), ('wrox', 1), ('reference', 1), ('newest', 1), ('microsoft', 1), ('enables', 1), ('build', 1), ('dynamic', 1)]
[('website', 3), ('everything', 1), ('need', 1), ('build', 1), ('newest', 1), ('version', 1), ('html', 1), ('cs', 1), ('develop', 1), ('know', 1), ('goal', 1), ('post', 1), ('keep', 1), ('moving', 1), ('especially', 1), ('work', 1)]
[('powerpoint', 2), ('need', 2), ('master', 1), ('improve', 1), ('presentation', 1), ('skill', 1), ('book', 1), ('today', 1), ('business', 1), ('climate', 1), ('know', 1), ('inside', 1), ('able', 1), ('make', 1)]
[('asp', 2), ('net', 2), ('ultimate', 1), ('programming', 1), ('guide', 1), ('popular', 1), ('author', 1), ('microsoft', 1), ('mvp', 1), ('imar', 1), ('spaanjaars', 1), ('updated', 1), ('introductory', 1), ('book', 1), ('filled', 1), ('helpful', 1), ('example', 1), ('contains', 1)]
[('web', 4), ('next', 1), ('major', 1), ('advance', 1), ('built', 1), ('semantic', 1), ('technology', 1), ('allow', 1), ('data', 1), ('shared', 1), ('reused', 1), ('across', 1), ('application', 1), ('enterprise', 1), ('community', 1), ('boundary', 1), ('written', 1), ('team', 1), ('highly', 1), ('experienced', 1), ('developer', 1)]
[('scripting', 3), ('window', 2), ('packed', 1), ('sample', 1), ('script', 1), ('extensive', 1), ('collection', 1), ('library', 1), ('function', 1), ('essential', 1), ('book', 1), ('thorough', 1), ('guide', 1), ('powershell', 1), ('market', 1), ('examine', 1), ('changing', 1)]
[('software', 2), ('superior', 1), ('primer', 1), ('testing', 1), ('quality', 1), ('assurance', 1), ('integration', 1), ('execution', 1), ('automation', 1), ('important', 1), ('new', 1), ('work', 1), ('fill', 1), ('pressing', 1), ('need', 1), ('user', 1), ('friendly', 1), ('text', 1), ('aim', 1), ('provide', 1), ('engineer', 1)]
[('guide', 2), ('android', 2), ('app', 2), ('development', 2), ('updated', 1), ('edition', 1), ('bestselling', 1), ('ambition', 1), ('build', 1), ('hand', 1), ('give', 1), ('everything', 1), ('need', 1), ('dig', 1), ('process', 1), ('turn', 1)]
[('business', 2), ('make', 1), ('chore', 1), ('easy', 1), ('quickbooks', 1), ('managing', 1), ('book', 1), ('small', 1), ('challenging', 1), ('onerous', 1), ('task', 1), ('looking', 1), ('spend', 1), ('fewer', 1), ('hour', 1), ('hunched', 1), ('multiple', 1), ('spreadsheet', 1), ('time', 1), ('focused', 1)]
[('stop', 1), ('reference', 1), ('help', 1), ('applescript', 1), ('automator', 1), ('handiest', 1), ('way', 1), ('streamline', 1), ('workload', 1), ('automate', 1), ('routine', 1), ('computer', 1), ('task', 1), ('mac', 1), ('user', 1), ('lucky', 1)]
[('user', 2), ('friendly', 2), ('excel', 2), ('comprehensive', 1), ('date', 1), ('guide', 1), ('standard', 1), ('spreadsheet', 1), ('application', 1), ('used', 1), ('worldwide', 1), ('always', 1), ('make', 1), ('perfect', 1)]
[('adobe', 2), ('perennial', 1), ('creative', 1), ('suite', 1), ('bestseller', 1), ('fully', 1), ('updated', 1), ('c', 1), ('featuring', 1), ('eight', 1), ('book', 1), ('dummy', 1), ('guide', 1), ('cover', 1), ('key', 1), ('feature', 1), ('tool', 1), ('need', 1), ('know', 1)]
[('photoshop', 3), ('element', 3), ('bestselling', 1), ('book', 1), ('new', 1), ('edition', 1), ('getting', 1), ('photo', 1), ('easier', 1), ('think', 1), ('take', 1), ('know', 1), ('tool', 1), ('adobe', 1)]
[('latest', 1), ('word', 1), ('biggest', 1), ('self', 1), ('hosted', 1), ('blogging', 1), ('tool', 1), ('market', 1), ('within', 1), ('week', 1), ('announcement', 1), ('wordpress', 1), ('downloaded', 1), ('million', 1), ('time', 1), ('bandwagon', 1)]
[('accounting', 2), ('microsoft', 2), ('dynamic', 2), ('gp', 2), ('accountable', 1), ('mid', 1), ('level', 1), ('business', 1), ('software', 1), ('best', 1), ('friend', 1), ('dummy', 1), ('improves', 1)]
[('autocad', 2), ('bring', 1), ('design', 1), ('vision', 1), ('life', 1), ('full', 1), ('color', 1), ('guide', 1), ('used', 1), ('everyone', 1), ('engineer', 1), ('architect', 1), ('interior', 1), ('designer', 1), ('draftspeople', 1), ('world', 1), ('leading', 1)]
[('sync', 2), ('icloud', 1), ('itunes', 1), ('match', 1), ('page', 1), ('book', 1), ('guide', 1), ('want', 1), ('keep', 1), ('calendar', 1), ('contact', 1), ('mail', 1), ('iwork', 1), ('document', 1), ('date', 1), ('matter', 1)]
[('data', 3), ('big', 2), ('business', 2), ('organization', 2), ('find', 1), ('right', 1), ('solution', 1), ('management', 1), ('major', 1), ('challenge', 1), ('facing', 1), ('industry', 1), ('profit', 1), ('set', 1)]
[('business', 2), ('quickbooks', 2), ('keep', 1), ('finance', 1), ('control', 1), ('easily', 1), ('involved', 1), ('small', 1), ('accounting', 1), ('last', 1), ('thing', 1), ('want', 1), ('spend', 1), ('lot', 1), ('time', 1), ('luckily', 1)]
[('service', 3), ('oriented', 2), ('architecture', 2), ('governance', 2), ('guide', 1), ('company', 1), ('undertaking', 1), ('soa', 1), ('driven', 1), ('enterprise', 1), ('expertly', 1), ('cover', 1)]
[('design', 4), ('adobe', 2), ('premium', 2), ('professional', 1), ('rely', 1), ('creative', 1), ('suite', 1), ('deliver', 1), ('innovative', 1), ('idea', 1), ('print', 1), ('web', 1), ('mobile', 1), ('c', 1), ('dummy', 1), ('help', 1), ('beef', 1), ('skill', 1), ('latest', 1)]
[('architectural', 2), ('design', 2), ('comprehensive', 1), ('tutorial', 1), ('reference', 1), ('exclusively', 1), ('devoted', 1), ('autodesk', 1), ('robust', 1), ('visualization', 1), ('software', 1), ('d', 1), ('max', 1), ('powerful', 1), ('real', 1), ('time', 1), ('modeling', 1), ('animation', 1), ('tool', 1)]
[('scrivener', 2), ('matter', 1), ('want', 1), ('write', 1), ('make', 1), ('easier', 1), ('whether', 1), ('planner', 1), ('seat', 1), ('pant', 1), ('writer', 1), ('something', 1), ('provides', 1), ('tool', 1), ('every', 1), ('stage', 1)]
[('data', 2), ('technology', 2), ('father', 1), ('warehousing', 1), ('incorporates', 1), ('latest', 1), ('blueprint', 1), ('integrated', 1), ('decision', 1), ('support', 1), ('system', 1), ('today', 1), ('corporate', 1), ('warehouse', 1), ('manager', 1), ('required', 1), ('make', 1), ('small', 1), ('army', 1), ('work', 1), ('together', 1)]
[('sharing', 2), ('cwm', 2), ('standard', 2), ('official', 1), ('guide', 1), ('programming', 1), ('revolutionarydata', 1), ('technology', 1), ('common', 1), ('warehouse', 1), ('metamodel', 1), ('new', 1), ('omg', 1), ('thatmakes', 1), ('data', 1), ('seamless', 1), ('developmentteam', 1), ('provides', 1), ('developer', 1), ('complete', 1)]
[('oracle', 3), ('performance', 2), ('geoff', 1), ('ingram', 1), ('met', 1), ('challenge', 1), ('presenting', 1), ('complex', 1), ('process', 1), ('managing', 1), ('book', 1), ('support', 1), ('every', 1), ('technical', 1), ('person', 1), ('looking', 1), ('resolve', 1), ('issue', 1), ('aki', 1), ('ratner', 1), ('president', 1), ('precise', 1), ('software', 1)]
[('common', 2), ('warehouse', 2), ('written', 1), ('author', 1), ('metamodel', 1), ('cwm', 1), ('specification', 1), ('book', 1), ('official', 1), ('authoritative', 1), ('developer', 1), ('guide', 1), ('provides', 1), ('comprehensive', 1), ('look', 1), ('develop', 1), ('database', 1), ('data', 1), ('application', 1), ('using', 1)]
[('uml', 3), ('modeling', 2), ('gain', 1), ('skill', 1), ('effectively', 1), ('plan', 1), ('software', 1), ('application', 1), ('system', 1), ('using', 1), ('latest', 1), ('version', 1), ('represents', 1), ('significant', 1), ('update', 1), ('specification', 1), ('providing', 1), ('robust', 1), ('mechanism', 1), ('workflow', 1), ('action', 1), ('making', 1), ('language', 1), ('executable', 1), ('second', 1), ('edition', 1), ('bestselling', 1), ('book', 1), ('provides', 1)]
[('html', 2), ('show', 1), ('web', 1), ('developer', 1), ('make', 1), ('transition', 1), ('xhtml', 1), ('xml', 1), ('based', 1), ('reformulation', 1), ('offer', 1), ('greater', 1), ('design', 1), ('flexibility', 1), ('demonstrates', 1), ('work', 1), ('cs', 1), ('cascading', 1), ('style', 1), ('sheet', 1), ('supported', 1), ('ninety', 1), ('percent', 1), ('browser', 1)]
[('essential', 2), ('concurrent', 2), ('programming', 2), ('master', 1), ('including', 1), ('testing', 1), ('debugging', 1), ('textbook', 1), ('examines', 1), ('language', 1), ('library', 1), ('multithreaded', 1), ('reader', 1), ('learn', 1), ('create', 1), ('thread', 1), ('java', 1), ('develop', 1)]
[('design', 3), ('adobe', 2), ('creative', 2), ('software', 1), ('always', 1), ('highly', 1), ('respected', 1), ('development', 1), ('program', 1), ('allow', 1), ('produce', 1), ('amazing', 1), ('creation', 1), ('ease', 1), ('release', 1), ('suite', 1), ('wide', 1), ('range', 1)]
[('install', 2), ('suse', 2), ('linux', 2), ('take', 1), ('advantage', 1), ('cool', 1), ('new', 1), ('tool', 1), ('use', 1), ('openoffice', 1), ('org', 1), ('go', 1), ('online', 1), ('firefox', 1), ('set', 1), ('wireless', 1), ('lan', 1), ('gaining', 1), ('popularity', 1), ('everywhere', 1), ('soon', 1), ('see', 1), ('friendly', 1), ('guide', 1), ('help', 1)]
[('updated', 2), ('programming', 2), ('java', 2), ('bestseller', 1), ('cover', 1), ('essential', 1), ('newest', 1), ('version', 1), ('popular', 1), ('platform', 1), ('independent', 1), ('object', 1), ('oriented', 1), ('language', 1), ('material', 1), ('fully', 1), ('focus', 1), ('new', 1), ('sdk', 1), ('addressing', 1), ('need', 1)]
[('market', 2), ('quicken', 1), ('personal', 1), ('finance', 1), ('software', 1), ('greater', 1), ('percent', 1), ('retail', 1), ('share', 1), ('million', 1), ('active', 1), ('user', 1), ('book', 1), ('feature', 1), ('eight', 1), ('minibooks', 1), ('comprising', 1), ('nearly', 1), ('page', 1), ('information', 1), ('need', 1)]
[('photoshop', 2), ('cad', 2), ('drawing', 2), ('autocad', 2), ('architect', 1), ('looking', 1), ('look', 1), ('enhancing', 1), ('killer', 1), ('book', 1), ('george', 1), ('omura', 1), ('author', 1), ('mastering', 1), ('lt', 1), ('bring', 1), ('life', 1), ('using', 1)]
[('pc', 2), ('add', 2), ('cover', 1), ('upgrade', 1), ('gaming', 1), ('digital', 1), ('video', 1), ('entertainment', 1), ('transform', 1), ('glitch', 1), ('free', 1), ('turbocharged', 1), ('multimedia', 1), ('machine', 1), ('want', 1), ('punch', 1), ('handy', 1), ('reference', 1), ('help', 1), ('power', 1), ('old', 1), ('computer', 1), ('easy', 1), ('step', 1), ('show', 1)]
[('based', 2), ('symbian', 2), ('author', 1), ('experience', 1), ('developing', 1), ('teaching', 1), ('o', 1), ('practical', 1), ('guide', 1), ('perfect', 1), ('programmer', 1), ('provides', 1), ('series', 1), ('example', 1), ('scenario', 1), ('show', 1), ('develop', 1), ('application', 1), ('exercise', 1), ('walk', 1), ('reader', 1)]
[('data', 2), ('modeling', 2), ('purpose', 1), ('book', 1), ('provide', 1), ('practical', 1), ('approach', 1), ('professional', 1), ('acquire', 1), ('necessary', 1), ('knowledge', 1), ('expertise', 1), ('function', 1), ('effectively', 1), ('begin', 1), ('overview', 1), ('basic', 1), ('concept', 1), ('introduces', 1)]
[('book', 2), ('symbian', 2), ('written', 2), ('richard', 1), ('harrison', 1), ('existing', 1), ('bestseller', 1), ('press', 1), ('portfolio', 1), ('latest', 1), ('co', 1), ('mark', 1), ('shackman', 1), ('successor', 1), ('o', 1), ('mobile', 1), ('phone', 1), ('volume', 1), ('style', 1)]
[('ip', 3), ('multicast', 2), ('application', 2), ('clear', 1), ('picture', 1), ('delivering', 1), ('commercial', 1), ('high', 1), ('quality', 1), ('video', 1), ('service', 1), ('book', 1), ('provides', 1), ('concise', 1), ('guide', 1), ('current', 1), ('technology', 1), ('focus', 1), ('based', 1), ('television', 1), ('iptv', 1), ('digital', 1)]
[('process', 2), ('information', 2), ('discover', 1), ('discovery', 1), ('put', 1), ('good', 1), ('practice', 1), ('place', 1), ('electronic', 1), ('involved', 1), ('lawsuit', 1), ('requires', 1), ('completely', 1), ('different', 1), ('management', 1), ('archiving', 1), ('paper', 1), ('recent', 1), ('change', 1), ('federal', 1), ('rule', 1)]
[('excel', 3), ('formula', 2), ('dig', 1), ('function', 1), ('build', 1), ('skill', 1), ('whether', 1), ('beginner', 1), ('veteran', 1), ('friendly', 1), ('guide', 1), ('provides', 1), ('fundamental', 1), ('technique', 1), ('help', 1), ('create', 1), ('edit', 1), ('format', 1), ('print', 1), ('spreadsheet', 1), ('start', 1), ('scratch', 1), ('quickly', 1), ('progress', 1), ('manipulating', 1), ('data', 1), ('using', 1), ('extensive', 1)]
[('life', 4), ('artificial', 2), ('cyberfeminism', 1), ('examines', 1), ('construction', 1), ('manipulation', 1), ('definition', 1), ('contemporary', 1), ('technoscientific', 1), ('culture', 1), ('take', 1), ('critical', 1), ('political', 1), ('view', 1), ('concept', 1), ('information', 1), ('tracing', 1), ('new', 1), ('biology', 1), ('discourse', 1), ('genomics', 1), ('changing', 1), ('discipline', 1)]
[('religious', 2), ('worship', 2), ('twenty', 1), ('first', 1), ('century', 1), ('life', 1), ('increasingly', 1), ('moving', 1), ('church', 1), ('mosque', 1), ('temple', 1), ('onto', 1), ('internet', 1), ('today', 1), ('anyone', 1), ('go', 1), ('online', 1), ('seek', 1), ('new', 1), ('form', 1), ('expression', 1), ('without', 1), ('encountering', 1), ('physical', 1), ('place', 1), ('ordained', 1), ('teacher', 1), ('priest', 1), ('digital', 1), ('age', 1), ('offer', 1), ('virtual', 1), ('cyber', 1), ('prayer', 1)]
[('exam', 3), ('study', 2), ('comptia', 2), ('highly', 1), ('effective', 1), ('system', 1), ('fully', 1), ('updated', 1), ('version', 1), ('hundred', 1), ('accurate', 1), ('practice', 1), ('question', 1), ('hand', 1), ('exercise', 1), ('certification', 1), ('guide', 1), ('tenth', 1), ('edition', 1), ('teach', 1), ('need', 1), ('know', 1), ('show', 1), ('prepare', 1), ('challenging', 1)]
[('web', 2), ('tool', 2), ('step', 2), ('covering', 1), ('latest', 1), ('version', 1), ('state', 1), ('art', 1), ('design', 1), ('guide', 1), ('show', 1), ('beginning', 1), ('intermediate', 1), ('user', 1), ('create', 1), ('maintain', 1), ('striking', 1), ('site', 1), ('dreamweaver', 1), ('reader', 1), ('learn', 1), ('use', 1), ('component', 1), ('including', 1), ('visual', 1), ('layout', 1), ('application', 1), ('development', 1), ('feature', 1), ('code', 1), ('editing', 1), ('capability', 1)]
[('internet', 4), ('millennium', 2), ('master', 1), ('universe', 1), ('prepare', 1), ('complete', 1), ('reference', 1), ('edition', 1), ('margaret', 1), ('levine', 1), ('young', 1), ('netizen', 1), ('bible', 1), ('put', 1), ('charge', 1), ('everything', 1), ('offer', 1), ('basic', 1), ('mail', 1), ('hyper', 1), ('secure', 1), ('web', 1), ('commerce', 1), ('show', 1), ('netscape', 1), ('navigator', 1)]
[('official', 1), ('guide', 1), ('quickbooks', 1)]
[('ebay', 5), ('seller', 3), ('secret', 2), ('high', 2), ('volume', 2), ('successful', 2), ('profit', 1), ('sale', 1), ('millionaire', 1), ('reveals', 1), ('inside', 1), ('story', 1), ('behind', 1), ('including', 1), ('professional', 1), ('association', 1), ('together', 1), ('make', 1), ('billion', 1), ('annually', 1), ('first', 1), ('time', 1)]
[('business', 2), ('started', 1), ('ease', 1), ('quickly', 1), ('boost', 1), ('sale', 1), ('productivity', 1), ('help', 1), ('hand', 1), ('guide', 1), ('everything', 1), ('microsoft', 1), ('office', 1), ('live', 1), ('explains', 1), ('harness', 1), ('service', 1), ('create', 1), ('maintain', 1), ('dynamic', 1), ('online', 1), ('presence', 1), ('learn', 1), ('set', 1), ('commerce', 1), ('driven', 1), ('website', 1), ('take', 1), ('advantage', 1)]
[('step', 2), ('color', 2), ('quickbooks', 2), ('business', 2), ('full', 1), ('graphic', 1), ('started', 1), ('using', 1), ('right', 1), ('away', 1), ('quickstep', 1), ('way', 1), ('screenshots', 1), ('clear', 1), ('instruction', 1), ('show', 1), ('use', 1), ('new', 1), ('improved', 1), ('feature', 1), ('available', 1), ('powerful', 1), ('small', 1), ('financial', 1), ('software', 1), ('follow', 1), ('along', 1), ('learn', 1), ('customize', 1), ('set', 1), ('account', 1)]
[('ajax', 4), ('web', 3), ('guide', 2), ('development', 2), ('definitive', 1), ('application', 1), ('evolve', 1), ('click', 1), ('wait', 1), ('programming', 1), ('pattern', 1), ('latest', 1), ('paradigm', 1), ('using', 1), ('comprehensive', 1), ('written', 1), ('expert', 1), ('thomas', 1), ('powell', 1), ('book', 1), ('lay', 1), ('every', 1), ('feature', 1), ('alongside', 1), ('detailed', 1), ('explanation', 1), ('real', 1), ('world', 1), ('code', 1), ('example', 1)]
[('pl', 3), ('sql', 3), ('feature', 2), ('application', 2), ('oracle', 2), ('programming', 2), ('design', 1), ('rich', 1), ('deliver', 1), ('dynamic', 1), ('client', 1), ('server', 1), ('expert', 1), ('guidance', 1), ('professional', 1), ('full', 1), ('coverage', 1), ('latest', 1), ('tool', 1), ('database', 1), ('lay', 1), ('topic', 1), ('alongside', 1), ('detailed', 1), ('explanation', 1), ('cut', 1), ('paste', 1), ('syntax', 1), ('example', 1), ('real', 1), ('world', 1)]
[('bi', 2), ('performancepoint', 2), ('deliver', 1), ('solution', 1), ('microsoft', 1), ('office', 1), ('server', 1), ('maximize', 1), ('powerful', 1), ('tool', 1), ('available', 1), ('help', 1), ('practical', 1), ('guide', 1), ('learn', 1), ('collect', 1), ('store', 1), ('data', 1), ('monitor', 1), ('progress', 1), ('analyze', 1), ('performance', 1), ('distribute', 1), ('dynamic', 1), ('report', 1), ('create', 1), ('maintainable', 1), ('project', 1), ('forecast', 1), ('business', 1)]
[('iphone', 2), ('turn', 2), ('learning', 1), ('use', 1), ('powerful', 1), ('capability', 1), ('filled', 1), ('tip', 1), ('trick', 1), ('shortcut', 1), ('book', 1), ('show', 1), ('set', 1), ('make', 1), ('call', 1), ('manage', 1), ('voicemail', 1), ('load', 1), ('contact', 1), ('beginning', 1), ('learn', 1), ('send', 1), ('receive', 1), ('email', 1), ('look', 1), ('direction', 1), ('listen', 1)]
[('web', 3), ('lock', 1), ('next', 1), ('generation', 1), ('service', 1), ('book', 1), ('concisely', 1), ('identifies', 1), ('type', 1), ('attack', 1), ('faced', 1), ('daily', 1), ('site', 1), ('author', 1), ('give', 1), ('solid', 1), ('practical', 1), ('advice', 1), ('identify', 1), ('mitigate', 1), ('threat', 1), ('max', 1), ('kelly', 1), ('cissp', 1), ('cipp', 1), ('cfce', 1), ('senior', 1), ('director', 1), ('security', 1), ('facebook', 1), ('protect', 1), ('architecture', 1)]
[('mdx', 4), ('use', 3), ('query', 3), ('multi', 2), ('dimensional', 2), ('business', 2), ('intelligence', 2), ('ready', 1), ('powerful', 1), ('hand', 1), ('guide', 1), ('show', 1), ('expression', 1), ('extract', 1), ('cube', 1), ('practical', 1), ('contains', 1), ('downloadable', 1), ('applied', 1), ('across', 1), ('wide', 1), ('variety', 1), ('related', 1), ('problem', 1)]
[('dax', 2), ('formula', 2), ('ready', 1), ('use', 1), ('powerful', 1), ('develop', 1), ('effective', 1), ('business', 1), ('intelligence', 1), ('bi', 1), ('solution', 1), ('drive', 1), ('faster', 1), ('better', 1), ('decision', 1), ('making', 1), ('across', 1), ('enterprise', 1), ('help', 1), ('experienced', 1), ('database', 1), ('consultant', 1), ('trainer', 1), ('clear', 1), ('explanation', 1), ('screenshots', 1), ('example', 1), ('practical', 1), ('powerpivot', 1), ('excel', 1), ('show', 1)]
[('study', 2), ('cover', 2), ('certification', 2), ('best', 1), ('fully', 1), ('integrated', 1), ('system', 1), ('available', 1), ('global', 1), ('standard', 1), ('hundred', 1), ('practice', 1), ('question', 1), ('hand', 1), ('exercise', 1), ('ic', 1), ('guide', 1), ('need', 1), ('know', 1), ('show', 1), ('prepare', 1), ('internet', 1), ('computing', 1), ('core', 1), ('exam', 1), ('complete', 1), ('coverage', 1), ('every', 1), ('official', 1), ('objective', 1)]
[('excel', 3), ('vba', 3), ('make', 1), ('work', 1), ('harder', 1), ('faster', 1), ('unique', 1), ('book', 1), ('present', 1), ('sample', 1), ('code', 1), ('twenty', 1), ('practical', 1), ('high', 1), ('powered', 1), ('macro', 1), ('application', 1), ('essential', 1), ('explore', 1), ('way', 1), ('power', 1), ('automate', 1), ('task', 1), ('convert', 1), ('number', 1), ('label', 1), ('transpose', 1), ('cell', 1), ('add', 1), ('formula', 1), ('detail', 1), ('globally', 1), ('change', 1), ('value', 1)]
[('exam', 3), ('ct', 2), ('infocomm', 2), ('certified', 2), ('technology', 2), ('specialist', 2), ('complete', 1), ('date', 1), ('study', 1), ('system', 1), ('published', 1), ('international', 1), ('guide', 1), ('second', 1), ('edition', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('objective', 1), ('latest', 1), ('release', 1), ('leading', 1), ('internationally', 1), ('recognized', 1), ('audiovisual', 1), ('av', 1)]
[('official', 2), ('guide', 2), ('coreldraw', 2), ('new', 2), ('graphic', 2), ('fully', 1), ('updated', 1), ('throughout', 1), ('cover', 1), ('feature', 1), ('latest', 1), ('release', 1), ('stop', 1), ('tutorial', 1), ('reference', 1), ('learning', 1), ('create', 1), ('gorgeous', 1), ('variety', 1), ('print', 1), ('web', 1), ('us', 1), ('veteran', 1), ('designer', 1), ('author', 1), ('gary', 1), ('bouton', 1), ('show', 1), ('use', 1)]
[('oracle', 3), ('database', 2), ('master', 1), ('cutting', 1), ('edge', 1), ('feature', 1), ('maintain', 1), ('scalable', 1), ('highly', 1), ('available', 1), ('enterprise', 1), ('platform', 1), ('reduce', 1), ('complexity', 1), ('leveraging', 1), ('powerful', 1), ('new', 1), ('tool', 1), ('cloud', 1), ('enhancement', 1), ('authoritative', 1), ('press', 1), ('guide', 1), ('offer', 1), ('complete', 1), ('coverage', 1), ('installation', 1), ('configuration', 1), ('tuning', 1), ('administration', 1)]
[('test', 2), ('certification', 2), ('professional', 2), ('exam', 2), ('real', 1), ('first', 1), ('based', 1), ('hr', 1), ('institute', 1), ('senior', 1), ('human', 1), ('resource', 1), ('body', 1), ('knowledge', 1), ('practical', 1), ('guide', 1), ('contains', 1), ('realistic', 1), ('practice', 1), ('question', 1), ('prepare', 1), ('challenging', 1), ('aid', 1), ('understanding', 1), ('material', 1), ('depth', 1)]
[('oracle', 4), ('soa', 2), ('suite', 2), ('master', 1), ('design', 1), ('implement', 1), ('manage', 1), ('maintain', 1), ('highly', 1), ('flexible', 1), ('service', 1), ('oriented', 1), ('computing', 1), ('infrastructure', 1), ('across', 1), ('enterprise', 1), ('using', 1), ('detailed', 1), ('information', 1), ('press', 1), ('guide', 1), ('written', 1), ('ace', 1), ('director', 1), ('handbook', 1), ('us', 1), ('start', 1), ('finish', 1), ('case', 1), ('study', 1), ('illustrate', 1), ('concept', 1)]
[('easy', 2), ('step', 2), ('development', 2), ('essential', 1), ('skill', 1), ('made', 1), ('beginner', 1), ('guide', 1), ('offer', 1), ('approach', 1), ('learning', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('net', 1), ('framework', 1), ('preparing', 1), ('data', 1), ('driven', 1), ('follow', 1), ('example', 1), ('included', 1), ('book', 1), ('cover', 1), ('visual', 1), ('studio', 1), ('debugging', 1), ('collection', 1), ('advanced', 1)]
[('comptia', 4), ('exam', 4), ('network', 2), ('mike', 1), ('meyers', 1), ('name', 1), ('training', 1), ('preparation', 1), ('thorough', 1), ('revision', 1), ('bestselling', 1), ('guide', 1), ('updated', 1), ('cover', 1), ('release', 1), ('complete', 1), ('coverage', 1), ('objective', 1), ('inside', 1), ('comprehensive', 1), ('resource', 1), ('written', 1), ('leading', 1), ('expert', 1), ('certification', 1)]
[('exam', 3), ('question', 3), ('coverage', 2), ('cissp', 2), ('realistic', 2), ('practice', 2), ('complete', 1), ('date', 1), ('including', 1), ('fully', 1), ('updated', 1), ('featuring', 1), ('new', 1), ('format', 1), ('self', 1), ('study', 1), ('tool', 1), ('contains', 1), ('offer', 1), ('common', 1), ('body', 1), ('knowledge', 1), ('depth', 1), ('explanation', 1), ('correct', 1)]
[('cocoa', 2), ('programming', 1), ('environment', 1), ('apple', 1), ('powerful', 1), ('set', 1), ('clean', 1), ('object', 1), ('oriented', 1), ('apis', 1), ('increasingly', 1), ('becoming', 1), ('basis', 1), ('almost', 1), ('contemporary', 1), ('mac', 1), ('o', 1), ('development', 1), ('long', 1), ('history', 1), ('constant', 1), ('refinement', 1), ('improvement', 1)]
[('support', 3), ('macos', 2), ('professional', 2), ('official', 1), ('book', 1), ('essential', 1), ('course', 1), ('use', 1), ('prepare', 1), ('apple', 1), ('certified', 1), ('acsp', 1), ('exam', 1), ('top', 1), ('notch', 1), ('primer', 1), ('anyone', 1), ('need', 1), ('troubleshoot', 1), ('optimise', 1), ('catalina', 1), ('technician', 1), ('help', 1), ('desk', 1), ('specialist', 1), ('ardent', 1), ('mac', 1), ('user', 1)]
[('coreldraw', 2), ('step', 2), ('window', 1), ('visual', 1), ('quickstart', 1), ('guide', 1), ('offer', 1), ('instruction', 1), ('covering', 1), ('basic', 1), ('including', 1), ('newest', 1), ('feature', 1), ('page', 1), ('document', 1), ('set', 1), ('text', 1), ('special', 1), ('effect', 1), ('object', 1), ('arrangement', 1), ('symbol', 1), ('clip', 1), ('art', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('virus', 3), ('defense', 2), ('computer', 2), ('symantec', 1), ('chief', 1), ('antivirus', 1), ('researcher', 1), ('written', 1), ('definitive', 1), ('guide', 1), ('contemporary', 1), ('threat', 1), ('technique', 1), ('analysis', 1), ('tool', 1), ('unlike', 1), ('book', 1), ('art', 1), ('research', 1), ('reference', 1)]
[('step', 2), ('want', 1), ('learn', 1), ('build', 1), ('web', 1), ('site', 1), ('fast', 1), ('best', 1), ('selling', 1), ('guide', 1), ('visual', 1), ('format', 1), ('task', 1), ('based', 1), ('instruction', 1), ('running', 1), ('html', 1), ('cs', 1), ('time', 1), ('seventh', 1), ('edition', 1), ('major', 1), ('revision', 1), ('approximately', 1)]
[('exam', 2), ('prepare', 1), ('microsoft', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('developing', 1), ('window', 1), ('azure', 1), ('web', 1), ('service', 1), ('designed', 1), ('experienced', 1), ('developer', 1), ('ready', 1), ('advance', 1), ('status', 1), ('ref', 1), ('focus', 1), ('critical', 1), ('thinking', 1)]
[('help', 2), ('practical', 2), ('project', 1), ('learn', 1), ('python', 1), ('hard', 1), ('way', 1), ('reader', 1), ('build', 1), ('key', 1), ('skill', 1), ('combining', 1), ('demonstration', 1), ('started', 1), ('challenge', 1), ('achieve', 1), ('even', 1), ('deeper', 1), ('understanding', 1), ('shaw', 1), ('organises', 1), ('programming', 1), ('course', 1), ('five', 1), ('section', 1), ('working', 1), ('command', 1), ('organising', 1), ('using', 1), ('data', 1), ('applying', 1), ('algorithm', 1)]
[('io', 4), ('nbsp', 2), ('big', 2), ('nerd', 2), ('updated', 1), ('xcode', 1), ('swift', 1), ('programming', 1), ('ranch', 1), ('guide', 1), ('lead', 1), ('essential', 1), ('concept', 1), ('tool', 1), ('technique', 1), ('developing', 1), ('application', 1), ('completing', 1), ('book', 1), ('know', 1), ('confidence', 1), ('need', 1), ('tackle', 1), ('project', 1), ('based', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('best', 1), ('selling', 1), ('guide', 1), ('author', 1), ('elaine', 1), ('weinmann', 1), ('peter', 1), ('lourekas', 1), ('go', 1), ('tutorial', 1), ('reference', 1), ('book', 1), ('photography', 1), ('design', 1), ('professional', 1), ('textbook', 1), ('choice', 1), ('college', 1), ('classroom', 1), ('decade', 1), ('edition', 1), ('includes', 1)]
[('illustrator', 2), ('adobe', 1), ('cc', 1), ('popular', 1), ('vector', 1), ('illustration', 1), ('application', 1), ('available', 1), ('print', 1), ('screen', 1), ('designer', 1), ('use', 1), ('create', 1), ('powerful', 1), ('artwork', 1), ('composed', 1), ('shape', 1), ('color', 1), ('highly', 1), ('styled', 1), ('text', 1), ('necessary', 1), ('tool', 1), ('anyone', 1)]
[('music', 2), ('completely', 1), ('revised', 1), ('final', 1), ('cut', 1), ('pro', 1), ('featuring', 1), ('new', 1), ('footage', 1), ('tnt', 1), ('hit', 1), ('show', 1), ('leverage', 1), ('international', 1), ('creation', 1), ('event', 1), ('playing', 1), ('change', 1), ('peace', 1), ('best', 1), ('selling', 1), ('apple', 1), ('certified', 1), ('guide', 1), ('provides', 1), ('strong', 1), ('foundation', 1)]
[('io', 3), ('updated', 1), ('expanded', 1), ('cover', 1), ('xcode', 1), ('programming', 1), ('big', 1), ('nerd', 1), ('ranch', 1), ('guide', 1), ('lead', 1), ('essential', 1), ('concept', 1), ('tool', 1), ('technique', 1), ('developing', 1), ('application', 1), ('completing', 1), ('book', 1), ('know', 1)]
[('net', 3), ('dig', 1), ('deep', 1), ('master', 1), ('intricacy', 1), ('common', 1), ('language', 1), ('runtime', 1), ('development', 1), ('led', 1), ('programming', 1), ('expert', 1), ('jeffrey', 1), ('richter', 1), ('longtime', 1), ('consultant', 1), ('microsoft', 1), ('team', 1), ('gain', 1), ('pragmatic', 1), ('insight', 1), ('building', 1), ('robust', 1), ('reliable', 1), ('responsive', 1), ('apps', 1), ('component', 1), ('fully', 1), ('updated', 1), ('framework', 1), ('visual', 1), ('studio', 1)]
[('microsoft', 2), ('office', 2), ('exam', 2), ('objective', 2), ('demonstrate', 1), ('expertise', 1), ('designed', 1), ('help', 1), ('practice', 1), ('prepare', 1), ('word', 1), ('specialist', 1), ('mo', 1), ('study', 1), ('guide', 1), ('feature', 1), ('full', 1), ('coverage', 1)]
[('book', 1), ('available', 1), ('adobe', 1), ('reader', 1), ('ebook', 1), ('publisher', 1), ('website', 1), ('nbsp', 1), ('newriders', 1), ('community', 1), ('part', 1), ('successful', 1), ('web', 1), ('site', 1), ('way', 1), ('another', 1), ('look', 1), ('different', 1), ('stage', 1), ('understood', 1), ('philosophy', 1)]
[('project', 2), ('new', 2), ('absolute', 1), ('beginner', 1), ('guide', 1), ('fastest', 1), ('way', 1), ('student', 1), ('comfortable', 1), ('productive', 1), ('newest', 1), ('version', 1), ('use', 1), ('powerful', 1), ('tool', 1), ('extend', 1), ('web', 1), ('cloud', 1), ('latest', 1), ('mobile', 1), ('device', 1), ('user', 1), ('used', 1), ('previous', 1), ('edition', 1), ('nbsp', 1), ('practical', 1), ('approachable', 1), ('book', 1)]
[('itunes', 3), ('ipod', 2), ('essential', 1), ('companion', 1), ('nano', 1), ('touch', 1), ('classic', 1), ('shuffle', 1), ('amp', 1), ('pocket', 1), ('guide', 1), ('fourth', 1), ('edition', 1), ('steer', 1), ('import', 1), ('song', 1), ('assemble', 1), ('playlist', 1), ('using', 1)]
[('evernote', 3), ('nbsp', 3), ('step', 2), ('help', 2), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1), ('take', 1), ('full', 1), ('advantage', 1)]
[('adobe', 2), ('photoshop', 2), ('lightroom', 2), ('amazing', 1), ('dslr', 1), ('shot', 1), ('need', 1), ('book', 1), ('go', 1), ('beyond', 1), ('software', 1), ('manual', 1), ('help', 1), ('organize', 1), ('process', 1), ('image', 1), ('using', 1), ('including', 1), ('recently', 1), ('announced', 1)]
[('database', 3), ('dynamic', 2), ('driven', 2), ('web', 2), ('development', 2), ('quickly', 1), ('master', 1), ('experience', 1), ('necessary', 1), ('even', 1), ('completely', 1), ('new', 1), ('php', 1), ('mysql', 1), ('book', 1), ('guide', 1), ('every', 1), ('step', 1), ('building', 1), ('powerful', 1)]
[('guide', 3), ('visual', 2), ('quickstart', 2), ('designed', 1), ('attractive', 1), ('tutorial', 1), ('reference', 1), ('format', 1), ('quickest', 1), ('easiest', 1), ('thorough', 1), ('way', 1), ('learn', 1), ('application', 1), ('task', 1), ('technology', 1), ('smart', 1), ('choice', 1)]
[('year', 1), ('million', 1), ('casual', 1), ('computer', 1), ('user', 1), ('buy', 1), ('new', 1), ('window', 1), ('mobile', 1), ('device', 1), ('notebook', 1), ('desktop', 1), ('pc', 1), ('want', 1), ('know', 1), ('find', 1), ('way', 1), ('around', 1), ('comfortable', 1), ('job', 1), ('done', 1), ('without', 1), ('jargon', 1), ('complexity', 1), ('hassle', 1)]
[('almost', 1), ('decade', 1), ('best', 1), ('selling', 1), ('visual', 1), ('quickstart', 1), ('guide', 1), ('elaine', 1), ('weinmann', 1), ('peter', 1), ('lourekas', 1), ('textbook', 1), ('choice', 1), ('classroom', 1), ('go', 1), ('tutorial', 1), ('reference', 1), ('art', 1), ('design', 1), ('professional', 1), ('edition', 1), ('includes', 1)]
[('macromedia', 2), ('guide', 2), ('even', 1), ('never', 1), ('used', 1), ('dreamweaver', 1), ('visual', 1), ('quickstart', 1), ('running', 1), ('popular', 1), ('web', 1), ('authoring', 1), ('program', 1), ('time', 1), ('completely', 1), ('updated', 1), ('edition', 1), ('best', 1), ('selling', 1)]
[('want', 2), ('everything', 2), ('day', 1), ('nobody', 1), ('really', 1), ('learn', 1), ('hardware', 1), ('software', 1), ('even', 1), ('time', 1), ('endlessly', 1), ('tinker', 1), ('play', 1), ('figure', 1), ('book', 1), ('quickly', 1), ('show', 1)]
[('chained', 2), ('exploit', 2), ('complete', 1), ('guide', 1), ('today', 1), ('hard', 1), ('defend', 1), ('attack', 1), ('performing', 1), ('preventing', 1), ('nbsp', 1), ('nowadays', 1), ('rare', 1), ('malicious', 1), ('hacker', 1), ('rely', 1), ('tool', 1), ('instead', 1), ('use', 1), ('integrate', 1), ('multiple', 1)]
[('drupal', 4), ('problem', 2), ('succeed', 1), ('need', 1), ('book', 1), ('dry', 1), ('buytaert', 1), ('founder', 1), ('project', 1), ('lead', 1), ('nbsp', 1), ('face', 1), ('common', 1), ('web', 1), ('relative', 1), ('lack', 1), ('new', 1), ('high', 1), ('quality', 1), ('theme', 1), ('front', 1), ('end', 1), ('tackle', 1), ('directly', 1)]
[('print', 2), ('contrary', 1), ('popular', 1), ('belief', 1), ('dead', 1), ('interest', 1), ('online', 1), ('publishing', 1), ('st', 1), ('century', 1), ('easy', 1), ('lose', 1), ('sight', 1), ('fact', 1), ('information', 1), ('still', 1), ('widely', 1), ('disseminated', 1), ('good', 1), ('old', 1), ('medium', 1), ('advent', 1)]
[('demand', 1), ('multiplayer', 1), ('game', 1), ('virtual', 1), ('world', 1), ('exploded', 1), ('last', 1), ('year', 1), ('company', 1), ('want', 1), ('site', 1), ('stickiness', 1), ('social', 1), ('networking', 1), ('developer', 1), ('tremendous', 1), ('interest', 1), ('exploring', 1), ('niche', 1), ('area', 1)]
[('corba', 4), ('reference', 2), ('contains', 2), ('pure', 1), ('premium', 1), ('code', 1), ('intensive', 1), ('professional', 1), ('developer', 1), ('focus', 1), ('core', 1), ('specification', 1), ('conceptual', 1), ('overview', 1), ('technique', 1), ('programming', 1), ('thousand', 1)]
[('facebook', 2), ('world', 2), ('million', 1), ('active', 1), ('user', 1), ('social', 1), ('networking', 1), ('platform', 1), ('developing', 1), ('successful', 1), ('application', 1), ('present', 1), ('unique', 1), ('challenge', 1), ('technical', 1), ('nontechnical', 1), ('experienced', 1)]
[('app', 3), ('inventor', 3), ('wi', 1), ('gt', 1), ('android', 1), ('apps', 1), ('provides', 1), ('hand', 1), ('walkthroughs', 1), ('cover', 1), ('every', 1), ('area', 1), ('development', 1), ('including', 1), ('google', 1), ('mit', 1), ('version', 1), ('nbsp', 1), ('kloss', 1), ('begin', 1), ('absolute', 1), ('basic', 1), ('program', 1), ('structure', 1)]
[('system', 3), ('center', 3), ('microsoft', 2), ('definitive', 1), ('real', 1), ('world', 1), ('guide', 1), ('newest', 1), ('powerful', 1), ('version', 1), ('authored', 1), ('consultant', 1), ('deployed', 1), ('hundred', 1), ('enterprise', 1), ('innovative', 1), ('smaller', 1)]
[('use', 2), ('excel', 2), ('radically', 1), ('revamped', 1), ('charting', 1), ('graphing', 1), ('tool', 1), ('communicate', 1), ('clearly', 1), ('powerfully', 1), ('quickly', 1), ('drive', 1), ('message', 1), ('home', 1), ('decision', 1), ('action', 1), ('looking', 1), ('book', 1), ('reveals', 1), ('data', 1), ('visualisation', 1), ('technique', 1), ('find', 1), ('anywhere', 1), ('show', 1), ('create', 1), ('designer', 1), ('quality', 1)]
[('android', 3), ('apps', 2), ('build', 1), ('stunningly', 1), ('attractive', 1), ('functional', 1), ('intuitive', 1), ('today', 1), ('crowded', 1), ('marketplace', 1), ('important', 1), ('differentiate', 1), ('design', 1), ('best', 1), ('way', 1), ('leading', 1), ('app', 1)]
[('php', 3), ('step', 2), ('reader', 1), ('take', 1), ('skill', 1), ('next', 1), ('level', 1), ('fully', 1), ('revised', 1), ('updated', 1), ('advanced', 1), ('visual', 1), ('quickpro', 1), ('guide', 1), ('third', 1), ('edition', 1), ('filled', 1), ('fourteen', 1), ('chapter', 1), ('content', 1), ('written', 1), ('bestselling', 1), ('author', 1), ('programmer', 1)]
[('nan', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('web', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('million', 1), ('viewer', 1), ('looking', 1), ('source', 1), ('entertainment', 1), ('news', 1), ('high', 1), ('quality', 1)]
[('minute', 2), ('need', 2), ('sam', 1), ('teach', 1), ('facebook', 1), ('second', 1), ('edition', 1), ('offer', 1), ('straightforward', 1), ('practical', 1), ('answer', 1), ('fast', 1), ('result', 1), ('working', 1), ('lesson', 1), ('learn', 1), ('everything', 1), ('know', 1), ('quickly', 1), ('easily', 1), ('speed', 1)]
[('computing', 2), ('longer', 2), ('cloud', 1), ('web', 1), ('based', 1), ('application', 1), ('change', 1), ('way', 1), ('work', 1), ('collaborate', 1), ('line', 1), ('nbsp', 1), ('know', 1), ('changed', 1), ('tied', 1), ('using', 1), ('expensive', 1), ('program', 1), ('stored', 1), ('computer', 1), ('able', 1)]
[('want', 1), ('personal', 1), ('business', 1), ('blog', 1), ('easy', 1), ('simple', 1), ('guide', 1), ('world', 1), ('experienced', 1), ('blogger', 1), ('walk', 1), ('every', 1), ('step', 1), ('getting', 1), ('started', 1), ('building', 1), ('worldwide', 1), ('audience', 1), ('tris', 1), ('hussey', 1), ('cover', 1)]
[('tab', 5), ('galaxy', 4), ('nbsp', 3), ('samsung', 2), ('step', 2), ('cover', 1), ('andgalaxy', 1), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('help', 1), ('run', 1)]
[('step', 2), ('session', 1), ('hour', 1), ('le', 1), ('learn', 1), ('use', 1), ('sql', 1), ('build', 1), ('effective', 1), ('database', 1), ('efficiently', 1), ('retrieve', 1), ('data', 1), ('manage', 1), ('everything', 1), ('performance', 1), ('security', 1), ('using', 1), ('book', 1), ('straightforward', 1), ('approach', 1)]
[('nan', 1)]
[('comprehensive', 1), ('expert', 1), ('guide', 1), ('language', 1), ('programming', 1), ('book', 1), ('classic', 1), ('year', 1), ('remains', 1), ('venerable', 1), ('trusted', 1), ('title', 1), ('world', 1), ('content', 1), ('probably', 1), ('far', 1), ('beyond', 1), ('mark', 1), ('super', 1), ('smart', 1)]
[('best', 1), ('selling', 1), ('guide', 1), ('author', 1), ('elaine', 1), ('weinmann', 1), ('peter', 1), ('lourekas', 1), ('go', 1), ('tutorial', 1), ('reference', 1), ('book', 1), ('photography', 1), ('design', 1), ('professional', 1), ('textbook', 1), ('choice', 1), ('college', 1), ('classroom', 1), ('decade', 1), ('fully', 1), ('updated', 1), ('edition', 1)]
[('adobe', 2), ('c', 2), ('dreamweaver', 2), ('release', 1), ('creative', 1), ('suite', 1), ('solidifies', 1), ('role', 1), ('de', 1), ('facto', 1), ('tool', 1), ('choice', 1), ('anyone', 1), ('designing', 1), ('web', 1), ('visual', 1), ('quickstart', 1), ('guide', 1), ('us', 1), ('combination', 1), ('task', 1), ('based', 1), ('instruction', 1), ('strong', 1), ('visuals', 1), ('teach', 1), ('beginning', 1), ('intermediate', 1), ('user', 1), ('create', 1), ('design', 1), ('publish', 1), ('powerful', 1)]
[('tomcat', 2), ('used', 2), ('servlet', 2), ('engine', 2), ('server', 2), ('jakarta', 1), ('commonly', 1), ('open', 1), ('source', 1), ('today', 1), ('become', 1), ('de', 1), ('facto', 1), ('standard', 1), ('measured', 1), ('powerful', 1), ('flexible', 1), ('stand', 1), ('alone', 1), ('web', 1), ('conjunction', 1), ('another', 1), ('apache', 1), ('ii', 1), ('run', 1), ('servlets', 1), ('jsps', 1), ('mastery', 1)]
[('youtube', 2), ('alan', 2), ('want', 1), ('make', 1), ('splash', 1), ('even', 1), ('go', 1), ('viral', 1), ('come', 1), ('right', 1), ('place', 1), ('book', 1), ('written', 1), ('veteran', 1), ('tuber', 1), ('live', 1), ('art', 1), ('know', 1), ('talking', 1), ('especially', 1), ('lastufka', 1), ('fallofautumndistro', 1), ('subscriber', 1), ('million', 1), ('view', 1), ('co', 1), ('author', 1), ('michael', 1), ('dean', 1), ('show', 1)]
[('visual', 4), ('basic', 4), ('common', 2), ('programmer', 2), ('developer', 2), ('book', 1), ('help', 1), ('solve', 1), ('task', 1), ('working', 1), ('face', 1), ('every', 1), ('day', 1), ('seasoned', 1), ('net', 1), ('beginning', 1), ('seeking', 1), ('simple', 1), ('clear', 1), ('migration', 1), ('path', 1), ('vb', 1), ('cookbook', 1), ('delivers', 1)]
[('rman', 3), ('recovery', 3), ('oracle', 2), ('dba', 2), ('use', 2), ('manager', 2), ('backup', 2), ('pocket', 1), ('reference', 1), ('handy', 1), ('guide', 1), ('intend', 1), ('database', 1), ('relatively', 1), ('new', 1), ('tool', 1), ('many', 1), ('becoming', 1), ('familiar', 1), ('welcome', 1), ('timely', 1), ('book', 1), ('explains', 1), ('clearly', 1), ('concisely', 1), ('common', 1)]
[('service', 3), ('amazon', 2), ('storage', 2), ('building', 1), ('success', 1), ('storefront', 1), ('fulfillment', 1), ('allows', 1), ('business', 1), ('rent', 1), ('computing', 1), ('power', 1), ('data', 1), ('bandwidth', 1), ('vast', 1), ('network', 1), ('platform', 1), ('book', 1), ('demonstrates', 1), ('developer', 1), ('working', 1), ('small', 1), ('mid', 1), ('sized', 1), ('company', 1), ('take', 1), ('advantage', 1), ('web', 1), ('aws', 1), ('simple', 1)]
[('mac', 3), ('window', 2), ('make', 2), ('time', 2), ('giving', 1), ('pause', 1), ('ready', 1), ('leap', 1), ('instead', 1), ('never', 1), ('better', 1), ('switch', 1), ('incomparable', 1), ('guide', 1), ('help', 1), ('smooth', 1), ('transition', 1), ('new', 1), ('york', 1), ('columnist', 1), ('missing', 1), ('manual', 1), ('creator', 1), ('david', 1), ('pogue', 1), ('get', 1), ('past', 1), ('three', 1), ('challenge', 1), ('transferring', 1), ('stuff', 1), ('assembling', 1)]
[('google', 6), ('everyone', 1), ('know', 1), ('let', 1), ('search', 1), ('billion', 1), ('web', 1), ('page', 1), ('realize', 1), ('give', 1), ('hundred', 1), ('cool', 1), ('way', 1), ('organize', 1), ('play', 1), ('information', 1), ('released', 1), ('last', 1), ('edition', 1), ('bestselling', 1), ('book', 1), ('added', 1), ('many', 1), ('new', 1), ('feature', 1), ('service', 1), ('expanding', 1), ('universe', 1), ('earth', 1), ('talk', 1)]
[('language', 4), ('system', 3), ('modeling', 2), ('uml', 2), ('developer', 1), ('used', 1), ('decade', 1), ('specify', 1), ('visualize', 1), ('construct', 1), ('document', 1), ('unified', 1), ('make', 1), ('possible', 1), ('team', 1), ('member', 1), ('collaborate', 1), ('providing', 1), ('common', 1), ('applies', 1), ('multitude', 1), ('different', 1), ('essentially', 1), ('enables', 1)]
[('tcl', 2), ('tk', 2), ('graphical', 2), ('language', 1), ('toolkit', 1), ('simple', 1), ('powerful', 1), ('building', 1), ('block', 1), ('custom', 1), ('application', 1), ('combination', 1), ('increasingly', 1), ('popular', 1), ('let', 1), ('produce', 1), ('sophisticated', 1), ('interface', 1), ('easy', 1), ('command', 1), ('develop', 1), ('change', 1), ('script', 1), ('quickly', 1), ('conveniently', 1), ('tie', 1), ('together', 1), ('existing', 1), ('utility', 1), ('programming', 1)]
[('access', 3), ('part', 1), ('microsoft', 1), ('office', 1), ('suite', 1), ('become', 1), ('industry', 1), ('leading', 1), ('desktop', 1), ('database', 1), ('management', 1), ('program', 1), ('organizing', 1), ('accessing', 1), ('sharing', 1), ('information', 1), ('taking', 1), ('advantage', 1), ('product', 1), ('build', 1), ('increasingly', 1), ('complex', 1), ('application', 1), ('requires', 1), ('something', 1), ('typical', 1), ('book', 1), ('call', 1), ('hack', 1)]
[('window', 2), ('server', 2), ('step', 2), ('replication', 2), ('practical', 1), ('guide', 1), ('exactly', 1), ('need', 1), ('work', 1), ('inside', 1), ('find', 1), ('procedure', 1), ('using', 1), ('major', 1), ('component', 1), ('along', 1), ('discussion', 1), ('complex', 1), ('concept', 1), ('active', 1), ('directory', 1), ('dfs', 1), ('namespaces', 1), ('network', 1), ('access', 1), ('protection', 1), ('core', 1), ('edition', 1)]
[('edition', 2), ('new', 2), ('fast', 1), ('moving', 1), ('world', 1), ('computer', 1), ('thing', 1), ('always', 1), ('changing', 1), ('first', 1), ('strong', 1), ('selling', 1), ('book', 1), ('appeared', 1), ('year', 1), ('ago', 1), ('network', 1), ('security', 1), ('technique', 1), ('tool', 1), ('evolved', 1), ('rapidly', 1), ('meet', 1), ('sophisticated', 1), ('threat', 1), ('pop', 1), ('alarming', 1), ('regularity', 1), ('second', 1), ('offer', 1), ('thoroughly', 1), ('updated', 1), ('hack', 1)]
[('data', 2), ('lifeblood', 2), ('modern', 2), ('storage', 2), ('network', 2), ('business', 1), ('center', 1), ('extremely', 1), ('demanding', 1), ('requirement', 1), ('size', 1), ('speed', 1), ('reliability', 1), ('area', 1), ('sans', 1), ('attached', 1), ('na', 1), ('allow', 1), ('organization', 1), ('manage', 1), ('back', 1), ('huge', 1), ('file', 1), ('system', 1), ('quickly', 1), ('thereby', 1), ('keeping', 1), ('flowing', 1), ('curtis', 1), ('preston', 1), ('insightful', 1)]
[('window', 2), ('early', 1), ('review', 1), ('geek', 1), ('raved', 1), ('ordinary', 1), ('mortal', 1), ('learning', 1), ('new', 1), ('system', 1), ('challenging', 1), ('fear', 1), ('david', 1), ('pogue', 1), ('missing', 1), ('manual', 1), ('come', 1), ('rescue', 1), ('predecessor', 1), ('book', 1), ('illuminates', 1), ('subject', 1), ('reader', 1), ('friendly', 1), ('insight', 1), ('plenty', 1), ('wit', 1), ('hardnosed', 1)]
[('qt', 3), ('window', 3), ('unix', 2), ('application', 2), ('popular', 1), ('open', 1), ('source', 1), ('kde', 1), ('desktop', 1), ('environment', 1), ('built', 1), ('class', 1), ('library', 1), ('writing', 1), ('gui', 1), ('run', 1), ('linux', 1), ('nt', 1), ('platform', 1), ('emulates', 1), ('look', 1), ('feel', 1), ('motif', 1), ('easier', 1), ('use', 1), ('best', 1), ('written', 1)]
[('cloud', 3), ('regard', 1), ('computing', 1), ('ideal', 1), ('way', 1), ('company', 1), ('control', 1), ('cost', 1), ('know', 1), ('private', 1), ('secure', 1), ('service', 1), ('really', 1), ('many', 1), ('security', 1), ('privacy', 1), ('learn', 1), ('stake', 1), ('trust', 1), ('data', 1), ('keep', 1), ('virtual', 1), ('infrastructure', 1), ('web', 1), ('application', 1)]
[('mac', 3), ('window', 2), ('make', 2), ('time', 2), ('giving', 1), ('pause', 1), ('ready', 1), ('leap', 1), ('instead', 1), ('never', 1), ('better', 1), ('switch', 1), ('incomparable', 1), ('guide', 1), ('help', 1), ('smooth', 1), ('transition', 1), ('new', 1), ('york', 1), ('columnist', 1), ('missing', 1), ('manual', 1), ('creator', 1), ('david', 1), ('pogue', 1), ('get', 1), ('past', 1), ('three', 1), ('challenge', 1), ('transferring', 1), ('stuff', 1), ('assembling', 1)]
[('app', 2), ('anyone', 1), ('programming', 1), ('experience', 1), ('learn', 1), ('write', 1), ('iphone', 1), ('want', 1), ('build', 1), ('lot', 1), ('simple', 1), ('coding', 1), ('need', 1), ('know', 1), ('design', 1), ('market', 1), ('creation', 1), ('easy', 1), ('follow', 1), ('guide', 1), ('walk', 1), ('entire', 1), ('process', 1), ('sketching', 1), ('idea', 1), ('promoting', 1), ('finished', 1), ('product', 1)]
[('scripting', 3), ('side', 3), ('visual', 2), ('basic', 2), ('application', 2), ('language', 2), ('internet', 2), ('server', 2), ('client', 2), ('microsoft', 1), ('edition', 1), ('vbscript', 1), ('subset', 1), ('powerful', 1), ('development', 1), ('serve', 1), ('system', 1), ('whether', 1), ('developing', 1), ('code', 1), ('active', 1), ('page', 1), ('script', 1)]
[('dreamweaver', 3), ('c', 2), ('program', 2), ('come', 1), ('building', 1), ('professional', 1), ('website', 1), ('capable', 1), ('web', 1), ('design', 1), ('including', 1), ('previous', 1), ('version', 1), ('software', 1), ('sophisticated', 1), ('feature', 1), ('simple', 1), ('missing', 1), ('manual', 1), ('help', 1), ('master', 1), ('quickly', 1), ('bring', 1), ('stunning', 1), ('interactive', 1)]
[('framework', 4), ('net', 3), ('thorough', 1), ('introduction', 1), ('ado', 1), ('entity', 1), ('microsoft', 1), ('core', 1), ('modeling', 1), ('interacting', 1), ('data', 1), ('application', 1), ('second', 1), ('edition', 1), ('acclaimed', 1), ('guide', 1), ('provides', 1), ('hand', 1), ('tour', 1), ('latest', 1), ('version', 1), ('visual', 1), ('studio', 1), ('learn', 1), ('use', 1), ('ef', 1), ('variety', 1)]
[('element', 2), ('offer', 1), ('photoshop', 1), ('power', 1), ('without', 1), ('huge', 1), ('price', 1), ('tag', 1), ('ideal', 1), ('tool', 1), ('image', 1), ('editing', 1), ('buff', 1), ('including', 1), ('scrapbookers', 1), ('photographer', 1), ('aspiring', 1), ('graphic', 1), ('artist', 1), ('still', 1), ('come', 1), ('decent', 1), ('manual', 1), ('bestselling', 1), ('book', 1), ('help', 1), ('program', 1), ('basic', 1), ('advanced', 1), ('tip', 1)]
[('apps', 3), ('mobile', 2), ('native', 1), ('distinct', 1), ('advantage', 1), ('future', 1), ('belongs', 1), ('web', 1), ('function', 1), ('broad', 1), ('range', 1), ('smartphones', 1), ('tablet', 1), ('started', 1), ('jquery', 1), ('touch', 1), ('optimized', 1), ('framework', 1), ('creating', 1), ('look', 1), ('behave', 1), ('consistently', 1), ('across', 1), ('many', 1), ('device', 1), ('concise', 1), ('book', 1), ('provides', 1), ('html', 1), ('cs', 1), ('javascript', 1), ('code', 1), ('example', 1)]
[('learn', 2), ('database', 2), ('techie', 1), ('use', 1), ('filemaker', 1), ('pro', 1), ('need', 1), ('know', 1), ('crystal', 1), ('clear', 1), ('guide', 1), ('create', 1), ('powerful', 1), ('let', 1), ('almost', 1), ('anything', 1), ('data', 1), ('whether', 1), ('running', 1), ('business', 1), ('printing', 1), ('catalog', 1), ('planning', 1), ('wedding', 1), ('customize', 1)]
[('access', 2), ('step', 2), ('database', 2), ('unlock', 1), ('secret', 1), ('discover', 1), ('use', 1), ('data', 1), ('creative', 1), ('way', 1), ('book', 1), ('easy', 1), ('instruction', 1), ('learn', 1), ('build', 1), ('maintain', 1), ('full', 1), ('featured', 1), ('even', 1), ('turn', 1), ('web', 1), ('app', 1), ('tip', 1), ('practice', 1), ('pro', 1), ('good', 1), ('design', 1), ('ideal', 1), ('whether', 1), ('using', 1)]
[('missing', 2), ('manual', 2), ('excel', 2), ('world', 1), ('popular', 1), ('spreadsheet', 1), ('program', 1), ('powerful', 1), ('complex', 1), ('come', 1), ('crystal', 1), ('clear', 1), ('explanation', 1), ('hand', 1), ('example', 1), ('show', 1), ('master', 1), ('easily', 1), ('track', 1), ('analyze', 1), ('chart', 1), ('data', 1), ('using', 1), ('new', 1), ('feature', 1)]
[('office', 3), ('microsoft', 1), ('widely', 1), ('used', 1), ('productivity', 1), ('software', 1), ('world', 1), ('know', 1), ('basic', 1), ('helpful', 1), ('guide', 1), ('get', 1), ('started', 1), ('program', 1), ('provides', 1), ('lot', 1), ('power', 1), ('user', 1), ('tip', 1), ('trick', 1), ('ready', 1), ('learn', 1), ('new', 1), ('template', 1), ('theme', 1), ('touchscreen', 1), ('feature', 1)]
[('functional', 2), ('familiar', 1), ('programming', 1), ('basic', 1), ('want', 1), ('gain', 1), ('deeper', 1), ('understanding', 1), ('depth', 1), ('guide', 1), ('take', 1), ('beyond', 1), ('syntax', 1), ('demonstrates', 1), ('need', 1), ('think', 1), ('new', 1), ('way', 1), ('software', 1), ('architect', 1), ('neal', 1), ('ford', 1), ('show', 1), ('intermediate', 1), ('advanced', 1), ('developer', 1), ('coding', 1), ('allows', 1), ('step', 1), ('back', 1), ('level', 1), ('abstraction', 1)]
[('server', 2), ('side', 2), ('web', 2), ('bring', 1), ('dynamic', 1), ('content', 1), ('responsive', 1), ('design', 1), ('together', 1), ('build', 1), ('website', 1), ('work', 1), ('display', 1), ('resolution', 1), ('desktop', 1), ('mobile', 1), ('practical', 1), ('book', 1), ('learn', 1), ('combining', 1), ('asp', 1), ('net', 1), ('mvc', 1), ('language', 1), ('bootstrap', 1), ('front', 1), ('end', 1), ('framework', 1), ('knockout', 1), ('j', 1), ('javascript', 1), ('implementation', 1)]
[('mac', 2), ('system', 2), ('unix', 2), ('o', 2), ('think', 1), ('powerful', 1), ('practical', 1), ('guide', 1), ('show', 1), ('tapping', 1), ('robust', 1), ('operating', 1), ('concealed', 1), ('beneath', 1), ('beautiful', 1), ('user', 1), ('interface', 1), ('put', 1), ('thousand', 1), ('command', 1), ('fingertip', 1), ('finding', 1), ('managing', 1), ('file', 1), ('remotely', 1), ('accessing', 1), ('computer', 1)]
[('computer', 6), ('form', 2), ('look', 2), ('vital', 1), ('part', 1), ('life', 1), ('nature', 1), ('work', 1), ('next', 1), ('generation', 1), ('darrel', 1), ('ince', 1), ('basic', 1), ('concept', 1), ('behind', 1), ('range', 1), ('us', 1), ('effect', 1), ('workplace', 1), ('novel', 1), ('quantum', 1)]
[('machine', 2), ('learning', 2), ('interest', 1), ('exploding', 1), ('across', 1), ('world', 1), ('research', 1), ('industrial', 1), ('application', 1), ('fundamental', 1), ('provides', 1), ('brief', 1), ('accessible', 1), ('introduction', 1), ('rapidly', 1), ('growing', 1), ('field', 1), ('appeal', 1), ('student', 1), ('researcher', 1)]
[('business', 3), ('way', 2), ('growth', 1), ('soa', 1), ('bpm', 1), ('edm', 1), ('technology', 1), ('corporation', 1), ('need', 1), ('organize', 1), ('logic', 1), ('rule', 1), ('allow', 1), ('greatest', 1), ('agility', 1), ('leveraging', 1), ('current', 1), ('asset', 1), ('written', 1), ('pioneering', 1), ('consultant', 1), ('bestselling', 1), ('author', 1), ('track', 1), ('record', 1), ('international', 1), ('success', 1)]
[('first', 1), ('book', 1), ('deliver', 1), ('broad', 1), ('coverage', 1), ('documented', 1), ('undocumented', 1), ('object', 1), ('oriented', 1), ('feature', 1), ('matlab', 1), ('guide', 1), ('aid', 1), ('reader', 1), ('creating', 1), ('effective', 1), ('software', 1), ('eight', 1), ('basic', 1), ('function', 1), ('discussed', 1), ('constructor', 1), ('subsref', 1), ('subsasgn', 1), ('display', 1), ('struct', 1), ('fieldnames', 1), ('set', 1), ('explored', 1), ('inheritance', 1), ('topic', 1), ('class', 1), ('wizard', 1), ('powerful', 1)]
[('sketchup', 3), ('google', 2), ('project', 2), ('discover', 1), ('secret', 1), ('real', 1), ('world', 1), ('professional', 1), ('level', 1), ('including', 1), ('park', 1), ('structure', 1), ('concept', 1), ('art', 1), ('illustration', 1), ('workshop', 1), ('includes', 1), ('wide', 1), ('variety', 1), ('used', 1), ('architectural', 1), ('visualization', 1), ('landscape', 1), ('design', 1), ('video', 1), ('game', 1), ('film', 1), ('conception', 1)]
[('share', 2), ('design', 2), ('usability', 2), ('top', 1), ('performing', 1), ('dotcoms', 1), ('common', 1), ('feature', 1), ('new', 1), ('software', 1), ('plug', 1), ('gadget', 1), ('piece', 1), ('technology', 1), ('site', 1), ('passionate', 1), ('focus', 1), ('book', 1), ('written', 1), ('international', 1), ('consultant', 1), ('writer', 1), ('trainer', 1), ('specializes', 1), ('evaluation', 1), ('web', 1), ('based', 1), ('wireless', 1), ('application', 1)]
[('java', 2), ('programming', 2), ('introduces', 2), ('language', 1), ('exciting', 1), ('internet', 1), ('friendly', 1), ('technology', 1), ('emerge', 1), ('last', 1), ('decade', 1), ('spatial', 1), ('science', 1), ('subject', 1), ('wish', 1), ('use', 1), ('computer', 1), ('handle', 1), ('information', 1), ('geographical', 1), ('element', 1), ('book', 1), ('object', 1), ('oriented', 1), ('modeling', 1), ('including', 1), ('key', 1), ('concept', 1), ('suc', 1)]
[('network', 3), ('port', 2), ('based', 2), ('authentication', 2), ('concept', 2), ('device', 2), ('access', 1), ('control', 1), ('particular', 1), ('evaluated', 1), ('permitted', 1), ('communicate', 1), ('located', 1), ('examines', 1), ('applied', 1), ('effect', 1), ('application', 1), ('majority', 1), ('computer', 1), ('existence', 1)]
[('arcobjects', 3), ('ready', 1), ('take', 1), ('knowledge', 1), ('arcgis', 1), ('next', 1), ('level', 1), ('need', 1), ('learn', 1), ('work', 1), ('thousand', 1), ('object', 1), ('property', 1), ('method', 1), ('hope', 1), ('sort', 1), ('model', 1), ('diagram', 1), ('first', 1), ('edition', 1), ('chang', 1), ('programming', 1), ('vba', 1), ('task', 1), ('oriented', 1), ('approach', 1), ('gave', 1)]
[('business', 2), ('logistics', 1), ('fulfillment', 1), ('management', 1), ('unglamorous', 1), ('complex', 1), ('expensive', 1), ('primary', 1), ('factor', 1), ('determining', 1), ('whether', 1), ('profitable', 1), ('many', 1), ('enterprise', 1), ('large', 1), ('small', 1), ('rush', 1), ('model', 1), ('without', 1), ('adequate', 1), ('consi', 1)]
[('user', 4), ('gap', 2), ('designer', 1), ('developer', 1), ('imagine', 1), ('really', 1), ('biggest', 1), ('problem', 1), ('product', 1), ('development', 1), ('observing', 1), ('experience', 1), ('help', 1), ('bridge', 1), ('understand', 1)]
[('book', 2), ('mandated', 2), ('certification', 2), ('accreditation', 2), ('instructs', 1), ('manager', 1), ('adhere', 1), ('federally', 1), ('requirement', 1), ('explain', 1), ('meant', 1), ('process', 1), ('federal', 1), ('law', 1)]
[('access', 2), ('appliance', 2), ('juniper', 1), ('network', 1), ('secure', 1), ('ssl', 1), ('vpn', 1), ('provide', 1), ('complete', 1), ('range', 1), ('remote', 1), ('smallest', 1), ('company', 1), ('largest', 1), ('service', 1), ('provider', 1), ('system', 1), ('administrator', 1), ('security', 1), ('professional', 1), ('comprehensive', 1)]
[('store', 2), ('challenge', 1), ('administering', 1), ('supporting', 1), ('microsoft', 1), ('outlook', 1), ('setting', 1), ('many', 1), ('different', 1), ('place', 1), ('window', 1), ('registry', 1), ('file', 1), ('user', 1), ('profile', 1), ('folder', 1), ('information', 1)]
[('network', 2), ('qos', 1), ('short', 1), ('quality', 1), ('service', 1), ('important', 1), ('goal', 1), ('designer', 1), ('administrator', 1), ('ensuring', 1), ('run', 1), ('optimal', 1), ('precision', 1), ('data', 1), ('remaining', 1), ('accurate', 1), ('traveling', 1), ('fast', 1), ('correct', 1), ('user', 1)]
[('data', 4), ('dw', 2), ('architecture', 2), ('generation', 2), ('warehousing', 2), ('book', 2), ('warehouse', 2), ('next', 1), ('first', 1), ('new', 1), ('father', 1), ('describes', 1), ('future', 1)]
[('rendering', 2), ('physically', 1), ('based', 1), ('second', 1), ('edition', 1), ('describes', 1), ('mathematical', 1), ('theory', 1), ('behind', 1), ('modern', 1), ('photorealistic', 1), ('system', 1), ('practical', 1), ('implementation', 1), ('method', 1), ('known', 1), ('literate', 1), ('programming', 1), ('combine', 1), ('human', 1), ('readable', 1)]
[('warfare', 2), ('digital', 2), ('cyber', 1), ('second', 1), ('edition', 1), ('take', 1), ('comprehensive', 1), ('look', 1), ('waged', 1), ('book', 1), ('explores', 1), ('participant', 1), ('battlefield', 1), ('tool', 1), ('technique', 1), ('used', 1), ('today', 1), ('conflict', 1), ('concept', 1), ('discussed', 1), ('give', 1)]
[('publication', 1), ('first', 1), ('edition', 1), ('designer', 1), ('guide', 1), ('vhdl', 1), ('digital', 1), ('electronic', 1), ('system', 1), ('increased', 1), ('exponentially', 1), ('complexity', 1), ('product', 1), ('lifetime', 1), ('dramatically', 1), ('shrunk', 1), ('reliability', 1), ('requirement', 1), ('shot', 1)]
[('web', 3), ('semantic', 2), ('modeling', 2), ('rdfs', 2), ('owl', 2), ('language', 2), ('working', 1), ('ontologist', 1), ('effective', 1), ('second', 1), ('edition', 1), ('discus', 1), ('capability', 1), ('resource', 1), ('description', 1), ('framework', 1), ('schema', 1), ('ontology', 1)]
[('data', 2), ('mining', 2), ('practical', 2), ('machine', 2), ('learning', 2), ('tool', 2), ('technique', 2), ('fourth', 1), ('edition', 1), ('offer', 1), ('thorough', 1), ('grounding', 1), ('concept', 1), ('along', 1), ('advice', 1), ('applying', 1), ('real', 1), ('world', 1), ('situation', 1)]
[('book', 2), ('bejtlich', 2), ('sql', 2), ('injection', 2), ('winner', 1), ('best', 1), ('award', 1), ('probably', 1), ('number', 1), ('problem', 1), ('server', 1), ('side', 1), ('application', 1), ('unequaled', 1), ('coverage', 1), ('richard', 1)]
[('parallel', 2), ('introduction', 1), ('programming', 1), ('first', 1), ('undergraduate', 1), ('text', 1), ('directly', 1), ('address', 1), ('compiling', 1), ('running', 1), ('program', 1), ('new', 1), ('multi', 1), ('core', 1), ('cluster', 1), ('architecture', 1), ('explains', 1), ('design', 1), ('debug', 1), ('evaluate', 1), ('performance', 1)]
[('business', 2), ('bi', 2), ('intelligence', 1), ('strategy', 1), ('big', 1), ('data', 1), ('analytics', 1), ('written', 1), ('leader', 1), ('manager', 1), ('analyst', 1), ('involved', 1), ('advancing', 1), ('use', 1), ('company', 1), ('need', 1), ('better', 1), ('understand', 1)]
[('book', 1), ('walk', 1), ('reader', 1), ('process', 1), ('preparing', 1), ('deploying', 1), ('open', 1), ('source', 1), ('host', 1), ('integrity', 1), ('monitoring', 1), ('software', 1), ('specifically', 1), ('osiris', 1), ('samhain', 1), ('configuration', 1), ('installation', 1), ('maintenance', 1), ('testing', 1), ('fine', 1), ('tuning', 1)]
[('digital', 2), ('evidence', 2), ('computer', 2), ('crime', 1), ('third', 1), ('edition', 1), ('provides', 1), ('knowledge', 1), ('necessary', 1), ('uncover', 1), ('use', 1), ('effectively', 1), ('kind', 1), ('investigation', 1), ('offer', 1), ('thorough', 1), ('explanation', 1), ('network', 1), ('function', 1)]
[('information', 2), ('risk', 2), ('measuring', 2), ('using', 1), ('factor', 1), ('analysis', 1), ('fair', 1), ('methodology', 1), ('developed', 1), ('ten', 1), ('year', 1), ('adopted', 1), ('corporation', 1), ('worldwide', 1), ('managing', 1), ('provides', 1), ('proven', 1), ('credible', 1), ('framework', 1), ('understanding', 1)]
[('broadband', 2), ('cable', 1), ('access', 1), ('network', 1), ('focus', 1), ('distribution', 1), ('system', 1), ('architecture', 1), ('concentrate', 1), ('practical', 1), ('concept', 1), ('allow', 1), ('reader', 1), ('design', 1), ('improvement', 1), ('troubleshooting', 1), ('work', 1), ('objective', 1), ('enhance', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('tradecraft', 2), ('used', 2), ('intelligence', 2), ('term', 1), ('within', 1), ('community', 1), ('describe', 1), ('method', 1), ('practice', 1), ('technique', 1), ('espionage', 1), ('clandestine', 1), ('investigation', 1), ('book', 1), ('reveals', 1), ('officer', 1), ('investigator', 1), ('conduct', 1), ('reader', 1), ('learn', 1), ('plan', 1), ('operation', 1), ('build', 1), ('identity', 1), ('cover', 1), ('story', 1), ('deep', 1)]
[('erp', 2), ('second', 1), ('edition', 1), ('bestseller', 1), ('explains', 1), ('enterprise', 1), ('resource', 1), ('planning', 1), ('perspective', 1), ('business', 1), ('manager', 1), ('furnishes', 1), ('detailed', 1), ('roadmap', 1), ('real', 1), ('life', 1), ('example', 1), ('successful', 1), ('selection', 1), ('implementation', 1), ('utilization', 1), ('cover', 1), ('updated', 1), ('concept', 1), ('supplier', 1), ('customer', 1), ('relationship', 1), ('management', 1), ('technology', 1)]
[('book', 2), ('aim', 1), ('provide', 1), ('comprehensive', 1), ('introduction', 1), ('cryptography', 1), ('without', 1), ('using', 1), ('complex', 1), ('mathematical', 1), ('construction', 1), ('theme', 1), ('conveyed', 1), ('form', 1), ('requires', 1), ('basic', 1), ('knowledge', 1), ('mathematics', 1), ('method', 1), ('described', 1), ('sufficient', 1), ('detail', 1), ('enable', 1), ('computer', 1), ('implementation', 1), ('describes', 1), ('main', 1), ('technique', 1)]
[('sudoku', 1), ('amazingly', 1), ('popularthis', 1), ('beginning', 1), ('programmer', 1), ('guide', 1), ('gaming', 1), ('slant', 1), ('mix', 1), ('learning', 1), ('funit', 1), ('teach', 1), ('reader', 1), ('build', 1), ('fun', 1), ('complex', 1), ('addictive', 1), ('puzzle', 1), ('game', 1)]
[('game', 5), ('maker', 2), ('apprentice', 1), ('show', 1), ('create', 1), ('nine', 1), ('exciting', 1), ('using', 1), ('wildly', 1), ('popular', 1), ('creation', 1), ('tool', 1), ('book', 1), ('cover', 1), ('range', 1), ('genre', 1), ('including', 1), ('action', 1), ('adventure', 1), ('puzzle', 1), ('complete', 1), ('professional', 1), ('quality', 1)]
[('arduino', 3), ('beginning', 1), ('learn', 1), ('popular', 1), ('microcontroller', 1), ('working', 1), ('way', 1), ('amazing', 1), ('set', 1), ('cool', 1), ('project', 1), ('progress', 1), ('complete', 1), ('beginner', 1), ('regarding', 1), ('programming', 1), ('electronics', 1), ('knowledge', 1)]
[('window', 1), ('professional', 1), ('foundation', 1), ('wpf', 1), ('offer', 1), ('amazing', 1), ('opportunity', 1), ('net', 1), ('programmer', 1), ('term', 1), ('user', 1), ('interface', 1), ('deliver', 1), ('customer', 1), ('significant', 1), ('technological', 1), ('advance', 1), ('come', 1), ('steep', 1), ('learning', 1), ('curve', 1), ('requiring', 1)]
[('db', 3), ('express', 2), ('edition', 2), ('ibm', 1), ('capable', 1), ('free', 1), ('database', 1), ('platform', 1), ('available', 1), ('today', 1), ('marketplace', 1), ('beginning', 1), ('author', 1), ('grant', 1), ('allen', 1), ('get', 1), ('started', 1), ('using', 1), ('web', 1), ('site', 1), ('desktop', 1), ('application', 1)]
[('google', 2), ('map', 1), ('api', 1), ('remains', 1), ('showcase', 1), ('example', 1), ('web', 1), ('development', 1), ('paradigm', 1), ('fact', 1), ('interest', 1), ('service', 1), ('strong', 1), ('arguably', 1), ('sparked', 1), ('mashup', 1), ('phenomenon', 1), ('first', 1), ('book', 1), ('comprehensively', 1), ('introduce', 1)]
[('window', 2), ('foundation', 2), ('application', 2), ('user', 2), ('microsoft', 1), ('presentation', 1), ('wpf', 1), ('provides', 1), ('building', 1), ('high', 1), ('quality', 1), ('experience', 1), ('operating', 1), ('system', 1), ('blend', 1), ('interface', 1), ('document', 1), ('medium', 1), ('content', 1)]
[('facebook', 5), ('api', 3), ('developer', 2), ('application', 2), ('allows', 1), ('web', 1), ('create', 1), ('access', 1), ('data', 1), ('guide', 1), ('cover', 1), ('use', 1), ('implementation', 1), ('key', 1), ('feature', 1)]
[('net', 2), ('extension', 2), ('new', 2), ('book', 1), ('provides', 1), ('complete', 1), ('reference', 1), ('using', 1), ('vb', 1), ('platform', 1), ('contains', 1), ('chapter', 1), ('explore', 1), ('interaction', 1), ('existing', 1), ('framework', 1), ('offering', 1), ('reader', 1)]
[('jpa', 4), ('java', 3), ('pro', 1), ('introduces', 1), ('explains', 1), ('demonstrates', 1), ('use', 1), ('persistence', 1), ('api', 1), ('provides', 1), ('developer', 1), ('knowledge', 1), ('insight', 1), ('needed', 1), ('write', 1), ('application', 1), ('access', 1), ('relational', 1), ('database', 1), ('author', 1)]
[('java', 3), ('web', 3), ('application', 3), ('simple', 2), ('developer', 1), ('require', 1), ('advanced', 1), ('specialized', 1), ('user', 1), ('optimal', 1), ('deployment', 1), ('tool', 1), ('based', 1), ('open', 1), ('source', 1), ('tomcat', 1), ('server', 1), ('graduated', 1)]
[('professional', 1), ('guide', 1), ('understanding', 1), ('implementing', 1), ('key', 1), ('principle', 1), ('technique', 1), ('programming', 1), ('microsoft', 1), ('office', 1), ('excel', 1), ('automating', 1), ('complex', 1), ('spreadsheet', 1), ('streamlining', 1), ('time', 1), ('intensive', 1), ('work', 1), ('process', 1), ('gaining', 1), ('competitive', 1)]
[('game', 4), ('development', 3), ('xna', 2), ('start', 2), ('join', 1), ('revolution', 1), ('today', 1), ('greatly', 1), ('simplifies', 1), ('lowering', 1), ('barrier', 1), ('programmer', 1), ('coding', 1), ('true', 1)]
[('foundation', 2), ('wcf', 2), ('part', 1), ('microsoft', 1), ('radical', 1), ('new', 1), ('winfx', 1), ('api', 1), ('code', 1), ('named', 1), ('indigo', 1), ('commonly', 1), ('known', 1), ('window', 1), ('communication', 1), ('technology', 1), ('allows', 1), ('web', 1), ('developer', 1), ('create', 1), ('service', 1), ('communicate', 1), ('interoperate', 1)]
[('book', 2), ('touch', 1), ('area', 1), ('seldom', 1), ('explored', 1), ('mathematical', 1), ('underpinnings', 1), ('relational', 1), ('database', 1), ('topic', 1), ('important', 1), ('far', 1), ('often', 1), ('ignored', 1), ('first', 1), ('explain', 1), ('underlying', 1), ('math', 1), ('way', 1), ('accessible', 1)]
[('html', 2), ('website', 2), ('definitive', 1), ('guide', 1), ('provides', 1), ('breadth', 1), ('information', 1), ('need', 1), ('start', 1), ('creating', 1), ('next', 1), ('generation', 1), ('cover', 1), ('base', 1), ('knowledge', 1), ('required', 1), ('standard', 1), ('compliant', 1), ('semantic', 1), ('modern', 1), ('creation', 1)]
[('zend', 2), ('improve', 1), ('programming', 1), ('knowledge', 1), ('become', 1), ('certified', 1), ('book', 1), ('closely', 1), ('follows', 1), ('zce', 1), ('php', 1), ('exam', 1), ('syllabus', 1), ('add', 1), ('important', 1), ('detail', 1), ('help', 1), ('candidate', 1), ('prepare', 1), ('test', 1), ('certification', 1), ('industry', 1), ('recognized', 1), ('standard', 1)]
[('advanced', 2), ('net', 2), ('first', 1), ('book', 1), ('offering', 1), ('important', 1), ('insight', 1), ('window', 1), ('form', 1), ('explains', 1), ('taking', 1), ('control', 1), ('highest', 1), ('level', 1), ('programmer', 1), ('customizations', 1), ('follows', 1), ('successful', 1), ('formula', 1), ('previous', 1), ('edition', 1)]
[('technology', 2), ('completely', 1), ('date', 1), ('asp', 1), ('net', 1), ('demonstrates', 1), ('new', 1), ('best', 1), ('practice', 1), ('coding', 1), ('style', 1), ('requires', 1), ('focus', 1), ('developer', 1), ('need', 1), ('explaining', 1), ('manner', 1), ('applicable', 1), ('development', 1), ('project', 1)]
[('mac', 2), ('considered', 1), ('classic', 1), ('entire', 1), ('generation', 1), ('programmer', 1), ('popular', 1), ('guide', 1), ('updated', 1), ('o', 1), ('know', 1), ('anything', 1), ('programming', 1), ('problem', 1), ('acclaimed', 1), ('author', 1), ('dave', 1), ('mark', 1), ('start', 1), ('basic', 1), ('take', 1)]
[('access', 2), ('business', 2), ('pro', 1), ('development', 1), ('fundamental', 1), ('resource', 1), ('developing', 1), ('application', 1), ('take', 1), ('advantage', 1), ('feature', 1), ('many', 1), ('source', 1), ('data', 1), ('available', 1), ('book', 1), ('learn', 1), ('build', 1), ('database', 1)]
[('programming', 3), ('beginning', 1), ('arduino', 1), ('written', 1), ('prior', 1), ('experience', 1), ('microcontrollers', 1), ('experiment', 1), ('learn', 1), ('book', 1), ('introduces', 1), ('language', 1), ('reinforcing', 1)]
[('written', 1), ('microsoft', 1), ('consulting', 1), ('team', 1), ('premier', 1), ('example', 1), ('driven', 1), ('book', 1), ('developing', 1), ('office', 1), ('based', 1), ('application', 1), ('using', 1), ('sharepoint', 1), ('net', 1), ('take', 1), ('practical', 1), ('problem', 1), ('solution', 1), ('approach', 1), ('common', 1), ('business', 1), ('challenge', 1)]
[('written', 1), ('three', 1), ('world', 1), ('leading', 1), ('expert', 1), ('lego', 1), ('mindstorms', 1), ('homebrew', 1), ('hardware', 1), ('book', 1), ('contains', 1), ('detailed', 1), ('instruction', 1), ('construction', 1), ('sensor', 1), ('extension', 1), ('nxt', 1), ('project', 1), ('explained', 1), ('illustrated', 1), ('clear', 1)]
[('sql', 3), ('transact', 2), ('without', 1), ('nothing', 1), ('developer', 1), ('database', 1), ('administrator', 1), ('using', 1), ('microsoft', 1), ('server', 1), ('highly', 1), ('motivated', 1), ('learn', 1), ('language', 1), ('enables', 1), ('store', 1), ('retrieve', 1), ('data', 1), ('move', 1), ('business', 1), ('logic', 1)]
[('game', 3), ('maker', 2), ('book', 2), ('companion', 1), ('long', 1), ('awaited', 1), ('sequel', 1), ('apprentice', 1), ('pick', 1), ('last', 1), ('left', 1), ('advancing', 1), ('development', 1), ('journey', 1), ('seriously', 1), ('impressive', 1), ('gaming', 1), ('project', 1), ('time', 1), ('learn', 1)]
[('lt', 1), ('gt', 1), ('proposal', 1), ('examination', 1), ('producing', 1), ('dissertation', 1), ('thesis', 1), ('challenge', 1), ('grounded', 1), ('decade', 1), ('experience', 1), ('research', 1), ('training', 1), ('supervision', 1), ('fully', 1), ('updated', 1), ('revised', 1), ('edition', 1), ('take', 1), ('integrated', 1), ('earth', 1), ('approach', 1)]
[('business', 3), ('information', 2), ('logical', 1), ('data', 1), ('modeling', 1), ('offer', 1), ('manager', 1), ('analyst', 1), ('student', 1), ('clear', 1), ('basic', 1), ('systematic', 1), ('guide', 1), ('defining', 1), ('structure', 1), ('relational', 1), ('database', 1), ('term', 1), ('approach', 1), ('based', 1), ('clive', 1), ('finkelstein', 1), ('side', 1)]
[('douglas', 1), ('thomas', 1), ('provides', 1), ('depth', 1), ('history', 1), ('important', 1), ('fascinating', 1), ('subculture', 1), ('contrasting', 1), ('mainstream', 1), ('image', 1), ('hacker', 1), ('detailed', 1), ('firsthand', 1), ('account', 1), ('computer', 1), ('underground', 1)]
[('project', 3), ('plan', 2), ('paper', 2), ('capability', 2), ('maturity', 2), ('model', 2), ('matter', 1), ('perfect', 1), ('worthless', 1), ('nobody', 1), ('actually', 1), ('us', 1), ('innovative', 1), ('guide', 1), ('show', 1), ('ensure', 1), ('team', 1), ('process', 1), ('needed', 1), ('successfully', 1), ('carry', 1), ('put', 1), ('using', 1), ('sei', 1), ('management', 1)]
[('effective', 2), ('software', 2), ('five', 2), ('new', 2), ('concise', 1), ('practical', 1), ('introduction', 1), ('basic', 1), ('principle', 1), ('verification', 1), ('validation', 1), ('revised', 1), ('edition', 1), ('includes', 1), ('chapter', 1), ('appendix', 1), ('focused', 1), ('management', 1), ('technique', 1), ('make', 1), ('company', 1), ('effort', 1), ('cost', 1)]
[('text', 2), ('complier', 2), ('book', 1), ('organized', 1), ('provides', 1), ('design', 1), ('technique', 1), ('simple', 1), ('straightforward', 1), ('manner', 1), ('describes', 1), ('complete', 1), ('development', 1), ('various', 1), ('phase', 1), ('imitation', 1), ('language', 1), ('order', 1), ('understanding', 1), ('application', 1), ('primarily', 1), ('designed', 1), ('undergraduate', 1), ('student', 1)]
[('grade', 3), ('nbsp', 2), ('use', 2), ('guide', 1), ('enabling', 1), ('middle', 1), ('mathematics', 1), ('teacher', 1), ('microsoft', 1), ('excel', 1), ('classroom', 1), ('focus', 1), ('primarily', 1), ('concept', 1), ('taught', 1), ('pre', 1), ('algebra', 1), ('lesson', 1), ('higher', 1), ('including', 1), ('file', 1), ('available', 1), ('downloading', 1), ('create', 1), ('custom', 1), ('math', 1), ('worksheet', 1), ('build', 1), ('self', 1), ('grading', 1), ('interactive', 1), ('spreadsheet', 1)]
[('data', 3), ('step', 2), ('excel', 2), ('book', 1), ('includes', 1), ('example', 1), ('case', 1), ('study', 1), ('teach', 1), ('user', 1), ('many', 1), ('power', 1), ('trick', 1), ('analyzing', 1), ('tip', 1), ('honed', 1), ('oz', 1), ('du', 1), ('soleil', 1), ('former', 1), ('financial', 1), ('analyst', 1), ('charged', 1), ('taking', 1), ('mainframe', 1), ('turning', 1), ('useful', 1), ('information', 1), ('quickly', 1), ('mr', 1), ('bill', 1), ('jelen', 1), ('topic', 1), ('include', 1), ('quality', 1)]
[('rendering', 2), ('detail', 1), ('technique', 1), ('used', 1), ('experienced', 1), ('graphic', 1), ('software', 1), ('developer', 1), ('implement', 1), ('feature', 1), ('film', 1), ('quality', 1), ('engine', 1), ('brings', 1), ('together', 1), ('skill', 1), ('needed', 1), ('develop', 1), ('system', 1)]
[('printing', 2), ('revolution', 1), ('upon', 1), ('new', 1), ('machine', 1), ('appearing', 1), ('amazing', 1), ('rate', 1), ('abundance', 1), ('information', 1), ('option', 1), ('maker', 1), ('choose', 1), ('printer', 1), ('right', 1), ('make', 1), ('help', 1), ('ultimate', 1), ('guide', 1), ('article', 1), ('technique', 1), ('freely', 1), ('available', 1), ('cad', 1), ('package', 1)]
[('color', 4), ('imaging', 2), ('henry', 1), ('kang', 1), ('provides', 1), ('fundamental', 1), ('principle', 1), ('mathematical', 1), ('tool', 1), ('prepare', 1), ('reader', 1), ('new', 1), ('era', 1), ('reproduction', 1), ('subsequent', 1), ('application', 1), ('multispectral', 1), ('medical', 1), ('remote', 1), ('sensing', 1), ('machine', 1), ('vision', 1), ('book', 1), ('intended', 1), ('bridge', 1), ('gap', 1), ('science', 1), ('computational', 1), ('technology', 1)]
[('learn', 4), ('excel', 3), ('new', 2), ('step', 2), ('way', 1), ('immediately', 1), ('ebook', 1), ('constantly', 1), ('updated', 1), ('topic', 1), ('pace', 1), ('real', 1), ('exercise', 1), ('guarantee', 1), ('learning', 1), ('forget', 1), ('download', 1), ('practice', 1), ('file', 1), ('free', 1), ('handson', 1), ('lab', 1), ('basic', 1), ('microsoft', 1), ('manage', 1), ('different', 1)]
[('data', 2), ('book', 1), ('comprehensive', 1), ('introduction', 1), ('method', 1), ('algorithm', 1), ('approach', 1), ('modern', 1), ('analytics', 1), ('cover', 1), ('preprocessing', 1), ('visualization', 1), ('correlation', 1), ('regression', 1), ('forecasting', 1), ('classification', 1), ('clustering', 1), ('provides', 1), ('sound', 1)]
[('attack', 4), ('cyber', 2), ('book', 1), ('examines', 1), ('depth', 1), ('major', 1), ('recent', 1), ('taken', 1), ('place', 1), ('around', 1), ('world', 1), ('discus', 1), ('implication', 1), ('offer', 1), ('solution', 1), ('vulnerability', 1), ('made', 1), ('possible', 1), ('investigation', 1), ('significant', 1), ('damaging', 1), ('author', 1), ('introduces', 1), ('reader', 1), ('cyberwar', 1)]
[('machine', 3), ('communication', 2), ('technology', 2), ('acronym', 1), ('term', 1), ('birth', 1), ('th', 1), ('generation', 1), ('computing', 1), ('category', 1), ('information', 1), ('combine', 1), ('computer', 1), ('power', 1), ('enable', 1), ('remote', 1), ('human', 1), ('interaction', 1), ('physical', 1), ('chemical', 1), ('biological', 1), ('system', 1), ('process', 1)]
[('web', 2), ('world', 2), ('book', 2), ('first', 1), ('clear', 1), ('guide', 1), ('semantic', 1), ('upcoming', 1), ('impact', 1), ('business', 1), ('imagine', 1), ('handed', 1), ('future', 1), ('something', 1), ('called', 1), ('wide', 1), ('claimed', 1), ('piece', 1), ('software', 1)]
[('codenotes', 2), ('technology', 2), ('provides', 1), ('succinct', 1), ('accurate', 1), ('speedy', 1), ('way', 1), ('developer', 1), ('ramp', 1), ('new', 1), ('language', 1), ('unlike', 1), ('programming', 1), ('book', 1), ('drill', 1), ('core', 1), ('aspect', 1), ('focusing', 1), ('key', 1), ('element', 1)]
[('understand', 1), ('method', 1), ('modern', 1), ('non', 1), ('stationary', 1), ('signal', 1), ('processing', 1), ('authoritative', 1), ('insight', 1), ('leader', 1), ('field', 1)]
[('book', 1), ('provides', 1), ('practical', 1), ('guidance', 1), ('professional', 1), ('practitioner', 1), ('researcher', 1), ('faced', 1), ('creating', 1), ('rolling', 1), ('agile', 1), ('testing', 1), ('process', 1)]
[('learning', 2), ('comprehensive', 1), ('introduction', 1), ('support', 1), ('vector', 1), ('machine', 1), ('generation', 1), ('system', 1), ('based', 1), ('advance', 1), ('statistical', 1), ('theory', 1)]
[('new', 1), ('edition', 1), ('successful', 1), ('text', 1), ('treat', 1), ('module', 1), ('depth', 1), ('cover', 1), ('revision', 1), ('ml', 1), ('language', 1)]
[('day', 2), ('exciting', 1), ('accessible', 1), ('book', 1), ('take', 1), ('journey', 1), ('early', 1), ('computer', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('present', 1)]
[('comprehensive', 1), ('overview', 1), ('state', 1), ('art', 1), ('natural', 1), ('language', 1), ('generation', 1), ('interactive', 1), ('system', 1), ('link', 1), ('resource', 1), ('research', 1)]
[('book', 1), ('describes', 1), ('advance', 1), ('technology', 1), ('data', 1), ('availability', 1), ('searcher', 1), ('expectation', 1), ('around', 1), ('next', 1), ('generation', 1), ('search', 1), ('engine', 1)]
[('treatise', 1), ('finite', 1), ('automaton', 1), ('theory', 1), ('give', 1), ('rigorous', 1), ('account', 1), ('illuminates', 1), ('real', 1), ('meaning', 1)]
[('software', 2), ('accessible', 1), ('text', 1), ('describing', 1), ('process', 1), ('algebraic', 1), ('approach', 1), ('specification', 1), ('verification', 1), ('system', 1), ('using', 1), ('mathematical', 1), ('logic', 1)]
[('suited', 1), ('self', 1), ('study', 1), ('appeal', 1), ('working', 1), ('computer', 1), ('graphic', 1), ('machine', 1), ('vision', 1), ('image', 1), ('processing', 1)]
[('mobile', 2), ('application', 2), ('book', 1), ('explores', 1), ('difference', 1), ('stationary', 1), ('architectural', 1), ('software', 1), ('development', 1), ('concept', 1), ('needed', 1), ('build', 1)]
[('develops', 1), ('fundamental', 1), ('processing', 1), ('point', 1), ('data', 1), ('digital', 1), ('mode', 1), ('present', 1), ('algorithm', 1), ('surface', 1), ('reconstruction', 1)]
[('present', 1), ('unified', 1), ('overview', 1), ('various', 1), ('process', 1), ('algebra', 1), ('currently', 1), ('use', 1), ('set', 1), ('standard', 1), ('field', 1)]
[('contemporary', 1), ('introduction', 1), ('automaton', 1), ('theory', 1), ('uniquely', 1), ('cover', 1), ('modern', 1), ('application', 1), ('bioscience', 1)]
[('technique', 2), ('detailed', 1), ('account', 1), ('application', 1), ('analysis', 1), ('variance', 1), ('statistical', 1), ('image', 1), ('processing', 1)]
[('visual', 2), ('basic', 2), ('comprehensive', 1), ('guide', 1), ('microsoft', 1), ('vb', 1), ('popular', 1), ('programming', 1), ('language', 1), ('world', 1), ('million', 1), ('line', 1), ('code', 1), ('used', 1), ('business', 1)]
[('net', 4), ('wrox', 2), ('professional', 2), ('blox', 1), ('value', 1), ('packed', 1), ('resource', 1), ('help', 1), ('experienced', 1), ('developer', 1), ('learn', 1), ('new', 1), ('release', 1), ('excerpted', 1), ('book', 1), ('asp', 1), ('wpf', 1), ('programmer', 1), ('reference', 1)]
[('quickest', 1), ('way', 1), ('book', 1), ('small', 1), ('business', 1), ('owner', 1), ('manager', 1), ('look', 1), ('forward', 1), ('finance', 1), ('quickbooks', 1), ('dummy', 1), ('hand', 1)]
[('window', 3), ('delivers', 2), ('important', 2), ('best', 1), ('secret', 1), ('concise', 1), ('value', 1), ('packed', 1), ('punch', 1), ('includes', 1), ('feature', 1), ('user', 1), ('need', 1), ('know', 1), ('book', 1), ('content', 1), ('major', 1)]
[('test', 3), ('knowledge', 1), ('know', 1), ('expect', 1), ('exam', 1), ('day', 1), ('comptia', 1), ('complete', 1), ('practice', 1), ('second', 1), ('edition', 1), ('enables', 1), ('hone', 1), ('taking', 1), ('skill', 1), ('focus', 1), ('challenging', 1)]
[('service', 2), ('provider', 2), ('guide', 1), ('designing', 1), ('implementing', 1), ('vpls', 1), ('ip', 1), ('mpls', 1), ('switched', 1), ('backbone', 1), ('today', 1), ('communication', 1), ('looking', 1), ('convenience', 1), ('simplicity', 1), ('flexible', 1), ('bandwidth', 1), ('across', 1), ('wide', 1), ('area', 1), ('network', 1)]
[('cloud', 2), ('organization', 1), ('save', 1), ('thrive', 1), ('first', 1), ('non', 1), ('technical', 1), ('guide', 1), ('computing', 1), ('business', 1), ('leader', 1), ('le', 1), ('decade', 1), ('google', 1), ('amazon', 1), ('salesforce', 1), ('went', 1), ('unknown', 1), ('idea', 1)]
[('presentation', 2), ('powerpoint', 2), ('start', 1), ('creating', 1), ('dynamite', 1), ('number', 1), ('software', 1), ('revised', 1), ('improved', 1), ('introduction', 1), ('microsoft', 1), ('office', 1), ('million', 1)]
[('new', 2), ('nexus', 2), ('google', 2), ('tablet', 2), ('friendly', 1), ('advice', 1), ('leveraging', 1), ('power', 1), ('arrival', 1), ('eagerly', 1), ('awaited', 1), ('thanks', 1), ('cutting', 1), ('edge', 1), ('software', 1), ('top', 1), ('notch', 1), ('hardware', 1)]
[('outlook', 2), ('fun', 1), ('friendly', 1), ('way', 1), ('manage', 1), ('busy', 1), ('life', 1), ('new', 1), ('number', 1), ('mail', 1), ('client', 1), ('personal', 1), ('information', 1), ('manager', 1), ('microsoft', 1), ('offer', 1), ('set', 1), ('uncomplicated', 1), ('feature', 1)]
[('web', 2), ('front', 2), ('end', 2), ('development', 2), ('stay', 1), ('ahead', 1), ('evolution', 1), ('elegant', 1), ('combination', 1), ('asp', 1), ('net', 1), ('core', 1), ('angular', 1), ('bootstrap', 1), ('professional', 1), ('guide', 1), ('fast', 1), ('responsive', 1)]
[('make', 2), ('hear', 1), ('word', 1), ('database', 1), ('eye', 1), ('glaze', 1), ('mention', 1), ('field', 1), ('table', 1), ('blood', 1), ('pressure', 1), ('skyrocket', 1), ('idea', 1), ('entering', 1), ('using', 1), ('hyperlink', 1), ('hyperventilate', 1), ('whether', 1), ('running', 1)]
[('exchange', 2), ('server', 2), ('bestselling', 1), ('guide', 1), ('fully', 1), ('updated', 1), ('newest', 1), ('version', 1), ('microsoft', 1), ('touted', 1), ('solution', 1), ('lowering', 1), ('total', 1), ('cost', 1), ('ownership', 1), ('whether', 1), ('deployed', 1)]
[('explains', 1), ('kanban', 1), ('offer', 1), ('new', 1), ('approach', 1), ('change', 1), ('st', 1), ('century', 1), ('business', 1), ('book', 1), ('provides', 1), ('understanding', 1), ('necessary', 1), ('properly', 1), ('understand', 1)]
[('android', 3), ('developer', 2), ('latest', 2), ('feature', 2), ('comprehensive', 1), ('guide', 1), ('capability', 1), ('professional', 1), ('th', 1), ('edition', 1), ('show', 1), ('leverage', 1), ('create', 1), ('robust', 1)]
[('visual', 2), ('basic', 2), ('ultimate', 1), ('beginner', 1), ('guide', 1), ('programming', 1), ('used', 1), ('write', 1), ('window', 1), ('application', 1), ('web', 1), ('apps', 1), ('asp', 1), ('net', 1), ('essential', 1), ('language', 1), ('beginning', 1), ('programmer', 1), ('using', 1), ('time', 1), ('tested', 1)]
[('window', 2), ('server', 2), ('fast', 1), ('accurate', 1), ('answer', 1), ('common', 1), ('question', 1), ('serving', 1), ('perfect', 1), ('companion', 1), ('book', 1), ('reference', 1), ('provides', 1), ('quick', 1), ('easily', 1), ('searchable', 1), ('solution', 1)]
[('autocad', 3), ('step', 2), ('full', 2), ('color', 2), ('guide', 1), ('real', 1), ('world', 1), ('practicality', 1), ('lt', 1), ('essential', 1), ('provides', 1), ('task', 1), ('based', 1), ('approach', 1), ('mastering', 1), ('powerful', 1), ('software', 1)]
[('ide', 2), ('professional', 1), ('visual', 1), ('studio', 1), ('developer', 1), ('find', 1), ('fast', 1), ('route', 1), ('programming', 1), ('success', 1), ('author', 1), ('zero', 1), ('advanced', 1), ('topic', 1), ('demonstrate', 1), ('new', 1), ('feature', 1), ('including', 1), ('code', 1), ('snippet', 1), ('refactoring', 1)]
[('sql', 2), ('server', 2), ('harness', 1), ('powerful', 1), ('new', 1), ('microsoft', 1), ('significant', 1), ('update', 1), ('product', 1), ('change', 1), ('database', 1), ('administrator', 1), ('developer', 1), ('perform', 1), ('many', 1), ('aspect', 1)]
[('sharepoint', 4), ('mvp', 1), ('provide', 1), ('ultimate', 1), ('introduction', 1), ('beginning', 1), ('building', 1), ('team', 1), ('solution', 1), ('provides', 1), ('information', 1), ('worker', 1), ('site', 1), ('manager', 1)]
[('information', 2), ('security', 2), ('growing', 1), ('imperative', 1), ('need', 1), ('effective', 1), ('governance', 1), ('monotonous', 1), ('regularity', 1), ('headline', 1), ('announce', 1), ('spectacular', 1), ('failure', 1), ('mounting', 1), ('loss', 1), ('succession', 1), ('corporate', 1), ('debacle', 1)]
[('security', 2), ('technology', 2), ('window', 1), ('concept', 1), ('beginner', 1), ('complex', 1), ('topic', 1), ('especially', 1), ('new', 1), ('field', 1), ('full', 1), ('color', 1), ('book', 1), ('focus', 1), ('microsoft', 1), ('associate', 1)]
[('autocad', 2), ('civil', 2), ('start', 1), ('designing', 1), ('today', 1), ('hand', 1), ('beginner', 1), ('guide', 1), ('essential', 1), ('get', 1), ('quickly', 1), ('speed', 1), ('feature', 1), ('function', 1)]
[('supposed', 1), ('age', 1), ('instant', 1), ('constant', 1), ('communication', 1), ('right', 1), ('business', 1), ('belong', 1), ('organization', 1), ('cause', 1), ('want', 1), ('promote', 1), ('looking', 1), ('flyer', 1), ('brochure', 1), ('say', 1)]
[('soup', 1), ('nut', 1), ('guide', 1), ('everything', 1), ('indesign', 1), ('user', 1), ('need', 1), ('know', 1), ('anticipated', 1), ('c', 1), ('release', 1), ('packed', 1), ('thousand', 1), ('page', 1), ('real', 1), ('world', 1), ('insight', 1), ('valuable', 1), ('guidance', 1), ('authoritative', 1), ('resource', 1)]
[('window', 2), ('eight', 1), ('reference', 1), ('fully', 1), ('revised', 1), ('include', 1), ('new', 1), ('feature', 1), ('update', 1), ('operating', 1), ('system', 1), ('world', 1), ('provides', 1), ('platform', 1), ('upon', 1), ('essential', 1), ('computing', 1), ('activity', 1), ('occur', 1)]
[('unix', 3), ('manage', 1), ('file', 1), ('set', 1), ('network', 1), ('go', 1), ('online', 1), ('dummy', 1), ('standard', 1), ('beginning', 1), ('reference', 1), ('nearly', 1), ('ten', 1), ('year', 1), ('latest', 1), ('edition', 1), ('continues', 1)]
[('free', 2), ('web', 2), ('based', 2), ('zoho', 2), ('way', 1), ('started', 1), ('new', 1), ('productivity', 1), ('collaboration', 1), ('tool', 1), ('cool', 1), ('alternative', 1), ('microsoft', 1), ('office', 1), ('known', 1), ('cloud', 1), ('computing', 1), ('totally', 1)]
[('become', 2), ('learning', 2), ('machine', 1), ('pro', 1), ('google', 1), ('tensorflow', 1), ('darling', 1), ('financial', 1), ('firm', 1), ('research', 1), ('organization', 1), ('technology', 1), ('intimidating', 1), ('curve', 1), ('steep', 1), ('luckily', 1)]
[('typepad', 2), ('blog', 2), ('start', 1), ('use', 1), ('customize', 1), ('today', 1), ('known', 1), ('intuitive', 1), ('user', 1), ('interface', 1), ('built', 1), ('seo', 1), ('feature', 1), ('optional', 1), ('advertising', 1), ('free', 1), ('professionally', 1), ('designed', 1), ('template', 1), ('fully', 1), ('hosted', 1)]
[('iphone', 3), ('apple', 1), ('represents', 1), ('radical', 1), ('departure', 1), ('previous', 1), ('model', 1), ('globally', 1), ('known', 1), ('need', 1), ('book', 1), ('help', 1), ('user', 1), ('navigate', 1), ('new', 1)]
[('dan', 2), ('gookin', 2), ('get', 1), ('speed', 1), ('work', 1), ('new', 1), ('feature', 1), ('word', 1), ('bestselling', 1), ('quintessential', 1), ('dummy', 1), ('author', 1), ('employ', 1), ('usual', 1), ('fun', 1), ('friendly', 1)]
[('facial', 3), ('animation', 2), ('modeling', 2), ('de', 1), ('facto', 1), ('official', 1), ('source', 1), ('updated', 1), ('want', 1), ('character', 1), ('high', 1), ('level', 1), ('achieved', 1), ('today', 1), ('film', 1), ('game', 1), ('stop', 1), ('staring', 1)]
[('canon', 3), ('new', 2), ('dslr', 2), ('camera', 2), ('first', 2), ('full', 1), ('color', 1), ('guide', 1), ('exciting', 1), ('whether', 1), ('simply', 1), ('tool', 1), ('photography', 1), ('rebel', 1), ('countless', 1), ('capability', 1)]
[('security', 3), ('bruce', 2), ('schneier', 2), ('offer', 2), ('expert', 2), ('achieving', 2), ('bestselling', 1), ('author', 1), ('guidance', 1), ('network', 1), ('internationally', 1), ('recognized', 1), ('computer', 1), ('practical', 1), ('straightforward', 1), ('guide', 1)]
[('visual', 3), ('studio', 3), ('depth', 1), ('coverage', 1), ('major', 1), ('revamp', 1), ('professional', 1), ('leading', 1), ('pro', 1), ('guide', 1), ('new', 1), ('upgraded', 1), ('feature', 1), ('microsoft', 1), ('unique', 1), ('ide', 1), ('centric', 1)]
[('design', 2), ('website', 2), ('learn', 1), ('maintain', 1), ('content', 1), ('rich', 1), ('visual', 1), ('way', 1), ('percent', 1), ('market', 1), ('share', 1), ('dreamweaver', 1), ('preferred', 1), ('tool', 1), ('professional', 1), ('production', 1)]
[('game', 2), ('minecraft', 2), ('create', 2), ('craft', 1), ('amazing', 1), ('consists', 1), ('player', 1), ('using', 1), ('avatar', 1), ('destroy', 1), ('various', 1), ('type', 1), ('block', 1), ('form', 1), ('fantastic', 1), ('structure', 1), ('artwork', 1)]
[('excel', 3), ('formula', 2), ('maximize', 1), ('power', 1), ('reference', 1), ('john', 1), ('walkenbach', 1), ('known', 1), ('mr', 1), ('spreadsheet', 1), ('master', 1), ('deciphering', 1), ('complex', 1), ('technical', 1), ('topic', 1)]
[('high', 2), ('speed', 2), ('access', 2), ('cable', 2), ('inside', 1), ('look', 1), ('written', 1), ('industry', 1), ('modem', 1), ('emerged', 1), ('leading', 1), ('consumer', 1), ('choice', 1), ('internet', 1), ('outpacing', 1), ('alternative', 1), ('digital', 1), ('subscriber', 1), ('line', 1), ('without', 1), ('raising', 1), ('issue', 1)]
[('strut', 2), ('open', 2), ('jakarta', 1), ('project', 1), ('provides', 1), ('source', 1), ('framework', 1), ('creating', 1), ('web', 1), ('application', 1), ('leverage', 1), ('java', 1), ('servlets', 1), ('javaserver', 1), ('page', 1), ('technology', 1), ('received', 1), ('developer', 1), ('support', 1), ('quickly', 1), ('becoming', 1), ('dominant', 1), ('actor', 1)]
[('problem', 2), ('cisco', 2), ('network', 1), ('designer', 1), ('administrator', 1), ('want', 1), ('campus', 1), ('lan', 1), ('run', 1), ('efficiently', 1), ('book', 1), ('provides', 1), ('tip', 1), ('technique', 1), ('using', 1), ('protocol', 1), ('analyzer', 1), ('tool', 1), ('recognize', 1), ('multiprotocol', 1), ('traffic', 1), ('pattern', 1), ('focus', 1), ('troubleshooting', 1), ('arise', 1), ('router', 1), ('inter', 1), ('operating', 1), ('many', 1)]
[('quicken', 2), ('year', 2), ('fun', 1), ('easy', 1), ('way', 1), ('started', 1), ('personal', 1), ('financial', 1), ('software', 1), ('fifteen', 1), ('million', 1), ('user', 1), ('bestseller', 1), ('updated', 1), ('throughout', 1), ('latest', 1), ('release', 1), ('help', 1), ('reader', 1), ('take', 1), ('control', 1), ('money', 1)]
[('practical', 1), ('guide', 1), ('cryptography', 1), ('use', 1), ('internet', 1), ('communication', 1), ('network', 1), ('overview', 1), ('take', 1), ('reader', 1), ('basic', 1), ('issue', 1), ('advanced', 1), ('concept', 1), ('cover', 1), ('level', 1), ('interest', 1), ('coverage', 1), ('includes', 1), ('key', 1)]
[('smart', 2), ('technology', 2), ('science', 2), ('independent', 1), ('living', 1), ('aging', 1), ('disability', 1), ('independence', 1), ('state', 1), ('brings', 1), ('together', 1), ('current', 1), ('research', 1), ('technological', 1), ('development', 1), ('engineering', 1), ('computer', 1), ('rehabilitation', 1)]
[('asp', 4), ('net', 4), ('dotnetnuke', 2), ('web', 2), ('professional', 1), ('portal', 1), ('popular', 1), ('open', 1), ('source', 1), ('application', 1), ('sweeping', 1), ('rank', 1), ('developer', 1), ('whether', 1), ('never', 1), ('programmed', 1), ('site', 1), ('experienced', 1)]
[('fun', 2), ('interactive', 1), ('way', 1), ('learn', 1), ('popular', 1), ('high', 1), ('level', 1), ('programming', 1), ('language', 1), ('graphic', 1), ('application', 1), ('unique', 1), ('hand', 1), ('approach', 1), ('learning', 1), ('make', 1), ('experience', 1), ('interesting', 1), ('offering', 1), ('opportunity', 1)]
[('server', 4), ('microsoft', 3), ('exchange', 3), ('building', 1), ('success', 1), ('seven', 1), ('jim', 1), ('mcbee', 1), ('fully', 1), ('updated', 1), ('advanced', 1), ('administration', 1), ('sp', 1), ('window', 1), ('starting', 1)]
[('delphi', 4), ('still', 1), ('best', 1), ('resource', 1), ('fully', 1), ('revised', 1), ('version', 1), ('book', 1), ('informant', 1), ('reader', 1), ('choice', 1), ('award', 1), ('looking', 1), ('capitalize', 1), ('powerful', 1), ('capability', 1), ('latest', 1), ('release', 1), ('mastering', 1)]
[('new', 1), ('edition', 1), ('bestseller', 1), ('cover', 1), ('latest', 1), ('advance', 1), ('web', 1), ('development', 1), ('html', 1), ('cs', 1), ('essential', 1), ('tool', 1), ('creating', 1), ('dynamic', 1), ('website', 1), ('boast', 1), ('update', 1), ('enhanced', 1), ('feature', 1), ('make', 1)]
[('show', 2), ('step', 2), ('visual', 1), ('learner', 1), ('prefer', 1), ('instruction', 1), ('something', 1), ('skip', 1), ('long', 1), ('winded', 1), ('explanation', 1), ('book', 1), ('open', 1), ('find', 1), ('clear', 1), ('screen', 1), ('shot', 1)]
[('profession', 2), ('fifty', 1), ('year', 1), ('birth', 1), ('corporate', 1), ('computing', 1), ('today', 1), ('still', 1), ('characterized', 1), ('project', 1), ('failure', 1), ('rate', 1), ('pretty', 1), ('scary', 1), ('come', 1), ('think', 1), ('either', 1), ('goblin', 1), ('cast', 1), ('spell', 1), ('whole', 1)]
[('eliminates', 1), ('lengthy', 1), ('introduction', 1), ('detailed', 1), ('explanation', 1), ('sidebar', 1), ('focusing', 1), ('new', 1), ('mac', 1), ('o', 1), ('user', 1), ('want', 1), ('clear', 1), ('instruction', 1), ('accomplish', 1), ('specific', 1), ('task', 1), ('easy', 1), ('navigate', 1), ('landscape', 1), ('layout', 1), ('featuring', 1), ('column', 1), ('design', 1)]
[('sql', 2), ('offer', 2), ('microsoft', 1), ('bestselling', 1), ('database', 1), ('manager', 1), ('server', 1), ('highly', 1), ('flexible', 1), ('customizable', 1), ('excellent', 1), ('support', 1), ('version', 1), ('several', 1), ('significant', 1), ('new', 1), ('capability', 1), ('book', 1), ('accurate', 1), ('expert', 1), ('coverage', 1), ('update', 1)]
[('qt', 3), ('build', 1), ('mobile', 1), ('application', 1), ('nokia', 1), ('phone', 1), ('using', 1), ('hot', 1), ('gui', 1), ('tool', 1), ('vital', 1), ('primer', 1), ('written', 1), ('developer', 1), ('involved', 1), ('latest', 1), ('release', 1), ('anyone', 1), ('wanting', 1), ('learn', 1), ('cutting', 1), ('edge', 1), ('programming', 1), ('environment', 1)]
[('powerpoint', 4), ('presentation', 2), ('fully', 1), ('updated', 1), ('guide', 1), ('creating', 1), ('dynamic', 1), ('dominates', 1), ('landscape', 1), ('change', 1), ('including', 1), ('availability', 1), ('online', 1), ('version', 1), ('user', 1), ('need', 1)]
[('iphone', 3), ('apps', 3), ('business', 2), ('create', 1), ('profitable', 1), ('sustainable', 1), ('developing', 1), ('marketing', 1), ('hot', 1), ('average', 1), ('app', 1), ('downloaded', 1), ('time', 1), ('mind', 1), ('starting', 1), ('application', 1), ('dummy', 1)]
[('use', 1), ('idea', 1), ('help', 1), ('make', 1), ('point', 1), ('create', 1), ('powerpoint', 1), ('presentation', 1), ('flash', 1), ('movie', 1), ('excel', 1), ('chart', 1), ('okay', 1), ('powerpointed', 1), ('right', 1), ('knew', 1), ('cool', 1), ('thing', 1)]
[('autocad', 4), ('ultimate', 1), ('reference', 1), ('tutorial', 1), ('software', 1), ('autodesk', 1), ('official', 1), ('press', 1), ('book', 1), ('help', 1), ('become', 1), ('lt', 1), ('expert', 1), ('fully', 1), ('updated', 1), ('cover', 1), ('new', 1), ('capability', 1), ('featuring', 1), ('popular', 1), ('empowering', 1)]
[('hacker', 2), ('anonymous', 2), ('thrilling', 1), ('exclusive', 1), ('exposè', 1), ('collective', 1), ('lulzsec', 1), ('first', 1), ('full', 1), ('account', 1), ('loosely', 1), ('assembled', 1), ('group', 1), ('scattered', 1), ('across', 1), ('globe', 1), ('formed', 1), ('new', 1), ('kind', 1), ('insurgency', 1), ('seized', 1), ('headline', 1), ('tortured', 1), ('fed', 1), ('ultimate', 1), ('betrayal', 1), ('eventually', 1), ('bring', 1), ('parmy', 1)]
[('fully', 2), ('comprehensive', 1), ('volume', 1), ('updated', 1), ('newest', 1), ('version', 1), ('microsoft', 1), ('revolutionary', 1), ('programming', 1), ('language', 1), ('change', 1), ('found', 1), ('bring', 1), ('java', 1), ('power', 1), ('million', 1), ('window', 1), ('programmer', 1), ('worldwide', 1), ('expertly', 1), ('crafted', 1), ('explanation', 1), ('insider', 1), ('tip', 1), ('hundred', 1), ('example', 1), ('book', 1), ('explains', 1), ('every', 1), ('aspect', 1)]
[('web', 3), ('php', 2), ('essential', 1), ('skill', 1), ('made', 1), ('easy', 1), ('mysql', 1), ('development', 1), ('beginner', 1), ('guide', 1), ('take', 1), ('building', 1), ('static', 1), ('page', 1), ('creating', 1), ('comprehensive', 1), ('database', 1), ('driven', 1), ('application', 1), ('book', 1), ('review', 1), ('html', 1), ('cs', 1), ('javascript', 1), ('explores', 1), ('structure', 1), ('control', 1), ('statement', 1), ('array', 1), ('function', 1), ('use', 1), ('form', 1), ('file', 1), ('handling', 1)]
[('ebay', 3), ('make', 2), ('big', 1), ('profit', 1), ('upfront', 1), ('investment', 1), ('thousand', 1), ('dollar', 1), ('per', 1), ('week', 1), ('little', 1), ('financial', 1), ('risk', 1), ('selling', 1), ('stuff', 1), ('start', 1), ('run', 1), ('consignment', 1), ('business', 1), ('explains', 1), ('locate', 1), ('work', 1), ('consignor', 1), ('successfully', 1), ('deal', 1), ('good', 1), ('want', 1), ('sell', 1), ('including', 1), ('collectible', 1), ('retail', 1)]
[('step', 2), ('accessible', 1), ('quick', 1), ('reference', 1), ('ideal', 1), ('job', 1), ('companion', 1), ('featuring', 1), ('easy', 1), ('find', 1), ('information', 1), ('task', 1), ('oriented', 1), ('format', 1), ('inside', 1), ('plenty', 1), ('configuration', 1), ('troubleshooting', 1), ('tip', 1), ('solution', 1), ('logically', 1), ('organized', 1), ('topic', 1), ('practical', 1), ('guidebook', 1), ('hand', 1), ('able', 1), ('diagnose', 1), ('fix', 1), ('network', 1)]
[('step', 2), ('chapter', 2), ('topic', 2), ('another', 1), ('release', 1), ('popular', 1), ('everything', 1), ('series', 1), ('friendly', 1), ('solution', 1), ('oriented', 1), ('book', 1), ('filled', 1), ('example', 1), ('writing', 1), ('html', 1), ('code', 1), ('begin', 1), ('specific', 1), ('covered', 1), ('within', 1), ('accompanied', 1), ('solid', 1), ('easy', 1), ('follow', 1), ('walkthrough', 1), ('process', 1)]
[('robot', 3), ('create', 1), ('powerful', 1), ('battling', 1), ('start', 1), ('finish', 1), ('using', 1), ('easy', 1), ('follow', 1), ('manual', 1), ('robotics', 1), ('expert', 1), ('pete', 1), ('mile', 1), ('tom', 1), ('carroll', 1), ('explain', 1), ('science', 1), ('technology', 1), ('behind', 1), ('show', 1), ('material', 1), ('need', 1), ('build', 1), ('program', 1), ('home', 1), ('school', 1), ('competition', 1)]
[('security', 3), ('plan', 2), ('proactively', 1), ('implement', 1), ('successful', 1), ('disaster', 1), ('recovery', 1), ('breach', 1), ('occurs', 1), ('including', 1), ('hand', 1), ('checklist', 1), ('design', 1), ('map', 1), ('sample', 1), ('expert', 1), ('resource', 1), ('crucial', 1), ('keeping', 1), ('network', 1), ('safe', 1), ('outside', 1), ('intrusion', 1)]
[('learn', 3), ('advanced', 2), ('technique', 2), ('google', 2), ('search', 2), ('maximizing', 1), ('engine', 1), ('extract', 1), ('best', 1), ('content', 1), ('without', 1), ('complicated', 1), ('code', 1), ('go', 1), ('hood', 1), ('wide', 1), ('range', 1), ('web', 1), ('practical', 1), ('example', 1), ('ideal', 1), ('resource', 1), ('student', 1), ('librarian', 1), ('journalist', 1), ('researcher', 1), ('businesspeople', 1)]
[('device', 2), ('handheld', 1), ('help', 1), ('easy', 1), ('follow', 1), ('guide', 1), ('everything', 1), ('palm', 1), ('powered', 1), ('sixth', 1), ('edition', 1), ('explains', 1), ('master', 1), ('latest', 1), ('feature', 1), ('tool', 1), ('shortcut', 1), ('clear', 1), ('straightforward', 1), ('language', 1), ('learn', 1), ('configure', 1), ('pda', 1), ('preference', 1), ('hotsync', 1), ('pc', 1), ('schedule', 1), ('appointment', 1)]
[('provides', 1), ('developer', 1), ('complete', 1), ('roadmap', 1), ('building', 1), ('large', 1), ('scale', 1), ('ee', 1), ('application', 1), ('cohesive', 1), ('approach', 1), ('producing', 1), ('optimal', 1), ('solution', 1), ('rigorous', 1), ('life', 1), ('cycle', 1), ('management', 1), ('technique', 1), ('inception', 1), ('deployment', 1), ('includes', 1), ('sample', 1), ('web', 1), ('site', 1), ('hosted', 1), ('author', 1), ('feature', 1), ('real', 1), ('world', 1), ('demonstration', 1), ('book', 1)]
[('service', 2), ('content', 2), ('author', 1), ('mitch', 1), ('tulloch', 1), ('mct', 1), ('mcse', 1), ('skillfully', 1), ('guide', 1), ('reader', 1), ('administration', 1), ('web', 1), ('security', 1), ('application', 1), ('pool', 1), ('performance', 1), ('learn', 1), ('valuable', 1), ('configuration', 1), ('maintenance', 1), ('management', 1), ('technique', 1), ('manage', 1), ('ftp', 1), ('smtp', 1), ('nntp', 1), ('easily', 1), ('troubleshoot', 1), ('documentation', 1), ('development', 1), ('issue', 1)]
[('oracle', 2), ('troubleshoot', 1), ('tune', 1), ('optimize', 1), ('database', 1), ('efficiently', 1), ('successfully', 1), ('every', 1), ('time', 1), ('book', 1), ('explains', 1), ('take', 1), ('full', 1), ('advantage', 1), ('revolutionary', 1), ('wait', 1), ('interface', 1), ('quickly', 1), ('pinpoint', 1), ('solve', 1), ('core', 1), ('problem', 1), ('bottleneck', 1), ('increase', 1), ('productivity', 1), ('exponentially', 1)]
[('window', 4), ('server', 3), ('maintain', 1), ('dynamic', 1), ('reliable', 1), ('secure', 1), ('environment', 1), ('exploit', 1), ('powerful', 1), ('management', 1), ('networking', 1), ('security', 1), ('tool', 1), ('using', 1), ('comprehensive', 1), ('information', 1), ('contained', 1), ('real', 1), ('world', 1), ('resource', 1), ('written', 1), ('seasoned', 1), ('system', 1), ('engineer', 1), ('microsoft', 1), ('administration', 1), ('lay', 1)]
[('sap', 4), ('erp', 3), ('sale', 3), ('distribution', 2), ('hand', 1), ('guide', 1), ('written', 1), ('senior', 1), ('consultant', 1), ('glynn', 1), ('williams', 1), ('implementing', 1), ('packed', 1), ('tested', 1), ('time', 1), ('saving', 1), ('tip', 1), ('advice', 1), ('learn', 1), ('use', 1), ('central', 1), ('component', 1), ('create', 1), ('document', 1), ('contract', 1), ('control', 1), ('material', 1), ('customer', 1), ('master', 1), ('data', 1), ('schedule', 1)]
[('fixed', 3), ('mobile', 3), ('convergence', 2), ('practical', 1), ('guide', 1), ('business', 1), ('technology', 1), ('written', 1), ('telecommunication', 1), ('expert', 1), ('explains', 1), ('consolidate', 1), ('wireless', 1), ('wireline', 1), ('network', 1), ('seamless', 1), ('environment', 1), ('enabling', 1), ('uniform', 1), ('converged', 1), ('communication', 1), ('experience', 1), ('learn', 1), ('create', 1), ('fmc', 1), ('based', 1)]
[('solution', 3), ('php', 3), ('programming', 3), ('find', 1), ('real', 1), ('world', 1), ('problem', 1), ('simplify', 1), ('shorten', 1), ('application', 1), ('development', 1), ('cycle', 1), ('using', 1), ('depth', 1), ('information', 1), ('contained', 1), ('hand', 1), ('guide', 1), ('clearly', 1), ('lay', 1), ('challenge', 1), ('alongside', 1), ('practical', 1), ('functioning', 1), ('code', 1), ('detailed', 1), ('explanation', 1), ('usage', 1)]
[('exam', 3), ('sql', 2), ('server', 2), ('need', 1), ('complete', 1), ('coverage', 1), ('three', 1), ('microsoft', 1), ('certified', 1), ('professional', 1), ('database', 1), ('administration', 1), ('comprehensive', 1), ('volume', 1), ('written', 1), ('expert', 1), ('mcitp', 1), ('definitive', 1), ('guide', 1), ('feature', 1), ('learning', 1), ('objective', 1), ('beginning', 1), ('chapter', 1), ('tip', 1), ('practice', 1), ('question', 1)]
[('programming', 4), ('java', 2), ('recipe', 2), ('ultimate', 1), ('guide', 1), ('legendary', 1), ('author', 1), ('herb', 1), ('schildt', 1), ('share', 1), ('favorite', 1), ('technique', 1), ('high', 1), ('powered', 1), ('cookbook', 1), ('organized', 1), ('quick', 1), ('reference', 1), ('show', 1), ('accomplish', 1), ('practical', 1), ('task', 1), ('begin', 1), ('list', 1), ('key', 1), ('ingredient', 1), ('class', 1)]
[('blog', 4), ('web', 3), ('incorporate', 1), ('hottest', 1), ('new', 1), ('technology', 1), ('everything', 1), ('make', 1), ('easy', 1), ('choose', 1), ('blogging', 1), ('tool', 1), ('best', 1), ('master', 1), ('basic', 1), ('design', 1), ('template', 1), ('manipulation', 1), ('learn', 1), ('add', 1), ('different', 1), ('service', 1), ('including', 1), ('image', 1), ('video', 1), ('audio', 1), ('forum', 1), ('tag', 1)]
[('oracle', 4), ('dba', 2), ('fully', 2), ('database', 2), ('new', 2), ('essential', 1), ('resource', 1), ('updated', 1), ('expanded', 1), ('manage', 1), ('flexible', 1), ('highly', 1), ('available', 1), ('help', 1), ('expert', 1), ('information', 1), ('contained', 1), ('exclusive', 1), ('press', 1), ('guide', 1), ('revised', 1), ('cover', 1), ('every', 1), ('feature', 1), ('utility', 1), ('handbook', 1), ('show', 1), ('perform', 1), ('installation', 1), ('upgrade', 1)]
[('sharepoint', 4), ('server', 4), ('set', 2), ('microsoft', 2), ('office', 2), ('step', 2), ('guide', 2), ('administer', 1), ('environment', 1), ('started', 1), ('quickly', 1), ('easily', 1), ('help', 1), ('using', 1), ('clear', 1), ('instruction', 1), ('beginner', 1), ('show', 1), ('configure', 1), ('collect', 1), ('store', 1), ('data', 1)]
[('sap', 1), ('installation', 1), ('serving', 1), ('million', 1)]
[('guide', 2), ('coreldraw', 2), ('style', 2), ('corel', 1), ('authorized', 1), ('create', 1), ('fine', 1), ('art', 1), ('commercial', 1), ('graphic', 1), ('powerful', 1), ('tool', 1), ('official', 1), ('show', 1), ('visual', 1), ('message', 1), ('across', 1), ('impact', 1), ('edit', 1), ('photo', 1), ('build', 1), ('captivating', 1), ('layout', 1), ('compose', 1), ('scene', 1), ('clean', 1), ('attention', 1), ('getting', 1), ('learn', 1), ('illustrate', 1)]
[('web', 3), ('enterprise', 2), ('integrate', 1), ('trend', 1), ('technology', 1), ('written', 1), ('team', 1), ('expert', 1), ('community', 1), ('oracle', 1), ('corporation', 1), ('innovative', 1), ('guide', 1), ('provides', 1), ('blueprint', 1), ('leveraging', 1), ('new', 1), ('culture', 1), ('participation', 1), ('environment', 1), ('reshaping', 1), ('business', 1), ('offer', 1), ('proven', 1), ('strategy', 1), ('successful', 1)]
[('annually', 2), ('virtualization', 2), ('organization', 2), ('cost', 2), ('estimated', 1), ('million', 1), ('unit', 1), ('obsolete', 1), ('electronics', 1), ('scrapped', 1), ('save', 1), ('electricity', 1), ('per', 1), ('server', 1), ('book', 1), ('cover', 1), ('engery', 1), ('saving', 1), ('technique', 1), ('green', 1), ('reduce', 1), ('operation', 1), ('increase', 1), ('employee', 1), ('retention', 1), ('improve', 1)]
[('net', 4), ('asp', 3), ('essential', 1), ('skill', 1), ('made', 1), ('easy', 1), ('learn', 1), ('create', 1), ('database', 1), ('driven', 1), ('website', 1), ('using', 1), ('beginner', 1), ('guide', 1), ('show', 1), ('need', 1), ('know', 1), ('build', 1), ('rich', 1), ('internet', 1), ('application', 1), ('quickly', 1), ('easily', 1), ('find', 1), ('detail', 1), ('web', 1), ('control', 1), ('cs', 1), ('event', 1), ('handler', 1), ('validation', 1), ('sql', 1), ('ado', 1), ('data', 1), ('binding', 1), ('text', 1)]
[('information', 2), ('content', 2), ('management', 2), ('step', 2), ('control', 1), ('intellectual', 1), ('property', 1), ('avoid', 1), ('overload', 1), ('glean', 1), ('actionable', 1), ('business', 1), ('digital', 1), ('landfill', 1), ('deploying', 1), ('flexible', 1), ('cost', 1), ('effective', 1), ('framework', 1), ('across', 1), ('entire', 1), ('organization', 1), ('transforming', 1), ('infoglut', 1), ('pragmatic', 1), ('strategy', 1), ('oracle', 1), ('enterprise', 1), ('detail', 1)]
[('soa', 5), ('book', 2), ('value', 2), ('integration', 2), ('foreword', 1), ('ray', 1), ('harishankar', 1), ('ibm', 1), ('fellow', 1), ('many', 1), ('market', 1), ('topic', 1), ('business', 1), ('technology', 1), ('focus', 1), ('key', 1), ('technical', 1), ('excellent', 1), ('job', 1), ('describing', 1), ('based', 1), ('application', 1), ('clarifying', 1), ('relationship', 1), ('pattern', 1)]
[('job', 3), ('land', 1), ('want', 1), ('computer', 1), ('career', 1), ('guide', 1), ('packed', 1), ('interviewing', 1), ('technique', 1), ('thousand', 1), ('answer', 1), ('toughest', 1), ('interview', 1), ('question', 1), ('updated', 1), ('cover', 1), ('new', 1), ('technology', 1), ('online', 1), ('sap', 1), ('linux', 1), ('java', 1), ('servlets', 1), ('competitive', 1), ('edge', 1), ('today', 1), ('market', 1), ('best', 1), ('selling', 1), ('book', 1)]
[('oracle', 6), ('general', 3), ('ledger', 3), ('business', 2), ('suite', 2), ('master', 1), ('maintain', 1), ('centralized', 1), ('highly', 1), ('automated', 1), ('processing', 1), ('platform', 1), ('across', 1), ('fully', 1), ('integrated', 1), ('set', 1), ('application', 1), ('using', 1), ('press', 1), ('guide', 1), ('explains', 1), ('utilize', 1), ('distribute', 1), ('timely', 1), ('accurate', 1), ('financial', 1), ('information', 1)]
[('oracle', 5), ('business', 2), ('suite', 2), ('procure', 2), ('pay', 2), ('end', 2), ('step', 2), ('master', 1), ('drive', 1), ('better', 1), ('decision', 1), ('making', 1), ('maximize', 1), ('asset', 1), ('usage', 1), ('comprehensive', 1), ('procurement', 1), ('solution', 1), ('press', 1), ('guide', 1), ('detail', 1), ('streamline', 1), ('optimize', 1), ('enterprise', 1), ('acquisition', 1), ('cycle', 1), ('using', 1), ('set', 1)]
[('oracle', 4), ('data', 3), ('guard', 2), ('master', 1), ('provide', 1), ('superior', 1), ('protection', 1), ('availability', 1), ('disaster', 1), ('recovery', 1), ('using', 1), ('tested', 1), ('technique', 1), ('press', 1), ('guide', 1), ('cowritten', 1), ('team', 1), ('expert', 1), ('handbook', 1), ('provides', 1), ('sound', 1), ('architectural', 1), ('foundation', 1), ('along', 1), ('best', 1), ('practice', 1), ('configuration', 1), ('monitoring', 1), ('maintenance', 1)]
[('hyper', 3), ('virtualization', 3), ('microsoft', 2), ('step', 2), ('implement', 1), ('solution', 1), ('show', 1), ('deploy', 1), ('next', 1), ('generation', 1), ('hypervisor', 1), ('based', 1), ('server', 1), ('technology', 1), ('corporate', 1), ('environment', 1), ('guideline', 1), ('getting', 1), ('running', 1), ('followed', 1), ('best', 1), ('practice', 1), ('building', 1), ('larger', 1)]
[('visual', 3), ('studio', 3), ('microsoft', 2), ('take', 1), ('programming', 1), ('skill', 1), ('top', 1), ('tier', 1), ('experienced', 1), ('developer', 1), ('want', 1), ('dive', 1), ('deeply', 1), ('author', 1), ('provide', 1), ('practical', 1), ('guidance', 1), ('combined', 1), ('real', 1), ('world', 1), ('applicability', 1), ('best', 1), ('uncovered', 1), ('buy', 1), ('book', 1), ('michelle', 1), ('clarke', 1), ('program', 1), ('manager', 1)]
[('event', 2), ('processing', 2), ('implement', 1), ('effective', 1), ('solution', 1), ('business', 1), ('professional', 1), ('understand', 1), ('benefit', 1), ('corporate', 1), ('agility', 1), ('fast', 1), ('response', 1), ('emerging', 1), ('threat', 1), ('opportunity', 1), ('many', 1), ('le', 1), ('familiar', 1), ('technique', 1), ('available', 1), ('help', 1), ('accomplish', 1), ('aspiration', 1), ('emerged', 1)]
[('step', 2), ('color', 2), ('using', 2), ('full', 1), ('graphic', 1), ('started', 1), ('window', 1), ('right', 1), ('away', 1), ('quickstep', 1), ('way', 1), ('screenshots', 1), ('streamlined', 1), ('explanation', 1), ('show', 1), ('use', 1), ('new', 1), ('improved', 1), ('feature', 1), ('sleek', 1), ('operating', 1), ('system', 1), ('find', 1), ('tip', 1), ('customizing', 1), ('desktop', 1), ('managing', 1), ('file', 1), ('connecting', 1), ('internet', 1), ('email', 1), ('adding', 1)]
[('solution', 2), ('problem', 2), ('ready', 2), ('php', 2), ('power', 1), ('real', 1), ('world', 1), ('practical', 1), ('guide', 1), ('give', 1), ('run', 1), ('function', 1), ('solving', 1), ('main', 1), ('encounter', 1), ('building', 1), ('dynamic', 1), ('website', 1), ('every', 1), ('plug', 1), ('book', 1), ('offer', 1), ('complete', 1), ('working', 1), ('result', 1), ('achieve', 1), ('right', 1), ('away', 1), ('using', 1), ('made', 1), ('code', 1), ('simply', 1), ('drop', 1)]
[('javascript', 2), ('essential', 1), ('resource', 1), ('fully', 1), ('updated', 1), ('design', 1), ('debug', 1), ('publish', 1), ('high', 1), ('performance', 1), ('web', 1), ('page', 1), ('application', 1), ('using', 1), ('tested', 1), ('technique', 1), ('best', 1), ('practice', 1), ('expert', 1), ('developer', 1), ('new', 1), ('edition', 1), ('comprehensive', 1), ('guide', 1), ('thoroughly', 1), ('revised', 1), ('expanded', 1), ('cover', 1), ('latest', 1), ('feature', 1), ('tool', 1), ('programming', 1)]
[('md', 3), ('master', 2), ('data', 2), ('deploy', 1), ('maintain', 1), ('integrated', 1), ('architecture', 1), ('harness', 1), ('grow', 1), ('revenue', 1), ('reducing', 1), ('administrative', 1), ('cost', 1), ('thoroughly', 1), ('revised', 1), ('cover', 1), ('latest', 1), ('feature', 1), ('microsoft', 1), ('sql', 1), ('server', 1), ('service', 1), ('second', 1), ('edition', 1), ('show', 1), ('implement', 1), ('manage', 1), ('centralized', 1), ('customer', 1), ('focused', 1), ('framework', 1), ('see', 1)]
[('mysql', 4), ('workbench', 3), ('database', 3), ('modeling', 2), ('oracle', 1), ('press', 1), ('guide', 1), ('explains', 1), ('design', 1), ('model', 1), ('data', 1), ('development', 1), ('help', 1), ('developer', 1), ('learn', 1), ('effectively', 1), ('use', 1), ('powerful', 1), ('product', 1), ('reverse', 1), ('engineering', 1), ('interaction', 1), ('without', 1), ('writing', 1), ('sql', 1), ('statement', 1)]
[('excel', 3), ('qi', 2), ('macro', 2), ('maximize', 1), ('speed', 1), ('quality', 1), ('productivity', 1), ('profit', 1), ('breakthrough', 1), ('improvement', 1), ('finding', 1), ('invisible', 1), ('low', 1), ('hanging', 1), ('fruit', 1), ('reveals', 1), ('proven', 1), ('technique', 1), ('identifying', 1), ('analyzing', 1), ('data', 1), ('lead', 1), ('immediate', 1), ('result', 1), ('practical', 1), ('guide', 1), ('focus', 1), ('using', 1), ('widely', 1), ('used', 1)]
[('application', 3), ('enterprise', 2), ('java', 2), ('ee', 2), ('create', 1), ('next', 1), ('generation', 1), ('build', 1), ('distribute', 1), ('business', 1), ('web', 1), ('target', 1), ('desktop', 1), ('mobile', 1), ('device', 1), ('cowritten', 1), ('netbeans', 1), ('ide', 1), ('expert', 1), ('html', 1), ('development', 1), ('fully', 1), ('explains', 1), ('cutting', 1), ('edge', 1), ('highly', 1), ('responsive', 1), ('design', 1), ('tool', 1), ('strategy', 1), ('find', 1), ('navigate', 1)]
[('quickbooks', 5), ('business', 4), ('proadvisors', 2), ('best', 2), ('small', 2), ('set', 1), ('work', 1), ('way', 1), ('reveal', 1), ('practice', 1), ('customizing', 1), ('using', 1), ('financial', 1), ('software', 1), ('guide', 1), ('take', 1), ('guesswork', 1), ('setting', 1), ('running', 1), ('worked', 1)]
[('sql', 3), ('fully', 1), ('revised', 1), ('self', 1), ('paced', 1), ('learning', 1), ('tool', 1), ('lay', 1), ('necessary', 1), ('step', 1), ('quickly', 1), ('easily', 1), ('start', 1), ('writing', 1), ('program', 1), ('thoroughly', 1), ('updated', 1), ('reflect', 1), ('recent', 1), ('ansi', 1), ('iso', 1), ('standard', 1), ('beginner', 1), ('guide', 1), ('fourth', 1), ('edition', 1), ('running', 1), ('programming', 1), ('right', 1), ('away', 1), ('clear', 1), ('tutorial', 1), ('annotated', 1), ('code', 1), ('proven', 1)]
[('certification', 4), ('comptia', 3), ('mike', 2), ('meyers', 2), ('network', 2), ('passport', 2), ('bestselling', 1), ('author', 1), ('training', 1), ('expert', 1), ('update', 1), ('give', 1), ('concise', 1), ('focused', 1), ('coverage', 1), ('new', 1), ('exam', 1), ('fifth', 1), ('edition', 1), ('name', 1), ('professional', 1), ('provides', 1), ('intensive', 1), ('focus', 1)]
[('red', 5), ('hat', 5), ('linux', 3), ('enterprise', 2), ('edition', 2), ('study', 2), ('guide', 2), ('cover', 2), ('certified', 2), ('rhcsa', 2), ('rhce', 2), ('based', 1), ('new', 1), ('bestselling', 1), ('updated', 1), ('system', 1), ('administrator', 1), ('engineer', 1), ('exam', 1), ('certification', 1), ('th', 1), ('fully', 1), ('revised', 1), ('recently', 1), ('released', 1)]
[('unix', 2), ('mac', 2), ('o', 2), ('user', 2), ('useful', 1), ('guide', 1), ('hundred', 1), ('high', 1), ('quality', 1), ('example', 1), ('beneath', 1), ('stunning', 1), ('graphical', 1), ('interface', 1), ('gui', 1), ('powerful', 1), ('operating', 1), ('system', 1), ('created', 1), ('unmatched', 1), ('clarity', 1), ('insight', 1)]
[('exam', 4), ('practice', 3), ('test', 2), ('virtual', 2), ('machine', 2), ('ex', 2), ('lab', 2), ('real', 1), ('first', 1), ('rhcsa', 1), ('rhce', 1), ('red', 1), ('hat', 1), ('linux', 1), ('certification', 1), ('feature', 1), ('hand', 1), ('four', 1), ('complete', 1), ('three', 1), ('help', 1), ('understand', 1), ('material', 1), ('accompanied', 1), ('depth', 1), ('answer', 1), ('explanation', 1)]
[('full', 2), ('color', 2), ('step', 2), ('release', 2), ('spreadsheet', 2), ('application', 2), ('guide', 1), ('new', 1), ('world', 1), ('popular', 1), ('running', 1), ('excel', 1), ('right', 1), ('away', 1), ('quickstep', 1), ('way', 1), ('screenshots', 1), ('every', 1), ('page', 1), ('clear', 1), ('instruction', 1), ('make', 1), ('easy', 1), ('use', 1), ('latest', 1), ('microsoft', 1), ('powerful', 1), ('follow', 1), ('along', 1), ('quickly', 1)]
[('sharepoint', 4), ('microsoft', 2), ('maximize', 1), ('written', 1), ('former', 1), ('member', 1), ('development', 1), ('team', 1), ('everything', 1), ('show', 1), ('latest', 1), ('release', 1), ('dynamic', 1), ('business', 1), ('collaboration', 1), ('platform', 1), ('learn', 1), ('set', 1), ('site', 1), ('use', 1), ('document', 1), ('management', 1), ('wikis', 1), ('taxonomy', 1), ('blog', 1)]
[('nbsp', 2), ('project', 2), ('digital', 1), ('version', 1), ('printed', 1), ('book', 1), ('copyright', 1), ('adrenaline', 1), ('junky', 1), ('dead', 1), ('fish', 1), ('slut', 1), ('true', 1), ('believer', 1), ('lewis', 1), ('clark', 1), ('template', 1), ('zombie', 1), ('developer', 1), ('tester', 1), ('manager', 1)]
[('programming', 3), ('python', 2), ('introduction', 2), ('robert', 2), ('today', 1), ('anyone', 1), ('scientific', 1), ('technical', 1), ('discipline', 1), ('need', 1), ('skill', 1), ('ideal', 1), ('first', 1), ('language', 1), ('best', 1), ('guide', 1), ('learning', 1), ('princeton', 1), ('university', 1), ('sedgewick', 1), ('kevin', 1), ('wayne', 1), ('dondero', 1), ('crafted', 1), ('accessible', 1), ('interdisciplinary', 1)]
[('nbsp', 4), ('cisa', 1), ('exam', 1), ('prep', 1), ('certified', 1), ('information', 1), ('system', 1), ('auditor', 1), ('michael', 1), ('gregg', 1), ('complete', 1), ('certification', 1), ('solution', 1), ('smart', 1), ('way', 1), ('study', 1), ('book', 1), ('learn', 1), ('approach', 1), ('audit', 1), ('process', 1), ('isaca', 1), ('view', 1)]
[('data', 4), ('spark', 2), ('big', 2), ('aven', 2), ('heart', 1), ('today', 1), ('revolution', 1), ('helping', 1), ('professional', 1), ('supercharge', 1), ('efficiency', 1), ('performance', 1), ('wide', 1), ('range', 1), ('processing', 1), ('analytics', 1), ('task', 1), ('guide', 1), ('expert', 1), ('jeffrey', 1), ('cover', 1), ('need', 1), ('know', 1), ('leverage', 1), ('together', 1), ('extension', 1), ('subprojects', 1), ('wider', 1), ('ecosystem', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('step', 3), ('sharepoint', 2), ('smart', 1), ('way', 1), ('learn', 1), ('microsoft', 1), ('time', 1), ('experience', 1), ('learning', 1), ('made', 1), ('easy', 1), ('quickly', 1), ('teach', 1), ('boost', 1), ('team', 1), ('collaboration', 1), ('set', 1), ('pace', 1), ('building', 1), ('practicing', 1)]
[('hour', 2), ('step', 2), ('session', 1), ('le', 1), ('sam', 1), ('teach', 1), ('go', 1), ('help', 1), ('new', 1), ('experienced', 1), ('programmer', 1), ('build', 1), ('software', 1), ('simpler', 1), ('reliable', 1), ('far', 1), ('scalable', 1), ('book', 1), ('straightforward', 1), ('approach', 1), ('guide', 1)]
[('ebook', 2), ('book', 2), ('nbsp', 2), ('version', 1), ('printed', 1), ('make', 1), ('new', 1), ('amazon', 1), ('kindletm', 1), ('reader', 1), ('play', 1), ('medium', 1), ('free', 1), ('content', 1), ('uncover', 1), ('powerful', 1), ('little', 1), ('known', 1), ('kindle', 1), ('feature', 1), ('love', 1), ('learn', 1)]
[('bootstrap', 3), ('hour', 2), ('learn', 1), ('create', 1), ('looking', 1), ('responsive', 1), ('web', 1), ('site', 1), ('nbsp', 1), ('lesson', 1), ('le', 1), ('sam', 1), ('teach', 1), ('help', 1), ('use', 1), ('free', 1), ('open', 1), ('source', 1), ('framework', 1), ('quickly', 1), ('build', 1), ('website', 1)]
[('spreadsheet', 4), ('google', 2), ('web', 2), ('ebook', 1), ('version', 1), ('printed', 1), ('book', 1), ('new', 1), ('based', 1), ('application', 1), ('giving', 1), ('microsoft', 1), ('excel', 1), ('run', 1), ('money', 1), ('create', 1), ('complex', 1), ('online', 1), ('using', 1)]
[('print', 2), ('printer', 2), ('want', 1), ('something', 1), ('nbsp', 1), ('right', 1), ('practically', 1), ('object', 1), ('imagine', 1), ('toy', 1), ('gadget', 1), ('replacement', 1), ('part', 1), ('beyond', 1), ('need', 1), ('simpler', 1), ('cheaper', 1)]
[('blockchain', 2), ('throughout', 2), ('development', 1), ('entering', 1), ('period', 1), ('explosive', 1), ('growth', 1), ('real', 1), ('application', 1), ('gain', 1), ('traction', 1), ('multiple', 1), ('industry', 1), ('cryptocurrencies', 1), ('earn', 1), ('greater', 1), ('acceptance', 1), ('traditional', 1), ('financial', 1), ('sector', 1), ('first', 1), ('time', 1), ('comprehensive', 1), ('guide', 1), ('developing', 1), ('solution', 1), ('today', 1), ('advanced', 1)]
[('lightroom', 2), ('adobe', 1), ('photoshop', 1), ('truly', 1), ('awesome', 1), ('program', 1), ('primary', 1), ('editing', 1), ('tool', 1), ('many', 1), ('photographer', 1), ('today', 1), ('point', 1), ('realize', 1), ('thing', 1), ('need', 1), ('image', 1)]
[('microsoft', 2), ('expression', 2), ('web', 2), ('sp', 2), ('le', 1), ('time', 1), ('nbsp', 1), ('world', 1), ('expert', 1), ('complete', 1), ('practical', 1), ('guide', 1), ('succeeding', 1), ('insider', 1), ('jim', 1), ('cheshire', 1), ('present', 1), ('today', 1), ('best', 1), ('solution', 1), ('everything', 1)]
[('abstraction', 2), ('terry', 1), ('style', 1), ('always', 1), ('direct', 1), ('approachable', 1), ('pragmatic', 1), ('hard', 1), ('visualizing', 1), ('guide', 1), ('using', 1), ('rational', 1), ('software', 1), ('architect', 1), ('foreword', 1), ('grady', 1), ('booch', 1), ('ibm', 1)]
[('opengl', 2), ('high', 2), ('application', 2), ('open', 1), ('door', 1), ('world', 1), ('quality', 1), ('performance', 1), ('computer', 1), ('graphic', 1), ('preferred', 1), ('programming', 1), ('interface', 1), ('developing', 1), ('widely', 1), ('used', 1), ('video', 1), ('game', 1), ('development', 1), ('visualization', 1)]
[('web', 3), ('filemaker', 2), ('developer', 2), ('new', 2), ('publishing', 2), ('whether', 1), ('complete', 1), ('beginner', 1), ('looking', 1), ('put', 1), ('data', 1), ('online', 1), ('book', 1), ('part', 1), ('learn', 1), ('basic', 1), ('work', 1)]
[('thinking', 2), ('mac', 1), ('leopard', 1), ('ilife', 1), ('safari', 1), ('mail', 1), ('ichat', 1), ('rest', 1), ('nbsp', 1), ('need', 1), ('figure', 1), ('work', 1), ('together', 1), ('stop', 1), ('computer', 1), ('start', 1)]
[('visual', 1), ('quickstart', 1), ('guide', 1), ('quick', 1), ('easy', 1), ('way', 1), ('le', 1), ('arn', 1), ('full', 1), ('color', 1), ('amply', 1), ('illustrated', 1), ('accessible', 1), ('book', 1), ('teach', 1), ('reader', 1), ('essential', 1), ('skill', 1), ('necessary', 1), ('creating', 1), ('compelling', 1), ('movie', 1), ('imovie', 1), ('idvd', 1), ('apple', 1), ('consumer', 1), ('friendly', 1), ('digital', 1)]
[('new', 2), ('second', 2), ('life', 2), ('find', 2), ('place', 2), ('visit', 2), ('nbsp', 1), ('user', 1), ('difficult', 1), ('navigate', 1), ('space', 1), ('even', 1), ('harder', 1), ('interesting', 1), ('many', 1), ('best', 1), ('remained', 1), ('secret', 1)]
[('technology', 2), ('net', 2), ('web', 2), ('service', 2), ('window', 1), ('communication', 1), ('foundation', 1), ('wcf', 1), ('microsoft', 1), ('dynamic', 1), ('allowing', 1), ('autonomous', 1), ('software', 1), ('communicate', 1), ('superseding', 1), ('earlier', 1), ('dcom', 1), ('remoting', 1), ('asp', 1), ('enhancement', 1)]
[('using', 2), ('step', 2), ('short', 1), ('time', 1), ('learn', 1), ('use', 1), ('php', 1), ('mysql', 1), ('apache', 1), ('together', 1), ('create', 1), ('dynamic', 1), ('interactive', 1), ('website', 1), ('application', 1), ('three', 1), ('leading', 1), ('open', 1), ('source', 1), ('web', 1), ('development', 1), ('technology', 1), ('straightforward', 1)]
[('ebay', 3), ('seller', 2), ('online', 2), ('auction', 2), ('sell', 2), ('remember', 1), ('used', 1), ('place', 1), ('small', 1), ('become', 1), ('big', 1), ('unfortunately', 1), ('recent', 1), ('change', 1), ('made', 1), ('le', 1), ('reliable', 1), ('profitable', 1)]
[('exam', 4), ('pmp', 2), ('cram', 1), ('fourth', 1), ('edition', 1), ('perfect', 1), ('study', 1), ('guide', 1), ('help', 1), ('pas', 1), ('provides', 1), ('coverage', 1), ('practice', 1), ('question', 1), ('every', 1), ('topic', 1), ('book', 1), ('contains', 1), ('extensive', 1), ('set', 1), ('preparation', 1), ('tool', 1), ('quiz', 1)]
[('guide', 3), ('visual', 2), ('quickstart', 2), ('designed', 1), ('attractive', 1), ('tutorial', 1), ('reference', 1), ('format', 1), ('quickest', 1), ('easiest', 1), ('thorough', 1), ('way', 1), ('learn', 1), ('application', 1), ('task', 1), ('technology', 1), ('smart', 1), ('choice', 1)]
[('adobe', 2), ('cc', 2), ('dreamweaver', 2), ('release', 1), ('creative', 1), ('suite', 1), ('solidifies', 1), ('role', 1), ('de', 1), ('facto', 1), ('tool', 1), ('choice', 1), ('anyone', 1), ('designing', 1), ('web', 1), ('visual', 1), ('quickstart', 1), ('guide', 1), ('us', 1), ('combination', 1), ('task', 1), ('based', 1), ('instruction', 1), ('strong', 1), ('visuals', 1), ('teach', 1), ('beginning', 1), ('intermediate', 1), ('user', 1), ('create', 1), ('design', 1), ('publish', 1), ('powerful', 1)]
[('podcast', 2), ('make', 2), ('nbsp', 1), ('figured', 1), ('basic', 1), ('making', 1), ('want', 1), ('possibly', 1), ('money', 1), ('trick', 1), ('podcasting', 1), ('master', 1), ('hold', 1), ('answer', 1), ('question', 1), ('interact', 1), ('listener', 1)]
[('technique', 3), ('creation', 2), ('art', 2), ('power', 1), ('book', 1), ('developed', 1), ('fine', 1), ('considered', 1), ('photo', 1), ('realism', 1), ('final', 1), ('product', 1), ('look', 1), ('photograph', 1), ('commercial', 1)]
[('zune', 4), ('software', 2), ('essential', 1), ('companion', 1), ('player', 1), ('pocket', 1), ('guide', 1), ('steer', 1), ('import', 1), ('song', 1), ('assemble', 1), ('playlist', 1), ('burn', 1), ('cd', 1), ('browse', 1), ('marketplace', 1), ('explore', 1), ('musical', 1)]
[('step', 4), ('site', 3), ('guide', 2), ('enhancing', 2), ('web', 2), ('ajax', 2), ('reveals', 1), ('best', 1), ('practice', 1), ('us', 1), ('progressive', 1), ('enhancement', 1), ('technique', 1), ('ensure', 1), ('graceful', 1), ('degradation', 1), ('make', 1), ('usable', 1)]
[('online', 2), ('forget', 1), ('hassle', 1), ('cost', 1), ('old', 1), ('fashioned', 1), ('office', 1), ('business', 1), ('software', 1), ('everything', 1), ('zoho', 1), ('discover', 1), ('make', 1), ('amazing', 1), ('application', 1), ('million', 1), ('already', 1), ('using', 1)]
[('quickbooks', 2), ('guide', 2), ('solution', 1), ('nbsp', 1), ('definitive', 1), ('reference', 1), ('every', 1), ('business', 1), ('owner', 1), ('entrepreneur', 1), ('accountant', 1), ('bookkeeper', 1), ('relies', 1), ('beginner', 1), ('high', 1), ('productivity', 1), ('resource', 1)]
[('unreal', 3), ('design', 3), ('level', 2), ('mastering', 1), ('technology', 1), ('volume', 1), ('ii', 1), ('advanced', 1), ('concept', 1), ('engine', 1), ('start', 1), ('finish', 1), ('guide', 1), ('state', 1), ('art', 1), ('tournament', 1), ('modding', 1), ('everything', 1), ('need', 1), ('know', 1), ('take', 1), ('game', 1)]
[('router', 2), ('reader', 2), ('sam', 1), ('teach', 1), ('cisco', 1), ('day', 1), ('depth', 1), ('straightforward', 1), ('tutorial', 1), ('cover', 1), ('configuring', 1), ('ground', 1), ('alert', 1), ('common', 1), ('problem', 1), ('offer', 1), ('tested', 1), ('solution', 1), ('applicable', 1)]
[('voip', 3), ('successful', 2), ('deployment', 2), ('step', 2), ('strategy', 1), ('solution', 1), ('justify', 1), ('network', 1), ('investment', 1), ('approach', 1), ('management', 1), ('enables', 1), ('plan', 1), ('early', 1), ('properly', 1), ('integration', 1), ('existing', 1)]
[('powerbuilder', 2), ('development', 2), ('decade', 1), ('ago', 1), ('introduced', 1), ('idea', 1), ('rapid', 1), ('client', 1), ('server', 1), ('application', 1), ('time', 1), ('leader', 1), ('technology', 1), ('sale', 1), ('enterprise', 1), ('market', 1), ('although', 1), ('lost', 1)]
[('minute', 2), ('sam', 1), ('teach', 1), ('samsung', 1), ('galaxy', 1), ('tab', 1), ('offer', 1), ('straightforward', 1), ('practical', 1), ('answer', 1), ('fast', 1), ('result', 1), ('working', 1), ('lesson', 1), ('learn', 1), ('everything', 1), ('need', 1), ('know', 1), ('quickly', 1), ('easily', 1), ('speed', 1)]
[('portable', 1), ('precise', 1), ('pocket', 1), ('sized', 1), ('guide', 1), ('delivers', 1), ('ready', 1), ('answer', 1), ('core', 1), ('configuration', 1), ('administrative', 1), ('task', 1), ('window', 1), ('server', 1), ('zero', 1), ('essential', 1), ('quick', 1), ('reference', 1), ('table', 1), ('instruction', 1), ('list', 1)]
[('design', 3), ('fan', 2), ('magazine', 1), ('focus', 1), ('clarity', 1), ('simplicity', 1), ('elegance', 1), ('legion', 1), ('welcome', 1), ('second', 1), ('volume', 1), ('definitive', 1), ('page', 1), ('john', 1), ('mcwade', 1), ('truly', 1), ('icon', 1), ('graphic', 1), ('community', 1), ('insistence', 1), ('approaching', 1), ('mere', 1), ('decoration', 1), ('essential', 1), ('form', 1)]
[('learn', 2), ('full', 1), ('color', 1), ('visual', 1), ('guide', 1), ('make', 1), ('learning', 1), ('microsoft', 1), ('sharepoint', 1), ('plain', 1), ('simple', 1), ('follow', 1), ('book', 1), ('easy', 1), ('step', 1), ('screenshots', 1), ('clear', 1), ('concise', 1), ('language', 1), ('simplest', 1), ('way', 1), ('thing', 1), ('done', 1)]
[('html', 2), ('cs', 2), ('little', 1), ('daunting', 1), ('first', 1), ('fear', 1), ('book', 1), ('based', 1), ('shay', 1), ('howe', 1), ('popular', 1), ('workshop', 1), ('cover', 1), ('basic', 1), ('break', 1), ('barrier', 1), ('entry', 1), ('showing', 1), ('reader', 1), ('start', 1), ('using', 1), ('practical', 1)]
[('html', 3), ('cs', 2), ('hour', 2), ('teach', 2), ('learn', 1), ('lesson', 1), ('sam', 1), ('organized', 1), ('clearly', 1), ('written', 1), ('generously', 1), ('illustrated', 1), ('tutorial', 1), ('beginner', 1), ('quickly', 1), ('create', 1), ('looking', 1), ('web', 1), ('page', 1), ('using', 1)]
[('excel', 2), ('formula', 2), ('function', 2), ('conquer', 1), ('microsoft', 1), ('inside', 1), ('beyond', 1), ('basic', 1), ('dive', 1), ('right', 1), ('really', 1), ('put', 1), ('work', 1), ('supremely', 1), ('organized', 1), ('reference', 1), ('pack', 1), ('hundred', 1), ('timesaving', 1), ('solution', 1)]
[('photoshop', 3), ('element', 2), ('user', 2), ('want', 2), ('geared', 1), ('business', 1), ('student', 1), ('educator', 1), ('home', 1), ('professional', 1), ('looking', 1), ('image', 1), ('print', 1), ('web', 1), ('project', 1), ('need', 1), ('advanced', 1), ('power', 1), ('adobe', 1), ('window', 1), ('visual', 1), ('quickstart', 1), ('guide', 1), ('reader', 1), ('start', 1), ('reading', 1), ('beginning', 1), ('book', 1)]
[('art', 2), ('game', 2), ('key', 1), ('word', 1), ('dynamic', 1), ('defines', 1), ('world', 1), ('computer', 1), ('book', 1), ('teach', 1), ('everything', 1), ('need', 1), ('know', 1), ('planning', 1), ('modeling', 1), ('texturing', 1), ('lighting', 1), ('effect', 1), ('creation', 1), ('interface', 1), ('design', 1), ('go', 1), ('creating', 1), ('today', 1), ('advanced', 1), ('stunning', 1), ('video', 1), ('learning', 1), ('master', 1), ('veteran', 1), ('artist', 1)]
[('window', 4), ('depth', 2), ('learning', 2), ('curve', 2), ('first', 2), ('guide', 1), ('need', 1), ('become', 1), ('expert', 1), ('author', 1), ('scaled', 1), ('steepest', 1), ('part', 1), ('give', 1), ('guidance', 1), ('page', 1), ('last', 1), ('hour', 1), ('long', 1), ('term', 1), ('management', 1)]
[('build', 2), ('enterprise', 2), ('force', 2), ('powerful', 1), ('scalable', 1), ('cloud', 1), ('based', 1), ('solution', 1), ('fast', 1), ('newest', 1), ('version', 1), ('nbsp', 1), ('using', 1), ('application', 1), ('world', 1), ('class', 1), ('value', 1), ('scalability', 1), ('reliability', 1), ('day', 1), ('week', 1)]
[('comptia', 3), ('authorized', 2), ('certification', 2), ('learn', 1), ('prepare', 1), ('practice', 1), ('exam', 1), ('success', 1), ('cert', 1), ('guide', 1), ('pearson', 1), ('leader', 1), ('learning', 1), ('platinum', 1), ('partner', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('debugging', 3), ('matter', 1), ('approach', 1), ('linux', 1), ('always', 1), ('complex', 1), ('first', 1), ('part', 1), ('short', 1), ('cut', 1), ('examines', 1), ('complexity', 1), ('relate', 1), ('kernel', 1), ('present', 1), ('idea', 1), ('method', 1), ('improve', 1), ('skill', 1), ('inside', 1)]
[('nan', 1)]
[('ilife', 2), ('michael', 2), ('apple', 1), ('certified', 1), ('guide', 1), ('cohen', 1), ('wohl', 1), ('richard', 1), ('harrington', 1), ('mary', 1), ('plummer', 1), ('working', 1), ('miracle', 1), ('within', 1), ('first', 1), ('page', 1), ('featuring', 1), ('footage', 1), ('image', 1), ('around', 1), ('world', 1), ('book', 1)]
[('nan', 1)]
[('exam', 3), ('comptia', 2), ('security', 2), ('cram', 1), ('fourth', 1), ('edition', 1), ('perfect', 1), ('study', 1), ('guide', 1), ('help', 1), ('pas', 1), ('newly', 1), ('updated', 1), ('version', 1), ('provides', 1), ('coverage', 1), ('practice', 1), ('question', 1), ('every', 1), ('topic', 1), ('book', 1), ('contains', 1), ('set', 1)]
[('swift', 3), ('apps', 2), ('use', 2), ('cocoa', 2), ('ready', 1), ('build', 1), ('iphone', 1), ('ipad', 1), ('mac', 1), ('landed', 1), ('experienced', 1), ('programmer', 1), ('never', 1), ('touched', 1), ('apple', 1), ('developer', 1), ('tool', 1), ('hand', 1), ('book', 1), ('show', 1), ('language', 1), ('make', 1), ('incredible', 1), ('io', 1), ('o', 1), ('using', 1), ('touch', 1), ('learn', 1), ('wide', 1), ('range', 1), ('real', 1), ('world', 1), ('situation', 1)]
[('network', 2), ('screen', 2), ('working', 1), ('microsoft', 1), ('directory', 1), ('service', 1), ('first', 1), ('time', 1), ('headache', 1), ('system', 1), ('administrator', 1), ('professional', 1), ('technical', 1), ('project', 1), ('manager', 1), ('programmer', 1), ('alike', 1), ('authoritative', 1), ('guide', 1), ('meant', 1), ('relieve', 1), ('pain', 1), ('instead', 1), ('going', 1), ('graphical', 1), ('user', 1), ('interface', 1), ('reilly', 1), ('bestselling', 1)]
[('window', 2), ('sharepoint', 2), ('service', 2), ('microsoft', 2), ('office', 2), ('set', 2), ('organization', 1), ('want', 1), ('use', 1), ('share', 1), ('collaborate', 1), ('document', 1), ('book', 1), ('show', 1), ('administrator', 1), ('level', 1), ('running', 1), ('powerful', 1), ('popular', 1), ('collaboration', 1), ('tool', 1), ('technology', 1), ('integrated', 1)]
[('lean', 2), ('software', 2), ('development', 2), ('succinct', 1), ('book', 1), ('explains', 1), ('apply', 1), ('practice', 1), ('dramatically', 1), ('increase', 1), ('productivity', 1), ('quality', 1), ('based', 1), ('technique', 1), ('revolutionized', 1), ('japanese', 1), ('manufacturing', 1), ('principle', 1), ('applied', 1), ('successfully', 1), ('product', 1), ('design', 1), ('engineering', 1), ('supply', 1), ('chain', 1), ('art', 1)]
[('book', 2), ('access', 2), ('reference', 1), ('tutorial', 1), ('either', 1), ('new', 1), ('second', 1), ('edition', 1), ('highly', 1), ('regarded', 1), ('cookbook', 1), ('uncommonly', 1), ('useful', 1), ('collection', 1), ('solution', 1), ('problem', 1), ('user', 1), ('developer', 1), ('likely', 1), ('face', 1), ('attempt', 1), ('build', 1), ('increasingly', 1), ('complex', 1), ('application', 1), ('although', 1), ('using', 1), ('single', 1), ('recipe', 1)]
[('moodle', 3), ('learning', 3), ('using', 1), ('complete', 1), ('hand', 1), ('guide', 1), ('instructor', 1), ('use', 1), ('popular', 1), ('course', 1), ('management', 1), ('system', 1), ('cm', 1), ('enables', 1), ('remote', 1), ('web', 1), ('based', 1), ('supplement', 1), ('traditional', 1), ('classroom', 1), ('updated', 1), ('latest', 1), ('version', 1), ('new', 1), ('edition', 1), ('explains', 1), ('exactly', 1), ('work', 1), ('offering', 1), ('plenty', 1), ('example', 1), ('screenshots', 1)]
[('project', 3), ('looking', 1), ('solid', 1), ('easy', 1), ('follow', 1), ('advice', 1), ('estimation', 1), ('requirement', 1), ('gathering', 1), ('managing', 1), ('change', 1), ('stop', 1), ('book', 1), ('scott', 1), ('berkun', 1), ('author', 1), ('art', 1), ('management', 1), ('make', 1), ('software', 1), ('succeed', 1), ('take', 1), ('good', 1), ('idea', 1), ('team', 1), ('talented', 1), ('programmer', 1), ('manager', 1)]
[('web', 2), ('developer', 2), ('security', 2), ('net', 2), ('spread', 1), ('enabled', 1), ('desktop', 1), ('client', 1), ('server', 1), ('based', 1), ('application', 1), ('longer', 1), ('afford', 1), ('treat', 1), ('afterthought', 1), ('topic', 1), ('fact', 1), ('force', 1), ('address', 1), ('microsoft', 1), ('placed', 1), ('related', 1), ('feature', 1), ('core', 1), ('framework', 1), ('yet', 1), ('carelessness', 1), ('lack', 1)]
[('embedded', 3), ('programming', 2), ('system', 2), ('software', 2), ('experience', 1), ('familiarity', 1), ('dominant', 1), ('language', 1), ('second', 1), ('edition', 1), ('exactly', 1), ('need', 1), ('started', 1), ('ubiquitous', 1), ('hidden', 1), ('away', 1), ('inside', 1), ('watch', 1), ('dvd', 1), ('player', 1), ('mobile', 1), ('phone', 1), ('anti', 1), ('lock', 1), ('brake', 1), ('even', 1), ('toaster', 1)]
[('ejb', 3), ('latest', 2), ('java', 2), ('technology', 2), ('know', 1), ('enterprise', 1), ('javabeans', 1), ('hottest', 1), ('news', 1), ('year', 1), ('fact', 1), ('hailed', 1), ('new', 1), ('standard', 1), ('server', 1), ('side', 1), ('business', 1), ('logic', 1), ('programming', 1), ('reilly', 1), ('award', 1), ('winning', 1), ('book', 1), ('refreshed', 1), ('time', 1), ('capitalize', 1)]
[('author', 2), ('give', 2), ('book', 1), ('rich', 1), ('shupe', 1), ('zevan', 1), ('rosser', 1), ('share', 1), ('knowledge', 1), ('gained', 1), ('year', 1), ('multimedia', 1), ('developer', 1), ('designer', 1), ('teacher', 1), ('learning', 1), ('actionscript', 1), ('solid', 1), ('foundation', 1), ('language', 1), ('flash', 1), ('demonstrates', 1), ('use', 1), ('practical', 1), ('everyday', 1), ('project', 1)]
[('web', 2), ('service', 2), ('core', 1), ('idea', 1), ('behind', 1), ('real', 1), ('world', 1), ('simple', 1), ('year', 1), ('hype', 1), ('major', 1), ('player', 1), ('really', 1), ('standard', 1), ('body', 1), ('wrangle', 1), ('platform', 1), ('vendor', 1), ('preach', 1), ('end', 1), ('day', 1), ('technology', 1), ('actually', 1), ('use', 1), ('developer', 1), ('incorporate', 1), ('application', 1)]
[('microsoft', 2), ('service', 2), ('written', 1), ('software', 1), ('legend', 1), ('juval', 1), ('lowy', 1), ('programming', 1), ('wcf', 1), ('authoritative', 1), ('introduction', 1), ('new', 1), ('say', 1), ('revolutionary', 1), ('unified', 1), ('platform', 1), ('developing', 1), ('oriented', 1), ('application', 1), ('soa', 1), ('window', 1), ('relentlessly', 1), ('practical', 1), ('book', 1), ('delivers', 1), ('insight', 1), ('documentation', 1), ('teach', 1), ('developer', 1), ('need', 1)]
[('new', 3), ('iphone', 3), ('york', 1), ('time', 1), ('tech', 1), ('columnist', 1), ('david', 1), ('pogue', 1), ('top', 1), ('thoroughly', 1), ('updated', 1), ('edition', 1), ('missing', 1), ('manual', 1), ('faster', 1), ('downloads', 1), ('touch', 1), ('screen', 1), ('ipod', 1), ('best', 1), ('mobile', 1), ('web', 1), ('browser', 1), ('affordable', 1), ('packed', 1), ('possibility', 1), ('without', 1), ('objective', 1), ('guide', 1)]
[('infrastructure', 2), ('system', 2), ('highly', 2), ('involved', 1), ('planning', 1), ('network', 1), ('architect', 1), ('administrator', 1), ('developer', 1), ('book', 1), ('help', 1), ('adapt', 1), ('skill', 1), ('work', 1), ('scalable', 1), ('redundant', 1), ('service', 1), ('analyst', 1), ('hotly', 1), ('debate', 1), ('advantage', 1), ('risk', 1), ('cloud', 1), ('computing', 1), ('staff', 1), ('programmer', 1), ('left', 1)]
[('gestural', 2), ('interface', 2), ('information', 2), ('want', 1), ('ahead', 1), ('new', 1), ('era', 1), ('interaction', 1), ('design', 1), ('reference', 1), ('need', 1), ('nintendo', 1), ('wii', 1), ('apple', 1), ('iphone', 1), ('ipod', 1), ('touch', 1), ('made', 1), ('popular', 1), ('complete', 1), ('source', 1), ('technology', 1), ('designing', 1), ('provides', 1), ('essential', 1)]
[('cs', 3), ('web', 2), ('page', 2), ('industry', 1), ('standard', 1), ('method', 1), ('enriching', 1), ('presentation', 1), ('html', 1), ('based', 1), ('cascading', 1), ('style', 1), ('sheet', 1), ('allow', 1), ('give', 1), ('structure', 1), ('sophisticated', 1), ('look', 1), ('first', 1), ('past', 1), ('theory', 1), ('resolve', 1), ('real', 1), ('world', 1), ('problem', 1), ('common', 1), ('dilemma', 1), ('crop', 1), ('project', 1), ('cookbook', 1)]
[('rfid', 2), ('radio', 1), ('frequency', 1), ('identification', 1), ('rapidly', 1), ('changing', 1), ('theway', 1), ('business', 1), ('track', 1), ('inventory', 1), ('asset', 1), ('wal', 1), ('mart', 1), ('tesco', 1), ('theu', 1), ('department', 1), ('defense', 1), ('early', 1), ('effort', 1), ('already', 1), ('showing', 1), ('benefit', 1), ('software', 1), ('integration', 1), ('data', 1), ('processing', 1), ('still', 1), ('present', 1), ('achallenge', 1), ('developer', 1), ('architect', 1), ('charged', 1)]
[('content', 3), ('site', 3), ('dynamic', 2), ('web', 2), ('create', 2), ('many', 1), ('reason', 1), ('serving', 1), ('offer', 1), ('online', 1), ('shopping', 1), ('customized', 1), ('information', 1), ('page', 1), ('user', 1), ('manage', 1), ('large', 1), ('volume', 1), ('database', 1), ('anyone', 1), ('modest', 1), ('knowledge', 1), ('html', 1), ('management', 1), ('learn', 1), ('php', 1), ('programming', 1)]
[('site', 3), ('designer', 2), ('web', 1), ('design', 1), ('grown', 1), ('unlike', 1), ('old', 1), ('day', 1), ('cobbled', 1), ('togetherchunky', 1), ('html', 1), ('bandwidth', 1), ('hogging', 1), ('graphic', 1), ('prayer', 1), ('make', 1), ('look', 1), ('good', 1), ('cascading', 1), ('style', 1), ('sheet', 1), ('cs', 1), ('let', 1), ('inner', 1), ('come', 1), ('play', 1), ('cssisn', 1), ('tool', 1), ('pretty', 1), ('reliable', 1), ('method', 1), ('handling', 1), ('allkinds', 1)]
[('use', 3), ('unix', 2), ('csh', 2), ('command', 2), ('shell', 2), ('tcsh', 2), ('probably', 1), ('type', 1), ('even', 1), ('never', 1), ('heard', 1), ('standard', 1), ('line', 1), ('system', 1), ('enhanced', 1), ('version', 1), ('freely', 1), ('available', 1), ('highly', 1), ('recommended', 1), ('using', 1), ('describes', 1), ('beginning', 1), ('interactively', 1), ('important', 1), ('show', 1)]
[('window', 2), ('faster', 1), ('stable', 1), ('vista', 1), ('far', 1), ('cry', 1), ('problem', 1), ('free', 1), ('david', 1), ('karp', 1), ('come', 1), ('rescue', 1), ('latest', 1), ('popular', 1), ('annoyance', 1), ('series', 1), ('thorough', 1), ('guide', 1), ('give', 1), ('tool', 1), ('need', 1), ('fix', 1), ('troublesome', 1), ('part', 1), ('operating', 1), ('system', 1), ('plus', 1), ('solution', 1), ('hack', 1), ('timesaving', 1), ('tip', 1), ('make', 1)]
[('exam', 4), ('new', 2), ('certification', 2), ('preparing', 1), ('comptia', 1), ('current', 1), ('network', 1), ('security', 1), ('find', 1), ('book', 1), ('invaluable', 1), ('provides', 1), ('information', 1), ('need', 1), ('ready', 1), ('including', 1), ('four', 1), ('required', 1), ('essential', 1), ('three', 1), ('elective', 1), ('pertain', 1), ('area', 1)]
[('office', 3), ('mac', 2), ('feature', 2), ('still', 1), ('top', 1), ('selling', 1), ('software', 1), ('suite', 1), ('user', 1), ('microsoft', 1), ('improved', 1), ('enhanced', 1), ('take', 1), ('advantage', 1), ('latest', 1), ('o', 1), ('find', 1), ('lot', 1), ('new', 1), ('word', 1), ('excel', 1), ('powerpoint', 1), ('entourage', 1), ('page', 1), ('printed', 1), ('instruction', 1), ('guide', 1), ('change', 1), ('macintosh', 1)]
[('restful', 2), ('net', 2), ('window', 2), ('build', 2), ('web', 2), ('use', 2), ('first', 1), ('book', 1), ('teach', 1), ('developer', 1), ('service', 1), ('using', 1), ('latest', 1), ('microsoft', 1), ('tool', 1), ('written', 1), ('communication', 1), ('foundation', 1), ('wfc', 1), ('expert', 1), ('jon', 1), ('flanders', 1), ('hand', 1), ('tutorial', 1), ('demonstrates', 1), ('wcf', 1), ('component', 1), ('framework', 1), ('deploy', 1), ('rest', 1), ('based', 1)]
[('security', 4), ('professional', 2), ('think', 1), ('computer', 1), ('improved', 1), ('recent', 1), ('year', 1), ('myth', 1), ('shake', 1), ('complacency', 1), ('longtime', 1), ('john', 1), ('viega', 1), ('formerly', 1), ('chief', 1), ('architect', 1), ('mcafee', 1), ('report', 1), ('sorry', 1), ('state', 1), ('industry', 1), ('offer', 1), ('concrete', 1), ('suggestion', 1), ('individual', 1), ('confronting', 1), ('issue', 1)]
[('video', 2), ('ipad', 1), ('faster', 1), ('lighter', 1), ('versatile', 1), ('predecessor', 1), ('still', 1), ('printed', 1), ('guide', 1), ('using', 1), ('amazing', 1), ('feature', 1), ('full', 1), ('color', 1), ('missing', 1), ('manual', 1), ('come', 1), ('learn', 1), ('stream', 1), ('hd', 1), ('make', 1), ('call', 1), ('manage', 1), ('email', 1), ('surf', 1), ('web', 1), ('listen', 1), ('music', 1), ('play', 1), ('game', 1), ('maybe', 1), ('even', 1), ('little', 1), ('iwork', 1)]
[('quickbooks', 2), ('time', 2), ('impressive', 1), ('feature', 1), ('financial', 1), ('tax', 1), ('reporting', 1), ('invoicing', 1), ('payroll', 1), ('mileage', 1), ('tracking', 1), ('online', 1), ('banking', 1), ('avoid', 1), ('spending', 1), ('learning', 1), ('software', 1), ('using', 1), ('missing', 1), ('manual', 1), ('take', 1), ('beyond', 1), ('help', 1), ('resource', 1), ('learn', 1), ('program', 1), ('work', 1)]
[('feature', 2), ('several', 1), ('publisher', 1), ('including', 1), ('reilly', 1), ('supply', 1), ('excellent', 1), ('documentation', 1), ('router', 1), ('trick', 1), ('knowing', 1), ('use', 1), ('often', 1), ('many', 1), ('different', 1), ('way', 1), ('solve', 1), ('given', 1), ('networking', 1), ('problem', 1), ('using', 1), ('cisco', 1), ('device', 1), ('solution', 1), ('clearly', 1), ('effective', 1), ('others', 1), ('pressing', 1), ('question', 1)]
[('seo', 2), ('make', 1), ('easier', 1), ('find', 1), ('website', 1), ('convert', 1), ('casual', 1), ('visitor', 1), ('active', 1), ('user', 1), ('warrior', 1), ('show', 1), ('done', 1), ('collection', 1), ('tried', 1), ('true', 1), ('technique', 1), ('hack', 1), ('best', 1), ('practice', 1), ('learn', 1), ('nut', 1), ('bolt', 1), ('search', 1), ('engine', 1), ('optimization', 1), ('theory', 1), ('importance', 1), ('keyword', 1), ('strategy', 1)]
[('want', 1), ('know', 1), ('make', 1), ('page', 1), ('look', 1), ('beautiful', 1), ('communicate', 1), ('message', 1), ('effectively', 1), ('guide', 1), ('visitor', 1), ('website', 1), ('ease', 1), ('everything', 1), ('approved', 1), ('accessibility', 1), ('usability', 1), ('police', 1), ('time', 1), ('head', 1), ('first', 1), ('web', 1), ('design', 1), ('ticket', 1), ('mastering', 1), ('complex', 1), ('topic', 1), ('understanding', 1), ('really', 1), ('going', 1)]
[('office', 3), ('software', 2), ('know', 2), ('microsoft', 1), ('widely', 1), ('used', 1), ('suite', 1), ('world', 1), ('half', 1), ('dozen', 1), ('program', 1), ('packed', 1), ('amazing', 1), ('feature', 1), ('basic', 1), ('entertaining', 1), ('guide', 1), ('get', 1), ('started', 1), ('reveals', 1), ('kind', 1), ('useful', 1), ('thing', 1), ('plenty', 1)]
[('iphone', 3), ('app', 2), ('first', 2), ('say', 1), ('idea', 1), ('killer', 1), ('begin', 1), ('head', 1), ('development', 1), ('help', 1), ('application', 1), ('running', 1), ('time', 1), ('quickly', 1), ('learn', 1), ('use', 1), ('sdk', 1), ('tool', 1), ('including', 1), ('interface', 1), ('builder', 1), ('xcode', 1), ('master', 1), ('objective', 1), ('programming', 1), ('principle', 1), ('make', 1), ('stand', 1)]
[('app', 5), ('ipad', 2), ('iphone', 2), ('make', 1), ('stand', 1), ('highly', 1), ('competitive', 1), ('store', 1), ('many', 1), ('book', 1), ('simply', 1), ('explore', 1), ('technical', 1), ('aspect', 1), ('design', 1), ('development', 1), ('savvy', 1), ('focus', 1), ('business', 1), ('product', 1), ('marketing', 1), ('element', 1), ('critical', 1), ('pursuing', 1), ('completing', 1), ('selling', 1), ('ingredient', 1)]
[('virtualization', 2), ('exactly', 1), ('concise', 1), ('book', 1), ('explains', 1), ('smorgasbord', 1), ('technology', 1), ('offer', 1), ('organization', 1), ('many', 1), ('advantage', 1), ('whether', 1), ('managing', 1), ('extremely', 1), ('large', 1), ('store', 1), ('rapidly', 1), ('changing', 1), ('data', 1), ('scaling', 1), ('application', 1), ('harnessing', 1), ('huge', 1), ('amount', 1), ('computational', 1), ('power', 1), ('guide', 1), ('overview', 1)]
[('jquery', 2), ('want', 1), ('add', 1), ('interactivity', 1), ('polish', 1), ('website', 1), ('discover', 1), ('help', 1), ('build', 1), ('complex', 1), ('scripting', 1), ('functionality', 1), ('line', 1), ('code', 1), ('head', 1), ('first', 1), ('quickly', 1), ('speed', 1), ('amazing', 1), ('javascript', 1), ('library', 1), ('learning', 1), ('navigate', 1), ('html', 1), ('document', 1), ('handling', 1), ('event', 1), ('effect', 1), ('callback', 1)]
[('google', 3), ('ad', 2), ('advertising', 2), ('really', 1), ('click', 1), ('handful', 1), ('text', 1), ('accompany', 1), ('search', 1), ('result', 1), ('absolutely', 1), ('growth', 1), ('adwords', 1), ('continues', 1), ('increase', 1), ('online', 1), ('united', 1), ('state', 1), ('book', 1), ('show', 1), ('piece', 1), ('platform', 1), ('work', 1), ('focusing', 1), ('area', 1), ('impact', 1), ('performance', 1), ('cost', 1), ('campaign', 1)]
[('android', 3), ('programming', 2), ('thoroughly', 1), ('speed', 1), ('learn', 1), ('create', 1), ('date', 1), ('user', 1), ('experience', 1), ('handset', 1), ('tablet', 1), ('book', 1), ('extensively', 1), ('revised', 1), ('second', 1), ('edition', 1), ('focus', 1), ('tool', 1), ('essential', 1), ('including', 1), ('best', 1), ('practice', 1), ('using', 1), ('apis', 1), ('experienced', 1), ('java', 1), ('objective', 1)]
[('mac', 2), ('cross', 1), ('ipad', 1), ('o', 1), ('mountain', 1), ('lion', 1), ('new', 1), ('feature', 1), ('include', 1), ('ipaddish', 1), ('goody', 1), ('dictation', 1), ('notification', 1), ('center', 1), ('reminder', 1), ('single', 1), ('page', 1), ('instruction', 1), ('fortunately', 1), ('david', 1), ('pogue', 1), ('back', 1), ('expertise', 1), ('humor', 1), ('made', 1), ('bestselling', 1), ('book', 1), ('year', 1)]
[('build', 2), ('application', 2), ('real', 2), ('time', 2), ('programming', 2), ('backend', 1), ('browser', 1), ('node', 1), ('j', 1), ('kick', 1), ('open', 1), ('door', 1), ('event', 1), ('hand', 1), ('book', 1), ('learn', 1), ('create', 1), ('social', 1), ('network', 1), ('similar', 1), ('linkedin', 1), ('facebook', 1), ('twist', 1), ('language', 1), ('javascript', 1)]
[('window', 2), ('continues', 1), ('evolution', 1), ('radical', 1), ('redesign', 1), ('microsoft', 1), ('history', 1), ('combine', 1), ('familiar', 1), ('desktop', 1), ('new', 1), ('touchscreen', 1), ('friendly', 1), ('world', 1), ('tile', 1), ('full', 1), ('screen', 1), ('apps', 1), ('luckily', 1), ('david', 1), ('pogue', 1), ('back', 1), ('help', 1), ('make', 1), ('sense', 1), ('humor', 1), ('authority', 1), ('illustration', 1), ('important', 1), ('stuff', 1), ('need', 1), ('know', 1)]
[('ebook', 3), ('reader', 2), ('organize', 2), ('thing', 2), ('information', 2), ('note', 1), ('exploit', 1), ('many', 1), ('advanced', 1), ('capability', 1), ('image', 1), ('hypertext', 1), ('interactivity', 1), ('optimized', 1), ('epub', 1), ('compliant', 1), ('book', 1), ('especially', 1), ('apple', 1), ('ibooks', 1), ('browser', 1), ('plugins', 1), ('feature', 1), ('work', 1)]
[('angularjs', 2), ('learning', 2), ('quickly', 1), ('build', 1), ('client', 1), ('side', 1), ('application', 1), ('run', 1), ('desktop', 1), ('mobile', 1), ('platform', 1), ('using', 1), ('rest', 1), ('web', 1), ('service', 1), ('backend', 1), ('process', 1), ('heard', 1), ('curve', 1), ('javascript', 1), ('mvc', 1), ('framework', 1), ('steep', 1), ('case', 1), ('practical', 1), ('guide', 1), ('provides', 1), ('hand', 1), ('approach', 1)]
[('network', 3), ('day', 2), ('automation', 2), ('juno', 2), ('grow', 1), ('maintain', 1), ('reliable', 1), ('flexible', 1), ('cost', 1), ('efficient', 1), ('face', 1), ('increasing', 1), ('demand', 1), ('practical', 1), ('guide', 1), ('engineer', 1), ('learn', 1), ('program', 1), ('juniper', 1), ('device', 1), ('perform', 1), ('task', 1), ('using', 1), ('feature', 1), ('o', 1), ('support', 1), ('several', 1), ('tool', 1), ('provide', 1)]
[('mobile', 2), ('apps', 2), ('platform', 2), ('practical', 1), ('introduction', 1), ('react', 1), ('native', 1), ('javascript', 1), ('framework', 1), ('writing', 1), ('deploying', 1), ('fully', 1), ('featured', 1), ('render', 1), ('natively', 1), ('second', 1), ('edition', 1), ('hand', 1), ('guide', 1), ('show', 1), ('build', 1), ('application', 1), ('target', 1), ('io', 1), ('android', 1), ('instead', 1), ('browser', 1), ('access', 1), ('feature', 1)]
[('machine', 4), ('learning', 4), ('model', 2), ('develop', 1), ('smart', 1), ('application', 1), ('without', 1), ('spending', 1), ('day', 1), ('week', 1), ('building', 1), ('practical', 1), ('book', 1), ('learn', 1), ('apply', 1), ('automated', 1), ('automl', 1), ('process', 1), ('us', 1), ('help', 1), ('build', 1), ('deepak', 1), ('mukunthu', 1), ('parashar', 1), ('shah', 1), ('wee', 1), ('hyong', 1), ('tok', 1), ('provide', 1), ('mix', 1), ('technical', 1)]
[('machine', 1), ('smarter', 1), ('utopian', 1), ('dream', 1), ('science', 1), ('fiction', 1), ('novelist', 1), ('hollywood', 1), ('screenwriter', 1), ('perhaps', 1), ('technological', 1), ('progress', 1), ('turning', 1), ('reality', 1), ('trend', 1), ('coming', 1), ('together', 1), ('exponential', 1), ('growth', 1), ('processing', 1), ('power', 1), ('supercomputer', 1), ('new', 1), ('software', 1), ('copy', 1), ('way', 1), ('neuron', 1), ('human', 1), ('brain', 1)]
[('implement', 1), ('effective', 1), ('compliant', 1), ('information', 1), ('security', 1), ('management', 1), ('system', 1), ('using', 1), ('governance', 1), ('best', 1), ('practice', 1)]
[('thing', 2), ('think', 2), ('gershenfeld', 2), ('group', 2), ('start', 1), ('neil', 1), ('tell', 1), ('story', 1), ('mit', 1), ('medium', 1), ('lab', 1), ('innovative', 1), ('scientist', 1), ('researcher', 1), ('dedicated', 1), ('integrating', 1), ('digital', 1), ('technology', 1), ('fabric', 1), ('life', 1), ('offer', 1), ('glimpse', 1), ('brave', 1), ('new', 1), ('post', 1), ('computerized', 1), ('world', 1), ('microchip', 1), ('work', 1)]
[('certified', 2), ('professional', 2), ('exam', 2), ('administrator', 2), ('written', 1), ('vm', 1), ('instructor', 1), ('year', 1), ('teaching', 1), ('experience', 1), ('vmware', 1), ('test', 1), ('prep', 1), ('ultimate', 1), ('study', 1), ('guide', 1), ('vcp', 1), ('tightly', 1), ('organized', 1), ('highly', 1), ('practical', 1), ('boost', 1), ('classroom', 1), ('training', 1), ('successfully', 1), ('prepare', 1), ('job', 1), ('let', 1), ('maximize', 1)]
[('information', 2), ('security', 2), ('compliance', 2), ('detailing', 1), ('proven', 1), ('approach', 1), ('establishing', 1), ('implementing', 1), ('comprehensive', 1), ('program', 1), ('book', 1), ('integrates', 1), ('review', 1), ('technical', 1), ('monitoring', 1), ('remediation', 1), ('effort', 1), ('explain', 1), ('achieve', 1), ('maintain', 1), ('federal', 1), ('management', 1), ('act', 1), ('fisma', 1), ('requirement', 1), ('based', 1), ('author', 1), ('experience', 1)]
[('improvement', 2), ('methodology', 2), ('gaining', 2), ('abundance', 1), ('framework', 1), ('quickly', 1), ('momentum', 1), ('many', 1), ('question', 1), ('begin', 1), ('book', 1), ('survey', 1), ('integrates', 1), ('quantitative', 1), ('approach', 1), ('popularity', 1), ('including', 1), ('goal', 1), ('driven', 1), ('measurement', 1), ('gqm', 1), ('business', 1), ('process', 1), ('management', 1), ('bpm', 1), ('lean', 1), ('balanced', 1), ('score', 1), ('card', 1), ('show', 1)]
[('among', 1), ('useful', 1), ('tool', 1), ('production', 1), ('tv', 1), ('show', 1), ('film', 1), ('storyboard', 1), ('visual', 1), ('blueprint', 1), ('project', 1), ('shot', 1), ('director', 1), ('vision', 1), ('illustrated', 1), ('manner', 1), ('comic', 1), ('strip', 1), ('handed', 1), ('crew', 1), ('purpose', 1), ('budgeting', 1), ('design', 1), ('communication', 1), ('storyboards', 1), ('motion', 1), ('art', 1), ('depth', 1)]
[('iptv', 3), ('driven', 1), ('combination', 1), ('technological', 1), ('improvement', 1), ('commercial', 1), ('pressure', 1), ('interest', 1), ('service', 1), ('increasingly', 1), ('grown', 1), ('refers', 1), ('use', 1), ('internet', 1), ('protocol', 1), ('required', 1), ('delivery', 1), ('television', 1), ('content', 1), ('represents', 1), ('emerging', 1), ('technology', 1), ('change', 1), ('manner', 1), ('home', 1), ('receive', 1), ('entertainment', 1), ('personal', 1), ('computer', 1), ('ope', 1)]
[('information', 4), ('security', 3), ('manager', 2), ('certified', 1), ('cism', 1), ('certification', 1), ('program', 1), ('developed', 1), ('system', 1), ('audit', 1), ('control', 1), ('association', 1), ('isaca', 1), ('designed', 1), ('specifically', 1), ('experienced', 1), ('management', 1), ('responsibility', 1), ('complete', 1)]
[('network', 2), ('tutorial', 1), ('delivers', 1), ('insight', 1), ('understanding', 1), ('technology', 1), ('manager', 1), ('executive', 1), ('trying', 1), ('speed', 1), ('stay', 1), ('current', 1), ('complex', 1), ('challenge', 1), ('designing', 1), ('constructing', 1), ('maintaining', 1), ('upgrading', 1), ('managing', 1), ('netwo', 1)]
[('visualization', 2), ('step', 2), ('revitalize', 1), ('architectural', 1), ('bringing', 1), ('new', 1), ('level', 1), ('realism', 1), ('enhanced', 1), ('command', 1), ('mental', 1), ('ray', 1), ('toolset', 1), ('d', 1), ('max', 1), ('full', 1), ('color', 1), ('tutorial', 1), ('give', 1), ('firm', 1), ('understanding', 1), ('process', 1), ('technique', 1), ('needed', 1), ('create', 1), ('impressive', 1), ('interior', 1), ('exterior', 1), ('learn', 1), ('prepare', 1)]
[('planning', 3), ('network', 2), ('optimization', 2), ('hspa', 2), ('umts', 2), ('book', 1), ('provide', 1), ('limited', 1), ('coverage', 1), ('either', 1), ('gsm', 1), ('wcdma', 1), ('technique', 1), ('scrape', 1), ('surface', 1), ('even', 1), ('fewer', 1), ('deal', 1), ('td', 1), ('scdma', 1), ('filling', 1), ('void', 1), ('evolved', 1), ('cellular', 1), ('lte', 1), ('present', 1), ('accessible', 1), ('introduction', 1), ('stage', 1), ('optimizing', 1)]
[('data', 4), ('statistical', 3), ('mining', 3), ('edition', 2), ('machine', 2), ('learning', 2), ('modeling', 2), ('analysis', 2), ('second', 1), ('bestseller', 1), ('technique', 1), ('better', 1), ('predictive', 1), ('big', 1), ('still', 1), ('book', 1), ('date', 1), ('distinguish', 1), ('first', 1), ('titled', 1), ('database', 1)]
[('secret', 2), ('production', 2), ('professional', 1), ('animator', 1), ('know', 1), ('handful', 1), ('give', 1), ('edge', 1), ('environment', 1), ('cheat', 1), ('maya', 1), ('put', 1), ('hand', 1), ('learn', 1), ('time', 1), ('energy', 1), ('saving', 1), ('technique', 1), ('tested', 1), ('real', 1), ('hollywood', 1), ('book', 1), ('jam', 1), ('packed', 1), ('screenshots', 1), ('scene', 1), ('file', 1), ('designed', 1), ('speed', 1), ('quickly', 1)]
[('class', 1), ('art', 1), ('school', 1), ('teach', 1), ('believe', 1), ('lot', 1), ('directing', 1), ('animated', 1), ('film', 1), ('beautiful', 1), ('illustration', 1), ('cool', 1), ('character', 1), ('need', 1), ('bring', 1), ('inner', 1), ('creative', 1), ('visionary', 1), ('take', 1), ('savvy', 1), ('leadership', 1), ('skill', 1), ('front', 1), ('line', 1), ('pencil', 1), ('brush', 1), ('stylus', 1)]
[('create', 2), ('toon', 2), ('boom', 2), ('want', 1), ('studio', 1), ('quality', 1), ('work', 1), ('noticed', 1), ('coming', 1), ('flash', 1), ('looking', 1), ('intro', 1), ('traditional', 1), ('pencil', 1), ('paper', 1), ('animator', 1), ('scene', 1), ('setup', 1), ('final', 1), ('render', 1), ('learn', 1), ('navigate', 1), ('interface', 1), ('animation', 1), ('published', 1), ('variety', 1), ('platform', 1), ('format', 1), ('animate', 1), ('harmony', 1)]
[('animation', 2), ('expand', 1), ('imagination', 1), ('letting', 1), ('go', 1), ('limitation', 1), ('traditional', 1), ('medium', 1), ('software', 1), ('package', 1), ('workflow', 1), ('integrating', 1), ('asset', 1), ('updated', 1), ('expanded', 1), ('second', 1), ('edition', 1), ('hybrid', 1), ('learn', 1), ('choose', 1), ('technique', 1), ('best', 1), ('express', 1), ('artistic', 1), ('narrative', 1), ('direction', 1), ('project', 1)]
[('tcl', 3), ('tk', 2), ('newly', 1), ('updated', 1), ('page', 1), ('material', 1), ('latest', 1), ('extension', 1), ('developer', 1), ('guide', 1), ('unique', 1), ('practical', 1), ('tutorial', 1), ('professional', 1), ('programmer', 1), ('beginner', 1), ('alike', 1), ('starting', 1), ('clear', 1), ('picture', 1), ('basic', 1), ('cover', 1)]
[('engineering', 2), ('drawing', 2), ('manual', 1), ('long', 1), ('recognised', 1), ('guide', 1), ('practicing', 1), ('student', 1), ('engineer', 1), ('producing', 1), ('annotated', 1), ('model', 1), ('comply', 1), ('latest', 1), ('british', 1), ('iso', 1), ('standard', 1), ('technical', 1), ('product', 1)]
[('graphic', 2), ('spend', 1), ('time', 1), ('creating', 1), ('building', 1), ('block', 1), ('application', 1), ('finding', 1), ('correcting', 1), ('error', 1), ('geometric', 1), ('tool', 1), ('computer', 1), ('extensive', 1), ('conveniently', 1), ('organized', 1), ('collection', 1), ('proven', 1), ('solution', 1), ('fundamental', 1)]
[('introducing', 1), ('technology', 1), ('square', 1), ('real', 1), ('world', 1), ('design', 1), ('application', 1), ('book', 1), ('significantly', 1), ('reduce', 1), ('time', 1), ('spend', 1), ('eddie', 1), ('insam', 1), ('approach', 1), ('internet', 1), ('protocol', 1), ('tcp', 1), ('ip', 1), ('explore', 1), ('potential', 1), ('practical', 1), ('tool', 1)]
[('design', 2), ('whether', 1), ('dedicated', 1), ('audiophile', 1), ('want', 1), ('gain', 1), ('complete', 1), ('understanding', 1), ('issue', 1), ('behind', 1), ('truly', 1), ('amp', 1), ('professional', 1), ('electronic', 1), ('designer', 1), ('seeking', 1), ('learn', 1), ('art', 1), ('amplifier', 1)]
[('book', 3), ('couple', 2), ('decided', 1), ('write', 1), ('reason', 1), ('written', 1), ('incident', 1), ('response', 1), ('forensic', 1), ('analysis', 1), ('window', 1), ('system', 1), ('used', 1), ('lot', 1), ('perl', 1), ('okay', 1), ('come', 1), ('clean', 1)]
[('sql', 4), ('server', 4), ('update', 3), ('latest', 1), ('microsoft', 1), ('flagship', 1), ('database', 1), ('management', 1), ('system', 1), ('largest', 1), ('significant', 1), ('brings', 1), ('increased', 1), ('ability', 1)]
[('book', 2), ('stealing', 1), ('network', 1), ('box', 1), ('intended', 1), ('install', 1), ('configure', 1), ('update', 1), ('troubleshoot', 1), ('defend', 1), ('another', 1), ('countless', 1), ('hacker', 1), ('edgy', 1), ('provocative', 1)]
[('citrix', 3), ('cca', 2), ('professional', 2), ('certified', 1), ('administrator', 1), ('credential', 1), ('first', 1), ('tier', 1), ('certification', 1), ('often', 1), ('sought', 1), ('whose', 1), ('network', 1), ('employ', 1), ('virtualization', 1), ('technology', 1)]
[('firewall', 2), ('policy', 2), ('good', 1), ('security', 1), ('vpn', 1), ('connection', 1), ('latest', 1), ('generation', 1), ('offer', 1), ('dizzying', 1), ('array', 1), ('powerful', 1), ('option', 1), ('key', 1), ('success', 1), ('write', 1), ('concise', 1), ('provide', 1), ('appropriate', 1), ('level', 1)]
[('programming', 3), ('revised', 1), ('updated', 1), ('improvement', 1), ('conceived', 1), ('parallel', 1), ('course', 1), ('art', 1), ('multiprocessor', 1), ('authoritative', 1), ('guide', 1), ('multicore', 1), ('introduces', 1), ('higher', 1), ('level', 1), ('set', 1), ('software', 1), ('development', 1), ('skill', 1)]
[('last', 1), ('year', 1), ('machine', 1), ('vision', 1), ('evolved', 1), ('mature', 1), ('field', 1), ('embracing', 1), ('wide', 1), ('range', 1), ('application', 1), ('including', 1), ('surveillance', 1), ('automated', 1), ('inspection', 1), ('robot', 1), ('assembly', 1), ('vehicle', 1), ('guidance', 1), ('traffic', 1), ('monitoring', 1), ('control', 1), ('signature', 1), ('verification', 1)]
[('digital', 2), ('evidence', 2), ('following', 1), ('success', 1), ('introductory', 1), ('text', 1), ('computer', 1), ('crime', 1), ('eoghan', 1), ('casey', 1), ('brings', 1), ('together', 1), ('top', 1), ('expert', 1), ('create', 1), ('first', 1), ('detailed', 1), ('guide', 1), ('professional', 1), ('already', 1), ('familiar', 1)]
[('cuda', 4), ('parallel', 2), ('need', 1), ('learn', 1), ('experience', 1), ('computing', 1), ('programming', 1), ('developer', 1), ('introduction', 1), ('offer', 1), ('detailed', 1), ('guide', 1), ('grounding', 1), ('fundamental', 1), ('start', 1), ('introducing', 1), ('bringing', 1)]
[('need', 2), ('usability', 2), ('convinced', 1), ('know', 1), ('key', 1), ('success', 1), ('interactive', 1), ('system', 1), ('commercial', 1), ('software', 1), ('web', 1), ('site', 1), ('handheld', 1), ('device', 1), ('skill', 1), ('make', 1), ('part', 1), ('product', 1), ('development', 1), ('equation', 1)]
[('cryptography', 3), ('developer', 2), ('chapter', 2), ('guide', 1), ('software', 1), ('learn', 1), ('implement', 1), ('safely', 1), ('cost', 1), ('effectively', 1), ('begin', 1), ('introduces', 1), ('subject', 1), ('reader', 1), ('second', 1), ('discus', 1)]
[('perfectly', 1), ('intelligent', 1), ('programmer', 1), ('often', 1), ('struggle', 1), ('forced', 1), ('work', 1), ('sql', 1), ('joe', 1), ('celko', 1), ('belief', 1), ('problem', 1), ('lie', 1), ('procedural', 1), ('programming', 1), ('mindset', 1), ('keep', 1), ('taking', 1), ('full', 1), ('advantage', 1), ('power', 1), ('declarative', 1), ('language', 1)]
[('quality', 3), ('data', 2), ('framework', 2), ('assessment', 1), ('show', 1), ('measure', 1), ('monitor', 1), ('ensuring', 1), ('time', 1), ('start', 1), ('general', 1), ('concept', 1), ('measurement', 1), ('work', 1), ('way', 1), ('detailed', 1), ('three', 1), ('dozen', 1)]
[('server', 3), ('system', 2), ('window', 2), ('microsoft', 1), ('hail', 1), ('latest', 1), ('version', 1), ('flagship', 1), ('operating', 1), ('secure', 1), ('fully', 1), ('achieve', 1), ('lofty', 1), ('status', 1), ('administrator', 1), ('security', 1), ('professional', 1), ('install', 1)]
[('computer', 3), ('system', 3), ('design', 3), ('principle', 2), ('first', 1), ('textbook', 1), ('take', 1), ('based', 1), ('approach', 1), ('identifies', 1), ('examines', 1), ('illustrates', 1), ('fundamental', 1), ('concept', 1), ('common', 1), ('across', 1), ('operating', 1)]
[('part', 2), ('several', 2), ('skype', 2), ('reader', 2), ('book', 1), ('divided', 1), ('four', 1), ('begin', 1), ('chapter', 1), ('basic', 1), ('learns', 1), ('install', 1), ('configure', 1), ('platform', 1), ('including', 1), ('window', 1), ('max', 1), ('osx', 1), ('linux', 1), ('pocketpc', 1)]
[('project', 2), ('recent', 1), ('survey', 1), ('stated', 1), ('embedded', 1), ('late', 1), ('month', 1), ('book', 1), ('help', 1), ('time', 1), ('design', 1), ('pattern', 1), ('author', 1), ('carefully', 1), ('take', 1), ('account', 1), ('special', 1), ('concern', 1), ('found', 1), ('designing', 1), ('developing', 1)]
[('language', 3), ('programming', 2), ('pragmatic', 1), ('third', 1), ('edition', 1), ('comprehensive', 1), ('book', 1), ('available', 1), ('today', 1), ('taking', 1), ('perspective', 1), ('design', 1), ('implementation', 1), ('tightly', 1), ('interconnected', 1), ('neither', 1), ('fully', 1), ('understood', 1)]
[('extensively', 1), ('revised', 1), ('updated', 1), ('encompass', 1), ('latest', 1), ('development', 1), ('pic', 1), ('fxx', 1), ('series', 1), ('book', 1), ('demonstrates', 1), ('develop', 1), ('range', 1), ('microcontroller', 1), ('application', 1), ('project', 1), ('based', 1), ('approach', 1), ('giving', 1), ('introduction', 1)]
[('fault', 2), ('system', 2), ('approach', 2), ('tolerant', 1), ('first', 1), ('book', 1), ('tolerance', 1), ('design', 1), ('hardware', 1), ('software', 1), ('text', 1), ('market', 1), ('take', 1), ('offer', 1), ('comprehensive', 1), ('date', 1), ('treatment', 1), ('koren', 1), ('krishna', 1)]
[('digital', 3), ('legal', 2), ('business', 2), ('companion', 1), ('comprehensive', 1), ('guidance', 1), ('covering', 1), ('intellectual', 1), ('property', 1), ('contract', 1), ('fundamental', 1), ('open', 1), ('source', 1), ('rule', 1), ('strategy', 1), ('development', 1), ('consulting', 1), ('outsourcing', 1), ('software', 1)]
[('based', 2), ('tcp', 1), ('ip', 1), ('socket', 1), ('practical', 1), ('guide', 1), ('programmer', 1), ('second', 1), ('edition', 1), ('quick', 1), ('affordable', 1), ('way', 1), ('gain', 1), ('knowledge', 1), ('skill', 1), ('needed', 1), ('develop', 1), ('sophisticated', 1), ('powerful', 1), ('web', 1), ('application', 1), ('book', 1), ('focused', 1), ('tutorial', 1), ('approach', 1)]
[('oracle', 4), ('data', 2), ('warehousing', 1), ('guide', 1), ('using', 1), ('warehouse', 1), ('feature', 1), ('latest', 1), ('version', 1), ('database', 1), ('written', 1), ('development', 1), ('team', 1), ('designed', 1), ('implemented', 1), ('code', 1), ('industry', 1)]
[('exchange', 3), ('represents', 1), ('biggest', 1), ('advance', 1), ('history', 1), ('microsoft', 1), ('server', 1), ('technology', 1), ('given', 1), ('leap', 1), ('architecture', 1), ('wide', 1), ('array', 1), ('new', 1), ('feature', 1), ('surprising', 1), ('sp', 1), ('release', 1)]
[('malware', 2), ('malicious', 2), ('code', 2), ('forensics', 1), ('investigating', 1), ('analyzing', 1), ('cover', 1), ('complete', 1), ('process', 1), ('responding', 1), ('incident', 1), ('written', 1), ('author', 1), ('investigated', 1), ('prosecuted', 1), ('federal', 1), ('case', 1), ('book', 1), ('deal', 1), ('emerging', 1)]
[('new', 2), ('edition', 2), ('clinical', 2), ('decision', 2), ('support', 2), ('least', 1), ('updated', 1), ('content', 1), ('last', 1), ('nd', 1), ('explores', 1), ('crucial', 1), ('motivating', 1), ('factor', 1), ('poised', 1), ('accelerate', 1), ('cd', 1), ('adoption', 1), ('book', 1), ('mostly', 1), ('focused', 1)]
[('compression', 3), ('data', 2), ('introduction', 1), ('third', 1), ('edition', 1), ('concise', 1), ('comprehensive', 1), ('guide', 1), ('book', 1), ('introduces', 1), ('reader', 1), ('theory', 1), ('underlying', 1), ('today', 1), ('technique', 1), ('detailed', 1), ('instruction', 1), ('application', 1)]
[('network', 2), ('free', 2), ('nmap', 1), ('mapper', 1), ('open', 1), ('source', 1), ('tool', 1), ('available', 1), ('gnu', 1), ('general', 1), ('public', 1), ('license', 1), ('published', 1), ('software', 1), ('foundation', 1), ('often', 1), ('used', 1), ('administrator', 1), ('security', 1), ('professional', 1), ('scan', 1)]
[('high', 2), ('throughout', 1), ('world', 1), ('profile', 1), ('large', 1), ('organization', 1), ('aerospace', 1), ('defense', 1), ('automotive', 1), ('banking', 1), ('chemical', 1), ('financial', 1), ('service', 1), ('provider', 1), ('healthcare', 1), ('tech', 1), ('insurance', 1), ('oil', 1), ('gas', 1), ('pharmaceutical', 1), ('retail', 1), ('telecommunication', 1), ('utility', 1)]
[('rfid', 3), ('identification', 2), ('called', 2), ('radio', 1), ('frequency', 1), ('automatic', 1), ('method', 1), ('relying', 1), ('storing', 1), ('remotely', 1), ('retrieving', 1), ('data', 1), ('using', 1), ('device', 1), ('tag', 1), ('transponder', 1), ('book', 1), ('guide', 1), ('comptia', 1), ('new', 1), ('security', 1), ('exam', 1)]
[('perl', 3), ('programmer', 2), ('program', 2), ('originally', 1), ('trained', 1), ('unix', 1), ('write', 1), ('bear', 1), ('strong', 1), ('resemblance', 1), ('incorporates', 1), ('many', 1), ('feature', 1), ('root', 1), ('language', 1), ('lisp', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('book', 1), ('suitable', 1), ('novice', 1), ('experienced', 1), ('system', 1), ('administrator', 1), ('programmer', 1), ('anyone', 1), ('learn', 1), ('work', 1), ('tcp', 1), ('ip', 1), ('protocol', 1), ('suite', 1), ('even', 1), ('little', 1), ('background', 1), ('networking', 1)]
[('cpp', 2), ('book', 2), ('concept', 2), ('written', 1), ('team', 1), ('certified', 1), ('protection', 1), ('professional', 1), ('cpps', 1), ('led', 1), ('asis', 1), ('instructor', 1), ('seven', 1), ('year', 1), ('experience', 1), ('provides', 1), ('overview', 1), ('fundamental', 1), ('practice', 1), ('security', 1), ('management', 1), ('offer', 1), ('important', 1), ('insight', 1), ('exam', 1), ('addition', 1), ('introduction', 1), ('purpose', 1)]
[('technology', 2), ('paypal', 1), ('offer', 1), ('wide', 1), ('range', 1), ('payment', 1), ('always', 1), ('clear', 1), ('best', 1), ('choice', 1), ('website', 1), ('book', 1), ('get', 1), ('hood', 1), ('show', 1), ('different', 1), ('work', 1), ('choose', 1), ('right', 1), ('solution', 1)]
[('virtualization', 2), ('technology', 2), ('complete', 1), ('reference', 1), ('market', 1), ('brings', 1), ('together', 1), ('microsoft', 1), ('shifted', 1), ('training', 1), ('strategy', 1), ('include', 1), ('virtual', 1), ('machine', 1), ('new', 1), ('al', 1), ('moc', 1), ('course', 1), ('lead', 1)]
[('spring', 4), ('book', 2), ('reader', 2), ('framework', 1), ('recipe', 1), ('gary', 1), ('mak', 1), ('newest', 1), ('latest', 1), ('apress', 1), ('source', 1), ('series', 1), ('let', 1), ('dirty', 1), ('code', 1), ('immediate', 1), ('copy', 1), ('paste', 1), ('specific', 1), ('application', 1)]
[('web', 3), ('gwt', 2), ('pro', 1), ('application', 1), ('development', 1), ('jeff', 1), ('dwyer', 1), ('first', 1), ('book', 1), ('professional', 1), ('principle', 1), ('includes', 1), ('google', 1), ('toolkit', 1), ('leading', 1), ('java', 1), ('ajax', 1), ('framework', 1), ('market', 1), ('hot', 1), ('term', 1), ('relative', 1)]
[('nxt', 3), ('programming', 2), ('language', 2), ('new', 2), ('book', 2), ('visual', 1), ('robot', 1), ('completely', 1), ('currently', 1), ('available', 1), ('subject', 1), ('written', 1), ('kid', 1), ('teacher', 1), ('parent', 1), ('anyone', 1), ('cover', 1)]
[('java', 3), ('se', 3), ('beginning', 2), ('new', 2), ('sing', 1), ('li', 1), ('et', 1), ('al', 1), ('first', 1), ('level', 1), ('tutorial', 1), ('ideal', 1), ('learning', 1), ('core', 1), ('standard', 1), ('edition', 1), ('platform', 1), ('chapter', 1), ('book', 1), ('introduces', 1), ('particular', 1), ('api', 1), ('area', 1)]
[('realtime', 3), ('web', 3), ('apps', 2), ('html', 1), ('websocket', 1), ('php', 1), ('jquery', 1), ('guide', 1), ('beginner', 1), ('intermediate', 1), ('level', 1), ('developer', 1), ('looking', 1), ('take', 1), ('next', 1), ('leap', 1), ('forward', 1), ('website', 1), ('app', 1), ('development', 1), ('able', 1)]
[('year', 3), ('experience', 3), ('database', 2), ('ideal', 1), ('anyone', 1), ('want', 1), ('learn', 1), ('sql', 1), ('programming', 1), ('oracle', 1), ('author', 1), ('teaching', 1), ('curriculum', 1), ('develoment', 1), ('orcle', 1), ('book', 1), ('used', 1)]
[('database', 4), ('oracle', 3), ('administration', 2), ('sam', 1), ('alapati', 1), ('expert', 1), ('comprehensive', 1), ('handbook', 1), ('administrator', 1), ('dba', 1), ('using', 1), ('release', 1), ('key', 1), ('aspect', 1), ('covered', 1), ('including', 1), ('backup', 1)]
[('linux', 3), ('beginning', 2), ('ubuntu', 2), ('novice', 2), ('professional', 2), ('best', 2), ('selling', 2), ('third', 1), ('edition', 1), ('update', 1), ('first', 1), ('book', 1), ('introducing', 1), ('adapted', 1), ('keir', 1), ('thomas', 1), ('suse', 1), ('apress', 1)]
[('often', 2), ('competent', 1), ('system', 1), ('administrator', 1), ('know', 1), ('success', 1), ('hinge', 1), ('upon', 1), ('able', 1), ('perform', 1), ('tedious', 1), ('task', 1), ('rigor', 1), ('punctuality', 1), ('metric', 1), ('achieved', 1), ('instituting', 1), ('considerable', 1), ('degree', 1), ('automation', 1), ('something', 1), ('become', 1)]
[('object', 3), ('crystal', 2), ('enterprise', 2), ('create', 2), ('model', 2), ('pro', 1), ('businessobjects', 1), ('xi', 1), ('programming', 1), ('show', 1), ('customized', 1), ('solution', 1), ('using', 1), ('business', 1), ('youll', 1), ('see', 1), ('utilized', 1), ('professional', 1), ('quality', 1), ('tool', 1)]
[('ubuntu', 3), ('linux', 3), ('distribution', 2), ('beginning', 1), ('fourth', 1), ('edition', 1), ('update', 1), ('bestselling', 1), ('book', 1), ('today', 1), ('hottest', 1), ('targeting', 1), ('newcomer', 1), ('alike', 1), ('reader', 1), ('presented', 1), ('introduction', 1), ('world', 1)]
[('drupal', 3), ('book', 2), ('building', 2), ('web', 2), ('site', 2), ('focus', 1), ('nontechnical', 1), ('user', 1), ('responsible', 1), ('maintaining', 1), ('managing', 1), ('cover', 1), ('consider', 1), ('using', 1), ('new', 1), ('installing', 1), ('configuring', 1)]
[('edition', 3), ('david', 2), ('php', 2), ('second', 1), ('power', 1), ('highly', 1), ('respected', 1), ('solution', 1), ('dynamic', 1), ('web', 1), ('design', 1), ('made', 1), ('easy', 1), ('new', 1), ('updated', 1), ('incorporate', 1), ('change', 1), ('first', 1), ('offer', 1), ('latest', 1), ('technique', 1), ('classic', 1)]
[('excel', 3), ('mac', 2), ('microsoft', 1), ('o', 1), ('powerful', 1), ('application', 1), ('many', 1), ('impressive', 1), ('feature', 1), ('difficult', 1), ('find', 1), ('learn', 1), ('hart', 1), ('davis', 1), ('practical', 1), ('hand', 1), ('approach', 1), ('learning', 1), ('detail', 1)]
[('apache', 3), ('tomcat', 3), ('web', 2), ('popular', 1), ('open', 1), ('source', 1), ('de', 1), ('facto', 1), ('java', 1), ('application', 1), ('server', 1), ('standard', 1), ('today', 1), ('developer', 1), ('using', 1), ('jsp', 1), ('servlets', 1), ('cover', 1), ('detail', 1), ('installation', 1), ('administration', 1), ('explains', 1), ('key', 1), ('part', 1)]
[('arduino', 2), ('robot', 2), ('step', 2), ('lt', 1), ('gt', 1), ('book', 1), ('show', 1), ('use', 1), ('control', 1), ('variety', 1), ('different', 1), ('providing', 1), ('instruction', 1), ('entire', 1), ('building', 1), ('process', 1), ('learn', 1), ('basic', 1), ('characteristic', 1)]
[('electronics', 1), ('hackerspace', 1), ('look', 1), ('bedroom', 1), ('garage', 1), ('classroom', 1), ('even', 1), ('suitcase', 1), ('start', 1), ('part', 1), ('essential', 1), ('nice', 1), ('organize', 1), ('dale', 1)]
[('internet', 3), ('build', 2), ('thing', 1), ('iot', 1), ('project', 1), ('prototyping', 1), ('proof', 1), ('concept', 1), ('purpose', 1), ('book', 1), ('contains', 1), ('tool', 1), ('needed', 1), ('prototype', 1), ('design', 1), ('sense', 1), ('environment', 1), ('communicate', 1)]
[('book', 3), ('dreamweaver', 2), ('market', 2), ('support', 1), ('new', 1), ('version', 1), ('huge', 1), ('potential', 1), ('fairly', 1), ('unique', 1), ('within', 1), ('purely', 1), ('focused', 1), ('php', 1), ('web', 1), ('development', 1), ('teach', 1), ('professional', 1), ('technique', 1), ('treat', 1)]
[('recipe', 3), ('ndash', 3), ('sharepoint', 2), ('development', 1), ('offer', 1), ('range', 1), ('ready', 1), ('use', 1), ('code', 1), ('provide', 1), ('building', 1), ('block', 1), ('solving', 1), ('many', 1), ('common', 1), ('programming', 1), ('dilemma', 1), ('practical', 1), ('hand', 1), ('guide', 1), ('categorizes', 1)]
[('jonathan', 1), ('lewis', 1), ('world', 1), ('foremost', 1), ('authority', 1), ('field', 1), ('frequently', 1), ('quoted', 1), ('reference', 1), ('leading', 1), ('expert', 1), ('tom', 1), ('kyte', 1), ('see', 1), ('example', 1)]
[('book', 4), ('pivot', 1), ('table', 1), ('huge', 1), ('growth', 1), ('area', 1), ('give', 1), ('fast', 1), ('answer', 1), ('need', 1), ('succeedthe', 1), ('far', 1), ('detailed', 1), ('competing', 1), ('title', 1), ('reader', 1), ('able', 1), ('quicklythe', 1), ('go', 1), ('beyond', 1)]
[('javascript', 3), ('book', 1), ('address', 1), ('today', 1), ('approach', 1), ('detail', 1), ('modern', 1), ('browser', 1), ('support', 1), ('including', 1), ('information', 1), ('internet', 1), ('explorer', 1), ('object', 1), ('oriented', 1), ('testing', 1), ('debugging', 1), ('unobtrusive', 1), ('technique', 1), ('using', 1), ('dom', 1), ('scripting', 1), ('ajax', 1)]
[('java', 5), ('book', 2), ('se', 2), ('look', 1), ('popular', 1), ('way', 1), ('using', 1), ('write', 1), ('game', 1), ('pc', 1), ('high', 1), ('level', 1), ('scene', 1), ('graph', 1), ('api', 1), ('jogl', 1), ('layer', 1), ('opengl', 1), ('written', 1), ('gaming', 1), ('expert', 1), ('andrew', 1), ('davison', 1), ('us', 1), ('new', 1)]
[('php', 2), ('object', 2), ('oriented', 2), ('programming', 2), ('surge', 1), ('popularity', 1), ('important', 1), ('consideration', 1), ('developer', 1), ('version', 1), ('neutral', 1), ('book', 1), ('gentle', 1), ('introduction', 1), ('oop', 1), ('overburden', 1), ('complex', 1)]
[('data', 2), ('every', 1), ('programmer', 1), ('need', 1), ('learn', 1), ('linq', 1), ('language', 1), ('integrated', 1), ('query', 1), ('microsoft', 1), ('breakthrough', 1), ('technology', 1), ('simplifying', 1), ('unifying', 1), ('access', 1), ('source', 1), ('first', 1), ('step', 1), ('future', 1), ('net', 1), ('programming', 1), ('book', 1)]
[('game', 2), ('python', 2), ('book', 1), ('provides', 1), ('reader', 1), ('introductory', 1), ('resource', 1), ('learning', 1), ('create', 1), ('compelling', 1), ('using', 1), ('open', 1), ('source', 1), ('programming', 1), ('language', 1), ('pygame', 1), ('development', 1), ('library', 1), ('authored', 1), ('industry', 1), ('veteran', 1), ('expert', 1)]
[('perl', 2), ('book', 1), ('believed', 1), ('need', 1), ('learn', 1), ('know', 1), ('ubiquitous', 1), ('extremely', 1), ('flexible', 1), ('powerful', 1), ('afraid', 1), ('web', 1), ('cloud', 1), ('originally', 1), ('touted', 1), ('duct', 1)]
[('vb', 2), ('language', 1), ('gateway', 1), ('powerful', 1), ('net', 1), ('platform', 1), ('combined', 1), ('visual', 1), ('studio', 1), ('give', 1), ('freedom', 1), ('create', 1), ('application', 1), ('faster', 1), ('greater', 1), ('range', 1), ('tool', 1), ('coding', 1), ('environment', 1), ('book', 1), ('author', 1)]
[('net', 4), ('cli', 2), ('application', 2), ('learning', 2), ('pro', 1), ('visual', 1), ('platform', 1), ('writing', 1), ('using', 1), ('reader', 1), ('in', 1), ('out', 1), ('development', 1), ('syntax', 1), ('old', 1), ('new', 1)]
[('lt', 2), ('em', 2), ('gt', 2), ('website', 2), ('process', 2), ('foundation', 1), ('creation', 1), ('html', 1), ('cs', 1), ('javascript', 1), ('show', 1), ('entire', 1), ('building', 1), ('involves', 1), ('technical', 1), ('knowledge', 1), ('book', 1), ('provides', 1), ('information', 1), ('need', 1)]
[('service', 2), ('broker', 2), ('key', 2), ('microsoft', 2), ('product', 1), ('support', 1), ('message', 1), ('based', 1), ('processing', 1), ('application', 1), ('pro', 1), ('sql', 1), ('server', 1), ('help', 1), ('take', 1), ('full', 1), ('advantage', 1), ('technology', 1), ('beginning', 1), ('fundamental', 1), ('moving', 1)]
[('world', 2), ('data', 2), ('visual', 1), ('animal', 1), ('see', 1), ('true', 1), ('splendor', 1), ('brain', 1), ('computer', 1), ('sort', 1), ('organize', 1), ('raw', 1), ('transform', 1), ('produce', 1), ('new', 1), ('image', 1), ('beginning', 1), ('python', 1), ('visualization', 1)]
[('java', 4), ('edition', 2), ('ee', 2), ('platform', 2), ('enterprise', 1), ('continues', 1), ('leading', 1), ('technology', 1), ('oracle', 1), ('previously', 1), ('sun', 1), ('beginning', 1), ('glassfish', 1), ('second', 1), ('first', 1), ('tutorial', 1), ('book', 1), ('final', 1), ('rtm', 1), ('version', 1)]
[('step', 2), ('spreadsheet', 2), ('beginning', 1), ('microsoft', 1), ('excel', 1), ('practical', 1), ('guide', 1), ('getting', 1), ('started', 1), ('world', 1), ('widely', 1), ('used', 1), ('application', 1), ('book', 1), ('offer', 1), ('hand', 1), ('approach', 1), ('learning', 1), ('create', 1), ('edit', 1), ('use', 1), ('various', 1)]
[('iphone', 2), ('app', 2), ('store', 2), ('hottest', 1), ('gadget', 1), ('generation', 1), ('success', 1), ('fueled', 1), ('apple', 1), ('online', 1), ('marketplace', 1), ('application', 1), ('billion', 1), ('apps', 1), ('downloaded', 1), ('month', 1), ('open', 1)]
[('arduino', 3), ('create', 1), ('based', 1), ('design', 1), ('gain', 1), ('depth', 1), ('knowledge', 1), ('architecture', 1), ('learn', 1), ('user', 1), ('friendly', 1), ('language', 1), ('context', 1), ('practical', 1), ('project', 1), ('build', 1), ('home', 1), ('hand', 1), ('experience', 1), ('using', 1)]
[('textbook', 1), ('concise', 1), ('introduction', 1), ('basic', 1), ('toolbox', 1), ('structure', 1), ('allow', 1), ('efficient', 1), ('organization', 1), ('retrieval', 1), ('data', 1), ('key', 1), ('algorithm', 1), ('problem', 1), ('graph', 1), ('generic', 1), ('technique', 1), ('modeling', 1), ('understanding', 1), ('solving', 1), ('algorithmic', 1)]
[('latex', 4), ('document', 2), ('practical', 1), ('cover', 1), ('material', 1), ('needed', 1), ('everyday', 1), ('accessible', 1), ('manual', 1), ('friendly', 1), ('easy', 1), ('designed', 1), ('portable', 1), ('short', 1), ('chapter', 1), ('mission', 1), ('impossible', 1), ('introduces', 1)]
[('case', 2), ('violation', 2), ('last', 1), ('year', 1), ('financial', 1), ('statement', 1), ('scandal', 1), ('fraud', 1), ('corruption', 1), ('data', 1), ('protection', 1), ('legal', 1), ('led', 1), ('numerous', 1), ('liability', 1), ('damage', 1), ('claim', 1), ('loss', 1), ('reputation', 1), ('reaction', 1)]
[('pattern', 3), ('business', 3), ('book', 1), ('show', 1), ('apply', 1), ('idea', 1), ('application', 1), ('present', 1), ('structural', 1), ('behavioral', 1), ('use', 1), ('rea', 1), ('resource', 1), ('event', 1), ('agent', 1), ('common', 1), ('backbone', 1), ('developer', 1), ('working', 1)]
[('book', 3), ('latex', 2), ('teach', 2), ('example', 2), ('free', 1), ('automated', 1), ('state', 1), ('art', 1), ('typesetting', 1), ('system', 1), ('in', 1), ('out', 1), ('needed', 1), ('write', 1), ('article', 1), ('report', 1), ('thesis', 1), ('giving', 1), ('many', 1), ('worked', 1), ('showing', 1)]
[('thing', 1), ('catch', 1), ('eye', 1), ('almost', 1), ('literature', 1), ('designing', 1), ('engineering', 1), ('enterprise', 1), ('lack', 1), ('founded', 1), ('theory', 1), ('construction', 1), ('operation', 1), ('often', 1), ('even', 1), ('basic', 1), ('notion', 1), ('action', 1)]
[('data', 2), ('quality', 2), ('poor', 1), ('seriously', 1), ('hinder', 1), ('damage', 1), ('efficiency', 1), ('effectiveness', 1), ('organization', 1), ('business', 1), ('growing', 1), ('awareness', 1), ('repercussion', 1), ('led', 1), ('major', 1), ('public', 1), ('initiative', 1), ('act', 1), ('usa', 1)]
[('community', 2), ('wide', 1), ('ranging', 1), ('introductory', 1), ('text', 1), ('look', 1), ('virtual', 1), ('cyberspace', 1), ('analysis', 1), ('relationship', 1), ('real', 1), ('clearly', 1), ('written', 1), ('range', 1), ('international', 1), ('example', 1), ('essential', 1), ('overview', 1), ('sociology', 1), ('internet', 1)]
[('business', 3), ('company', 1), ('institution', 1), ('depend', 1), ('availability', 1), ('information', 1), ('technology', 1), ('mission', 1), ('critical', 1), ('process', 1), ('based', 1), ('continuity', 1), ('ability', 1), ('circumstance', 1)]
[('exceptional', 1), ('work', 1), ('provides', 1), ('reader', 1), ('introduction', 1), ('state', 1), ('art', 1), ('research', 1), ('data', 1), ('warehouse', 1), ('design', 1), ('many', 1), ('reference', 1), ('detailed', 1), ('source', 1), ('offer', 1), ('clear', 1), ('concise', 1), ('presentation', 1), ('major', 1), ('concept', 1), ('result', 1)]
[('book', 2), ('full', 1), ('four', 1), ('color', 1), ('editor', 1), ('created', 1), ('bioconductor', 1), ('project', 1), ('robert', 1), ('gentleman', 1), ('originator', 1), ('method', 1), ('illustrated', 1), ('publicly', 1), ('available', 1), ('data', 1), ('major', 1), ('section', 1), ('devoted', 1), ('fully', 1)]
[('provides', 1), ('rich', 1), ('theory', 1), ('powerful', 1), ('applicationsfigures', 1), ('accompanied', 1), ('code', 1), ('required', 1), ('produce', 1), ('themfull', 1), ('color', 1), ('figure', 1)]
[('rti', 2), ('daily', 1), ('planning', 1), ('book', 1), ('make', 1), ('exemplary', 1), ('possible', 1), ('every', 1), ('classroom', 1), ('gretchen', 1), ('owocki', 1), ('give', 1), ('specific', 1), ('tool', 1), ('collecting', 1), ('assessing', 1), ('reading', 1), ('data', 1), ('targeted', 1), ('follow', 1), ('instruction', 1), ('sensible', 1), ('developmentally', 1), ('sensitive', 1), ('research', 1), ('based', 1), ('assessment', 1), ('framework', 1), ('show', 1), ('ass', 1), ('rubric', 1), ('chart', 1), ('checklist', 1), ('support', 1)]
[('providing', 1), ('broad', 1), ('overview', 1), ('many', 1), ('card', 1), ('system', 1), ('solution', 1), ('practical', 1), ('use', 1), ('today', 1), ('state', 1), ('art', 1), ('work', 1), ('written', 1), ('contributing', 1), ('author', 1), ('active', 1), ('researcher', 1), ('acknowledged', 1), ('expert', 1), ('field', 1), ('single', 1), ('book', 1)]
[('biology', 2), ('book', 1), ('designed', 1), ('specifically', 1), ('guide', 1), ('computer', 1), ('scientist', 1), ('needing', 1), ('introduction', 1), ('cell', 1), ('text', 1), ('explores', 1), ('three', 1), ('different', 1), ('facet', 1), ('biological', 1), ('system', 1), ('experimental', 1), ('method', 1), ('language', 1), ('nomenclature', 1), ('author', 1)]
[('digital', 2), ('mpeg', 2), ('video', 1), ('offer', 1), ('comprehensive', 1), ('coverage', 1), ('audio', 1), ('visual', 1), ('compression', 1), ('standard', 1), ('treatment', 1), ('includes', 1), ('specific', 1), ('needed', 1), ('implement', 1), ('decoder', 1), ('including', 1), ('syntax', 1), ('semantics', 1), ('coded', 1), ('bitstreams', 1)]
[('lt', 3), ('gt', 3), ('computer', 3), ('strong', 2), ('internet', 1), ('connected', 1), ('society', 1), ('increasingly', 1), ('relies', 1), ('amp', 1), ('nbsp', 1), ('result', 1), ('attack', 1), ('malicious', 1), ('software', 1), ('never', 1), ('bigger', 1), ('concern', 1), ('virus', 1), ('malware', 1), ('draw', 1)]
[('black', 2), ('hat', 2), ('go', 2), ('best', 1), ('selling', 1), ('python', 1), ('explores', 1), ('darker', 1), ('side', 1), ('popular', 1), ('programming', 1), ('language', 1), ('collection', 1), ('short', 1), ('script', 1), ('help', 1), ('test', 1), ('system', 1), ('build', 1), ('automate', 1), ('tool', 1), ('fit', 1), ('need', 1), ('improve', 1)]
[('javascript', 2), ('programming', 2), ('language', 1), ('internet', 1), ('secret', 1), ('sauce', 1), ('make', 1), ('web', 1), ('awesome', 1), ('favorite', 1), ('site', 1), ('interactive', 1), ('online', 1), ('game', 1), ('fun', 1), ('kid', 1), ('lighthearted', 1), ('introduction', 1), ('teach', 1), ('essential', 1)]
[('gimp', 3), ('master', 2), ('free', 1), ('alternative', 1), ('adobe', 1), ('photoshop', 1), ('ton', 1), ('professional', 1), ('grade', 1), ('feature', 1), ('many', 1), ('powerful', 1), ('tool', 1), ('menu', 1), ('option', 1), ('difficult', 1), ('whether', 1), ('struggling', 1), ('started', 1), ('trying', 1)]
[('product', 3), ('software', 3), ('management', 2), ('today', 1), ('rely', 1), ('tightly', 1), ('integrated', 1), ('hardware', 1), ('component', 1), ('system', 1), ('engineer', 1), ('project', 1), ('manager', 1), ('need', 1), ('understanding', 1), ('data', 1), ('pdm', 1), ('configuration', 1), ('scm', 1), ('groundbreaking', 1), ('book', 1), ('offer', 1), ('essential', 1), ('knowledge', 1), ('pointing', 1)]
[('agile', 3), ('objective', 2), ('first', 1), ('truly', 1), ('impartial', 1), ('book', 1), ('give', 1), ('expert', 1), ('analysis', 1), ('software', 1), ('development', 1), ('method', 1), ('together', 1), ('needed', 1), ('tool', 1), ('evaluating', 1), ('suitability', 1), ('organization', 1), ('review', 1), ('philosophical', 1), ('underpinnings', 1), ('manifesto', 1), ('principle', 1), ('discus', 1)]
[('security', 2), ('groundbreaking', 1), ('book', 1), ('help', 1), ('master', 1), ('management', 1), ('information', 1), ('concentrating', 1), ('proactive', 1), ('recognition', 1), ('resolution', 1), ('practical', 1), ('issue', 1), ('developing', 1), ('implementing', 1), ('enterprise', 1), ('drawing', 1), ('upon', 1), ('author', 1), ('wealth', 1), ('valuable', 1), ('experience', 1), ('high', 1), ('risk', 1), ('commercial', 1), ('environment', 1), ('work', 1), ('focus', 1)]
[('book', 2), ('project', 2), ('management', 2), ('long', 1), ('overdue', 1), ('today', 1), ('professional', 1), ('unique', 1), ('resource', 1), ('offer', 1), ('practical', 1), ('model', 1), ('centric', 1), ('approach', 1), ('integrated', 1), ('support', 1), ('state', 1), ('art', 1), ('software', 1), ('development', 1), ('valuable', 1), ('topical', 1), ('reference', 1), ('enables', 1), ('understand', 1), ('issue', 1), ('relate', 1), ('problem', 1), ('role', 1)]
[('commerce', 2), ('text', 1), ('present', 1), ('survey', 1), ('tool', 1), ('technology', 1), ('used', 1), ('building', 1), ('system', 1), ('explores', 1), ('various', 1), ('type', 1), ('commercial', 1), ('transaction', 1), ('examines', 1), ('impact', 1), ('enterprise', 1), ('strategy', 1)]
[('text', 2), ('book', 1), ('carefully', 1), ('designed', 1), ('flexible', 1), ('use', 1), ('first', 1), ('semester', 1), ('course', 1), ('uttar', 1), ('pradesh', 1), ('technical', 1), ('university', 1), ('contains', 1), ('following', 1), ('feature', 1), ('precise', 1), ('mathematical', 1), ('language', 1), ('used', 1), ('without', 1), ('excessive', 1), ('formalism', 1), ('abstraction', 1), ('exercise', 1), ('problem', 1), ('set', 1), ('many', 1), ('different', 1)]
[('excel', 3), ('edition', 2), ('tip', 2), ('updating', 1), ('previous', 1), ('make', 1), ('compatible', 1), ('featuring', 1), ('available', 1), ('new', 1), ('mr', 1), ('popular', 1), ('software', 1), ('guide', 1), ('even', 1), ('incorporates', 1), ('suggestion', 1), ('sent', 1), ('reader', 1), ('featured', 1), ('topic', 1), ('problem', 1), ('statement', 1), ('description', 1), ('followed', 1), ('broad', 1), ('strategy', 1), ('solving', 1)]
[('microsoft', 2), ('power', 2), ('pivot', 2), ('tool', 2), ('step', 2), ('revolutionary', 1), ('allows', 1), ('user', 1), ('create', 1), ('transform', 1), ('data', 1), ('report', 1), ('dashboard', 1), ('new', 1), ('powerful', 1), ('way', 1), ('using', 1), ('used', 1), ('analytical', 1), ('world', 1), ('excel', 1), ('book', 1), ('written', 1), ('member', 1), ('team', 1), ('provides', 1), ('practical', 1), ('guide', 1), ('creating', 1), ('financial', 1)]
[('excel', 3), ('udfs', 3), ('user', 2), ('function', 2), ('application', 2), ('visual', 2), ('basic', 2), ('vba', 2), ('used', 1), ('build', 1), ('custom', 1), ('called', 1), ('defined', 1), ('window', 1), ('mac', 1), ('version', 1), ('simply', 1), ('written', 1), ('editor', 1), ('vbe', 1), ('using', 1), ('language', 1), ('portable', 1), ('online', 1), ('io', 1), ('due', 1), ('missing', 1), ('capability', 1)]
[('introduction', 2), ('chapter', 2), ('thisiswherewetrytoconvinceyoutobuythisbook', 1), ('tellyouwhatittriestodo', 1), ('define', 1), ('term', 1), ('generally', 1), ('set', 1), ('scene', 1), ('make', 1), ('first', 1), ('read', 1), ('called', 1)]
[('computer', 1), ('programming', 1), ('skill', 1), ('bring', 1), ('enjoyment', 1), ('creativity', 1), ('involved', 1), ('designing', 1), ('implementing', 1), ('solution', 1), ('problem', 1), ('classroom', 1), ('tested', 1), ('easy', 1), ('follow', 1), ('textbook', 1), ('teach', 1), ('reader', 1), ('program', 1), ('using', 1), ('python', 1)]
[('acrobat', 2), ('engineer', 2), ('use', 2), ('applied', 1), ('first', 1), ('book', 1), ('written', 1), ('specifically', 1), ('give', 1), ('skill', 1), ('need', 1), ('pdfs', 1), ('adobe', 1), ('engineering', 1), ('application', 1), ('teach', 1), ('pdf', 1), ('communication', 1), ('archiving', 1)]
[('despite', 1), ('availability', 1), ('cheap', 1), ('fast', 1), ('accurate', 1), ('usable', 1), ('eye', 1), ('tracker', 1), ('little', 1), ('information', 1), ('available', 1), ('develop', 1), ('implement', 1), ('use', 1), ('system', 1), ('nd', 1), ('edition', 1), ('successful', 1), ('guide', 1), ('contains', 1), ('significant', 1), ('additional', 1), ('material', 1)]
[('pc', 2), ('upgrade', 2), ('computer', 1), ('user', 1), ('think', 1), ('fiddling', 1), ('inside', 1), ('taboo', 1), ('fear', 1), ('removing', 1), ('screw', 1), ('hold', 1), ('case', 1), ('crossing', 1), ('forbidden', 1), ('territory', 1), ('even', 1), ('know', 1), ('open', 1), ('box', 1), ('fix', 1), ('analysis', 1), ('paralysis', 1), ('often', 1), ('stop', 1), ('track', 1), ('offer', 1), ('best', 1)]
[('pc', 3), ('build', 2), ('outperform', 1), ('brand', 1), ('name', 1), ('box', 1), ('market', 1), ('yes', 1), ('even', 1), ('total', 1), ('geek', 1), ('guarantee', 1), ('worth', 1), ('effort', 1), ('discover', 1), ('quality', 1), ('better', 1), ('cost', 1), ('lower', 1), ('comparable', 1), ('shelf', 1), ('buy', 1), ('design', 1), ('custom', 1), ('computer', 1), ('want', 1), ('fun', 1)]
[('application', 2), ('book', 2), ('morphological', 1), ('image', 1), ('processing', 1), ('standard', 1), ('part', 1), ('imaging', 1), ('scientist', 1), ('toolbox', 1), ('applied', 1), ('wide', 1), ('range', 1), ('industrial', 1), ('concentrating', 1), ('show', 1), ('analyze', 1), ('problem', 1), ('develop', 1), ('successful', 1), ('algorithm', 1), ('based', 1), ('analysis', 1), ('hand', 1), ('real', 1), ('sense', 1), ('reader', 1)]
[('microsoft', 2), ('dynamic', 2), ('ax', 2), ('precise', 1), ('description', 1), ('instruction', 1), ('enable', 1), ('user', 1), ('student', 1), ('consultant', 1), ('easily', 1), ('understand', 1), ('offer', 1), ('premium', 1), ('erp', 1), ('solution', 1), ('support', 1), ('large', 1), ('mid', 1), ('sized', 1), ('organization', 1), ('complete', 1)]
[('der', 4), ('von', 2), ('werkzeuge', 2), ('erfolg', 1), ('einführung', 1), ('balanced', 1), ('scorecard', 1), ('bsc', 1), ('unternehmen', 1), ('ist', 1), ('zu', 1), ('großen', 1), ('teilen', 1), ('abhängig', 1), ('implementierung', 1), ('edv', 1), ('gestützten', 1), ('die', 1), ('anforderungen', 1), ('diese', 1), ('sind', 1), ('unterschiedlich', 1), ('je', 1), ('nach', 1), ('unternehmensgröße', 1), ('und', 1), ('typ', 1)]
[('second', 2), ('edition', 2), ('successful', 1), ('reviewed', 1), ('birkhauser', 1), ('book', 1), ('sold', 1), ('copy', 1), ('north', 1), ('americaprovides', 1), ('date', 1), ('presentation', 1), ('including', 1), ('new', 1), ('result', 1), ('example', 1), ('problem', 1), ('throughout', 1), ('text', 1), ('add', 1), ('chapter', 1)]
[('last', 1), ('first', 1), ('full', 1), ('account', 1), ('cypherpunks', 1), ('aim', 1), ('free', 1), ('world', 1), ('institutional', 1), ('secret', 1), ('forbes', 1), ('journalist', 1), ('andy', 1), ('greenberg', 1), ('traced', 1), ('shadowy', 1), ('history', 1), ('cryptography', 1), ('revolution', 1), ('wikileaks', 1)]
[('codenotes', 2), ('technology', 2), ('provides', 1), ('succinct', 1), ('accurate', 1), ('speedy', 1), ('way', 1), ('developer', 1), ('ramp', 1), ('new', 1), ('language', 1), ('unlike', 1), ('programming', 1), ('book', 1), ('drill', 1), ('core', 1), ('aspect', 1), ('focusing', 1), ('key', 1), ('element', 1)]
[('data', 2), ('describes', 1), ('principle', 1), ('emerging', 1), ('field', 1), ('intensive', 1), ('computing', 1), ('along', 1), ('method', 1), ('designing', 1), ('managing', 1), ('analyzing', 1), ('big', 1), ('set', 1), ('today', 1)]
[('graduate', 1), ('text', 1), ('modal', 1), ('logic', 1), ('field', 1), ('caught', 1), ('attention', 1), ('computer', 1), ('scientist', 1), ('economist', 1), ('computational', 1), ('linguist', 1)]
[('overview', 1), ('technique', 1), ('developed', 1), ('circumvent', 1), ('computational', 1), ('intractability', 1), ('key', 1), ('challenge', 1), ('many', 1), ('area', 1), ('computer', 1), ('science', 1)]
[('comprehensive', 1), ('self', 1), ('contained', 1), ('book', 1), ('cover', 1), ('everything', 1), ('needed', 1), ('understand', 1), ('radar', 1), ('signal', 1), ('used', 1), ('study', 1), ('earth', 1), ('environment', 1)]
[('unique', 1), ('undergraduate', 1), ('level', 1), ('textbook', 1), ('cellular', 1), ('nonlinear', 1), ('neural', 1), ('network', 1), ('cnn', 1), ('technology', 1), ('analogic', 1), ('computing', 1)]
[('unique', 1), ('systematic', 1), ('comprehensive', 1), ('introduction', 1), ('rippling', 1), ('wider', 1), ('subject', 1), ('automated', 1), ('inductive', 1), ('theorem', 1), ('proving', 1)]
[('rigorous', 1), ('description', 1), ('analysis', 1), ('main', 1), ('algorithm', 1), ('different', 1), ('variation', 1), ('geometric', 1), ('spanner', 1), ('network', 1), ('problem', 1)]
[('discussion', 1), ('building', 1), ('presentation', 1), ('factory', 1), ('seamless', 1), ('integration', 1), ('technology', 1), ('provide', 1), ('access', 1), ('corporate', 1), ('data', 1), ('service', 1)]
[('every', 1), ('computer', 1), ('scientist', 1), ('know', 1), ('cryptographic', 1), ('system', 1), ('security', 1), ('protocol', 1), ('secure', 1), ('information', 1), ('flow', 1), ('program', 1)]
[('first', 1), ('book', 1), ('entirely', 1), ('devoted', 1), ('visibility', 1), ('algorithm', 1), ('computational', 1), ('geometry', 1)]
[('business', 2), ('provides', 1), ('critical', 1), ('information', 1), ('professional', 1), ('want', 1), ('understand', 1), ('connected', 1), ('world', 1), ('linking', 1), ('customer', 1), ('service', 1), ('provider', 1)]
[('overview', 1), ('theory', 1), ('application', 1), ('challenge', 1), ('future', 1), ('direction', 1), ('network', 1), ('coding', 1), ('graduate', 1), ('student', 1), ('researcher', 1), ('practitioner', 1)]
[('book', 1), ('dr', 1), ('tse', 1), ('proposes', 1), ('unifying', 1), ('framework', 1), ('behind', 1), ('popular', 1), ('structured', 1), ('model', 1), ('information', 1), ('system', 1), ('development', 1)]
[('computer', 2), ('leading', 1), ('scientist', 1), ('describe', 1), ('advance', 1), ('vision', 1), ('change', 1), ('interact', 1)]
[('first', 1), ('solid', 1), ('theoretical', 1), ('account', 1), ('foundation', 1), ('popular', 1), ('data', 1), ('format', 1), ('xml', 1), ('ideal', 1), ('student', 1), ('researcher', 1)]
[('provides', 1), ('clear', 1), ('easily', 1), ('understandable', 1), ('coverage', 1), ('fundamental', 1), ('concept', 1), ('coding', 1), ('method', 1), ('whilst', 1), ('retaining', 1), ('technical', 1), ('depth', 1), ('rigor', 1)]
[('book', 1), ('cover', 1), ('aspect', 1), ('computer', 1), ('document', 1), ('preparation', 1), ('text', 1), ('processing', 1), ('printing', 1)]
[('seven', 1), ('article', 1), ('survey', 1), ('state', 1), ('art', 1), ('discus', 1), ('various', 1), ('aspect', 1), ('subject', 1), ('emphasis', 1), ('process', 1), ('theory', 1)]
[('expounds', 1), ('gödel', 1), ('incompleteness', 1), ('theorey', 1), ('using', 1), ('information', 1), ('theoretic', 1), ('approach', 1), ('based', 1), ('size', 1), ('computer', 1), ('program', 1)]
[('programming', 3), ('visual', 2), ('basic', 2), ('net', 2), ('practical', 1), ('database', 1), ('date', 1), ('textbook', 1), ('covering', 1), ('fundamental', 1), ('advanced', 1), ('level', 1), ('technique', 1), ('complete', 1), ('example', 1)]
[('exchange', 2), ('server', 2), ('bestselling', 1), ('guide', 1), ('updated', 1), ('release', 1), ('mastering', 1), ('microsoft', 1), ('gold', 1), ('standard', 1), ('reference', 1), ('system', 1), ('administrator', 1), ('first', 1), ('time', 1), ('user', 1), ('alike', 1), ('fully', 1)]
[('access', 3), ('need', 2), ('expert', 1), ('guidance', 1), ('information', 1), ('succeed', 1), ('comprehensive', 1), ('reference', 1), ('first', 1), ('encounter', 1), ('appreciate', 1)]
[('step', 2), ('instruction', 2), ('autocad', 2), ('fundamental', 1), ('essential', 1), ('contains', 1), ('page', 1), ('full', 1), ('color', 1), ('comprehensive', 1), ('world', 1), ('top', 1), ('drafting', 1), ('architecture', 1), ('software', 1)]
[('hyper', 2), ('book', 1), ('help', 1), ('understand', 1), ('capability', 1), ('microsoft', 1), ('architect', 1), ('solution', 1), ('datacenter', 1), ('plan', 1), ('deployment', 1), ('migration', 1), ('manage', 1), ('using', 1), ('native', 1), ('tool', 1), ('system', 1), ('center', 1), ('coverage', 1), ('includes', 1)]
[('microsoft', 2), ('surface', 2), ('make', 1), ('work', 1), ('play', 1), ('way', 1), ('want', 1), ('tablet', 1), ('feature', 1), ('personality', 1), ('looking', 1), ('robust', 1), ('environment', 1), ('business', 1), ('computing', 1), ('skimp', 1)]
[('sql', 2), ('server', 2), ('learn', 1), ('take', 1), ('advantage', 1), ('opportunity', 1), ('offered', 1), ('microsoft', 1), ('update', 1), ('mean', 1), ('big', 1), ('change', 1), ('database', 1), ('administrator', 1), ('need', 1), ('speed', 1), ('quickly', 1), ('method', 1)]
[('data', 2), ('delve', 1), ('key', 1), ('success', 1), ('mining', 1), ('quickly', 1), ('becoming', 1), ('integral', 1), ('creating', 1), ('value', 1), ('business', 1), ('momentum', 1), ('ability', 1), ('detect', 1), ('unseen', 1), ('pattern', 1), ('hidden', 1), ('number', 1), ('exhaustively', 1), ('generated', 1)]
[('devops', 3), ('achieve', 1), ('streamlined', 1), ('rapid', 1), ('production', 1), ('enterprise', 1), ('level', 1), ('awarded', 1), ('book', 1), ('year', 1), ('adoption', 1), ('playbook', 1), ('provides', 1), ('practical', 1), ('actionable', 1), ('real', 1), ('world', 1), ('guidance', 1)]
[('health', 2), ('healthcare', 2), ('discover', 1), ('electronic', 1), ('record', 1), ('built', 1), ('drive', 1), ('next', 1), ('generation', 1), ('delivery', 1), ('increased', 1), ('role', 1), ('sector', 1), ('led', 1), ('coining', 1), ('new', 1), ('phrase', 1)]
[('definitive', 1), ('guide', 1), ('successfully', 1), ('integrating', 1), ('social', 1), ('mobile', 1), ('big', 1), ('data', 1), ('analytics', 1), ('cloud', 1), ('iot', 1), ('principle', 1), ('technology', 1), ('main', 1), ('goal', 1), ('book', 1), ('spur', 1), ('development', 1)]
[('autocad', 3), ('reference', 2), ('th', 1), ('anniversary', 1), ('bestselling', 1), ('fully', 1), ('updated', 1), ('release', 1), ('mastering', 1), ('lt', 1), ('complete', 1), ('tutorial', 1), ('every', 1), ('design', 1)]
[('graphically', 2), ('sophisticated', 2), ('game', 2), ('market', 2), ('develop', 1), ('apps', 1), ('today', 1), ('smart', 1), ('phone', 1), ('app', 1), ('progressively', 1), ('growing', 1), ('new', 1), ('gap', 1), ('fill', 1), ('requires', 1), ('application', 1)]
[('math', 3), ('skill', 2), ('engineering', 2), ('need', 1), ('excel', 1), ('study', 1), ('practice', 1), ('good', 1), ('indispensable', 1), ('engineer', 1), ('regardless', 1), ('specialty', 1), ('yet', 1), ('relatively', 1), ('small', 1), ('portion', 1), ('student', 1)]
[('visual', 2), ('basic', 2), ('step', 2), ('new', 2), ('learn', 1), ('start', 1), ('programming', 1), ('right', 1), ('away', 1), ('beginning', 1), ('ideal', 1), ('guide', 1), ('programmer', 1), ('especially', 1), ('learning', 1), ('first', 1), ('language', 1), ('edition', 1)]
[('learn', 1), ('skill', 1), ('tool', 1), ('shortcut', 1), ('need', 1), ('order', 1), ('make', 1), ('macbook', 1), ('pro', 1), ('easy', 1), ('use', 1), ('compact', 1), ('guide', 1), ('skip', 1), ('fluff', 1), ('get', 1), ('right', 1), ('essential', 1), ('maximize', 1)]
[('physic', 2), ('quantum', 1), ('scientist', 1), ('technologist', 1), ('self', 1), ('contained', 1), ('comprehensive', 1), ('review', 1), ('complex', 1), ('branch', 1), ('science', 1), ('book', 1), ('demystifies', 1), ('difficult', 1), ('concept', 1), ('view', 1), ('subject', 1), ('non', 1), ('field', 1)]
[('step', 2), ('ultimate', 1), ('reference', 1), ('tutorial', 1), ('autocad', 1), ('software', 1), ('autodesk', 1), ('official', 1), ('press', 1), ('book', 1), ('employ', 1), ('concise', 1), ('explanation', 1), ('focused', 1), ('example', 1), ('instruction', 1), ('hand', 1), ('project', 1), ('help', 1), ('master', 1)]
[('iphone', 3), ('first', 2), ('new', 2), ('book', 1), ('download', 1), ('onto', 1), ('bought', 1), ('need', 1), ('know', 1), ('started', 1), ('step', 1), ('dummy', 1), ('give', 1), ('essential', 1)]
[('linux', 3), ('guide', 2), ('red', 2), ('hat', 2), ('enterprise', 2), ('need', 2), ('definitive', 1), ('administering', 1), ('network', 1), ('professional', 1), ('go', 1), ('version', 1), ('rhel', 1), ('find', 1)]
[('tumblr', 2), ('comprehensive', 1), ('guide', 1), ('popular', 1), ('web', 1), ('publishing', 1), ('site', 1), ('popularity', 1), ('growing', 1), ('leap', 1), ('bound', 1), ('continues', 1), ('make', 1), ('name', 1), ('reliable', 1), ('accessible', 1), ('blogging', 1), ('platform', 1), ('yet', 1)]
[('group', 2), ('policy', 2), ('speed', 1), ('latest', 1), ('tool', 1), ('feature', 1), ('best', 1), ('practice', 1), ('fundamental', 1), ('security', 1), ('managed', 1), ('desktop', 1), ('rd', 1), ('edition', 1), ('help', 1)]
[('reader', 3), ('nook', 2), ('dummy', 1), ('provides', 1), ('information', 1), ('need', 1), ('order', 1), ('key', 1), ('topic', 1), ('covered', 1), ('include', 1), ('introducing', 1), ('ebook', 1)]
[('business', 2), ('finance', 2), ('organise', 1), ('latest', 1), ('cloud', 1), ('based', 1), ('accounting', 1), ('innovation', 1), ('quickbooks', 1), ('online', 1), ('dummy', 1), ('australian', 1), ('edition', 1), ('key', 1), ('guide', 1), ('getting', 1), ('control', 1)]
[('professional', 2), ('guide', 1), ('expert', 1), ('guidance', 1), ('newest', 1), ('feature', 1), ('net', 1), ('core', 1), ('provides', 1), ('experienced', 1), ('programmer', 1), ('information', 1), ('need', 1)]
[('user', 2), ('experience', 2), ('clear', 1), ('focused', 1), ('guide', 1), ('creating', 1), ('useful', 1), ('documentation', 1), ('web', 1), ('site', 1), ('application', 1), ('become', 1), ('richer', 1), ('complex', 1), ('ux', 1), ('becomes', 1), ('critical', 1), ('success', 1), ('indispensible', 1)]
[('remoting', 1), ('offer', 1), ('developer', 1), ('many', 1), ('way', 1), ('customize', 1), ('communication', 1), ('process', 1), ('efficiency', 1), ('security', 1), ('performance', 1), ('power', 1), ('allows', 1), ('seamless', 1), ('integration', 1), ('component', 1), ('running', 1), ('several', 1), ('computer', 1), ('single', 1), ('application', 1), ('book', 1), ('expose', 1)]
[('raspberry', 2), ('pi', 2), ('learn', 1), ('take', 1), ('full', 1), ('advantage', 1), ('amazing', 1), ('feature', 1), ('function', 1), ('blast', 1), ('congratulation', 1), ('becoming', 1), ('proud', 1), ('owner', 1), ('credit', 1), ('card', 1), ('sized', 1), ('computer', 1)]
[('computing', 2), ('take', 1), ('idea', 1), ('concept', 1), ('production', 1), ('unique', 1), ('guide', 1), ('whether', 1), ('called', 1), ('physical', 1), ('ubiquitous', 1), ('internet', 1), ('thing', 1), ('hot', 1), ('topic', 1), ('technology', 1), ('channel', 1)]
[('game', 3), ('html', 2), ('show', 1), ('combine', 1), ('cs', 1), ('javascript', 1), ('make', 1), ('web', 1), ('mobile', 1), ('previously', 1), ('possible', 1), ('plugin', 1), ('technology', 1), ('flash', 1), ('using', 1), ('latest', 1)]
[('family', 2), ('history', 2), ('discover', 1), ('root', 1), ('older', 1), ('wiser', 1), ('extremely', 1), ('easy', 1), ('follow', 1), ('book', 1), ('guide', 1), ('different', 1), ('stage', 1), ('researching', 1), ('online', 1), ('record', 1), ('finding', 1)]
[('macos', 2), ('help', 2), ('handle', 1), ('catalina', 1), ('matter', 1), ('computing', 1), ('old', 1), ('reliable', 1), ('macbook', 1), ('brand', 1), ('new', 1), ('mac', 1), ('desktop', 1), ('rely', 1), ('thing', 1), ('done', 1)]
[('iphone', 2), ('pro', 2), ('know', 1), ('new', 1), ('max', 1), ('inside', 1), ('color', 1), ('screen', 1), ('shot', 1), ('teach', 1), ('visually', 1), ('ultimate', 1), ('guide', 1), ('getting', 1)]
[('software', 2), ('recipe', 1), ('book', 1), ('building', 1), ('perhaps', 1), ('relate', 1), ('common', 1), ('scenario', 1), ('know', 1), ('product', 1), ('help', 1), ('understanding', 1), ('strategic', 1), ('side', 1), ('thing', 1)]
[('zbrush', 2), ('step', 2), ('design', 1), ('remarkably', 1), ('realistic', 1), ('creature', 1), ('object', 1), ('using', 1), ('new', 1), ('edition', 1), ('top', 1), ('selling', 1), ('book', 1), ('professional', 1), ('hollywood', 1), ('animator', 1), ('artist', 1), ('eric', 1), ('keller', 1), ('combine', 1), ('firsthand', 1), ('experience', 1), ('detailed', 1)]
[('javafx', 2), ('unleash', 1), ('power', 1), ('wide', 1), ('range', 1), ('device', 1), ('dummy', 1), ('give', 1), ('access', 1), ('innovative', 1), ('software', 1), ('platform', 1), ('allows', 1), ('create', 1), ('deliver', 1), ('rich', 1), ('internet', 1), ('application', 1)]
[('quiet', 1), ('set', 1), ('time', 1), ('start', 1), ('moviemaking', 1), ('adventure', 1), ('need', 1), ('know', 1), ('capturing', 1), ('editing', 1), ('publishing', 1), ('video', 1), ('amateur', 1), ('filmmaker', 1), ('shooting', 1), ('documentary', 1)]
[('swift', 2), ('existing', 2), ('running', 1), ('swiftly', 1), ('brimming', 1), ('expert', 1), ('advice', 1), ('easy', 1), ('follow', 1), ('instruction', 1), ('dummy', 1), ('show', 1), ('new', 1), ('programmer', 1), ('quickly', 1), ('port', 1), ('objective', 1)]
[('typing', 2), ('dragon', 2), ('professional', 2), ('voice', 2), ('recognition', 2), ('software', 2), ('stop', 1), ('done', 1), ('individual', 1), ('tired', 1), ('afraid', 1), ('take', 1), ('leap', 1), ('problem', 1)]
[('maya', 2), ('effect', 2), ('complete', 1), ('update', 1), ('popular', 1), ('autodesk', 1), ('official', 1), ('training', 1), ('guide', 1), ('industry', 1), ('leading', 1), ('animation', 1), ('software', 1), ('used', 1), ('movie', 1), ('visual', 1), ('game', 1), ('cartoon', 1)]
[('book', 1), ('leading', 1), ('suite', 1), ('software', 1), ('graphic', 1), ('web', 1), ('designer', 1), ('fully', 1), ('revised', 1), ('updated', 1), ('hand', 1), ('resource', 1), ('offer', 1), ('stop', 1), ('learning', 1), ('opportunity', 1), ('eight', 1), ('minibooks', 1)]
[('sharepoint', 2), ('office', 2), ('bestselling', 1), ('guide', 1), ('updated', 1), ('cover', 1), ('portal', 1), ('server', 1), ('essential', 1), ('part', 1), ('enterprise', 1), ('infrastructure', 1), ('many', 1), ('business', 1), ('version', 1), ('includes', 1)]
[('vmware', 3), ('guide', 2), ('clear', 1), ('comprehensive', 1), ('latest', 1), ('virtualization', 1), ('solution', 1), ('mastering', 1), ('nsx', 1), ('vsphere', 1), ('ultimate', 1)]
[('customer', 2), ('longer', 1), ('offline', 1), ('remain', 1), ('separate', 1), ('online', 1), ('integrated', 1), ('centric', 1), ('cross', 1), ('channel', 1), ('marketing', 1), ('campaign', 1), ('persuade', 1), ('act', 1), ('provide', 1), ('greater', 1), ('roi', 1), ('ultimately', 1), ('improve', 1), ('organization', 1), ('bottom', 1), ('line', 1)]
[('intermediate', 1), ('advanced', 1), ('technique', 1), ('coverage', 1), ('updated', 1), ('net', 1), ('guide', 1), ('geared', 1), ('towards', 1), ('experienced', 1), ('programmer', 1), ('looking', 1), ('update', 1), ('enhance', 1), ('skill', 1), ('writing', 1)]
[('app', 2), ('flutter', 2), ('build', 1), ('first', 1), ('experience', 1), ('necessary', 1), ('beginning', 1), ('hand', 1), ('guide', 1), ('development', 1), ('essential', 1), ('resource', 1), ('experienced', 1), ('novice', 1), ('developer', 1)]
[('essential', 1), ('library', 1), ('basic', 1), ('command', 1), ('copy', 1), ('paste', 1), ('powerful', 1), ('open', 1), ('source', 1), ('statistical', 1), ('programming', 1), ('language', 1), ('rapidly', 1), ('growing', 1), ('popularity', 1), ('requires', 1), ('type', 1)]
[('sql', 2), ('server', 2), ('update', 2), ('implement', 1), ('maintain', 1), ('repair', 1), ('database', 1), ('significant', 1), ('microsoft', 1), ('boast', 1), ('new', 1), ('feature', 1), ('critical', 1), ('understand', 1), ('whether', 1)]
[('restructuring', 1), ('information', 1), ('xml', 1), ('document', 1), ('work', 1), ('format', 1), ('used', 1), ('time', 1), ('consuming', 1), ('ordeal', 1), ('involving', 1), ('lot', 1), ('blood', 1), ('sweat', 1), ('tear', 1), ('xslt', 1), ('extensible', 1), ('stylesheet', 1), ('language', 1), ('transformation', 1), ('make', 1), ('process', 1), ('nearly', 1)]
[('online', 2), ('display', 2), ('complete', 1), ('guide', 1), ('developing', 1), ('implementing', 1), ('monitoring', 1), ('optimizing', 1), ('ad', 1), ('campaign', 1), ('business', 1), ('advertising', 1), ('fastest', 1), ('growing', 1), ('field', 1), ('google', 1), ('others', 1), ('starting', 1), ('provide', 1), ('easy', 1)]
[('io', 3), ('security', 2), ('mobile', 2), ('discover', 1), ('risk', 1), ('exploit', 1), ('threaten', 1), ('based', 1), ('device', 1), ('apple', 1), ('operating', 1), ('system', 1), ('iphone', 1), ('ipad', 1), ('introduction', 1), ('many', 1), ('issue', 1), ('come', 1)]
[('redstone', 3), ('minecraft', 2), ('indispensable', 1), ('primer', 1), ('achieving', 1), ('greatness', 1), ('dummy', 1), ('complete', 1), ('guide', 1), ('finding', 1), ('using', 1), ('maximizing', 1), ('power', 1), ('world', 1), ('key', 1)]
[('praise', 1), ('reviewer', 1), ('practicality', 1), ('subject', 1), ('real', 1), ('world', 1), ('situation', 1), ('distinguishes', 1), ('book', 1), ('others', 1), ('available', 1), ('market', 1), ('professor', 1), ('behrouz', 1), ('far', 1), ('university', 1)]
[('android', 2), ('java', 2), ('develop', 1), ('next', 1), ('killer', 1), ('app', 1), ('using', 1), ('programming', 1), ('everywhere', 1), ('run', 1), ('half', 1), ('smartphones', 1), ('make', 1), ('go', 1), ('want', 1), ('cash', 1), ('popularity', 1), ('learning', 1), ('build', 1)]
[('project', 2), ('guide', 2), ('exam', 2), ('bestselling', 1), ('preparation', 1), ('updated', 1), ('latest', 1), ('comptia', 1), ('study', 1), ('second', 1), ('edition', 1), ('comprehensive', 1), ('resource', 1), ('taking', 1), ('pk', 1), ('coverage', 1)]
[('autodesk', 3), ('guide', 2), ('d', 2), ('max', 2), ('fundamental', 1), ('official', 1), ('press', 1), ('need', 1), ('learn', 1), ('basic', 1), ('quickly', 1), ('easily', 1), ('series', 1)]
[('mcsa', 2), ('guide', 2), ('window', 2), ('exam', 2), ('go', 1), ('prep', 1), ('updated', 1), ('new', 1), ('complete', 1), ('study', 1), ('comprehensive', 1), ('resource', 1), ('taking', 1), ('covering', 1)]
[('javascript', 3), ('bestselling', 1), ('guide', 1), ('updated', 1), ('current', 1), ('feature', 1), ('best', 1), ('practice', 1), ('beginning', 1), ('th', 1), ('edition', 1), ('show', 1), ('work', 1), ('effectively', 1), ('framework', 1)]
[('revit', 3), ('architecture', 2), ('learn', 1), ('expert', 1), ('instruction', 1), ('autodesk', 1), ('official', 1), ('press', 1), ('guide', 1), ('new', 1), ('edition', 1), ('bestselling', 1), ('book', 1), ('useful', 1), ('approachable', 1), ('mastering', 1)]
[('web', 2), ('html', 2), ('master', 1), ('app', 1), ('development', 1), ('hand', 1), ('practice', 1), ('video', 1), ('demonstration', 1), ('javascript', 1), ('jquery', 1), ('hour', 1), ('trainer', 1), ('show', 1), ('build', 1), ('real', 1), ('world', 1), ('apps', 1), ('based', 1), ('mobile', 1)]
[('google', 2), ('explore', 1), ('world', 1), ('computer', 1), ('interesting', 1), ('guide', 1), ('cover', 1), ('aspect', 1), ('earth', 1), ('freely', 1), ('downloadable', 1), ('application', 1), ('allows', 1), ('user', 1), ('view', 1), ('satellite', 1), ('image', 1)]
[('sis', 2), ('depth', 1), ('look', 1), ('radical', 1), ('change', 1), ('newest', 1), ('release', 1), ('microsoft', 1), ('sql', 1), ('server', 1), ('integration', 1), ('service', 1), ('build', 1), ('revolutionary', 1), ('database', 1), ('product', 1), ('suite', 1), ('first', 1), ('introduced', 1)]
[('security', 2), ('groundbreaking', 1), ('exploration', 1), ('identify', 1), ('fight', 1), ('threat', 1), ('every', 1), ('level', 1), ('revolutionary', 1), ('book', 1), ('combine', 1), ('real', 1), ('world', 1), ('scenario', 1), ('actual', 1), ('tool', 1), ('predict', 1), ('prevent', 1), ('incident', 1), ('terrorism', 1)]
[('web', 4), ('unique', 1), ('resource', 1), ('combine', 1), ('aspect', 1), ('testing', 1), ('make', 1), ('completely', 1), ('specific', 1), ('asp', 1), ('net', 1), ('microsoft', 1), ('key', 1), ('technology', 1), ('creating', 1), ('dynamic', 1), ('data', 1), ('driven', 1), ('site', 1)]
[('window', 2), ('powershell', 2), ('complete', 1), ('guide', 1), ('administrator', 1), ('developer', 1), ('microsoft', 1), ('next', 1), ('generation', 1), ('scripting', 1), ('automation', 1), ('language', 1), ('comprehensive', 1), ('volume', 1), ('provides', 1)]
[('embedded', 2), ('system', 2), ('contemporary', 1), ('design', 1), ('tool', 1), ('second', 1), ('edition', 1), ('foundational', 1), ('element', 1), ('today', 1), ('evolving', 1), ('growing', 1), ('computer', 1), ('technology', 1), ('operating', 1), ('car', 1)]
[('excel', 2), ('fast', 1), ('easy', 1), ('way', 1), ('thing', 1), ('done', 1), ('office', 1), ('perplexed', 1), ('powerpoint', 1), ('looking', 1), ('access', 1), ('word', 1), ('every', 1), ('application', 1), ('encompassing', 1), ('guide', 1), ('provides', 1), ('plain', 1), ('english', 1), ('guidance', 1)]
[('professional', 2), ('true', 1), ('guide', 1), ('net', 1), ('core', 1), ('provides', 1), ('complete', 1), ('coverage', 1), ('latest', 1), ('update', 1), ('feature', 1), ('capability', 1), ('giving', 1), ('everything', 1), ('need', 1)]
[('blackberry', 4), ('storm', 3), ('long', 1), ('awaited', 1), ('take', 1), ('advantage', 1), ('cool', 1), ('thing', 1), ('new', 1), ('touch', 1), ('screen', 1), ('dummy', 1), ('help', 1), ('organize', 1), ('calendar', 1)]
[('visual', 2), ('guide', 2), ('latest', 2), ('iphone', 2), ('technology', 1), ('teach', 1), ('visually', 1), ('mastering', 1), ('powerful', 1), ('feature', 1), ('functionality', 1), ('apple', 1), ('smartphone', 1), ('whether', 1)]
[('macos', 2), ('sierra', 2), ('guide', 2), ('step', 2), ('know', 1), ('visual', 1), ('expert', 1), ('teach', 1), ('visually', 1), ('ideal', 1), ('new', 1), ('mac', 1), ('operating', 1), ('system', 1), ('clear', 1), ('instruction', 1), ('walk', 1)]
[('photoshop', 2), ('element', 2), ('top', 1), ('selling', 1), ('book', 1), ('updated', 1), ('new', 1), ('edition', 1), ('offer', 1), ('photo', 1), ('editor', 1), ('skill', 1), ('level', 1), ('power', 1), ('turn', 1), ('run', 1), ('mill', 1), ('image', 1), ('beautiful', 1), ('work', 1)]
[('linq', 3), ('query', 2), ('language', 2), ('asked', 1), ('develop', 1), ('database', 1), ('xml', 1), ('already', 1), ('know', 1), ('integrated', 1), ('dummy', 1), ('introduces', 1), ('net', 1), ('framework', 1)]
[('window', 3), ('complete', 2), ('reference', 2), ('detailed', 1), ('beginner', 1), ('power', 1), ('user', 1), ('alike', 1), ('bible', 1), ('thorough', 1), ('market', 1), ('coverage', 1), ('whether', 1)]
[('graphic', 2), ('everything', 1), ('need', 1), ('know', 1), ('developing', 1), ('hardware', 1), ('accelerated', 1), ('webgl', 1), ('newest', 1), ('technology', 1), ('creating', 1), ('web', 1), ('game', 1), ('application', 1)]
[('user', 2), ('office', 2), ('home', 1), ('business', 1), ('around', 1), ('globe', 1), ('turn', 1), ('microsoft', 1), ('core', 1), ('application', 1), ('every', 1), ('day', 1), ('whether', 1), ('newcomer', 1), ('veteran', 1), ('friendly', 1), ('informative', 1), ('guide', 1), ('provides', 1), ('depth', 1), ('coverage', 1), ('newest', 1)]
[('office', 3), ('dummy', 1), ('key', 1), ('brand', 1), ('new', 1), ('packed', 1), ('straightforward', 1), ('friendly', 1), ('instruction', 1), ('update', 1), ('bestselling', 1), ('book', 1), ('time', 1), ('get', 1)]
[('office', 3), ('microsoft', 2), ('suite', 2), ('learn', 1), ('new', 1), ('easy', 1), ('visual', 1), ('way', 1), ('power', 1), ('packed', 1), ('productivity', 1), ('tool', 1), ('including', 1), ('word', 1), ('excel', 1), ('powerpoint', 1), ('outlook', 1), ('access', 1), ('publisher', 1)]
[('civil', 3), ('autocad', 2), ('complete', 1), ('detailed', 1), ('reference', 1), ('tutorial', 1), ('industry', 1), ('leading', 1), ('engineering', 1), ('software', 1), ('authoritative', 1), ('autodesk', 1), ('official', 1), ('press', 1), ('book', 1)]
[('html', 2), ('cs', 2), ('website', 2), ('full', 1), ('color', 1), ('friendly', 1), ('guide', 1), ('getting', 1), ('started', 1), ('essential', 1), ('tool', 1), ('creating', 1), ('dynamic', 1), ('help', 1), ('make', 1), ('even', 1), ('effective', 1), ('unique', 1)]
[('iphone', 2), ('save', 1), ('time', 1), ('hassle', 1), ('confusion', 1), ('essential', 1), ('guide', 1), ('popularity', 1), ('continues', 1), ('grow', 1), ('every', 1), ('day', 1), ('show', 1), ('sign', 1), ('slowing', 1)]
[('database', 3), ('oracle', 2), ('demystifying', 1), ('power', 1), ('industry', 1), ('leading', 1), ('relational', 1), ('management', 1), ('system', 1), ('rdms', 1), ('used', 1), ('small', 1), ('company', 1), ('world', 1), ('largest', 1), ('enterprise', 1)]
[('io', 2), ('incredible', 1), ('idea', 1), ('book', 1), ('bring', 1), ('life', 1), ('represents', 1), ('significant', 1), ('update', 1), ('apple', 1), ('mobile', 1), ('operating', 1), ('system', 1), ('first', 1), ('iphone', 1), ('released', 1), ('even', 1)]
[('window', 3), ('time', 2), ('fast', 1), ('easy', 1), ('way', 1), ('running', 1), ('work', 1), ('want', 1), ('spend', 1), ('le', 1), ('figuring', 1), ('getting', 1), ('thing', 1), ('accomplished', 1), ('come', 1), ('right', 1), ('place', 1), ('covering', 1)]
[('adwords', 1), ('let', 1), ('every', 1), ('business', 1), ('ebay', 1), ('powersellers', 1), ('fortune', 1), ('company', 1), ('create', 1), ('targeted', 1), ('cost', 1), ('efficient', 1), ('advertising', 1), ('campaign', 1), ('web', 1), ('account', 1), ('bulk', 1), ('google', 1), ('billion', 1), ('annual', 1), ('revenue', 1)]
[('pc', 2), ('build', 2), ('make', 2), ('dreamed', 1), ('customized', 1), ('multimedia', 1), ('tricked', 1), ('favorite', 1), ('game', 1), ('dream', 1), ('come', 1), ('true', 1), ('dummy', 1), ('easy', 1)]
[('computer', 2), ('security', 2), ('presenting', 1), ('invaluable', 1), ('advice', 1), ('world', 1), ('famous', 1), ('expert', 1), ('intensely', 1), ('readable', 1), ('collection', 1), ('feature', 1), ('insightful', 1), ('informative', 1), ('coverage', 1), ('strength', 1), ('weakness', 1), ('price', 1)]
[('organize', 2), ('life', 2), ('pinterest', 2), ('like', 1), ('fun', 1), ('guide', 1), ('digital', 1), ('hot', 1), ('new', 1), ('site', 1), ('let', 1), ('create', 1), ('visual', 1), ('bookmark', 1)]
[('mac', 2), ('learn', 1), ('make', 1), ('switch', 1), ('pc', 1), ('completely', 1), ('smooth', 1), ('transition', 1), ('number', 1), ('user', 1), ('continues', 1), ('increase', 1), ('significantly', 1), ('year', 1), ('eager', 1), ('anxious', 1)]
[('make', 2), ('feel', 2), ('good', 2), ('want', 2), ('customer', 1), ('learn', 1), ('company', 1), ('approaching', 1), ('persuasive', 1), ('design', 1), ('dark', 1), ('side', 1), ('book', 1), ('meld', 1), ('psychology', 1), ('marketing', 1)]
[('first', 1), ('step', 1), ('making', 1), ('idea', 1), ('reality', 1), ('sketchup', 1), ('offer', 1), ('vast', 1), ('array', 1), ('tool', 1), ('help', 1), ('building', 1), ('woodworking', 1), ('design', 1), ('plan', 1), ('head', 1), ('real', 1), ('model', 1), ('even', 1)]
[('photo', 3), ('canon', 2), ('eos', 2), ('take', 1), ('professional', 1), ('quality', 1), ('give', 1), ('pro', 1), ('level', 1), ('power', 1), ('need', 1), ('know', 1), ('camera', 1), ('capability', 1), ('little', 1), ('experience', 1), ('start', 1), ('capturing', 1), ('brag', 1), ('worthy', 1)]
[('uml', 2), ('practical', 1), ('approach', 1), ('enhancing', 1), ('quality', 1), ('software', 1), ('model', 1), ('using', 1), ('version', 1), ('despite', 1), ('increasing', 1), ('usage', 1), ('many', 1), ('company', 1), ('taking', 1), ('best', 1), ('advantage', 1), ('occasionally', 1), ('individual', 1), ('experienced', 1), ('frustration', 1), ('applying', 1)]
[('java', 2), ('corba', 2), ('leading', 1), ('guide', 1), ('developer', 1), ('build', 1), ('business', 1), ('application', 1), ('acknowledged', 1), ('expert', 1), ('present', 1), ('advanced', 1), ('technique', 1), ('real', 1), ('world', 1), ('example', 1), ('building', 1), ('simple', 1), ('complex', 1), ('program', 1), ('using', 1), ('author', 1), ('begin', 1)]
[('wan', 2), ('area', 2), ('network', 2), ('ensure', 1), ('handle', 1), ('latest', 1), ('technology', 1), ('strategy', 1), ('guide', 1), ('wide', 1), ('set', 1), ('properly', 1), ('able', 1), ('meet', 1), ('need', 1), ('application', 1), ('used', 1), ('local', 1), ('lan', 1)]
[('marketplace', 2), ('every', 1), ('manager', 1), ('system', 1), ('administrator', 1), ('need', 1), ('know', 1), ('technology', 1), ('drive', 1), ('rapidly', 1), ('exploding', 1), ('fast', 1), ('outpacing', 1), ('business', 1), ('consumer', 1), ('commerce', 1), ('expected', 1), ('reach', 1), ('trillion', 1)]
[('high', 2), ('speed', 2), ('networking', 2), ('leading', 1), ('authority', 1), ('deliver', 1), ('commandment', 1), ('designing', 1), ('network', 1), ('end', 1), ('book', 1), ('touting', 1), ('virtue', 1), ('another', 1), ('technology', 1), ('none', 1), ('offering', 1), ('professional', 1)]
[('network', 2), ('security', 2), ('seen', 1), ('firsthand', 1), ('hack', 1), ('attack', 1), ('revealed', 1), ('tool', 1), ('technique', 1), ('hacker', 1), ('use', 1), ('exploit', 1), ('loophole', 1), ('ready', 1), ('learn', 1), ('specific', 1), ('method', 1), ('protecting', 1), ('part', 1), ('breach', 1)]
[('design', 3), ('pattern', 3), ('guide', 1), ('java', 1), ('programmer', 1), ('want', 1), ('use', 1), ('developing', 1), ('real', 1), ('world', 1), ('enterprise', 1), ('application', 1), ('practical', 1), ('book', 1), ('explores', 1), ('subject', 1), ('occur', 1), ('phase', 1), ('project', 1), ('life', 1), ('cycle', 1)]
[('security', 2), ('network', 2), ('learn', 1), ('conduct', 1), ('thorough', 1), ('examination', 1), ('via', 1), ('illustration', 1), ('virtual', 1), ('simulation', 1), ('breach', 1), ('hack', 1), ('crack', 1), ('invasion', 1), ('occurs', 1), ('unauthorized', 1), ('access', 1), ('achieved', 1), ('havoc', 1), ('result', 1), ('best', 1)]
[('velocity', 2), ('hand', 2), ('comprehensive', 1), ('tutorial', 1), ('use', 1), ('power', 1), ('build', 1), ('web', 1), ('site', 1), ('generate', 1), ('content', 1), ('designed', 1), ('work', 1), ('apache', 1), ('turbine', 1), ('strut', 1), ('servlets', 1), ('powerful', 1), ('template', 1), ('language', 1), ('greatly', 1), ('enhances', 1)]
[('flip', 1), ('side', 1), ('pattern', 1), ('antipatterns', 1), ('provide', 1), ('developer', 1), ('formal', 1), ('description', 1), ('common', 1), ('development', 1), ('gaffe', 1), ('derail', 1), ('project', 1), ('along', 1), ('practical', 1), ('guideline', 1), ('avoid', 1), ('book', 1), ('author', 1), ('present', 1), ('dozen', 1), ('java', 1)]
[('end', 2), ('chapter', 2), ('exercise', 2), ('provides', 1), ('comprehensive', 1), ('treatment', 1), ('theory', 1), ('static', 1), ('dynamic', 1), ('neural', 1), ('network', 1), ('theoretical', 1), ('concept', 1), ('illustrated', 1), ('reference', 1), ('practical', 1), ('example', 1), ('includes', 1), ('instructor', 1)]
[('medium', 2), ('center', 2), ('pc', 2), ('fun', 1), ('easy', 1), ('way', 1), ('running', 1), ('quickly', 1), ('microsoft', 1), ('window', 1), ('xp', 1), ('edition', 1), ('new', 1), ('operating', 1), ('system', 1), ('version', 1), ('specially', 1), ('outfitted', 1), ('tv', 1), ('dvd', 1), ('video', 1), ('music', 1), ('digital', 1), ('photo', 1), ('application', 1), ('first', 1)]
[('internet', 2), ('connected', 1), ('clicking', 1), ('need', 1), ('whether', 1), ('answer', 1), ('google', 1), ('bargain', 1), ('bay', 1), ('music', 1), ('itunes', 1), ('merchandise', 1), ('thousand', 1), ('shopping', 1), ('site', 1), ('gigabook', 1), ('dummy', 1), ('almost', 1)]
[('concurrent', 2), ('computing', 2), ('java', 2), ('book', 2), ('part', 2), ('distributed', 1), ('address', 1), ('fundamental', 1), ('concept', 1), ('example', 1), ('consists', 1), ('first', 1), ('deal', 1), ('technique', 1), ('programming', 1), ('shared', 1), ('memory', 1), ('based', 1), ('system', 1)]
[('computer', 3), ('system', 2), ('arithmetic', 1), ('logic', 1), ('provides', 1), ('useful', 1), ('guide', 1), ('fundamental', 1), ('subject', 1), ('science', 1), ('engineering', 1), ('algorithm', 1), ('performing', 1), ('operation', 1), ('addition', 1), ('subtraction', 1), ('multiplication', 1), ('division', 1), ('digital', 1)]
[('component', 2), ('programming', 2), ('oriented', 1), ('offer', 1), ('unique', 1), ('centered', 1), ('approach', 1), ('based', 1), ('software', 1), ('development', 1), ('delivers', 1), ('developed', 1), ('training', 1), ('practice', 1), ('need', 1), ('successfully', 1), ('apply', 1), ('cost', 1), ('effective', 1), ('method', 1), ('following', 1)]
[('digital', 2), ('microcomputer', 2), ('design', 2), ('fundamental', 1), ('logic', 1), ('long', 1), ('hailed', 1), ('clear', 1), ('simple', 1), ('presentation', 1), ('principle', 1), ('basic', 1), ('tool', 1), ('required', 1), ('typical', 1), ('system', 1), ('fifth', 1), ('edition', 1), ('author', 1)]
[('book', 2), ('coverage', 2), ('computer', 2), ('organization', 2), ('first', 1), ('volume', 1), ('set', 1), ('offering', 1), ('comprehensive', 1), ('field', 1), ('architecture', 1), ('provides', 1), ('complete', 1), ('subject', 1), ('pertaining', 1), ('introductory', 1), ('course', 1)]
[('performance', 2), ('relational', 2), ('database', 2), ('improve', 1), ('index', 1), ('designed', 1), ('today', 1), ('hardwareover', 1), ('last', 1), ('year', 1), ('hardware', 1), ('software', 1), ('advanced', 1), ('beyond', 1), ('recognition', 1), ('hardly', 1), ('surprising', 1), ('receives', 1)]
[('network', 2), ('physical', 1), ('linkage', 1), ('responsible', 1), ('carrying', 1), ('company', 1), ('data', 1), ('continue', 1), ('neglected', 1), ('component', 1), ('typical', 1), ('extent', 1), ('nearly', 1), ('related', 1), ('problem', 1), ('result', 1), ('poor', 1), ('cabling', 1), ('third', 1), ('edition', 1)]
[('computer', 3), ('networking', 2), ('game', 2), ('algorithmic', 2), ('algorithm', 1), ('essential', 1), ('guide', 1), ('solving', 1), ('problem', 1), ('modern', 1), ('commercial', 1), ('written', 1), ('perspective', 1), ('scientist', 1), ('combining', 1), ('knowledge', 1)]
[('know', 3), ('year', 3), ('need', 2), ('world', 1), ('always', 1), ('evolving', 1), ('every', 1), ('area', 1), ('stable', 1), ('core', 1), ('concept', 1), ('anyone', 1), ('setting', 1), ('needed', 1), ('last', 1), ('still', 1), ('next', 1), ('purpose', 1), ('foundation', 1), ('series', 1)]
[('know', 3), ('year', 3), ('need', 2), ('world', 1), ('always', 1), ('evolving', 1), ('every', 1), ('area', 1), ('stable', 1), ('core', 1), ('concept', 1), ('anyone', 1), ('setting', 1), ('needed', 1), ('last', 1), ('still', 1), ('next', 1), ('purpose', 1), ('foundation', 1), ('series', 1)]
[('easy', 2), ('learn', 1), ('usability', 1), ('really', 1), ('strive', 1), ('achieve', 1), ('highly', 1), ('useable', 1), ('software', 1), ('use', 1), ('expect', 1), ('build', 1), ('book', 1), ('demonstrates', 1), ('worth', 1)]
[('life', 2), ('way', 2), ('roam', 1), ('road', 1), ('making', 1), ('living', 1), ('enjoying', 1), ('nomadic', 1), ('retiree', 1), ('motor', 1), ('home', 1), ('either', 1), ('go', 1), ('matter', 1), ('hanging', 1), ('hat', 1), ('tonight', 1), ('bill', 1), ('still', 1), ('need', 1), ('paid', 1), ('grandchild', 1), ('grow', 1), ('fast', 1)]
[('coldfusion', 1), ('extremely', 1), ('powerful', 1), ('web', 1), ('development', 1), ('tool', 1), ('despite', 1), ('short', 1), ('initial', 1), ('learning', 1), ('curve', 1), ('attributed', 1), ('accessible', 1), ('html', 1), ('tag', 1), ('based', 1), ('syntax', 1), ('provides', 1), ('sophisticated', 1), ('content', 1), ('management', 1), ('solution', 1), ('large', 1), ('scale', 1), ('enterprise', 1)]
[('oracle', 2), ('system', 2), ('david', 1), ('litchfield', 1), ('devoted', 1), ('year', 1), ('relentlessly', 1), ('searching', 1), ('flaw', 1), ('database', 1), ('creating', 1), ('defense', 1), ('offer', 1), ('complete', 1), ('arsenal', 1), ('ass', 1), ('defend', 1), ('depth', 1), ('guide', 1)]
[('software', 3), ('testing', 2), ('test', 2), ('present', 1), ('first', 1), ('comprehensive', 1), ('guide', 1), ('activity', 1), ('ranging', 1), ('planning', 1), ('completion', 1), ('every', 1), ('phase', 1), ('development', 1), ('revision', 1), ('real', 1), ('life', 1), ('case', 1), ('study', 1), ('provided', 1)]
[('web', 2), ('book', 1), ('introduces', 1), ('reader', 1), ('method', 1), ('data', 1), ('mining', 1), ('including', 1), ('uncovering', 1), ('pattern', 1), ('content', 1), ('classification', 1), ('clustering', 1), ('language', 1), ('processing', 1), ('structure', 1), ('graph', 1), ('hub', 1), ('metric', 1), ('usage', 1), ('modeling', 1), ('sequence', 1), ('analysis', 1)]
[('goldmine', 3), ('business', 2), ('know', 2), ('run', 1), ('small', 1), ('important', 1), ('customer', 1), ('relationship', 1), ('management', 1), ('crm', 1), ('bottom', 1), ('line', 1), ('bit', 1), ('daunting', 1), ('dummy', 1), ('software', 1)]
[('web', 3), ('adobe', 2), ('future', 1), ('look', 1), ('bright', 1), ('developer', 1), ('creative', 1), ('suite', 1), ('premium', 1), ('fantastic', 1), ('tool', 1), ('enable', 1), ('create', 1), ('wide', 1), ('array', 1), ('content', 1), ('graphic', 1), ('deploy', 1), ('site', 1), ('dynamic', 1), ('easy', 1), ('maintain', 1)]
[('bsd', 3), ('command', 3), ('learn', 2), ('use', 2), ('unix', 2), ('system', 2), ('line', 1), ('toolbox', 1), ('freebsd', 1), ('openbsd', 1), ('netbsd', 1), ('operation', 1), ('way', 1), ('expert', 1), ('trying', 1), ('find', 1), ('obtain', 1), ('software', 1)]
[('software', 2), ('development', 2), ('change', 2), ('learning', 2), ('knowledge', 2), ('changing', 1), ('explains', 1), ('exercise', 1), ('management', 1), ('organizational', 1), ('intelligence', 1), ('underlying', 1), ('belief', 1), ('creates', 1), ('blending', 1), ('theory', 1)]
[('symbian', 3), ('problem', 2), ('developing', 2), ('many', 1), ('encountered', 1), ('engineer', 1), ('code', 1), ('specialized', 1), ('subsystem', 1), ('boil', 1), ('lack', 1), ('understanding', 1), ('core', 1), ('programming', 1), ('concept', 1), ('software', 1), ('o', 1), ('remedy', 1), ('provides', 1)]
[('human', 2), ('technology', 2), ('element', 1), ('principle', 1), ('cause', 1), ('incident', 1), ('accident', 1), ('industry', 1), ('evident', 1), ('understanding', 1), ('interaction', 1), ('crucial', 1), ('effective', 1), ('management', 1), ('risk', 1), ('despite', 1)]
[('telecommunication', 3), ('american', 2), ('technical', 2), ('regulatory', 2), ('economic', 2), ('shaping', 1), ('examines', 1), ('force', 1), ('shaped', 1), ('development', 1), ('service', 1), ('volume', 1), ('introduction', 1), ('basic', 1), ('principle', 1), ('underlying', 1), ('detailed', 1), ('account', 1), ('major', 1), ('event', 1)]
[('volume', 1), ('analyzes', 1), ('serial', 1), ('podcast', 1), ('situating', 1), ('trajectory', 1), ('popular', 1), ('crime', 1), ('narrative', 1), ('contemporary', 1), ('cultural', 1), ('theory', 1), ('contributor', 1), ('focus', 1), ('topic', 1), ('ethic', 1), ('use', 1), ('fiction', 1), ('technique', 1), ('investigative', 1), ('journalism', 1), ('epistemological', 1), ('overlay', 1), ('postmodern', 1), ('indeterminacy', 1), ('audience', 1), ('prolific', 1), ('activity', 1)]
[('communication', 2), ('online', 1), ('provides', 1), ('introduction', 1), ('technology', 1), ('internet', 1), ('age', 1), ('social', 1), ('implication', 1), ('innovative', 1), ('timely', 1), ('textbook', 1), ('brings', 1), ('together', 1), ('current', 1), ('work', 1), ('political', 1), ('science', 1), ('philosophy', 1), ('popular', 1), ('culture', 1), ('history', 1), ('economics', 1), ('humanity', 1), ('present', 1), ('examination', 1), ('theoretical', 1)]
[('model', 2), ('human', 2), ('within', 2), ('resulting', 1), ('need', 1), ('greater', 1), ('realism', 1), ('organizational', 1), ('behavior', 1), ('military', 1), ('simulation', 1), ('increased', 1), ('interest', 1), ('research', 1), ('integrative', 1), ('performance', 1), ('cognitive', 1), ('science', 1), ('community', 1), ('generally', 1), ('defense', 1), ('aerospace', 1), ('industry', 1), ('particular', 1), ('book', 1), ('document', 1)]
[('security', 3), ('law', 3), ('industry', 2), ('private', 1), ('fifth', 1), ('edition', 1), ('singular', 1), ('resource', 1), ('provides', 1), ('comprehensive', 1), ('analysis', 1), ('practice', 1), ('respect', 1), ('regulation', 1), ('licensure', 1), ('constitutional', 1), ('question', 1), ('case', 1), ('statutory', 1), ('authority', 1), ('book', 1), ('begin', 1), ('historical', 1), ('background', 1)]
[('today', 2), ('usa', 1), ('journalist', 1), ('former', 1), ('public', 1), ('school', 1), ('teacher', 1), ('greg', 1), ('toppo', 1), ('defies', 1), ('technology', 1), ('resistant', 1), ('attitude', 1), ('educator', 1), ('show', 1), ('game', 1), ('designer', 1), ('revolutionizing', 1), ('learning', 1)]
[('pocket', 2), ('pc', 2), ('phone', 1), ('smartphone', 1), ('using', 1), ('latest', 1), ('window', 1), ('mobile', 1), ('software', 1), ('easy', 1), ('follow', 1), ('guide', 1), ('learn', 1), ('fast', 1), ('simple', 1), ('way', 1), ('manage', 1), ('type', 1), ('information', 1), ('everyday', 1), ('essential', 1), ('scheduling', 1), ('appointment', 1), ('storing', 1), ('address', 1), ('balancing', 1), ('checkbook', 1), ('reading', 1), ('email', 1), ('matter', 1)]
[('step', 2), ('color', 2), ('graphic', 2), ('full', 1), ('start', 1), ('using', 1), ('powerpoint', 1), ('right', 1), ('away', 1), ('quickstep', 1), ('way', 1), ('screenshots', 1), ('clear', 1), ('instruction', 1), ('make', 1), ('easy', 1), ('ramp', 1), ('latest', 1), ('release', 1), ('microsoft', 1), ('powerful', 1), ('presentation', 1), ('application', 1), ('follow', 1), ('along', 1), ('quickly', 1), ('learn', 1), ('create', 1), ('looking', 1), ('slide', 1), ('add', 1), ('text', 1), ('table', 1), ('chart', 1), ('sound', 1)]
[('web', 2), ('application', 2), ('step', 2), ('new', 1), ('release', 1), ('popular', 1), ('everything', 1), ('series', 1), ('explains', 1), ('build', 1), ('open', 1), ('source', 1), ('mysql', 1), ('php', 1), ('using', 1), ('tool', 1), ('able', 1), ('create', 1), ('highly', 1), ('functional', 1), ('interactive', 1), ('site', 1), ('easily', 1), ('follow', 1), ('along', 1), ('sample', 1), ('bonus', 1), ('download', 1), ('three', 1), ('full', 1), ('length', 1), ('case', 1), ('study', 1)]
[('tivo', 4), ('program', 2), ('turn', 1), ('tv', 1), ('helpful', 1), ('resource', 1), ('help', 1), ('select', 1), ('best', 1), ('service', 1), ('based', 1), ('need', 1), ('show', 1), ('set', 1), ('watch', 1), ('live', 1), ('television', 1), ('record', 1), ('hook', 1), ('home', 1), ('network', 1), ('remotely', 1), ('schedule', 1), ('recorded', 1), ('internet', 1), ('use', 1), ('multiple', 1), ('tivos', 1)]
[('book', 1), ('legendary', 1), ('leader', 1), ('king', 1), ('arthur', 1), ('show', 1), ('transform', 1), ('geographically', 1), ('distributed', 1), ('team', 1), ('falling', 1), ('short', 1), ('goal', 1), ('virtual', 1), ('work', 1), ('group', 1), ('get', 1), ('result', 1)]
[('self', 4), ('social', 2), ('network', 2), ('networked', 1), ('examines', 1), ('presentation', 1), ('connection', 1), ('digital', 1), ('age', 1), ('collection', 1), ('brings', 1), ('together', 1), ('new', 1), ('work', 1), ('online', 1), ('leading', 1), ('scholar', 1), ('variety', 1), ('discipline', 1), ('focus', 1), ('volume', 1), ('rest', 1), ('construction', 1), ('happens', 1), ('identity', 1), ('presented', 1)]
[('tired', 1), ('putting', 1), ('window', 1), ('xp', 1), ('migraine', 1), ('remedy', 1), ('need', 1), ('arranged', 1), ('ailment', 1), ('diagnostic', 1), ('tool', 1), ('help', 1), ('pinpoint', 1), ('treat', 1), ('problem', 1), ('quickly', 1), ('easily', 1), ('book', 1), ('packed', 1), ('potent', 1), ('cure', 1), ('variety', 1), ('anxiety', 1), ('related', 1), ('everything', 1), ('display', 1), ('setting', 1), ('start', 1), ('menu', 1), ('software', 1), ('utility', 1)]
[('window', 2), ('xp', 2), ('everything', 2), ('take', 1), ('control', 1), ('powerful', 1), ('operating', 1), ('system', 1), ('offer', 1), ('written', 1), ('microsoft', 1), ('expert', 1), ('zone', 1), ('columnist', 1), ('joli', 1), ('ballew', 1), ('book', 1), ('show', 1), ('hundred', 1), ('tip', 1), ('trick', 1), ('able', 1), ('use', 1), ('right', 1), ('away', 1), ('learn', 1), ('kick', 1), ('starting', 1), ('boot', 1), ('process', 1), ('disabling', 1), ('unnecessary', 1)]
[('firework', 2), ('learn', 1), ('in', 1), ('out', 1), ('using', 1), ('authoritative', 1), ('guide', 1), ('valuable', 1), ('tip', 1), ('guidance', 1), ('everything', 1), ('streamlining', 1), ('workflow', 1), ('creating', 1), ('interactive', 1), ('graphic', 1), ('web', 1), ('integrating', 1), ('application', 1)]
[('publisher', 2), ('product', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('find', 1), ('take', 1), ('keep', 1), ('bad', 1), ('guy', 1), ('network', 1), ('real', 1), ('world', 1), ('resource', 1), ('contains', 1), ('hacking', 1), ('challenge', 1), ('solve', 1)]
[('learn', 1), ('basic', 1), ('optical', 1), ('networking', 1), ('using', 1), ('practical', 1), ('easy', 1), ('follow', 1), ('introductory', 1), ('guide', 1), ('overview', 1), ('concept', 1), ('behind', 1), ('technology', 1), ('helpful', 1), ('information', 1), ('cisco', 1), ('nortel', 1), ('juniper', 1), ('certification', 1), ('handy', 1), ('page', 1), ('blueprint', 1), ('section', 1), ('offer', 1), ('additional', 1), ('visual', 1), ('instruction', 1)]
[('pc', 2), ('ideal', 1), ('owner', 1), ('looking', 1), ('accessible', 1), ('easy', 1), ('follow', 1), ('reference', 1), ('beginner', 1), ('guide', 1), ('hardware', 1), ('offer', 1), ('expert', 1), ('advice', 1), ('every', 1), ('component', 1), ('processor', 1), ('motherboards', 1), ('memory', 1), ('bios', 1), ('cd', 1), ('rom', 1), ('dvd', 1), ('drive', 1), ('video', 1), ('card', 1), ('detail', 1), ('external', 1), ('device', 1), ('including', 1), ('monitor', 1), ('printer', 1), ('keyboard', 1), ('modem', 1)]
[('advanced', 1), ('resource', 1), ('ideal', 1), ('experienced', 1), ('programmer', 1), ('seeking', 1), ('practical', 1), ('solution', 1), ('real', 1), ('problem', 1), ('discover', 1), ('valuable', 1), ('coding', 1), ('technique', 1), ('best', 1), ('practice', 1), ('learning', 1), ('master', 1), ('microsoft', 1), ('newest', 1), ('cross', 1), ('platform', 1), ('programming', 1), ('language', 1), ('definitive', 1), ('guide', 1), ('show', 1), ('expertly', 1), ('apply', 1), ('integrate', 1), ('business', 1)]
[('guide', 2), ('atm', 2), ('solve', 1), ('networking', 1), ('problem', 1), ('improve', 1), ('overall', 1), ('performance', 1), ('using', 1), ('detailed', 1), ('ip', 1), ('technology', 1), ('full', 1), ('coverage', 1), ('circuit', 1), ('multiplexing', 1), ('switching', 1), ('frame', 1), ('relay', 1), ('bridging', 1), ('routing', 1), ('signaling', 1), ('practical', 1), ('cover', 1), ('hardware', 1), ('software', 1), ('high', 1), ('layer', 1), ('protocol', 1)]
[('linux', 3), ('fully', 2), ('definitive', 1), ('resource', 1), ('updated', 1), ('expanded', 1), ('full', 1), ('detail', 1), ('powerful', 1), ('feature', 1), ('red', 1), ('hat', 1), ('enterprise', 1), ('fedora', 1), ('revised', 1), ('stop', 1), ('guide', 1), ('expert', 1), ('richard', 1), ('petersen', 1), ('cover', 1), ('base', 1), ('configuring', 1), ('desktop', 1), ('customizing', 1), ('system', 1), ('accessing', 1), ('software', 1), ('repository', 1), ('handling', 1), ('file', 1)]
[('book', 2), ('time', 2), ('sound', 2), ('recommend', 1), ('anyone', 1), ('whether', 1), ('beginner', 1), ('expert', 1), ('foreword', 1), ('peter', 1), ('buck', 1), ('everything', 1), ('explained', 1), ('concisely', 1), ('spend', 1), ('le', 1), ('wading', 1), ('page', 1), ('recording', 1), ('music', 1), ('magazine', 1), ('excellent', 1), ('engineer', 1), ('home', 1), ('recordist', 1), ('getting', 1), ('pro', 1), ('tool', 1)]
[('vista', 2), ('wservernews', 2), ('highly', 1), ('recommend', 1), ('book', 1), ('manual', 1), ('microsoft', 1), ('never', 1), ('wrote', 1), ('everything', 1), ('need', 1), ('nothing', 1), ('stu', 1), ('sjouwerman', 1), ('editor', 1), ('founder', 1), ('sunbelt', 1), ('software', 1)]
[('pc', 2), ('supercharge', 1), ('customize', 1), ('fun', 1), ('practical', 1), ('project', 1), ('packed', 1), ('inside', 1), ('easy', 1), ('follow', 1), ('guide', 1), ('produced', 1), ('conjunction', 1), ('cnet', 1), ('place', 1), ('go', 1), ('latest', 1), ('tech', 1), ('consumer', 1), ('electronics', 1), ('book', 1), ('show', 1), ('exploit', 1), ('medium', 1), ('communication', 1), ('networking', 1), ('security', 1)]
[('exchange', 1), ('server', 1), ('largest', 1), ('installed', 1), ('base', 1), ('messaging', 1), ('system', 1)]
[('ubuntu', 4), ('definitive', 1), ('guide', 1), ('cover', 1), ('lts', 1), ('maximize', 1), ('powerful', 1), ('feature', 1), ('expert', 1), ('guidance', 1), ('tip', 1), ('technique', 1), ('bestselling', 1), ('linux', 1), ('author', 1), ('richard', 1), ('petersen', 1), ('packed', 1), ('clear', 1), ('explanation', 1), ('detailed', 1), ('example', 1), ('comprehensive', 1), ('volume', 1), ('show', 1), ('ground', 1), ('set', 1), ('hardware', 1), ('internet', 1)]
[('marketing', 5), ('search', 3), ('internet', 2), ('performance', 2), ('engine', 2), ('revolutionize', 1), ('leverage', 1), ('today', 1), ('strategy', 1), ('reach', 1), ('customer', 1), ('increase', 1), ('sale', 1), ('establish', 1), ('based', 1), ('organization', 1), ('explains', 1), ('use', 1), ('web', 1), ('analytics', 1), ('key', 1), ('indicator', 1), ('kpis', 1), ('optimization', 1), ('seo', 1)]
[('oracle', 2), ('report', 2), ('placing', 1), ('enterprise', 1), ('application', 1), ('strategy', 1), ('center', 1), ('future', 1), ('growth', 1), ('peoplesoft', 1), ('phasing', 1), ('current', 1), ('product', 1), ('soon', 1), ('need', 1), ('rewritten', 1), ('xml', 1), ('publisher', 1)]
[('grid', 4), ('oracle', 4), ('control', 3), ('install', 1), ('configure', 1), ('manage', 1), ('landscape', 1), ('build', 1), ('robust', 1), ('computing', 1), ('infrastructure', 1), ('guidance', 1), ('expert', 1), ('developed', 1), ('taught', 1), ('deep', 1), ('dive', 1), ('class', 1), ('consulting', 1), ('featuring', 1), ('real', 1), ('world', 1), ('example', 1), ('best', 1), ('practice', 1), ('enterprise', 1), ('manager', 1), ('implementation', 1), ('guide', 1)]
[('organization', 1), ('million', 1), ('user', 1), ('run', 1), ('citrix', 1), ('software', 1)]
[('virtualization', 2), ('migrate', 1), ('dynamic', 1), ('demand', 1), ('data', 1), ('delivery', 1), ('platform', 1), ('looking', 1), ('hit', 1), ('ground', 1), ('running', 1), ('project', 1), ('large', 1), ('small', 1), ('book', 1), ('going', 1), ('give', 1), ('start', 1), ('need', 1), ('along', 1), ('way', 1), ('offer', 1), ('cautionary', 1), ('tale', 1), ('even', 1), ('take', 1), ('seasoned', 1), ('veteran', 1), ('surprise', 1)]
[('game', 4), ('microsoft', 2), ('xna', 2), ('studio', 2), ('step', 2), ('bring', 1), ('pc', 1), ('zune', 1), ('xbox', 1), ('gaming', 1), ('vision', 1), ('life', 1), ('develop', 1), ('complete', 1), ('hand', 1), ('instruction', 1), ('advice', 1), ('tip', 1), ('industry', 1), ('professional', 1), ('fully', 1), ('revised', 1), ('cover', 1), ('latest', 1), ('feature', 1), ('creator', 1), ('guide', 1), ('second', 1), ('edition', 1), ('lay', 1), ('essential', 1)]
[('adobe', 2), ('photoshop', 2), ('c', 2), ('example', 2), ('step', 2), ('master', 1), ('filled', 1), ('full', 1), ('color', 1), ('hand', 1), ('guide', 1), ('explains', 1), ('use', 1), ('latest', 1), ('release', 1), ('industry', 1), ('standard', 1), ('program', 1), ('graphic', 1), ('professional', 1), ('everything', 1), ('take', 1), ('process', 1), ('bringing', 1), ('creative', 1), ('concept', 1), ('completion', 1), ('real', 1), ('world', 1), ('reveal', 1)]
[('requirement', 4), ('engineering', 2), ('large', 2), ('application', 2), ('proven', 1), ('software', 1), ('system', 1), ('technique', 1), ('discipline', 1), ('used', 1), ('primarily', 1), ('complex', 1), ('formal', 1), ('normal', 1), ('method', 1), ('gathering', 1), ('formality', 1), ('needed', 1), ('many', 1), ('author', 1), ('experienced', 1), ('engineer', 1), ('book', 1)]
[('netbook', 3), ('time', 1), ('find', 1), ('maximize', 1), ('capability', 1), ('hand', 1), ('guide', 1), ('explains', 1), ('keep', 1), ('running', 1), ('peak', 1), ('performance', 1), ('limiting', 1), ('many', 1), ('program', 1), ('run', 1), ('concurrently', 1), ('download', 1), ('learn', 1), ('best', 1), ('way', 1), ('connect', 1), ('internet', 1), ('secure', 1)]
[('oracle', 3), ('webcenter', 2), ('master', 1), ('transform', 1), ('organization', 1), ('personalized', 1), ('user', 1), ('focused', 1), ('workplace', 1), ('using', 1), ('detailed', 1), ('information', 1), ('comprehensive', 1), ('press', 1), ('guide', 1), ('handbook', 1), ('show', 1), ('build', 1), ('enterprise', 1), ('application', 1), ('facilitate', 1), ('collaboration', 1), ('foster', 1), ('innovation', 1), ('work', 1), ('task', 1), ('flow', 1)]
[('oracle', 4), ('business', 3), ('suite', 3), ('development', 2), ('step', 2), ('extend', 1), ('customize', 1), ('transform', 1), ('infrastructure', 1), ('suit', 1), ('enterprise', 1), ('requirement', 1), ('using', 1), ('comprehensive', 1), ('method', 1), ('press', 1), ('guide', 1), ('extensibility', 1), ('handbook', 1), ('lay', 1), ('tool', 1), ('alongside', 1), ('reusable', 1), ('code', 1), ('example', 1), ('learn', 1)]
[('drawing', 2), ('learn', 2), ('master', 1), ('world', 1), ('fastest', 1), ('program', 1), ('principle', 1), ('vector', 1), ('technique', 1), ('composition', 1), ('art', 1), ('essential', 1), ('apply', 1), ('skill', 1), ('creating', 1), ('website', 1), ('animation', 1), ('logo', 1), ('photographic', 1), ('retouches', 1), ('xara', 1), ('xtreme', 1), ('official', 1), ('guide', 1), ('show', 1), ('customize', 1), ('software', 1), ('use', 1), ('quickshapes', 1), ('draw', 1)]
[('software', 4), ('engineering', 3), ('problem', 2), ('proven', 1), ('technique', 1), ('success', 1), ('depth', 1), ('volume', 1), ('examines', 1), ('topic', 1), ('covered', 1), ('elsewhere', 1), ('question', 1), ('developed', 1), ('programming', 1), ('language', 1), ('traditional', 1), ('definition', 1), ('quality', 1), ('common', 1), ('metric', 1), ('line', 1), ('code', 1)]
[('mobile', 3), ('application', 3), ('security', 2), ('secure', 1), ('today', 1), ('device', 1), ('implement', 1), ('systematic', 1), ('approach', 1), ('development', 1), ('help', 1), ('practical', 1), ('guide', 1), ('featuring', 1), ('case', 1), ('study', 1), ('code', 1), ('example', 1), ('best', 1), ('practice', 1), ('detail', 1), ('protect', 1), ('vulnerability', 1), ('latest', 1), ('smartphone', 1), ('pda', 1), ('platform', 1)]
[('ipad', 4), ('wi', 2), ('fi', 2), ('tap', 1), ('every', 1), ('feature', 1), ('revolutionary', 1), ('help', 1), ('easy', 1), ('follow', 1), ('guide', 1), ('covering', 1), ('model', 1), ('everything', 1), ('show', 1), ('quickly', 1), ('master', 1), ('basic', 1), ('customizing', 1), ('using', 1), ('multi', 1), ('touch', 1), ('screen', 1), ('accessing', 1), ('internet', 1)]
[('oracle', 5), ('fusion', 3), ('development', 2), ('guide', 2), ('application', 2), ('started', 1), ('written', 1), ('group', 1), ('product', 1), ('manager', 1), ('press', 1), ('get', 1), ('running', 1), ('quickly', 1), ('first', 1), ('quick', 1), ('start', 1), ('provides', 1), ('essential', 1), ('information', 1), ('need', 1), ('build', 1), ('matter', 1), ('hour', 1), ('rapidly', 1), ('learn', 1)]
[('iphone', 4), ('objective', 2), ('developer', 2), ('essential', 1), ('skill', 1), ('made', 1), ('easy', 1), ('create', 1), ('mac', 1), ('o', 1), ('application', 1), ('ease', 1), ('beginner', 1), ('guide', 1), ('show', 1), ('use', 1), ('programming', 1), ('language', 1), ('apple', 1), ('foundation', 1), ('framework', 1), ('sdk', 1), ('xcode', 1), ('development', 1), ('environment', 1), ('first', 1), ('stop', 1), ('aspiring', 1)]
[('microsoft', 2), ('percent', 2), ('analytics', 2), ('bi', 1), ('growth', 1), ('rate', 1), ('twice', 1), ('industry', 1), ('averaging', 1), ('close', 1), ('annually', 1), ('growing', 1), ('technical', 1), ('editor', 1), ('sean', 1), ('boon', 1), ('product', 1), ('manager', 1), ('new', 1), ('dundas', 1), ('sql', 1), ('server', 1)]
[('step', 2), ('full', 2), ('color', 2), ('graphic', 1), ('running', 1), ('quicken', 1), ('right', 1), ('away', 1), ('quickstep', 1), ('way', 1), ('screenshots', 1), ('simple', 1), ('instruction', 1), ('make', 1), ('easy', 1), ('start', 1), ('using', 1), ('latest', 1), ('release', 1), ('personal', 1), ('finance', 1), ('software', 1), ('follow', 1), ('along', 1), ('learn', 1), ('balance', 1), ('checkbook', 1), ('pay', 1), ('bill', 1), ('coordinate', 1), ('online', 1), ('banking', 1), ('track', 1), ('investment', 1), ('budget', 1)]
[('digital', 4), ('camera', 3), ('take', 2), ('photo', 2), ('using', 2), ('every', 1), ('time', 1), ('filled', 1), ('high', 1), ('color', 1), ('photograph', 1), ('everything', 1), ('photography', 1), ('show', 1), ('capture', 1), ('professional', 1), ('quality', 1), ('smartphone', 1), ('point', 1), ('shoot', 1), ('advanced', 1), ('slr', 1), ('learn', 1), ('better', 1), ('picture', 1), ('right', 1), ('away', 1), ('variety', 1)]
[('adobe', 2), ('acrobat', 2), ('create', 2), ('unlock', 1), ('full', 1), ('potential', 1), ('easier', 1), ('interactive', 1), ('electronic', 1), ('document', 1), ('retain', 1), ('look', 1), ('feel', 1), ('original', 1), ('everything', 1), ('show', 1), ('secure', 1), ('optimize', 1), ('distribute', 1), ('pdfs', 1), ('tip', 1), ('adding', 1), ('multimedia', 1), ('feature', 1), ('collaborating', 1), ('user', 1)]
[('software', 3), ('schedule', 2), ('deliver', 1), ('bug', 1), ('free', 1), ('project', 1), ('within', 1), ('budget', 1), ('clear', 1), ('complete', 1), ('understanding', 1), ('estimate', 1), ('cost', 1), ('quality', 1), ('using', 1), ('real', 1), ('world', 1), ('information', 1), ('contained', 1), ('comprehensive', 1), ('volume', 1), ('find', 1), ('choose', 1), ('correct', 1), ('hardware', 1), ('tool', 1), ('develop', 1), ('appraisal', 1), ('strategy', 1), ('deploy', 1), ('test', 1)]
[('project', 5), ('sap', 2), ('system', 2), ('p', 2), ('centralize', 1), ('control', 1), ('enterprise', 1), ('management', 1), ('plan', 1), ('execute', 1), ('track', 1), ('across', 1), ('entire', 1), ('lifecycle', 1), ('using', 1), ('depth', 1), ('information', 1), ('contained', 1), ('comprehensive', 1), ('volume', 1), ('handbook', 1), ('explains', 1), ('configure', 1), ('optimal', 1), ('performance', 1), ('design', 1), ('structure', 1), ('network', 1), ('create', 1)]
[('virtualization', 3), ('oracle', 3), ('vm', 2), ('guide', 2), ('master', 1), ('powerful', 1), ('tool', 1), ('set', 1), ('maintain', 1), ('dynamic', 1), ('platform', 1), ('across', 1), ('enterprise', 1), ('using', 1), ('detailed', 1), ('information', 1), ('contained', 1), ('press', 1), ('implementation', 1), ('administration', 1), ('contains', 1), ('key', 1), ('concept', 1), ('practical', 1), ('instruction', 1), ('example', 1), ('best', 1), ('practice', 1)]
[('iphone', 3), ('video', 2), ('unleash', 1), ('amazing', 1), ('feature', 1), ('filled', 1), ('handy', 1), ('tip', 1), ('little', 1), ('known', 1), ('trick', 1), ('everything', 1), ('show', 1), ('maximize', 1), ('powerful', 1), ('capability', 1), ('revolutionary', 1), ('device', 1), ('configure', 1), ('customize', 1), ('make', 1), ('call', 1), ('chat', 1), ('listen', 1), ('music', 1), ('watch', 1), ('create', 1), ('manage', 1), ('itunes', 1), ('library', 1)]
[('comptia', 4), ('exam', 4), ('test', 2), ('network', 2), ('authorized', 2), ('real', 1), ('first', 1), ('prepare', 1), ('mcgraw', 1), ('hill', 1), ('gold', 1), ('level', 1), ('partner', 1), ('offering', 1), ('approved', 1), ('quality', 1), ('content', 1), ('give', 1), ('competitive', 1), ('edge', 1), ('day', 1), ('certification', 1), ('practice', 1), ('filled', 1), ('realistic', 1)]
[('step', 2), ('full', 2), ('color', 2), ('use', 2), ('window', 2), ('graphic', 1), ('show', 1), ('running', 1), ('right', 1), ('away', 1), ('quickstep', 1), ('way', 1), ('screenshots', 1), ('every', 1), ('page', 1), ('clear', 1), ('instruction', 1), ('make', 1), ('easy', 1), ('innovative', 1), ('operating', 1), ('system', 1), ('device', 1), ('follow', 1), ('along', 1), ('learn', 1), ('navigate', 1), ('touch', 1), ('interface', 1), ('customize', 1), ('desktop', 1)]
[('official', 2), ('guide', 2), ('finance', 2), ('personal', 1), ('software', 1), ('filled', 1), ('insider', 1), ('tip', 1), ('expert', 1), ('technique', 1), ('quicken', 1), ('show', 1), ('manage', 1), ('asset', 1), ('confidence', 1), ('discover', 1), ('efficient', 1), ('effective', 1), ('method', 1), ('tracking', 1), ('income', 1), ('expense', 1), ('saving', 1), ('transaction', 1), ('investment', 1)]
[('tm', 4), ('official', 3), ('guide', 3), ('ibm', 2), ('cognos', 2), ('offer', 2), ('building', 1), ('effective', 1), ('business', 1), ('solution', 1), ('complete', 1), ('coverage', 1), ('bit', 1), ('memory', 1), ('online', 1), ('analytical', 1), ('processing', 1), ('olap', 1), ('engine', 1), ('based', 1), ('newest', 1), ('release', 1), ('advanced', 1), ('tutorial', 1), ('concept', 1), ('technical', 1)]
[('guide', 2), ('ibm', 2), ('cognos', 2), ('business', 2), ('intelligence', 2), ('authorized', 1), ('updated', 1), ('latest', 1), ('release', 1), ('software', 1), ('official', 1), ('explains', 1), ('create', 1), ('implement', 1), ('manage', 1), ('enterprise', 1), ('bi', 1), ('solution', 1), ('maximize', 1), ('new', 1), ('enhanced', 1), ('feature', 1), ('including', 1), ('powerful', 1), ('modeling', 1), ('monitoring', 1)]
[('database', 3), ('performance', 2), ('oracle', 2), ('implement', 1), ('proven', 1), ('optimization', 1), ('solution', 1), ('systematically', 1), ('identify', 1), ('eliminate', 1), ('problem', 1), ('help', 1), ('certified', 1), ('master', 1), ('richard', 1), ('niemiec', 1), ('filled', 1), ('real', 1), ('world', 1), ('case', 1), ('study', 1), ('best', 1), ('practice', 1), ('release', 1), ('tuning', 1), ('tip', 1), ('technique', 1), ('detail', 1), ('latest', 1), ('monitoring', 1), ('troubleshooting', 1)]
[('depth', 1), ('counterintelligence', 1), ('tactic', 1), ('fight', 1), ('cyber', 1), ('espionage', 1), ('comprehensive', 1), ('unparalleled', 1), ('overview', 1), ('topic', 1), ('expert', 1), ('field', 1), ('slashdot', 1), ('expose', 1), ('pursue', 1), ('prosecute', 1), ('perpetrator', 1), ('advanced', 1), ('persistent', 1), ('threat', 1), ('apts', 1), ('using', 1), ('tested', 1), ('security', 1), ('technique', 1), ('real', 1), ('world', 1), ('case', 1), ('study', 1), ('featured', 1), ('kind', 1), ('guide', 1)]
[('tool', 3), ('defend', 1), ('today', 1), ('devious', 1), ('attack', 1), ('fully', 1), ('revised', 1), ('include', 1), ('cutting', 1), ('edge', 1), ('new', 1), ('security', 1), ('arsenal', 1), ('anti', 1), ('hacker', 1), ('kit', 1), ('fourth', 1), ('edition', 1), ('reveals', 1), ('protect', 1), ('network', 1), ('wide', 1), ('range', 1), ('nefarious', 1), ('exploit', 1), ('detailed', 1), ('explanation', 1), ('function', 1), ('along', 1), ('best', 1), ('practice', 1), ('configuration', 1)]
[('business', 3), ('reference', 2), ('intelligence', 2), ('sap', 2), ('businessobjects', 2), ('bi', 2), ('definitive', 1), ('building', 1), ('actionable', 1), ('completely', 1), ('revised', 1), ('unleash', 1), ('full', 1), ('potential', 1), ('fact', 1), ('based', 1), ('decision', 1), ('aligned', 1), ('goal', 1), ('using', 1), ('report', 1), ('dashboard', 1), ('lead', 1), ('insight', 1), ('action', 1), ('complete', 1)]
[('project', 3), ('management', 3), ('fully', 2), ('study', 2), ('pmp', 2), ('exam', 2), ('professional', 2), ('best', 1), ('integrated', 1), ('system', 1), ('available', 1), ('updated', 1), ('current', 1), ('pmi', 1), ('body', 1), ('knowledge', 1), ('pmbok', 1), ('latest', 1), ('release', 1), ('guide', 1), ('fourth', 1), ('edition', 1), ('cover', 1), ('need', 1), ('know', 1), ('show', 1), ('prepare', 1)]
[('java', 4), ('platform', 3), ('guide', 2), ('ee', 2), ('definitive', 1), ('enterprise', 1), ('edition', 1), ('big', 1), ('picture', 1), ('uniquely', 1), ('explores', 1), ('entire', 1), ('encompassing', 1), ('style', 1), ('examining', 1), ('tier', 1), ('enough', 1), ('detail', 1), ('select', 1), ('right', 1), ('technology', 1), ('specific', 1), ('project', 1), ('need', 1), ('authoritative', 1), ('expert', 1), ('danny', 1)]
[('security', 3), ('professional', 2), ('cryptography', 2), ('smart', 1), ('self', 1), ('guided', 1), ('complete', 1), ('practical', 1), ('resource', 1), ('present', 1), ('underpinnings', 1), ('feature', 1), ('example', 1), ('improved', 1), ('industry', 1), ('wide', 1), ('encryption', 1), ('technique', 1), ('infosec', 1), ('pro', 1), ('guide', 1), ('provides', 1), ('actionable', 1), ('rock', 1), ('solid', 1), ('foundation', 1)]
[('cissp', 4), ('exam', 3), ('boxed', 2), ('set', 2), ('training', 2), ('save', 1), ('plus', 1), ('bonus', 1), ('dvd', 1), ('money', 1), ('saving', 1), ('name', 1), ('security', 1), ('certification', 1), ('includes', 1), ('guide', 1), ('sixth', 1), ('edition', 1), ('date', 1), ('coverage', 1), ('domain', 1), ('electronic', 1), ('content', 1), ('practice', 1), ('question', 1), ('video', 1), ('module', 1), ('downloadable', 1)]
[('io', 2), ('number', 2), ('maximize', 1), ('productivity', 1), ('apple', 1), ('way', 1), ('iwork', 1), ('suite', 1), ('apps', 1), ('mac', 1), ('device', 1), ('icloud', 1), ('everything', 1), ('page', 1), ('keynote', 1), ('o', 1), ('show', 1), ('create', 1), ('looking', 1), ('document', 1), ('persuasive', 1), ('presentation', 1), ('crunching', 1), ('spreadsheet', 1), ('filled', 1), ('clear', 1), ('explanation', 1), ('detailed', 1)]
[('secure', 3), ('java', 3), ('application', 3), ('proven', 1), ('method', 1), ('building', 1), ('based', 1), ('web', 1), ('develop', 1), ('deploy', 1), ('maintain', 1), ('using', 1), ('expert', 1), ('technique', 1), ('open', 1), ('source', 1), ('library', 1), ('described', 1), ('oracle', 1), ('press', 1), ('guide', 1), ('iron', 1), ('clad', 1), ('present', 1), ('process', 1), ('required', 1), ('build', 1), ('robust', 1), ('start', 1), ('explains', 1), ('eliminate', 1)]
[('wireless', 3), ('exploit', 2), ('latest', 2), ('network', 2), ('attack', 2), ('find', 2), ('defend', 1), ('learn', 1), ('weakness', 1), ('environment', 1), ('using', 1), ('innovative', 1), ('technique', 1), ('thoroughly', 1), ('updated', 1), ('guide', 1), ('inside', 1), ('concise', 1), ('technical', 1), ('overview', 1), ('method', 1), ('ready', 1), ('deploy', 1), ('countermeasure', 1), ('leverage', 1)]
[('database', 3), ('different', 2), ('system', 2), ('practical', 1), ('roadmap', 1), ('upgrade', 1), ('migration', 1), ('transformation', 1), ('oracle', 1), ('press', 1), ('guide', 1), ('provides', 1), ('best', 1), ('practice', 1), ('migrating', 1), ('operating', 1), ('platform', 1), ('transforming', 1), ('existing', 1), ('use', 1), ('storage', 1), ('enterprise', 1), ('upgrading', 1), ('release', 1), ('next', 1), ('based', 1), ('expert', 1)]
[('javafx', 3), ('java', 3), ('gui', 2), ('guru', 2), ('herb', 2), ('schildt', 2), ('programming', 2), ('develop', 1), ('cross', 1), ('platform', 1), ('feature', 1), ('rich', 1), ('application', 1), ('expert', 1), ('instruction', 1), ('introducing', 1), ('provides', 1), ('fast', 1), ('paced', 1), ('introduction', 1), ('next', 1), ('generation', 1), ('tool', 1), ('easy', 1), ('guide', 1), ('oracle', 1), ('press', 1), ('present', 1), ('key', 1), ('topic', 1), ('concept', 1)]
[('publisher', 2), ('product', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('master', 1), ('powerful', 1), ('tool', 1), ('feature', 1), ('tableau', 1), ('deliver', 1), ('meaningful', 1), ('bi', 1), ('visualization', 1), ('real', 1), ('time', 1), ('dashboard', 1), ('user', 1), ('across', 1), ('organization', 1), ('quickly', 1)]
[('exam', 3), ('ceh', 2), ('certified', 2), ('ethical', 2), ('hacker', 2), ('fully', 1), ('revised', 1), ('objective', 1), ('valuable', 1), ('bundle', 1), ('includes', 1), ('book', 1), ('exclusive', 1), ('electronic', 1), ('content', 1), ('bonus', 1), ('quick', 1), ('review', 1), ('guide', 1), ('thoroughly', 1), ('updated', 1), ('money', 1), ('saving', 1), ('self', 1), ('study', 1), ('set', 1), ('gather', 1), ('essential', 1), ('focused', 1), ('resource', 1), ('use', 1), ('preparation', 1), ('latest', 1)]
[('project', 6), ('comptia', 3), ('management', 2), ('prepare', 2), ('apply', 1), ('latest', 1), ('technique', 1), ('certification', 1), ('fully', 1), ('updated', 1), ('self', 1), ('study', 1), ('guide', 1), ('professional', 1), ('resource', 1), ('show', 1), ('successfully', 1), ('manage', 1), ('challenging', 1), ('exam', 1), ('track', 1), ('start', 1), ('finish', 1), ('fourth', 1), ('edition', 1)]
[('exam', 4), ('review', 2), ('comptia', 2), ('security', 2), ('quick', 1), ('cram', 1), ('style', 1), ('study', 1), ('guide', 1), ('offer', 1), ('coverage', 1), ('every', 1), ('topic', 1), ('latest', 1), ('version', 1), ('powerful', 1), ('preparation', 1), ('resource', 1), ('present', 1), ('accelerated', 1), ('pertinent', 1), ('technology', 1), ('cover', 1), ('objective', 1), ('sy', 1), ('written', 1), ('proven', 1), ('passport', 1), ('format', 1)]
[('exam', 4), ('project', 3), ('management', 3), ('test', 2), ('professional', 2), ('real', 1), ('first', 1), ('aligned', 1), ('current', 1), ('pmi', 1), ('body', 1), ('knowledge', 1), ('pmbok', 1), ('latest', 1), ('release', 1), ('pmp', 1), ('practice', 1), ('provides', 1), ('coverage', 1), ('objective', 1), ('logically', 1), ('organized', 1), ('domain', 1), ('question', 1)]
[('comptia', 3), ('network', 2), ('exam', 2), ('date', 1), ('focused', 1), ('coverage', 1), ('every', 1), ('topic', 1), ('fast', 1), ('track', 1), ('becoming', 1), ('certified', 1), ('affordable', 1), ('portable', 1), ('study', 1), ('tool', 1), ('inside', 1), ('certification', 1), ('training', 1), ('expert', 1), ('guide', 1), ('official', 1), ('objective', 1), ('order', 1), ('present', 1), ('providing', 1), ('concise', 1)]
[('comptia', 3), ('cysa', 2), ('certification', 2), ('exam', 2), ('test', 2), ('cybersecurity', 2), ('prepare', 1), ('effective', 1), ('self', 1), ('study', 1), ('resource', 1), ('real', 1), ('first', 1), ('pas', 1), ('new', 1), ('analyst', 1), ('obtain', 1), ('latest', 1), ('security', 1), ('credential', 1), ('using', 1), ('accurate', 1), ('practice', 1), ('question', 1), ('contained', 1), ('guide', 1)]
[('test', 3), ('exam', 2), ('study', 2), ('real', 1), ('first', 1), ('prepare', 1), ('challenging', 1), ('pentest', 1), ('comptia', 1), ('using', 1), ('highly', 1), ('effective', 1), ('self', 1), ('guide', 1), ('book', 1), ('offer', 1), ('accurate', 1), ('practice', 1), ('question', 1), ('objective', 1), ('includes', 1), ('valuable', 1), ('pre', 1), ('assessment', 1), ('enables', 1), ('tailor', 1), ('course', 1), ('written', 1), ('cybersecurity', 1), ('expert', 1)]
[('publisher', 2), ('product', 2), ('oracle', 2), ('cloud', 2), ('infrastructure', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('study', 1), ('guide', 1), ('cover', 1), ('objective', 1), ('architect', 1), ('associate', 1), ('exam', 1), ('pas', 1), ('new', 1)]
[('virtual', 2), ('technology', 2), ('exploring', 1), ('wide', 1), ('range', 1), ('reality', 1), ('tour', 1), ('art', 1), ('gallery', 1), ('head', 1), ('display', 1), ('used', 1), ('military', 1), ('pilot', 1), ('michael', 1), ('heim', 1), ('suggests', 1), ('harmony', 1), ('lifestyle', 1)]
[('computer', 2), ('knuth', 2), ('introduced', 2), ('first', 1), ('edition', 1), ('volume', 1), ('art', 1), ('programming', 1), ('donald', 1), ('mix', 1), ('machine', 1), ('language', 1), ('teaching', 1), ('tool', 1), ('powerfully', 1), ('illuminated', 1), ('inner', 1), ('working', 1), ('algorithm', 1), ('document', 1), ('later', 1), ('publication', 1), ('fascicle', 1), ('mmix', 1), ('modern', 1), ('bit', 1), ('risc', 1), ('replacement', 1)]
[('gopro', 3), ('professional', 2), ('filmmaking', 2), ('guide', 1), ('packed', 1), ('hundred', 1), ('beautiful', 1), ('photo', 1), ('interactive', 1), ('link', 1), ('video', 1), ('created', 1), ('athlete', 1), ('filmmaker', 1), ('inspired', 1), ('user', 1), ('around', 1), ('world', 1), ('book', 1), ('cover', 1), ('art', 1), ('technique', 1), ('advanced', 1), ('team', 1), ('unique', 1), ('insider', 1), ('look', 1)]
[('microsoft', 2), ('exam', 2), ('prepare', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('skill', 1), ('needed', 1), ('deliver', 1), ('effective', 1), ('exchange', 1), ('server', 1), ('solution', 1), ('designed', 1), ('experienced', 1), ('pro', 1), ('ready', 1), ('advance', 1), ('status', 1), ('ref', 1), ('focus', 1)]
[('microsoft', 2), ('exam', 2), ('focus', 2), ('prepare', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('configuring', 1), ('window', 1), ('device', 1), ('enterprise', 1), ('designed', 1), ('experienced', 1), ('pro', 1), ('ready', 1), ('advance', 1), ('status', 1), ('ref', 1), ('critical', 1), ('thinking', 1), ('decision', 1), ('making', 1), ('acumen', 1), ('needed', 1), ('success', 1), ('specialist', 1), ('expertise', 1)]
[('microsoft', 2), ('office', 2), ('exam', 2), ('objective', 2), ('demonstrate', 1), ('expertise', 1), ('designed', 1), ('help', 1), ('practice', 1), ('prepare', 1), ('excel', 1), ('specialist', 1), ('mo', 1), ('study', 1), ('guide', 1), ('feature', 1), ('full', 1), ('coverage', 1)]
[('adobe', 3), ('professional', 2), ('xd', 2), ('release', 2), ('book', 2), ('creative', 1), ('web', 1), ('designer', 1), ('ux', 1), ('seeking', 1), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('choose', 1), ('classroom', 1), ('best', 1), ('selling', 1), ('series', 1), ('hand', 1), ('software', 1), ('training', 1), ('workbook', 1), ('press', 1), ('project', 1), ('based', 1), ('lesson', 1), ('guide', 1), ('user', 1)]
[('ajax', 3), ('asp', 2), ('net', 2), ('server', 2), ('control', 1), ('encapsulate', 1), ('even', 1), ('powerful', 1), ('functionality', 1), ('helping', 1), ('build', 1), ('elegant', 1), ('maintainable', 1), ('scalable', 1), ('application', 1), ('first', 1), ('comprehensive', 1), ('code', 1), ('rich', 1), ('guide', 1), ('custom', 1)]
[('need', 3), ('answer', 2), ('step', 2), ('nbsp', 1), ('quickly', 1), ('microsoft', 1), ('office', 1), ('demand', 1), ('provides', 1), ('visual', 1), ('format', 1), ('show', 1), ('exactly', 1), ('lot', 1), ('full', 1), ('color', 1), ('illustration', 1), ('easy', 1), ('follow', 1)]
[('language', 2), ('popular', 1), ('programming', 1), ('combine', 1), ('high', 1), ('productivity', 1), ('rapid', 1), ('application', 1), ('development', 1), ('raw', 1), ('power', 1), ('updated', 1), ('cover', 1), ('new', 1), ('feature', 1), ('including', 1), ('dynamic', 1), ('binding', 1), ('named', 1), ('optional', 1), ('parameter', 1)]
[('indesign', 3), ('c', 2), ('new', 2), ('feature', 2), ('visual', 1), ('quickstart', 1), ('guide', 1), ('highlight', 1), ('important', 1), ('covering', 1), ('one', 1), ('reader', 1), ('relied', 1), ('previous', 1), ('version', 1), ('complete', 1), ('coverage', 1), ('includes', 1), ('tool', 1), ('easily', 1)]
[('unix', 4), ('lesson', 2), ('hour', 2), ('step', 2), ('le', 1), ('sam', 1), ('teach', 1), ('help', 1), ('running', 1), ('based', 1), ('operating', 1), ('system', 1), ('mac', 1), ('o', 1), ('linux', 1), ('designed', 1), ('beginner', 1), ('previous', 1), ('experience', 1), ('using', 1), ('book', 1), ('straightforward', 1), ('approach', 1), ('make', 1), ('easy', 1), ('learn', 1), ('clearly', 1), ('explains', 1)]
[('shell', 3), ('programming', 2), ('unix', 2), ('linux', 1), ('o', 1), ('thoroughly', 1), ('updated', 1), ('revision', 1), ('kochan', 1), ('wood', 1), ('classic', 1), ('tutorial', 1), ('following', 1), ('methodology', 1), ('original', 1), ('text', 1), ('book', 1), ('focus', 1), ('posix', 1), ('standard', 1), ('teach', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('microsoft', 2), ('exam', 2), ('help', 2), ('needed', 2), ('prepare', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('skill', 1), ('securely', 1), ('efficiently', 1), ('provide', 1), ('office', 1), ('service', 1), ('environment', 1), ('designed', 1), ('experienced', 1), ('pro', 1), ('ready', 1), ('advance', 1), ('status', 1), ('ref', 1), ('focus', 1), ('critical', 1), ('thinking', 1), ('decision', 1), ('making', 1), ('acumen', 1)]
[('driven', 2), ('pattern', 1), ('domain', 1), ('design', 1), ('dd', 1), ('test', 1), ('development', 1), ('tdd', 1), ('enable', 1), ('architect', 1), ('developer', 1), ('create', 1), ('system', 1), ('powerful', 1), ('robust', 1), ('maintainable', 1), ('comprehensive', 1), ('practical', 1), ('guide', 1), ('leveraging', 1)]
[('data', 2), ('binding', 2), ('important', 1), ('part', 1), ('many', 1), ('business', 1), ('application', 1), ('difficult', 1), ('thing', 1), ('understand', 1), ('window', 1), ('form', 1), ('first', 1), ('book', 1), ('focus', 1), ('crucial', 1), ('area', 1), ('development', 1), ('quickly', 1)]
[('window', 3), ('use', 2), ('development', 2), ('software', 2), ('debugger', 1), ('throughout', 1), ('cycle', 1), ('build', 1), ('better', 1), ('rethink', 1), ('debugging', 1), ('tracing', 1), ('tool', 1), ('learn', 1), ('make', 1), ('key', 1), ('part', 1), ('test', 1), ('driven', 1), ('led', 1), ('member', 1)]
[('science', 3), ('computer', 2), ('today', 1), ('learning', 1), ('program', 1), ('understanding', 1), ('basic', 1), ('computation', 1), ('indispensable', 1), ('every', 1), ('engineering', 1), ('student', 1), ('crucial', 1), ('everyone', 1), ('want', 1), ('understand', 1), ('world', 1), ('live', 1), ('interdisciplinary', 1), ('approach', 1), ('pioneering', 1), ('princeton', 1), ('professor', 1), ('robert', 1), ('sedgewick', 1), ('kevin', 1)]
[('easy', 2), ('step', 2), ('learning', 1), ('made', 1), ('done', 1), ('quickly', 1), ('word', 1), ('jump', 1), ('wherever', 1), ('need', 1), ('answer', 1), ('brisk', 1), ('lesson', 1), ('colourful', 1), ('screenshots', 1), ('show', 1), ('exactly', 1), ('follow', 1), ('guidance', 1), ('certified', 1), ('microsoft', 1), ('office', 1), ('specialist', 1), ('master', 1), ('learn', 1), ('practice', 1), ('new', 1), ('skill', 1), ('working', 1), ('sample', 1), ('content', 1), ('look', 1)]
[('lightroom', 3), ('book', 2), ('first', 1), ('launched', 1), ('year', 1), ('ago', 1), ('scott', 1), ('kelby', 1), ('adobe', 1), ('photoshop', 1), ('digital', 1), ('photographer', 1), ('world', 1), ('top', 1), ('selling', 1), ('translated', 1), ('dozen', 1), ('different', 1), ('language', 1)]
[('help', 2), ('practice', 2), ('trust', 1), ('best', 1), ('selling', 1), ('official', 1), ('cert', 1), ('guide', 1), ('series', 1), ('cisco', 1), ('press', 1), ('learn', 1), ('prepare', 1), ('exam', 1), ('success', 1), ('built', 1), ('objective', 1), ('providing', 1), ('assessment', 1), ('review', 1), ('ensure', 1), ('fully', 1), ('prepared', 1)]
[('everyone', 1), ('benefit', 1), ('basic', 1), ('programming', 1), ('skill', 1), ('start', 1), ('might', 1), ('want', 1), ('go', 1), ('whole', 1), ('lot', 1), ('nbsp', 1), ('author', 1), ('steven', 1), ('foote', 1), ('taught', 1), ('program', 1), ('figuring', 1), ('best', 1), ('way', 1), ('overcome', 1), ('every', 1), ('obstacle', 1), ('professional', 1)]
[('communication', 3), ('wireless', 2), ('developed', 1), ('proven', 1), ('part', 1), ('special', 1), ('laboratory', 1), ('course', 1), ('university', 1), ('texas', 1), ('unique', 1), ('book', 1), ('make', 1), ('accessible', 1), ('undergraduate', 1), ('practicing', 1), ('electrical', 1), ('engineer', 1), ('specialised', 1), ('nbsp', 1), ('introduction', 1), ('digital', 1), ('signal', 1), ('processing', 1), ('perspective', 1), ('go', 1)]
[('word', 3), ('expert', 2), ('level', 2), ('nbsp', 2), ('microsoft', 2), ('advance', 1), ('proficiency', 1), ('earn', 1), ('credential', 1), ('prof', 1), ('demonstrate', 1), ('competency', 1), ('designed', 1), ('help', 1), ('practice', 1), ('prepare', 1), ('office', 1), ('specialist', 1)]
[('device', 2), ('mobile', 2), ('create', 1), ('satisfactory', 1), ('user', 1), ('experience', 1), ('limited', 1), ('small', 1), ('new', 1), ('guide', 1), ('focus', 1), ('usability', 1), ('primarily', 1), ('smartphones', 1), ('touchphones', 1), ('cover', 1), ('topic', 1), ('developing', 1), ('strategy', 1), ('designing', 1)]
[('cs', 2), ('visual', 2), ('create', 2), ('add', 1), ('powerful', 1), ('new', 1), ('functionality', 1), ('web', 1), ('style', 1), ('language', 1), ('help', 1), ('beautiful', 1), ('engaging', 1), ('design', 1), ('easily', 1), ('eye', 1), ('catching', 1), ('effect', 1), ('semitransparent', 1), ('background', 1), ('gradient', 1)]
[('android', 3), ('design', 2), ('implementing', 2), ('developer', 2), ('user', 1), ('interface', 1), ('nbsp', 1), ('focus', 1), ('beautiful', 1), ('goal', 1), ('help', 1), ('relative', 1), ('beginner', 1), ('expert', 1), ('ensure', 1), ('apps', 1), ('look', 1), ('good', 1), ('possible', 1), ('following', 1), ('best', 1), ('practice', 1), ('creating', 1), ('custom', 1), ('component', 1), ('advanced', 1), ('drawing', 1), ('technique', 1), ('book', 1), ('first', 1), ('discus', 1)]
[('window', 3), ('hour', 2), ('powershell', 2), ('step', 2), ('lesson', 1), ('le', 1), ('sam', 1), ('teach', 1), ('help', 1), ('streamline', 1), ('facet', 1), ('administration', 1), ('supercharging', 1), ('effectiveness', 1), ('professional', 1), ('power', 1), ('user', 1), ('book', 1), ('straightforward', 1), ('approach', 1), ('show', 1), ('build', 1), ('run', 1), ('script', 1), ('extend', 1), ('reach', 1)]
[('nbsp', 3), ('salesforce', 2), ('new', 1), ('tool', 1), ('best', 1), ('practice', 1), ('driving', 1), ('sale', 1), ('profit', 1), ('chatter', 1), ('service', 1), ('cloud', 1), ('offer', 1), ('unprecedented', 1), ('opportunity', 1), ('supercharge', 1), ('business', 1), ('performance', 1), ('sfdc', 1)]
[('object', 2), ('oriented', 2), ('design', 1), ('application', 1), ('long', 1), ('essential', 1), ('reference', 1), ('technology', 1), ('turn', 1), ('evolved', 1), ('join', 1), ('mainstream', 1), ('industrial', 1), ('strength', 1), ('software', 1), ('development', 1), ('third', 1), ('edition', 1), ('first', 1), ('revision', 1)]
[('exam', 2), ('prepare', 1), ('microsoft', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('designing', 1), ('implementing', 1), ('window', 1), ('server', 1), ('infrastructure', 1), ('enterprise', 1), ('environment', 1), ('designed', 1), ('experienced', 1), ('professional', 1), ('ready', 1), ('advance', 1), ('status', 1), ('ref', 1), ('focus', 1), ('critical', 1), ('thinking', 1), ('decision', 1), ('making', 1), ('acumen', 1), ('needed', 1), ('success', 1), ('mcse', 1)]
[('sap', 2), ('step', 2), ('session', 1), ('hour', 1), ('le', 1), ('running', 1), ('latest', 1), ('technology', 1), ('application', 1), ('solution', 1), ('using', 1), ('straightforward', 1), ('approach', 1), ('lesson', 1), ('strengthens', 1), ('understanding', 1), ('business', 1), ('technical', 1), ('perspective', 1), ('helping', 1), ('gain', 1), ('practical', 1), ('mastery', 1), ('ground', 1), ('topic', 1)]
[('scripting', 2), ('javatm', 2), ('platform', 2), ('groovy', 1), ('beyond', 1), ('leverage', 1), ('full', 1), ('power', 1), ('nbsp', 1), ('using', 1), ('new', 1), ('support', 1), ('improve', 1), ('efficiency', 1), ('streamline', 1), ('development', 1), ('process', 1), ('solve', 1), ('problem', 1), ('ranging', 1)]
[('nbsp', 5), ('software', 3), ('real', 1), ('cost', 1), ('insecure', 1), ('defect', 1), ('boeing', 1), ('caused', 1), ('crash', 1), ('killed', 1), ('vulnerability', 1), ('helped', 1), ('cause', 1), ('largest', 1), ('power', 1), ('outage', 1), ('decade', 1)]
[('effective', 2), ('wagner', 2), ('new', 2), ('microsoft', 1), ('mvp', 1), ('regional', 1), ('director', 1), ('bill', 1), ('introduces', 1), ('fifty', 1), ('brand', 1), ('way', 1), ('write', 1), ('efficient', 1), ('robust', 1), ('software', 1), ('book', 1), ('follows', 1), ('format', 1), ('best', 1), ('selling', 1)]
[('sap', 4), ('user', 3), ('everyone', 1), ('nontechnical', 1), ('guide', 1), ('working', 1), ('leading', 1), ('business', 1), ('enterprise', 1), ('software', 1), ('product', 1), ('world', 1), ('written', 1), ('road', 1), ('tested', 1), ('experienced', 1), ('trainer', 1), ('book', 1), ('save', 1), ('typical', 1)]
[('budget', 2), ('whether', 1), ('big', 1), ('film', 1), ('game', 1), ('production', 1), ('lower', 1), ('tv', 1), ('internet', 1), ('content', 1), ('creating', 1), ('flexible', 1), ('believable', 1), ('character', 1), ('rig', 1), ('essential', 1), ('skill', 1), ('required', 1), ('bring', 1), ('animation', 1), ('life', 1), ('leading', 1), ('software', 1), ('used', 1)]
[('network', 4), ('security', 4), ('level', 2), ('appropriate', 1), ('graduate', 1), ('upper', 1), ('course', 1), ('computer', 1), ('nbsp', 1), ('widely', 1), ('regarded', 1), ('comprehensive', 1), ('yet', 1), ('comprehensible', 1), ('guide', 1), ('first', 1), ('edition', 1), ('received', 1), ('critical', 1), ('acclaim', 1), ('lucid', 1), ('witty', 1), ('explanation', 1), ('inner', 1), ('working', 1)]
[('fix', 2), ('full', 2), ('color', 2), ('junk', 1), ('save', 1), ('fortune', 1), ('reference', 1), ('amp', 1), ('tutorial', 1), ('kind', 1), ('iphone', 1), ('ipad', 1), ('ipod', 1), ('secret', 1), ('repair', 1), ('knowledge', 1), ('apple', 1), ('want', 1), ('groundbreaking', 1), ('book', 1), ('show', 1)]
[('system', 2), ('digital', 1), ('version', 1), ('printed', 1), ('book', 1), ('copyright', 1), ('nbsp', 1), ('fundamentally', 1), ('new', 1), ('approach', 1), ('complete', 1), ('analysis', 1), ('teach', 1), ('everything', 1), ('need', 1), ('know', 1), ('analyzing', 1), ('method', 1), ('model', 1), ('technique', 1)]
[('ruby', 4), ('experienced', 1), ('programmer', 1), ('effective', 1), ('help', 1), ('harness', 1), ('full', 1), ('power', 1), ('write', 1), ('robust', 1), ('efficient', 1), ('maintainable', 1), ('performing', 1), ('code', 1), ('drawing', 1), ('nearly', 1), ('decade', 1), ('experience', 1), ('peter', 1), ('jones', 1), ('brings', 1), ('together', 1)]
[('book', 2), ('programming', 2), ('mac', 2), ('o', 2), ('several', 1), ('advanced', 1), ('big', 1), ('nerd', 1), ('ranch', 1), ('guide', 1), ('contains', 1), ('explanation', 1), ('leverage', 1), ('powerful', 1), ('underlying', 1), ('technology', 1), ('get', 1), ('real', 1)]
[('nbsp', 1), ('digital', 1), ('version', 1), ('printed', 1), ('book', 1), ('copyright', 1), ('derek', 1), ('hatley', 1), ('imtiaz', 1), ('pirbhai', 1), ('author', 1), ('strategy', 1), ('real', 1), ('time', 1), ('system', 1), ('specification', 1), ('join', 1), ('influential', 1), ('consultant', 1), ('peter', 1), ('hruschka', 1), ('present', 1), ('anticipated', 1)]
[('microsoft', 2), ('office', 2), ('exam', 2), ('objective', 2), ('demonstrate', 1), ('expertise', 1), ('designed', 1), ('help', 1), ('practice', 1), ('prepare', 1), ('access', 1), ('specialist', 1), ('mo', 1), ('study', 1), ('guide', 1), ('feature', 1), ('full', 1), ('coverage', 1)]
[('supremely', 1), ('organised', 1), ('reference', 1), ('pack', 1), ('hundred', 1), ('timesaving', 1), ('solution', 1), ('troubleshooting', 1), ('tip', 1), ('workarounds', 1), ('window', 1), ('server', 1), ('focus', 1), ('infrastructure', 1), ('core', 1), ('service', 1), ('security', 1), ('feature', 1), ('full', 1), ('text', 1), ('downloaded', 1), ('computer', 1), ('ebooks', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1)]
[('microsoft', 2), ('office', 2), ('exam', 2), ('objective', 2), ('demonstrate', 1), ('expertise', 1), ('designed', 1), ('help', 1), ('practice', 1), ('prepare', 1), ('powerpoint', 1), ('specialist', 1), ('mo', 1), ('study', 1), ('guide', 1), ('feature', 1), ('full', 1), ('coverage', 1)]
[('learn', 2), ('microsoft', 2), ('powerpoint', 2), ('easy', 2), ('step', 2), ('quick', 1), ('way', 1), ('learning', 1), ('made', 1), ('done', 1), ('quickly', 1), ('jump', 1), ('wherever', 1), ('need', 1), ('answer', 1), ('brisk', 1), ('lesson', 1), ('colorful', 1), ('screenshots', 1), ('show', 1), ('exactly', 1), ('follow', 1), ('guidance', 1), ('certified', 1), ('office', 1), ('specialist', 1), ('master', 1), ('practice', 1)]
[('interaction', 2), ('design', 2), ('around', 1), ('wondered', 1), ('mobile', 1), ('phone', 1), ('look', 1), ('pretty', 1), ('work', 1), ('confronted', 1), ('bad', 1), ('marvelled', 1), ('joy', 1), ('using', 1), ('iphone', 1), ('shared', 1), ('photo', 1), ('flickr', 1), ('used', 1), ('atm', 1), ('machine', 1), ('recorded', 1), ('television', 1), ('show', 1), ('tivo', 1), ('ordered', 1), ('movie', 1), ('netflix', 1)]
[('design', 3), ('photoshop', 3), ('web', 2), ('page', 2), ('book', 1), ('aimed', 1), ('visual', 1), ('student', 1), ('accustomed', 1), ('working', 1), ('adobe', 1), ('cc', 1), ('contains', 1), ('many', 1), ('new', 1), ('feature', 1), ('help', 1), ('streamline', 1), ('process', 1), ('converting', 1), ('static', 1), ('set', 1), ('component', 1), ('responsive', 1), ('balance', 1), ('coverage', 1), ('conceptual', 1), ('issue', 1), ('fit', 1), ('tool', 1)]
[('email', 2), ('gmail', 2), ('managing', 1), ('daily', 1), ('time', 1), ('wasting', 1), ('distraction', 1), ('many', 1), ('today', 1), ('connected', 1), ('world', 1), ('business', 1), ('necessity', 1), ('tip', 1), ('trick', 1), ('tool', 1), ('show', 1), ('take', 1), ('control', 1), ('inbox', 1), ('simple', 1), ('four', 1), ('step', 1), ('process', 1), ('resolving', 1), ('overwhelm', 1), ('designed', 1), ('specifically', 1), ('user', 1), ('fully', 1), ('illustrated', 1), ('easy', 1), ('guide', 1), ('first', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('active', 3), ('directory', 3), ('properly', 2), ('ebook', 1), ('version', 1), ('printed', 1), ('book', 1), ('organization', 1), ('implemented', 1), ('microsoft', 1), ('window', 1), ('need', 1), ('make', 1), ('sure', 1), ('configured', 1), ('operating', 1), ('even', 1)]
[('want', 3), ('photo', 2), ('looking', 1), ('fast', 1), ('bogged', 1), ('detail', 1), ('need', 1), ('visual', 1), ('quickproject', 1), ('guide', 1), ('nbsp', 1), ('took', 1), ('use', 1), ('little', 1), ('finessing', 1), ('correct', 1), ('image', 1)]
[('development', 2), ('ebook', 1), ('version', 1), ('printed', 1), ('book', 1), ('practical', 1), ('framework', 1), ('gaining', 1), ('agility', 1), ('benefit', 1), ('without', 1), ('risk', 1), ('nbsp', 1), ('agile', 1), ('methodology', 1), ('xp', 1), ('scrum', 1), ('crystal', 1), ('lean', 1), ('software', 1), ('enable', 1), ('organization', 1), ('deliver', 1)]
[('adobe', 2), ('industry', 2), ('program', 2), ('indesign', 1), ('longer', 1), ('newcomer', 1), ('full', 1), ('fledged', 1), ('sophisticated', 1), ('tightly', 1), ('integrated', 1), ('leading', 1), ('graphic', 1), ('web', 1), ('essential', 1), ('tool', 1), ('anyone', 1), ('page', 1), ('layout', 1), ('design', 1)]
[('language', 2), ('javascript', 1), ('object', 1), ('oriented', 1), ('scripting', 1), ('enables', 1), ('modify', 1), ('document', 1), ('structure', 1), ('styling', 1), ('content', 1), ('response', 1), ('user', 1), ('action', 1), ('handy', 1), ('pocket', 1), ('serf', 1), ('quick', 1), ('introduction', 1), ('act', 1), ('valuable', 1)]
[('sharepoint', 2), ('unleashed', 2), ('buy', 1), ('print', 1), ('ebook', 1), ('version', 1), ('free', 1), ('see', 1), ('inside', 1), ('book', 1), ('access', 1), ('code', 1), ('detail', 1), ('complete', 1), ('practical', 1), ('resource', 1), ('administrator', 1), ('manager', 1), ('architect', 1), ('user', 1)]
[('google', 3), ('know', 2), ('telling', 1), ('nbsp', 1), ('use', 1), ('free', 1), ('service', 1), ('pay', 1), ('big', 1), ('time', 1), ('personal', 1), ('information', 1), ('making', 1), ('fortune', 1), ('shocked', 1)]
[('step', 2), ('session', 1), ('hour', 1), ('le', 1), ('learn', 1), ('build', 1), ('rich', 1), ('robust', 1), ('mobile', 1), ('apps', 1), ('run', 1), ('smartphones', 1), ('tablet', 1), ('device', 1), ('interact', 1), ('user', 1), ('powerful', 1), ('new', 1), ('way', 1), ('using', 1), ('book', 1), ('straightforward', 1), ('approach', 1)]
[('server', 3), ('sql', 2), ('industry', 1), ('complete', 1), ('useful', 1), ('date', 1), ('guide', 1), ('find', 1), ('start', 1), ('finish', 1), ('coverage', 1), ('core', 1), ('database', 1), ('management', 1), ('capability', 1), ('real', 1), ('world', 1), ('information', 1), ('tip', 1), ('guideline', 1), ('example', 1)]
[('ipad', 3), ('using', 2), ('senior', 1), ('comprehensive', 1), ('guide', 1), ('apple', 1), ('model', 1), ('includes', 1), ('everything', 1), ('basic', 1), ('setup', 1), ('information', 1), ('finding', 1), ('installing', 1), ('new', 1), ('apps', 1), ('communication', 1), ('entertainment', 1), ('productivity', 1), ('full', 1), ('text', 1), ('downloaded', 1), ('computer', 1), ('ebooks', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1)]
[('camera', 2), ('release', 1), ('red', 1), ('digital', 1), ('cinema', 1), ('possibility', 1), ('recording', 1), ('stunning', 1), ('cinematic', 1), ('quality', 1), ('image', 1), ('affordable', 1), ('became', 1), ('reality', 1), ('industry', 1), ('embraced', 1), ('nascent', 1), ('technology', 1), ('added', 1), ('new', 1), ('tool', 1)]
[('step', 2), ('need', 1), ('fast', 1), ('reliable', 1), ('easy', 1), ('implement', 1), ('solution', 1), ('automating', 1), ('sharepoint', 1), ('administration', 1), ('powershell', 1), ('guide', 1), ('delivers', 1), ('exactly', 1), ('looking', 1), ('help', 1), ('guidance', 1), ('task', 1), ('perform', 1), ('often', 1)]
[('web', 3), ('jquery', 2), ('started', 1), ('fast', 1), ('programming', 1), ('nbsp', 1), ('javascript', 1), ('library', 1), ('greatly', 1), ('simplifies', 1), ('creation', 1), ('modern', 1), ('rich', 1), ('application', 1), ('seamlessly', 1), ('integrating', 1), ('virtually', 1), ('leading', 1), ('development', 1), ('platform', 1), ('framework', 1)]
[('agile', 1), ('development', 1), ('methodology', 1), ('started', 1), ('life', 1), ('widespread', 1), ('continuing', 1), ('adoption', 1), ('mean', 1), ('many', 1), ('practitioner', 1), ('outside', 1), ('including', 1), ('designer', 1), ('need', 1), ('change', 1), ('thinking', 1), ('adapt', 1), ('practice', 1)]
[('game', 3), ('hour', 2), ('unity', 2), ('lesson', 1), ('le', 1), ('sam', 1), ('teach', 1), ('development', 1), ('help', 1), ('master', 1), ('engine', 1), ('heart', 1), ('hearthstone', 1), ('hero', 1), ('warcraft', 1), ('kerbal', 1), ('space', 1), ('program', 1), ('many', 1), ('sizzling', 1), ('hot', 1)]
[('game', 2), ('iphone', 2), ('ipad', 2), ('launch', 1), ('app', 1), ('store', 1), ('hottest', 1), ('category', 1), ('apps', 1), ('ipod', 1), ('touch', 1), ('mean', 1), ('best', 1), ('chance', 1), ('tapping', 1), ('gold', 1), ('rush', 1), ('put', 1), ('killer', 1), ('everyone', 1), ('want', 1), ('play', 1)]
[('screen', 3), ('hand', 1), ('guide', 1), ('steer', 1), ('navigate', 1), ('home', 1), ('launch', 1), ('run', 1), ('switch', 1), ('apps', 1), ('use', 1), ('magical', 1), ('smart', 1), ('cover', 1), ('put', 1), ('sleep', 1), ('wake', 1), ('ipad', 1), ('change', 1), ('lock', 1), ('orientation', 1), ('adjust', 1), ('brightness', 1)]
[('garageband', 2), ('work', 2), ('book', 1), ('published', 1), ('july', 1), ('cover', 1), ('content', 1), ('medium', 1), ('file', 1), ('subsequent', 1), ('release', 1), ('software', 1), ('apple', 1), ('certified', 1), ('guide', 1), ('reader', 1), ('creating', 1), ('original', 1), ('within', 1), ('first', 1), ('chapter', 1), ('using', 1), ('real', 1), ('life', 1), ('material', 1), ('practical', 1), ('lesson', 1), ('apply', 1)]
[('update', 2), ('logic', 2), ('pro', 2), ('please', 1), ('note', 1), ('found', 1), ('tab', 1), ('completely', 1), ('revised', 1), ('updated', 1), ('apple', 1), ('certified', 1), ('guide', 1), ('show', 1), ('record', 1), ('produce', 1), ('make', 1), ('music', 1)]
[('io', 3), ('nbsp', 2), ('updated', 1), ('xcode', 1), ('swift', 1), ('programming', 1), ('big', 1), ('nerd', 1), ('ranch', 1), ('guide', 1), ('lead', 1), ('essential', 1), ('concept', 1), ('tool', 1), ('technique', 1), ('developing', 1), ('application', 1), ('completing', 1), ('book', 1)]
[('iterative', 2), ('software', 2), ('practical', 1), ('start', 1), ('finish', 1), ('guide', 1), ('planning', 1), ('leading', 1), ('project', 1), ('nbsp', 1), ('process', 1), ('gained', 1), ('widespread', 1), ('acceptance', 1), ('help', 1), ('developer', 1), ('reduce', 1), ('risk', 1), ('cost', 1), ('manage', 1), ('change', 1), ('improve', 1), ('productivity', 1)]
[('nan', 1)]
[('business', 2), ('architecture', 2), ('getting', 1), ('desired', 1), ('return', 1), ('service', 1), ('oriented', 1), ('soa', 1), ('investment', 1), ('today', 1), ('process', 1), ('information', 1), ('system', 1), ('tightly', 1), ('intertwined', 1), ('designed', 1), ('together', 1), ('part', 1), ('total', 1), ('realize', 1)]
[('digital', 1), ('alchemy', 1), ('acclaimed', 1), ('printmaker', 1), ('bonny', 1), ('pierce', 1), ('lhotka', 1), ('show', 1), ('turn', 1), ('standard', 1), ('inkjet', 1), ('printer', 1), ('seemingly', 1), ('magical', 1), ('instrument', 1), ('capable', 1), ('transforming', 1), ('printed', 1), ('image', 1), ('true', 1), ('work', 1), ('art', 1), ('using', 1), ('plenty', 1), ('visuals', 1)]
[('phonegap', 2), ('apache', 2), ('using', 2), ('adobe', 1), ('distribution', 1), ('free', 1), ('open', 1), ('source', 1), ('framework', 1), ('originally', 1), ('developed', 1), ('nitobi', 1), ('available', 1), ('foundation', 1), ('cordova', 1), ('developer', 1), ('build', 1), ('native', 1), ('mobile', 1), ('apps', 1)]
[('design', 4), ('digital', 2), ('principle', 2), ('software', 2), ('nbsp', 1), ('student', 1), ('production', 1), ('whether', 1), ('learning', 1), ('classroom', 1), ('need', 1), ('understand', 1), ('basic', 1), ('often', 1), ('excluded', 1), ('book', 1), ('teach', 1), ('foundation', 1), ('art', 1), ('adobe', 1), ('creative', 1), ('cloud', 1), ('reinvigorates', 1), ('training', 1), ('integrating', 1)]
[('xcode', 3), ('use', 2), ('write', 2), ('io', 2), ('o', 2), ('apps', 1), ('start', 1), ('finish', 1), ('help', 1), ('tool', 1), ('apple', 1), ('improve', 1), ('productivity', 1), ('code', 1), ('leverage', 1), ('newest', 1), ('maverick', 1), ('feature', 1), ('drawing', 1), ('thirty', 1), ('year', 1)]
[('firewall', 2), ('network', 2), ('essential', 1), ('guide', 1), ('understanding', 1), ('using', 1), ('protect', 1), ('personal', 1), ('computer', 1), ('easy', 1), ('introduction', 1), ('commonly', 1), ('deployed', 1), ('security', 1), ('device', 1), ('understand', 1), ('threat', 1), ('designed', 1)]
[('networking', 1), ('become', 1), ('commonplace', 1), ('home', 1), ('year', 1), ('past', 1), ('took', 1), ('trained', 1), ('technician', 1), ('set', 1), ('manage', 1), ('computer', 1), ('network', 1), ('case', 1), ('anymore', 1), ('household', 1), ('multiple', 1), ('pc', 1), ('increased', 1), ('demand', 1)]
[('ajax', 3), ('web', 2), ('hand', 1), ('practical', 1), ('guide', 1), ('preventing', 1), ('related', 1), ('security', 1), ('vulnerability', 1), ('nbsp', 1), ('site', 1), ('rewritten', 1), ('application', 1), ('even', 1), ('traditional', 1), ('desktop', 1), ('software', 1), ('rapidly', 1), ('moving', 1), ('via', 1)]
[('avatar', 3), ('nearly', 1), ('billion', 1), ('using', 1), ('impact', 1), ('real', 1), ('life', 1), ('video', 1), ('game', 1), ('conceit', 1), ('inspired', 1), ('rendering', 1), ('creator', 1), ('inner', 1), ('self', 1), ('among', 1)]
[('medium', 4), ('center', 4), ('window', 2), ('vista', 2), ('user', 2), ('show', 2), ('unknown', 1), ('territory', 1), ('unleashing', 1), ('microsoft', 1), ('newbie', 1), ('experienced', 1), ('use', 1), ('experience', 1), ('music', 1), ('photo', 1), ('video', 1), ('movie', 1), ('tv', 1)]
[('raw', 3), ('adobe', 2), ('photoshop', 2), ('camera', 2), ('photographer', 2), ('image', 2), ('plug', 1), ('changed', 1), ('way', 1), ('work', 1), ('shooting', 1), ('format', 1), ('give', 1), ('digital', 1), ('complete', 1), ('control', 1), ('every', 1), ('aspect', 1), ('quality', 1), ('make', 1), ('process', 1)]
[('social', 3), ('developer', 2), ('book', 2), ('guide', 1), ('programming', 1), ('mark', 1), ('hawker', 1), ('show', 1), ('build', 1), ('application', 1), ('integrate', 1), ('major', 1), ('networking', 1), ('site', 1), ('unlike', 1), ('competitive', 1), ('focus', 1), ('single', 1), ('medium', 1), ('platform', 1), ('cover', 1)]
[('audio', 3), ('pro', 3), ('final', 2), ('cut', 2), ('soundtrack', 2), ('producer', 1), ('jeff', 1), ('sobel', 1), ('guide', 1), ('professional', 1), ('post', 1), ('production', 1), ('application', 1), ('designed', 1), ('specifically', 1), ('editor', 1), ('working', 1), ('seamlessly', 1), ('master', 1)]
[('teach', 3), ('sam', 2), ('object', 2), ('oriented', 2), ('programming', 2), ('oop', 2), ('book', 2), ('day', 1), ('differs', 1), ('main', 1), ('way', 1), ('many', 1), ('classic', 1), ('designed', 1), ('software', 1), ('engineer', 1), ('academic', 1), ('level', 1)]
[('illustrator', 2), ('color', 2), ('fully', 1), ('updated', 1), ('edition', 1), ('c', 1), ('cover', 1), ('essential', 1), ('skill', 1), ('artist', 1), ('drawing', 1), ('geometric', 1), ('freehand', 1), ('object', 1), ('management', 1), ('using', 1), ('multiple', 1), ('artboards', 1), ('applying', 1), ('pattern', 1), ('gradient', 1), ('creating', 1)]
[('book', 1), ('window', 1), ('mac', 1), ('break', 1), ('new', 1), ('ground', 1), ('something', 1), ('digital', 1), ('photographer', 1), ('never', 1), ('done', 1), ('cut', 1), ('bull', 1), ('show', 1), ('exactly', 1), ('bunch', 1), ('theory', 1), ('challenge', 1), ('reader', 1)]
[('project', 3), ('le', 1), ('time', 1), ('nbsp', 1), ('book', 1), ('packed', 1), ('intensely', 1), ('useful', 1), ('knowledge', 1), ('tip', 1), ('shortcut', 1), ('find', 1), ('anywhere', 1), ('fastest', 1), ('best', 1), ('way', 1), ('master', 1), ('every', 1), ('phase', 1), ('management', 1)]
[('google', 3), ('apps', 3), ('step', 2), ('full', 1), ('color', 1), ('task', 1), ('walk', 1), ('exactly', 1), ('want', 1), ('nbsp', 1), ('learn', 1), ('use', 1), ('reduce', 1), ('technology', 1), ('expense', 1), ('grow', 1), ('business', 1), ('choose', 1), ('best', 1), ('version', 1)]
[('book', 2), ('training', 2), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('adobe', 1), ('photoshop', 1), ('lightroom', 1), ('classic', 1), ('cc', 1), ('nbsp', 1), ('classroom', 1), ('best', 1), ('selling', 1), ('series', 1), ('hand', 1), ('software', 1), ('workbook', 1), ('offer', 1), ('program', 1)]
[('window', 2), ('microsoft', 2), ('current', 1), ('business', 1), ('government', 1), ('institutional', 1), ('focus', 1), ('security', 1), ('organization', 1), ('scrambling', 1), ('make', 1), ('network', 1), ('secure', 1), ('although', 1), ('encryption', 1), ('nothing', 1), ('new', 1), ('recent', 1), ('advance', 1)]
[('ip', 3), ('methodology', 2), ('telephony', 2), ('cisco', 2), ('reveals', 1), ('need', 1), ('resolve', 1), ('complex', 1), ('problem', 1), ('network', 1), ('master', 1), ('troubleshooting', 1), ('technique', 1), ('part', 1), ('solution', 1), ('callmanager', 1), ('phone', 1), ('gateway', 1), ('application', 1)]
[('easy', 3), ('adobe', 3), ('photoshop', 3), ('element', 2), ('nbsp', 1), ('see', 1), ('done', 1), ('teach', 1), ('fundamental', 1), ('working', 1), ('incredibly', 1), ('powerful', 1), ('yet', 1), ('simple', 1), ('use', 1), ('image', 1), ('editing', 1), ('software', 1)]
[('designer', 2), ('yawn', 2), ('type', 1), ('use', 1), ('say', 1), ('audience', 1), ('actual', 1), ('word', 1), ('page', 1), ('nbsp', 1), ('web', 1), ('extremely', 1), ('limited', 1), ('palette', 1), ('typeface', 1), ('choose', 1), ('essentially', 1), ('arial', 1), ('time', 1)]
[('training', 3), ('book', 2), ('series', 2), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('adobe', 1), ('premiere', 1), ('pro', 1), ('cc', 1), ('classroom', 1), ('best', 1), ('selling', 1), ('hand', 1), ('software', 1), ('workbook', 1), ('offer', 1), ('program', 1), ('official', 1)]
[('photoshop', 1), ('adjustment', 1), ('fill', 1), ('layer', 1), ('give', 1), ('amazing', 1), ('level', 1), ('control', 1), ('building', 1), ('block', 1), ('innumerable', 1), ('technique', 1), ('definitive', 1), ('resource', 1), ('scott', 1), ('valentine', 1), ('demonstrates', 1), ('use', 1), ('simple', 1), ('powerful', 1), ('tool', 1)]
[('sql', 2), ('server', 2), ('need', 1), ('deploy', 1), ('manage', 1), ('secure', 1), ('microsoft', 1), ('complete', 1), ('fast', 1), ('paced', 1), ('task', 1), ('based', 1), ('reference', 1), ('searching', 1), ('authored', 1), ('worldclass', 1), ('expert', 1), ('running', 1), ('enterprise', 1), ('book', 1), ('go', 1), ('far', 1)]
[('study', 1), ('guide', 1), ('us', 1), ('text', 1), ('integrated', 1), ('video', 1), ('help', 1), ('gain', 1), ('real', 1), ('world', 1), ('skill', 1), ('started', 1), ('career', 1), ('graphic', 1), ('design', 1), ('illustration', 1), ('lay', 1), ('foundation', 1), ('taking', 1), ('illustrator', 1), ('aca', 1), ('exam', 1), ('mix', 1), ('project', 1), ('based', 1)]
[('isbn', 3), ('cvoice', 3), ('nbsp', 2), ('ccvp', 2), ('quick', 2), ('reference', 2), ('sheet', 2), ('new', 1), ('edition', 1), ('title', 1), ('available', 1), ('digital', 1), ('short', 1), ('cut', 1), ('kevin', 1), ('wallace', 1), ('ccie', 1), ('final', 1), ('preparation', 1), ('tool', 1), ('providing', 1), ('review', 1), ('exam', 1), ('topic', 1), ('complement', 1)]
[('android', 2), ('start', 1), ('finish', 1), ('guide', 1), ('application', 1), ('development', 1), ('massively', 1), ('updated', 1), ('newest', 1), ('sdks', 1), ('developer', 1), ('technique', 1), ('nbsp', 1), ('book', 1), ('delivers', 1), ('date', 1), ('information', 1), ('tested', 1), ('code', 1), ('best', 1), ('practice', 1), ('need', 1), ('create', 1), ('market', 1), ('successful', 1), ('mobile', 1), ('apps', 1), ('latest', 1), ('version', 1), ('drawing', 1), ('extensive', 1), ('experience', 1)]
[('delphi', 6), ('developer', 4), ('guide', 4), ('borland', 2), ('steve', 2), ('xavier', 2), ('new', 1), ('edition', 1), ('best', 1), ('selling', 1), ('book', 1), ('author', 1), ('teixeira', 1), ('pacheco', 1), ('winner', 1), ('informant', 1), ('reader', 1), ('choice', 1), ('award', 1), ('completely', 1)]
[('comptia', 3), ('authorized', 2), ('certification', 2), ('ebook', 2), ('learn', 1), ('prepare', 1), ('practice', 1), ('exam', 1), ('success', 1), ('cert', 1), ('guide', 1), ('deluxe', 1), ('edition', 1), ('pearson', 1), ('leader', 1), ('learning', 1), ('platinum', 1), ('partner', 1), ('version', 1), ('print', 1), ('title', 1), ('note', 1), ('provide', 1), ('access', 1)]
[('mpls', 3), ('practical', 1), ('guide', 1), ('understanding', 1), ('designing', 1), ('deploying', 1), ('enabled', 1), ('vpns', 1), ('depth', 1), ('analysis', 1), ('multiprotocol', 1), ('label', 1), ('switching', 1), ('architecture', 1), ('detailed', 1), ('discussion', 1), ('mechanism', 1), ('feature', 1), ('constitute', 1)]
[('office', 3), ('version', 2), ('quickly', 1), ('learn', 1), ('useful', 1), ('feature', 1), ('microsoft', 1), ('easy', 1), ('four', 1), ('guide', 1), ('fast', 1), ('paced', 1), ('book', 1), ('give', 1), ('basic', 1), ('word', 1), ('excel', 1), ('powerpoint', 1), ('access', 1), ('start', 1), ('using', 1), ('new', 1), ('major', 1), ('application', 1), ('right', 1), ('away', 1), ('unlike', 1), ('every', 1), ('previous', 1), ('offer', 1), ('completely', 1), ('redesigned', 1)]
[('network', 2), ('intrusion', 1), ('detection', 1), ('faint', 1), ('heart', 1), ('administrator', 1), ('chance', 1), ('increasing', 1), ('pressure', 1), ('ensure', 1), ('mission', 1), ('critical', 1), ('system', 1), ('safe', 1), ('fact', 1), ('impenetrable', 1), ('malicious', 1), ('code', 1), ('buffer', 1), ('overflow', 1), ('stealth', 1), ('port', 1), ('scan', 1), ('smb', 1), ('probe', 1), ('o', 1), ('fingerprinting', 1), ('attempt', 1), ('cgi', 1), ('attack', 1)]
[('system', 2), ('know', 2), ('hack', 2), ('today', 1), ('administrator', 1), ('deal', 1), ('vast', 1), ('number', 1), ('situation', 1), ('operating', 1), ('software', 1), ('package', 1), ('problem', 1), ('kept', 1), ('copy', 1), ('linux', 1), ('server', 1), ('close', 1), ('hand', 1), ('ease', 1), ('burden', 1), ('help', 1), ('enough', 1), ('sys', 1), ('admin', 1), ('many', 1), ('cool', 1), ('tip', 1), ('way', 1), ('solving', 1)]
[('internet', 3), ('online', 2), ('almost', 1), ('synonymous', 1), ('change', 1), ('charm', 1), ('headache', 1), ('think', 1), ('know', 1), ('really', 1), ('speed', 1), ('telephone', 1), ('movie', 1), ('tv', 1), ('downloading', 1), ('blogging', 1), ('gaming', 1), ('banking', 1), ('dating', 1), ('photosharing', 1), ('utterly', 1), ('current', 1), ('book', 1), ('cover', 1), ('getting', 1), ('reader', 1)]
[('network', 3), ('security', 2), ('router', 2), ('administrator', 1), ('auditor', 1), ('architect', 1), ('know', 1), ('importance', 1), ('securing', 1), ('finding', 1), ('solution', 1), ('implement', 1), ('quickly', 1), ('succinct', 1), ('book', 1), ('departs', 1), ('literature', 1), ('focusing', 1), ('exclusively', 1), ('way', 1), ('secure', 1), ('cisco', 1), ('rather', 1), ('entire', 1), ('rational', 1), ('simple', 1)]
[('unix', 3), ('oracle', 3), ('dba', 2), ('command', 2), ('environment', 2), ('pocket', 1), ('reference', 1), ('put', 1), ('within', 1), ('easy', 1), ('reach', 1), ('database', 1), ('administrator', 1), ('need', 1), ('operating', 1), ('moving', 1), ('another', 1), ('window', 1), ('nt', 1), ('ibm', 1), ('mainframe', 1), ('know', 1), ('far', 1), ('different', 1), ('covered', 1)]
[('privacy', 2), ('fifty', 1), ('year', 1), ('ago', 1), ('george', 1), ('orwell', 1), ('imagined', 1), ('future', 1), ('demolished', 1), ('totalitarian', 1), ('state', 1), ('used', 1), ('spy', 1), ('video', 1), ('surveillance', 1), ('historical', 1), ('revisionism', 1), ('control', 1), ('medium', 1), ('maintain', 1), ('power', 1), ('worry', 1), ('personal', 1), ('identity', 1), ('especially', 1), ('day', 1), ('technology', 1), ('encroach', 1), ('upon', 1)]
[('oracle', 3), ('pl', 2), ('sql', 2), ('book', 2), ('developer', 2), ('past', 1), ('ten', 1), ('year', 1), ('reilly', 1), ('programming', 1), ('bestselling', 1), ('powerful', 1), ('procedural', 1), ('language', 1), ('packed', 1), ('example', 1), ('helpful', 1), ('recommendation', 1), ('helped', 1), ('everyone', 1), ('novice', 1), ('experienced', 1), ('form', 1), ('database', 1), ('administrator', 1), ('make', 1)]
[('juno', 3), ('enterprise', 2), ('routing', 2), ('book', 2), ('service', 2), ('written', 1), ('instructor', 1), ('creator', 1), ('jntcp', 1), ('er', 1), ('certification', 1), ('exam', 1), ('comprehensive', 1), ('juniper', 1), ('edge', 1), ('environment', 1), ('offer', 1), ('complete', 1), ('coverage', 1), ('available', 1), ('administrator', 1), ('including', 1), ('enhanced', 1), ('e', 1), ('official', 1), ('study', 1)]
[('data', 4), ('database', 3), ('object', 2), ('sql', 1), ('language', 1), ('used', 1), ('create', 1), ('maintain', 1), ('place', 1), ('query', 1), ('modify', 1), ('finally', 1), ('delete', 1), ('longer', 1), ('needed', 1), ('lie', 1), ('heart', 1), ('many', 1), ('business', 1), ('application', 1), ('chance', 1), ('good', 1), ('involved', 1), ('software', 1), ('development', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('direct', 1), ('microsoft', 1), ('insider', 1), ('complete', 1), ('hand', 1), ('guide', 1), ('sql', 1), ('server', 1), ('powerful', 1), ('tool', 1), ('nbsp', 1)]
[('ipad', 5), ('nbsp', 4), ('work', 2), ('io', 1), ('rd', 1), ('generation', 1), ('supercharge', 1), ('business', 1), ('effectiveness', 1), ('model', 1), ('office', 1), ('road', 1), ('everywhere', 1), ('put', 1), ('manager', 1)]
[('master', 1), ('business', 1), ('modeling', 1), ('analysis', 1), ('technique', 1), ('help', 1), ('transform', 1), ('data', 1), ('bottom', 1), ('line', 1), ('result', 1), ('decade', 1), ('wayne', 1), ('winston', 1), ('teaching', 1), ('corporate', 1), ('client', 1), ('mba', 1), ('student', 1), ('effective', 1), ('way', 1), ('use', 1), ('excel', 1), ('solve', 1)]
[('nbsp', 3), ('powerful', 2), ('photographer', 2), ('adobe', 1), ('photoshop', 1), ('lightroom', 1), ('classic', 1), ('cc', 1), ('tool', 1), ('digital', 1), ('toolset', 1), ('offering', 1), ('editing', 1), ('feature', 1), ('streamlined', 1), ('interface', 1), ('let', 1), ('import', 1), ('sort', 1)]
[('system', 2), ('user', 2), ('bsd', 2), ('world', 1), ('unix', 1), ('operating', 1), ('various', 1), ('bsds', 1), ('come', 1), ('long', 1), ('heritage', 1), ('high', 1), ('quality', 1), ('software', 1), ('designed', 1), ('solution', 1), ('making', 1), ('favorite', 1), ('o', 1), ('wide', 1), ('range', 1), ('among', 1), ('budget', 1), ('minded', 1), ('adopted', 1), ('early', 1), ('developer', 1), ('today', 1), ('largest', 1), ('internet', 1), ('site', 1), ('popularity', 1), ('continues', 1), ('grow', 1)]
[('asterisk', 2), ('telephony', 2), ('bestselling', 1), ('book', 1), ('standard', 1), ('guide', 1), ('building', 1), ('phone', 1), ('system', 1), ('open', 1), ('source', 1), ('ip', 1), ('pbx', 1), ('traditional', 1), ('provider', 1), ('running', 1), ('scared', 1), ('revised', 1), ('release', 1), ('software', 1), ('new', 1), ('edition', 1), ('future', 1), ('reveals', 1), ('save', 1), ('money', 1), ('equipment', 1), ('support', 1), ('finally', 1)]
[('tool', 2), ('year', 1), ('thousand', 1), ('developed', 1), ('debugging', 1), ('tcp', 1), ('ip', 1), ('network', 1), ('range', 1), ('specialized', 1), ('particular', 1), ('task', 1), ('generalized', 1), ('suite', 1), ('everything', 1), ('except', 1), ('replace', 1), ('bad', 1), ('ethernet', 1), ('cable', 1), ('even', 1), ('better', 1), ('many', 1), ('absolutely', 1), ('free', 1), ('problem', 1), ('time', 1), ('track', 1)]
[('iphone', 2), ('certain', 1), ('technology', 1), ('bring', 1), ('everyone', 1), ('hidden', 1), ('geek', 1), ('moment', 1), ('released', 1), ('even', 1), ('though', 1), ('apple', 1), ('created', 1), ('closed', 1), ('device', 1), ('ten', 1), ('thousand', 1), ('developer', 1), ('bought', 1), ('express', 1), ('purpose', 1), ('designing', 1), ('running', 1), ('third', 1), ('party', 1), ('software', 1), ('clear', 1), ('concise', 1), ('book', 1), ('veteran', 1), ('hacker', 1), ('jonathan', 1), ('zdziarski', 1)]
[('iphone', 2), ('forensics', 2), ('book', 1), ('anyone', 1), ('attempting', 1), ('examine', 1), ('level', 1), ('forensic', 1), ('detail', 1), ('excellent', 1), ('guide', 1), ('written', 1), ('clarity', 1), ('andrew', 1), ('sheldon', 1), ('director', 1), ('evidence', 1), ('talk', 1), ('computer', 1), ('expert', 1), ('use', 1), ('increasing', 1), ('business', 1), ('network', 1), ('security', 1), ('professional', 1), ('face', 1), ('serious', 1)]
[('net', 3), ('ado', 2), ('guide', 1), ('strikingly', 1), ('different', 1), ('book', 1), ('microsoft', 1), ('rather', 1), ('load', 1), ('theory', 1), ('new', 1), ('edition', 1), ('cookbook', 1), ('give', 1), ('coding', 1), ('solution', 1), ('best', 1), ('practice', 1), ('real', 1), ('problem', 1), ('likely', 1), ('face', 1), ('technology', 1), ('using', 1), ('visual', 1), ('studio', 1), ('platform', 1), ('organized', 1), ('help', 1)]
[('window', 2), ('powershell', 2), ('cookbook', 1), ('team', 1), ('developer', 1), ('lee', 1), ('holmes', 1), ('provides', 1), ('hundred', 1), ('tested', 1), ('script', 1), ('use', 1), ('right', 1), ('away', 1), ('microsoft', 1), ('new', 1), ('tool', 1), ('working', 1), ('recipe', 1), ('combined', 1), ('concise', 1), ('task', 1), ('based', 1), ('introduction', 1), ('scripting', 1), ('language', 1), ('environment', 1), ('make', 1), ('perfect', 1), ('look', 1), ('guide', 1)]
[('used', 2), ('system', 2), ('hundred', 1), ('thousand', 1), ('technique', 1), ('compromise', 1), ('window', 1), ('unix', 1), ('based', 1), ('malicious', 1), ('code', 1), ('new', 1), ('exploit', 1), ('script', 1), ('released', 1), ('daily', 1), ('basis', 1), ('evolution', 1), ('becomes', 1), ('sophisticated', 1), ('keeping', 1), ('myriad', 1), ('hacker', 1), ('wild', 1), ('formidable', 1), ('task', 1), ('scrambling', 1), ('patch', 1)]
[('technology', 2), ('always', 2), ('cool', 2), ('commonplace', 1), ('today', 1), ('considered', 1), ('impossible', 1), ('least', 1), ('wishful', 1), ('thinking', 1), ('laser', 1), ('beam', 1), ('operating', 1), ('room', 1), ('car', 1), ('built', 1), ('guidance', 1), ('system', 1), ('cell', 1), ('phone', 1), ('email', 1), ('access', 1), ('getting', 1), ('around', 1), ('fact', 1)]
[('flash', 4), ('effect', 2), ('book', 2), ('seen', 1), ('especially', 1), ('cool', 1), ('web', 1), ('gone', 1), ('straight', 1), ('trusty', 1), ('find', 1), ('turned', 1), ('away', 1), ('empty', 1), ('handed', 1), ('hack', 1), ('unique', 1), ('offer', 1), ('collection', 1), ('expert', 1), ('tip', 1), ('trick', 1), ('optimization', 1), ('creating', 1), ('interesting', 1), ('actionscript', 1), ('programming', 1), ('sound', 1), ('video', 1)]
[('user', 2), ('microsoft', 1), ('word', 1), ('grown', 1), ('considerably', 1), ('power', 1), ('sophistication', 1), ('capability', 1), ('past', 1), ('decade', 1), ('thing', 1), ('changed', 1), ('early', 1), ('interface', 1), ('simple', 1), ('toolbar', 1), ('version', 1), ('packed', 1), ('many', 1), ('feature', 1), ('know', 1), ('find', 1), ('consequently', 1)]
[('access', 3), ('interface', 3), ('database', 2), ('design', 1), ('programming', 1), ('take', 1), ('behind', 1), ('detail', 1), ('focusing', 1), ('general', 1), ('knowledge', 1), ('necessary', 1), ('power', 1), ('user', 1), ('developer', 1), ('create', 1), ('effective', 1), ('application', 1), ('using', 1), ('software', 1), ('product', 1), ('graphical', 1), ('frequently', 1), ('focus', 1), ('forget', 1)]
[('cs', 3), ('say', 1), ('good', 1), ('thing', 1), ('come', 1), ('small', 1), ('package', 1), ('certainly', 1), ('true', 1), ('edition', 1), ('pocket', 1), ('reference', 1), ('completely', 1), ('revised', 1), ('updated', 1), ('reflect', 1), ('latest', 1), ('cascading', 1), ('style', 1), ('sheet', 1), ('specification', 1), ('indispensable', 1), ('little', 1), ('book', 1), ('cover', 1), ('essential', 1), ('information', 1), ('web', 1), ('designer', 1), ('developer', 1), ('need', 1), ('implement', 1)]
[('new', 3), ('window', 2), ('vista', 2), ('microsoft', 1), ('release', 1), ('operating', 1), ('system', 1), ('support', 1), ('application', 1), ('employ', 1), ('graphic', 1), ('used', 1), ('computer', 1), ('game', 1), ('clear', 1), ('stunning', 1), ('active', 1), ('cornerstone', 1), ('building', 1), ('user', 1), ('interface', 1), ('xaml', 1), ('zammel', 1), ('xml', 1), ('based', 1), ('markup', 1), ('language', 1), ('work', 1), ('presentation', 1), ('foundation', 1), ('wpf', 1)]
[('documentation', 2), ('vb', 2), ('vba', 2), ('language', 2), ('need', 2), ('use', 2), ('online', 1), ('component', 1), ('seems', 1), ('follow', 1), ('rule', 1), ('basic', 1), ('fact', 1), ('statement', 1), ('provided', 1), ('additional', 1), ('percent', 1), ('effectively', 1), ('apply', 1), ('special', 1), ('case', 1), ('conspicuously', 1), ('absent', 1), ('professional', 1), ('programmer', 1)]
[('large', 2), ('service', 2), ('enterprise', 2), ('organization', 1), ('increasingly', 1), ('face', 1), ('challenge', 1), ('integrating', 1), ('various', 1), ('web', 1), ('application', 1), ('technology', 1), ('single', 1), ('network', 1), ('solution', 1), ('finding', 1), ('meaningful', 1), ('scale', 1), ('architecture', 1), ('capable', 1), ('spanning', 1), ('global', 1), ('appears', 1), ('met', 1), ('esb', 1), ('bus', 1), ('rather', 1), ('conform', 1)]
[('amazon', 2), ('application', 2), ('cloud', 2), ('end', 2), ('plan', 1), ('use', 1), ('web', 1), ('service', 1), ('run', 1), ('approach', 1), ('book', 1), ('save', 1), ('needle', 1), ('trial', 1), ('error', 1), ('find', 1), ('practical', 1), ('guideline', 1), ('designing', 1), ('building', 1), ('elastic', 1), ('compute', 1), ('ec', 1), ('host', 1), ('supporting', 1), ('aws', 1), ('tool', 1), ('focus', 1), ('critical', 1), ('issue', 1), ('load', 1)]
[('write', 2), ('geolocation', 2), ('apps', 2), ('truly', 1), ('revolutionary', 1), ('application', 1), ('directly', 1), ('browser', 1), ('rather', 1), ('develop', 1), ('native', 1), ('particular', 1), ('device', 1), ('concise', 1), ('book', 1), ('demonstrates', 1), ('api', 1), ('action', 1), ('code', 1), ('example', 1), ('help', 1), ('build', 1), ('html', 1), ('using', 1), ('deploy', 1), ('everywhere', 1), ('model', 1), ('along', 1), ('way', 1), ('crash', 1)]
[('application', 2), ('blackberry', 2), ('ready', 1), ('put', 1), ('actionscript', 1), ('skill', 1), ('work', 1), ('mobile', 1), ('apps', 1), ('hand', 1), ('book', 1), ('walk', 1), ('process', 1), ('creating', 1), ('adobe', 1), ('air', 1), ('tablet', 1), ('start', 1), ('finish', 1), ('using', 1), ('flex', 1), ('framework', 1), ('move', 1), ('quickly', 1), ('basic', 1), ('hello', 1), ('world', 1), ('complex', 1), ('interaction', 1), ('apis', 1), ('complete', 1), ('code', 1)]
[('javascript', 2), ('application', 2), ('state', 2), ('building', 1), ('rich', 1), ('bring', 1), ('desktop', 1), ('experience', 1), ('web', 1), ('requires', 1), ('moving', 1), ('server', 1), ('client', 1), ('side', 1), ('simple', 1), ('task', 1), ('hand', 1), ('book', 1), ('take', 1), ('proficient', 1), ('developer', 1), ('step', 1), ('necessary', 1), ('create', 1), ('art', 1), ('including', 1), ('structure', 1), ('templating', 1), ('framework', 1), ('communicating', 1)]
[('data', 2), ('node', 2), ('j', 2), ('today', 1), ('mobile', 1), ('device', 1), ('gps', 1), ('standard', 1), ('apis', 1), ('give', 1), ('access', 1), ('coordinate', 1), ('concise', 1), ('book', 1), ('application', 1), ('developer', 1), ('learn', 1), ('work', 1), ('location', 1), ('quickly', 1), ('easily', 1), ('using', 1), ('couchdb', 1), ('open', 1), ('source', 1), ('tool', 1), ('library', 1), ('make', 1), ('simple', 1), ('run', 1), ('event', 1), ('code', 1), ('web', 1)]
[('process', 3), ('information', 2), ('design', 2), ('data', 1), ('visualization', 1), ('efficient', 1), ('effective', 1), ('medium', 1), ('communicating', 1), ('large', 1), ('amount', 1), ('often', 1), ('seem', 1), ('unexplainable', 1), ('creative', 1), ('endeavor', 1), ('concise', 1), ('book', 1), ('aim', 1), ('demystify', 1), ('showing', 1), ('use', 1), ('linear', 1), ('decision', 1), ('making', 1), ('encode', 1), ('visually', 1), ('delve', 1)]
[('razor', 3), ('syntax', 2), ('website', 2), ('take', 1), ('test', 1), ('drive', 1), ('discover', 1), ('first', 1), ('hand', 1), ('scripting', 1), ('simplifies', 1), ('way', 1), ('create', 1), ('dynamic', 1), ('data', 1), ('driven', 1), ('concise', 1), ('guide', 1), ('work', 1), ('building', 1), ('example', 1), ('microsoft', 1), ('webmatrix', 1), ('asp', 1), ('net', 1), ('mvc', 1), ('quickly', 1), ('learn', 1), ('let', 1), ('combine', 1), ('code', 1), ('content', 1), ('fluid', 1)]
[('step', 2), ('bookkeeping', 1), ('workflow', 1), ('smoother', 1), ('faster', 1), ('quickbooks', 1), ('window', 1), ('spend', 1), ('time', 1), ('using', 1), ('program', 1), ('figuring', 1), ('work', 1), ('book', 1), ('put', 1), ('control', 1), ('instruction', 1), ('use', 1), ('specific', 1), ('feature', 1), ('along', 1), ('basic', 1), ('accounting', 1), ('advice', 1), ('guide', 1), ('learning', 1)]
[('using', 2), ('tough', 1), ('argue', 1), ('high', 1), ('quality', 1), ('cross', 1), ('platform', 1), ('open', 1), ('source', 1), ('statistical', 1), ('software', 1), ('product', 1), ('unless', 1), ('business', 1), ('crunching', 1), ('big', 1), ('data', 1), ('concise', 1), ('book', 1), ('introduces', 1), ('several', 1), ('strategy', 1), ('analyze', 1), ('large', 1), ('datasets', 1), ('including', 1), ('three', 1), ('chapter', 1), ('hadoop', 1), ('together', 1), ('learn', 1), ('basic', 1), ('snow', 1)]
[('code', 2), ('first', 2), ('learn', 2), ('model', 2), ('take', 1), ('advantage', 1), ('data', 1), ('modeling', 1), ('approach', 1), ('ado', 1), ('net', 1), ('entity', 1), ('framework', 1), ('build', 1), ('configure', 1), ('based', 1), ('existing', 1), ('class', 1), ('business', 1), ('domain', 1), ('concise', 1), ('book', 1), ('work', 1), ('hand', 1), ('example', 1), ('create', 1), ('memory', 1), ('database', 1), ('default', 1), ('exert', 1)]
[('pbx', 2), ('recipe', 2), ('asterisk', 1), ('wealth', 1), ('feature', 1), ('help', 1), ('customize', 1), ('fill', 1), ('specific', 1), ('business', 1), ('need', 1), ('short', 1), ('cookbook', 1), ('offer', 1), ('tackling', 1), ('dialplan', 1), ('fundamental', 1), ('making', 1), ('controlling', 1), ('call', 1), ('monitoring', 1), ('channel', 1), ('environment', 1), ('includes', 1), ('simple', 1), ('code', 1), ('solution', 1), ('put', 1), ('work', 1), ('immediately', 1), ('along', 1)]
[('web', 3), ('use', 2), ('privacy', 2), ('first', 1), ('edition', 1), ('classic', 1), ('reference', 1), ('published', 1), ('world', 1), ('wide', 1), ('exploded', 1), ('commerce', 1), ('become', 1), ('daily', 1), ('part', 1), ('business', 1), ('personal', 1), ('life', 1), ('grown', 1), ('threat', 1), ('security', 1), ('credit', 1), ('card', 1), ('fraud', 1), ('routine', 1), ('invasion', 1), ('marketer', 1), ('site', 1), ('defacement', 1), ('attack', 1)]
[('many', 3), ('programmer', 1), ('love', 1), ('use', 1), ('perl', 1), ('project', 1), ('involve', 1), ('heavy', 1), ('lifting', 1), ('miss', 1), ('traditional', 1), ('algorithm', 1), ('textbook', 1), ('teach', 1), ('language', 1), ('computer', 1), ('scientist', 1), ('identified', 1), ('technique', 1), ('wide', 1), ('range', 1), ('program', 1), ('need', 1), ('fuzzy', 1), ('pattern', 1), ('matching', 1), ('text', 1), ('identify', 1), ('misspelling', 1), ('finding', 1), ('correlation', 1)]
[('apple', 1), ('video', 1), ('editing', 1), ('program', 1), ('better', 1), ('still', 1), ('printed', 1), ('guide', 1), ('help', 1), ('started', 1), ('gorgeous', 1), ('full', 1), ('color', 1), ('book', 1), ('come', 1), ('clear', 1), ('explanation', 1), ('imovie', 1), ('impressive', 1), ('new', 1), ('feature', 1), ('instant', 1), ('rendering', 1), ('storyboarding', 1), ('step', 1), ('special', 1), ('effect', 1), ('expert', 1), ('david', 1), ('pogue', 1), ('aaron', 1), ('miller', 1)]
[('ajax', 3), ('web', 3), ('service', 2), ('access', 2), ('example', 2), ('perfect', 1), ('match', 1), ('developing', 1), ('application', 1), ('built', 1), ('ability', 1), ('manipulate', 1), ('xml', 1), ('data', 1), ('native', 1), ('format', 1), ('almost', 1), ('rest', 1), ('soap', 1), ('using', 1), ('numerous', 1), ('document', 1), ('explores', 1), ('fit', 1), ('piece', 1), ('together', 1), ('demonstrate', 1), ('use', 1), ('publicly', 1), ('available', 1)]
[('nook', 2), ('tablet', 2), ('device', 2), ('open', 1), ('box', 1), ('brand', 1), ('new', 1), ('find', 1), ('barnes', 1), ('noble', 1), ('latest', 1), ('inch', 1), ('medium', 1), ('hit', 1), ('market', 1), ('usb', 1), ('cable', 1), ('power', 1), ('adapter', 1), ('quick', 1), ('start', 1), ('guide', 1), ('tell', 1), ('turn', 1), ('really', 1), ('take', 1), ('advantage', 1), ('content', 1), ('feature', 1), ('offer', 1), ('need', 1), ('little', 1)]
[('project', 3), ('analyze', 1), ('team', 1), ('performance', 1), ('typical', 1), ('surprised', 1), ('time', 1), ('wasted', 1), ('non', 1), ('productive', 1), ('task', 1), ('hand', 1), ('guide', 1), ('show', 1), ('work', 1), ('efficiently', 1), ('organizing', 1), ('managing', 1), ('sharepoint', 1), ('learn', 1), ('build', 1), ('management', 1), ('information', 1), ('system', 1), ('pmis', 1), ('customized', 1)]
[('android', 3), ('html', 2), ('web', 2), ('know', 1), ('cs', 1), ('javascript', 1), ('already', 1), ('tool', 1), ('need', 1), ('develop', 1), ('application', 1), ('updated', 1), ('second', 1), ('edition', 1), ('hand', 1), ('guide', 1), ('show', 1), ('use', 1), ('open', 1), ('source', 1), ('standard', 1), ('design', 1), ('build', 1), ('apps', 1), ('adapted', 1), ('device', 1), ('learn', 1), ('create', 1), ('friendly', 1), ('app', 1)]
[('unlock', 1), ('potential', 1), ('samsung', 1), ('galaxy', 1), ('ii', 1), ('jargon', 1), ('free', 1), ('guide', 1), ('technology', 1), ('guru', 1), ('preston', 1), ('gralla', 1), ('quickly', 1), ('learn', 1), ('shoot', 1), ('high', 1), ('re', 1), ('photo', 1), ('hd', 1), ('video', 1), ('keep', 1), ('schedule', 1), ('stay', 1), ('touch', 1), ('enjoy', 1), ('favorite', 1), ('medium', 1), ('every', 1), ('page', 1), ('packed', 1), ('illustration', 1), ('valuable', 1), ('advice', 1), ('help', 1), ('smartest', 1)]
[('cyber', 2), ('warfare', 2), ('stuxnet', 1), ('computer', 1), ('worm', 1), ('damaged', 1), ('iranian', 1), ('nuclear', 1), ('program', 1), ('public', 1), ('small', 1), ('glimpse', 1), ('modern', 1), ('without', 1), ('truly', 1), ('realizing', 1), ('scope', 1), ('global', 1), ('conflict', 1), ('inside', 1), ('provides', 1), ('fascinating', 1), ('disturbing', 1), ('detail', 1), ('nation', 1), ('group', 1), ('individual', 1), ('throughout', 1), ('world', 1), ('increasingly', 1), ('rely', 1)]
[('new', 3), ('book', 2), ('know', 1), ('hot', 1), ('technology', 1), ('succeed', 1), ('fail', 1), ('even', 1), ('expert', 1), ('wrong', 1), ('time', 1), ('depend', 1), ('realize', 1), ('wishful', 1), ('thinking', 1), ('romanticized', 1), ('idea', 1), ('history', 1), ('paperback', 1), ('edition', 1), ('fascinating', 1), ('appeared', 1), ('msnbc', 1), ('cnbc', 1), ('slashdot', 1), ('org', 1), ('lifehacker', 1), ('york', 1)]
[('mac', 3), ('learning', 2), ('ready', 1), ('move', 1), ('incomparable', 1), ('guide', 1), ('help', 1), ('make', 1), ('smooth', 1), ('transition', 1), ('new', 1), ('york', 1), ('time', 1), ('columnist', 1), ('missing', 1), ('manual', 1), ('creator', 1), ('david', 1), ('pogue', 1), ('get', 1), ('past', 1), ('three', 1), ('challenge', 1), ('transferring', 1), ('stuff', 1), ('assembling', 1), ('program', 1), ('window', 1), ('way', 1), ('around', 1), ('o', 1), ('use', 1), ('piece', 1)]
[('code', 3), ('javascript', 2), ('testable', 2), ('skill', 1), ('essential', 1), ('professional', 1), ('developer', 1), ('ability', 1), ('write', 1), ('book', 1), ('show', 1), ('writing', 1), ('maintaining', 1), ('client', 1), ('server', 1), ('side', 1), ('actually', 1), ('entail', 1), ('whether', 1), ('creating', 1), ('new', 1), ('application', 1), ('rewriting', 1), ('legacy', 1), ('method', 1), ('reduce', 1), ('complexity', 1), ('unit', 1)]
[('computer', 3), ('quickly', 2), ('learn', 2), ('science', 2), ('know', 1), ('basic', 1), ('high', 1), ('school', 1), ('math', 1), ('apply', 1), ('core', 1), ('concept', 1), ('concise', 1), ('hand', 1), ('book', 1), ('led', 1), ('team', 1), ('expert', 1), ('understand', 1), ('difference', 1), ('programming', 1), ('algorithm', 1), ('help', 1), ('solve', 1), ('computing', 1), ('problem', 1), ('chapter', 1), ('build', 1)]
[('design', 2), ('build', 2), ('web', 2), ('apis', 1), ('broad', 1), ('range', 1), ('client', 1), ('including', 1), ('browser', 1), ('mobile', 1), ('device', 1), ('adapt', 1), ('change', 1), ('time', 1), ('practical', 1), ('hand', 1), ('guide', 1), ('take', 1), ('theory', 1), ('tool', 1), ('need', 1), ('evolvable', 1), ('service', 1), ('microsoft', 1), ('asp', 1), ('net', 1), ('api', 1), ('framework', 1), ('process', 1), ('learn', 1), ('implement', 1)]
[('application', 2), ('openshift', 2), ('intrigued', 1), ('possibility', 1), ('developing', 1), ('web', 1), ('cloud', 1), ('concise', 1), ('book', 1), ('quick', 1), ('hand', 1), ('introduction', 1), ('open', 1), ('source', 1), ('platform', 1), ('service', 1), ('paas', 1), ('offering', 1), ('red', 1), ('hat', 1), ('learn', 1), ('step', 1), ('necessary', 1), ('build', 1), ('deploy', 1), ('host', 1), ('complete', 1), ('real', 1), ('world', 1), ('without', 1)]
[('database', 2), ('filemaker', 2), ('pro', 2), ('need', 1), ('technical', 1), ('background', 1), ('build', 1), ('powerful', 1), ('crystal', 1), ('clear', 1), ('guide', 1), ('cover', 1), ('new', 1), ('feature', 1), ('improved', 1), ('layout', 1), ('tool', 1), ('enhanced', 1), ('mobile', 1), ('support', 1), ('whether', 1), ('running', 1), ('business', 1), ('printing', 1), ('catalog', 1), ('planning', 1), ('wedding', 1), ('learn', 1), ('customize', 1), ('run', 1)]
[('o', 2), ('mac', 2), ('new', 2), ('yosemite', 1), ('apple', 1), ('unleashed', 1), ('innovative', 1), ('version', 1), ('yet', 1), ('david', 1), ('pogue', 1), ('brings', 1), ('expertise', 1), ('humor', 1), ('bestselling', 1), ('book', 1), ('includes', 1), ('innovation', 1), ('ipad', 1), ('add', 1), ('variety', 1), ('feature', 1), ('throughout', 1), ('operating', 1), ('system', 1), ('updated', 1), ('edition', 1), ('cover', 1), ('something', 1)]
[('database', 2), ('need', 1), ('technical', 1), ('background', 1), ('build', 1), ('powerful', 1), ('filemaker', 1), ('pro', 1), ('crystal', 1), ('clear', 1), ('objective', 1), ('guide', 1), ('show', 1), ('create', 1), ('let', 1), ('almost', 1), ('anything', 1), ('data', 1), ('quickly', 1), ('achieve', 1), ('goal', 1), ('whether', 1), ('creating', 1), ('catalog', 1), ('managing', 1), ('inventory', 1), ('billing', 1), ('planning', 1), ('wedding', 1)]
[('end', 2), ('hadoop', 2), ('component', 2), ('expert', 1), ('guidance', 1), ('architecting', 1), ('data', 1), ('management', 1), ('solution', 1), ('apache', 1), ('many', 1), ('source', 1), ('explain', 1), ('use', 1), ('various', 1), ('ecosystem', 1), ('practical', 1), ('book', 1), ('take', 1), ('architectural', 1), ('consideration', 1), ('necessary', 1), ('tie', 1), ('together', 1), ('complete', 1), ('tailored', 1), ('application', 1), ('based', 1), ('particular', 1)]
[('docker', 3), ('updated', 1), ('cover', 1), ('version', 1), ('quickly', 1), ('changing', 1), ('way', 1), ('organization', 1), ('deploying', 1), ('software', 1), ('scale', 1), ('understanding', 1), ('linux', 1), ('container', 1), ('fit', 1), ('workflow', 1), ('getting', 1), ('integration', 1), ('detail', 1), ('right', 1), ('trivial', 1), ('task', 1), ('practical', 1), ('guide', 1), ('learn', 1), ('use', 1), ('package', 1), ('application', 1)]
[('ruby', 2), ('updated', 1), ('handy', 1), ('reference', 1), ('offer', 1), ('brief', 1), ('yet', 1), ('clear', 1), ('explanation', 1), ('core', 1), ('element', 1), ('operator', 1), ('block', 1), ('documentation', 1), ('creation', 1), ('highlight', 1), ('key', 1), ('feature', 1), ('work', 1), ('every', 1), ('day', 1), ('need', 1), ('know', 1), ('correct', 1), ('syntax', 1), ('conditional', 1), ('forgot', 1), ('name', 1), ('string', 1), ('method', 1), ('book', 1), ('organized', 1), ('help', 1), ('find', 1)]
[('javascript', 3), ('language', 3), ('arguably', 1), ('polarizing', 1), ('misunderstood', 1), ('programming', 1), ('world', 1), ('many', 1), ('attempted', 1), ('replace', 1), ('web', 1), ('survived', 1), ('evolved', 1), ('thrived', 1), ('created', 1), ('hurry', 1), ('succeed', 1), ('others', 1), ('failed', 1), ('guide', 1), ('give', 1), ('rare', 1), ('glimpse', 1)]
[('developer', 2), ('data', 2), ('security', 2), ('designer', 1), ('engineer', 1), ('creator', 1), ('longer', 1), ('afford', 1), ('pas', 1), ('responsibility', 1), ('identity', 1), ('onto', 1), ('others', 1), ('web', 1), ('understand', 1), ('obscure', 1), ('transmission', 1), ('instance', 1), ('open', 1), ('flaw', 1), ('site', 1), ('without', 1), ('realizing', 1), ('practical', 1), ('guide', 1), ('learn', 1), ('everyone', 1)]
[('performance', 2), ('mobile', 2), ('optimize', 1), ('website', 1), ('webapps', 1), ('extreme', 1), ('hand', 1), ('book', 1), ('veteran', 1), ('web', 1), ('developer', 1), ('maximiliano', 1), ('firtman', 1), ('demonstrates', 1), ('aspect', 1), ('site', 1), ('app', 1), ('slow', 1), ('user', 1), ('experience', 1), ('achieve', 1), ('lightning', 1), ('fast', 1), ('stake', 1), ('want', 1), ('boost', 1)]
[('internet', 2), ('iot', 2), ('thing', 1), ('consist', 1), ('million', 1), ('computational', 1), ('device', 1), ('intimately', 1), ('connected', 1), ('real', 1), ('world', 1), ('aspect', 1), ('human', 1), ('life', 1), ('insightful', 1), ('book', 1), ('professor', 1), ('sean', 1), ('smith', 1), ('worked', 1), ('information', 1), ('security', 1), ('long', 1), ('web', 1), ('appeared', 1), ('explains', 1), ('build', 1), ('way', 1), ('built', 1), ('current', 1)]
[('javascript', 2), ('framework', 2), ('often', 1), ('hear', 1), ('say', 1), ('thing', 1), ('mess', 1), ('thinking', 1), ('using', 1), ('month', 1), ('going', 1), ('away', 1), ('matter', 1), ('compiles', 1), ('j', 1), ('language', 1), ('library', 1), ('use', 1), ('bug', 1), ('performance', 1), ('concern', 1), ('always', 1), ('issue', 1), ('underlying', 1), ('quality', 1)]
[('search', 2), ('welcome', 1), ('battlefield', 1), ('every', 1), ('day', 1), ('company', 1), ('ranging', 1), ('startup', 1), ('enterprise', 1), ('fight', 1), ('achieve', 1), ('high', 1), ('ranking', 1), ('knowing', 1), ('previous', 1), ('success', 1), ('quickly', 1), ('vanish', 1), ('practical', 1), ('guide', 1), ('learn', 1), ('put', 1), ('engine', 1), ('optimization', 1), ('seo', 1), ('methodology', 1), ('practice', 1), ('including', 1), ('research', 1), ('data', 1), ('analysis', 1), ('constant', 1)]
[('information', 4), ('organizing', 3), ('organize', 2), ('thing', 2), ('field', 2), ('fundamental', 1), ('issue', 1), ('many', 1), ('professional', 1), ('limited', 1), ('agreement', 1), ('approach', 1), ('problem', 1), ('seek', 1), ('solution', 1), ('discipline', 1), ('synthesizes', 1)]
[('specification', 2), ('e', 2), ('practical', 2), ('modern', 1), ('javascript', 1), ('need', 1), ('learn', 1), ('latest', 1), ('feature', 1), ('parent', 1), ('ecmascript', 1), ('book', 1), ('provides', 1), ('highly', 1), ('look', 1), ('without', 1), ('getting', 1), ('lost', 1), ('implementation', 1), ('detail', 1), ('armed', 1), ('example', 1), ('author', 1), ('nicolas', 1), ('bevacqua', 1), ('show', 1), ('new', 1), ('way', 1), ('deal', 1)]
[('information', 4), ('organizing', 3), ('organize', 2), ('thing', 2), ('field', 2), ('fundamental', 1), ('issue', 1), ('many', 1), ('professional', 1), ('limited', 1), ('agreement', 1), ('approach', 1), ('problem', 1), ('seek', 1), ('solution', 1), ('discipline', 1), ('synthesizes', 1)]
[('game', 4), ('development', 2), ('io', 2), ('want', 1), ('build', 1), ('mobile', 1), ('lack', 1), ('experience', 1), ('problem', 1), ('practical', 1), ('guide', 1), ('show', 1), ('create', 1), ('beautiful', 1), ('interactive', 1), ('content', 1), ('android', 1), ('device', 1), ('unity', 1), ('engine', 1), ('author', 1), ('jon', 1), ('manning', 1), ('paris', 1), ('buttfield', 1), ('addison', 1), ('swift', 1), ('cookbook', 1), ('provide', 1), ('top', 1), ('bottom', 1), ('overview', 1)]
[('security', 3), ('tool', 3), ('arsenal', 1), ('kali', 1), ('linux', 1), ('distribution', 1), ('overwhelming', 1), ('experienced', 1), ('aspiring', 1), ('professional', 1), ('alike', 1), ('find', 1), ('challenging', 1), ('select', 1), ('appropriate', 1), ('conducting', 1), ('given', 1), ('test', 1), ('practical', 1), ('book', 1), ('cover', 1), ('kaliã', 1), ('expansive', 1), ('capability', 1), ('help', 1), ('identify', 1)]
[('javascript', 2), ('modular', 2), ('code', 2), ('working', 1), ('knowledge', 1), ('ecmascript', 1), ('e', 1), ('practical', 1), ('guide', 1), ('help', 1), ('tackle', 1), ('programming', 1), ('produce', 1), ('readable', 1), ('maintainable', 1), ('scalable', 1), ('learn', 1), ('fundamental', 1), ('architecture', 1), ('benefit', 1), ('writing', 1), ('self', 1), ('contained', 1), ('every', 1), ('system', 1), ('level', 1), ('including', 1)]
[('animal', 2), ('robot', 2), ('mind', 2), ('answer', 2), ('thought', 1), ('feeling', 1), ('know', 1), ('forever', 1), ('reach', 1), ('david', 1), ('mcfarland', 1), ('explores', 1), ('question', 1), ('drawing', 1), ('philosophy', 1), ('development', 1), ('artificial', 1), ('intelligence', 1), ('science', 1), ('behaviour', 1)]
[('development', 2), ('book', 1), ('brings', 1), ('together', 1), ('review', 1), ('different', 1), ('disciplinary', 1), ('approach', 1), ('digital', 1), ('information', 1), ('communication', 1), ('system', 1), ('across', 1), ('social', 1), ('science', 1), ('synthesis', 1), ('internet', 1), ('age', 1), ('micro', 1), ('macro', 1), ('consequence', 1)]
[('biometrics', 2), ('rise', 1), ('digital', 1), ('technology', 1), ('need', 1), ('effective', 1), ('mean', 1), ('identification', 1), ('grown', 1), ('enormously', 1), ('rapidly', 1), ('growing', 1), ('science', 1), ('identifying', 1), ('individual', 1), ('biological', 1), ('characteristic', 1), ('iris', 1), ('patterning', 1), ('voice', 1), ('recognition', 1), ('book', 1), ('introduces', 1), ('today', 1), ('future', 1), ('possibility', 1)]
[('algorithm', 2), ('describes', 1), ('detail', 1), ('fundamental', 1), ('mathematics', 1), ('machine', 1), ('learning', 1), ('example', 1), ('artificial', 1), ('intelligence', 1), ('signal', 1), ('processing', 1), ('important', 1), ('exciting', 1), ('technology', 1), ('modern', 1), ('information', 1), ('economy', 1), ('build', 1), ('concept', 1), ('gradually', 1), ('idea', 1), ('implemented', 1), ('practical', 1), ('software', 1), ('application', 1)]
[('book', 1), ('first', 1), ('examine', 1), ('history', 1), ('imaginative', 1), ('thinking', 1), ('intelligent', 1), ('machine', 1), ('featuring', 1), ('contribution', 1), ('leading', 1), ('humanity', 1), ('social', 1), ('science', 1), ('scholar', 1), ('detail', 1), ('narrative', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('turn', 1), ('offer', 1), ('crucial', 1), ('epistemic', 1), ('site', 1), ('exploring', 1), ('contemporary', 1), ('debate', 1), ('powerful', 1), ('technology', 1)]
[('inside', 1), ('story', 1), ('internet', 1), ('boom', 1), ('bust', 1), ('business', 1), ('deal', 1), ('made', 1), ('headline', 1), ('colourful', 1), ('cast', 1), ('character', 1), ('behind', 1)]
[('technique', 3), ('topic', 2), ('handbook', 1), ('provides', 1), ('date', 1), ('compendium', 1), ('fundamental', 1), ('computer', 1), ('science', 1), ('illustrates', 1), ('come', 1), ('together', 1), ('deliver', 1), ('efficient', 1), ('solution', 1), ('important', 1), ('practical', 1), ('problem', 1), ('expert', 1), ('contributor', 1), ('clearly', 1), ('define', 1), ('terminology', 1), ('present', 1), ('basic', 1), ('result', 1), ('offer', 1), ('number', 1)]
[('book', 2), ('step', 2), ('influence', 2), ('image', 2), ('quality', 2), ('platform', 2), ('offer', 1), ('depth', 1), ('sufficient', 1), ('broad', 1), ('understanding', 1), ('system', 1), ('parameter', 1), ('including', 1), ('spacecraft', 1), ('aircraft', 1), ('ground', 1), ('based', 1), ('rail', 1), ('covered', 1), ('take', 1), ('account', 1), ('motion', 1), ('profoundly', 1), ('important', 1), ('high', 1), ('formation', 1)]
[('new', 2), ('contributor', 1), ('best', 1), ('selling', 1), ('handbook', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('main', 1), ('topic', 1), ('pure', 1), ('applied', 1), ('graph', 1), ('theory', 1), ('second', 1), ('edition', 1), ('incorporates', 1), ('section', 1), ('chapter', 1), ('includes', 1), ('list', 1), ('essential', 1), ('definition', 1), ('fact', 1), ('accompanied', 1), ('example', 1), ('table', 1), ('remark', 1), ('case', 1), ('conjecture', 1), ('open', 1), ('problem', 1)]
[('network', 4), ('mpls', 3), ('gmpls', 2), ('basic', 2), ('technology', 1), ('address', 1), ('architecture', 1), ('protocol', 1), ('traffic', 1), ('engineering', 1), ('needed', 1), ('operate', 1), ('book', 1), ('begin', 1), ('introduction', 1), ('broadband', 1), ('describes', 1), ('control', 1), ('oriented', 1), ('ip', 1), ('examines', 1), ('fundamental', 1), ('volume', 1), ('cover', 1), ('application', 1)]
[('truly', 1), ('unique', 1), ('visual', 1), ('delight', 1), ('offering', 1), ('insight', 1), ('development', 1), ('animation', 1), ('classic', 1), ('bambi', 1), ('beauty', 1), ('beast', 1), ('lion', 1), ('king', 1), ('lilo', 1), ('stitch', 1), ('tantalizing', 1), ('examination', 1), ('unfinished', 1), ('disney', 1), ('project', 1)]
[('application', 2), ('development', 2), ('build', 1), ('rich', 1), ('medium', 1), ('io', 1), ('android', 1), ('platform', 1), ('primer', 1), ('flash', 1), ('mobile', 1), ('essential', 1), ('setting', 1), ('environment', 1), ('publishing', 1), ('apps', 1), ('google', 1), ('market', 1), ('place', 1), ('apple', 1), ('itunes', 1), ('app', 1), ('store', 1), ('develop', 1), ('elementary', 1), ('without', 1), ('coding', 1), ('realize', 1), ('power', 1), ('actionscript', 1)]
[('animation', 4), ('action', 2), ('analysis', 2), ('fundamental', 2), ('animator', 2), ('shrek', 2), ('princples', 1), ('underpins', 1), ('type', 1), ('computer', 1), ('stop', 1), ('motion', 1), ('etc', 1), ('skill', 1), ('need', 1), ('create', 1), ('polished', 1), ('believable', 1), ('example', 1), ('swagger', 1), ('film', 1), ('clearly', 1)]
[('modo', 2), ('exciting', 1), ('application', 1), ('come', 1), ('age', 1), ('revolutionary', 1), ('toolset', 1), ('inspiring', 1), ('rendering', 1), ('engine', 1), ('advanced', 1), ('ergonomics', 1), ('promise', 1), ('offer', 1), ('tremendous', 1), ('advantage', 1), ('almost', 1), ('segment', 1), ('within', 1), ('cgi', 1), ('graphic', 1), ('industry', 1), ('book', 1), ('teach', 1), ('artist', 1), ('use', 1), ('maximize', 1), ('benefit', 1), ('shortest', 1)]
[('create', 2), ('participant', 2), ('necessary', 2), ('effective', 2), ('story', 2), ('simulation', 1), ('sense', 1), ('freedom', 1), ('personal', 1), ('control', 1), ('still', 1), ('maintaining', 1), ('structure', 1), ('difficult', 1), ('task', 1), ('indeed', 1), ('book', 1), ('examines', 1), ('engaging', 1), ('teach', 1), ('relating', 1), ('practical', 1), ('consideration', 1), ('building', 1)]
[('animator', 2), ('add', 1), ('talent', 1), ('comprehensive', 1), ('book', 1), ('give', 1), ('today', 1), ('digital', 1), ('lesson', 1), ('never', 1), ('classical', 1), ('animation', 1), ('technique', 1), ('used', 1), ('original', 1), ('time', 1)]
[('straight', 1), ('autodesk', 1), ('authoritative', 1), ('essential', 1), ('reference', 1), ('plus', 1), ('lesson', 1), ('lab', 1), ('key', 1), ('feature', 1), ('latest', 1), ('version', 1), ('d', 1), ('max', 1), ('user', 1), ('development', 1), ('team', 1), ('present', 1)]
[('console', 2), ('vintage', 1), ('game', 1), ('exploration', 1), ('celebration', 1), ('fascinating', 1), ('diverse', 1), ('history', 1), ('videogame', 1), ('platform', 1), ('computer', 1), ('handhelds', 1), ('arcade', 1), ('machine', 1), ('powered', 1), ('industry', 1)]
[('design', 2), ('adobe', 2), ('muse', 2), ('step', 2), ('creative', 1), ('web', 1), ('guide', 1), ('creating', 1), ('fully', 1), ('featured', 1), ('website', 1), ('using', 1), ('book', 1), ('take', 1), ('initial', 1), ('prep', 1), ('stage', 1), ('right', 1), ('publishing', 1), ('site', 1)]
[('unix', 3), ('system', 3), ('fundamental', 2), ('third', 1), ('edition', 1), ('bestseller', 1), ('completely', 1), ('revised', 1), ('expanded', 1), ('include', 1), ('seven', 1), ('new', 1), ('chapter', 1), ('covering', 1), ('python', 1), ('administration', 1), ('designed', 1), ('undergraduate', 1), ('student', 1), ('taking', 1), ('operating', 1), ('course', 1), ('text', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('programming', 1)]
[('ct', 2), ('programming', 2), ('easy', 1), ('understand', 1), ('guidebook', 1), ('give', 1), ('tool', 1), ('understanding', 1), ('using', 1), ('computational', 1), ('thinking', 1), ('assume', 1), ('experience', 1), ('knowledge', 1), ('language', 1), ('explains', 1), ('concept', 1), ('method', 1), ('clarity', 1), ('depth', 1), ('puzzle', 1), ('game', 1), ('everyday', 1), ('example', 1), ('provide', 1), ('starting', 1), ('point', 1), ('discussion', 1)]
[('programming', 2), ('guide', 1), ('offer', 1), ('rapid', 1), ('introduction', 1), ('python', 1), ('anyone', 1), ('experience', 1), ('taking', 1), ('careful', 1), ('methodical', 1), ('approach', 1), ('presenting', 1), ('feature', 1), ('available', 1), ('use', 1), ('performing', 1), ('practical', 1), ('scientific', 1), ('engineering', 1), ('task', 1)]
[('design', 2), ('book', 1), ('blend', 1), ('modern', 1), ('statistical', 1), ('approach', 1), ('extensive', 1), ('engineering', 1), ('application', 1), ('clearly', 1), ('delineates', 1), ('step', 1), ('successfully', 1), ('modeling', 1), ('problem', 1), ('analyzing', 1), ('find', 1), ('solution', 1), ('introduces', 1), ('basic', 1), ('concept', 1), ('fully', 1), ('examines', 1), ('computer', 1), ('experiment', 1), ('author', 1), ('present', 1), ('popular', 1), ('space', 1), ('filling', 1), ('latin', 1)]
[('book', 2), ('java', 2), ('programming', 2), ('engineering', 2), ('professor', 1), ('minnesota', 1), ('state', 1), ('university', 1), ('author', 1), ('developed', 1), ('realizing', 1), ('need', 1), ('specifically', 1), ('designed', 1), ('student', 1), ('result', 1), ('text', 1), ('present', 1), ('complete', 1), ('overview', 1), ('applied', 1), ('field', 1), ('tutorial', 1), ('us', 1), ('personal', 1), ('computer', 1)]
[('system', 2), ('network', 2), ('complete', 1), ('stop', 1), ('handbook', 1), ('administration', 1), ('maintenance', 1), ('unix', 1), ('outstanding', 1), ('balance', 1), ('concept', 1), ('practical', 1), ('matter', 1), ('cover', 1), ('entire', 1), ('range', 1), ('administrative', 1), ('task', 1), ('basic', 1), ('advanced', 1), ('startup', 1), ('shutdown', 1), ('security', 1), ('kernel', 1), ('reconfiguration', 1)]
[('wireless', 2), ('mesh', 2), ('standard', 2), ('first', 1), ('book', 1), ('provide', 1), ('reader', 1), ('comprehensive', 1), ('technical', 1), ('guide', 1), ('covering', 1), ('recent', 1), ('open', 1), ('issue', 1), ('network', 1), ('networking', 1), ('architecture', 1), ('protocol', 1), ('explores', 1), ('various', 1), ('key', 1), ('challenge', 1), ('diverse', 1), ('scenario', 1), ('emerging', 1), ('including', 1), ('capacity', 1), ('scalability', 1), ('focus', 1), ('concept', 1)]
[('problem', 3), ('discrete', 2), ('structure', 2), ('absorbing', 1), ('treatment', 1), ('basic', 1), ('principle', 1), ('mathematics', 1), ('book', 1), ('present', 1), ('method', 1), ('solving', 1), ('counting', 1), ('type', 1), ('involve', 1), ('intriguing', 1), ('example', 1), ('theorem', 1), ('proof', 1), ('author', 1), ('illustrates', 1), ('relationship', 1), ('algebra', 1), ('geometry', 1), ('number', 1)]
[('peltier', 2), ('risk', 2), ('threat', 2), ('authored', 1), ('renowned', 1), ('security', 1), ('expert', 1), ('certification', 1), ('instructor', 1), ('thomas', 1), ('authoritative', 1), ('reference', 1), ('provides', 1), ('reader', 1), ('knowledge', 1), ('skill', 1), ('set', 1), ('needed', 1), ('achieve', 1), ('highly', 1), ('effective', 1), ('analysis', 1), ('assessment', 1), ('matter', 1), ('day', 1), ('demonstrates', 1), ('identify', 1), ('determine', 1), ('pose', 1), ('real', 1)]
[('led', 3), ('light', 2), ('book', 1), ('take', 1), ('reader', 1), ('tour', 1), ('evolution', 1), ('beginnig', 1), ('brief', 1), ('history', 1), ('effort', 1), ('enable', 1), ('device', 1), ('generates', 1), ('modern', 1), ('organic', 1), ('review', 1), ('fundamental', 1), ('principle', 1), ('prior', 1), ('detailed', 1), ('explanation', 1), ('generate', 1), ('different', 1), ('color', 1), ('forming', 1), ('basic', 1), ('foundation', 1), ('knowledge', 1)]
[('data', 4), ('protection', 4), ('guide', 1), ('explains', 1), ('gain', 1), ('handle', 1), ('vital', 1), ('aspect', 1), ('offering', 1), ('solid', 1), ('understanding', 1), ('fit', 1), ('various', 1), ('organization', 1), ('place', 1), ('governance', 1), ('risk', 1), ('management', 1), ('compliance', 1), ('grc', 1), ('framework', 1), ('discus', 1), ('existing', 1), ('emerging', 1), ('technology', 1), ('relate', 1)]
[('security', 3), ('information', 2), ('fundamental', 2), ('following', 1), ('footstep', 1), ('bestselling', 1), ('predecessor', 1), ('second', 1), ('edition', 1), ('provides', 1), ('professional', 1), ('clear', 1), ('understanding', 1), ('required', 1), ('address', 1), ('range', 1), ('issue', 1), ('experience', 1), ('field', 1), ('reorganizing', 1), ('content', 1), ('around', 1), ('iso', 1), ('updated', 1)]
[('core', 2), ('principle', 2), ('technology', 2), ('physic', 2), ('computer', 1), ('optical', 1), ('communication', 1), ('text', 1), ('explores', 1), ('underlying', 1), ('continue', 1), ('revolutionize', 1), ('life', 1), ('designed', 1), ('nonscientists', 1), ('book', 1), ('requires', 1), ('higher', 1), ('math', 1), ('prior', 1), ('detail', 1), ('basic', 1), ('information', 1), ('examines', 1), ('quantum', 1), ('era', 1), ('discussing', 1), ('digital', 1)]
[('maya', 4), ('animator', 2), ('animation', 2), ('step', 2), ('guide', 1), ('cheat', 1), ('present', 1), ('everything', 1), ('need', 1), ('know', 1), ('character', 1), ('fully', 1), ('updated', 1), ('latest', 1), ('revision', 1), ('book', 1), ('provides', 1), ('complete', 1), ('walkthroughs', 1), ('essential', 1), ('technique', 1), ('increase', 1), ('efficiency', 1), ('speed', 1), ('workflow', 1)]
[('unity', 3), ('programming', 2), ('game', 2), ('learn', 2), ('many', 2), ('evolves', 2), ('learning', 1), ('second', 1), ('edition', 1), ('novice', 1), ('programmer', 1), ('without', 1), ('prior', 1), ('experience', 1), ('reader', 1), ('used', 1), ('make', 1), ('example', 1), ('project', 1), ('provide', 1), ('working', 1), ('code', 1), ('experiment', 1), ('along', 1), ('new', 1), ('feature', 1), ('aspect', 1)]
[('digital', 3), ('art', 3), ('artist', 2), ('book', 2), ('meet', 1), ('finest', 1), ('working', 1), ('industry', 1), ('today', 1), ('discover', 1), ('create', 1), ('innovative', 1), ('world', 1), ('gallery', 1), ('coffee', 1), ('table', 1), ('master', 1), ('volume', 1), ('includes', 1), ('unique', 1), ('stunning', 1), ('beyond', 1), ('breath', 1), ('taking', 1), ('image', 1)]
[('algorithm', 3), ('book', 1), ('provides', 1), ('fundamental', 1), ('understanding', 1), ('global', 1), ('illumination', 1), ('discus', 1), ('broad', 1), ('class', 1), ('realistic', 1), ('image', 1), ('synthesis', 1), ('introduces', 1), ('theoretical', 1), ('basis', 1), ('presented', 1), ('topic', 1), ('include', 1), ('physic', 1), ('light', 1), ('transport', 1), ('monte', 1), ('carlo', 1), ('method', 1), ('general', 1), ('strategy', 1), ('solving', 1), ('rendering', 1)]
[('quality', 2), ('case', 1), ('study', 1), ('document', 1), ('business', 1), ('across', 1), ('country', 1), ('communicating', 1), ('via', 1), ('videoconferences', 1), ('broadcast', 1), ('reception', 1), ('author', 1), ('detail', 1), ('proliferation', 1), ('ip', 1), ('network', 1), ('driven', 1), ('improvement', 1), ('cost', 1), ('saving', 1)]
[('technology', 2), ('connectivity', 2), ('access', 2), ('network', 2), ('advance', 1), ('demand', 1), ('necessity', 1), ('seamless', 1), ('stable', 1), ('server', 1), ('increasing', 1), ('exponentially', 1), ('unfortunately', 1), ('book', 1), ('remote', 1), ('focus', 1), ('cisco', 1), ('certification', 1), ('preparation', 1), ('aspect', 1), ('security', 1), ('text', 1), ('cover', 1), ('enabling', 1)]
[('create', 2), ('feature', 1), ('software', 1), ('workshop', 1), ('d', 1), ('max', 1), ('maya', 1), ('cinema', 1), ('lightwave', 1), ('softimage', 1), ('xsi', 1), ('hot', 1), ('hotter', 1), ('hottest', 1), ('see', 1), ('today', 1), ('leading', 1), ('modeling', 1), ('artist', 1), ('character', 1), ('sizzle', 1), ('technique', 1), ('need', 1), ('virtual', 1), ('vixen', 1), ('steven', 1), ('stahlberg', 1), ('liam', 1), ('kemp', 1), ('marco', 1), ('patrito', 1), ('sze', 1), ('jones', 1), ('blur', 1), ('studio', 1)]
[('semantic', 4), ('web', 4), ('even', 1), ('though', 1), ('relatively', 1), ('new', 1), ('dynamic', 1), ('area', 1), ('research', 1), ('whole', 1), ('suite', 1), ('component', 1), ('standard', 1), ('tool', 1), ('already', 1), ('developed', 1), ('around', 1), ('using', 1), ('concrete', 1), ('approach', 1), ('introduction', 1), ('service', 1), ('build', 1), ('firm', 1), ('foundation', 1), ('concept', 1), ('principal', 1), ('technology', 1), ('rea', 1)]
[('algorithm', 3), ('parallel', 2), ('theoretical', 2), ('focusing', 1), ('grid', 1), ('computing', 1), ('asynchronism', 1), ('iterative', 1), ('explores', 1), ('practical', 1), ('aspect', 1), ('numerical', 1), ('chapter', 1), ('contains', 1), ('discussion', 1), ('topic', 1), ('algorithmic', 1), ('section', 1), ('fully', 1), ('detail', 1), ('implementation', 1), ('example', 1), ('specific', 1), ('evaluation', 1), ('advantage', 1), ('dr', 1)]
[('artist', 2), ('environment', 2), ('earth', 2), ('d', 1), ('max', 1), ('leading', 1), ('modeling', 1), ('animation', 1), ('rendering', 1), ('solution', 1), ('school', 1), ('production', 1), ('unique', 1), ('tutorial', 1), ('approach', 1), ('book', 1), ('permit', 1), ('reader', 1), ('learn', 1), ('essential', 1), ('technique', 1), ('every', 1), ('need', 1), ('create', 1), ('cg', 1), ('recreating', 1), ('element', 1), ('air', 1), ('fire', 1), ('water', 1), ('extra', 1), ('plug', 1), ('in', 1)]
[('topic', 3), ('technique', 3), ('algorithm', 1), ('theory', 1), ('computation', 1), ('handbook', 1), ('second', 1), ('edition', 1), ('special', 1), ('provides', 1), ('date', 1), ('compendium', 1), ('fundamental', 1), ('computer', 1), ('science', 1), ('illustrates', 1), ('come', 1), ('together', 1), ('deliver', 1), ('efficient', 1), ('solution', 1), ('important', 1), ('practical', 1), ('problem', 1), ('along', 1), ('updating', 1), ('revising', 1), ('many', 1)]
[('project', 2), ('goal', 2), ('part', 1), ('new', 1), ('venture', 1), ('independent', 1), ('gaming', 1), ('company', 1), ('undertake', 1), ('first', 1), ('development', 1), ('client', 1), ('want', 1), ('serious', 1), ('game', 1), ('instructional', 1), ('assessment', 1), ('metric', 1), ('position', 1), ('green', 1), ('light', 1), ('believing', 1), ('advance', 1), ('organization', 1), ('mission', 1)]
[('example', 3), ('essential', 1), ('hand', 1), ('guide', 1), ('filled', 1), ('composition', 1), ('look', 1), ('poorly', 1), ('designed', 1), ('layout', 1), ('spot', 1), ('potential', 1), ('problem', 1), ('cost', 1), ('time', 1), ('money', 1), ('adapt', 1), ('creative', 1), ('solution', 1), ('project', 1), ('invaluable', 1), ('resource', 1), ('beginner', 1), ('intermediate', 1), ('artist', 1), ('beauty', 1), ('beast', 1)]
[('task', 2), ('learn', 2), ('learning', 1), ('visualization', 1), ('software', 1), ('daunting', 1), ('circumstance', 1), ('easy', 1), ('find', 1), ('online', 1), ('tutorial', 1), ('tell', 1), ('perform', 1), ('certain', 1), ('seldom', 1), ('performing', 1), ('step', 1), ('book', 1), ('approach', 1), ('training', 1), ('top', 1), ('perspective', 1), ('way', 1), ('first', 1), ('important', 1), ('concept', 1)]
[('problem', 2), ('flash', 2), ('need', 1), ('solve', 1), ('quickly', 1), ('develop', 1), ('creative', 1), ('project', 1), ('time', 1), ('budget', 1), ('want', 1), ('hone', 1), ('skill', 1), ('concentrate', 1), ('animation', 1), ('cheat', 1), ('chris', 1), ('georgenes', 1), ('show', 1), ('work', 1), ('solution', 1), ('viewpoint', 1), ('animator', 1), ('commissioned', 1), ('create', 1), ('job', 1)]
[('computer', 3), ('security', 3), ('introduces', 2), ('problem', 2), ('machine', 2), ('learning', 2), ('divided', 1), ('major', 1), ('part', 1), ('enhancing', 1), ('smart', 1), ('technology', 1), ('researcher', 1), ('background', 1), ('concept', 1), ('professional', 1), ('realizing', 1), ('massive', 1), ('scope', 1), ('subject', 1), ('author', 1), ('concentrate', 1), ('relat', 1)]
[('sector', 2), ('traditionally', 1), ('separate', 1), ('fixed', 1), ('mobile', 1), ('internet', 1), ('evolving', 1), ('recently', 1), ('toward', 1), ('single', 1), ('offering', 1), ('numerous', 1), ('implication', 1), ('involved', 1), ('technology', 1), ('business', 1), ('essential', 1), ('telecommunication', 1), ('professional', 1), ('keen', 1), ('grasp', 1), ('industry', 1), ('heading', 1), ('providing', 1), ('solid', 1), ('foundation', 1)]
[('project', 4), ('website', 3), ('effective', 2), ('management', 2), ('control', 1), ('every', 1), ('need', 1), ('manager', 1), ('developing', 1), ('describes', 1), ('internet', 1), ('technology', 1), ('plain', 1), ('language', 1), ('help', 1), ('see', 1), ('beyond', 1), ('expertise', 1), ('big', 1), ('picture', 1), ('drawing', 1), ('established', 1), ('software', 1), ('principle', 1)]
[('math', 2), ('function', 2), ('numerical', 2), ('big', 1), ('small', 1), ('machine', 1), ('write', 1), ('fast', 1), ('accurate', 1), ('library', 1), ('master', 1), ('analytical', 1), ('calculus', 1), ('perform', 1), ('integration', 1), ('order', 1), ('implement', 1), ('transform', 1), ('formula', 1), ('need', 1), ('learn', 1), ('in', 1), ('out', 1), ('fundamental', 1)]
[('information', 2), ('technology', 2), ('organizational', 2), ('publication', 1), ('groundbreaking', 1), ('first', 1), ('edition', 1), ('increasing', 1), ('rate', 1), ('change', 1), ('today', 1), ('business', 1), ('landscape', 1), ('amplified', 1), ('value', 1), ('driving', 1), ('adaptive', 1), ('response', 1), ('focusing', 1), ('critical', 1), ('role', 1), ('play', 1), ('development', 1), ('learning', 1), ('managing', 1), ('behavioral', 1)]
[('film', 2), ('short', 2), ('maya', 2), ('book', 2), ('step', 2), ('production', 2), ('animation', 2), ('finish', 1), ('tip', 1), ('trick', 1), ('making', 1), ('animated', 1), ('first', 1), ('kind', 1), ('walk', 1), ('reader', 1), ('actual', 1), ('process', 1), ('creating', 1), ('focus', 1), ('solely', 1), ('creative', 1), ('decision', 1), ('broadly', 1), ('cover', 1), ('multiple', 1), ('phase', 1)]
[('software', 6), ('critical', 3), ('used', 2), ('safety', 2), ('amount', 1), ('system', 1), ('increasing', 1), ('rapid', 1), ('rate', 1), ('time', 1), ('technology', 1), ('changing', 1), ('project', 1), ('pressed', 1), ('develop', 1), ('faster', 1), ('cheaply', 1), ('way', 1), ('developing', 1), ('practical', 1), ('guide', 1), ('aviation', 1)]
[('disney', 3), ('men', 2), ('animation', 2), ('animator', 2), ('work', 2), ('learn', 1), ('changed', 1), ('forever', 1), ('walt', 1), ('team', 1), ('core', 1), ('affectionately', 1), ('called', 1), ('nine', 1), ('old', 1), ('known', 1), ('creating', 1), ('famous', 1), ('refining', 1), ('basic', 1), ('principle', 1), ('follow', 1), ('master', 1), ('legend', 1), ('andreas', 1), ('deja', 1), ('take', 1), ('mind', 1)]
[('data', 4), ('present', 2), ('storytelling', 2), ('researcher', 2), ('book', 1), ('accessible', 1), ('introduction', 1), ('driven', 1), ('resulting', 1), ('unique', 1), ('discussion', 1), ('visualization', 1), ('journalist', 1), ('offer', 1), ('integrated', 1), ('definition', 1), ('topic', 1), ('vivid', 1), ('example', 1), ('pattern', 1), ('call', 1), ('key', 1), ('challenge', 1), ('new', 1), ('opportunity', 1)]
[('network', 4), ('autonomous', 2), ('technology', 2), ('ai', 2), ('artificial', 1), ('intelligence', 1), ('introduces', 1), ('juxtaposing', 1), ('unique', 1), ('community', 1), ('networking', 1), ('book', 1), ('review', 1), ('behind', 1), ('software', 1), ('defined', 1), ('function', 1), ('virtualization', 1), ('highlighting', 1), ('exciting', 1), ('opportunity', 1), ('integrate', 1), ('world', 1), ('outlining', 1)]
[('chip', 3), ('seq', 3), ('guide', 2), ('analysis', 2), ('chromatin', 1), ('immunoprecipitation', 1), ('sequencing', 1), ('map', 1), ('genome', 1), ('wide', 1), ('localization', 1), ('pattern', 1), ('transcription', 1), ('factor', 1), ('epigenetic', 1), ('mark', 1), ('among', 1), ('widely', 1), ('used', 1), ('method', 1), ('molecular', 1), ('biology', 1), ('practical', 1), ('data', 1), ('reader', 1), ('step', 1), ('quality', 1), ('control', 1)]
[('attack', 3), ('usb', 2), ('system', 2), ('seven', 1), ('deadliest', 1), ('provides', 1), ('comprehensive', 1), ('view', 1), ('serious', 1), ('type', 1), ('universal', 1), ('serial', 1), ('bus', 1), ('book', 1), ('focus', 1), ('window', 1), ('mac', 1), ('linux', 1), ('unix', 1), ('equally', 1), ('susceptible', 1), ('similar', 1)]
[('open', 1), ('source', 1), ('intelligence', 1), ('osint', 1), ('web', 1), ('reconnaissance', 1), ('rich', 1), ('topic', 1), ('infosec', 1), ('professional', 1), ('looking', 1), ('best', 1), ('way', 1), ('sift', 1), ('abundance', 1), ('information', 1), ('widely', 1), ('available', 1), ('online', 1), ('many', 1), ('case', 1), ('first', 1), ('stage', 1), ('security', 1)]
[('software', 2), ('defined', 2), ('radio', 2), ('understand', 1), ('rf', 1), ('digital', 1), ('signal', 1), ('processing', 1), ('principle', 1), ('driving', 1), ('sdr', 1), ('technology', 1), ('configurable', 1), ('low', 1), ('cost', 1), ('power', 1), ('efficient', 1), ('solution', 1), ('multimode', 1), ('multistandard', 1), ('wireless', 1), ('design', 1)]
[('ui', 3), ('practitioner', 2), ('design', 2), ('field', 2), ('early', 1), ('user', 1), ('interface', 1), ('trained', 1), ('cognitive', 1), ('psychology', 1), ('rule', 1), ('based', 1), ('evolves', 1), ('designer', 1), ('enter', 1), ('many', 1), ('discipline', 1), ('today', 1), ('enough', 1), ('experience', 1)]
[('stealing', 2), ('network', 2), ('first', 1), ('book', 1), ('series', 1), ('box', 1), ('continent', 1), ('become', 1), ('classic', 1), ('hacker', 1), ('infosec', 1), ('community', 1), ('chillingly', 1), ('realistic', 1), ('depiction', 1)]
[('system', 3), ('cognitive', 2), ('information', 1), ('processing', 1), ('meet', 1), ('brain', 1), ('science', 1), ('present', 1), ('overview', 1), ('exciting', 1), ('truly', 1), ('multidisciplinary', 1), ('research', 1), ('neuroscientist', 1), ('engineer', 1), ('emerging', 1), ('field', 1), ('providing', 1)]
[('soft', 3), ('error', 3), ('architecture', 1), ('design', 1), ('provides', 1), ('comprehensive', 1), ('description', 1), ('architectural', 1), ('technique', 1), ('tackle', 1), ('problem', 1), ('cover', 1), ('new', 1), ('methodology', 1), ('quantitative', 1), ('analysis', 1), ('novel', 1), ('cost', 1), ('effective', 1)]
[('network', 3), ('comptia', 2), ('certification', 2), ('guide', 2), ('study', 1), ('exam', 1), ('second', 1), ('edition', 1), ('offer', 1), ('practical', 1), ('interested', 1), ('pursuing', 1), ('present', 1), ('fundamental', 1), ('terminology', 1), ('needed', 1), ('perform', 1), ('duty', 1)]
[('social', 3), ('medium', 3), ('analyzing', 2), ('network', 2), ('nodexl', 2), ('study', 2), ('offer', 1), ('background', 1), ('information', 1), ('computer', 1), ('science', 1), ('sociology', 1), ('book', 1), ('divided', 1), ('three', 1), ('part', 1), ('tutorial', 1), ('analysis', 1), ('case', 1)]
[('data', 4), ('architecture', 2), ('organization', 2), ('zen', 1), ('reality', 1), ('explains', 1), ('principle', 1), ('underlying', 1), ('evolves', 1), ('challenge', 1), ('face', 1), ('structuring', 1), ('managing', 1), ('using', 1), ('holistic', 1), ('approach', 1), ('field', 1)]
[('user', 3), ('touch', 2), ('multi', 2), ('brave', 1), ('nui', 1), ('world', 1), ('first', 1), ('practical', 1), ('guide', 1), ('designing', 1), ('gesture', 1), ('based', 1), ('interface', 1), ('written', 1), ('team', 1), ('microsoft', 1), ('developed', 1), ('surface', 1), ('tabletop', 1), ('product', 1), ('introduces', 1), ('reader', 1), ('natural', 1)]
[('book', 1), ('convenient', 1), ('targeted', 1), ('single', 1), ('source', 1), ('guide', 1), ('integrating', 1), ('microsoft', 1), ('isa', 1), ('server', 1), ('exchange', 1), ('sp', 1), ('unlike', 1), ('longwinded', 1), ('comprehensive', 1), ('resource', 1), ('waste', 1), ('time', 1), ('hashing', 1), ('general', 1), ('information', 1), ('architecture', 1)]
[('increased', 2), ('last', 1), ('ten', 1), ('year', 1), ('brought', 1), ('fundamental', 1), ('change', 1), ('way', 1), ('world', 1), ('work', 1), ('speed', 1), ('operation', 1), ('communication', 1), ('undermined', 1), ('basic', 1), ('assumption', 1), ('traditional', 1), ('business', 1), ('model', 1)]
[('design', 2), ('web', 1), ('site', 1), ('development', 1), ('continues', 1), ('become', 1), ('sophisticated', 1), ('important', 1), ('part', 1), ('maturity', 1), ('originates', 1), ('laid', 1), ('written', 1), ('content', 1), ('ginny', 1), ('redish', 1), ('world', 1), ('renowned', 1), ('expert', 1), ('information', 1), ('produce', 1)]
[('essential', 2), ('matlab', 2), ('fifth', 1), ('edition', 1), ('engineer', 1), ('scientist', 1), ('provides', 1), ('concise', 1), ('balanced', 1), ('overview', 1), ('functionality', 1), ('facilitates', 1), ('independent', 1), ('learning', 1), ('coverage', 1), ('fundamental', 1), ('application', 1)]
[('database', 2), ('design', 2), ('fully', 1), ('revised', 1), ('updated', 1), ('expanded', 1), ('relational', 1), ('implementation', 1), ('third', 1), ('edition', 1), ('lucid', 1), ('effective', 1), ('introduction', 1), ('subject', 1), ('available', 1), ('professional', 1), ('interested', 1), ('honing', 1), ('skill', 1)]
[('workplace', 2), ('violence', 2), ('form', 1), ('becoming', 1), ('prevalent', 1), ('pervasive', 1), ('every', 1), ('year', 1), ('planning', 1), ('prevention', 1), ('response', 1), ('give', 1), ('comprehensive', 1), ('account', 1), ('problem', 1), ('using', 1), ('multi', 1), ('faceted', 1), ('approach', 1), ('issue', 1), ('surrounding', 1)]
[('eclipse', 2), ('environment', 2), ('integrated', 2), ('solves', 1), ('problem', 1), ('maintain', 1), ('development', 1), ('ide', 1), ('time', 1), ('consuming', 1), ('costly', 1), ('embedded', 1), ('tool', 1), ('easily', 1), ('cdt', 1), ('ideal', 1)]
[('memory', 2), ('hierarchy', 1), ('stopping', 1), ('microprocessor', 1), ('performing', 1), ('high', 1), ('level', 1), ('system', 1), ('cache', 1), ('dram', 1), ('disk', 1), ('show', 1), ('resolve', 1), ('problem', 1), ('book', 1), ('tell', 1), ('everything', 1), ('need', 1), ('know', 1), ('logical', 1), ('design', 1)]
[('data', 3), ('developing', 2), ('quality', 2), ('model', 2), ('high', 1), ('provides', 1), ('introduction', 1), ('key', 1), ('principle', 1), ('modeling', 1), ('explains', 1), ('purpose', 1), ('enterprise', 1), ('architecture', 1), ('supporting', 1), ('information', 1), ('common', 1), ('problem', 1)]
[('parallel', 3), ('massively', 2), ('processor', 2), ('program', 2), ('programming', 1), ('hand', 1), ('approach', 1), ('second', 1), ('edition', 1), ('teach', 1), ('student', 1), ('offer', 1), ('detailed', 1), ('discussion', 1), ('various', 1), ('technique', 1), ('constructing', 1), ('case', 1), ('study', 1)]
[('chapter', 2), ('compilation', 1), ('key', 1), ('top', 1), ('mk', 1), ('computer', 1), ('animation', 1), ('book', 1), ('available', 1), ('today', 1), ('area', 1), ('motion', 1), ('capture', 1), ('facial', 1), ('feature', 1), ('solid', 1), ('space', 1), ('fluid', 1), ('gas', 1), ('biology', 1), ('point', 1), ('based', 1), ('graphic', 1), ('maya', 1), ('provide', 1), ('cg', 1), ('animator', 1)]
[('sql', 2), ('advanced', 2), ('programming', 2), ('joe', 1), ('celkos', 1), ('smarties', 1), ('offer', 1), ('tip', 1), ('technique', 1), ('book', 1), ('fourth', 1), ('edition', 1), ('consists', 1), ('chapter', 1), ('starting', 1), ('comparison', 1), ('database', 1), ('file', 1), ('system', 1), ('cover', 1)]
[('php', 3), ('version', 2), ('many', 1), ('architect', 1), ('use', 1), ('project', 1), ('often', 1), ('aware', 1), ('power', 1), ('creating', 1), ('enterprise', 1), ('level', 1), ('application', 1), ('book', 1), ('cover', 1), ('latest', 1), ('focus', 1), ('capability', 1), ('within', 1), ('multi', 1), ('tier', 1)]
[('integer', 2), ('implementing', 1), ('cryptography', 1), ('requires', 1), ('significant', 1), ('magnitude', 1), ('resist', 1), ('cryptanalytic', 1), ('attack', 1), ('modern', 1), ('programming', 1), ('language', 1), ('provide', 1), ('support', 1), ('relatively', 1), ('small', 1), ('single', 1), ('precision', 1), ('purpose', 1), ('text', 1)]
[('rendering', 2), ('theory', 2), ('implementation', 2), ('physically', 1), ('based', 1), ('third', 1), ('edition', 1), ('describes', 1), ('mathematical', 1), ('behind', 1), ('modern', 1), ('photorealistic', 1), ('system', 1), ('practical', 1), ('method', 1), ('known', 1), ('literate', 1), ('programming', 1)]
[('window', 2), ('book', 2), ('forensic', 1), ('analysis', 1), ('dvd', 1), ('toolkit', 1), ('second', 1), ('edition', 1), ('completely', 1), ('updated', 1), ('expanded', 1), ('version', 1), ('harlan', 1), ('carvey', 1), ('best', 1), ('selling', 1), ('forensics', 1), ('incident', 1), ('response', 1), ('investigating', 1), ('cybercrime', 1), ('system', 1), ('learn', 1)]
[('sql', 2), ('server', 2), ('update', 2), ('latest', 1), ('microsoft', 1), ('flagship', 1), ('database', 1), ('management', 1), ('system', 1), ('largest', 1), ('brings', 1), ('increased', 1), ('ability', 1), ('deliver', 1), ('data', 1), ('across', 1), ('platform', 1), ('thus', 1), ('many', 1), ('different', 1), ('type', 1)]
[('found', 2), ('personal', 2), ('information', 2), ('management', 2), ('comprehensive', 2), ('keeping', 1), ('thing', 1), ('study', 1), ('practice', 1), ('first', 1), ('book', 1), ('new', 1), ('favorite', 1), ('child', 1), ('microsoft', 1), ('elsewhere', 1), ('pim', 1), ('provides', 1)]
[('book', 2), ('provides', 2), ('hand', 1), ('introductory', 1), ('course', 1), ('concept', 1), ('programming', 1), ('using', 1), ('pic', 1), ('microcontroller', 1), ('cc', 1), ('compiler', 1), ('project', 1), ('based', 1), ('approach', 1), ('easy', 1), ('understand', 1), ('method', 1), ('learning', 1), ('correct', 1), ('efficient', 1)]
[('multi', 2), ('domain', 2), ('master', 2), ('data', 2), ('management', 2), ('delivers', 1), ('practical', 1), ('guidance', 1), ('specific', 1), ('instruction', 1), ('help', 1), ('guide', 1), ('planner', 1), ('practitioner', 1), ('challenge', 1), ('mdm', 1), ('implementation', 1), ('author', 1), ('mark', 1), ('allen', 1), ('dalton', 1)]
[('compression', 2), ('technology', 2), ('fundamental', 1), ('data', 1), ('provides', 1), ('information', 1), ('student', 1), ('need', 1), ('able', 1), ('use', 1), ('essential', 1), ('future', 1), ('career', 1), ('huge', 1), ('active', 1), ('research', 1), ('field', 1), ('part', 1), ('many', 1), ('everyday', 1), ('life', 1)]
[('notice', 1), ('spite', 1), ('pervasiveness', 1), ('designing', 1), ('web', 1), ('application', 1), ('still', 1), ('challenging', 1), ('benefit', 1), ('motivate', 1), ('creation', 1), ('established', 1), ('guideline', 1), ('design', 1), ('often', 1), ('result', 1), ('inconsistent', 1), ('behavior', 1)]
[('video', 3), ('digital', 2), ('hd', 1), ('algorithm', 1), ('interface', 1), ('provides', 1), ('stop', 1), ('shop', 1), ('theory', 1), ('engineering', 1), ('system', 1), ('equally', 1), ('accessible', 1), ('engineer', 1), ('working', 1), ('computer', 1), ('graphic', 1), ('charles', 1), ('poynton', 1), ('revision', 1)]
[('predictive', 2), ('put', 1), ('analytics', 1), ('actionlearn', 1), ('basic', 1), ('analysis', 1), ('data', 1), ('mining', 1), ('easy', 1), ('understand', 1), ('conceptual', 1), ('framework', 1), ('immediately', 1), ('practice', 1), ('concept', 1), ('learned', 1), ('using', 1), ('open', 1), ('source', 1), ('rapidminer', 1), ('tool', 1), ('whether', 1)]
[('bluetooth', 3), ('enabled', 2), ('device', 2), ('ship', 1), ('billion', 1), ('unit', 1), ('gain', 1), ('momentum', 1), ('martin', 1), ('reynolds', 1), ('gartner', 1), ('group', 1), ('exciting', 1), ('development', 1), ('wireless', 1), ('computing', 1), ('decade', 1), ('include', 1)]
[('interconnection', 3), ('performance', 1), ('digital', 1), ('system', 1), ('today', 1), ('limited', 1), ('communication', 1), ('logic', 1), ('memory', 1), ('designer', 1), ('strive', 1), ('make', 1), ('efficient', 1), ('use', 1), ('scarce', 1), ('bandwidth', 1), ('network', 1)]
[('security', 3), ('computer', 2), ('second', 1), ('edition', 1), ('comprehensive', 1), ('handbook', 1), ('information', 1), ('provides', 1), ('complete', 1), ('view', 1), ('privacy', 1), ('available', 1), ('offer', 1), ('depth', 1), ('coverage', 1), ('theory', 1), ('technology', 1), ('practice', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('mathematics', 3), ('cryptography', 2), ('secret', 2), ('explaining', 1), ('take', 1), ('reader', 1), ('fascinating', 1), ('tour', 1), ('behind', 1), ('science', 1), ('sending', 1), ('message', 1), ('using', 1), ('wide', 1), ('range', 1), ('historical', 1), ('anecdote', 1), ('real', 1), ('world', 1), ('example', 1), ('joshua', 1), ('holden', 1), ('show', 1), ('mathematical', 1), ('principle', 1), ('underpin', 1), ('way', 1), ('different', 1), ('code', 1)]
[('digital', 4), ('technique', 3), ('artist', 2), ('painting', 2), ('discover', 1), ('tip', 1), ('trick', 1), ('really', 1), ('work', 1), ('concept', 1), ('matte', 1), ('painter', 1), ('animator', 1), ('compiled', 1), ('team', 1), ('dtotal', 1), ('volume', 1), ('offer', 1), ('inspiration', 1), ('hand', 1), ('insight', 1), ('professional', 1), ('gallery', 1), ('book', 1), ('within', 1)]
[('jquery', 5), ('mobile', 2), ('framework', 2), ('page', 2), ('short', 1), ('ebook', 1), ('take', 1), ('deep', 1), ('dive', 1), ('development', 1), ('popular', 1), ('used', 1), ('build', 1), ('complex', 1), ('web', 1), ('use', 1), ('add', 1), ('complexity', 1), ('richness', 1), ('go', 1), ('beyond', 1), ('core', 1), ('find', 1), ('work', 1), ('navbars', 1), ('diaglogs', 1), ('list', 1)]
[('programming', 4), ('basic', 3), ('computer', 1), ('intimidating', 1), ('anyone', 1), ('attempted', 1), ('write', 1), ('first', 1), ('line', 1), ('code', 1), ('idiot', 1), ('guide', 1), ('take', 1), ('fear', 1), ('learning', 1), ('teaching', 1), ('reader', 1)]
[('photoshop', 2), ('professional', 1), ('commercial', 1), ('photographer', 1), ('digital', 1), ('imager', 1), ('jeff', 1), ('schewe', 1), ('based', 1), ('chicago', 1), ('usa', 1), ('teamed', 1), ('best', 1), ('selling', 1), ('author', 1), ('martin', 1), ('evening', 1), ('provide', 1), ('advanced', 1), ('user', 1), ('never', 1), ('seen', 1), ('tip', 1), ('technique', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('access', 2), ('new', 2), ('office', 2), ('pro', 1), ('help', 1), ('reader', 1), ('overcome', 1), ('upgrade', 1), ('issue', 1), ('covering', 1), ('feature', 1), ('microsoft', 1), ('including', 1), ('working', 1), ('sharepoint', 1), ('server', 1), ('customizing', 1), ('ribbon', 1), ('ui', 1), ('includes', 1), ('solid', 1), ('example', 1)]
[('example', 2), ('stop', 1), ('reference', 1), ('administration', 1), ('management', 1), ('oracle', 1), ('database', 1), ('predecessor', 1), ('best', 1), ('seller', 1), ('edition', 1), ('cover', 1), ('new', 1), ('feature', 1), ('fullyfield', 1), ('tested', 1), ('showcase', 1), ('contains', 1), ('essential', 1), ('primer', 1)]
[('honeypot', 3), ('hacker', 2), ('discus', 2), ('talk', 1), ('hardening', 1), ('window', 1), ('host', 1), ('deploying', 1), ('cover', 1), ('create', 1), ('emulated', 1), ('service', 1), ('fool', 1), ('physical', 1), ('setup', 1), ('network', 1), ('necessary', 1), ('draw', 1), ('use', 1)]
[('book', 3), ('explains', 1), ('wpf', 1), ('work', 1), ('ground', 1), ('go', 1), ('deep', 1), ('core', 1), ('technology', 1), ('page', 1), ('content', 1), ('rich', 1), ('explanation', 1), ('first', 1), ('available', 1), ('topic', 1), ('detailed', 1)]
[('love', 2), ('building', 2), ('robot', 2), ('wrote', 1), ('book', 1), ('want', 1), ('took', 1), ('learn', 1), ('many', 1), ('tool', 1), ('part', 1), ('amateur', 1), ('robotics', 1), ('perhaps', 1), ('writing', 1), ('experience', 1), ('give', 1), ('head', 1), ('start', 1)]
[('linq', 2), ('net', 2), ('data', 2), ('part', 1), ('framework', 1), ('provides', 1), ('generic', 1), ('approach', 1), ('querying', 1), ('different', 1), ('source', 1), ('quickly', 1), ('become', 1), ('next', 1), ('skill', 1), ('developer', 1), ('pro', 1), ('language', 1), ('integrated', 1), ('query', 1)]
[('new', 3), ('net', 2), ('edition', 1), ('pro', 1), ('platform', 1), ('completely', 1), ('revised', 1), ('rewritten', 1), ('reflect', 1), ('latest', 1), ('change', 1), ('language', 1), ('specification', 1), ('advance', 1), ('framework', 1), ('find', 1), ('chapter', 1), ('covering', 1)]
[('asp', 2), ('net', 2), ('mvc', 1), ('framework', 1), ('latest', 1), ('evolution', 1), ('microsoft', 1), ('rsquo', 1), ('web', 1), ('platform', 1), ('provides', 1), ('high', 1), ('productivity', 1), ('programming', 1), ('model', 1), ('promotes', 1), ('cleaner', 1), ('code', 1), ('architecture', 1), ('test', 1), ('driven', 1), ('development', 1), ('powerful', 1), ('extensibility', 1), ('combined', 1)]
[('language', 2), ('step', 2), ('beginning', 1), ('th', 1), ('edition', 1), ('teach', 1), ('program', 1), ('using', 1), ('widely', 1), ('available', 1), ('begin', 1), ('first', 1), ('principle', 1), ('progress', 1), ('example', 1), ('become', 1), ('competent', 1), ('programmer', 1), ('need', 1), ('book', 1)]
[('excel', 3), ('book', 2), ('advanced', 1), ('essential', 1), ('experienced', 1), ('developer', 1), ('want', 1), ('channel', 1), ('skill', 1), ('building', 1), ('spreadsheet', 1), ('application', 1), ('dashboard', 1), ('start', 1), ('assumption', 1), ('versed', 1), ('build', 1)]
[('net', 2), ('framework', 2), ('determine', 1), ('object', 1), ('relational', 1), ('mapper', 1), ('orm', 1), ('choice', 1), ('enterprise', 1), ('application', 1), ('using', 1), ('especially', 1), ('core', 1), ('higher', 1), ('real', 1), ('world', 1), ('example', 1), ('consideration', 1), ('presented', 1), ('book', 1), ('help', 1), ('create', 1)]
[('window', 2), ('microsoft', 1), ('presentation', 1), ('foundation', 1), ('wpf', 1), ('provides', 1), ('development', 1), ('framework', 1), ('building', 1), ('high', 1), ('quality', 1), ('user', 1), ('experience', 1), ('operating', 1), ('system', 1), ('blend', 1), ('together', 1), ('rich', 1), ('content', 1), ('wide', 1), ('range', 1), ('source', 1), ('allows', 1)]
[('foundation', 2), ('prepare', 1), ('ceh', 1), ('training', 1), ('course', 1), ('exam', 1), ('gaining', 1), ('solid', 1), ('knowledge', 1), ('key', 1), ('fundamental', 1), ('operating', 1), ('system', 1), ('database', 1), ('networking', 1), ('programming', 1), ('cloud', 1), ('virtualization', 1), ('based', 1), ('book', 1), ('move', 1), ('ahead', 1)]
[('laravel', 2), ('learn', 1), ('dependency', 1), ('injection', 1), ('interface', 1), ('service', 1), ('provider', 1), ('solid', 1), ('design', 1), ('practical', 1), ('real', 1), ('world', 1), ('code', 1), ('example', 1), ('book', 1), ('cover', 1), ('everything', 1), ('need', 1), ('started', 1), ('application', 1), ('development', 1), ('beginning', 1)]
[('python', 2), ('explore', 1), ('apply', 1), ('best', 1), ('practice', 1), ('efficient', 1), ('application', 1), ('deployment', 1), ('book', 1), ('nbsp', 1), ('draw', 1), ('upon', 1), ('author', 1), ('moshe', 1), ('zadka', 1), ('year', 1), ('dev', 1), ('ops', 1), ('experience', 1), ('focus', 1), ('part', 1), ('ecosystem', 1), ('relevant', 1), ('devops', 1)]
[('book', 2), ('development', 2), ('discus', 1), ('software', 1), ('life', 1), ('cycle', 1), ('listening', 1), ('customer', 1), ('feedback', 1), ('followed', 1), ('bug', 1), ('tracking', 1), ('reporting', 1), ('issue', 1), ('collaborating', 1), ('test', 1), ('plan', 1), ('maintenance', 1), ('use', 1), ('case', 1), ('real', 1), ('world', 1), ('scenario', 1), ('make', 1)]
[('set', 2), ('developer', 2), ('book', 1), ('teach', 1), ('necessary', 1), ('skill', 1), ('become', 1), ('proficient', 1), ('ruby', 1), ('rail', 1), ('explains', 1), ('theory', 1), ('needed', 1), ('explore', 1), ('learn', 1), ('reader', 1), ('burdened', 1), ('yet', 1), ('another', 1), ('hello', 1)]
[('website', 2), ('process', 2), ('foundation', 1), ('creation', 1), ('cs', 1), ('xhtml', 1), ('javascript', 1), ('cover', 1), ('entire', 1), ('building', 1), ('involves', 1), ('technical', 1), ('knowledge', 1), ('book', 1), ('provides', 1), ('information', 1), ('need', 1)]
[('game', 4), ('building', 2), ('xna', 1), ('practical', 1), ('guide', 1), ('independent', 1), ('development', 1), ('written', 1), ('james', 1), ('silva', 1), ('recently', 1), ('prestigious', 1), ('microsoft', 1), ('dream', 1), ('build', 1), ('play', 1), ('competition', 1), ('award', 1), ('winning', 1), ('dishwasher', 1), ('dead', 1), ('samurai', 1)]
[('want', 3), ('create', 1), ('net', 1), ('application', 1), ('provide', 1), ('high', 1), ('performance', 1), ('scalability', 1), ('employ', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('technique', 1), ('distributed', 1), ('environment', 1), ('maximize', 1), ('reuse', 1), ('maintainability', 1), ('code', 1)]
[('framework', 3), ('jboss', 2), ('seam', 2), ('open', 2), ('source', 2), ('represents', 1), ('primary', 1), ('counter', 1), ('hot', 1), ('successful', 1), ('spring', 1), ('perhaps', 1), ('even', 1), ('ruby', 1), ('rail', 1), ('lightweight', 1), ('java', 1), ('ee', 1), ('standard', 1), ('based', 1), ('part', 1), ('second', 1), ('wave', 1)]
[('edition', 2), ('sharepoint', 2), ('detailed', 1), ('third', 1), ('scot', 1), ('hillier', 1), ('follow', 1), ('market', 1), ('leading', 1), ('book', 1), ('new', 1), ('version', 1), ('includes', 1), ('extensive', 1), ('update', 1), ('previous', 1), ('complete', 1), ('focus', 1), ('integration', 1), ('microsoft', 1)]
[('chapter', 2), ('primality', 2), ('test', 1), ('thoroughly', 1), ('revised', 1), ('first', 1), ('book', 1), ('include', 1), ('practical', 1), ('implementation', 1), ('recent', 1), ('major', 1), ('improvement', 1), ('testing', 1), ('random', 1), ('number', 1), ('generation', 1), ('completely', 1), ('rewritten', 1)]
[('android', 5), ('new', 1), ('open', 1), ('fun', 1), ('serious', 1), ('business', 1), ('work', 1), ('show', 1), ('harness', 1), ('power', 1), ('stay', 1), ('productive', 1), ('take', 1), ('office', 1), ('road', 1), ('book', 1), ('shed', 1), ('light', 1), ('often', 1)]
[('expert', 2), ('book', 1), ('world', 1), ('foremost', 1), ('show', 1), ('program', 1), ('way', 1), ('written', 1), ('inventor', 1), ('major', 1), ('contributor', 1), ('development', 1), ('authoritative', 1), ('comprehensive', 1), ('depth', 1), ('guide', 1)]
[('fast', 2), ('asp', 2), ('net', 2), ('ultra', 1), ('present', 1), ('practical', 1), ('approach', 1), ('building', 1), ('scalable', 1), ('web', 1), ('site', 1), ('using', 1), ('sql', 1), ('server', 1), ('addition', 1), ('wealth', 1), ('tip', 1), ('trick', 1), ('secret', 1), ('find', 1), ('advice', 1), ('code', 1), ('example', 1), ('tier', 1), ('application', 1)]
[('application', 2), ('php', 2), ('book', 1), ('intermediate', 1), ('programmer', 1), ('interested', 1), ('building', 1), ('ajax', 1), ('web', 1), ('using', 1), ('jquery', 1), ('along', 1), ('teaching', 1), ('advanced', 1), ('technique', 1), ('show', 1), ('take', 1), ('dynamic', 1), ('next', 1), ('level', 1), ('adding', 1)]
[('age', 1), ('printing', 1), ('personal', 1), ('fabrication', 1), ('upon', 1), ('probably', 1), ('heard', 1), ('incredibly', 1), ('sophisticated', 1), ('yet', 1), ('inexpensive', 1), ('printer', 1), ('produce', 1), ('almost', 1), ('creation', 1), ('give', 1), ('become', 1), ('part', 1)]
[('oracle', 3), ('application', 2), ('express', 2), ('expert', 1), ('brings', 1), ('groundbreaking', 1), ('insight', 1), ('developing', 1), ('enterprise', 1), ('level', 1), ('rapid', 1), ('development', 1), ('tool', 1), ('best', 1), ('practitioner', 1), ('field', 1), ('today', 1), ('apex', 1), ('entirely', 1)]
[('java', 2), ('programming', 2), ('absolute', 1), ('beginner', 1), ('introduces', 1), ('new', 1), ('core', 1), ('open', 1), ('source', 1), ('development', 1), ('kit', 1), ('focus', 1), ('practical', 1), ('knowledge', 1), ('completeness', 1), ('provides', 1), ('bit', 1), ('piece', 1), ('utter', 1), ('novice', 1), ('need', 1), ('started', 1)]
[('spring', 2), ('quickly', 1), ('productively', 1), ('develop', 1), ('complex', 1), ('application', 1), ('microservices', 1), ('box', 1), ('minimal', 1), ('concern', 1), ('thing', 1), ('configuration', 1), ('revised', 1), ('book', 1), ('show', 1), ('fully', 1), ('leverage', 1), ('boot', 1), ('technology', 1)]
[('blogging', 2), ('start', 2), ('creative', 1), ('show', 1), ('first', 1), ('time', 1), ('express', 1), ('creativity', 1), ('reach', 1), ('heard', 1), ('even', 1), ('make', 1), ('money', 1), ('blog', 1), ('right', 1), ('place', 1), ('beginning', 1), ('learn', 1), ('answer', 1)]
[('edition', 3), ('first', 2), ('author', 2), ('update', 1), ('popular', 1), ('second', 1), ('cover', 1), ('change', 1), ('exam', 1), ('per', 1), ('release', 1), ('se', 1), ('co', 1), ('authored', 1), ('mehran', 1), ('habibi', 1), ('member', 1), ('official', 1), ('sun', 1), ('certification', 1), ('team', 1)]
[('time', 2), ('founder', 1), ('work', 1), ('recount', 1), ('early', 1), ('struggle', 1), ('independence', 1), ('acceptance', 1), ('many', 1), ('modern', 1), ('technology', 1), ('giant', 1), ('personal', 1), ('interview', 1), ('hilarious', 1), ('painful', 1), ('always', 1), ('inspiring', 1), ('human', 1), ('interest', 1), ('story', 1)]
[('asp', 2), ('net', 2), ('mvc', 1), ('framework', 1), ('latest', 1), ('evolution', 1), ('microsoft', 1), ('web', 1), ('platform', 1), ('introduces', 1), ('radical', 1), ('high', 1), ('productivity', 1), ('programming', 1), ('model', 1), ('promotes', 1), ('cleaner', 1), ('code', 1), ('architecture', 1), ('support', 1), ('test', 1), ('driven', 1), ('development', 1), ('provides', 1), ('powerful', 1)]
[('game', 3), ('know', 2), ('make', 2), ('start', 2), ('foundation', 1), ('design', 1), ('html', 1), ('javascript', 1), ('teach', 1), ('everything', 1), ('need', 1), ('video', 1), ('never', 1), ('done', 1), ('programming', 1), ('book', 1), ('show', 1)]
[('swift', 2), ('programming', 2), ('stay', 1), ('motivated', 1), ('overcome', 1), ('obstacle', 1), ('learning', 1), ('use', 1), ('playground', 1), ('xcode', 1), ('become', 1), ('io', 1), ('developer', 1), ('book', 1), ('fully', 1), ('updated', 1), ('perfect', 1), ('background', 1)]
[('example', 2), ('author', 1), ('active', 1), ('known', 1), ('within', 1), ('community', 1), ('comprehensive', 1), ('driven', 1), ('faster', 1), ('completion', 1), ('administration', 1), ('task', 1), ('script', 1), ('posix', 1), ('compliant', 1), ('supported', 1), ('mainstream', 1), ('shell', 1), ('contain', 1), ('problem', 1)]
[('reader', 2), ('net', 2), ('extension', 2), ('new', 2), ('book', 1), ('provides', 1), ('complete', 1), ('using', 1), ('platform', 1), ('contains', 1), ('chapter', 1), ('digging', 1), ('deeply', 1), ('interaction', 1), ('existing', 1), ('framework', 1), ('give', 1)]
[('cakephp', 2), ('question', 2), ('leading', 1), ('php', 1), ('based', 1), ('web', 1), ('app', 1), ('development', 1), ('framework', 1), ('asking', 1), ('forum', 1), ('chat', 1), ('room', 1), ('many', 1), ('beginner', 1), ('little', 1), ('help', 1), ('expert', 1), ('simple', 1), ('response', 1), ('online', 1)]
[('window', 2), ('microsoft', 1), ('presentation', 1), ('foundation', 1), ('wpf', 1), ('blend', 1), ('application', 1), ('user', 1), ('interface', 1), ('document', 1), ('medium', 1), ('content', 1), ('provide', 1), ('richer', 1), ('control', 1), ('design', 1), ('development', 1), ('visual', 1), ('aspect', 1), ('program', 1), ('book', 1), ('author', 1), ('matthew', 1)]
[('new', 2), ('microsoft', 1), ('sql', 1), ('server', 1), ('introduces', 1), ('geography', 1), ('geometry', 1), ('spatial', 1), ('datatypes', 1), ('enable', 1), ('storage', 1), ('structured', 1), ('data', 1), ('describing', 1), ('shape', 1), ('position', 1), ('object', 1), ('space', 1), ('interesting', 1), ('exciting', 1), ('feature', 1), ('many', 1)]
[('microservices', 3), ('understand', 1), ('key', 1), ('challenge', 1), ('solution', 1), ('around', 1), ('building', 1), ('enterprise', 1), ('application', 1), ('environment', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('understanding', 1), ('architectural', 1), ('principle', 1), ('use', 1)]
[('iot', 2), ('architecture', 2), ('nbsp', 2), ('take', 1), ('practioner', 1), ('approach', 1), ('analyzing', 1), ('internet', 1), ('thing', 1), ('device', 1), ('security', 1), ('issue', 1), ('facing', 1), ('review', 1), ('central', 1), ('component', 1), ('hardware', 1), ('communication', 1), ('interface', 1)]
[('new', 3), ('book', 2), ('data', 2), ('net', 2), ('walk', 1), ('reader', 1), ('intricacy', 1), ('developing', 1), ('driven', 1), ('solution', 1), ('using', 1), ('vb', 1), ('ado', 1), ('helpful', 1), ('technology', 1), ('access', 1), ('manipulation', 1), ('general', 1), ('surely', 1), ('give', 1)]
[('book', 2), ('flash', 2), ('date', 1), ('market', 1), ('cover', 1), ('mobile', 1), ('application', 1), ('development', 1), ('evidence', 1), ('demand', 1), ('large', 1), ('company', 1), ('nokia', 1), ('samsung', 1), ('enabling', 1), ('phone', 1), ('support', 1), ('new', 1), ('flashlite', 1)]
[('jsf', 2), ('book', 2), ('take', 1), ('developer', 1), ('next', 1), ('level', 1), ('delivers', 1), ('cutting', 1), ('edge', 1), ('cross', 1), ('browser', 1), ('platform', 1), ('solution', 1), ('using', 1), ('best', 1), ('breed', 1), ('technology', 1), ('market', 1), ('compliant', 1), ('ee', 1), ('specification', 1), ('author', 1)]
[('xml', 2), ('web', 2), ('lingua', 1), ('franca', 1), ('designer', 1), ('developer', 1), ('working', 1), ('environment', 1), ('need', 1), ('sound', 1), ('understanding', 1), ('role', 1), ('application', 1), ('development', 1), ('many', 1), ('software', 1), ('package', 1), ('organization', 1), ('allow', 1), ('exchange', 1), ('data', 1), ('using', 1)]
[('php', 3), ('started', 1), ('web', 1), ('development', 1), ('using', 1), ('even', 1), ('never', 1), ('programmed', 1), ('author', 1), ('jason', 1), ('lengstorf', 1), ('introduces', 1), ('building', 1), ('based', 1), ('blogging', 1), ('site', 1), ('covering', 1), ('good', 1), ('coding', 1), ('practice', 1), ('skill', 1), ('need', 1)]
[('java', 2), ('android', 1), ('development', 1), ('hot', 1), ('many', 1), ('programmer', 1), ('interested', 1), ('joining', 1), ('fun', 1), ('technology', 1), ('based', 1), ('first', 1), ('obtain', 1), ('solid', 1), ('grasp', 1), ('language', 1), ('foundational', 1), ('apis', 1), ('improve', 1), ('chance', 1)]
[('html', 2), ('new', 2), ('game', 2), ('open', 1), ('plethora', 1), ('avenue', 1), ('application', 1), ('development', 1), ('web', 1), ('created', 1), ('interacted', 1), ('directly', 1), ('within', 1), ('need', 1), ('user', 1), ('download', 1), ('extra', 1), ('plugins', 1), ('developer', 1), ('learn', 1)]
[('android', 3), ('mobile', 2), ('development', 2), ('continues', 1), ('leading', 1), ('o', 1), ('platform', 1), ('driving', 1), ('today', 1), ('innovation', 1), ('apps', 1), ('ecosystem', 1), ('appears', 1), ('complex', 1), ('offer', 1), ('variety', 1), ('organized', 1), ('kit', 1), ('coming', 1)]
[('learn', 2), ('objective', 2), ('nbsp', 2), ('latest', 1), ('release', 1), ('mix', 1), ('swift', 1), ('idea', 1), ('app', 1), ('bring', 1), ('fruition', 1), ('universal', 1), ('language', 1), ('iphone', 1), ('ipad', 1), ('mac', 1), ('apps', 1), ('using', 1), ('hand', 1)]
[('explore', 1), ('vue', 1), ('j', 1), ('take', 1), ('advantage', 1), ('capability', 1), ('modern', 1), ('browser', 1), ('device', 1), ('using', 1), ('fastest', 1), ('growing', 1), ('framework', 1), ('building', 1), ('dynamic', 1), ('javascript', 1), ('application', 1), ('work', 1), ('power', 1), ('model', 1), ('view', 1), ('controller', 1), ('mvc', 1), ('pattern', 1)]
[('adheres', 1), ('closely', 1), ('original', 1), ('style', 1), ('approach', 1), ('made', 1), ('book', 1), ('best', 1), ('seller', 1), ('previous', 1), ('incarnation', 1), ('function', 1), ('practical', 1), ('guide', 1), ('business', 1), ('audience', 1), ('case', 1), ('study', 1), ('contains', 1), ('fully', 1), ('working', 1), ('source', 1), ('code', 1), ('real', 1), ('commercial', 1), ('product', 1)]
[('book', 3), ('biztalk', 2), ('first', 1), ('step', 1), ('developing', 1), ('application', 1), ('primer', 1), ('introductory', 1), ('feel', 1), ('traditional', 1), ('beginning', 1), ('abstract', 1), ('mired', 1), ('detail', 1), ('missing', 1), ('big', 1), ('picture', 1), ('check', 1)]
[('web', 4), ('book', 3), ('standard', 2), ('another', 1), ('html', 1), ('development', 1), ('changed', 1), ('advent', 1), ('rendering', 1), ('older', 1), ('obsolete', 1), ('code', 1), ('technique', 1), ('strictly', 1), ('compliant', 1), ('reader', 1), ('page', 1), ('work', 1), ('properly', 1)]
[('window', 2), ('vista', 1), ('codenamed', 1), ('longhorn', 1), ('replaces', 1), ('xp', 1), ('microsoft', 1), ('powerful', 1), ('client', 1), ('operating', 1), ('system', 1), ('date', 1), ('security', 1), ('file', 1), ('management', 1), ('greatly', 1), ('improved', 1), ('hundred', 1), ('feature', 1), ('including', 1), ('multimedia', 1), ('creation', 1)]
[('oracle', 3), ('database', 2), ('book', 1), ('written', 1), ('veteran', 1), ('administrator', 1), ('iggy', 1), ('fernandez', 1), ('regular', 1), ('conference', 1), ('circuit', 1), ('editor', 1), ('nocoug', 1), ('journal', 1), ('manageable', 1), ('introduction', 1), ('key', 1), ('administration', 1), ('topic', 1), ('including', 1), ('planning', 1)]
[('shell', 3), ('language', 2), ('bash', 1), ('complete', 1), ('programming', 1), ('merely', 1), ('glue', 1), ('combine', 1), ('external', 1), ('linux', 1), ('command', 1), ('taking', 1), ('full', 1), ('advantage', 1), ('internals', 1), ('program', 1), ('perform', 1), ('snappily', 1), ('utility', 1), ('written', 1), ('compiled', 1)]
[('android', 3), ('application', 2), ('pro', 1), ('show', 1), ('build', 1), ('real', 1), ('world', 1), ('fun', 1), ('mobile', 1), ('using', 1), ('google', 1), ('latest', 1), ('software', 1), ('development', 1), ('kit', 1), ('new', 1), ('edition', 1), ('updated', 1), ('covering', 1), ('everything', 1), ('fundamental', 1), ('building', 1)]
[('edition', 2), ('book', 2), ('first', 1), ('released', 1), ('tech', 1), ('ed', 1), ('conference', 1), ('atlanta', 1), ('georgia', 1), ('time', 1), ('net', 1), ('platform', 1), ('still', 1), ('beta', 1), ('product', 1), ('many', 1), ('way', 1), ('say', 1), ('early', 1), ('text', 1)]
[('agile', 3), ('net', 2), ('methodology', 2), ('pro', 1), ('development', 1), ('scrum', 1), ('guide', 1), ('real', 1), ('world', 1), ('asp', 1), ('project', 1), ('show', 1), ('put', 1), ('practice', 1), ('plenty', 1), ('literature', 1), ('theory', 1), ('behind', 1), ('book', 1), ('market', 1), ('take', 1)]
[('processing', 3), ('creative', 2), ('programming', 2), ('learn', 2), ('coding', 1), ('generative', 1), ('art', 1), ('fun', 1), ('approach', 1), ('learning', 1), ('using', 1), ('easy', 1), ('language', 1), ('quickly', 1), ('draw', 1), ('code', 1), ('move', 1)]
[('joomla', 3), ('searched', 1), ('hired', 1), ('open', 1), ('source', 1), ('content', 1), ('management', 1), ('system', 1), ('world', 1), ('combination', 1), ('dan', 1), ('rahmel', 1), ('bestselling', 1), ('beginning', 1), ('novice', 1), ('professional', 1), ('made', 1)]
[('part', 2), ('modeling', 2), ('step', 2), ('started', 1), ('basic', 1), ('assembly', 1), ('presentation', 1), ('drawing', 1), ('tutorial', 1), ('autodesk', 1), ('inventor', 1), ('fundamental', 1), ('next', 1), ('book', 1), ('teach', 1), ('intermediate', 1), ('level', 1), ('topic', 1), ('additional', 1)]
[('sensor', 3), ('raspberry', 3), ('pi', 3), ('network', 2), ('arduino', 2), ('beginning', 1), ('teach', 1), ('build', 1), ('xbee', 1), ('radio', 1), ('module', 1), ('even', 1), ('show', 1), ('turn', 1), ('mysql', 1), ('database', 1), ('server', 1), ('store', 1)]
[('biztalk', 2), ('server', 2), ('nbsp', 2), ('gain', 1), ('depth', 1), ('view', 1), ('optimizing', 1), ('performance', 1), ('book', 1), ('provides', 1), ('best', 1), ('practice', 1), ('technique', 1), ('improving', 1), ('development', 1), ('high', 1), ('mission', 1), ('critical', 1), ('solution', 1), ('see', 1), ('engine', 1), ('work', 1)]
[('platform', 2), ('discover', 1), ('every', 1), ('solution', 1), ('way', 1), ('related', 1), ('iot', 1), ('need', 1), ('create', 1), ('book', 1), ('agile', 1), ('reducing', 1), ('time', 1), ('market', 1), ('without', 1), ('breaking', 1), ('bank', 1), ('designing', 1), ('something', 1)]
[('lt', 2), ('gt', 2), ('book', 2), ('div', 1), ('learn', 1), ('essential', 1), ('aspect', 1), ('python', 1), ('without', 1), ('cluttering', 1), ('mind', 1), ('feature', 1), ('never', 1), ('use', 1), ('compact', 1), ('best', 1), ('way', 1), ('write', 1), ('code', 1), ('type', 1), ('rather', 1), ('author', 1), ('go', 1), ('used', 1), ('function', 1)]
[('game', 3), ('lt', 1), ('gt', 1), ('learn', 1), ('set', 1), ('pi', 1), ('based', 1), ('development', 1), ('environment', 1), ('develop', 1), ('lua', 1), ('popular', 1), ('scripting', 1), ('language', 1), ('used', 1), ('major', 1), ('framework', 1), ('unreal', 1), ('engine', 1), ('bioshock', 1), ('infinite', 1), ('cryengine', 1), ('far', 1), ('cry', 1), ('series', 1), ('diesel', 1), ('payday', 1)]
[('lt', 2), ('em', 2), ('gt', 2), ('new', 2), ('beginning', 1), ('arduino', 1), ('second', 1), ('edition', 1), ('written', 1), ('prior', 1), ('experience', 1), ('microcontrollers', 1), ('programming', 1), ('experiment', 1), ('learn', 1), ('updated', 1), ('project', 1), ('board', 1), ('book', 1)]
[('lt', 4), ('gt', 4), ('div', 3), ('web', 2), ('domain', 1), ('knowledge', 1), ('need', 1), ('develop', 1), ('real', 1), ('world', 1), ('business', 1), ('apps', 1), ('cloud', 1), ('see', 1), ('oracle', 1), ('apex', 1), ('made', 1), ('life', 1), ('developer', 1), ('easier', 1), ('help', 1), ('create', 1), ('based', 1)]
[('build', 2), ('application', 2), ('net', 2), ('browser', 2), ('lt', 1), ('div', 1), ('gt', 1), ('web', 1), ('microsoft', 1), ('run', 1), ('modern', 1), ('helping', 1), ('transfer', 1), ('experience', 1), ('skill', 1), ('new', 1), ('environment', 1), ('based', 1), ('using', 1), ('robust', 1), ('type', 1), ('safe', 1), ('language', 1)]
[('android', 3), ('lt', 1), ('gt', 1), ('build', 1), ('deploy', 1), ('java', 1), ('based', 1), ('apps', 1), ('using', 1), ('popular', 1), ('efficient', 1), ('studio', 1), ('suite', 1), ('tool', 1), ('integrated', 1), ('development', 1), ('environment', 1), ('ide', 1), ('today', 1), ('developer', 1), ('book', 1), ('learn', 1), ('latest', 1)]
[('lt', 3), ('gt', 3), ('project', 3), ('em', 2), ('web', 2), ('pro', 1), ('management', 1), ('collection', 1), ('hard', 1), ('lesson', 1), ('author', 1), ('learned', 1), ('managing', 1), ('modern', 1), ('small', 1), ('medium', 1), ('budget', 1), ('consulting', 1), ('environment', 1), ('book', 1)]
[('step', 2), ('lt', 1), ('div', 1), ('gt', 1), ('eliminate', 1), ('guesswork', 1), ('involved', 1), ('writing', 1), ('deploying', 1), ('cloud', 1), ('application', 1), ('guide', 1), ('amp', 1), ('nbsp', 1), ('us', 1), ('php', 1), ('minimize', 1), ('complexity', 1), ('code', 1), ('setup', 1), ('tool', 1), ('technique', 1), ('applied', 1), ('platform', 1), ('using', 1)]
[('cloud', 3), ('lt', 2), ('div', 2), ('gt', 2), ('infrastructure', 2), ('application', 2), ('use', 1), ('fast', 1), ('paced', 1), ('comprehensive', 1), ('guide', 1), ('build', 1), ('based', 1), ('solution', 1), ('oracle', 1), ('understand', 1), ('learn', 1), ('launch', 1), ('new', 1), ('move', 1), ('existing', 1)]
[('game', 3), ('idea', 1), ('iphone', 1), ('ipad', 1), ('never', 1), ('programmed', 1), ('start', 1), ('gamesalad', 1), ('design', 1), ('build', 1), ('publish', 1), ('app', 1), ('store', 1), ('using', 1), ('easy', 1), ('use', 1), ('programming', 1), ('required', 1)]
[('book', 1), ('learning', 1), ('aimed', 1), ('programmer', 1), ('familiar', 1), ('programming', 1), ('key', 1), ('exercise', 1), ('simply', 1), ('listed', 1), ('end', 1), ('chapter', 1), ('integrated', 1), ('main', 1), ('text', 1), ('reader', 1), ('work', 1), ('hand', 1), ('throughout', 1)]
[('create', 2), ('game', 2), ('never', 1), ('time', 1), ('dig', 1), ('detail', 1), ('multimedia', 1), ('programming', 1), ('xna', 1), ('make', 1), ('simple', 1), ('run', 1), ('pc', 1), ('xbox', 1), ('console', 1), ('even', 1)]
[('development', 2), ('git', 1), ('version', 1), ('control', 1), ('system', 1), ('developed', 1), ('linus', 1), ('torvalds', 1), ('linux', 1), ('kernel', 1), ('took', 1), ('open', 1), ('source', 1), ('world', 1), ('storm', 1), ('inception', 1), ('used', 1), ('small', 1), ('shop', 1), ('giant', 1), ('google', 1), ('red', 1), ('hat', 1), ('ibm', 1)]
[('extend', 1), ('filemaker', 1), ('built', 1), ('functionality', 1), ('totally', 1), ('customize', 1), ('data', 1), ('management', 1), ('environment', 1), ('specialized', 1), ('function', 1), ('menu', 1), ('super', 1), ('charge', 1), ('result', 1), ('create', 1), ('truly', 1), ('unique', 1), ('focused', 1), ('experience', 1), ('book', 1), ('includes', 1), ('everything', 1)]
[('lt', 1), ('gt', 1), ('microsoft', 1), ('sharepoint', 1), ('provides', 1), ('collection', 1), ('tool', 1), ('service', 1), ('use', 1), ('improve', 1), ('user', 1), ('team', 1), ('productivity', 1), ('make', 1), ('information', 1), ('sharing', 1), ('effective', 1), ('facilitate', 1), ('business', 1), ('decision', 1), ('amp', 1), ('ndash', 1), ('making', 1), ('process', 1), ('order', 1)]
[('feature', 3), ('advanced', 2), ('pro', 1), ('php', 1), ('present', 1), ('experienced', 1), ('developer', 1), ('thorough', 1), ('guide', 1), ('language', 1), ('key', 1), ('focusing', 1), ('recent', 1), ('emerging', 1), ('development', 1), ('trend', 1), ('object', 1), ('oriented', 1), ('documentation', 1), ('debugging', 1), ('software', 1)]
[('mule', 3), ('developer', 2), ('integration', 2), ('guide', 1), ('introduces', 1), ('platform', 1), ('enterprise', 1), ('application', 1), ('wish', 1), ('leverage', 1), ('lightweight', 1), ('messaging', 1), ('framework', 1), ('contains', 1), ('distributable', 1), ('object', 1), ('broker', 1), ('managing', 1)]
[('nxt', 2), ('although', 1), ('lego', 1), ('mindstorms', 1), ('allows', 1), ('anyone', 1), ('build', 1), ('complex', 1), ('invention', 1), ('limit', 1), ('come', 1), ('inside', 1), ('box', 1), ('book', 1), ('show', 1), ('advance', 1), ('exciting', 1), ('project', 1), ('include', 1), ('creating', 1), ('cool', 1)]
[('rich', 2), ('silverlight', 1), ('potential', 1), ('revolutionize', 1), ('way', 1), ('build', 1), ('business', 1), ('application', 1), ('flexibility', 1), ('web', 1), ('deployment', 1), ('cross', 1), ('platform', 1), ('capability', 1), ('net', 1), ('language', 1), ('support', 1), ('client', 1), ('user', 1), ('interface', 1), ('control', 1), ('set', 1), ('small', 1), ('runtime', 1)]
[('book', 2), ('new', 1), ('programming', 1), ('ideal', 1), ('way', 1), ('started', 1), ('respected', 1), ('author', 1), ('adam', 1), ('freeman', 1), ('guide', 1), ('language', 1), ('carefully', 1), ('building', 1), ('knowledge', 1), ('fundamental', 1), ('concept', 1), ('advanced', 1), ('feature', 1), ('gradually', 1)]
[('application', 3), ('oracle', 2), ('express', 2), ('recipe', 2), ('provides', 1), ('example', 1), ('based', 1), ('approach', 1), ('learning', 1), ('ground', 1), ('breaking', 1), ('rapid', 1), ('development', 1), ('platform', 1), ('included', 1), ('every', 1), ('database', 1), ('license', 1), ('format', 1), ('ideal', 1)]
[('objective', 2), ('language', 2), ('idea', 1), ('app', 1), ('begin', 1), ('universal', 1), ('iphone', 1), ('ipad', 1), ('mac', 1), ('apps', 1), ('absolute', 1), ('beginner', 1), ('second', 1), ('edition', 1), ('start', 1), ('path', 1), ('mastering', 1), ('latest', 1)]
[('application', 3), ('express', 3), ('agile', 2), ('oracle', 2), ('show', 1), ('skilled', 1), ('motivated', 1), ('self', 1), ('organizing', 1), ('developer', 1), ('realize', 1), ('extraordinary', 1), ('commercial', 1), ('benefit', 1), ('secret', 1), ('couple', 1), ('software', 1)]
[('security', 2), ('fully', 1), ('revised', 1), ('updated', 1), ('new', 1), ('edition', 1), ('definitive', 1), ('text', 1), ('reference', 1), ('computer', 1), ('network', 1), ('information', 1), ('present', 1), ('comprehensive', 1), ('guide', 1), ('repertoire', 1), ('tool', 1), ('algorithm', 1), ('best', 1), ('practice', 1), ('mandated', 1), ('technology', 1)]
[('development', 2), ('qic', 2), ('book', 1), ('address', 1), ('introduces', 1), ('new', 1), ('field', 1), ('quantum', 1), ('information', 1), ('computing', 1), ('primary', 1), ('audience', 1), ('undergraduate', 1), ('student', 1), ('nbsp', 1), ('past', 1), ('decade', 1), ('spurred', 1), ('need', 1), ('courseware', 1)]
[('exercise', 2), ('nbsp', 2), ('student', 1), ('friendly', 1), ('textbook', 1), ('encourages', 1), ('development', 1), ('programming', 1), ('skill', 1), ('active', 1), ('practice', 1), ('focusing', 1), ('support', 1), ('hand', 1), ('learning', 1), ('python', 1), ('workbook', 1), ('provides', 1), ('compendium', 1), ('spanning', 1)]
[('text', 2), ('analysis', 2), ('programming', 2), ('language', 2), ('second', 1), ('edition', 1), ('provides', 1), ('practical', 1), ('introduction', 1), ('computational', 1), ('using', 1), ('open', 1), ('source', 1), ('extremely', 1), ('popular', 1), ('used', 1), ('throughout', 1), ('science', 1), ('due', 1)]
[('science', 2), ('book', 1), ('explores', 1), ('answer', 1), ('fundamental', 1), ('question', 1), ('driving', 1), ('research', 1), ('innovation', 1), ('practice', 1), ('latest', 1), ('revolution', 1), ('scientific', 1), ('technological', 1), ('economic', 1), ('development', 1), ('data', 1), ('transform', 1), ('existing', 1)]
[('concept', 2), ('textbook', 1), ('python', 1), ('explains', 1), ('variable', 1), ('represent', 1), ('data', 1), ('held', 1), ('memory', 1), ('loop', 1), ('work', 1), ('string', 1), ('introduces', 1), ('key', 1), ('function', 1), ('module', 1), ('package', 1), ('object', 1)]
[('sc', 2), ('safety', 1), ('case', 1), ('railway', 1), ('industry', 1), ('important', 1), ('deliverable', 1), ('creating', 1), ('confidence', 1), ('system', 1), ('first', 1), ('book', 1), ('write', 1), ('based', 1), ('standard', 1), ('en', 1), ('experience', 1), ('shown', 1), ('preparing', 1)]
[('logic', 2), ('written', 1), ('graduate', 1), ('advanced', 1), ('undergraduate', 1), ('student', 1), ('mind', 1), ('textbook', 1), ('introduces', 1), ('computational', 1), ('foundation', 1), ('first', 1), ('order', 1), ('state', 1), ('art', 1), ('decision', 1), ('procedure', 1), ('arithmetic', 1), ('data', 1), ('structure', 1), ('combination', 1)]
[('requirement', 3), ('management', 2), ('system', 2), ('engineering', 2), ('book', 1), ('focus', 1), ('interface', 1), ('discipline', 1), ('introduction', 1), ('development', 1), ('given', 1), ('along', 1), ('short', 1), ('sketch', 1)]
[('software', 4), ('organization', 2), ('company', 2), ('product', 1), ('management', 1), ('pricing', 1), ('key', 1), ('success', 1), ('factor', 1), ('providing', 1), ('responsible', 1), ('belongs', 1), ('different', 1), ('industry', 1), ('defining', 1)]
[('de', 3), ('matlab', 2), ('simulink', 2), ('et', 2), ('le', 2), ('la', 2), ('cet', 1), ('ouvrage', 1), ('traite', 1), ('nouvelles', 1), ('fonctionnalités', 1), ('stateflow', 1), ('premier', 1), ('chapitre', 1), ('permet', 1), ('prise', 1), ('en', 1), ('main', 1), ('succincte', 1), ('plupart', 1), ('desfonctions', 1), ('tous', 1), ('autres', 1), ('chapitres', 1), ('développent', 1), ('defaçon', 1)]
[('cyber', 2), ('physical', 2), ('system', 2), ('foundational', 1), ('text', 1), ('offer', 1), ('rigorous', 1), ('introduction', 1), ('principle', 1), ('design', 1), ('specification', 1), ('modeling', 1), ('analysis', 1), ('consists', 1), ('collection', 1), ('computing', 1), ('device', 1), ('communicating', 1)]
[('gap', 1), ('theoretical', 1), ('idea', 1), ('messy', 1), ('reality', 1), ('seen', 1), ('neal', 1), ('stephenson', 1), ('adam', 1), ('smith', 1), ('trek', 1), ('depend', 1), ('believe', 1), ('algorithm', 1), ('help', 1), ('ride', 1), ('choose', 1), ('book', 1), ('buy', 1), ('execute', 1), ('mathematical', 1), ('proof', 1)]
[('information', 2), ('society', 2), ('outlining', 1), ('social', 1), ('theory', 1), ('internet', 1), ('book', 1), ('demonstrates', 1), ('ecological', 1), ('economic', 1), ('political', 1), ('cultural', 1), ('system', 1), ('contemporary', 1), ('transformed', 1), ('new', 1), ('communication', 1), ('technology', 1)]
[('major', 2), ('new', 1), ('professional', 1), ('reference', 1), ('work', 1), ('fingerprint', 1), ('security', 1), ('system', 1), ('technology', 1), ('leading', 1), ('international', 1), ('researcher', 1), ('field', 1), ('handbook', 1), ('provides', 1), ('authoritative', 1), ('comprehensive', 1), ('coverage', 1), ('topic', 1), ('concept', 1), ('method', 1)]
[('book', 2), ('statistic', 2), ('written', 1), ('provide', 1), ('resource', 1), ('material', 1), ('teacher', 1), ('use', 1), ('introductory', 1), ('intermediate', 1), ('class', 1), ('nbsp', 1), ('chapter', 1), ('content', 1), ('ordered', 1), ('along', 1), ('line', 1), ('many', 1), ('popular', 1), ('easy', 1)]
[('network', 2), ('probabilistic', 1), ('known', 1), ('bayesian', 1), ('influence', 1), ('diagram', 1), ('become', 1), ('promising', 1), ('technology', 1), ('area', 1), ('applied', 1), ('artificial', 1), ('intelligence', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('guide', 1), ('practitioner', 1), ('wish', 1)]
[('sa', 2), ('spss', 2), ('many', 1), ('thing', 1), ('common', 1), ('different', 1), ('goal', 1), ('writing', 1), ('book', 1), ('help', 1), ('translate', 1), ('know', 1), ('working', 1), ('knowledge', 1), ('quickly', 1), ('easily', 1), ('possible', 1), ('point', 1), ('differ', 1)]
[('teaching', 2), ('statistic', 2), ('based', 1), ('extensive', 1), ('experience', 1), ('applied', 1), ('scientist', 1), ('author', 1), ('provide', 1), ('beginner', 1), ('guide', 1), ('avoid', 1), ('difficulty', 1), ('time', 1), ('statistical', 1), ('method', 1), ('kept', 1), ('minimum', 1)]
[('blog', 2), ('joy', 2), ('roughly', 1), ('launched', 1), ('worldwide', 1), ('every', 1), ('hour', 1), ('blogpulse', 1), ('making', 1), ('fledgling', 1), ('site', 1), ('stand', 1), ('easy', 1), ('authoritative', 1), ('handbook', 1), ('give', 1), ('creative', 1), ('hopeful', 1), ('leg', 1), ('cho', 1), ('award', 1), ('winning', 1), ('oh', 1), ('offer', 1), ('expert', 1), ('advice', 1), ('starting', 1), ('growing', 1), ('design', 1), ('finance', 1), ('overcoming', 1), ('blogger', 1), ('block', 1), ('attracting', 1), ('reader', 1)]
[('stunning', 1), ('website', 1), ('browser', 1), ('find', 1), ('visible', 1), ('main', 1), ('search', 1), ('engine', 1), ('google', 1), ('particular', 1), ('brilliant', 1), ('idea', 1), ('contained', 1), ('within', 1), ('canny', 1), ('quick', 1), ('fix', 1), ('result', 1), ('immediate', 1), ('benefit', 1), ('site', 1)]
[('ring', 2), ('pin', 2), ('generation', 1), ('ago', 1), ('college', 1), ('student', 1), ('showed', 1), ('romantic', 1), ('commitment', 1), ('exchanging', 1), ('special', 1), ('object', 1), ('varsity', 1), ('letter', 1), ('jacket', 1), ('handy', 1), ('telling', 1), ('everyone', 1), ('local', 1), ('community', 1), ('spoken', 1), ('broke', 1)]
[('user', 2), ('computer', 1), ('vision', 1), ('algorithm', 1), ('analysis', 1), ('video', 1), ('data', 1), ('obtained', 1), ('camera', 1), ('aimed', 1), ('interactive', 1), ('system', 1), ('potentially', 1), ('useful', 1), ('enhance', 1), ('interface', 1), ('machine', 1), ('image', 1), ('sequence', 1), ('provide', 1)]
[('series', 3), ('digital', 2), ('multimedia', 2), ('standard', 2), ('book', 1), ('initiate', 1), ('new', 1), ('purpose', 1), ('make', 1), ('information', 1), ('readilyavailable', 1), ('tutorial', 1), ('advanced', 1), ('topic', 1), ('covered', 1), ('often', 1)]
[('book', 1), ('guide', 1), ('journey', 1), ('modeling', 1), ('theory', 1), ('elegant', 1), ('mathematics', 1), ('application', 1), ('beautiful', 1), ('model', 1), ('picture', 1), ('written', 1), ('simple', 1), ('straightforward', 1), ('concise', 1), ('manner', 1), ('reader', 1), ('learn', 1), ('state', 1), ('art', 1)]
[('python', 3), ('game', 2), ('coding', 2), ('program', 1), ('graphical', 1), ('adventure', 1), ('hand', 1), ('beginner', 1), ('friendly', 1), ('introduction', 1), ('language', 1), ('launch', 1), ('mission', 1), ('space', 1), ('themed', 1), ('guide', 1), ('building', 1), ('complete', 1), ('computer', 1), ('learn', 1)]
[('audacity', 4), ('book', 2), ('powerful', 2), ('definitive', 1), ('guide', 1), ('free', 1), ('cross', 1), ('platform', 1), ('audio', 1), ('editor', 1), ('allows', 1), ('anyone', 1), ('transform', 1), ('window', 1), ('mac', 1), ('linux', 1), ('computer', 1), ('recording', 1), ('studio', 1)]
[('software', 2), ('use', 1), ('every', 1), ('day', 1), ('perform', 1), ('kind', 1), ('magical', 1), ('powerful', 1), ('task', 1), ('force', 1), ('behind', 1), ('stunning', 1), ('cgi', 1), ('graphic', 1), ('safe', 1), ('online', 1), ('shopping', 1), ('speedy', 1), ('google', 1), ('search', 1), ('drive', 1), ('modern', 1), ('world', 1), ('inner', 1), ('working', 1), ('remain', 1), ('mystery', 1)]
[('learn', 2), ('program', 2), ('python', 2), ('making', 1), ('breaking', 1), ('cipher', 1), ('mdash', 1), ('algorithm', 1), ('used', 1), ('create', 1), ('send', 1), ('secret', 1), ('message', 1), ('crash', 1), ('course', 1), ('programming', 1), ('basic', 1), ('rsquo', 1), ('make', 1), ('test', 1), ('hack', 1), ('encrypt', 1)]
[('rbac', 3), ('security', 3), ('role', 2), ('administration', 2), ('based', 1), ('access', 1), ('control', 1), ('mechanism', 1), ('greatly', 1), ('lower', 1), ('cost', 1), ('complexity', 1), ('large', 1), ('networked', 1), ('application', 1), ('simplifies', 1), ('using', 1), ('hierarchy', 1), ('constraint', 1), ('organize', 1), ('privilege', 1), ('book', 1), ('explains', 1), ('component', 1), ('support', 1)]
[('quality', 2), ('process', 2), ('improvement', 2), ('iso', 1), ('known', 1), ('throughout', 1), ('world', 1), ('gold', 1), ('standard', 1), ('management', 1), ('lately', 1), ('assurance', 1), ('professional', 1), ('discovering', 1), ('power', 1), ('cmmism', 1), ('latest', 1), ('model', 1), ('software', 1), ('engineering', 1), ('institute', 1), ('book', 1), ('explores', 1), ('organization', 1), ('use', 1), ('framework', 1), ('tandem', 1)]
[('security', 2), ('first', 1), ('kind', 1), ('book', 1), ('expert', 1), ('author', 1), ('actively', 1), ('contributing', 1), ('evolution', 1), ('bluetooth', 1), ('specification', 1), ('provides', 1), ('overview', 1), ('detailed', 1), ('description', 1), ('function', 1), ('feature', 1), ('standard', 1), ('latest', 1), ('core', 1), ('release', 1), ('categorizing', 1), ('issue', 1), ('involved', 1), ('ad', 1), ('hoc', 1), ('networking', 1), ('hand', 1), ('volume', 1), ('show', 1)]
[('extensively', 1), ('updated', 1), ('second', 1), ('edition', 1), ('offer', 1), ('reader', 1), ('current', 1), ('overview', 1), ('way', 1), ('smart', 1), ('card', 1), ('address', 1), ('computer', 1), ('security', 1), ('issue', 1), ('today', 1), ('distributed', 1), ('application', 1)]
[('change', 3), ('business', 2), ('fast', 1), ('pace', 1), ('today', 1), ('environment', 1), ('need', 1), ('transform', 1), ('organization', 1), ('agile', 1), ('enterprise', 1), ('respond', 1), ('quickly', 1), ('never', 1), ('greater', 1), ('method', 1), ('computer', 1), ('technology', 1), ('needed', 1), ('enable', 1), ('rapid', 1), ('system', 1), ('practical', 1), ('book', 1), ('show', 1), ('professional', 1), ('achieve', 1), ('agility', 1)]
[('security', 3), ('risk', 2), ('outsourcing', 2), ('comprehensive', 1), ('timely', 1), ('resource', 1), ('examines', 1), ('related', 1), ('clearly', 1), ('showing', 1), ('recognize', 1), ('evaluate', 1), ('minimize', 1), ('manage', 1), ('unique', 1), ('scope', 1), ('single', 1), ('volume', 1), ('offer', 1), ('complete', 1), ('coverage', 1), ('whole', 1), ('range', 1), ('service', 1), ('fully', 1), ('treat', 1), ('concern', 1)]
[('security', 3), ('layer', 2), ('protocol', 2), ('ssl', 1), ('secure', 1), ('socket', 1), ('tl', 1), ('transport', 1), ('widely', 1), ('deployed', 1), ('used', 1), ('kind', 1), ('web', 1), ('based', 1), ('commerce', 1), ('business', 1), ('application', 1), ('part', 1), ('contemporary', 1), ('system', 1), ('available', 1), ('today', 1), ('practical', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('offering', 1), ('solid', 1)]
[('human', 3), ('world', 2), ('designing', 1), ('ai', 1), ('select', 1), ('narrow', 1), ('group', 1), ('view', 1), ('shaping', 1), ('future', 1), ('artificial', 1), ('intelligence', 1), ('quick', 1), ('judge', 1), ('capable', 1), ('error', 1), ('vulnerable', 1), ('bias', 1), ('made', 1), ('make', 1), ('decision', 1), ('law', 1), ('standard', 1), ('tool', 1), ('ethic', 1), ('new', 1), ('benefit', 1), ('get', 1), ('hurt', 1)]
[('book', 3), ('client', 2), ('server', 2), ('cover', 1), ('detail', 1), ('concept', 1), ('architectural', 1), ('aspect', 1), ('application', 1), ('component', 1), ('relationship', 1), ('database', 1), ('development', 1), ('tool', 1), ('associated', 1), ('technology', 1), ('used', 1), ('develop', 1), ('system', 1), ('serve', 1), ('complete', 1), ('text', 1), ('undergraduate', 1), ('bca', 1), ('sc', 1), ('bcs', 1), ('tech', 1), ('post', 1)]
[('new', 3), ('cim', 3), ('book', 2), ('edition', 1), ('cad', 1), ('cam', 1), ('brought', 1), ('focus', 1), ('response', 1), ('technology', 1), ('address', 1), ('challenge', 1), ('faced', 1), ('manufacturing', 1), ('millennium', 1), ('moving', 1), ('towards', 1), ('sophistication', 1), ('exploiting', 1), ('capability', 1), ('computer', 1), ('hardware', 1), ('software', 1), ('give', 1), ('detailed', 1), ('account', 1)]
[('book', 4), ('topic', 2), ('application', 1), ('numerical', 1), ('analysis', 1), ('become', 1), ('integral', 1), ('part', 1), ('life', 1), ('modern', 1), ('engineer', 1), ('scientist', 1), ('content', 1), ('cover', 1), ('introductory', 1), ('advanced', 1), ('partial', 1), ('differential', 1), ('equation', 1), ('different', 1), ('many', 1), ('number', 1), ('way', 1), ('salient', 1)]
[('nbsp', 5), ('excel', 3), ('edition', 2), ('tip', 2), ('new', 2), ('updating', 1), ('previous', 1), ('make', 1), ('compatible', 1), ('featuring', 1), ('available', 1), ('mr', 1), ('popular', 1), ('software', 1), ('guide', 1), ('even', 1), ('incorporates', 1), ('suggestion', 1), ('sent', 1), ('reader', 1), ('featured', 1), ('topic', 1), ('problem', 1), ('statement', 1), ('description', 1), ('followed', 1)]
[('look', 2), ('computer', 2), ('invention', 1), ('mit', 1), ('student', 1), ('visible', 1), ('calculator', 1), ('war', 1), ('lotus', 1), ('microsoft', 1), ('dominance', 1), ('spreadsheet', 1), ('market', 1), ('book', 1), ('fascinating', 1), ('software', 1), ('application', 1), ('helped', 1), ('spur', 1), ('entire', 1), ('industry', 1), ('loving', 1), ('back', 1), ('early', 1), ('technology', 1), ('evolution', 1), ('teach', 1), ('anyone', 1)]
[('sample', 2), ('scientist', 1), ('engineer', 1), ('tired', 1), ('trying', 1), ('learn', 1), ('excel', 1), ('example', 1), ('accounting', 1), ('self', 1), ('paced', 1), ('tutorial', 1), ('loaded', 1), ('informative', 1), ('world', 1), ('science', 1), ('engineering', 1), ('technique', 1), ('covered', 1), ('include', 1), ('creating', 1), ('multifactorial', 1), ('polynomial', 1), ('trendline', 1), ('generating', 1), ('random', 1), ('various', 1), ('characteristic', 1), ('tip', 1)]
[('excel', 2), ('simulation', 2), ('covering', 1), ('variety', 1), ('gambling', 1), ('genetics', 1), ('introduction', 1), ('interested', 1), ('modeling', 1), ('future', 1), ('event', 1), ('without', 1), ('cost', 1), ('expensive', 1), ('textbook', 1), ('covered', 1), ('offer', 1), ('fun', 1), ('alternative', 1), ('usual', 1), ('topic', 1), ('include', 1), ('situation', 1), ('roulette', 1), ('password', 1), ('cracking', 1), ('sex', 1), ('determination', 1), ('population', 1)]
[('tip', 2), ('excel', 2), ('user', 2), ('hour', 2), ('essential', 1), ('need', 1), ('know', 1), ('mrexcel', 1), ('live', 1), ('provides', 1), ('concise', 1), ('book', 1), ('absorbed', 1), ('includes', 1), ('section', 1), ('keyboard', 1), ('shortcut', 1), ('anyone', 1), ('us', 1), ('able', 1), ('turn', 1), ('page', 1), ('pick', 1), ('save', 1), ('work', 1)]
[('language', 2), ('javascript', 1), ('longer', 1), ('feared', 1), ('loathed', 1), ('world', 1), ('popular', 1), ('ubiquitous', 1), ('evolved', 1), ('respectable', 1), ('whether', 1), ('writing', 1), ('frontend', 1), ('application', 1), ('server', 1), ('side', 1), ('code', 1), ('phenomenal', 1), ('feature', 1), ('e', 1), ('beyond', 1), ('rest', 1), ('operator', 1), ('generator', 1), ('destructuring', 1), ('object', 1), ('literal', 1), ('arrow', 1), ('function', 1), ('modern', 1)]
[('vision', 2), ('application', 2), ('used', 2), ('computer', 1), ('algorithm', 1), ('explores', 1), ('variety', 1), ('technique', 1), ('commonly', 1), ('analyze', 1), ('interpret', 1), ('image', 1), ('describes', 1), ('challenging', 1), ('real', 1), ('world', 1), ('successfully', 1), ('specialized', 1)]
[('concept', 2), ('computer', 2), ('concise', 1), ('informal', 1), ('introductory', 1), ('book', 1), ('mathematical', 1), ('underpin', 1), ('graphic', 1), ('author', 1), ('john', 1), ('vince', 1), ('make', 1), ('easy', 1), ('understand', 1), ('enabling', 1), ('non', 1), ('expert', 1), ('come', 1), ('term', 1), ('animation', 1), ('work', 1)]
[('show', 1), ('user', 1), ('developer', 1), ('use', 1), ('mdx', 1), ('effectively', 1), ('provide', 1), ('relevant', 1), ('business', 1), ('information', 1)]
[('edition', 2), ('object', 2), ('second', 1), ('show', 1), ('reader', 1), ('build', 1), ('oriented', 1), ('application', 1), ('java', 1), ('written', 1), ('clear', 1), ('concise', 1), ('style', 1), ('lot', 1), ('example', 1), ('revised', 1), ('provides', 1), ('detailed', 1), ('understanding', 1), ('orientation', 1), ('thorough', 1)]
[('requirement', 2), ('engineering', 2), ('written', 1), ('want', 1), ('develop', 1), ('knowledge', 1), ('process', 1), ('whether', 1), ('practitioner', 1), ('student', 1), ('using', 1), ('latest', 1), ('research', 1), ('driven', 1), ('practical', 1), ('experience', 1), ('industry', 1), ('give', 1), ('useful', 1), ('hint', 1)]
[('method', 3), ('book', 1), ('provides', 1), ('comprehensive', 1), ('reference', 1), ('many', 1), ('different', 1), ('type', 1), ('compression', 1), ('included', 1), ('detailed', 1), ('helpful', 1), ('taxonomy', 1), ('analysis', 1), ('common', 1), ('discussion', 1), ('use', 1), ('comparative', 1), ('benefit', 1)]
[('step', 2), ('textbook', 1), ('present', 1), ('detailed', 1), ('introduction', 1), ('essential', 1), ('networking', 1), ('communication', 1), ('technology', 1), ('revised', 1), ('updated', 1), ('new', 1), ('edition', 1), ('retains', 1), ('approach', 1), ('original', 1), ('organised', 1), ('help', 1), ('without', 1), ('strong', 1)]
[('game', 2), ('developing', 1), ('successful', 1), ('today', 1), ('market', 1), ('challenging', 1), ('endeavor', 1), ('thousand', 1), ('title', 1), ('published', 1), ('yearly', 1), ('competing', 1), ('player', 1), ('time', 1), ('attention', 1), ('analytics', 1), ('emerged', 1), ('past', 1), ('year', 1), ('main', 1), ('resource', 1)]
[('volume', 1), ('born', 1), ('experience', 1), ('author', 1), ('researcher', 1), ('educator', 1), ('whichsuggeststhatmanystudentsofdataminingarehandicapped', 1), ('research', 1), ('lack', 1), ('formal', 1), ('systematic', 1), ('education', 1), ('mat', 1), ('matics', 1), ('data', 1), ('mining', 1)]
[('second', 1), ('edition', 1), ('brings', 1), ('reader', 1), ('thoroughly', 1), ('date', 1), ('emerging', 1), ('field', 1), ('text', 1), ('mining', 1), ('application', 1), ('technique', 1), ('machine', 1), ('learning', 1), ('conjunction', 1), ('natural', 1), ('language', 1), ('processing', 1), ('information', 1), ('extraction', 1), ('algebraic', 1), ('mathematical', 1)]
[('project', 2), ('device', 2), ('start', 2), ('building', 1), ('electronic', 1), ('interact', 1), ('physical', 1), ('world', 1), ('good', 1), ('fun', 1), ('built', 1), ('talk', 1), ('thing', 1), ('really', 1), ('interesting', 1), ('series', 1), ('simple', 1), ('learn', 1), ('creation', 1), ('communicate', 1), ('another', 1), ('forming', 1), ('network', 1), ('smart', 1), ('carry', 1)]
[('fundamental', 2), ('analysis', 2), ('monograph', 1), ('collect', 1), ('mathematical', 1), ('technique', 1), ('required', 1), ('algorithm', 1), ('build', 1), ('combinatorial', 1), ('complex', 1), ('variable', 1), ('theory', 1), ('present', 1), ('many', 1), ('major', 1), ('paradigm', 1), ('used', 1)]
[('book', 2), ('learning', 2), ('guide', 2), ('looking', 1), ('engaging', 1), ('rich', 1), ('feature', 1), ('field', 1), ('machine', 1), ('modern', 1), ('concise', 1), ('topic', 1), ('focus', 1), ('current', 1), ('ensemble', 1), ('boosting', 1), ('method', 1), ('highlighting', 1), ('contemporray', 1), ('technique', 1), ('xgboost', 1), ('shap', 1), ('catboost', 1)]
[('reading', 2), ('technical', 1), ('manual', 1), ('interest', 1), ('enthusiasm', 1), ('indeed', 1), ('rarity', 1), ('easy', 1), ('comprehend', 1), ('essential', 1), ('novice', 1), ('expert', 1), ('alike', 1), ('want', 1), ('grip', 1), ('understand', 1), ('creative', 1), ('suite', 1), ('program', 1), ('whole', 1), ('best', 1), ('intro', 1), ('photoshop', 1), ('book', 1), ('encountered', 1), ('date', 1), ('andy', 1), ('moxon', 1), ('professor', 1)]
[('bot', 4), ('award', 1), ('winning', 1), ('journalist', 1), ('david', 1), ('ewing', 1), ('duncan', 1), ('considers', 1), ('vision', 1), ('possible', 1), ('human', 1), ('robot', 1), ('future', 1), ('incredible', 1), ('scenario', 1), ('teddy', 1), ('warrior', 1), ('politician', 1), ('sex', 1), ('grounded', 1), ('real', 1), ('technology', 1), ('possibility', 1)]
[('codenotes', 2), ('technology', 2), ('provides', 1), ('succinct', 1), ('accurate', 1), ('speedy', 1), ('way', 1), ('developer', 1), ('ramp', 1), ('new', 1), ('language', 1), ('unlike', 1), ('programming', 1), ('book', 1), ('drill', 1), ('core', 1), ('aspect', 1), ('focusing', 1), ('key', 1), ('element', 1)]
[('codenotes', 2), ('technology', 2), ('provides', 1), ('succinct', 1), ('accurate', 1), ('speedy', 1), ('way', 1), ('forum', 1), ('developer', 1), ('ramp', 1), ('new', 1), ('language', 1), ('unlike', 1), ('programming', 1), ('book', 1), ('drill', 1), ('tothe', 1), ('core', 1), ('aspect', 1), ('focusing', 1), ('key', 1), ('element', 1), ('needed', 1)]
[('codenotes', 2), ('technology', 2), ('provides', 1), ('succinct', 1), ('accurate', 1), ('speedy', 1), ('way', 1), ('developer', 1), ('ramp', 1), ('new', 1), ('language', 1), ('unlike', 1), ('programming', 1), ('book', 1), ('drill', 1), ('core', 1), ('aspect', 1), ('focusing', 1), ('key', 1), ('element', 1)]
[('book', 1), ('us', 1), ('algorithmic', 1), ('information', 1), ('theory', 1), ('foundation', 1), ('universal', 1), ('evaluation', 1), ('cognition', 1), ('future', 1), ('intelligence', 1)]
[('find', 1), ('common', 1), ('smartphone', 1), ('challenging', 1), ('transforming', 1), ('psychological', 1), ('science', 1)]
[('global', 1), ('examination', 1), ('influence', 1), ('woman', 1), ('participation', 1), ('computing', 1), ('done', 1), ('fix', 1), ('gender', 1), ('gap', 1)]
[('iso', 3), ('mean', 2), ('information', 1), ('security', 1), ('technology', 1), ('solution', 1), ('requires', 1), ('buy', 1), ('senior', 1), ('manager', 1), ('collaboration', 1), ('staff', 1), ('organisation', 1), ('looking', 1), ('together', 1), ('pocket', 1), ('guide', 1), ('give', 1), ('wider', 1), ('view', 1), ('implement', 1), ('ism', 1)]
[('data', 2), ('resides', 2), ('every', 1), ('byte', 1), ('inside', 1), ('company', 1), ('outside', 1), ('wall', 1), ('potential', 1), ('make', 1), ('stronger', 1), ('giving', 1), ('agility', 1), ('speed', 1), ('intelligence', 1), ('none', 1), ('competitor', 1), ('yet', 1), ('practical', 1), ('book', 1), ('cover', 1), ('strategy', 1), ('tactic', 1), ('around', 1), ('managing', 1), ('governance', 1), ('initiative', 1)]
[('information', 2), ('security', 2), ('management', 2), ('guide', 1), ('describes', 1), ('hard', 1), ('soft', 1), ('skill', 1), ('successful', 1), ('ciso', 1), ('requires', 1), ('emphasising', 1), ('importance', 1), ('suitable', 1), ('system', 1), ('ism', 1), ('risk', 1), ('methodology', 1), ('heart', 1), ('explains', 1), ('changing', 1), ('goal', 1), ('department', 1)]
[('available', 2), ('printer', 2), ('developed', 2), ('release', 1), ('first', 1), ('commercially', 1), ('thriving', 1), ('consumer', 1), ('market', 1), ('huge', 1), ('variety', 1), ('kit', 1), ('home', 1), ('constructor', 1), ('short', 1), ('existence', 1), ('capable', 1), ('machine', 1), ('able', 1), ('make', 1), ('robust', 1), ('useful', 1), ('object', 1), ('wide', 1), ('range', 1), ('material', 1), ('printing', 1)]
[('image', 4), ('acquisition', 2), ('preprocessing', 2), ('machine', 1), ('vision', 1), ('system', 1), ('comprehensive', 1), ('reference', 1), ('text', 1), ('detailing', 1), ('every', 1), ('aspect', 1), ('illumination', 1), ('scene', 1), ('optic', 1), ('forming', 1), ('ccd', 1), ('cmos', 1), ('capture', 1), ('transformation', 1), ('captured', 1), ('book', 1), ('bridge', 1), ('gap', 1), ('hardware', 1)]
[('address', 1), ('mathematical', 1), ('numerical', 1), ('modelling', 1), ('human', 1), ('cardiovascular', 1), ('system', 1), ('patient', 1), ('data', 1), ('clinical', 1), ('application', 1)]
[('textbook', 1), ('complete', 1), ('teaching', 1), ('tool', 1), ('turning', 1), ('student', 1), ('logic', 1), ('designer', 1), ('assuming', 1), ('prior', 1), ('knowledge', 1), ('discrete', 1), ('mathematics', 1)]
[('concise', 1), ('comprehensive', 1), ('stop', 1), ('overview', 1), ('three', 1), ('key', 1), ('programming', 1), ('language', 1), ('java', 1), ('octave', 1), ('student', 1), ('instructor', 1), ('scientific', 1), ('programmer', 1)]
[('book', 1), ('explores', 1), ('dynamic', 1), ('limitation', 1), ('powerpoint', 1), ('mean', 1), ('communication', 1)]
[('thoroughly', 1), ('revised', 1), ('guide', 1), ('dsp', 1), ('design', 1), ('analysis', 1), ('many', 1), ('new', 1), ('example', 1), ('hand', 1), ('approach', 1), ('problem', 1), ('solving', 1)]
[('volume', 1), ('explores', 1), ('aspect', 1), ('situation', 1), ('interact', 1), ('characteristic', 1), ('person', 1), ('explain', 1), ('technologically', 1), ('supported', 1), ('social', 1), ('interaction', 1)]
[('data', 3), ('book', 1), ('survey', 1), ('myriad', 1), ('facet', 1), ('monitoring', 1), ('motion', 1), ('spatio', 1), ('temporal', 1), ('modeling', 1), ('aggregation', 1), ('warehousing', 1), ('analysis', 1)]
[('explores', 1), ('state', 1), ('art', 1), ('advance', 1), ('successful', 1), ('deployment', 1), ('operation', 1), ('small', 1), ('cell', 1), ('network', 1)]
[('comprehensive', 1), ('guide', 1), ('restoration', 1), ('image', 1), ('degraded', 1), ('motion', 1), ('blur', 1), ('encompassing', 1), ('algorithm', 1), ('architecture', 1), ('novel', 1), ('computational', 1), ('photography', 1), ('method', 1)]
[('book', 1), ('present', 1), ('recent', 1), ('advanced', 1), ('technique', 1), ('creating', 1), ('autonomous', 1), ('ai', 1), ('system', 1), ('capable', 1), ('planning', 1), ('acting', 1), ('effectively', 1)]
[('hand', 1), ('entry', 1), ('level', 1), ('guide', 1), ('algorithm', 1), ('extracting', 1), ('information', 1), ('social', 1), ('economic', 1), ('behavior', 1), ('network', 1), ('data', 1)]
[('comprehensive', 1), ('modern', 1), ('technically', 1), ('precise', 1), ('exposition', 1), ('theory', 1), ('main', 1), ('application', 1), ('temporal', 1), ('logic', 1), ('computer', 1), ('science', 1)]
[('comprehensive', 1), ('guide', 1), ('student', 1), ('practitioner', 1), ('parallel', 1), ('computing', 1), ('model', 1), ('process', 1), ('metric', 1), ('implementation', 1), ('mpi', 1), ('openmp', 1)]
[('book', 1), ('us', 1), ('recent', 1), ('computational', 1), ('model', 1), ('explore', 1), ('issue', 1), ('related', 1), ('language', 1), ('cognition', 1)]
[('concise', 1), ('text', 1), ('offer', 1), ('accessible', 1), ('conceptual', 1), ('presentation', 1), ('student', 1), ('quantitative', 1), ('field', 1)]
[('explains', 1), ('many', 1), ('computational', 1), ('molecular', 1), ('biology', 1), ('problem', 1), ('implement', 1), ('solution', 1), ('perl', 1)]
[('general', 1), ('overview', 1), ('theoretical', 1), ('foundation', 1), ('first', 1), ('book', 1), ('emphasize', 1), ('approximation', 1), ('theory', 1), ('viewpoint', 1)]
[('book', 1), ('proposes', 1), ('formal', 1), ('mathematical', 1), ('language', 1), ('describing', 1), ('behaviour', 1), ('mobile', 1), ('agent', 1), ('distributed', 1), ('world', 1)]
[('book', 1), ('provides', 1), ('coverage', 1), ('survivability', 1), ('traffic', 1), ('grooming', 1), ('key', 1), ('issue', 1), ('modern', 1), ('optical', 1), ('network', 1)]
[('practitioner', 1), ('guide', 1), ('knowledge', 1), ('representation', 1), ('reasoning', 1), ('using', 1), ('logic', 1), ('programming', 1)]
[('depth', 1), ('exploration', 1), ('envy', 1), ('developer', 1), ('ibm', 1), ('team', 1), ('programming', 1), ('environment', 1), ('smalltalk', 1), ('java', 1)]
[('book', 1), ('show', 1), ('formal', 1), ('logic', 1), ('used', 1), ('specify', 1), ('behaviour', 1), ('hardware', 1), ('design', 1), ('reason', 1), ('correctness', 1)]
[('learn', 1), ('write', 1), ('technical', 1), ('application', 1), ('modern', 1), ('object', 1), ('oriented', 1), ('approach', 1), ('using', 1), ('fortran', 1)]
[('give', 1), ('technical', 1), ('overview', 1), ('architectural', 1), ('consideration', 1), ('mobile', 1), ('internet', 1), ('research', 1), ('new', 1), ('protocol', 1), ('concept', 1)]
[('examines', 1), ('significance', 1), ('gilles', 1), ('kahn', 1), ('contribution', 1), ('computer', 1), ('science', 1), ('reflects', 1), ('upon', 1), ('future', 1), ('development', 1), ('information', 1), ('technology', 1)]
[('outstanding', 1), ('collection', 1), ('designed', 1), ('address', 1), ('fundamental', 1), ('issue', 1), ('principle', 1), ('underlying', 1), ('task', 1), ('artificial', 1), ('intelligence', 1)]
[('computer', 2), ('self', 1), ('contained', 1), ('introduction', 1), ('process', 1), ('algebra', 1), ('model', 1), ('concurrency', 1), ('essential', 1), ('reading', 1), ('scientist', 1), ('interested', 1), ('parallel', 1), ('processing', 1), ('algebraic', 1), ('method', 1), ('science', 1)]
[('functional', 1), ('programming', 1), ('haskell', 1), ('gofer', 1), ('type', 1), ('theory', 1)]
[('first', 1), ('comprehensive', 1), ('account', 1), ('new', 1), ('approach', 1), ('fundamental', 1), ('parallel', 1), ('programming', 1)]
[('introduction', 1), ('mathematical', 1), ('foundation', 1), ('uncertain', 1), ('reasoning', 1)]
[('notation', 2), ('time', 2), ('book', 1), ('provides', 1), ('framework', 1), ('type', 1), ('functional', 1), ('language', 1), ('extended', 1), ('include', 1), ('distinguishing', 1), ('run', 1), ('compile', 1)]
[('first', 1), ('published', 1), ('thesis', 1), ('concentrate', 1), ('upon', 1), ('design', 1), ('three', 1), ('dimensional', 1), ('circuit', 1)]
[('book', 1), ('present', 1), ('rigorous', 1), ('foundation', 1), ('defining', 1), ('boolean', 1), ('category', 1), ('appeal', 1), ('graduate', 1), ('student', 1), ('researcher', 1), ('theoretical', 1), ('computer', 1), ('science', 1)]
[('guide', 1), ('application', 1), ('server', 1), ('technology', 1), ('explaining', 1), ('theory', 1), ('network', 1), ('computing', 1), ('providing', 1), ('practical', 1), ('technique', 1), ('producing', 1), ('effective', 1), ('business', 1), ('solution', 1)]
[('book', 1), ('used', 1), ('graduate', 1), ('course', 1), ('reference', 1), ('researcher', 1), ('formal', 1), ('method', 1), ('theorem', 1), ('proving', 1), ('declarative', 1), ('language', 1)]
[('book', 1), ('written', 1), ('entirely', 1), ('hand', 1), ('introduction', 1), ('programming', 1), ('pascal', 1)]
[('volume', 1), ('originally', 1), ('published', 1), ('noisy', 1), ('information', 1), ('studied', 1), ('context', 1), ('computational', 1), ('complexity', 1)]
[('graduate', 1), ('level', 1), ('text', 1), ('give', 1), ('thorough', 1), ('overview', 1), ('analysis', 1), ('boolean', 1), ('function', 1), ('beginning', 1), ('basic', 1), ('definition', 1), ('proceeding', 1), ('advanced', 1), ('topic', 1)]
[('synthesis', 1), ('recent', 1), ('advance', 1), ('multimodal', 1), ('signal', 1), ('processing', 1), ('application', 1), ('human', 1), ('interaction', 1), ('analysis', 1), ('meeting', 1), ('support', 1), ('technology', 1)]
[('book', 1), ('describes', 1), ('exciting', 1), ('theoretical', 1), ('paradigm', 1), ('visual', 1), ('perception', 1), ('based', 1), ('experimental', 1), ('computational', 1), ('insight', 1)]
[('programming', 2), ('book', 1), ('provides', 1), ('depth', 1), ('coverage', 1), ('fundamental', 1), ('concept', 1), ('language', 1), ('object', 1), ('oriented', 1), ('paradigm', 1)]
[('introductory', 1), ('guide', 1), ('real', 1), ('life', 1), ('example', 1), ('using', 1), ('ai', 1), ('help', 1), ('homeless', 1), ('youth', 1), ('diabetes', 1), ('patient', 1), ('social', 1), ('welfare', 1), ('intervention', 1)]
[('text', 1), ('provides', 1), ('rigorous', 1), ('treatment', 1), ('signal', 1), ('system', 1), ('concept', 1), ('lucid', 1), ('language', 1), ('numerous', 1), ('solved', 1), ('unsolved', 1), ('example', 1)]
[('discus', 1), ('concept', 1), ('smart', 1), ('grid', 1), ('technology', 1), ('perspective', 1), ('integration', 1), ('cloud', 1), ('computing', 1), ('data', 1), ('management', 1), ('approach', 1)]
[('easy', 1), ('understand', 1), ('guide', 1), ('covering', 1), ('key', 1), ('principle', 1), ('finite', 1), ('element', 1), ('method', 1), ('application', 1), ('differential', 1), ('equation', 1)]
[('window', 3), ('advice', 2), ('time', 1), ('tested', 1), ('dummy', 1), ('remains', 1), ('source', 1), ('reader', 1), ('looking', 1), ('expert', 1), ('author', 1), ('andy', 1), ('rathbone', 1), ('provides', 1), ('easy', 1), ('follow', 1)]
[('suite', 3), ('fast', 1), ('answer', 1), ('question', 1), ('friendly', 1), ('resource', 1), ('dummy', 1), ('fun', 1), ('guide', 1), ('productivity', 1)]
[('javascript', 3), ('take', 1), ('knowledge', 1), ('far', 1), ('go', 1), ('grown', 1), ('hot', 1), ('topic', 1), ('newer', 1), ('faster', 1), ('vms', 1), ('framework', 1), ('built', 1), ('upon', 1), ('increased', 1), ('popularity', 1)]
[('cyber', 2), ('breach', 2), ('cost', 2), ('breached', 1), ('question', 1), ('whether', 1), ('ready', 1), ('organization', 1), ('million', 1), ('dollar', 1), ('average', 1), ('company', 1)]
[('dummy', 2), ('nikon', 2), ('join', 1), ('photographer', 1), ('turn', 1), ('series', 1), ('useful', 1), ('guidance', 1), ('provides', 1), ('user', 1), ('owner', 1)]
[('iphone', 3), ('step', 2), ('guide', 2), ('mastery', 1), ('portable', 1), ('genius', 1), ('delivers', 1), ('practical', 1), ('simple', 1), ('quickly', 1), ('learning', 1), ('everything', 1), ('need', 1), ('know', 1), ('whether', 1)]
[('guide', 2), ('java', 2), ('web', 2), ('application', 2), ('software', 2), ('comprehensive', 1), ('wrox', 1), ('creating', 1), ('enterprise', 1), ('show', 1), ('developer', 1), ('engineer', 1), ('build', 1), ('complex', 1)]
[('access', 3), ('microsoft', 2), ('user', 2), ('mvp', 1), ('show', 1), ('become', 1), ('power', 1), ('world', 1), ('leading', 1), ('database', 1), ('system', 1), ('million', 1), ('hundred', 1), ('thousand', 1), ('developer', 1), ('best', 1)]
[('game', 3), ('presenting', 1), ('holistic', 1), ('thoroughly', 1), ('practical', 1), ('investigation', 1), ('true', 1), ('nature', 1), ('computer', 1), ('arm', 1), ('reader', 1), ('small', 1), ('yet', 1), ('powerful', 1), ('set', 1), ('theory', 1), ('developing', 1), ('unique', 1), ('approach', 1), ('understanding', 1), ('invader', 1), ('fully', 1)]
[('visual', 2), ('basic', 2), ('net', 2), ('explore', 1), ('fully', 1), ('updated', 1), ('resource', 1), ('quick', 1), ('review', 1), ('introductory', 1), ('topic', 1), ('book', 1), ('move', 1), ('quickly', 1)]
[('visual', 3), ('guide', 2), ('studio', 2), ('ultimate', 1), ('developer', 1), ('expert', 1), ('wrox', 1), ('need', 1), ('running', 1), ('quickly', 1), ('written', 1), ('microsoft', 1), ('mvp', 1)]
[('software', 3), ('test', 3), ('concept', 2), ('testing', 2), ('explores', 1), ('identifies', 1), ('main', 1), ('issue', 1), ('principle', 1), ('evolution', 1), ('including', 1), ('quality', 1), ('engineering', 1), ('data', 1), ('generation', 1), ('deployment', 1), ('analysis', 1)]
[('game', 3), ('tablet', 3), ('start', 2), ('learn', 1), ('design', 1), ('renowned', 1), ('designer', 1), ('eager', 1), ('designing', 1), ('sure', 1), ('look', 1), ('gaming', 1), ('guru', 1), ('scott', 1), ('rogers', 1), ('finger', 1), ('pulse', 1)]
[('programmer', 1), ('protect', 1), ('defend', 1), ('web', 1), ('apps', 1), ('attack', 1), ('know', 1), ('asp', 1), ('net', 1), ('understand', 1), ('secure', 1), ('application', 1), ('need', 1), ('book', 1), ('vital', 1), ('guide', 1), ('explores', 1), ('often', 1), ('overlooked', 1), ('topic', 1)]
[('programming', 2), ('arduino', 2), ('guide', 2), ('master', 1), ('hand', 1), ('sketch', 1), ('practical', 1), ('increasingly', 1), ('popular', 1), ('microcontroller', 1), ('brings', 1), ('gadget', 1), ('life', 1), ('accessible', 1)]
[('computer', 3), ('vision', 3), ('technology', 2), ('vehicle', 2), ('unified', 1), ('view', 1), ('use', 1), ('different', 1), ('type', 1), ('focus', 1)]
[('guide', 2), ('raspberry', 2), ('pi', 2), ('unofficial', 1), ('official', 1), ('complete', 1), ('creator', 1), ('insight', 1), ('user', 1), ('rd', 1), ('edition', 1), ('contains', 1), ('everything', 1), ('need', 1), ('know', 1)]
[('software', 2), ('book', 2), ('sap', 1), ('world', 1), ('leader', 1), ('enterprise', 1), ('resource', 1), ('planning', 1), ('erp', 1), ('module', 1), ('fi', 1), ('finance', 1), ('co', 1), ('controlling', 1), ('far', 1), ('popular', 1), ('widely', 1), ('implemented', 1), ('competition', 1)]
[('new', 4), ('sharepoint', 3), ('feature', 2), ('admin', 1), ('author', 1), ('guru', 1), ('return', 1), ('prepare', 1), ('working', 1), ('iteration', 1), ('boast', 1), ('exciting', 1), ('version', 1)]
[('tech', 2), ('practical', 1), ('handbook', 1), ('cybersecurity', 1), ('non', 1), ('professional', 1), ('report', 1), ('major', 1), ('data', 1), ('breach', 1), ('fill', 1), ('headline', 1), ('become', 1), ('impossible', 1), ('business', 1), ('large', 1), ('small', 1)]
[('lernen', 3), ('maschinelles', 2), ('mit', 2), ('ist', 1), ('aufregend', 1), ('schnellen', 1), ('prozessoren', 1), ('und', 1), ('großen', 1), ('speichern', 1), ('können', 1), ('computer', 1), ('au', 1), ('erfahrungen', 1), ('künstliche', 1), ('intelligenz', 1), ('kommt', 1), ('wieder', 1), ('reichweite', 1), ('diesem', 1), ('buch', 1), ('verstehen', 1), ('sie', 1), ('bedeutet', 1), ('für', 1)]
[('investigate', 1), ('crime', 1), ('involving', 1), ('cryptocurrencies', 1), ('blockchain', 1), ('technology', 1), ('bitcoin', 1), ('traditionally', 1), ('payment', 1), ('system', 1), ('choice', 1), ('criminal', 1), ('trading', 1), ('dark', 1), ('web', 1), ('many', 1)]
[('certification', 3), ('cisco', 2), ('announced', 1), ('big', 1), ('change', 1), ('program', 1), ('february', 1), ('current', 1), ('retired', 1), ('begin', 1), ('offering', 1), ('new', 1)]
[('book', 2), ('existing', 1), ('wavelet', 1), ('either', 1), ('mathematical', 1), ('focus', 1), ('narrow', 1), ('specialty', 1), ('provides', 1), ('thorough', 1), ('treatment', 1), ('subject', 1), ('engineering', 1), ('point', 1), ('view', 1), ('stop', 1), ('source', 1), ('theory', 1), ('algorithm', 1)]
[('der', 2), ('die', 2), ('ihnen', 2), ('schritt', 2), ('sie', 2), ('einstieg', 1), ('programmierung', 1), ('kann', 1), ('ganz', 1), ('leicht', 1), ('sein', 1), ('da', 1), ('beweist', 1), ('diesis', 1), ('buch', 1), ('für', 1), ('führt', 1), ('john', 1), ('paul', 1), ('mueller', 1), ('grundlagen', 1), ('beliebten', 1), ('programmiersprache', 1), ('python', 1), ('ein', 1), ('und', 1), ('zeigt', 1), ('wie', 1), ('ihren', 1), ('computer', 1), ('dazu', 1)]
[('question', 2), ('exchange', 2), ('server', 2), ('easy', 2), ('access', 2), ('guide', 2), ('flip', 1), ('open', 1), ('microsoft', 1), ('new', 1), ('answered', 1), ('spot', 1), ('handy', 1), ('reference', 1), ('designed', 1)]
[('software', 3), ('pattern', 2), ('parallel', 2), ('essential', 1), ('reading', 1), ('understand', 1), ('programming', 1), ('revolutionized', 1), ('way', 1), ('think', 1), ('designed', 1), ('built', 1), ('documented', 1), ('design', 1)]
[('security', 2), ('expert', 1), ('guidance', 1), ('art', 1), ('science', 1), ('driving', 1), ('secure', 1), ('behavior', 1), ('transformational', 1), ('awareness', 1), ('empowers', 1), ('leader', 1), ('information', 1)]
[('developer', 2), ('advanced', 1), ('io', 1), ('programming', 1), ('expert', 1), ('guidance', 1), ('need', 1), ('create', 1), ('amazing', 1), ('application', 1), ('apple', 1), ('iphone', 1), ('ipad', 1), ('ipod', 1), ('touch', 1), ('inside', 1), ('veteran', 1), ('mobile', 1), ('dr', 1), ('maher', 1), ('ali', 1), ('begin', 1)]
[('security', 2), ('issue', 2), ('discover', 1), ('technology', 1), ('affecting', 1), ('business', 1), ('typical', 1), ('mechanism', 1), ('failing', 1), ('address', 1), ('risk', 1), ('trust', 1), ('web', 1), ('world', 1), ('look', 1), ('perplexing', 1), ('cyber', 1)]
[('machine', 3), ('apple', 2), ('io', 2), ('learning', 2), ('ml', 2), ('harness', 1), ('power', 1), ('capability', 1), ('learn', 1), ('concept', 1), ('technique', 1), ('necessary', 1), ('successful', 1), ('practitioner', 1), ('earning', 1)]
[('software', 3), ('pattern', 2), ('revolutionized', 1), ('way', 1), ('developer', 1), ('architect', 1), ('think', 1), ('designed', 1), ('built', 1), ('documented', 1), ('new', 1), ('title', 1), ('wiley', 1), ('prestigious', 1), ('series', 1), ('design', 1), ('present', 1)]
[('first', 1), ('major', 1), ('book', 1), ('mdm', 1), ('written', 1), ('group', 1), ('policy', 1), ('enterprise', 1), ('mobility', 1), ('mvp', 1), ('renowned', 1), ('expert', 1), ('jeremy', 1), ('moskowitz', 1), ('window', 1), ('organization', 1), ('create', 1), ('consistent', 1), ('set', 1), ('configuration', 1)]
[('online', 3), ('coupon', 2), ('book', 2), ('pro', 1), ('save', 1), ('big', 1), ('money', 1), ('page', 1), ('budget', 1), ('need', 1), ('help', 1), ('figuring', 1), ('concise', 1), ('show', 1), ('go', 1), ('find', 1), ('best', 1), ('store', 1)]
[('easy', 2), ('follow', 2), ('introduction', 2), ('support', 2), ('vector', 2), ('machine', 2), ('book', 1), ('provides', 1), ('depth', 1), ('drawing', 1), ('minimal', 1), ('carefully', 1), ('motivated', 1), ('technical', 1), ('mathematical', 1)]
[('autodesk', 2), ('d', 2), ('max', 2), ('comprehensive', 1), ('book', 1), ('reference', 1), ('used', 1), ('create', 1), ('percent', 1), ('commercially', 1), ('available', 1), ('game', 1), ('key', 1), ('tool', 1), ('visual', 1), ('effect', 1), ('artist', 1)]
[('soa', 2), ('service', 2), ('oriented', 2), ('architecture', 2), ('feeling', 1), ('overwhelmed', 1), ('buzz', 1), ('take', 1), ('heart', 1), ('dummy', 1), ('nd', 1), ('edition', 1), ('make', 1), ('easy', 1), ('understand', 1), ('plan', 1), ('implement', 1), ('latest', 1), ('solution', 1)]
[('written', 1), ('expert', 1), ('field', 1), ('technology', 1), ('training', 1), ('author', 1), ('nearly', 1), ('dozen', 1), ('title', 1), ('complete', 1), ('guide', 1), ('offer', 1), ('reader', 1), ('thorough', 1), ('yet', 1), ('clear', 1), ('instruction', 1), ('using', 1), ('microsoft', 1), ('office', 1), ('suite', 1), ('word', 1), ('excel', 1), ('powerpoint', 1)]
[('latest', 2), ('version', 2), ('maya', 2), ('beautifully', 1), ('packaged', 1), ('advanced', 1), ('reference', 1), ('already', 1), ('know', 1), ('basic', 1), ('authoritative', 1), ('book', 1), ('take', 1), ('next', 1), ('level', 1), ('modeling', 1)]
[('photo', 3), ('photoshop', 2), ('element', 2), ('create', 1), ('vision', 1), ('latest', 1), ('version', 1), ('top', 1), ('selling', 1), ('consumer', 1), ('editing', 1), ('software', 1), ('adobe', 1), ('continues', 1), ('add', 1), ('innovative', 1), ('feature', 1), ('allow', 1), ('digital', 1)]
[('web', 2), ('design', 2), ('visual', 2), ('learner', 2), ('step', 2), ('mechanic', 1), ('made', 1), ('easy', 1), ('effective', 1), ('site', 1), ('combine', 1), ('good', 1), ('graphic', 1), ('principle', 1), ('functional', 1), ('user', 1), ('interface', 1), ('colorful', 1), ('guide', 1), ('show', 1)]
[('theory', 2), ('application', 2), ('statistic', 2), ('integrates', 1), ('using', 1), ('course', 1), ('written', 1), ('bridge', 1), ('gap', 1), ('explain', 1), ('mathematical', 1), ('expression', 1), ('converted', 1)]
[('autocad', 3), ('autodesk', 2), ('official', 2), ('press', 2), ('learn', 1), ('crucial', 1), ('tool', 1), ('technique', 1), ('book', 1), ('quickly', 1), ('become', 1), ('productive', 1), ('using', 1), ('lt', 1), ('full', 1), ('color', 1), ('guide', 1)]
[('macos', 3), ('sierra', 2), ('trusted', 1), ('tour', 1), ('guide', 1), ('engine', 1), ('run', 1), ('mac', 1), ('good', 1), ('idea', 1), ('know', 1), ('bit', 1), ('work', 1), ('fully', 1), ('updated', 1), ('cover', 1), ('long', 1), ('time', 1), ('bestseller', 1), ('map', 1), ('need', 1)]
[('book', 2), ('take', 1), ('control', 1), ('keep', 1), ('finance', 1), ('black', 1), ('quickbooks', 1), ('dummy', 1), ('four', 1), ('million', 1), ('print', 1), ('cpa', 1), ('perennial', 1), ('bestselling', 1)]
[('based', 3), ('web', 2), ('site', 2), ('without', 2), ('build', 1), ('template', 1), ('hassle', 1), ('writing', 1), ('code', 1), ('joomla', 1), ('free', 1), ('open', 1), ('source', 1), ('php', 1), ('mysql', 1), ('content', 1), ('management', 1), ('system', 1), ('allows', 1), ('create', 1), ('interactive', 1), ('community', 1)]
[('vsphere', 4), ('reference', 2), ('master', 1), ('automation', 1), ('comprehensive', 1), ('vmware', 1), ('powercli', 1), ('automating', 1), ('administration', 1), ('nd', 1), ('edition', 1), ('stop', 1), ('solution', 1)]
[('home', 3), ('office', 2), ('student', 2), ('go', 1), ('reference', 1), ('new', 1), ('version', 1), ('microsoft', 1), ('target', 1), ('education', 1), ('market', 1), ('covering', 1), ('four', 1), ('application', 1), ('used', 1)]
[('need', 2), ('pc', 2), ('scoop', 1), ('window', 1), ('vista', 1), ('office', 1), ('anything', 1), ('know', 1), ('using', 1), ('probably', 1), ('found', 1), ('desk', 1), ('reference', 1), ('dummy', 1), ('th', 1), ('edition', 1), ('handy', 1)]
[('leading', 2), ('software', 2), ('effect', 2), ('hand', 1), ('intermediate', 1), ('advanced', 1), ('coverage', 1), ('autodesk', 1), ('maya', 1), ('industry', 1), ('animation', 1), ('used', 1), ('movie', 1), ('visual', 1), ('game', 1), ('genre', 1)]
[('solidworks', 3), ('fan', 2), ('detail', 2), ('bible', 1), ('want', 1), ('assembly', 1), ('go', 1), ('long', 1), ('sought', 1), ('topic', 1), ('took', 1), ('popular', 1)]
[('photoshop', 2), ('reference', 1), ('book', 1), ('every', 1), ('user', 1), ('need', 1), ('adobe', 1), ('industry', 1), ('leading', 1), ('image', 1), ('editing', 1), ('software', 1), ('newest', 1), ('version', 1), ('boast', 1), ('exciting', 1), ('new', 1), ('feature', 1), ('comprehensive', 1)]
[('d', 2), ('max', 2), ('software', 2), ('complete', 1), ('reference', 1), ('covering', 1), ('newest', 1), ('version', 1), ('autodesk', 1), ('popular', 1), ('modeling', 1), ('animation', 1), ('rendering', 1), ('compositing', 1), ('preferred', 1), ('game', 1), ('developer', 1)]
[('iaa', 2), ('service', 2), ('everything', 1), ('need', 1), ('running', 1), ('amazon', 1), ('web', 1), ('modern', 1), ('business', 1), ('rely', 1), ('infrastructure', 1), ('setup', 1), ('foot', 1), ('bill', 1), ('create', 1), ('application', 1), ('environment', 1)]
[('test', 3), ('driven', 2), ('development', 2), ('practice', 2), ('writing', 2), ('hand', 1), ('guidance', 1), ('creating', 1), ('tdd', 1), ('help', 1), ('developer', 1), ('recognize', 1), ('designed', 1), ('application', 1), ('encourages', 1)]
[('formal', 2), ('technique', 2), ('existing', 1), ('literature', 1), ('currently', 1), ('available', 1), ('student', 1), ('researcher', 1), ('general', 1), ('covering', 1), ('static', 1), ('analysis', 1), ('book', 1), ('present', 1), ('real', 1), ('example', 1), ('called', 1), ('abstract', 1), ('interpretation', 1)]
[('ultimate', 2), ('tour', 2), ('macos', 2), ('mac', 2), ('work', 1), ('play', 1), ('connect', 1), ('share', 1), ('dummy', 1), ('guide', 1), ('operating', 1), ('system', 1), ('written', 1), ('bob', 1), ('dr', 1), ('levitus', 1), ('whether', 1)]
[('building', 2), ('software', 2), ('simulation', 2), ('unique', 1), ('guide', 1), ('design', 1), ('implementation', 1), ('book', 1), ('offer', 1), ('concise', 1), ('introduction', 1), ('art', 1)]
[('database', 2), ('reduce', 1), ('stress', 1), ('timesaving', 1), ('shortcut', 1), ('explore', 1), ('basic', 1), ('build', 1), ('table', 1), ('report', 1), ('corral', 1), ('data', 1), ('access', 1), ('undergone', 1), ('extreme', 1), ('makeover', 1), ('whether', 1)]
[('virtualization', 2), ('plain', 1), ('english', 1), ('guide', 1), ('market', 1), ('leading', 1), ('cloud', 1), ('computing', 1), ('technology', 1), ('single', 1), ('server', 1), ('host', 1), ('dozen', 1), ('hundred', 1), ('virtual', 1), ('machine', 1), ('running', 1), ('variety', 1), ('operating', 1), ('system', 1)]
[('new', 2), ('edition', 2), ('bestseller', 2), ('revised', 1), ('update', 1), ('throughout', 1), ('unparalleled', 1), ('serf', 1), ('full', 1), ('training', 1), ('course', 1), ('world', 1), ('largest', 1), ('data', 1), ('storage', 1), ('company', 1), ('emc', 1)]
[('semantic', 2), ('web', 2), ('next', 1), ('enterprise', 1), ('computing', 1), ('era', 1), ('rely', 1), ('synergy', 1), ('technology', 1), ('model', 1), ('driven', 1), ('software', 1), ('development', 1), ('mdsd', 1), ('organizes', 1), ('system', 1), ('knowledge', 1), ('conceptual', 1), ('domain', 1), ('according', 1), ('meaning', 1)]
[('android', 4), ('skill', 2), ('studio', 2), ('take', 1), ('programming', 1), ('next', 1), ('level', 1), ('unleashing', 1), ('potential', 1), ('expert', 1), ('bridge', 1), ('gap', 1), ('programing', 1)]
[('avionics', 2), ('system', 2), ('design', 1), ('implementation', 1), ('validation', 1), ('aeronautical', 1), ('become', 1), ('extremely', 1), ('complex', 1), ('task', 1), ('due', 1), ('increase', 1), ('functionality', 1), ('deployed', 1), ('current', 1), ('need', 1), ('able', 1)]
[('hacker', 2), ('mobile', 2), ('application', 2), ('see', 1), ('app', 1), ('eye', 1), ('find', 1), ('real', 1), ('source', 1), ('vulnerability', 1), ('handbook', 1), ('comprehensive', 1), ('guide', 1), ('securing', 1), ('approaching', 1)]
[('start', 2), ('animating', 2), ('guide', 2), ('autodesk', 2), ('d', 2), ('max', 2), ('right', 1), ('away', 1), ('tutorial', 1), ('based', 1), ('essential', 1), ('perfect', 1), ('hand', 1), ('quickly', 1), ('using', 1), ('approachable', 1)]
[('public', 2), ('key', 2), ('complete', 1), ('coverage', 1), ('current', 1), ('major', 1), ('cryptosystems', 1), ('underlying', 1), ('mathematics', 1), ('common', 1), ('technique', 1), ('used', 1), ('attacking', 1), ('cryptography', 1), ('application', 1), ('attack', 1), ('introduces', 1)]
[('project', 2), ('pocket', 1), ('guide', 1), ('provides', 1), ('overview', 1), ('telecommunication', 1), ('environment', 1), ('evolved', 1), ('past', 1), ('year', 1), ('illustrating', 1), ('need', 1), ('management', 1), ('significance', 1), ('success', 1), ('company', 1), ('application', 1), ('key', 1)]
[('knowledge', 1), ('need', 1), ('deploy', 1), ('top', 1), ('quality', 1), ('exchange', 1), ('service', 1), ('latest', 1), ('release', 1), ('microsoft', 1), ('messaging', 1), ('system', 1), ('allows', 1), ('easier', 1), ('access', 1), ('mail', 1), ('voicemail', 1), ('calendar', 1), ('variety', 1)]
[('window', 3), ('anniversary', 3), ('update', 2), ('inclusive', 1), ('guide', 1), ('edition', 1), ('bible', 1), ('present', 1), ('ultimate', 1), ('reference', 1), ('enterprise', 1), ('professional', 1), ('user', 1)]
[('visual', 2), ('studio', 2), ('skip', 1), ('basic', 1), ('delve', 1), ('right', 1), ('advanced', 1), ('feature', 1), ('tool', 1), ('professional', 1), ('industry', 1), ('favorite', 1), ('guide', 1), ('getting', 1), ('microsoft', 1), ('primary', 1)]
[('certification', 3), ('cisco', 2), ('announced', 1), ('big', 1), ('change', 1), ('program', 1), ('february', 1), ('current', 1), ('retired', 1), ('begin', 1), ('offering', 1), ('new', 1)]
[('vsphere', 2), ('virtualization', 2), ('edition', 1), ('bestselling', 1), ('book', 1), ('market', 1), ('remains', 1), ('hottest', 1), ('trend', 1), ('world', 1), ('vmware', 1), ('industry', 1), ('widely', 1), ('deployed', 1)]
[('oracle', 3), ('certified', 2), ('exam', 2), ('guide', 2), ('candidate', 1), ('associate', 1), ('database', 1), ('need', 1), ('pas', 1), ('achieve', 1), ('certification', 1), ('prepares', 1), ('taking', 1), ('study', 1), ('cover', 1)]
[('android', 2), ('visual', 1), ('guide', 1), ('developing', 1), ('world', 1), ('hottest', 1), ('new', 1), ('mobile', 1), ('platform', 1), ('o', 1), ('operating', 1), ('system', 1), ('work', 1), ('phone', 1), ('combine', 1), ('camera', 1), ('web', 1), ('browser', 1), ('mail', 1), ('gps', 1), ('mapping', 1), ('tool', 1)]
[('whether', 1), ('designing', 1), ('consumer', 1), ('electronics', 1), ('medical', 1), ('device', 1), ('enterprise', 1), ('web', 1), ('apps', 1), ('new', 1), ('way', 1), ('check', 1), ('supermarket', 1), ('today', 1), ('digitally', 1), ('enabled', 1), ('product', 1), ('service', 1), ('provide', 1), ('opportunity', 1), ('deliver', 1), ('compelling', 1), ('user', 1)]
[('develop', 1), ('skill', 1), ('need', 1), ('design', 1), ('build', 1), ('reliable', 1), ('cost', 1), ('effective', 1), ('cabling', 1), ('infrastructure', 1), ('fully', 1), ('updated', 1), ('growing', 1), ('demand', 1), ('fiber', 1), ('optic', 1), ('large', 1), ('scale', 1), ('communication', 1), ('network', 1)]
[('reporting', 2), ('service', 2), ('guide', 1), ('latest', 1), ('update', 1), ('new', 1), ('release', 1), ('sql', 1), ('server', 1), ('allows', 1), ('create', 1), ('report', 1), ('business', 1), ('intelligence', 1), ('bi', 1), ('solution', 1), ('updated', 1), ('resource', 1), ('team', 1)]
[('galaxy', 2), ('smartphone', 2), ('explore', 1), ('samsung', 1), ('next', 1), ('generation', 1), ('want', 1), ('easy', 1), ('follow', 1), ('guide', 1), ('everything', 1), ('new', 1), ('basic', 1), ('texting', 1), ('accessing', 1), ('internet', 1), ('advanced', 1)]
[('civil', 4), ('autocad', 2), ('complete', 1), ('resource', 1), ('learning', 1), ('mastering', 1), ('ultimate', 1), ('guide', 1), ('new', 1), ('standard', 1), ('engineering', 1), ('software', 1), ('combined', 1), ('experience', 1)]
[('guide', 1), ('spotting', 1), ('fixing', 1), ('usability', 1), ('problem', 1), ('frustrated', 1), ('pop', 1), ('ups', 1), ('form', 1), ('make', 1), ('start', 1), ('miss', 1), ('field', 1), ('nonsensical', 1), ('error', 1), ('message', 1), ('alone', 1), ('book', 1), ('help', 1), ('simply', 1)]
[('autocad', 3), ('beginner', 2), ('guide', 2), ('hand', 1), ('training', 1), ('tutorial', 1), ('driven', 1), ('lt', 1), ('experience', 1), ('required', 1), ('ultimate', 1), ('leading', 1), ('drawing', 1), ('design', 1), ('software', 1)]
[('vulnerability', 2), ('found', 1), ('mac', 1), ('o', 1), ('leopard', 1), ('operating', 1), ('system', 1), ('security', 1), ('researcher', 1), ('realizing', 1), ('importance', 1), ('developing', 1), ('proof', 1), ('concept', 1), ('exploit', 1), ('unique', 1), ('tome', 1), ('first', 1), ('book', 1)]
[('android', 3), ('master', 1), ('challenge', 1), ('user', 1), ('interface', 1), ('development', 1), ('sample', 1), ('pattern', 1), ('google', 1), ('brings', 1), ('full', 1), ('power', 1), ('o', 1), ('smartphone', 1), ('tablet', 1), ('computing', 1), ('designing', 1)]
[('aimed', 1), ('helping', 1), ('business', 1), ('manager', 1), ('clearly', 1), ('communicate', 1), ('helpful', 1), ('book', 1), ('address', 1), ('concern', 1), ('straight', 1), ('provides', 1), ('practical', 1), ('method', 1), ('building', 1), ('collaborative', 1), ('data', 1), ('warehouse', 1), ('clear', 1), ('explanation', 1), ('goal', 1)]
[('image', 2), ('registration', 2), ('theory', 2), ('application', 2), ('hand', 1), ('guide', 1), ('method', 1), ('example', 1), ('wide', 1), ('range', 1), ('real', 1), ('world', 1), ('offer', 1), ('comprehensive', 1)]
[('eos', 2), ('action', 1), ('beauty', 1), ('adventure', 1), ('art', 1), ('start', 1), ('capturing', 1), ('memory', 1), ('today', 1), ('canon', 1), ('rebel', 1), ('dummy', 1), ('ultimate', 1), ('guide', 1), ('taking', 1), ('spectacular', 1), ('photo', 1), ('photography', 1), ('experience', 1), ('required', 1)]
[('database', 2), ('book', 1), ('address', 1), ('issue', 1), ('related', 1), ('managing', 1), ('data', 1), ('across', 1), ('distributed', 1), ('system', 1), ('unique', 1), ('cover', 1), ('traditional', 1), ('theory', 1), ('current', 1), ('research', 1), ('explaining', 1), ('difficulty', 1), ('providing', 1), ('unified', 1), ('user', 1), ('interface', 1), ('global', 1)]
[('visual', 4), ('studio', 3), ('comprehensive', 1), ('guide', 1), ('essential', 1), ('tool', 1), ('window', 1), ('programming', 1), ('feature', 1), ('important', 1), ('update', 1), ('user', 1), ('interface', 1), ('productivity', 1), ('professional', 1)]
[('data', 3), ('dream', 1), ('come', 1), ('true', 1), ('looking', 1), ('improve', 1), ('fluency', 1), ('analytical', 1), ('powerful', 1), ('tool', 1), ('growing', 1), ('company', 1), ('good', 1), ('hide', 1), ('shadow', 1), ('bring', 1), ('forefront', 1)]
[('learn', 2), ('build', 2), ('apps', 2), ('platform', 2), ('mobile', 1), ('device', 1), ('cloud', 1), ('marketplace', 1), ('expanding', 1), ('increasing', 1), ('potential', 1), ('make', 1), ('money', 1), ('guide', 1), ('cross', 1), ('application', 1)]
[('microsoft', 2), ('essential', 1), ('guide', 1), ('latest', 1), ('version', 1), ('server', 1), ('management', 1), ('tool', 1), ('powerful', 1), ('mastering', 1), ('system', 1), ('center', 1), ('operation', 1), ('manager', 1), ('introduces', 1), ('many', 1), ('exciting', 1), ('new', 1), ('enhanced', 1), ('feature', 1)]
[('idea', 2), ('turn', 1), ('app', 1), ('money', 1), ('making', 1), ('goldmine', 1), ('billion', 1), ('apps', 1), ('downloaded', 1), ('apple', 1), ('appstore', 1), ('right', 1), ('combination', 1), ('original', 1), ('feature', 1), ('solid', 1), ('coding', 1), ('unique', 1), ('design', 1)]
[('training', 2), ('d', 2), ('max', 2), ('professional', 1), ('autodesk', 1), ('official', 1), ('guide', 1), ('extremely', 1), ('popular', 1), ('video', 1), ('game', 1), ('designer', 1), ('architect', 1), ('offer', 1), ('integrated', 1), ('modeling', 1), ('animation', 1)]
[('step', 2), ('autodesk', 2), ('learn', 1), ('revit', 1), ('architecture', 1), ('engaging', 1), ('real', 1), ('world', 1), ('continuous', 1), ('tutorial', 1), ('official', 1), ('press', 1), ('book', 1), ('help', 1), ('become', 1), ('proficient', 1), ('popular', 1), ('building', 1), ('information', 1)]
[('antivirus', 3), ('software', 2), ('hack', 1), ('stamp', 1), ('future', 1), ('vulnerability', 1), ('hacker', 1), ('handbook', 1), ('guide', 1), ('process', 1), ('reverse', 1), ('engineering', 1), ('explore', 1), ('detect', 1)]
[('python', 3), ('project', 2), ('skill', 2), ('guide', 1), ('completing', 1), ('ready', 1), ('take', 1), ('next', 1), ('level', 1), ('ultimate', 1), ('resource', 1), ('programmer', 1), ('basic', 1)]
[('business', 3), ('billion', 2), ('worldwide', 1), ('market', 1), ('san', 1), ('na', 1), ('storage', 1), ('anticipated', 1), ('grow', 1), ('consumer', 1), ('commerce', 1), ('matures', 1), ('even', 1), ('greater', 1), ('demand', 1), ('management', 1), ('stored', 1)]
[('aspiring', 2), ('artist', 2), ('essential', 1), ('fundamental', 1), ('animation', 1), ('everywhere', 1), ('video', 1), ('game', 1), ('movie', 1), ('television', 1), ('special', 1), ('effect', 1), ('mobile', 1), ('device', 1), ('etc', 1), ('many', 1), ('animator', 1), ('grown', 1)]
[('healthcare', 3), ('simulation', 3), ('guide', 2), ('operation', 2), ('focused', 1), ('education', 1), ('training', 1), ('growing', 1), ('use', 1), ('within', 1), ('field', 1)]
[('xmpp', 2), ('protocol', 2), ('create', 1), ('real', 1), ('time', 1), ('highly', 1), ('interactive', 1), ('apps', 1), ('quickly', 1), ('powerful', 1), ('robust', 1), ('used', 1), ('wide', 1), ('range', 1), ('application', 1), ('including', 1), ('instant', 1), ('messaging', 1), ('multi', 1), ('user', 1), ('chat', 1), ('voice', 1), ('video', 1)]
[('practice', 2), ('phr', 2), ('sphr', 2), ('challenging', 1), ('question', 1), ('prepare', 1), ('exam', 1), ('professional', 1), ('human', 1), ('resource', 1), ('certification', 1), ('test', 1), ('ideal', 1), ('complement', 1)]
[('d', 2), ('max', 2), ('updated', 1), ('version', 1), ('bestselling', 1), ('book', 1), ('market', 1), ('used', 1), ('winner', 1), ('industry', 1), ('award', 1), ('world', 1), ('popular', 1), ('animation', 1), ('modeling', 1), ('rendering', 1)]
[('powerpoint', 2), ('running', 1), ('fast', 1), ('continues', 1), ('go', 1), ('tool', 1), ('business', 1), ('presentation', 1), ('software', 1), ('help', 1), ('anyone', 1), ('need', 1), ('communicate', 1), ('clearly', 1), ('creating', 1), ('powerful', 1)]
[('revit', 3), ('mastering', 2), ('structure', 2), ('cover', 1), ('basic', 1), ('advanced', 1), ('feature', 1), ('function', 1), ('written', 1), ('team', 1), ('author', 1), ('deeply', 1), ('involved', 1), ('community', 1), ('explains', 1), ('tool', 1)]
[('quickbooks', 2), ('bestselling', 1), ('guide', 1), ('new', 1), ('edition', 1), ('dummy', 1), ('make', 1), ('easier', 1), ('familiarize', 1), ('latest', 1), ('version', 1)]
[('samsung', 2), ('galaxy', 2), ('bestselling', 1), ('guide', 1), ('getting', 1), ('android', 1), ('dummy', 1), ('document', 1), ('feature', 1)]
[('mom', 2), ('ready', 1), ('start', 1), ('blog', 1), ('enhance', 1), ('existing', 1), ('book', 1), ('population', 1), ('blogger', 1), ('growing', 1), ('stunning', 1), ('pace', 1), ('boast', 1), ('audience', 1), ('million', 1), ('woman', 1), ('reading', 1), ('posting', 1)]
[('powerpoint', 3), ('new', 1), ('inexperienced', 1), ('user', 1), ('discover', 1), ('use', 1), ('latest', 1), ('enhancement', 1), ('quickly', 1), ('efficiently', 1), ('produce', 1), ('unique', 1), ('informative', 1), ('presentation', 1)]
[('step', 2), ('maya', 2), ('effect', 2), ('practical', 1), ('guide', 1), ('book', 1), ('ideal', 1), ('primer', 1), ('getting', 1), ('started', 1), ('premier', 1), ('animation', 1), ('software', 1), ('used', 1), ('movie', 1), ('visual', 1), ('game', 1), ('cartoon', 1), ('short', 1), ('film', 1)]
[('autodesk', 3), ('essential', 2), ('guide', 2), ('inventor', 2), ('learning', 1), ('lt', 1), ('new', 1), ('book', 1), ('sybex', 1), ('beautiful', 1), ('task', 1), ('based', 1), ('full', 1), ('color', 1), ('official', 1), ('training', 1), ('help', 1), ('speed', 1), ('topic', 1)]
[('virtualization', 2), ('become', 1), ('megatrend', 1), ('good', 1), ('reason', 1), ('implementing', 1), ('allows', 1), ('efficient', 1), ('utilization', 1), ('network', 1), ('server', 1), ('capacity', 1), ('simpler', 1), ('storage', 1), ('administration', 1), ('reduced', 1), ('energy', 1), ('cost', 1), ('better', 1), ('use', 1), ('corporate', 1), ('capital', 1)]
[('time', 2), ('python', 1), ('make', 1), ('machine', 1), ('learning', 1), ('easy', 1), ('beginner', 1), ('experienced', 1), ('developer', 1), ('computing', 1), ('power', 1), ('increasing', 1), ('exponentially', 1), ('cost', 1), ('decreasing', 1), ('better', 1), ('learn', 1)]
[('software', 2), ('many', 1), ('book', 1), ('computer', 1), ('network', 1), ('engineering', 1), ('none', 1), ('integrate', 1), ('three', 1), ('application', 1), ('integration', 1), ('important', 1), ('increasingly', 1), ('dominates', 1), ('performance', 1), ('reliability', 1)]
[('new', 3), ('feature', 2), ('packed', 2), ('window', 2), ('exciting', 2), ('first', 1), ('last', 1), ('word', 1), ('version', 1), ('microsoft', 1), ('flagship', 1), ('operating', 1), ('system', 1)]
[('word', 3), ('visually', 2), ('learn', 1), ('latest', 1), ('version', 1), ('visual', 1), ('learner', 1), ('prefers', 1), ('see', 1), ('work', 1), ('instead', 1), ('hear', 1), ('long', 1), ('winded', 1), ('explanation', 1), ('teach', 1), ('offer', 1)]
[('powerpoint', 4), ('running', 1), ('using', 1), ('make', 1), ('want', 1), ('pull', 1), ('hair', 1), ('dummy', 1), ('take', 1), ('pain', 1), ('working', 1)]
[('word', 3), ('professional', 2), ('comprehensive', 1), ('guide', 1), ('microsoft', 1), ('us', 1), ('aware', 1), ('many', 1), ('feature', 1), ('confused', 1), ('work', 1), ('best', 1)]
[('d', 2), ('max', 2), ('updated', 1), ('version', 1), ('bestselling', 1), ('book', 1), ('market', 1), ('autodesk', 1), ('top', 1), ('animation', 1), ('software', 1), ('used', 1), ('developer', 1), ('visual', 1), ('effect', 1), ('artist', 1), ('graphic', 1), ('designer', 1), ('film', 1), ('television', 1)]
[('kindle', 2), ('fire', 2), ('hd', 2), ('movie', 1), ('apps', 1), ('game', 1), ('book', 1), ('enjoy', 1), ('hottest', 1), ('device', 1), ('town', 1), ('stunning', 1), ('color', 1), ('touchscreen', 1), ('ultrafast', 1), ('speed', 1), ('sparking', 1)]
[('photo', 2), ('photoshop', 2), ('element', 2), ('better', 1), ('breeze', 1), ('latest', 1), ('version', 1), ('dummy', 1), ('amateur', 1), ('photographer', 1), ('enthusiast', 1), ('turn', 1), ('powerful', 1), ('simpler', 1), ('way', 1), ('edit', 1)]
[('word', 4), ('bestselling', 2), ('guide', 1), ('microsoft', 1), ('first', 1), ('last', 1), ('whole', 1), ('new', 1), ('jump', 1), ('right', 1), ('book', 1), ('learn', 1), ('make', 1)]
[('user', 3), ('power', 2), ('book', 1), ('single', 1), ('reference', 1), ('indispensable', 1), ('excel', 1), ('beginner', 1), ('intermediate', 1), ('everywhere', 1), ('fully', 1), ('updated', 1), ('new', 1), ('release', 1), ('latest', 1), ('edition', 1)]
[('get', 2), ('newest', 2), ('photoshop', 2), ('visual', 1), ('learner', 1), ('speed', 1), ('enhancement', 1), ('constantly', 1), ('evolving', 1), ('version', 1), ('offer', 1), ('new', 1), ('tool', 1), ('photographer', 1), ('popular', 1), ('guide', 1)]
[('software', 2), ('book', 1), ('organized', 1), ('around', 1), ('basic', 1), ('principle', 1), ('project', 1), ('management', 1), ('planning', 1), ('estimating', 1), ('measuring', 1), ('controlling', 1), ('leading', 1), ('communicating', 1), ('managing', 1), ('risk', 1), ('introduces', 1)]
[('ultimate', 1), ('beginner', 1), ('guide', 1), ('programming', 1), ('io', 1), ('environment', 1), ('apple', 1), ('app', 1), ('store', 1), ('gold', 1), ('mine', 1), ('developer', 1), ('apps', 1), ('iphone', 1), ('ipad', 1), ('ipod', 1), ('touch', 1), ('added', 1), ('every', 1), ('day', 1)]
[('google', 4), ('analytics', 3), ('book', 1), ('intended', 1), ('use', 1), ('customer', 1), ('using', 1), ('classic', 1), ('cover', 1), ('newer', 1), ('universal', 1), ('related', 1), ('tag', 1), ('manager', 1), ('free', 1), ('tool', 1), ('used', 1)]
[('gamemaker', 3), ('studio', 3), ('gaming', 1), ('faster', 1), ('official', 1), ('guide', 1), ('allows', 1), ('create', 1), ('game', 1), ('even', 1), ('zero', 1), ('coding', 1), ('experience', 1), ('dummy', 1), ('complete', 1)]
[('statistical', 2), ('conquer', 1), ('complexity', 1), ('open', 1), ('source', 1), ('language', 1), ('fast', 1), ('becoming', 1), ('de', 1), ('facto', 1), ('standard', 1), ('computing', 1), ('analysis', 1), ('science', 1), ('business', 1), ('engineering', 1), ('related', 1), ('field', 1), ('book', 1)]
[('game', 3), ('creating', 2), ('usable', 2), ('realistic', 2), ('character', 2), ('complete', 1), ('guide', 1), ('powerful', 1), ('tool', 1), ('viable', 1), ('requires', 1), ('combination', 1), ('skill', 1), ('book', 1), ('teach', 1), ('creator', 1), ('create', 1)]
[('photoshop', 2), ('step', 2), ('take', 1), ('skill', 1), ('next', 1), ('level', 1), ('user', 1), ('already', 1), ('know', 1), ('basic', 1), ('love', 1), ('colorful', 1), ('guide', 1), ('new', 1), ('trick', 1), ('technique', 1), ('filled', 1), ('beyond', 1), ('essential', 1)]
[('application', 2), ('platform', 2), ('create', 1), ('major', 1), ('smartphone', 1), ('creating', 1), ('myriad', 1), ('version', 1), ('variety', 1), ('mobile', 1), ('phone', 1), ('market', 1), ('daunting', 1), ('even', 1), ('seasoned', 1), ('developer', 1)]
[('big', 2), ('hone', 1), ('analytic', 1), ('talent', 1), ('become', 1), ('part', 1), ('next', 1), ('thing', 1), ('getting', 1), ('data', 1), ('job', 1), ('dummy', 1), ('ultimate', 1), ('guide', 1), ('landing', 1), ('position', 1), ('fastest', 1), ('growing', 1), ('field', 1), ('modern', 1)]
[('java', 2), ('step', 2), ('comprehensive', 1), ('guide', 1), ('sample', 1), ('exercise', 1), ('case', 1), ('study', 1), ('instruction', 1), ('beginning', 1), ('programming', 1), ('object', 1), ('oriented', 1), ('approach', 1), ('straightforward', 1), ('resource', 1), ('getting', 1)]
[('create', 2), ('book', 2), ('ibooks', 2), ('author', 2), ('app', 2), ('design', 1), ('using', 1), ('groundbreaking', 1), ('apple', 1), ('rich', 1), ('interactive', 1), ('use', 1), ('ipad', 1), ('new', 1), ('dummy', 1), ('handy', 1)]
[('sale', 3), ('excel', 2), ('forecasting', 2), ('predicting', 1), ('trend', 1), ('using', 1), ('microsoft', 1), ('marketing', 1), ('professional', 1), ('know', 1), ('biggest', 1), ('challenge', 1), ('face', 1), ('job', 1), ('unlike', 1)]
[('field', 3), ('phase', 2), ('numerical', 2), ('comprehensive', 1), ('self', 1), ('contained', 1), ('stop', 1), ('source', 1), ('discus', 1), ('methodology', 1), ('fundamental', 1), ('way', 1), ('explaining', 1), ('advanced', 1), ('technique', 1), ('solving', 1), ('related', 1), ('continuum', 1), ('model', 1), ('present', 1)]
[('security', 3), ('ultimate', 2), ('hand', 2), ('guide', 2), ('step', 2), ('proactive', 1), ('defense', 1), ('network', 1), ('test', 1), ('lab', 1), ('implementation', 1), ('covering', 1), ('full', 1), ('complement', 1)]
[('wordpress', 2), ('clear', 1), ('blog', 1), ('fog', 1), ('complete', 1), ('visual', 1), ('guide', 1), ('platform', 1), ('teach', 1), ('visually', 1), ('rd', 1), ('edition', 1), ('introduces', 1), ('exciting', 1), ('possibility', 1)]
[('internet', 1), ('traffic', 1), ('grows', 1), ('demand', 1), ('quality', 1), ('service', 1), ('become', 1), ('stringent', 1), ('researcher', 1), ('engineer', 1), ('turn', 1), ('go', 1), ('guide', 1), ('tested', 1), ('proven', 1), ('solution', 1), ('text', 1), ('present', 1), ('latest', 1), ('development', 1), ('high', 1), ('performance', 1), ('switch', 1)]
[('digital', 2), ('sound', 2), ('synthesis', 2), ('long', 1), ('approached', 1), ('using', 1), ('standard', 1), ('filtering', 1), ('technique', 1), ('newer', 1), ('strategy', 1), ('make', 1), ('use', 1), ('physical', 1), ('description', 1), ('musical', 1), ('instrument', 1), ('allow', 1), ('realistic', 1), ('complex', 1)]
[('latest', 1), ('release', 1), ('corba', 1), ('boast', 1), ('many', 1), ('new', 1), ('feature', 1), ('highly', 1), ('anticipated', 1), ('developer', 1), ('including', 1), ('necessary', 1), ('service', 1), ('building', 1), ('fully', 1), ('distributed', 1), ('application', 1), ('regardless', 1), ('platform', 1), ('programming', 1), ('language', 1), ('written', 1), ('leading', 1)]
[('network', 3), ('wdm', 2), ('optical', 2), ('first', 1), ('book', 1), ('focus', 1), ('ip', 1), ('summarizes', 1), ('fundamental', 1), ('mechanism', 1), ('recent', 1), ('development', 1), ('deployment', 1), ('detail', 1), ('software', 1), ('architecture', 1)]
[('skill', 2), ('course', 2), ('biological', 1), ('science', 1), ('department', 1), ('run', 1), ('general', 1), ('first', 1), ('year', 1), ('include', 1), ('combination', 1), ('range', 1), ('topic', 1), ('lab', 1), ('writing', 1), ('presentation', 1), ('basic', 1), ('math', 1), ('statistic', 1), ('section', 1)]
[('always', 3), ('future', 2), ('computing', 2), ('world', 2), ('business', 1), ('rapid', 1), ('technological', 1), ('innovation', 1), ('moving', 1), ('towards', 1), ('ubiquitous', 1), ('surrounded', 1), ('smart', 1), ('machine', 1), ('aware', 1), ('monitoring', 1)]
[('application', 2), ('demonstrates', 2), ('unique', 1), ('book', 1), ('provides', 1), ('overview', 1), ('four', 1), ('technology', 1), ('required', 1), ('building', 1), ('commerce', 1), ('combine', 1), ('best', 1), ('effect', 1), ('single', 1), ('running', 1), ('example', 1), ('electronic', 1), ('retail', 1)]
[('system', 2), ('invaluable', 1), ('reference', 1), ('anyone', 1), ('designing', 1), ('new', 1), ('parallel', 1), ('distributed', 1), ('includes', 1), ('detailed', 1), ('case', 1), ('study', 1), ('specific', 1), ('stanford', 1), ('mit', 1), ('leading', 1), ('research', 1), ('university', 1), ('author', 1), ('emphasize', 1), ('performance', 1), ('surveying', 1)]
[('computer', 2), ('automaton', 1), ('natural', 1), ('language', 1), ('theory', 1), ('topic', 1), ('lying', 1), ('heart', 1), ('science', 1), ('linked', 1), ('computational', 1), ('complexity', 1), ('together', 1), ('discipline', 1), ('help', 1), ('define', 1), ('parameter', 1), ('constitutes', 1), ('structure', 1), ('program', 1)]
[('jpeg', 2), ('standard', 2), ('compression', 2), ('reader', 2), ('image', 1), ('present', 1), ('basic', 1), ('background', 1), ('multimedia', 1), ('technique', 1), ('prepares', 1), ('detailed', 1), ('understanding', 1), ('using', 1), ('underlying', 1), ('theory', 1)]
[('portal', 3), ('websphere', 2), ('maximize', 1), ('power', 1), ('build', 1), ('deploy', 1), ('use', 1), ('develop', 1), ('manage', 1), ('administer', 1), ('application', 1), ('probably', 1), ('already', 1), ('building', 1), ('managing', 1), ('web', 1), ('way', 1)]
[('matlab', 2), ('step', 2), ('master', 1), ('matrix', 1), ('laboratory', 1), ('computational', 1), ('environment', 1), ('offer', 1), ('rich', 1), ('set', 1), ('capability', 1), ('efficiently', 1), ('solve', 1), ('variety', 1), ('complex', 1), ('analysis', 1), ('simulation', 1), ('optimization', 1), ('problem', 1), ('flexible', 1), ('powerful', 1), ('relatively', 1)]
[('save', 2), ('time', 2), ('window', 2), ('xp', 2), ('computer', 1), ('supposed', 1), ('user', 1), ('know', 1), ('often', 1), ('opposite', 1), ('seems', 1), ('true', 1), ('list', 1), ('shortcut', 1), ('every', 1), ('single', 1), ('day', 1), ('timesaving', 1), ('technique', 1), ('dummy', 1), ('nd', 1), ('edition', 1)]
[('guide', 1), ('developer', 1), ('power', 1), ('user', 1), ('build', 1), ('pc', 1), ('connectivity', 1), ('application', 1), ('symbian', 1), ('o', 1), ('unique', 1), ('handbook', 1), ('provides', 1), ('information', 1), ('needed', 1), ('job', 1), ('fully', 1), ('worked', 1), ('example', 1), ('t', 1), ('section', 1), ('provide', 1)]
[('symbian', 2), ('o', 2), ('aspect', 2), ('book', 1), ('explains', 1), ('key', 1), ('feature', 1), ('help', 1), ('write', 1), ('effective', 1), ('code', 1), ('focus', 1), ('good', 1), ('style', 1), ('apply', 1), ('particularly', 1), ('item', 1), ('used', 1), ('target', 1), ('particular', 1), ('operating', 1), ('system', 1)]
[('information', 2), ('essential', 1), ('overview', 1), ('quantum', 1), ('whether', 1), ('inscribed', 1), ('mark', 1), ('stone', 1), ('tablet', 1), ('encoded', 1), ('magnetic', 1), ('domain', 1), ('hard', 1), ('drive', 1), ('stored', 1), ('physical', 1), ('object', 1), ('thus', 1), ('made', 1), ('subject', 1), ('law', 1), ('physic', 1), ('traditionally', 1)]
[('image', 3), ('processing', 3), ('application', 2), ('basic', 1), ('advanced', 1), ('learn', 1), ('master', 1), ('compression', 1), ('outstanding', 1), ('state', 1), ('art', 1), ('reference', 1), ('fundamental', 1), ('sophisticated', 1), ('principle', 1)]
[('reader', 2), ('wireless', 2), ('home', 2), ('step', 2), ('fun', 1), ('project', 1), ('valuable', 1), ('content', 1), ('join', 1), ('force', 1), ('enable', 1), ('turn', 1), ('network', 1), ('high', 1), ('performance', 1), ('infrastructure', 1), ('capable', 1), ('entertainment', 1), ('networking', 1), ('even', 1), ('automation', 1), ('instruction', 1), ('help', 1)]
[('computer', 2), ('basic', 1), ('arithmetic', 1), ('made', 1), ('enjoyable', 1), ('accessible', 1), ('special', 1), ('program', 1), ('included', 1), ('hand', 1), ('learning', 1), ('combination', 1), ('book', 1), ('associated', 1), ('virtual', 1), ('fantastic', 1), ('experience', 1), ('last', 1), ('fifty', 1), ('year', 1), ('shown', 1)]
[('wireless', 2), ('network', 2), ('ofdm', 1), ('based', 1), ('broadband', 1), ('cover', 1), ('latest', 1), ('technological', 1), ('advance', 1), ('digital', 1), ('broadcasting', 1), ('lan', 1), ('mobile', 1), ('achieve', 1), ('high', 1), ('spectral', 1), ('efficiency', 1), ('meet', 1), ('peak', 1), ('requirement', 1), ('multimedia', 1), ('traffic', 1), ('book', 1), ('emphasizes', 1)]
[('state', 2), ('art', 2), ('high', 2), ('performance', 2), ('computing', 2), ('prominent', 1), ('researcher', 1), ('around', 1), ('world', 1), ('gathered', 1), ('present', 1), ('technique', 1), ('innovation', 1), ('hpc', 1), ('including', 1), ('programming', 1), ('model', 1), ('parallel', 1)]
[('good', 3), ('code', 2), ('thumb', 1), ('gregory', 1), ('wilson', 1), ('dr', 1), ('dobbs', 1), ('journal', 1), ('october', 1), ('disparage', 1), ('ability', 1), ('write', 1), ('highest', 1), ('level', 1), ('art', 1), ('confuse', 1), ('writing', 1), ('developing', 1), ('software', 1), ('difference', 1)]
[('software', 2), ('large', 1), ('refactorings', 1), ('look', 1), ('method', 1), ('establish', 1), ('design', 1), ('improvement', 1), ('important', 1), ('independent', 1), ('activity', 1), ('development', 1), ('help', 1), ('ensure', 1), ('continues', 1), ('adapt', 1), ('improve', 1), ('remain', 1), ('easy', 1), ('modify', 1), ('without', 1)]
[('aspect', 2), ('control', 2), ('perfect', 1), ('digital', 1), ('photographer', 1), ('depth', 1), ('information', 1), ('color', 1), ('astonishing', 1), ('anyone', 1), ('need', 1), ('detailed', 1), ('every', 1), ('image', 1), ('revel', 1), ('book', 1), ('computer', 1), ('art', 1), ('magazine', 1)]
[('computer', 2), ('science', 2), ('software', 2), ('groundbreaking', 1), ('unifying', 1), ('theory', 1), ('low', 1), ('cost', 1), ('high', 1), ('quality', 1), ('cognitive', 1), ('dynamic', 1), ('represents', 1), ('culmination', 1), ('thirty', 1), ('year', 1), ('author', 1), ('hand', 1), ('experience', 1), ('development', 1)]
[('project', 2), ('management', 2), ('straight', 1), ('scoop', 1), ('ingenious', 1), ('strategy', 1), ('work', 1), ('studied', 1), ('traditional', 1), ('process', 1), ('discover', 1), ('reality', 1), ('fall', 1), ('short', 1), ('done', 1), ('idealistic', 1), ('theory', 1), ('thing', 1)]
[('fiber', 2), ('optic', 2), ('year', 1), ('future', 1), ('present', 1), ('time', 1), ('come', 1), ('act', 1), ('want', 1), ('make', 1), ('career', 1), ('fast', 1), ('growing', 1), ('field', 1), ('installer', 1), ('technician', 1), ('guide', 1), ('comprehensive', 1), ('resource', 1), ('designed', 1), ('prepare', 1)]
[('software', 2), ('life', 2), ('evolution', 1), ('long', 1), ('recognized', 1), ('problematic', 1), ('challenging', 1), ('area', 1), ('field', 1), ('engineering', 1), ('evidenced', 1), ('high', 1), ('often', 1), ('cycle', 1), ('cost', 1), ('attributed', 1), ('activity', 1)]
[('laptop', 2), ('build', 1), ('huge', 1), ('success', 1), ('dummy', 1), ('second', 1), ('edition', 1), ('eight', 1), ('minibooks', 1), ('comprising', 1), ('nearly', 1), ('page', 1), ('give', 1), ('owner', 1), ('detailed', 1), ('information', 1), ('advice', 1), ('need', 1), ('make', 1), ('computer', 1), ('offer', 1), ('focused', 1), ('content', 1)]
[('advent', 1), ('internet', 1), ('medium', 1), ('performing', 1), ('business', 1), ('transaction', 1), ('need', 1), ('secure', 1), ('communication', 1), ('channel', 1), ('never', 1), ('paramount', 1), ('study', 1), ('behavioral', 1), ('biometrics', 1), ('verification', 1), ('identification', 1), ('individual', 1)]
[('symbian', 2), ('o', 2), ('continues', 1), ('top', 1), ('operating', 1), ('system', 1), ('smartphones', 1), ('across', 1), ('world', 1), ('number', 1), ('phone', 1), ('sold', 1), ('beyond', 1), ('million', 1), ('mark', 1), ('developer', 1), ('realize', 1), ('huge', 1), ('opportunity', 1), ('available', 1), ('designing', 1)]
[('step', 3), ('pc', 3), ('looking', 1), ('instruction', 1), ('learning', 1), ('dummy', 1), ('nd', 1), ('edition', 1), ('exactly', 1), ('need', 1), ('author', 1), ('nancy', 1), ('muir', 1), ('know', 1), ('beginner', 1), ('speed', 1), ('hurry', 1), ('fun', 1), ('easy', 1), ('way', 1), ('lengthy', 1)]
[('book', 2), ('first', 1), ('share', 1), ('necessary', 1), ('algorithm', 1), ('creating', 1), ('code', 1), ('experiment', 1), ('design', 1), ('problem', 1), ('processing', 1), ('language', 1), ('offer', 1), ('series', 1), ('generic', 1), ('procedure', 1), ('function', 1), ('building', 1), ('block', 1), ('encourages', 1), ('use', 1)]
[('professional', 2), ('cisco', 2), ('ideal', 1), ('us', 1), ('technology', 1), ('daily', 1), ('basis', 1), ('anyone', 1), ('preparing', 1), ('certified', 1), ('network', 1), ('ccnp', 1), ('certification', 1), ('topic', 1), ('covered', 1), ('depth', 1), ('introductory', 1), ('level', 1), ('book', 1)]
[('new', 2), ('gain', 1), ('perspective', 1), ('brain', 1), ('work', 1), ('inspires', 1), ('avenue', 1), ('design', 1), ('computer', 1), ('science', 1), ('engineering', 1), ('unique', 1), ('book', 1), ('first', 1), ('kind', 1), ('introduce', 1), ('human', 1), ('memory', 1), ('basic', 1), ('cognition', 1), ('term', 1), ('physical', 1), ('circuit', 1), ('beginning', 1)]
[('overview', 2), ('heterogeneous', 2), ('parallel', 2), ('analytical', 1), ('state', 1), ('art', 1), ('open', 1), ('problem', 1), ('future', 1), ('trend', 1), ('distributed', 1), ('computing', 1), ('book', 1), ('provides', 1), ('ongoing', 1), ('academic', 1), ('research', 1), ('development', 1), ('us', 1)]
[('user', 2), ('openoffice', 2), ('org', 2), ('suite', 2), ('us', 1), ('straightforward', 1), ('dummy', 1), ('style', 1), ('show', 1), ('linux', 1), ('window', 1), ('use', 1), ('desktop', 1), ('productivity', 1), ('interface', 1), ('feature', 1), ('set', 1), ('similar', 1), ('office', 1), ('work', 1), ('transparently', 1)]
[('first', 2), ('single', 2), ('source', 2), ('reference', 2), ('grid', 2), ('utility', 2), ('computing', 2), ('covering', 1), ('state', 1), ('art', 1), ('economy', 1), ('research', 1), ('book', 1), ('present', 1), ('integrated', 1), ('market', 1), ('oriented', 1), ('divided', 1), ('four', 1), ('main', 1)]
[('game', 2), ('million', 2), ('come', 1), ('computer', 1), ('number', 1), ('astounding', 1), ('world', 1), ('top', 1), ('professional', 1), ('gamer', 1), ('half', 1), ('dollar', 1), ('shooting', 1), ('virtual', 1), ('monster', 1), ('screen', 1), ('online', 1), ('claim', 1), ('literally', 1), ('subscriber', 1), ('worldwide', 1), ('spending', 1)]
[('design', 2), ('ai', 2), ('pioneering', 1), ('work', 1), ('show', 1), ('using', 1), ('diagram', 1), ('facilitates', 1), ('better', 1), ('system', 1), ('publication', 1), ('diagrammatic', 1), ('reasoning', 1), ('mark', 1), ('important', 1), ('milestone', 1), ('anyone', 1), ('seeking', 1), ('graphical', 1), ('user', 1), ('interface', 1), ('support', 1), ('decision', 1), ('making', 1)]
[('intelligent', 2), ('evolving', 2), ('theory', 1), ('technique', 1), ('first', 1), ('resource', 1), ('eis', 1), ('clear', 1), ('demand', 1), ('advanced', 1), ('process', 1), ('industry', 1), ('defense', 1), ('internet', 1), ('communication', 1), ('voip', 1), ('application', 1), ('yet', 1), ('adaptive', 1), ('system', 1)]
[('computer', 2), ('forensics', 1), ('fighting', 1), ('malicious', 1), ('code', 1), ('analyzing', 1), ('incident', 1), ('increasing', 1), ('reliance', 1), ('come', 1), ('growing', 1), ('risk', 1), ('malware', 1), ('security', 1), ('professional', 1), ('find', 1), ('plenty', 1), ('solution', 1), ('book', 1), ('problem', 1)]
[('html', 3), ('new', 2), ('welcome', 1), ('future', 1), ('web', 1), ('packed', 1), ('feature', 1), ('including', 1), ('content', 1), ('specific', 1), ('element', 1), ('audio', 1), ('video', 1), ('playback', 1), ('canvas', 1), ('drawing', 1), ('many', 1), ('others', 1), ('begin', 1), ('smashing', 1), ('everything', 1)]
[('technical', 2), ('document', 2), ('unique', 1), ('integrative', 1), ('team', 1), ('centered', 1), ('approach', 1), ('writing', 1), ('formatting', 1), ('professional', 1), ('difficulty', 1), ('producing', 1), ('high', 1), ('quality', 1), ('multiple', 1), ('contributor', 1), ('faced', 1), ('tight', 1), ('deadline', 1), ('need', 1)]
[('step', 2), ('guide', 2), ('electronic', 2), ('network', 2), ('connecting', 1), ('device', 1), ('home', 1), ('allows', 1), ('share', 1), ('internet', 1), ('connection', 1), ('photo', 1), ('video', 1), ('music', 1), ('game', 1), ('console', 1), ('printer', 1), ('gadget', 1), ('show', 1)]
[('small', 2), ('business', 2), ('facebook', 2), ('guide', 1), ('marketing', 1), ('number', 1), ('social', 1), ('networking', 1), ('site', 1), ('offer', 1), ('opportunity', 1), ('reach', 1), ('million', 1), ('registered', 1), ('user', 1), ('advertising', 1), ('message', 1), ('owner', 1), ('local', 1), ('benefit', 1), ('tip', 1), ('best', 1), ('practice', 1), ('provided', 1), ('insider', 1), ('learn', 1), ('new', 1), ('way', 1), ('attract', 1), ('customer', 1)]
[('story', 2), ('presentation', 2), ('learn', 1), ('use', 1), ('visuals', 1), ('make', 1), ('top', 1), ('notch', 1), ('called', 1), ('cast', 1), ('content', 1), ('audience', 1), ('tell', 1), ('quiet', 1), ('success', 1), ('developed', 1), ('twelve', 1), ('year', 1), ('period', 1), ('method', 1), ('help', 1), ('enterprise', 1)]
[('methodologically', 1), ('sophisticated', 1), ('comprehensive', 1), ('approach', 1), ('applying', 1), ('agile', 1), ('fixed', 1), ('price', 1), ('contract', 1), ('project', 1), ('maximizing', 1), ('customer', 1), ('supplier', 1), ('relationship', 1), ('interesting', 1), ('necessary', 1), ('manager', 1), ('lawyer', 1), ('walter', 1), ('jaburek', 1)]
[('vision', 3), ('machine', 2), ('student', 1), ('engineer', 1), ('book', 1), ('explains', 1), ('concise', 1), ('hand', 1), ('way', 1), ('using', 1), ('development', 1), ('module', 1), ('labview', 1), ('software', 1), ('national', 1), ('instrument', 1), ('following', 1), ('short', 1), ('introduction', 1), ('basic', 1)]
[('unstructured', 3), ('data', 3), ('analytics', 2), ('turn', 1), ('valuable', 1), ('business', 1), ('insight', 1), ('provides', 1), ('accessible', 1), ('non', 1), ('technical', 1), ('introduction', 1), ('analysis', 1), ('written', 1), ('global', 1), ('expert', 1), ('space', 1), ('book', 1), ('present', 1)]
[('executive', 2), ('book', 1), ('waiting', 1), ('clear', 1), ('deep', 1), ('expertise', 1), ('nontechnical', 1), ('language', 1), ('describes', 1), ('cybersecurity', 1), ('risk', 1), ('decision', 1), ('need', 1), ('make', 1), ('address', 1), ('crisp', 1), ('quick', 1)]
[('guide', 2), ('tcp', 2), ('ip', 2), ('internet', 2), ('protocol', 2), ('date', 1), ('depth', 1), ('mastery', 1), ('ultimate', 1), ('glue', 1), ('hold', 1), ('together', 1), ('computer', 1), ('talk', 1), ('another', 1), ('transmission', 1), ('control', 1), ('networking', 1), ('professional', 1), ('working', 1), ('toward', 1), ('ccna', 1), ('specialty', 1), ('certification', 1), ('firm', 1)]
[('risk', 3), ('infrastructure', 2), ('protection', 2), ('assessment', 2), ('critical', 1), ('management', 1), ('cover', 1), ('history', 1), ('crtical', 1), ('various', 1), ('structure', 1), ('make', 1), ('homeland', 1), ('security', 1), ('enterprise', 1), ('author', 1), ('examine', 1), ('public', 1), ('private', 1), ('sector', 1), ('evolution', 1), ('law', 1), ('regulation', 1), ('policy', 1), ('challenge', 1), ('facing', 1)]
[('translation', 5), ('project', 2), ('based', 2), ('approach', 2), ('technology', 2), ('provides', 1), ('student', 1), ('trainee', 1), ('translator', 1), ('real', 1), ('time', 1), ('experience', 1), ('platform', 1), ('management', 1), ('system', 1), ('teamwork', 1), ('book', 1), ('divided', 1), ('seven', 1), ('chapter', 1), ('reflecting', 1), ('building', 1), ('block', 1)]
[('application', 3), ('technology', 2), ('type', 2), ('ii', 2), ('education', 2), ('spark', 1), ('student', 1), ('actually', 1), ('want', 1), ('learn', 1), ('creative', 1), ('make', 1), ('possible', 1), ('teach', 1), ('new', 1), ('effective', 1), ('way', 1), ('us', 1), ('project', 1), ('case', 1), ('study', 1), ('software', 1), ('clearly', 1), ('explains', 1), ('method', 1), ('strategy', 1), ('presently', 1), ('used', 1), ('teacher', 1)]
[('communication', 2), ('social', 2), ('many', 2), ('anti', 1), ('globalisation', 1), ('protest', 1), ('seattle', 1), ('adoption', 1), ('new', 1), ('information', 1), ('technology', 1), ('icts', 1), ('movement', 1), ('activist', 1), ('offered', 1), ('prospect', 1), ('development', 1), ('global', 1), ('cyberprotest', 1), ('internet', 1), ('transnational', 1), ('facility', 1), ('offer', 1), ('revolutionary', 1), ('potential', 1)]
[('search', 2), ('strategy', 2), ('web', 1), ('savvy', 1), ('shortcut', 1), ('online', 1), ('research', 1), ('provides', 1), ('reader', 1), ('skill', 1), ('level', 1), ('efficient', 1), ('locating', 1), ('retrieving', 1), ('evaluating', 1), ('information', 1), ('internet', 1), ('utilizing', 1), ('experience', 1), ('reporter', 1), ('working', 1), ('deadline', 1), ('author', 1), ('barbara', 1), ('friedman', 1), ('offer', 1), ('effective', 1), ('method', 1), ('finding', 1), ('useful', 1)]
[('online', 3), ('issue', 3), ('news', 2), ('volume', 1), ('offer', 1), ('unique', 1), ('timely', 1), ('insight', 1), ('state', 1), ('exploring', 1), ('surrounding', 1), ('convergence', 1), ('print', 1), ('electronic', 1), ('platform', 1), ('public', 1), ('response', 1), ('provides', 1), ('overview', 1), ('newspaper', 1), ('including', 1), ('current', 1), ('trend', 1), ('legal', 1), ('covering', 1), ('credibility', 1), ('perception', 1)]
[('internet', 3), ('chinese', 2), ('government', 2), ('china', 1), ('examines', 1), ('cultural', 1), ('political', 1), ('ramification', 1), ('society', 1), ('rapid', 1), ('growth', 1), ('enthusiastically', 1), ('embraced', 1), ('rushed', 1), ('seize', 1), ('control', 1), ('virtual', 1), ('environment', 1), ('individual', 1), ('responded', 1), ('impassioned', 1), ('campaign', 1)]
[('chinese', 3), ('medicine', 3), ('guide', 1), ('internet', 1), ('free', 1), ('reader', 1), ('sift', 1), ('countless', 1), ('website', 1), ('find', 1), ('date', 1), ('high', 1), ('quality', 1), ('reliable', 1), ('information', 1), ('type', 1), ('handy', 1), ('resource', 1), ('provides', 1), ('introduction', 1), ('term', 1), ('philosophy', 1), ('addition', 1), ('extensive', 1), ('categorized', 1), ('listing', 1), ('online', 1)]
[('social', 3), ('medium', 3), ('emergency', 2), ('management', 2), ('although', 1), ('recent', 1), ('global', 1), ('disaster', 1), ('clearly', 1), ('demonstrated', 1), ('power', 1), ('communicate', 1), ('critical', 1), ('information', 1), ('real', 1), ('time', 1), ('true', 1), ('potential', 1), ('yet', 1), ('unleashed', 1), ('crisis', 1), ('communication', 1), ('leveraging', 1), ('web', 1), ('technology', 1), ('teach', 1), ('professional', 1), ('use', 1), ('improve', 1)]
[('emergency', 3), ('social', 2), ('medium', 2), ('application', 2), ('management', 2), ('emerging', 1), ('called', 1), ('web', 1), ('technology', 1), ('continue', 1), ('impact', 1), ('practice', 1), ('function', 1), ('every', 1), ('public', 1), ('safety', 1), ('sector', 1), ('disaster', 1), ('system', 1), ('modern', 1), ('prepares', 1), ('manager', 1), ('first', 1), ('responder', 1), ('successfully', 1), ('appl', 1)]
[('medium', 3), ('music', 2), ('global', 2), ('social', 2), ('book', 1), ('relationship', 1), ('communication', 1), ('globalization', 1), ('explored', 1), ('unique', 1), ('empirical', 1), ('study', 1), ('electronic', 1), ('practitioner', 1), ('use', 1), ('myspace', 1), ('facebook', 1), ('youtube', 1), ('twitter', 1), ('understand', 1), ('significance', 1), ('emerging', 1), ('nexus', 1), ('context', 1)]
[('perform', 1), ('word', 1), ('processing', 1), ('movie', 1), ('editing', 1), ('financial', 1), ('planning', 1), ('database', 1), ('management', 1), ('internet', 1), ('surfing', 1), ('web', 1), ('page', 1), ('creation', 1), ('countless', 1), ('task', 1), ('simply', 1), ('quickly', 1), ('might', 1), ('thought', 1), ('possible', 1), ('thorough', 1), ('friendly', 1), ('resource', 1), ('show', 1), ('coverage', 1), ('includes', 1), ('ibook', 1), ('new', 1), ('feature', 1), ('mac', 1), ('o', 1), ('panther', 1), ('finder', 1)]
[('small', 1), ('new', 1), ('tablet', 1), ('pc', 1), ('electronics', 1), ('expert', 1), ('bill', 1), ('mann', 1), ('provides', 1), ('detail', 1), ('getting', 1), ('latest', 1), ('advancement', 1), ('portable', 1), ('computing', 1), ('plus', 1), ('show', 1), ('connect', 1), ('use', 1), ('peripheral', 1), ('printer', 1), ('fax', 1), ('machine', 1), ('camera', 1), ('scanner', 1)]
[('ebay', 3), ('sale', 3), ('tool', 3), ('data', 2), ('already', 1), ('answer', 1), ('boosting', 1), ('profit', 1), ('know', 1), ('look', 1), ('turn', 1), ('dollar', 1), ('show', 1), ('use', 1), ('powerful', 1), ('available', 1), ('sell', 1), ('smarter', 1), ('make', 1), ('money', 1), ('every', 1), ('learn', 1), ('mine', 1), ('andale', 1), ('research', 1), ('terapeak', 1), ('deepanalysis', 1)]
[('taking', 2), ('digital', 2), ('photograph', 2), ('avoid', 1), ('time', 1), ('consuming', 1), ('task', 1), ('image', 1), ('editing', 1), ('picture', 1), ('go', 1), ('dave', 1), ('hus', 1), ('walk', 1), ('fundamental', 1), ('dispelling', 1), ('photography', 1), ('myth', 1), ('teaching', 1), ('maximize', 1), ('camera', 1), ('feature', 1), ('available', 1), ('discover', 1), ('take', 1), ('clear', 1), ('sharp', 1), ('professional', 1), ('level', 1)]
[('step', 2), ('bring', 1), ('new', 1), ('life', 1), ('graphic', 1), ('easily', 1), ('create', 1), ('publish', 1), ('movie', 1), ('sound', 1), ('file', 1), ('presentation', 1), ('interactive', 1), ('web', 1), ('content', 1), ('help', 1), ('guide', 1), ('everything', 1), ('flash', 1), ('show', 1), ('tremendously', 1), ('powerful', 1), ('multimedia', 1), ('design', 1), ('tool', 1), ('easy', 1), ('follow', 1), ('organized', 1), ('bit', 1)]
[('develop', 1), ('deploy', 1), ('powerful', 1), ('web', 1), ('based', 1), ('application', 1), ('multiple', 1), ('platform', 1), ('including', 1), ('unix', 1), ('nt', 1), ('aix', 1), ('packed', 1), ('essential', 1), ('information', 1), ('advanced', 1), ('technique', 1), ('developer', 1), ('system', 1), ('integrator', 1), ('book', 1), ('help', 1), ('maximize', 1), ('every', 1), ('aspect', 1), ('websphere', 1), ('functionality', 1), ('fully', 1), ('leverage', 1), ('power', 1), ('key', 1), ('infrastructure', 1)]
[('step', 2), ('solid', 1), ('introduction', 1), ('premier', 1), ('web', 1), ('graphic', 1), ('creation', 1), ('tool', 1), ('hand', 1), ('beginner', 1), ('guide', 1), ('designed', 1), ('easy', 1), ('learning', 1), ('book', 1), ('filled', 1), ('project', 1), ('section', 1), ('helpful', 1), ('hint', 1), ('minute', 1), ('drill', 1)]
[('discover', 1), ('make', 1), ('biometrics', 1), ('technology', 1), ('involving', 1), ('scanning', 1), ('analyzing', 1), ('unique', 1), ('body', 1), ('characteristic', 1), ('matching', 1), ('information', 1), ('stored', 1), ('database', 1), ('part', 1), ('overall', 1), ('security', 1), ('plan', 1), ('hand', 1), ('guide', 1), ('includes', 1), ('deployment', 1), ('scenario', 1), ('cost', 1), ('analysis', 1), ('privacy', 1), ('issue', 1)]
[('using', 2), ('definitive', 1), ('reference', 1), ('gcc', 1), ('open', 1), ('source', 1), ('compiler', 1), ('date', 1), ('information', 1), ('latest', 1), ('feature', 1), ('including', 1), ('compiling', 1), ('java', 1), ('code', 1), ('building', 1), ('application', 1), ('multiple', 1), ('language', 1), ('debugger', 1), ('linking', 1), ('library', 1)]
[('window', 1), ('xp', 1), ('using', 1), ('friendly', 1), ('solution', 1), ('oriented', 1), ('guide', 1), ('see', 1), ('world', 1), ('popular', 1), ('operating', 1), ('system', 1), ('including', 1), ('making', 1), ('movie', 1), ('playing', 1), ('music', 1), ('learn', 1), ('new', 1), ('update', 1), ('networking', 1), ('home', 1), ('office', 1), ('faster', 1), ('boot', 1), ('feature', 1), ('better', 1), ('security', 1), ('improved', 1), ('web', 1), ('browsing', 1)]
[('digitized', 2), ('chapter', 1), ('examining', 1), ('broad', 1), ('range', 1), ('issue', 1), ('including', 1), ('sexuality', 1), ('politics', 1), ('education', 1), ('race', 1), ('gender', 1), ('relation', 1), ('environment', 1), ('social', 1), ('protest', 1), ('movement', 1), ('life', 1), ('argues', 1), ('making', 1), ('sense', 1), ('culture', 1), ('mean', 1), ('looking', 1), ('past', 1), ('glossy', 1), ('surface', 1), ('techno', 1), ('gear', 1), ('ask', 1), ('deeper', 1), ('question', 1), ('utilize', 1), ('technology', 1), ('create', 1)]
[('reimagining', 1), ('communication', 1), ('experience', 1), ('explores', 1), ('embodied', 1), ('experiential', 1), ('aspect', 1), ('medium', 1), ('form', 1), ('across', 1), ('variety', 1), ('contemporary', 1), ('platform', 1), ('us', 1), ('content', 1), ('variation', 1), ('audience', 1), ('professional', 1), ('role', 1), ('diverse', 1), ('body', 1), ('contribution', 1), ('offer', 1), ('broad', 1), ('range', 1), ('perspective', 1), ('memory', 1), ('embodiment', 1), ('time', 1), ('volume', 1), ('organized', 1)]
[('adobe', 2), ('digital', 1), ('camera', 1), ('enthusiast', 1), ('jumping', 1), ('post', 1), ('production', 1), ('enhancement', 1), ('manipulation', 1), ('looking', 1), ('quick', 1), ('answer', 1), ('fantastic', 1), ('ready', 1), ('reference', 1), ('packed', 1), ('inspirational', 1), ('color', 1), ('image', 1), ('photoshop', 1), ('written', 1), ('australia', 1), ('official', 1), ('element', 1), ('ambassador', 1), ('show', 1), ('striking', 1), ('result', 1)]
[('teach', 2), ('delivers', 1), ('good', 1), ('latest', 1), ('adobe', 1), ('product', 1), ('graphic', 1), ('user', 1), ('level', 1), ('indesign', 1), ('command', 1), ('work', 1), ('use', 1), ('includes', 1), ('short', 1), ('real', 1), ('world', 1), ('project', 1), ('enough', 1), ('information', 1), ('able', 1), ('learn', 1), ('absorb', 1), ('plus', 1), ('provides', 1), ('detail', 1), ('converting', 1)]
[('web', 2), ('application', 2), ('cookin', 1), ('dreamweaver', 1), ('mx', 1), ('using', 1), ('unique', 1), ('compelling', 1), ('cookbook', 1), ('filled', 1), ('ready', 1), ('use', 1), ('solution', 1), ('featuring', 1), ('full', 1), ('menu', 1), ('extension', 1), ('command', 1), ('including', 1), ('asp', 1), ('coldfusion', 1), ('book', 1), ('help', 1), ('deploy', 1), ('dynamic', 1), ('sophisticated', 1), ('instantly', 1), ('expertly', 1)]
[('version', 2), ('step', 2), ('fully', 1), ('updated', 1), ('best', 1), ('seller', 1), ('launched', 1), ('extremely', 1), ('successful', 1), ('everything', 1), ('series', 1), ('friendly', 1), ('solution', 1), ('oriented', 1), ('book', 1), ('filled', 1), ('example', 1), ('using', 1), ('imac', 1), ('offer', 1), ('coverage', 1), ('mac', 1), ('o', 1), ('latest', 1), ('itools', 1), ('imovie', 1), ('quicktime', 1), ('appleworks', 1), ('palm', 1), ('desktop', 1), ('quicken', 1)]
[('maximize', 1), ('powerful', 1), ('feature', 1), ('imac', 1), ('using', 1), ('comprehensive', 1), ('easy', 1), ('guide', 1)]
[('java', 2), ('step', 2), ('example', 1), ('book', 1), ('drawn', 1), ('real', 1), ('life', 1), ('show', 1), ('effectively', 1), ('use', 1), ('component', 1), ('develop', 1), ('enterprise', 1), ('level', 1), ('database', 1), ('application', 1), ('david', 1), ('rosenberg', 1), ('vice', 1), ('president', 1), ('platform', 1), ('group', 1), ('oracle', 1), ('corporation', 1)]
[('rsa', 2), ('security', 2), ('want', 1), ('keep', 1), ('web', 1), ('site', 1), ('safe', 1), ('learn', 1), ('implement', 1), ('cryptography', 1), ('secure', 1), ('form', 1), ('data', 1), ('encryption', 1), ('highly', 1), ('accessible', 1), ('packed', 1), ('detailed', 1), ('case', 1), ('study', 1), ('practical', 1), ('guide', 1), ('written', 1), ('conjunction', 1), ('trusted', 1), ('name', 1), ('tm', 1), ('part', 1), ('press', 1), ('series', 1)]
[('window', 3), ('practical', 2), ('network', 2), ('help', 1), ('building', 1), ('administering', 1), ('system', 1), ('administration', 1), ('george', 1), ('spalding', 1), ('mcse', 1), ('handbook', 1), ('need', 1), ('install', 1), ('configure', 1), ('manage', 1), ('based', 1), ('desktop', 1), ('reference', 1), ('guarantee', 1), ('depth', 1), ('coverage', 1), ('every', 1), ('area', 1), ('critical', 1), ('administrator', 1), ('security', 1)]
[('exam', 4), ('wireless', 2), ('official', 1), ('preparation', 1), ('new', 1), ('pwo', 1), ('authorized', 1), ('developer', 1), ('cwnp', 1), ('program', 1), ('study', 1), ('guide', 1), ('thoroughly', 1), ('cover', 1), ('topic', 1), ('entry', 1), ('level', 1), ('certification', 1), ('work', 1), ('pace', 1), ('system', 1), ('lesson', 1), ('scenario', 1), ('review', 1), ('question', 1), ('learn', 1), ('material', 1), ('quickly', 1)]
[('rfid', 3), ('comptia', 2), ('expert', 2), ('name', 1), ('professional', 1), ('certification', 1), ('fast', 1), ('track', 1), ('becoming', 1), ('certified', 1), ('affordable', 1), ('portable', 1), ('study', 1), ('tool', 1), ('inside', 1), ('guide', 1), ('career', 1), ('path', 1), ('providing', 1), ('tip', 1), ('sound', 1), ('advice', 1), ('along', 1), ('way', 1), ('intensive', 1), ('focus', 1), ('need', 1), ('know', 1), ('pas', 1), ('exam', 1)]
[('author', 2), ('podcast', 2), ('extensive', 1), ('coverage', 1), ('podcasting', 1), ('business', 1), ('unlike', 1), ('book', 1), ('market', 1), ('focus', 1), ('hobbyist', 1), ('produce', 1), ('twice', 1), ('weekly', 1), ('public', 1), ('relation', 1), ('technology', 1), ('news', 1), ('forimmediaterelease', 1), ('biz', 1), ('reach', 1), ('month', 1), ('blog', 1), ('newsletter', 1)]
[('postgresql', 4), ('database', 2), ('window', 2), ('using', 2), ('step', 2), ('easiest', 1), ('way', 1), ('set', 1), ('server', 1), ('running', 1), ('quickly', 1), ('hand', 1), ('guide', 1), ('filled', 1), ('real', 1), ('world', 1), ('example', 1), ('offer', 1), ('practical', 1), ('detail', 1), ('installing', 1), ('configuring', 1), ('full', 1), ('featured', 1), ('open', 1), ('source', 1), ('management', 1)]
[('window', 4), ('vista', 4), ('performance', 2), ('ultimate', 1), ('resource', 1), ('take', 1), ('full', 1), ('advantage', 1), ('high', 1), ('feature', 1), ('available', 1), ('microsoft', 1), ('experience', 1), ('power', 1), ('integrated', 1), ('next', 1), ('generation', 1), ('operating', 1), ('system', 1), ('complete', 1), ('reference', 1), ('show', 1), ('install', 1), ('configure', 1), ('optimal', 1), ('customize', 1)]
[('ibm', 3), ('db', 3), ('new', 2), ('design', 1), ('deploy', 1), ('integrated', 1), ('enterprise', 1), ('class', 1), ('business', 1), ('solution', 1), ('enhance', 1), ('productivity', 1), ('profitability', 1), ('efficiency', 1), ('using', 1), ('detailed', 1), ('information', 1), ('comprehensive', 1), ('resource', 1), ('written', 1), ('experienced', 1), ('data', 1), ('server', 1), ('professional', 1), ('feature', 1), ('cover', 1), ('technical', 1), ('detail', 1), ('major', 1), ('aspect', 1), ('alongside', 1)]
[('home', 3), ('run', 1), ('world', 1), ('class', 1), ('business', 1), ('today', 1), ('office', 1), ('desk', 1), ('computer', 1), ('easy', 1), ('follow', 1), ('guide', 1), ('find', 1), ('set', 1), ('connected', 1), ('collaborative', 1), ('portable', 1), ('secure', 1), ('digital', 1), ('workspace', 1), ('produced', 1), ('conjunction', 1), ('cnet', 1), ('place', 1), ('go', 1), ('latest', 1), ('tech', 1), ('consumer', 1), ('electronics', 1)]
[('video', 4), ('online', 2), ('create', 1), ('post', 1), ('web', 1), ('ultimate', 1), ('guide', 1), ('planning', 1), ('creating', 1), ('editing', 1), ('sharing', 1), ('content', 1), ('discover', 1), ('shoot', 1), ('professional', 1), ('quality', 1), ('edit', 1), ('file', 1), ('prepare', 1), ('clip', 1), ('posting', 1), ('share', 1), ('project', 1), ('variety', 1), ('website', 1), ('blog', 1), ('podcasts', 1), ('hand', 1), ('tutorial', 1)]
[('mashups', 2), ('step', 2), ('want', 1), ('supercharge', 1), ('website', 1), ('latest', 1), ('searching', 1), ('mapping', 1), ('shopping', 1), ('imaging', 1), ('tool', 1), ('build', 1), ('amazing', 1), ('help', 1), ('guide', 1), ('everything', 1), ('web', 1), ('show', 1), ('remix', 1), ('best', 1), ('google', 1), ('amazon', 1), ('flickr', 1), ('ebay', 1), ('create', 1), ('customized', 1), ('application', 1), ('learn', 1), ('use', 1)]
[('network', 3), ('multimedia', 2), ('build', 1), ('maintain', 1), ('converged', 1), ('environment', 1), ('seamlessly', 1), ('merge', 1), ('internet', 1), ('cellular', 1), ('wireless', 1), ('using', 1), ('next', 1), ('generation', 1), ('ims', 1), ('technology', 1), ('comprehensive', 1), ('information', 1), ('contained', 1), ('authoritative', 1), ('resource', 1), ('ip', 1), ('subsystem', 1), ('session', 1), ('control', 1), ('operation', 1), ('detail', 1), ('step', 1), ('necessary', 1)]
[('million', 2), ('registered', 1), ('nonprofit', 1), ('sector', 1), ('employ', 1), ('individual', 1), ('feature', 1), ('success', 1), ('story', 1), ('high', 1), ('profile', 1), ('group', 1), ('raised', 1), ('fund', 1), ('ebay', 1), ('oprah', 1), ('angel', 1), ('network', 1)]
[('easy', 2), ('page', 2), ('brace', 1), ('youself', 1), ('come', 1), ('quickstep', 1), ('fast', 1), ('accessible', 1), ('information', 1), ('powerpoint', 1), ('full', 1), ('color', 1), ('cookbook', 1), ('style', 1), ('format', 1), ('provides', 1), ('answer', 1), ('question', 1), ('concise', 1), ('meaningful', 1), ('way', 1), ('lengthwise', 1), ('layout', 1), ('allows', 1), ('viewing', 1), ('useful', 1), ('tip', 1), ('caution', 1), ('displayed', 1), ('margin', 1)]
[('oracle', 4), ('database', 3), ('express', 2), ('edition', 2), ('step', 2), ('fastest', 1), ('way', 1), ('running', 1), ('xe', 1), ('take', 1), ('full', 1), ('advantage', 1), ('powerful', 1), ('feature', 1), ('available', 1), ('help', 1), ('easy', 1), ('follow', 1), ('press', 1), ('guide', 1), ('hand', 1), ('linux', 1), ('show', 1), ('set', 1), ('administer', 1), ('tune', 1), ('troubleshoot', 1)]
[('developer', 2), ('discover', 1), ('unleash', 1), ('full', 1), ('power', 1), ('microsoft', 1), ('sql', 1), ('server', 1), ('guide', 1), ('best', 1), ('selling', 1), ('author', 1), ('michael', 1), ('otey', 1), ('completely', 1), ('rewritten', 1), ('reengineered', 1), ('book', 1), ('focus', 1), ('new', 1), ('programming', 1), ('model', 1), ('provide', 1), ('reader', 1), ('information', 1), ('need', 1), ('produce', 1), ('top', 1), ('quality', 1), ('commercial', 1), ('application', 1)]
[('solution', 2), ('window', 2), ('learn', 1), ('implement', 1), ('clustering', 1), ('load', 1), ('balancing', 1), ('server', 1), ('deliver', 1), ('nearly', 1), ('percent', 1), ('uptime', 1), ('focus', 1), ('real', 1), ('world', 1), ('production', 1), ('based', 1), ('problem', 1), ('author', 1), ('delivers', 1), ('detailed', 1), ('high', 1), ('availability', 1), ('give', 1), ('tool', 1), ('roll', 1), ('troubleshoot', 1), ('technology', 1)]
[('oracle', 3), ('exam', 2), ('chapter', 2), ('fully', 1), ('integrated', 1), ('study', 1), ('system', 1), ('ocp', 1), ('prepare', 1), ('certified', 1), ('professional', 1), ('database', 1), ('administration', 1), ('ii', 1), ('help', 1), ('exclusive', 1), ('press', 1), ('guide', 1), ('find', 1), ('challenging', 1), ('exercise', 1), ('practice', 1), ('question', 1), ('minute', 1), ('drill', 1), ('summary', 1), ('highlight', 1), ('learned', 1)]
[('includes', 1), ('migration', 1), ('roadmap', 1), ('simplify', 1), ('complex', 1), ('task', 1), ('upgrading', 1), ('content', 1), ('based', 1), ('final', 1), ('software', 1), ('rather', 1), ('beta', 1)]
[('web', 3), ('site', 3), ('design', 2), ('netobjects', 2), ('fusion', 2), ('custom', 1), ('running', 1), ('quickly', 1), ('latest', 1), ('version', 1), ('complete', 1), ('software', 1), ('everything', 1), ('explains', 1), ('navigate', 1), ('interface', 1), ('configure', 1), ('toolbars', 1), ('panel', 1), ('create', 1), ('page', 1), ('position', 1), ('format', 1), ('text', 1), ('include', 1)]
[('exam', 2), ('book', 2), ('currently', 1), ('million', 1), ('microsoft', 1), ('certified', 1), ('professional', 1), ('cover', 1), ('three', 1), ('significantly', 1), ('lower', 1), ('cost', 1), ('competitive', 1), ('solution', 1), ('consist', 1), ('separate', 1)]
[('programming', 2), ('comprehensive', 1), ('resource', 1), ('available', 1), ('support', 1), ('language', 1), ('integrated', 1), ('query', 1), ('linq', 1), ('revolutionized', 1), ('bestselling', 1), ('author', 1), ('herb', 1), ('schildt', 1), ('updated', 1), ('expanded', 1), ('classic', 1), ('reference', 1), ('cover', 1), ('using', 1), ('carefully', 1), ('crafted', 1), ('explanation', 1), ('insider', 1), ('tip', 1), ('hundred', 1), ('example', 1), ('book', 1)]
[('adobe', 2), ('illustrator', 2), ('c', 2), ('step', 2), ('master', 1), ('filled', 1), ('full', 1), ('color', 1), ('example', 1), ('hand', 1), ('guide', 1), ('explains', 1), ('use', 1), ('latest', 1), ('release', 1), ('premier', 1), ('vector', 1), ('graphic', 1), ('program', 1), ('everything', 1), ('take', 1), ('process', 1), ('creating', 1), ('wide', 1), ('variety', 1), ('illustration', 1), ('demonstrates', 1), ('expert', 1), ('technique', 1), ('shortcut', 1)]
[('technology', 3), ('richard', 2), ('information', 2), ('professional', 2), ('deal', 1), ('gift', 1), ('making', 1), ('difficult', 1), ('concept', 1), ('understandable', 1), ('remained', 1), ('constant', 1), ('whether', 1), ('presenting', 1), ('room', 1), ('writing', 1), ('book', 1), ('communication', 1), ('skill', 1), ('unsurpassed', 1), ('faced', 1), ('overcoming', 1), ('challenge', 1), ('every', 1), ('day', 1), ('cisco', 1), ('asa', 1)]
[('javaserver', 2), ('face', 2), ('jsf', 2), ('definitive', 1), ('guide', 1), ('fully', 1), ('revised', 1), ('updated', 1), ('change', 1), ('comprehensive', 1), ('volume', 1), ('cover', 1), ('every', 1), ('aspect', 1), ('official', 1), ('standard', 1), ('web', 1), ('development', 1), ('architecture', 1), ('javaee', 1), ('inside', 1), ('authoritative', 1), ('resource', 1), ('co', 1), ('spec', 1), ('lead', 1), ('sun', 1), ('microsystems', 1), ('show', 1), ('create', 1)]
[('applescript', 3), ('essential', 1), ('skill', 1), ('made', 1), ('easy', 1), ('learn', 1), ('program', 1), ('versatile', 1), ('scripting', 1), ('language', 1), ('built', 1), ('right', 1), ('mac', 1), ('o', 1), ('supported', 1), ('major', 1), ('application', 1), ('beginner', 1), ('guide', 1), ('show', 1), ('write', 1), ('powerful', 1), ('script', 1), ('editor', 1), ('automate', 1), ('task', 1), ('save', 1), ('time', 1), ('effort', 1), ('automatically', 1), ('generate', 1), ('document', 1)]
[('special', 1), ('emphasis', 1), ('need', 1), ('digital', 1), ('photographer', 1), ('using', 1), ('photoshop', 1)]
[('expert', 1), ('author', 1), ('speaks', 1), ('topic', 1), ('sip', 1), ('conference', 1), ('worldwide', 1)]
[('powerpoint', 3), ('easy', 2), ('beyond', 1), ('basic', 1), ('take', 1), ('skill', 1), ('next', 1), ('level', 1), ('help', 1), ('highly', 1), ('visual', 1), ('follow', 1), ('guide', 1), ('graphic', 1), ('animation', 1), ('made', 1), ('show', 1), ('enhance', 1), ('presentation', 1), ('everything', 1), ('bullet', 1), ('table', 1), ('dynamic', 1), ('slide', 1), ('come', 1), ('life', 1), ('screen', 1), ('learn', 1)]
[('essential', 1), ('skill', 1), ('made', 1), ('easy', 1), ('master', 1), ('programmer', 1), ('bestselling', 1), ('author', 1), ('herb', 1), ('schildt', 1), ('teach', 1), ('fundamental', 1), ('microsoft', 1), ('premier', 1), ('programming', 1), ('language', 1), ('net', 1), ('framework', 1), ('begin', 1), ('learning', 1), ('create', 1), ('compile', 1), ('run', 1), ('program', 1), ('data', 1), ('type', 1), ('operator', 1), ('control', 1), ('statement', 1), ('method', 1), ('class', 1), ('object', 1)]
[('ubuntu', 2), ('cover', 1), ('distribution', 1), ('hardy', 1), ('heron', 1), ('dell', 1), ('currently', 1), ('sell', 1), ('consumer', 1), ('computer', 1), ('linux', 1), ('pre', 1), ('loaded', 1)]
[('chart', 4), ('excel', 3), ('beyond', 1), ('basic', 1), ('take', 1), ('charting', 1), ('skill', 1), ('next', 1), ('level', 1), ('help', 1), ('hand', 1), ('guide', 1), ('made', 1), ('easy', 1), ('show', 1), ('upgrade', 1), ('simple', 1), ('pie', 1), ('bar', 1), ('rich', 1), ('data', 1), ('visualization', 1), ('using', 1), ('full', 1), ('range', 1), ('available', 1), ('latest', 1), ('version', 1), ('software', 1), ('discover', 1)]
[('step', 2), ('color', 2), ('iphone', 2), ('photo', 2), ('full', 1), ('graphic', 1), ('ipod', 1), ('touch', 1), ('right', 1), ('away', 1), ('quickstep', 1), ('way', 1), ('screenshots', 1), ('clear', 1), ('instruction', 1), ('show', 1), ('follow', 1), ('along', 1), ('learn', 1), ('configure', 1), ('sync', 1), ('device', 1), ('itunes', 1), ('make', 1), ('call', 1), ('send', 1), ('receive', 1), ('email', 1), ('surf', 1), ('web', 1), ('snap', 1)]
[('cross', 2), ('silverlight', 1), ('browser', 1), ('platform', 1), ('plug', 1), ('delivering', 1), ('next', 1), ('generation', 1), ('net', 1), ('based', 1), ('medium', 1), ('experience', 1), ('rich', 1), ('interactive', 1), ('application', 1), ('web', 1), ('author', 1), ('frequently', 1), ('speaks', 1), ('industry', 1), ('conference', 1)]
[('db', 4), ('server', 2), ('cost', 2), ('ultimate', 1), ('data', 1), ('preview', 1), ('slashing', 1), ('new', 1), ('feature', 1), ('technology', 1), ('platform', 1), ('cutting', 1), ('edge', 1), ('hybrid', 1), ('database', 1), ('offer', 1), ('industry', 1), ('leading', 1), ('storage', 1), ('optimization', 1), ('scalability', 1), ('availability', 1), ('take', 1), ('saving', 1), ('ease', 1), ('use', 1), ('security', 1), ('next', 1), ('level', 1), ('succinct', 1), ('guide', 1)]
[('web', 5), ('sap', 4), ('bi', 3), ('report', 3), ('using', 2), ('based', 2), ('deliver', 1), ('distribute', 1), ('integrated', 1), ('accurate', 1), ('timely', 1), ('data', 1), ('across', 1), ('enterprise', 1), ('reporting', 1), ('component', 1), ('written', 1), ('insider', 1), ('applied', 1), ('bex', 1), ('analyzer', 1), ('application', 1), ('designer', 1), ('show', 1), ('construct', 1), ('effective', 1), ('query', 1), ('create', 1), ('html', 1)]
[('oracle', 3), ('enterprise', 3), ('manager', 2), ('grid', 2), ('control', 2), ('master', 1), ('centralize', 1), ('simplify', 1), ('infrastructure', 1), ('administration', 1), ('using', 1), ('detailed', 1), ('information', 1), ('contained', 1), ('press', 1), ('guide', 1), ('handbook', 1), ('show', 1), ('implement', 1), ('based', 1), ('management', 1), ('system', 1), ('maintain', 1), ('demand', 1), ('access', 1), ('critical', 1), ('service', 1)]
[('oracle', 3), ('crm', 2), ('demand', 2), ('guide', 2), ('master', 1), ('foster', 1), ('long', 1), ('term', 1), ('customer', 1), ('relationship', 1), ('accelerate', 1), ('productivity', 1), ('using', 1), ('proven', 1), ('strategy', 1), ('best', 1), ('practice', 1), ('press', 1), ('deployment', 1), ('show', 1), ('set', 1), ('customize', 1), ('manage', 1), ('dynamic', 1), ('software', 1), ('service', 1), ('solution', 1), ('across', 1), ('enterprise', 1), ('develop', 1), ('implementation', 1)]
[('mac', 5), ('window', 4), ('network', 4), ('integrate', 1), ('seamlessly', 1), ('day', 1), ('almost', 1), ('every', 1), ('include', 1), ('second', 1), ('class', 1), ('citizen', 1), ('limited', 1), ('connectivity', 1), ('full', 1), ('member', 1), ('covering', 1), ('o', 1), ('snow', 1), ('leopard', 1), ('server', 1), ('integrating', 1), ('show', 1), ('incorporate', 1)]
[('wireless', 4), ('networking', 2), ('network', 2), ('step', 2), ('learn', 1), ('essential', 1), ('configure', 1), ('manage', 1), ('secure', 1), ('using', 1), ('detail', 1), ('practical', 1), ('resource', 1), ('administration', 1), ('beginner', 1), ('guide', 1), ('show', 1), ('work', 1), ('latest', 1), ('standard', 1), ('including', 1), ('family', 1), ('window', 1), ('mac', 1), ('linux', 1), ('platform', 1)]
[('step', 2), ('color', 2), ('full', 1), ('graphic', 1), ('start', 1), ('using', 1), ('office', 1), ('right', 1), ('away', 1), ('quickstep', 1), ('way', 1), ('screenshots', 1), ('clear', 1), ('instruction', 1), ('make', 1), ('easy', 1), ('ramp', 1), ('latest', 1), ('release', 1), ('microsoft', 1), ('powerful', 1), ('productivity', 1), ('suite', 1), ('follow', 1), ('along', 1), ('quickly', 1), ('learn', 1), ('create', 1), ('word', 1), ('document', 1), ('build', 1), ('excel', 1), ('spreadsheet', 1), ('manage', 1), ('outlook', 1), ('email', 1), ('contact', 1)]
[('oracle', 4), ('demand', 3), ('dashboard', 3), ('deliver', 2), ('crm', 2), ('design', 1), ('create', 1), ('custom', 1), ('interactive', 1), ('actionable', 1), ('business', 1), ('intelligence', 1), ('directly', 1), ('end', 1), ('user', 1), ('help', 1), ('press', 1), ('guide', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('versatile', 1), ('feature', 1), ('available', 1), ('answer', 1), ('coupled', 1), ('detailed', 1)]
[('ee', 3), ('oracle', 3), ('technique', 2), ('java', 2), ('efficient', 1), ('way', 1), ('learn', 1), ('programming', 1), ('expert', 1), ('demonstrate', 1), ('working', 1), ('within', 1), ('jdeveloper', 1), ('thousand', 1), ('developer', 1), ('currently', 1), ('using', 1), ('form', 1), ('pl', 1), ('sql', 1), ('language', 1), ('shifting', 1), ('focus', 1), ('towards', 1), ('technology', 1), ('need', 1), ('know', 1), ('use', 1), ('based', 1)]
[('software', 4), ('estimate', 2), ('project', 2), ('product', 1), ('verifiable', 1), ('defensible', 1), ('achievable', 1), ('based', 1), ('data', 1), ('collected', 1), ('international', 1), ('benchmarking', 1), ('standard', 1), ('group', 1), ('isbsg', 1), ('practical', 1), ('estimation', 1), ('explains', 1), ('accurately', 1), ('forecast', 1), ('size', 1), ('cost', 1), ('schedule', 1), ('expert', 1), ('advice', 1), ('generating', 1), ('accurate', 1)]
[('oracle', 4), ('soa', 2), ('suite', 2), ('master', 1), ('design', 1), ('implement', 1), ('agile', 1), ('service', 1), ('oriented', 1), ('enterprise', 1), ('computing', 1), ('infrastructure', 1), ('using', 1), ('detailed', 1), ('information', 1), ('press', 1), ('guide', 1), ('written', 1), ('ace', 1), ('director', 1), ('handbook', 1), ('us', 1), ('hand', 1), ('case', 1), ('study', 1), ('illustrate', 1), ('programming', 1), ('management', 1), ('governance', 1), ('concept', 1), ('expert', 1)]
[('data', 2), ('step', 2), ('transform', 1), ('raw', 1), ('meaningful', 1), ('business', 1), ('intelligence', 1), ('ssis', 1), ('deploy', 1), ('manage', 1), ('high', 1), ('performance', 1), ('transformation', 1), ('solution', 1), ('across', 1), ('enterprise', 1), ('using', 1), ('technique', 1), ('fully', 1), ('revised', 1), ('guide', 1), ('hand', 1), ('microsoft', 1), ('sql', 1), ('server', 1), ('integration', 1), ('service', 1), ('second', 1), ('edition', 1), ('explains', 1), ('tool', 1), ('method', 1), ('necessary', 1), ('extract', 1)]
[('application', 4), ('web', 3), ('sharepoint', 3), ('build', 2), ('data', 1), ('driven', 1), ('leverage', 1), ('revolutionary', 1), ('development', 1), ('capability', 1), ('based', 1), ('business', 1), ('microsoft', 1), ('complete', 1), ('reference', 1), ('get', 1), ('running', 1), ('platform', 1), ('explains', 1), ('integrate', 1), ('service', 1), ('content', 1)]
[('oracle', 5), ('exadata', 3), ('maximize', 1), ('capability', 1), ('leverage', 1), ('powerful', 1), ('feature', 1), ('available', 1), ('database', 1), ('machine', 1), ('using', 1), ('proven', 1), ('technique', 1), ('inside', 1), ('press', 1), ('guide', 1), ('written', 1), ('expert', 1), ('achieving', 1), ('extreme', 1), ('performance', 1), ('show', 1), ('take', 1), ('full', 1), ('advantage', 1), ('complete', 1), ('optimized', 1), ('package', 1)]
[('game', 3), ('industry', 2), ('find', 1), ('veteran', 1), ('exactly', 1), ('need', 1), ('become', 1), ('designer', 1), ('tester', 1), ('artist', 1), ('producer', 1), ('programmer', 1), ('writer', 1), ('soundtrack', 1), ('composer', 1), ('videographer', 1), ('sale', 1), ('marketing', 1), ('professional', 1), ('full', 1), ('spectrum', 1), ('coverage', 1), ('position', 1), ('available', 1), ('within', 1), ('detail', 1), ('created', 1), ('start', 1)]
[('oracle', 4), ('fusion', 3), ('middleware', 3), ('management', 2), ('master', 1), ('aspect', 1), ('govern', 1), ('unified', 1), ('platform', 1), ('agile', 1), ('intelligent', 1), ('business', 1), ('application', 1), ('using', 1), ('detailed', 1), ('information', 1), ('contained', 1), ('press', 1), ('book', 1), ('architecture', 1), ('explains', 1), ('entire', 1), ('suite', 1), ('component', 1), ('lay', 1), ('core', 1), ('use', 1)]
[('exam', 3), ('study', 2), ('book', 2), ('cd', 2), ('step', 2), ('integrated', 1), ('system', 1), ('based', 1), ('proven', 1), ('instructional', 1), ('methodology', 1), ('package', 1), ('show', 1), ('scwcd', 1), ('offer', 1), ('complete', 1), ('coverage', 1), ('official', 1), ('objective', 1), ('practice', 1), ('question', 1), ('exercise', 1), ('job', 1), ('element', 1), ('chapter', 1), ('self', 1), ('test', 1), ('rom', 1), ('contains', 1)]
[('oracle', 4), ('tom', 2), ('book', 2), ('sql', 2), ('kyte', 1), ('magazine', 1), ('ask', 1), ('column', 1), ('written', 1), ('definitive', 1), ('guide', 1), ('designing', 1), ('building', 1), ('high', 1), ('performance', 1), ('scalable', 1), ('application', 1), ('cover', 1), ('schema', 1), ('design', 1), ('pl', 1), ('table', 1), ('index', 1), ('exclusive', 1), ('publisher', 1), ('press', 1), ('resource', 1), ('developer', 1)]
[('oracle', 5), ('real', 2), ('application', 2), ('cluster', 2), ('master', 1), ('maintain', 1), ('dynamic', 1), ('enterprise', 1), ('computing', 1), ('infrastructure', 1), ('expert', 1), ('instruction', 1), ('ace', 1), ('database', 1), ('handbook', 1), ('second', 1), ('edition', 1), ('fully', 1), ('revised', 1), ('updated', 1), ('cover', 1), ('latest', 1), ('tool', 1), ('feature', 1), ('find', 1), ('prepare', 1), ('hardware', 1), ('deploy', 1)]
[('oracle', 4), ('hyperion', 3), ('financial', 3), ('management', 2), ('master', 1), ('consolidate', 1), ('data', 1), ('maintain', 1), ('scalable', 1), ('compliance', 1), ('framework', 1), ('expert', 1), ('instruction', 1), ('ace', 1), ('tip', 1), ('technique', 1), ('provides', 1), ('advanced', 1), ('time', 1), ('saving', 1), ('procedure', 1), ('documented', 1), ('user', 1), ('manual', 1), ('help', 1), ('file', 1), ('find', 1), ('configure', 1)]
[('pl', 3), ('sql', 3), ('programming', 2), ('oracle', 2), ('ramp', 1), ('skill', 1), ('master', 1), ('hand', 1), ('exercise', 1), ('extensive', 1), ('example', 1), ('real', 1), ('world', 1), ('project', 1), ('inside', 1), ('press', 1), ('guide', 1), ('filled', 1), ('best', 1), ('practice', 1), ('database', 1), ('workbook', 1), ('cover', 1), ('latest', 1), ('feature', 1), ('enhancement', 1), ('language', 1), ('mastery', 1), ('check', 1), ('end', 1), ('chapter', 1)]
[('mac', 4), ('macbook', 2), ('coverage', 1), ('imac', 1), ('air', 1), ('mini', 1), ('everything', 1), ('o', 1), ('lion', 1), ('edition', 1), ('show', 1), ('configure', 1), ('customize', 1), ('take', 1), ('full', 1), ('advantage', 1), ('powerful', 1), ('tool', 1), ('capability', 1), ('learn', 1), ('new', 1), ('feature', 1), ('including', 1), ('multi', 1), ('touch', 1), ('gesture', 1), ('mission', 1), ('control', 1)]
[('sql', 3), ('statement', 2), ('mysql', 2), ('step', 2), ('essential', 1), ('guide', 1), ('optimization', 1), ('written', 1), ('oracle', 1), ('ace', 1), ('director', 1), ('expert', 1), ('ronald', 1), ('bradford', 1), ('effective', 1), ('optimizing', 1), ('filled', 1), ('detailed', 1), ('explanation', 1), ('practical', 1), ('example', 1), ('applied', 1), ('immediately', 1), ('improve', 1), ('database', 1), ('application', 1), ('performance', 1), ('featuring', 1), ('approach', 1)]
[('step', 2), ('color', 2), ('database', 2), ('full', 1), ('graphic', 1), ('start', 1), ('using', 1), ('access', 1), ('right', 1), ('away', 1), ('quickstep', 1), ('way', 1), ('screenshots', 1), ('clear', 1), ('instruction', 1), ('make', 1), ('easy', 1), ('ramp', 1), ('latest', 1), ('release', 1), ('microsoft', 1), ('powerful', 1), ('application', 1), ('follow', 1), ('along', 1), ('quickly', 1), ('learn', 1), ('build', 1), ('table', 1), ('enter', 1), ('edit', 1), ('data', 1), ('retrieve', 1), ('information', 1), ('create', 1), ('form', 1)]
[('step', 2), ('color', 2), ('graphic', 2), ('word', 2), ('full', 1), ('start', 1), ('using', 1), ('right', 1), ('away', 1), ('quickstep', 1), ('way', 1), ('screenshots', 1), ('clear', 1), ('instruction', 1), ('make', 1), ('easy', 1), ('ramp', 1), ('latest', 1), ('release', 1), ('microsoft', 1), ('powerful', 1), ('processing', 1), ('application', 1), ('follow', 1), ('along', 1), ('quickly', 1), ('learn', 1), ('create', 1), ('format', 1), ('document', 1), ('add', 1), ('table', 1), ('chart', 1), ('use', 1), ('mail', 1), ('merge', 1)]
[('oracle', 3), ('data', 3), ('stream', 2), ('replication', 2), ('information', 2), ('sharing', 2), ('master', 1), ('enable', 1), ('real', 1), ('time', 1), ('access', 1), ('across', 1), ('distributed', 1), ('framework', 1), ('using', 1), ('expert', 1), ('press', 1), ('guide', 1), ('explains', 1), ('set', 1), ('administer', 1), ('unified', 1), ('enterprise', 1), ('infrastructure', 1), ('learn', 1), ('capture', 1), ('propagate', 1)]
[('cs', 3), ('plug', 2), ('in', 2), ('web', 2), ('html', 2), ('power', 1), ('solution', 1), ('handy', 1), ('guide', 1), ('practical', 1), ('resource', 1), ('contains', 1), ('ready', 1), ('run', 1), ('use', 1), ('create', 1), ('dynamic', 1), ('content', 1), ('include', 1), ('example', 1), ('screen', 1), ('shot', 1), ('showing', 1), ('specific', 1), ('end', 1), ('result', 1), ('achieve', 1), ('right', 1), ('away', 1), ('method', 1), ('using', 1), ('javascript', 1), ('make', 1), ('page', 1), ('even', 1)]
[('window', 3), ('pc', 2), ('degunking', 2), ('program', 2), ('restore', 1), ('peak', 1), ('performance', 1), ('fast', 1), ('affordable', 1), ('way', 1), ('keep', 1), ('computer', 1), ('running', 1), ('quickly', 1), ('efficiently', 1), ('time', 1), ('slow', 1), ('due', 1), ('unnecessary', 1), ('file', 1), ('error', 1), ('gunk', 1), ('book', 1), ('proven', 1), ('step', 1), ('show', 1), ('organize', 1), ('hard', 1), ('disk', 1), ('load', 1)]
[('kindle', 3), ('fire', 3), ('multimedia', 2), ('entertainment', 2), ('apps', 2), ('maximize', 1), ('internet', 1), ('capability', 1), ('use', 1), ('ebooks', 1), ('virtually', 1), ('anywhere', 1), ('everything', 1), ('make', 1), ('easy', 1), ('enjoy', 1), ('exciting', 1), ('content', 1), ('related', 1), ('personal', 1), ('productivity', 1), ('feature', 1), ('amazon', 1), ('learn', 1), ('register', 1), ('set', 1)]
[('design', 2), ('presentation', 2), ('powerpoint', 2), ('winning', 1), ('new', 1), ('version', 1), ('create', 1), ('dynamic', 1), ('professional', 1), ('quality', 1), ('using', 1), ('sage', 1), ('advice', 1), ('handy', 1), ('tip', 1), ('clear', 1), ('description', 1), ('expert', 1), ('ellen', 1), ('finkelstein', 1), ('book', 1), ('give', 1), ('extra', 1), ('edge', 1), ('best', 1), ('practice', 1), ('layout', 1), ('organizational', 1), ('technique', 1), ('make', 1)]
[('javascript', 3), ('html', 2), ('web', 2), ('fully', 1), ('updated', 1), ('latest', 1), ('standard', 1), ('featuring', 1), ('new', 1), ('chapter', 1), ('jquery', 1), ('beginner', 1), ('guide', 1), ('show', 1), ('create', 1), ('dynamic', 1), ('page', 1), ('complete', 1), ('special', 1), ('effect', 1), ('using', 1), ('today', 1), ('leading', 1), ('development', 1), ('language', 1), ('growth', 1), ('expected', 1), ('grow', 1), ('even', 1), ('script', 1), ('canvas', 1), ('element', 1)]
[('quickbooks', 3), ('financial', 2), ('business', 2), ('master', 1), ('bestselling', 1), ('software', 1), ('set', 1), ('maintain', 1), ('complete', 1), ('efficient', 1), ('small', 1), ('management', 1), ('system', 1), ('ease', 1), ('guide', 1), ('filled', 1), ('best', 1), ('practice', 1), ('handling', 1), ('essential', 1), ('task', 1), ('customizing', 1), ('way', 1), ('work', 1), ('written', 1), ('advanced', 1), ('certified', 1), ('proadvisor', 1)]
[('step', 2), ('full', 2), ('color', 2), ('word', 2), ('graphic', 1), ('running', 1), ('microsoft', 1), ('right', 1), ('away', 1), ('quickstep', 1), ('way', 1), ('screenshots', 1), ('clear', 1), ('instruction', 1), ('make', 1), ('easy', 1), ('start', 1), ('using', 1), ('latest', 1), ('release', 1), ('leading', 1), ('processing', 1), ('application', 1), ('take', 1), ('control', 1), ('learn', 1), ('create', 1), ('format', 1), ('document', 1), ('apply', 1), ('template', 1), ('theme', 1), ('use', 1), ('mail', 1)]
[('full', 2), ('color', 2), ('step', 2), ('release', 2), ('productivity', 2), ('suite', 2), ('guide', 1), ('new', 1), ('world', 1), ('popular', 1), ('application', 1), ('running', 1), ('office', 1), ('right', 1), ('away', 1), ('quickstep', 1), ('way', 1), ('screenshots', 1), ('every', 1), ('page', 1), ('clear', 1), ('instruction', 1), ('make', 1), ('easy', 1), ('use', 1), ('latest', 1), ('microsoft', 1), ('powerful', 1), ('follow', 1), ('along', 1)]
[('macbook', 2), ('air', 2), ('new', 2), ('take', 1), ('height', 1), ('discover', 1), ('apple', 1), ('incredibly', 1), ('thin', 1), ('light', 1), ('notebook', 1), ('help', 1), ('hand', 1), ('guide', 1), ('everything', 1), ('show', 1), ('harness', 1), ('power', 1), ('mac', 1), ('o', 1), ('mountain', 1), ('lion', 1), ('operating', 1), ('system', 1), ('use', 1), ('itunes', 1), ('iwork', 1), ('ilife', 1), ('icloud', 1), ('safari', 1), ('contact', 1)]
[('solaris', 3), ('oracle', 2), ('take', 1), ('full', 1), ('advantage', 1), ('management', 1), ('feature', 1), ('manage', 1), ('highly', 1), ('scalable', 1), ('cloud', 1), ('based', 1), ('computing', 1), ('platform', 1), ('deliver', 1), ('unmatched', 1), ('performance', 1), ('level', 1), ('every', 1), ('layer', 1), ('stack', 1), ('system', 1), ('administration', 1), ('complete', 1), ('reference', 1), ('show', 1), ('deploy', 1), ('scratch', 1), ('date', 1), ('detail', 1), ('installation', 1)]
[('study', 2), ('exam', 2), ('comptia', 2), ('best', 1), ('fully', 1), ('integrated', 1), ('system', 1), ('available', 1), ('ca', 1), ('hundred', 1), ('practice', 1), ('question', 1), ('lab', 1), ('exercise', 1), ('casp', 1), ('advanced', 1), ('security', 1), ('practitioner', 1), ('certification', 1), ('guide', 1), ('cover', 1), ('need', 1), ('know', 1), ('show', 1), ('prepare', 1), ('challenging', 1), ('mcgraw', 1), ('hill', 1), ('gold', 1), ('level', 1), ('authorized', 1), ('partner', 1), ('offering', 1)]
[('peoplesoft', 3), ('data', 3), ('peopletools', 2), ('upgrade', 2), ('master', 1), ('oracle', 1), ('administration', 1), ('toolset', 1), ('maximize', 1), ('integrity', 1), ('maintain', 1), ('peak', 1), ('application', 1), ('performance', 1), ('keep', 1), ('environment', 1), ('date', 1), ('management', 1), ('handbook', 1), ('explains', 1), ('latest', 1), ('technique', 1), ('provides', 1), ('best', 1), ('practice', 1), ('case', 1), ('study', 1), ('programming', 1)]
[('business', 4), ('intelligence', 3), ('oracle', 2), ('application', 2), ('implement', 1), ('provide', 1), ('actionable', 1), ('across', 1), ('enterprise', 1), ('enable', 1), ('informed', 1), ('decision', 1), ('making', 1), ('streamlined', 1), ('process', 1), ('deliver', 1), ('value', 1), ('rapid', 1), ('implementation', 1), ('show', 1), ('justify', 1), ('configure', 1), ('customize', 1), ('extend', 1), ('complete', 1)]
[('exam', 3), ('test', 2), ('practice', 2), ('real', 1), ('first', 1), ('comptia', 1), ('certification', 1), ('second', 1), ('edition', 1), ('filled', 1), ('realistic', 1), ('question', 1), ('prepare', 1), ('challenging', 1), ('help', 1), ('understand', 1), ('material', 1), ('depth', 1), ('explanation', 1), ('correct', 1), ('incorrect', 1), ('answer', 1), ('included', 1)]
[('mobile', 3), ('device', 2), ('hacking', 2), ('exposed', 2), ('proven', 1), ('security', 1), ('tactic', 1), ('today', 1), ('apps', 1), ('network', 1), ('overview', 1), ('new', 1), ('threat', 1), ('created', 1), ('author', 1), ('heap', 1), ('experience', 1), ('topic', 1), ('bring', 1), ('every', 1), ('chapter', 1), ('slashdot', 1), ('continues', 1), ('tradition', 1), ('series', 1), ('arming', 1), ('business', 1)]
[('business', 3), ('oracle', 2), ('suite', 2), ('financial', 2), ('implement', 1), ('full', 1), ('spectrum', 1), ('application', 1), ('maintain', 1), ('integrated', 1), ('customer', 1), ('focused', 1), ('computing', 1), ('framework', 1), ('meet', 1), ('global', 1), ('requirement', 1), ('lowering', 1), ('total', 1), ('cost', 1), ('ownership', 1), ('financials', 1), ('handbook', 1), ('third', 1), ('edition', 1), ('offer', 1), ('fully', 1), ('updated', 1), ('coverage', 1), ('latest', 1)]
[('oracle', 5), ('database', 3), ('new', 2), ('maximize', 1), ('improved', 1), ('feature', 1), ('written', 1), ('master', 1), ('principle', 1), ('expert', 1), ('ace', 1), ('robert', 1), ('freeman', 1), ('press', 1), ('guide', 1), ('describes', 1), ('myriad', 1), ('enhanced', 1), ('capability', 1), ('available', 1), ('latest', 1), ('release', 1), ('inside', 1), ('find', 1), ('everything', 1), ('need', 1), ('know', 1), ('running', 1)]
[('data', 4), ('big', 3), ('oracle', 2), ('transform', 1), ('insight', 1), ('book', 1), ('best', 1), ('engineer', 1), ('architect', 1), ('explain', 1), ('make', 1), ('use', 1), ('tell', 1), ('integrate', 1), ('existing', 1), ('solution', 1), ('system', 1), ('using', 1), ('appropriate', 1), ('moving', 1), ('needed', 1), ('doug', 1), ('cutting', 1), ('co', 1), ('creator', 1), ('apache', 1), ('hadoop', 1)]
[('data', 3), ('oracle', 2), ('nosql', 2), ('database', 2), ('master', 1), ('enable', 1), ('highly', 1), ('reliable', 1), ('scalable', 1), ('available', 1), ('real', 1), ('time', 1), ('big', 1), ('management', 1), ('enterprise', 1), ('show', 1), ('take', 1), ('full', 1), ('advantage', 1), ('cost', 1), ('effective', 1), ('solution', 1), ('storing', 1), ('retrieving', 1), ('updating', 1), ('high', 1), ('volume', 1), ('unstructured', 1), ('book', 1), ('cover', 1), ('installation', 1), ('configuration', 1)]
[('database', 5), ('oracle', 3), ('master', 1), ('fundamental', 1), ('filled', 1), ('easy', 1), ('follow', 1), ('tutorial', 1), ('press', 1), ('guide', 1), ('provides', 1), ('detailed', 1), ('coverage', 1), ('core', 1), ('concept', 1), ('role', 1), ('administrator', 1), ('enterprise', 1), ('capability', 1), ('install', 1), ('configure', 1), ('maintain', 1), ('professional', 1), ('walk', 1), ('configuration', 1)]
[('research', 2), ('step', 2), ('break', 1), ('brick', 1), ('wall', 1), ('genealogical', 1), ('learn', 1), ('use', 1), ('innovative', 1), ('method', 1), ('unearth', 1), ('hard', 1), ('find', 1), ('ancestor', 1), ('advanced', 1), ('genealogy', 1), ('technique', 1), ('show', 1), ('uncover', 1), ('elusive', 1), ('detail', 1), ('taking', 1), ('advantage', 1), ('specialized', 1), ('tool', 1), ('software', 1), ('program', 1), ('using', 1), ('proven', 1), ('best', 1), ('practice', 1), ('breaking', 1)]
[('application', 3), ('java', 3), ('websocket', 3), ('development', 2), ('programming', 2), ('master', 1), ('build', 1), ('dynamic', 1), ('enterprise', 1), ('web', 1), ('fully', 1), ('leverage', 1), ('state', 1), ('art', 1), ('communication', 1), ('technology', 1), ('written', 1), ('leading', 1), ('expert', 1), ('oracle', 1), ('press', 1), ('guide', 1), ('offer', 1), ('practical', 1), ('strategy', 1), ('detailed', 1), ('example', 1)]
[('exam', 3), ('professional', 2), ('infocomm', 2), ('guide', 2), ('certified', 2), ('technology', 2), ('specialist', 2), ('design', 2), ('av', 2), ('exclusively', 1), ('mcgraw', 1), ('hill', 1), ('international', 1), ('cover', 1), ('latest', 1), ('ct', 1), ('complete', 1), ('study', 1), ('system', 1), ('leading', 1), ('internationally', 1), ('recognized', 1), ('audiovisual', 1), ('certification', 1)]
[('iphone', 3), ('step', 2), ('full', 2), ('color', 2), ('senior', 2), ('make', 2), ('graphic', 1), ('show', 1), ('use', 1), ('latest', 1), ('model', 1), ('written', 1), ('guide', 1), ('feature', 1), ('screenshots', 1), ('throughout', 1), ('clear', 1), ('instruction', 1), ('easy', 1), ('start', 1), ('using', 1), ('plus', 1), ('io', 1), ('book', 1), ('used', 1), ('earlier', 1), ('device', 1), ('follow', 1), ('along', 1), ('learn', 1)]
[('networking', 2), ('comprehensive', 1), ('current', 1), ('guide', 1), ('build', 1), ('administer', 1), ('high', 1), ('performance', 1), ('network', 1), ('size', 1), ('small', 1), ('home', 1), ('system', 1), ('enterprise', 1), ('internetworks', 1), ('using', 1), ('practical', 1), ('information', 1), ('detailed', 1), ('resource', 1), ('thoroughly', 1), ('revised', 1), ('cover', 1), ('latest', 1), ('technology', 1), ('complete', 1), ('reference', 1), ('third', 1), ('edition', 1), ('offer', 1), ('concise', 1)]
[('guide', 2), ('coreldraw', 2), ('photo', 2), ('corel', 1), ('authorized', 1), ('official', 1), ('show', 1), ('create', 1), ('photorealistic', 1), ('illustration', 1), ('lay', 1), ('text', 1), ('graphic', 1), ('import', 1), ('edit', 1), ('add', 1), ('special', 1), ('effect', 1), ('vector', 1), ('art', 1), ('transform', 1), ('object', 1), ('artwork', 1), ('expert', 1), ('tip', 1), ('printing', 1), ('work', 1), ('match', 1)]
[('exam', 4), ('cover', 2), ('comptia', 2), ('objective', 2), ('trusted', 1), ('training', 1), ('quick', 1), ('review', 1), ('guide', 1), ('fully', 1), ('revised', 1), ('latest', 1), ('thoroughly', 1), ('updated', 1), ('mike', 1), ('meyers', 1), ('certification', 1), ('passport', 1), ('sixth', 1), ('edition', 1), ('teach', 1), ('skill', 1), ('necessary', 1), ('take', 1), ('complete', 1), ('confidence', 1), ('full', 1), ('detail', 1)]
[('cissp', 4), ('exam', 4), ('study', 2), ('prepare', 1), ('date', 1), ('money', 1), ('saving', 1), ('package', 1), ('designed', 1), ('complete', 1), ('self', 1), ('program', 1), ('collection', 1), ('offer', 1), ('variety', 1), ('proven', 1), ('focused', 1), ('resource', 1), ('use', 1), ('preparation', 1), ('set', 1), ('bundle', 1), ('seventh', 1), ('edition', 1), ('shon', 1), ('harris', 1), ('bestselling', 1), ('guide', 1)]
[('blockchain', 3), ('technology', 3), ('using', 2), ('develop', 1), ('validate', 1), ('deploy', 1), ('powerful', 1), ('decentralized', 1), ('application', 1), ('cutting', 1), ('edge', 1), ('hand', 1), ('information', 1), ('contained', 1), ('comprehensive', 1), ('resource', 1), ('written', 1), ('team', 1), ('legal', 1), ('expert', 1), ('practical', 1), ('guide', 1), ('developing', 1), ('business', 1), ('law', 1)]
[('mobile', 4), ('oracle', 4), ('service', 3), ('create', 2), ('enterprise', 2), ('cloud', 2), ('guide', 2), ('modern', 1), ('apps', 1), ('deploy', 1), ('high', 1), ('performance', 1), ('application', 1), ('using', 1), ('hand', 1), ('information', 1), ('contained', 1), ('press', 1), ('written', 1), ('director', 1), ('product', 1), ('management', 1), ('within', 1), ('platform', 1), ('group', 1), ('developer', 1)]
[('exam', 3), ('saa', 2), ('coverage', 2), ('aws', 2), ('solution', 2), ('architect', 2), ('cover', 1), ('new', 1), ('effective', 1), ('study', 1), ('guide', 1), ('provides', 1), ('every', 1), ('topic', 1), ('certified', 1), ('associate', 1), ('complete', 1), ('objective', 1), ('included', 1), ('february', 1), ('comprehensive', 1), ('resource', 1), ('written', 1), ('expert', 1), ('respected', 1), ('author', 1)]
[('cissp', 3), ('exam', 3), ('study', 2), ('edition', 2), ('prepare', 1), ('date', 1), ('money', 1), ('saving', 1), ('package', 1), ('designed', 1), ('complete', 1), ('self', 1), ('program', 1), ('collection', 1), ('offer', 1), ('wide', 1), ('variety', 1), ('proven', 1), ('focused', 1), ('resource', 1), ('use', 1), ('preparation', 1), ('current', 1), ('set', 1), ('bundle', 1), ('eighth', 1), ('shon', 1), ('harris', 1), ('bestselling', 1)]
[('publisher', 2), ('product', 2), ('coverage', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('fully', 1), ('updated', 1), ('every', 1), ('topic', 1), ('version', 1), ('phr', 1), ('sphr', 1), ('exam', 1), ('complete', 1), ('hr', 1), ('certification', 1), ('institute', 1)]
[('know', 3), ('school', 2), ('new', 1), ('series', 1), ('lightning', 1), ('bolt', 1), ('brain', 1), ('every', 1), ('subject', 1), ('idea', 1), ('essential', 1), ('concept', 1), ('lie', 1), ('behind', 1), ('book', 1), ('use', 1), ('fact', 1), ('help', 1), ('learn', 1), ('unique', 1), ('way', 1), ('study', 1), ('guide', 1), ('start', 1), ('chapter', 1), ('set', 1), ('goal', 1), ('often', 1), ('leaving', 1), ('starting', 1), ('point', 1), ('unclear', 1), ('high', 1), ('computer', 1)]
[('publisher', 2), ('product', 2), ('cybersecurity', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('manage', 1), ('robust', 1), ('inexpensive', 1), ('testing', 1), ('environment', 1), ('hand', 1), ('guide', 1), ('show', 1), ('clearly', 1), ('administer', 1), ('effective', 1)]
[('happens', 1), ('built', 1), ('website', 1), ('app', 1), ('seems', 1), ('care', 1), ('stick', 1), ('around', 1), ('long', 1), ('enough', 1), ('see', 1), ('service', 1), ('might', 1), ('value', 1), ('seductive', 1), ('interaction', 1), ('design', 1), ('speaker', 1), ('author', 1), ('stephen', 1), ('anderson', 1)]
[('software', 4), ('development', 2), ('mature', 2), ('consistently', 1), ('deliver', 1), ('promised', 1), ('result', 1), ('true', 1), ('profession', 1), ('emergent', 1), ('design', 1), ('point', 1), ('way', 1), ('continues', 1), ('evolve', 1), ('process', 1), ('become', 1), ('complicated', 1)]
[('nbsp', 2), ('technology', 2), ('guide', 1), ('troubleshooting', 1), ('repairing', 1), ('easy', 1), ('comprehensive', 1), ('troubleshooter', 1), ('pc', 1), ('smartphones', 1), ('tablet', 1), ('network', 1), ('camera', 1), ('home', 1), ('theater', 1), ('book', 1), ('use', 1)]
[('step', 2), ('session', 1), ('hour', 1), ('le', 1), ('learn', 1), ('build', 1), ('state', 1), ('art', 1), ('website', 1), ('microsoft', 1), ('expression', 1), ('web', 1), ('service', 1), ('pack', 1), ('html', 1), ('cs', 1), ('jquery', 1), ('using', 1), ('book', 1), ('straightforward', 1), ('approach', 1), ('master', 1)]
[('book', 2), ('programming', 2), ('anyone', 1), ('want', 1), ('learn', 1), ('modify', 1), ('minecraft', 1), ('previous', 1), ('experience', 1), ('required', 1), ('us', 1), ('javascript', 1), ('popular', 1), ('language', 1), ('creating', 1), ('website', 1), ('scripting', 1), ('aimed', 1), ('kid', 1), ('already', 1), ('play', 1)]
[('agile', 3), ('project', 2), ('carefully', 1), ('researched', 1), ('ten', 1), ('year', 1), ('eagerly', 1), ('anticipated', 1), ('community', 1), ('crystal', 1), ('clear', 1), ('human', 1), ('powered', 1), ('methodology', 1), ('small', 1), ('team', 1), ('lucid', 1), ('practical', 1), ('introduction', 1), ('running', 1), ('successful', 1), ('organisation', 1), ('chapter', 1), ('illuminates', 1), ('different', 1), ('important', 1), ('aspect', 1), ('orchestrating', 1), ('highlight', 1)]
[('game', 3), ('want', 2), ('building', 2), ('html', 2), ('start', 1), ('web', 1), ('javascript', 1), ('moving', 1), ('flash', 1), ('platform', 1), ('nbsp', 1), ('already', 1), ('better', 1), ('faster', 1), ('guide', 1), ('brings', 1), ('together', 1), ('everything', 1), ('need', 1), ('expert', 1)]
[('book', 2), ('digital', 1), ('version', 1), ('printed', 1), ('copyright', 1), ('casebook', 1), ('practical', 1), ('reference', 1), ('indispensable', 1), ('guide', 1), ('creating', 1), ('systematic', 1), ('formal', 1), ('methodology', 1), ('large', 1), ('real', 1), ('time', 1), ('software', 1), ('based', 1), ('system', 1), ('nbsp', 1)]
[('network', 2), ('file', 2), ('key', 2), ('system', 1), ('nfs', 1), ('protocol', 1), ('enables', 1), ('remote', 1), ('access', 1), ('element', 1), ('lan', 1), ('currently', 1), ('increasingly', 1), ('used', 1), ('technology', 1), ('web', 1), ('wide', 1), ('area', 1), ('nbsp', 1), ('written', 1), ('programmer', 1), ('creating', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('teach', 2), ('using', 2), ('sam', 1), ('hour', 1), ('hand', 1), ('guide', 1), ('programming', 1), ('language', 1), ('reader', 1), ('provided', 1), ('short', 1), ('practical', 1), ('example', 1), ('illustrate', 1), ('key', 1), ('concept', 1), ('syntax', 1), ('technique', 1), ('straightforward', 1), ('approach', 1), ('fast', 1), ('friendly', 1), ('tutorial', 1), ('everything', 1), ('need', 1), ('know', 1), ('installing', 1), ('compiler', 1)]
[('python', 4), ('nbsp', 2), ('ideal', 2), ('without', 1), ('fear', 1), ('book', 1), ('programmed', 1), ('language', 1), ('basic', 1), ('java', 1), ('want', 1), ('learn', 1), ('painlessly', 1), ('reliably', 1), ('possible', 1), ('provide', 1), ('easy', 1), ('guide', 1), ('explaining', 1), ('work', 1), ('cover', 1), ('short', 1), ('beginner', 1), ('intermediate', 1)]
[('hadoop', 4), ('nbsp', 3), ('guide', 2), ('big', 2), ('data', 2), ('easy', 1), ('accessible', 1), ('technology', 1), ('book', 1), ('cover', 1), ('basic', 1), ('student', 1), ('need', 1), ('know', 1), ('install', 1), ('use', 1), ('personal', 1), ('computer', 1), ('server', 1), ('navigate', 1), ('entire', 1), ('apache', 1), ('ecosystem', 1), ('demystified', 1), ('explains', 1), ('problem', 1), ('solves', 1), ('show', 1), ('relates', 1)]
[('cloud', 3), ('microsoft', 2), ('hybrid', 2), ('unleashed', 1), ('cut', 1), ('hype', 1), ('explain', 1), ('exactly', 1), ('present', 1), ('complete', 1), ('itil', 1), ('based', 1), ('implementation', 1), ('strategy', 1), ('guide', 1), ('deploying', 1), ('brand', 1), ('new', 1), ('azure', 1), ('stack', 1), ('help', 1), ('use', 1), ('system', 1), ('center', 1), ('maximise', 1), ('value', 1), ('private', 1), ('investment', 1), ('nbsp', 1), ('written', 1), ('expert', 1), ('team', 1)]
[('hour', 2), ('asp', 2), ('net', 2), ('core', 2), ('step', 2), ('session', 1), ('le', 1), ('sam', 1), ('teach', 1), ('help', 1), ('build', 1), ('professional', 1), ('quality', 1), ('cloud', 1), ('based', 1), ('web', 1), ('connected', 1), ('solution', 1), ('book', 1), ('straightforward', 1), ('approach', 1), ('guide', 1)]
[('rail', 3), ('application', 3), ('ruby', 1), ('introduced', 1), ('web', 1), ('developer', 1), ('flocked', 1), ('quickly', 1), ('building', 1), ('become', 1), ('utterly', 1), ('indispensable', 1), ('organisation', 1), ('early', 1), ('often', 1), ('proven', 1), ('extremely', 1), ('difficult', 1), ('maintain', 1), ('evolve', 1), ('scale', 1), ('component', 1), ('based', 1), ('stephan', 1), ('hagemann', 1), ('introduces', 1), ('practical', 1)]
[('adobe', 3), ('dimension', 2), ('empowers', 1), ('graphic', 1), ('designer', 1), ('create', 1), ('high', 1), ('quality', 1), ('photorealistic', 1), ('imagery', 1), ('using', 1), ('asset', 1), ('creative', 1), ('cloud', 1), ('already', 1), ('included', 1), ('classroom', 1), ('book', 1), ('release', 1), ('offer', 1), ('complete', 1), ('hand', 1), ('training', 1), ('lesson', 1), ('help', 1), ('master', 1), ('quickly', 1), ('easily', 1)]
[('front', 2), ('end', 1), ('development', 1), ('target', 1), ('browser', 1), ('putting', 1), ('application', 1), ('widest', 1), ('range', 1), ('user', 1), ('regardless', 1), ('device', 1), ('operating', 1), ('system', 1), ('guide', 1), ('give', 1), ('solid', 1), ('foundation', 1), ('creating', 1), ('rich', 1), ('web', 1), ('experience', 1), ('across', 1), ('platform', 1), ('focusing', 1), ('javascript', 1), ('cs', 1), ('html', 1), ('book', 1), ('programmer', 1), ('background', 1)]
[('test', 3), ('tarlinder', 2), ('developer', 1), ('testing', 1), ('leading', 1), ('expert', 1), ('mentor', 1), ('alexander', 1), ('present', 1), ('concise', 1), ('focused', 1), ('guidance', 1), ('making', 1), ('new', 1), ('legacy', 1), ('code', 1), ('far', 1), ('testable', 1), ('help', 1), ('answer', 1), ('question', 1), ('tested', 1), ('enough', 1), ('many', 1), ('need', 1), ('write', 1), ('verify', 1), ('learn', 1), ('design', 1), ('testability', 1)]
[('book', 2), ('sql', 2), ('ebook', 1), ('printed', 1), ('include', 1), ('medium', 1), ('website', 1), ('access', 1), ('code', 1), ('print', 1), ('supplement', 1), ('come', 1), ('packaged', 1), ('bound', 1), ('nbsp', 1), ('sam', 1), ('teach', 1), ('microsoft', 1), ('server', 1), ('minute', 1), ('offer', 1)]
[('io', 2), ('macos', 2), ('performance', 2), ('program', 2), ('tuning', 1), ('marcel', 1), ('weiher', 1), ('drill', 1), ('code', 1), ('level', 1), ('help', 1), ('systematically', 1), ('optimize', 1), ('cpu', 1), ('memory', 1), ('graphic', 1), ('responsiveness', 1), ('objective', 1), ('cocoa', 1), ('cocoatouch', 1), ('date', 1), ('guide', 1), ('focus', 1), ('entirely', 1), ('optimization', 1), ('drawing', 1), ('year', 1), ('experience', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('game', 3), ('first', 1), ('introductory', 1), ('design', 1), ('textbook', 1), ('focused', 1), ('practical', 1), ('application', 1), ('need', 1), ('today', 1), ('student', 1), ('reflects', 1), ('field', 1), ('authoritative', 1), ('research', 1), ('includes', 1), ('detailed', 1), ('coverage', 1), ('player', 1), ('decision', 1), ('making', 1), ('written', 1), ('long', 1), ('time', 1), ('designer', 1), ('zack', 1), ('hiwiller', 1), ('department', 1), ('chair', 1), ('full', 1), ('sail', 1), ('university', 1)]
[('designer', 2), ('grid', 1), ('long', 1), ('invaluable', 1), ('tool', 1), ('creating', 1), ('order', 1), ('chaos', 1), ('kind', 1), ('city', 1), ('planner', 1), ('architect', 1), ('typesetter', 1), ('graphic', 1), ('artist', 1), ('recent', 1), ('year', 1), ('web', 1), ('come', 1), ('discover', 1), ('remarkable', 1)]
[('software', 3), ('architecture', 3), ('conceptual', 1), ('glue', 1), ('hold', 1), ('every', 1), ('phase', 1), ('project', 1), ('together', 1), ('many', 1), ('stakeholder', 1), ('widely', 1), ('recognised', 1), ('critical', 1), ('element', 1), ('modern', 1), ('development', 1), ('practitioner', 1), ('increasingly', 1), ('discovered', 1), ('close', 1), ('attention', 1), ('system', 1), ('pay', 1), ('valuable', 1), ('dividend', 1), ('without', 1)]
[('ebooks', 2), ('note', 2), ('full', 1), ('text', 1), ('downloaded', 1), ('computer', 1), ('nbsp', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('print', 1), ('page', 1), ('time', 1), ('compatible', 1), ('pc', 1), ('mac', 1), ('expiry', 1), ('offline', 1), ('access', 1), ('remain', 1), ('whilst', 1), ('bookshelf', 1), ('software', 1), ('installed', 1)]
[('software', 2), ('digital', 1), ('version', 1), ('printed', 1), ('book', 1), ('copyright', 1), ('nbsp', 1), ('written', 1), ('remarkably', 1), ('clear', 1), ('style', 1), ('creating', 1), ('engineering', 1), ('culture', 1), ('present', 1), ('comprehensive', 1), ('approach', 1), ('improving', 1), ('quality', 1), ('effectiveness', 1)]
[('effect', 3), ('visual', 2), ('book', 1), ('focus', 1), ('exclusively', 1), ('creation', 1), ('stop', 1), ('resource', 1), ('anyone', 1), ('want', 1), ('depth', 1), ('explanation', 1), ('demystify', 1), ('realm', 1), ('created', 1), ('thanks', 1)]
[('opengl', 2), ('e', 2), ('programming', 1), ('guide', 1), ('author', 1), ('cover', 1), ('entire', 1), ('api', 1), ('shading', 1), ('language', 1), ('carefully', 1), ('introduce', 1), ('feature', 1), ('shadow', 1), ('mapping', 1), ('instancing', 1), ('multiple', 1), ('render', 1), ('target', 1), ('uniform', 1), ('buffer', 1), ('object', 1), ('texture', 1), ('compression', 1), ('program', 1), ('binary', 1), ('transform', 1), ('feedback', 1), ('detailed', 1), ('downloadable', 1), ('based', 1), ('code', 1)]
[('programming', 3), ('window', 2), ('new', 2), ('reimagined', 1), ('full', 1), ('screen', 1), ('touch', 1), ('optimized', 1), ('apps', 1), ('provides', 1), ('platform', 1), ('reaching', 1), ('user', 1), ('way', 1), ('response', 1), ('legend', 1), ('charles', 1), ('petzold', 1), ('rewriting', 1), ('classic', 1), ('popular', 1)]
[('creative', 2), ('attention', 1), ('designer', 1), ('time', 1), ('serious', 1), ('process', 1), ('long', 1), ('allowed', 1), ('go', 1), ('soft', 1), ('relying', 1), ('software', 1), ('work', 1), ('expense', 1), ('craftsmanship', 1), ('book', 1), ('show', 1)]
[('microsoft', 4), ('outlook', 3), ('study', 2), ('guide', 2), ('office', 2), ('specialist', 2), ('mo', 1), ('cover', 1), ('specifically', 1), ('skill', 1), ('required', 1), ('pas', 1), ('exam', 1), ('nbsp', 1), ('provide', 1), ('concise', 1)]
[('exam', 3), ('vmware', 1), ('retired', 1), ('continuing', 1), ('make', 1), ('content', 1), ('available', 1), ('wish', 1), ('use', 1), ('study', 1), ('foundational', 1), ('information', 1), ('contains', 1), ('nbsp', 1), ('vsphere', 1), ('foundation', 1), ('official', 1), ('cert', 1), ('guide', 1)]
[('anytime', 2), ('anywhere', 2), ('complete', 1), ('guide', 1), ('seamless', 1), ('networking', 1), ('lisp', 1), ('era', 1), ('ubiquitous', 1), ('cloud', 1), ('virtualization', 1), ('mobility', 1), ('internet', 1), ('thing', 1), ('information', 1), ('resource', 1), ('accessible', 1), ('connectivity', 1)]
[('programming', 4), ('hour', 2), ('basic', 2), ('book', 2), ('program', 2), ('sam', 1), ('teach', 1), ('beginning', 1), ('explains', 1), ('successful', 1), ('format', 1), ('example', 1), ('easily', 1), ('readable', 1), ('understandable', 1), ('even', 1), ('previous', 1), ('exposure', 1), ('cover', 1), ('absolute', 1), ('tool', 1), ('use', 1)]
[('office', 1), ('college', 1), ('living', 1), ('room', 1), ('across', 1), ('globe', 1), ('learner', 1), ('age', 1), ('logging', 1), ('virtual', 1), ('laboratory', 1), ('online', 1), ('classroom', 1), ('world', 1), ('kid', 1), ('kindergarten', 1), ('high', 1), ('school', 1), ('honing', 1), ('math', 1), ('literacy', 1), ('skill', 1), ('phone', 1), ('ipads', 1), ('enough', 1), ('worldwide', 1), ('aggregating', 1), ('internet', 1), ('service', 1), ('social', 1)]
[('nbsp', 4), ('web', 3), ('mvc', 2), ('model', 2), ('go', 1), ('deep', 1), ('architecture', 1), ('feature', 1), ('asp', 1), ('net', 1), ('teach', 1), ('student', 1), ('build', 1), ('application', 1), ('work', 1), ('desktop', 1), ('mobile', 1), ('device', 1), ('development', 1), ('expert', 1), ('dino', 1), ('esposito', 1), ('take', 1), ('reader', 1), ('framework', 1), ('view', 1), ('controller', 1), ('design', 1), ('cover', 1), ('tool', 1), ('needed', 1)]
[('photoshop', 2), ('technique', 2), ('step', 2), ('workbook', 1), ('professional', 1), ('retouching', 1), ('compositing', 1), ('tip', 1), ('trick', 1), ('reveals', 1), ('creative', 1), ('skill', 1), ('photographer', 1), ('retoucher', 1), ('glyn', 1), ('dewis', 1), ('us', 1), ('global', 1), ('client', 1), ('guide', 1), ('learn', 1), ('apply', 1), ('take', 1), ('image', 1)]
[('modern', 2), ('dart', 1), ('class', 1), ('based', 1), ('object', 1), ('oriented', 1), ('language', 1), ('simplifies', 1), ('development', 1), ('structured', 1), ('apps', 1), ('scale', 1), ('small', 1), ('script', 1), ('large', 1), ('application', 1), ('compiled', 1), ('javascript', 1), ('use', 1), ('browser', 1), ('rigorous', 1)]
[('data', 3), ('science', 3), ('hadoop', 3), ('professional', 2), ('complete', 1), ('guide', 1), ('technical', 1), ('businesspeople', 1), ('student', 1), ('nbsp', 1), ('demand', 1), ('soaring', 1), ('solve', 1), ('real', 1), ('problem', 1), ('spark', 1), ('practical', 1)]
[('nbsp', 2), ('complete', 1), ('practical', 1), ('actionable', 1), ('guide', 1), ('microservices', 1), ('going', 1), ('beyond', 1), ('mere', 1), ('theory', 1), ('marketing', 1), ('hype', 1), ('eberhard', 1), ('wolff', 1), ('present', 1), ('knowledge', 1), ('need', 1), ('capture', 1), ('full', 1), ('benefit', 1), ('emerging', 1), ('paradigm', 1), ('illuminates', 1)]
[('powerful', 2), ('text', 2), ('tool', 2), ('learn', 1), ('use', 1), ('processing', 1), ('manipulation', 1), ('available', 1), ('regular', 1), ('expression', 1), ('expert', 1), ('long', 1), ('armed', 1), ('incredibly', 1), ('used', 1), ('perform', 1), ('sort', 1), ('sophisticated', 1)]
[('source', 2), ('cisco', 2), ('level', 2), ('today', 1), ('best', 1), ('single', 1), ('technique', 1), ('need', 1), ('troubleshoot', 1), ('problem', 1), ('nexus', 1), ('switch', 1), ('running', 1), ('nx', 1), ('o', 1), ('operating', 1), ('system', 1), ('bringing', 1), ('together', 1), ('content', 1), ('previously', 1), ('spread', 1), ('across', 1), ('multiple', 1), ('press', 1), ('title', 1), ('present', 1), ('minute', 1), ('feature', 1), ('architectural', 1), ('information', 1), ('indispensable', 1)]
[('networking', 2), ('vmware', 2), ('stop', 1), ('guide', 1), ('modern', 1), ('every', 1), ('administrator', 1), ('engineer', 1), ('architect', 1), ('nbsp', 1), ('virtualization', 1), ('blurred', 1), ('line', 1), ('server', 1), ('many', 1), ('specialist', 1), ('need', 1), ('stronger', 1), ('understanding', 1), ('network', 1)]
[('step', 3), ('web', 2), ('smart', 1), ('way', 1), ('learn', 1), ('microsoft', 1), ('expression', 1), ('time', 1), ('experience', 1), ('learning', 1), ('made', 1), ('easy', 1), ('quickly', 1), ('teach', 1), ('create', 1), ('dynamic', 1), ('standard', 1), ('based', 1), ('site', 1), ('set', 1), ('pace', 1), ('building', 1), ('practicing', 1)]
[('take', 1), ('charge', 1), ('create', 1), ('effective', 1), ('balance', 1), ('work', 1), ('personal', 1), ('life', 1), ('help', 1), ('microsoft', 1), ('outlook', 1), ('practical', 1), ('guide', 1), ('expert', 1), ('teach', 1), ('proven', 1), ('time', 1), ('management', 1), ('system', 1), ('showing', 1), ('set', 1), ('manage', 1), ('priority', 1)]
[('coding', 3), ('standard', 3), ('secure', 2), ('cisco', 1), ('adopted', 1), ('cert', 1), ('internal', 1), ('developer', 1), ('core', 1), ('component', 1), ('development', 1), ('lifecycle', 1), ('described', 1), ('book', 1), ('break', 1), ('complex', 1), ('software', 1)]
[('adobe', 4), ('animate', 4), ('cc', 2), ('book', 2), ('step', 2), ('creative', 1), ('professional', 1), ('seeking', 1), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('choose', 1), ('classroom', 1), ('release', 1), ('press', 1), ('project', 1), ('based', 1), ('lesson', 1), ('show', 1), ('user', 1), ('key', 1), ('technique', 1), ('working', 1), ('provides', 1), ('expressive', 1), ('tool', 1), ('powerful', 1)]
[('agile', 2), ('testing', 2), ('comprehensive', 1), ('collection', 1), ('best', 1), ('practice', 1), ('definitive', 1), ('guide', 1), ('leading', 1), ('pioneer', 1), ('nbsp', 1), ('janet', 1), ('gregory', 1), ('lisa', 1), ('crispin', 1), ('pioneered', 1), ('written', 1), ('field', 1), ('valuable', 1), ('guidebook', 1)]
[('project', 3), ('design', 2), ('type', 1), ('book', 1), ('brings', 1), ('together', 1), ('collection', 1), ('typographically', 1), ('focused', 1), ('beginning', 1), ('intermediate', 1), ('level', 1), ('graphic', 1), ('designer', 1), ('renowned', 1), ('instructor', 1), ('nigel', 1), ('french', 1), ('approach', 1), ('technical', 1)]
[('guide', 2), ('lightwave', 2), ('best', 1), ('selling', 1), ('newtek', 1), ('animation', 1), ('software', 1), ('completely', 1), ('updated', 1), ('award', 1), ('winning', 1), ('animator', 1), ('trainer', 1), ('dan', 1), ('ablan', 1), ('earth', 1), ('easy', 1), ('follow', 1), ('offer', 1), ('invaluable', 1), ('set', 1), ('real', 1), ('world', 1)]
[('inkscape', 3), ('guide', 2), ('program', 2), ('vector', 1), ('drawing', 1), ('fourth', 1), ('edition', 1), ('coverage', 1), ('version', 1), ('authoritative', 1), ('introduction', 1), ('reference', 1), ('feature', 1), ('hundred', 1), ('useful', 1), ('illustration', 1), ('using', 1)]
[('engineer', 2), ('far', 2), ('ask', 1), ('mechanical', 1), ('structural', 1), ('electrical', 1), ('without', 1), ('heavy', 1), ('reliance', 1), ('firm', 1), ('mathematical', 1), ('foundation', 1), ('tell', 1), ('yet', 1), ('called', 1), ('software', 1), ('often', 1), ('practice', 1), ('art', 1), ('little', 1)]
[('laurel', 2), ('computer', 2), ('interaction', 2), ('brenda', 1), ('theatre', 1), ('revolutionized', 1), ('field', 1), ('human', 1), ('offering', 1), ('idea', 1), ('inspired', 1), ('generation', 1), ('interface', 1), ('designer', 1), ('continue', 1), ('inspire', 1), ('insight', 1), ('effective', 1)]
[('lighting', 2), ('learn', 1), ('fine', 1), ('art', 1), ('craft', 1), ('digital', 1), ('rendering', 1), ('experienced', 1), ('pro', 1), ('whose', 1), ('work', 1), ('seen', 1), ('blockbuster', 1), ('film', 1), ('monster', 1), ('university', 1), ('toy', 1), ('story', 1), ('wall', 1), ('ratatouille', 1), ('incredibles', 1), ('jeremy', 1), ('birn', 1), ('draw', 1)]
[('test', 3), ('software', 3), ('development', 2), ('practice', 2), ('driven', 1), ('first', 1), ('early', 1), ('helping', 1), ('thousand', 1), ('organization', 1), ('improve', 1), ('quality', 1), ('code', 1), ('testing', 1), ('principle', 1), ('pattern', 1), ('stephen', 1), ('vance', 1), ('build', 1)]
[('swift', 4), ('author', 1), ('carefully', 1), ('constructed', 1), ('explanation', 1), ('example', 1), ('student', 1), ('develop', 1), ('understanding', 1), ('grammar', 1), ('element', 1), ('effective', 1), ('style', 1), ('updated', 1), ('book', 1), ('compatible', 1), ('learn', 1), ('navigate', 1), ('xcode', 1), ('apple', 1), ('documentation', 1), ('throughout', 1)]
[('nan', 1)]
[('hadoop', 4), ('administration', 2), ('alapati', 2), ('expert', 1), ('leading', 1), ('administrator', 1), ('sam', 1), ('brings', 1), ('together', 1), ('authoritative', 1), ('knowledge', 1), ('creating', 1), ('configuring', 1), ('securing', 1), ('managing', 1), ('optimising', 1), ('production', 1), ('cluster', 1), ('environment', 1), ('drawing', 1), ('experience', 1), ('large', 1), ('scale', 1), ('integrates', 1), ('action', 1), ('oriented', 1), ('advice', 1)]
[('window', 2), ('server', 2), ('fully', 1), ('updated', 1), ('designed', 1), ('help', 1), ('enterprise', 1), ('administrator', 1), ('develop', 1), ('real', 1), ('world', 1), ('job', 1), ('role', 1), ('specific', 1), ('skill', 1), ('training', 1), ('guide', 1), ('focus', 1), ('core', 1), ('infrastructure', 1), ('administration', 1), ('build', 1), ('hand', 1)]
[('lightroom', 5), ('book', 2), ('mobile', 2), ('scott', 1), ('kelby', 1), ('best', 1), ('selling', 1), ('author', 1), ('brings', 1), ('everything', 1), ('need', 1), ('know', 1), ('newest', 1), ('kind', 1), ('extension', 1), ('regular', 1), ('desktop', 1), ('version', 1), ('allows', 1), ('user', 1), ('use', 1), ('ipads', 1), ('iphones', 1), ('android', 1), ('device', 1), ('really', 1), ('handy', 1)]
[('software', 3), ('integration', 3), ('developer', 1), ('spent', 1), ('day', 1), ('hell', 1), ('cobbling', 1), ('together', 1), ('myriad', 1), ('component', 1), ('continuous', 1), ('improving', 1), ('quality', 1), ('reducing', 1), ('risk', 1), ('illustrates', 1), ('transform', 1), ('necessary', 1), ('evil', 1)]
[('aws', 3), ('cloud', 2), ('need', 2), ('learning', 1), ('amazon', 1), ('web', 1), ('service', 1), ('clear', 1), ('complete', 1), ('practical', 1), ('hand', 1), ('introduction', 1), ('world', 1), ('leading', 1), ('platform', 1), ('perfect', 1), ('resource', 1), ('everyone', 1), ('understand', 1), ('whatever', 1), ('previous', 1), ('background', 1), ('top', 1), ('trainer', 1), ('evangelist', 1), ('mark', 1), ('wilkins', 1), ('cover', 1), ('know', 1), ('succeed', 1), ('introducing', 1)]
[('ip', 5), ('multicast', 5), ('volume', 2), ('cisco', 2), ('networking', 1), ('design', 1), ('deploy', 1), ('operate', 1), ('modern', 1), ('network', 1), ('thoroughly', 1), ('cover', 1), ('basic', 1), ('principle', 1), ('routing', 1), ('technique', 1), ('building', 1), ('operating', 1)]
[('unreal', 2), ('engine', 2), ('hour', 2), ('step', 2), ('sam', 1), ('teach', 1), ('game', 1), ('development', 1), ('straightforward', 1), ('approach', 1), ('show', 1), ('work', 1), ('interface', 1), ('workflow', 1), ('powerful', 1), ('editor', 1), ('tool', 1), ('creating', 1), ('effect', 1), ('scripting', 1), ('warfare', 1), ('implementing', 1), ('physic', 1), ('even', 1), ('developing', 1), ('mobile', 1), ('device', 1), ('hud', 1)]
[('iot', 4), ('master', 1), ('powerful', 1), ('technique', 1), ('approach', 1), ('securing', 1), ('system', 1), ('kind', 1), ('current', 1), ('emerging', 1), ('internet', 1), ('thing', 1), ('technology', 1), ('adoption', 1), ('accelerating', 1), ('present', 1), ('complex', 1), ('new', 1), ('security', 1), ('challenge', 1), ('fortunately', 1), ('standard', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('soa', 1), ('design', 1), ('pattern', 1), ('important', 1), ('contribution', 1), ('literature', 1), ('practice', 1), ('building', 1), ('delivering', 1)]
[('ebay', 3), ('past', 1), ('year', 1), ('become', 1), ('household', 1), ('name', 1), ('even', 1), ('never', 1), ('traded', 1), ('chance', 1), ('know', 1), ('turn', 1), ('action', 1), ('snap', 1), ('second', 1), ('edition', 1), ('hand', 1), ('task', 1), ('based', 1), ('guide', 1)]
[('wordpress', 3), ('visual', 2), ('quickstart', 1), ('guide', 1), ('rd', 1), ('edition', 1), ('us', 1), ('approach', 1), ('teach', 1), ('essential', 1), ('element', 1), ('world', 1), ('popular', 1), ('publishing', 1), ('platform', 1), ('book', 1), ('give', 1), ('reader', 1), ('tool', 1), ('need', 1), ('create', 1), ('beautiful', 1), ('functional', 1), ('powered', 1), ('site', 1), ('minimal', 1), ('hassle', 1), ('using', 1), ('plenty', 1), ('screenshots', 1), ('clear', 1), ('organised', 1)]
[('step', 2), ('experience', 1), ('learning', 1), ('made', 1), ('easy', 1), ('quickly', 1), ('teach', 1), ('build', 1), ('database', 1), ('access', 1), ('set', 1), ('pace', 1), ('building', 1), ('practicing', 1), ('skill', 1), ('need', 1), ('includes', 1), ('downloadable', 1), ('practice', 1), ('file', 1)]
[('step', 2), ('experience', 1), ('learning', 1), ('made', 1), ('easy', 1), ('quickly', 1), ('teach', 1), ('format', 1), ('publish', 1), ('share', 1), ('content', 1), ('using', 1), ('word', 1), ('set', 1), ('pace', 1), ('building', 1), ('practicing', 1), ('skill', 1), ('need', 1), ('includes', 1), ('downloadable', 1)]
[('javascript', 4), ('programming', 2), ('example', 1), ('easiest', 1), ('hand', 1), ('way', 1), ('learn', 1), ('legendary', 1), ('instructor', 1), ('ellie', 1), ('quigley', 1), ('thoroughly', 1), ('updated', 1), ('classic', 1), ('book', 1), ('deliver', 1), ('skill', 1), ('information', 1), ('today', 1), ('user', 1), ('need', 1), ('including', 1), ('minute', 1), ('coverage', 1), ('construct', 1), ('cs', 1), ('ajax', 1), ('json', 1), ('latest', 1)]
[('android', 2), ('guide', 2), ('wireless', 1), ('application', 1), ('development', 1), ('earned', 1), ('reputation', 1), ('useful', 1), ('real', 1), ('world', 1), ('building', 1), ('robust', 1), ('commercial', 1), ('grade', 1), ('apps', 1), ('author', 1), ('lauren', 1), ('darcey', 1), ('shane', 1), ('conder', 1), ('systematically', 1), ('revised', 1), ('updated', 1)]
[('step', 4), ('window', 4), ('visual', 2), ('easy', 2), ('hand', 1), ('tutorial', 1), ('common', 1), ('task', 1), ('user', 1), ('need', 1), ('perform', 1), ('whether', 1), ('already', 1), ('using', 1), ('newcomer', 1), ('fast', 1), ('way', 1), ('discover', 1), ('microsoft', 1), ('latest', 1), ('operating', 1), ('system', 1), ('procedure', 1), ('want', 1)]
[('center', 2), ('first', 1), ('comprehensive', 1), ('operation', 1), ('manager', 1), ('technical', 1), ('resource', 1), ('every', 1), ('implementer', 1), ('administrator', 1), ('building', 1), ('bestselling', 1), ('opsmgr', 1), ('book', 1), ('three', 1), ('microsoft', 1), ('system', 1), ('cloud', 1), ('data', 1), ('management', 1), ('mvp', 1), ('thoroughly', 1)]
[('powerpoint', 3), ('microsoft', 2), ('advance', 1), ('everyday', 1), ('proficiency', 1), ('earn', 1), ('credential', 1), ('prof', 1), ('demonstrate', 1), ('expertise', 1), ('designed', 1), ('help', 1), ('practice', 1), ('prepare', 1), ('office', 1), ('specialist', 1), ('mo', 1), ('negetiveemoji', 1)]
[('ipsec', 3), ('cisco', 2), ('introduction', 1), ('designing', 1), ('configuring', 1), ('vpns', 1), ('nbsp', 1), ('understand', 1), ('basic', 1), ('protocol', 1), ('learn', 1), ('implementation', 1), ('best', 1), ('practice', 1), ('study', 1), ('date', 1), ('design', 1), ('incorporating', 1), ('current', 1), ('innovation', 1), ('security', 1)]
[('student', 2), ('tcp', 2), ('ip', 2), ('network', 2), ('step', 2), ('session', 1), ('hour', 1), ('le', 1), ('discover', 1), ('implement', 1), ('monitor', 1), ('manage', 1), ('even', 1), ('latest', 1), ('cloud', 1), ('based', 1), ('ipv', 1), ('using', 1), ('book', 1), ('straightforward', 1), ('approach', 1), ('uncover', 1), ('essential', 1), ('put', 1), ('knowledge', 1), ('work', 1), ('practical', 1), ('example', 1), ('lesson', 1)]
[('microsoft', 2), ('office', 2), ('exam', 2), ('objective', 2), ('demonstrate', 1), ('expertise', 1), ('designed', 1), ('help', 1), ('practice', 1), ('prepare', 1), ('outlook', 1), ('specialist', 1), ('mo', 1), ('study', 1), ('guide', 1), ('feature', 1), ('full', 1), ('coverage', 1)]
[('tagging', 2), ('fast', 1), ('becoming', 1), ('primary', 1), ('way', 1), ('organize', 1), ('manage', 1), ('digital', 1), ('information', 1), ('complement', 1), ('traditional', 1), ('organizational', 1), ('tool', 1), ('folder', 1), ('search', 1), ('user', 1), ('desktop', 1), ('web', 1), ('development', 1), ('mean', 1)]
[('macbook', 3), ('nbsp', 3), ('step', 2), ('help', 2), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('run', 1), ('snow', 1), ('leopard', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1)]
[('javascript', 2), ('page', 2), ('brain', 1), ('web', 1), ('enables', 1), ('modify', 1), ('document', 1), ('structure', 1), ('styling', 1), ('content', 1), ('response', 1), ('user', 1), ('action', 1), ('without', 1), ('requesting', 1), ('new', 1), ('server', 1), ('scriptin', 1), ('ajax', 1), ('teach', 1), ('master', 1)]
[('learn', 2), ('use', 2), ('profile', 2), ('manager', 2), ('lion', 2), ('feature', 1), ('included', 1), ('o', 1), ('server', 1), ('configure', 1), ('remotely', 1), ('manage', 1), ('io', 1), ('device', 1), ('including', 1), ('ipad', 1), ('iphone', 1), ('ipod', 1), ('touch', 1), ('mac', 1), ('running', 1), ('ebook', 1)]
[('mac', 2), ('earned', 1), ('reputation', 1), ('secure', 1), ('think', 1), ('lift', 1), ('finger', 1), ('keep', 1), ('protected', 1), ('sadly', 1), ('case', 1), ('apple', 1), ('balance', 1), ('security', 1), ('convenience', 1), ('come', 1), ('shipping', 1), ('new', 1)]
[('window', 2), ('nbsp', 2), ('tweak', 1), ('freak', 1), ('killer', 1), ('guide', 1), ('making', 1), ('run', 1), ('way', 1), ('hundred', 1), ('million', 1), ('use', 1), ('every', 1), ('day', 1), ('safe', 1), ('bet', 1), ('describe', 1), ('happy', 1), ('camper', 1), ('regardless', 1), ('skill', 1), ('level', 1)]
[('itunes', 3), ('icloud', 3), ('full', 1), ('color', 1), ('cover', 1), ('mac', 1), ('andwindows', 1), ('nbsp', 1), ('make', 1), ('without', 1), ('technical', 1), ('expert', 1), ('book', 1), ('fastest', 1), ('way', 1), ('use', 1), ('enjoy', 1), ('medium', 1), ('anywhere', 1), ('go', 1), ('iphone', 1)]
[('office', 3), ('easy', 1), ('teach', 1), ('student', 1), ('fundamental', 1), ('help', 1), ('fully', 1), ('illustrated', 1), ('step', 1), ('simple', 1), ('instruction', 1), ('guide', 1), ('task', 1), ('building', 1), ('skill', 1), ('need', 1), ('make', 1), ('new', 1), ('feature', 1), ('tool', 1), ('full', 1), ('text', 1), ('downloaded', 1), ('computer', 1), ('ebooks', 1), ('search', 1)]
[('gotchas', 1), ('professional', 1), ('programmer', 1), ('guide', 1), ('avoiding', 1), ('correcting', 1), ('ninety', 1), ('nine', 1), ('common', 1), ('destructive', 1), ('interesting', 1), ('design', 1), ('programming', 1), ('error', 1), ('serf', 1), ('inside', 1), ('look', 1), ('subtle', 1), ('feature', 1)]
[('designer', 2), ('many', 1), ('photographer', 1), ('entire', 1), ('suite', 1), ('adobe', 1), ('creative', 1), ('product', 1), ('manage', 1), ('learn', 1), ('application', 1), ('really', 1), ('new', 1), ('addition', 1), ('popular', 1), ('non', 1), ('series', 1), ('best', 1), ('selling', 1), ('author', 1), ('nbsp', 1)]
[('language', 2), ('ready', 1), ('reference', 1), ('nbsp', 1), ('impatient', 1), ('offer', 1), ('quickest', 1), ('way', 1), ('busy', 1), ('programmer', 1), ('learn', 1), ('latest', 1), ('feature', 1), ('handy', 1), ('resource', 1), ('quickly', 1), ('finding', 1), ('answer', 1), ('specific', 1), ('question', 1), ('designed', 1)]
[('portable', 1), ('precise', 1), ('pocket', 1), ('sized', 1), ('guide', 1), ('delivers', 1), ('ready', 1), ('answer', 1), ('administering', 1), ('storage', 1), ('security', 1), ('networking', 1), ('feature', 1), ('window', 1), ('server', 1), ('zero', 1), ('core', 1), ('task', 1), ('quick', 1), ('reference', 1), ('table', 1), ('instruction', 1), ('list', 1)]
[('design', 2), ('want', 2), ('start', 1), ('every', 1), ('web', 1), ('project', 1), ('ongoing', 1), ('struggle', 1), ('reappear', 1), ('highly', 1), ('usable', 1), ('self', 1), ('evident', 1), ('application', 1), ('devise', 1), ('innovative', 1), ('compelling', 1), ('exciting', 1), ('interaction', 1), ('make', 1), ('wave', 1), ('market', 1)]
[('object', 3), ('using', 2), ('linq', 2), ('complete', 1), ('example', 1), ('rich', 1), ('guide', 1), ('extending', 1), ('plinq', 1), ('nbsp', 1), ('net', 1), ('developer', 1), ('write', 1), ('query', 1), ('collection', 1), ('deep', 1), ('functionality', 1), ('available', 1), ('sql', 1)]
[('galaxy', 3), ('tab', 3), ('nbsp', 2), ('samsung', 2), ('step', 2), ('friendly', 1), ('quick', 1), ('practical', 1), ('companion', 1), ('every', 1), ('user', 1), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1)]
[('sharepoint', 2), ('step', 2), ('manager', 2), ('need', 1), ('fast', 1), ('reliable', 1), ('easy', 1), ('implement', 1), ('solution', 1), ('book', 1), ('delivers', 1), ('exactly', 1), ('looking', 1), ('help', 1), ('guidance', 1), ('task', 1), ('user', 1), ('author', 1), ('content', 1), ('site', 1)]
[('computer', 2), ('fix', 1), ('without', 1), ('becoming', 1), ('technical', 1), ('expert', 1), ('book', 1), ('fastest', 1), ('way', 1), ('save', 1), ('money', 1), ('repair', 1), ('avoid', 1), ('unnecessary', 1), ('frustration', 1), ('keep', 1), ('using', 1), ('perfectly', 1), ('good', 1), ('equipment', 1), ('instead', 1), ('throwing', 1), ('away', 1), ('even', 1)]
[('nan', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('hour', 2), ('node', 2), ('j', 2), ('step', 2), ('session', 1), ('le', 1), ('sam', 1), ('teach', 1), ('help', 1), ('master', 1), ('platform', 1), ('use', 1), ('build', 1), ('server', 1), ('side', 1), ('application', 1), ('extraordinary', 1), ('speed', 1), ('scalability', 1), ('using', 1), ('text', 1), ('straightforward', 1), ('approach', 1), ('move', 1), ('basic', 1), ('installation', 1), ('configuration', 1), ('programming', 1)]
[('agile', 4), ('decade', 3), ('lesson', 1), ('first', 1), ('leadership', 1), ('next', 1), ('nbsp', 1), ('software', 1), ('movement', 1), ('around', 1), ('full', 1), ('coauthor', 1), ('original', 1), ('manifesto', 1), ('jim', 1), ('highsmith', 1), ('heart', 1), ('beginning', 1)]
[('learn', 2), ('angularjs', 2), ('javascript', 2), ('jquery', 2), ('web', 1), ('application', 1), ('development', 1), ('nbsp', 1), ('short', 1), ('time', 1), ('basic', 1), ('language', 1), ('library', 1), ('framework', 1), ('find', 1), ('use', 1), ('build', 1), ('designed', 1)]
[('nbsp', 5), ('creative', 4), ('adobe', 3), ('design', 2), ('cloud', 2), ('professional', 1), ('seeking', 1), ('fastest', 1), ('easiest', 1), ('way', 1), ('learn', 1), ('choose', 1), ('classroom', 1), ('book', 1), ('team', 1), ('project', 1), ('based', 1), ('lesson', 1), ('show', 1)]
[('service', 2), ('oriented', 2), ('architecture', 2), ('soa', 1), ('heart', 1), ('revolutionary', 1), ('computing', 1), ('platform', 1), ('adopted', 1), ('world', 1), ('wide', 1), ('earned', 1), ('support', 1), ('every', 1), ('major', 1), ('software', 1), ('provider', 1), ('concept', 1), ('technology', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('first', 1), ('expert', 1), ('guide', 1), ('static', 1), ('analysis', 1), ('software', 1), ('security', 1), ('nbsp', 1), ('creating', 1), ('secure', 1), ('code', 1), ('requires', 1)]
[('programming', 3), ('fast', 2), ('swift', 2), ('io', 2), ('o', 2), ('started', 1), ('nbsp', 1), ('learning', 1), ('paced', 1), ('hand', 1), ('introduction', 1), ('writing', 1), ('production', 1), ('quality', 1), ('apps', 1), ('apple', 1), ('new', 1), ('language', 1), ('written', 1), ('developer', 1)]
[('instagram', 2), ('use', 2), ('downloaded', 1), ('free', 1), ('app', 1), ('iphone', 1), ('make', 1), ('sharing', 1), ('unique', 1), ('faux', 1), ('vintage', 1), ('photograph', 1), ('facebook', 1), ('entertaining', 1), ('camera', 1), ('filter', 1), ('getting', 1)]
[('photoshop', 3), ('speed', 1), ('fast', 1), ('new', 1), ('c', 1), ('feature', 1), ('photographer', 1), ('need', 1), ('know', 1), ('long', 1), ('industry', 1), ('standard', 1), ('editing', 1), ('tool', 1), ('anyone', 1), ('work', 1), ('image', 1), ('living', 1), ('huge', 1), ('powerful', 1)]
[('software', 4), ('book', 3), ('step', 2), ('many', 1), ('available', 1), ('risk', 1), ('failure', 1), ('provide', 1), ('information', 1), ('getting', 1), ('troubled', 1), ('project', 1), ('back', 1), ('track', 1), ('provides', 1), ('detailed', 1), ('guideline', 1)]
[('image', 2), ('quality', 2), ('edition', 1), ('real', 1), ('world', 1), ('photoshop', 1), ('tightly', 1), ('focused', 1), ('need', 1), ('demand', 1), ('professional', 1), ('digital', 1), ('photographer', 1), ('acquiring', 1), ('using', 1), ('efficient', 1), ('processing', 1), ('workflow', 1), ('maintaining', 1), ('final', 1), ('output', 1)]
[('code', 2), ('nbsp', 2), ('java', 2), ('easy', 2), ('essential', 1), ('command', 1), ('phrasebook', 1), ('give', 1), ('phrase', 1), ('need', 1), ('quickly', 1), ('effectively', 1), ('complete', 1), ('programming', 1), ('project', 1), ('concise', 1), ('accessible', 1), ('carry', 1), ('use', 1), ('let', 1), ('ditch', 1)]
[('right', 3), ('step', 2), ('technology', 2), ('project', 2), ('proven', 1), ('solution', 1), ('unique', 1), ('practical', 1), ('book', 1), ('show', 1), ('information', 1), ('manager', 1), ('acquire', 1), ('vendor', 1), ('price', 1), ('business', 1), ('numerous', 1)]
[('ipad', 3), ('camera', 2), ('bag', 2), ('earned', 1), ('place', 1), ('apple', 1), ('popular', 1), ('tablet', 1), ('incredibly', 1), ('useful', 1), ('tool', 1), ('photographer', 1), ('go', 1), ('instead', 1), ('hauling', 1), ('laptop', 1), ('road', 1), ('photo', 1), ('shoot', 1), ('tuck', 1), ('lightweight', 1)]
[('wordpress', 2), ('website', 2), ('student', 1), ('learn', 1), ('detail', 1), ('maintain', 1), ('powered', 1), ('proper', 1), ('site', 1), ('architecture', 1), ('box', 1), ('solution', 1), ('client', 1), ('request', 1), ('content', 1), ('delivery', 1), ('convert', 1), ('already', 1), ('built', 1), ('deployment', 1), ('live', 1), ('server', 1), ('full', 1), ('text', 1), ('downloaded', 1), ('computer', 1), ('ebooks', 1), ('search', 1), ('key', 1)]
[('mobile', 3), ('interaction', 2), ('design', 2), ('apps', 1), ('feel', 1), ('natural', 1), ('intuitive', 1), ('user', 1), ('understand', 1), ('quickly', 1), ('easily', 1), ('mean', 1), ('effective', 1), ('interface', 1), ('crucial', 1), ('app', 1), ('developer', 1), ('even', 1), ('designer', 1), ('adequate', 1), ('training', 1), ('area', 1), ('essential', 1), ('fill', 1), ('gap', 1), ('bringing', 1), ('together', 1), ('proven', 1)]
[('process', 2), ('twenty', 1), ('year', 1), ('ago', 1), ('achieving', 1), ('predictable', 1), ('cmyk', 1), ('color', 1), ('press', 1), ('relatively', 1), ('straightforward', 1), ('partner', 1), ('photographer', 1), ('designer', 1), ('printer', 1), ('clearly', 1), ('defined', 1), ('role', 1), ('responsibility', 1), ('introduction', 1)]
[('window', 2), ('server', 2), ('fully', 1), ('updated', 1), ('designed', 1), ('help', 1), ('enterprise', 1), ('administrator', 1), ('develop', 1), ('real', 1), ('world', 1), ('job', 1), ('role', 1), ('specific', 1), ('skill', 1), ('training', 1), ('guide', 1), ('focus', 1), ('configuration', 1), ('advanced', 1), ('service', 1), ('build', 1), ('hand', 1)]
[('hour', 2), ('data', 2), ('analysis', 2), ('lesson', 1), ('le', 1), ('sam', 1), ('teach', 1), ('help', 1), ('learn', 1), ('skill', 1), ('need', 1), ('solve', 1), ('wide', 1), ('spectrum', 1), ('real', 1), ('world', 1), ('problem', 1), ('master', 1), ('entire', 1), ('workflow', 1), ('learning', 1), ('build', 1)]
[('xcode', 3), ('use', 2), ('io', 2), ('o', 2), ('apple', 2), ('craft', 1), ('outstanding', 1), ('apps', 1), ('nbsp', 1), ('start', 1), ('finish', 1), ('help', 1), ('tool', 1), ('improve', 1), ('productivity', 1), ('write', 1), ('code', 1), ('leverage', 1), ('newest', 1), ('yosemite', 1), ('feature', 1), ('including', 1), ('new', 1)]
[('nbsp', 3), ('book', 2), ('joomla', 1), ('allowing', 1), ('ordinary', 1), ('extraordinary', 1), ('thing', 1), ('exactly', 1), ('author', 1), ('reader', 1), ('present', 1), ('pleasure', 1), ('begin', 1), ('began', 1), ('take', 1)]
[('firewall', 4), ('personal', 2), ('absolute', 1), ('beginner', 1), ('guide', 1), ('designed', 1), ('provide', 1), ('simplified', 1), ('yet', 1), ('thorough', 1), ('information', 1), ('prevalent', 1), ('software', 1), ('application', 1), ('available', 1), ('non', 1), ('expert', 1), ('consumer', 1), ('addition', 1)]
[('designing', 2), ('obvious', 2), ('web', 2), ('belongs', 1), ('toolbox', 1), ('every', 1), ('person', 1), ('charged', 1), ('design', 1), ('development', 1), ('based', 1), ('software', 1), ('ceo', 1), ('programming', 1), ('team', 1), ('explores', 1), ('character', 1), ('trait', 1), ('application', 1)]
[('wtp', 3), ('web', 3), ('end', 2), ('java', 2), ('tool', 2), ('discover', 1), ('new', 1), ('toolset', 1), ('based', 1), ('development', 1), ('eclipse', 1), ('platform', 1), ('seamlessly', 1), ('integrates', 1), ('today', 1), ('developer', 1), ('need', 1), ('unprecedented', 1), ('open', 1), ('source', 1), ('resource', 1), ('working', 1)]
[('adobe', 1), ('creative', 1), ('suite', 1), ('fantastic', 1), ('tool', 1), ('minimizing', 1), ('drudgery', 1), ('graphic', 1), ('production', 1), ('work', 1), ('key', 1), ('make', 1), ('computer', 1), ('photoshop', 1), ('illustrator', 1), ('indesign', 1), ('rote', 1), ('task', 1), ('although', 1), ('concept', 1), ('automation', 1)]
[('o', 2), ('mac', 2), ('apple', 1), ('next', 1), ('version', 1), ('code', 1), ('named', 1), ('leopard', 1), ('keep', 1), ('user', 1), ('forefront', 1), ('making', 1), ('computer', 1), ('respected', 1), ('best', 1), ('selling', 1), ('author', 1), ('maria', 1), ('langer', 1), ('take', 1), ('reader', 1), ('groundbreaking', 1), ('capability', 1), ('including', 1)]
[('photoshop', 2), ('need', 2), ('anyone', 1), ('relies', 1), ('meet', 1), ('tough', 1), ('production', 1), ('challenge', 1), ('know', 1), ('new', 1), ('version', 1), ('arrives', 1), ('especially', 1), ('chockfull', 1), ('enhancement', 1), ('c', 1), ('time', 1), ('fool', 1), ('around', 1), ('speed', 1)]
[('mac', 4), ('window', 3), ('o', 2), ('longer', 1), ('choose', 1), ('latest', 1), ('apple', 1), ('run', 1), ('limited', 1), ('operating', 1), ('system', 1), ('running', 1), ('explains', 1), ('simple', 1), ('technology', 1), ('work', 1)]
[('expression', 3), ('web', 3), ('book', 3), ('microsoft', 2), ('nbsp', 2), ('special', 1), ('edition', 1), ('using', 1), ('need', 1), ('successor', 1), ('best', 1), ('selling', 1), ('first', 1), ('release', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1)]
[('video', 3), ('toward', 2), ('viewing', 2), ('internet', 1), ('day', 1), ('growing', 1), ('trend', 1), ('mobile', 1), ('device', 1), ('increase', 1), ('attention', 1), ('turning', 1), ('creating', 1), ('good', 1), ('user', 1), ('experience', 1), ('downloading', 1), ('key', 1)]
[('artist', 2), ('photoshop', 2), ('talented', 1), ('digital', 1), ('working', 1), ('medium', 1), ('share', 1), ('secret', 1), ('creating', 1), ('stunning', 1), ('art', 1), ('using', 1), ('adobe', 1), ('master', 1), ('class', 1), ('experienced', 1), ('beautifully', 1), ('illustrated', 1), ('guide', 1), ('show', 1)]
[('opportunity', 2), ('businessperson', 1), ('know', 1), ('online', 1), ('market', 1), ('present', 1), ('vast', 1), ('largely', 1), ('untapped', 1), ('go', 1), ('making', 1), ('whether', 1), ('many', 1), ('merchant', 1), ('already', 1), ('using', 1), ('paypal', 1), ('thinking', 1)]
[('pro', 2), ('new', 1), ('release', 1), ('final', 1), ('cut', 1), ('apple', 1), ('completely', 1), ('engineered', 1), ('popular', 1), ('film', 1), ('video', 1), ('editing', 1), ('software', 1), ('include', 1), ('incredible', 1), ('lineup', 1), ('feature', 1), ('intended', 1), ('close', 1), ('gap', 1), ('prosumers', 1), ('following', 1), ('right', 1)]
[('powerpoint', 2), ('nbsp', 1), ('make', 1), ('without', 1), ('becoming', 1), ('technical', 1), ('expert', 1), ('book', 1), ('fastest', 1), ('way', 1), ('learn', 1), ('use', 1), ('create', 1), ('dynamic', 1), ('eye', 1), ('catching', 1), ('presentation', 1), ('deliver', 1), ('person', 1), ('web', 1), ('even', 1)]
[('wireless', 2), ('make', 1), ('network', 1), ('without', 1), ('becoming', 1), ('technical', 1), ('expert', 1), ('book', 1), ('fastest', 1), ('way', 1), ('connect', 1), ('device', 1), ('performance', 1), ('everything', 1), ('streaming', 1), ('medium', 1), ('printing', 1), ('stay', 1), ('safe', 1), ('secure', 1)]
[('access', 3), ('database', 2), ('even', 2), ('make', 1), ('without', 1), ('becoming', 1), ('technical', 1), ('expert', 1), ('book', 1), ('fastest', 1), ('way', 1), ('master', 1), ('use', 1), ('build', 1), ('powerful', 1), ('useful', 1), ('kind', 1), ('web', 1), ('application', 1), ('never', 1), ('used', 1)]
[('game', 3), ('create', 2), ('nbsp', 2), ('fun', 2), ('design', 1), ('build', 1), ('share', 1), ('world', 1), ('wanted', 1), ('video', 1), ('microsoft', 1), ('kodu', 1), ('learn', 1), ('incredible', 1), ('problem', 1), ('solving', 1), ('programming', 1)]
[('build', 2), ('apps', 2), ('android', 2), ('step', 2), ('session', 1), ('hour', 1), ('le', 1), ('learn', 1), ('powerful', 1), ('world', 1), ('popular', 1), ('mobile', 1), ('platform', 1), ('using', 1), ('book', 1), ('straightforward', 1), ('approach', 1), ('complete', 1), ('ground', 1)]
[('easy', 3), ('computer', 3), ('basic', 2), ('nbsp', 1), ('see', 1), ('done', 1), ('window', 1), ('edition', 1), ('teach', 1), ('fundamental', 1), ('help', 1), ('hardware', 1), ('software', 1), ('fully', 1), ('illustrated', 1), ('step', 1), ('simple', 1)]
[('macbook', 4), ('step', 2), ('help', 2), ('cover', 1), ('pro', 1), ('air', 1), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('run', 1), ('hardware', 1), ('operating', 1), ('system', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1)]
[('linkedin', 3), ('nbsp', 3), ('step', 2), ('help', 2), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1), ('take', 1), ('full', 1), ('advantage', 1)]
[('xcode', 2), ('figure', 1), ('code', 1), ('appear', 1), ('cover', 1), ('io', 1), ('iphone', 1), ('ipad', 1), ('additional', 1), ('file', 1), ('update', 1), ('available', 1), ('online', 1), ('nbsp', 1), ('session', 1), ('hour', 1), ('learn', 1), ('build', 1), ('powerful', 1), ('application', 1), ('today', 1)]
[('answer', 1), ('common', 1), ('question', 1), ('setting', 1), ('design', 1), ('environment', 1), ('building', 1), ('custom', 1), ('solution', 1), ('microsoft', 1), ('dynamic', 1), ('crm', 1), ('delve', 1), ('core', 1), ('architecture', 1), ('tool', 1), ('technique', 1), ('learn', 1), ('exploit', 1), ('powerful', 1), ('customization', 1), ('feature', 1)]
[('step', 2), ('full', 1), ('color', 1), ('session', 1), ('hour', 1), ('le', 1), ('learn', 1), ('make', 1), ('animation', 1), ('game', 1), ('simulation', 1), ('interactive', 1), ('story', 1), ('mit', 1), ('medium', 1), ('lab', 1), ('amazingly', 1), ('easy', 1), ('scratch', 1), ('using', 1), ('book', 1), ('straightforward', 1), ('approach', 1)]
[('know', 3), ('ipad', 2), ('de', 2), ('clutter', 2), ('use', 1), ('simplify', 1), ('improve', 1), ('stress', 1), ('life', 1), ('nbsp', 1), ('already', 1), ('fun', 1), ('save', 1), ('hour', 1), ('every', 1), ('single', 1), ('week', 1), ('help', 1), ('rid', 1), ('annoyance', 1)]
[('smart', 4), ('ubiquitous', 1), ('computing', 1), ('almost', 1), ('imperceptible', 1), ('everywhere', 1), ('around', 1), ('rapidly', 1), ('becoming', 1), ('reality', 1), ('change', 1), ('shape', 1), ('emergence', 1), ('nbsp', 1), ('building', 1), ('furniture', 1), ('clothing', 1), ('even', 1), ('bathtub', 1), ('networked', 1), ('street', 1), ('sign', 1), ('self', 1), ('describing', 1), ('soda', 1), ('can', 1), ('gestural', 1), ('interface', 1), ('seen', 1), ('minority', 1)]
[('creativity', 1), ('innate', 1), ('human', 1), ('impulse', 1), ('many', 1), ('believe', 1), ('something', 1), ('born', 1), ('often', 1), ('grow', 1), ('adult', 1), ('life', 1), ('make', 1), ('demand', 1), ('fortunately', 1), ('creative', 1), ('drive', 1), ('continues', 1), ('run', 1), ('strong', 1), ('legendary', 1), ('designer', 1)]
[('want', 3), ('know', 2), ('need', 2), ('window', 1), ('vista', 1), ('fast', 1), ('bogged', 1), ('detail', 1), ('visual', 1), ('quickproject', 1), ('guide', 1), ('every', 1), ('feature', 1), ('work', 1), ('done', 1), ('full', 1), ('color', 1), ('illustration', 1), ('show', 1)]
[('teach', 2), ('web', 2), ('page', 2), ('sam', 1), ('html', 1), ('hour', 1), ('fourth', 1), ('edition', 1), ('carefully', 1), ('organized', 1), ('tutorial', 1), ('beginning', 1), ('author', 1), ('need', 1), ('know', 1), ('order', 1), ('shortest', 1), ('time', 1), ('possible', 1), ('book', 1), ('cover', 1)]
[('rich', 3), ('filthy', 2), ('client', 2), ('refers', 1), ('ultra', 1), ('graphically', 1), ('application', 1), ('ooze', 1), ('cool', 1), ('suck', 1), ('user', 1), ('outset', 1), ('hang', 1), ('death', 1), ('grip', 1), ('excitement', 1), ('developing', 1), ('animated', 1), ('graphical', 1), ('effect', 1), ('desktop', 1)]
[('language', 2), ('actionscript', 1), ('programming', 1), ('integral', 1), ('adobe', 1), ('technology', 1), ('platform', 1), ('began', 1), ('simple', 1), ('scripting', 1), ('creating', 1), ('interactivity', 1), ('animation', 1), ('flash', 1), ('used', 1), ('create', 1), ('full', 1), ('featured', 1), ('web', 1), ('application', 1)]
[('book', 3), ('iphone', 2), ('chosen', 2), ('amazon', 2), ('first', 1), ('edition', 1), ('editor', 1), ('computer', 1), ('technology', 1), ('year', 1), ('new', 1), ('version', 1), ('totally', 1), ('updated', 1), ('expanded', 1), ('top', 1)]
[('google', 4), ('learn', 2), ('googlepedia', 1), ('third', 1), ('edition', 1), ('encompassing', 1), ('book', 1), ('everything', 1), ('advanced', 1), ('search', 1), ('technique', 1), ('master', 1), ('web', 1), ('software', 1), ('tool', 1), ('inside', 1), ('nbsp', 1), ('chrome', 1)]
[('step', 2), ('pro', 2), ('tool', 2), ('bestselling', 1), ('reference', 1), ('visual', 1), ('format', 1), ('task', 1), ('based', 1), ('instruction', 1), ('reader', 1), ('running', 1), ('time', 1), ('latest', 1), ('release', 1), ('digidesign', 1), ('establishes', 1), ('audio', 1), ('recording', 1), ('platform', 1)]
[('minute', 3), ('sam', 2), ('teach', 2), ('wordpress', 2), ('nbsp', 2), ('chuck', 1), ('tomasi', 1), ('kreg', 1), ('steppe', 1), ('give', 1), ('straightforward', 1), ('practical', 1), ('answer', 1), ('need', 1), ('fast', 1), ('result', 1), ('working', 1), ('lesson', 1)]
[('designing', 2), ('obvious', 2), ('web', 2), ('belongs', 1), ('toolbox', 1), ('every', 1), ('person', 1), ('charged', 1), ('design', 1), ('development', 1), ('based', 1), ('software', 1), ('ceo', 1), ('programming', 1), ('team', 1), ('explores', 1), ('character', 1), ('trait', 1), ('application', 1)]
[('web', 2), ('ultimate', 1), ('guide', 1), ('creating', 1), ('managing', 1), ('website', 1), ('using', 1), ('microsoft', 1), ('expression', 1), ('nbsp', 1), ('trench', 1), ('guidance', 1), ('big', 1), ('picture', 1), ('insight', 1), ('exclusive', 1), ('troubleshooting', 1), ('help', 1), ('building', 1), ('standard', 1), ('compliant', 1), ('cross', 1), ('browser', 1), ('site', 1), ('case', 1)]
[('exam', 2), ('nbsp', 2), ('knowledge', 2), ('learn', 1), ('prepare', 1), ('practice', 1), ('success', 1), ('master', 1), ('every', 1), ('topic', 1), ('microsoft', 1), ('new', 1), ('mcts', 1), ('ass', 1), ('focus', 1), ('learning', 1), ('practical', 1), ('workplace', 1), ('need', 1), ('cd', 1), ('includes', 1), ('complete', 1), ('sample', 1)]
[('flex', 3), ('adobe', 2), ('complete', 1), ('insider', 1), ('guide', 1), ('building', 1), ('state', 1), ('art', 1), ('component', 1), ('platform', 1), ('nbsp', 1), ('using', 1), ('framework', 1), ('developer', 1), ('build', 1), ('rich', 1), ('immersive', 1), ('solution', 1), ('easily', 1), ('quickly', 1), ('remarkable', 1)]
[('db', 3), ('ibm', 2), ('service', 2), ('easy', 1), ('visual', 1), ('way', 1), ('master', 1), ('linux', 1), ('unix', 1), ('window', 1), ('fully', 1), ('updated', 1), ('version', 1), ('provide', 1), ('breakthrough', 1), ('capability', 1), ('providing', 1), ('information', 1), ('demand', 1), ('implementing', 1), ('web', 1), ('oriented', 1)]
[('end', 2), ('together', 1), ('infopath', 1), ('microsoft', 1), ('sharepoint', 1), ('designer', 1), ('make', 1), ('possible', 1), ('create', 1), ('solution', 1), ('combine', 1), ('powerful', 1), ('form', 1), ('enterprise', 1), ('scale', 1), ('workflow', 1), ('access', 1), ('key', 1), ('business', 1), ('data', 1), ('building', 1), ('valuable', 1), ('content', 1)]
[('book', 4), ('stuff', 2), ('sometimes', 1), ('best', 1), ('get', 1), ('left', 1), ('consumer', 1), ('application', 1), ('imovie', 1), ('project', 1), ('delivers', 1), ('cool', 1), ('fun', 1), ('engaging', 1), ('format', 1), ('jump', 1), ('manual', 1), ('part', 1), ('covered', 1)]
[('project', 2), ('book', 2), ('special', 1), ('edition', 1), ('using', 1), ('microsoft', 1), ('office', 1), ('nbsp', 1), ('crafted', 1), ('grow', 1), ('providing', 1), ('reference', 1), ('material', 1), ('need', 1), ('move', 1), ('toward', 1), ('proficiency', 1), ('use', 1), ('advanced', 1), ('feature', 1), ('buy', 1)]
[('indesign', 3), ('c', 2), ('new', 2), ('feature', 2), ('adobe', 1), ('macintosh', 1), ('window', 1), ('visual', 1), ('quickstart', 1), ('guide', 1), ('highlight', 1), ('important', 1), ('covering', 1), ('one', 1), ('reader', 1), ('relied', 1), ('previous', 1), ('version', 1), ('complete', 1), ('coverage', 1)]
[('classic', 2), ('web', 2), ('better', 2), ('authoring', 1), ('guide', 1), ('updated', 1), ('nbsp', 1), ('book', 1), ('help', 1), ('create', 1), ('faster', 1), ('smarter', 1), ('settle', 1), ('canned', 1), ('template', 1), ('boilerplate', 1), ('design', 1), ('take', 1), ('control', 1)]
[('nbsp', 3), ('window', 2), ('portable', 2), ('command', 2), ('mcts', 2), ('mcitp', 2), ('guide', 1), ('darril', 1), ('gibson', 1), ('compact', 1), ('resource', 1), ('maximize', 1), ('efficiency', 1)]
[('website', 2), ('lesson', 1), ('hour', 1), ('le', 1), ('able', 1), ('build', 1), ('full', 1), ('featured', 1), ('production', 1), ('using', 1), ('django', 1), ('powerful', 1), ('web', 1), ('development', 1), ('framework', 1), ('based', 1), ('python', 1), ('nbsp', 1), ('designed', 1), ('experienced', 1), ('developer', 1), ('least', 1)]
[('please', 1), ('note', 1), ('title', 1), ('color', 1), ('insert', 1), ('referred', 1), ('plate', 1), ('within', 1), ('text', 1), ('available', 1), ('digital', 1), ('product', 1), ('nbsp', 1), ('opengl', 1), ('powerful', 1), ('software', 1), ('interface', 1), ('used', 1), ('produce', 1), ('high', 1), ('quality', 1), ('computer', 1), ('generated', 1), ('image', 1), ('interactive', 1)]
[('cinematography', 2), ('directing', 2), ('book', 2), ('digital', 1), ('unlike', 1), ('seen', 1), ('written', 1), ('entirely', 1), ('animator', 1), ('based', 1), ('real', 1), ('world', 1), ('photographic', 1), ('cinematic', 1), ('principle', 1), ('teach', 1), ('essential', 1), ('skill', 1)]
[('designer', 2), ('many', 1), ('photographer', 1), ('entire', 1), ('suite', 1), ('adobe', 1), ('creative', 1), ('product', 1), ('manage', 1), ('learn', 1), ('application', 1), ('really', 1), ('new', 1), ('addition', 1), ('popular', 1), ('non', 1), ('book', 1), ('best', 1), ('selling', 1), ('author', 1), ('nbsp', 1)]
[('sharepoint', 3), ('microsoft', 2), ('designer', 2), ('made', 1), ('free', 1), ('download', 1), ('thousand', 1), ('organization', 1), ('adopting', 1), ('design', 1), ('state', 1), ('art', 1), ('site', 1), ('solution', 1), ('unleashed', 1), ('mvp', 1), ('kathy', 1), ('hughes', 1), ('brings', 1)]
[('effect', 3), ('visual', 2), ('book', 1), ('focus', 1), ('exclusively', 1), ('creation', 1), ('stop', 1), ('resource', 1), ('anyone', 1), ('want', 1), ('depth', 1), ('explanation', 1), ('demystify', 1), ('realm', 1), ('created', 1), ('thanks', 1)]
[('adobe', 2), ('step', 2), ('premiere', 1), ('element', 1), ('classroom', 1), ('book', 1), ('thorough', 1), ('comprehensive', 1), ('way', 1), ('master', 1), ('new', 1), ('feature', 1), ('top', 1), ('rated', 1), ('consumer', 1), ('targeted', 1), ('nbsp', 1), ('video', 1), ('editing', 1), ('software', 1), ('chapter', 1), ('project', 1), ('based', 1)]
[('hour', 2), ('android', 2), ('game', 2), ('step', 2), ('session', 1), ('le', 1), ('sam', 1), ('teach', 1), ('programming', 1), ('help', 1), ('master', 1), ('mobile', 1), ('development', 1), ('using', 1), ('straightforward', 1), ('approach', 1), ('gain', 1), ('hand', 1), ('expertise', 1)]
[('ipad', 7), ('nbsp', 5), ('iphone', 3), ('mini', 2), ('tip', 1), ('trick', 1), ('cover', 1), ('air', 1), ('rd', 1), ('th', 1), ('generation', 1), ('running', 1), ('io', 1), ('easily', 1), ('unlock', 1), ('power', 1), ('discover', 1), ('hundred', 1)]
[('nbsp', 2), ('ipad', 2), ('supercharge', 1), ('business', 1), ('effectiveness', 1), ('model', 1), ('office', 1), ('road', 1), ('everywhere', 1), ('put', 1), ('work', 1), ('manager', 1), ('entrepreneur', 1), ('professional', 1), ('consultant', 1), ('salesperson', 1), ('freelancer', 1)]
[('ipad', 3), ('mini', 3), ('step', 2), ('help', 2), ('cover', 1), ('io', 1), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1), ('full', 1), ('color', 1)]
[('adobe', 1), ('photoshop', 1), ('element', 1), ('america', 1), ('selling', 1), ('consumer', 1), ('photo', 1), ('editing', 1), ('software', 1), ('updated', 1), ('book', 1), ('covering', 1), ('window', 1), ('mac', 1), ('break', 1), ('new', 1), ('ground', 1), ('something', 1), ('digital', 1), ('photographer', 1), ('never', 1), ('done', 1), ('cut', 1)]
[('android', 4), ('programming', 2), ('learning', 1), ('application', 1), ('help', 1), ('master', 1), ('modern', 1), ('building', 1), ('fully', 1), ('functional', 1), ('app', 1), ('ground', 1), ('working', 1), ('toolset', 1), ('solve', 1), ('real', 1), ('world', 1), ('problem', 1), ('faced', 1), ('every', 1)]
[('ipad', 2), ('digital', 2), ('category', 1), ('defining', 1), ('reinvented', 1), ('way', 1), ('interact', 1), ('content', 1), ('web', 1), ('versatile', 1), ('portable', 1), ('powerful', 1), ('elegantly', 1), ('designed', 1), ('perfect', 1), ('companion', 1), ('medium', 1), ('photo', 1), ('music', 1), ('movie', 1), ('email', 1)]
[('type', 2), ('typography', 1), ('foundation', 1), ('graphic', 1), ('design', 1), ('effective', 1), ('way', 1), ('better', 1), ('designer', 1), ('understand', 1), ('use', 1), ('confidently', 1), ('creatively', 1), ('fully', 1), ('updated', 1), ('third', 1), ('edition', 1), ('comprehensive', 1), ('guide', 1), ('creating', 1), ('professional', 1)]
[('ipad', 3), ('iphone', 2), ('digital', 2), ('photography', 2), ('tip', 2), ('trick', 2), ('easily', 1), ('unlock', 1), ('power', 1), ('nbsp', 1), ('discover', 1), ('hundred', 1), ('use', 1), ('right', 1), ('away', 1), ('capture', 1), ('edit', 1), ('share', 1), ('amazing', 1), ('photo', 1)]
[('step', 4), ('imovie', 3), ('help', 2), ('instruction', 1), ('callouts', 1), ('screenshots', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1), ('full', 1), ('color', 1), ('task', 1), ('walk', 1)]
[('office', 2), ('year', 1), ('million', 1), ('beginner', 1), ('intermediate', 1), ('level', 1), ('user', 1), ('searching', 1), ('easiest', 1), ('possible', 1), ('way', 1), ('master', 1), ('new', 1), ('feature', 1), ('easy', 1), ('give', 1), ('exactly', 1), ('looking', 1), ('nbsp', 1)]
[('nbsp', 3), ('network', 2), ('ccie', 2), ('cisco', 1), ('admission', 1), ('control', 1), ('volume', 1), ('ii', 1), ('nac', 1), ('framework', 1), ('deployment', 1), ('troubleshooting', 1), ('self', 1), ('defending', 1), ('action', 1), ('jazib', 1), ('frahim', 1), ('omar', 1), ('santos', 1), ('david', 1), ('white', 1), ('jr', 1), ('information', 1)]
[('learning', 3), ('ip', 3), ('telephony', 3), ('foundation', 2), ('ccvp', 2), ('nbsp', 2), ('cisco', 2), ('jeremy', 1), ('cioara', 1), ('ccie', 1), ('cipt', 1), ('second', 1), ('edition', 1), ('authorized', 1), ('self', 1), ('paced', 1), ('tool', 1), ('book', 1), ('provides', 1)]
[('book', 3), ('ebook', 2), ('version', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('complete', 1), ('source', 1), ('depth', 1), ('information', 1), ('microsoft', 1), ('system', 1), ('center', 1), ('operation', 1)]
[('ruby', 4), ('nbsp', 3), ('phrasebook', 2), ('code', 2), ('jason', 1), ('clinton', 1), ('essential', 1), ('command', 1), ('give', 1), ('need', 1), ('quickly', 1), ('effectively', 1), ('work', 1), ('fastest', 1), ('growing', 1), ('language', 1), ('world', 1), ('thanks', 1), ('popular', 1), ('new', 1)]
[('cs', 3), ('completely', 1), ('revised', 1), ('edition', 1), ('bestselling', 1), ('stylin', 1), ('veteran', 1), ('designer', 1), ('programmer', 1), ('charles', 1), ('wyke', 1), ('smith', 1), ('guide', 1), ('comprehensive', 1), ('overview', 1), ('designing', 1), ('web', 1), ('page', 1), ('including', 1), ('advanced', 1), ('capability', 1)]
[('full', 1), ('color', 1), ('visual', 1), ('guide', 1), ('make', 1), ('learning', 1), ('microsoft', 1), ('word', 1), ('plain', 1), ('simple', 1), ('follow', 1), ('book', 1), ('easy', 1), ('step', 1), ('screenshots', 1), ('clear', 1), ('concise', 1), ('language', 1), ('learn', 1), ('simplest', 1), ('way', 1), ('create', 1), ('share', 1), ('document', 1)]
[('nbsp', 2), ('create', 1), ('high', 1), ('fidelity', 1), ('prototype', 1), ('complex', 1), ('website', 1), ('application', 1), ('easy', 1), ('learn', 1), ('super', 1), ('efficient', 1), ('vector', 1), ('capability', 1), ('illustrator', 1), ('make', 1), ('fear', 1), ('client', 1), ('change', 1), ('thing', 1), ('past', 1), ('whether', 1), ('seasoned', 1)]
[('many', 2), ('book', 2), ('single', 1), ('project', 1), ('life', 1), ('evolves', 1), ('entire', 1), ('narrative', 1), ('reason', 1), ('difficult', 1), ('important', 1), ('toolkit', 1), ('feature', 1), ('shoehorned', 1), ('weird', 1), ('place', 1), ('author', 1)]
[('ready', 1), ('learn', 1), ('hows', 1), ('why', 1), ('behind', 1), ('powerful', 1), ('feature', 1), ('adobe', 1), ('premiere', 1), ('pro', 1), ('whether', 1), ('need', 1), ('boost', 1), ('editing', 1), ('skill', 1), ('composite', 1), ('shot', 1), ('fix', 1), ('audio', 1), ('see', 1), ('immediate', 1), ('result', 1), ('incorporate', 1)]
[('focus', 1), ('connectivity', 1), ('client', 1), ('unified', 1), ('messaging', 1), ('book', 1), ('delivers', 1), ('ultimate', 1), ('depth', 1), ('reference', 1), ('professional', 1), ('planning', 1), ('managing', 1), ('exchange', 1), ('server', 1), ('deployment', 1), ('guided', 1), ('paul', 1), ('robichaux', 1), ('microsoft', 1), ('mvp', 1), ('popular', 1)]
[('result', 2), ('everyone', 1), ('want', 1), ('whether', 1), ('sell', 1), ('product', 1), ('spread', 1), ('good', 1), ('idea', 1), ('win', 1), ('funding', 1), ('busy', 1), ('digital', 1), ('world', 1), ('way', 1), ('influencing', 1), ('web', 1), ('ad', 1), ('campaign', 1), ('cut', 1), ('twitter', 1), ('account', 1)]
[('program', 2), ('usually', 1), ('helpful', 1), ('launch', 1), ('improvement', 1), ('many', 1), ('soon', 1), ('bogged', 1), ('detail', 1), ('either', 1), ('address', 1), ('wrong', 1), ('problem', 1), ('keep', 1), ('beating', 1), ('solution', 1), ('wondering', 1), ('thing', 1), ('improve', 1)]
[('final', 2), ('cut', 2), ('pro', 2), ('editing', 2), ('literally', 1), ('rocked', 1), ('film', 1), ('video', 1), ('world', 1), ('completely', 1), ('imagining', 1), ('inherent', 1), ('concept', 1), ('nonlinear', 1), ('many', 1), ('editor', 1), ('user', 1), ('previous', 1), ('version', 1), ('starting', 1), ('anew', 1)]
[('already', 1), ('know', 1), ('python', 1), ('want', 1), ('learn', 1), ('lot', 1), ('dive', 1), ('variety', 1), ('topic', 1), ('used', 1), ('practice', 1), ('real', 1), ('world', 1), ('application', 1), ('cover', 1), ('regular', 1), ('expression', 1), ('internet', 1), ('network', 1), ('programming', 1), ('gui', 1), ('sql', 1), ('database', 1), ('orms', 1), ('threading', 1), ('web', 1)]
[('galaxy', 3), ('tab', 3), ('step', 2), ('help', 2), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('run', 1), ('samsung', 1), ('problem', 1), ('limitationstips', 1), ('note', 1)]
[('using', 1), ('system', 1), ('center', 1), ('orchestrator', 1), ('capture', 1), ('document', 1), ('process', 1), ('across', 1), ('entire', 1), ('organization', 1), ('establishing', 1), ('automation', 1), ('need', 1), ('deliver', 1), ('advanced', 1), ('cloud', 1), ('service', 1), ('self', 1), ('adjusting', 1), ('computing', 1), ('resource', 1), ('authored', 1), ('five', 1)]
[('guide', 1), ('make', 1), ('learning', 1), ('microsoft', 1), ('outlook', 1), ('plain', 1), ('simple', 1), ('full', 1), ('color', 1), ('nonsense', 1), ('book', 1), ('show', 1), ('quickest', 1), ('way', 1), ('manage', 1), ('email', 1), ('schedule', 1), ('appointment', 1), ('using', 1), ('easy', 1), ('follow', 1), ('step', 1), ('concise', 1), ('straightforward', 1)]
[('microsoft', 2), ('office', 2), ('exam', 2), ('objective', 2), ('demonstrate', 1), ('expertise', 1), ('designed', 1), ('help', 1), ('practice', 1), ('prepare', 1), ('excel', 1), ('expert', 1), ('specialist', 1), ('mo', 1), ('study', 1), ('guide', 1), ('feature', 1), ('full', 1), ('coverage', 1)]
[('exam', 4), ('pmp', 3), ('fifth', 3), ('cram', 2), ('edition', 2), ('editon', 1), ('project', 1), ('management', 1), ('professional', 1), ('cover', 1), ('pmbok', 1), ('perfect', 1), ('study', 1), ('guide', 1), ('help', 1), ('pas', 1), ('provides', 1), ('coverage', 1), ('practice', 1), ('question', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('simple', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('clickonce', 1), ('demo', 1), ('look', 1), ('technique', 1), ('work', 1), ('application', 1), ('brian', 1), ('noyes', 1)]
[('ipod', 3), ('essential', 1), ('companion', 1), ('latest', 1), ('digital', 1), ('music', 1), ('player', 1), ('itunes', 1), ('user', 1), ('want', 1), ('start', 1), ('using', 1), ('device', 1), ('soon', 1), ('hand', 1), ('guide', 1), ('show', 1), ('book', 1), ('cover', 1), ('three', 1), ('model', 1), ('nano', 1)]
[('photoshop', 2), ('trick', 2), ('corey', 1), ('barker', 1), ('executive', 1), ('producer', 1), ('planetphotoshop', 1), ('guy', 1), ('user', 1), ('tv', 1), ('brings', 1), ('completely', 1), ('new', 1), ('set', 1), ('technique', 1), ('tutorial', 1), ('second', 1), ('volume', 1), ('amp', 1), ('dirty', 1), ('designer', 1)]
[('nbsp', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('cisco', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('guide', 1), ('successful', 1), ('deployment', 1), ('ip', 1), ('telephony', 1), ('solution', 1), ('real', 1), ('world', 1), ('case', 1), ('study', 1), ('design', 1), ('consulting', 1), ('engineer', 1), ('developed', 1), ('pdioo', 1), ('process', 1), ('provide', 1), ('practical', 1), ('advice', 1)]
[('video', 3), ('conferencing', 3), ('past', 1), ('year', 1), ('something', 1), ('novelty', 1), ('nbsp', 1), ('certain', 1), ('tolerance', 1), ('quality', 1), ('problem', 1), ('audio', 1), ('move', 1), ('mainstream', 1), ('customer', 1), ('end', 1), ('user', 1), ('demand', 1), ('greater', 1), ('performance', 1), ('relability', 1), ('security', 1), ('scalability', 1), ('system', 1), ('voice', 1)]
[('photographer', 2), ('artist', 2), ('image', 2), ('fine', 2), ('designer', 1), ('use', 1), ('photoshop', 1), ('create', 1), ('fantastic', 1), ('realistic', 1), ('illustration', 1), ('art', 1), ('editorial', 1), ('content', 1), ('whether', 1), ('landscape', 1), ('portrait', 1), ('illustrator', 1), ('masking', 1), ('compositing', 1), ('essential', 1), ('skill', 1), ('master', 1), ('combining', 1), ('extent', 1), ('impossible', 1)]
[('motion', 4), ('graphic', 2), ('design', 2), ('best', 1), ('selling', 1), ('guide', 1), ('learn', 1), ('create', 1), ('sophisticated', 1), ('project', 1), ('using', 1), ('newest', 1), ('feature', 1), ('master', 1), ('trainer', 1), ('mark', 1), ('spencer', 1), ('start', 1), ('fundamental', 1), ('quickly', 1), ('move', 1), ('compositing', 1), ('animation', 1), ('visual', 1), ('effect', 1), ('world', 1), ('book', 1), ('fully', 1), ('revised', 1), ('take', 1)]
[('adobe', 4), ('animate', 4), ('cc', 2), ('book', 2), ('step', 2), ('creative', 1), ('professional', 1), ('seeking', 1), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('choose', 1), ('classroom', 1), ('release', 1), ('press', 1), ('project', 1), ('based', 1), ('lesson', 1), ('show', 1), ('user', 1), ('key', 1), ('technique', 1), ('working', 1), ('provides', 1), ('expressive', 1), ('tool', 1), ('powerful', 1)]
[('using', 2), ('step', 2), ('short', 1), ('time', 1), ('learn', 1), ('use', 1), ('php', 1), ('mysql', 1), ('apache', 1), ('together', 1), ('create', 1), ('dynamic', 1), ('interactive', 1), ('website', 1), ('application', 1), ('three', 1), ('leading', 1), ('open', 1), ('source', 1), ('web', 1), ('development', 1), ('technology', 1), ('nbsp', 1), ('straightforward', 1)]
[('blackberry', 3), ('curve', 3), ('step', 2), ('help', 2), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1), ('nbsp', 1)]
[('nan', 1)]
[('working', 2), ('latest', 1), ('update', 1), ('robin', 1), ('williams', 1), ('bestselling', 1), ('guide', 1), ('miracle', 1), ('time', 1), ('snow', 1), ('leopard', 1), ('fastest', 1), ('reliable', 1), ('version', 1), ('mac', 1), ('o', 1), ('book', 1), ('learn', 1), ('way', 1), ('whether', 1)]
[('android', 4), ('game', 3), ('build', 1), ('next', 1), ('nbsp', 1), ('learning', 1), ('programming', 1), ('hand', 1), ('start', 1), ('finish', 1), ('guide', 1), ('creating', 1), ('winning', 1), ('today', 1), ('rapidly', 1), ('growing', 1), ('mobile', 1), ('device', 1), ('marketplace', 1), ('even', 1), ('basic', 1)]
[('game', 3), ('hour', 2), ('unity', 2), ('session', 1), ('le', 1), ('sam', 1), ('teach', 1), ('development', 1), ('help', 1), ('master', 1), ('engine', 1), ('heart', 1), ('temple', 1), ('run', 1), ('many', 1), ('sizzling', 1), ('hot', 1), ('mobile', 1), ('nbsp', 1), ('learn', 1), ('everything', 1)]
[('xbox', 4), ('nbsp', 3), ('step', 2), ('help', 2), ('instruction', 1), ('callouts', 1), ('colorful', 1), ('image', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('kinect', 1), ('live', 1), ('smartglass', 1), ('tip', 1), ('note', 1)]
[('network', 2), ('step', 2), ('session', 1), ('hour', 1), ('le', 1), ('discover', 1), ('implement', 1), ('monitor', 1), ('manage', 1), ('tcp', 1), ('ip', 1), ('even', 1), ('latest', 1), ('cloud', 1), ('based', 1), ('ipv', 1), ('using', 1), ('book', 1), ('straightforward', 1), ('approach', 1), ('uncover', 1), ('essential', 1)]
[('nan', 1)]
[('excel', 3), ('step', 3), ('smart', 1), ('way', 1), ('learn', 1), ('time', 1), ('experience', 1), ('learning', 1), ('made', 1), ('easy', 1), ('quickly', 1), ('teach', 1), ('manage', 1), ('analyze', 1), ('present', 1), ('data', 1), ('set', 1), ('pace', 1), ('building', 1), ('practicing', 1), ('skill', 1), ('need', 1), ('discover', 1), ('work', 1), ('touch', 1), ('mode', 1), ('write', 1)]
[('photo', 4), ('o', 2), ('anyone', 1), ('taken', 1), ('know', 1), ('frustration', 1), ('trying', 1), ('find', 1), ('manage', 1), ('snapshot', 1), ('iphone', 1), ('camera', 1), ('mac', 1), ('apple', 1), ('made', 1), ('possible', 1), ('fingertip', 1)]
[('need', 2), ('mac', 2), ('guide', 2), ('make', 1), ('font', 1), ('want', 1), ('page', 1), ('tome', 1), ('check', 1), ('peachpit', 1), ('new', 1), ('short', 1), ('cut', 1), ('quick', 1), ('pdf', 1), ('smart', 1), ('handy', 1), ('concise', 1), ('mini', 1), ('cover', 1), ('exactly', 1), ('know', 1), ('built', 1), ('o', 1)]
[('cheating', 2), ('online', 2), ('digital', 1), ('short', 1), ('cut', 1), ('delivered', 1), ('adobe', 1), ('pdf', 1), ('format', 1), ('quick', 1), ('easy', 1), ('access', 1), ('introduction', 1), ('issue', 1), ('anti', 1), ('countermeasure', 1), ('gaming', 1), ('industry', 1), ('nbsp', 1), ('present', 1), ('game', 1), ('world', 1), ('warcraft', 1)]
[('introduction', 2), ('ebook', 1), ('version', 1), ('printed', 1), ('book', 1), ('digital', 1), ('short', 1), ('cut', 1), ('delivered', 1), ('adobe', 1), ('pdf', 1), ('format', 1), ('quick', 1), ('easy', 1), ('access', 1), ('busybox', 1), ('widely', 1), ('regarded', 1), ('swiss', 1), ('army', 1), ('knife', 1), ('embedded', 1), ('linux', 1), ('brief', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('denying', 1), ('introduction', 1), ('ipod', 1), ('itunes', 1), ('apple', 1), ('changed', 1), ('face', 1), ('music', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('ruby', 2), ('rail', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('expert', 1), ('guide', 1), ('building', 1), ('application', 1), ('nbsp', 1), ('strip', 1), ('complexity', 1)]
[('imovie', 2), ('ebook', 1), ('comprises', 1), ('entire', 1), ('section', 1), ('apple', 1), ('training', 1), ('series', 1), ('ilife', 1), ('provides', 1), ('fun', 1), ('practical', 1), ('technique', 1), ('running', 1), ('time', 1), ('whether', 1), ('beginner', 1), ('taking', 1), ('video', 1), ('clip', 1), ('iphone', 1)]
[('business', 2), ('element', 1), ('excerpt', 1), ('ubiquitous', 1), ('computing', 1), ('find', 1), ('new', 1), ('market', 1), ('create', 1), ('better', 1), ('reach', 1), ('customer', 1), ('around', 1), ('world', 1), ('bo', 1), ('begole', 1), ('available', 1), ('print', 1), ('digital', 1), ('format', 1), ('nbsp', 1), ('advanced', 1)]
[('illustrator', 2), ('c', 2), ('drawing', 2), ('ebook', 1), ('version', 1), ('printed', 1), ('book', 1), ('nbsp', 1), ('adobe', 1), ('brings', 1), ('user', 1), ('hitherto', 1), ('new', 1), ('paradigm', 1), ('vector', 1), ('perspective', 1), ('score', 1), ('question', 1), ('asked', 1), ('pre', 1), ('release', 1), ('tester', 1), ('due', 1)]
[('ipad', 2), ('video', 2), ('inexpensive', 1), ('point', 1), ('pocket', 1), ('guide', 1), ('complete', 1), ('companion', 1), ('feature', 1), ('function', 1), ('including', 1), ('facetime', 1), ('hd', 1), ('mail', 1), ('safari', 1), ('photo', 1), ('app', 1), ('store', 1), ('ibooks', 1), ('map', 1), ('note', 1), ('calendar', 1), ('contact', 1)]
[('project', 2), ('apple', 1), ('certified', 1), ('way', 1), ('learnthis', 1), ('new', 1), ('guide', 1), ('present', 1), ('real', 1), ('world', 1), ('workflow', 1), ('raw', 1), ('medium', 1), ('finished', 1), ('demonstrate', 1), ('feature', 1), ('final', 1), ('cut', 1), ('pro', 1), ('practical', 1), ('technique', 1), ('use', 1), ('editing', 1), ('using', 1), ('professionally', 1)]
[('practice', 2), ('question', 2), ('tool', 2), ('comptia', 1), ('exam', 1), ('cram', 1), ('ideal', 1), ('supplemental', 1), ('preparation', 1), ('provides', 1), ('student', 1), ('test', 1), ('complete', 1), ('answer', 1), ('explanation', 1), ('giving', 1), ('perfect', 1), ('complementary', 1), ('study', 1), ('full', 1), ('text', 1), ('downloaded', 1), ('computer', 1), ('ebooks', 1)]
[('book', 4), ('break', 2), ('ebook', 1), ('printed', 1), ('include', 1), ('medium', 1), ('website', 1), ('access', 1), ('code', 1), ('print', 1), ('supplement', 1), ('come', 1), ('packaged', 1), ('bound', 1), ('nbsp', 1), ('ready', 1), ('element', 1), ('rule', 1), ('new', 1)]
[('twice', 3), ('intelligent', 3), ('year', 2), ('long', 2), ('geek', 1), ('inherit', 1), ('earth', 1), ('computer', 1), ('become', 1), ('fast', 1), ('capable', 1), ('every', 1), ('human', 1)]
[('linux', 2), ('exam', 2), ('lpi', 1), ('certification', 1), ('nutshell', 1), ('second', 1), ('edition', 1), ('invaluable', 1), ('resource', 1), ('determining', 1), ('needto', 1), ('practice', 1), ('pas', 1), ('professional', 1), ('institute', 1), ('bookwill', 1), ('helpyou', 1), ('determine', 1), ('ready', 1), ('take', 1), ('aretechnically', 1), ('challenging', 1), ('designed', 1), ('reflect', 1), ('skill', 1), ('thatadministrators', 1), ('needin', 1), ('real', 1), ('working', 1)]
[('security', 5), ('network', 3), ('sit', 1), ('talented', 1), ('engineer', 1), ('world', 1), ('ask', 1), ('question', 1), ('wanted', 1), ('power', 1), ('tool', 1), ('let', 1), ('exactly', 1), ('member', 1), ('juniper', 1), ('engineering', 1), ('team', 1), ('guest', 1), ('expert', 1), ('reveal', 1), ('use', 1), ('tweak', 1), ('push', 1), ('popular', 1)]
[('web', 2), ('flash', 2), ('ajax', 1), ('microsoft', 1), ('window', 1), ('presentation', 1), ('foundation', 1), ('hit', 1), ('scene', 1), ('macromedia', 1), ('offered', 1), ('first', 1), ('method', 1), ('building', 1), ('page', 1), ('responsiveness', 1), ('functionality', 1), ('desktop', 1), ('program', 1), ('based', 1), ('rich', 1), ('internet', 1), ('application', 1), ('new', 1), ('owner', 1), ('adobe', 1), ('taking', 1), ('powerful', 1), ('capability', 1), ('beyond', 1), ('making', 1)]
[('perl', 2), ('computing', 2), ('language', 2), ('sharing', 2), ('million', 1), ('dedicated', 1), ('programmer', 1), ('proven', 1), ('best', 1), ('latest', 1), ('trend', 1), ('business', 1), ('stagnated', 1), ('remains', 1), ('fresh', 1), ('thanks', 1), ('community', 1), ('based', 1), ('development', 1), ('model', 1), ('encourages', 1), ('information', 1), ('among', 1), ('user', 1), ('tradition', 1), ('knowledge', 1)]
[('area', 3), ('book', 3), ('oracle', 2), ('specialization', 2), ('enormous', 1), ('system', 1), ('comprising', 1), ('myriad', 1), ('technology', 1), ('option', 1), ('release', 1), ('complexity', 1), ('spawned', 1), ('numerous', 1), ('equally', 1), ('specialized', 1), ('manual', 1), ('reilly', 1), ('essential', 1), ('claim', 1), ('unique', 1), ('place', 1), ('among', 1), ('rather', 1), ('focusing', 1)]
[('network', 3), ('book', 2), ('window', 2), ('server', 2), ('tcp', 2), ('ip', 2), ('administration', 2), ('protocol', 2), ('version', 1), ('classic', 1), ('inspired', 1), ('provides', 1), ('overview', 1), ('essential', 1), ('explains', 1), ('properly', 1), ('manage', 1), ('configure', 1), ('service', 1), ('based', 1), ('skilled', 1), ('administrator', 1)]
[('java', 3), ('sometimes', 1), ('simplest', 1), ('answer', 1), ('best', 1), ('many', 1), ('enterprise', 1), ('developer', 1), ('accustomed', 1), ('dealing', 1), ('spiraling', 1), ('complexity', 1), ('fallen', 1), ('habit', 1), ('choosing', 1), ('overly', 1), ('complicated', 1), ('solution', 1), ('problem', 1), ('simpler', 1), ('option', 1), ('available', 1), ('building', 1), ('server', 1), ('application', 1), ('heavyweight', 1), ('based', 1), ('architecture', 1), ('weblogic', 1), ('jboss', 1)]
[('network', 2), ('intruder', 2), ('administrator', 1), ('lot', 1), ('pressure', 1), ('ensure', 1), ('mission', 1), ('critical', 1), ('system', 1), ('completely', 1), ('safe', 1), ('malicious', 1), ('code', 1), ('buffer', 1), ('overflow', 1), ('stealth', 1), ('port', 1), ('scan', 1), ('smb', 1), ('probe', 1), ('o', 1), ('fingerprinting', 1), ('attempt', 1), ('cgi', 1), ('attack', 1), ('designing', 1), ('reliable', 1), ('way', 1), ('detect', 1)]
[('network', 2), ('screenos', 2), ('recipe', 2), ('step', 2), ('written', 1), ('key', 1), ('member', 1), ('juniper', 1), ('development', 1), ('team', 1), ('kind', 1), ('cookbook', 1), ('help', 1), ('troubleshoot', 1), ('secure', 1), ('run', 1), ('firewall', 1), ('appliance', 1), ('score', 1), ('address', 1), ('wide', 1), ('range', 1), ('security', 1), ('issue', 1), ('provide', 1), ('solution', 1), ('include', 1), ('discussion', 1), ('work', 1), ('easily', 1), ('set', 1)]
[('data', 5), ('access', 3), ('recipe', 2), ('large', 1), ('quantity', 1), ('microsoft', 1), ('database', 1), ('need', 1), ('study', 1), ('depth', 1), ('book', 1), ('cruncher', 1), ('dream', 1), ('analysis', 1), ('cookbook', 1), ('offer', 1), ('practical', 1), ('solve', 1), ('variety', 1), ('common', 1), ('problem', 1), ('user', 1), ('extracting', 1), ('performing', 1), ('calculation', 1), ('includes', 1)]
[('server', 3), ('jboss', 2), ('ee', 2), ('application', 2), ('nothing', 1), ('ordinary', 1), ('began', 1), ('open', 1), ('source', 1), ('ejb', 1), ('container', 1), ('project', 1), ('six', 1), ('year', 1), ('ago', 1), ('become', 1), ('fully', 1), ('certified', 1), ('largest', 1), ('market', 1), ('share', 1), ('competitive', 1), ('proprietary', 1), ('java', 1), ('feature', 1), ('quality', 1), ('dynamic', 1), ('architecture', 1)]
[('soa', 3), ('service', 2), ('business', 2), ('information', 1), ('technology', 1), ('professional', 1), ('use', 1), ('book', 1), ('move', 1), ('beyond', 1), ('excitement', 1), ('web', 1), ('oriented', 1), ('architecture', 1), ('begin', 1), ('process', 1), ('finding', 1), ('actionable', 1), ('idea', 1), ('innovate', 1), ('create', 1), ('value', 1), ('enterprise', 1), ('designing', 1), ('innovation', 1), ('sap', 1), ('blueprint', 1), ('putting', 1), ('work', 1), ('analyzed', 1)]
[('security', 3), ('enterprise', 1), ('stand', 1), ('today', 1), ('sophisticated', 1), ('threat', 1), ('book', 1), ('expert', 1), ('cisco', 1), ('system', 1), ('demonstrate', 1), ('detect', 1), ('damaging', 1), ('incident', 1), ('global', 1), ('network', 1), ('first', 1), ('teaching', 1), ('asset', 1), ('need', 1), ('monitor', 1), ('closely', 1), ('helping', 1), ('develop', 1), ('targeted', 1), ('strategy', 1), ('pragmatic', 1)]
[('wireless', 2), ('popularity', 1), ('networking', 1), ('grown', 1), ('exponentially', 1), ('past', 1), ('year', 1), ('despite', 1), ('general', 1), ('downward', 1), ('trend', 1), ('telecommunication', 1), ('industry', 1), ('computer', 1), ('user', 1), ('worldwide', 1), ('communicate', 1), ('via', 1), ('radio', 1), ('wave', 1), ('every', 1), ('day', 1), ('cutting', 1), ('tether', 1), ('cabled', 1), ('network', 1), ('home', 1), ('work', 1), ('technology', 1), ('change', 1)]
[('think', 2), ('asp', 2), ('net', 2), ('versed', 1), ('exceptional', 1), ('guide', 1), ('give', 1), ('master', 1), ('class', 1), ('site', 1), ('building', 1), ('cutting', 1), ('edge', 1), ('microsoft', 1), ('technology', 1), ('learn', 1), ('develop', 1), ('rock', 1), ('solid', 1), ('web', 1), ('portal', 1), ('application', 1), ('withstand', 1), ('million', 1), ('hit', 1), ('every', 1), ('day', 1), ('surviving', 1), ('scalability', 1), ('security', 1), ('pressure', 1)]
[('wikipedia', 2), ('per', 2), ('want', 1), ('part', 1), ('largest', 1), ('group', 1), ('writing', 1), ('project', 1), ('human', 1), ('history', 1), ('learn', 1), ('contribute', 1), ('user', 1), ('generated', 1), ('online', 1), ('reference', 1), ('st', 1), ('century', 1), ('considered', 1), ('popular', 1), ('ebay', 1), ('microsoft', 1), ('amazon', 1), ('server', 1), ('respond', 1), ('approximately', 1), ('request', 1), ('second', 1), ('billion', 1), ('day', 1), ('become', 1)]
[('network', 2), ('routing', 2), ('juno', 2), ('juniper', 1), ('platform', 1), ('becoming', 1), ('go', 1), ('solution', 1), ('core', 1), ('edge', 1), ('metro', 1), ('remote', 1), ('office', 1), ('software', 1), ('behind', 1), ('operating', 1), ('system', 1), ('full', 1), ('industrial', 1), ('strength', 1), ('protocol', 1), ('ip', 1), ('innovation', 1), ('treading', 1), ('world', 1), ('need', 1), ('clarification', 1), ('explanation', 1), ('showcase', 1)]
[('oracle', 4), ('sql', 3), ('plus', 2), ('despite', 1), ('wide', 1), ('availability', 1), ('usage', 1), ('developer', 1), ('dba', 1), ('mastered', 1), ('true', 1), ('power', 1), ('bestselling', 1), ('book', 1), ('updated', 1), ('depth', 1), ('guide', 1), ('interactive', 1), ('query', 1), ('tool', 1), ('writing', 1), ('script', 1), ('essential', 1), ('resource', 1), ('user', 1), ('new', 1), ('second', 1), ('edition', 1)]
[('messaging', 3), ('java', 2), ('service', 2), ('jms', 2), ('standard', 2), ('interface', 2), ('support', 2), ('book', 1), ('thorough', 1), ('introduction', 1), ('message', 1), ('application', 1), ('program', 1), ('api', 1), ('sun', 1), ('microsystems', 1), ('formal', 1), ('communication', 1), ('known', 1), ('computer', 1), ('network', 1), ('provides', 1), ('common', 1), ('protocol', 1), ('special', 1)]
[('perl', 4), ('learning', 3), ('ask', 1), ('programmer', 1), ('today', 1), ('book', 1), ('relied', 1), ('find', 1), ('overwhelming', 1), ('majority', 1), ('name', 1), ('known', 1), ('affectionately', 1), ('llama', 1), ('first', 1), ('edition', 1), ('appeared', 1), ('bestseller', 1), ('written', 1), ('prominent', 1), ('active', 1)]
[('data', 2), ('document', 2), ('ready', 1), ('put', 1), ('intuit', 1), ('quickbase', 1), ('work', 1), ('new', 1), ('missing', 1), ('manual', 1), ('show', 1), ('capture', 1), ('modify', 1), ('share', 1), ('manage', 1), ('web', 1), ('based', 1), ('sharing', 1), ('program', 1), ('quickly', 1), ('easily', 1), ('longer', 1), ('coordinate', 1), ('team', 1), ('blizzard', 1), ('email', 1), ('play', 1), ('frustrating', 1), ('game', 1), ('guess', 1), ('right', 1)]
[('window', 5), ('nt', 3), ('pro', 1), ('combine', 1), ('friendly', 1), ('interface', 1), ('famous', 1), ('stability', 1), ('successor', 1), ('introduces', 1), ('many', 1), ('technology', 1), ('available', 1), ('including', 1), ('plug', 1), ('play', 1), ('support', 1), ('usb', 1), ('device', 1), ('power', 1), ('management', 1), ('feature', 1), ('faster', 1), ('three', 1), ('time', 1), ('stable', 1)]
[('network', 3), ('design', 2), ('unique', 1), ('book', 1), ('offer', 1), ('vendor', 1), ('neutral', 1), ('approach', 1), ('designing', 1), ('large', 1), ('local', 1), ('area', 1), ('according', 1), ('business', 1), ('organizational', 1), ('need', 1), ('rather', 1), ('product', 1), ('perspective', 1), ('author', 1), ('independent', 1), ('consultant', 1), ('kevin', 1), ('dooley', 1), ('outline', 1), ('top', 1), ('building', 1), ('technological', 1), ('infrastructure', 1), ('fit', 1)]
[('xp', 3), ('smart', 1), ('collection', 1), ('insider', 1), ('tip', 1), ('trick', 1), ('window', 1), ('hack', 1), ('second', 1), ('edition', 1), ('cover', 1), ('operating', 1), ('system', 1), ('start', 1), ('finish', 1), ('among', 1), ('multitude', 1), ('topic', 1), ('addressed', 1), ('resource', 1), ('includes', 1), ('extensive', 1), ('coverage', 1), ('hot', 1), ('button', 1), ('issue', 1), ('security', 1), ('web', 1), ('browsing', 1), ('controlling', 1), ('control', 1), ('panel', 1), ('removing', 1), ('uninstallable', 1)]
[('team', 2), ('sharepoint', 2), ('site', 2), ('nothing', 1), ('teamwork', 1), ('making', 1), ('progress', 1), ('project', 1), ('sharing', 1), ('information', 1), ('building', 1), ('success', 1), ('challenging', 1), ('scattered', 1), ('across', 1), ('mile', 1), ('microsoft', 1), ('help', 1), ('organization', 1), ('close', 1), ('distance', 1), ('group', 1), ('construct', 1), ('web', 1), ('specifically', 1), ('collaboration', 1)]
[('web', 4), ('site', 3), ('think', 2), ('technical', 1), ('wizard', 1), ('build', 1), ('want', 1), ('create', 1), ('engaging', 1), ('thoroughly', 1), ('revised', 1), ('completely', 1), ('updated', 1), ('edition', 1), ('creating', 1), ('missing', 1), ('manual', 1), ('demystifies', 1), ('process', 1), ('provides', 1), ('tool', 1), ('technique', 1), ('expert', 1), ('guidance', 1), ('developing', 1), ('professional', 1), ('reliable', 1)]
[('standard', 2), ('design', 2), ('year', 1), ('using', 1), ('spacer', 1), ('gifs', 1), ('layer', 1), ('nested', 1), ('table', 1), ('improvised', 1), ('solution', 1), ('building', 1), ('web', 1), ('site', 1), ('getting', 1), ('used', 1), ('stringent', 1), ('compliant', 1), ('de', 1), ('rigueur', 1), ('among', 1), ('professional', 1), ('today', 1), ('intimidating', 1), ('driven', 1), ('keeping', 1), ('style', 1), ('separate', 1), ('content', 1), ('possibility', 1)]
[('web', 4), ('application', 2), ('app', 2), ('engine', 2), ('build', 1), ('exciting', 1), ('scalable', 1), ('quickly', 1), ('confidently', 1), ('using', 1), ('google', 1), ('book', 1), ('even', 1), ('little', 1), ('experience', 1), ('programming', 1), ('development', 1), ('perhaps', 1), ('appealing', 1), ('technology', 1), ('appear', 1), ('last', 1), ('year', 1), ('providing', 1), ('easy', 1), ('use', 1), ('framework', 1), ('basic', 1), ('tool', 1)]
[('computer', 2), ('add', 2), ('self', 1), ('forgetfulness', 1), ('reigning', 1), ('temptation', 1), ('technological', 1), ('era', 1), ('readily', 1), ('give', 1), ('assent', 1), ('absurd', 1), ('proposition', 1), ('plus', 1), ('despite', 1), ('obvious', 1), ('fact', 1), ('nothing', 1), ('sort', 1), ('mind', 1), ('anything', 1), ('remotely', 1), ('resembling', 1), ('number', 1), ('case', 1)]
[('sharepoint', 2), ('document', 2), ('office', 1), ('pocket', 1), ('guide', 1), ('quick', 1), ('path', 1), ('sharing', 1), ('building', 1), ('list', 1), ('written', 1), ('specifically', 1), ('user', 1), ('microsoft', 1), ('word', 1), ('excel', 1), ('outlook', 1), ('cover', 1), ('in', 1), ('out', 1), ('clearly', 1), ('concisely', 1), ('within', 1), ('minute', 1), ('understand', 1), ('create', 1), ('team', 1), ('site', 1), ('library', 1), ('shared', 1), ('workspace', 1), ('add', 1), ('web', 1), ('part', 1)]
[('web', 4), ('ajax', 2), ('javascript', 2), ('xml', 2), ('technology', 2), ('developer', 2), ('popular', 1), ('term', 1), ('asynchronous', 1), ('important', 1), ('combination', 1), ('know', 1), ('day', 1), ('rich', 1), ('grouping', 1), ('create', 1), ('interactive', 1), ('application', 1), ('based', 1), ('service', 1), ('using', 1), ('browser', 1), ('process', 1), ('server', 1)]
[('window', 1), ('vista', 1), ('microsoft', 1), ('important', 1), ('software', 1), ('release', 1), ('decade', 1), ('offer', 1), ('user', 1), ('abundance', 1), ('new', 1), ('upgraded', 1), ('feature', 1), ('five', 1), ('year', 1), ('making', 1), ('gorgeous', 1), ('glass', 1), ('visual', 1), ('overhaul', 1), ('superior', 1), ('searching', 1), ('organization', 1), ('tool', 1), ('multimedia', 1), ('collaboration', 1), ('suite', 1), ('massive', 1)]
[('performance', 3), ('web', 3), ('site', 2), ('critical', 1), ('success', 1), ('yet', 1), ('today', 1), ('application', 1), ('push', 1), ('browser', 1), ('limit', 1), ('increasing', 1), ('amount', 1), ('rich', 1), ('content', 1), ('heavy', 1), ('use', 1), ('ajax', 1), ('book', 1), ('steve', 1), ('souders', 1), ('evangelist', 1), ('google', 1), ('former', 1), ('chief', 1), ('yahoo', 1), ('provides', 1), ('valuable', 1), ('technique', 1), ('help', 1), ('optimize', 1)]
[('hadoop', 3), ('definitive', 1), ('guide', 1), ('help', 1), ('harness', 1), ('power', 1), ('data', 1), ('ideal', 1), ('processing', 1), ('large', 1), ('datasets', 1), ('apache', 1), ('framework', 1), ('open', 1), ('source', 1), ('implementation', 1), ('mapreduce', 1), ('algorithm', 1), ('google', 1), ('built', 1), ('empire', 1), ('comprehensive', 1), ('resource', 1), ('demonstrates', 1), ('use', 1), ('build', 1), ('reliable', 1), ('scalable', 1), ('distributed', 1), ('system', 1)]
[('service', 2), ('rise', 1), ('network', 1), ('based', 1), ('automated', 1), ('past', 1), ('decade', 1), ('definitely', 1), ('changed', 1), ('way', 1), ('business', 1), ('operate', 1), ('always', 1), ('better', 1), ('offering', 1), ('conducting', 1), ('transaction', 1), ('moving', 1), ('data', 1), ('web', 1), ('open', 1), ('new', 1), ('opportunity', 1), ('many', 1), ('ctos', 1), ('cio', 1), ('concerned', 1), ('risk', 1), ('ruler', 1), ('medieval', 1), ('city', 1)]
[('window', 2), ('new', 2), ('want', 1), ('build', 1), ('application', 1), ('take', 1), ('full', 1), ('advantage', 1), ('vista', 1), ('user', 1), ('interface', 1), ('capability', 1), ('need', 1), ('learn', 1), ('microsoft', 1), ('presentation', 1), ('foundation', 1), ('wpf', 1), ('edition', 1), ('fully', 1), ('updated', 1), ('official', 1), ('release', 1), ('net', 1), ('designed', 1), ('speed', 1), ('technology', 1), ('quickly', 1), ('page', 1), ('writing', 1)]
[('access', 3), ('maybe', 2), ('microsoft', 2), ('office', 2), ('part', 1), ('wonder', 1), ('household', 1), ('small', 1), ('business', 1), ('manager', 1), ('techie', 1), ('staff', 1), ('train', 1), ('regardless', 1), ('want', 1), ('quickly', 1), ('foot', 1), ('wet', 1), ('head', 1), ('starter', 1), ('missing', 1), ('manual', 1)]
[('iphone', 5), ('game', 4), ('development', 2), ('need', 1), ('know', 1), ('create', 1), ('even', 1), ('already', 1), ('built', 1), ('application', 1), ('developing', 1), ('using', 1), ('gestural', 1), ('interface', 1), ('limited', 1), ('screen', 1), ('layout', 1), ('requires', 1), ('new', 1), ('skill', 1), ('everything', 1), ('basic', 1), ('programming', 1), ('fundamental', 1), ('guideline', 1)]
[('php', 3), ('past', 1), ('hype', 1), ('dig', 1), ('real', 1), ('power', 1), ('language', 1), ('book', 1), ('explores', 1), ('useful', 1), ('feature', 1), ('speed', 1), ('web', 1), ('development', 1), ('process', 1), ('explains', 1), ('commonly', 1), ('used', 1), ('element', 1), ('often', 1), ('misused', 1), ('misapplied', 1), ('learn', 1), ('part', 1), ('add', 1), ('strength', 1), ('object', 1), ('oriented', 1), ('programming', 1)]
[('database', 4), ('language', 2), ('anyone', 1), ('interacts', 1), ('today', 1), ('modern', 1), ('need', 1), ('know', 1), ('sql', 1), ('structured', 1), ('query', 1), ('standard', 1), ('generating', 1), ('manipulating', 1), ('retrieving', 1), ('information', 1), ('recent', 1), ('year', 1), ('dramatic', 1), ('rise', 1), ('popularity', 1), ('relational', 1), ('multi', 1), ('user', 1), ('fueled', 1), ('healthy', 1), ('demand', 1), ('application', 1), ('developer', 1)]
[('cryptography', 2), ('cryptographic', 2), ('science', 1), ('secret', 1), ('writing', 1), ('biggest', 1), ('baddest', 1), ('security', 1), ('tool', 1), ('application', 1), ('programmer', 1), ('arsenal', 1), ('provides', 1), ('three', 1), ('service', 1), ('crucial', 1), ('secure', 1), ('programming', 1), ('include', 1), ('cipher', 1), ('protects', 1), ('secrecy', 1), ('data', 1), ('certificate', 1), ('prove', 1), ('identity', 1), ('authentication', 1)]
[('log', 2), ('application', 2), ('around', 1), ('seems', 1), ('many', 1), ('use', 1), ('used', 1), ('year', 1), ('bet', 1), ('every', 1), ('time', 1), ('need', 1), ('something', 1), ('never', 1), ('done', 1), ('find', 1), ('searching', 1), ('example', 1), ('whatever', 1), ('usually', 1), ('luck', 1), ('believe', 1)]
[('project', 3), ('manage', 1), ('go', 1), ('smoothly', 1), ('thing', 1), ('every', 1), ('manager', 1), ('know', 1), ('offer', 1), ('knowledge', 1), ('priceless', 1), ('gained', 1), ('year', 1), ('trial', 1), ('error', 1), ('illuminating', 1), ('book', 1), ('contains', 1), ('short', 1), ('extremely', 1), ('practical', 1), ('tip', 1), ('whether', 1), ('dealing', 1), ('software', 1), ('non', 1), ('world', 1)]
[('window', 3), ('azure', 2), ('service', 2), ('programming', 2), ('learn', 1), ('nut', 1), ('bolt', 1), ('cloud', 1), ('computing', 1), ('microsoft', 1), ('new', 1), ('internet', 1), ('platform', 1), ('written', 1), ('key', 1), ('member', 1), ('product', 1), ('development', 1), ('team', 1), ('book', 1), ('show', 1), ('build', 1), ('deploy', 1), ('host', 1), ('manage', 1), ('application', 1), ('using', 1), ('model', 1), ('essential', 1), ('storage', 1), ('chapter', 1)]
[('advertising', 3), ('google', 2), ('book', 1), ('learn', 1), ('take', 1), ('full', 1), ('advantage', 1), ('adwords', 1), ('adsense', 1), ('sophisticated', 1), ('online', 1), ('tool', 1), ('used', 1), ('thousand', 1), ('large', 1), ('small', 1), ('business', 1), ('new', 1), ('edition', 1), ('provides', 1), ('substantially', 1), ('updated', 1), ('guide', 1), ('web', 1), ('including', 1), ('work', 1), ('general', 1), ('program', 1)]
[('investor', 3), ('geek', 2), ('online', 2), ('present', 1), ('investing', 1), ('hack', 1), ('industrial', 1), ('strength', 1), ('bleeding', 1), ('edge', 1), ('tip', 1), ('tool', 1), ('technique', 1), ('analyzing', 1), ('managing', 1), ('portfolio', 1), ('individual', 1), ('become', 1), ('computer', 1), ('literate', 1), ('technology', 1), ('dependent', 1), ('whether', 1), ('looking', 1), ('suitable', 1)]
[('application', 2), ('new', 2), ('generation', 2), ('advent', 1), ('rich', 1), ('internet', 1), ('explosion', 1), ('social', 1), ('medium', 1), ('increased', 1), ('use', 1), ('powerful', 1), ('cloud', 1), ('computing', 1), ('infrastructure', 1), ('attacker', 1), ('added', 1), ('cunning', 1), ('technique', 1), ('arsenal', 1), ('anyone', 1), ('involved', 1), ('defending', 1), ('network', 1), ('system', 1), ('hacking', 1), ('next', 1)]
[('snow', 3), ('mac', 2), ('book', 2), ('leopard', 2), ('whether', 1), ('new', 1), ('longtime', 1), ('user', 1), ('handy', 1), ('quickest', 1), ('way', 1), ('speed', 1), ('packed', 1), ('concise', 1), ('information', 1), ('easy', 1), ('format', 1), ('o', 1), ('pocket', 1), ('guide', 1), ('cover', 1), ('need', 1), ('know', 1), ('ideal', 1), ('resource', 1), ('problem', 1), ('solving', 1), ('fly', 1), ('go', 1), ('right', 1), ('heart', 1)]
[('find', 2), ('book', 2), ('ipad', 2), ('mini', 1), ('missing', 1), ('manual', 1), ('take', 1), ('virtual', 1), ('row', 1), ('apple', 1), ('ibookstore', 1), ('help', 1), ('buy', 1), ('download', 1), ('subscribe', 1), ('magazine', 1), ('newspaper', 1), ('learn', 1), ('navigate', 1), ('periodical', 1), ('sync', 1), ('back', 1), ('itunes', 1), ('swap', 1), ('free', 1), ('storage', 1), ('space', 1), ('addition', 1)]
[('javascript', 3), ('based', 2), ('language', 2), ('html', 2), ('dynamic', 2), ('web', 2), ('powerful', 1), ('object', 1), ('scripting', 1), ('embedded', 1), ('directly', 1), ('page', 1), ('allows', 1), ('create', 1), ('interactive', 1), ('application', 1), ('run', 1), ('completely', 1), ('within', 1), ('browser', 1), ('choice', 1), ('developing', 1), ('dhtml', 1), ('content', 1), ('integrated', 1), ('effectively', 1), ('cgi', 1)]
[('think', 3), ('sound', 2), ('effect', 2), ('video', 2), ('need', 2), ('add', 2), ('site', 2), ('nothing', 1), ('spice', 1), ('website', 1), ('cool', 1), ('ker', 1), ('thunk', 1), ('visitor', 1), ('press', 1), ('button', 1), ('embedded', 1), ('programmer', 1), ('sizzle', 1), ('hand', 1), ('guide', 1), ('give', 1), ('technique', 1), ('music', 1), ('animated', 1), ('gifs', 1), ('mini', 1), ('missing', 1), ('manual', 1), ('excerpted', 1)]
[('jboss', 3), ('number', 2), ('application', 2), ('consisting', 1), ('known', 1), ('open', 1), ('source', 1), ('product', 1), ('family', 1), ('interrelated', 1), ('service', 1), ('single', 1), ('monolithic', 1), ('tool', 1), ('feature', 1), ('rich', 1), ('pitfall', 1), ('complexity', 1), ('developer', 1), ('struggle', 1), ('issue', 1), ('deploying', 1), ('ee', 1)]
[('online', 3), ('paypal', 3), ('payment', 2), ('service', 2), ('bank', 2), ('bought', 1), ('sold', 1), ('item', 1), ('ebay', 1), ('hundred', 1), ('site', 1), ('familiar', 1), ('valid', 1), ('email', 1), ('address', 1), ('credit', 1), ('card', 1), ('account', 1), ('easily', 1), ('send', 1), ('receive', 1), ('financial', 1), ('institution', 1), ('describes', 1)]
[('linux', 3), ('multimedia', 3), ('o', 2), ('fact', 1), ('application', 1), ('choice', 1), ('mac', 1), ('window', 1), ('combined', 1), ('come', 1), ('surprise', 1), ('many', 1), ('know', 1), ('hack', 1), ('author', 1), ('kyle', 1), ('rankin', 1), ('showcase', 1), ('best', 1), ('available', 1), ('tool', 1), ('maximize', 1), ('entertainment', 1), ('capability', 1), ('favorite', 1), ('included', 1)]
[('rapid', 1), ('proliferation', 1), ('mobile', 1), ('network', 1), ('public', 1), ('use', 1), ('private', 1), ('made', 1), ('connectivity', 1), ('go', 1), ('desirable', 1), ('absolutely', 1), ('essential', 1), ('condition', 1), ('mobility', 1), ('limited', 1), ('laptop', 1), ('everywhere', 1), ('look', 1), ('downloading', 1), ('email', 1), ('information', 1), ('directly', 1), ('cell', 1), ('phone', 1), ('pda', 1), ('developer', 1), ('mean', 1)]
[('system', 3), ('book', 2), ('unix', 1), ('administrator', 1), ('information', 1), ('need', 1), ('every', 1), ('day', 1), ('job', 1), ('done', 1), ('fill', 1), ('large', 1), ('practically', 1), ('speaking', 1), ('want', 1), ('stop', 1), ('thumb', 1), ('weighty', 1), ('volume', 1), ('time', 1), ('problem', 1), ('arises', 1), ('answer', 1), ('essential', 1), ('administration', 1), ('pocket', 1), ('reference', 1)]
[('use', 1), ('mysql', 1), ('know', 1), ('world', 1), ('popular', 1), ('open', 1), ('source', 1), ('database', 1), ('small', 1), ('fast', 1), ('powerful', 1), ('rich', 1), ('feature', 1), ('administrator', 1), ('programmer', 1), ('stay', 1), ('familiar', 1), ('always', 1), ('little', 1), ('known', 1), ('command', 1), ('clause', 1), ('help', 1), ('become', 1), ('efficient', 1), ('work', 1), ('keep', 1)]
[('outlook', 3), ('user', 2), ('power', 1), ('know', 1), ('microsoft', 1), ('email', 1), ('program', 1), ('suite', 1), ('organizational', 1), ('tool', 1), ('help', 1), ('manage', 1), ('schedule', 1), ('contact', 1), ('deadline', 1), ('remarkable', 1), ('efficiency', 1), ('contains', 1), ('wealth', 1), ('feature', 1), ('even', 1), ('experienced', 1), ('find', 1), ('always', 1), ('something', 1), ('new', 1)]
[('rail', 4), ('web', 3), ('book', 2), ('written', 1), ('cater', 1), ('programmer', 1), ('looking', 1), ('information', 1), ('data', 1), ('structure', 1), ('learning', 1), ('target', 1), ('developer', 1), ('whose', 1), ('programming', 1), ('experience', 1), ('tied', 1), ('directly', 1), ('rather', 1), ('begin', 1), ('inner', 1), ('layer', 1), ('application', 1), ('model', 1), ('controller', 1), ('unique', 1), ('approach', 1), ('development', 1)]
[('web', 2), ('universal', 1), ('design', 1), ('application', 1), ('teach', 1), ('build', 1), ('website', 1), ('accessible', 1), ('disability', 1), ('explains', 1), ('good', 1), ('business', 1), ('take', 1), ('work', 1), ('front', 1), ('potential', 1), ('payoff', 1), ('huge', 1), ('especially', 1), ('mobile', 1), ('user', 1), ('need', 1), ('access', 1), ('site', 1), ('discover', 1), ('use', 1), ('standard', 1), ('based', 1)]
[('know', 2), ('flash', 2), ('create', 2), ('animation', 2), ('learn', 2), ('use', 1), ('everything', 1), ('simple', 1), ('high', 1), ('end', 1), ('desktop', 1), ('application', 1), ('complex', 1), ('tool', 1), ('difficult', 1), ('master', 1), ('unless', 1), ('missing', 1), ('manual', 1), ('book', 1), ('help', 1), ('need', 1), ('c', 1), ('bring', 1), ('idea', 1), ('life', 1)]
[('iphone', 2), ('cocoa', 2), ('touch', 2), ('app', 2), ('programming', 2), ('creating', 1), ('apps', 1), ('mini', 1), ('missing', 1), ('manual', 1), ('walk', 1), ('developing', 1), ('first', 1), ('introduces', 1), ('environment', 1), ('tool', 1), ('interface', 1), ('builder', 1), ('xcode', 1), ('objective', 1), ('language', 1), ('java', 1), ('developer', 1), ('ebook', 1), ('fast', 1), ('track', 1), ('development', 1)]
[('bookkeeping', 1), ('workflow', 1), ('smoother', 1), ('faster', 1), ('quickbooks', 1), ('spend', 1), ('time', 1), ('using', 1), ('program', 1), ('figuring', 1), ('work', 1), ('missing', 1), ('manual', 1), ('put', 1), ('control', 1), ('find', 1), ('use', 1), ('specific', 1), ('feature', 1), ('basic', 1), ('accounting', 1), ('advice', 1), ('help', 1), ('learning', 1), ('process', 1)]
[('mac', 2), ('use', 2), ('office', 1), ('easy', 1), ('unleash', 1), ('full', 1), ('power', 1), ('need', 1), ('go', 1), ('beyond', 1), ('basic', 1), ('entertaining', 1), ('guide', 1), ('get', 1), ('started', 1), ('word', 1), ('excel', 1), ('powerpoint', 1), ('new', 1), ('outlook', 1), ('reveals', 1), ('useful', 1), ('lot', 1), ('thing', 1), ('know', 1), ('software', 1), ('crystal', 1), ('clear', 1), ('explanation', 1), ('feature', 1)]
[('statistic', 2), ('graphic', 2), ('powerful', 1), ('tool', 1), ('getting', 1), ('started', 1), ('language', 1), ('frustrating', 1), ('short', 1), ('concise', 1), ('book', 1), ('provides', 1), ('beginner', 1), ('selection', 1), ('recipe', 1), ('solve', 1), ('simple', 1), ('problem', 1), ('solution', 1), ('give', 1), ('need', 1), ('know', 1), ('use', 1), ('basic', 1), ('regression', 1), ('find', 1)]
[('data', 4), ('useful', 2), ('find', 2), ('developer', 1), ('looking', 1), ('supplement', 1), ('tool', 1), ('service', 1), ('concise', 1), ('ebook', 1), ('cover', 1), ('source', 1), ('public', 1), ('available', 1), ('today', 1), ('information', 1), ('apis', 1), ('offer', 1), ('broad', 1), ('coverage', 1), ('tie', 1), ('outside', 1), ('world', 1), ('either', 1), ('accessible', 1), ('online', 1), ('feature', 1), ('downloadable', 1), ('bulk', 1)]
[('feature', 2), ('droid', 1), ('right', 1), ('away', 1), ('entertaining', 1), ('missing', 1), ('manual', 1), ('veteran', 1), ('tech', 1), ('author', 1), ('preston', 1), ('gralla', 1), ('offer', 1), ('guided', 1), ('tour', 1), ('every', 1), ('lot', 1), ('expert', 1), ('tip', 1), ('trick', 1), ('along', 1), ('way', 1), ('learn', 1), ('use', 1), ('calling', 1), ('texting', 1), ('take', 1), ('share', 1), ('photo', 1), ('enjoy', 1), ('streaming', 1), ('music', 1), ('video', 1), ('packed', 1)]
[('mac', 4), ('o', 2), ('book', 2), ('lion', 1), ('apple', 1), ('unleashed', 1), ('innovative', 1), ('version', 1), ('yet', 1), ('david', 1), ('pogue', 1), ('brings', 1), ('humor', 1), ('expertise', 1), ('bestselling', 1), ('completely', 1), ('transforms', 1), ('user', 1), ('interface', 1), ('multi', 1), ('touch', 1), ('gesture', 1), ('borrowed', 1), ('iphone', 1), ('ipad', 1), ('includes', 1), ('brand', 1), ('new', 1), ('feature', 1)]
[('html', 2), ('application', 2), ('replacement', 1), ('plugins', 1), ('make', 1), ('web', 1), ('first', 1), ('class', 1), ('development', 1), ('environment', 1), ('giving', 1), ('javascript', 1), ('programmer', 1), ('solid', 1), ('foundation', 1), ('building', 1), ('industrial', 1), ('strength', 1), ('practical', 1), ('guide', 1), ('take', 1), ('beyond', 1), ('simple', 1), ('site', 1), ('creation', 1), ('show', 1), ('build', 1), ('self', 1), ('contained', 1), ('run', 1), ('mobile', 1)]
[('map', 3), ('drupal', 3), ('build', 1), ('beautiful', 1), ('interactive', 1), ('website', 1), ('tell', 1), ('engaging', 1), ('visual', 1), ('story', 1), ('data', 1), ('concise', 1), ('guide', 1), ('show', 1), ('create', 1), ('custom', 1), ('geographical', 1), ('top', 1), ('bottom', 1), ('using', 1), ('tool', 1), ('box', 1), ('module', 1), ('learn', 1), ('mapping', 1), ('work', 1), ('example', 1), ('use', 1), ('intuitive', 1), ('interface', 1), ('local', 1)]
[('game', 3), ('work', 2), ('create', 1), ('real', 1), ('start', 1), ('finish', 1), ('impactjs', 1), ('javascript', 1), ('framework', 1), ('html', 1), ('canvas', 1), ('element', 1), ('making', 1), ('video', 1), ('hard', 1), ('requires', 1), ('technical', 1), ('skill', 1), ('lot', 1), ('planning', 1), ('critically', 1), ('commitment', 1), ('completing', 1), ('project', 1), ('hand', 1), ('guide', 1), ('learn', 1), ('use', 1), ('impact', 1)]
[('javascript', 3), ('use', 2), ('work', 2), ('server', 2), ('know', 1), ('browser', 1), ('already', 1), ('skill', 1), ('need', 1), ('put', 1), ('back', 1), ('end', 1), ('node', 1), ('hand', 1), ('book', 1), ('show', 1), ('popular', 1), ('platform', 1), ('create', 1), ('simple', 1), ('application', 1), ('communicate', 1), ('client', 1), ('build', 1), ('dynamic', 1), ('page', 1), ('data', 1), ('tackle', 1), ('task', 1)]
[('apps', 2), ('overcome', 1), ('vexing', 1), ('real', 1), ('life', 1), ('issue', 1), ('confront', 1), ('creating', 1), ('iphone', 1), ('ipad', 1), ('ipod', 1), ('touch', 1), ('making', 1), ('use', 1), ('new', 1), ('recipe', 1), ('updated', 1), ('cookbook', 1), ('quickly', 1), ('learn', 1), ('step', 1), ('necessary', 1), ('writing', 1), ('complete', 1), ('io', 1), ('whether', 1), ('simple', 1), ('music', 1), ('player', 1), ('feature', 1), ('complex', 1), ('mix', 1), ('animation', 1)]
[('interactive', 2), ('design', 2), ('ready', 1), ('create', 1), ('rich', 1), ('experience', 1), ('artwork', 1), ('prototype', 1), ('ideal', 1), ('place', 1), ('start', 1), ('hand', 1), ('guide', 1), ('explore', 1), ('several', 1), ('theme', 1), ('art', 1), ('including', 1), ('graphic', 1), ('sound', 1), ('physical', 1), ('interaction', 1), ('computer', 1), ('vision', 1), ('geolocation', 1), ('learn', 1), ('basic', 1), ('programming', 1), ('electronics', 1)]
[('application', 2), ('mongodb', 2), ('database', 2), ('happen', 1), ('optimized', 1), ('data', 1), ('store', 1), ('operation', 1), ('developer', 1), ('actually', 1), ('use', 1), ('arrive', 1), ('reliable', 1), ('document', 1), ('oriented', 1), ('concise', 1), ('guide', 1), ('learn', 1), ('build', 1), ('elegant', 1), ('php', 1), ('written', 1), ('chief', 1), ('solution', 1), ('architect', 1), ('gen', 1), ('company', 1)]
[('marketing', 3), ('twitter', 2), ('book', 2), ('ok', 1), ('account', 1), ('sound', 1), ('familiar', 1), ('tweetsmart', 1), ('provides', 1), ('answer', 1), ('creative', 1), ('project', 1), ('help', 1), ('business', 1), ('cause', 1), ('organization', 1), ('grow', 1), ('another', 1), ('social', 1), ('medium', 1), ('anti', 1), ('community', 1), ('engagement', 1), ('channel', 1)]
[('jquery', 2), ('interactive', 2), ('ui', 1), ('library', 1), ('apply', 1), ('power', 1), ('standard', 1), ('user', 1), ('interface', 1), ('design', 1), ('complete', 1), ('element', 1), ('animation', 1), ('themeable', 1), ('widget', 1), ('concise', 1), ('code', 1), ('heavy', 1), ('guide', 1), ('demonstrates', 1), ('harness', 1), ('feature', 1), ('html', 1), ('lack', 1), ('including', 1), ('tab', 1), ('accordion', 1), ('dialog', 1), ('box', 1), ('learn', 1)]
[('gain', 1), ('hand', 1), ('experience', 1), ('amazing', 1), ('phonegap', 1), ('library', 1), ('using', 1), ('practical', 1), ('recipe', 1), ('handy', 1), ('guide', 1), ('solution', 1), ('enable', 1), ('mobile', 1), ('web', 1), ('apps', 1), ('interact', 1), ('device', 1), ('specific', 1), ('feature', 1), ('accelerometer', 1), ('gps', 1), ('camera', 1), ('address', 1), ('book', 1), ('learn', 1), ('use', 1), ('knowledge', 1), ('html', 1), ('cs', 1), ('javascript', 1), ('build', 1), ('full', 1)]
[('work', 2), ('sharepoint', 2), ('discovered', 1), ('countless', 1), ('trick', 1), ('using', 1), ('platform', 1), ('solve', 1), ('real', 1), ('world', 1), ('problem', 1), ('certainly', 1), ('mind', 1), ('learning', 1), ('purpose', 1), ('behind', 1), ('endusersharepoint', 1), ('community', 1), ('site', 1), ('let', 1), ('end', 1), ('user', 1), ('share', 1), ('ingenious', 1), ('new', 1), ('way', 1), ('putting', 1)]
[('gadget', 2), ('gadgeteer', 2), ('easy', 2), ('learn', 1), ('quickly', 1), ('build', 1), ('cool', 1), ('electronic', 1), ('net', 1), ('follow', 1), ('instruction', 1), ('guide', 1), ('tackle', 1), ('five', 1), ('fascinating', 1), ('project', 1), ('using', 1), ('microsoft', 1), ('rapid', 1), ('prototyping', 1), ('platform', 1), ('soldering', 1), ('involved', 1), ('simply', 1), ('plug', 1), ('module', 1), ('make', 1), ('building', 1), ('quick', 1), ('ideal', 1), ('beginner', 1)]
[('step', 2), ('network', 2), ('score', 1), ('solution', 1), ('cookbook', 1), ('help', 1), ('work', 1), ('vmware', 1), ('esxi', 1), ('wide', 1), ('range', 1), ('environment', 1), ('learn', 1), ('basic', 1), ('pool', 1), ('resource', 1), ('hardware', 1), ('server', 1), ('computer', 1), ('cluster', 1), ('storage', 1), ('distribute', 1), ('among', 1), ('virtual', 1), ('machine', 1), ('overcome', 1), ('stumbling', 1), ('block', 1)]
[('work', 2), ('problem', 2), ('programming', 2), ('curious', 1), ('thing', 1), ('fun', 1), ('intriguing', 1), ('guide', 1), ('help', 1), ('find', 1), ('real', 1), ('answer', 1), ('everyday', 1), ('using', 1), ('fundamental', 1), ('math', 1), ('simple', 1), ('ruby', 1), ('language', 1), ('learn', 1), ('model', 1), ('toward', 1), ('solution', 1), ('need', 1), ('basic', 1), ('understanding', 1), ('quick', 1)]
[('database', 2), ('java', 2), ('object', 2), ('relational', 2), ('jdbc', 1), ('simplified', 1), ('access', 1), ('application', 1), ('nagging', 1), ('wrinkle', 1), ('remain', 1), ('namely', 1), ('persisting', 1), ('book', 1), ('learn', 1), ('spring', 1), ('framework', 1), ('make', 1), ('job', 1), ('incredibly', 1), ('easy', 1), ('dependency', 1), ('injection', 1), ('template', 1), ('class', 1), ('mapping', 1), ('orm', 1), ('sample', 1), ('code', 1)]
[('dreamweaver', 2), ('c', 2), ('program', 2), ('capable', 1), ('website', 1), ('design', 1), ('management', 1), ('yet', 1), ('printed', 1), ('guide', 1), ('amazing', 1), ('feature', 1), ('missing', 1), ('manual', 1), ('come', 1), ('learn', 1), ('use', 1), ('every', 1), ('facet', 1), ('versatile', 1), ('jargon', 1), ('free', 1), ('explanation', 1), ('hand', 1), ('tutorial', 1), ('important', 1), ('stuff', 1), ('need', 1)]
[('element', 2), ('step', 2), ('whether', 1), ('photographer', 1), ('scrapbooker', 1), ('aspiring', 1), ('graphic', 1), ('artist', 1), ('photoshop', 1), ('ideal', 1), ('image', 1), ('editing', 1), ('tool', 1), ('know', 1), ('way', 1), ('around', 1), ('bestselling', 1), ('book', 1), ('remove', 1), ('guesswork', 1), ('candid', 1), ('jargon', 1), ('free', 1), ('advice', 1), ('guidance', 1), ('everything', 1), ('sharing', 1), ('touching', 1), ('photo', 1)]
[('build', 2), ('website', 2), ('database', 2), ('step', 2), ('cs', 1), ('javascript', 1), ('book', 1), ('take', 1), ('next', 1), ('level', 1), ('creating', 1), ('dynamic', 1), ('driven', 1), ('php', 1), ('mysql', 1), ('learn', 1), ('manage', 1), ('content', 1), ('interact', 1), ('user', 1), ('tutorial', 1), ('completely', 1), ('revised', 1), ('edition', 1), ('get', 1), ('started', 1), ('expanded', 1), ('coverage', 1), ('basic', 1)]
[('web', 2), ('detailed', 1), ('hack', 1), ('expert', 1), ('developer', 1), ('jesse', 1), ('craven', 1), ('jeff', 1), ('burtoft', 1), ('demonstrate', 1), ('intriguing', 1), ('us', 1), ('html', 1), ('related', 1), ('technology', 1), ('recipe', 1), ('provides', 1), ('clear', 1), ('explanation', 1), ('screenshots', 1), ('complete', 1), ('code', 1), ('example', 1), ('specification', 1), ('include', 1), ('canvas', 1), ('svg', 1), ('cs', 1), ('multimedia', 1), ('data', 1), ('storage', 1), ('worker', 1), ('websockets', 1), ('geolocation', 1)]
[('network', 4), ('software', 3), ('explore', 1), ('emerging', 1), ('definition', 1), ('protocol', 1), ('standard', 1), ('sdn', 1), ('defined', 1), ('driven', 1), ('programmable', 1), ('comprehensive', 1), ('guide', 1), ('senior', 1), ('engineer', 1), ('show', 1), ('required', 1), ('building', 1), ('use', 1), ('bi', 1), ('directional', 1), ('communication', 1), ('application', 1), ('underlying', 1), ('infrastructure', 1)]
[('infrastructure', 2), ('test', 1), ('driven', 1), ('chef', 1), ('first', 1), ('appeared', 1), ('mid', 1), ('testing', 1), ('begun', 1), ('flourish', 1), ('web', 1), ('ops', 1), ('world', 1), ('revised', 1), ('expanded', 1), ('edition', 1), ('author', 1), ('stephen', 1), ('nelson', 1), ('smith', 1), ('brings', 1), ('date', 1), ('rapidly', 1), ('evolving', 1), ('discipline', 1), ('including', 1), ('philosophy', 1), ('driving', 1), ('growing', 1), ('array', 1), ('tool', 1)]
[('android', 2), ('want', 1), ('build', 1), ('apps', 1), ('device', 1), ('book', 1), ('perfect', 1), ('way', 1), ('master', 1), ('fundamental', 1), ('written', 1), ('expert', 1), ('taught', 1), ('mobile', 1), ('platform', 1), ('hundred', 1), ('developer', 1), ('large', 1), ('organization', 1), ('startup', 1), ('alike', 1), ('gentle', 1), ('introduction', 1), ('show', 1), ('experienced', 1), ('object', 1), ('oriented', 1), ('programmer', 1), ('use', 1), ('basic', 1), ('building', 1), ('block', 1), ('create', 1)]
[('mobile', 2), ('web', 2), ('build', 1), ('kickass', 1), ('website', 1), ('application', 1), ('non', 1), ('platform', 1), ('adding', 1), ('html', 1), ('cs', 1), ('development', 1), ('toolkit', 1), ('hand', 1), ('book', 1), ('learn', 1), ('develop', 1), ('apps', 1), ('work', 1), ('io', 1), ('android', 1), ('blackberry', 1), ('window', 1), ('phone', 1), ('perform', 1), ('provide', 1), ('good', 1), ('user', 1), ('experience', 1), ('lot', 1), ('code', 1)]
[('client', 3), ('java', 2), ('server', 2), ('web', 2), ('development', 2), ('programmer', 1), ('tackle', 1), ('disruptive', 1), ('approach', 1), ('comprehensive', 1), ('guide', 1), ('learn', 1), ('today', 1), ('side', 1), ('technology', 1), ('apis', 1), ('work', 1), ('various', 1), ('tool', 1), ('author', 1), ('casimir', 1), ('saternos', 1), ('provides', 1), ('big', 1), ('picture', 1), ('take', 1), ('many', 1), ('practical', 1)]
[('game', 3), ('player', 2), ('advance', 1), ('visualization', 1), ('physic', 1), ('based', 1), ('simulation', 1), ('technology', 1), ('make', 1), ('possible', 1), ('developer', 1), ('create', 1), ('compelling', 1), ('visually', 1), ('immersive', 1), ('gaming', 1), ('environment', 1), ('dreamed', 1), ('year', 1), ('ago', 1), ('today', 1), ('grown', 1), ('sophistication', 1), ('along', 1), ('play', 1), ('longer', 1), ('enough', 1), ('wow', 1), ('dazzling', 1)]
[('cloud', 2), ('service', 2), ('ecommerce', 1), ('solution', 1), ('ready', 1), ('practical', 1), ('guide', 1), ('show', 1), ('experienced', 1), ('aspiring', 1), ('web', 1), ('architect', 1), ('alike', 1), ('adopt', 1), ('computing', 1), ('incrementally', 1), ('using', 1), ('public', 1), ('infrastructure', 1), ('platform', 1), ('learn', 1), ('marshal', 1), ('capacity', 1), ('need', 1), ('handle', 1), ('peak', 1), ('holiday', 1), ('special', 1), ('event', 1), ('traffic', 1)]
[('window', 2), ('mac', 2), ('never', 2), ('better', 2), ('make', 1), ('refugee', 1), ('decide', 1), ('enthusiastic', 1), ('friend', 1), ('apple', 1), ('store', 1), ('looking', 1), ('laptop', 1), ('halo', 1), ('effect', 1), ('popularity', 1), ('iphones', 1), ('ipads', 1), ('absence', 1), ('virus', 1), ('spyware', 1), ('freedom', 1), ('run', 1), ('case', 1), ('time', 1), ('switch', 1), ('o', 1)]
[('javascript', 3), ('everywhere', 1), ('day', 1), ('browser', 1), ('server', 1), ('mobile', 1), ('need', 1), ('learn', 1), ('language', 1), ('dive', 1), ('deeper', 1), ('concise', 1), ('book', 1), ('guide', 1), ('written', 1), ('veteran', 1), ('programmer', 1), ('found', 1), ('position', 1), ('speaking', 1), ('help', 1), ('approach', 1)]
[('android', 2), ('app', 2), ('multithreading', 1), ('essential', 1), ('want', 1), ('create', 1), ('user', 1), ('experience', 1), ('know', 1), ('technique', 1), ('help', 1), ('solve', 1), ('problem', 1), ('practical', 1), ('book', 1), ('describes', 1), ('many', 1), ('asynchronous', 1), ('mechanism', 1), ('available', 1), ('sdk', 1), ('provides', 1), ('guideline', 1), ('selecting', 1), ('one', 1), ('appropriate', 1), ('building', 1)]
[('window', 2), ('quite', 1), ('different', 1), ('previous', 1), ('microsoft', 1), ('operating', 1), ('system', 1), ('still', 1), ('eminently', 1), ('hackable', 1), ('book', 1), ('learn', 1), ('make', 1), ('variety', 1), ('modification', 1), ('speeding', 1), ('boot', 1), ('time', 1), ('disabling', 1), ('lock', 1), ('screen', 1), ('hacking', 1), ('native', 1), ('apps', 1), ('running', 1), ('mac', 1), ('beginning', 1), ('find', 1)]
[('recipe', 4), ('practical', 1), ('guide', 1), ('provides', 1), ('help', 1), ('generate', 1), ('high', 1), ('quality', 1), ('graph', 1), ('quickly', 1), ('without', 1), ('comb', 1), ('detail', 1), ('graphing', 1), ('system', 1), ('tackle', 1), ('specific', 1), ('problem', 1), ('solution', 1), ('apply', 1), ('project', 1), ('includes', 1), ('discussion', 1), ('work', 1), ('use', 1)]
[('fire', 2), ('step', 2), ('amazon', 1), ('kindle', 1), ('hd', 1), ('combine', 1), ('popular', 1), ('reader', 1), ('tablet', 1), ('feature', 1), ('sleek', 1), ('package', 1), ('entertaining', 1), ('guide', 1), ('master', 1), ('everything', 1), ('offer', 1), ('load', 1), ('illustration', 1), ('instruction', 1), ('savvy', 1), ('tip', 1), ('learn', 1), ('manage', 1), ('medium', 1), ('library', 1), ('cloud', 1), ('find', 1), ('coolest', 1), ('apps', 1), ('make', 1)]
[('asp', 2), ('net', 2), ('feature', 2), ('nutshell', 1), ('concise', 1), ('volume', 1), ('reference', 1), ('everything', 1), ('need', 1), ('make', 1), ('effective', 1), ('use', 1), ('invaluable', 1), ('resource', 1), ('go', 1), ('beyond', 1), ('published', 1), ('documentation', 1), ('highlight', 1), ('little', 1), ('known', 1), ('detail', 1), ('stress', 1), ('practical', 1), ('us', 1), ('particular', 1), ('provide', 1), ('real', 1), ('world', 1), ('example', 1), ('show', 1), ('used', 1), ('working', 1)]
[('jasmine', 2), ('javascript', 2), ('write', 2), ('concise', 1), ('introduction', 1), ('popular', 1), ('behavior', 1), ('driven', 1), ('testing', 1), ('framework', 1), ('practical', 1), ('guide', 1), ('show', 1), ('unit', 1), ('test', 1), ('automatically', 1), ('check', 1), ('bug', 1), ('application', 1), ('experience', 1), ('knowledge', 1), ('advanced', 1), ('feature', 1), ('learn', 1), ('specification', 1)]
[('net', 6), ('ado', 4), ('nutshell', 3), ('written', 1), ('expert', 1), ('microsoft', 1), ('programming', 1), ('platform', 1), ('delivers', 1), ('everything', 1), ('programmer', 1), ('need', 1), ('jump', 1), ('start', 1), ('technology', 1), ('sharpen', 1), ('skill', 1), ('even', 1), ('tradition', 1), ('reilly', 1), ('series', 1), ('complete', 1), ('concise', 1), ('source', 1)]
[('android', 2), ('adt', 2), ('development', 1), ('challenging', 1), ('effective', 1), ('use', 1), ('developer', 1), ('tool', 1), ('make', 1), ('process', 1), ('easier', 1), ('improve', 1), ('quality', 1), ('code', 1), ('concise', 1), ('guide', 1), ('demonstrates', 1), ('build', 1), ('apps', 1), ('device', 1), ('family', 1), ('feature', 1), ('several', 1), ('screen', 1), ('size', 1), ('different', 1), ('hardware', 1), ('capability', 1), ('varying', 1), ('number', 1)]
[('programming', 2), ('functional', 2), ('concept', 2), ('imperative', 1), ('probably', 1), ('object', 1), ('oriented', 1), ('background', 1), ('hand', 1), ('book', 1), ('guide', 1), ('alien', 1), ('world', 1), ('author', 1), ('joshua', 1), ('backfield', 1), ('begin', 1), ('slowly', 1), ('showing', 1), ('apply', 1), ('useful', 1), ('implementation', 1), ('taking', 1), ('style', 1), ('practice', 1)]
[('based', 2), ('web', 1), ('developer', 1), ('interested', 1), ('building', 1), ('scalable', 1), ('single', 1), ('page', 1), ('application', 1), ('full', 1), ('stack', 1), ('browser', 1), ('apps', 1), ('connect', 1), ('backend', 1), ('practical', 1), ('guide', 1), ('show', 1), ('use', 1), ('ember', 1), ('j', 1), ('popular', 1), ('javascript', 1), ('framework', 1), ('model', 1), ('view', 1), ('controller', 1), ('mvc', 1), ('architectural', 1), ('pattern', 1), ('course', 1), ('book', 1), ('learn', 1), ('build', 1)]
[('data', 2), ('hadoop', 2), ('flume', 2), ('system', 2), ('frontend', 1), ('server', 1), ('near', 1), ('real', 1), ('time', 1), ('complete', 1), ('reference', 1), ('guide', 1), ('learn', 1), ('rich', 1), ('set', 1), ('feature', 1), ('collecting', 1), ('aggregating', 1), ('writing', 1), ('large', 1), ('amount', 1), ('streaming', 1), ('distributed', 1), ('file', 1), ('hdfs', 1), ('apache', 1), ('hbase', 1), ('solrcloud', 1), ('elastic', 1), ('search', 1), ('using', 1)]
[('data', 2), ('center', 2), ('juniper', 2), ('qfx', 2), ('ideal', 1), ('network', 1), ('engineer', 1), ('involved', 1), ('building', 1), ('practical', 1), ('guide', 1), ('provides', 1), ('comprehensive', 1), ('technical', 1), ('deep', 1), ('dive', 1), ('new', 1), ('switching', 1), ('family', 1), ('learn', 1), ('enables', 1), ('create', 1), ('simple', 1), ('use', 1), ('build', 1), ('largest', 1), ('ip', 1), ('fabric', 1), ('world', 1), ('book', 1), ('chock', 1), ('full', 1)]
[('digital', 3), ('audio', 2), ('join', 1), ('revolution', 1), ('ten', 1), ('million', 1), ('user', 1), ('embracing', 1), ('music', 1), ('essential', 1), ('nearly', 1), ('every', 1), ('personal', 1), ('computer', 1), ('built', 1), ('last', 1), ('year', 1), ('contains', 1), ('cd', 1), ('burning', 1), ('drive', 1), ('mp', 1), ('portable', 1), ('player', 1), ('sale', 1), ('dominate', 1), ('consumer', 1), ('electronics', 1), ('industry', 1), ('new', 1), ('networkable', 1), ('stereo', 1), ('equipment', 1)]
[('book', 3), ('written', 3), ('programmer', 2), ('guide', 2), ('programming', 2), ('novice', 1), ('want', 1), ('learn', 1), ('many', 1), ('experienced', 1), ('java', 1), ('jesse', 1), ('liberty', 1), ('author', 1), ('best', 1), ('selling', 1), ('asp', 1), ('net', 1), ('entry', 1), ('level', 1), ('warm', 1), ('friendly', 1)]
[('accumulo', 2), ('nsa', 2), ('speed', 1), ('apache', 1), ('flexible', 1), ('high', 1), ('performance', 1), ('key', 1), ('value', 1), ('store', 1), ('created', 1), ('national', 1), ('security', 1), ('agency', 1), ('based', 1), ('google', 1), ('bigtable', 1), ('data', 1), ('storage', 1), ('system', 1), ('written', 1), ('former', 1), ('team', 1), ('member', 1), ('comprehensive', 1), ('tutorial', 1), ('reference', 1), ('cover', 1), ('architecture', 1), ('application', 1), ('development', 1), ('table', 1), ('design', 1), ('cell', 1), ('level', 1)]
[('feature', 3), ('new', 3), ('split', 2), ('el', 1), ('capitan', 1), ('apple', 1), ('brings', 1), ('never', 1), ('seen', 1), ('o', 1), ('screen', 1), ('desktop', 1), ('improved', 1), ('window', 1), ('control', 1), ('amazing', 1), ('graphic', 1), ('edition', 1), ('david', 1), ('pogue', 1), ('bestselling', 1), ('mac', 1), ('book', 1), ('show', 1), ('use', 1), ('key', 1), ('swiping', 1), ('gesture', 1), ('note', 1), ('spotlight', 1), ('search', 1), ('system', 1), ('safari', 1), ('pinning', 1), ('view', 1)]
[('design', 3), ('leader', 2), ('group', 2), ('take', 1), ('firm', 1), ('often', 1), ('assume', 1), ('answer', 1), ('rapidly', 1), ('evolving', 1), ('industry', 1), ('forced', 1), ('find', 1), ('way', 1), ('rest', 1), ('good', 1), ('manage', 1), ('lead', 1), ('want', 1), ('understand', 1), ('insightful', 1), ('book', 1), ('explores', 1)]
[('scientific', 2), ('involved', 1), ('cybersecurity', 1), ('software', 1), ('developer', 1), ('forensic', 1), ('investigator', 1), ('network', 1), ('administrator', 1), ('practical', 1), ('guide', 1), ('show', 1), ('apply', 1), ('method', 1), ('assessing', 1), ('technique', 1), ('protecting', 1), ('information', 1), ('system', 1), ('learn', 1), ('conduct', 1), ('experiment', 1), ('everyday', 1), ('tool', 1), ('procedure', 1), ('whether', 1)]
[('data', 2), ('guide', 2), ('whether', 1), ('sharing', 1), ('internal', 1), ('system', 1), ('building', 1), ('api', 1), ('user', 1), ('access', 1), ('practical', 1), ('everything', 1), ('need', 1), ('build', 1), ('apis', 1), ('php', 1), ('author', 1), ('lorna', 1), ('jane', 1), ('mitchell', 1), ('provides', 1), ('lot', 1), ('hand', 1), ('code', 1), ('sample', 1), ('real', 1), ('world', 1), ('example', 1), ('advice', 1), ('based', 1), ('extensive', 1), ('experience', 1)]
[('github', 2), ('next', 1), ('project', 1), ('take', 1), ('advantage', 1), ('service', 1), ('powerful', 1), ('api', 1), ('meet', 1), ('unique', 1), ('development', 1), ('requirement', 1), ('practical', 1), ('guide', 1), ('show', 1), ('build', 1), ('software', 1), ('tool', 1), ('customizing', 1), ('workflow', 1), ('hand', 1), ('chapter', 1), ('compelling', 1), ('story', 1), ('walk', 1), ('tradeoff', 1), ('consideration', 1), ('building', 1)]
[('data', 2), ('best', 2), ('driven', 1), ('company', 1), ('looking', 1), ('adopt', 1), ('stream', 1), ('processing', 1), ('streaming', 1), ('analytics', 1), ('concise', 1), ('ebook', 1), ('learn', 1), ('practice', 1), ('designing', 1), ('reliable', 1), ('architecture', 1), ('support', 1), ('emerging', 1), ('big', 1), ('paradigm', 1), ('author', 1), ('ted', 1), ('dunning', 1), ('ellen', 1), ('friedman', 1), ('real', 1), ('world', 1), ('hadoop', 1), ('help', 1), ('explore', 1), ('technology', 1)]
[('cloud', 2), ('native', 2), ('platform', 2), ('enterprise', 2), ('exactly', 1), ('certainly', 1), ('hot', 1), ('topic', 1), ('today', 1), ('ass', 1), ('option', 1), ('developing', 1), ('delivering', 1), ('software', 1), ('quickly', 1), ('repeatedly', 1), ('reilly', 1), ('report', 1), ('explains', 1), ('capability', 1), ('examines', 1), ('fundamental', 1), ('change', 1), ('need', 1), ('make', 1), ('process', 1), ('organization', 1)]
[('web', 2), ('learn', 2), ('rail', 2), ('developer', 1), ('designer', 1), ('ready', 1), ('ruby', 1), ('hand', 1), ('guide', 1), ('ideal', 1), ('way', 1), ('started', 1), ('rather', 1), ('toss', 1), ('middle', 1), ('framework', 1), ('model', 1), ('view', 1), ('controller', 1), ('architecture', 1), ('many', 1), ('book', 1), ('learning', 1), ('begin', 1), ('foundation', 1), ('already', 1), ('know', 1), ('create', 1), ('something', 1)]
[('world', 3), ('build', 1), ('bridge', 1), ('digital', 1), ('internet', 1), ('analog', 1), ('surround', 1), ('bringing', 1), ('accessibility', 1), ('embedded', 1), ('component', 1), ('sensor', 1), ('microcontrollers', 1), ('javascript', 1), ('node', 1), ('j', 1), ('might', 1), ('shape', 1), ('physical', 1), ('computing', 1), ('web', 1), ('browser', 1), ('practical', 1), ('guide', 1), ('show', 1), ('hardware', 1), ('software', 1), ('engineer', 1)]
[('many', 1), ('excellent', 1), ('resource', 1), ('visualization', 1), ('data', 1), ('science', 1), ('package', 1), ('development', 1), ('hundred', 1), ('scattered', 1), ('vignette', 1), ('web', 1), ('page', 1), ('forum', 1), ('explain', 1), ('use', 1), ('particular', 1), ('domain', 1), ('little', 1), ('written', 1), ('simply', 1), ('make', 1), ('work', 1), ('effectively', 1), ('hand', 1), ('book', 1), ('teach', 1), ('novice', 1), ('experienced', 1), ('user', 1), ('write', 1)]
[('prototyping', 2), ('product', 2), ('user', 1), ('testing', 1), ('best', 1), ('way', 1), ('create', 1), ('successful', 1), ('many', 1), ('designer', 1), ('skip', 1), ('important', 1), ('step', 1), ('use', 1), ('gut', 1), ('instinct', 1), ('instead', 1), ('explaining', 1), ('goal', 1), ('methodology', 1), ('behind', 1), ('demonstrating', 1), ('prototype', 1), ('physical', 1), ('digital', 1), ('practical', 1), ('guide', 1), ('help', 1), ('beginning', 1), ('intermediate', 1)]
[('brings', 2), ('picture', 2), ('sierra', 1), ('apple', 1), ('never', 1), ('seen', 1), ('feature', 1), ('macos', 1), ('siri', 1), ('voice', 1), ('control', 1), ('file', 1), ('sharing', 1), ('across', 1), ('io', 1), ('device', 1), ('mode', 1), ('itunes', 1), ('safari', 1), ('ai', 1), ('photo', 1), ('search', 1), ('david', 1), ('pogue', 1), ('humor', 1), ('expertise', 1), ('bestselling', 1), ('mac', 1), ('book', 1), ('whether', 1), ('developer', 1), ('home', 1), ('user', 1), ('guide', 1), ('offer', 1)]
[('learning', 3), ('machine', 2), ('data', 2), ('use', 2), ('finally', 1), ('come', 1), ('age', 1), ('software', 1), ('perform', 1), ('analysis', 1), ('using', 1), ('simple', 1), ('open', 1), ('source', 1), ('framework', 1), ('easy', 1), ('wide', 1), ('range', 1), ('o', 1), ('language', 1), ('support', 1), ('scale', 1), ('big', 1), ('hand', 1), ('guide', 1), ('teach', 1), ('minimal', 1), ('math', 1), ('theory', 1), ('behind', 1)]
[('data', 5), ('wrangling', 3), ('key', 1), ('task', 1), ('aspiring', 1), ('driven', 1), ('organization', 1), ('need', 1), ('learn', 1), ('process', 1), ('converting', 1), ('raw', 1), ('something', 1), ('truly', 1), ('useful', 1), ('practical', 1), ('guide', 1), ('provides', 1), ('business', 1), ('analyst', 1), ('overview', 1), ('various', 1), ('technique', 1), ('tool', 1), ('put', 1), ('practice', 1), ('context', 1), ('asking', 1)]
[('io', 3), ('swift', 2), ('xcode', 2), ('new', 2), ('day', 2), ('provide', 1), ('many', 1), ('apis', 1), ('developer', 1), ('cookbook', 1), ('learn', 1), ('proven', 1), ('solution', 1), ('tackling', 1), ('latest', 1), ('feature', 1), ('watchos', 1), ('including', 1), ('way', 1), ('use', 1), ('make', 1), ('app', 1), ('development', 1), ('life', 1), ('easier', 1), ('collection', 1), ('code', 1), ('rich', 1), ('recipe', 1), ('get', 1)]
[('speed', 3), ('high', 2), ('packet', 2), ('access', 2), ('hsdpa', 2), ('mobile', 2), ('downlink', 1), ('telephony', 1), ('communication', 1), ('protocol', 1), ('hspa', 1), ('family', 1), ('allows', 1), ('network', 1), ('based', 1), ('universal', 1), ('telecommunication', 1), ('system', 1), ('achieve', 1), ('higher', 1), ('data', 1), ('transfer', 1), ('capacity', 1), ('handbook', 1), ('provides', 1), ('technical', 1), ('information', 1), ('aspect', 1), ('hsupa', 1)]
[('security', 3), ('metric', 2), ('step', 2), ('light', 1), ('mathematics', 1), ('heavy', 1), ('utility', 1), ('ultimate', 1), ('guide', 1), ('packed', 1), ('time', 1), ('saving', 1), ('tip', 1), ('book', 1), ('offer', 1), ('easy', 1), ('follow', 1), ('guidance', 1), ('struggling', 1), ('clearly', 1), ('explains', 1), ('specify', 1), ('develop', 1), ('use', 1), ('maintain', 1), ('information', 1), ('measurement', 1), ('system', 1)]
[('reader', 2), ('demand', 2), ('book', 1), ('explains', 1), ('help', 1), ('live', 1), ('psycho', 1), ('techno', 1), ('phenomenon', 1), ('bring', 1), ('technology', 1), ('byot', 1), ('learn', 1), ('understand', 1), ('new', 1), ('endusers', 1), ('strategic', 1), ('tactical', 1), ('ramification', 1), ('next', 1), ('cover', 1), ('broad', 1), ('range', 1), ('technical', 1), ('consideration', 1), ('selection', 1)]
[('data', 3), ('big', 2), ('increasing', 1), ('barrage', 1), ('becomes', 1), ('vital', 1), ('organization', 1), ('make', 1), ('sense', 1), ('timely', 1), ('effective', 1), ('way', 1), ('improve', 1), ('decision', 1), ('making', 1), ('competitive', 1), ('advantage', 1), ('business', 1), ('analytics', 1), ('come', 1), ('play', 1), ('book', 1), ('explores', 1), ('case', 1), ('study', 1), ('industry', 1), ('leader', 1), ('domain', 1), ('cybersecurity', 1)]
[('enterprise', 2), ('book', 1), ('provides', 1), ('guidance', 1), ('designing', 1), ('complex', 1), ('highly', 1), ('available', 1), ('architecture', 1), ('integrate', 1), ('critical', 1), ('aspect', 1), ('organization', 1), ('business', 1), ('process', 1), ('considering', 1), ('lack', 1), ('tolerance', 1), ('operational', 1), ('interruption', 1), ('risk', 1), ('accompany', 1), ('theft', 1), ('loss', 1), ('data', 1), ('reference', 1), ('describes', 1), ('ensure', 1)]
[('language', 3), ('programming', 2), ('concept', 2), ('designed', 1), ('semester', 1), ('undergraduate', 1), ('course', 1), ('classroom', 1), ('tested', 1), ('book', 1), ('separate', 1), ('restraint', 1), ('multiple', 1), ('syntax', 1), ('discussing', 1), ('abstract', 1), ('level', 1), ('author', 1), ('explains', 1), ('principle', 1), ('design', 1), ('implementation', 1), ('cover', 1), ('classical', 1), ('newer', 1), ('topic', 1)]
[('written', 1), ('compelling', 1), ('conversational', 1), ('manner', 1), ('book', 1), ('offer', 1), ('qualitative', 1), ('quantitative', 1), ('method', 1), ('tool', 1), ('technique', 1), ('deploying', 1), ('supporting', 1), ('kind', 1), ('information', 1), ('technology', 1)]
[('provides', 2), ('comprehensive', 2), ('backup', 2), ('volume', 1), ('organization', 1), ('understanding', 1), ('principle', 1), ('feature', 1), ('involved', 1), ('effective', 1), ('enterprise', 1), ('rather', 1), ('focusing', 1), ('individual', 1), ('product', 1), ('book', 1), ('recommends', 1), ('corporate', 1), ('procedure', 1), ('policy', 1), ('need', 1), ('established', 1), ('data', 1), ('protection', 1), ('relevant', 1)]
[('model', 3), ('book', 1), ('provides', 1), ('engineer', 1), ('developer', 1), ('technician', 1), ('detailed', 1), ('treatment', 1), ('various', 1), ('software', 1), ('behavior', 1), ('support', 1), ('early', 1), ('analysis', 1), ('comprehension', 1), ('based', 1), ('testing', 1), ('expressive', 1), ('capability', 1), ('limitation', 1), ('behavioral', 1), ('discussed', 1)]
[('telecommunication', 2), ('internet', 2), ('ip', 2), ('future', 2), ('industry', 1), ('rapidly', 1), ('migrates', 1), ('infrastructure', 1), ('reliant', 1), ('protocol', 1), ('becoming', 1), ('quite', 1), ('clear', 1), ('providing', 1), ('necessary', 1), ('background', 1), ('training', 1), ('technical', 1), ('information', 1), ('needed', 1), ('stay', 1), ('abreast', 1), ('even', 1), ('ahead', 1), ('trend', 1), ('book', 1)]
[('memory', 3), ('design', 2), ('technology', 2), ('featuring', 1), ('contribution', 1), ('leading', 1), ('expert', 1), ('digital', 1), ('fabrication', 1), ('survey', 1), ('latest', 1), ('advance', 1), ('computer', 1), ('architecture', 1), ('used', 1), ('manufacture', 1), ('test', 1), ('book', 1), ('includes', 1), ('section', 1), ('storage', 1), ('chapter', 1), ('semiconductor', 1), ('circuit', 1), ('nonvolatile', 1)]
[('book', 1), ('synthesizes', 1), ('technique', 1), ('numerical', 1), ('analysis', 1), ('algorithm', 1), ('data', 1), ('structure', 1), ('optimization', 1), ('theory', 1), ('mostcommonly', 1), ('employed', 1), ('statistic', 1), ('machine', 1), ('learning', 1), ('provide', 1), ('concrete', 1), ('application', 1), ('method', 1), ('giving', 1), ('complete', 1), ('reference', 1), ('implementation', 1), ('large', 1), ('set', 1), ('commonly', 1), ('used', 1), ('statistical', 1), ('estimator', 1), ('goal', 1)]
[('pocket', 2), ('lawyer', 2), ('artist', 2), ('industry', 2), ('comic', 2), ('book', 2), ('focal', 1), ('press', 1), ('series', 1), ('serf', 1), ('legal', 1), ('toolkit', 1), ('independent', 1), ('producer', 1), ('creative', 1), ('creator', 1), ('designed', 1), ('help', 1), ('emerging', 1), ('veteran', 1), ('professional', 1), ('build', 1), ('solid', 1), ('foundation', 1), ('business', 1), ('communication', 1), ('practice', 1), ('need', 1)]
[('tool', 2), ('technology', 2), ('iot', 2), ('fast', 1), ('evolution', 1), ('spread', 1), ('powerful', 1), ('realization', 1), ('internet', 1), ('thing', 1), ('getting', 1), ('simplified', 1), ('accelerated', 1), ('player', 1), ('across', 1), ('world', 1), ('book', 1), ('provides', 1), ('substantial', 1), ('information', 1), ('insight', 1), ('reader', 1), ('role', 1), ('relevance', 1), ('infrastructure', 1), ('platform', 1)]
[('web', 2), ('site', 1), ('serving', 1), ('whole', 1), ('market', 1), ('including', 1), ('international', 1), ('customer', 1), ('designing', 1), ('language', 1), ('cultural', 1), ('difference', 1), ('mind', 1), ('longer', 1), ('option', 1), ('company', 1), ('afford', 1), ('book', 1), ('wonderful', 1), ('asset', 1), ('designer', 1), ('usabili', 1)]
[('explains', 2), ('knowledge', 2), ('book', 1), ('content', 1), ('purpose', 1), ('use', 1), ('eight', 1), ('standard', 1), ('area', 1), ('constitute', 1), ('emerging', 1), ('discipline', 1), ('cybersecurity', 1), ('capture', 1), ('body', 1), ('provide', 1), ('teacher', 1), ('student', 1), ('complete', 1), ('picture', 1), ('field', 1), ('suitable', 1), ('depth', 1), ('understanding', 1)]
[('counting', 2), ('practice', 2), ('ifpug', 2), ('written', 1), ('active', 1), ('member', 1), ('committee', 1), ('past', 1), ('president', 1), ('book', 1), ('provides', 1), ('complete', 1), ('review', 1), ('rule', 1), ('guideline', 1), ('prescribed', 1), ('version', 1), ('function', 1), ('point', 1), ('manual', 1), ('cpm', 1), ('supply', 1), ('fundamental', 1), ('understanding', 1), ('functional', 1), ('size', 1), ('measurement', 1), ('method', 1), ('includes', 1)]
[('patch', 2), ('curing', 1), ('management', 1), ('headache', 1), ('tie', 1), ('together', 1), ('aspect', 1), ('subject', 1), ('easy', 1), ('understand', 1), ('format', 1), ('applicable', 1), ('regardless', 1), ('operating', 1), ('system', 1), ('network', 1), ('device', 1), ('deployment', 1), ('tool', 1), ('volume', 1), ('provides', 1), ('cisos', 1), ('ciros', 1), ('director', 1), ('manager', 1), ('support', 1), ('guidance', 1), ('need', 1), ('integrate', 1), ('effective', 1)]
[('flexible', 2), ('software', 2), ('design', 2), ('development', 2), ('stable', 2), ('system', 1), ('changing', 1), ('requirement', 1), ('begin', 1), ('introducing', 1), ('fundamental', 1), ('concept', 1), ('flexibility', 1), ('explaining', 1), ('reality', 1), ('imperfect', 1), ('knowledge', 1), ('participant', 1), ('change', 1), ('thinking', 1), ('implement', 1), ('second', 1), ('part', 1), ('cover', 1), ('guideline', 1), ('identifier', 1)]
[('intelligence', 2), ('lawful', 2), ('intercept', 2), ('service', 2), ('support', 1), ('system', 1), ('technology', 1), ('address', 1), ('need', 1), ('provider', 1), ('law', 1), ('enforcement', 1), ('agency', 1), ('government', 1), ('product', 1), ('vendor', 1), ('volume', 1), ('offer', 1), ('solution', 1), ('many', 1), ('technological', 1), ('challenge', 1), ('explaining', 1), ('provide', 1), ('networking', 1), ('equipment', 1), ('probe', 1)]
[('security', 2), ('attack', 2), ('insider', 1), ('guide', 1), ('examines', 1), ('computer', 1), ('hacker', 1), ('perspective', 1), ('demonstrating', 1), ('system', 1), ('designed', 1), ('structured', 1), ('repel', 1), ('show', 1), ('conceptualized', 1), ('formulated', 1), ('performed', 1), ('vmware', 1), ('workstation', 1), ('software', 1), ('package', 1), ('available', 1), ('downloadable', 1), ('resource', 1), ('us', 1), ('virtua', 1)]
[('procedure', 3), ('standard', 3), ('policy', 2), ('information', 2), ('security', 2), ('show', 2), ('providing', 1), ('mechanic', 1), ('development', 1), ('guideline', 1), ('effective', 1), ('management', 1), ('reader', 1), ('look', 1), ('developing', 1), ('enterprise', 1), ('examines', 1), ('recommended', 1), ('industry', 1), ('customize', 1)]
[('communication', 3), ('book', 2), ('element', 2), ('project', 2), ('examines', 1), ('process', 1), ('describes', 1), ('role', 1), ('management', 1), ('information', 1), ('system', 1), ('pmis', 1), ('helping', 1), ('manager', 1), ('become', 1), ('better', 1), ('communicator', 1), ('addition', 1), ('describing', 1), ('personality', 1), ('effect', 1), ('detail', 1), ('seven', 1), ('effective', 1), ('applying', 1), ('active', 1)]
[('applied', 2), ('activity', 2), ('theory', 2), ('directed', 1), ('broad', 1), ('interdisciplinary', 1), ('audience', 1), ('book', 1), ('provides', 1), ('complete', 1), ('account', 1), ('accomplished', 1), ('systemic', 1), ('structural', 1), ('present', 1), ('new', 1), ('approach', 1), ('psychology', 1), ('study', 1), ('human', 1), ('work', 1), ('derived', 1), ('selected', 1), ('article', 1), ('demonstrate', 1), ('basic', 1), ('principle', 1)]
[('game', 3), ('book', 2), ('integrating', 1), ('hand', 1), ('guidance', 1), ('theoretical', 1), ('design', 1), ('concept', 1), ('give', 1), ('reader', 1), ('solid', 1), ('foundation', 1), ('development', 1), ('suitable', 1), ('beginner', 1), ('hobbyist', 1), ('aspiring', 1), ('indie', 1), ('developer', 1), ('show', 1), ('use', 1), ('sophisticated', 1), ('yet', 1), ('user', 1), ('friendly', 1), ('html', 1), ('based', 1), ('engine', 1), ('construct', 1), ('develop', 1), ('release', 1), ('polished', 1), ('dimensional', 1)]
[('design', 2), ('completely', 1), ('updated', 1), ('second', 1), ('edition', 1), ('explains', 1), ('use', 1), ('interconnectedness', 1), ('social', 1), ('network', 1), ('make', 1), ('stickier', 1), ('compelling', 1), ('game', 1), ('type', 1), ('device', 1), ('book', 1), ('many', 1), ('marketing', 1), ('technique', 1), ('strategy', 1), ('example', 1), ('reader', 1), ('acquire', 1), ('better', 1), ('understanding', 1), ('monetization', 1), ('mechanic', 1), ('mobile', 1)]
[('wireless', 3), ('network', 3), ('future', 2), ('exponential', 1), ('increase', 1), ('mobile', 1), ('device', 1), ('user', 1), ('high', 1), ('bandwidth', 1), ('application', 1), ('pushed', 1), ('current', 1), ('capacity', 1), ('handle', 1), ('spectacular', 1), ('growth', 1), ('development', 1), ('improved', 1), ('paramount', 1), ('importance', 1), ('book', 1), ('discus', 1), ('bringing', 1), ('together', 1)]
[('fringe', 2), ('digital', 2), ('liquid', 2), ('crystal', 2), ('book', 1), ('begin', 1), ('establishing', 1), ('theoretical', 1), ('foundation', 1), ('pattern', 1), ('analysis', 1), ('reviewing', 1), ('various', 1), ('imaging', 1), ('technique', 1), ('highlighting', 1), ('advantage', 1), ('projection', 1), ('author', 1), ('describes', 1), ('difference', 1), ('light', 1), ('processing', 1), ('display', 1), ('silicon', 1), ('explains', 1)]
[('project', 5), ('management', 3), ('manager', 2), ('agile', 2), ('book', 2), ('industry', 2), ('role', 1), ('differs', 1), ('significantly', 1), ('traditional', 1), ('minimal', 1), ('front', 1), ('planning', 1), ('help', 1), ('transition', 1), ('focus', 1), ('component', 1), ('agility', 1), ('concentrating', 1), ('standard', 1)]
[('mobile', 3), ('broadcasting', 3), ('overview', 2), ('part', 2), ('generation', 2), ('technology', 2), ('book', 1), ('provides', 1), ('past', 1), ('present', 1), ('future', 1), ('multimedia', 1), ('first', 1), ('supply', 1), ('new', 1), ('currently', 1), ('available', 1), ('second', 1), ('describes', 1), ('cutting', 1), ('edge', 1), ('broadcast', 1), ('known', 1), ('dvb', 1), ('ngh', 1), ('digital', 1), ('video', 1), ('next', 1)]
[('network', 3), ('next', 2), ('generation', 2), ('work', 2), ('providing', 1), ('comprehensive', 1), ('introduction', 1), ('book', 1), ('strike', 1), ('balance', 1), ('thing', 1), ('making', 1), ('examines', 1), ('internet', 1), ('architecture', 1), ('protocol', 1), ('management', 1), ('traffic', 1), ('engineering', 1), ('embedded', 1), ('system', 1), ('sensor', 1), ('web', 1), ('service', 1), ('cloud', 1), ('technology', 1), ('wireless', 1)]
[('linked', 3), ('data', 3), ('book', 2), ('present', 1), ('technique', 1), ('querying', 1), ('managing', 1), ('available', 1), ('today', 1), ('web', 1), ('show', 1), ('abundance', 1), ('serve', 1), ('fertile', 1), ('ground', 1), ('research', 1), ('commercial', 1), ('application', 1), ('cover', 1), ('query', 1), ('processing', 1), ('extensively', 1), ('abstraction', 1), ('furnishes', 1), ('mechanism', 1), ('collecting', 1)]
[('logic', 4), ('combinatory', 3), ('field', 2), ('versatile', 1), ('connected', 1), ('philosophical', 1), ('mathematical', 1), ('computational', 1), ('comprehensive', 1), ('reference', 1), ('cover', 1), ('result', 1), ('last', 1), ('four', 1), ('decade', 1), ('along', 1), ('classical', 1), ('information', 1), ('topic', 1), ('author', 1), ('make', 1), ('simple', 1), ('understand', 1), ('providing', 1), ('working', 1)]
[('material', 3), ('piezoelectric', 2), ('starting', 1), ('fundamental', 1), ('book', 1), ('provides', 1), ('concise', 1), ('yet', 1), ('complete', 1), ('treatment', 1), ('important', 1), ('class', 1), ('smart', 1), ('useful', 1), ('actuator', 1), ('sensor', 1), ('including', 1), ('case', 1), ('study', 1), ('text', 1), ('introduces', 1), ('different', 1), ('type', 1), ('dielectric', 1), ('describes', 1), ('preparation', 1), ('property', 1), ('various', 1)]
[('computer', 4), ('suitable', 1), ('semester', 1), ('undergraduate', 1), ('beginning', 1), ('graduate', 1), ('course', 1), ('science', 1), ('engineering', 1), ('organization', 1), ('design', 1), ('architecture', 1), ('fifth', 1), ('edition', 1), ('present', 1), ('operating', 1), ('principle', 1), ('capability', 1), ('limitation', 1), ('digital', 1), ('enable', 1), ('development', 1), ('complex', 1), ('yet', 1), ('efficient', 1), ('system', 1), ('percent', 1)]
[('dynamic', 2), ('development', 2), ('project', 2), ('manage', 2), ('help', 2), ('manager', 2), ('software', 1), ('managing', 1), ('flux', 1), ('defines', 1), ('principle', 1), ('practice', 1), ('skill', 1), ('technique', 1), ('needed', 1), ('environment', 1), ('book', 1), ('define', 1), ('goal', 1), ('actual', 1), ('situation', 1), ('plan', 1), ('progress', 1), ('developer', 1), ('monitor', 1), ('productivity', 1), ('determine', 1), ('strategic', 1)]
[('hci', 2), ('used', 2), ('examination', 1), ('interplay', 1), ('process', 1), ('action', 1), ('attention', 1), ('implication', 1), ('working', 1), ('book', 1), ('survey', 1), ('method', 1), ('study', 1), ('human', 1), ('information', 1), ('processing', 1), ('summarizes', 1), ('major', 1), ('finding', 1), ('theoretical', 1), ('explain', 1), ('compare', 1), ('term', 1), ('mental', 1), ('model', 1), ('literature', 1)]
[('mathematics', 2), ('book', 2), ('requiring', 1), ('prior', 1), ('knowledge', 1), ('advanced', 1), ('computer', 1), ('science', 1), ('self', 1), ('contained', 1), ('cover', 1), ('historical', 1), ('technical', 1), ('foundation', 1), ('ancient', 1), ('modern', 1), ('day', 1), ('computing', 1), ('start', 1), ('earliest', 1), ('reference', 1), ('counting', 1), ('human', 1), ('introduces', 1), ('various', 1), ('number', 1), ('system', 1), ('discus', 1), ('early', 1), ('civilization', 1), ('guide', 1)]
[('commerce', 3), ('protocol', 2), ('payment', 2), ('business', 2), ('comprehensive', 1), ('compendium', 1), ('securing', 1), ('online', 1), ('provides', 1), ('broad', 1), ('overview', 1), ('electronic', 1), ('money', 1), ('system', 1), ('followed', 1), ('examination', 1), ('known', 1), ('ssl', 1), ('tl', 1), ('wtls', 1), ('set', 1), ('book', 1), ('explores', 1), ('encryption', 1), ('algorithm', 1), ('method', 1), ('edi', 1)]
[('engineering', 2), ('security', 2), ('september', 1), ('th', 1), ('attack', 1), ('scientific', 1), ('community', 1), ('called', 1), ('upon', 1), ('help', 1), ('world', 1), ('respond', 1), ('challenge', 1), ('volume', 1), ('focus', 1), ('multidisciplinary', 1), ('problem', 1), ('analysis', 1), ('system', 1), ('approach', 1), ('present', 1), ('comprehensive', 1), ('survey', 1), ('state', 1), ('art', 1), ('method', 1), ('surveillance', 1)]
[('digital', 3), ('art', 3), ('artist', 2), ('book', 2), ('meet', 1), ('finest', 1), ('working', 1), ('industry', 1), ('today', 1), ('discover', 1), ('create', 1), ('innovative', 1), ('world', 1), ('gallery', 1), ('coffee', 1), ('table', 1), ('master', 1), ('volume', 1), ('includes', 1), ('unique', 1), ('stunning', 1), ('beyond', 1), ('breaktaking', 1), ('image', 1)]
[('maya', 2), ('done', 2), ('cheat', 1), ('focus', 1), ('art', 1), ('animation', 1), ('book', 1), ('present', 1), ('productivity', 1), ('tip', 1), ('tool', 1), ('animator', 1), ('thing', 1), ('efficient', 1), ('way', 1), ('possible', 1), ('obtain', 1), ('quality', 1), ('result', 1), ('minimum', 1), ('effort', 1)]
[('modeling', 3), ('technique', 2), ('automotive', 2), ('master', 1), ('top', 1), ('designer', 1), ('world', 1), ('class', 1), ('game', 1), ('developer', 1), ('insider', 1), ('guide', 1), ('designing', 1), ('vehicle', 1), ('demonstrated', 1), ('d', 1), ('max', 1), ('maya', 1), ('xsi', 1), ('photoshop', 1), ('start', 1), ('fantastic', 1), ('series', 1), ('hot', 1), ('concept', 1), ('design', 1), ('continues', 1), ('offering', 1), ('full', 1), ('hand', 1)]
[('mentor', 1), ('book', 1), ('author', 1), ('former', 1), ('disney', 1), ('animator', 1), ('tom', 1), ('bancroft', 1), ('show', 1), ('pose', 1), ('stage', 1), ('character', 1), ('create', 1), ('drama', 1), ('emotion', 1), ('personality', 1)]
[('content', 2), ('interactive', 2), ('step', 2), ('growing', 1), ('migration', 1), ('print', 1), ('ereaders', 1), ('mobile', 1), ('device', 1), ('clamoring', 1), ('know', 1), ('make', 1), ('happen', 1), ('indesign', 1), ('cc', 1), ('take', 1), ('process', 1), ('creating', 1), ('output', 1), ('epub', 1), ('digital', 1), ('magazine', 1), ('flash', 1), ('pdf', 1), ('exercise', 1), ('easy', 1), ('grasp', 1), ('instruction', 1)]
[('accuracy', 3), ('data', 2), ('provides', 2), ('new', 1), ('second', 1), ('edition', 1), ('demystifies', 1), ('concept', 1), ('spatial', 1), ('mathematical', 1), ('clarity', 1), ('issue', 1), ('network', 1), ('local', 1), ('ideal', 1), ('beginner', 1), ('advanced', 1), ('level', 1), ('book', 1), ('guidance', 1), ('insight', 1), ('link', 1), ('collected', 1), ('stored', 1), ('legacy', 1), ('system', 1)]
[('industrial', 3), ('handbook', 2), ('focus', 1), ('emerging', 1), ('application', 1), ('evolving', 1), ('trend', 1), ('driven', 1), ('need', 1), ('company', 1), ('industry', 1), ('led', 1), ('organization', 1), ('emphasizing', 1), ('fast', 1), ('growing', 1), ('area', 1), ('major', 1), ('impact', 1), ('automation', 1), ('enterprise', 1), ('integration', 1), ('cover', 1), ('topic', 1), ('communication', 1), ('technology', 1), ('sensor', 1)]
[('tutorial', 1), ('guide', 1), ('character', 1), ('modeling', 1), ('technique', 1), ('film', 1), ('game', 1), ('cg', 1), ('artist', 1)]
[('disney', 3), ('insight', 2), ('golden', 1), ('age', 1), ('studio', 1), ('come', 1), ('inspiration', 1), ('legend', 1), ('floyd', 1), ('norman', 1), ('animated', 1), ('life', 1), ('take', 1), ('tour', 1), ('lifetime', 1), ('technique', 1), ('practical', 1), ('hand', 1), ('advice', 1), ('entire', 1), ('industry', 1), ('collected', 1), ('first', 1), ('time', 1)]
[('character', 3), ('animation', 2), ('involves', 1), ('principle', 1), ('mechanic', 1), ('motion', 1), ('unique', 1), ('believeable', 1), ('think', 1), ('feel', 1), ('captivate', 1), ('audience', 1), ('one', 1), ('involve', 1), ('emotion', 1), ('performance', 1), ('personality', 1), ('acting', 1), ('story', 1), ('successful', 1), ('animator', 1), ('balance', 1), ('element', 1), ('within', 1), ('single', 1), ('narrative', 1)]
[('sound', 2), ('technique', 1), ('design', 1), ('animation', 1)]
[('sound', 3), ('game', 3), ('student', 2), ('practical', 1), ('straight', 1), ('forward', 1), ('introduction', 1), ('implementing', 1), ('book', 1), ('fill', 1), ('gap', 1), ('marketplace', 1), ('professional', 1), ('want', 1), ('design', 1), ('implement', 1), ('produce', 1), ('audio', 1), ('covered', 1), ('essential', 1), ('guide', 1), ('added', 1), ('video', 1), ('tutorial', 1), ('several', 1), ('hundred', 1), ('file', 1), ('plug', 1), ('right', 1)]
[('animated', 2), ('effect', 2), ('step', 2), ('design', 1), ('beautiful', 1), ('professional', 1), ('level', 1), ('detailed', 1), ('tutorial', 1), ('former', 1), ('disney', 1), ('animator', 1), ('expert', 1), ('joseph', 1), ('gilland', 1)]
[('experience', 2), ('development', 2), ('build', 1), ('html', 1), ('powered', 1), ('mobile', 1), ('web', 1), ('aid', 1), ('framework', 1), ('speed', 1), ('native', 1), ('app', 1)]
[('unity', 3), ('engine', 2), ('game', 2), ('step', 2), ('tool', 1), ('choice', 1), ('many', 1), ('indie', 1), ('aa', 1), ('developer', 1), ('fundamental', 1), ('give', 1), ('reader', 1), ('head', 1), ('start', 1), ('road', 1), ('development', 1), ('offering', 1), ('beginner', 1), ('comprehensive', 1), ('introduction', 1), ('latest', 1)]
[('game', 3), ('design', 2), ('development', 2), ('computer', 2), ('mobile', 2), ('art', 2), ('book', 1), ('examines', 1), ('device', 1), ('synergy', 1), ('programming', 1), ('style', 1), ('holistic', 1), ('unity', 1), ('text', 1), ('introduce', 1), ('reader', 1), ('creation', 1), ('series', 1), ('lesson', 1), ('presenting', 1), ('science', 1), ('education', 1), ('unison', 1)]
[('speed', 1), ('threadx', 1), ('real', 1), ('time', 1), ('operating', 1), ('system', 1), ('deployed', 1), ('million', 1), ('device', 1), ('worldwide', 1), ('including', 1), ('cell', 1), ('phone', 1), ('digitial', 1), ('camera', 1), ('laser', 1), ('printer', 1)]
[('large', 2), ('scale', 2), ('machine', 2), ('learning', 2), ('study', 2), ('earth', 2), ('science', 2), ('field', 2), ('prove', 1), ('highly', 1), ('beneficial', 1), ('broad', 1), ('multidisciplinary', 1), ('generates', 1), ('huge', 1), ('amount', 1), ('data', 1), ('book', 1), ('first', 1), ('tackle', 1), ('subject', 1), ('covering', 1), ('significant', 1), ('issue', 1), ('technique', 1), ('known', 1), ('authority', 1)]
[('protocol', 3), ('internet', 2), ('ip', 2), ('web', 2), ('server', 2), ('book', 1), ('comprehensive', 1), ('introduction', 1), ('infrastructure', 1), ('cover', 1), ('wired', 1), ('wireless', 1), ('network', 1), ('specifically', 1), ('tcp', 1), ('domain', 1), ('name', 1), ('system', 1), ('dns', 1), ('http', 1), ('cache', 1), ('various', 1), ('proxy', 1), ('establishing', 1), ('address', 1), ('cloud', 1), ('computing', 1)]
[('change', 2), ('interest', 2), ('computer', 2), ('researcher', 2), ('handbook', 1), ('address', 1), ('recent', 1), ('rapid', 1), ('field', 1), ('braincomputer', 1), ('interface', 1), ('bcis', 1), ('due', 1), ('bci', 1), ('grown', 1), ('enormously', 1), ('including', 1), ('science', 1), ('background', 1), ('computational', 1), ('intelligence', 1), ('human', 1), ('interaction', 1), ('entertainment', 1), ('technology', 1)]
[('risk', 5), ('management', 2), ('new', 1), ('edition', 1), ('concept', 1), ('guidance', 1), ('supply', 1), ('look', 1), ('light', 1), ('current', 1), ('information', 1), ('yet', 1), ('remains', 1), ('grounded', 1), ('history', 1), ('practice', 1), ('taking', 1), ('holistic', 1), ('approach', 1), ('examines', 1), ('blend', 1), ('environmental', 1), ('programmatic', 1), ('situational', 1), ('concern', 1), ('providing', 1), ('comprehensive', 1), ('coverage', 1), ('tool', 1)]
[('cryptology', 2), ('classical', 2), ('modern', 1), ('second', 1), ('edition', 1), ('proficiently', 1), ('introduces', 1), ('reader', 1), ('fascinating', 1), ('field', 1), ('book', 1), ('cover', 1), ('method', 1), ('including', 1), ('substitution', 1), ('transposition', 1), ('playfair', 1), ('adfgvx', 1), ('alberti', 1), ('vigene', 1), ('hill', 1), ('cipher', 1)]
[('intuition', 5), ('holistic', 2), ('book', 1), ('look', 1), ('question', 1), ('executive', 1), ('trust', 1), ('word', 1), ('typically', 1), ('prefer', 1), ('analysis', 1), ('analytics', 1), ('type', 1), ('big', 1), ('picture', 1), ('abstract', 1), ('affective', 1), ('inferential', 1), ('favorable', 1), ('looking', 1), ('different', 1), ('variable', 1)]
[('wan', 2), ('book', 1), ('posit', 1), ('software', 1), ('defined', 1), ('sd', 1), ('answer', 1), ('question', 1), ('change', 1), ('made', 1), ('networking', 1), ('sector', 1), ('innovation', 1), ('make', 1), ('play', 1), ('vital', 1), ('integrated', 1), ('part', 1), ('cloud', 1), ('ecosystem', 1), ('cost', 1), ('effective', 1), ('performance', 1), ('robust', 1), ('provisioning', 1), ('efficient', 1), ('operation', 1), ('intelligent', 1)]
[('graph', 3), ('theory', 3), ('edition', 2), ('course', 2), ('application', 1), ('third', 1), ('latest', 1), ('bestselling', 1), ('textbook', 1), ('undergraduate', 1), ('yet', 1), ('expansive', 1), ('enough', 1), ('used', 1), ('graduate', 1), ('take', 1), ('comprehensive', 1), ('accessible', 1), ('approach', 1), ('integrates', 1), ('classical', 1), ('development', 1), ('emerging', 1), ('method', 1), ('model', 1), ('practical', 1), ('need', 1)]
[('project', 2), ('time', 2), ('book', 1), ('provides', 1), ('invaluable', 1), ('guidance', 1), ('completing', 1), ('within', 1), ('budget', 1), ('meeting', 1), ('need', 1), ('customer', 1), ('present', 1), ('easy', 1), ('follow', 1), ('planning', 1), ('step', 1), ('covering', 1), ('responsibility', 1), ('work', 1), ('breakdown', 1), ('structure', 1), ('cost', 1), ('estimating', 1), ('scheduling', 1), ('resource', 1), ('allocation', 1), ('budgeting', 1), ('discus', 1), ('goal', 1), ('objective', 1)]
[('net', 3), ('xml', 2), ('book', 1), ('supply', 1), ('synopsis', 1), ('major', 1), ('computer', 1), ('programming', 1), ('language', 1), ('including', 1), ('html', 1), ('javascript', 1), ('cs', 1), ('vb', 1), ('asp', 1), ('php', 1), ('mysql', 1), ('xslt', 1), ('dtd', 1), ('schema', 1), ('sql', 1), ('ideal', 1), ('undergraduate', 1), ('student', 1), ('program', 1), ('textbook', 1), ('previous', 1), ('version', 1), ('used', 1), ('author', 1), ('class', 1)]
[('state', 4), ('machine', 4), ('software', 3), ('finite', 3), ('development', 2), ('modeling', 1), ('practical', 1), ('approach', 1), ('explains', 1), ('apply', 1), ('provides', 1), ('critical', 1), ('analysis', 1), ('using', 1), ('foundation', 1), ('executable', 1), ('specification', 1), ('reduce', 1), ('effort', 1), ('improve', 1), ('quality', 1), ('discus', 1), ('design', 1)]
[('graph', 3), ('drawing', 3), ('visualization', 2), ('edited', 1), ('pioneer', 1), ('contribution', 1), ('leader', 1), ('research', 1), ('community', 1), ('handbook', 1), ('show', 1), ('applied', 1), ('physical', 1), ('life', 1), ('social', 1), ('science', 1), ('cover', 1), ('topological', 1), ('geometric', 1), ('foundation', 1), ('algorithm', 1), ('software', 1), ('system', 1), ('application', 1), ('whether', 1)]
[('data', 3), ('warehouse', 3), ('business', 2), ('organization', 1), ('vital', 1), ('often', 1), ('ignored', 1), ('aspect', 1), ('growing', 1), ('enterprise', 1), ('work', 1), ('merges', 1), ('technological', 1), ('know', 1), ('managerial', 1), ('practice', 1), ('show', 1), ('manager', 1), ('professional', 1), ('better', 1), ('alignment', 1), ('plan', 1), ('strategy', 1), ('lead', 1), ('successful', 1), ('adoption', 1)]
[('animation', 2), ('book', 1), ('explains', 1), ('model', 1), ('mining', 1), ('system', 1), ('using', 1), ('gps', 1), ('proof', 1), ('wolverine', 1), ('software', 1), ('corporation', 1), ('employing', 1), ('unique', 1), ('approach', 1), ('encourages', 1), ('engagement', 1), ('start', 1), ('text', 1), ('discus', 1), ('first', 1), ('slowly', 1), ('introduces', 1), ('simulation', 1), ('language', 1), ('new', 1), ('topic', 1), ('covered', 1), ('provided', 1), ('illustrate', 1), ('key', 1), ('concept', 1)]
[('management', 5), ('program', 4), ('date', 1), ('third', 1), ('edition', 1), ('pmi', 1), ('standard', 1), ('pgmp', 1), ('exam', 1), ('challenge', 1), ('contains', 1), ('practice', 1), ('question', 1), ('help', 1), ('reader', 1), ('hone', 1), ('knowledge', 1), ('test', 1), ('skill', 1), ('cover', 1), ('five', 1), ('domain', 1), ('strategic', 1), ('life', 1), ('cycle', 1), ('benefit', 1), ('stakeholder', 1)]
[('mining', 4), ('data', 3), ('contrast', 2), ('work', 1), ('collect', 1), ('recent', 1), ('result', 1), ('specialized', 1), ('area', 1), ('previously', 1), ('scattered', 1), ('literature', 1), ('making', 1), ('accessible', 1), ('researcher', 1), ('developer', 1), ('field', 1), ('book', 1), ('present', 1), ('concept', 1), ('technique', 1), ('explores', 1), ('use', 1)]
[('security', 3), ('build', 2), ('effective', 2), ('program', 2), ('regulation', 2), ('practitioner', 1), ('able', 1), ('cost', 1), ('time', 1), ('meet', 1), ('requirement', 1), ('government', 1), ('book', 1), ('lay', 1), ('simple', 1), ('term', 1), ('explains', 1), ('use', 1), ('control', 1), ('framework', 1), ('information', 1), ('governance', 1), ('structure', 1)]
[('mcc', 6), ('first', 1), ('book', 1), ('cover', 1), ('technological', 1), ('architectural', 1), ('advance', 1), ('author', 1), ('address', 1), ('security', 1), ('privacy', 1), ('concern', 1), ('business', 1), ('aspect', 1), ('model', 1), ('resource', 1), ('allocation', 1), ('management', 1), ('scheme', 1), ('introduces', 1), ('sensor', 1), ('vehicular', 1), ('femtocell', 1), ('based', 1), ('show', 1), ('used', 1), ('health', 1), ('monitoring', 1)]
[('software', 3), ('issue', 2), ('engineering', 2), ('book', 2), ('engineer', 1), ('increasingly', 1), ('becoming', 1), ('business', 1), ('professional', 1), ('rd', 1), ('edition', 1), ('give', 1), ('comprehensive', 1), ('coverage', 1), ('know', 1), ('look', 1), ('program', 1), ('related', 1), ('rather', 1), ('context', 1), ('used', 1), ('cover', 1), ('major', 1), ('development', 1)]
[('help', 2), ('create', 2), ('standard', 2), ('building', 2), ('block', 2), ('unit', 2), ('develop', 1), ('working', 1), ('understanding', 1), ('common', 1), ('design', 1), ('pattern', 1), ('program', 1), ('structure', 1), ('rtoss', 1), ('title', 1), ('learn', 1), ('decompose', 1), ('application', 1), ('combine', 1), ('object', 1), ('service', 1)]
[('project', 4), ('book', 2), ('managing', 2), ('manager', 2), ('grounded', 1), ('practicality', 1), ('explains', 1), ('procedure', 1), ('running', 1), ('successful', 1), ('highlight', 1), ('finer', 1), ('point', 1), ('controlling', 1), ('written', 1), ('specifically', 1), ('responsible', 1), ('hand', 1), ('useful', 1), ('overal', 1), ('program', 1), ('senior', 1), ('executive', 1)]
[('system', 4), ('architecture', 2), ('offering', 1), ('practical', 1), ('way', 1), ('generate', 1), ('effective', 1), ('efficient', 1), ('project', 1), ('specific', 1), ('engineering', 1), ('method', 1), ('volume', 1), ('address', 1), ('entire', 1), ('range', 1), ('including', 1), ('hardware', 1), ('software', 1), ('subsystem', 1), ('defines', 1), ('set', 1), ('architectural', 1), ('role', 1), ('team', 1), ('provides', 1), ('repository', 1), ('reusable', 1)]
[('model', 3), ('database', 3), ('pattern', 2), ('system', 2), ('data', 2), ('helping', 1), ('reader', 1), ('avoid', 1), ('common', 1), ('mistake', 1), ('build', 1), ('better', 1), ('first', 1), ('book', 1), ('apply', 1), ('popular', 1), ('perspective', 1), ('used', 1), ('design', 1), ('state', 1), ('art', 1), ('efficient', 1), ('best', 1), ('selling', 1), ('author', 1), ('expert', 1), ('dr', 1), ('michael', 1), ('blaha', 1), ('provides', 1), ('detailed', 1)]
[('process', 3), ('software', 2), ('improvement', 2), ('work', 2), ('using', 1), ('actual', 1), ('example', 1), ('private', 1), ('sector', 1), ('government', 1), ('demonstrates', 1), ('quality', 1), ('system', 1), ('measurement', 1), ('technique', 1), ('performance', 1), ('evaluation', 1), ('present', 1), ('methodology', 1), ('analyzing', 1), ('ongoing', 1), ('development', 1), ('establishing', 1), ('rational', 1), ('plan', 1)]
[('model', 3), ('application', 2), ('handbook', 1), ('timely', 1), ('publication', 1), ('presenting', 1), ('broad', 1), ('overview', 1), ('method', 1), ('important', 1), ('field', 1), ('research', 1), ('cover', 1), ('wide', 1), ('array', 1), ('topic', 1), ('including', 1), ('em', 1), ('algorithm', 1), ('bayesian', 1), ('mixture', 1), ('based', 1), ('clustering', 1), ('high', 1), ('dimensional', 1), ('data', 1), ('hidden', 1), ('markov', 1), ('finance', 1), ('genomics', 1), ('astronomy', 1)]
[('maya', 1), ('personal', 1), ('learning', 1), ('edition', 1), ('million', 1), ('registered', 1), ('user', 1), ('rigging', 1), ('fundamental', 1), ('skill', 1)]
[('automated', 3), ('scoring', 3), ('development', 2), ('overview', 1), ('innovative', 1), ('theory', 1), ('latest', 1), ('computational', 1), ('methodology', 1), ('real', 1), ('world', 1), ('large', 1), ('scale', 1), ('application', 1), ('complex', 1), ('task', 1), ('provides', 1), ('scientifically', 1), ('grounded', 1), ('description', 1), ('key', 1), ('research', 1), ('effort', 1), ('take', 1), ('move', 1), ('system', 1), ('operational', 1), ('practice', 1)]
[('corona', 3), ('sdk', 2), ('tool', 2), ('create', 2), ('game', 2), ('mobile', 2), ('powerful', 1), ('used', 1), ('apps', 1), ('device', 1), ('market', 1), ('requires', 1), ('speed', 1), ('new', 1), ('developer', 1), ('need', 1), ('operate', 1), ('quickly', 1), ('efficiently', 1), ('give', 1), ('needed', 1), ('master', 1), ('even', 1), ('within', 1), ('framework', 1), ('professional', 1), ('constraint', 1), ('guide', 1)]
[('face', 2), ('modeling', 2), ('model', 2), ('present', 1), ('practical', 1), ('hand', 1), ('technique', 1), ('sculpting', 1), ('tool', 1), ('maya', 1), ('zbrush', 1), ('production', 1), ('pipeline', 1), ('uniquely', 1), ('focused', 1), ('facial', 1), ('ethnicity', 1), ('featuring', 1), ('different', 1), ('ranging', 1), ('age', 1), ('newborn', 1), ('elderly', 1), ('character', 1), ('resource', 1), ('academic', 1), ('professional', 1), ('alike', 1), ('explore', 1)]
[('story', 2), ('structure', 2), ('professor', 1), ('craig', 1), ('caldwell', 1), ('development', 1), ('offer', 1), ('clear', 1), ('approach', 1), ('essential', 1), ('lay', 1), ('fundamental', 1), ('element', 1), ('principle', 1), ('animator', 1), ('designer', 1), ('artist', 1), ('incorporate', 1), ('concept', 1), ('work', 1), ('practical', 1), ('guide', 1), ('includes', 1), ('extensive', 1), ('insight', 1), ('advice', 1), ('industry', 1)]
[('algorithm', 5), ('among', 2), ('intelligence', 2), ('called', 2), ('nature', 1), ('based', 1), ('play', 1), ('important', 1), ('role', 1), ('artificial', 1), ('global', 1), ('optimization', 1), ('swarm', 1), ('use', 1), ('behavior', 1), ('simple', 1), ('agent', 1), ('various', 1), ('way', 1), ('cooperation', 1), ('used', 1), ('solve', 1), ('specific', 1), ('problem', 1), ('defined', 1)]
[('biological', 2), ('book', 1), ('discus', 1), ('innumerable', 1), ('way', 1), ('computational', 1), ('method', 1), ('used', 1), ('facilitate', 1), ('research', 1), ('biology', 1), ('medicine', 1), ('storing', 1), ('enormous', 1), ('amount', 1), ('data', 1), ('solving', 1), ('complex', 1), ('problem', 1), ('enhancing', 1), ('treatment', 1), ('various', 1), ('grave', 1), ('disease', 1)]
[('power', 2), ('system', 2), ('targeting', 1), ('latest', 1), ('microprocessor', 1), ('technology', 1), ('sophisticated', 1), ('application', 1), ('field', 1), ('short', 1), ('circuit', 1), ('detection', 1), ('revised', 1), ('updated', 1), ('source', 1), ('imparts', 1), ('fundamental', 1), ('concept', 1), ('breakthrough', 1), ('science', 1), ('isolation', 1), ('faulty', 1), ('equipment', 1), ('minimization', 1), ('damage', 1), ('apparatus', 1), ('second', 1), ('edition', 1), ('clearly', 1), ('descri', 1)]
[('introduction', 2), ('programming', 2), ('python', 2), ('second', 2), ('edition', 2), ('experience', 2), ('concise', 1), ('provides', 1), ('hand', 1), ('accessible', 1), ('writing', 1), ('software', 1), ('prior', 1), ('required', 1), ('thoroughly', 1), ('reorganized', 1), ('rewritten', 1), ('based', 1), ('classroom', 1), ('incorporate', 1), ('spiral', 1), ('approach', 1), ('starting', 1), ('turtle', 1)]
[('game', 4), ('design', 4), ('clockwork', 2), ('finding', 1), ('focusing', 1), ('core', 1), ('mechanism', 1), ('pursuit', 1), ('elegance', 1), ('strategy', 1), ('functional', 1), ('directly', 1), ('applicable', 1), ('theory', 1), ('detail', 1), ('pattern', 1), ('focus', 1), ('building', 1), ('around', 1), ('fundamental', 1), ('functionality', 1), ('use', 1)]
[('technology', 2), ('wimax', 2), ('feature', 2), ('examining', 1), ('global', 1), ('development', 1), ('deployment', 1), ('activity', 1), ('wireless', 1), ('revolution', 1), ('present', 1), ('unique', 1), ('evaluates', 1), ('revolutionary', 1), ('approach', 1), ('book', 1), ('cover', 1), ('mission', 1), ('product', 1), ('service', 1), ('specific', 1), ('security', 1), ('mobility', 1), ('discus', 1), ('implementation', 1)]
[('packet', 3), ('internet', 2), ('high', 2), ('forwarding', 2), ('technology', 2), ('traffic', 1), ('continues', 1), ('grow', 1), ('exponentially', 1), ('need', 1), ('build', 1), ('protocol', 1), ('ip', 1), ('router', 1), ('speed', 1), ('capacity', 1), ('networking', 1), ('capability', 1), ('first', 1), ('book', 1), ('explore', 1), ('subject', 1), ('explains', 1), ('depth', 1), ('concept', 1), ('implementation', 1), ('cover', 1)]
[('increasing', 2), ('number', 2), ('optical', 2), ('wireless', 2), ('last', 1), ('three', 1), ('decade', 1), ('interest', 1), ('infrared', 1), ('ir', 1), ('technology', 1), ('medium', 1), ('convey', 1), ('information', 1), ('grown', 1), ('considerably', 1), ('reflected', 1), ('device', 1), ('laptop', 1), ('pda', 1), ('mobile', 1), ('phone', 1), ('incorporate', 1), ('transceivers', 1), ('link', 1), ('available', 1), ('indoor', 1)]
[('wireless', 3), ('high', 3), ('metropolitan', 2), ('area', 2), ('network', 2), ('broadband', 2), ('wirelessman', 1), ('promising', 1), ('access', 1), ('bwa', 1), ('technology', 1), ('provides', 1), ('speed', 1), ('bandwidth', 1), ('efficiency', 1), ('capacity', 1), ('multimedia', 1), ('service', 1), ('residential', 1), ('enterprise', 1), ('application', 1), ('mobile', 1), ('wimax', 1), ('toward', 1), ('examines', 1), ('basic', 1), ('concept', 1), ('rec', 1)]
[('rmf', 2), ('risk', 2), ('book', 1), ('provides', 1), ('complete', 1), ('strategic', 1), ('understanding', 1), ('requisite', 1), ('allow', 1), ('person', 1), ('create', 1), ('use', 1), ('process', 1), ('recommendation', 1), ('management', 1), ('case', 1), ('application', 1), ('corporate', 1), ('training', 1), ('situation', 1), ('individual', 1), ('want', 1), ('obtain', 1), ('specialized', 1), ('knowledge', 1), ('organizational', 1)]
[('iot', 2), ('release', 2), ('book', 1), ('explains', 1), ('gpp', 1), ('technical', 1), ('specification', 1), ('upcoming', 1), ('internet', 1), ('thing', 1), ('technology', 1), ('based', 1), ('latest', 1), ('detail', 1), ('lte', 1), ('protocol', 1), ('stack', 1), ('device', 1), ('architecture', 1), ('framework', 1), ('functioning', 1), ('communicate', 1), ('cellular', 1), ('infrastructure', 1), ('supported', 1), ('feature', 1), ('capability', 1)]
[('digital', 3), ('forensics', 2), ('area', 2), ('recently', 1), ('gained', 1), ('notable', 1), ('development', 1), ('become', 1), ('demanding', 1), ('today', 1), ('information', 1), ('security', 1), ('requirement', 1), ('book', 1), ('investigates', 1), ('investigation', 1), ('data', 1), ('analysis', 1), ('procedure', 1), ('apply', 1), ('computer', 1), ('fraud', 1), ('cybercrime', 1), ('main', 1), ('objective', 1), ('describing', 1), ('variety', 1)]
[('data', 4), ('protection', 4), ('dpo', 2), ('organization', 2), ('regime', 2), ('eu', 1), ('general', 1), ('regulation', 1), ('created', 1), ('position', 1), ('corporate', 1), ('officer', 1), ('empowered', 1), ('ensure', 1), ('compliant', 1), ('aspect', 1), ('new', 1), ('appoint', 1), ('designate', 1), ('specific', 1), ('definition', 1), ('building', 1), ('block', 1)]
[('btec', 3), ('national', 3), ('system', 3), ('unit', 2), ('pathway', 2), ('specification', 2), ('practitioner', 1), ('written', 1), ('specifically', 1), ('cover', 1), ('book', 1), ('caters', 1), ('popular', 1), ('bringing', 1), ('together', 1), ('key', 1), ('specialist', 1), ('student', 1), ('chosen', 1), ('route', 1), ('including', 1)]
[('power', 2), ('utility', 2), ('infrastructure', 2), ('understanding', 1), ('broadband', 1), ('line', 1), ('explores', 1), ('aspect', 1), ('emerging', 1), ('technology', 1), ('enables', 1), ('electric', 1), ('provide', 1), ('support', 1), ('high', 1), ('speed', 1), ('data', 1), ('communication', 1), ('via', 1), ('book', 1), ('examines', 1), ('method', 1), ('used', 1), ('connect', 1), ('consumer', 1), ('business', 1), ('internet', 1), ('existing', 1), ('ele', 1)]
[('graphic', 4), ('focus', 2), ('new', 2), ('section', 2), ('third', 1), ('edition', 1), ('paul', 1), ('murrell', 1), ('classic', 1), ('book', 1), ('using', 1), ('represents', 1), ('major', 1), ('update', 1), ('complete', 1), ('overhaul', 1), ('scope', 1), ('primarily', 1), ('core', 1), ('package', 1), ('grid', 1), ('integrating', 1), ('includes', 1), ('three', 1), ('chapter', 1), ('importing', 1), ('external', 1), ('image', 1)]
[('theory', 2), ('application', 2), ('computer', 2), ('science', 2), ('mathematics', 2), ('interest', 1), ('finite', 1), ('automaton', 1), ('continues', 1), ('grow', 1), ('recent', 1), ('particularly', 1), ('group', 1), ('symbolic', 1), ('dynamic', 1), ('subject', 1), ('lie', 1), ('boundary', 1), ('balanced', 1), ('approach', 1), ('justice', 1)]
[('analog', 3), ('domain', 2), ('design', 2), ('explosive', 1), ('growth', 1), ('development', 1), ('integrated', 1), ('circuit', 1), ('market', 1), ('last', 1), ('year', 1), ('mostly', 1), ('limited', 1), ('digital', 1), ('vlsi', 1), ('difficulty', 1), ('automating', 1), ('process', 1), ('fact', 1), ('general', 1), ('methodology', 1), ('remained', 1), ('undefined', 1), ('poor', 1), ('performance', 1), ('earlier', 1), ('tool', 1), ('left', 1)]
[('algorithm', 3), ('em', 2), ('statistical', 2), ('model', 2), ('incomplete', 2), ('exploring', 1), ('application', 1), ('formulation', 1), ('related', 1), ('offer', 1), ('valuable', 1), ('method', 1), ('constructing', 1), ('information', 1), ('available', 1), ('proposes', 1), ('specific', 1), ('estimation', 1), ('solution', 1), ('data', 1), ('problem', 1), ('text', 1), ('cover', 1), ('current', 1), ('topic', 1), ('including', 1)]
[('first', 1), ('published', 1), ('information', 1), ('technology', 1), ('prowerful', 1), ('force', 1), ('organisational', 1), ('change', 1), ('implementation', 1), ('cause', 1), ('major', 1), ('difficulty', 1), ('often', 1), ('obstructed', 1), ('know', 1), ('cope', 1), ('written', 1), ('year', 1), ('practical', 1), ('experience', 1), ('book', 1), ('designed', 1), ('help', 1), ('manager', 1), ('user', 1), ('technical', 1), ('specialist', 1), ('appreciate', 1)]
[('image', 5), ('algebra', 2), ('comprehensive', 1), ('unifying', 1), ('theory', 1), ('transformation', 1), ('analysis', 1), ('understanding', 1), ('bestselling', 1), ('first', 1), ('edition', 1), ('handbook', 1), ('computer', 1), ('vision', 1), ('algorithm', 1), ('introduced', 1), ('engineer', 1), ('scientist', 1), ('student', 1), ('powerful', 1), ('tool', 1), ('basic', 1), ('concept', 1), ('use', 1), ('concise', 1), ('representation', 1)]
[('data', 4), ('information', 2), ('tool', 2), ('efficient', 1), ('access', 1), ('sharing', 1), ('extracting', 1), ('making', 1), ('use', 1), ('become', 1), ('urgent', 1), ('need', 1), ('today', 1), ('corporation', 1), ('web', 1), ('managing', 1), ('conventional', 1), ('becoming', 1), ('almost', 1), ('impossible', 1), ('new', 1), ('technique', 1), ('necessary', 1), ('provide', 1), ('interoperability', 1), ('warehousing', 1), ('betw', 1)]
[('ancient', 2), ('rosetta', 1), ('stone', 1), ('public', 1), ('key', 1), ('cryptography', 1), ('art', 1), ('science', 1), ('cryptology', 1), ('used', 1), ('unlock', 1), ('vivid', 1), ('history', 1), ('culture', 1), ('turn', 1), ('tide', 1), ('warfare', 1), ('thwart', 1), ('potential', 1), ('hacker', 1), ('attacking', 1), ('computer', 1), ('system', 1), ('code', 1), ('guide', 1), ('secrecy', 1), ('modern', 1), ('time', 1), ('explores', 1), ('depth', 1), ('breadth', 1), ('field', 1), ('remain', 1)]
[('software', 2), ('program', 1), ('complex', 1), ('book', 1), ('explain', 1), ('thoroughly', 1), ('illustrated', 1), ('full', 1), ('color', 1), ('guide', 1), ('explains', 1), ('everything', 1), ('need', 1), ('know', 1), ('running', 1), ('quickly', 1), ('combustion', 1), ('jump', 1), ('start', 1), ('learning', 1), ('major', 1), ('feature', 1), ('without', 1), ('bogging', 1), ('unnecessary', 1), ('detail', 1), ('author', 1), ('share', 1)]
[('performance', 3), ('bluetooth', 2), ('network', 2), ('developer', 1), ('researcher', 1), ('interested', 1), ('design', 1), ('operation', 1), ('lacked', 1), ('guidance', 1), ('potential', 1), ('answer', 1), ('relative', 1), ('advantage', 1), ('disadvantage', 1), ('solution', 1), ('modeling', 1), ('analysis', 1), ('polling', 1), ('scheduling', 1), ('traffic', 1), ('control', 1), ('summarizes', 1)]
[('machine', 2), ('learning', 2), ('increasingly', 1), ('crime', 1), ('fraud', 1), ('digital', 1), ('nature', 1), ('occurring', 1), ('breakneck', 1), ('speed', 1), ('encompassing', 1), ('large', 1), ('volume', 1), ('data', 1), ('combat', 1), ('unlawful', 1), ('activity', 1), ('knowledge', 1), ('use', 1), ('technology', 1), ('software', 1), ('critical', 1), ('forensics', 1), ('law', 1), ('enforcement', 1), ('security', 1), ('intelligence', 1), ('integrates', 1), ('assortment', 1), ('deductive', 1)]
[('system', 2), ('optimization', 2), ('digital', 2), ('communication', 2), ('fine', 1), ('tuning', 1), ('parameter', 1), ('critical', 1), ('developer', 1), ('success', 1), ('performance', 1), ('examines', 1), ('particular', 1), ('problem', 1), ('presenting', 1), ('analytical', 1), ('technique', 1), ('combination', 1), ('systemview', 1), ('matlab', 1), ('simulation', 1), ('consisting', 1), ('ten', 1), ('chapter', 1), ('monograph', 1), ('presen', 1)]
[('rsa', 2), ('public', 2), ('key', 2), ('cryptography', 2), ('although', 1), ('literature', 1), ('exists', 1), ('subject', 1), ('single', 1), ('source', 1), ('reveals', 1), ('recent', 1), ('development', 1), ('area', 1), ('accessible', 1), ('level', 1), ('acclaimed', 1), ('author', 1), ('richard', 1), ('mollin', 1), ('brings', 1), ('together', 1), ('relevant', 1), ('information', 1), ('available', 1), ('pkc', 1), ('latest', 1), ('applic', 1)]
[('speculative', 3), ('execution', 3), ('high', 2), ('performance', 2), ('computer', 2), ('architecture', 2), ('textbook', 1), ('focused', 1), ('dynamic', 1), ('subject', 1), ('topic', 1), ('crucial', 1), ('development', 1), ('describes', 1), ('many', 1), ('recent', 1), ('advance', 1), ('technique', 1), ('cover', 1), ('cutting', 1), ('edge', 1), ('research', 1)]
[('mobile', 2), ('service', 2), ('operator', 1), ('introducing', 1), ('television', 1), ('digital', 1), ('video', 1), ('content', 1), ('globally', 1), ('handbook', 1), ('broadcasting', 1), ('address', 1), ('aspect', 1), ('providing', 1), ('comprehensive', 1), ('reference', 1), ('dvb', 1), ('dmb', 1), ('isdb', 1), ('mediaflo', 1), ('featuring', 1), ('contribution', 1), ('expert', 1), ('field', 1), ('text', 1), ('present', 1), ('technical', 1), ('standard', 1), ('distribution', 1), ('proto', 1)]
[('learning', 3), ('d', 2), ('max', 2), ('step', 2), ('autodesk', 1), ('foundation', 1), ('shortcut', 1), ('quickly', 1), ('effectively', 1), ('hand', 1), ('experience', 1), ('key', 1), ('tool', 1), ('technique', 1), ('easy', 1), ('follow', 1), ('project', 1), ('based', 1), ('lesson', 1), ('model', 1), ('animate', 1), ('apply', 1), ('material', 1), ('render', 1), ('game', 1), ('design', 1), ('visualization', 1), ('pipeline', 1)]
[('wimax', 2), ('broadband', 2), ('bringing', 1), ('worldwide', 1), ('revolution', 1), ('wireless', 1), ('access', 1), ('including', 1), ('fixed', 1), ('mobile', 1), ('handset', 1), ('iee', 1), ('working', 1), ('group', 1), ('standardized', 1), ('aspect', 1), ('signaling', 1), ('message', 1), ('several', 1), ('algorithm', 1), ('left', 1), ('unspecified', 1), ('opening', 1), ('door', 1), ('innovation', 1), ('protocol', 1), ('engineering', 1), ('based', 1), ('wirel', 1)]
[('character', 3), ('drawing', 2), ('design', 1), ('creative', 1), ('inspired', 1), ('real', 1), ('mike', 1), ('mattesi', 1), ('show', 1), ('use', 1), ('life', 1), ('discover', 1), ('pose', 1), ('feature', 1), ('personality', 1), ('form', 1), ('basis', 1), ('build', 1), ('develop', 1), ('push', 1), ('new', 1), ('height', 1), ('dramatic', 1), ('visual', 1), ('impact', 1), ('believable', 1), ('audience', 1), ('relate', 1), ('packed', 1)]
[('threat', 2), ('security', 2), ('application', 1), ('continue', 1), ('evolve', 1), ('quickly', 1), ('system', 1), ('protect', 1), ('cyber', 1), ('many', 1), ('instance', 1), ('traditional', 1), ('firewall', 1), ('conventional', 1), ('control', 1), ('longer', 1), ('job', 1), ('done', 1), ('latest', 1), ('line', 1), ('defense', 1), ('build', 1), ('feature', 1), ('software', 1), ('developed', 1), ('drawing', 1), ('author', 1)]
[('nature', 2), ('clearly', 1), ('effective', 1), ('creating', 1), ('organism', 1), ('capable', 1), ('protecting', 1), ('wide', 1), ('variety', 1), ('pathogen', 1), ('bacteria', 1), ('fungi', 1), ('parasite', 1), ('powerful', 1), ('information', 1), ('processing', 1), ('capability', 1), ('immune', 1), ('system', 1), ('feature', 1), ('extraction', 1), ('pattern', 1), ('recognition', 1), ('learning', 1), ('memory', 1), ('distributive', 1), ('prov', 1)]
[('linear', 3), ('approximation', 3), ('algorithm', 2), ('illustrating', 1), ('relevance', 1), ('variety', 1), ('field', 1), ('numerical', 1), ('present', 1), ('unique', 1), ('collection', 1), ('used', 1), ('analyze', 1), ('model', 1), ('compress', 1), ('discrete', 1), ('data', 1), ('developed', 1), ('lead', 1), ('author', 1), ('successfully', 1), ('applied', 1), ('several', 1), ('engineering', 1), ('proje', 1)]
[('francis', 2), ('story', 2), ('gleba', 1), ('top', 1), ('disney', 1), ('storyboard', 1), ('artist', 1), ('show', 1), ('reach', 1), ('ultimate', 1), ('goal', 1), ('animation', 1), ('moviemaking', 1), ('showing', 1), ('provide', 1), ('audience', 1), ('emotionally', 1), ('satisfying', 1), ('experience', 1), ('directing', 1), ('offer', 1), ('structural', 1), ('approach', 1), ('clearly', 1), ('dramatically', 1), ('presenting', 1), ('visual', 1), ('help', 1), ('discover', 1)]
[('network', 3), ('ims', 2), ('agnostic', 2), ('focusing', 1), ('future', 1), ('architecture', 1), ('main', 1), ('principle', 1), ('converging', 1), ('ngn', 1), ('wireline', 1), ('mobile', 1), ('provides', 1), ('comprehensive', 1), ('view', 1), ('method', 1), ('function', 1), ('element', 1), ('interface', 1), ('among', 1), ('enable', 1), ('building', 1), ('service', 1), ('access', 1), ('session', 1), ('control', 1), ('layer', 1), ('based', 1), ('standar', 1)]
[('game', 2), ('videogames', 2), ('vintage', 1), ('explores', 1), ('influential', 1), ('time', 1), ('including', 1), ('super', 1), ('mario', 1), ('bros', 1), ('grand', 1), ('theft', 1), ('auto', 1), ('ii', 1), ('doom', 1), ('sims', 1), ('many', 1), ('drawing', 1), ('interview', 1), ('author', 1), ('lifelong', 1), ('experience', 1), ('book', 1), ('discus', 1), ('development', 1), ('predecessor', 1), ('critical', 1), ('reception', 1), ('influence', 1), ('industry', 1)]
[('layer', 3), ('single', 1), ('solution', 1), ('applied', 1), ('particular', 1), ('help', 1), ('application', 1), ('solve', 1), ('performance', 1), ('related', 1), ('issue', 1), ('communication', 1), ('service', 1), ('instead', 1), ('book', 1), ('show', 1), ('coordinated', 1), ('effort', 1), ('needed', 1), ('among', 1), ('cover', 1), ('many', 1), ('different', 1), ('type', 1), ('technology', 1), ('across', 1), ('stack', 1), ('architectural', 1), ('feature', 1), ('hardware', 1)]
[('ui', 2), ('element', 2), ('object', 2), ('write', 1), ('maxscript', 1), ('function', 1), ('utility', 1), ('create', 1), ('custom', 1), ('tool', 1), ('automate', 1), ('repetitive', 1), ('task', 1), ('demonstrated', 1), ('technique', 1), ('include', 1), ('creation', 1), ('array', 1), ('collection', 1), ('control', 1), ('structure', 1), ('parametric', 1), ('construction', 1), ('downloadable', 1), ('resource', 1), ('contain', 1), ('medium', 1), ('file', 1), ('allow', 1)]
[('digital', 2), ('signal', 2), ('available', 1), ('three', 1), ('volume', 1), ('set', 1), ('updated', 1), ('expanded', 1), ('edition', 1), ('bestselling', 1), ('processing', 1), ('handbook', 1), ('continues', 1), ('provide', 1), ('engineering', 1), ('community', 1), ('authoritative', 1), ('coverage', 1), ('fundamental', 1), ('specialized', 1), ('aspect', 1), ('information', 1), ('bearing', 1), ('form', 1), ('encompassing', 1), ('essential', 1), ('background', 1), ('material', 1)]
[('digital', 2), ('signal', 2), ('available', 1), ('three', 1), ('volume', 1), ('set', 1), ('updated', 1), ('expanded', 1), ('edition', 1), ('bestselling', 1), ('processing', 1), ('handbook', 1), ('continues', 1), ('provide', 1), ('engineering', 1), ('community', 1), ('authoritative', 1), ('coverage', 1), ('fundamental', 1), ('specialized', 1), ('aspect', 1), ('information', 1), ('bearing', 1), ('form', 1), ('encompassing', 1), ('essential', 1), ('background', 1), ('material', 1)]
[('render', 2), ('d', 2), ('max', 2), ('mental', 2), ('ray', 2), ('create', 1), ('stunning', 1), ('model', 1), ('concise', 1), ('guide', 1), ('learn', 1), ('essential', 1), ('concept', 1), ('indirect', 1), ('illumination', 1), ('material', 1), ('option', 1), ('shaders', 1), ('lighting', 1), ('rendering', 1), ('second', 1), ('edition', 1), ('revised', 1), ('cover', 1), ('autodesk', 1), ('revit', 1), ('special', 1), ('effect', 1), ('companion', 1), ('website', 1), ('includes', 1)]
[('digital', 3), ('sculpting', 2), ('use', 1), ('tool', 1), ('push', 1), ('pull', 1), ('smooth', 1), ('grab', 1), ('pinch', 1), ('manipulate', 1), ('object', 1), ('made', 1), ('real', 1), ('life', 1), ('substance', 1), ('clay', 1), ('mudbox', 1), ('premier', 1), ('solution', 1), ('artist', 1), ('allows', 1), ('naturally', 1), ('easily', 1), ('sculpt', 1), ('detailed', 1), ('organic', 1), ('character', 1), ('model', 1), ('way', 1)]
[('dynamic', 3), ('system', 2), ('involving', 2), ('complex', 2), ('control', 2), ('household', 1), ('appliance', 1), ('application', 1), ('robotics', 1), ('engineered', 1), ('effective', 1), ('algorithm', 1), ('programming', 1), ('dp', 1), ('provided', 1), ('researcher', 1), ('way', 1), ('optimally', 1), ('solve', 1), ('decision', 1), ('problem', 1), ('practical', 1), ('value', 1), ('limited', 1)]
[('plasma', 3), ('physic', 2), ('method', 2), ('computational', 2), ('magnetic', 2), ('fusion', 2), ('assuming', 1), ('prior', 1), ('knowledge', 1), ('numerical', 1), ('cover', 1), ('mathematics', 1), ('technique', 1), ('needed', 1), ('simulate', 1), ('magnetically', 1), ('confined', 1), ('modern', 1), ('experiment', 1), ('future', 1), ('reactor', 1), ('largely', 1), ('self', 1), ('contained', 1), ('text', 1), ('present', 1), ('basic', 1), ('concept', 1), ('neces', 1)]
[('max', 4), ('d', 3), ('need', 2), ('learn', 2), ('create', 2), ('cheat', 1), ('updated', 1), ('latest', 1), ('rev', 1), ('result', 1), ('fast', 1), ('take', 1), ('month', 1), ('every', 1), ('button', 1), ('visuals', 1), ('key', 1), ('tool', 1), ('quick', 1), ('yet', 1), ('stunning', 1), ('special', 1), ('effect', 1), ('animated', 1), ('character', 1), ('fastest', 1), ('technique', 1), ('possible', 1), ('convincing', 1), ('grass', 1)]
[('voice', 5), ('animation', 2), ('professional', 2), ('exercise', 2), ('take', 1), ('student', 1), ('alike', 1), ('animated', 1), ('world', 1), ('book', 1), ('provides', 1), ('information', 1), ('advice', 1), ('artist', 1), ('develop', 1), ('unique', 1), ('character', 1), ('learn', 1), ('technique', 1), ('gain', 1), ('versatility', 1), ('need', 1)]
[('ability', 1), ('improve', 1), ('performance', 1), ('reduce', 1), ('fabrication', 1), ('cost', 1), ('increase', 1), ('integration', 1), ('level', 1), ('rx', 1), ('tx', 1), ('section', 1), ('rf', 1), ('mm', 1), ('wave', 1), ('front', 1), ('end', 1), ('passive', 1), ('inductive', 1), ('component', 1), ('experienced', 1), ('extraordinary', 1), ('growth', 1), ('ic', 1), ('fundamental', 1), ('understanding', 1), ('monolithic', 1), ('inductor', 1), ('transformer', 1), ('become', 1), ('essential', 1), ('process', 1), ('eng', 1)]
[('video', 3), ('professional', 2), ('web', 2), ('add', 1), ('level', 1), ('communication', 1), ('toolbox', 1), ('complete', 1), ('understanding', 1), ('process', 1), ('potential', 1), ('limitation', 1), ('step', 1), ('mini', 1), ('cam', 1), ('experience', 1), ('solid', 1), ('introduction', 1), ('planning', 1), ('production', 1), ('technique', 1), ('ensuring', 1), ('meet', 1), ('standard', 1), ('set', 1), ('every', 1)]
[('game', 4), ('physic', 3), ('written', 1), ('pioneer', 1), ('development', 1), ('academia', 1), ('introduction', 1), ('box', 1), ('cover', 1), ('theory', 1), ('practice', 1), ('relaxed', 1), ('entertaining', 1), ('yet', 1), ('instructional', 1), ('style', 1), ('offer', 1), ('cohesive', 1), ('treatment', 1), ('topic', 1), ('code', 1), ('involved', 1), ('programming', 1), ('video', 1), ('focusing', 1), ('writing', 1), ('elementary', 1)]
[('transnav', 1), ('symposium', 1), ('held', 1), ('gdynia', 1), ('maritime', 1), ('university', 1), ('poland', 1), ('june', 1), ('brought', 1), ('together', 1), ('wide', 1), ('range', 1), ('participant', 1), ('world', 1), ('program', 1), ('offered', 1), ('variety', 1), ('contribution', 1), ('allowing', 1), ('look', 1), ('many', 1), ('aspect', 1), ('navigational', 1), ('safety', 1), ('various', 1), ('different', 1), ('point', 1), ('view', 1), ('topic', 1), ('presente', 1)]
[('secret', 2), ('production', 2), ('professional', 1), ('animator', 1), ('know', 1), ('handful', 1), ('give', 1), ('edge', 1), ('environment', 1), ('cheat', 1), ('maya', 1), ('put', 1), ('hand', 1), ('learn', 1), ('time', 1), ('energy', 1), ('saving', 1), ('technique', 1), ('tested', 1), ('real', 1), ('hollywood', 1), ('book', 1), ('jam', 1), ('packed', 1), ('screenshots', 1), ('scene', 1), ('file', 1), ('designed', 1), ('speed', 1), ('quickly', 1)]
[('function', 6), ('window', 2), ('signal', 2), ('processing', 2), ('known', 1), ('weighting', 1), ('tapering', 1), ('apodization', 1), ('mathematical', 1), ('zero', 1), ('valued', 1), ('outside', 1), ('chosen', 1), ('interval', 1), ('established', 1), ('vital', 1), ('part', 1), ('digital', 1), ('application', 1), ('present', 1), ('exhaustive', 1)]
[('design', 3), ('cryptographic', 2), ('algorithm', 2), ('beginning', 1), ('introduction', 1), ('cryptography', 1), ('hardware', 1), ('security', 1), ('threat', 1), ('safeguard', 1), ('explains', 1), ('underlying', 1), ('mathematical', 1), ('principle', 1), ('needed', 1), ('complex', 1), ('present', 1), ('efficient', 1), ('implementation', 1), ('method', 1), ('along', 1), ('state', 1), ('art', 1), ('research', 1), ('strategy', 1), ('la', 1)]
[('operating', 3), ('system', 3), ('design', 2), ('us', 1), ('running', 1), ('operation', 1), ('main', 1), ('thread', 1), ('difficulty', 1), ('understanding', 1), ('o', 1), ('lie', 1), ('technical', 1), ('aspect', 1), ('complex', 1), ('relationship', 1), ('inside', 1), ('art', 1), ('linux', 1), ('kernel', 1), ('illustrating', 1), ('principle', 1), ('implementation', 1), ('address', 1), ('complexity', 1), ('written', 1)]
[('language', 3), ('book', 2), ('introduces', 1), ('semantic', 1), ('aspect', 1), ('natural', 1), ('processing', 1), ('application', 1), ('topic', 1), ('covered', 1), ('include', 1), ('measuring', 1), ('word', 1), ('meaning', 1), ('similarity', 1), ('multi', 1), ('lingual', 1), ('querying', 1), ('parametric', 1), ('theory', 1), ('named', 1), ('entity', 1), ('recognition', 1), ('semantics', 1), ('query', 1), ('nature', 1), ('emphasizes', 1), ('portion', 1), ('mathematics', 1), ('needed', 1)]
[('cloud', 3), ('based', 2), ('healthcare', 2), ('offering', 1), ('introduction', 1), ('system', 1), ('timely', 1), ('book', 1), ('equips', 1), ('provider', 1), ('background', 1), ('necessary', 1), ('evaluate', 1), ('deploy', 1), ('solution', 1), ('today', 1), ('compliance', 1), ('efficiency', 1), ('issue', 1), ('divided', 1), ('three', 1), ('section', 1), ('first', 1), ('discus', 1), ('service', 1), ('technology', 1), ('business', 1), ('model', 1), ('pro', 1), ('con', 1)]
[('software', 5), ('secure', 3), ('development', 3), ('although', 1), ('many', 1), ('book', 1), ('highlight', 1), ('open', 1), ('problem', 1), ('provide', 1), ('easily', 1), ('actionable', 1), ('ground', 1), ('level', 1), ('solution', 1), ('breaking', 1), ('mold', 1), ('resilient', 1), ('teach', 1), ('apply', 1), ('best', 1), ('practice', 1), ('standard', 1), ('consistent', 1), ('detail', 1), ('specific', 1), ('quality', 1), ('developmen', 1)]
[('image', 3), ('processing', 3), ('matlab', 3), ('theory', 2), ('application', 1), ('medicine', 1), ('biology', 1), ('explains', 1), ('complex', 1), ('laden', 1), ('topic', 1), ('example', 1), ('algorithm', 1), ('describes', 1), ('classical', 1), ('emerging', 1), ('area', 1), ('analysis', 1), ('providing', 1), ('many', 1), ('unique', 1), ('code', 1), ('function', 1), ('throughout', 1), ('book', 1), ('cover', 1), ('probability', 1)]
[('continuous', 1), ('evolution', 1), ('integrated', 1), ('circuit', 1), ('manufacturing', 1), ('icm', 1), ('design', 1), ('manufacturability', 1), ('dfm', 1), ('book', 1), ('subject', 1), ('obsolete', 1), ('even', 1), ('go', 1), ('press', 1), ('field', 1), ('requires', 1), ('reference', 1), ('take', 1), ('focus', 1), ('number', 1), ('concentrate', 1), ('larger', 1), ('economic', 1), ('concept', 1), ('technical', 1), ('detail', 1)]
[('professional', 2), ('foreword', 1), ('presentation', 1), ('real', 1), ('time', 1), ('scheduling', 1), ('probably', 1), ('best', 1), ('term', 1), ('clarity', 1), ('literature', 1), ('easy', 1), ('understand', 1), ('important', 1), ('busy', 1), ('keen', 1), ('acquire', 1), ('refresh', 1), ('new', 1), ('knowledge', 1), ('without', 1), ('bogged', 1), ('convoluted', 1), ('narrative', 1), ('excessive', 1), ('detail', 1)]
[('development', 2), ('embedded', 2), ('system', 2), ('engineered', 1), ('product', 1), ('developer', 1), ('often', 1), ('need', 1), ('create', 1), ('prototype', 1), ('demonstrates', 1), ('operation', 1), ('function', 1), ('device', 1), ('prof', 1), ('viability', 1), ('offering', 1), ('practical', 1), ('tool', 1), ('prototyping', 1), ('phase', 1), ('circuit', 1), ('programming', 1), ('provides', 1), ('tutorial', 1), ('microcontroller', 1)]
[('opengl', 4), ('real', 3), ('world', 2), ('insight', 2), ('experienced', 2), ('professional', 1), ('communitywith', 1), ('e', 1), ('webgl', 1), ('time', 1), ('rendering', 1), ('becoming', 1), ('available', 1), ('everywhere', 1), ('aa', 1), ('game', 1), ('mobile', 1), ('phone', 1), ('web', 1), ('page', 1), ('assembling', 1), ('contribution', 1), ('developer', 1), ('vendor', 1), ('researcher', 1), ('educator', 1), ('present', 1), ('technique', 1)]
[('theory', 4), ('coding', 3), ('using', 1), ('simple', 1), ('yet', 1), ('rigorous', 1), ('approach', 1), ('algebraic', 1), ('stochastic', 1), ('make', 1), ('subject', 1), ('easy', 1), ('understand', 1), ('reader', 1), ('thorough', 1), ('knowledge', 1), ('digital', 1), ('arithmetic', 1), ('boolean', 1), ('modern', 1), ('algebra', 1), ('probability', 1), ('explains', 1), ('underlying', 1), ('principle', 1), ('offer', 1), ('clear', 1), ('detailed', 1), ('description', 1)]
[('ready', 2), ('creature', 2), ('rig', 2), ('film', 2), ('tv', 2), ('game', 2), ('type', 2), ('step', 2), ('inside', 1), ('look', 1), ('creation', 1), ('production', 1), ('video', 1), ('garner', 1), ('strategy', 1), ('technique', 1), ('creating', 1), ('make', 1), ('easy', 1), ('automatic', 1), ('use', 1), ('many', 1), ('different', 1), ('medium', 1), ('transmedia', 1), ('negetiveemoji', 1), ('move', 1), ('idea', 1), ('concept', 1)]
[('alf', 2), ('yarwood', 2), ('new', 2), ('autocad', 2), ('master', 1), ('complexity', 1), ('world', 1), ('bestselling', 1), ('software', 1), ('introduction', 1), ('ideally', 1), ('suited', 1), ('user', 1), ('book', 1), ('useful', 1), ('resource', 1), ('drawing', 1), ('module', 1), ('vocational', 1), ('introductory', 1), ('undergraduate', 1), ('course', 1), ('engineering', 1), ('construction', 1), ('produced', 1)]
[('short', 3), ('animated', 2), ('follow', 1), ('start', 1), ('finish', 1), ('creation', 1), ('pre', 1), ('production', 1), ('thought', 1), ('process', 1), ('story', 1), ('development', 1), ('character', 1), ('design', 1), ('explore', 1), ('best', 1), ('practice', 1), ('avoid', 1), ('common', 1), ('pitfall', 1), ('creating', 1), ('five', 1), ('minute', 1), ('watch', 1), ('specially', 1), ('created', 1), ('demonstrating', 1), ('core', 1), ('technique', 1), ('principle', 1)]
[('software', 3), ('design', 2), ('taking', 1), ('learn', 1), ('approach', 1), ('engineering', 1), ('theory', 1), ('practice', 1), ('us', 1), ('example', 1), ('review', 1), ('question', 1), ('chapter', 1), ('exercise', 1), ('case', 1), ('study', 1), ('assignment', 1), ('provide', 1), ('student', 1), ('practitioner', 1), ('understanding', 1), ('required', 1), ('complex', 1), ('system', 1), ('explaining', 1), ('concept', 1), ('immediately', 1), ('relevant', 1), ('designer', 1)]
[('bayesian', 3), ('network', 3), ('example', 3), ('understand', 1), ('foundation', 1), ('core', 1), ('property', 1), ('definition', 1), ('explained', 1), ('introduces', 1), ('using', 1), ('hand', 1), ('approach', 1), ('simple', 1), ('yet', 1), ('meaningful', 1), ('illustrate', 1), ('step', 1), ('modeling', 1), ('process', 1), ('start', 1), ('simplest', 1), ('notion', 1), ('gradually', 1), ('increase', 1)]
[('transcriptome', 2), ('rna', 2), ('seq', 2), ('data', 2), ('information', 2), ('state', 1), ('art', 1), ('analysisrna', 1), ('sequencing', 1), ('offer', 1), ('unprecedented', 1), ('harnessing', 1), ('bioinformatics', 1), ('tool', 1), ('typically', 1), ('bottleneck', 1), ('analysis', 1), ('practical', 1), ('approach', 1), ('enables', 1), ('researcher', 1), ('examine', 1), ('differential', 1), ('expression', 1), ('gene', 1), ('exon', 1), ('transcript', 1), ('le', 1)]
[('game', 3), ('edition', 2), ('programming', 2), ('battle', 2), ('second', 1), ('offer', 1), ('practical', 1), ('hand', 1), ('approach', 1), ('first', 1), ('learning', 1), ('language', 1), ('classic', 1), ('arcade', 1), ('application', 1), ('complete', 1), ('source', 1), ('code', 1), ('bit', 1), ('asteroid', 1), ('miner', 1), ('tennis', 1), ('included', 1), ('cd', 1), ('rom', 1), ('demonstrates', 1), ('strategy', 1), ('complement', 1)]
[('author', 1), ('compiles', 1), ('everything', 1), ('student', 1), ('experienced', 1), ('developmental', 1), ('engineer', 1), ('need', 1), ('know', 1), ('supporting', 1), ('technology', 1), ('associated', 1), ('rapidly', 1), ('evolving', 1), ('field', 1), ('robotics', 1), ('table', 1), ('content', 1), ('design', 1), ('consideration', 1), ('dead', 1), ('reckoning', 1), ('odometry', 1), ('sensor', 1), ('doppler', 1), ('inertial', 1), ('navigation', 1), ('typical', 1), ('mobility', 1), ('configuration', 1), ('tactile', 1)]
[('robot', 2), ('day', 2), ('even', 2), ('consider', 1), ('able', 1), ('write', 1), ('poetry', 1), ('prose', 1), ('touching', 1), ('make', 1), ('men', 1), ('weep', 1), ('compose', 1), ('dozen', 1), ('hundred', 1), ('symphony', 1), ('rival', 1), ('work', 1), ('mozart', 1), ('judge', 1), ('court', 1), ('case', 1), ('absolute', 1), ('impartiality', 1), ('fairness', 1), ('converse', 1), ('natural', 1), ('ease', 1), ('best', 1), ('friend', 1), ('life', 1), ('tha', 1)]
[('book', 2), ('robot', 2), ('copious', 1), ('photograph', 1), ('lavishly', 1), ('illustrate', 1), ('current', 1), ('future', 1), ('application', 1), ('wide', 1), ('scope', 1), ('field', 1), ('entertainment', 1), ('medicine', 1), ('space', 1), ('exploration', 1), ('underwater', 1), ('navigation', 1), ('many', 1), ('everyone', 1), ('professional', 1), ('roboticists', 1), ('amateur', 1), ('technology', 1), ('enthusiast', 1), ('find', 1), ('fascinating', 1)]
[('game', 4), ('tool', 3), ('book', 2), ('focus', 2), ('brings', 1), ('insight', 1), ('professional', 1), ('dcc', 1), ('creator', 1), ('hardware', 1), ('vendor', 1), ('current', 1), ('researcher', 1), ('together', 1), ('collection', 1), ('underrepresented', 1), ('critical', 1), ('part', 1), ('production', 1), ('development', 1), ('first', 1), ('gem', 1), ('type', 1), ('dedicated', 1), ('volume', 1), ('practical', 1), ('implementable', 1), ('de', 1)]
[('cryptography', 2), ('open', 2), ('source', 2), ('privilege', 1), ('secret', 1), ('taught', 1), ('university', 1), ('around', 1), ('world', 1), ('introduction', 1), ('software', 1), ('illustrates', 1), ('algorithm', 1), ('cryptosystems', 1), ('using', 1), ('example', 1), ('computer', 1), ('algebra', 1), ('system', 1), ('sage', 1), ('author', 1), ('noted', 1), ('educator', 1), ('field', 1), ('provides', 1), ('highly', 1), ('practical', 1), ('learning', 1), ('experienc', 1)]
[('edition', 2), ('includes', 2), ('new', 2), ('revised', 1), ('updated', 1), ('second', 1), ('several', 1), ('chapter', 1), ('project', 1), ('application', 1), ('author', 1), ('keep', 1), ('pace', 1), ('growing', 1), ('rapidly', 1), ('expanding', 1), ('field', 1), ('robotics', 1), ('reflects', 1), ('technological', 1), ('development', 1), ('program', 1), ('activity', 1), ('robot', 1), ('enthusiast', 1), ('using', 1), ('photograph', 1), ('illustration', 1), ('informative', 1)]
[('network', 3), ('company', 2), ('instant', 1), ('access', 1), ('hacker', 1), ('latest', 1), ('tool', 1), ('technique', 1), ('demand', 1), ('become', 1), ('aggressive', 1), ('defending', 1), ('security', 1), ('conducting', 1), ('vulnerability', 1), ('assessment', 1), ('self', 1), ('induced', 1), ('hack', 1), ('attack', 1), ('identifies', 1), ('component', 1), ('fault', 1), ('policy', 1), ('procedure', 1), ('expose', 1), ('damage', 1)]
[('public', 2), ('key', 2), ('cryptography', 2), ('theory', 2), ('mathematical', 1), ('foundation', 1), ('author', 1), ('integrate', 1), ('result', 1), ('year', 1), ('research', 1), ('teaching', 1), ('experience', 1), ('help', 1), ('student', 1), ('bridge', 1), ('gap', 1), ('math', 1), ('crypto', 1), ('practice', 1), ('book', 1), ('provides', 1), ('theoretical', 1), ('structure', 1), ('fundamental', 1), ('number', 1), ('algebra', 1), ('knowledge', 1), ('supporting', 1)]
[('autocad', 2), ('step', 2), ('running', 1), ('drawing', 1), ('design', 1), ('modeling', 1), ('present', 1), ('combination', 1), ('instruction', 1), ('example', 1), ('insightful', 1), ('explanation', 1), ('book', 1), ('emphasizes', 1), ('core', 1), ('concept', 1), ('practical', 1), ('application', 1)]
[('high', 2), ('performance', 2), ('computing', 2), ('modern', 1), ('system', 1), ('practice', 1), ('fully', 1), ('comprehensive', 1), ('easily', 1), ('accessible', 1), ('treatment', 1), ('covering', 1), ('fundamental', 1), ('concept', 1), ('essential', 1), ('knowledge', 1), ('providing', 1), ('key', 1), ('skill', 1), ('training', 1)]
[('database', 3), ('design', 2), ('fifth', 2), ('edition', 2), ('modeling', 1), ('focus', 1), ('technique', 1), ('relational', 1), ('system', 1), ('extensively', 1), ('revised', 1), ('feature', 1), ('clear', 1), ('explanation', 1), ('lot', 1), ('terrific', 1), ('example', 1), ('illustrative', 1), ('case', 1)]
[('system', 2), ('change', 2), ('organization', 2), ('cmdb', 1), ('making', 1), ('work', 1), ('age', 1), ('cloud', 1), ('agile', 1), ('show', 1), ('integrated', 1), ('database', 1), ('across', 1), ('area', 1), ('information', 1), ('help', 1), ('make', 1), ('efficient', 1), ('reduce', 1), ('challenge', 1), ('management', 1)]
[('smes', 2), ('information', 2), ('firm', 2), ('strategy', 1), ('growth', 1), ('explores', 1), ('first', 1), ('time', 1), ('role', 1), ('system', 1), ('concept', 1), ('small', 1), ('medium', 1), ('sized', 1), ('enterprise', 1), ('research', 1), ('focus', 1), ('large', 1), ('yet', 1), ('majority', 1)]
[('commonsense', 2), ('reasoning', 2), ('endow', 1), ('computer', 1), ('common', 1), ('sense', 1), ('major', 1), ('long', 1), ('term', 1), ('goal', 1), ('artificial', 1), ('intelligence', 1), ('research', 1), ('approach', 1), ('problem', 1), ('formalize', 1), ('using', 1), ('mathematical', 1), ('logic', 1), ('detailed', 1)]
[('code', 2), ('page', 2), ('exploit', 2), ('hacking', 1), ('dedicated', 1), ('vulnerability', 1), ('tool', 1), ('corresponding', 1), ('instruction', 1), ('unlike', 1), ('security', 1), ('programming', 1), ('book', 1), ('dedicate', 1), ('hundred', 1), ('architecture', 1), ('theory', 1), ('based', 1), ('flaw', 1)]
[('system', 2), ('demand', 1), ('exploding', 1), ('complete', 1), ('integrated', 1), ('sense', 1), ('process', 1), ('manipulate', 1), ('control', 1), ('complex', 1), ('entity', 1), ('sound', 1), ('image', 1), ('text', 1), ('motion', 1), ('environmental', 1), ('condition', 1), ('hand', 1), ('held', 1), ('device', 1), ('automotive', 1)]
[('technology', 2), ('driven', 1), ('demand', 1), ('entertainment', 1), ('industry', 1), ('better', 1), ('realistic', 1), ('animation', 1), ('continues', 1), ('evolve', 1), ('improve', 1), ('algorithm', 1), ('technique', 1), ('behind', 1), ('foundation', 1), ('comprehensive', 1), ('book', 1)]
[('network', 3), ('wireshark', 2), ('field', 1), ('guide', 1), ('provides', 1), ('hacker', 1), ('pen', 1), ('tester', 1), ('administrator', 1), ('practical', 1), ('guidance', 1), ('capturing', 1), ('interactively', 1), ('browsing', 1), ('computer', 1), ('traffic', 1), ('world', 1), ('foremost', 1), ('protocol', 1), ('analyzer', 1), ('rich', 1)]
[('behavior', 3), ('tree', 1), ('bts', 1), ('provide', 1), ('way', 1), ('structure', 1), ('artificial', 1), ('agent', 1), ('robot', 1), ('non', 1), ('player', 1), ('character', 1), ('computer', 1), ('game', 1), ('traditional', 1), ('design', 1), ('method', 1), ('finite', 1), ('state', 1), ('machine', 1), ('known', 1), ('produce', 1), ('brittle', 1), ('complexity', 1), ('increase', 1), ('making', 1), ('hard', 1), ('add', 1), ('feature', 1), ('without', 1), ('breaking', 1), ('existing', 1)]
[('book', 2), ('cog', 1), ('crank', 1), ('wheel', 1), ('plate', 1), ('chain', 1), ('spring', 1), ('piston', 1), ('nightmare', 1), ('animator', 1), ('show', 1), ('artist', 1), ('create', 1), ('setup', 1), ('control', 1), ('automate', 1), ('movement', 1), ('complex', 1), ('technically', 1), ('challenging', 1), ('mechanical', 1), ('structure', 1), ('working', 1), ('super', 1), ('detailed', 1), ('steampunk', 1), ('train', 1), ('specifically', 1), ('implement', 1), ('current', 1), ('industry', 1), ('trend', 1)]
[('computer', 3), ('game', 3), ('chapter', 3), ('role', 2), ('playing', 2), ('crpgs', 2), ('new', 2), ('modern', 2), ('age', 2), ('special', 1), ('genre', 1), ('bring', 1), ('tabletop', 1), ('experience', 1), ('dungeon', 1), ('dragon', 1), ('screen', 1), ('thisnew', 1), ('edition', 1), ('inlcudes', 1), ('indie', 1), ('mobile', 1), ('cover', 1), ('among', 1), ('topic', 1)]
[('foundation', 3), ('computer', 2), ('age', 2), ('communication', 2), ('theory', 2), ('information', 1), ('technology', 1), ('without', 1), ('practical', 1), ('application', 1), ('brought', 1), ('pioneer', 1), ('perhaps', 1), ('remained', 1), ('back', 1), ('office', 1), ('hidden', 1), ('away', 1), ('infrastructure', 1), ('electricity', 1), ('running', 1)]
[('technology', 2), ('system', 2), ('greater', 2), ('thanks', 1), ('advance', 1), ('computer', 1), ('last', 1), ('twenty', 1), ('year', 1), ('navigation', 1), ('cabin', 1), ('environment', 1), ('control', 1), ('acc', 1), ('advanced', 1), ('driver', 1), ('assistance', 1), ('ada', 1), ('automated', 1), ('driving', 1), ('become', 1), ('part', 1), ('automobile', 1), ('experience', 1), ('improvement', 1), ('enables', 1), ('design', 1), ('flexibility', 1), ('provide', 1), ('value', 1)]
[('ai', 2), ('organization', 2), ('intelligence', 2), ('understand', 2), ('revolution', 1), ('moving', 1), ('breakneck', 1), ('speed', 1), ('beginning', 1), ('invest', 1), ('innovative', 1), ('way', 1), ('monetize', 1), ('data', 1), ('use', 1), ('artificial', 1), ('business', 1), ('need', 1), ('reality', 1), ('successful', 1), ('imperative', 1), ('augmented', 1), ('secret', 1), ('success', 1)]
[('book', 2), ('idea', 1), ('behind', 1), ('simplify', 1), ('journey', 1), ('aspiring', 1), ('reader', 1), ('researcher', 1), ('understand', 1), ('big', 1), ('data', 1), ('iot', 1), ('machine', 1), ('learning', 1), ('includes', 1), ('various', 1), ('real', 1), ('time', 1), ('offline', 1), ('application', 1), ('case', 1), ('study', 1), ('field', 1), ('engineering', 1), ('computer', 1), ('science', 1), ('information', 1), ('security', 1), ('cloud', 1), ('computing', 1), ('using', 1), ('modern', 1), ('tool', 1), ('consists', 1)]
[('technology', 2), ('today', 1), ('fast', 1), ('paced', 1), ('infocentric', 1), ('environment', 1), ('professional', 1), ('increasingly', 1), ('rely', 1), ('networked', 1), ('information', 1), ('business', 1), ('unfortunately', 1), ('advent', 1), ('came', 1), ('new', 1), ('complex', 1), ('problem', 1), ('continue', 1), ('threaten', 1)]
[('intruder', 2), ('alarm', 2), ('system', 2), ('installation', 2), ('provides', 1), ('definitive', 1), ('fully', 1), ('date', 1), ('guide', 1), ('specification', 1), ('design', 1), ('integration', 1), ('maintenance', 1), ('written', 1), ('essential', 1), ('handbook', 1), ('engineer', 1)]
[('guide', 2), ('way', 1), ('forensics', 1), ('practitioner', 1), ('manual', 1), ('complete', 1), ('reference', 1), ('full', 1), ('use', 1), ('powerful', 1), ('forensic', 1), ('application', 1), ('available', 1), ('software', 1), ('used', 1), ('wide', 1), ('array', 1), ('law', 1), ('enforcement', 1), ('agency', 1)]
[('concept', 2), ('resource', 1), ('theoretical', 1), ('practical', 1), ('mobile', 1), ('ux', 1), ('learn', 1), ('apply', 1), ('real', 1), ('world', 1), ('scenario', 1), ('throughout', 1), ('book', 1), ('author', 1), ('provides', 1), ('commonly', 1), ('used', 1)]
[('mobile', 2), ('threat', 1), ('landscape', 1), ('evolving', 1), ('bringing', 1), ('new', 1), ('form', 1), ('data', 1), ('loss', 1), ('longer', 1), ('organization', 1), ('rely', 1), ('security', 1), ('policy', 1), ('designed', 1), ('pc', 1), ('era', 1), ('different', 1), ('requires', 1), ('revised', 1), ('approach', 1), ('countermeasure', 1)]
[('stride', 1), ('made', 1), ('past', 1), ('decade', 1), ('complexity', 1), ('network', 1), ('functionality', 1), ('embedded', 1), ('system', 1), ('significantly', 1), ('enhanced', 1), ('attractiveness', 1), ('use', 1), ('critical', 1), ('application', 1), ('medical', 1), ('device', 1), ('military', 1), ('communication', 1)]
[('blooper', 3), ('gui', 2), ('web', 2), ('second', 1), ('edition', 1), ('completely', 1), ('updated', 1), ('revised', 1), ('version', 1), ('look', 1), ('user', 1), ('interface', 1), ('design', 1), ('commercial', 1), ('software', 1), ('site', 1), ('application', 1), ('information', 1), ('appliance', 1), ('explaining', 1)]
[('form', 4), ('web', 2), ('work', 1), ('designing', 1), ('usability', 1), ('clearly', 1), ('explains', 1), ('exactly', 1), ('design', 1), ('book', 1), ('provides', 1), ('proven', 1), ('practical', 1), ('advice', 1), ('help', 1), ('avoid', 1), ('pitfall', 1), ('produce', 1), ('aesthetically', 1), ('pleasing', 1)]
[('interaction', 2), ('design', 2), ('thought', 1), ('second', 1), ('edition', 1), ('contemplates', 1), ('contributes', 1), ('theory', 1), ('exploring', 1), ('semantic', 1), ('connection', 1), ('live', 1), ('technology', 1), ('form', 1), ('brought', 1), ('life', 1), ('us', 1), ('product', 1)]
[('agent', 2), ('intelligent', 1), ('employed', 1), ('central', 1), ('character', 1), ('new', 1), ('introductory', 1), ('text', 1), ('beginning', 1), ('elementary', 1), ('reactive', 1), ('nilsson', 1), ('gradually', 1), ('increase', 1), ('cognitive', 1), ('horsepower', 1), ('illustrate', 1), ('important', 1), ('lasting', 1), ('idea', 1), ('ai', 1)]
[('digital', 2), ('controller', 1), ('part', 1), ('nearly', 1), ('modern', 1), ('personal', 1), ('industrial', 1), ('transportation', 1), ('system', 1), ('every', 1), ('senior', 1), ('graduate', 1), ('student', 1), ('electrical', 1), ('chemical', 1), ('mechanical', 1), ('engineering', 1), ('familiar', 1), ('basic', 1), ('theory', 1)]
[('checklist', 2), ('questionnaire', 2), ('credible', 1), ('quality', 1), ('start', 1), ('examination', 1), ('critical', 1), ('commonly', 1), ('overlooked', 1), ('method', 1), ('second', 1), ('chapter', 1), ('survey', 1), ('discussed', 1), ('asking', 1), ('question', 1), ('sound', 1), ('simple', 1), ('hard', 1)]
[('window', 3), ('edition', 2), ('cover', 2), ('system', 2), ('harlan', 1), ('carvey', 1), ('updated', 1), ('forensic', 1), ('analysis', 1), ('toolkit', 1), ('fourth', 1), ('primary', 1), ('focus', 1), ('analyzing', 1), ('process', 1), ('using', 1), ('free', 1), ('open', 1), ('source', 1), ('tool', 1), ('book', 1)]
[('partial', 2), ('differential', 2), ('equation', 2), ('material', 2), ('boundary', 1), ('value', 1), ('problem', 1), ('maple', 1), ('second', 1), ('edition', 1), ('present', 1), ('normally', 1), ('covered', 1), ('standard', 1), ('course', 1), ('focusing', 1), ('natural', 1), ('union', 1)]
[('inventor', 1), ('simulation', 1), ('essential', 1), ('part', 1), ('autodesk', 1), ('digital', 1), ('prototyping', 1), ('process', 1), ('allows', 1), ('engineer', 1), ('designer', 1), ('explore', 1), ('test', 1), ('component', 1), ('product', 1), ('virtually', 1), ('visualizing', 1), ('simulating', 1), ('real', 1), ('world', 1), ('performance', 1), ('running', 1)]
[('system', 3), ('embedded', 2), ('platform', 2), ('fpgas', 2), ('design', 1), ('introduces', 1), ('professional', 1), ('engineer', 1), ('student', 1), ('alike', 1), ('development', 1), ('using', 1), ('focus', 1), ('serf', 1), ('general', 1), ('guide', 1), ('building', 1), ('custom', 1), ('computing', 1)]
[('opencl', 2), ('heterogeneous', 1), ('computing', 1), ('second', 1), ('edition', 1), ('teach', 1), ('parallel', 1), ('programming', 1), ('complex', 1), ('system', 1), ('include', 1), ('variety', 1), ('device', 1), ('architecture', 1), ('multi', 1), ('core', 1), ('cpu', 1), ('gpus', 1), ('fully', 1), ('integrated', 1), ('accelerated', 1), ('processing', 1), ('unit', 1), ('apus', 1)]
[('cloud', 5), ('networking', 2), ('based', 2), ('network', 2), ('explains', 2), ('technology', 2), ('understanding', 1), ('data', 1), ('center', 1), ('evolution', 1), ('established', 1), ('distributed', 1), ('starting', 1), ('overview', 1), ('book', 1)]
[('attack', 6), ('seven', 2), ('network', 2), ('deadliest', 1), ('identifies', 1), ('class', 1), ('discus', 1), ('work', 1), ('including', 1), ('tool', 1), ('accomplish', 1), ('risk', 1), ('defend', 1), ('book', 1), ('pinpoint', 1)]
[('social', 2), ('medium', 2), ('web', 1), ('first', 1), ('created', 1), ('scramble', 1), ('among', 1), ('librarian', 1), ('participate', 1), ('facebook', 1), ('youtube', 1), ('blog', 1), ('application', 1), ('turn', 1), ('towards', 1), ('management', 1), ('consolidation', 1), ('managing', 1), ('library', 1), ('explores', 1), ('developing', 1)]
[('data', 3), ('analytics', 1), ('playbook', 1), ('proven', 1), ('method', 1), ('governed', 1), ('analytic', 1), ('quality', 1), ('explores', 1), ('way', 1), ('continues', 1), ('dominate', 1), ('budget', 1), ('along', 1), ('varying', 1), ('effort', 1), ('made', 1), ('across', 1), ('variety', 1), ('business', 1), ('enablement', 1), ('project', 1), ('including', 1)]
[('exam', 3), ('window', 3), ('server', 3), ('technology', 2), ('specialist', 2), ('designed', 1), ('validate', 1), ('active', 1), ('directory', 1), ('skill', 1), ('fulfill', 1), ('requirement', 1), ('microsoft', 1), ('certified', 1), ('mcts', 1)]
[('web', 4), ('site', 3), ('successful', 2), ('commercial', 2), ('ashley', 1), ('friedlein', 1), ('first', 1), ('book', 1), ('project', 1), ('management', 1), ('delivering', 1), ('became', 1), ('bestseller', 1), ('essential', 1), ('reference', 1), ('professional', 1), ('developing', 1), ('new', 1), ('maintaining', 1), ('evolving', 1)]
[('ocean', 2), ('book', 1), ('provides', 1), ('survey', 1), ('frontier', 1), ('research', 1), ('numerical', 1), ('modeling', 1), ('mathematical', 1), ('analysis', 1), ('used', 1), ('study', 1), ('atmosphere', 1), ('detail', 1), ('current', 1), ('practice', 1), ('global', 1), ('atmospheric', 1), ('model', 1)]
[('user', 2), ('experience', 2), ('design', 2), ('mastered', 1), ('guide', 1), ('getting', 1), ('right', 1), ('provides', 1), ('understanding', 1), ('key', 1), ('development', 1), ('process', 1), ('aimed', 1), ('enhancing', 1), ('website', 1), ('web', 1), ('application', 1), ('book', 1), ('organized', 1), ('four', 1), ('part', 1)]
[('open', 3), ('source', 3), ('tool', 3), ('book', 2), ('digital', 1), ('forensics', 1), ('definitive', 1), ('investigating', 1), ('analyzing', 1), ('computer', 1), ('system', 1), ('medium', 1), ('using', 1), ('technical', 1), ('procedural', 1), ('guide', 1), ('explains', 1), ('use', 1), ('mac', 1), ('linux', 1)]
[('approach', 2), ('cyber', 1), ('attack', 1), ('student', 1), ('edition', 1), ('offer', 1), ('technical', 1), ('architectural', 1), ('management', 1), ('solving', 1), ('problem', 1), ('protecting', 1), ('national', 1), ('infrastructure', 1), ('includes', 1), ('controversial', 1), ('theme', 1), ('deliberate', 1), ('use', 1), ('deception', 1), ('trap', 1)]
[('security', 2), ('management', 2), ('effective', 1), ('sixth', 1), ('edition', 1), ('teach', 1), ('practicing', 1), ('professional', 1), ('build', 1), ('career', 1), ('mastering', 1), ('fundamental', 1), ('good', 1), ('author', 1), ('charles', 1), ('sennewald', 1), ('brings', 1), ('common', 1), ('sense', 1), ('wisdom', 1), ('humor', 1)]
[('data', 2), ('search', 2), ('ww', 1), ('era', 1), ('made', 1), ('billion', 1), ('dramatically', 1), ('dependent', 1), ('progress', 1), ('technology', 1), ('internet', 1), ('big', 1), ('arguably', 1), ('notable', 1), ('structured', 1), ('paradigm', 1), ('connects', 1), ('via', 1), ('fundamental', 1), ('concept', 1)]
[('nr', 2), ('next', 1), ('generation', 1), ('wireless', 1), ('access', 1), ('technology', 1), ('follows', 1), ('author', 1), ('highly', 1), ('celebrated', 1), ('book', 1), ('providing', 1), ('new', 1), ('level', 1), ('insight', 1), ('initial', 1), ('discussion', 1), ('background', 1), ('including', 1), ('requirement', 1), ('spectrum', 1)]
[('network', 2), ('speed', 2), ('sometimes', 2), ('designing', 1), ('device', 1), ('make', 1), ('dozen', 1), ('decision', 1), ('affect', 1), ('perform', 1), ('better', 1), ('worse', 1), ('algorithmics', 1), ('provides', 1), ('complete', 1), ('coherent', 1), ('methodology', 1), ('maximizing', 1)]
[('wireless', 3), ('networking', 2), ('book', 2), ('become', 1), ('standard', 1), ('many', 1), ('business', 1), ('government', 1), ('network', 1), ('first', 1), ('focus', 1), ('method', 1), ('used', 1), ('professional', 1), ('perform', 1), ('wardriving', 1), ('pentration', 1), ('testing', 1), ('unlike', 1)]
[('seven', 2), ('unified', 2), ('communication', 2), ('attack', 2), ('deadliest', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('dangerous', 1), ('hack', 1), ('exploit', 1), ('specific', 1), ('uc', 1), ('lay', 1), ('anatomy', 1), ('including', 1), ('make', 1), ('system', 1)]
[('computer', 2), ('forensic', 2), ('need', 1), ('professionally', 1), ('successfully', 1), ('conduct', 1), ('investigation', 1), ('incident', 1), ('crime', 1), ('never', 1), ('greater', 1), ('caused', 1), ('increased', 1), ('requirement', 1), ('information', 1), ('creation', 1), ('management', 1)]
[('interaction', 3), ('design', 3), ('field', 2), ('thought', 1), ('explores', 1), ('theory', 1), ('behind', 1), ('new', 1), ('way', 1), ('aim', 1), ('provide', 1), ('better', 1), ('definition', 1), ('encompasses', 1), ('intellectual', 1), ('facet', 1), ('particular', 1), ('method', 1)]
[('digital', 1), ('signal', 1), ('processing', 1), ('second', 1), ('edition', 1), ('enables', 1), ('electrical', 1), ('engineer', 1), ('technician', 1), ('field', 1), ('biomedical', 1), ('computer', 1), ('electronics', 1), ('engineering', 1), ('master', 1), ('essential', 1), ('fundamental', 1), ('dsp', 1), ('principle', 1), ('practice', 1), ('many', 1), ('instructive', 1), ('worked', 1)]
[('brainstorming', 2), ('beyond', 1), ('describes', 1), ('technique', 1), ('generating', 1), ('idea', 1), ('verbally', 1), ('writing', 1), ('sketch', 1), ('first', 1), ('chapter', 1), ('focus', 1), ('foundation', 1), ('method', 1), ('ideation', 1), ('complex', 1), ('social', 1), ('process', 1), ('building', 1)]
[('book', 1), ('provides', 1), ('careful', 1), ('explanation', 1), ('basic', 1), ('area', 1), ('electronics', 1), ('computer', 1), ('architecture', 1), ('along', 1), ('lot', 1), ('example', 1), ('demonstrate', 1), ('interface', 1), ('sensor', 1), ('design', 1), ('programming', 1), ('microcontroller', 1), ('peripheral', 1), ('setup', 1), ('necessary', 1), ('embedded', 1)]
[('congestion', 3), ('control', 3), ('internet', 1), ('provides', 1), ('description', 1), ('important', 1), ('topic', 1), ('area', 1), ('computer', 1), ('network', 1), ('special', 1), ('emphasis', 1), ('analytical', 1), ('modeling', 1), ('algorithm', 1), ('field', 1)]
[('database', 2), ('design', 2), ('relational', 1), ('implementation', 1), ('clearly', 1), ('explained', 1), ('fourth', 1), ('edition', 1), ('provides', 1), ('conceptual', 1), ('practical', 1), ('information', 1), ('necessary', 1), ('develop', 1), ('management', 1), ('scheme', 1), ('ensures', 1), ('data', 1), ('accuracy', 1), ('user', 1), ('satisfaction', 1)]
[('groovy', 3), ('language', 3), ('java', 2), ('scripting', 2), ('programming', 1), ('introduction', 1), ('based', 1), ('common', 1), ('popular', 1), ('perl', 1), ('python', 1), ('ruby', 1), ('written', 1), ('syntax', 1), ('unlike', 1)]
[('color', 2), ('aim', 1), ('book', 1), ('assemble', 1), ('series', 1), ('chapter', 1), ('written', 1), ('expert', 1), ('field', 1), ('covering', 1), ('basic', 1), ('way', 1), ('reader', 1), ('supplied', 1), ('almost', 1), ('anything', 1), ('want', 1), ('know', 1), ('outside', 1)]
[('content', 2), ('king', 1), ('new', 1), ('kingmaker', 1), ('message', 1), ('need', 1), ('align', 1), ('model', 1), ('metric', 1), ('mumbo', 1), ('jumbo', 1), ('right', 1), ('whether', 1), ('slogging', 1), ('theory', 1), ('buzzword', 1), ('denying', 1), ('strategy', 1), ('coming', 1), ('age', 1)]
[('constraint', 2), ('satisfaction', 1), ('simple', 1), ('powerful', 1), ('tool', 1), ('identify', 1), ('impossible', 1), ('reduce', 1), ('realm', 1), ('possibility', 1), ('effectively', 1), ('focus', 1), ('possible', 1), ('allowing', 1), ('natural', 1), ('declarative', 1), ('formulation', 1), ('satisfied', 1)]
[('snort', 3), ('new', 2), ('book', 2), ('covering', 1), ('brand', 1), ('version', 1), ('member', 1), ('developer', 1), ('team', 1), ('fully', 1), ('integrated', 1), ('web', 1), ('toolkit', 1), ('cover', 1), ('everything', 1), ('packet', 1), ('inspection', 1), ('optimizing', 1), ('speed', 1), ('using', 1), ('advanced', 1)]
[('information', 2), ('customer', 2), ('centricity', 2), ('using', 1), ('develop', 1), ('culture', 1), ('set', 1), ('stage', 1), ('understanding', 1), ('holistic', 1), ('marriage', 1), ('socialization', 1), ('process', 1), ('change', 1), ('necessary', 1), ('transitioning', 1), ('organization', 1), ('book', 1)]
[('social', 2), ('engineering', 2), ('organization', 2), ('best', 1), ('defense', 1), ('increasing', 1), ('threat', 1), ('attack', 1), ('security', 1), ('awareness', 1), ('training', 1), ('warn', 1), ('staff', 1), ('risk', 1), ('educate', 1), ('protect', 1), ('data', 1), ('new', 1)]
[('crime', 2), ('provides', 2), ('step', 2), ('written', 1), ('expert', 1), ('frontlines', 1), ('investigating', 1), ('internet', 1), ('seasoned', 1), ('new', 1), ('investigator', 1), ('background', 1), ('tool', 1), ('need', 1), ('investigate', 1), ('occurring', 1), ('online', 1), ('world', 1), ('invaluable', 1), ('guide', 1)]
[('digital', 2), ('first', 1), ('forensics', 1), ('book', 1), ('cover', 1), ('complete', 1), ('lifecycle', 1), ('evidence', 1), ('chain', 1), ('custody', 1), ('comprehensive', 1), ('handbook', 1), ('includes', 1), ('international', 1), ('procedure', 1), ('best', 1), ('practice', 1), ('compliance', 1), ('companion', 1), ('web', 1), ('site', 1)]
[('protocol', 4), ('netcat', 2), ('tcp', 2), ('originally', 1), ('released', 1), ('netowrking', 1), ('program', 1), ('designed', 1), ('write', 1), ('data', 1), ('across', 1), ('transmission', 1), ('control', 1), ('user', 1), ('datagram', 1), ('udp', 1), ('connection', 1), ('using', 1), ('internet', 1), ('ip', 1), ('suite', 1)]
[('image', 2), ('complete', 1), ('introduction', 1), ('basic', 1), ('intermediate', 1), ('concept', 1), ('processing', 1), ('leading', 1), ('field', 1), ('date', 1), ('content', 1), ('including', 1), ('statistical', 1), ('modeling', 1), ('natural', 1), ('anistropic', 1), ('diffusion', 1), ('quality', 1), ('latest', 1), ('development', 1)]
[('data', 2), ('compression', 2), ('edition', 2), ('introduction', 1), ('fourth', 1), ('concise', 1), ('comprehensive', 1), ('guide', 1), ('art', 1), ('science', 1), ('new', 1), ('includes', 1), ('cutting', 1), ('edge', 1), ('update', 1), ('reader', 1), ('need', 1), ('work', 1), ('day', 1), ('class', 1)]
[('device', 2), ('network', 2), ('proliferation', 1), ('mobile', 1), ('bring', 1), ('byod', 1), ('within', 1), ('enterprise', 1), ('boundary', 1), ('begin', 1), ('end', 1), ('blurred', 1), ('cisco', 1), ('identity', 1), ('service', 1), ('engine', 1), ('ise', 1), ('leading', 1), ('security', 1), ('policy', 1)]
[('intel', 2), ('xeon', 2), ('phi', 2), ('programming', 2), ('knight', 2), ('processor', 1), ('high', 1), ('performance', 1), ('source', 1), ('information', 1), ('second', 1), ('generation', 1), ('product', 1), ('family', 1), ('called', 1), ('landing', 1), ('author', 1), ('provide', 1), ('detailed', 1), ('timely', 1)]
[('effective', 1), ('resource', 1), ('management', 1), ('reliable', 1), ('equipment', 1), ('essential', 1), ('optimum', 1), ('plant', 1), ('performance', 1), ('computer', 1), ('managed', 1), ('maintenance', 1), ('system', 1), ('go', 1), ('beyond', 1), ('simple', 1), ('selection', 1), ('implementation', 1), ('cmms', 1), ('defines', 1), ('change', 1), ('infrastructure', 1)]
[('service', 2), ('ii', 2), ('web', 2), ('according', 1), ('microsoft', 1), ('internet', 1), ('information', 1), ('server', 1), ('provides', 1), ('secure', 1), ('easy', 1), ('manage', 1), ('platform', 1), ('developing', 1), ('reliably', 1), ('hosting', 1), ('application', 1), ('new', 1), ('version', 1), ('security', 1)]
[('come', 1), ('computer', 1), ('crime', 1), ('criminal', 1), ('big', 1), ('head', 1), ('start', 1), ('law', 1), ('enforcement', 1), ('security', 1), ('community', 1), ('working', 1), ('diligently', 1), ('develop', 1), ('knowledge', 1), ('skill', 1), ('tool', 1), ('successfully', 1), ('investigate', 1), ('prosecute', 1), ('cybercrime', 1)]
[('io', 3), ('iphone', 2), ('device', 2), ('forensics', 1), ('guide', 1), ('forensic', 1), ('acquisition', 1), ('analysis', 1), ('offer', 1), ('practical', 1), ('advice', 1), ('secure', 1), ('data', 1), ('apps', 1), ('book', 1), ('take', 1), ('depth', 1), ('look', 1), ('method', 1), ('process', 1), ('analyze', 1)]
[('penetration', 3), ('language', 2), ('testing', 2), ('step', 2), ('coding', 1), ('tester', 1), ('discus', 1), ('use', 1), ('various', 1), ('scripting', 1), ('book', 1), ('present', 1), ('instruction', 1), ('build', 1), ('customized', 1), ('tool', 1), ('using', 1), ('perl', 1), ('ruby', 1), ('python', 1)]
[('big', 3), ('data', 3), ('analytics', 2), ('assist', 1), ('manager', 1), ('providing', 1), ('overview', 1), ('driver', 1), ('introducing', 1), ('technology', 1), ('organization', 1), ('understanding', 1), ('type', 1), ('business', 1), ('problem', 1), ('best', 1), ('suited', 1), ('solution', 1)]
[('window', 3), ('best', 2), ('performing', 2), ('system', 2), ('microsoft', 1), ('server', 1), ('designed', 1), ('operating', 1), ('date', 1), ('even', 1), ('overwhelmed', 1), ('load', 1), ('plagued', 1), ('poorly', 1), ('code', 1), ('performance', 1), ('analysis', 1)]
[('industrial', 2), ('tomography', 2), ('system', 2), ('application', 2), ('thoroughly', 1), ('explores', 1), ('important', 1), ('tomographic', 1), ('technique', 1), ('discussing', 1), ('image', 1), ('reconstruction', 1), ('text', 1), ('present', 1), ('complex', 1), ('process', 1), ('including', 1)]
[('network', 2), ('step', 2), ('stack', 2), ('layer', 2), ('book', 1), ('look', 1), ('security', 1), ('new', 1), ('refreshing', 1), ('way', 1), ('guide', 1), ('reader', 1), ('seven', 1), ('chapter', 1), ('focus', 1), ('along', 1), ('attack', 1), ('vulnerability', 1)]
[('cachan', 2), ('created', 1), ('lmt', 1), ('joint', 1), ('laboratory', 1), ('école', 1), ('normale', 1), ('superieure', 1), ('de', 1), ('pierre', 1), ('marie', 1), ('curie', 1), ('paris', 1), ('university', 1), ('french', 1), ('research', 1), ('council', 1), ('cnrs', 1), ('department', 1), ('engineering', 1), ('science', 1), ('year', 1), ('marked', 1), ('th', 1), ('anniversary', 1)]
[('cyber', 3), ('book', 2), ('crime', 2), ('chapter', 2), ('written', 1), ('former', 1), ('nypd', 1), ('cop', 1), ('available', 1), ('discus', 1), ('hard', 1), ('question', 1), ('investigator', 1), ('asking', 1), ('begin', 1), ('introductory', 1), ('describes', 1), ('common', 1)]
[('data', 2), ('make', 1), ('sense', 1), ('enormous', 1), ('amount', 1), ('notion', 1), ('agile', 1), ('warehousing', 1), ('might', 1), ('sound', 1), ('tricky', 1), ('yield', 1), ('speed', 1), ('advantage', 1), ('cutting', 1), ('project', 1), ('cost', 1), ('half', 1), ('bring', 1), ('highly', 1), ('effective', 1), ('technique', 1)]
[('data', 1), ('mining', 1), ('application', 1), ('resource', 1), ('researcher', 1), ('professional', 1), ('understand', 1), ('wide', 1), ('use', 1), ('free', 1), ('software', 1), ('environment', 1), ('statistical', 1), ('computing', 1), ('graphic', 1), ('solving', 1), ('different', 1), ('problem', 1), ('industry', 1), ('widely', 1), ('used', 1)]
[('business', 3), ('model', 2), ('value', 1), ('creation', 1), ('provides', 1), ('thorough', 1), ('analysis', 1), ('constitutes', 1), ('unlike', 1), ('many', 1), ('book', 1), ('available', 1), ('text', 1), ('draw', 1), ('together', 1), ('theoretical', 1), ('empirical', 1), ('contribution', 1), ('leading', 1), ('academic', 1), ('scholar', 1)]
[('book', 2), ('security', 2), ('manager', 2), ('cover', 1), ('topic', 1), ('budding', 1), ('need', 1), ('know', 1), ('written', 1), ('responsible', 1), ('department', 1), ('mall', 1), ('office', 1), ('environment', 1), ('enterprise', 1), ('network', 1), ('individual', 1)]
[('precision', 2), ('modelling', 1), ('control', 1), ('system', 1), ('hysteresis', 1), ('cover', 1), ('piezoelectric', 1), ('smart', 1), ('material', 1), ('increasingly', 1), ('employed', 1), ('actuator', 1), ('engineering', 1), ('scanning', 1), ('probe', 1), ('microscope', 1), ('spms', 1), ('life', 1), ('science', 1)]
[('computer', 3), ('performance', 3), ('evaluation', 2), ('system', 1), ('prediction', 1), ('bridge', 1), ('gap', 1), ('academic', 1), ('professional', 1), ('analysis', 1), ('book', 1), ('make', 1), ('analytic', 1), ('simulation', 1), ('instrumentation', 1), ('based', 1), ('modeling', 1)]
[('social', 2), ('become', 2), ('level', 2), ('networking', 2), ('network', 1), ('particularly', 1), ('public', 1), ('one', 1), ('part', 1), ('fabric', 1), ('communicate', 1), ('collaborate', 1), ('society', 1), ('value', 1), ('micro', 1), ('personal', 1), ('macro', 1), ('outreach', 1), ('pervasive', 1)]
[('embedded', 3), ('system', 3), ('design', 2), ('computer', 1), ('component', 1), ('principle', 1), ('computing', 1), ('third', 1), ('edition', 1), ('present', 1), ('essential', 1), ('knowledge', 1), ('technology', 1), ('technique', 1), ('updated', 1), ('today', 1), ('method', 1), ('volume', 1), ('feature', 1), ('new', 1)]
[('ip', 2), ('theft', 2), ('threat', 1), ('economic', 1), ('espionage', 1), ('intellectual', 1), ('property', 1), ('global', 1), ('stealthy', 1), ('insidious', 1), ('increasingly', 1), ('common', 1), ('according', 1), ('commerce', 1), ('department', 1), ('estimated', 1), ('top', 1), ('billion', 1), ('annually', 1), ('cost', 1)]
[('search', 2), ('journey', 2), ('along', 2), ('box', 1), ('ten', 1), ('blue', 1), ('link', 1), ('exploration', 1), ('encounter', 1), ('way', 1), ('change', 1), ('seek', 1), ('order', 1), ('guide', 1), ('designer', 1), ('understand', 1), ('art', 1), ('science', 1)]
[('internet', 2), ('thing', 2), ('securing', 1), ('provides', 1), ('network', 1), ('cybersecurity', 1), ('researcher', 1), ('practitioner', 1), ('theoretical', 1), ('practical', 1), ('knowledge', 1), ('need', 1), ('know', 1), ('regarding', 1), ('security', 1), ('iot', 1), ('booming', 1), ('field', 1), ('moving', 1)]
[('security', 3), ('system', 3), ('design', 3), ('integrated', 2), ('nd', 1), ('edition', 1), ('recognized', 1), ('industry', 1), ('leading', 1), ('book', 1), ('subject', 1), ('explains', 1), ('fully', 1), ('tie', 1), ('together', 1), ('numerous', 1), ('subsystem', 1)]
[('computer', 3), ('security', 2), ('information', 1), ('handbook', 1), ('third', 1), ('edition', 1), ('provides', 1), ('current', 1), ('complete', 1), ('reference', 1), ('available', 1), ('volume', 1), ('book', 1), ('offer', 1), ('deep', 1), ('coverage', 1), ('extremely', 1), ('wide', 1), ('range', 1), ('issue', 1)]
[('enterprise', 2), ('web', 2), ('application', 2), ('architecting', 1), ('high', 1), ('performing', 1), ('scalable', 1), ('available', 1), ('provides', 1), ('depth', 1), ('insight', 1), ('technique', 1), ('achieving', 1), ('desired', 1), ('scalability', 1), ('availability', 1), ('performance', 1), ('quality', 1), ('goal', 1), ('book', 1)]
[('computer', 2), ('essential', 1), ('security', 1), ('provides', 1), ('vast', 1), ('home', 1), ('user', 1), ('small', 1), ('office', 1), ('market', 1), ('information', 1), ('know', 1), ('order', 1), ('understand', 1), ('risk', 1), ('computing', 1), ('internet', 1), ('protect', 1), ('tony', 1), ('bradley', 1)]
[('attack', 3), ('deadliest', 2), ('microsoft', 2), ('seven', 1), ('explores', 1), ('made', 1), ('software', 1), ('network', 1), ('impact', 1), ('confidentiality', 1), ('integrity', 1), ('availability', 1), ('closely', 1), ('guarded', 1), ('company', 1), ('secret', 1)]
[('business', 2), ('changing', 1), ('need', 1), ('prompted', 1), ('large', 1), ('company', 1), ('rethink', 1), ('enterprise', 1), ('today', 1), ('allow', 1), ('interaction', 1), ('customer', 1), ('partner', 1), ('employee', 1), ('touch', 1), ('point', 1), ('depth', 1), ('never', 1), ('thought', 1), ('previously', 1)]
[('data', 3), ('insight', 2), ('offer', 2), ('new', 1), ('way', 1), ('visualize', 1), ('make', 1), ('sense', 1), ('thought', 1), ('provoking', 1), ('visualization', 1), ('foster', 1), ('clearer', 1), ('comprehensive', 1), ('understanding', 1), ('book', 1), ('perspective', 1), ('different', 1)]
[('audio', 3), ('introduction', 2), ('analysis', 2), ('serf', 1), ('standalone', 1), ('providing', 1), ('theoretical', 1), ('background', 1), ('many', 1), ('state', 1), ('art', 1), ('technique', 1), ('cover', 1), ('essential', 1), ('theory', 1), ('necessary', 1), ('develop', 1), ('engineering', 1), ('application', 1)]
[('enterprise', 2), ('bi', 2), ('dw', 2), ('corporation', 1), ('governmental', 1), ('agency', 1), ('size', 1), ('embracing', 1), ('new', 1), ('generation', 1), ('scale', 1), ('business', 1), ('intelligence', 1), ('data', 1), ('warehousing', 1), ('often', 1), ('appoint', 1), ('single', 1), ('senior', 1), ('level', 1), ('individual', 1), ('serve', 1)]
[('risk', 2), ('collaboration', 1), ('cloud', 1), ('computing', 1), ('discus', 1), ('associated', 1), ('implementing', 1), ('technology', 1), ('across', 1), ('enterprise', 1), ('provides', 1), ('expert', 1), ('guidance', 1), ('manage', 1), ('policy', 1), ('change', 1), ('technical', 1), ('solution', 1), ('drawing', 1), ('upon', 1)]
[('metasploit', 2), ('toolkit', 1), ('penetration', 1), ('testing', 1), ('exploit', 1), ('development', 1), ('vulnerability', 1), ('research', 1), ('first', 1), ('book', 1), ('available', 1), ('framework', 1), ('msf', 1), ('attack', 1), ('platform', 1), ('choice', 1), ('fastest', 1), ('growing', 1), ('career', 1)]
[('engineering', 3), ('drawing', 2), ('british', 2), ('standard', 2), ('manual', 1), ('international', 1), ('fifth', 1), ('edition', 1), ('chronicle', 1), ('iso', 1), ('providing', 1), ('many', 1), ('example', 1), ('help', 1), ('reader', 1), ('understand', 1), ('translate', 1), ('specification', 1)]
[('model', 4), ('data', 2), ('metadata', 2), ('step', 2), ('pattern', 1), ('map', 1), ('present', 1), ('conceptual', 1), ('repository', 1), ('demonstrates', 1), ('true', 1), ('enterprise', 1), ('information', 1), ('technology', 1), ('industry', 1), ('provides', 1), ('description', 1)]
[('shortage', 2), ('everyone', 1), ('want', 1), ('privacy', 1), ('security', 1), ('online', 1), ('something', 1), ('computer', 1), ('user', 1), ('le', 1), ('given', 1), ('far', 1), ('personal', 1), ('data', 1), ('concerned', 1), ('good', 1), ('encryption', 1), ('software', 1), ('book', 1), ('article', 1)]
[('network', 3), ('transmission', 2), ('wireless', 2), ('local', 1), ('area', 1), ('lan', 1), ('intranet', 1), ('many', 1), ('piece', 1), ('hardare', 1), ('trying', 1), ('gain', 1), ('access', 1), ('medium', 1), ('time', 1), ('phone', 1), ('line', 1), ('coax', 1), ('etc', 1), ('cable', 1)]
[('intel', 2), ('author', 1), ('jim', 1), ('jeffers', 1), ('james', 1), ('reinders', 1), ('spent', 1), ('year', 1), ('helping', 1), ('educate', 1), ('customer', 1), ('prototype', 1), ('pre', 1), ('production', 1), ('hardware', 1), ('introduced', 1), ('first', 1), ('xeon', 1), ('phi', 1), ('coprocessor', 1), ('distilled', 1), ('experience', 1), ('coupled', 1)]
[('student', 2), ('building', 1), ('intelligent', 1), ('interactive', 1), ('tutor', 1), ('discus', 1), ('educational', 1), ('system', 1), ('ass', 1), ('knowledge', 1), ('adaptive', 1), ('learning', 1), ('need', 1), ('impact', 1), ('computer', 1), ('generally', 1), ('felt', 1), ('education', 1), ('due', 1), ('lack', 1), ('hardware', 1)]
[('matlab', 2), ('beyond', 1), ('simulation', 1), ('algorithm', 1), ('development', 1), ('many', 1), ('developer', 1), ('increasingly', 1), ('use', 1), ('even', 1), ('product', 1), ('deployment', 1), ('computationally', 1), ('heavy', 1), ('field', 1), ('often', 1), ('demand', 1), ('code', 1), ('run', 1), ('faster', 1), ('leveraging', 1), ('distributed', 1), ('parallelism', 1), ('graphic', 1)]
[('system', 2), ('every', 1), ('major', 1), ('enterprise', 1), ('significant', 1), ('installed', 1), ('base', 1), ('existing', 1), ('software', 1), ('reflect', 1), ('tangled', 1), ('architecture', 1), ('result', 1), ('decade', 1), ('patch', 1), ('failed', 1), ('replacement', 1), ('designed', 1), ('support', 1), ('business', 1)]
[('security', 2), ('control', 2), ('evaluation', 2), ('testing', 2), ('handbook', 2), ('assessment', 1), ('provides', 1), ('current', 1), ('developed', 1), ('approach', 1), ('prove', 1), ('functioning', 1), ('correctly', 1), ('today', 1), ('system', 1), ('show', 1)]
[('neural', 3), ('area', 2), ('network', 2), ('system', 1), ('robotics', 1), ('represents', 1), ('date', 1), ('development', 1), ('rapidly', 1), ('growing', 1), ('aplication', 1), ('hottest', 1), ('application', 1), ('technology', 1), ('book', 1), ('contains', 1)]
[('quantum', 6), ('information', 2), ('error', 2), ('correction', 2), ('processing', 1), ('self', 1), ('contained', 1), ('tutorial', 1), ('based', 1), ('introduction', 1), ('computation', 1), ('assuming', 1), ('knowledge', 1), ('mechanic', 1), ('written', 1)]
[('web', 2), ('information', 1), ('security', 1), ('professional', 1), ('keep', 1), ('hack', 1), ('attack', 1), ('exploit', 1), ('way', 1), ('hacking', 1), ('apps', 1), ('content', 1), ('book', 1), ('selected', 1), ('author', 1), ('mike', 1), ('shema', 1), ('make', 1), ('sure', 1), ('covering', 1)]
[('sysml', 3), ('system', 3), ('modeling', 3), ('practical', 2), ('guide', 2), ('language', 1), ('comprehensive', 1), ('software', 1), ('engineer', 1), ('provides', 1), ('advanced', 1), ('resource', 1), ('source', 1), ('describes', 1)]
[('web', 2), ('world', 2), ('search', 2), ('dragon', 1), ('offer', 1), ('perspective', 1), ('effect', 1), ('engine', 1), ('information', 1), ('availability', 1), ('present', 1), ('future', 1), ('blink', 1), ('eye', 1), ('turn', 1), ('millennium', 1), ('life', 1), ('work', 1)]
[('book', 2), ('real', 2), ('world', 2), ('botnet', 2), ('begin', 1), ('case', 1), ('attack', 1), ('underscore', 1), ('need', 1), ('action', 1), ('next', 1), ('explain', 1), ('fundamental', 1), ('using', 1), ('example', 1), ('chapter', 1), ('cover', 1), ('operate', 1), ('environment', 1)]
[('text', 3), ('entry', 3), ('system', 2), ('cover', 1), ('different', 1), ('aspect', 1), ('offer', 1), ('prospective', 1), ('researcher', 1), ('developer', 1), ('global', 1), ('guideline', 1), ('conducting', 1), ('research', 1), ('term', 1), ('design', 1), ('strategy', 1), ('evaluation', 1), ('methodology', 1), ('requirement', 1)]
[('web', 3), ('seven', 2), ('deadliest', 2), ('application', 2), ('attack', 1), ('highlight', 1), ('vagary', 1), ('security', 1), ('discussing', 1), ('vulnerability', 1), ('exploited', 1), ('attacker', 1), ('book', 1), ('pinpoint', 1), ('dangerous', 1), ('hack', 1), ('exploit', 1), ('specific', 1)]
[('security', 3), ('window', 2), ('information', 2), ('microsoft', 1), ('system', 1), ('handy', 1), ('guide', 1), ('feature', 1), ('beginner', 1), ('professional', 1), ('admin', 1), ('provides', 1), ('basic', 1), ('tool', 1), ('advanced', 1), ('protection', 1), ('network', 1), ('failure', 1)]
[('data', 2), ('science', 2), ('learn', 1), ('basic', 1), ('easy', 1), ('understand', 1), ('conceptual', 1), ('framework', 1), ('immediately', 1), ('practice', 1), ('using', 1), ('rapidminer', 1), ('platform', 1), ('whether', 1), ('brand', 1), ('new', 1), ('working', 1), ('tenth', 1), ('project', 1), ('book', 1), ('show', 1)]
[('clearly', 2), ('designer', 1), ('know', 1), ('yellow', 1), ('text', 1), ('presented', 1), ('blue', 1), ('background', 1), ('read', 1), ('easily', 1), ('many', 1), ('explain', 1), ('really', 1), ('best', 1), ('way', 1), ('help', 1), ('others', 1), ('see', 1), ('key', 1), ('pattern', 1), ('bunch', 1), ('data', 1)]
[('neural', 2), ('network', 2), ('book', 1), ('explores', 1), ('intuitive', 1), ('appeal', 1), ('genetic', 1), ('algorithm', 1), ('finance', 1), ('demonstrates', 1), ('used', 1), ('combination', 1), ('evolutionary', 1), ('computation', 1), ('outperform', 1), ('classical', 1), ('econometric', 1), ('method', 1), ('accuracy', 1)]
[('system', 3), ('biology', 1), ('concerned', 1), ('quantitative', 1), ('study', 1), ('complex', 1), ('biosystems', 1), ('molecular', 1), ('cellular', 1), ('tissue', 1), ('scale', 1), ('focus', 1), ('function', 1), ('whole', 1), ('rather', 1), ('individual', 1), ('part', 1), ('exciting', 1), ('new', 1), ('arena', 1)]
[('graphic', 3), ('gem', 2), ('newest', 1), ('volume', 1), ('series', 1), ('intended', 1), ('provide', 1), ('community', 1), ('set', 1), ('practical', 1), ('tool', 1), ('implementing', 1), ('new', 1), ('idea', 1), ('technique', 1), ('offer', 1), ('working', 1), ('solution', 1), ('real', 1), ('programming', 1)]
[('perfect', 1), ('reference', 1), ('multitasked', 1), ('sysadminthe', 1), ('microsoft', 1), ('window', 1), ('vista', 1), ('operating', 1), ('system', 1), ('offer', 1), ('several', 1), ('change', 1), ('improvement', 1), ('predecessor', 1), ('brings', 1), ('new', 1), ('redesigned', 1), ('interface', 1), ('improves', 1), ('many', 1)]
[('bitemporal', 2), ('data', 1), ('always', 1), ('important', 1), ('iso', 1), ('released', 1), ('sql', 1), ('standard', 1), ('supported', 1), ('currently', 1), ('among', 1), ('major', 1), ('dbms', 1), ('vendor', 1), ('oracle', 1), ('ibm', 1), ('teradata', 1), ('provide', 1), ('least', 1), ('functionality', 1)]
[('mpls', 3), ('network', 3), ('enabled', 2), ('enjoying', 1), ('tremendous', 1), ('growth', 1), ('practical', 1), ('information', 1), ('managing', 1), ('remained', 1), ('hard', 1), ('find', 1), ('management', 1), ('mib', 1), ('tool', 1), ('technique', 1), ('first', 1), ('book', 1), ('help', 1)]
[('learn', 2), ('essential', 1), ('capacity', 1), ('intelligence', 1), ('ability', 1), ('artificially', 1), ('intelligent', 1), ('system', 1), ('programmed', 1), ('every', 1), ('eventuality', 1), ('adapt', 1), ('changing', 1), ('environment', 1), ('condition', 1), ('biological', 1)]
[('make', 2), ('social', 1), ('network', 1), ('online', 1), ('community', 1), ('reshaping', 1), ('way', 1), ('communicate', 1), ('personal', 1), ('professional', 1), ('life', 1), ('succeed', 1), ('others', 1), ('fail', 1), ('draw', 1), ('user', 1), ('join', 1), ('keep', 1), ('coming', 1), ('back', 1)]
[('social', 3), ('seven', 2), ('deadliest', 2), ('network', 2), ('attack', 2), ('describes', 1), ('networking', 1), ('defend', 1), ('book', 1), ('pinpoint', 1), ('dangerous', 1), ('hack', 1), ('exploit', 1), ('specific', 1), ('facebook', 1), ('twitter', 1)]
[('compliance', 4), ('fisma', 3), ('mandated', 2), ('requirement', 2), ('comprehensive', 1), ('book', 1), ('instructs', 1), ('manager', 1), ('adhere', 1), ('federally', 1), ('handbook', 1), ('second', 1), ('edition', 1), ('explains', 1), ('federal', 1)]
[('design', 3), ('fpgas', 2), ('provides', 2), ('technique', 2), ('template', 2), ('using', 2), ('recipe', 1), ('rich', 1), ('toolbox', 1), ('solve', 1), ('practical', 1), ('every', 1), ('day', 1), ('problem', 1), ('modular', 1), ('structure', 1), ('level', 1), ('together', 1), ('functional', 1)]
[('manufacturing', 3), ('internet', 3), ('thing', 3), ('optimization', 1), ('system', 1), ('using', 1), ('extends', 1), ('iot', 1), ('field', 1), ('develop', 1), ('iomt', 1), ('architecture', 1), ('real', 1), ('time', 1), ('traceability', 1), ('visibility', 1)]
[('cortex', 3), ('designer', 1), ('guide', 1), ('microcontrollers', 1), ('give', 1), ('easy', 1), ('understand', 1), ('introduction', 1), ('concept', 1), ('required', 1), ('develop', 1), ('program', 1), ('based', 1), ('microcontroller', 1), ('book', 1), ('begin', 1), ('overview', 1), ('family', 1)]
[('diverse', 2), ('volume', 1), ('first', 1), ('comprehensive', 1), ('treatment', 1), ('algorithm', 1), ('architecture', 1), ('realization', 1), ('neural', 1), ('network', 1), ('system', 1), ('present', 1), ('technique', 1), ('method', 1), ('numerous', 1), ('area', 1), ('broad', 1), ('subject', 1), ('book', 1), ('cover', 1), ('major', 1)]
[('digital', 2), ('library', 2), ('tool', 2), ('build', 1), ('review', 1), ('knowledge', 1), ('construct', 1), ('maintain', 1), ('regardless', 1), ('size', 1), ('purpose', 1), ('resource', 1), ('individual', 1), ('agency', 1), ('institution', 1), ('wishing', 1), ('put', 1), ('powerful', 1), ('work', 1)]
[('security', 3), ('system', 3), ('management', 2), ('managing', 1), ('information', 1), ('offer', 1), ('focused', 1), ('coverage', 1), ('protect', 1), ('mission', 1), ('critical', 1), ('deploy', 1), ('id', 1), ('intrusion', 1), ('detection', 1), ('prevention', 1), ('computer', 1), ('forensics', 1), ('network', 1)]
[('usability', 3), ('testing', 3), ('essential', 2), ('begin', 2), ('provides', 1), ('reader', 1), ('tool', 1), ('technique', 1), ('needed', 1), ('advance', 1), ('knowledge', 1), ('area', 1), ('book', 1), ('presenting', 1), ('include', 1), ('focusing', 1)]
[('network', 3), ('illustrated', 2), ('tcp', 2), ('ip', 2), ('work', 2), ('modern', 1), ('second', 1), ('edition', 1), ('present', 1), ('explanation', 1), ('using', 1), ('consistent', 1), ('example', 1), ('working', 1), ('configuration', 1), ('includes', 1), ('server', 1), ('router', 1), ('workstation', 1)]
[('music', 3), ('guide', 2), ('engineering', 1), ('hand', 1), ('practical', 1), ('aspect', 1), ('electric', 1), ('electronic', 1), ('compelling', 1), ('essential', 1), ('reference', 1), ('anyone', 1), ('using', 1), ('choosing', 1), ('designing', 1), ('studying', 1), ('technology', 1), ('modern', 1)]
[('port', 4), ('used', 2), ('main', 1), ('link', 1), ('pc', 1), ('outside', 1), ('world', 1), ('centronic', 1), ('connecting', 1), ('printer', 1), ('r', 1), ('mouse', 1), ('game', 1), ('joystick', 1), ('book', 1), ('explores', 1), ('input', 1), ('output', 1), ('put', 1)]
[('source', 2), ('intelligence', 2), ('information', 2), ('algorithm', 1), ('automating', 1), ('open', 1), ('osint', 1), ('present', 1), ('gathering', 1), ('extraction', 1), ('actionable', 1), ('openly', 1), ('available', 1), ('including', 1), ('news', 1), ('broadcast', 1), ('public', 1), ('repository', 1)]
[('xml', 2), ('business', 2), ('become', 1), ('lingua', 1), ('franca', 1), ('representing', 1), ('data', 1), ('exchanging', 1), ('information', 1), ('partner', 1), ('application', 1), ('adding', 1), ('structure', 1), ('sometimes', 1), ('meaning', 1), ('text', 1), ('based', 1), ('document', 1), ('offer', 1), ('special', 1), ('challenge', 1)]
[('compliance', 2), ('regulatory', 1), ('standard', 1), ('handbook', 1), ('provides', 1), ('comprehensive', 1), ('methodology', 1), ('enabling', 1), ('staff', 1), ('charged', 1), ('security', 1), ('audit', 1), ('create', 1), ('sound', 1), ('framework', 1), ('allowing', 1), ('meet', 1), ('challenge', 1), ('way', 1), ('aligns', 1)]
[('mmwave', 2), ('massive', 2), ('mimo', 2), ('paradigm', 1), ('first', 1), ('book', 1), ('kind', 1), ('hinge', 1), ('together', 1), ('related', 1), ('discussion', 1), ('umbrella', 1), ('network', 1), ('new', 1), ('networking', 1), ('scenario', 1), ('identified', 1), ('along', 1), ('fundamental', 1), ('design', 1)]
[('hand', 3), ('xbee', 2), ('step', 2), ('experiment', 2), ('practical', 1), ('knowledge', 1), ('need', 1), ('set', 1), ('deploy', 1), ('module', 1), ('series', 1), ('lab', 1), ('manual', 1), ('take', 1), ('reader', 1), ('range', 1), ('using', 1), ('approach', 1), ('section', 1)]
[('collection', 2), ('work', 2), ('mathematical', 1), ('logic', 1), ('leading', 1), ('figure', 1), ('th', 1), ('century', 1), ('science', 1), ('turing', 1), ('intended', 1), ('include', 1), ('mature', 1), ('scientific', 1), ('writing', 1), ('including', 1), ('substantial', 1), ('quantity', 1), ('unpublished', 1)]
[('mail', 2), ('virus', 2), ('chapter', 2), ('protection', 1), ('handbook', 1), ('organised', 1), ('around', 1), ('specific', 1), ('client', 1), ('server', 1), ('environment', 1), ('anti', 1), ('software', 1), ('first', 1), ('eight', 1), ('useful', 1), ('user', 1), ('network', 1), ('professional', 1), ('later', 1), ('deal', 1), ('topic', 1), ('relevant', 1)]
[('transaction', 2), ('processing', 2), ('system', 2), ('principle', 1), ('comprehensive', 1), ('guide', 1), ('developing', 1), ('application', 1), ('designing', 1), ('evaluating', 1), ('engineering', 1), ('product', 1), ('book', 1), ('provides', 1), ('detailed', 1), ('discussion', 1), ('internal', 1), ('working', 1)]
[('wireless', 3), ('seven', 2), ('technology', 2), ('attack', 2), ('deadliest', 1), ('provides', 1), ('comprehensive', 1), ('view', 1), ('different', 1), ('popular', 1), ('protocol', 1), ('system', 1), ('book', 1), ('pinpoint', 1), ('dangerous', 1), ('hack', 1), ('exploit', 1), ('specific', 1)]
[('orcad', 3), ('design', 3), ('capture', 2), ('book', 1), ('provides', 1), ('instruction', 1), ('use', 1), ('suite', 1), ('manufacture', 1), ('printed', 1), ('circuit', 1), ('board', 1), ('primary', 1), ('goal', 1), ('show', 1), ('reader', 1), ('pcb', 1), ('using', 1), ('editor', 1), ('used', 1), ('build', 1)]
[('equipment', 3), ('digital', 2), ('image', 2), ('photography', 1), ('notably', 1), ('slr', 1), ('camera', 1), ('digiscopes', 1), ('become', 1), ('increasingly', 1), ('affordable', 1), ('birdwatchers', 1), ('turning', 1), ('hand', 1), ('capturing', 1), ('favorite', 1), ('subject', 1), ('half', 1), ('battle', 1), ('achieving', 1), ('stunning', 1), ('bird', 1), ('good', 1), ('knowledge', 1), ('understanding', 1)]
[('wedding', 2), ('attend', 1), ('see', 1), ('professional', 1), ('photographer', 1), ('host', 1), ('happy', 1), ('couple', 1), ('friend', 1), ('family', 1), ('camera', 1), ('hand', 1), ('looking', 1), ('capture', 1), ('definitive', 1), ('shot', 1), ('perfect', 1), ('day', 1), ('portability', 1), ('adaptability', 1), ('digital', 1), ('photography', 1), ('opened', 1), ('world', 1), ('shooting', 1), ('special', 1)]
[('biomechanics', 2), ('routledge', 1), ('handbook', 1), ('human', 1), ('movement', 1), ('science', 1), ('landmark', 1), ('work', 1), ('reference', 1), ('available', 1), ('concise', 1), ('paperback', 1), ('edition', 1), ('offer', 1), ('comprehensive', 1), ('depth', 1), ('survey', 1), ('current', 1), ('theory', 1), ('research', 1), ('practice', 1), ('sport', 1), ('exercise', 1), ('clinical', 1), ('established', 1), ('emerging', 1), ('context', 1)]
[('blog', 2), ('publishing', 2), ('application', 2), ('user', 2), ('take', 1), ('advantage', 1), ('million', 1), ('worldwide', 1), ('wordpress', 1), ('world', 1), ('guide', 1), ('provides', 1), ('hosted', 1), ('blogging', 1), ('service', 1), ('worldpress', 1)]
[('user', 2), ('facebook', 1), ('far', 1), ('popular', 1), ('social', 1), ('networking', 1), ('site', 1), ('friendly', 1), ('service', 1), ('think', 1), ('leaf', 1), ('many', 1), ('scratching', 1), ('head', 1), ('even', 1), ('fundamental', 1), ('feature', 1), ('difference', 1)]
[('digital', 2), ('revolution', 2), ('swept', 1), ('business', 1), ('world', 1), ('matter', 1), ('good', 1), ('job', 1), ('technical', 1), ('tool', 1), ('keep', 1), ('left', 1), ('behind', 1), ('luckily', 1), ('medium', 1)]
[('web', 2), ('markup', 2), ('language', 2), ('next', 1), ('developer', 1), ('want', 1), ('creative', 1), ('competitive', 1), ('site', 1), ('newest', 1), ('revision', 1), ('html', 1), ('hypertext', 1), ('primary', 1), ('content', 1), ('major', 1), ('update', 1), ('incorporates', 1), ('video', 1), ('playback', 1)]
[('microsoft', 2), ('excel', 1), ('overwhelming', 1), ('intimidating', 1), ('product', 1), ('use', 1), ('armed', 1), ('right', 1), ('knowledge', 1), ('anyone', 1), ('master', 1), ('basic', 1), ('versatile', 1), ('software', 1), ('packed', 1), ('full', 1), ('color', 1), ('screen', 1), ('shot', 1), ('illustration', 1), ('idiot', 1), ('guide', 1)]
[('digital', 2), ('movie', 2), ('join', 1), ('revolution', 1), ('availability', 1), ('affordability', 1), ('making', 1), ('equipment', 1), ('easier', 1), ('aspiring', 1), ('filmmaker', 1), ('create', 1), ('always', 1), ('wanted', 1), ('make', 1), ('information', 1), ('creating', 1)]
[('computer', 2), ('coding', 1), ('language', 1), ('hardware', 1), ('cyberbullying', 1), ('gaming', 1), ('comprehensive', 1), ('homework', 1), ('helper', 1), ('kid', 1), ('parent', 1), ('cover', 1), ('essential', 1), ('science', 1), ('unique', 1), ('visual', 1), ('study', 1), ('guide', 1), ('examines', 1), ('technical', 1), ('aspect', 1)]
[('explores', 2), ('providing', 1), ('powerful', 1), ('analysis', 1), ('circumstance', 1), ('contribute', 1), ('abuse', 1), ('victimization', 1), ('woman', 1), ('child', 1), ('volume', 1), ('international', 1), ('policy', 1), ('strategy', 1), ('used', 1), ('combat', 1), ('crime', 1), ('beginning', 1), ('discussion', 1), ('definition', 1), ('nature', 1), ('scope', 1), ('human', 1), ('trafficking', 1), ('examines', 1), ('environmental', 1), ('influence', 1)]
[('upon', 2), ('global', 2), ('event', 1), ('september', 1), ('profound', 1), ('impact', 1), ('individual', 1), ('institution', 1), ('government', 1), ('trade', 1), ('reverberation', 1), ('focused', 1), ('act', 1), ('terrorism', 1), ('manifest', 1), ('stringent', 1), ('logistics', 1), ('documentary', 1), ('requirement', 1), ('regulation', 1), ('single', 1), ('source', 1), ('compliance', 1), ('security', 1), ('managing', 1)]
[('accountability', 5), ('book', 1), ('offer', 1), ('finely', 1), ('detailed', 1), ('richly', 1), ('informed', 1), ('consideration', 1), ('government', 1), ('contemporary', 1), ('world', 1), ('governance', 1), ('twenty', 1), ('five', 1), ('leading', 1), ('expert', 1), ('cover', 1), ('varying', 1), ('aspect', 1), ('movement', 1), ('including', 1), ('multiple', 1), ('competing', 1), ('measuring', 1), ('democratic', 1)]
[('government', 3), ('industry', 2), ('charles', 1), ('mitchell', 1), ('reveals', 1), ('innovative', 1), ('often', 1), ('hapless', 1), ('response', 1), ('growing', 1), ('cybersecurity', 1), ('threat', 1), ('examines', 1), ('internal', 1), ('power', 1), ('struggle', 1), ('paralysis', 1), ('capitol', 1), ('hill', 1), ('desperate', 1), ('effort', 1), ('stay', 1), ('ahead', 1), ('bad', 1), ('guy', 1)]
[('crime', 3), ('white', 3), ('collar', 3), ('criminal', 2), ('book', 1), ('cover', 1), ('private', 1), ('investigation', 1), ('suspicion', 1), ('financial', 1), ('start', 1), ('defining', 1), ('describing', 1), ('present', 1), ('general', 1), ('theory', 1), ('including', 1), ('economical', 1), ('organizational', 1), ('behavioral', 1), ('dimension', 1), ('author', 1), ('go', 1), ('describe', 1), ('apply', 1)]
[('cyberculture', 2), ('theorist', 1), ('ideal', 1), ('starting', 1), ('point', 1), ('anyone', 1), ('wanting', 1), ('understand', 1), ('theorise', 1), ('form', 1), ('survey', 1), ('cluster', 1), ('work', 1), ('explore', 1), ('culture', 1), ('cyberspace', 1), ('internet', 1), ('information', 1), ('society', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('approach', 3), ('management', 3), ('system', 2), ('thinking', 2), ('strategic', 2), ('planning', 2), ('easy', 1), ('understand', 1), ('present', 1), ('elegantly', 1), ('simple', 1), ('book', 1), ('provides', 1), ('unique', 1), ('place', 1), ('equal', 1), ('emphasis', 1), ('strategy', 1), ('change', 1), ('process', 1), ('support', 1), ('customer', 1), ('satisfaction', 1)]
[('terrorist', 3), ('written', 1), ('professional', 1), ('policymakers', 1), ('working', 1), ('forefront', 1), ('anti', 1), ('effort', 1), ('volume', 1), ('cover', 1), ('weapon', 1), ('mass', 1), ('destruction', 1), ('jihadist', 1), ('historically', 1), ('used', 1), ('likely', 1), ('use', 1), ('future', 1), ('leading', 1), ('international', 1), ('expert', 1), ('examine', 1), ('ideology', 1), ('strategy', 1), ('target', 1), ('selection', 1), ('describe', 1), ('chemical', 1)]
[('bringing', 1), ('together', 1), ('contribution', 1), ('international', 1), ('expert', 1), ('book', 1), ('demonstrates', 1), ('way', 1), ('recognize', 1), ('reduce', 1), ('regional', 1), ('infrastructure', 1), ('vulnerability', 1), ('building', 1), ('secure', 1), ('network', 1), ('collaboration', 1), ('within', 1), ('different', 1), ('area', 1), ('world', 1), ('section', 1), ('america', 1), ('africa', 1), ('middle', 1), ('east', 1), ('europe', 1), ('asia', 1), ('pacific', 1), ('rim', 1), ('examines', 1)]
[('change', 2), ('policing', 2), ('sweeping', 1), ('altered', 1), ('cultural', 1), ('landscape', 1), ('china', 1), ('volume', 1), ('provides', 1), ('insightful', 1), ('glimpse', 1), ('midst', 1), ('beginning', 1), ('historical', 1), ('account', 1), ('police', 1), ('reform', 1), ('region', 1), ('discus', 1), ('difficulty', 1), ('encountered', 1), ('trying', 1), ('understand', 1), ('chinese', 1), ('demonstrating', 1), ('old', 1), ('ideology', 1)]
[('edition', 2), ('new', 2), ('third', 1), ('popular', 1), ('volume', 1), ('continues', 1), ('supply', 1), ('date', 1), ('nut', 1), ('bolt', 1), ('learning', 1), ('tool', 1), ('student', 1), ('everyday', 1), ('reference', 1), ('investigative', 1), ('professional', 1), ('level', 1), ('relevant', 1), ('add', 1), ('chapter', 1), ('death', 1), ('terrorism', 1), ('investigation', 1), ('several', 1), ('section', 1), ('including', 1), ('insurance', 1), ('fraud', 1), ('fire', 1)]
[('folsom', 3), ('collection', 2), ('artifact', 2), ('volume', 1), ('extensive', 1), ('chapter', 1), ('discussing', 1), ('site', 1), ('innovative', 1), ('experiment', 1), ('undertaken', 1), ('understand', 1), ('technology', 1), ('lifeways', 1), ('public', 1), ('private', 1), ('brought', 1), ('together', 1), ('professional', 1), ('amateur', 1), ('lithic', 1), ('analyst', 1), ('knappers', 1), ('attempt', 1), ('determine', 1)]
[('chaitin', 2), ('mathematics', 2), ('dr', 1), ('gregory', 1), ('world', 1), ('leading', 1), ('mathematician', 1), ('best', 1), ('known', 1), ('discovery', 1), ('remarkable', 1), ('ω', 1), ('number', 1), ('concrete', 1), ('example', 1), ('irreducible', 1), ('complexity', 1), ('pure', 1), ('show', 1), ('infinitely', 1), ('complex', 1), ('volume', 1), ('discus', 1), ('evolution', 1), ('idea', 1), ('tracing', 1), ('back', 1), ('leibniz', 1), ('borel', 1)]
[('graph', 2), ('grammar', 2), ('area', 2), ('development', 2), ('originated', 1), ('late', 1), ('motivated', 1), ('consideration', 1), ('pattern', 1), ('recognition', 1), ('compiler', 1), ('construction', 1), ('list', 1), ('interacted', 1), ('grown', 1), ('quite', 1), ('impressively', 1), ('besides', 1), ('aforementioned', 1), ('includes', 1), ('software', 1), ('specification', 1), ('vlsi', 1), ('layout', 1)]
[('field', 2), ('significant', 1), ('advance', 1), ('computer', 1), ('vision', 1), ('pattern', 1), ('recognition', 1), ('application', 1), ('last', 1), ('year', 1), ('reflect', 1), ('strong', 1), ('growing', 1), ('interest', 1), ('many', 1), ('opportunity', 1), ('challenge', 1), ('offer', 1), ('second', 1), ('edition', 1), ('handbook', 1), ('represents', 1), ('latest', 1), ('progress', 1), ('updated', 1), ('knowledge', 1), ('dynamic', 1)]
[('contains', 2), ('analysis', 2), ('book', 1), ('article', 1), ('written', 1), ('expert', 1), ('wide', 1), ('range', 1), ('topic', 1), ('associated', 1), ('management', 1), ('biological', 1), ('information', 1), ('molecular', 1), ('level', 1), ('chapter', 1), ('rna', 1), ('protein', 1), ('structure', 1), ('dna', 1), ('computing', 1), ('sequence', 1), ('mapping', 1), ('genome', 1), ('comparison', 1), ('gene', 1), ('expression', 1), ('data', 1), ('mining', 1), ('metabolic', 1), ('network', 1), ('modeling', 1)]
[('software', 3), ('system', 3), ('level', 2), ('invade', 1), ('every', 1), ('area', 1), ('daily', 1), ('living', 1), ('yet', 1), ('still', 1), ('struggle', 1), ('build', 1), ('really', 1), ('rely', 1), ('want', 1), ('work', 1), ('need', 1), ('grip', 1), ('way', 1), ('evolves', 1), ('book', 1), ('equip', 1), ('reader', 1), ('sound', 1), ('understanding', 1), ('maintenance', 1), ('affect', 1)]
[('automaton', 3), ('book', 2), ('theory', 2), ('topic', 2), ('although', 1), ('dealing', 1), ('algebraic', 1), ('content', 1), ('consist', 1), ('mainly', 1), ('krohn', 1), ('rhodes', 1), ('related', 1), ('present', 1), ('rather', 1), ('different', 1), ('example', 1), ('automorphism', 1), ('group', 1), ('partially', 1), ('ordered', 1), ('set', 1), ('systematically', 1), ('discussed', 1), ('moreover', 1), ('operation', 1)]
[('time', 3), ('database', 3), ('mining', 3), ('series', 2), ('data', 2), ('book', 2), ('adding', 1), ('dimension', 1), ('real', 1), ('world', 1), ('produce', 1), ('tsdb', 1), ('introduces', 1), ('new', 1), ('aspect', 1), ('difficulty', 1), ('knowledge', 1), ('discovery', 1), ('cover', 1), ('state', 1), ('art', 1), ('methodology', 1), ('novel', 1), ('method', 1), ('presented', 1), ('include', 1), ('technique', 1), ('efficient', 1)]
[('graph', 4), ('new', 2), ('representation', 2), ('data', 2), ('book', 1), ('describes', 1), ('exciting', 1), ('opportunity', 1), ('utilizing', 1), ('robust', 1), ('common', 1), ('machine', 1), ('learning', 1), ('algorithm', 1), ('model', 1), ('additional', 1), ('information', 1), ('often', 1), ('present', 1), ('commonly', 1), ('used', 1), ('vector', 1), ('use', 1), ('distance', 1), ('relatively', 1), ('approach', 1), ('determining', 1)]
[('knowledge', 2), ('grid', 1), ('intelligent', 1), ('sustainable', 1), ('interconnection', 1), ('environment', 1), ('enables', 1), ('machine', 1), ('effectively', 1), ('capture', 1), ('publish', 1), ('share', 1), ('manage', 1), ('resource', 1), ('provides', 1), ('appropriate', 1), ('demand', 1), ('service', 1), ('support', 1), ('scientific', 1), ('research', 1), ('technological', 1), ('innovation', 1), ('cooperative', 1), ('teamwork', 1), ('problem', 1), ('solving', 1), ('decision', 1)]
[('information', 2), ('technology', 2), ('rapid', 1), ('growth', 1), ('adoption', 1), ('diffusion', 1), ('important', 1), ('implication', 1), ('practitioner', 1), ('academic', 1), ('policy', 1), ('maker', 1), ('widespread', 1), ('use', 1), ('challenging', 1), ('traditional', 1), ('business', 1), ('model', 1), ('reshaping', 1), ('socio', 1), ('economic', 1), ('paradigm', 1), ('promoting', 1), ('new', 1), ('social', 1), ('relation', 1), ('job', 1), ('working', 1)]
[('crm', 2), ('handbook', 1), ('provides', 1), ('detailed', 1), ('description', 1), ('analysis', 1), ('concept', 1), ('process', 1), ('technology', 1), ('used', 1), ('development', 1), ('implementation', 1), ('effective', 1), ('customer', 1), ('relationship', 1), ('strategy', 1), ('take', 1), ('reader', 1), ('evolution', 1), ('early', 1), ('beginning', 1), ('today', 1), ('sophisticated', 1), ('data', 1), ('warehouse', 1), ('based', 1), ('system', 1), ('illustration', 1)]
[('derivative', 2), ('trading', 2), ('algorithm', 1), ('provides', 1), ('unique', 1), ('expert', 1), ('overview', 1), ('abstraction', 1), ('coding', 1), ('method', 1), ('support', 1), ('real', 1), ('world', 1), ('written', 1), ('industry', 1), ('professional', 1), ('extensive', 1), ('experience', 1), ('large', 1), ('scale', 1), ('operation', 1), ('describes', 1), ('fundamental', 1), ('library', 1), ('code', 1), ('structure', 1), ('innovative', 1), ('advanced', 1), ('solution', 1), ('thorny', 1), ('issue', 1)]
[('edition', 2), ('engineer', 2), ('successor', 1), ('first', 1), ('updated', 1), ('revised', 1), ('book', 1), ('companion', 1), ('guide', 1), ('student', 1), ('alike', 1), ('specifically', 1), ('software', 1), ('design', 1), ('reliable', 1), ('code', 1), ('succinct', 1), ('mathematically', 1), ('rigorous', 1), ('covering', 1), ('foundation', 1), ('computer', 1), ('scientist', 1), ('mathematician', 1), ('interest', 1), ('algorithm', 1), ('besides', 1)]
[('prolog', 2), ('put', 1), ('forward', 1), ('alternative', 1), ('proposal', 1), ('difficulty', 1), ('faced', 1), ('main', 1), ('research', 1), ('area', 1), ('parallel', 1), ('logic', 1), ('programming', 1), ('studied', 1), ('provides', 1), ('advantage', 1), ('guarded', 1), ('horn', 1), ('clause', 1), ('retaining', 1), ('know', 1), ('non', 1), ('determinism', 1), ('required', 1), ('monograph', 1), ('present', 1), ('tree', 1), ('model', 1), ('implementation', 1)]
[('design', 2), ('human', 2), ('learn', 1), ('create', 1), ('seamless', 1), ('backed', 1), ('responsible', 1), ('understanding', 1), ('mind', 1), ('book', 1), ('examines', 1), ('behavior', 1), ('used', 1), ('integrate', 1), ('product', 1), ('lifestyle', 1), ('rather', 1), ('interrupt', 1), ('make', 1), ('decision', 1), ('good', 1)]
[('ee', 2), ('jsp', 2), ('compliant', 1), ('pro', 1), ('latest', 1), ('first', 1), ('book', 1), ('contains', 1), ('new', 1), ('platform', 1), ('cover', 1), ('integration', 1), ('use', 1), ('open', 1), ('source', 1), ('project', 1), ('apache', 1), ('strut', 1), ('ant', 1), ('xdoclet', 1), ('junit', 1), ('cactus', 1), ('includes', 1)]
[('book', 1), ('cover', 1), ('everything', 1), ('need', 1), ('know', 1), ('write', 1), ('professional', 1), ('level', 1), ('cryptographic', 1), ('code', 1), ('expanded', 1), ('improved', 1), ('second', 1), ('edition', 1), ('includes', 1), ('page', 1), ('additional', 1), ('material', 1), ('numerous', 1), ('improvement', 1), ('original', 1), ('text', 1), ('chapter', 1)]
[('book', 3), ('android', 2), ('development', 2), ('learn', 1), ('java', 1), ('third', 1), ('edition', 1), ('update', 1), ('strong', 1), ('selling', 1), ('includes', 1), ('primer', 1), ('app', 1), ('chapter', 1), ('appendix', 1), ('distributed', 1), ('rsquo', 1), ('code', 1), ('archive', 1), ('teach', 1)]
[('android', 4), ('game', 3), ('beginning', 1), ('development', 1), ('unique', 1), ('example', 1), ('driven', 1), ('book', 1), ('today', 1), ('app', 1), ('developer', 1), ('want', 1), ('learn', 1), ('build', 1), ('apps', 1), ('run', 1), ('latest', 1), ('kitkat', 1), ('platform', 1), ('using', 1), ('java', 1), ('opengl', 1), ('e', 1)]
[('sql', 6), ('database', 2), ('beginning', 1), ('performance', 1), ('oriented', 1), ('introduction', 1), ('language', 1), ('underlying', 1), ('microsoft', 1), ('server', 1), ('engine', 1), ('essential', 1), ('writing', 1), ('statement', 1), ('data', 1), ('foundation', 1)]
[('learn', 2), ('io', 2), ('useful', 2), ('app', 1), ('development', 1), ('rapid', 1), ('tutorial', 1), ('reference', 1), ('quickly', 1), ('speed', 1), ('swift', 1), ('cocoa', 1), ('touch', 1), ('sdk', 1), ('getting', 1), ('started', 1), ('guide', 1), ('building', 1), ('apps', 1), ('best', 1), ('practice', 1)]
[('genetic', 2), ('algorithm', 2), ('java', 2), ('brief', 2), ('step', 2), ('basic', 1), ('introduction', 1), ('solving', 1), ('problem', 1), ('using', 1), ('working', 1), ('project', 1), ('solution', 1), ('written', 1), ('programming', 1), ('language', 1), ('book', 1), ('guide', 1), ('various', 1)]
[('lt', 8), ('gt', 8), ('strong', 4), ('em', 4), ('learn', 1), ('javafx', 1), ('show', 1), ('start', 1), ('developing', 1), ('rich', 1), ('client', 1), ('desktop', 1), ('application', 1), ('using', 1), ('java', 1), ('skill', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1)]
[('numerical', 3), ('python', 3), ('robert', 1), ('johansson', 1), ('show', 1), ('leverage', 1), ('mathematical', 1), ('module', 1), ('standard', 1), ('library', 1), ('popular', 1), ('open', 1), ('source', 1), ('package', 1), ('numpy', 1), ('fipy', 1), ('matplotlib', 1), ('numerically', 1)]
[('machine', 2), ('application', 2), ('support', 1), ('vector', 1), ('svms', 1), ('among', 1), ('important', 1), ('recent', 1), ('development', 1), ('pattern', 1), ('recognition', 1), ('statistical', 1), ('learning', 1), ('found', 1), ('range', 1), ('various', 1), ('field', 1), ('including', 1), ('biology', 1), ('medicine', 1), ('biomedical', 1), ('researcher', 1), ('often', 1), ('experience', 1), ('difficulty', 1), ('grasping', 1), ('theory', 1)]
[('communication', 4), ('increasing', 2), ('optical', 2), ('wireless', 2), ('tendency', 1), ('integrate', 1), ('satisfy', 1), ('continuously', 1), ('emerging', 1), ('new', 1), ('data', 1), ('demand', 1), ('thus', 1), ('integrated', 1), ('access', 1), ('network', 1), ('transmission', 1), ('system', 1), ('led', 1), ('based', 1), ('visible', 1), ('light', 1), ('attracting', 1), ('research', 1), ('interest', 1), ('digital', 1)]
[('cyber', 2), ('provides', 2), ('data', 2), ('science', 2), ('technique', 2), ('security', 1), ('matter', 1), ('rapidly', 1), ('growing', 1), ('importance', 1), ('industry', 1), ('government', 1), ('book', 1), ('insight', 1), ('range', 1), ('addressing', 1), ('pressing', 1), ('concern', 1), ('application', 1), ('statistical', 1), ('broader', 1), ('exciting', 1), ('growth', 1), ('area', 1), ('design', 1), ('defence', 1), ('network', 1), ('connected', 1)]
[('challenging', 2), ('image', 2), ('processing', 2), ('analysis', 2), ('textbook', 1), ('guide', 1), ('reader', 1), ('first', 1), ('step', 1), ('world', 1), ('mimicking', 1), ('human', 1), ('vision', 1), ('computational', 1), ('tool', 1), ('technique', 1), ('pertaining', 1), ('field', 1), ('today', 1), ('theoretical', 1), ('applied', 1), ('meet', 1), ('complex', 1), ('problem', 1), ('primer', 1), ('confined', 1)]
[('finite', 2), ('element', 2), ('software', 2), ('theory', 2), ('young', 1), ('engineer', 1), ('often', 1), ('required', 1), ('utilize', 1), ('commercial', 1), ('without', 1), ('course', 1), ('lead', 1), ('computer', 1), ('aided', 1), ('design', 1), ('error', 1), ('book', 1), ('outline', 1), ('basic', 1), ('minimum', 1), ('mathematics', 1), ('phase', 1), ('structured', 1), ('within', 1), ('typical', 1), ('importance', 1), ('estimating', 1)]
[('mathematical', 2), ('book', 1), ('provides', 1), ('fundamental', 1), ('linear', 1), ('algebra', 1), ('practicers', 1), ('computer', 1), ('vision', 1), ('machine', 1), ('learning', 1), ('robotics', 1), ('applied', 1), ('mathematics', 1), ('electrical', 1), ('engineering', 1), ('assuming', 1), ('knowledge', 1), ('calculus', 1), ('author', 1), ('develop', 1), ('rigorous', 1), ('yet', 1), ('earth', 1), ('manner', 1), ('theory', 1), ('behind', 1), ('concept', 1), ('vector', 1), ('space', 1)]
[('cyber', 3), ('often', 2), ('risk', 2), ('security', 1), ('thought', 1), ('domain', 1), ('specialist', 1), ('professional', 1), ('found', 1), ('across', 1), ('within', 1), ('organisation', 1), ('unfortunately', 1), ('many', 1), ('manager', 1), ('outside', 1), ('feel', 1), ('ill', 1), ('equipped', 1), ('deal', 1), ('use', 1), ('jargon', 1), ('make', 1), ('subject', 1), ('especially', 1), ('hard', 1), ('understand', 1), ('reason', 1), ('threat', 1)]
[('need', 2), ('security', 2), ('book', 2), ('software', 1), ('developer', 1), ('worry', 1), ('never', 1), ('clear', 1), ('guidance', 1), ('safe', 1), ('coding', 1), ('practice', 1), ('exactly', 1), ('delivers', 1), ('delve', 1), ('deep', 1), ('theory', 1), ('rant', 1), ('politics', 1)]
[('book', 3), ('reader', 2), ('might', 1), ('able', 1), ('build', 1), ('next', 1), ('mar', 1), ('rover', 1), ('first', 1), ('java', 1), ('robotics', 1), ('biggest', 1), ('selling', 1), ('point', 1), ('show', 1), ('combine', 1), ('power', 1), ('pc', 1), ('robust', 1)]
[('java', 3), ('edition', 2), ('book', 2), ('fully', 1), ('updated', 1), ('platform', 1), ('standard', 1), ('version', 1), ('third', 1), ('praised', 1), ('stop', 1), ('resource', 1), ('serious', 1), ('developer', 1), ('show', 1), ('part', 1), ('swing', 1), ('api', 1), ('use', 1), ('daily', 1), ('create', 1)]
[('wireless', 3), ('new', 2), ('broadband', 2), ('timely', 1), ('edition', 1), ('cover', 1), ('technological', 1), ('change', 1), ('access', 1), ('including', 1), ('competing', 1), ('standard', 1), ('wimax', 1), ('mobile', 1), ('entertainment', 1), ('data', 1), ('backup', 1), ('system', 1), ('show', 1), ('operator', 1), ('plan', 1), ('network', 1)]
[('dom', 2), ('scripting', 2), ('web', 2), ('vital', 1), ('technique', 1), ('developer', 1), ('designer', 1), ('learn', 1), ('master', 1), ('order', 1), ('add', 1), ('dynamic', 1), ('application', 1), ('animation', 1), ('map', 1), ('drag', 1), ('drop', 1), ('book', 1), ('offer', 1), ('comprehensive', 1), ('coverage', 1), ('advanced', 1)]
[('certified', 2), ('written', 1), ('microsoft', 1), ('system', 1), ('engineer', 1), ('solution', 1), ('developerbased', 1), ('need', 1), ('biztalk', 1), ('developer', 1), ('communityincludes', 1), ('example', 1), ('real', 1), ('world', 1), ('implementation', 1)]
[('data', 2), ('organization', 1), ('expected', 1), ('spend', 1), ('billion', 1), ('business', 1), ('intelligence', 1), ('initiative', 1), ('relational', 1), ('database', 1), ('time', 1), ('start', 1), ('getting', 1), ('value', 1), ('organizational', 1), ('level', 1), ('microsoft', 1), ('host', 1)]
[('java', 1), ('landscape', 1), ('littered', 1), ('library', 1), ('tool', 1), ('specification', 1), ('lacking', 1), ('expertise', 1), ('fuse', 1), ('solution', 1), ('real', 1), ('world', 1), ('problem', 1), ('pattern', 1), ('intellectual', 1), ('mortar', 1), ('ee', 1), ('software', 1)]
[('replication', 3), ('sql', 2), ('server', 2), ('pro', 1), ('microsoft', 1), ('database', 1), ('developer', 1), ('administrator', 1), ('want', 1), ('learn', 1), ('different', 1), ('type', 1), ('best', 1), ('suited', 1), ('book', 1), ('cover', 1), ('advanced', 1), ('topic', 1)]
[('net', 3), ('framework', 3), ('micro', 2), ('small', 2), ('microsoft', 1), ('efficient', 1), ('runtime', 1), ('environment', 1), ('used', 1), ('run', 1), ('managed', 1), ('code', 1), ('device', 1), ('resource', 1), ('constrained', 1), ('window', 1), ('ce', 1), ('compact', 1), ('expert', 1), ('teach', 1)]
[('processmaker', 2), ('use', 1), ('practical', 1), ('hand', 1), ('guide', 1), ('started', 1), ('book', 1), ('provides', 1), ('clear', 1), ('step', 1), ('walk', 1), ('set', 1), ('system', 1), ('make', 1), ('process', 1), ('run', 1), ('faster', 1), ('smarter', 1), ('model', 1), ('build', 1), ('complete', 1)]
[('wwii', 1), ('era', 1), ('tank', 1), ('teach', 1), ('design', 1), ('small', 1), ('blue', 1), ('flower', 1), ('tell', 1), ('audience', 1), ('drunk', 1), ('french', 1), ('marathon', 1), ('runner', 1), ('show', 1), ('software', 1), ('chapter', 1), ('story', 1), ('learn', 1), ('way', 1), ('ux', 1), ('influenced', 1)]
[('fast', 3), ('data', 2), ('build', 1), ('modern', 1), ('warehouse', 1), ('microsoft', 1), ('azure', 1), ('platform', 1), ('flexible', 1), ('adaptable', 1), ('snap', 1), ('together', 1), ('reconfigure', 1), ('delivering', 1), ('result', 1), ('drive', 1), ('good', 1), ('decision', 1), ('making', 1), ('business', 1), ('gone', 1), ('day', 1)]
[('lt', 3), ('gt', 3), ('machine', 2), ('learning', 2), ('application', 2), ('learn', 2), ('build', 1), ('web', 1), ('without', 1), ('new', 1), ('language', 1), ('book', 1), ('help', 1), ('develop', 1), ('basic', 1), ('knowledge', 1), ('concept', 1), ('amp', 1), ('nbsp', 1), ('theory', 1)]
[('blazor', 3), ('web', 2), ('side', 2), ('build', 1), ('develop', 1), ('application', 1), ('book', 1), ('cover', 1), ('three', 1), ('type', 1), ('server', 1), ('client', 1), ('hosted', 1), ('along', 1), ('feature', 1), ('technology', 1), ('nbsp', 1), ('see', 1), ('ui', 1), ('framework', 1), ('based', 1)]
[('book', 2), ('joomla', 1), ('seo', 1), ('performance', 1), ('concise', 1), ('page', 1), ('help', 1), ('build', 1), ('website', 1), ('dominate', 1), ('search', 1), ('engine', 1), ('ranking', 1), ('super', 1), ('fast', 1), ('load', 1), ('time', 1), ('giving', 1), ('site', 1), ('increased', 1), ('audience', 1), ('take', 1), ('practical', 1), ('approach', 1), ('full', 1)]
[('centos', 2), ('linux', 2), ('network', 2), ('service', 2), ('learn', 1), ('set', 1), ('latest', 1), ('including', 1), ('dns', 1), ('dhcp', 1), ('ssh', 1), ('vnc', 1), ('web', 1), ('ftp', 1), ('mail', 1), ('firewall', 1), ('ldap', 1), ('enabling', 1), ('provide', 1), ('continues', 1), ('popular', 1), ('distribution', 1), ('choice', 1)]
[('software', 2), ('engineering', 2), ('text', 1), ('provides', 1), ('comprehensive', 1), ('concise', 1), ('introduction', 1), ('adopts', 1), ('methodical', 1), ('approach', 1), ('solving', 1), ('problem', 1), ('proven', 1), ('several', 1), ('year', 1), ('teaching', 1), ('outstanding', 1), ('result', 1), ('book', 1), ('cover', 1)]
[('new', 2), ('php', 2), ('tier', 2), ('book', 1), ('introduces', 1), ('writing', 1), ('solid', 1), ('secure', 1), ('object', 1), ('oriented', 1), ('code', 1), ('create', 1), ('complete', 1), ('three', 1), ('application', 1), ('using', 1), ('natural', 1), ('process', 1), ('building', 1), ('testing', 1), ('module', 1), ('within', 1), ('practical', 1), ('approach', 1)]
[('design', 2), ('learn', 1), ('fundamental', 1), ('modern', 1), ('web', 1), ('rather', 1), ('relying', 1), ('cm', 1), ('program', 1), ('wordpress', 1), ('joomla', 1), ('introduced', 1), ('essential', 1), ('good', 1), ('optimize', 1), ('search', 1), ('engine', 1), ('discover', 1), ('register', 1)]
[('application', 3), ('build', 2), ('web', 2), ('three', 2), ('using', 2), ('core', 2), ('learn', 1), ('microsoft', 1), ('mvp', 1), ('building', 1), ('data', 1), ('layer', 1), ('entity', 1), ('framework', 1), ('restful', 1), ('service', 1), ('asp', 1), ('net', 1), ('client', 1), ('side', 1), ('way', 1), ('first', 1)]
[('scalable', 2), ('real', 2), ('time', 2), ('application', 2), ('build', 1), ('clustered', 1), ('java', 1), ('based', 1), ('using', 1), ('spring', 1), ('framework', 1), ('boot', 1), ('websocket', 1), ('cassandra', 1), ('redis', 1), ('rabbitmq', 1), ('book', 1), ('tie', 1), ('together', 1), ('dive', 1), ('case', 1), ('study', 1), ('chat', 1)]
[('dart', 3), ('web', 2), ('programming', 2), ('want', 2), ('understand', 2), ('programmer', 1), ('master', 1), ('new', 1), ('language', 1), ('google', 1), ('developer', 1), ('integrate', 1), ('perfectly', 1), ('html', 1), ('cs', 1), ('book', 1)]
[('support', 1), ('flash', 1), ('due', 1), ('later', 1), ('year', 1), ('huge', 1), ('marketprovides', 1), ('professional', 1), ('best', 1), ('practice', 1), ('strong', 1), ('emphasis', 1), ('planning', 1), ('documentation', 1), ('adhering', 1), ('strict', 1), ('clean', 1), ('coding', 1), ('outsetteaches', 1), ('create', 1), ('dynamic', 1), ('reusable', 1)]
[('word', 4), ('manual', 2), ('beyond', 1), ('written', 1), ('experienced', 1), ('user', 1), ('find', 1), ('introductory', 1), ('boring', 1), ('condescending', 1), ('waste', 1), ('time', 1), ('basic', 1), ('feature', 1), ('processing', 1), ('general', 1), ('particular', 1), ('discussed', 1)]
[('book', 2), ('tool', 2), ('cover', 1), ('javaone', 1), ('award', 1), ('winning', 1), ('jasperreports', 1), ('length', 1), ('written', 1), ('jasperforge', 1), ('teodor', 1), ('danciu', 1), ('founder', 1), ('architect', 1), ('jasperreport', 1), ('authoritative', 1), ('show', 1), ('power', 1), ('open', 1), ('source', 1), ('java', 1), ('reporting', 1)]
[('first', 1), ('book', 1), ('bring', 1), ('world', 1), ('likely', 1), ('many', 1), ('imitator', 1), ('competitor', 1), ('written', 1), ('evangelist', 1), ('rob', 1), ('pickering', 1), ('tech', 1), ('reviewed', 1), ('inventor', 1), ('syme', 1), ('elegant', 1), ('comprehensive', 1), ('introduction', 1)]
[('data', 4), ('ado', 3), ('net', 3), ('service', 3), ('pro', 1), ('working', 1), ('restful', 1), ('aimed', 1), ('developer', 1), ('interested', 1), ('taking', 1), ('advantage', 1), ('rest', 1), ('style', 1), ('formerly', 1), ('code', 1), ('named', 1), ('astoria', 1), ('provides', 1), ('book', 1), ('show', 1), ('incorporate', 1)]
[('flash', 3), ('widget', 2), ('c', 2), ('actionscript', 2), ('creating', 1), ('introduction', 1), ('developing', 1), ('internet', 1), ('using', 1), ('feature', 1), ('many', 1), ('social', 1), ('networking', 1), ('site', 1), ('blog', 1), ('personal', 1), ('home', 1), ('page', 1), ('adopted', 1)]
[('web', 2), ('framework', 1), ('playing', 1), ('major', 1), ('role', 1), ('creation', 1), ('today', 1), ('compelling', 1), ('application', 1), ('automate', 1), ('many', 1), ('tedious', 1), ('task', 1), ('allowing', 1), ('developer', 1), ('instead', 1), ('focus', 1), ('providing', 1), ('user', 1), ('creative', 1), ('powerful', 1), ('feature', 1), ('java', 1)]
[('book', 4), ('general', 1), ('software', 1), ('business', 1), ('reference', 1), ('microisv', 1), ('eric', 1), ('sink', 1), ('specifically', 1), ('reader', 1), ('existing', 1), ('project', 1), ('idea', 1), ('want', 1), ('turn', 1), ('product', 1), ('follow', 1)]
[('actionscript', 2), ('language', 2), ('latest', 1), ('version', 1), ('flash', 1), ('platform', 1), ('scripting', 1), ('offer', 1), ('many', 1), ('new', 1), ('powerful', 1), ('feature', 1), ('full', 1), ('fledged', 1), ('programming', 1), ('complete', 1), ('object', 1), ('oriented', 1), ('capability', 1), ('improved', 1), ('event', 1), ('handling', 1)]
[('system', 2), ('wordpress', 2), ('popular', 1), ('open', 1), ('source', 1), ('blogging', 1), ('content', 1), ('management', 1), ('let', 1), ('create', 1), ('website', 1), ('promote', 1), ('business', 1), ('quickly', 1), ('easily', 1), ('better', 1), ('yet', 1), ('free', 1), ('flexible', 1), ('user', 1), ('friendly', 1)]
[('asp', 2), ('net', 2), ('web', 2), ('date', 1), ('comprehensive', 1), ('introductory', 1), ('book', 1), ('find', 1), ('shelf', 1), ('beginning', 1), ('guide', 1), ('microsoft', 1), ('latest', 1), ('technology', 1), ('building', 1), ('dynamic', 1), ('site', 1), ('learn', 1), ('build', 1), ('sophisticated', 1), ('page', 1)]
[('raspberry', 3), ('pi', 3), ('learn', 2), ('linux', 1), ('tell', 1), ('everything', 1), ('need', 1), ('know', 1), ('gui', 1), ('command', 1), ('line', 1), ('started', 1), ('amazing', 1), ('thing', 1), ('set', 1), ('new', 1), ('monitor', 1), ('keyboard', 1), ('mouse', 1)]
[('cs', 5), ('design', 2), ('fully', 1), ('updated', 1), ('latest', 1), ('module', 1), ('make', 1), ('journey', 1), ('mastery', 1), ('simple', 1), ('painless', 1), ('possible', 1), ('book', 1), ('dive', 1), ('advanced', 1), ('aspect', 1), ('based', 1), ('responsive', 1), ('modular', 1), ('typography', 1), ('series', 1)]
[('drupal', 2), ('pro', 1), ('enterprise', 1), ('development', 1), ('platform', 1), ('author', 1), ('jamie', 1), ('kurtz', 1), ('thomas', 1), ('besluau', 1), ('explain', 1), ('developer', 1), ('save', 1), ('time', 1), ('money', 1), ('build', 1), ('application', 1), ('faster', 1), ('fewer', 1), ('bug', 1), ('using', 1), ('cm', 1), ('foundation', 1)]
[('sap', 2), ('oee', 2), ('manufacturing', 2), ('performance', 2), ('management', 2), ('learn', 1), ('configure', 1), ('implement', 1), ('enhance', 1), ('customize', 1), ('address', 1), ('using', 1), ('show', 1), ('connect', 1), ('business', 1), ('process', 1), ('plant', 1), ('system', 1)]
[('performance', 2), ('troubleshoot', 1), ('widespread', 1), ('pernicious', 1), ('java', 1), ('problem', 1), ('using', 1), ('set', 1), ('open', 1), ('source', 1), ('freely', 1), ('available', 1), ('tool', 1), ('make', 1), ('dramatically', 1), ('productive', 1), ('finding', 1), ('root', 1), ('cause', 1), ('slow', 1), ('brief', 1), ('book', 1)]
[('provides', 2), ('technical', 2), ('learn', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('applied', 1), ('fashion', 1), ('industry', 1), ('application', 1), ('focused', 1), ('approach', 1), ('book', 1), ('real', 1), ('world', 1), ('example', 1), ('break', 1), ('jargon', 1), ('non', 1), ('reader', 1), ('educational', 1)]
[('net', 2), ('memory', 2), ('management', 2), ('understand', 1), ('internal', 1), ('working', 1), ('pitfall', 1), ('technique', 1), ('order', 1), ('effectively', 1), ('avoid', 1), ('wide', 1), ('range', 1), ('performance', 1), ('scalability', 1), ('problem', 1), ('software', 1), ('despite', 1), ('automatic', 1), ('many', 1)]
[('functional', 4), ('chain', 2), ('interface', 2), ('reduce', 1), ('development', 1), ('time', 1), ('organizing', 1), ('program', 1), ('see', 1), ('advantage', 1), ('using', 1), ('include', 1), ('flexibility', 1), ('power', 1), ('inlined', 1), ('reuse', 1), ('method', 1)]
[('deep', 3), ('practical', 2), ('learning', 2), ('project', 2), ('using', 2), ('work', 1), ('engaging', 1), ('tensorflow', 1), ('hand', 1), ('approach', 1), ('book', 1), ('lead', 1), ('new', 1), ('programmer', 1), ('basic', 1), ('developing', 1), ('application', 1), ('nbsp', 1)]
[('rail', 3), ('ruby', 2), ('commerce', 2), ('offer', 1), ('developer', 1), ('opportunity', 1), ('create', 1), ('fully', 1), ('featured', 1), ('web', 1), ('application', 1), ('double', 1), ('quick', 1), ('time', 1), ('match', 1), ('made', 1), ('heaven', 1), ('beginning', 1), ('first', 1), ('book', 1), ('directly', 1), ('target', 1)]
[('developer', 2), ('build', 2), ('driven', 2), ('asp', 2), ('net', 2), ('provides', 1), ('skill', 1), ('professional', 1), ('database', 1), ('web', 1), ('site', 1), ('using', 1), ('latest', 1), ('technology', 1), ('looking', 1), ('db', 1), ('website', 1), ('find', 1), ('practical', 1), ('solution', 1), ('multiple', 1), ('way', 1), ('achieve', 1)]
[('cs', 3), ('web', 2), ('book', 1), ('focus', 1), ('teaching', 1), ('advanced', 1), ('level', 1), ('techniquescss', 1), ('huge', 1), ('market', 1), ('every', 1), ('designer', 1), ('need', 1), ('know', 1), ('succeed', 1), ('modern', 1), ('design', 1), ('marketplacepart', 1), ('solution', 1), ('series', 1), ('follow', 1)]
[('system', 2), ('author', 1), ('focus', 1), ('solely', 1), ('unix', 1), ('linux', 1), ('administrator', 1), ('use', 1), ('known', 1), ('tool', 1), ('automate', 1), ('task', 1), ('even', 1), ('across', 1), ('multiple', 1)]
[('mirroring', 3), ('maintaining', 2), ('database', 2), ('pro', 1), ('sql', 1), ('server', 1), ('complete', 1), ('guide', 1), ('planning', 1), ('using', 1), ('deploying', 1), ('high', 1), ('availability', 1), ('option', 1), ('protects', 1), ('duplicate', 1), ('copy', 1), ('use', 1)]
[('linq', 2), ('net', 2), ('data', 2), ('project', 1), ('name', 1), ('set', 1), ('extension', 1), ('framework', 1), ('provide', 1), ('generic', 1), ('approach', 1), ('querying', 1), ('different', 1), ('source', 1), ('made', 1), ('debut', 1), ('visual', 1), ('studio', 1), ('became', 1), ('skill', 1), ('developer', 1)]
[('book', 1), ('aim', 1), ('give', 1), ('experienced', 1), ('net', 1), ('developer', 1), ('thorough', 1), ('grounding', 1), ('object', 1), ('relational', 1), ('mapping', 1), ('methodology', 1), ('show', 1), ('linq', 1), ('used', 1), ('achieve', 1), ('provides', 1), ('detailed', 1), ('coverage', 1), ('key', 1), ('concept', 1), ('idea', 1), ('clear', 1), ('easy', 1)]
[('tool', 3), ('book', 2), ('developer', 2), ('give', 1), ('thorough', 1), ('grounding', 1), ('principal', 1), ('supporting', 1), ('technology', 1), ('make', 1), ('xcode', 1), ('suite', 1), ('apple', 1), ('provided', 1), ('comprehensive', 1), ('collection', 1), ('first', 1)]
[('robot', 2), ('building', 2), ('offer', 2), ('reader', 1), ('beginner', 1), ('apress', 1), ('welcome', 1), ('next', 1), ('level', 1), ('intermediate', 1), ('second', 1), ('edition', 1), ('kind', 1), ('real', 1), ('world', 1), ('knowledge', 1), ('renowned', 1), ('author', 1), ('david', 1), ('cook', 1), ('book', 1)]
[('jquery', 4), ('need', 3), ('run', 2), ('everywhere', 2), ('mobile', 2), ('build', 1), ('app', 1), ('give', 1), ('ability', 1), ('write', 1), ('using', 1), ('ui', 1), ('pro', 1), ('teach', 1), ('create', 1), ('themable', 1), ('responsive', 1)]
[('electronic', 2), ('wearable', 2), ('probably', 1), ('seen', 1), ('led', 1), ('decorated', 1), ('shirt', 1), ('hat', 1), ('maybe', 1), ('even', 1), ('gadget', 1), ('embedded', 1), ('clothing', 1), ('arduino', 1), ('learn', 1), ('make', 1), ('creation', 1), ('book', 1), ('introduction', 1)]
[('net', 4), ('asp', 3), ('database', 2), ('using', 2), ('beginning', 1), ('introduces', 1), ('world', 1), ('building', 1), ('data', 1), ('driven', 1), ('web', 1), ('site', 1), ('ado', 1), ('entity', 1), ('framework', 1), ('developer', 1), ('need', 1), ('access', 1), ('quickly', 1), ('efficiently', 1), ('book', 1), ('teach', 1)]
[('web', 2), ('practical', 2), ('master', 1), ('java', 1), ('ee', 1), ('jsf', 1), ('javaserver', 1), ('face', 1), ('apis', 1), ('framework', 1), ('project', 1), ('driven', 1), ('guide', 1), ('development', 1), ('nbsp', 1), ('book', 1), ('combine', 1), ('theoretical', 1), ('background', 1), ('approach', 1), ('building', 1), ('four', 1), ('real', 1), ('world', 1)]
[('eric', 1), ('weblog', 1), ('regular', 1), ('user', 1), ('consistently', 1), ('included', 1), ('list', 1), ('popular', 1), ('feed', 1), ('bloglines', 1), ('comsink', 1), ('founded', 1), ('company', 1), ('named', 1), ('inc', 1), ('book', 1), ('explains', 1), ('tough', 1), ('topic', 1), ('marketing', 1), ('hiring', 1), ('term', 1)]
[('coverage', 2), ('net', 2), ('source', 2), ('includes', 1), ('generic', 1), ('open', 1), ('closed', 1), ('library', 1), ('application', 1), ('based', 1), ('code', 1), ('example', 1), ('work', 1), ('multiple', 1), ('platform', 1), ('linux', 1), ('window', 1), ('etc', 1), ('focus', 1), ('solving', 1), ('problem', 1)]
[('technology', 2), ('completely', 1), ('date', 1), ('asp', 1), ('net', 1), ('demonstrates', 1), ('new', 1), ('best', 1), ('practice', 1), ('coding', 1), ('style', 1), ('requires', 1), ('focus', 1), ('need', 1), ('developer', 1), ('explains', 1), ('way', 1), ('easy', 1), ('apply', 1)]
[('sql', 5), ('server', 3), ('comprehensive', 1), ('coverage', 1), ('including', 1), ('new', 1), ('feature', 1), ('established', 1), ('expert', 1), ('author', 1), ('broad', 1), ('appeal', 1), ('practical', 1), ('answer', 1), ('common', 1), ('question', 1), ('novice', 1), ('advanced', 1), ('dba', 1)]
[('learning', 1), ('good', 1), ('map', 1), ('design', 1), ('technique', 1), ('biztalk', 1), ('server', 1), ('make', 1), ('huge', 1), ('difference', 1), ('processing', 1), ('speed', 1), ('implementation', 1), ('scalability', 1), ('maintainability', 1), ('code', 1), ('regardless', 1), ('experience', 1), ('expert', 1), ('author', 1), ('jim', 1)]
[('book', 2), ('step', 2), ('provides', 1), ('practical', 1), ('guide', 1), ('planning', 1), ('building', 1), ('professional', 1), ('flex', 1), ('application', 1), ('start', 1), ('finish', 1), ('written', 1), ('team', 1), ('expert', 1), ('developer', 1), ('detail', 1), ('author', 1), ('built', 1), ('popular', 1), ('rich', 1), ('medium', 1), ('rmx', 1)]
[('workflow', 2), ('window', 1), ('foundation', 1), ('groundbreaking', 1), ('addition', 1), ('core', 1), ('net', 1), ('framework', 1), ('allows', 1), ('orchestrate', 1), ('human', 1), ('system', 1), ('interaction', 1), ('series', 1), ('easily', 1), ('mapped', 1), ('analyzed', 1), ('adjusted', 1), ('implemented', 1)]
[('application', 3), ('java', 2), ('open', 1), ('source', 1), ('lightweight', 1), ('google', 1), ('web', 1), ('toolkit', 1), ('gwt', 1), ('framework', 1), ('allows', 1), ('developer', 1), ('build', 1), ('rich', 1), ('internet', 1), ('rias', 1), ('recently', 1), ('called', 1), ('ajax', 1), ('typically', 1), ('writing', 1), ('requires', 1), ('lot', 1)]
[('sql', 3), ('query', 2), ('database', 2), ('beginning', 1), ('friendly', 1), ('easily', 1), ('guide', 1), ('writing', 1), ('important', 1), ('world', 1), ('language', 1), ('anyone', 1), ('work', 1), ('need', 1), ('know', 1), ('something', 1), ('evidenced', 1)]
[('web', 3), ('application', 2), ('catalyst', 2), ('based', 2), ('perl', 2), ('learn', 1), ('build', 1), ('popular', 1), ('open', 1), ('source', 1), ('framework', 1), ('programming', 1), ('language', 1), ('definitive', 1), ('guide', 1), ('writing', 1), ('extendable', 1), ('scalable', 1), ('maintainable', 1)]
[('angularjs', 2), ('leading', 1), ('framework', 1), ('building', 1), ('dynamic', 1), ('javascript', 1), ('application', 1), ('take', 1), ('advantage', 1), ('capability', 1), ('modern', 1), ('browser', 1), ('device', 1), ('maintained', 1), ('google', 1), ('brings', 1), ('power', 1), ('model', 1), ('view', 1), ('controller', 1), ('mvc', 1)]
[('mongodb', 3), ('database', 3), ('need', 1), ('quick', 1), ('easy', 1), ('understand', 1), ('introduction', 1), ('nosql', 1), ('basic', 1), ('definitive', 1), ('guide', 1), ('show', 1), ('document', 1), ('oriented', 1), ('system', 1), ('differs', 1), ('relational', 1), ('install', 1)]
[('enterprise', 2), ('manager', 2), ('scripting', 2), ('oracle', 1), ('command', 1), ('line', 1), ('interface', 1), ('show', 1), ('use', 1), ('rsquo', 1), ('powerful', 1), ('language', 1), ('automate', 1), ('database', 1), ('administration', 1), ('work', 1), ('save', 1), ('time', 1), ('routine', 1), ('task', 1), ('executing', 1), ('script', 1)]
[('excel', 3), ('application', 2), ('learn', 1), ('harness', 1), ('power', 1), ('visual', 1), ('basic', 1), ('vba', 1), ('microsoft', 1), ('develop', 1), ('interesting', 1), ('useful', 1), ('interactive', 1), ('book', 1), ('show', 1), ('manipulate', 1), ('code', 1), ('allowing', 1), ('unlock', 1), ('extra', 1)]
[('build', 2), ('enterprise', 2), ('web', 2), ('microservice', 2), ('application', 2), ('learn', 1), ('spring', 1), ('boot', 1), ('java', 1), ('based', 1), ('book', 1), ('see', 1), ('work', 1), ('relational', 1), ('nosql', 1), ('database', 1), ('first', 1)]
[('master', 1), ('basic', 1), ('solving', 1), ('logic', 1), ('puzzle', 1), ('creating', 1), ('algorithm', 1), ('using', 1), ('swift', 1), ('apple', 1), ('platform', 1), ('book', 1), ('based', 1), ('curriculum', 1), ('currently', 1), ('used', 1), ('common', 1), ('computer', 1), ('class', 1), ('learn', 1), ('automate', 1), ('algorithmic', 1), ('process', 1), ('scale', 1)]
[('game', 3), ('android', 3), ('studio', 3), ('short', 1), ('book', 1), ('walk', 1), ('process', 1), ('creating', 1), ('mobile', 1), ('using', 1), ('new', 1), ('ide', 1), ('development', 1), ('introduces', 1), ('key', 1), ('tool', 1), ('give', 1), ('knowledge', 1), ('need', 1), ('develop', 1)]
[('see', 2), ('domain', 1), ('driven', 1), ('design', 1), ('dd', 1), ('combine', 1), ('jakarta', 1), ('ee', 1), ('microprofile', 1), ('spring', 1), ('boot', 1), ('offer', 1), ('complete', 1), ('suite', 1), ('building', 1), ('enterprise', 1), ('grade', 1), ('application', 1), ('book', 1), ('come', 1), ('together', 1), ('efficient', 1), ('way', 1)]
[('flutter', 2), ('take', 1), ('advantage', 1), ('comprehensive', 1), ('reference', 1), ('solving', 1), ('common', 1), ('problem', 1), ('developing', 1), ('along', 1), ('introduction', 1), ('basic', 1), ('concept', 1), ('development', 1), ('recipe', 1), ('book', 1), ('cover', 1), ('important', 1), ('aspect', 1), ('emerging', 1)]
[('six', 2), ('master', 1), ('machine', 1), ('learning', 1), ('python', 1), ('step', 1), ('explore', 1), ('fundamental', 1), ('advanced', 1), ('topic', 1), ('designed', 1), ('make', 1), ('worthy', 1), ('practitioner', 1), ('nbsp', 1), ('book', 1), ('approach', 1), ('based', 1), ('degree', 1), ('separation', 1), ('theory', 1), ('state', 1), ('everyone', 1)]
[('angular', 2), ('framework', 2), ('side', 2), ('application', 2), ('combine', 1), ('strength', 1), ('leading', 1), ('developing', 1), ('complex', 1), ('client', 1), ('asp', 1), ('net', 1), ('core', 1), ('mvc', 1), ('latest', 1), ('evolution', 1), ('microsoft', 1), ('server', 1), ('new', 1), ('edition', 1), ('offer', 1), ('updated', 1)]
[('o', 2), ('leopard', 2), ('manual', 2), ('feature', 2), ('mac', 1), ('beyond', 1), ('written', 1), ('sophisticated', 1), ('computer', 1), ('user', 1), ('find', 1), ('introductory', 1), ('tedious', 1), ('new', 1), ('emphasized', 1), ('complex', 1), ('though', 1), ('available', 1), ('earlier', 1), ('version', 1)]
[('business', 3), ('every', 1), ('ream', 1), ('data', 1), ('locked', 1), ('away', 1), ('database', 1), ('system', 1), ('spreadsheet', 1), ('able', 1), ('build', 1), ('report', 1), ('pulling', 1), ('repository', 1), ('together', 1), ('actually', 1), ('performing', 1), ('kind', 1), ('analysis', 1)]
[('linux', 2), ('embedded', 2), ('today', 1), ('included', 1), ('nearly', 1), ('every', 1), ('platform', 1), ('developer', 1), ('take', 1), ('modern', 1), ('route', 1), ('spend', 1), ('time', 1), ('tuning', 1), ('taking', 1), ('advantage', 1), ('open', 1), ('source', 1), ('code', 1), ('build', 1), ('robust', 1), ('feature', 1), ('rich', 1), ('application', 1), ('gene', 1)]
[('business', 2), ('bi', 2), ('intelligence', 1), ('software', 1), ('allows', 1), ('view', 1), ('different', 1), ('component', 1), ('using', 1), ('single', 1), ('visual', 1), ('platform', 1), ('make', 1), ('comprehending', 1), ('mountain', 1), ('data', 1), ('easier', 1), ('everywhere', 1), ('application', 1), ('include', 1), ('report', 1), ('analytics', 1)]
[('android', 3), ('practical', 2), ('take', 1), ('approach', 1), ('becoming', 1), ('leading', 1), ('edge', 1), ('developer', 1), ('learning', 1), ('example', 1), ('combining', 1), ('many', 1), ('technology', 1), ('needed', 1), ('create', 1), ('successful', 1), ('date', 1), ('web', 1), ('app', 1), ('project', 1), ('introduces', 1), ('software', 1)]
[('sensor', 3), ('use', 1), ('arrow', 1), ('affordable', 1), ('breadboard', 1), ('friendly', 1), ('fpga', 1), ('development', 1), ('board', 1), ('bemicro', 1), ('max', 1), ('create', 1), ('light', 1), ('temperature', 1), ('motion', 1), ('kitt', 1), ('car', 1), ('display', 1), ('knight', 1), ('rider', 1), ('nbsp', 1), ('need', 1), ('electronics', 1), ('engineering', 1), ('degree', 1)]
[('game', 3), ('java', 3), ('design', 2), ('create', 2), ('video', 2), ('libgdx', 2), ('using', 1), ('software', 1), ('library', 1), ('reading', 1), ('beginning', 1), ('development', 1), ('learn', 1), ('program', 1), ('build', 1), ('able', 1)]
[('java', 4), ('exploit', 1), ('finer', 1), ('point', 1), ('core', 1), ('standard', 1), ('edition', 1), ('updated', 1), ('include', 1), ('final', 1), ('se', 1), ('tiger', 1), ('release', 1), ('ideal', 1), ('experienced', 1), ('non', 1), ('programmer', 1), ('need', 1), ('intermediate', 1), ('level', 1), ('book', 1)]
[('linq', 2), ('data', 2), ('every', 1), ('programmer', 1), ('need', 1), ('learn', 1), ('language', 1), ('integrated', 1), ('query', 1), ('microsoft', 1), ('breakthrough', 1), ('technology', 1), ('simplifying', 1), ('unifying', 1), ('access', 1), ('source', 1), ('write', 1), ('elegant', 1), ('flexible', 1), ('code', 1)]
[('flash', 2), ('web', 2), ('know', 1), ('tool', 1), ('creating', 1), ('dynamic', 1), ('engaging', 1), ('content', 1), ('adobe', 1), ('c', 1), ('release', 1), ('make', 1), ('even', 1), ('better', 1), ('among', 1), ('newer', 1), ('feature', 1), ('ability', 1), ('take', 1), ('power', 1), ('put', 1), ('desktop', 1)]
[('cisco', 3), ('router', 2), ('small', 2), ('business', 2), ('provides', 1), ('plain', 1), ('english', 1), ('nonsense', 1), ('approach', 1), ('setting', 1), ('feature', 1), ('io', 1), ('using', 1), ('broadband', 1), ('technology', 1), ('book', 1), ('explains', 1), ('use', 1), ('setup', 1), ('cable', 1)]
[('flash', 2), ('professional', 1), ('designer', 1), ('developer', 1), ('working', 1), ('world', 1), ('web', 1), ('technology', 1), ('multimedia', 1), ('application', 1), ('knowing', 1), ('use', 1), ('effectively', 1), ('vital', 1), ('add', 1), ('actionscript', 1), ('becomes', 1), ('even', 1), ('powerful', 1)]
[('silverlight', 2), ('development', 2), ('microsoft', 1), ('new', 1), ('platform', 1), ('designed', 1), ('make', 1), ('rich', 1), ('internet', 1), ('application', 1), ('rias', 1), ('far', 1), ('easier', 1), ('previously', 1), ('possible', 1), ('pro', 1), ('enterprise', 1), ('address', 1), ('question', 1)]
[('hibernate', 2), ('database', 2), ('beginning', 1), ('second', 1), ('edition', 1), ('ideal', 1), ('experienced', 1), ('java', 1), ('traditional', 1), ('connected', 1), ('approach', 1), ('new', 1), ('open', 1), ('source', 1), ('lightweight', 1), ('de', 1), ('facto', 1), ('object', 1), ('relational', 1), ('mapping', 1), ('oriented', 1)]
[('parallel', 2), ('programming', 2), ('net', 2), ('revolutionised', 1), ('providing', 1), ('first', 1), ('time', 1), ('standardised', 1), ('simplified', 1), ('method', 1), ('creating', 1), ('robust', 1), ('scalable', 1), ('reliable', 1), ('multi', 1), ('threaded', 1), ('application', 1), ('feature', 1), ('allow', 1)]
[('linux', 3), ('need', 1), ('maintain', 1), ('client', 1), ('server', 1), ('network', 1), ('acquiring', 1), ('new', 1), ('skill', 1), ('foundation', 1), ('cent', 1), ('o', 1), ('enterprise', 1), ('cheap', 1), ('cover', 1), ('free', 1), ('unencumbered', 1), ('operating', 1), ('system', 1), ('within', 1), ('red', 1), ('hat', 1), ('lineage', 1), ('assume', 1)]
[('puppet', 4), ('pro', 1), ('depth', 1), ('guide', 1), ('installing', 1), ('using', 1), ('developing', 1), ('popular', 1), ('configuration', 1), ('management', 1), ('tool', 1), ('book', 1), ('comprehensive', 1), ('follow', 1), ('previous', 1), ('title', 1), ('pulling', 1), ('string', 1), ('provides', 1), ('way', 1), ('automate', 1)]
[('second', 1), ('edition', 1), ('popular', 1), ('dom', 1), ('scripting', 1), ('web', 1), ('design', 1), ('javascript', 1), ('document', 1), ('object', 1), ('model', 1), ('come', 1), ('modern', 1), ('revision', 1), ('update', 1), ('best', 1), ('practice', 1), ('guideline', 1), ('includes', 1), ('full', 1), ('coverage', 1), ('html', 1), ('new', 1), ('dedicated', 1), ('chapter', 1)]
[('share', 2), ('online', 2), ('calendar', 1), ('access', 1), ('mail', 1), ('create', 1), ('document', 1), ('smartphone', 1), ('mobile', 1), ('device', 1), ('netbook', 1), ('desktop', 1), ('answered', 1), ('yes', 1), ('know', 1), ('best', 1)]
[('teach', 1), ('study', 1), ('order', 1), ('best', 1), ('prepared', 1), ('certified', 1), ('openstack', 1), ('administrator', 1), ('exam', 1), ('nbsp', 1), ('fast', 1), ('growing', 1), ('technology', 1), ('creating', 1), ('market', 1), ('need', 1), ('qualified', 1), ('specialist', 1), ('proven', 1), ('skill', 1), ('book', 1), ('cover', 1)]
[('ai', 2), ('artificial', 2), ('intelligence', 2), ('speed', 1), ('microsoft', 1), ('platform', 1), ('learn', 1), ('innovate', 1), ('accelerate', 1), ('open', 1), ('powerful', 1), ('tool', 1), ('service', 1), ('bring', 1), ('every', 1), ('data', 1), ('scientist', 1), ('developer', 1), ('new', 1), ('normal', 1)]
[('build', 1), ('test', 1), ('tune', 1), ('financial', 1), ('insurance', 1), ('market', 1), ('trading', 1), ('system', 1), ('using', 1), ('algorithm', 1), ('statistic', 1), ('idea', 1), ('done', 1), ('preliminary', 1), ('experiment', 1), ('look', 1), ('promising', 1), ('go', 1), ('nbsp', 1), ('book', 1)]
[('ethical', 2), ('security', 2), ('started', 1), ('white', 1), ('hat', 1), ('hacking', 1), ('using', 1), ('kali', 1), ('linux', 1), ('book', 1), ('start', 1), ('giving', 1), ('overview', 1), ('trend', 1), ('learn', 1), ('osi', 1), ('architecture', 1), ('form', 1), ('foundation', 1), ('rest', 1), ('nbsp', 1), ('beginning', 1)]
[('software', 2), ('coding', 2), ('code', 2), ('learn', 1), ('engineering', 1), ('best', 1), ('practice', 1), ('write', 1), ('python', 1), ('right', 1), ('error', 1), ('free', 1), ('book', 1), ('see', 1), ('properly', 1), ('debug', 1), ('organize', 1), ('test', 1), ('maintain', 1), ('lead', 1), ('better', 1), ('efficient', 1)]
[('security', 3), ('cloud', 2), ('prevent', 1), ('destructive', 1), ('attack', 1), ('azure', 1), ('public', 1), ('infrastructure', 1), ('remove', 1), ('vulnerability', 1), ('instantly', 1), ('report', 1), ('readiness', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('guidance', 1), ('insider', 1), ('perspective', 1), ('cyber', 1)]
[('tip', 2), ('test', 2), ('automated', 2), ('technique', 2), ('quickly', 1), ('access', 1), ('software', 1), ('engineer', 1), ('using', 1), ('method', 1), ('point', 1), ('practice', 1), ('save', 1), ('time', 1), ('increase', 1), ('accuracy', 1), ('reliability', 1), ('play', 1), ('demo', 1), ('testing', 1), ('tool', 1)]
[('portal', 2), ('use', 1), ('full', 1), ('range', 1), ('feature', 1), ('dynamic', 1), ('develop', 1), ('implement', 1), ('end', 1), ('user', 1), ('nbsp', 1), ('provide', 1), ('audience', 1), ('online', 1), ('location', 1), ('communicate', 1), ('collaborate', 1), ('book', 1), ('guide', 1), ('implementation', 1), ('highlight', 1), ('best', 1)]
[('ajax', 2), ('application', 2), ('take', 1), ('unique', 1), ('angle', 1), ('providing', 1), ('pattern', 1), ('development', 1), ('best', 1), ('practice', 1), ('integrating', 1), ('rest', 1), ('rich', 1), ('designed', 1), ('suit', 1), ('group', 1), ('developer', 1), ('across', 1), ('many', 1), ('platform', 1), ('interested', 1), ('hot', 1)]
[('experience', 2), ('immediately', 1), ('accessible', 1), ('anyone', 1), ('design', 1), ('relational', 1), ('data', 1), ('model', 1), ('regardless', 1), ('prior', 1), ('concise', 1), ('straightforward', 1), ('explanation', 1), ('usually', 1), ('complex', 1), ('jargon', 1), ('rich', 1), ('discipline', 1), ('example', 1), ('based', 1), ('extensive', 1), ('author', 1)]
[('technology', 2), ('book', 1), ('explains', 1), ('microsoft', 1), ('introduced', 1), ('service', 1), ('broker', 1), ('describes', 1), ('big', 1), ('advantage', 1), ('prior', 1), ('message', 1), ('rich', 1), ('practical', 1), ('example', 1), ('volume', 1), ('offer', 1), ('complete', 1), ('incisive', 1), ('coverage', 1), ('important', 1), ('new', 1), ('focused', 1)]
[('prototype', 2), ('book', 1), ('core', 1), ('development', 1), ('team', 1), ('member', 1), ('andrew', 1), ('dupont', 1), ('provides', 1), ('essential', 1), ('guide', 1), ('getting', 1), ('using', 1), ('script', 1), ('aculo', 1), ('help', 1), ('leverage', 1), ('popular', 1), ('supported', 1), ('javascript', 1), ('library', 1)]
[('ext', 2), ('developing', 1), ('gwt', 1), ('fast', 1), ('paced', 1), ('practical', 1), ('guide', 1), ('quickly', 1), ('learning', 1), ('task', 1), ('necessary', 1), ('building', 1), ('enterprise', 1), ('class', 1), ('rich', 1), ('internet', 1), ('application', 1), ('rias', 1), ('based', 1), ('around', 1), ('exciting', 1), ('new', 1), ('user', 1), ('interface', 1), ('library', 1), ('ajax', 1), ('leader', 1), ('j', 1)]
[('web', 2), ('mobile', 2), ('today', 1), ('application', 1), ('think', 1), ('facebook', 1), ('twitter', 1), ('go', 1), ('far', 1), ('beyond', 1), ('confines', 1), ('desktop', 1), ('widely', 1), ('used', 1), ('device', 1), ('become', 1), ('incredibly', 1), ('popular', 1), ('given', 1), ('success', 1), ('iphone', 1), ('blackberry', 1), ('importance', 1)]
[('javascript', 3), ('new', 1), ('programming', 1), ('hand', 1), ('book', 1), ('rather', 1), ('staring', 1), ('blankly', 1), ('gobbledygook', 1), ('explore', 1), ('entering', 1), ('running', 1), ('hundred', 1), ('code', 1), ('sample', 1), ('firebug', 1), ('free', 1), ('debugger', 1)]
[('solution', 3), ('biztalk', 2), ('recipe', 2), ('provides', 1), ('ready', 1), ('made', 1), ('server', 1), ('developer', 1), ('book', 1), ('save', 1), ('effort', 1), ('developing', 1), ('common', 1), ('problem', 1), ('solved', 1), ('many', 1), ('time', 1), ('demonstrate', 1)]
[('new', 2), ('congratulation', 1), ('purchased', 1), ('iphone', 1), ('coolest', 1), ('smartphone', 1), ('market', 1), ('time', 1), ('learn', 1), ('take', 1), ('advantage', 1), ('io', 1), ('feature', 1), ('apps', 1), ('secret', 1), ('technique', 1), ('available', 1), ('accomplish', 1), ('look', 1)]
[('oracle', 3), ('database', 3), ('essential', 2), ('internals', 2), ('core', 1), ('dba', 1), ('developer', 1), ('jonathan', 1), ('lewis', 1), ('provides', 1), ('information', 1), ('every', 1), ('administrator', 1), ('need', 1), ('troubleshooting', 1), ('le', 1)]
[('beginning', 2), ('development', 2), ('io', 2), ('latest', 2), ('team', 1), ('brought', 1), ('bestselling', 1), ('iphone', 1), ('back', 1), ('bringing', 1), ('definitive', 1), ('guide', 1), ('date', 1), ('apple', 1), ('greatest', 1), ('sdk', 1), ('version', 1)]
[('programming', 2), ('expert', 1), ('practical', 1), ('beautiful', 1), ('language', 1), ('put', 1), ('power', 1), ('elegance', 1), ('data', 1), ('rich', 1), ('functional', 1), ('hand', 1), ('professional', 1), ('developer', 1), ('combination', 1), ('net', 1), ('achieves', 1), ('unrivaled', 1), ('level', 1)]
[('jquery', 4), ('step', 2), ('library', 2), ('beginning', 1), ('guide', 1), ('learning', 1), ('popular', 1), ('javascript', 1), ('web', 1), ('developer', 1), ('toolkit', 1), ('jack', 1), ('franklin', 1), ('take', 1), ('basic', 1), ('getting', 1), ('started', 1), ('right', 1)]
[('haskell', 2), ('based', 2), ('beginning', 1), ('provides', 1), ('broad', 1), ('introduction', 1), ('language', 1), ('library', 1), ('environment', 1), ('functional', 1), ('programming', 1), ('paradigm', 1), ('fast', 1), ('growing', 1), ('importance', 1), ('software', 1), ('industry', 1), ('book', 1), ('take', 1), ('project', 1)]
[('joomla', 3), ('step', 3), ('foundation', 1), ('practical', 1), ('guide', 1), ('explains', 1), ('building', 1), ('web', 1), ('site', 1), ('blog', 1), ('using', 1), ('popular', 1), ('powerful', 1), ('content', 1), ('management', 1), ('system', 1), ('cm', 1), ('book', 1), ('take', 1), ('installing', 1), ('configuring', 1)]
[('ospf', 3), ('shortest', 2), ('path', 2), ('learn', 1), ('routersnetwork', 1), ('using', 1), ('open', 1), ('first', 1), ('protocol', 1), ('unpickdijkstra', 1), ('network', 1), ('algorithm', 1), ('see', 1), ('performs', 1), ('calculation', 1), ('todetermine', 1), ('appropriate', 1), ('router', 1), ('anetwork', 1)]
[('proximity', 2), ('learn', 1), ('key', 1), ('standard', 1), ('ibeacon', 1), ('eddystone', 1), ('bluetooth', 1), ('altbeacon', 1), ('work', 1), ('technology', 1), ('build', 1), ('understanding', 1), ('framework', 1), ('identify', 1), ('deploy', 1), ('best', 1), ('solution', 1)]
[('hololens', 2), ('reality', 2), ('step', 2), ('first', 1), ('book', 1), ('describe', 1), ('microsoft', 1), ('wearable', 1), ('augmented', 1), ('device', 1), ('provide', 1), ('instruction', 1), ('developer', 1), ('use', 1), ('sdk', 1), ('create', 1), ('window', 1), ('application', 1), ('merge', 1), ('holographic', 1), ('virtual', 1)]
[('window', 3), ('internet', 2), ('raspberry', 2), ('pi', 2), ('application', 2), ('manage', 1), ('control', 1), ('connected', 1), ('device', 1), ('master', 1), ('iot', 1), ('core', 1), ('programming', 1), ('interface', 1), ('feature', 1), ('set', 1), ('develop', 1), ('thing', 1), ('using', 1), ('net', 1)]
[('sharepoint', 2), ('management', 2), ('business', 2), ('learn', 1), ('make', 1), ('wide', 1), ('range', 1), ('capability', 1), ('support', 1), ('information', 1), ('collaboration', 1), ('process', 1), ('need', 1), ('whether', 1), ('using', 1), ('intranet', 1), ('solution', 1)]
[('portal', 2), ('develop', 1), ('enterprise', 1), ('oracle', 1), ('webcenter', 1), ('software', 1), ('enrich', 1), ('application', 1), ('social', 1), ('computing', 1), ('service', 1), ('including', 1), ('discussion', 1), ('document', 1), ('blog', 1), ('wikis', 1), ('tag', 1), ('link', 1), ('book', 1), ('cover', 1), ('functionality', 1), ('aspect', 1)]
[('python', 3), ('data', 3), ('analysis', 2), ('started', 1), ('using', 1), ('compact', 1), ('practical', 1), ('guide', 1), ('book', 1), ('includes', 1), ('three', 1), ('exercise', 1), ('case', 1), ('study', 1), ('getting', 1), ('code', 1), ('right', 1), ('format', 1), ('learn', 1), ('help', 1), ('discover', 1)]
[('cdi', 3), ('java', 3), ('ee', 3), ('life', 2), ('cycle', 2), ('using', 2), ('scope', 2), ('pro', 1), ('use', 1), ('automatically', 1), ('manage', 1), ('enterprise', 1), ('jakarta', 1), ('application', 1), ('bean', 1), ('predefined', 1), ('define', 1), ('custom', 1), ('book', 1)]
[('use', 2), ('feature', 2), ('visual', 2), ('studio', 2), ('know', 1), ('utilize', 1), ('ide', 1), ('correctly', 1), ('become', 1), ('stop', 1), ('solution', 1), ('creating', 1), ('quality', 1), ('code', 1), ('learn', 1), ('new', 1), ('v', 1), ('explore', 1), ('existing', 1)]
[('concept', 1), ('smart', 1), ('city', 1), ('accurately', 1), ('regarded', 1), ('potentially', 1), ('transformative', 1), ('power', 1), ('world', 1), ('bustling', 1), ('metropolis', 1), ('infused', 1), ('right', 1), ('combination', 1), ('internet', 1), ('thing', 1), ('artificial', 1), ('intelligence', 1), ('big', 1), ('data', 1), ('blockchain', 1)]
[('azure', 2), ('sql', 2), ('cloud', 2), ('access', 1), ('detailed', 1), ('content', 1), ('example', 1), ('set', 1), ('service', 1), ('allows', 1), ('server', 1), ('deployed', 1), ('book', 1), ('teach', 1), ('fundamental', 1), ('deployment', 1), ('configuration', 1), ('security', 1), ('performance', 1), ('availability', 1)]
[('version', 3), ('book', 2), ('gimp', 1), ('released', 1), ('end', 1), ('likely', 1), ('first', 1), ('market', 1), ('new', 1), ('pre', 1), ('outdatedtakes', 1), ('project', 1), ('based', 1), ('approach', 1), ('reader', 1), ('taught', 1), ('real', 1), ('world', 1), ('example', 1)]
[('php', 4), ('day', 2), ('cook', 1), ('book', 1), ('available', 1), ('completely', 1), ('date', 1), ('includes', 1), ('teaching', 1), ('material', 1), ('object', 1), ('oriented', 1), ('feature', 1), ('complete', 1), ('code', 1), ('provided', 1), ('solve', 1), ('common', 1), ('problem', 1), ('developer', 1), ('come', 1), ('across', 1)]
[('actionscript', 2), ('animation', 2), ('flash', 2), ('first', 1), ('definitive', 1), ('authoritative', 1), ('book', 1), ('available', 1), ('technique', 1), ('popular', 1), ('discipline', 1), ('developer', 1), ('learn', 1), ('essential', 1), ('skill', 1), ('set', 1), ('learned', 1), ('many', 1)]
[('mootools', 2), ('javascript', 2), ('make', 2), ('light', 1), ('modular', 1), ('framework', 1), ('adding', 1), ('ajax', 1), ('animation', 1), ('interactive', 1), ('element', 1), ('site', 1), ('breeze', 1), ('fancy', 1), ('effect', 1), ('shortcut', 1), ('enhances', 1), ('language', 1), ('writing', 1)]
[('linux', 4), ('administration', 2), ('expert', 1), ('provided', 1), ('invest', 1), ('time', 1), ('learning', 1), ('craft', 1), ('pro', 1), ('system', 1), ('make', 1), ('easy', 1), ('small', 1), ('medium', 1), ('sized', 1), ('business', 1), ('enter', 1), ('world', 1), ('zero', 1), ('cost', 1), ('software', 1), ('running', 1)]
[('portal', 4), ('web', 4), ('information', 2), ('liferay', 1), ('leading', 1), ('open', 1), ('source', 1), ('enterprise', 1), ('framework', 1), ('us', 1), ('java', 1), ('technology', 1), ('often', 1), ('function', 1), ('point', 1), ('access', 1), ('world', 1), ('wide', 1), ('yahoo', 1), ('present', 1)]
[('game', 4), ('flash', 2), ('book', 2), ('essential', 1), ('guide', 1), ('unique', 1), ('tool', 1), ('developer', 1), ('rather', 1), ('focusing', 1), ('bunch', 1), ('low', 1), ('level', 1), ('material', 1), ('dive', 1), ('straight', 1), ('building', 1), ('divided', 1), ('specific', 1), ('genre', 1), ('project', 1)]
[('developer', 1), ('likely', 1), ('painfully', 1), ('aware', 1), ('feature', 1), ('application', 1), ('anticipated', 1), ('software', 1), ('ship', 1), ('order', 1), ('cope', 1), ('eventuality', 1), ('save', 1), ('time', 1), ('perhaps', 1), ('money', 1), ('make', 1), ('sense', 1), ('write', 1)]
[('wpf', 2), ('window', 2), ('applied', 1), ('context', 1), ('set', 1), ('standard', 1), ('leveraging', 1), ('latest', 1), ('user', 1), ('interface', 1), ('technology', 1), ('business', 1), ('application', 1), ('using', 1), ('book', 1), ('learn', 1), ('implement', 1), ('world', 1), ('class', 1), ('professional', 1), ('foundation', 1), ('solution', 1)]
[('quick', 2), ('approach', 2), ('book', 2), ('author', 2), ('start', 1), ('learning', 1), ('python', 1), ('example', 1), ('oriented', 1), ('web', 1), ('site', 1), ('established', 1), ('known', 1), ('open', 1), ('source', 1), ('community', 1), ('unique', 1)]
[('game', 1), ('idea', 1), ('iphone', 1), ('ipad', 1), ('objective', 1), ('seems', 1), ('bit', 1), ('daunting', 1), ('alternative', 1), ('app', 1), ('store', 1), ('picky', 1), ('language', 1), ('hope', 1), ('lua', 1), ('versatile', 1), ('lightweight', 1), ('fast', 1), ('easy', 1), ('learn', 1)]
[('beginning', 1), ('io', 1), ('medium', 1), ('app', 1), ('development', 1), ('ground', 1), ('breaking', 1), ('tutorial', 1), ('explores', 1), ('near', 1), ('limitless', 1), ('programmable', 1), ('audio', 1), ('visual', 1), ('capability', 1), ('iphone', 1), ('ipad', 1), ('ipod', 1), ('touch', 1), ('using', 1), ('real', 1), ('world', 1), ('example', 1), ('thorough', 1), ('explanation', 1), ('code', 1)]
[('android', 4), ('game', 2), ('development', 2), ('ndk', 2), ('beginning', 1), ('introduces', 1), ('general', 1), ('developer', 1), ('powerful', 1), ('native', 1), ('kit', 1), ('platform', 1), ('allows', 1), ('build', 1), ('sophisticated', 1), ('complex', 1), ('best', 1), ('performing', 1)]
[('net', 3), ('asynchronous', 2), ('programming', 2), ('keep', 2), ('pro', 1), ('teach', 1), ('essential', 1), ('skill', 1), ('answer', 1), ('critical', 1), ('question', 1), ('application', 1), ('development', 1), ('program', 1), ('responding', 1), ('time', 1), ('user', 1)]
[('new', 3), ('net', 2), ('th', 1), ('edition', 1), ('pro', 1), ('platform', 1), ('completely', 1), ('revised', 1), ('rewritten', 1), ('reflect', 1), ('latest', 1), ('change', 1), ('language', 1), ('specification', 1), ('advance', 1), ('framework', 1), ('find', 1), ('chapter', 1), ('covering', 1)]
[('xd', 2), ('render', 1), ('high', 1), ('quality', 1), ('design', 1), ('interactive', 1), ('prototype', 1), ('web', 1), ('site', 1), ('mobile', 1), ('apps', 1), ('using', 1), ('adobe', 1), ('powerful', 1), ('drawing', 1), ('layout', 1), ('tool', 1), ('book', 1), ('provides', 1), ('depth', 1), ('look', 1), ('show', 1), ('quickly', 1), ('speed', 1), ('simplify', 1)]
[('column', 2), ('verity', 1), ('stob', 1), ('popular', 1), ('throughout', 1), ('sector', 1), ('think', 1), ('monty', 1), ('python', 1), ('office', 1), ('meet', 1), ('many', 1), ('available', 1), ('public', 1), ('exe', 1), ('stopped', 1), ('publishing', 1)]
[('written', 1), ('member', 1), ('original', 1), ('language', 1), ('design', 1), ('team', 1), ('program', 1), ('manager', 1), ('contains', 1), ('expertise', 1), ('pro', 1), ('programmer', 1), ('want', 1), ('follows', 1), ('successful', 1), ('first', 1), ('second', 1), ('edition', 1), ('earliest', 1), ('practical', 1), ('book', 1), ('developer', 1)]
[('technology', 2), ('huge', 1), ('surge', 1), ('interest', 1), ('web', 1), ('last', 1), ('couple', 1), ('year', 1), ('microsoft', 1), ('contribution', 1), ('area', 1), ('asp', 1), ('net', 1), ('ajax', 1), ('silverlight', 1), ('coupled', 1), ('supporting', 1), ('framework', 1), ('ancillary', 1), ('tool', 1)]
[('biztalk', 3), ('best', 2), ('pro', 2), ('compendium', 1), ('practice', 1), ('implementation', 1), ('wisdom', 1), ('revision', 1), ('highly', 1), ('successful', 1), ('selling', 1), ('book', 1), ('fully', 1), ('updated', 1), ('cover', 1), ('development', 1), ('find', 1), ('chapter', 1)]
[('silverlight', 2), ('animation', 2), ('microsoft', 1), ('breakthrough', 1), ('technology', 1), ('creating', 1), ('rich', 1), ('experience', 1), ('web', 1), ('book', 1), ('illustrates', 1), ('power', 1), ('graphic', 1), ('game', 1), ('creation', 1), ('tool', 1), ('teach', 1), ('fundamental', 1), ('computer', 1), ('using', 1)]
[('natural', 3), ('want', 2), ('data', 2), ('language', 2), ('business', 1), ('today', 1), ('actionable', 1), ('insight', 1), ('reveal', 1), ('user', 1), ('friendly', 1), ('form', 1), ('human', 1), ('search', 1), ('center', 1), ('storm', 1)]
[('silverlight', 2), ('accelerated', 1), ('speed', 1), ('version', 1), ('quickly', 1), ('efficiently', 1), ('author', 1), ('jeff', 1), ('scanlon', 1), ('assumes', 1), ('already', 1), ('comfortable', 1), ('basic', 1), ('net', 1), ('coding', 1), ('window', 1), ('presentation', 1), ('foundation', 1), ('wpf', 1)]
[('jquery', 1), ('popular', 1), ('powerful', 1), ('javascript', 1), ('library', 1), ('available', 1), ('today', 1), ('widely', 1), ('used', 1), ('create', 1), ('rich', 1), ('user', 1), ('experience', 1), ('simplify', 1), ('website', 1), ('application', 1), ('development', 1), ('tool', 1), ('choice', 1), ('web', 1), ('developer', 1), ('everywhere', 1)]
[('spring', 5), ('messaging', 3), ('use', 3), ('application', 2), ('build', 1), ('using', 1), ('power', 1), ('boot', 1), ('event', 1), ('web', 1), ('websocket', 1), ('sockjs', 1), ('stomp', 1), ('mvc', 1), ('jms', 1), ('redis', 1), ('pub', 1), ('sub', 1), ('amqp', 1), ('reliable', 1)]
[('medium', 2), ('book', 1), ('enables', 1), ('unleash', 1), ('entertainment', 1), ('potential', 1), ('window', 1), ('pc', 1), ('tablet', 1), ('phone', 1), ('combination', 1), ('three', 1), ('learn', 1), ('stream', 1), ('movie', 1), ('tv', 1), ('show', 1), ('manage', 1), ('collection', 1), ('purchase', 1), ('new', 1), ('upload', 1)]
[('web', 3), ('api', 3), ('asp', 2), ('net', 2), ('recipe', 2), ('provides', 1), ('code', 1), ('solve', 1), ('full', 1), ('range', 1), ('problem', 1), ('question', 1), ('mark', 1), ('might', 1), ('face', 1), ('developing', 1), ('line', 1), ('business', 1), ('application', 1), ('give', 1), ('depth', 1), ('explanation', 1)]
[('j', 2), ('data', 2), ('visualization', 2), ('indispensable', 1), ('guide', 1), ('mastering', 1), ('efficient', 1), ('use', 1), ('professional', 1), ('standard', 1), ('project', 1), ('learn', 1), ('work', 1), ('think', 1), ('expert', 1), ('practically', 1)]
[('emacs', 3), ('book', 2), ('harley', 1), ('hahn', 1), ('demystifies', 1), ('programmer', 1), ('student', 1), ('everyday', 1), ('user', 1), ('nbsp', 1), ('first', 1), ('part', 1), ('carefully', 1), ('creates', 1), ('context', 1), ('work', 1), ('exactly', 1), ('relate', 1), ('personal', 1), ('need', 1)]
[('open', 3), ('source', 2), ('software', 2), ('leverage', 1), ('existing', 1), ('free', 1), ('build', 1), ('identity', 1), ('access', 1), ('management', 1), ('iam', 1), ('platform', 1), ('serve', 1), ('organization', 1), ('long', 1), ('term', 1), ('nbsp', 1), ('emergence', 1), ('standard', 1), ('easier', 1)]
[('programming', 2), ('experience', 2), ('stay', 1), ('motivated', 1), ('overcome', 1), ('obstacle', 1), ('learning', 1), ('use', 1), ('swift', 1), ('playground', 1), ('io', 1), ('developer', 1), ('book', 1), ('perfect', 1), ('background', 1), ('object', 1), ('oriented', 1)]
[('industrial', 3), ('iot', 2), ('build', 1), ('strong', 1), ('efficient', 1), ('solution', 1), ('enterprise', 1), ('level', 1), ('mastering', 1), ('using', 1), ('microsoft', 1), ('azure', 1), ('book', 1), ('focus', 1), ('development', 1), ('internet', 1), ('thing', 1), ('iiot', 1), ('paradigm', 1), ('discussing', 1), ('various', 1)]
[('az', 2), ('use', 1), ('invaluable', 1), ('study', 1), ('companion', 1), ('hand', 1), ('guide', 1), ('help', 1), ('prepare', 1), ('certification', 1), ('exam', 1), ('way', 1), ('becoming', 1), ('azure', 1), ('solution', 1), ('architect', 1), ('book', 1), ('start', 1), ('overview', 1), ('public', 1), ('private', 1)]
[('web', 2), ('development', 2), ('leverage', 1), ('existing', 1), ('skill', 1), ('learn', 1), ('whole', 1), ('cycle', 1), ('hybrid', 1), ('mobile', 1), ('app', 1), ('nbsp', 1), ('edition', 1), ('fully', 1), ('updated', 1), ('change', 1), ('ionic', 1), ('including', 1), ('stencil', 1), ('new', 1), ('framework', 1), ('based', 1), ('component', 1), ('standard', 1)]
[('xamarin', 3), ('form', 2), ('leverage', 1), ('build', 1), ('io', 1), ('android', 1), ('apps', 1), ('using', 1), ('single', 1), ('cross', 1), ('platform', 1), ('approach', 1), ('book', 1), ('xaml', 1), ('companion', 1), ('guide', 1), ('mobile', 1), ('application', 1), ('development', 1), ('nbsp', 1), ('begin', 1), ('overview', 1), ('move', 1)]
[('technique', 2), ('become', 1), ('effective', 1), ('cyber', 1), ('forensics', 1), ('investigator', 1), ('gain', 1), ('collection', 1), ('practical', 1), ('efficient', 1), ('job', 1), ('done', 1), ('diving', 1), ('straight', 1), ('discussion', 1), ('anti', 1), ('forensic', 1), ('book', 1), ('show', 1), ('many', 1), ('way', 1), ('effectively', 1), ('detect', 1)]
[('game', 2), ('expand', 1), ('basic', 1), ('knowledge', 1), ('python', 1), ('use', 1), ('pygame', 1), ('create', 1), ('fast', 1), ('paced', 1), ('video', 1), ('graphic', 1), ('sound', 1), ('second', 1), ('edition', 1), ('show', 1), ('integrate', 1), ('electronic', 1), ('component', 1), ('using', 1), ('build', 1), ('general', 1), ('purpose', 1)]
[('step', 2), ('git', 2), ('learn', 1), ('fundamental', 1), ('version', 1), ('control', 1), ('tutorial', 1), ('teach', 1), ('in', 1), ('out', 1), ('book', 1), ('complete', 1), ('guide', 1), ('github', 1), ('work', 1), ('professional', 1), ('team', 1), ('environment', 1), ('nbsp', 1), ('divided', 1), ('three', 1), ('part', 1)]
[('dax', 2), ('power', 2), ('bi', 2), ('learn', 1), ('intricate', 1), ('working', 1), ('mechanic', 1), ('necessary', 1), ('solve', 1), ('advanced', 1), ('challenge', 1), ('book', 1), ('data', 1), ('analysis', 1), ('expression', 1), ('nbsp', 1), ('formula', 1), ('language', 1), ('used', 1), ('microsoft', 1), ('leading', 1), ('self', 1), ('service', 1)]
[('sql', 4), ('transact', 2), ('pro', 1), ('programmer', 1), ('guide', 1), ('every', 1), ('developer', 1), ('key', 1), ('making', 1), ('full', 1), ('use', 1), ('server', 1), ('powerful', 1), ('built', 1), ('language', 1), ('discussing', 1), ('new', 1), ('existing', 1), ('feature', 1), ('book', 1), ('take', 1), ('expert', 1), ('guided', 1), ('tour', 1)]
[('java', 3), ('fundamental', 2), ('provides', 2), ('beginning', 1), ('comprehensive', 1), ('approach', 1), ('learning', 1), ('programming', 1), ('language', 1), ('especially', 1), ('object', 1), ('oriented', 1), ('necessary', 1), ('level', 1), ('development', 1), ('author', 1), ('kishori', 1), ('sharan', 1), ('diagram', 1)]
[('analytics', 4), ('innovation', 2), ('business', 2), ('learn', 1), ('need', 1), ('know', 1), ('seven', 1), ('key', 1), ('disrupting', 1), ('today', 1), ('open', 1), ('source', 1), ('model', 1), ('cloud', 1), ('hadoop', 1), ('ecosystem', 1), ('spark', 1), ('memory', 1), ('streaming', 1), ('deep', 1), ('learning', 1)]
[('book', 2), ('mysql', 2), ('first', 1), ('cover', 1), ('depth', 1), ('foregos', 1), ('reiteration', 1), ('basic', 1), ('found', 1), ('concentrate', 1), ('advanced', 1), ('application', 1), ('enterprise', 1), ('environment', 1), ('double', 1), ('reference', 1), ('user', 1), ('interested', 1)]
[('deep', 1), ('thorough', 1), ('coverage', 1), ('sr', 1), ('technology', 1), ('related', 1), ('professional', 1), ('level', 1), ('business', 1), ('report', 1), ('supported', 1), ('technically', 1), ('validated', 1), ('m', 1), ('team', 1), ('especially', 1), ('exclusively', 1), ('applicable', 1), ('reader', 1), ('medical', 1), ('sector', 1)]
[('development', 2), ('php', 2), ('last', 1), ('second', 1), ('edition', 1), ('classic', 1), ('web', 1), ('work', 1), ('object', 1), ('pattern', 1), ('practice', 1), ('show', 1), ('meld', 1), ('power', 1), ('sound', 1), ('enterprise', 1), ('technique', 1), ('embraced', 1), ('professional', 1), ('programmer', 1), ('going', 1), ('beyond', 1)]
[('robosapien', 3), ('access', 2), ('dr', 1), ('mark', 1), ('tilden', 1), ('inventor', 1), ('provided', 1), ('author', 1), ('exclusive', 1), ('program', 1), ('provides', 1), ('plus', 1), ('easter', 1), ('egg', 1), ('hidden', 1), ('secret', 1), ('programmed', 1), ('million', 1)]
[('expert', 2), ('stan', 1), ('lippman', 1), ('best', 1), ('selling', 1), ('author', 1), ('long', 1), ('major', 1), ('contributor', 1), ('growth', 1), ('standardization', 1), ('written', 1), ('full', 1), ('sound', 1), ('insight', 1), ('advice', 1), ('book', 1), ('profitably', 1)]
[('xml', 3), ('sql', 3), ('server', 2), ('knowledge', 1), ('ability', 1), ('apply', 1), ('de', 1), ('rigueur', 1), ('today', 1), ('world', 1), ('developer', 1), ('administrator', 1), ('exception', 1), ('rule', 1), ('pro', 1), ('key', 1), ('unlocking', 1), ('powerful', 1), ('feature', 1), ('set', 1), ('first', 1), ('introduced', 1)]
[('service', 3), ('soa', 2), ('bus', 2), ('enterprise', 2), ('definitive', 1), ('guide', 1), ('oracle', 1), ('second', 1), ('edition', 1), ('target', 1), ('professional', 1), ('software', 1), ('developer', 1), ('architect', 1), ('know', 1), ('development', 1), ('new', 1), ('esbs', 1), ('oriented', 1), ('architecture', 1)]
[('project', 2), ('best', 1), ('coder', 1), ('world', 1), ('working', 1), ('team', 1), ('management', 1), ('scratch', 1), ('almost', 1), ('certain', 1), ('delayed', 1), ('come', 1), ('budget', 1), ('case', 1), ('fail', 1), ('entirely', 1), ('taking', 1), ('precise', 1)]
[('ubuntu', 3), ('server', 3), ('lts', 2), ('edition', 2), ('linux', 2), ('beginning', 1), ('administration', 1), ('second', 1), ('touchstone', 1), ('companion', 1), ('book', 1), ('anyone', 1), ('implementing', 1), ('author', 1), ('sander', 1), ('van', 1), ('vugt', 1), ('introduces', 1), ('recent', 1), ('popular', 1)]
[('server', 3), ('ubuntu', 2), ('pro', 1), ('administration', 1), ('teach', 1), ('advanced', 1), ('system', 1), ('building', 1), ('reading', 1), ('book', 1), ('able', 1), ('manage', 1), ('anything', 1), ('simple', 1), ('file', 1), ('multiple', 1), ('virtual', 1), ('high', 1), ('availability', 1), ('cluster', 1), ('capstone', 1)]
[('jquery', 3), ('today', 1), ('popular', 1), ('javascript', 1), ('web', 1), ('application', 1), ('development', 1), ('framework', 1), ('library', 1), ('recipe', 1), ('started', 1), ('quickly', 1), ('easily', 1), ('serve', 1), ('valuable', 1), ('long', 1), ('term', 1), ('reference', 1), ('book', 1), ('begin', 1)]
[('application', 2), ('troubleshooting', 2), ('database', 1), ('running', 1), ('fast', 1), ('enough', 1), ('usually', 1), ('first', 1), ('move', 1), ('finding', 1), ('slow', 1), ('part', 1), ('often', 1), ('easy', 1), ('discovering', 1), ('solution', 1), ('prove', 1), ('difficult', 1), ('oracle', 1)]
[('theory', 2), ('development', 2), ('learn', 1), ('behind', 1), ('cross', 1), ('platform', 1), ('put', 1), ('practice', 1), ('code', 1), ('using', 1), ('invaluable', 1), ('information', 1), ('presented', 1), ('book', 1), ('depth', 1), ('coverage', 1), ('distribution', 1), ('technique', 1), ('iphone', 1), ('blackberry', 1)]
[('sql', 4), ('oracle', 3), ('beginning', 1), ('introduction', 1), ('interactive', 1), ('query', 1), ('tool', 1), ('specific', 1), ('dialect', 1), ('used', 1), ('database', 1), ('book', 1), ('revision', 1), ('classic', 1), ('mastering', 1), ('plus', 1), ('lex', 1), ('de', 1), ('haan', 1), ('updated', 1), ('cover', 1)]
[('asp', 2), ('net', 2), ('book', 2), ('dynamic', 2), ('date', 1), ('comprehensive', 1), ('introductory', 1), ('find', 1), ('shelf', 1), ('beginning', 1), ('vb', 1), ('guide', 1), ('microsoft', 1), ('latest', 1), ('technology', 1), ('building', 1), ('web', 1), ('site', 1), ('enable', 1), ('build', 1)]
[('oracle', 3), ('application', 2), ('express', 2), ('development', 2), ('beginning', 1), ('introduces', 1), ('talked', 1), ('platform', 1), ('come', 1), ('corporation', 1), ('year', 1), ('called', 1), ('apex', 1), ('short', 1), ('enables', 1), ('rapid', 1), ('easy', 1), ('web', 1), ('based', 1)]
[('iphone', 2), ('development', 2), ('book', 1), ('help', 1), ('join', 1), ('thousand', 1), ('successful', 1), ('apps', 1), ('developer', 1), ('without', 1), ('needing', 1), ('learn', 1), ('objective', 1), ('cocoa', 1), ('touch', 1), ('apis', 1), ('want', 1), ('apply', 1), ('existing', 1), ('web', 1), ('skill', 1), ('ipad', 1)]
[('wcf', 2), ('soa', 2), ('service', 2), ('oriented', 2), ('architecture', 2), ('pro', 1), ('practical', 1), ('microsoft', 1), ('implementation', 1), ('complete', 1), ('guide', 1), ('window', 1), ('communication', 1), ('foundation', 1), ('perspective', 1), ('showing', 1), ('important', 1)]
[('sql', 3), ('server', 3), ('business', 2), ('intelligence', 2), ('foundation', 1), ('introduces', 1), ('entire', 1), ('exciting', 1), ('gamut', 1), ('tool', 1), ('included', 1), ('microsoft', 1), ('designed', 1), ('database', 1), ('rsquo', 1)]
[('mac', 2), ('want', 1), ('learn', 1), ('program', 1), ('sure', 1), ('begin', 1), ('best', 1), ('selling', 1), ('author', 1), ('wallace', 1), ('wang', 1), ('explain', 1), ('started', 1), ('cocoa', 1), ('objective', 1), ('xcode', 1), ('whether', 1), ('experienced', 1), ('window', 1), ('coder', 1), ('moving', 1)]
[('sql', 3), ('oracle', 2), ('learn', 2), ('feature', 2), ('pro', 1), ('unlocks', 1), ('power', 1), ('database', 1), ('mdash', 1), ('potent', 1), ('implementation', 1), ('market', 1), ('today', 1), ('master', 1), ('requires', 1), ('three', 1), ('pronged', 1), ('approach', 1), ('language', 1), ('supporting', 1)]
[('software', 2), ('development', 2), ('devops', 1), ('developer', 1), ('delivers', 1), ('practical', 1), ('thorough', 1), ('introduction', 1), ('approach', 1), ('process', 1), ('tool', 1), ('foster', 1), ('collaboration', 1), ('operation', 1), ('effort', 1), ('agile', 1), ('often', 1), ('end', 1), ('transition', 1), ('phase', 1)]
[('html', 3), ('pro', 1), ('visual', 1), ('studio', 1), ('written', 1), ('help', 1), ('asp', 1), ('net', 1), ('developer', 1), ('make', 1), ('leap', 1), ('inevitable', 1), ('exciting', 1), ('world', 1), ('growing', 1), ('specification', 1), ('promise', 1), ('revolutionize', 1), ('way', 1), ('web', 1), ('site', 1), ('developed', 1), ('impressive', 1), ('set', 1)]
[('asp', 3), ('net', 3), ('remains', 1), ('microsoft', 1), ('preferred', 1), ('technology', 1), ('creating', 1), ('dynamic', 1), ('website', 1), ('providing', 1), ('developer', 1), ('unrivaled', 1), ('power', 1), ('flexibility', 1), ('pro', 1), ('vb', 1), ('complete', 1), ('reference', 1), ('find', 1), ('comprehensively', 1)]
[('best', 2), ('third', 1), ('edition', 1), ('selling', 1), ('book', 1), ('continues', 1), ('bring', 1), ('thinking', 1), ('apply', 1), ('oracle', 1), ('database', 1), ('produce', 1), ('scalable', 1), ('application', 1), ('perform', 1), ('deliver', 1), ('correct', 1), ('result', 1), ('tom', 1), ('kyte', 1), ('darl', 1), ('kuhn', 1), ('share', 1), ('simple', 1)]
[('user', 3), ('data', 2), ('skill', 2), ('managing', 1), ('essential', 1), ('every', 1), ('pc', 1), ('surprisingly', 1), ('though', 1), ('large', 1), ('number', 1), ('even', 1), ('highly', 1), ('experienced', 1), ('exhibit', 1), ('poor', 1), ('file', 1), ('management', 1), ('resulting', 1), ('frustration', 1), ('lost', 1), ('brief', 1), ('invaluable', 1)]
[('application', 3), ('development', 2), ('create', 1), ('html', 1), ('jquery', 1), ('cs', 1), ('based', 1), ('hybrid', 1), ('deploy', 1), ('multiple', 1), ('mobile', 1), ('device', 1), ('including', 1), ('android', 1), ('io', 1), ('window', 1), ('phone', 1), ('kind', 1), ('edge', 1), ('native', 1), ('beginning', 1)]
[('nio', 4), ('java', 2), ('book', 2), ('reference', 2), ('power', 1), ('packed', 1), ('accelerated', 1), ('guide', 1), ('buffer', 1), ('file', 1), ('socket', 1), ('datagrams', 1), ('pipe', 1), ('channel', 1), ('found', 1), ('implementation', 1), ('learn', 1)]
[('sharepoint', 4), ('solution', 2), ('content', 1), ('screenshots', 1), ('book', 1), ('based', 1), ('technique', 1), ('shown', 1), ('applied', 1), ('custom', 1), ('html', 1), ('javascript', 1), ('show', 1), ('build', 1), ('customize', 1)]
[('code', 2), ('solve', 1), ('spring', 1), ('boot', 1), ('problem', 1), ('using', 1), ('complete', 1), ('real', 1), ('world', 1), ('example', 1), ('start', 1), ('new', 1), ('project', 1), ('able', 1), ('copy', 1), ('configuration', 1), ('file', 1), ('book', 1), ('modify', 1), ('need', 1), ('save', 1)]
[('lt', 4), ('gt', 4), ('build', 1), ('high', 1), ('quality', 1), ('web', 1), ('mobile', 1), ('user', 1), ('interface', 1), ('ui', 1), ('interactive', 1), ('fluid', 1), ('provide', 1), ('consistent', 1), ('experience', 1), ('across', 1), ('device', 1), ('desktop', 1), ('tablet', 1), ('smartphones', 1), ('br', 1), ('use', 1), ('material', 1), ('design', 1), ('approach', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('step', 2), ('service', 2), ('started', 1), ('learn', 1), ('approach', 1), ('application', 1), ('development', 1), ('using', 1), ('microsoft', 1), ('azure', 1), ('select', 1), ('right', 1), ('solve', 1), ('problem', 1), ('hand', 1), ('cost', 1), ('effective', 1), ('manner', 1), ('explore', 1), ('potential', 1), ('different', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('jsf', 2), ('learn', 1), ('master', 1), ('new', 1), ('feature', 1), ('mvc', 1), ('web', 1), ('framework', 1), ('definitive', 1), ('guide', 1), ('written', 1), ('javaserver', 1), ('face', 1), ('specification', 1), ('lead', 1), ('author', 1), ('take', 1), ('real', 1), ('world', 1), ('example', 1), ('demonstrate', 1)]
[('lt', 2), ('em', 2), ('gt', 2), ('html', 2), ('animation', 2), ('need', 2), ('foundation', 1), ('javascript', 1), ('cover', 1), ('everything', 1), ('know', 1), ('create', 1), ('dynamic', 1), ('scripted', 1), ('using', 1), ('canvas', 1), ('provides', 1), ('information', 1), ('relevant', 1), ('math', 1), ('moving', 1)]
[('lt', 5), ('gt', 5), ('em', 4), ('database', 3), ('assuming', 1), ('basic', 1), ('knowledge', 1), ('beginning', 1), ('teach', 1), ('fundamental', 1), ('technology', 1), ('programming', 1), ('reader', 1), ('need', 1), ('quickly', 1), ('become', 1), ('highly', 1), ('proficient', 1)]
[('lt', 5), ('gt', 5), ('strong', 2), ('em', 2), ('jpa', 2), ('pro', 1), ('second', 1), ('edition', 1), ('introduces', 1), ('explains', 1), ('demonstrates', 1), ('use', 1), ('new', 1), ('java', 1), ('persistence', 1), ('api', 1), ('perspective', 1), ('specification', 1), ('creator', 1)]
[('lt', 3), ('gt', 3), ('em', 2), ('guide', 2), ('book', 2), ('definitive', 1), ('suse', 1), ('linux', 1), ('enterprise', 1), ('server', 1), ('task', 1), ('oriented', 1), ('designed', 1), ('self', 1), ('study', 1), ('classroom', 1), ('environment', 1), ('serve', 1), ('reference', 1), ('cover', 1), ('skill', 1)]
[('hive', 2), ('lt', 1), ('gt', 1), ('dive', 1), ('world', 1), ('sql', 1), ('hadoop', 1), ('data', 1), ('warehouse', 1), ('book', 1), ('go', 1), ('resource', 1), ('using', 1), ('author', 1), ('scott', 1), ('shaw', 1), ('ankur', 1), ('gupta', 1), ('david', 1), ('kjerrumgaard', 1), ('andreas', 1), ('francois', 1), ('vermeulen', 1), ('take', 1)]
[('decoupled', 2), ('lt', 1), ('gt', 1), ('gain', 1), ('clear', 1), ('understanding', 1), ('important', 1), ('concept', 1), ('cm', 1), ('landscape', 1), ('learn', 1), ('architect', 1), ('implement', 1), ('drupal', 1), ('architecture', 1), ('across', 1), ('stack', 1), ('building', 1), ('back', 1), ('end', 1), ('designing', 1), ('apis', 1)]
[('lt', 5), ('gt', 5), ('em', 4), ('javascript', 3), ('web', 2), ('pro', 1), ('development', 1), ('practical', 1), ('guide', 1), ('front', 1), ('end', 1), ('developer', 1), ('experienced', 1), ('building', 1), ('page', 1), ('html', 1), ('cs', 1), ('wish', 1), ('advance', 1)]
[('xslt', 2), ('step', 2), ('nbsp', 1), ('updated', 1), ('latest', 1), ('revision', 1), ('clear', 1), ('introduction', 1), ('practical', 1), ('everyday', 1), ('task', 1), ('suitable', 1), ('complete', 1), ('beginner', 1), ('even', 1), ('never', 1), ('programmed', 1), ('comprehensive', 1), ('focus', 1)]
[('java', 2), ('developer', 2), ('javaserver', 2), ('majority', 1), ('web', 1), ('tier', 1), ('technology', 1), ('page', 1), ('jsp', 1), ('face', 1), ('jsf', 1), ('apache', 1), ('tomcat', 1), ('mainly', 1), ('applicable', 1), ('relevant', 1), ('need', 1), ('comprehensive', 1), ('user', 1), ('friendly', 1), ('book', 1)]
[('mysql', 2), ('book', 2), ('due', 1), ('released', 1), ('summer', 1), ('slated', 1), ('significant', 1), ('release', 1), ('product', 1), ('history', 1), ('definitive', 1), ('guide', 1), ('third', 1), ('edition', 1), ('first', 1), ('offer', 1), ('depth', 1), ('instruction', 1), ('new', 1), ('feature', 1)]
[('client', 2), ('server', 2), ('basic', 1), ('law', 1), ('web', 1), ('application', 1), ('initiate', 1), ('communication', 1), ('number', 1), ('common', 1), ('use', 1), ('case', 1), ('ideally', 1), ('talk', 1), ('dashboard', 1)]
[('framework', 4), ('zend', 3), ('today', 1), ('popular', 1), ('php', 1), ('based', 1), ('web', 1), ('application', 1), ('development', 1), ('beginning', 1), ('beginner', 1), ('guide', 1), ('learning', 1), ('using', 1), ('cover', 1), ('everything', 1), ('installation', 1), ('various', 1)]
[('java', 3), ('recipe', 2), ('offer', 1), ('solution', 1), ('common', 1), ('programming', 1), ('problem', 1), ('encountered', 1), ('every', 1), ('day', 1), ('developing', 1), ('based', 1), ('application', 1), ('fully', 1), ('updated', 1), ('newest', 1), ('feature', 1), ('technique', 1), ('available', 1), ('provides', 1), ('code', 1), ('example', 1), ('involving', 1)]
[('lt', 9), ('gt', 9), ('angular', 2), ('book', 2), ('div', 1), ('update', 1), ('available', 1), ('follow', 1), ('download', 1), ('source', 1), ('code', 1), ('link', 1), ('apress', 1), ('website', 1), ('br', 1)]
[('lt', 3), ('gt', 3), ('team', 3), ('microsoft', 2), ('need', 1), ('learn', 1), ('use', 1), ('questioning', 1), ('drive', 1), ('user', 1), ('adoption', 1), ('govern', 1), ('content', 1), ('manage', 1), ('access', 1), ('deployment', 1), ('either', 1), ('way', 1), ('mastering', 1), ('stop', 1), ('shop', 1)]
[('lt', 3), ('gt', 3), ('em', 2), ('drupal', 2), ('book', 2), ('definitive', 1), ('guide', 1), ('comprehensive', 1), ('getting', 1), ('site', 1), ('done', 1), ('using', 1), ('powerful', 1), ('extensible', 1), ('content', 1), ('management', 1), ('system', 1), ('written', 1), ('panel', 1), ('expert', 1), ('author', 1), ('cover', 1), ('every', 1)]
[('professional', 2), ('lt', 1), ('gt', 1), ('arduino', 1), ('board', 1), ('impressed', 1), ('hacker', 1), ('engineer', 1), ('whether', 1), ('hobbyist', 1), ('breadboard', 1), ('hazy', 1), ('idea', 1), ('keep', 1), ('going', 1), ('essential', 1), ('institute', 1), ('proper', 1), ('design', 1), ('device', 1)]
[('commerce', 2), ('business', 2), ('lt', 1), ('gt', 1), ('teach', 1), ('create', 1), ('online', 1), ('shop', 1), ('using', 1), ('wordpress', 1), ('woocommerce', 1), ('regardless', 1), ('size', 1), ('help', 1), ('level', 1), ('playing', 1), ('field', 1), ('increase', 1), ('exposure', 1), ('allows', 1), ('company', 1), ('reach', 1)]
[('lt', 5), ('gt', 5), ('ol', 2), ('discover', 1), ('software', 1), ('engineer', 1), ('leverage', 1), ('docker', 1), ('order', 1), ('expedite', 1), ('development', 1), ('velocity', 1), ('book', 1), ('focus', 1), ('fundamental', 1), ('concept', 1), ('program', 1), ('built', 1), ('upon', 1), ('explores', 1)]
[('lt', 6), ('gt', 6), ('em', 4), ('python', 3), ('algorithm', 2), ('strong', 2), ('explains', 1), ('approach', 1), ('analysis', 1), ('design', 1), ('written', 1), ('magnus', 1), ('lie', 1), ('hetland', 1), ('author', 1), ('beginning', 1), ('book', 1), ('sharply', 1), ('focused', 1)]
[('lt', 5), ('gt', 5), ('div', 3), ('mac', 2), ('macbook', 2), ('programming', 2), ('learn', 1), ('code', 1), ('imac', 1), ('mini', 1), ('pro', 1), ('using', 1), ('swift', 1), ('apple', 1), ('hottest', 1), ('language', 1), ('br', 1), ('fully', 1), ('updated', 1), ('cover', 1), ('new', 1), ('touch', 1), ('bar', 1), ('macos', 1), ('absolute', 1)]
[('use', 1), ('solution', 1), ('provided', 1), ('book', 1), ('handle', 1), ('common', 1), ('challenge', 1), ('xamarin', 1), ('form', 1), ('encountered', 1), ('daily', 1), ('basis', 1), ('working', 1), ('example', 1), ('technique', 1), ('presented', 1), ('modify', 1), ('drop', 1), ('directly', 1), ('project', 1)]
[('book', 2), ('lt', 1), ('gt', 1), ('show', 1), ('use', 1), ('simplest', 1), ('ajax', 1), ('framework', 1), ('write', 1), ('real', 1), ('world', 1), ('responsive', 1), ('web', 1), ('application', 1), ('cover', 1), ('zk', 1), ('xul', 1), ('xhtml', 1), ('rich', 1), ('gui', 1), ('component', 1), ('firstpress', 1), ('pdf', 1), ('ebook', 1), ('print', 1), ('demand', 1), ('pod', 1)]
[('browser', 3), ('lt', 1), ('gt', 1), ('silverlight', 1), ('lightweight', 1), ('plug', 1), ('free', 1), ('code', 1), ('traditional', 1), ('confines', 1), ('rule', 1), ('changing', 1), ('groundbreaking', 1), ('technology', 1), ('allows', 1), ('run', 1), ('rich', 1), ('client', 1), ('application', 1), ('right', 1), ('inside', 1)]
[('mongodb', 2), ('database', 2), ('lt', 1), ('gt', 1), ('cross', 1), ('platform', 1), ('nosql', 1), ('fastest', 1), ('growing', 1), ('new', 1), ('world', 1), ('provides', 1), ('rich', 1), ('document', 1), ('oriented', 1), ('structure', 1), ('dynamic', 1), ('query', 1), ('recognize', 1), ('rdbms', 1), ('offering', 1), ('mysql', 1), ('word', 1)]
[('lt', 3), ('gt', 3), ('sql', 3), ('azure', 2), ('em', 2), ('represents', 1), ('microsoft', 1), ('cloud', 1), ('based', 1), ('delivery', 1), ('enterprise', 1), ('caliber', 1), ('server', 1), ('database', 1), ('management', 1), ('system', 1), ('formerly', 1), ('code', 1), ('name', 1), ('oslo', 1), ('pro', 1), ('introduces', 1), ('new', 1), ('platform', 1), ('showing', 1)]
[('platform', 2), ('lt', 1), ('gt', 1), ('window', 1), ('azure', 1), ('rapidly', 1), ('established', 1), ('sophisticated', 1), ('cloud', 1), ('computing', 1), ('available', 1), ('microsoft', 1), ('working', 1), ('continually', 1), ('update', 1), ('product', 1), ('keep', 1), ('cutting', 1), ('edge', 1), ('future', 1), ('look', 1)]
[('lt', 3), ('gt', 3), ('step', 2), ('cloud', 2), ('use', 1), ('process', 1), ('create', 1), ('deploy', 1), ('first', 1), ('azure', 1), ('iot', 1), ('edge', 1), ('solution', 1), ('modern', 1), ('day', 1), ('developer', 1), ('architect', 1), ('today', 1), ('focused', 1), ('world', 1), ('understand', 1), ('make', 1), ('sense', 1), ('leverage', 1), ('computing', 1)]
[('business', 1), ('intelligence', 1), ('project', 1), ('need', 1), ('cost', 1), ('multi', 1), ('million', 1), ('dollar', 1), ('take', 1), ('month', 1), ('even', 1), ('year', 1), ('complete', 1), ('using', 1), ('rapid', 1), ('application', 1), ('development', 1), ('rad', 1), ('technique', 1), ('along', 1), ('microsoft', 1), ('sql', 1), ('server', 1), ('book', 1), ('guide', 1), ('database', 1)]
[('lt', 3), ('gt', 3), ('em', 2), ('expression', 2), ('blend', 2), ('pro', 1), ('net', 1), ('developer', 1), ('graphical', 1), ('artist', 1), ('want', 1), ('learn', 1), ('in', 1), ('out', 1), ('integrated', 1), ('development', 1), ('environment', 1), ('know', 1), ('already', 1), ('tool', 1), ('used', 1)]
[('lt', 4), ('div', 4), ('gt', 4), ('next', 1), ('doctor', 1), ('human', 1), ('machine', 1), ('choice', 1), ('know', 1), ('making', 1), ('book', 1), ('introduces', 1), ('reader', 1), ('pitfall', 1), ('promise', 1), ('artificial', 1)]
[('lt', 5), ('gt', 5), ('div', 3), ('xml', 3), ('json', 3), ('java', 2), ('stop', 1), ('guide', 1), ('mastering', 1), ('metalanguage', 1), ('data', 1), ('format', 1), ('along', 1), ('significant', 1), ('apis', 1), ('parsing', 1), ('creating', 1), ('document', 1)]
[('network', 3), ('lt', 2), ('div', 2), ('gt', 2), ('neural', 2), ('discover', 1), ('concept', 1), ('deep', 1), ('learning', 1), ('used', 1), ('natural', 1), ('language', 1), ('processing', 1), ('nlp', 1), ('full', 1), ('fledged', 1), ('example', 1), ('model', 1), ('amp', 1), ('nbsp', 1), ('recurrent', 1), ('long', 1), ('short', 1), ('term', 1), ('memory', 1)]
[('lt', 3), ('gt', 3), ('em', 2), ('language', 2), ('exploring', 1), ('divide', 1), ('bite', 1), ('sized', 1), ('chunk', 1), ('help', 1), ('learn', 1), ('step', 1), ('time', 1), ('assuming', 1), ('familiarity', 1), ('based', 1), ('amp', 1), ('rsquo', 1), ('taught', 1), ('everything', 1)]
[('spring', 3), ('framework', 2), ('lt', 1), ('div', 1), ('gt', 1), ('build', 1), ('deploy', 1), ('secure', 1), ('boot', 1), ('based', 1), ('enterprise', 1), ('java', 1), ('application', 1), ('security', 1), ('book', 1), ('explores', 1), ('comprehensive', 1), ('set', 1), ('functionality', 1), ('implement', 1), ('industry', 1), ('standard', 1), ('authentication', 1)]
[('edition', 2), ('updated', 2), ('lt', 1), ('gt', 1), ('needed', 1), ('work', 1), ('focusing', 1), ('community', 1), ('hottest', 1), ('topic', 1), ('second', 1), ('book', 1), ('cover', 1), ('video', 1), ('audio', 1), ('podcasts', 1), ('software', 1), ('resource', 1), ('improved', 1)]
[('lt', 3), ('gt', 3), ('kernel', 3), ('em', 2), ('o', 1), ('io', 1), ('programming', 1), ('combine', 1), ('essential', 1), ('operating', 1), ('system', 1), ('architecture', 1), ('knowledge', 1), ('highly', 1), ('practical', 1), ('approach', 1), ('help', 1), ('write', 1), ('effective', 1), ('level', 1), ('code', 1), ('learn', 1), ('fundamental', 1)]
[('lt', 2), ('em', 2), ('gt', 2), ('unity', 2), ('come', 2), ('beginning', 1), ('game', 1), ('development', 1), ('perfect', 1), ('grip', 1), ('programming', 1), ('artist', 1), ('learned', 1), ('tool', 1), ('d', 1), ('max', 1), ('maya', 1), ('cinema', 1)]
[('edition', 3), ('best', 2), ('selling', 2), ('first', 2), ('linux', 2), ('update', 1), ('introducing', 1), ('ubuntu', 1), ('adapted', 1), ('book', 1), ('guide', 1), ('reader', 1), ('commonly', 1), ('desired', 1), ('yet', 1), ('confusing', 1), ('concept', 1), ('task', 1), ('confronted', 1), ('new', 1)]
[('php', 3), ('oracle', 2), ('adaptation', 1), ('jason', 1), ('gilmore', 1), ('best', 1), ('selling', 1), ('book', 1), ('beginning', 1), ('mysql', 1), ('recognition', 1), ('growing', 1), ('use', 1), ('commercial', 1), ('database', 1), ('particular', 1), ('enabling', 1), ('reader', 1), ('based', 1), ('shop', 1), ('learn', 1), ('chosen', 1)]
[('google', 3), ('web', 2), ('toolkit', 2), ('popular', 2), ('solution', 2), ('gwt', 1), ('key', 1), ('member', 1), ('array', 1), ('software', 1), ('development', 1), ('easily', 1), ('ajax', 1), ('framework', 1), ('java', 1), ('developer', 1), ('accelerated', 1), ('offer', 1), ('fast', 1), ('paced', 1), ('yet', 1), ('thorough', 1)]
[('actionscript', 3), ('nbsp', 3), ('book', 1), ('teach', 1), ('aspiring', 1), ('developer', 1), ('experienced', 1), ('one', 1), ('want', 1), ('upgrade', 1), ('knowledge', 1), ('new', 1), ('version', 1), ('detail', 1), ('use', 1), ('flash', 1), ('c', 1), ('flex', 1), ('open', 1), ('source', 1)]
[('excel', 3), ('version', 2), ('feature', 2), ('beyond', 1), ('manual', 1), ('written', 1), ('experienced', 1), ('user', 1), ('want', 1), ('learn', 1), ('quickly', 1), ('efficiently', 1), ('new', 1), ('emphasized', 1), ('complex', 1), ('though', 1), ('available', 1), ('earlier', 1)]
[('data', 3), ('lt', 1), ('div', 1), ('gt', 1), ('discover', 1), ('best', 1), ('practice', 1), ('analysis', 1), ('software', 1), ('development', 1), ('start', 1), ('path', 1), ('becoming', 1), ('fully', 1), ('fledged', 1), ('scientist', 1), ('book', 1), ('teach', 1), ('technique', 1), ('manipulation', 1), ('visualization', 1), ('show', 1)]
[('lt', 5), ('div', 5), ('gt', 5), ('enterprise', 2), ('java', 2), ('ee', 2), ('build', 1), ('powerful', 1), ('back', 1), ('end', 1), ('business', 1), ('logic', 1), ('complex', 1), ('javabeans', 1), ('ejb', 1), ('based', 1), ('application', 1), ('using', 1), ('eclipse', 1), ('web', 1), ('tool', 1), ('project', 1), ('wtp', 1)]
[('pattern', 3), ('learn', 1), ('original', 1), ('gang', 1), ('four', 1), ('design', 1), ('relevant', 1), ('modern', 1), ('php', 1), ('laravel', 1), ('development', 1), ('written', 1), ('working', 1), ('developer', 1), ('us', 1), ('every', 1), ('day', 1), ('easily', 1), ('able', 1), ('implement', 1)]
[('algorithm', 2), ('lt', 1), ('gt', 1), ('implement', 1), ('practical', 1), ('data', 1), ('structure', 1), ('text', 1), ('search', 1), ('amp', 1), ('nbsp', 1), ('discover', 1), ('used', 1), ('inside', 1), ('larger', 1), ('application', 1), ('unique', 1), ('depth', 1), ('guide', 1), ('explains', 1), ('string', 1), ('using', 1), ('programming', 1)]
[('lt', 2), ('gt', 2), ('android', 2), ('div', 1), ('develop', 1), ('apps', 1), ('kotlin', 1), ('create', 1), ('elegant', 1), ('program', 1), ('java', 1), ('equivalent', 1), ('book', 1), ('cover', 1), ('various', 1), ('aspect', 1), ('modern', 1), ('app', 1), ('professional', 1), ('expected', 1), ('encounter', 1), ('chapter', 1), ('dealing', 1)]
[('mobile', 2), ('web', 2), ('lt', 1), ('gt', 1), ('phonegap', 1), ('growing', 1), ('leading', 1), ('open', 1), ('source', 1), ('apps', 1), ('development', 1), ('framework', 1), ('let', 1), ('developer', 1), ('build', 1), ('javascript', 1), ('html', 1), ('based', 1), ('application', 1), ('native', 1), ('wrapper', 1), ('six', 1), ('platform', 1), ('including', 1), ('io', 1), ('android', 1)]
[('linux', 2), ('step', 2), ('qt', 1), ('influential', 1), ('graphical', 1), ('toolkits', 1), ('operating', 1), ('system', 1), ('quickly', 1), ('adopted', 1), ('platform', 1), ('window', 1), ('mac', 1), ('o', 1), ('necessary', 1), ('learn', 1), ('programmer', 1), ('book', 1), ('take', 1), ('reader', 1)]
[('aqualogic', 3), ('first', 2), ('book', 2), ('service', 2), ('bea', 2), ('practical', 1), ('approach', 1), ('oriented', 1), ('architecture', 1), ('soa', 1), ('using', 1), ('bus', 1), ('tool', 1), ('definitive', 1), ('system', 1), ('product', 1), ('lead', 1), ('author', 1), ('cut', 1), ('theory', 1)]
[('django', 2), ('build', 1), ('content', 1), ('management', 1), ('system', 1), ('blog', 1), ('social', 1), ('networking', 1), ('site', 1), ('james', 1), ('bennett', 1), ('introduces', 1), ('popular', 1), ('framework', 1), ('work', 1), ('development', 1), ('project', 1), ('implementing', 1), ('running', 1), ('application', 1), ('learning', 1)]
[('book', 2), ('introduces', 1), ('exciting', 1), ('popular', 1), ('net', 1), ('oriented', 1), ('initiative', 1), ('enterprise', 1), ('application', 1), ('library', 1), ('offer', 1), ('nine', 1), ('class', 1), ('reusable', 1), ('code', 1), ('used', 1), ('solve', 1), ('variety', 1), ('common', 1), ('problem', 1), ('space', 1), ('first', 1), ('introduce', 1)]
[('chapter', 2), ('visual', 1), ('basic', 1), ('recipe', 1), ('book', 1), ('ready', 1), ('made', 1), ('coding', 1), ('solution', 1), ('programmer', 1), ('want', 1), ('spend', 1), ('lot', 1), ('time', 1), ('reading', 1), ('address', 1), ('specific', 1), ('problem', 1), ('domain', 1), ('multimedia', 1), ('database', 1), ('access', 1), ('xml', 1), ('manipulation', 1), ('etc', 1)]
[('jaspersoft', 2), ('business', 2), ('intelligence', 2), ('data', 2), ('jasperforge', 1), ('org', 1), ('open', 1), ('source', 1), ('development', 1), ('portal', 1), ('suite', 1), ('solution', 1), ('delivers', 1), ('comprehensive', 1), ('tool', 1), ('access', 1), ('integration', 1), ('analysis', 1), ('reporting', 1)]
[('php', 3), ('using', 2), ('web', 2), ('framework', 2), ('sometime', 1), ('start', 1), ('want', 1), ('try', 1), ('cakephp', 1), ('open', 1), ('source', 1), ('rapid', 1), ('development', 1), ('built', 1), ('expert', 1), ('kai', 1), ('chan', 1), ('john', 1), ('omokore', 1), ('guide', 1)]
[('openoffice', 3), ('wiki', 2), ('want', 1), ('fly', 1), ('publish', 1), ('local', 1), ('create', 1), ('web', 1), ('presentation', 1), ('add', 1), ('map', 1), ('document', 1), ('beginning', 1), ('book', 1), ('arm', 1), ('org', 1), ('tool', 1), ('creating', 1), ('doc', 1)]
[('want', 2), ('reinvent', 2), ('system', 1), ('administrator', 1), ('need', 1), ('library', 1), ('solution', 1), ('ingenious', 1), ('understandable', 1), ('wheel', 1), ('filesystem', 1), ('management', 1), ('either', 1), ('expert', 1), ('shell', 1), ('scripting', 1), ('ultimate', 1), ('resource', 1)]
[('gone', 2), ('day', 2), ('code', 2), ('era', 1), ('professional', 1), ('javascript', 1), ('development', 1), ('arrived', 1), ('writing', 1), ('client', 1), ('side', 1), ('application', 1), ('hand', 1), ('norm', 1), ('scrounging', 1), ('around', 1), ('internet', 1), ('find', 1), ('snippet', 1)]
[('java', 3), ('core', 2), ('development', 2), ('kit', 2), ('pro', 1), ('programming', 1), ('cover', 1), ('take', 1), ('advantage', 1), ('finer', 1), ('point', 1), ('standard', 1), ('edition', 1), ('se', 1), ('version', 1), ('discover', 1), ('particular', 1), ('working', 1), ('language', 1), ('apis', 1)]
[('nbsp', 3), ('export', 1), ('author', 1), ('barker', 1), ('cover', 1), ('information', 1), ('key', 1), ('proficiency', 1), ('oo', 1), ('programming', 1), ('language', 1), ('java', 1), ('show', 1), ('really', 1), ('create', 1), ('reusable', 1), ('code', 1), ('extensible', 1), ('application', 1)]
[('book', 1), ('give', 1), ('developer', 1), ('experienced', 1), ('taken', 1), ('first', 1), ('step', 1), ('small', 1), ('fast', 1), ('paced', 1), ('primer', 1), ('kick', 1), ('start', 1), ('world', 1), ('cli', 1), ('twenty', 1), ('fluff', 1), ('chapter', 1), ('microsoft', 1), ('insider', 1), ('take', 1), ('reader', 1)]
[('spring', 3), ('book', 1), ('take', 1), ('developer', 1), ('first', 1), ('step', 1), ('using', 1), ('whilst', 1), ('discussing', 1), ('relevant', 1), ('technology', 1), ('integrated', 1), ('aware', 1), ('working', 1), ('make', 1), ('easier', 1), ('use', 1), ('focus', 1)]
[('beginner', 2), ('flash', 2), ('new', 1), ('edition', 1), ('best', 1), ('selling', 1), ('respected', 1), ('book', 1), ('sham', 1), ('bhangal', 1), ('known', 1), ('community', 1), ('world', 1), ('class', 1), ('teacher', 1), ('even', 1), ('contacted', 1), ('personal', 1), ('tuition', 1), ('buying', 1)]
[('apache', 2), ('beehive', 2), ('pro', 1), ('first', 1), ('book', 1), ('including', 1), ('eclipse', 1), ('pollinate', 1), ('plug', 1), ('time', 1), ('published', 1), ('cover', 1), ('anticipated', 1), ('open', 1), ('source', 1), ('soa', 1), ('driven', 1), ('ee', 1), ('alternative', 1), ('framework', 1), ('originally', 1), ('created', 1)]
[('net', 2), ('vb', 2), ('first', 1), ('understand', 1), ('visual', 1), ('basic', 1), ('pro', 1), ('platform', 1), ('provides', 1), ('developer', 1), ('complete', 1), ('guide', 1), ('new', 1), ('technology', 1), ('explaining', 1), ('importance', 1), ('key', 1), ('language', 1), ('feature', 1), ('edition', 1)]
[('flash', 1), ('engaging', 1), ('innovative', 1), ('versatile', 1), ('technology', 1), ('available', 1), ('allowing', 1), ('creation', 1), ('anything', 1), ('animated', 1), ('banner', 1), ('simple', 1), ('cartoon', 1), ('rich', 1), ('internet', 1), ('application', 1), ('interactive', 1), ('video', 1), ('dynamic', 1), ('user', 1), ('interface', 1), ('web', 1)]
[('backup', 2), ('large', 2), ('good', 1), ('recovery', 1), ('strategy', 1), ('key', 1), ('health', 1), ('organization', 1), ('medium', 1), ('scale', 1), ('system', 1), ('administrator', 1), ('protect', 1), ('amount', 1), ('critical', 1), ('data', 1), ('design', 1), ('solution', 1), ('scalable', 1), ('optimized', 1)]
[('design', 3), ('lego', 2), ('mindstorms', 2), ('nxt', 2), ('fun', 2), ('competition', 2), ('winning', 1), ('pattern', 1), ('work', 1), ('rsquo', 1), ('building', 1), ('education', 1), ('especially', 1), ('author', 1), ('james', 1), ('trobaugh', 1), ('experienced', 1)]
[('iphoto', 3), ('taking', 1), ('max', 1), ('walk', 1), ('user', 1), ('apple', 1), ('popular', 1), ('software', 1), ('application', 1), ('ilife', 1), ('suite', 1), ('book', 1), ('help', 1), ('reader', 1), ('use', 1), ('fullest', 1), ('organize', 1), ('create', 1), ('digital', 1), ('memory', 1), ('keepsake', 1), ('learn', 1)]
[('game', 4), ('android', 2), ('basic', 2), ('beginning', 1), ('offer', 1), ('everything', 1), ('need', 1), ('join', 1), ('rank', 1), ('successful', 1), ('developer', 1), ('start', 1), ('design', 1), ('fundamental', 1), ('programming', 1), ('progress', 1), ('towards', 1), ('creating', 1), ('engine', 1), ('playable', 1)]
[('mac', 2), ('o', 2), ('lion', 2), ('come', 1), ('long', 1), ('way', 1), ('best', 1), ('version', 1), ('yet', 1), ('apple', 1), ('desktop', 1), ('laptop', 1), ('operating', 1), ('system', 1), ('stable', 1), ('powerful', 1), ('versatile', 1), ('allows', 1), ('everyday', 1), ('task', 1), ('ease', 1), ('taking', 1), ('max', 1), ('walk', 1)]
[('apps', 3), ('developer', 2), ('today', 1), ('iphone', 1), ('ipad', 1), ('often', 1), ('running', 1), ('need', 1), ('refine', 1), ('improve', 1), ('optimize', 1), ('performance', 1), ('complex', 1), ('created', 1), ('even', 1), ('important', 1), ('deal', 1), ('critical', 1), ('issue', 1)]
[('storyboarding', 2), ('app', 2), ('beginner', 1), ('never', 1), ('programmed', 1), ('beginning', 1), ('io', 1), ('show', 1), ('extract', 1), ('cool', 1), ('innovative', 1), ('idea', 1), ('head', 1), ('working', 1), ('ready', 1), ('sale', 1), ('itunes', 1), ('store', 1), ('using', 1), ('apple', 1), ('new', 1), ('technology', 1)]
[('apps', 3), ('security', 3), ('android', 2), ('provides', 1), ('guiding', 1), ('principle', 1), ('best', 1), ('design', 1), ('develop', 1), ('mind', 1), ('explores', 1), ('concept', 1), ('used', 1), ('secure', 1), ('developer', 1), ('use', 1), ('incorporate', 1), ('feature', 1)]
[('framework', 3), ('php', 2), ('web', 2), ('development', 2), ('zend', 1), ('truly', 1), ('amazing', 1), ('based', 1), ('application', 1), ('platform', 1), ('breathing', 1), ('new', 1), ('life', 1), ('common', 1), ('us', 1), ('build', 1), ('content', 1), ('driven', 1), ('site', 1), ('pro', 1)]
[('cloud', 2), ('data', 2), ('couchdb', 2), ('new', 1), ('world', 1), ('computing', 1), ('need', 1), ('storage', 1), ('scalable', 1), ('portable', 1), ('simple', 1), ('database', 1), ('engine', 1), ('helping', 1), ('open', 1), ('source', 1), ('architect', 1), ('put', 1), ('store', 1), ('onto', 1), ('firm', 1), ('foundation', 1), ('beginning', 1), ('provides', 1), ('tool', 1), ('begin', 1)]
[('game', 3), ('iphone', 2), ('percent', 2), ('apps', 2), ('hot', 1), ('look', 1), ('number', 1), ('make', 1), ('total', 1), ('popular', 1), ('surprised', 1), ('course', 1), ('filled', 1), ('ipod', 1), ('touch', 1), ('many', 1), ('hope', 1)]
[('business', 2), ('web', 1), ('site', 1), ('collaboration', 1), ('document', 1), ('management', 1), ('paperless', 1), ('office', 1), ('want', 1), ('today', 1), ('achieve', 1), ('goal', 1), ('importantly', 1), ('work', 1), ('million', 1), ('small', 1), ('medium', 1), ('sized', 1), ('find', 1)]
[('java', 4), ('edition', 2), ('ee', 2), ('platform', 2), ('enterprise', 1), ('continues', 1), ('leading', 1), ('technology', 1), ('oracle', 1), ('previously', 1), ('sun', 1), ('beginning', 1), ('glassfish', 1), ('second', 1), ('first', 1), ('tutorial', 1), ('book', 1), ('final', 1), ('version', 1)]
[('html', 2), ('web', 2), ('application', 1), ('take', 1), ('power', 1), ('ease', 1), ('scalability', 1), ('responsiveness', 1), ('never', 1), ('book', 1), ('developer', 1), ('learn', 1), ('use', 1), ('latest', 1), ('cutting', 1), ('edge', 1), ('technology', 1), ('available', 1), ('recent', 1), ('version', 1)]
[('author', 1), ('nbsp', 1), ('demonstrate', 1), ('technique', 1), ('controlling', 1), ('flash', 1), ('web', 1), ('front', 1), ('end', 1), ('data', 1), ('database', 1), ('repository', 1)]
[('window', 4), ('apps', 2), ('provide', 2), ('revolutionizing', 1), ('development', 1), ('platform', 1), ('fast', 1), ('fluid', 1), ('tactile', 1), ('chrome', 1), ('free', 1), ('brand', 1), ('new', 1), ('look', 1), ('feel', 1), ('user', 1), ('rely', 1), ('microsoft', 1), ('modern', 1), ('ui', 1), ('rich', 1)]
[('matlab', 2), ('language', 2), ('high', 1), ('level', 1), ('environment', 1), ('numerical', 1), ('computation', 1), ('visualization', 1), ('programming', 1), ('using', 1), ('analyze', 1), ('data', 1), ('develop', 1), ('algorithm', 1), ('create', 1), ('model', 1), ('application', 1), ('tool', 1), ('built', 1), ('math', 1), ('function', 1)]
[('java', 3), ('game', 2), ('beginning', 1), ('development', 1), ('written', 1), ('expert', 1), ('author', 1), ('wallace', 1), ('jackson', 1), ('teach', 1), ('fundamental', 1), ('building', 1), ('highly', 1), ('illustrative', 1), ('using', 1), ('programming', 1), ('language', 1), ('book', 1), ('employ', 1), ('open', 1), ('source', 1), ('software', 1)]
[('deep', 2), ('learning', 2), ('application', 2), ('nbsp', 2), ('deploy', 1), ('production', 1), ('across', 1), ('multiple', 1), ('platform', 1), ('work', 1), ('computer', 1), ('vision', 1), ('use', 1), ('convolutional', 1), ('neural', 1), ('network', 1), ('cnn', 1), ('model', 1), ('python', 1), ('book', 1), ('start', 1), ('explaining', 1)]
[('gain', 1), ('essential', 1), ('skill', 1), ('hand', 1), ('expertise', 1), ('required', 1), ('pas', 1), ('lpic', 1), ('certification', 1), ('exam', 1), ('book', 1), ('provides', 1), ('insight', 1), ('confidently', 1), ('install', 1), ('manage', 1), ('troubleshoot', 1), ('openldap', 1), ('samba', 1), ('freeipa', 1), ('helping', 1), ('started', 1)]
[('fundamental', 2), ('gain', 1), ('concept', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('example', 1), ('java', 1), ('second', 1), ('edition', 1), ('come', 1), ('detailed', 1), ('coverage', 1), ('enhanced', 1), ('discussion', 1), ('topic', 1), ('inheritance', 1), ('polymorphism', 1), ('abstract', 1), ('class', 1), ('interface', 1)]
[('effect', 4), ('native', 2), ('plug', 2), ('break', 2), ('harness', 1), ('full', 1), ('power', 1), ('mastering', 1), ('author', 1), ('chad', 1), ('perkins', 1), ('creation', 1), ('application', 1), ('available', 1), ('toolset', 1), ('show', 1), ('used', 1), ('optimally', 1), ('medium', 1), ('project', 1), ('make', 1), ('sense', 1), ('use', 1)]
[('inspirational', 1), ('book', 1), ('provides', 1), ('backstory', 1), ('current', 1), ('attempt', 1), ('state', 1), ('corporation', 1), ('control', 1), ('internet', 1), ('explains', 1), ('key', 1), ('issue', 1), ('privacy', 1), ('net', 1), ('neutrality', 1), ('copyright', 1), ('way', 1), ('accessible', 1), ('non', 1), ('expert', 1)]
[('twitter', 1), ('become', 1), ('household', 1), ('name', 1), ('discussed', 1), ('role', 1), ('prominent', 1), ('national', 1), ('election', 1), ('natural', 1), ('disaster', 1), ('political', 1), ('movement', 1), ('malign', 1), ('narcissistic', 1), ('chatter', 1), ('book', 1), ('take', 1), ('critical', 1), ('step', 1), ('back', 1)]
[('conference', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('agent', 1), ('artificial', 1), ('intelligence', 1), ('icaart', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('january', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('provides', 1), ('theoretical', 1), ('practical', 1), ('background', 1), ('digital', 1), ('creativity', 1), ('management', 1), ('related', 1), ('agent', 1), ('based', 1), ('modeling', 1), ('abm', 1), ('result', 1), ('basis', 1), ('set', 1), ('realistic', 1), ('assumption', 1), ('several', 1), ('topic', 1), ('knowledge', 1), ('network', 1)]
[('service', 2), ('architecture', 2), ('book', 1), ('present', 1), ('emerging', 1), ('trend', 1), ('evolution', 1), ('oriented', 1), ('enterprise', 1), ('new', 1), ('method', 1), ('business', 1), ('integrating', 1), ('support', 1), ('mobility', 1), ('system', 1), ('internet', 1), ('thing', 1), ('ubiquitous', 1)]
[('cybersecurity', 2), ('springerbrief', 1), ('give', 1), ('reader', 1), ('detailed', 1), ('account', 1), ('israel', 1), ('evolved', 1), ('past', 1), ('decade', 1), ('formation', 1), ('region', 1), ('strategy', 1), ('explored', 1), ('depth', 1), ('analysis', 1), ('key', 1), ('development', 1)]
[('system', 2), ('rigorous', 1), ('book', 1), ('complete', 1), ('date', 1), ('reference', 1), ('csound', 1), ('perspective', 1), ('main', 1), ('developer', 1), ('power', 1), ('user', 1), ('explains', 1), ('including', 1), ('basic', 1), ('mode', 1), ('operation', 1), ('programming', 1), ('language', 1), ('explores', 1)]
[('video', 2), ('coding', 2), ('av', 2), ('book', 1), ('present', 1), ('overview', 1), ('state', 1), ('art', 1), ('technology', 1), ('specifically', 1), ('introduces', 1), ('tool', 1), ('standard', 1), ('describing', 1), ('help', 1), ('achieve', 1), ('significant', 1), ('improvement', 1), ('efficiency', 1), ('future', 1)]
[('information', 2), ('system', 2), ('development', 2), ('improving', 2), ('enterprise', 2), ('communication', 2), ('conference', 2), ('collected', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('isd', 1), ('held', 1), ('seville', 1)]
[('programming', 2), ('textbook', 1), ('devote', 1), ('page', 1), ('explaining', 1), ('introductory', 1), ('concept', 1), ('python', 1), ('workbook', 1), ('focus', 1), ('exclusively', 1), ('exercise', 1), ('following', 1), ('philosophy', 1), ('computer', 1), ('skill', 1), ('best', 1), ('learned', 1), ('experience', 1)]
[('book', 1), ('offer', 1), ('researcher', 1), ('understanding', 1), ('fundamental', 1), ('issue', 1), ('good', 1), ('starting', 1), ('point', 1), ('work', 1), ('rapidly', 1), ('expanding', 1), ('field', 1), ('provides', 1), ('comprehensive', 1), ('survey', 1), ('current', 1), ('development', 1), ('heterogeneous', 1), ('information', 1), ('network', 1)]
[('application', 2), ('book', 1), ('address', 1), ('latest', 1), ('research', 1), ('fuzzy', 1), ('management', 1), ('method', 1), ('business', 1), ('decision', 1), ('showcase', 1), ('broad', 1), ('set', 1), ('discus', 1), ('topic', 1), ('measure', 1), ('quality', 1), ('analytics', 1), ('outcome', 1), ('big', 1), ('data', 1)]
[('cybernetics', 2), ('book', 1), ('concise', 1), ('navigator', 1), ('across', 1), ('history', 1), ('state', 1), ('art', 1), ('prospect', 1), ('evolution', 1), ('wiener', 1), ('present', 1), ('day', 1), ('reason', 1), ('ups', 1), ('down', 1), ('presented', 1), ('correlation', 1)]
[('volume', 2), ('ccis', 2), ('first', 1), ('set', 1), ('contains', 1), ('extended', 1), ('abstract', 1), ('poster', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('international', 1), ('conference', 1), ('distributed', 1), ('application', 1), ('interoperable', 1), ('system', 1), ('dais', 1), ('held', 1), ('neuchâtel', 1), ('switzerland', 1), ('june', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('international', 2), ('conference', 2), ('human', 2), ('lncs', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('aspect', 1), ('aged', 1), ('population', 1), ('itap', 1), ('held', 1), ('part', 1), ('th', 1), ('computer', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('nasa', 1), ('formal', 1), ('method', 1), ('nfm', 1), ('held', 1), ('houston', 1), ('tx', 1), ('usa', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('nbsp', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('big', 1), ('data', 1), ('analytics', 1), ('knowledge', 1), ('discovery', 1), ('dawak', 1), ('held', 1), ('regensburg', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('paper', 2), ('six', 1), ('volume', 1), ('lncs', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('saint', 1), ('petersburg', 1), ('russia', 1), ('july', 1), ('full', 1), ('short', 1)]
[('book', 1), ('introduces', 1), ('essential', 1), ('concept', 1), ('algorithm', 1), ('analysis', 1), ('required', 1), ('core', 1), ('undergraduate', 1), ('graduate', 1), ('computer', 1), ('science', 1), ('course', 1), ('addition', 1), ('providing', 1), ('review', 1), ('fundamental', 1), ('mathematical', 1), ('notion', 1), ('necessary', 1), ('understand', 1)]
[('computing', 2), ('textbook', 1), ('raise', 1), ('thought', 1), ('provoking', 1), ('question', 1), ('regarding', 1), ('rapidly', 1), ('evolving', 1), ('technology', 1), ('highlighting', 1), ('need', 1), ('strong', 1), ('ethical', 1), ('framework', 1), ('computer', 1), ('science', 1), ('education', 1), ('ethic', 1), ('offer', 1), ('concise', 1), ('introduction', 1)]
[('compiler', 2), ('book', 1), ('provides', 1), ('practically', 1), ('oriented', 1), ('introduction', 1), ('high', 1), ('level', 1), ('programming', 1), ('language', 1), ('implementation', 1), ('demystifies', 1), ('go', 1), ('within', 1), ('stimulates', 1), ('reader', 1), ('interest', 1), ('design', 1), ('essential', 1), ('aspect', 1), ('computer', 1)]
[('optimisation', 2), ('second', 1), ('edition', 1), ('textbook', 1), ('fully', 1), ('revised', 1), ('add', 1), ('material', 1), ('loop', 1), ('function', 1), ('call', 1), ('dataflow', 1), ('analysis', 1), ('present', 1), ('technique', 1), ('making', 1), ('realistic', 1), ('compiler', 1), ('simple', 1), ('programming', 1), ('language', 1), ('using', 1)]
[('text', 2), ('lt', 1), ('gt', 1), ('comprehensive', 1), ('reference', 1), ('present', 1), ('depth', 1), ('review', 1), ('state', 1), ('art', 1), ('automotive', 1), ('connectivity', 1), ('cybersecurity', 1), ('regard', 1), ('trend', 1), ('technology', 1), ('innovation', 1), ('application', 1), ('describes', 1), ('challenge', 1)]
[('lt', 1), ('gt', 1), ('textbook', 1), ('first', 1), ('introduction', 1), ('mathematics', 1), ('music', 1), ('theorist', 1), ('covering', 1), ('basic', 1), ('topic', 1), ('set', 1), ('function', 1), ('universal', 1), ('property', 1), ('number', 1), ('recursion', 1), ('graph', 1), ('group', 1), ('ring', 1), ('matrix', 1), ('module', 1), ('continuity', 1), ('calculus', 1)]
[('research', 2), ('engage', 2), ('lt', 1), ('gt', 1), ('book', 1), ('explores', 1), ('researcher', 1), ('perspective', 1), ('method', 1), ('follow', 1), ('operate', 1), ('daily', 1), ('life', 1), ('responsibility', 1), ('society', 1), ('ethical', 1), ('issue', 1), ('confronting', 1)]
[('process', 2), ('book', 1), ('present', 1), ('comprehensive', 1), ('systematic', 1), ('introduction', 1), ('transforming', 1), ('oriented', 1), ('data', 1), ('information', 1), ('underlying', 1), ('business', 1), ('essential', 1), ('kind', 1), ('decision', 1), ('making', 1), ('end', 1), ('author', 1), ('develop', 1)]
[('da', 2), ('einen', 2), ('buch', 1), ('ist', 1), ('eine', 1), ('praktische', 1), ('einführung', 1), ('hochleistungsrechnen', 1), ('auf', 1), ('linux', 1), ('clustern', 1), ('vier', 1), ('teilen', 1), ('grundlagen', 1), ('technik', 1), ('programmierung', 1), ('praxis', 1), ('wird', 1), ('ausführlich', 1), ('erklärt', 1), ('wie', 1), ('haufen', 1), ('cluster', 1), ('preiswerter', 1), ('standard', 1), ('pc', 1)]
[('die', 3), ('dabei', 2), ('auf', 2), ('autoren', 1), ('geben', 1), ('eine', 1), ('fundierte', 1), ('einführung', 1), ('wichtigsten', 1), ('methoden', 1), ('der', 1), ('digitalen', 1), ('bildverarbeitung', 1), ('steht', 1), ('praktische', 1), ('anwendbarkeit', 1), ('vordergrund', 1), ('formale', 1), ('und', 1), ('mathematische', 1), ('aspekte', 1), ('sind', 1), ('da', 1), ('wesentliche', 1), ('reduziert', 1), ('ohne', 1)]
[('requirement', 2), ('engineering', 1), ('process', 1), ('software', 1), ('system', 1), ('gathered', 1), ('analyzed', 1), ('documented', 1), ('managed', 1), ('throughout', 1), ('complete', 1), ('lifecycle', 1), ('traditionally', 1), ('concerned', 1), ('technical', 1), ('goal', 1), ('function', 1)]
[('system', 2), ('adaptive', 1), ('business', 1), ('intelligence', 1), ('combine', 1), ('prediction', 1), ('optimization', 1), ('technique', 1), ('assist', 1), ('decision', 1), ('maker', 1), ('complex', 1), ('rapidly', 1), ('changing', 1), ('environment', 1), ('address', 1), ('fundamental', 1), ('question', 1), ('likely', 1), ('happen', 1), ('future', 1)]
[('written', 2), ('uml', 2), ('test', 2), ('original', 1), ('member', 1), ('industry', 1), ('standardization', 1), ('group', 1), ('book', 1), ('show', 1), ('use', 1), ('complex', 1), ('software', 1), ('system', 1), ('definitive', 1), ('reference', 1), ('based', 1), ('specification', 1), ('language', 1), ('creator', 1)]
[('nan', 1)]
[('decision', 2), ('support', 2), ('system', 2), ('experienced', 1), ('marked', 1), ('increase', 1), ('attention', 1), ('importance', 1), ('past', 1), ('year', 1), ('aim', 1), ('book', 1), ('survey', 1), ('ds', 1), ('field', 1), ('covering', 1), ('developed', 1), ('territory', 1), ('emergent', 1), ('frontier', 1)]
[('nan', 1)]
[('step', 2), ('software', 2), ('defining', 1), ('formal', 1), ('domain', 1), ('ontology', 1), ('considered', 1), ('useful', 1), ('say', 1), ('necessary', 1), ('almost', 1), ('every', 1), ('project', 1), ('deal', 1), ('idea', 1), ('rather', 1), ('self', 1), ('evident', 1), ('physical', 1), ('artefact', 1), ('development', 1)]
[('conference', 2), ('business', 2), ('bi', 2), ('book', 1), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('system', 1), ('held', 1), ('leipzig', 1), ('germany', 1), ('july', 1), ('series', 1), ('follows', 1), ('trend', 1), ('academia', 1), ('research', 1), ('thus', 1)]
[('history', 2), ('discovery', 1), ('electromagnetic', 1), ('wave', 1), ('le', 1), ('year', 1), ('ago', 1), ('application', 1), ('wireless', 1), ('communication', 1), ('technology', 1), ('revolutionized', 1), ('daily', 1), ('life', 1), ('fundamentally', 1), ('changed', 1), ('course', 1), ('world', 1), ('brief', 1)]
[('computer', 2), ('nbsp', 2), ('brief', 1), ('provides', 1), ('complete', 1), ('yet', 1), ('concise', 1), ('description', 1), ('modern', 1), ('dive', 1), ('operation', 1), ('date', 1), ('source', 1), ('coupled', 1), ('application', 1), ('added', 1), ('understanding', 1), ('basic', 1), ('diving', 1), ('principle', 1), ('detailed', 1), ('practical', 1)]
[('quantum', 4), ('book', 2), ('algorithm', 2), ('computing', 1), ('start', 1), ('chapter', 1), ('introducing', 1), ('basic', 1), ('rule', 1), ('mechanic', 1), ('used', 1), ('build', 1), ('circuit', 1), ('perform', 1), ('computation', 1), ('grover', 1)]
[('game', 3), ('time', 3), ('video', 2), ('preserving', 1), ('pausing', 1), ('slowing', 1), ('rewinding', 1), ('replaying', 1), ('reactivating', 1), ('reanimating', 1), ('ability', 1), ('manipulate', 1), ('timeline', 1), ('altered', 1), ('cultural', 1), ('conception', 1), ('scholar', 1), ('christopher', 1), ('hanson', 1), ('argues', 1), ('mechanic', 1), ('digital', 1), ('presented', 1), ('new', 1), ('model', 1), ('understanding', 1), ('contemporary', 1), ('culture', 1), ('concept', 1)]
[('durch', 2), ('und', 2), ('wikis', 1), ('können', 1), ('nutzer', 1), ('website', 1), ('nicht', 1), ('nur', 1), ('ansehen', 1), ('sondern', 1), ('auch', 1), ('ändern', 1), ('angeregt', 1), ('die', 1), ('internet', 1), ('enzyklopädie', 1), ('wikipedia', 1), ('entdecken', 1), ('immer', 1), ('mehr', 1), ('anwender', 1), ('betreiber', 1), ('ihr', 1), ('vielfältiges', 1), ('potenzial', 1), ('einfach', 1), ('aufbau', 1), ('unkompliziert', 1), ('der', 1)]
[('meyer', 2), ('award', 2), ('object', 1), ('technology', 1), ('pioneer', 1), ('eth', 1), ('zurich', 1), ('professor', 1), ('bertrand', 1), ('winner', 1), ('jolt', 1), ('acm', 1), ('software', 1), ('system', 1), ('revolutionary', 1), ('textbook', 1), ('make', 1), ('learning', 1), ('programming', 1), ('fun', 1), ('rewarding', 1), ('build', 1), ('presentation', 1), ('rich', 1)]
[('retrieval', 3), ('information', 2), ('book', 1), ('take', 1), ('unique', 1), ('approach', 1), ('laying', 1), ('foundation', 1), ('modern', 1), ('algebra', 1), ('based', 1), ('lattice', 1), ('theory', 1), ('major', 1), ('method', 1), ('developed', 1), ('far', 1), ('described', 1), ('detail', 1), ('along', 1), ('web', 1)]
[('book', 1), ('state', 1), ('art', 1), ('introduction', 1), ('algorithmic', 1), ('technique', 1), ('fixed', 1), ('parameter', 1), ('tractability', 1), ('structural', 1), ('theory', 1), ('parameterized', 1), ('complexity', 1), ('class', 1), ('present', 1), ('detailed', 1), ('proof', 1), ('recent', 1), ('advanced', 1), ('result', 1)]
[('design', 2), ('present', 1), ('novel', 1), ('metric', 1), ('based', 1), ('approach', 1), ('detecting', 1), ('problem', 1), ('object', 1), ('oriented', 1), ('software', 1), ('introduces', 1), ('important', 1), ('suite', 1), ('detection', 1), ('strategy', 1), ('identification', 1), ('different', 1), ('known', 1), ('flaw', 1), ('rarely', 1), ('mentioned', 1)]
[('argumentation', 1), ('provides', 1), ('tool', 1), ('designing', 1), ('implementing', 1), ('analyzing', 1), ('sophisticated', 1), ('form', 1), ('interaction', 1), ('among', 1), ('rational', 1), ('agent', 1), ('made', 1), ('solid', 1), ('contribution', 1), ('practice', 1), ('multiagent', 1), ('dialogue', 1), ('book', 1), ('constitutes', 1), ('thoroughly', 1)]
[('financial', 2), ('predicting', 1), ('future', 1), ('gain', 1), ('difficult', 1), ('sometimes', 1), ('profitable', 1), ('activity', 1), ('focus', 1), ('book', 1), ('application', 1), ('biologically', 1), ('inspired', 1), ('algorithm', 1), ('bias', 1), ('modelling', 1), ('detailed', 1), ('introduction', 1), ('author', 1), ('explain', 1)]
[('die', 3), ('und', 2), ('arbeit', 2), ('layout', 1), ('schriftbild', 1), ('abbildungen', 1), ('spielen', 1), ('für', 1), ('optische', 1), ('qualität', 1), ('einer', 1), ('wissenschaftlichen', 1), ('eine', 1), ('entscheidende', 1), ('rolle', 1), ('effektiv', 1), ('eingesetzte', 1), ('software', 1), ('erleichtert', 1), ('manuskript', 1), ('kompakt', 1), ('praxisnah', 1), ('erläutert', 1), ('autorin', 1)]
[('project', 2), ('estimate', 2), ('complicated', 1), ('manager', 1), ('stop', 1), ('learning', 1), ('perience', 1), ('important', 1), ('understand', 1), ('happens', 1), ('change', 1), ('fallible', 1), ('software', 1), ('development', 1), ('initial', 1), ('shape', 1)]
[('learning', 3), ('motivated', 1), ('emerging', 1), ('research', 1), ('field', 1), ('artificial', 1), ('intelligence', 1), ('cognitive', 1), ('modelling', 1), ('computational', 1), ('model', 1), ('motivation', 1), ('extend', 1), ('reinforcement', 1), ('adaptive', 1), ('multitask', 1), ('complex', 1), ('dynamic', 1), ('environment', 1), ('goal', 1)]
[('museum', 2), ('hnf', 2), ('heinz', 1), ('nixdorf', 1), ('forum', 1), ('world', 1), ('largest', 1), ('puter', 1), ('dedicated', 1), ('portraying', 1), ('past', 1), ('present', 1), ('future', 1), ('information', 1), ('technology', 1), ('year', 1), ('informatics', 1), ('particularly', 1), ('keen', 1), ('examine', 1)]
[('international', 2), ('isdf', 1), ('first', 1), ('conference', 1), ('information', 1), ('security', 1), ('digital', 1), ('forensics', 1), ('held', 1), ('city', 1), ('university', 1), ('london', 1), ('september', 1), ('ference', 1), ('organized', 1), ('meeting', 1), ('point', 1), ('leading', 1), ('national', 1)]
[('python', 2), ('eine', 2), ('mit', 2), ('ist', 1), ('vollwertige', 1), ('programmiersprache', 1), ('der', 1), ('sich', 1), ('auch', 1), ('größere', 1), ('anwendungen', 1), ('entwickeln', 1), ('lassen', 1), ('den', 1), ('letzten', 1), ('jahren', 1), ('hat', 1), ('sie', 1), ('beliebtheit', 1), ('gewonnen', 1), ('und', 1), ('steht', 1), ('stark', 1), ('erweiterte', 1), ('version', 1), ('zur', 1), ('verfügung', 1), ('dem', 1), ('band', 1), ('werden', 1)]
[('practical', 1), ('approach', 1), ('software', 1), ('measurement', 1), ('contains', 1), ('hand', 1), ('industry', 1), ('experience', 1)]
[('mit', 2), ('und', 2), ('de', 2), ('dem', 1), ('buch', 1), ('sollen', 1), ('leser', 1), ('dazu', 1), ('befähigt', 1), ('werden', 1), ('ein', 1), ('webprojekt', 1), ('einschließlich', 1), ('sitearchitektur', 1), ('kreativer', 1), ('entwurfsphase', 1), ('navigation', 1), ('screendesign', 1), ('html', 1), ('cs', 1), ('umzusetzen', 1), ('ziel', 1), ('autors', 1), ('ist', 1), ('e', 1), ('die', 1), ('andersartigkeit', 1), ('gestaltens', 1), ('für', 1)]
[('analysis', 2), ('data', 2), ('experimental', 1), ('heart', 1), ('science', 1), ('beginning', 1), ('advent', 1), ('digital', 1), ('computer', 1), ('allowed', 1), ('execution', 1), ('highly', 1), ('non', 1), ('linear', 1), ('increasingly', 1), ('complex', 1), ('procedure', 1), ('method', 1)]
[('software', 3), ('development', 2), ('agile', 1), ('become', 1), ('umbrella', 1), ('term', 1), ('number', 1), ('change', 1), ('developer', 1), ('plan', 1), ('coordinate', 1), ('work', 1), ('communicate', 1), ('customer', 1), ('external', 1), ('stakeholder', 1), ('organized', 1)]
[('knowledge', 2), ('engineering', 2), ('conference', 2), ('management', 1), ('present', 1), ('selected', 1), ('paper', 1), ('international', 1), ('intelligent', 1), ('system', 1), ('iske', 1), ('aim', 1), ('bring', 1), ('together', 1), ('expert', 1), ('different', 1), ('expertise', 1)]
[('und', 4), ('die', 1), ('erfolgreiche', 1), ('umfassende', 1), ('einführung', 1), ('überarbeiteter', 1), ('erweiterter', 1), ('auflage', 1), ('aufgaben', 1), ('pflichten', 1), ('de', 1), ('datenmanagements', 1), ('entitäten', 1), ('beziehungs', 1), ('relationenmodell', 1), ('relationale', 1), ('abfrage', 1), ('manipulationssprachen', 1), ('schutz', 1), ('sicherheit', 1)]
[('access', 3), ('via', 2), ('current', 1), ('paradigm', 1), ('web', 1), ('direct', 1), ('search', 1), ('engine', 1), ('database', 1), ('query', 1), ('navigational', 1), ('static', 1), ('taxonomy', 1), ('recently', 1), ('criticized', 1), ('rigid', 1), ('simplistic', 1), ('effectively', 1), ('cope', 1), ('large', 1)]
[('cover', 2), ('secret', 2), ('message', 2), ('steganography', 1), ('art', 1), ('science', 1), ('hiding', 1), ('information', 1), ('inconspicuous', 1), ('data', 1), ('even', 1), ('existence', 1), ('kept', 1), ('confidential', 1), ('steganalysis', 1), ('task', 1), ('detecting', 1), ('research', 1)]
[('commerce', 4), ('introduction', 1), ('discus', 1), ('foundation', 1), ('key', 1), ('aspect', 1), ('focusing', 1), ('latest', 1), ('development', 1), ('industry', 1), ('practical', 1), ('case', 1), ('study', 1), ('offer', 1), ('useful', 1), ('reference', 1), ('dealing', 1), ('various', 1), ('issue', 1)]
[('last', 2), ('pleasure', 1), ('long', 1), ('unless', 1), ('variety', 1), ('publilius', 1), ('syrus', 1), ('moral', 1), ('saying', 1), ('fortunate', 1), ('receive', 1), ('fantastic', 1), ('feedback', 1), ('reader', 1), ('four', 1), ('year', 1), ('first', 1), ('edition', 1), ('solve', 1), ('modern', 1), ('heuristic', 1)]
[('sa', 2), ('der', 2), ('statistischen', 2), ('da', 1), ('programmpaket', 1), ('hat', 1), ('sich', 1), ('lauf', 1), ('jahre', 1), ('al', 1), ('standardprogramm', 1), ('zur', 1), ('datenanalyse', 1), ('etabliert', 1), ('souveräne', 1), ('umgang', 1), ('mit', 1), ('methoden', 1), ('und', 1), ('deren', 1), ('praktischer', 1), ('umsetzung', 1), ('bietet', 1), ('somit', 1), ('einen', 1), ('unschätzbaren', 1), ('vorteil', 1), ('für', 1), ('die', 1)]
[('application', 2), ('introduction', 1), ('computational', 1), ('geometry', 1), ('focus', 1), ('algorithm', 1), ('motivation', 1), ('provided', 1), ('area', 1), ('technique', 1), ('related', 1), ('particular', 1), ('robotics', 1), ('graphic', 1), ('cad', 1), ('cam', 1), ('geographic', 1), ('information', 1), ('system', 1)]
[('nan', 1)]
[('der', 3), ('schritt', 2), ('autor', 1), ('befasst', 1), ('sich', 1), ('mit', 1), ('überlagerung', 1), ('realen', 1), ('welt', 1), ('durch', 1), ('computergenerierte', 1), ('virtuelle', 1), ('objekte', 1), ('die', 1), ('drei', 1), ('grundlegenden', 1), ('bausteine', 1), ('dieser', 1), ('erweiterten', 1), ('realität', 1), ('darstellung', 1), ('tracking', 1), ('und', 1), ('benutzerinteraktion', 1), ('werden', 1), ('für', 1)]
[('enterprise', 2), ('lt', 1), ('gt', 1), ('lankhorst', 1), ('co', 1), ('author', 1), ('present', 1), ('archimate', 1), ('modelling', 1), ('language', 1), ('capture', 1), ('complexity', 1), ('architectural', 1), ('domain', 1), ('relation', 1), ('allows', 1), ('construction', 1), ('integrated', 1), ('architecture', 1), ('model', 1)]
[('peer', 2), ('lt', 1), ('gt', 1), ('ontology', 1), ('tend', 1), ('found', 1), ('everywhere', 1), ('viewed', 1), ('silver', 1), ('bullet', 1), ('many', 1), ('application', 1), ('database', 1), ('integration', 1), ('system', 1), ('commerce', 1), ('semantic', 1), ('web', 1), ('service', 1), ('social', 1), ('network', 1), ('open', 1), ('evolving', 1)]
[('contribution', 1), ('numerous', 1), ('expert', 1)]
[('lt', 3), ('gt', 3), ('field', 2), ('performance', 2), ('book', 1), ('first', 1), ('sketch', 1), ('overall', 1), ('look', 1), ('modern', 1), ('scientific', 1), ('stylistically', 1), ('differentiated', 1), ('practice', 1), ('pedagogy', 1), ('history', 1), ('musical', 1)]
[('et', 4), ('de', 3), ('utiliser', 2), ('outils', 2), ('pour', 2), ('cet', 1), ('ouvrage', 1), ('permet', 1), ('apprendre', 1), ('à', 1), ('le', 1), ('simscape', 1), ('simpowersystems', 1), ('modéliser', 1), ('simuler', 1), ('circuit', 1), ('électroniques', 1), ('électromécaniques', 1), ('électronique', 1), ('puissance', 1), ('ce', 1), ('deux', 1), ('la', 1), ('connaissance', 1), ('matlab', 1)]
[('application', 2), ('book', 1), ('serf', 1), ('first', 1), ('introduction', 1), ('computer', 1), ('programming', 1), ('scientific', 1), ('using', 1), ('high', 1), ('level', 1), ('python', 1), ('language', 1), ('exposition', 1), ('example', 1), ('problem', 1), ('oriented', 1), ('taken', 1), ('mathematics', 1), ('numerical', 1)]
[('book', 2), ('identification', 2), ('consists', 1), ('collection', 1), ('work', 1), ('utilizing', 1), ('automatic', 1), ('technology', 1), ('provided', 1), ('radio', 1), ('frequency', 1), ('rfid', 1), ('address', 1), ('problem', 1), ('global', 1), ('counterfeiting', 1), ('good', 1), ('present', 1), ('current', 1), ('research', 1), ('directed', 1)]
[('nan', 1)]
[('unix', 3), ('system', 2), ('development', 2), ('kernel', 2), ('operating', 1), ('tutorial', 1), ('via', 1), ('service', 1), ('introduces', 1), ('hierarchical', 1), ('structure', 1), ('principle', 1), ('application', 1), ('shell', 1), ('management', 1), ('operation', 1), ('multi', 1), ('dimensionally', 1)]
[('semantic', 2), ('ontology', 2), ('web', 1), ('characterized', 1), ('existence', 1), ('large', 1), ('number', 1), ('distributed', 1), ('resource', 1), ('together', 1), ('define', 1), ('network', 1), ('turn', 1), ('interlinked', 1), ('variety', 1), ('different', 1), ('meta', 1), ('relationship', 1)]
[('agent', 3), ('system', 2), ('focus', 1), ('book', 1), ('completed', 1), ('implementation', 1), ('based', 1), ('software', 1), ('technology', 1), ('considered', 1), ('broadly', 1), ('starting', 1), ('development', 1), ('platform', 1), ('way', 1), ('actually', 1), ('implemented', 1), ('covered', 1), ('topic', 1)]
[('key', 2), ('digital', 2), ('protocol', 2), ('book', 1), ('cover', 1), ('concept', 1), ('cryptography', 1), ('encryption', 1), ('signature', 1), ('cryptographic', 1), ('presenting', 1), ('technique', 1), ('exchange', 1), ('user', 1), ('id', 1), ('electronic', 1), ('election', 1), ('cash', 1), ('advanced', 1), ('topic', 1), ('include', 1), ('bit', 1)]
[('secure', 2), ('art', 2), ('book', 1), ('offer', 1), ('introduction', 1), ('cryptology', 1), ('science', 1), ('make', 1), ('communication', 1), ('possible', 1), ('address', 1), ('complementary', 1), ('aspect', 1), ('cryptography', 1), ('making', 1), ('building', 1), ('block', 1), ('cryptanalysis', 1), ('breaking', 1)]
[('die', 3), ('und', 2), ('de', 2), ('nbsp', 2), ('diesem', 1), ('buch', 1), ('lernen', 1), ('sie', 1), ('grundzüge', 1), ('vorteile', 1), ('computational', 1), ('thinking', 1), ('kennen', 1), ('analytischen', 1), ('von', 1), ('algorithmen', 1), ('geprägten', 1), ('denkens', 1), ('autoren', 1), ('behandeln', 1), ('dabei', 1), ('unterhaltsam', 1), ('anwendungsbezogen', 1), ('grundelemente', 1), ('dieser', 1)]
[('computer', 2), ('game', 2), ('program', 2), ('programming', 2), ('developing', 1), ('perfect', 1), ('way', 1), ('learn', 1), ('modern', 1), ('language', 1), ('book', 1), ('teach', 1), ('creation', 1), ('without', 1), ('requiring', 1), ('previous', 1), ('experience', 1), ('contrary', 1)]
[('blockchain', 3), ('understand', 2), ('business', 2), ('book', 1), ('need', 1), ('work', 1), ('transform', 1), ('society', 1), ('everyday', 1), ('life', 1), ('basic', 1), ('accessible', 1), ('non', 1), ('technical', 1), ('introduction', 1), ('revolutionary', 1), ('technology', 1), ('make', 1), ('easy', 1), ('average', 1), ('executive', 1), ('chris', 1), ('larsen', 1), ('founder', 1)]
[('computer', 3), ('made', 2), ('revolution', 2), ('possible', 2), ('contentious', 1), ('history', 1), ('programmer', 1), ('developed', 1), ('software', 1), ('book', 1), ('mid', 1), ('twentieth', 1), ('century', 1), ('unlike', 1)]
[('accessible', 1), ('guide', 1), ('digital', 1), ('infrastructure', 1), ('explaining', 1), ('basic', 1), ('operating', 1), ('system', 1), ('network', 1), ('security', 1), ('topic', 1), ('general', 1), ('reader', 1), ('feel', 1), ('home', 1), ('front', 1), ('computer', 1), ('smartphones', 1), ('tablet', 1), ('laptop', 1)]
[('game', 6), ('classic', 1), ('cutting', 1), ('edge', 1), ('writing', 1), ('spanning', 1), ('nearly', 1), ('year', 1), ('analysis', 1), ('criticism', 1), ('designer', 1), ('journalist', 1), ('fan', 1), ('folklorists', 1), ('sociologist', 1), ('medium', 1), ('theorist', 1), ('design', 1), ('reader', 1), ('kind', 1)]
[('robot', 2), ('le', 2), ('develop', 1), ('human', 1), ('computer', 1), ('social', 1), ('machine', 1), ('playful', 1), ('programmed', 1), ('friendly', 1), ('vacuum', 1), ('rug', 1), ('mow', 1), ('lawn', 1), ('dispose', 1), ('bomb', 1), ('even', 1), ('perform', 1)]
[('application', 2), ('accessible', 1), ('guide', 1), ('idea', 1), ('technology', 1), ('underlying', 1), ('gps', 1), ('google', 1), ('map', 1), ('pok', 1), ('mon', 1), ('go', 1), ('ride', 1), ('sharing', 1), ('driverless', 1), ('car', 1), ('drone', 1), ('surveillance', 1), ('billion', 1), ('around', 1), ('globe', 1), ('use', 1), ('various', 1), ('spatial', 1)]
[('wondered', 2), ('computer', 2), ('anyone', 1), ('solve', 1), ('problem', 1), ('engagingly', 1), ('written', 1), ('guide', 1), ('nonexperts', 1), ('basic', 1), ('algorithm', 1), ('gps', 1), ('find', 1), ('fastest', 1), ('way', 1), ('destination', 1), ('selecting', 1), ('route', 1)]
[('translation', 2), ('concise', 1), ('nontechnical', 1), ('overview', 1), ('development', 1), ('machine', 1), ('including', 1), ('different', 1), ('approach', 1), ('evaluation', 1), ('issue', 1), ('major', 1), ('player', 1), ('industry', 1), ('dream', 1), ('universal', 1), ('device', 1), ('go', 1), ('back', 1), ('many', 1), ('decade', 1), ('long', 1)]
[('reality', 6), ('augmented', 2), ('virtual', 2), ('comprehensive', 1), ('overview', 1), ('development', 1), ('mixed', 1), ('affect', 1), ('every', 1), ('part', 1), ('life', 1), ('year', 1), ('hype', 1), ('extended', 1), ('ar', 1), ('vr', 1)]
[('software', 4), ('art', 3), ('alternative', 2), ('history', 2), ('place', 2), ('center', 2), ('liberal', 1), ('evolution', 1), ('warren', 1), ('sack', 1), ('offer', 1), ('computing', 1)]
[('mobile', 2), ('robot', 2), ('second', 1), ('edition', 1), ('comprehensive', 1), ('introduction', 1), ('aspect', 1), ('robotics', 1), ('algorithm', 1), ('mechanism', 1), ('range', 1), ('mar', 1), ('pathfinder', 1), ('mission', 1), ('teleoperated', 1), ('sojourner', 1), ('cleaning', 1), ('paris', 1), ('metro', 1), ('text', 1)]
[('probabilistic', 2), ('machine', 2), ('learning', 2), ('step', 2), ('introduction', 1), ('key', 1), ('concept', 1), ('technique', 1), ('civil', 1), ('engineering', 1), ('student', 1), ('professional', 1), ('many', 1), ('example', 1), ('illustration', 1), ('exercise', 1), ('book', 1), ('introduces', 1)]
[('ibm', 2), ('historian', 1), ('offer', 1), ('authoritative', 1), ('history', 1), ('success', 1), ('failure', 1), ('former', 1), ('employer', 1), ('mdash', 1), ('considered', 1), ('influential', 1), ('american', 1), ('company', 1), ('last', 1), ('century', 1), ('decade', 1), ('shaped', 1), ('way', 1), ('world', 1), ('business', 1)]
[('compiler', 2), ('design', 2), ('modern', 1), ('make', 1), ('topic', 1), ('accessible', 1), ('focusing', 1), ('principle', 1), ('technique', 1), ('wide', 1), ('application', 1), ('carefully', 1), ('distinguishing', 1), ('essential', 1), ('material', 1), ('high', 1), ('chance', 1), ('useful', 1)]
[('practical', 2), ('theoretical', 2), ('presentation', 1), ('lisp', 1), ('syntax', 1), ('language', 1), ('programming', 1), ('style', 1), ('semantics', 1), ('computation', 1), ('carefully', 1), ('developed', 1), ('algebra', 1)]
[('john', 1), ('chamber', 1), ('turn', 1), ('attention', 1), ('enormously', 1), ('successful', 1), ('open', 1), ('source', 1), ('system', 1), ('based', 1), ('language', 1), ('book', 1), ('guide', 1), ('reader', 1), ('programming', 1), ('beginning', 1), ('simple', 1), ('interactive', 1), ('use', 1), ('progressing', 1), ('gradual', 1), ('stage', 1), ('starting', 1)]
[('programming', 3), ('assembly', 2), ('updated', 1), ('textbook', 1), ('introduces', 1), ('reader', 1), ('evolving', 1), ('role', 1), ('computer', 1), ('design', 1), ('author', 1), ('concentrate', 1), ('revised', 1), ('edition', 1), ('protected', 1), ('mode', 1), ('pentium', 1), ('mips', 1), ('language', 1), ('use', 1)]
[('first', 1), ('time', 1), ('book', 1), ('nbsp', 1), ('clearly', 1), ('explains', 1), ('applies', 1), ('new', 1), ('level', 1), ('set', 1), ('method', 1), ('problem', 1), ('application', 1), ('computer', 1), ('vision', 1), ('graphic', 1), ('imaging', 1), ('essential', 1), ('compilation', 1), ('survey', 1), ('chapter', 1), ('leading', 1), ('researcher', 1)]
[('iris', 2), ('segmentation', 2), ('template', 2), ('image', 2), ('biometrics', 1), ('security', 1), ('provides', 1), ('critical', 1), ('analysis', 1), ('challenge', 1), ('solution', 1), ('recent', 1), ('biometric', 1), ('research', 1), ('topic', 1), ('including', 1), ('compression', 1), ('watermarking', 1), ('advanced', 1), ('comparators', 1)]
[('mathematica', 4), ('provides', 1), ('reader', 1), ('working', 1), ('knowledge', 1), ('key', 1), ('aspect', 1), ('symbolic', 1), ('capability', 1), ('real', 1), ('heart', 1), ('ingredient', 1), ('software', 1), ('system', 1), ('make', 1), ('unique', 1), ('powerfulclear', 1)]
[('network', 2), ('recent', 1), ('year', 1), ('explosion', 1), ('data', 1), ('measu', 1), ('ments', 1), ('either', 1), ('system', 1), ('conceptualized', 1), ('se', 1), ('ingly', 1), ('corner', 1), ('science', 1), ('combination', 1), ('increasingly', 1), ('pervasive', 1), ('interest', 1)]
[('compressive', 2), ('sensing', 2), ('intersection', 1), ('mathematics', 1), ('engineering', 1), ('computer', 1), ('science', 1), ('sits', 1), ('thriving', 1), ('field', 1), ('based', 1), ('premise', 1), ('data', 1), ('acquisition', 1), ('compression', 1), ('performed', 1), ('simultaneously', 1), ('find', 1)]
[('website', 2), ('clear', 1), ('practical', 1), ('guide', 1), ('planning', 1), ('setting', 1), ('managing', 1), ('web', 1), ('includes', 1), ('illustrated', 1), ('example', 1), ('good', 1), ('page', 1), ('design', 1), ('site', 1), ('content', 1), ('tip', 1), ('using', 1), ('multimedia', 1), ('including', 1), ('video', 1), ('audio', 1), ('flash', 1), ('image', 1), ('offer', 1), ('online', 1), ('support', 1), ('tutorial', 1), ('companion', 1)]
[('independent', 2), ('process', 2), ('modeling', 2), ('language', 2), ('uml', 2), ('tool', 1), ('roadmap', 1), ('successfully', 1), ('applying', 1), ('unified', 1), ('specifying', 1), ('visualizing', 1), ('constructing', 1), ('documenting', 1), ('artifact', 1), ('system', 1), ('intensive', 1)]
[('routing', 3), ('source', 3), ('destination', 3), ('many', 3), ('determines', 2), ('path', 2), ('node', 2), ('multicast', 2), ('whereas', 1), ('unicast', 1), ('survey', 1), ('method', 1)]
[('springerbriefs', 1), ('present', 1), ('concise', 1), ('summary', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('practical', 1), ('application', 1), ('across', 1), ('wide', 1), ('spectrum', 1), ('field', 1), ('featuring', 1), ('compact', 1), ('volume', 1), ('page', 1), ('approximately', 1), ('word', 1), ('series', 1), ('cover', 1), ('range', 1), ('content', 1)]
[('cloud', 2), ('provider', 2), ('present', 1), ('trend', 1), ('cps', 1), ('capability', 1), ('given', 1), ('rise', 1), ('interest', 1), ('federating', 1), ('collaborating', 1), ('thus', 1), ('allowing', 1), ('revel', 1), ('increased', 1), ('scale', 1), ('reach', 1), ('achievable', 1), ('individually', 1), ('current', 1), ('research', 1)]
[('smoothing', 3), ('spline', 2), ('fast', 1), ('compact', 1), ('algorithm', 1), ('software', 1), ('investigates', 1), ('algorithmic', 1), ('alternative', 1), ('computing', 1), ('cubic', 1), ('amount', 1), ('determined', 1), ('automatically', 1), ('minimizing', 1), ('generalized', 1), ('cross', 1), ('validation', 1), ('score', 1)]
[('model', 2), ('textbook', 1), ('provides', 1), ('undergraduate', 1), ('student', 1), ('introduction', 1), ('basic', 1), ('theoretical', 1), ('computability', 1), ('develops', 1), ('rich', 1), ('varied', 1), ('structure', 1), ('first', 1), ('part', 1), ('book', 1), ('devoted', 1), ('finite', 1), ('automaton', 1)]
[('system', 3), ('pedestrian', 1), ('protection', 1), ('ppss', 1), ('board', 1), ('aimed', 1), ('detecting', 1), ('tracking', 1), ('surroundings', 1), ('vehicle', 1), ('order', 1), ('avoid', 1), ('potentially', 1), ('dangerous', 1), ('situation', 1), ('together', 1), ('advanced', 1), ('driver', 1), ('assistance', 1)]
[('computer', 2), ('science', 1), ('rapidly', 1), ('growing', 1), ('discipline', 1), ('continues', 1), ('awe', 1), ('inspire', 1), ('intimidate', 1), ('interact', 1), ('many', 1), ('element', 1), ('capability', 1), ('used', 1), ('business', 1), ('home', 1), ('underlie', 1), ('extensive', 1), ('communication', 1), ('network', 1), ('internet', 1), ('help', 1), ('pilot', 1), ('astronaut', 1), ('fly', 1), ('airplane', 1), ('space', 1), ('shuttle', 1), ('maneuver', 1)]
[('provider', 2), ('information', 2), ('seen', 1), ('cbs', 1), ('minute', 1), ('user', 1), ('interactive', 1), ('computer', 1), ('service', 1), ('treated', 1), ('publisher', 1), ('speaker', 1), ('provided', 1), ('another', 1), ('content', 1), ('know', 1), ('twenty', 1), ('six', 1), ('word', 1), ('responsible', 1), ('america', 1), ('multibillion', 1), ('dollar', 1), ('online', 1), ('industry', 1)]
[('sequence', 2), ('data', 2), ('history', 2), ('understanding', 1), ('ability', 1), ('utilize', 1), ('hidden', 1), ('knowledge', 1), ('create', 1), ('significant', 1), ('impact', 1), ('many', 1), ('aspect', 1), ('society', 1), ('example', 1), ('include', 1), ('dna', 1), ('protein', 1), ('customer', 1), ('purchase', 1), ('web', 1), ('surfing', 1)]
[('nan', 1)]
[('programming', 3), ('language', 3), ('using', 3), ('active', 1), ('learning', 1), ('approach', 1), ('introduces', 1), ('student', 1), ('three', 1), ('paradigm', 1), ('object', 1), ('oriented', 1), ('imperative', 1), ('ruby', 1), ('functional', 1), ('standard', 1), ('ml', 1), ('logic', 1), ('prolog', 1)]
[('explosive', 1), ('growth', 1), ('commerce', 1), ('online', 1), ('environment', 1), ('made', 1), ('issue', 1), ('information', 1), ('search', 1), ('selection', 1), ('increasingly', 1), ('serious', 1), ('user', 1), ('overloaded', 1), ('option', 1), ('consider', 1), ('time', 1), ('knowledge', 1), ('personally', 1), ('evaluate', 1)]
[('nan', 1)]
[('faster', 1), ('better', 1), ('cheaper', 1), ('challenge', 1), ('company', 1), ('face', 1), ('every', 1), ('day', 1), ('customer', 1), ('expectation', 1), ('met', 1), ('world', 1), ('constant', 1), ('change', 1), ('environment', 1), ('organization', 1), ('technology', 1), ('rule', 1), ('rather', 1), ('exception', 1), ('solution', 1)]
[('application', 2), ('security', 2), ('early', 1), ('prototype', 1), ('proposed', 1), ('book', 1), ('survey', 1), ('longer', 1), ('history', 1), ('amplifying', 1), ('small', 1), ('amount', 1), ('hardware', 1), ('broader', 1), ('system', 1), ('securityincluding', 1), ('real', 1), ('case', 1), ('study', 1), ('experience', 1), ('architecture', 1)]
[('smart', 2), ('information', 1), ('society', 1), ('card', 1), ('device', 1), ('processing', 1), ('power', 1), ('link', 1), ('owner', 1), ('potential', 1), ('human', 1), ('representation', 1), ('delegate', 1), ('ambient', 1), ('intelligence', 1), ('pervasive', 1), ('computing', 1), ('every', 1), ('appliance', 1), ('computer', 1)]
[('perspective', 2), ('chapter', 1), ('place', 1), ('total', 1), ('information', 1), ('storage', 1), ('retrieval', 1), ('system', 1), ('introduces', 1), ('new', 1), ('challenge', 1), ('problem', 1), ('need', 1), ('theoretically', 1), ('addressed', 1), ('commercially', 1), ('implemented', 1), ('ten', 1), ('year', 1), ('ago', 1), ('commercial', 1)]
[('data', 3), ('quality', 3), ('research', 2), ('provides', 1), ('exposé', 1), ('practice', 1), ('field', 1), ('technically', 1), ('oriented', 1), ('reader', 1), ('based', 1), ('conducted', 1), ('mit', 1), ('total', 1), ('management', 1), ('tdqm', 1), ('program', 1), ('work', 1), ('leading', 1)]
[('jr', 2), ('programming', 2), ('language', 2), ('based', 2), ('extension', 1), ('java', 1), ('additional', 1), ('concurrency', 1), ('mechanism', 1), ('sr', 1), ('synchronizing', 1), ('resource', 1), ('implementation', 1), ('executes', 1), ('unix', 1), ('system', 1), ('linux', 1), ('mac', 1), ('o', 1), ('solaris', 1)]
[('database', 2), ('field', 1), ('security', 1), ('expanded', 1), ('greatly', 1), ('rapid', 1), ('development', 1), ('global', 1), ('inter', 1), ('networked', 1), ('infrastructure', 1), ('longer', 1), ('stand', 1), ('alone', 1), ('system', 1), ('accessible', 1), ('internal', 1), ('user', 1), ('organization', 1), ('today', 1), ('business', 1), ('allow', 1)]
[('book', 2), ('capture', 1), ('state', 1), ('art', 1), ('research', 1), ('area', 1), ('malicious', 1), ('code', 1), ('detection', 1), ('prevention', 1), ('mitigation', 1), ('contains', 1), ('cutting', 1), ('edge', 1), ('behavior', 1), ('based', 1), ('technique', 1), ('analyze', 1), ('detect', 1), ('obfuscated', 1), ('malware', 1), ('analyzes', 1), ('current', 1), ('trend', 1)]
[('center', 2), ('science', 2), ('intelligent', 1), ('information', 1), ('retrieval', 1), ('ciir', 1), ('formed', 1), ('computer', 1), ('department', 1), ('ofthe', 1), ('university', 1), ('ofmassachusetts', 1), ('amherst', 1), ('core', 1), ('support', 1), ('came', 1), ('national', 1), ('foun', 1), ('tion', 1)]
[('service', 3), ('end', 3), ('delivering', 1), ('mpeg', 1), ('based', 1), ('audio', 1), ('visual', 1), ('investigates', 1), ('different', 1), ('aspect', 1), ('multimedia', 1), ('content', 1), ('creation', 1), ('server', 1), ('provider', 1), ('network', 1), ('user', 1), ('terminal', 1), ('part', 1), ('provides', 1), ('comprehensive', 1)]
[('botnets', 2), ('become', 1), ('platform', 1), ('choice', 1), ('launching', 1), ('attack', 1), ('committing', 1), ('fraud', 1), ('internet', 1), ('better', 1), ('understanding', 1), ('help', 1), ('coordinate', 1), ('develop', 1), ('new', 1), ('technology', 1), ('counter', 1), ('serious', 1), ('security', 1), ('threat', 1), ('botnet', 1)]
[('security', 3), ('communication', 2), ('classical', 1), ('introduction', 1), ('cryptography', 1), ('application', 1), ('nbsp', 1), ('introduces', 1), ('fundamental', 1), ('information', 1), ('providing', 1), ('appropriate', 1), ('mathematical', 1), ('concept', 1), ('prove', 1), ('break', 1)]
[('software', 2), ('handbook', 2), ('process', 1), ('model', 1), ('incorporating', 1), ('capability', 1), ('offer', 1), ('advanced', 1), ('approach', 1), ('date', 1), ('empirically', 1), ('validated', 1), ('development', 1), ('organization', 1), ('add', 1), ('valuable', 1), ('contribution', 1), ('needed', 1)]
[('security', 2), ('programming', 2), ('system', 2), ('access', 2), ('control', 2), ('essential', 1), ('resource', 1), ('professional', 1), ('advanced', 1), ('student', 1), ('design', 1), ('introduces', 1), ('foundation', 1), ('theory', 1), ('behind', 1), ('model', 1), ('address', 1), ('emerging', 1)]
[('bioinformatics', 1), ('growing', 1), ('leap', 1), ('bound', 1), ('theory', 1), ('algorithm', 1), ('statistical', 1), ('technique', 1), ('constantly', 1), ('evolving', 1), ('nevertheless', 1), ('core', 1), ('body', 1), ('algorithmic', 1), ('idea', 1), ('emerged', 1), ('researcher', 1), ('beginning', 1), ('adopt', 1), ('problem', 1), ('solving', 1), ('approach', 1)]
[('business', 2), ('defining', 2), ('web', 1), ('twenty', 1), ('year', 1), ('old', 1), ('still', 1), ('impleme', 1), ('ing', 1), ('technology', 1), ('fabric', 1), ('model', 1), ('background', 1), ('section', 1), ('focus', 1), ('building', 1), ('block', 1), ('framework', 1), ('including', 1)]
[('introduces', 1), ('linux', 1), ('concept', 1), ('programmer', 1), ('familiar', 1), ('operating', 1), ('system', 1), ('window', 1), ('xpprovides', 1), ('comprehensive', 1), ('coverage', 1), ('pentium', 1), ('assembly', 1), ('language', 1)]
[('automatic', 2), ('indexing', 2), ('abstracting', 2), ('text', 2), ('technique', 2), ('document', 1), ('summarizes', 1), ('latest', 1), ('result', 1), ('application', 1), ('place', 1), ('context', 1), ('study', 1), ('manual', 1)]
[('systemc', 2), ('comprehensive', 1), ('survey', 1), ('state', 1), ('art', 1), ('industry', 1), ('research', 1), ('organised', 1), ('self', 1), ('contained', 1), ('chapter', 1), ('selected', 1), ('expert', 1), ('present', 1), ('approach', 1), ('domain', 1), ('modelling', 1), ('analysis', 1), ('synthesis', 1), ('ranging', 1)]
[('organization', 1), ('today', 1), ('linking', 1), ('system', 1), ('across', 1), ('enterprise', 1), ('wide', 1), ('network', 1), ('vpns', 1), ('increasing', 1), ('exposure', 1), ('customer', 1), ('competitor', 1), ('browser', 1), ('hacker', 1), ('internet', 1), ('becomes', 1), ('increasingly', 1), ('imperative', 1), ('web', 1)]
[('enterprise', 1), ('infrastructure', 1), ('getting', 1), ('increasingly', 1), ('complex', 1), ('increase', 1), ('complexity', 1), ('arisen', 1), ('need', 1), ('manage', 1), ('management', 1), ('general', 1), ('seen', 1), ('process', 1), ('assuring', 1), ('managed', 1), ('entity', 1), ('meet', 1), ('expectation', 1)]
[('overview', 2), ('extensive', 1), ('volume', 1), ('provides', 1), ('comprehensive', 1), ('technically', 1), ('detailed', 1), ('latest', 1), ('metropolitan', 1), ('area', 1), ('wdm', 1), ('network', 1), ('experimental', 1), ('system', 1), ('architecture', 1), ('access', 1), ('protocol', 1), ('reader', 1), ('benefit', 1), ('thorough', 1), ('gain', 1)]
[('ontology', 1), ('managememt', 1), ('provides', 1), ('date', 1), ('scientifically', 1), ('correct', 1), ('concise', 1), ('easy', 1), ('reference', 1), ('topic', 1), ('book', 1), ('includes', 1), ('relevant', 1), ('task', 1), ('practical', 1), ('theoretical', 1), ('challenge', 1), ('limitation', 1), ('methodology', 1), ('plus', 1), ('available', 1), ('tooling', 1)]
[('providing', 2), ('end', 2), ('unique', 1), ('perspective', 1), ('center', 1), ('debate', 1), ('encryption', 1), ('moriarty', 1), ('explores', 1), ('emerging', 1), ('trend', 1), ('information', 1), ('security', 1), ('transport', 1), ('protocol', 1), ('evolution', 1), ('going', 1), ('beyond', 1), ('simply', 1), ('pointing', 1), ('today', 1), ('problem', 1), ('solution', 1), ('future', 1), ('product', 1), ('space', 1)]
[('math', 2), ('python', 2), ('show', 1), ('use', 1), ('delve', 1), ('high', 1), ('school', 1), ('level', 1), ('topic', 1), ('statistic', 1), ('geometry', 1), ('probability', 1), ('calculus', 1), ('start', 1), ('simple', 1), ('project', 1), ('factoring', 1), ('program', 1), ('quadratic', 1), ('equation', 1)]
[('whirlwind', 1), ('social', 1), ('medium', 1), ('online', 1), ('dating', 1), ('mobile', 1), ('apps', 1), ('make', 1), ('life', 1), ('dream', 1), ('nightmare', 1), ('every', 1), ('trustworthy', 1), ('website', 1), ('countless', 1), ('jerk', 1), ('bully', 1), ('scam', 1), ('artist', 1), ('want', 1), ('harvest', 1), ('personal', 1), ('information', 1)]
[('volume', 2), ('poc', 1), ('gtfo', 1), ('follows', 1), ('wildly', 1), ('popular', 1), ('first', 1), ('issue', 1), ('eponymous', 1), ('hacker', 1), ('zine', 1), ('contribution', 1), ('range', 1), ('humorous', 1), ('poem', 1), ('deeply', 1), ('technical', 1), ('essay', 1), ('international', 1), ('journal', 1), ('proof', 1), ('concept', 1), ('fuck', 1)]
[('swift', 2), ('use', 2), ('apps', 2), ('iphone', 2), ('apple', 1), ('powerful', 1), ('beginner', 1), ('friendly', 1), ('programming', 1), ('language', 1), ('anyone', 1), ('make', 1), ('cool', 1), ('ipad', 1), ('coding', 1), ('kid', 1), ('learn', 1), ('write', 1), ('program', 1), ('even', 1)]
[('ruby', 2), ('fun', 2), ('programming', 1), ('language', 1), ('perfect', 1), ('beginner', 1), ('easy', 1), ('learn', 1), ('powerful', 1), ('use', 1), ('learning', 1), ('help', 1), ('wizard', 1), ('dragon', 1), ('wizardry', 1), ('playful', 1), ('illustrated', 1), ('tale', 1)]
[('gnu', 2), ('long', 1), ('awaited', 1), ('update', 1), ('practitioner', 1), ('guide', 1), ('autoconf', 1), ('automake', 1), ('libtoolthe', 1), ('autotools', 1), ('make', 1), ('easy', 1), ('developer', 1), ('create', 1), ('software', 1), ('portable', 1), ('across', 1), ('many', 1), ('unix', 1), ('operating', 1), ('system', 1), ('even', 1), ('window', 1), ('although', 1)]
[('name', 1), ('learn', 1), ('haskell', 1), ('good', 1), ('hilarious', 1), ('illustrated', 1), ('guide', 1), ('complex', 1), ('functional', 1), ('language', 1), ('packed', 1), ('author', 1), ('original', 1), ('artwork', 1), ('pop', 1), ('culture', 1), ('reference', 1), ('importantly', 1), ('useful', 1), ('example', 1), ('code', 1)]
[('build', 2), ('project', 2), ('experiment', 2), ('secret', 1), ('laboratory', 1), ('coding', 1), ('electronic', 1), ('bbc', 1), ('micro', 1), ('bit', 1), ('tiny', 1), ('cheap', 1), ('yet', 1), ('surprisingly', 1), ('powerful', 1), ('computer', 1), ('use', 1), ('cool', 1), ('thing', 1), ('code', 1), ('simple', 1)]
[('html', 2), ('build', 2), ('game', 2), ('already', 1), ('even', 1), ('basic', 1), ('familiarity', 1), ('cs', 1), ('javascript', 1), ('ready', 1), ('learn', 1), ('browser', 1), ('based', 1), ('use', 1), ('skill', 1), ('create', 1), ('truly', 1), ('cross', 1), ('platform', 1), ('bubble', 1), ('shooter', 1)]
[('page', 2), ('wealth', 1), ('data', 1), ('online', 1), ('sorting', 1), ('gathering', 1), ('hand', 1), ('tedious', 1), ('time', 1), ('consuming', 1), ('rather', 1), ('click', 1), ('endless', 1), ('bot', 1), ('work', 1), ('webbots', 1), ('spider', 1), ('screen', 1), ('scraper', 1), ('show', 1)]
[('research', 3), ('book', 2), ('field', 2), ('social', 2), ('provides', 1), ('original', 1), ('key', 1), ('issue', 1), ('identity', 1), ('management', 1), ('networking', 1), ('site', 1), ('contributor', 1), ('volume', 1), ('draw', 1), ('current', 1), ('offer', 1), ('new', 1), ('theoretical', 1), ('framework', 1), ('method', 1), ('making', 1), ('useful', 1), ('student', 1), ('scholar', 1), ('medium', 1)]
[('technology', 3), ('virtual', 2), ('digital', 2), ('reality', 1), ('news', 1), ('movie', 1), ('tv', 1), ('air', 1), ('idea', 1), ('prevalent', 1), ('precisely', 1), ('mean', 1), ('sensation', 1), ('look', 1), ('closely', 1), ('way', 1), ('representational', 1), ('form', 1), ('generated', 1), ('communication', 1), ('especially', 1), ('optical', 1), ('affect', 1)]
[('ryan', 2), ('medium', 2), ('form', 2), ('show', 2), ('marie', 1), ('laure', 1), ('move', 1), ('beyond', 1), ('literary', 1), ('work', 1), ('examine', 1), ('especially', 1), ('electronic', 1), ('narrative', 1), ('revealing', 1), ('story', 1), ('meaning', 1), ('transcends', 1), ('culture', 1), ('achieves', 1), ('diversity', 1), ('presenting', 1), ('multiple', 1), ('avatar', 1), ('considers', 1), ('text', 1), ('reality', 1), ('television', 1), ('survivor', 1), ('film', 1), ('truman', 1)]
[('software', 4), ('component', 3), ('based', 2), ('complete', 1), ('guide', 1), ('building', 1), ('reliable', 1), ('system', 1), ('written', 1), ('world', 1), ('renowned', 1), ('expert', 1), ('engineering', 1), ('field', 1), ('unique', 1), ('resource', 1), ('help', 1), ('manage', 1), ('complex', 1), ('development', 1), ('evaluation', 1), ('integration', 1), ('quickly', 1), ('develop', 1), ('keen', 1), ('awareness', 1), ('benefit', 1)]
[('project', 3), ('book', 2), ('office', 2), ('organization', 2), ('complete', 1), ('establishing', 1), ('methodology', 1), ('managing', 1), ('multiple', 1), ('development', 1), ('initiative', 1), ('within', 1), ('present', 1), ('po', 1), ('model', 1), ('use', 1), ('wide', 1), ('variety', 1), ('especially', 1), ('environment', 1), ('forward', 1), ('looking', 1), ('firm', 1), ('adopt', 1)]
[('component', 2), ('based', 2), ('testing', 2), ('presenting', 1), ('state', 1), ('art', 1), ('software', 1), ('new', 1), ('cutting', 1), ('edge', 1), ('resource', 1), ('offer', 1), ('depth', 1), ('understanding', 1), ('current', 1), ('issue', 1), ('challenge', 1), ('need', 1), ('solution', 1), ('critical', 1), ('area', 1), ('book', 1), ('discus', 1), ('latest', 1), ('advance', 1), ('quality', 1), ('assurance', 1), ('accessible', 1), ('tutorial', 1), ('format', 1)]
[('internet', 2), ('security', 2), ('protocol', 2), ('handbook', 1), ('engineer', 1), ('architect', 1), ('practitioner', 1), ('working', 1), ('field', 1), ('present', 1), ('detailed', 1), ('coverage', 1), ('technology', 1), ('technique', 1), ('ip', 1), ('multicast', 1), ('network', 1), ('along', 1), ('algorithm', 1), ('multi', 1), ('party', 1), ('secure', 1), ('communication', 1)]
[('worm', 3), ('detection', 2), ('first', 1), ('book', 1), ('focused', 1), ('exclusively', 1), ('internet', 1), ('offering', 1), ('solid', 1), ('mitigation', 1), ('strategy', 1), ('work', 1), ('field', 1), ('ground', 1), ('breaking', 1), ('volume', 1), ('enables', 1), ('put', 1), ('rising', 1), ('trend', 1), ('perspective', 1), ('practical', 1), ('information', 1), ('defense', 1), ('technique', 1), ('utilizing', 1), ('data', 1), ('live', 1), ('network', 1), ('real', 1), ('ip', 1)]
[('computational', 2), ('method', 2), ('extensively', 1), ('revised', 1), ('expanded', 1), ('third', 1), ('edition', 1), ('artech', 1), ('house', 1), ('bestseller', 1), ('electrodynamics', 1), ('finite', 1), ('difference', 1), ('time', 1), ('domain', 1), ('offer', 1), ('date', 1), ('definitive', 1), ('resource', 1), ('critical', 1), ('solving', 1), ('maxwell', 1), ('equation', 1), ('considerable', 1), ('advancement', 1), ('fdtd', 1), ('technology', 1)]
[('based', 1), ('cmm', 1), ('cmmi', 1), ('unique', 1), ('new', 1), ('resource', 1), ('offer', 1), ('practical', 1), ('guidance', 1), ('software', 1), ('process', 1), ('improvement', 1), ('book', 1), ('provides', 1), ('clear', 1), ('implementation', 1), ('step', 1), ('designed', 1), ('highly', 1), ('positive', 1), ('impact', 1), ('even', 1), ('challenging', 1), ('project', 1), ('valuable', 1), ('time', 1), ('saving', 1), ('template', 1), ('quickly', 1), ('tailored', 1)]
[('innovation', 2), ('business', 2), ('driven', 1), ('need', 1), ('global', 1), ('excellence', 1), ('customer', 1), ('value', 1), ('agility', 1), ('become', 1), ('imperative', 1), ('process', 1), ('engineering', 1), ('information', 1), ('system', 1), ('approach', 1), ('address', 1), ('operational', 1), ('efficiency', 1), ('economics', 1), ('unique', 1), ('book', 1), ('close', 1), ('gap', 1), ('show', 1), ('professional', 1), ('systematized', 1)]
[('application', 4), ('corba', 4), ('security', 3), ('distributed', 2), ('new', 1), ('book', 1), ('clearly', 1), ('written', 1), ('structured', 1), ('guide', 1), ('building', 1), ('secure', 1), ('help', 1), ('securing', 1), ('integrating', 1), ('infrastructure', 1), ('evaluating', 1), ('effectiveness', 1), ('comprehensive', 1), ('study', 1)]
[('security', 2), ('new', 2), ('newly', 1), ('revised', 1), ('edition', 1), ('artech', 1), ('house', 1), ('bestseller', 1), ('brings', 1), ('date', 1), ('comprehensive', 1), ('analysis', 1), ('current', 1), ('trend', 1), ('ww', 1), ('available', 1), ('brand', 1), ('chapter', 1), ('authentication', 1), ('authorization', 1), ('infrastructure', 1), ('server', 1), ('side', 1), ('risk', 1), ('management', 1), ('find', 1), ('coverage', 1), ('entirely', 1), ('topic', 1)]
[('beginning', 1), ('short', 1), ('summary', 1), ('core', 1), ('protocol', 1), ('addressing', 1), ('internet', 1), ('world', 1), ('wide', 1), ('web', 1), ('introduction', 1), ('sip', 1), ('explains', 1), ('eventually', 1), ('unleash', 1), ('session', 1), ('bear', 1), ('almost', 1), ('resemblance', 1), ('telephone', 1), ('call', 1)]
[('handbook', 1), ('providing', 1), ('methodology', 1), ('implementing', 1), ('commerce', 1), ('website', 1), ('integral', 1), ('part', 1), ('system', 1), ('featuring', 1), ('illustration', 1), ('technical', 1), ('reference', 1), ('delivers', 1), ('practical', 1), ('hand', 1), ('information', 1), ('illuminated', 1), ('insight', 1), ('case', 1), ('study', 1)]
[('generally', 1), ('society', 1), ('moving', 1), ('towards', 1), ('electronic', 1), ('payment', 1), ('system', 1), ('arrival', 1), ('internet', 1), ('vertiginous', 1), ('growth', 1), ('made', 1), ('possible', 1), ('recent', 1), ('advance', 1), ('area', 1)]
[('database', 3), ('development', 2), ('design', 2), ('introduction', 1), ('system', 1), ('application', 1), ('point', 1), ('view', 1), ('featuring', 1), ('contribution', 1), ('expert', 1), ('pay', 1), ('special', 1), ('attention', 1), ('issue', 1), ('raised', 1), ('new', 1), ('trend', 1), ('affect', 1), ('programmer', 1), ('administrator', 1)]
[('technique', 2), ('resource', 1), ('provides', 1), ('coverage', 1), ('software', 1), ('fault', 1), ('tolerance', 1), ('guide', 1), ('professional', 1), ('design', 1), ('operation', 1), ('performance', 1), ('feature', 1), ('discussion', 1), ('advantage', 1), ('disadvantage', 1), ('specific', 1), ('practitioner', 1), ('decide', 1), ('one', 1), ('best', 1), ('suited', 1), ('work', 1)]
[('ethernet', 3), ('volume', 1), ('explains', 1), ('technical', 1), ('detail', 1), ('main', 1), ('family', 1), ('member', 1), ('starting', 1), ('familiar', 1), ('base', 1), ('fast', 1), ('latest', 1), ('gigabit', 1), ('wireless', 1), ('variant', 1), ('application', 1), ('supported', 1), ('uniform', 1), ('network', 1), ('technology', 1), ('explained', 1)]
[('biological', 2), ('first', 1), ('focused', 1), ('book', 1), ('put', 1), ('full', 1), ('range', 1), ('cutting', 1), ('edge', 1), ('text', 1), ('mining', 1), ('technique', 1), ('tool', 1), ('command', 1), ('comprehensive', 1), ('volume', 1), ('describes', 1), ('method', 1), ('natural', 1), ('language', 1), ('processing', 1), ('nlp', 1), ('application', 1), ('domain', 1), ('spell', 1), ('detail', 1), ('various', 1), ('lexical', 1), ('terminological', 1), ('ontological', 1)]
[('science', 2), ('gain', 1), ('thorough', 1), ('understanding', 1), ('engineering', 1), ('behind', 1), ('today', 1), ('advanced', 1), ('life', 1), ('automation', 1), ('device', 1), ('system', 1), ('technology', 1), ('application', 1), ('biotechnology', 1), ('pharmacology', 1), ('healthcare', 1), ('cutting', 1), ('edge', 1), ('book', 1), ('comprehensive', 1), ('interdisciplinary', 1), ('resource', 1), ('detail', 1), ('state', 1), ('art', 1), ('design', 1), ('modeling', 1)]
[('software', 3), ('sqa', 2), ('quality', 2), ('assurance', 2), ('critical', 1), ('factor', 1), ('engineer', 1), ('developer', 1), ('need', 1), ('master', 1), ('thoroughly', 1), ('revised', 1), ('fourth', 1), ('edition', 1), ('popular', 1), ('book', 1), ('handbook', 1), ('serf', 1), ('stop', 1), ('resource', 1), ('complete', 1), ('current', 1), ('knowledge', 1), ('emphasizing', 1), ('importance', 1), ('cmmi', 1), ('key', 1), ('iso', 1)]
[('role', 2), ('authoritative', 1), ('resource', 1), ('show', 1), ('manager', 1), ('network', 1), ('engineer', 1), ('security', 1), ('specialist', 1), ('define', 1), ('deploy', 1), ('securing', 1), ('enterprise', 1), ('system', 1), ('written', 1), ('leading', 1), ('authority', 1), ('field', 1), ('book', 1), ('explains', 1), ('identify', 1), ('risk', 1), ('determine', 1), ('project', 1), ('cost', 1), ('plan', 1), ('staff', 1), ('engineering', 1), ('effort', 1)]
[('advance', 2), ('computational', 2), ('algorithm', 2), ('data', 2), ('analysis', 2), ('offer', 1), ('state', 1), ('art', 1), ('nbsp', 1), ('tremendous', 1), ('selected', 1), ('article', 1), ('representative', 1), ('subject', 1), ('sitting', 1), ('top', 1), ('end', 1), ('high', 1)]
[('exhaustive', 1), ('work', 1), ('represents', 1), ('landmark', 1), ('exploration', 1), ('philosophical', 1), ('methodological', 1), ('issue', 1), ('surrounding', 1), ('search', 1), ('true', 1), ('artificial', 1), ('intelligence', 1), ('distinguished', 1), ('psychologist', 1), ('computer', 1), ('scientist', 1), ('philosopher', 1), ('programmer', 1)]
[('book', 2), ('computer', 2), ('first', 1), ('informs', 1), ('recent', 1), ('progress', 1), ('biomechanics', 1), ('vision', 1), ('graphic', 1), ('volume', 1), ('researcher', 1), ('area', 1), ('contributed', 1), ('promote', 1), ('establishment', 1), ('human', 1), ('motion', 1), ('research', 1)]
[('user', 3), ('experience', 3), ('personalized', 2), ('design', 1), ('delight', 1), ('provide', 1), ('value', 1), ('customer', 1), ('ecommerce', 1), ('site', 1), ('personalization', 1), ('guarantee', 1), ('high', 1), ('quality', 1), ('best', 1), ('chance', 1), ('success', 1)]
[('web', 3), ('search', 2), ('study', 2), ('public', 2), ('book', 1), ('brings', 1), ('together', 1), ('result', 1), ('conducted', 1), ('aim', 1), ('twofold', 1), ('examine', 1), ('large', 1), ('highlight', 1), ('trend', 1), ('searching', 1)]
[('organisational', 3), ('semiotics', 2), ('organisation', 2), ('offer', 1), ('effective', 1), ('approach', 1), ('analysing', 1), ('modelling', 1), ('behaviour', 1), ('method', 1), ('technique', 1), ('derived', 1), ('enable', 1), ('study', 1), ('examining', 1)]
[('free', 1), ('open', 1), ('source', 1), ('foundation', 1), ('software', 1), ('development', 1), ('built', 1), ('discover', 1), ('fundamental', 1), ('tenet', 1), ('drive', 1), ('movement', 1), ('take', 1), ('control', 1), ('career', 1), ('selecting', 1), ('right', 1), ('project', 1), ('meet', 1), ('professional', 1), ('goal', 1), ('master', 1), ('language', 1), ('avoid', 1), ('pitfall', 1), ('typically', 1), ('ensnare', 1), ('new', 1), ('contributor', 1), ('join', 1)]
[('flutter', 2), ('native', 2), ('app', 2), ('work', 1), ('framework', 1), ('designed', 1), ('ground', 1), ('dual', 1), ('platform', 1), ('development', 1), ('support', 1), ('java', 1), ('kotlin', 1), ('objective', 1), ('swift', 1), ('method', 1), ('apps', 1), ('write', 1), ('next', 1), ('language', 1), ('build', 1), ('android', 1), ('io', 1), ('deliver', 1), ('look', 1), ('feel', 1), ('performance', 1), ('user', 1), ('expect', 1), ('written', 1)]
[('self', 2), ('book', 1), ('present', 1), ('state', 1), ('art', 1), ('successfully', 1), ('engineered', 1), ('organizing', 1), ('system', 1), ('go', 1), ('examine', 1), ('way', 1), ('balance', 1), ('design', 1), ('organization', 1), ('context', 1), ('application', 1), ('demonstrated', 1), ('throughout', 1), ('finding', 1)]
[('environment', 2), ('computer', 2), ('main', 1), ('objective', 1), ('pervasive', 1), ('computing', 1), ('system', 1), ('create', 1), ('become', 1), ('invisible', 1), ('seamlessly', 1), ('integrated', 1), ('connected', 1), ('everyday', 1), ('embedded', 1), ('provide', 1), ('inf', 1), ('mation', 1)]
[('celia', 3), ('romm', 3), ('fay', 3), ('sudweeks', 3), ('ed', 2), ('dave', 1), ('oliver', 1), ('book', 1), ('follows', 1), ('previous', 1), ('text', 1), ('business', 1), ('electronically', 1), ('global', 1), ('perspective', 1), ('electronic', 1), ('commerce', 1)]
[('cloud', 3), ('computing', 2), ('continues', 2), ('emerge', 1), ('subject', 1), ('substantial', 1), ('industrial', 1), ('academic', 1), ('interest', 1), ('although', 1), ('meaning', 1), ('scope', 1), ('debated', 1), ('current', 1), ('notion', 1), ('blur', 1), ('distinction', 1), ('grid', 1)]
[('reliability', 3), ('oft', 1), ('repeated', 1), ('adage', 1), ('among', 1), ('telecommunication', 1), ('provider', 1), ('go', 1), ('thing', 1), ('matter', 1), ('time', 1), ('market', 1), ('cost', 1), ('least', 1), ('rst', 1), ('three', 1), ('yet', 1), ('designing', 1), ('operating', 1)]
[('data', 3), ('compression', 2), ('modern', 2), ('computing', 2), ('important', 1), ('field', 1), ('tool', 1), ('archiving', 1), ('cd', 1), ('rom', 1), ('coding', 1), ('theory', 1), ('image', 1), ('analysis', 1), ('many', 1), ('facet', 1), ('rely', 1), ('upon', 1), ('book', 1), ('provides', 1)]
[('ii', 2), ('mapping', 2), ('challenge', 1), ('data', 1), ('part', 1), ('deal', 1), ('challenging', 1), ('task', 1), ('interactive', 1), ('visualization', 1), ('teasing', 1), ('information', 1), ('large', 1), ('complex', 1), ('datasets', 1), ('generating', 1), ('visual', 1), ('representation', 1), ('section', 1), ('consists', 1), ('four', 1)]
[('spectral', 2), ('book', 1), ('present', 1), ('detailed', 1), ('analysis', 1), ('imaging', 1), ('describing', 1), ('used', 1), ('purpose', 1), ('material', 1), ('identification', 1), ('object', 1), ('recognition', 1), ('scene', 1), ('understanding', 1), ('opportunity', 1), ('challenge', 1), ('combining', 1), ('spatial', 1)]
[('book', 2), ('model', 2), ('describes', 1), ('principle', 1), ('building', 1), ('financial', 1), ('engineering', 1), ('explains', 1), ('design', 1), ('working', 1), ('implementation', 1), ('java', 1), ('based', 1), ('application', 1), ('provides', 1), ('software', 1), ('professional', 1), ('accessible', 1), ('source', 1)]
[('tool', 2), ('create', 2), ('book', 1), ('discus', 1), ('application', 1), ('evolutionary', 1), ('computation', 1), ('music', 1), ('needed', 1), ('study', 1), ('system', 1), ('combined', 1), ('surrogate', 1), ('artificial', 1), ('world', 1), ('populated', 1), ('interacting', 1), ('simulated', 1), ('organism', 1)]
[('new', 2), ('sensor', 2), ('algorithm', 2), ('recent', 1), ('advance', 1), ('biometrics', 1), ('include', 1), ('development', 1), ('modality', 1), ('designed', 1), ('newer', 1), ('challenge', 1), ('emerge', 1), ('accurate', 1), ('recognition', 1), ('written', 1), ('researcher', 1), ('advanced', 1), ('student', 1)]
[('textbook', 1), ('present', 1), ('practical', 1), ('introduction', 1), ('fundamental', 1), ('aspect', 1), ('modelling', 1), ('simulation', 1), ('provides', 1), ('necessary', 1), ('foundation', 1), ('wishing', 1), ('learn', 1), ('methodology', 1), ('need', 1), ('apply', 1)]
[('book', 2), ('year', 2), ('brings', 1), ('together', 1), ('several', 1), ('advanced', 1), ('topic', 1), ('computer', 1), ('graphic', 1), ('important', 1), ('area', 1), ('game', 1), ('development', 1), ('three', 1), ('dimensional', 1), ('animation', 1), ('real', 1), ('time', 1), ('rendering', 1), ('designed', 1), ('final', 1), ('undergraduate', 1), ('first', 1)]
[('feature', 2), ('lively', 1), ('fascinating', 1), ('text', 1), ('trace', 1), ('key', 1), ('development', 1), ('computation', 1), ('present', 1), ('day', 1), ('easy', 1), ('follow', 1), ('concise', 1), ('manner', 1), ('topic', 1), ('ideal', 1), ('self', 1), ('study', 1), ('offering', 1), ('many', 1), ('pedagogical', 1)]
[('music', 4), ('interaction', 3), ('research', 2), ('agenda', 1), ('setting', 1), ('book', 1), ('present', 1), ('state', 1), ('art', 1), ('human', 1), ('computer', 1), ('known', 1), ('exciting', 1), ('formative', 1), ('stage', 1), ('topic', 1), ('discussed', 1), ('include', 1), ('interactive', 1)]
[('support', 2), ('database', 2), ('spatial', 2), ('space', 1), ('pose', 1), ('new', 1), ('challenge', 1), ('every', 1), ('part', 1), ('management', 1), ('system', 1), ('amp', 1), ('capability', 1), ('physical', 1), ('layer', 1), ('considered', 1), ('important', 1), ('led', 1), ('design', 1), ('access', 1), ('method', 1)]
[('deep', 2), ('blue', 2), ('world', 2), ('chess', 2), ('decade', 1), ('passed', 1), ('ibm', 1), ('computer', 1), ('stunned', 1), ('defeating', 1), ('garry', 1), ('kasparov', 1), ('champion', 1), ('time', 1), ('beyond', 1), ('tell', 1), ('continuing', 1), ('story', 1), ('engine', 1), ('steady', 1), ('improvement', 1), ('book', 1)]
[('safety', 2), ('symposium', 2), ('book', 1), ('contains', 1), ('full', 1), ('complement', 1), ('paper', 1), ('presented', 1), ('sixteenth', 1), ('annual', 1), ('critical', 1), ('system', 1), ('held', 1), ('bristol', 1), ('uk', 1), ('february', 1), ('engineer', 1), ('manager', 1), ('academic', 1), ('field', 1), ('across', 1)]
[('feature', 3), ('fortran', 2), ('complete', 2), ('textbook', 1), ('provides', 1), ('accessible', 1), ('introduction', 1), ('important', 1), ('present', 1), ('discussion', 1), ('basic', 1), ('needed', 1), ('write', 1), ('program', 1), ('make', 1), ('extensive', 1), ('use', 1), ('example', 1)]
[('three', 2), ('java', 2), ('comprehensive', 1), ('textbook', 1), ('introduces', 1), ('reader', 1), ('tiered', 1), ('model', 1), ('view', 1), ('controller', 1), ('mvc', 1), ('architecture', 1), ('using', 1), ('hibernate', 1), ('jsps', 1), ('servlets', 1), ('technology', 1), ('use', 1), ('student', 1), ('background', 1), ('programming', 1)]
[('grid', 2), ('computing', 2), ('application', 2), ('research', 1), ('driven', 1), ('need', 1), ('solve', 1), ('large', 1), ('scale', 1), ('increasingly', 1), ('complex', 1), ('problem', 1), ('scientific', 1), ('yet', 1), ('business', 1), ('casual', 1), ('user', 1), ('begin', 1), ('emerge', 1)]
[('teach', 2), ('topic', 2), ('introductory', 1), ('course', 1), ('software', 1), ('engineering', 1), ('remains', 1), ('hardest', 1), ('subject', 1), ('largely', 1), ('wide', 1), ('range', 1), ('area', 1), ('enc', 1), ('pass', 1), ('believed', 1), ('time', 1), ('often', 1), ('tend', 1), ('many', 1), ('concept', 1)]
[('programming', 2), ('language', 2), ('design', 1), ('implementation', 1), ('fortran', 1), ('cobol', 1), ('caml', 1), ('java', 1), ('key', 1), ('development', 1), ('management', 1), ('complex', 1), ('computerized', 1), ('system', 1), ('introduction', 1), ('theory', 1)]
[('computer', 3), ('john', 1), ('vince', 1), ('explains', 1), ('wide', 1), ('range', 1), ('mathematical', 1), ('technique', 1), ('problem', 1), ('solving', 1), ('strategy', 1), ('associated', 1), ('game', 1), ('animation', 1), ('virtual', 1), ('reality', 1), ('cad', 1), ('area', 1), ('graphic', 1), ('updated', 1), ('expanded', 1), ('fourth', 1)]
[('life', 2), ('hardware', 2), ('hopping', 1), ('climbing', 1), ('swimming', 1), ('robot', 1), ('nano', 1), ('size', 1), ('neural', 1), ('network', 1), ('motorless', 1), ('walker', 1), ('slime', 1), ('mould', 1), ('chemical', 1), ('brain', 1), ('artificial', 1), ('model', 1), ('offer', 1), ('unique', 1), ('design', 1), ('prototype', 1), ('creature', 1), ('conventional', 1)]
[('control', 2), ('state', 1), ('art', 1), ('research', 1), ('monograph', 1), ('providing', 1), ('consistent', 1), ('treatment', 1), ('supervisory', 1), ('world', 1), ('leading', 1), ('group', 1), ('area', 1), ('bayesian', 1), ('identification', 1), ('decision', 1), ('making', 1)]
[('reverse', 2), ('engineering', 2), ('edited', 1), ('collection', 1), ('essay', 1), ('world', 1), ('leading', 1), ('academic', 1), ('industrial', 1), ('author', 1), ('yield', 1), ('insight', 1), ('aspect', 1), ('method', 1), ('analysis', 1), ('covered', 1), ('along', 1), ('special', 1), ('emphasis', 1), ('investigation', 1)]
[('thought', 2), ('generation', 1), ('human', 1), ('fantasized', 1), ('ability', 1), ('create', 1), ('device', 1), ('see', 1), ('person', 1), ('mind', 1), ('communicate', 1), ('interact', 1), ('machine', 1), ('alone', 1), ('idea', 1), ('long', 1), ('captured', 1), ('imagination', 1)]
[('safety', 3), ('system', 2), ('paper', 2), ('contains', 1), ('invited', 1), ('presented', 1), ('fifteenth', 1), ('annual', 1), ('critical', 1), ('symposium', 1), ('held', 1), ('bristol', 1), ('uk', 1), ('february', 1), ('included', 1), ('volume', 1), ('cover', 1), ('broad', 1), ('spectrum', 1), ('important', 1), ('issue', 1)]
[('covering', 1), ('key', 1), ('area', 1), ('evaluation', 1), ('methodology', 1), ('client', 1), ('side', 1), ('application', 1), ('specialist', 1), ('novel', 1), ('technology', 1), ('along', 1), ('initial', 1), ('appraisal', 1), ('disability', 1), ('important', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('web', 1), ('accessibility', 1), ('written', 1)]
[('requirement', 2), ('engineering', 2), ('written', 1), ('want', 1), ('develop', 1), ('knowledge', 1), ('process', 1), ('whether', 1), ('practitioner', 1), ('student', 1), ('using', 1), ('latest', 1), ('research', 1), ('driven', 1), ('practical', 1), ('experience', 1), ('industry', 1), ('give', 1), ('useful', 1), ('hint', 1)]
[('ontology', 3), ('ontological', 1), ('engineering', 1), ('refers', 1), ('set', 1), ('activity', 1), ('concern', 1), ('development', 1), ('process', 1), ('life', 1), ('cycle', 1), ('method', 1), ('methodology', 1), ('building', 1), ('tool', 1), ('suite', 1), ('language', 1), ('support', 1)]
[('entertainment', 3), ('computing', 2), ('art', 1), ('technology', 1), ('communication', 1), ('take', 1), ('blue', 1), ('sky', 1), ('research', 1), ('perspective', 1), ('field', 1), ('interactive', 1), ('medium', 1), ('adrian', 1), ('david', 1), ('cheok', 1), ('argues', 1), ('end', 1), ('product', 1), ('useful', 1)]
[('system', 3), ('safety', 3), ('symposium', 2), ('advance', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('nineteenth', 1), ('annual', 1), ('critical', 1), ('held', 1), ('southampton', 1), ('uk', 1), ('february', 1), ('engineer', 1), ('manager', 1), ('academic', 1), ('field', 1)]
[('fortran', 4), ('handbook', 1), ('definitive', 1), ('comprehensive', 1), ('guide', 1), ('use', 1), ('latest', 1), ('standard', 1), ('version', 1), ('many', 1), ('excellent', 1), ('feature', 1), ('assist', 1), ('programmer', 1), ('writing', 1), ('efficient', 1), ('portable', 1)]
[('textbook', 1), ('uniquely', 1), ('written', 1), ('dual', 1), ('purpose', 1), ('cover', 1), ('core', 1), ('material', 1), ('foundation', 1), ('computing', 1), ('graduate', 1), ('student', 1), ('computer', 1), ('science', 1), ('provides', 1), ('introduction', 1), ('advanced', 1), ('topic', 1), ('intending', 1), ('study', 1)]
[('ontology', 2), ('increasingly', 1), ('recognized', 1), ('essential', 1), ('tool', 1), ('information', 1), ('science', 1), ('although', 1), ('concept', 1), ('understood', 1), ('theoretically', 1), ('practical', 1), ('implementation', 1), ('remains', 1), ('challenging', 1), ('book', 1), ('researcher', 1), ('computer', 1)]
[('text', 3), ('mining', 3), ('natural', 2), ('language', 2), ('processing', 2), ('discus', 1), ('application', 1), ('technique', 1), ('certain', 1), ('task', 1), ('converse', 1), ('use', 1), ('assist', 1), ('nlp', 1), ('assembles', 1), ('diverse', 1), ('view', 1)]
[('pc', 2), ('want', 2), ('step', 2), ('popular', 1), ('build', 1), ('biy', 1), ('book', 1), ('cover', 1), ('everything', 1), ('know', 1), ('building', 1), ('system', 1), ('planning', 1), ('picking', 1), ('right', 1), ('component', 1), ('instruction', 1), ('assembling', 1), ('perfect', 1), ('insightful', 1), ('discussion', 1), ('first', 1), ('place', 1), ('big', 1), ('brand', 1), ('computer', 1), ('hp', 1), ('dell', 1), ('others', 1), ('use', 1)]
[('want', 1), ('build', 1), ('robot', 1), ('turn', 1), ('idea', 1), ('prototype', 1), ('control', 1), ('device', 1), ('computer', 1), ('make', 1), ('cell', 1), ('phone', 1), ('application', 1), ('snap', 1), ('book', 1), ('arduino', 1), ('open', 1), ('source', 1), ('electronic', 1), ('prototyping', 1), ('platform', 1), ('started', 1), ('six', 1), ('fun', 1), ('project', 1), ('achieve', 1), ('impressive', 1), ('result', 1), ('quickly', 1), ('gain', 1), ('know', 1), ('experience', 1), ('invent', 1)]
[('robot', 2), ('build', 1), ('responds', 1), ('electrical', 1), ('activity', 1), ('brain', 1), ('easy', 1), ('fun', 1), ('familiar', 1), ('arduino', 1), ('basic', 1), ('mechanical', 1), ('building', 1), ('skill', 1), ('book', 1), ('show', 1), ('construct', 1), ('play', 1), ('sound', 1), ('blink', 1), ('light', 1), ('reacts', 1), ('signal', 1), ('affordable', 1), ('electroencephalography', 1), ('eeg', 1), ('headband', 1), ('concentrate', 1)]
[('coffee', 3), ('espresso', 3), ('perfect', 2), ('diy', 1), ('collect', 1), ('five', 1), ('hot', 1), ('make', 1), ('magazine', 1), ('project', 1), ('supercharge', 1), ('java', 1), ('home', 1), ('built', 1), ('roaster', 1), ('bottomless', 1), ('portafilter', 1), ('toaster', 1), ('tea', 1), ('popper', 1), ('temperature', 1), ('hack', 1), ('web', 1), ('fired', 1), ('automation', 1), ('jones', 1), ('caffeine', 1), ('technology', 1), ('mod', 1), ('machine', 1), ('dial', 1), ('shot', 1)]
[('project', 2), ('netduino', 2), ('step', 2), ('start', 1), ('building', 1), ('electronics', 1), ('popular', 1), ('open', 1), ('source', 1), ('hardware', 1), ('platform', 1), ('captured', 1), ('imagination', 1), ('maker', 1), ('hobbyist', 1), ('worldwide', 1), ('easy', 1), ('follow', 1), ('book', 1), ('provides', 1), ('guidance', 1), ('need', 1), ('experiment', 1), ('net', 1), ('micro', 1), ('framework', 1), ('set', 1), ('simple', 1), ('learn', 1)]
[('computer', 2), ('arrived', 1), ('stage', 1), ('creative', 1), ('life', 1), ('ready', 1), ('time', 1), ('learn', 1), ('combine', 1), ('power', 1), ('new', 1), ('advance', 1), ('aided', 1), ('design', 1), ('cad', 1), ('fabrication', 1), ('make', 1), ('something', 1), ('awesome', 1), ('three', 1), ('dimension', 1), ('free', 1), ('suite', 1), ('autodesk', 1), ('software', 1), ('offer', 1), ('tool', 1), ('need', 1), ('capture', 1)]
[('raspberry', 2), ('pi', 2), ('running', 1), ('quickly', 1), ('new', 1), ('jumpstarting', 1), ('ebook', 1), ('series', 1), ('make', 1), ('super', 1), ('small', 1), ('zero', 1), ('includes', 1), ('wireless', 1), ('lan', 1), ('bluetooth', 1), ('connectivity', 1), ('faster', 1), ('original', 1)]
[('cloud', 2), ('benefit', 2), ('security', 2), ('issue', 2), ('computing', 1), ('seen', 1), ('main', 1), ('business', 1), ('driver', 1), ('growth', 1), ('innovation', 1), ('yet', 1), ('debate', 1), ('continues', 1), ('around', 1), ('data', 1), ('protection', 1), ('ebook', 1), ('look', 1), ('different', 1), ('aspect', 1), ('strategic', 1), ('consideration', 1), ('legal', 1), ('aiming', 1), ('provide', 1), ('clearer', 1), ('picture', 1), ('drawback', 1)]
[('report', 2), ('device', 2), ('company', 2), ('security', 2), ('mobile', 2), ('according', 1), ('recent', 1), ('ipass', 1), ('enterprise', 1), ('allow', 1), ('non', 1), ('managed', 1), ('access', 1), ('resource', 1), ('issue', 1), ('ebook', 1), ('look', 1), ('risk', 1), ('increasingly', 1), ('workforce', 1), ('proposes', 1), ('range', 1), ('possible', 1), ('solution', 1), ('topic', 1), ('include', 1), ('personal', 1), ('work', 1), ('password', 1), ('data', 1), ('encryption', 1)]
[('test', 3), ('book', 2), ('design', 2), ('present', 1), ('key', 1), ('technique', 1), ('line', 1), ('istqb', 1), ('explains', 1), ('use', 1), ('including', 1), ('combination', 1), ('practical', 1), ('real', 1), ('life', 1), ('example', 1), ('automated', 1), ('method', 1), ('explored', 1), ('tip', 1), ('exercise', 1), ('included', 1), ('throughout', 1), ('allowing', 1), ('knowledge', 1), ('progress', 1)]
[('major', 2), ('lt', 1), ('gt', 1), ('new', 1), ('professional', 1), ('reference', 1), ('work', 1), ('fingerprint', 1), ('security', 1), ('system', 1), ('technology', 1), ('leading', 1), ('international', 1), ('researcher', 1), ('field', 1), ('handbook', 1), ('provides', 1), ('authoritative', 1), ('comprehensive', 1), ('coverage', 1), ('topic', 1), ('concept', 1)]
[('business', 2), ('enhances', 1), ('use', 1), ('enterprise', 1), ('model', 1), ('effective', 1), ('communication', 1), ('medium', 1), ('technical', 1), ('personnel', 1), ('detail', 1), ('blue', 1), ('print', 1), ('developed', 1), ('system', 1)]
[('work', 1), ('provides', 1), ('guide', 1), ('configuration', 1), ('cisco', 1), ('router', 1), ('task', 1), ('beginner', 1), ('advanced', 1), ('operation', 1), ('collection', 1), ('detailed', 1), ('instruction', 1), ('presented', 1), ('use', 1), ('professional', 1), ('student', 1), ('engage', 1)]
[('change', 3), ('detection', 2), ('method', 2), ('using', 1), ('remotely', 1), ('sensed', 1), ('image', 1), ('many', 1), ('application', 1), ('urban', 1), ('monitoring', 1), ('land', 1), ('cover', 1), ('analysis', 1), ('disaster', 1), ('management', 1), ('work', 1), ('investigates', 1), ('dimensional', 1), ('existing', 1)]
[('depth', 2), ('time', 1), ('flight', 1), ('tof', 1), ('camera', 1), ('provide', 1), ('value', 1), ('pixel', 1), ('structure', 1), ('scene', 1), ('estimated', 1), ('new', 1), ('type', 1), ('active', 1), ('sensor', 1), ('make', 1), ('possible', 1), ('go', 1), ('beyond', 1), ('traditional', 1), ('image', 1), ('processing', 1), ('directly', 1), ('based', 1)]
[('characteristic', 2), ('wavelet', 2), ('due', 1), ('inherent', 1), ('time', 1), ('scale', 1), ('locality', 1), ('discrete', 1), ('transform', 1), ('dwt', 1), ('received', 1), ('considerable', 1), ('attention', 1), ('signal', 1), ('image', 1), ('processing', 1), ('transforms', 1), ('excellent', 1), ('energy', 1), ('compaction', 1), ('provide', 1), ('perfect', 1)]
[('information', 2), ('first', 1), ('hear', 1), ('term', 1), ('assurance', 1), ('tend', 1), ('conjure', 1), ('image', 1), ('balanced', 1), ('set', 1), ('reasonable', 1), ('measure', 1), ('taken', 1), ('protect', 1), ('assessment', 1), ('made', 1), ('risk', 1), ('posed', 1), ('truth', 1)]
[('collection', 1), ('revised', 1), ('paper', 1), ('originally', 1), ('presented', 1), ('th', 1), ('conference', 1), ('logic', 1), ('foundation', 1), ('game', 1), ('decision', 1), ('theory', 1), ('loft', 1)]
[('signal', 3), ('book', 1), ('deal', 1), ('wide', 1), ('class', 1), ('novel', 1), ('efficient', 1), ('adaptive', 1), ('processing', 1), ('technique', 1), ('developed', 1), ('restore', 1), ('noisy', 1), ('degraded', 1), ('observation', 1), ('include', 1), ('acquired', 1), ('still', 1), ('video', 1), ('camera', 1), ('electron', 1), ('microscope', 1), ('radar', 1), ('ray', 1), ('ultrasound', 1), ('device', 1), ('used', 1), ('various', 1), ('purpose', 1), ('including', 1), ('entertainment', 1)]
[('science', 2), ('engineering', 2), ('part', 1), ('spie', 1), ('iee', 1), ('series', 1), ('imaging', 1), ('book', 1), ('provides', 1), ('framework', 1), ('understanding', 1), ('ensemble', 1), ('temporal', 1), ('spatial', 1), ('higher', 1), ('dimensional', 1), ('process', 1), ('vary', 1), ('randomly', 1), ('observation', 1), ('suitable', 1), ('text', 1), ('undergraduate', 1), ('graduate', 1), ('student', 1), ('strong', 1), ('background', 1), ('probability', 1)]
[('diesis', 1), ('buch', 1), ('wird', 1), ('ihnen', 1), ('jeder', 1), ('phase', 1), ('ihres', 1), ('iso', 1), ('projekts', 1), ('helfen', 1), ('da', 1), ('e', 1), ('die', 1), ('methode', 1), ('von', 1), ('beratern', 1), ('hundert', 1), ('erfolgreichen', 1), ('ism', 1), ('implementierungen', 1), ('darstellt', 1)]
[('mobile', 2), ('phone', 2), ('paying', 1), ('device', 1), ('smart', 1), ('expand', 1), ('worldwide', 1), ('coming', 1), ('year', 1), ('development', 1), ('provides', 1), ('opportunity', 1), ('various', 1), ('industry', 1), ('banking', 1), ('telecommunication', 1), ('credit', 1), ('card', 1), ('business', 1), ('manufacturer', 1)]
[('da', 2), ('buch', 1), ('befasst', 1), ('sich', 1), ('sachlich', 1), ('und', 1), ('praxisorientiert', 1), ('mit', 1), ('dem', 1), ('raspberry', 1), ('pi', 1), ('zunächst', 1), ('ist', 1), ('e', 1), ('wichtig', 1), ('das', 1), ('der', 1), ('leser', 1), ('schnell', 1), ('zu', 1), ('einem', 1), ('erfolgserlebnis', 1), ('kommt', 1), ('deshalb', 1), ('wird', 1), ('system', 1), ('gleich', 1), ('ersten', 1), ('kapitel', 1), ('schnellstart', 1), ('betrieb', 1), ('gesetzt', 1), ('um', 1), ('damit', 1)]
[('microsoft', 2), ('dynamic', 2), ('ax', 2), ('book', 1), ('provides', 1), ('precise', 1), ('description', 1), ('instruction', 1), ('enable', 1), ('user', 1), ('student', 1), ('consultant', 1), ('understand', 1), ('rapidly', 1), ('offer', 1), ('premium', 1), ('erp', 1), ('solution', 1), ('supporting', 1), ('large', 1), ('mid', 1), ('sized', 1)]
[('der', 2), ('die', 2), ('auf', 2), ('ausgehend', 1), ('von', 1), ('beispielen', 1), ('vermittelt', 1), ('diesis', 1), ('lehrbuch', 1), ('grundlegende', 1), ('paradigmen', 1), ('informatik', 1), ('schwerpunkte', 1), ('liegen', 1), ('dem', 1), ('algorithmenbegriff', 1), ('einer', 1), ('einführung', 1), ('programmierung', 1), ('grundlage', 1), ('programmiersprache', 1), ('java', 1), ('und', 1), ('objektorientierten', 1)]
[('der', 2), ('mathematik', 2), ('eine', 2), ('nbsp', 2), ('da', 1), ('studienanfänger', 1), ('gerichtete', 1), ('lehrbuch', 1), ('bietet', 1), ('breit', 1), ('angelegte', 1), ('einführung', 1), ('verschiedene', 1), ('facetten', 1), ('computerorientierten', 1), ('e', 1), ('ermöglicht', 1), ('frühzeitige', 1), ('und', 1), ('wertvolle', 1), ('auseinandersetzung', 1), ('mit', 1)]
[('da', 2), ('vorliegende', 2), ('lehrbuch', 1), ('vermittelt', 1), ('den', 1), ('umgang', 1), ('mit', 1), ('dem', 1), ('advanced', 1), ('planner', 1), ('optimizer', 1), ('apo', 1), ('der', 1), ('sap', 1), ('ag', 1), ('anhand', 1), ('eines', 1), ('durchgehenden', 1), ('fallbeispiels', 1), ('übungen', 1), ('wird', 1), ('die', 1), ('betriebswirtschaftliche', 1), ('theorie', 1), ('seitig', 1), ('veranschaulicht', 1)]
[('dynamic', 2), ('ax', 2), ('precise', 1), ('description', 1), ('instruction', 1), ('enable', 1), ('user', 1), ('student', 1), ('consultant', 1), ('understand', 1), ('m', 1), ('rapidly', 1), ('microsoft', 1), ('offer', 1), ('premium', 1), ('erp', 1), ('solution', 1), ('supporting', 1), ('large', 1), ('mid', 1), ('sized', 1), ('organization', 1), ('complete', 1), ('business', 1)]
[('die', 3), ('und', 3), ('iso', 2), ('der', 2), ('normreihe', 1), ('grundschutz', 1), ('werden', 1), ('immer', 1), ('wichtiger', 1), ('für', 1), ('unternehmen', 1), ('behörden', 1), ('ein', 1), ('sicherheitsmanagement', 1), ('ihrer', 1), ('organisation', 1), ('einführen', 1), ('betreiben', 1), ('wollen', 1), ('internationalen', 1), ('kontext', 1), ('ist', 1), ('anwendung', 1)]
[('book', 1), ('comprehensive', 1), ('introduction', 1), ('method', 1), ('algorithm', 1), ('modern', 1), ('data', 1), ('analytics', 1), ('provides', 1), ('sound', 1), ('mathematical', 1), ('basis', 1), ('discus', 1), ('advantage', 1), ('drawback', 1), ('different', 1), ('approach', 1), ('enables', 1), ('reader', 1), ('design', 1), ('implement', 1)]
[('software', 2), ('book', 1), ('help', 1), ('apply', 1), ('iso', 1), ('iec', 1), ('business', 1), ('enjoy', 1), ('reward', 1), ('offer', 1), ('david', 1), ('wright', 1), ('call', 1), ('vast', 1), ('experience', 1), ('explain', 1), ('standard', 1), ('applies', 1), ('whole', 1), ('life', 1), ('cycle', 1), ('asset', 1), ('management', 1), ('aspect', 1)]
[('system', 2), ('face', 2), ('recognition', 2), ('feature', 2), ('spotlight', 1), ('explains', 1), ('build', 1), ('automated', 1), ('emotion', 1), ('pain', 1), ('step', 1), ('involved', 1), ('include', 1), ('pre', 1), ('processing', 1), ('detection', 1), ('segmentation', 1), ('extraction', 1), ('finally', 1), ('classify', 1), ('show', 1), ('accuracy', 1), ('state', 1), ('art', 1), ('algorithm', 1), ('used', 1), ('describe', 1), ('possible', 1), ('solution', 1)]
[('example', 2), ('work', 1), ('report', 1), ('critical', 1), ('analysis', 1), ('complexity', 1), ('issue', 1), ('continuum', 1), ('setting', 1), ('generalization', 1), ('new', 1), ('basic', 1), ('milestone', 1), ('learning', 1), ('connectionist', 1), ('model', 1), ('cover', 1), ('date', 1), ('development', 1), ('computational', 1), ('mathematics', 1)]
[('proof', 2), ('software', 1), ('engineer', 1), ('integrated', 1), ('processing', 1), ('industrial', 1), ('development', 1), ('tool', 1), ('implementation', 1), ('getting', 1), ('efficient', 1), ('chapter', 1), ('deal', 1), ('benefit', 1), ('technical', 1), ('challenge', 1), ('sharing', 1), ('formal', 1), ('mathematics', 1), ('among', 1), ('interactive', 1), ('theorem', 1), ('provers', 1), ('normalization', 1), ('various', 1), ('axiomatic', 1), ('theory', 1), ('abstraction', 1), ('refinement', 1)]
[('concurrent', 2), ('engineering', 2), ('contains', 1), ('paper', 1), ('advance', 1), ('research', 1), ('application', 1), ('book', 1), ('focus', 1), ('developing', 1), ('methodology', 1), ('technique', 1), ('tool', 1), ('based', 1), ('web', 1), ('technology', 1), ('required', 1), ('support', 1), ('key', 1), ('objective', 1)]
[('communication', 2), ('another', 2), ('core', 1), ('activity', 1), ('educator', 1), ('conveying', 1), ('sharing', 1), ('information', 1), ('person', 1), ('organization', 1), ('work', 1), ('includes', 1), ('contribution', 1), ('encompass', 1), ('series', 1), ('topic', 1), ('psychology', 1)]
[('logic', 2), ('programming', 2), ('learning', 2), ('fisher', 2), ('kernel', 2), ('talk', 1), ('uncertainty', 1), ('reasoning', 1), ('machine', 1), ('book', 1), ('includes', 1), ('definition', 1), ('circumscribe', 1), ('area', 1), ('formed', 1), ('extending', 1), ('inductive', 1), ('case', 1), ('annotated', 1), ('probability', 1), ('value', 1), ('investigates', 1), ('approach', 1), ('proof', 1), ('issue', 1), ('upgrading', 1), ('relational', 1)]
[('design', 4), ('open', 3), ('approach', 2), ('architecture', 2), ('planning', 2), ('refers', 1), ('stakeholder', 1), ('oriented', 1), ('urban', 1), ('project', 1), ('management', 1), ('developed', 1), ('chair', 1), ('computer', 1), ('aided', 1), ('delft', 1), ('university', 1), ('technology', 1), ('edition', 1), ('collect', 1), ('following', 1), ('three', 1), ('volume', 1), ('collaborative', 1), ('offering', 1)]
[('paper', 1), ('book', 1), ('explore', 1), ('diversity', 1), ('field', 1), ('ambient', 1), ('intelligence', 1), ('wide', 1), ('range', 1), ('approach', 1), ('variety', 1), ('application', 1), ('prove', 1), ('possible', 1), ('consideration', 1), ('given', 1), ('space', 1), ('action', 1), ('time', 1), ('context', 1), ('represented', 1), ('reasoned', 1), ('use', 1), ('sensory', 1), ('mapping', 1), ('multi', 1), ('agent', 1), ('interaction', 1)]
[('ai', 2), ('application', 2), ('provides', 1), ('insight', 1), ('computer', 1), ('engineer', 1), ('implement', 1), ('artificial', 1), ('intelligence', 1), ('real', 1), ('world', 1), ('book', 1), ('present', 1), ('practical', 1)]
[('technology', 3), ('iot', 2), ('sector', 2), ('internet', 1), ('thing', 1), ('core', 1), ('current', 1), ('future', 1), ('information', 1), ('communication', 1), ('ict', 1), ('deployed', 1), ('numerous', 1), ('industry', 1), ('including', 1), ('health', 1), ('transport', 1), ('smart', 1), ('city', 1), ('utility', 1), ('environment', 1), ('security', 1), ('many', 1), ('area', 1), ('manner', 1), ('suitable', 1), ('broad', 1), ('range', 1)]
[('motion', 3), ('ability', 2), ('adaptive', 2), ('motivation', 1), ('dream', 1), ('understand', 1), ('principle', 1), ('animal', 1), ('remarkable', 1), ('transfer', 1), ('robot', 1), ('mechanism', 1), ('generation', 1), ('control', 1), ('stereotyped', 1)]
[('big', 2), ('data', 2), ('mapreduce', 2), ('concept', 2), ('author', 1), ('hadoop', 1), ('classroom', 1), ('approach', 1), ('framed', 1), ('book', 1), ('facilitate', 1), ('understanding', 1), ('visualizing', 1), ('basic', 1), ('terminology', 1), ('employ', 1), ('illustration', 1), ('many', 1), ('worked', 1), ('example', 1), ('convey', 1), ('method', 1), ('used', 1)]
[('statistical', 3), ('method', 2), ('volume', 1), ('psychiatry', 1), ('research', 1), ('spss', 1), ('going', 1), ('second', 1), ('edition', 1), ('helping', 1), ('psychiatrist', 1), ('expand', 1), ('knowledge', 1), ('fill', 1), ('gap', 1), ('application', 1), ('introduces', 1), ('data', 1), ('analysis', 1), ('software', 1), ('address', 1), ('need', 1), ('physician', 1), ('present', 1), ('simplified', 1)]
[('sa', 3), ('classic', 1), ('keep', 1), ('getting', 1), ('better', 1), ('little', 1), ('book', 1), ('essential', 1), ('anyone', 1), ('learning', 1), ('programming', 1), ('lora', 1), ('delwiche', 1), ('susan', 1), ('slaughter', 1), ('offer', 1), ('user', 1), ('friendly', 1), ('approach', 1), ('reader', 1), ('quickly', 1), ('easily', 1), ('learn', 1), ('commonly', 1), ('used', 1), ('feature', 1), ('language', 1), ('topic', 1), ('presented', 1), ('self', 1), ('contained', 1), ('page', 1), ('layout', 1), ('complete', 1)]
[('analysis', 3), ('jmp', 3), ('technique', 2), ('statistical', 2), ('using', 2), ('data', 2), ('master', 1), ('concept', 1), ('practical', 1), ('third', 1), ('edition', 1), ('highlight', 1), ('powerful', 1), ('interactive', 1), ('visual', 1), ('approach', 1), ('introduce', 1), ('reader', 1), ('thinking', 1), ('help', 1), ('choose', 1), ('best', 1), ('problem', 1), ('hand', 1), ('real', 1), ('world', 1), ('case', 1)]
[('data', 3), ('science', 3), ('sa', 3), ('end', 2), ('programming', 2), ('machine', 2), ('learning', 2), ('learn', 1), ('concept', 1), ('real', 1), ('world', 1), ('example', 1), ('hand', 1), ('guide', 1), ('provides', 1), ('clear', 1), ('practical', 1), ('explanation', 1), ('environment', 1), ('technique', 1), ('knowledge', 1), ('necessary', 1), ('develop', 1), ('model', 1), ('industry', 1), ('book', 1), ('cover', 1)]
[('software', 3), ('architektur', 3), ('titel', 2), ('autor', 1), ('vogel', 1), ('et', 1), ('al', 1), ('untertitel', 1), ('grundlagen', 1), ('konzepte', 1), ('praxis', 1), ('hl', 1), ('der', 1), ('umfassende', 1), ('einstieg', 1), ('die', 1), ('copy', 1), ('dieser', 1), ('behandelt', 1), ('da', 1), ('thema', 1), ('umfassend', 1), ('und', 1), ('strukturiert', 1)]
[('finance', 3), ('computational', 2), ('book', 1), ('cover', 1), ('wide', 1), ('range', 1), ('topic', 1), ('yet', 1), ('essential', 1), ('cf', 1), ('understood', 1), ('mix', 1), ('statistic', 1), ('mathematics', 1), ('regard', 1), ('unique', 1), ('kind', 1), ('touch', 1), ('upon', 1), ('basic', 1)]
[('arkham', 1), ('asylum', 1), ('avatar', 1), ('batman', 1), ('bioshock', 1), ('cameron', 1), ('cheat', 1), ('game', 1), ('ghostbusters', 1), ('halo', 1), ('james', 1), ('killzone', 1), ('odst', 1), ('p', 1), ('sony', 1), ('video', 1), ('xbox', 1)]
[('cheat', 4), ('unlimited', 2), ('gamers', 2), ('specialist', 1), ('come', 1), ('video', 1), ('game', 1), ('tip', 1), ('walkthrough', 1), ('guide', 1), ('fronted', 1), ('glamorous', 1), ('gorgeous', 1), ('mistress', 1), ('helped', 1), ('seven', 1), ('million', 1), ('worldwide', 1), ('last', 1), ('year', 1), ('phone', 1), ('line', 1), ('fax', 1), ('machine', 1), ('web', 1), ('wap', 1), ('site', 1), ('ebooks', 1)]
[('smalltalk', 2), ('written', 1), ('programmer', 1), ('book', 1), ('designed', 1), ('help', 1), ('reader', 1), ('become', 1), ('effective', 1), ('developer', 1), ('object', 1), ('technology', 1), ('user', 1)]
[('artificial', 2), ('intelligence', 2), ('fascinating', 1), ('look', 1), ('humble', 1), ('cold', 1), ('war', 1), ('beginning', 1), ('dazzling', 1), ('future', 1), ('around', 1), ('corner', 1), ('think', 1), ('mind', 1), ('go', 1), ('straight', 1), ('cyborg', 1), ('robot', 1), ('sci', 1), ('fi', 1)]
[('freedom', 4), ('book', 1), ('specifically', 1), ('personal', 1), ('discovered', 1), ('wonderful', 1), ('world', 1), ('blogging', 1), ('hope', 1), ('everybody', 1), ('eventually', 1), ('discover', 1), ('believe', 1), ('permanently', 1), ('irrevocably', 1)]
[('algorithm', 2), ('fascinating', 1), ('guided', 1), ('tour', 1), ('complex', 1), ('fast', 1), ('moving', 1), ('influential', 1), ('world', 1), ('powerful', 1), ('predictor', 1), ('human', 1), ('behavior', 1), ('headed', 1), ('next', 1), ('exert', 1), ('extraordinary', 1)]
[('digital', 4), ('art', 4), ('set', 1), ('adventure', 1), ('come', 1), ('inside', 1), ('wonderland', 1), ('journaling', 1), ('embark', 1), ('together', 1), ('luscious', 1), ('visual', 1), ('journey', 1), ('daring', 1), ('crew', 1), ('angi', 1), ('sullins', 1), ('silas', 1), ('toball', 1), ('give', 1), ('personal', 1), ('tour', 1)]
[('learning', 2), ('rich', 1), ('narrative', 1), ('explanation', 1), ('mathematics', 1), ('brought', 1), ('machine', 1), ('ongoing', 1), ('explosion', 1), ('artificial', 1), ('intelligencemachine', 1), ('system', 1), ('making', 1), ('life', 1), ('altering', 1), ('decision', 1), ('approving', 1), ('mortgage', 1), ('loan', 1), ('determining', 1)]
[('estimation', 2), ('modern', 1), ('look', 1), ('state', 1), ('cover', 1), ('variational', 1), ('inference', 1), ('adaptive', 1), ('covariance', 1), ('inertial', 1), ('navigation', 1)]
[('interdisciplinary', 1), ('text', 1), ('student', 1), ('researcher', 1), ('developer', 1), ('blend', 1), ('foundation', 1), ('virtual', 1), ('reality', 1), ('industry', 1), ('insight', 1)]
[('discussion', 1), ('design', 1), ('evaluation', 1), ('assistive', 1), ('translation', 1), ('technology', 1), ('diverse', 1), ('set', 1), ('vulnerable', 1), ('population', 1)]
[('explores', 1), ('problem', 1), ('information', 1), ('learning', 1), ('theory', 1), ('using', 1), ('tool', 1), ('analytic', 1), ('combinatorics', 1), ('analyze', 1), ('precise', 1), ('behavior', 1), ('source', 1), ('code', 1)]
[('first', 1), ('textbook', 1), ('adversarial', 1), ('machine', 1), ('learning', 1), ('including', 1), ('attack', 1), ('defense', 1), ('background', 1), ('material', 1), ('hand', 1), ('student', 1), ('project', 1)]
[('book', 1), ('present', 1), ('general', 1), ('principle', 1), ('scalable', 1), ('methodology', 1), ('deal', 1), ('adversarial', 1), ('outlier', 1), ('high', 1), ('dimensional', 1), ('datasets', 1)]
[('book', 1), ('examines', 1), ('algorithm', 1), ('criminal', 1), ('justice', 1), ('education', 1), ('housing', 1), ('election', 1), ('beyond', 1), ('affect', 1), ('autonomy', 1), ('freedom', 1), ('democracy', 1), ('title', 1), ('available', 1), ('open', 1), ('access', 1), ('cambridge', 1), ('core', 1)]
[('explores', 1), ('critical', 1), ('role', 1), ('time', 1), ('play', 1), ('understanding', 1), ('causality', 1), ('across', 1), ('psychology', 1), ('biology', 1), ('physic', 1), ('social', 1), ('science', 1)]
[('book', 1), ('develops', 1), ('natural', 1), ('language', 1), ('semantics', 1), ('spatio', 1), ('temporal', 1), ('information', 1), ('based', 1), ('annotation', 1), ('structure', 1), ('rather', 1), ('syntax', 1)]
[('complete', 1), ('introduction', 1), ('recent', 1), ('advance', 1), ('preprocessing', 1), ('analysis', 1), ('kernelization', 1), ('extensive', 1), ('example', 1), ('using', 1), ('single', 1), ('data', 1), ('set', 1)]
[('element', 1), ('uncovers', 1), ('source', 1), ('interlingual', 1), ('cross', 1), ('cultural', 1), ('asymmetry', 1), ('motivated', 1), ('screen', 1), ('language', 1), ('video', 1), ('game', 1)]
[('programming', 2), ('lucid', 1), ('textbook', 1), ('introduces', 1), ('student', 1), ('object', 1), ('oriented', 1), ('using', 1), ('java', 1), ('language', 1)]
[('data', 2), ('book', 1), ('explains', 1), ('foundation', 1), ('xml', 1), ('web', 1), ('standard', 1), ('management', 1), ('focus', 1), ('distribution', 1)]
[('system', 2), ('broad', 1), ('exploration', 1), ('research', 1), ('plasticity', 1), ('sensory', 1), ('focus', 1), ('visual', 1), ('auditory', 1)]
[('thesis', 1), ('cover', 1), ('theory', 1), ('practice', 1), ('behind', 1), ('practical', 1), ('evaluation', 1)]
[('book', 1), ('explores', 1), ('social', 1), ('dimension', 1), ('powerful', 1), ('computing', 1), ('application', 1), ('shaping', 1), ('culture', 1), ('design', 1), ('use', 1)]
[('present', 1), ('pattern', 1), ('deliver', 1), ('maintain', 1), ('support', 1), ('phase', 1), ('large', 1), ('scale', 1), ('system', 1), ('development', 1)]
[('expert', 2), ('diverse', 1), ('collection', 1), ('article', 1), ('leading', 1), ('computational', 1), ('mathematics', 1), ('written', 1), ('appeal', 1), ('established', 1), ('researcher', 1), ('non', 1)]
[('authoritative', 1), ('treatment', 1), ('software', 1), ('product', 1), ('line', 1), ('engineering', 1), ('student', 1), ('practitioner', 1), ('alike', 1)]
[('new', 1), ('form', 1), ('connection', 1), ('need', 1), ('regulation', 1), ('control', 1), ('fascinating', 1), ('essay', 1), ('explore', 1), ('question', 1), ('technical', 1), ('socio', 1), ('philosophical', 1), ('design', 1), ('perspective', 1)]
[('self', 1), ('contained', 1), ('introduction', 1), ('use', 1), ('stochastic', 1), ('geometry', 1), ('technique', 1), ('studying', 1), ('behaviour', 1), ('heterogeneous', 1), ('cellular', 1), ('network', 1)]
[('first', 1), ('detailed', 1), ('account', 1), ('basic', 1), ('theory', 1), ('application', 1), ('nominal', 1), ('set', 1)]
[('game', 2), ('leader', 1), ('field', 1), ('serious', 1), ('share', 1), ('practical', 1), ('guideline', 1), ('lesson', 1), ('learned', 1), ('researching', 1), ('developing', 1), ('learning', 1)]
[('science', 2), ('cross', 1), ('disciplinary', 1), ('exploration', 1), ('mmos', 1), ('complex', 1), ('online', 1), ('world', 1), ('meld', 1), ('work', 1), ('computer', 1), ('psychology', 1), ('social', 1)]
[('book', 1), ('formalizes', 1), ('commonsense', 1), ('knowledge', 1), ('enable', 1), ('artificial', 1), ('intelligence', 1), ('understand', 1), ('engage', 1), ('mental', 1), ('life', 1)]
[('comprehensive', 1), ('introduction', 1), ('algebraic', 1), ('complexity', 1), ('theory', 1), ('present', 1), ('new', 1), ('technique', 1), ('analyzing', 1), ('v', 1), ('np', 1), ('matrix', 1), ('multiplication', 1)]
[('petri', 1), ('net', 1), ('model', 1), ('analysis', 1), ('concurrent', 1), ('system', 1)]
[('computational', 1), ('lexical', 1), ('semantics', 1), ('first', 1), ('volume', 1), ('provide', 1), ('model', 1), ('creation', 1), ('various', 1), ('kind', 1), ('computerized', 1), ('lexicon', 1)]
[('describes', 1), ('strategy', 1), ('use', 1), ('locate', 1), ('information', 1), ('begun', 1), ('change', 1), ('result', 1), ('computer', 1), ('telecommunication', 1), ('technology', 1)]
[('based', 1), ('award', 1), ('winning', 1), ('thesis', 1), ('dr', 1), ('shapiro', 1), ('present', 1), ('new', 1), ('computer', 1), ('vision', 1), ('framework', 1), ('interpreting', 1), ('time', 1), ('varying', 1), ('imagery', 1)]
[('describes', 1), ('new', 1), ('theory', 1), ('performance', 1), ('modelling', 1), ('applies', 1), ('communication', 1), ('system', 1)]
[('collection', 1), ('protocol', 1), ('distributed', 1), ('parallel', 1), ('computing', 1), ('application', 1)]
[('collection', 1), ('essay', 1), ('dealing', 1), ('future', 1), ('computer', 1), ('science', 1), ('research', 1), ('subject', 1)]
[('summer', 1), ('school', 1), ('lecture', 1), ('course', 1), ('modern', 1), ('logic', 1), ('computation', 1), ('presented', 1)]
[('first', 1), ('systematic', 1), ('account', 1), ('axiomatic', 1), ('categorical', 1), ('domain', 1), ('theory', 1), ('functional', 1), ('programming', 1)]
[('semantics', 2), ('connects', 1), ('database', 1), ('natural', 1), ('language', 1), ('link', 1), ('common', 1), ('view', 1), ('time', 1)]
[('recent', 1), ('research', 1), ('physical', 1), ('technology', 1), ('large', 1), ('scale', 1), ('integration', 1), ('vlsi', 1)]
[('survey', 1), ('basic', 1), ('technique', 1), ('approximating', 1), ('combinatorial', 1), ('problem', 1), ('using', 1), ('parallel', 1), ('algorithm', 1)]
[('book', 1), ('digital', 1), ('electronics', 1), ('text', 1), ('focused', 1), ('design', 1), ('build', 1), ('operate', 1), ('adapt', 1), ('data', 1), ('acquisition', 1), ('system', 1)]
[('process', 2), ('algebra', 2), ('book', 1), ('give', 1), ('application', 1), ('theory', 1), ('comunicating', 1), ('ac', 1)]
[('book', 1), ('value', 1), ('involved', 1), ('database', 1), ('research', 1)]
[('logic', 1), ('methodology', 1), ('design', 1), ('examined', 1), ('book', 1), ('perspective', 1), ('computer', 1), ('science', 1)]
[('author', 1), ('present', 1), ('theory', 1), ('whereby', 1), ('net', 1), ('term', 1), ('formula', 1), ('represent', 1), ('concurrent', 1), ('process', 1), ('three', 1), ('level', 1), ('abstraction', 1)]
[('research', 2), ('book', 1), ('contains', 1), ('collection', 1), ('article', 1), ('belief', 1), ('revision', 1), ('right', 1), ('date', 1), ('introductory', 1), ('chapter', 1), ('present', 1), ('survey', 1), ('current', 1), ('area', 1), ('fundamental', 1), ('theory', 1)]
[('complete', 1), ('account', 1), ('predicate', 1), ('transformation', 1), ('calculus', 1), ('semantics', 1), ('sequential', 1), ('program', 1)]
[('semantics', 2), ('action', 1), ('comprehensive', 1), ('introduction', 1), ('programming', 1), ('language', 1), ('use', 1), ('graduate', 1), ('computer', 1), ('science', 1), ('mathematics', 1)]
[('manual', 1), ('description', 1), ('muse', 1), ('method', 1), ('essential', 1), ('reading', 1), ('system', 1), ('developer', 1), ('either', 1), ('hci', 1), ('software', 1), ('engineering', 1), ('community', 1)]
[('first', 1), ('really', 1), ('thorough', 1), ('book', 1), ('discus', 1), ('central', 1), ('notion', 1), ('graph', 1), ('network', 1), ('theory', 1), ('emphasizing', 1), ('algorithmic', 1), ('aspect', 1)]
[('collection', 1), ('lecture', 1), ('various', 1), ('aspect', 1), ('game', 1), ('theory', 1), ('relevant', 1), ('computer', 1), ('scientist', 1)]
[('book', 1), ('address', 1), ('research', 1), ('issue', 1), ('regarding', 1), ('multibiometrics', 1), ('human', 1), ('identification', 1), ('examining', 1), ('advantage', 1), ('evaluation', 1)]
[('introduces', 1), ('powerful', 1), ('set', 1), ('mathematical', 1), ('tool', 1), ('used', 1), ('analyze', 1), ('optimize', 1), ('performance', 1), ('engineering', 1), ('system', 1)]
[('demonstrates', 1), ('signal', 1), ('processing', 1), ('technique', 1), ('used', 1), ('model', 1), ('user', 1), ('dynamic', 1), ('optimize', 1), ('design', 1), ('medium', 1), ('sharing', 1), ('network', 1), ('system', 1)]
[('volume', 1), ('contains', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('logical', 1), ('framework', 1)]
[('annual', 1), ('meeting', 1), ('uk', 1), ('hci', 1), ('group', 1), ('essential', 1), ('purchase', 1), ('researcher', 1), ('designer', 1), ('manufacturer', 1)]
[('book', 1), ('provides', 1), ('business', 1), ('technological', 1), ('background', 1), ('context', 1), ('direction', 1), ('mobile', 1), ('commerce', 1), ('professional', 1)]
[('book', 1), ('guide', 1), ('architecting', 1), ('software', 1), ('comprised', 1), ('distributed', 1), ('component', 1)]
[('research', 1), ('contained', 1), ('book', 1), ('represents', 1), ('work', 1), ('specification', 1), ('verification', 1), ('real', 1), ('time', 1), ('system', 1), ('using', 1), ('csp', 1)]
[('volume', 1), ('contains', 1), ('refereed', 1), ('invited', 1), ('paper', 1), ('presented', 1), ('expert', 1), ('system', 1)]
[('unified', 1), ('self', 1), ('contained', 1), ('introduction', 1), ('term', 1), ('rewriting', 1), ('suited', 1), ('student', 1), ('professional', 1)]
[('book', 1), ('provides', 1), ('holistic', 1), ('view', 1), ('relevant', 1), ('concept', 1), ('used', 1), ('analyse', 1), ('random', 1), ('wireless', 1), ('network', 1)]
[('explores', 1), ('link', 1), ('discrepancy', 1), ('theory', 1), ('randomized', 1), ('algorithm', 1)]
[('methodology', 2), ('provides', 1), ('detailed', 1), ('digitizing', 1), ('project', 1), ('knowledge', 1), ('bridging', 1), ('gap', 1), ('waterfall', 1), ('agile', 1)]
[('written', 1), ('using', 1), ('clear', 1), ('accessible', 1), ('language', 1), ('useful', 1), ('guide', 1), ('discus', 1), ('fundamental', 1), ('concept', 1), ('practice', 1), ('multi', 1), ('resolution', 1), ('image', 1), ('fusion', 1)]
[('data', 2), ('provides', 1), ('comprehensive', 1), ('textbook', 1), ('covering', 1), ('theory', 1), ('practical', 1), ('example', 1), ('course', 1), ('mining', 1), ('warehousing', 1)]
[('focus', 1), ('interplay', 1), ('algorithm', 1), ('design', 1), ('underlying', 1), ('computational', 1), ('model', 1)]
[('discover', 1), ('latest', 1), ('research', 1), ('result', 1), ('uncoded', 1), ('coded', 1), ('caching', 1), ('technique', 1), ('future', 1), ('wireless', 1), ('network', 1), ('design', 1)]
[('understand', 1), ('key', 1), ('information', 1), ('theoretic', 1), ('principle', 1), ('underpin', 1), ('design', 1), ('next', 1), ('generation', 1), ('cellular', 1), ('system', 1), ('insightful', 1), ('resource', 1)]
[('panorama', 1), ('new', 1), ('idea', 1), ('mathematics', 1), ('driving', 1), ('innovation', 1), ('computing', 1), ('communication', 1)]
[('quantum', 2), ('age', 1), ('cut', 1), ('hype', 1), ('demystify', 1), ('technology', 1), ('development', 1), ('path', 1), ('policy', 1), ('issue', 1), ('raise', 1)]
[('review', 1), ('recent', 1), ('computational', 1), ('deep', 1), ('learning', 1), ('approach', 1), ('understanding', 1), ('news', 1), ('nonfiction', 1), ('story', 1)]
[('introduces', 1), ('fundamental', 1), ('theory', 1), ('basic', 1), ('advanced', 1), ('algorithm', 1), ('system', 1), ('design', 1), ('issue', 1), ('essential', 1), ('researcher', 1), ('developer', 1)]
[('first', 1), ('rigorous', 1), ('systematic', 1), ('treatment', 1), ('choreography', 1), ('formal', 1), ('coordination', 1), ('plan', 1), ('concurrent', 1), ('distributed', 1), ('system', 1)]
[('quantum', 2), ('first', 1), ('book', 1), ('introducing', 1), ('computer', 1), ('aided', 1), ('verification', 1), ('technique', 1), ('system', 1), ('computing', 1), ('communication', 1), ('hardware', 1)]
[('overview', 1), ('interdisciplinary', 1), ('research', 1), ('partnership', 1), ('applying', 1), ('ai', 1), ('ie', 1), ('societal', 1), ('operational', 1), ('problem', 1), ('healthcare', 1), ('setting', 1)]
[('book', 1), ('cover', 1), ('algorithmic', 1), ('problem', 1), ('big', 1), ('data', 1), ('application', 1), ('presenting', 1), ('solution', 1), ('hierarchical', 1), ('memory', 1), ('system', 1), ('along', 1), ('pseudocode', 1)]
[('diverse', 1), ('selection', 1), ('data', 1), ('science', 1), ('topic', 1), ('explored', 1), ('mathematical', 1), ('lens', 1)]
[('discover', 1), ('date', 1), ('technique', 1), ('algorithm', 1), ('concise', 1), ('intuitive', 1), ('text', 1), ('extensive', 1), ('solution', 1), ('challenging', 1), ('learning', 1), ('problem', 1)]
[('language', 2), ('introduces', 1), ('core', 1), ('topic', 1), ('variation', 1), ('computational', 1), ('method', 1), ('applied', 1), ('similar', 1), ('variety', 1), ('dialect', 1)]
[('cutting', 1), ('edge', 1), ('model', 1), ('proactive', 1), ('cybersecurity', 1), ('applying', 1), ('ai', 1), ('learning', 1), ('network', 1), ('analysis', 1), ('information', 1), ('mined', 1), ('hacker', 1), ('community', 1)]
[('comprehensive', 1), ('treatment', 1), ('age', 1), ('information', 1), ('cutting', 1), ('edge', 1), ('text', 1), ('includes', 1), ('detailed', 1), ('exposition', 1), ('real', 1), ('world', 1), ('application', 1)]
[('rigorous', 1), ('yet', 1), ('accessible', 1), ('treatment', 1), ('fundamental', 1), ('theory', 1), ('algorithm', 1), ('network', 1), ('tomography', 1)]
[('sie', 3), ('software', 2), ('excel', 2), ('wollen', 1), ('projekte', 1), ('effizienter', 1), ('umsetzen', 1), ('aber', 1), ('nicht', 1), ('spezielle', 1), ('investieren', 1), ('diesis', 1), ('buch', 1), ('bietet', 1), ('anleitungen', 1), ('und', 1), ('tipps', 1), ('für', 1), ('die', 1), ('wohl', 1), ('meisten', 1), ('verbreitete', 1), ('projektmanagement', 1), ('microsoft', 1), ('erfahren', 1), ('wie', 1), ('beim', 1)]
[('language', 3), ('python', 2), ('programming', 2), ('introduce', 1), ('child', 1), ('popular', 1), ('relatable', 1), ('example', 1), ('fun', 1), ('project', 1), ('surpassed', 1), ('java', 1), ('commonly', 1), ('used', 1), ('rise', 1), ('popularity', 1), ('complete', 1), ('guide', 1)]
[('apple', 3), ('watch', 3), ('looking', 2), ('stop', 1), ('phone', 1), ('start', 1), ('time', 1), ('telling', 1), ('device', 1), ('wrist', 1), ('sized', 1), ('computer', 1), ('dummy', 1), ('trusted', 1), ('guide', 1), ('new', 1), ('upgrading', 1), ('user', 1), ('learn', 1)]
[('blogging', 3), ('blog', 2), ('bestselling', 1), ('book', 1), ('updated', 1), ('new', 1), ('edition', 1), ('ready', 1), ('make', 1), ('mark', 1), ('online', 1), ('world', 1), ('start', 1), ('dummy', 1), ('provides', 1), ('information', 1), ('basic', 1), ('anatomy', 1), ('good', 1), ('tool', 1), ('required', 1)]
[('cryptology', 2), ('symmetric', 1), ('main', 1), ('branch', 1), ('application', 1), ('essential', 1), ('vital', 1), ('information', 1), ('age', 1), ('due', 1), ('efficiency', 1), ('construction', 1), ('scope', 1), ('book', 1), ('volume', 1), ('fold', 1), ('first', 1), ('present', 1)]
[('optimized', 2), ('predictive', 2), ('model', 2), ('using', 2), ('machine', 2), ('learning', 2), ('health', 1), ('care', 1), ('book', 1), ('comprehensive', 1), ('guide', 1), ('developing', 1), ('implementing', 1), ('healthcare', 1), ('required', 1), ('resource', 1), ('researcher', 1)]
[('aerial', 2), ('sensing', 2), ('imaging', 2), ('advance', 1), ('groundbreaking', 1), ('book', 1), ('comprehensive', 1), ('guide', 1), ('technology', 1), ('found', 1), ('complex', 1), ('field', 1), ('real', 1), ('world', 1), ('challenge', 1), ('stem', 1), ('growing', 1), ('significance', 1), ('demand', 1)]
[('artificial', 2), ('intelligence', 2), ('ai', 2), ('winning', 1), ('strategy', 1), ('investor', 1), ('looking', 1), ('boost', 1), ('gain', 1), ('hottest', 1), ('investment', 1), ('trend', 1), ('wall', 1), ('street', 1), ('investing', 1), ('dummy', 1), ('give', 1), ('know', 1), ('detail', 1), ('benefit', 1)]
[('pen', 2), ('system', 2), ('test', 2), ('testing', 1), ('contractto', 1), ('report', 1), ('protect', 1), ('web', 1), ('application', 1), ('accessible', 1), ('guide', 1), ('penetration', 1), ('known', 1), ('mean', 1), ('assessing', 1), ('security', 1), ('computer', 1), ('simulating', 1), ('cyber', 1), ('attack', 1)]
[('wordpress', 4), ('nonsense', 1), ('guide', 1), ('building', 1), ('site', 1), ('help', 1), ('dummy', 1), ('first', 1), ('blog', 1), ('website', 1), ('set', 1), ('time', 1), ('fully', 1), ('updated', 1), ('latest', 1), ('release', 1), ('book', 1)]
[('security', 2), ('kind', 1), ('discussion', 1), ('integrate', 1), ('cybersecurity', 1), ('every', 1), ('facet', 1), ('organization', 1), ('see', 1), ('cyber', 1), ('career', 1), ('beyond', 1), ('hacking', 1), ('information', 1), ('strategist', 1), ('educator', 1), ('ed', 1), ('adam', 1), ('delivers', 1), ('unique', 1), ('insightful', 1)]
[('excel', 4), ('mr', 2), ('spreadsheet', 2), ('exceptional', 1), ('advice', 1), ('excellent', 1), ('lot', 1), ('learn', 1), ('truly', 1), ('latest', 1), ('addition', 1), ('popular', 1), ('bookshelf', 1), ('series', 1), ('john', 1)]
[('big', 5), ('data', 5), ('analytics', 1), ('come', 1), ('insight', 1), ('profitability', 1), ('business', 1), ('computational', 1), ('power', 1), ('process', 1), ('nearly', 1), ('enough', 1), ('produce', 1), ('meaningful', 1), ('result', 1), ('mining', 1), ('machine', 1), ('learning', 1)]
[('world', 2), ('hacker', 2), ('meet', 1), ('top', 1), ('ethical', 1), ('explore', 1), ('tool', 1), ('trade', 1), ('hacking', 1), ('take', 1), ('inside', 1), ('cybersecurity', 1), ('show', 1), ('go', 1), ('behind', 1), ('scene', 1), ('introduces', 1), ('men', 1), ('woman', 1), ('front', 1), ('line', 1)]
[('und', 4), ('sie', 3), ('wie', 2), ('reto', 1), ('meier', 1), ('entwickler', 1), ('führungskraft', 1), ('bei', 1), ('google', 1), ('verrät', 1), ('ihnen', 1), ('diesem', 1), ('buch', 1), ('seine', 1), ('vielversprechendsten', 1), ('techniken', 1), ('erfolgsrezepte', 1), ('erfahren', 1), ('die', 1), ('neuesten', 1), ('feature', 1), ('von', 1), ('android', 1), ('besten', 1), ('einsetzen', 1), ('damit', 1), ('schnell', 1)]
[('sie', 3), ('buch', 2), ('sich', 2), ('mit', 1), ('diesem', 1), ('können', 1), ('ganz', 1), ('leicht', 1), ('window', 1), ('einarbeiten', 1), ('wenn', 1), ('die', 1), ('wesentlichen', 1), ('grundlagen', 1), ('verstehen', 1), ('wollen', 1), ('ohne', 1), ('durch', 1), ('verwirrendes', 1), ('computerkauderwelsch', 1), ('graben', 1), ('zu', 1), ('müssen', 1), ('suchen', 1), ('nicht', 1), ('weiter', 1), ('diesis', 1), ('nutzt', 1), ('einen', 1)]
[('macbook', 3), ('visual', 1), ('learner', 1), ('guide', 1), ('getting', 1), ('running', 1), ('apple', 1), ('laptop', 1), ('teach', 1), ('visually', 1), ('pro', 1), ('air', 1), ('cover', 1), ('vital', 1), ('information', 1), ('need', 1), ('start', 1), ('working', 1), ('highly', 1), ('illustrated', 1)]
[('software', 3), ('crystal', 1), ('clear', 1), ('practical', 1), ('blueprint', 1), ('disassembly', 1), ('reverse', 1), ('engineering', 1), ('cracking', 1), ('counter', 1), ('measure', 1), ('centered', 1), ('around', 1), ('world', 1), ('disassembling', 1), ('start', 1), ('basic', 1), ('assembly', 1), ('language', 1)]
[('casp', 2), ('ca', 2), ('exam', 2), ('prepare', 1), ('success', 1), ('challenging', 1), ('newly', 1), ('updated', 1), ('second', 1), ('edition', 1), ('comptia', 1), ('advanced', 1), ('security', 1), ('practitioner', 1), ('practice', 1), ('test', 1), ('accomplished', 1), ('cybersecurity', 1), ('expert', 1), ('nadean', 1), ('tanner', 1), ('delivers', 1), ('extensive', 1)]
[('bone', 3), ('ai', 2), ('artificial', 1), ('intelligence', 1), ('disorder', 1), ('author', 1), ('produced', 1), ('invaluable', 1), ('resource', 1), ('connects', 1), ('field', 1), ('treatment', 1), ('providing', 1), ('essential', 1), ('insight', 1), ('current', 1), ('state', 1), ('future', 1), ('condition', 1), ('diagnosis', 1)]
[('data', 3), ('ai', 2), ('transform', 1), ('company', 1), ('framework', 1), ('unlock', 1), ('true', 1), ('power', 1), ('disruptive', 1), ('new', 1), ('tech', 1), ('profit', 1), ('business', 1), ('leverage', 1), ('grow', 1), ('top', 1), ('bottom', 1), ('line', 1), ('accomplished', 1), ('entrepreneur', 1), ('strategist', 1), ('vineet', 1), ('vashishta', 1)]
[('statistiken', 1), ('und', 1), ('aussagen', 1), ('zu', 1), ('wahrscheinlichkeiten', 1), ('begegnen', 1), ('un', 1), ('heute', 1), ('überall', 1), ('die', 1), ('umsatzentwicklung', 1), ('unternehmen', 1), ('hochrechnungen', 1), ('für', 1), ('wahlergebnisse', 1), ('pisa', 1), ('ergebnisse', 1), ('fünfzehnjähriger', 1), ('schüler', 1), ('sind', 1), ('nur', 1), ('drei', 1), ('von', 1), ('zahlreichen', 1), ('beispielen', 1), ('joseph', 1)]
[('mit', 3), ('sie', 2), ('und', 2), ('schritt', 2), ('steigen', 1), ('diesem', 1), ('buch', 1), ('die', 1), ('welt', 1), ('de', 1), ('programmierens', 1), ('ein', 1), ('zwar', 1), ('der', 1), ('beliebten', 1), ('programmiersprache', 1), ('java', 1), ('für', 1), ('werden', 1), ('den', 1), ('grundlagen', 1), ('wie', 1), ('zum', 1), ('beispiel', 1), ('variablen', 1), ('schleifen', 1), ('objektorientierter', 1), ('programmierung', 1)]
[('nan', 1)]
[('die', 3), ('und', 3), ('social', 2), ('medium', 2), ('kunden', 2), ('mit', 1), ('herzen', 1), ('ihrer', 1), ('kein', 1), ('zweifel', 1), ('über', 1), ('soziale', 1), ('medien', 1), ('erreichen', 1), ('sie', 1), ('ihre', 1), ('authentisch', 1), ('persönlich', 1), ('allerdings', 1), ('ist', 1), ('komplexität', 1), ('von', 1), ('marketing', 1), ('hoch', 1), ('gefahr', 1), ('groß', 1), ('zeit', 1), ('geld', 1), ('zu', 1), ('verpulvern', 1)]
[('data', 4), ('science', 3), ('real', 2), ('want', 1), ('jump', 1), ('know', 1), ('start', 1), ('presented', 1), ('something', 1), ('mystical', 1), ('unattainable', 1), ('without', 1), ('powerful', 1), ('software', 1), ('hardware', 1), ('expertise', 1)]
[('illustrated', 2), ('guide', 2), ('cloud', 2), ('intuitive', 1), ('fully', 1), ('amazon', 1), ('web', 1), ('service', 1), ('visually', 1), ('oriented', 1), ('aws', 1), ('help', 1), ('practitioner', 1), ('journey', 1), ('team', 1), ('veteran', 1)]
[('tabellen', 3), ('pivot', 2), ('zu', 2), ('für', 2), ('excel', 2), ('die', 2), ('sie', 2), ('haben', 1), ('völlig', 1), ('unrecht', 1), ('den', 1), ('ruf', 1), ('kompliziert', 1), ('und', 1), ('nur', 1), ('etwas', 1), ('profis', 1), ('sein', 1), ('wenn', 1), ('daten', 1), ('auswerten', 1), ('wollen', 1), ('großen', 1), ('vorliegen', 1), ('sind', 1), ('auch', 1), ('ein', 1), ('unverzichtbares', 1), ('werkzeug', 1)]
[('die', 3), ('bi', 3), ('sie', 2), ('power', 2), ('um', 2), ('möchten', 1), ('datenanalyse', 1), ('angeht', 1), ('noch', 1), ('eine', 1), ('schippe', 1), ('drauflegen', 1), ('dann', 1), ('steigen', 1), ('auf', 1), ('microsoft', 1), ('self', 1), ('service', 1), ('lösung', 1), ('diesis', 1), ('buch', 1), ('zeigt', 1), ('ihnen', 1), ('unzähligen', 1), ('möglichkeiten', 1), ('bietet', 1), ('ihre', 1), ('daten', 1), ('aufzubereiten', 1), ('und', 1)]
[('die', 3), ('der', 2), ('cloud', 2), ('und', 2), ('diesis', 1), ('buch', 1), ('erklärt', 1), ('ihnen', 1), ('grundlagen', 1), ('von', 1), ('azure', 1), ('microsoft', 1), ('technologie', 1), ('beschreibt', 1), ('klar', 1), ('verständlich', 1), ('grundlegenden', 1), ('dienste', 1), ('nach', 1), ('lektüre', 1), ('können', 1), ('sie', 1), ('unterschiedlichen', 1), ('betriebsmodelle', 1), ('infrastructure', 1)]
[('sie', 4), ('und', 3), ('wie', 2), ('andy', 1), ('rathbone', 1), ('zeigt', 1), ('ihnen', 1), ('schnell', 1), ('dennoch', 1), ('verständlich', 1), ('alles', 1), ('wichtige', 1), ('über', 1), ('window', 1), ('dessen', 1), ('update', 1), ('wissen', 1), ('müssen', 1), ('erfahren', 1), ('neu', 1), ('ist', 1), ('die', 1), ('neuen', 1), ('funktionen', 1), ('nutzen', 1), ('altbekannte', 1), ('wiederfinden', 1), ('der', 1), ('autor', 1)]
[('sie', 4), ('daten', 2), ('nelson', 2), ('und', 2), ('haben', 1), ('manchmal', 1), ('den', 1), ('eindruck', 1), ('ertrinken', 1), ('kennen', 1), ('schon', 1), ('die', 1), ('großartigen', 1), ('datenanalysewerkzeuge', 1), ('von', 1), ('excel', 1), ('stephen', 1), ('elizabeth', 1), ('zeigen', 1), ('ihnen', 1), ('wie', 1), ('zu', 1), ('ihren', 1), ('pivottables', 1), ('pivotcharts', 1), ('erstellen', 1), ('welche', 1)]
[('ai', 4), ('researcher', 2), ('discover', 1), ('leader', 1), ('using', 1), ('transform', 1), ('world', 1), ('better', 1), ('good', 1), ('application', 1), ('sustainability', 1), ('humanitarian', 1), ('action', 1), ('health', 1), ('team', 1), ('veteran', 1), ('microsoft', 1), ('delivers', 1), ('insightful', 1)]
[('biological', 2), ('first', 1), ('comprehensive', 1), ('overview', 1), ('preprocessing', 1), ('mining', 1), ('postprocessing', 1), ('data', 1), ('molecular', 1), ('biology', 1), ('undergoing', 1), ('exponential', 1), ('growth', 1), ('volume', 1), ('complexity', 1), ('dataand', 1), ('knowledge', 1), ('discovery', 1), ('offer', 1), ('capacity', 1)]
[('gene', 2), ('regulatory', 2), ('research', 2), ('step', 2), ('introducing', 1), ('handbook', 1), ('network', 1), ('using', 1), ('evolutionary', 1), ('computation', 1), ('application', 1), ('computer', 1), ('scientist', 1), ('computational', 1), ('system', 1), ('biologist', 1), ('book', 1), ('guideline', 1)]
[('technique', 2), ('introduces', 1), ('reader', 1), ('core', 1), ('algorithmic', 1), ('next', 1), ('generation', 1), ('sequencing', 1), ('ng', 1), ('data', 1), ('analysis', 1), ('discus', 1), ('wide', 1), ('range', 1), ('computational', 1), ('application', 1), ('book', 1), ('provides', 1), ('depth', 1), ('survey', 1), ('recent', 1), ('development', 1)]
[('grid', 2), ('bioinformatics', 2), ('single', 1), ('date', 1), ('source', 1), ('issue', 1), ('biology', 1), ('fast', 1), ('emerging', 1), ('important', 1), ('discipline', 1), ('academic', 1), ('research', 1), ('industrial', 1), ('application', 1), ('creating', 1), ('need', 1), ('use', 1), ('computing', 1)]
[('algorithmic', 2), ('technique', 2), ('solving', 2), ('bioinformatics', 2), ('application', 2), ('present', 1), ('problem', 1), ('including', 1), ('shed', 1), ('new', 1), ('light', 1), ('molecular', 1), ('biology', 1), ('book', 1), ('introduces', 1), ('emphasizing', 1), ('novel', 1)]
[('biological', 3), ('network', 3), ('analysis', 3), ('introduction', 2), ('method', 1), ('first', 1), ('book', 1), ('kind', 1), ('provide', 1), ('reader', 1), ('comprehensive', 1), ('structural', 1)]
[('machine', 2), ('learning', 2), ('problem', 2), ('bioinformatics', 2), ('computational', 2), ('introduction', 1), ('method', 1), ('application', 1), ('technique', 1), ('increasingly', 1), ('used', 1), ('address', 1), ('biology', 1), ('novel', 1)]
[('biomolecular', 2), ('alternative', 1), ('technique', 1), ('tool', 1), ('analyzing', 1), ('network', 1), ('recent', 1), ('rapid', 1), ('advance', 1), ('molecular', 1), ('biology', 1), ('high', 1), ('throughput', 1), ('experimental', 1), ('method', 1), ('resulted', 1), ('enormous', 1), ('amount', 1), ('data', 1), ('used', 1), ('study', 1)]
[('biology', 2), ('groundbreaking', 1), ('long', 1), ('ranging', 1), ('research', 1), ('emergent', 1), ('field', 1), ('enables', 1), ('solution', 1), ('complex', 1), ('biological', 1), ('problem', 1), ('computational', 1), ('system', 1), ('emerging', 1), ('discipline', 1), ('evolving', 1), ('quickly', 1), ('due', 1), ('recent', 1), ('advance', 1), ('genome', 1)]
[('safety', 2), ('accident', 1), ('statistic', 1), ('department', 1), ('sends', 1), ('monthly', 1), ('glance', 1), ('ask', 1), ('whether', 1), ('professional', 1), ('employed', 1), ('job', 1), ('right', 1), ('aimed', 1), ('primarily', 1), ('top', 1), ('middle', 1)]
[('und', 3), ('video', 2), ('zu', 2), ('auf', 2), ('tiktok', 2), ('sei', 1), ('kreativ', 1), ('nutze', 1), ('dein', 1), ('smartphone', 1), ('um', 1), ('erstklassige', 1), ('drehen', 1), ('mit', 1), ('gleichgesinnten', 1), ('teilen', 1), ('lerne', 1), ('die', 1), ('app', 1), ('kennen', 1), ('tritt', 1), ('der', 1), ('community', 1), ('bei', 1), ('nimm', 1), ('kurze', 1), ('bearbeite', 1), ('diese', 1), ('optimal', 1), ('nach', 1), ('diesem', 1), ('buch', 1)]
[('blockchain', 2), ('deep', 2), ('learning', 2), ('smart', 2), ('healthcare', 1), ('book', 1), ('discus', 1), ('popular', 1), ('use', 1), ('case', 1), ('application', 1), ('technology', 1), ('building', 1)]
[('python', 2), ('ist', 1), ('eine', 1), ('der', 1), ('beliebtesten', 1), ('und', 1), ('vielseitigsten', 1), ('programmiersprachen', 1), ('überhaupt', 1), ('für', 1), ('viele', 1), ('entwickler', 1), ('führt', 1), ('deshalb', 1), ('kein', 1), ('weg', 1), ('vorbei', 1), ('schöpfen', 1), ('sie', 1), ('mit', 1), ('diesem', 1), ('buch', 1), ('au', 1), ('dem', 1), ('reichen', 1), ('erfahrungsschatz', 1), ('zweier', 1), ('langjähriger', 1), ('softwareentwickler', 1)]
[('sie', 3), ('de', 2), ('nutzen', 2), ('wollen', 1), ('mit', 1), ('ihren', 1), ('enkeln', 1), ('per', 1), ('videochat', 1), ('kontakt', 1), ('bleiben', 1), ('oder', 1), ('auch', 1), ('die', 1), ('möglichkeit', 1), ('onlineversands', 1), ('dann', 1), ('zeigt', 1), ('ihnen', 1), ('diesis', 1), ('buch', 1), ('wie', 1), ('den', 1), ('weiten', 1), ('internet', 1), ('navigieren', 1), ('und', 1), ('welche', 1), ('dienste', 1), ('können', 1), ('von', 1), ('der', 1), ('suche', 1), ('nach', 1)]
[('sich', 2), ('ihnen', 2), ('die', 2), ('ganz', 1), ('unverhofft', 1), ('müssen', 1), ('sie', 1), ('mit', 1), ('labview', 1), ('beschäftigen', 1), ('diesis', 1), ('buch', 1), ('hilft', 1), ('dabei', 1), ('diesem', 1), ('grafischen', 1), ('programmiersystem', 1), ('zurechtzufinden', 1), ('autorinnen', 1), ('erklären', 1), ('grundlagen', 1), ('von', 1), ('grafischer', 1), ('programmierung', 1), ('und', 1), ('erläutern', 1)]
[('actuarial', 2), ('programming', 1), ('science', 1), ('professional', 1), ('resource', 1), ('providing', 1), ('introduction', 1), ('coding', 1), ('financial', 1), ('mathematics', 1), ('application', 1), ('real', 1), ('life', 1), ('example', 1)]
[('phishing', 4), ('social', 2), ('engineering', 2), ('keep', 1), ('valuable', 1), ('data', 1), ('safe', 1), ('even', 1), ('sophisticated', 1), ('attack', 1), ('fighting', 1), ('everything', 1), ('fight', 1), ('serf', 1), ('ideal', 1), ('defense', 1), ('reader', 1)]
[('system', 2), ('comprehensive', 1), ('coverage', 1), ('many', 1), ('different', 1), ('aspect', 1), ('biology', 1), ('resulting', 1), ('excellent', 1), ('overview', 1), ('experimental', 1), ('computational', 1), ('approach', 1), ('currently', 1), ('use', 1), ('study', 1), ('biological', 1), ('chapter', 1), ('represents', 1), ('valuable', 1)]
[('machine', 3), ('learning', 3), ('theory', 2), ('application', 2), ('enables', 1), ('reader', 1), ('understand', 1), ('mathematical', 1), ('concept', 1), ('behind', 1), ('data', 1), ('engineering', 1), ('algorithm', 1), ('apply', 1), ('using', 1), ('open', 1), ('source', 1), ('python', 1), ('library', 1), ('delf', 1)]
[('machine', 4), ('learning', 4), ('application', 3), ('practical', 1), ('resource', 1), ('importance', 1), ('deep', 1), ('various', 1), ('technology', 1), ('real', 1), ('world', 1), ('situation', 1), ('discus', 1), ('methodological', 1), ('advancement', 1)]
[('world', 2), ('metaverse', 2), ('making', 2), ('second', 2), ('life', 2), ('close', 1), ('account', 1), ('first', 1), ('embedded', 1), ('reporter', 1), ('matter', 1), ('snow', 1), ('crash', 1), ('virtual', 1), ('worth', 1), ('fighting', 1), ('celebrated', 1), ('author', 1), ('game', 1), ('design', 1)]
[('der', 2), ('diesis', 1), ('buch', 1), ('bietet', 1), ('eine', 1), ('kompakte', 1), ('verständliche', 1), ('einführung', 1), ('da', 1), ('thema', 1), ('rechnerarchitektur', 1), ('alle', 1), ('heute', 1), ('essenziellen', 1), ('themengebiete', 1), ('werden', 1), ('behandelt', 1), ('schwerpunkt', 1), ('de', 1), ('buches', 1), ('liegt', 1), ('auf', 1), ('systemtechnischen', 1), ('funktionalen', 1), ('beschreibung', 1), ('von', 1)]
[('sie', 3), ('und', 2), ('sich', 2), ('office', 2), ('von', 2), ('die', 2), ('können', 1), ('viel', 1), ('zeit', 1), ('nerven', 1), ('sparen', 1), ('wenn', 1), ('mit', 1), ('immer', 1), ('besser', 1), ('auskennen', 1), ('grund', 1), ('genug', 1), ('um', 1), ('peter', 1), ('weverka', 1), ('programme', 1), ('funktionen', 1), ('einführen', 1), ('zu', 1), ('lassen', 1), ('finden', 1), ('diesem', 1), ('umfassenden', 1), ('werk', 1)]
[('der', 2), ('bei', 2), ('sie', 2), ('egal', 1), ('ob', 1), ('beim', 1), ('unterrichten', 1), ('uni', 1), ('weiterbildungen', 1), ('job', 1), ('oder', 1), ('arbeit', 1), ('von', 1), ('trainern', 1), ('ohne', 1), ('lerninhalte', 1), ('internet', 1), ('ist', 1), ('dy', 1), ('kaum', 1), ('mehr', 1), ('vorstellbar', 1), ('erfahren', 1), ('wie', 1), ('ihr', 1), ('online', 1), ('angebot', 1), ('richtig', 1), ('erstellen', 1), ('daniela', 1), ('weber', 1), ('erklärt', 1), ('ihnen', 1)]
[('daten', 2), ('und', 2), ('datenbanken', 2), ('sie', 2), ('sind', 1), ('quasi', 1), ('überall', 1), ('mit', 1), ('der', 1), ('standardabfragesprache', 1), ('sql', 1), ('können', 1), ('relationalen', 1), ('einfach', 1), ('strukturiert', 1), ('zielsicher', 1), ('abgefragt', 1), ('werden', 1), ('erfahren', 1), ('diesem', 1), ('buch', 1), ('da', 1), ('kein', 1), ('vorwissen', 1), ('voraussetzt', 1), ('wie', 1)]
[('sie', 3), ('office', 3), ('und', 2), ('sich', 2), ('mit', 2), ('können', 1), ('zeit', 1), ('nerven', 1), ('sparen', 1), ('wenn', 1), ('richtig', 1), ('gut', 1), ('auskennen', 1), ('grund', 1), ('genug', 1), ('von', 1), ('diesem', 1), ('buch', 1), ('einführen', 1), ('zu', 1), ('lassen', 1), ('finden', 1), ('übersichtliche', 1), ('anleitungen', 1), ('für', 1), ('die', 1), ('täglichen', 1), ('aufgaben', 1), ('vielfältige', 1)]
[('blockchain', 3), ('machine', 2), ('learning', 2), ('convergence', 2), ('iot', 2), ('approach', 1), ('unique', 1), ('aspect', 1), ('book', 1), ('focus', 1), ('single', 1), ('publication', 1), ('technology', 1), ('internet', 1)]
[('sie', 2), ('von', 2), ('den', 2), ('chatgpt', 2), ('wie', 2), ('der', 2), ('profitieren', 1), ('auch', 1), ('wunderbaren', 1), ('fähigkeiten', 1), ('pam', 1), ('baker', 1), ('erklärt', 1), ('ihnen', 1), ('funktioniert', 1), ('und', 1), ('chatbot', 1), ('gewinnbringend', 1), ('einsetzen', 1), ('sei', 1), ('e', 1), ('bei', 1), ('texterstellung', 1), ('für', 1), ('werbezwecke', 1), ('kundenbetreuung', 1), ('auf', 1), ('einer', 1)]
[('und', 3), ('sie', 2), ('sich', 2), ('studieren', 1), ('müssen', 1), ('mit', 1), ('informatik', 1), ('auseinandersetzen', 1), ('dann', 1), ('dürfen', 1), ('freuen', 1), ('diesis', 1), ('buch', 1), ('verschafft', 1), ('ihnen', 1), ('einfach', 1), ('schnell', 1), ('unterhaltsam', 1), ('wie', 1), ('möglich', 1), ('einen', 1), ('umfassenden', 1), ('überblick', 1), ('über', 1), ('die', 1), ('praktische', 1), ('theoretische', 1)]
[('impact', 2), ('artificial', 2), ('intelligence', 2), ('ai', 2), ('healthcare', 2), ('explores', 1), ('transformative', 1), ('industry', 1), ('doctor', 1), ('rise', 1), ('provides', 1), ('timely', 1), ('authoritative', 1), ('overview', 1), ('current', 1), ('future', 1), ('potential', 1)]
[('ai', 2), ('solution', 2), ('end', 2), ('embrace', 1), ('emerging', 1), ('trend', 1), ('integrate', 1), ('operation', 1), ('cutting', 1), ('edge', 1), ('enterprise', 1), ('cloud', 1), ('practical', 1), ('guide', 1), ('deploying', 1), ('machine', 1), ('learning', 1), ('chatgpt', 1), ('indispensable', 1), ('resource', 1), ('professional', 1)]
[('capturing', 1), ('recording', 1), ('broadcasting', 1), ('voice', 1), ('often', 1), ('difficult', 1), ('many', 1), ('factor', 1), ('taken', 1), ('account', 1), ('achieving', 1), ('true', 1), ('representation', 1), ('complex', 1), ('might', 1), ('think', 1), ('capture', 1), ('device', 1)]
[('un', 2), ('immer', 2), ('und', 2), ('künstliche', 1), ('intelligenz', 1), ('begegnet', 1), ('mehr', 1), ('täglichen', 1), ('leben', 1), ('egal', 1), ('ob', 1), ('intelligente', 1), ('auto', 1), ('roboter', 1), ('chatbots', 1), ('oder', 1), ('systeme', 1), ('die', 1), ('schach', 1), ('go', 1), ('besiegen', 1), ('ki', 1), ('wird', 1), ('wichtiger', 1), ('ralf', 1), ('otte', 1), ('beschreibt', 1), ('präzise', 1), ('dennoch', 1), ('einfach', 1), ('diejenigen', 1)]
[('sie', 4), ('wie', 4), ('ihnen', 2), ('schritt', 2), ('möchten', 1), ('testen', 1), ('sicher', 1), ('ihr', 1), ('system', 1), ('ist', 1), ('dann', 1), ('hilft', 1), ('diesis', 1), ('buch', 1), ('e', 1), ('zeigt', 1), ('für', 1), ('ihre', 1), ('systeme', 1), ('mit', 1), ('kali', 1), ('linux', 1), ('auf', 1), ('herz', 1), ('und', 1), ('nieren', 1), ('prüfen', 1), ('lernen', 1), ('passwörter', 1), ('geknackt', 1), ('werden', 1), ('schwachstellen', 1)]
[('security', 2), ('exam', 2), ('prepare', 1), ('certification', 1), ('confidently', 1), ('quickly', 1), ('comptia', 1), ('practice', 1), ('test', 1), ('sy', 1), ('third', 1), ('edition', 1), ('prepares', 1), ('newly', 1), ('updated', 1)]
[('cluster', 1), ('interconnected', 1), ('html', 1), ('page', 1), ('online', 1), ('service', 1), ('platform', 1), ('website', 1), ('constantly', 1), ('changing', 1), ('form', 1), ('function', 1), ('transformation', 1), ('led', 1), ('hand', 1), ('human', 1), ('social', 1), ('science', 1), ('renewing', 1), ('inventing', 1), ('analytical', 1)]
[('create', 3), ('tinkercad', 2), ('dream', 1), ('using', 1), ('free', 1), ('tool', 1), ('give', 1), ('everyone', 1), ('power', 1), ('model', 1), ('regardless', 1), ('level', 1), ('experience', 1), ('help', 1)]
[('quantum', 2), ('computer', 2), ('revolutionize', 1), ('way', 1), ('telecommunication', 1), ('network', 1), ('function', 1), ('computing', 1), ('hold', 1), ('promise', 1), ('solving', 1), ('problem', 1), ('intractable', 1), ('conventional', 1), ('implementing', 1)]
[('ultimately', 1), ('remarkable', 1), ('book', 1), ('practical', 1), ('testimonial', 1), ('comprehensive', 1), ('bibliography', 1), ('rolled', 1), ('single', 1), ('bright', 1), ('sword', 1), ('cut', 1), ('across', 1), ('various', 1), ('murky', 1), ('green', 1), ('topic', 1), ('mistake', 1), ('lesson', 1), ('learned', 1)]
[('und', 3), ('excel', 3), ('sie', 2), ('die', 2), ('bearbeiten', 1), ('verwalten', 1), ('umfangreiche', 1), ('tabellen', 1), ('computer', 1), ('dann', 1), ('kommen', 1), ('um', 1), ('nicht', 1), ('herum', 1), ('diesem', 1), ('kompakten', 1), ('buch', 1), ('lernen', 1), ('neulinge', 1), ('umsteiger', 1), ('aktuellste', 1), ('version', 1), ('von', 1), ('wesentlichen', 1), ('funktionen', 1), ('aller', 1), ('kürze', 1)]
[('du', 3), ('der', 2), ('machen', 2), ('sollst', 1), ('ein', 1), ('referat', 1), ('schule', 1), ('halten', 1), ('und', 1), ('willst', 1), ('e', 1), ('richtig', 1), ('gut', 1), ('hast', 1), ('schon', 1), ('mal', 1), ('powerpoint', 1), ('hineingeschaut', 1), ('weißt', 1), ('aber', 1), ('nicht', 1), ('genau', 1), ('dort', 1), ('alles', 1), ('kann', 1), ('möchtest', 1), ('gern', 1), ('verstehen', 1), ('wie', 1), ('computer', 1), ('arbeitet', 1), ('dann', 1)]
[('book', 1), ('first', 1), ('volume', 1), ('explores', 1), ('syntactical', 1), ('construct', 1), ('common', 1), ('programming', 1), ('language', 1), ('shed', 1), ('mathematical', 1), ('light', 1), ('semantics', 1), ('providing', 1), ('accurate', 1), ('presentation', 1), ('material', 1), ('aspect', 1)]
[('oracle', 2), ('database', 2), ('programming', 2), ('visual', 2), ('basic', 2), ('net', 1), ('discover', 1), ('detailed', 1), ('treatment', 1), ('practical', 1), ('consideration', 1), ('application', 1)]
[('book', 1), ('composed', 1), ('volume', 1), ('explores', 1), ('syntactical', 1), ('construct', 1), ('common', 1), ('programming', 1), ('language', 1), ('shed', 1), ('mathematical', 1), ('light', 1), ('semantics', 1), ('providing', 1), ('accurate', 1), ('presentation', 1), ('material', 1), ('aspect', 1), ('interfere', 1)]
[('image', 4), ('graph', 2), ('data', 2), ('high', 2), ('spectral', 1), ('processing', 1), ('study', 1), ('imaging', 1), ('frequency', 1), ('perspective', 1), ('modern', 1), ('sensor', 1), ('capture', 1), ('wide', 1), ('range', 1), ('visual', 1), ('including', 1), ('spatial', 1), ('resolution', 1), ('bit', 1), ('depth', 1), ('video', 1), ('hyperspectral', 1)]
[('security', 2), ('year', 1), ('balance', 1), ('sought', 1), ('requirement', 1), ('respect', 1), ('privacy', 1), ('individual', 1), ('collective', 1), ('freedom', 1), ('progress', 1), ('st', 1), ('century', 1), ('taking', 1), ('precedence', 1), ('within', 1)]
[('data', 2), ('term', 1), ('hyperdocumentation', 1), ('hyperbole', 1), ('seems', 1), ('characterize', 1), ('paradox', 1), ('leading', 1), ('discussion', 1), ('topic', 1), ('bring', 1), ('diverse', 1), ('idea', 1), ('fantasy', 1), ('big', 1), ('cloud', 1), ('computing', 1), ('artificial', 1), ('intelligence', 1), ('algorithmic', 1)]
[('tactile', 2), ('internet', 1), ('change', 1), ('landscape', 1), ('communication', 1), ('introducing', 1), ('new', 1), ('paradigm', 1), ('enables', 1), ('remote', 1), ('delivery', 1), ('haptic', 1), ('data', 1), ('book', 1), ('answer', 1), ('many', 1), ('question', 1), ('surrounding', 1)]
[('sie', 3), ('android', 2), ('haben', 1), ('ein', 1), ('smartphone', 1), ('und', 1), ('möchten', 1), ('wissen', 1), ('damit', 1), ('alles', 1), ('möglich', 1), ('ist', 1), ('diesis', 1), ('buch', 1), ('bietet', 1), ('ihnen', 1), ('einen', 1), ('crash', 1), ('kurs', 1), ('der', 1), ('nutzung', 1), ('von', 1), ('ganz', 1), ('egal', 1), ('welches', 1), ('gerät', 1), ('besitzen', 1), ('dabei', 1), ('lernen', 1), ('mehr', 1), ('al', 1), ('nur', 1), ('die', 1), ('grundlagen', 1), ('de', 1)]
[('certified', 2), ('cybersecurity', 2), ('prepare', 1), ('isc', 1), ('exam', 1), ('new', 1), ('career', 1), ('effective', 1), ('study', 1), ('guide', 1), ('complete', 1), ('full', 1), ('color', 1), ('illustration', 1)]
[('iot', 2), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('current', 1), ('state', 1), ('focusing', 1), ('data', 1), ('processing', 1), ('infrastructure', 1), ('technique', 1), ('written', 1), ('expert', 1), ('field', 1), ('book', 1), ('address', 1), ('technology', 1), ('stack', 1)]
[('dummy', 2), ('ipad', 2), ('tablet', 1), ('time', 1), ('acquainted', 1), ('latest', 1), ('ipados', 1), ('device', 1), ('easy', 1), ('way', 1), ('creek', 1), ('without', 1), ('ipaddle', 1), ('covered', 1), ('pro', 1)]
[('testing', 2), ('system', 2), ('hand', 1), ('guide', 1), ('technique', 1), ('deliver', 1), ('reliable', 1), ('software', 1), ('even', 1), ('simple', 1), ('quickly', 1), ('turn', 1), ('potentially', 1), ('infinite', 1), ('task', 1), ('faced', 1), ('tight', 1), ('cost', 1), ('schedule', 1), ('tester', 1), ('need', 1)]
[('window', 2), ('new', 1), ('dummy', 1), ('pocket', 1), ('edition', 1), ('provides', 1), ('brief', 1), ('inexpensive', 1), ('focused', 1), ('guide', 1), ('user', 1), ('upgrading', 1), ('chapter', 1), ('include', 1)]
[('discus', 3), ('protocol', 3), ('stack', 2), ('purpose', 1), ('designing', 1), ('book', 1), ('analyze', 1), ('security', 1), ('available', 1), ('communication', 1), ('objective', 1), ('across', 1), ('layer', 1), ('tcp', 1), ('ip', 1), ('independent', 1)]
[('sie', 2), ('informatik', 2), ('und', 2), ('möchten', 1), ('studieren', 1), ('sich', 1), ('vorbereiten', 1), ('um', 1), ('peinliche', 1), ('wissenslücken', 1), ('zu', 1), ('vermeiden', 1), ('dann', 1), ('ist', 1), ('diesis', 1), ('buch', 1), ('genau', 1), ('da', 1), ('richtige', 1), ('für', 1), ('e', 1), ('verschafft', 1), ('ihnen', 1), ('einen', 1), ('verständlichen', 1), ('strukturierten', 1), ('einblick', 1), ('die', 1), ('grundlagen', 1), ('der', 1)]
[('window', 3), ('ist', 2), ('und', 2), ('sie', 2), ('ihnen', 2), ('da', 1), ('microsoft', 1), ('betriebssystem', 1), ('schneller', 1), ('sicherer', 1), ('flexibler', 1), ('al', 1), ('wollen', 1), ('den', 1), ('umstieg', 1), ('wagen', 1), ('diesis', 1), ('buch', 1), ('dabei', 1), ('eine', 1), ('wichtige', 1), ('hilfe', 1), ('der', 1), ('experte', 1), ('bestsellerautor', 1), ('andy', 1), ('rathbone', 1), ('zeigt', 1), ('wie', 1)]
[('und', 2), ('der', 2), ('für', 1), ('diesis', 1), ('buch', 1), ('müssen', 1), ('sie', 1), ('kein', 1), ('vorwissen', 1), ('mitbringen', 1), ('trotzdem', 1), ('werden', 1), ('auch', 1), ('fortgeschrittene', 1), ('themen', 1), ('wie', 1), ('zeiger', 1), ('verkettete', 1), ('listen', 1), ('behandelt', 1), ('da', 1), ('alles', 1), ('aktuellen', 1), ('standard', 1), ('besondere', 1), ('clou', 1), ('ist', 1), ('die', 1), ('verwendung', 1)]
[('word', 3), ('er', 2), ('sie', 1), ('nutzen', 1), ('microsoft', 1), ('fast', 1), ('täglich', 1), ('möchten', 1), ('nun', 1), ('aber', 1), ('produktiver', 1), ('und', 1), ('effizienter', 1), ('arbeiten', 1), ('dan', 1), ('gookin', 1), ('ist', 1), ('ein', 1), ('kenner', 1), ('seit', 1), ('über', 1), ('jahren', 1), ('sein', 1), ('erstes', 1), ('buch', 1), ('schrieb', 1), ('hier', 1), ('zeigt', 1), ('dem', 1), ('fortgeschrittenen', 1), ('nutzer', 1), ('den', 1), ('umgang', 1)]
[('sie', 4), ('tablet', 2), ('ihr', 2), ('nennen', 2), ('egal', 1), ('welches', 1), ('android', 1), ('eigen', 1), ('ob', 1), ('von', 1), ('samsung', 1), ('google', 1), ('oder', 1), ('amazon', 1), ('um', 1), ('nur', 1), ('einige', 1), ('hersteller', 1), ('zu', 1), ('diesem', 1), ('buch', 1), ('erfahren', 1), ('wie', 1), ('alles', 1), ('au', 1), ('ihrem', 1), ('gerät', 1), ('herausholen', 1), ('können', 1), ('richten', 1), ('gemäß', 1), ('ihren', 1)]
[('sie', 3), ('und', 2), ('von', 2), ('diesis', 1), ('buch', 1), ('bietet', 1), ('einen', 1), ('einzigartigen', 1), ('learning', 1), ('ansatz', 1), ('werden', 1), ('ihre', 1), ('fähigkeiten', 1), ('erweitern', 1), ('vertiefen', 1), ('indem', 1), ('eine', 1), ('vielzahl', 1), ('beispielprojekten', 1), ('au', 1), ('der', 1), ('praxis', 1), ('nachvollziehen', 1), ('erlernen', 1), ('die', 1), ('grundlagen', 1), ('rstudio', 1)]
[('sie', 3), ('wie', 3), ('scrum', 2), ('ist', 2), ('genau', 2), ('e', 2), ('sind', 1), ('neugierig', 1), ('zur', 1), ('verbesserung', 1), ('ihrer', 1), ('arbeitsabläufe', 1), ('beitragen', 1), ('kann', 1), ('dann', 1), ('diesis', 1), ('buch', 1), ('da', 1), ('richtige', 1), ('für', 1), ('erklärt', 1), ('ihnen', 1), ('und', 1), ('funktioniert', 1), ('lernen', 1), ('die', 1), ('verschiedenen', 1), ('rollen', 1), ('product', 1)]
[('arbeiten', 2), ('sie', 2), ('devops', 2), ('ist', 2), ('da', 2), ('hand', 2), ('auch', 1), ('nach', 1), ('prinzipien', 1), ('sollen', 1), ('oder', 1), ('wollen', 1), ('umstellen', 1), ('wichtig', 1), ('worauf', 1), ('kommt', 1), ('e', 1), ('ziel', 1), ('von', 1), ('das', 1), ('softwareentwicklung', 1), ('und', 1), ('auslieferung', 1), ('ermöglicht', 1), ('schnellere', 1), ('release', 1), ('zyklen', 1)]
[('wie', 2), ('iphone', 2), ('auf', 2), ('und', 2), ('wissen', 1), ('sie', 1), ('au', 1), ('dem', 1), ('eine', 1), ('fernbedienung', 1), ('macht', 1), ('oder', 1), ('das', 1), ('ihr', 1), ('nicht', 1), ('nur', 1), ('tippen', 1), ('wischen', 1), ('sondern', 1), ('auch', 1), ('wilde', 1), ('schütteln', 1), ('reagiert', 1), ('neben', 1), ('allen', 1), ('grundfunktionen', 1), ('verrät', 1), ('sebastian', 1), ('schroer', 1), ('ihnen', 1), ('viele', 1), ('tipps', 1), ('trick', 1)]
[('ist', 3), ('zu', 3), ('code', 2), ('clean', 1), ('eine', 1), ('wichtige', 1), ('methode', 1), ('um', 1), ('besserer', 1), ('software', 1), ('kommen', 1), ('beachten', 1), ('sind', 1), ('korrektheit', 1), ('verständlichkeit', 1), ('lesbarkeit', 1), ('und', 1), ('ressourcenverbrauch', 1), ('programmieren', 1), ('aber', 1), ('mehr', 1), ('al', 1), ('ein', 1), ('handwerk', 1), ('klarer', 1), ('auch', 1), ('ausdruck', 1), ('klaren', 1), ('denkens', 1)]
[('die', 2), ('mit', 2), ('sie', 2), ('und', 2), ('programmierung', 1), ('mus', 1), ('nicht', 1), ('schwer', 1), ('sein', 1), ('diesem', 1), ('buch', 1), ('werden', 1), ('schon', 1), ('ab', 1), ('dem', 1), ('ersten', 1), ('kapitel', 1), ('eigene', 1), ('programme', 1), ('schreiben', 1), ('syntax', 1), ('von', 1), ('der', 1), ('pike', 1), ('auf', 1), ('lernen', 1), ('verstehen', 1), ('anwenden', 1), ('arnold', 1), ('willemer', 1), ('erklärt', 1), ('ihnen', 1), ('wie', 1), ('code', 1), ('zu', 1)]
[('online', 2), ('da', 2), ('sie', 2), ('erfolgreicher', 1), ('handel', 1), ('digitale', 1), ('volk', 1), ('kaufrausch', 1), ('versetzen', 1), ('möchten', 1), ('produkte', 1), ('über', 1), ('internet', 1), ('verkaufen', 1), ('dann', 1), ('sollten', 1), ('ihre', 1), ('strategie', 1), ('sorgfältig', 1), ('planen', 1), ('diesis', 1), ('buch', 1)]
[('e', 2), ('und', 2), ('für', 1), ('den', 1), ('erfolg', 1), ('von', 1), ('softwareprojekten', 1), ('ist', 1), ('entscheidend', 1), ('sich', 1), ('erstmal', 1), ('klar', 1), ('zu', 1), ('machen', 1), ('wozu', 1), ('da', 1), ('system', 1), ('überhaupt', 1), ('dienen', 1), ('soll', 1), ('wie', 1), ('dafür', 1), ('beschaffen', 1), ('sein', 1), ('mus', 1), ('klingt', 1), ('eigentlich', 1), ('selbstverständlich', 1), ('doch', 1), ('scheitern', 1), ('projekte', 1), ('oft', 1), ('gerade', 1), ('der', 1)]
[('wie', 3), ('computer', 2), ('zum', 2), ('sie', 2), ('bringe', 1), ('ich', 1), ('den', 1), ('arbeiten', 1), ('sind', 1), ('eigentlich', 1), ('apps', 1), ('ist', 1), ('da', 1), ('internet', 1), ('sicher', 1), ('nancy', 1), ('muir', 1), ('erklärt', 1), ('ihnen', 1), ('ein', 1), ('funktioniert', 1), ('und', 1), ('drucker', 1), ('co', 1), ('laufen', 1), ('bringen', 1), ('erläutert', 1), ('auch', 1), ('die', 1), ('grundlagen', 1), ('von', 1), ('window', 1)]
[('ihnen', 3), ('buch', 2), ('und', 2), ('die', 2), ('da', 2), ('ganz', 1), ('gleich', 1), ('ob', 1), ('sie', 1), ('einsteiger', 1), ('oder', 1), ('umsteiger', 1), ('sind', 1), ('diesis', 1), ('verschafft', 1), ('einen', 1), ('guten', 1), ('einblick', 1), ('window', 1), ('server', 1), ('möglichkeiten', 1), ('komfortable', 1), ('flexible', 1), ('serverbetriebssystem', 1), ('von', 1), ('microsoft', 1), ('gibt', 1), ('zeigt', 1)]
[('und', 3), ('ein', 1), ('überquellendes', 1), ('postfach', 1), ('zu', 1), ('viele', 1), ('meeting', 1), ('nie', 1), ('genügend', 1), ('zeit', 1), ('nutzen', 1), ('sie', 1), ('outlook', 1), ('richtig', 1), ('nicht', 1), ('nur', 1), ('zum', 1), ('mailen', 1), ('sondern', 1), ('auch', 1), ('vor', 1), ('allem', 1), ('zur', 1), ('organisation', 1), ('ihrer', 1), ('kontakte', 1), ('termine', 1), ('aufgaben', 1), ('christine', 1), ('peyton', 1), ('andre', 1), ('möller', 1), ('zeigen', 1), ('ihnen', 1)]
[('sps', 2), ('ohne', 2), ('sie', 2), ('oder', 2), ('stress', 1), ('wenn', 1), ('maschinen', 1), ('anlage', 1), ('mithilfe', 1), ('einer', 1), ('auch', 1), ('vorkenntnisse', 1), ('steuern', 1), ('möchten', 1), ('dann', 1), ('ist', 1), ('diesis', 1), ('buch', 1), ('für', 1), ('gemacht', 1), ('ob', 1), ('aufbau', 1), ('der', 1), ('hardware', 1), ('installation', 1), ('und', 1), ('verdrahtung', 1)]
[('sie', 2), ('zu', 2), ('und', 2), ('ist', 1), ('der', 1), ('mathematik', 1), ('schein', 1), ('auch', 1), ('für', 1), ('die', 1), ('größte', 1), ('hürde', 1), ('studium', 1), ('dabei', 1), ('brauchen', 1), ('al', 1), ('informatiker', 1), ('solide', 1), ('mathematische', 1), ('grundkenntnisse', 1), ('um', 1), ('algorithmen', 1), ('verstehen', 1), ('mit', 1), ('anwendern', 1), ('au', 1), ('naturwissenschaft', 1), ('technik', 1), ('auf', 1), ('augenhöhe', 1)]
[('team', 2), ('tribe', 2), ('want', 1), ('red', 1), ('offensive', 1), ('advice', 1), ('biggest', 1), ('cybersecurity', 1), ('name', 1), ('industry', 1), ('join', 1), ('hacker', 1), ('back', 1), ('new', 1), ('guide', 1), ('packed', 1)]
[('small', 2), ('business', 2), ('accounting', 2), ('learn', 1), ('use', 1), ('uk', 1), ('number', 1), ('software', 1), ('reliable', 1), ('system', 1), ('integral', 1), ('success', 1), ('quickbooks', 1), ('finance', 1), ('program', 1)]
[('book', 2), ('concept', 2), ('simulation', 2), ('purpose', 1), ('first', 1), ('study', 1), ('matlab', 1), ('programming', 1), ('basic', 1), ('modeling', 1), ('analysis', 1), ('particularly', 1), ('focus', 1), ('digital', 1), ('communication', 1), ('cover', 1), ('topic', 1), ('practically', 1)]
[('aws', 2), ('cloud', 2), ('machine', 2), ('learning', 2), ('put', 1), ('power', 1), ('service', 1), ('work', 1), ('business', 1), ('commercial', 1), ('application', 1), ('introduces', 1), ('reader', 1)]
[('definitive', 2), ('guide', 2), ('ccna', 2), ('certification', 2), ('practice', 2), ('study', 1), ('new', 1), ('ccnp', 1), ('test', 1), ('exam', 1), ('professional', 1), ('preparing', 1)]
[('skill', 2), ('tool', 1), ('collecting', 1), ('verifying', 1), ('correlating', 1), ('information', 1), ('different', 1), ('type', 1), ('system', 1), ('essential', 1), ('tracking', 1), ('hacker', 1), ('book', 1), ('explores', 1), ('open', 1), ('source', 1), ('intelligence', 1), ('gathering', 1), ('osint', 1), ('inside', 1)]
[('universal', 2), ('apps', 2), ('practical', 1), ('introduction', 1), ('using', 1), ('io', 1), ('create', 1), ('prior', 1), ('experience', 1), ('programming', 1), ('object', 1), ('oriented', 1), ('language', 1), ('eager', 1), ('start', 1), ('building', 1), ('ipad', 1)]
[('home', 3), ('accounting', 2), ('take', 1), ('control', 1), ('difficult', 1), ('task', 1), ('impossible', 1), ('right', 1), ('tool', 1), ('accountz', 1), ('dummy', 1), ('show', 1), ('exactly', 1), ('use', 1), ('uk', 1)]
[('tribal', 1), ('knowledge', 1), ('best', 1), ('cybersecurity', 1), ('leadership', 1), ('tribe', 1), ('hacker', 1), ('series', 1), ('continues', 1), ('sharing', 1), ('cissps', 1), ('cisos', 1), ('security', 1), ('leader', 1), ('need', 1), ('know', 1), ('build', 1), ('solid', 1)]
[('sie', 4), ('technologie', 2), ('haben', 1), ('ihre', 1), ('software', 1), ('schon', 1), ('containerisiert', 1), ('wissen', 1), ('wie', 1), ('die', 1), ('container', 1), ('besten', 1), ('ihrem', 1), ('unternehmen', 1), ('einsetzen', 1), ('können', 1), ('wenn', 1), ('nicht', 1), ('dann', 1), ('sollten', 1), ('jetzt', 1), ('damit', 1), ('beginnen', 1), ('sich', 1), ('mit', 1), ('dieser', 1), ('auseinanderzusetzen', 1), ('da', 1)]
[('website', 2), ('master', 1), ('innovative', 1), ('eye', 1), ('catching', 1), ('design', 1), ('exciting', 1), ('new', 1), ('treehouse', 1), ('series', 1), ('book', 1), ('turn', 1), ('plain', 1), ('word', 1), ('image', 1), ('stunning', 1), ('cs', 1), ('beautiful', 1), ('full', 1), ('color', 1), ('guide', 1)]
[('powershell', 2), ('kann', 2), ('jetzt', 1), ('für', 1), ('window', 1), ('linux', 1), ('und', 1), ('macos', 1), ('die', 1), ('neue', 1), ('auf', 1), ('den', 1), ('verschiedenen', 1), ('betriebssystemen', 1), ('sie', 1), ('nicht', 1), ('diesis', 1), ('buch', 1), ('bietet', 1), ('eine', 1), ('praxisorientierte', 1), ('einführung', 1)]
[('machine', 2), ('vision', 2), ('inspection', 2), ('system', 1), ('mvis', 1), ('multidisciplinary', 1), ('research', 1), ('field', 1), ('emphasizes', 1), ('image', 1), ('processing', 1), ('pattern', 1), ('recognition', 1), ('industrial', 1), ('application', 1), ('technique', 1), ('generally', 1)]
[('iphone', 2), ('pro', 2), ('know', 1), ('new', 1), ('max', 1), ('inside', 1), ('color', 1), ('screen', 1), ('shot', 1), ('teach', 1), ('visually', 1), ('ultimate', 1), ('guide', 1), ('getting', 1)]
[('cyber', 2), ('issue', 2), ('security', 1), ('key', 1), ('affecting', 1), ('confidence', 1), ('internet', 1), ('user', 1), ('sustainability', 1), ('business', 1), ('national', 1), ('regard', 1), ('economic', 1), ('development', 1), ('resilience', 1), ('concern', 1), ('risk', 1), ('hand', 1)]
[('data', 2), ('concept', 1), ('lake', 1), ('le', 1), ('year', 1), ('old', 1), ('already', 1), ('hugely', 1), ('implemented', 1), ('within', 1), ('large', 1), ('company', 1), ('goal', 1), ('efficiently', 1), ('deal', 1), ('growing', 1), ('volume', 1), ('heterogeneous', 1), ('facing', 1), ('various', 1), ('sophisticated', 1), ('user', 1)]
[('job', 2), ('ready', 1), ('interview', 1), ('success', 1), ('programming', 1), ('rise', 1), ('field', 1), ('predicted', 1), ('keep', 1), ('growing', 1), ('fast', 1), ('landing', 1), ('lucrative', 1), ('rewarding', 1), ('requires', 1)]
[('book', 1), ('presented', 1), ('three', 1), ('volume', 1), ('examines', 1), ('environmental', 1), ('discipline', 1), ('relation', 1), ('major', 1), ('player', 1), ('contemporary', 1), ('science', 1), ('big', 1), ('data', 1), ('artificial', 1), ('intelligence', 1), ('cloud', 1), ('computing', 1), ('today', 1), ('real', 1), ('sense', 1), ('urgency', 1), ('regarding', 1)]
[('book', 1), ('presented', 1), ('three', 1), ('volume', 1), ('examines', 1), ('environmental', 1), ('discipline', 1), ('relation', 1), ('major', 1), ('player', 1), ('contemporary', 1), ('science', 1), ('big', 1), ('data', 1), ('artificial', 1), ('intelligence', 1), ('cloud', 1), ('computing', 1), ('today', 1), ('real', 1), ('sense', 1), ('urgency', 1), ('regarding', 1)]
[('dynamic', 2), ('apply', 1), ('cutting', 1), ('edge', 1), ('ai', 1), ('technique', 1), ('environment', 1), ('create', 1), ('new', 1), ('solution', 1), ('old', 1), ('business', 1), ('problem', 1), ('machine', 1), ('learning', 1), ('power', 1), ('platform', 1), ('ultimate', 1), ('guide', 1)]
[('security', 3), ('comptia', 2), ('exam', 2), ('sy', 2), ('learn', 1), ('in', 1), ('out', 1), ('field', 1), ('efficiently', 1), ('prepare', 1), ('easy', 1), ('follow', 1), ('resource', 1), ('review', 1), ('guide', 1)]
[('reality', 3), ('smart', 2), ('fast', 1), ('developing', 1), ('world', 1), ('industry', 1), ('combine', 1), ('extended', 1), ('xr', 1), ('technology', 1), ('virtual', 1), ('vr', 1), ('augmented', 1), ('ar', 1), ('creating', 1), ('location', 1), ('aware', 1), ('application', 1), ('interact', 1), ('object', 1)]
[('section', 2), ('book', 1), ('provides', 1), ('single', 1), ('volume', 1), ('covering', 1), ('detailed', 1), ('description', 1), ('various', 1), ('delivery', 1), ('system', 1), ('principle', 1), ('put', 1), ('use', 1), ('treatment', 1), ('multiple', 1), ('disease', 1), ('divided', 1), ('four', 1), ('first', 1), ('deal', 1)]
[('ipad', 3), ('apple', 2), ('increase', 1), ('iq', 1), ('genius', 1), ('level', 1), ('guide', 1), ('want', 1), ('squeeze', 1), ('every', 1), ('last', 1), ('bit', 1), ('incredible', 1), ('covered', 1), ('newly', 1), ('revised', 1)]
[('du', 4), ('wie', 3), ('au', 2), ('und', 2), ('diesem', 1), ('buch', 1), ('erfährst', 1), ('daddeln', 1), ('zocken', 1), ('professioneller', 1), ('sport', 1), ('wird', 1), ('welches', 1), ('spiel', 1), ('welcher', 1), ('titel', 1), ('passt', 1), ('zu', 1), ('dir', 1), ('wann', 1), ('solltest', 1), ('trainieren', 1), ('gehst', 1), ('mit', 1), ('niederlagen', 1), ('um', 1), ('kannst', 1), ('fehlern', 1), ('lernen', 1), ('außerdem', 1)]
[('makros', 3), ('sie', 3), ('excel', 2), ('sind', 1), ('ein', 1), ('mysterium', 1), ('für', 1), ('haben', 1), ('da', 1), ('ziel', 1), ('selbst', 1), ('zu', 1), ('schreiben', 1), ('oder', 1), ('wollen', 1), ('wissen', 1), ('wie', 1), ('mit', 1), ('wertvolle', 1), ('zeit', 1), ('sparen', 1), ('können', 1), ('dieser', 1), ('aktualisierten', 1), ('auflage', 1), ('hat', 1), ('michael', 1), ('alexander', 1), ('die', 1), ('gebräuchlichsten', 1)]
[('business', 3), ('blockchain', 3), ('book', 2), ('focus', 1), ('power', 1), ('give', 1), ('overview', 1), ('traditional', 1), ('marketing', 1), ('accounting', 1), ('intelligence', 1), ('provides', 1), ('detailed', 1), ('working', 1), ('knowedge', 1), ('user', 1), ('case', 1)]
[('advancement', 1), ('semantic', 1), ('web', 1), ('ontology', 1), ('become', 1), ('crucial', 1), ('mechanism', 1), ('representing', 1), ('concept', 1), ('various', 1), ('domain', 1), ('research', 1), ('dispersal', 1), ('customized', 1), ('healthcare', 1), ('service', 1), ('major', 1), ('challenge', 1), ('efficiently', 1), ('retrieve', 1)]
[('mastering', 1), ('chance', 1), ('long', 1), ('time', 1), ('preoccupation', 1), ('mathematical', 1), ('research', 1), ('today', 1), ('posse', 1), ('predictive', 1), ('approach', 1), ('evolution', 1), ('system', 1), ('based', 1), ('theory', 1), ('probability', 1), ('even', 1), ('uncovering', 1), ('subject', 1), ('sometimes', 1), ('complex', 1)]
[('research', 2), ('edited', 1), ('book', 1), ('brings', 1), ('together', 1), ('leading', 1), ('researcher', 1), ('academic', 1), ('scientist', 1), ('scholar', 1), ('put', 1), ('forward', 1), ('share', 1), ('experience', 1), ('result', 1), ('aspect', 1), ('inspection', 1), ('system', 1), ('detection', 1), ('analysis', 1), ('various', 1)]
[('new', 1), ('information', 1), ('communication', 1), ('technology', 1), ('nicts', 1), ('increasingly', 1), ('reorganize', 1), ('practice', 1), ('influence', 1), ('daily', 1), ('life', 1), ('pressing', 1), ('need', 1), ('study', 1), ('impact', 1), ('field', 1), ('hospital', 1), ('logistics', 1), ('question', 1), ('future', 1), ('use', 1)]
[('guide', 2), ('database', 2), ('programming', 2), ('visual', 2), ('basic', 2), ('net', 2), ('practical', 1), ('issue', 1), ('application', 1), ('updated', 1), ('sql', 1), ('server', 1), ('offer', 1)]
[('technology', 2), ('communication', 1), ('network', 1), ('witnessed', 1), ('recent', 1), ('rapid', 1), ('development', 1), ('numerous', 1), ('information', 1), ('service', 1), ('application', 1), ('developed', 1), ('globally', 1), ('high', 1), ('impact', 1), ('society', 1), ('way', 1), ('leading', 1)]
[('funktionen', 3), ('die', 3), ('excel', 2), ('wie', 2), ('gibt', 1), ('e', 1), ('mehr', 1), ('al', 1), ('aber', 1), ('welche', 1), ('der', 1), ('vielen', 1), ('erleichtert', 1), ('ihnen', 1), ('ihre', 1), ('arbeit', 1), ('setzen', 1), ('sie', 1), ('richtig', 1), ('ein', 1), ('lautet', 1), ('syntax', 1), ('diesis', 1), ('buch', 1), ('stellt', 1), ('einsteigern', 1)]
[('authoritative', 1), ('guide', 1), ('depth', 1), ('analysis', 1), ('various', 1), ('state', 1), ('art', 1), ('data', 1), ('clustering', 1), ('approach', 1), ('using', 1), ('range', 1), ('computational', 1), ('intelligence', 1), ('technique', 1), ('recent', 1), ('advance', 1), ('hybrid', 1), ('metaheuristics', 1)]
[('window', 2), ('master', 1), ('reading', 1), ('book', 1), ('teach', 1), ('visually', 1), ('rd', 1), ('edition', 1), ('brings', 1), ('together', 1), ('necessary', 1), ('resource', 1), ('make', 1), ('expert', 1), ('use', 1)]
[('book', 1), ('multi', 1), ('disciplinary', 1), ('effort', 1), ('involves', 1), ('world', 1), ('wide', 1), ('expert', 1), ('diverse', 1), ('field', 1), ('artificial', 1), ('intelligence', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('information', 1), ('technology', 1), ('data', 1), ('mining', 1), ('statistic', 1), ('adaptive', 1), ('user', 1), ('interface', 1)]
[('impact', 2), ('organizational', 2), ('transformation', 2), ('artificial', 1), ('intelligence', 1), ('discus', 1), ('ai', 1), ('mix', 1), ('computational', 1), ('technique', 1), ('management', 1), ('practice', 1), ('depth', 1)]
[('system', 2), ('smart', 1), ('industrial', 1), ('application', 1), ('prime', 1), ('objective', 1), ('book', 1), ('provide', 1), ('insight', 1), ('role', 1), ('advancement', 1), ('artificial', 1), ('intelligence', 1), ('electrical', 1), ('future', 1)]
[('prepare', 2), ('aws', 2), ('certified', 2), ('sysops', 2), ('administrator', 2), ('test', 2), ('study', 1), ('associate', 1), ('soa', 1), ('exam', 1), ('success', 1), ('practice', 1)]
[('connect', 1), ('newest', 1), ('vibrant', 1), ('online', 1), ('community', 1), ('though', 1), ('originally', 1), ('virtual', 1), ('meeting', 1), ('place', 1), ('primarily', 1), ('gamers', 1), ('discord', 1), ('userbase', 1), ('quintupled', 1), ('size', 1), ('year', 1)]
[('spss', 2), ('newly', 2), ('master', 1), ('fundamental', 1), ('updated', 1), ('instructive', 1), ('resource', 1), ('thoroughly', 1), ('revised', 1), ('second', 1), ('edition', 1), ('essential', 1), ('delivers', 1), ('comprehensive', 1), ('guide', 1)]
[('food', 3), ('despite', 1), ('increasing', 1), ('population', 1), ('agriculture', 1), ('organization', 1), ('united', 1), ('nation', 1), ('estimate', 1), ('needed', 1), ('produced', 1), ('issue', 1), ('related', 1), ('production', 1), ('yet', 1), ('completely', 1)]
[('industrial', 2), ('internet', 2), ('thing', 1), ('iiot', 1), ('book', 1), ('discus', 1), ('augmented', 1), ('increased', 1), ('network', 1), ('agility', 1), ('integrated', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('capacity', 1), ('deploy', 1)]
[('iomt', 2), ('internet', 1), ('medical', 1), ('thing', 1), ('providing', 1), ('essential', 1), ('addition', 1), ('reference', 1), ('material', 1), ('available', 1), ('field', 1), ('timely', 1), ('publication', 1), ('cover', 1), ('range', 1), ('applied', 1), ('research', 1), ('healthcare', 1), ('biomedical', 1)]
[('machine', 1), ('learning', 1), ('paradigm', 1), ('internet', 1), ('thing', 1), ('application', 1), ('company', 1), ('globally', 1), ('realize', 1), ('revolutionary', 1), ('potential', 1), ('iot', 1), ('started', 1), ('finding', 1), ('number', 1), ('obstacle', 1), ('need', 1), ('address', 1)]
[('office', 4), ('microsoft', 2), ('specialist', 2), ('guide', 2), ('mca', 1), ('study', 1), ('complete', 1), ('preparing', 1), ('excel', 1), ('exam', 1)]
[('book', 1), ('intended', 1), ('academic', 1), ('industrial', 1), ('developer', 1), ('exploring', 1), ('developing', 1), ('application', 1), ('area', 1), ('big', 1), ('data', 1), ('machine', 1), ('learning', 1), ('including', 1), ('solving', 1), ('technology', 1), ('requirement', 1), ('evaluation', 1), ('methodology', 1)]
[('samsung', 3), ('new', 2), ('galaxy', 2), ('feeling', 1), ('hamstrung', 1), ('figure', 1), ('navigate', 1), ('phone', 1), ('time', 1), ('come', 1), ('packed', 1), ('feature', 1), ('use', 1), ('every', 1), ('day', 1)]
[('go', 2), ('language', 2), ('ready', 1), ('set', 1), ('program', 1), ('perfect', 1), ('time', 1), ('learn', 1), ('programming', 1), ('demand', 1), ('among', 1), ('tech', 1), ('recruiter', 1), ('developer', 1), ('love', 1), ('simplicity', 1)]
[('digital', 2), ('city', 2), ('roadmap', 1), ('book', 1), ('detail', 1), ('application', 1), ('technology', 1), ('efficient', 1), ('infrastructure', 1), ('planning', 1), ('including', 1), ('smart', 1), ('building', 1), ('rapid', 1), ('urbanization', 1), ('demographic', 1)]
[('powerful', 1), ('new', 1), ('samsung', 1), ('galaxy', 1), ('superfast', 1), ('refresh', 1), ('rate', 1), ('seamless', 1), ('browsing', 1), ('spectacularly', 1), ('enhanced', 1), ('camera', 1), ('among', 1), ('many', 1), ('goody', 1), ('lot', 1), ('enjoy', 1)]
[('channel', 2), ('youtube', 2), ('create', 1), ('tube', 1), ('draw', 1), ('subscriber', 1), ('top', 1), ('notch', 1), ('content', 1), ('eye', 1), ('ear', 1), ('billion', 1), ('monthly', 1), ('user', 1)]
[('cyber', 2), ('security', 2), ('digital', 1), ('forensics', 1), ('incredibly', 1), ('important', 1), ('issue', 1), ('constantly', 1), ('changing', 1), ('new', 1), ('method', 1), ('process', 1), ('technology', 1), ('coming', 1), ('online', 1), ('time', 1), ('book', 1)]
[('management', 2), ('control', 2), ('network', 2), ('longer', 1), ('envisaged', 1), ('without', 1), ('introduction', 1), ('artificial', 1), ('intelligence', 1), ('stage', 1), ('intelligent', 1), ('deal', 1), ('topical', 1)]
[('analytics', 2), ('deep', 2), ('learning', 2), ('advanced', 1), ('model', 1), ('book', 1), ('provides', 1), ('reader', 1), ('depth', 1), ('understanding', 1), ('concept', 1), ('technology', 1), ('related', 1), ('importance', 1), ('many', 1), ('useful', 1)]
[('cloud', 2), ('computing', 1), ('solution', 1), ('main', 1), ('purpose', 1), ('book', 1), ('include', 1), ('related', 1), ('technology', 1), ('single', 1), ('platform', 1), ('researcher', 1), ('academician', 1), ('postgraduate', 1), ('student', 1)]
[('und', 3), ('erfreut', 1), ('sich', 1), ('al', 1), ('klassiker', 1), ('unter', 1), ('den', 1), ('programmiersprachen', 1), ('großer', 1), ('beliebtheit', 1), ('denn', 1), ('e', 1), ('steckt', 1), ('nach', 1), ('wie', 1), ('vor', 1), ('vielen', 1), ('betriebssystemen', 1), ('schnittstellen', 1), ('treibern', 1), ('aber', 1), ('auch', 1), ('compilern', 1), ('neueren', 1), ('eingebetteten', 1), ('systemen', 1), ('wer', 1), ('lernen', 1), ('dabei', 1)]
[('iot', 3), ('cognitive', 2), ('approach', 1), ('provides', 1), ('connectivity', 1), ('everyone', 1), ('everything', 1), ('connected', 1), ('device', 1), ('known', 1), ('increase', 1), ('rapidly', 1), ('integrated', 1), ('technology', 1), ('performance', 1), ('improved', 1), ('smart', 1)]
[('microsoft', 3), ('team', 2), ('work', 1), ('seamlessly', 1), ('together', 1), ('matter', 1), ('time', 1), ('built', 1), ('actual', 1), ('virtual', 1), ('office', 1), ('rocketing', 1), ('million', 1), ('daily', 1), ('user', 1)]
[('technology', 2), ('understanding', 1), ('infrastructure', 1), ('edge', 1), ('computing', 1), ('comprehensive', 1), ('review', 1), ('key', 1), ('emerging', 1), ('directly', 1), ('impact', 1), ('area', 1), ('computer', 1), ('next', 1), ('five', 1)]
[('implementation', 2), ('microsoft', 2), ('dynamic', 2), ('confidently', 1), ('shepherd', 1), ('organization', 1), ('successful', 1), ('conclusion', 1), ('mastering', 1), ('accomplished', 1)]
[('application', 3), ('multi', 1), ('processor', 1), ('system', 1), ('chip', 1), ('mpsoc', 1), ('key', 1), ('component', 1), ('complex', 1), ('put', 1), ('huge', 1), ('pressure', 1), ('memory', 1), ('communication', 1), ('device', 1), ('computing', 1), ('unit', 1), ('book', 1), ('presented', 1), ('volume', 1), ('architecture', 1)]
[('mfa', 2), ('protect', 1), ('organization', 1), ('scandalously', 1), ('easy', 1), ('hack', 1), ('security', 1), ('solution', 1), ('multi', 1), ('factor', 1), ('authentication', 1), ('spreading', 1), ('wildfire', 1), ('across', 1), ('digital', 1), ('environment', 1), ('hundred', 1)]
[('training', 2), ('complete', 1), ('digital', 1), ('communication', 1), ('book', 1), ('aspect', 1), ('involved', 1), ('course', 1), ('tutorial', 1), ('many', 1), ('typical', 1), ('problem', 1), ('targeted', 1), ('detailed', 1), ('solution', 1), ('practical', 1), ('work', 1), ('concretely', 1), ('illustrating', 1), ('various', 1)]
[('catalyzes', 1), ('convergence', 1), ('good', 1), ('biological', 1), ('physical', 1), ('digital', 1), ('world', 1), ('helping', 1), ('better', 1), ('tackle', 1), ('toughest', 1), ('challenge', 1), ('climate', 1), ('change', 1), ('resource', 1), ('depletion', 1), ('aging', 1), ('population', 1), ('social', 1), ('inclusion', 1), ('empowerment', 1)]
[('microsoft', 2), ('team', 2), ('comprehensive', 1), ('insightful', 1), ('resource', 1), ('mastering', 1), ('creating', 1), ('hub', 1), ('successful', 1), ('teamwork', 1), ('office', 1), ('show', 1), ('reader', 1)]
[('machine', 2), ('learning', 2), ('data', 2), ('science', 1), ('written', 1), ('edited', 1), ('team', 1), ('expert', 1), ('field', 1), ('collection', 1), ('paper', 1), ('reflects', 1), ('date', 1), ('comprehensive', 1), ('current', 1), ('state', 1)]
[('dafür', 2), ('geld', 2), ('wer', 1), ('da', 1), ('nicht', 1), ('marketing', 1), ('betreiben', 1), ('und', 1), ('weniger', 1), ('ausgeben', 1), ('growth', 1), ('hacking', 1), ('wurde', 1), ('genau', 1), ('entwickelt', 1), ('e', 1), ('sollte', 1), ('startup', 1), ('helfen', 1), ('ohne', 1), ('viel', 1), ('zu', 1), ('wachsen', 1), ('diesis', 1), ('buch', 1), ('gibt', 1), ('ihnen', 1), ('einen', 1), ('einblick', 1), ('die', 1), ('grundlagen', 1), ('de', 1)]
[('manipulating', 1), ('processing', 1), ('mass', 1), ('digital', 1), ('data', 1), ('never', 1), ('purely', 1), ('technical', 1), ('activity', 1), ('requires', 1), ('interpretative', 1), ('exploratory', 1), ('outlook', 1), ('already', 1), ('known', 1), ('social', 1), ('science', 1), ('humanity', 1), ('convey', 1), ('intelligible', 1), ('result', 1)]
[('energy', 3), ('smart', 2), ('hybrid', 1), ('intelligent', 1), ('approach', 1), ('green', 1), ('technology', 1), ('cleaner', 1), ('important', 1), ('topic', 1), ('facing', 1), ('world', 1), ('today', 1), ('march', 1), ('toward', 1), ('efficient', 1), ('system', 1), ('city', 1)]
[('iphone', 2), ('photography', 2), ('create', 1), ('beautiful', 1), ('photo', 1), ('technique', 1), ('found', 1), ('book', 1), ('dummy', 1), ('share', 1), ('expertise', 1), ('workshop', 1), ('instructor', 1), ('mark', 1), ('hemmings', 1)]
[('computer', 2), ('internet', 1), ('undeniable', 1), ('inextricable', 1), ('part', 1), ('daily', 1), ('life', 1), ('book', 1), ('wish', 1), ('better', 1), ('understand', 1), ('came', 1), ('explores', 1), ('technological', 1), ('base', 1), ('network', 1), ('software', 1), ('data', 1)]
[('learn', 1), ('deploy', 1), ('proven', 1), ('cryptographic', 1), ('tool', 1), ('application', 1), ('service', 1), ('cryptography', 1), ('quite', 1), ('simply', 1), ('make', 1), ('security', 1), ('privacy', 1), ('digital', 1), ('world', 1), ('possible', 1), ('tech', 1), ('professional', 1), ('including', 1)]
[('efficient', 1), ('single', 1), ('board', 1), ('computer', 1), ('sbcs', 1), ('advanced', 1), ('vlsi', 1), ('system', 1), ('resulted', 1), ('edge', 1), ('analytics', 1), ('faster', 1), ('decision', 1), ('making', 1), ('qos', 1), ('parameter', 1), ('energy', 1), ('delay', 1), ('reliability', 1), ('security', 1), ('throughput', 1), ('improved', 1), ('seeking', 1), ('better', 1)]
[('team', 3), ('blue', 2), ('biggest', 2), ('defensive', 1), ('advice', 1), ('name', 1), ('cybersecurity', 1), ('tribe', 1), ('hacker', 1), ('back', 1), ('new', 1), ('guide', 1), ('packed', 1), ('insight', 1), ('issue', 1)]
[('simplest', 1), ('way', 1), ('create', 1), ('world', 1), ('class', 1), ('apps', 1), ('unique', 1), ('app', 1), ('idea', 1), ('worried', 1), ('quite', 1), ('coding', 1), ('skill', 1), ('build', 1), ('good', 1), ('news', 1), ('stop', 1), ('fretting', 1), ('beating', 1), ('market', 1)]
[('cloud', 2), ('allowed', 1), ('even', 1), ('care', 1), ('imagined', 1), ('internet', 1), ('giant', 1), ('rube', 1), ('goldberg', 1), ('machine', 1), ('fast', 1), ('evolving', 1)]
[('enterprise', 2), ('master', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('book', 1), ('series', 1), ('trusted', 1), ('million', 1), ('ai', 1), ('dummy', 1), ('author', 1), ('zachary', 1), ('jarvinen', 1), ('simplifies', 1)]
[('mit', 5), ('sie', 3), ('alexa', 2), ('von', 2), ('der', 2), ('erfahren', 1), ('alles', 1), ('anstellen', 1), ('können', 1), ('soundanpassung', 1), ('de', 1), ('lautsprechers', 1), ('equalizer', 1), ('funktion', 1), ('über', 1), ('da', 1), ('freisprechen', 1), ('drop', 1), ('bi', 1), ('hin', 1), ('zum', 1), ('automatisieren', 1), ('abläufen', 1), ('routinen', 1), ('bringen', 1), ('mehr', 1)]
[('sie', 3), ('wordpress', 3), ('gestalt', 1), ('mit', 1), ('ihre', 1), ('website', 1), ('auch', 1), ('wenn', 1), ('keinerlei', 1), ('vorkenntnisse', 1), ('haben', 1), ('profitieren', 1), ('von', 1), ('tausenden', 1), ('meist', 1), ('kostenlosen', 1), ('design', 1), ('vorlagen', 1), ('den', 1), ('theme', 1), ('begann', 1), ('al', 1), ('einfache', 1), ('weblog', 1), ('software', 1), ('und', 1), ('ist', 1), ('inzwischen', 1), ('da', 1)]
[('secure', 2), ('certification', 2), ('cssp', 1), ('ccsp', 1), ('world', 1), ('leading', 1), ('cloud', 1), ('security', 1), ('cover', 1), ('advanced', 1), ('technical', 1), ('skill', 1), ('knowledge', 1), ('design', 1), ('manage', 1), ('data', 1), ('application', 1)]
[('powerpoint', 4), ('associate', 2), ('exam', 2), ('mo', 2), ('mca', 1), ('microsoft', 1), ('office', 1), ('specialist', 1), ('study', 1), ('guide', 1), ('roadmap', 1), ('preparing', 1), ('taking', 1), ('earning', 1)]
[('risk', 2), ('management', 2), ('bow', 1), ('tie', 1), ('industrial', 1), ('across', 1), ('sector', 1), ('explore', 1), ('approachable', 1), ('rigorous', 1), ('treatment', 1), ('systematic', 1), ('barrier', 1), ('based', 1), ('approach', 1), ('failure', 1), ('analysis', 1)]
[('die', 3), ('zu', 2), ('von', 2), ('haben', 1), ('sie', 1), ('auch', 1), ('schon', 1), ('mal', 1), ('den', 1), ('wunsch', 1), ('verspürt', 1), ('programmieren', 1), ('können', 1), ('oder', 1), ('wenigstens', 1), ('verstehen', 1), ('wie', 1), ('computer', 1), ('ticken', 1), ('unser', 1), ('leben', 1), ('bestimmen', 1), ('diesis', 1), ('buch', 1), ('führt', 1), ('denkweise', 1), ('programmierern', 1), ('und', 1), ('funktionsweise', 1), ('programmen', 1), ('ein', 1)]
[('digital', 2), ('six', 2), ('click', 1), ('way', 1), ('stunning', 1), ('image', 1), ('thorough', 1), ('resource', 1), ('mini', 1), ('guide', 1), ('slr', 1), ('photography', 1), ('dummy', 1), ('ingredient', 1)]
[('ubuntu', 2), ('linux', 2), ('quickly', 1), ('learn', 1), ('use', 1), ('fastest', 1), ('growing', 1), ('distribution', 1), ('personal', 1), ('enterprise', 1), ('environment', 1), ('whether', 1), ('newcomer', 1), ('experienced', 1), ('system', 1), ('administrator', 1)]
[('calculation', 1), ('main', 1), ('function', 1), ('computer', 1), ('central', 1), ('unit', 1), ('responsible', 1), ('executing', 1), ('program', 1), ('microprocessor', 1), ('integrated', 1), ('form', 1), ('component', 1), ('announcement', 1), ('marketing', 1), ('stopped', 1), ('breaking', 1)]
[('database', 3), ('aws', 2), ('validate', 1), ('cloud', 1), ('skill', 1), ('certified', 1), ('study', 1), ('guide', 1), ('specialty', 1), ('db', 1), ('exam', 1), ('focus', 1), ('helping', 1), ('understand', 1), ('basic', 1), ('job', 1), ('role', 1), ('administrator', 1)]
[('calculation', 1), ('main', 1), ('function', 1), ('computer', 1), ('central', 1), ('unit', 1), ('responsible', 1), ('executing', 1), ('program', 1), ('microprocessor', 1), ('integrated', 1), ('form', 1), ('component', 1), ('announcement', 1), ('marketing', 1), ('stopped', 1), ('breaking', 1)]
[('analyse', 2), ('aim', 1), ('book', 1), ('understand', 1), ('impact', 1), ('artificial', 1), ('intelligence', 1), ('field', 1), ('national', 1), ('security', 1), ('defense', 1), ('identify', 1), ('political', 1), ('geopolitical', 1), ('strategic', 1), ('issue', 1), ('ai', 1), ('place', 1), ('conflict', 1)]
[('computational', 2), ('science', 2), ('handbook', 1), ('comprehensive', 1), ('collection', 1), ('research', 1), ('chapter', 1), ('brings', 1), ('together', 1), ('latest', 1), ('advance', 1), ('trend', 1), ('address', 1), ('interdisciplinary', 1), ('nature', 1)]
[('smart', 2), ('system', 2), ('healthcare', 1), ('design', 1), ('book', 1), ('deeply', 1), ('discus', 1), ('major', 1), ('challenge', 1), ('issue', 1), ('security', 1), ('privacy', 1), ('aspect', 1), ('health', 1), ('care', 1), ('internet', 1), ('thing', 1), ('iot', 1)]
[('number', 1), ('double', 1), ('quick', 1), ('time', 1), ('trusted', 1), ('quickbooks', 1), ('bestseller', 1), ('running', 1), ('business', 1), ('cool', 1), ('financial', 1), ('side', 1), ('accounting', 1), ('payroll', 1), ('instance', 1), ('always', 1)]
[('interactive', 2), ('handbook', 1), ('storytelling', 1), ('discover', 1), ('latest', 1), ('research', 1), ('crafting', 1), ('compelling', 1), ('narrative', 1), ('entertainment', 1), ('electronic', 1), ('game', 1), ('longer', 1), ('considered', 1), ('mere', 1), ('fluff', 1)]
[('data', 2), ('business', 1), ('becoming', 1), ('increasingly', 1), ('aware', 1), ('importance', 1), ('information', 1), ('eager', 1), ('develop', 1), ('way', 1), ('manage', 1), ('enrich', 1), ('take', 1), ('advantage', 1), ('indeed', 1), ('recent', 1), ('explosion', 1), ('phenomenal', 1), ('amount', 1)]
[('infrastructure', 1), ('essential', 1), ('area', 1), ('sector', 1), ('human', 1), ('activity', 1), ('cornerstone', 1), ('information', 1), ('system', 1), ('thus', 1), ('clear', 1), ('greatest', 1), ('care', 1), ('given', 1), ('design', 1), ('implementation', 1), ('security', 1)]
[('become', 2), ('data', 2), ('analytics', 2), ('practical', 1), ('guide', 1), ('anyone', 1), ('aspires', 1), ('savvy', 1), ('central', 1), ('operation', 1), ('business', 1), ('making', 1), ('increasingly', 1), ('necessary', 1), ('skill', 1), ('every', 1)]
[('humanity', 1), ('social', 1), ('science', 1), ('interested', 1), ('cybersecurity', 1), ('object', 1), ('emergence', 1), ('security', 1), ('debate', 1), ('beginning', 1), ('scientific', 1), ('production', 1), ('thus', 1), ('still', 1), ('relatively', 1), ('young', 1), ('diversified', 1), ('mobilizing', 1)]
[('integrated', 2), ('commercialization', 1), ('microprocessor', 1), ('modern', 1), ('form', 1), ('central', 1), ('processing', 1), ('unit', 1), ('continuously', 1), ('broken', 1), ('record', 1), ('term', 1), ('function', 1), ('computing', 1), ('power', 1), ('low', 1), ('cost', 1), ('energy', 1), ('saving', 1), ('status', 1), ('today', 1)]
[('biomedical', 2), ('data', 2), ('mining', 2), ('information', 2), ('retrieval', 2), ('book', 1), ('emphasizes', 1), ('traditional', 1), ('computational', 1), ('technique', 1), ('discus', 1), ('image', 1), ('processing', 1), ('broad', 1)]
[('security', 2), ('issue', 2), ('privacy', 2), ('concern', 1), ('industry', 1), ('application', 1), ('written', 1), ('edited', 1), ('team', 1), ('international', 1), ('expert', 1), ('comprehensive', 1), ('date', 1), ('coverage', 1)]
[('design', 2), ('artificial', 1), ('intelligence', 1), ('hardware', 1), ('learn', 1), ('foundational', 1), ('advanced', 1), ('topic', 1), ('neural', 1), ('processing', 1), ('unit', 1), ('real', 1), ('world', 1), ('example', 1), ('leading', 1), ('voice', 1), ('field', 1)]
[('chromebook', 3), ('teach', 1), ('visually', 1), ('ultimate', 1), ('guide', 1), ('getting', 1), ('designed', 1), ('ease', 1), ('use', 1), ('portable', 1), ('functionality', 1)]
[('du', 4), ('schritt', 2), ('mit', 2), ('sind', 2), ('und', 2), ('diesem', 1), ('buch', 1), ('lernst', 1), ('für', 1), ('wie', 1), ('dem', 1), ('kostenlosen', 1), ('app', 1), ('inventor', 1), ('einen', 1), ('chatbot', 1), ('entwickelst', 1), ('erfährst', 1), ('zuerst', 1), ('chatbots', 1), ('eigentlich', 1), ('das', 1), ('diese', 1), ('al', 1), ('alexa', 1), ('siri', 1), ('bixby', 1), ('cortana', 1), ('google', 1), ('schon', 1), ('um', 1), ('un', 1)]
[('pentester', 2), ('jumpstart', 1), ('new', 1), ('exciting', 1), ('career', 1), ('penetration', 1), ('tester', 1), ('blueprint', 1), ('guide', 1), ('offer', 1), ('reader', 1), ('chance', 1), ('delve', 1), ('deeply', 1), ('world', 1)]
[('guide', 2), ('window', 2), ('fluff', 1), ('fast', 1), ('paced', 1), ('everything', 1), ('handy', 1), ('jargon', 1), ('free', 1), ('designed', 1), ('help', 1), ('quickly', 1), ('learn', 1), ('whatever', 1), ('need', 1), ('know', 1), ('perfect', 1), ('novice', 1)]
[('information', 2), ('security', 2), ('provides', 1), ('systematic', 1), ('guidance', 1), ('meeting', 1), ('challenge', 1), ('st', 1), ('century', 1), ('featuring', 1), ('newly', 1), ('revised', 1), ('material', 1), ('throughout', 1)]
[('bioinformatics', 3), ('computation', 1), ('platform', 1), ('biology', 1), ('information', 1), ('technology', 1), ('book', 1), ('provides', 1), ('reader', 1), ('understanding', 1), ('use', 1), ('tool', 1), ('new', 1), ('drug', 1)]
[('information', 2), ('technology', 2), ('cryptography', 1), ('theory', 1), ('error', 1), ('correction', 1), ('rich', 1), ('examination', 1), ('supporting', 1), ('secure', 1), ('digital', 1), ('transfer', 1), ('respected', 1), ('leader', 1), ('field', 1)]
[('science', 2), ('intelligent', 1), ('data', 1), ('analytics', 1), ('terror', 1), ('threat', 1), ('prediction', 1), ('emerging', 1), ('field', 1), ('research', 1), ('intersection', 1), ('information', 1), ('computer', 1), ('bringing', 1), ('new', 1), ('era', 1), ('tremendous', 1), ('opportunity', 1), ('challenge', 1), ('due', 1), ('plenty', 1)]
[('program', 2), ('corporate', 1), ('cybersecurity', 1), ('insider', 1), ('guide', 1), ('showing', 1), ('company', 1), ('spot', 1), ('remedy', 1), ('vulnerability', 1), ('security', 1), ('bug', 1), ('bounty', 1), ('offered', 1), ('organization', 1)]
[('book', 1), ('focus', 1), ('near', 1), ('zero', 1), ('energy', 1), ('building', 1), ('nzebs', 1), ('smart', 1), ('community', 1), ('microgrids', 1), ('context', 1), ('demand', 1), ('response', 1), ('dr', 1), ('associated', 1), ('significant', 1), ('environmental', 1), ('economic', 1), ('benefit', 1), ('looking', 1), ('electricity', 1), ('grid', 1)]
[('communication', 2), ('human', 1), ('technology', 1), ('unique', 1), ('book', 1), ('explaining', 1), ('perception', 1), ('location', 1), ('cognition', 1), ('computation', 1), ('networking', 1), ('propulsion', 1), ('integration', 1), ('federated', 1), ('internet', 1), ('robotic', 1), ('thing', 1), ('iort', 1)]
[('mac', 3), ('sie', 2), ('wollen', 2), ('einen', 2), ('sich', 1), ('anschaffen', 1), ('und', 1), ('ihn', 1), ('optimal', 1), ('nutzen', 1), ('können', 1), ('oder', 1), ('haben', 1), ('schon', 1), ('aber', 1), ('auf', 1), ('da', 1), ('neue', 1), ('betriebssystem', 1), ('umsteigen', 1), ('dann', 1), ('bildet', 1), ('diesis', 1), ('buch', 1), ('eine', 1), ('passende', 1), ('grundlage', 1), ('für', 1), ('den', 1), ('umgang', 1), ('mit', 1), ('einem', 1), ('bob', 1), ('levitus', 1), ('zeigt', 1)]
[('cybersecurity', 2), ('land', 1), ('perfect', 1), ('role', 1), ('move', 1), ('ladder', 1), ('insightful', 1), ('resource', 1), ('finding', 1), ('right', 1), ('position', 1), ('challenging', 1), ('successful', 1), ('profession', 1), ('take', 1), ('lot', 1)]
[('medical', 2), ('imaging', 2), ('health', 1), ('informatics', 1), ('provides', 1), ('comprehensive', 1), ('review', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('practical', 1), ('recommendation', 1), ('usage', 1), ('machine', 1)]
[('attacker', 2), ('take', 1), ('perspective', 1), ('insightful', 1), ('new', 1), ('resource', 1), ('ethical', 1), ('hacker', 1), ('pentesters', 1), ('social', 1), ('engineer', 1), ('art', 1), ('attack', 1), ('mindset', 1), ('security', 1)]
[('data', 1), ('structure', 1), ('algorithm', 1), ('fundamental', 1), ('course', 1), ('computer', 1), ('science', 1), ('enables', 1), ('learner', 1), ('across', 1), ('discipline', 1), ('develop', 1), ('needed', 1), ('foundation', 1), ('efficient', 1), ('programming', 1), ('leading', 1), ('better', 1), ('problem', 1), ('solving', 1), ('respective', 1)]
[('practical', 2), ('industrial', 2), ('roadmap', 1), ('protecting', 1), ('cyberattacks', 1), ('environment', 1), ('cybersecurity', 1), ('ic', 1), ('industry', 1), ('iiot', 1), ('veteran', 1), ('electronics', 1), ('computer', 1), ('security', 1)]
[('fuzzy', 2), ('system', 2), ('intelligent', 1), ('comprehensive', 1), ('guide', 1), ('expert', 1), ('logic', 1), ('backbone', 1), ('artificial', 1), ('intelligence', 1), ('objective', 1), ('writing', 1), ('book', 1), ('foster', 1), ('advancement', 1)]
[('industrial', 2), ('physical', 2), ('system', 2), ('cyber', 1), ('operate', 1), ('simultaneously', 1), ('digital', 1), ('world', 1), ('business', 1), ('cornerstone', 1), ('fourth', 1), ('revolution', 1), ('increasingly', 1), ('becoming', 1), ('way', 1), ('forward', 1), ('academic', 1)]
[('data', 1), ('structure', 1), ('algorithm', 1), ('fundamental', 1), ('course', 1), ('computer', 1), ('science', 1), ('enables', 1), ('learner', 1), ('across', 1), ('discipline', 1), ('develop', 1), ('needed', 1), ('foundation', 1), ('efficient', 1), ('programming', 1), ('leading', 1), ('better', 1), ('problem', 1), ('solving', 1), ('respective', 1)]
[('software', 3), ('defined', 2), ('network', 1), ('networking', 1), ('suggests', 1), ('alternative', 1), ('worldview', 1), ('come', 1), ('new', 1), ('stack', 1), ('book', 1), ('organized', 1), ('goal', 1), ('presenting', 1), ('top', 1), ('bottom', 1)]
[('main', 1), ('topic', 1), ('book', 1), ('recent', 1), ('development', 1), ('board', 1), ('advanced', 1), ('driver', 1), ('assistance', 1), ('system', 1), ('ada', 1), ('already', 1), ('tell', 1), ('eventually', 1), ('contribute', 1), ('autonomous', 1), ('connected', 1), ('vehicle', 1), ('tomorrow', 1)]
[('cyber', 2), ('physical', 2), ('system', 2), ('chapter', 1), ('book', 1), ('cover', 1), ('various', 1), ('aspect', 1), ('associated', 1), ('cps', 1), ('algorithm', 1), ('application', 1), ('area', 1), ('improvement', 1), ('existing', 1), ('technology', 1)]
[('privacy', 2), ('essential', 1), ('resource', 1), ('anyone', 1), ('preparing', 1), ('cipm', 1), ('certification', 1), ('exam', 1), ('career', 1), ('information', 1), ('cybersecurity', 1), ('become', 1), ('important', 1), ('long', 1), ('term', 1), ('viability', 1)]
[('computational', 1), ('intelligence', 1), ('healthcare', 1), ('informatics', 1), ('book', 1), ('provides', 1), ('state', 1), ('art', 1), ('innovation', 1), ('research', 1), ('design', 1), ('implement', 1), ('methodological', 1), ('algorithmic', 1), ('solution', 1), ('data', 1)]
[('computational', 2), ('intelligence', 2), ('automation', 1), ('road', 1), ('maintenance', 1), ('management', 1), ('comprehensive', 1), ('toolbox', 1), ('solving', 1), ('problem', 1)]
[('cloud', 2), ('threat', 2), ('hunting', 2), ('implement', 1), ('vendor', 1), ('neutral', 1), ('multi', 1), ('cybersecurity', 1), ('risk', 1), ('mitigation', 1), ('framework', 1), ('advice', 1), ('seasoned', 1), ('pro', 1), ('defending', 1), ('aws', 1), ('azure', 1)]
[('internet', 2), ('iot', 2), ('thing', 1), ('contributed', 1), ('greatly', 1), ('growth', 1), ('data', 1), ('traffic', 1), ('access', 1), ('technology', 1), ('object', 1), ('constraint', 1), ('associated', 1), ('cause', 1), ('performance', 1), ('security', 1), ('problem', 1), ('relates', 1), ('important', 1)]
[('organization', 1), ('around', 1), ('world', 1), ('struggle', 1), ('survival', 1), ('racing', 1), ('transform', 1), ('herculean', 1), ('effort', 1), ('adapt', 1), ('digital', 1), ('age', 1), ('protecting', 1), ('headline', 1), ('grabbing', 1), ('cybersecurity', 1), ('threat', 1)]
[('unmanned', 2), ('aerial', 2), ('vehicle', 2), ('internet', 1), ('thing', 1), ('comprehensive', 1), ('book', 1), ('deeply', 1), ('discus', 1), ('theoretical', 1), ('technical', 1), ('issue', 1), ('deployment', 1), ('industry', 1), ('civil', 1), ('authority', 1)]
[('home', 2), ('internet', 2), ('smart', 1), ('use', 1), ('connected', 1), ('device', 1), ('artificial', 1), ('intelligence', 1), ('protocol', 1), ('numerous', 1), ('technology', 1), ('enable', 1), ('remotely', 1), ('monitor', 1), ('manage', 1), ('various', 1), ('system', 1), ('within', 1), ('via', 1), ('using', 1), ('smartphone', 1)]
[('deep', 1), ('dive', 1), ('programming', 1), ('language', 1), ('choice', 1), ('statistic', 1), ('data', 1), ('dummy', 1), ('five', 1), ('mini', 1), ('book', 1), ('offering', 1), ('complete', 1), ('thorough', 1), ('resource', 1)]
[('result', 1), ('widespread', 1), ('implementation', 1), ('economic', 1), ('social', 1), ('structure', 1), ('network', 1), ('concept', 1), ('appears', 1), ('paradigm', 1), ('contemporary', 1), ('world', 1), ('need', 1), ('various', 1), ('service', 1), ('transport', 1), ('energy', 1), ('consumption', 1), ('manufacturing', 1), ('good', 1)]
[('machine', 4), ('learning', 3), ('algorithm', 1), ('current', 1), ('ambitious', 1), ('specialist', 1), ('looking', 1), ('implement', 1), ('solution', 1), ('real', 1), ('world', 1), ('problem', 1), ('talk', 1), ('entirely', 1), ('various', 1), ('application', 1)]
[('tele', 2), ('healthcare', 2), ('book', 1), ('elucidates', 1), ('aspect', 1), ('application', 1), ('ai', 1), ('soft', 1), ('computing', 1), ('digital', 1), ('information', 1), ('communication', 1), ('technology', 1), ('provide', 1), ('service', 1), ('remotely', 1), ('manage', 1)]
[('blockchain', 2), ('digitization', 1), ('healthcare', 1), ('data', 1), ('using', 1), ('book', 1), ('give', 1), ('detailed', 1), ('description', 1), ('integration', 1), ('technology', 1), ('electronic', 1), ('health', 1), ('record', 1), ('provides', 1), ('research', 1)]
[('service', 2), ('business', 2), ('aws', 2), ('expert', 1), ('guidance', 1), ('use', 1), ('amazon', 1), ('web', 1), ('supercharge', 1), ('digital', 1), ('transforming', 1), ('getting', 1), ('using', 1), ('modernize', 1)]
[('chromebook', 2), ('guide', 2), ('return', 1), ('bestselling', 1), ('market', 1), ('dummy', 1), ('third', 1), ('edition', 1), ('easy', 1), ('follow', 1), ('low', 1), ('cost', 1), ('alternative', 1), ('traditional', 1), ('laptop', 1)]
[('blockchain', 2), ('gold', 1), ('standard', 1), ('date', 1), ('cybersecurity', 1), ('handbook', 1), ('security', 1), ('bottom', 1), ('securing', 1), ('preventing', 1), ('attack', 1), ('cryptocurrencies', 1), ('decentralized', 1), ('application', 1), ('nfts', 1)]
[('python', 3), ('ready', 2), ('job', 2), ('take', 1), ('practical', 1), ('focused', 1), ('guide', 1), ('offer', 1), ('reader', 1), ('straightforward', 1), ('elegant', 1), ('approach', 1), ('learning', 1), ('emphasizes', 1)]
[('java', 3), ('für', 2), ('sie', 1), ('wollen', 1), ('einsteigen', 1), ('oder', 1), ('ihre', 1), ('kenntnisse', 1), ('erweitern', 1), ('dummy', 1), ('ist', 1), ('gleichzeitig', 1), ('lehrbuch', 1), ('und', 1), ('unverzichtbares', 1), ('nachschlagewerk', 1), ('alle', 1), ('programmierer', 1), ('basiswissen', 1), ('zur', 1), ('objektorientierten', 1), ('programmierung', 1), ('wird', 1), ('genauso', 1), ('vermittelt', 1)]
[('system', 4), ('complex', 2), ('model', 1), ('based', 1), ('architecting', 1), ('key', 1), ('tool', 1), ('designing', 1), ('industrial', 1), ('dedicated', 1), ('working', 1), ('architect', 1), ('engineer', 1), ('modeler', 1), ('order', 1), ('help', 1), ('master', 1), ('integrated', 1)]
[('team', 3), ('die', 3), ('für', 2), ('microsoft', 2), ('homeoffice', 1), ('virtuelle', 1), ('über', 1), ('ganze', 1), ('welt', 1), ('verteilt', 1), ('sind', 1), ('diesis', 1), ('buch', 1), ('ist', 1), ('der', 1), ('leitfaden', 1), ('diejenigen', 1), ('da', 1), ('nummer', 1), ('eins', 1), ('tool', 1), ('kollaboratives', 1), ('arbeiten', 1), ('produktiver', 1), ('einsetzen', 1), ('wollen', 1), ('mit', 1), ('fühlt', 1)]
[('data', 4), ('video', 2), ('today', 1), ('transmitted', 1), ('network', 1), ('archived', 1), ('computer', 1), ('tablet', 1), ('cell', 1), ('phone', 1), ('cloud', 1), ('multimedia', 1), ('image', 1), ('audio', 1), ('application', 1), ('range', 1), ('game', 1), ('healthcare', 1)]
[('data', 3), ('business', 2), ('quality', 2), ('analytics', 2), ('discover', 1), ('achieve', 1), ('goal', 1), ('relying', 1), ('high', 1), ('robust', 1), ('empowering', 1), ('ai', 1), ('veteran', 1), ('professional', 1), ('delivers', 1)]
[('artificial', 1), ('intelligence', 1), ('renewable', 1), ('energy', 1), ('climate', 1), ('change', 1), ('written', 1), ('edited', 1), ('global', 1), ('team', 1), ('expert', 1), ('field', 1), ('groundbreaking', 1), ('new', 1), ('volume', 1), ('present', 1), ('concept', 1)]
[('pc', 2), ('cloud', 2), ('shift', 1), ('liberate', 1), ('desk', 1), ('microsoft', 1), ('newest', 1), ('based', 1), ('operating', 1), ('system', 1), ('allows', 1), ('access', 1), ('device', 1), ('window', 1), ('dummy', 1), ('teach', 1)]
[('extended', 2), ('reality', 2), ('roadmapping', 1), ('book', 1), ('offer', 1), ('comprehensive', 1), ('overview', 1), ('technological', 1), ('aspect', 1), ('xr', 1), ('discus', 1), ('main', 1), ('challenge', 1), ('future', 1), ('direction', 1), ('field', 1)]
[('sie', 3), ('lernen', 2), ('wollen', 1), ('programmieren', 1), ('um', 1), ('eigene', 1), ('apps', 1), ('für', 1), ('ihr', 1), ('android', 1), ('gerät', 1), ('zu', 1), ('entwickeln', 1), ('dann', 1), ('sind', 1), ('hier', 1), ('richtig', 1), ('diesis', 1), ('buch', 1), ('ist', 1), ('drei', 1), ('bücher', 1), ('einem', 1), ('java', 1), ('begreifen', 1), ('die', 1), ('objektorientierte', 1), ('programmierung', 1), ('und', 1), ('erhalten', 1), ('eine', 1), ('einführung', 1)]
[('executive', 2), ('cyber', 2), ('risk', 2), ('solid', 1), ('non', 1), ('technical', 1), ('foundation', 1), ('help', 1), ('board', 1), ('member', 1), ('understand', 1), ('guide', 1), ('securing', 1), ('future', 1), ('today', 1), ('distinguished', 1)]
[('place', 2), ('blog', 1), ('best', 1), ('em', 1), ('looking', 1), ('complete', 1), ('guide', 1), ('creating', 1), ('solidifying', 1), ('blogosphere', 1), ('come', 1), ('right', 1), ('book', 1), ('blogging', 1)]
[('basic', 2), ('ipad', 2), ('bestselling', 1), ('guide', 1), ('teach', 1), ('anyone', 1), ('fully', 1), ('updated', 1), ('newest', 1), ('apple', 1), ('release', 1), ('senior', 1), ('dummy', 1), ('edition', 1), ('feature', 1), ('helpful', 1)]
[('trust', 2), ('learn', 1), ('analyze', 1), ('measure', 1), ('risk', 1), ('exploring', 1), ('nature', 1), ('application', 1), ('cybersecurity', 1), ('computer', 1), ('system', 1), ('cloud', 1), ('delivers', 1), ('insightful', 1)]
[('data', 3), ('repository', 2), ('platform', 1), ('sharing', 1), ('using', 1), ('storing', 1), ('research', 1), ('integral', 1), ('open', 1), ('science', 1), ('policy', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('approach', 1), ('functionality', 1), ('us', 1), ('issue', 1), ('prospect', 1), ('taking', 1)]
[('oder', 2), ('statistische', 1), ('analyse', 1), ('statt', 1), ('datenchaos', 1), ('ob', 1), ('kundendaten', 1), ('absatzzahlen', 1), ('umfrageergebnisse', 1), ('wissenschaftliche', 1), ('studien', 1), ('große', 1), ('datenmengen', 1), ('lassen', 1), ('sich', 1), ('besten', 1), ('mit', 1), ('spss', 1), ('untersuchen', 1), ('dem', 1), ('häufigsten', 1)]
[('snowflake', 2), ('prepare', 1), ('smarter', 1), ('faster', 1), ('better', 1), ('premier', 1), ('study', 1), ('guide', 1), ('snowpro', 1), ('core', 1), ('certification', 1), ('cloud', 1), ('based', 1), ('data', 1), ('warehousing', 1), ('platform', 1), ('steadily', 1), ('gained', 1), ('popularity', 1)]
[('streaming', 2), ('dummy', 2), ('twitch', 2), ('find', 1), ('success', 1), ('date', 1), ('breakthrough', 1), ('platform', 1), ('set', 1), ('channel', 1), ('increase', 1)]
[('data', 2), ('science', 2), ('handbook', 2), ('desk', 1), ('reference', 1), ('give', 1), ('hand', 1), ('experience', 1), ('various', 1), ('algorithm', 1), ('popular', 1), ('technique', 1), ('used', 1), ('real', 1), ('time', 1), ('researcher', 1), ('working', 1)]
[('scientific', 1), ('field', 1), ('data', 1), ('analysis', 1), ('constantly', 1), ('expanding', 1), ('due', 1), ('rapid', 1), ('growth', 1), ('computer', 1), ('industry', 1), ('wide', 1), ('applicability', 1), ('computational', 1), ('algorithmic', 1), ('technique', 1), ('conjunction', 1), ('new', 1), ('advance', 1), ('statistical', 1), ('stochastic', 1)]
[('web', 2), ('research', 2), ('semantic', 1), ('effective', 1), ('healthcare', 1), ('system', 1), ('book', 1), ('summarizes', 1), ('trend', 1), ('current', 1), ('advance', 1), ('semantics', 1), ('delineating', 1), ('existing', 1), ('tool', 1), ('technique', 1), ('methodology', 1)]
[('zero', 2), ('trust', 2), ('security', 2), ('implement', 1), ('initiative', 1), ('efficiently', 1), ('effectively', 1), ('project', 1), ('story', 1), ('strategy', 1), ('aligning', 1), ('business', 1), ('george', 1), ('finney', 1), ('chief', 1)]
[('machine', 2), ('learning', 2), ('analytics', 2), ('data', 2), ('business', 1), ('known', 1), ('mining', 1), ('predictive', 1), ('fundamental', 1), ('part', 1), ('science', 1), ('used', 1), ('organization', 1), ('wide', 1), ('variety', 1)]
[('aws', 2), ('machine', 2), ('learning', 2), ('cloud', 2), ('succeed', 1), ('exam', 1), ('next', 1), ('job', 1), ('specialist', 1), ('platform', 1), ('hand', 1), ('guide', 1), ('popular', 1), ('service', 1), ('world', 1), ('today', 1)]
[('human', 2), ('computer', 2), ('interaction', 2), ('cognitive', 1), ('behavior', 1), ('based', 1), ('machine', 1), ('learning', 1), ('algorithm', 1), ('objective', 1), ('book', 1), ('provide', 1), ('relevant', 1), ('information', 1), ('academic', 1)]
[('data', 2), ('ty', 2), ('conscience', 1), ('algorithmic', 1), ('ege', 1), ('hum', 1), ('explore', 1), ('ta', 1), ('structure', 1), ('help', 1), ('nder', 1), ('soc', 1), ('al', 1), ('equ', 1), ('enjoyed', 1), ('bystander', 1), ('status', 1), ('attempted', 1), ('digitize', 1)]
[('scientific', 1), ('field', 1), ('data', 1), ('analysis', 1), ('constantly', 1), ('expanding', 1), ('due', 1), ('rapid', 1), ('growth', 1), ('computer', 1), ('industry', 1), ('wide', 1), ('applicability', 1), ('computational', 1), ('algorithmic', 1), ('technique', 1), ('conjunction', 1), ('new', 1), ('advance', 1), ('statistical', 1)]
[('public', 3), ('ai', 2), ('sector', 2), ('discover', 1), ('data', 1), ('analytics', 1), ('transform', 1), ('service', 1), ('better', 1), ('future', 1), ('creation', 1), ('renowned', 1), ('executive', 1)]
[('machine', 2), ('learning', 2), ('technique', 2), ('analytics', 2), ('cloud', 2), ('security', 2), ('book', 1), ('cover', 1), ('new', 1), ('method', 1), ('survey', 1), ('case', 1), ('study', 1), ('policy', 1), ('almost', 1)]
[('und', 3), ('da', 2), ('ist', 2), ('das', 2), ('der', 2), ('schöne', 1), ('scrum', 1), ('regelwerk', 1), ('überschaubar', 1), ('e', 1), ('schafft', 1), ('nur', 1), ('viel', 1), ('struktur', 1), ('team', 1), ('sich', 1), ('ganz', 1), ('gar', 1), ('auf', 1), ('die', 1), ('lösung', 1), ('eigentlichen', 1), ('herausforderung', 1), ('konzentrieren', 1), ('können', 1), ('keine', 1), ('zeit', 1), ('mit', 1), ('abarbeitung', 1), ('unnötiger', 1)]
[('kid', 2), ('computer', 2), ('science', 2), ('friendly', 1), ('rigorous', 1), ('new', 1), ('way', 1), ('teach', 1), ('young', 1), ('reader', 1), ('fundamental', 1), ('storytelling', 1), ('approach', 1), ('aws', 1), ('head', 1), ('academic', 1), ('advocacy', 1), ('google', 1)]
[('fault', 3), ('diagnosis', 2), ('control', 2), ('book', 1), ('present', 1), ('recent', 1), ('advance', 1), ('tolerant', 1), ('dynamic', 1), ('process', 1), ('impetus', 1), ('derives', 1), ('need', 1), ('overview', 1), ('challenge', 1), ('technique', 1), ('sustainable', 1), ('especially', 1)]
[('excel', 3), ('teach', 2), ('visually', 2), ('erate', 1), ('knowledge', 1), ('celebrated', 1), ('series', 1), ('veteran', 1), ('tech', 1), ('educator', 1), ('writer', 1), ('paul', 1), ('mcfedries', 1), ('delivers', 1)]
[('need', 2), ('window', 2), ('day', 2), ('everything', 1), ('know', 1), ('single', 1), ('visual', 1), ('book', 1), ('teach', 1), ('visually', 1), ('collect', 1), ('resource', 1), ('master', 1), ('use', 1)]
[('image', 2), ('time', 2), ('series', 2), ('analysis', 2), ('change', 1), ('detection', 1), ('present', 1), ('wide', 1), ('range', 1), ('unsupervised', 1), ('method', 1), ('temporal', 1), ('evolution', 1), ('use', 1), ('associated', 1), ('optical', 1), ('synthetic', 1), ('aperture', 1), ('radar', 1), ('acquisition', 1), ('modality', 1)]
[('javascript', 2), ('developer', 1), ('resource', 1), ('learning', 1), ('used', 1), ('scripting', 1), ('language', 1), ('dummy', 1), ('save', 1), ('shelf', 1), ('space', 1), ('offering', 1), ('complete', 1), ('introduction', 1)]
[('data', 3), ('analytics', 3), ('aws', 3), ('cloud', 2), ('comprehensive', 1), ('accessible', 1), ('roadmap', 1), ('performing', 1), ('building', 1), ('platform', 1), ('bi', 1), ('predictive', 1)]
[('system', 2), ('robust', 1), ('engaging', 1), ('account', 1), ('single', 1), ('greatest', 1), ('threat', 1), ('faced', 1), ('ai', 1), ('ml', 1), ('bug', 1), ('sticker', 1), ('attack', 1), ('machine', 1), ('learning', 1)]
[('data', 2), ('science', 2), ('semantic', 2), ('technology', 2), ('book', 1), ('serve', 1), ('important', 1), ('guide', 1), ('toward', 1), ('application', 1), ('upcoming', 1), ('generation', 1), ('thus', 1), ('becomes', 1), ('unique', 1), ('resource', 1)]
[('artificial', 2), ('intelligence', 2), ('understanding', 1), ('provides', 1), ('student', 1), ('across', 1), ('major', 1), ('clear', 1), ('accessible', 1), ('overview', 1), ('new', 1), ('technology', 1), ('application', 1)]
[('digital', 3), ('risk', 2), ('concept', 1), ('become', 1), ('ubiquitous', 1), ('medium', 1), ('sustains', 1), ('number', 1), ('myth', 1), ('belief', 1), ('world', 1), ('book', 1), ('explores', 1), ('opposite', 1), ('view', 1), ('ideology', 1), ('focusing', 1), ('perceived', 1), ('actor', 1)]
[('go', 2), ('tackle', 1), ('golang', 1), ('practical', 1), ('employment', 1), ('focused', 1), ('instruction', 1), ('job', 1), ('ready', 1), ('software', 1), ('education', 1), ('guru', 1), ('dr', 1), ('haythem', 1), ('balti', 1), ('delivers', 1), ('essential', 1), ('hand', 1), ('guide', 1), ('open', 1), ('source', 1)]
[('study', 2), ('scale', 2), ('order', 1), ('living', 1), ('organism', 1), ('scientist', 1), ('overall', 1), ('macroscopic', 1), ('detailed', 1), ('microscopic', 1), ('observation', 1), ('pushed', 1), ('limit', 1), ('consists', 1), ('investigating', 1), ('center', 1)]
[('project', 3), ('exam', 2), ('newly', 2), ('guide', 2), ('prepare', 1), ('new', 1), ('career', 1), ('management', 1), ('quickly', 1), ('efficiently', 1), ('updated', 1), ('revised', 1), ('third', 1), ('edition', 1), ('comptia', 1), ('study', 1)]
[('server', 2), ('exam', 2), ('guide', 2), ('prepare', 1), ('exciting', 1), ('new', 1), ('career', 1), ('tech', 1), ('hand', 1), ('newly', 1), ('updated', 1), ('second', 1), ('edition', 1), ('comptia', 1), ('study', 1), ('sk', 1), ('veteran', 1)]
[('data', 3), ('governance', 2), ('discover', 1), ('work', 1), ('designing', 1), ('building', 1), ('program', 1), ('practitioner', 1), ('guide', 1), ('operationalizing', 1), ('veteran', 1), ('sa', 1), ('management', 1), ('expert', 1)]
[('edge', 4), ('internet', 1), ('new', 1), ('paradigm', 1), ('whose', 1), ('objective', 1), ('keep', 1), ('data', 1), ('processing', 1), ('close', 1), ('user', 1), ('book', 1), ('present', 1), ('three', 1), ('different', 1), ('level', 1), ('networking', 1), ('mec', 1), ('multi', 1), ('access', 1), ('computing', 1), ('fog', 1), ('far', 1), ('sometimes', 1), ('called', 1)]
[('website', 2), ('design', 2), ('want', 2), ('combining', 1), ('theory', 1), ('practice', 1), ('development', 1), ('html', 1), ('cs', 1), ('aimed', 1), ('beginner', 1), ('first', 1), ('experienced', 1), ('developer', 1), ('consolidate', 1)]
[('computer', 2), ('model', 2), ('process', 1), ('dynamic', 1), ('comprehensive', 1), ('overview', 1), ('technique', 1), ('describing', 1), ('physical', 1), ('phenomenon', 1), ('mean', 1), ('determined', 1), ('mathematical', 1), ('analysis', 1)]
[('renewable', 2), ('energy', 2), ('system', 2), ('intelligent', 1), ('collection', 1), ('paper', 1), ('artificial', 1), ('intelligence', 1), ('method', 1), ('improving', 1), ('written', 1), ('industry', 1), ('expert', 1), ('reflection', 1), ('state', 1)]
[('azure', 2), ('network', 2), ('engineer', 2), ('prepare', 1), ('take', 1), ('new', 1), ('exam', 1), ('az', 1), ('confidence', 1), ('launch', 1), ('career', 1), ('mca', 1), ('microsoft', 1), ('certified', 1), ('associate', 1), ('study', 1), ('guide', 1)]
[('exam', 3), ('study', 2), ('guide', 2), ('window', 2), ('server', 2), ('az', 2), ('next', 1), ('gen', 1), ('certification', 1), ('mca', 1), ('hybrid', 1), ('administrator', 1), ('complete', 1), ('five', 1), ('time', 1)]
[('drawing', 3), ('product', 2), ('idea', 2), ('explore', 1), ('straightforward', 1), ('skill', 1), ('help', 1), ('communicate', 1), ('exponentially', 1), ('faster', 1), ('text', 1), ('fast', 1), ('easy', 1), ('ux', 1), ('anyone', 1), ('rsa', 1)]
[('sie', 3), ('mit', 2), ('und', 2), ('einer', 2), ('da', 2), ('die', 2), ('wie', 1), ('dem', 1), ('flutter', 1), ('framework', 1), ('android', 1), ('io', 1), ('apps', 1), ('nur', 1), ('code', 1), ('base', 1), ('ohne', 1), ('qualitätsverlust', 1), ('entwickeln', 1), ('erfahren', 1), ('hier', 1), ('nach', 1), ('einführung', 1), ('programmiersprache', 1), ('dart', 1), ('lernen', 1), ('user', 1), ('interface', 1), ('design', 1), ('anbindung', 1)]
[('programming', 3), ('gui', 3), ('fundamental', 2), ('tcl', 2), ('discover', 1), ('foundation', 1), ('development', 1), ('tk', 1), ('electronic', 1), ('design', 1), ('automation', 1)]
[('health', 1), ('economics', 1), ('financing', 1), ('encapsulates', 1), ('different', 1), ('case', 1), ('study', 1), ('green', 1), ('iot', 1), ('machine', 1), ('learning', 1), ('used', 1), ('making', 1), ('significant', 1), ('progress', 1), ('towards', 1), ('improvising', 1), ('quality', 1), ('life', 1), ('sustainable', 1)]
[('quantum', 2), ('computing', 2), ('model', 2), ('evolution', 1), ('application', 1), ('book', 1), ('replacing', 1), ('traditional', 1), ('classical', 1), ('give', 1), ('state', 1), ('art', 1), ('technical', 1)]
[('iot', 2), ('enabled', 2), ('unobtrusive', 1), ('surveillance', 1), ('system', 1), ('smart', 1), ('campus', 1), ('safety', 1), ('enables', 1), ('reader', 1), ('understand', 1), ('broad', 1), ('area', 1), ('state', 1), ('art', 1), ('research', 1), ('physical', 1), ('security', 1)]
[('window', 2), ('server', 2), ('cloud', 2), ('azure', 2), ('extend', 1), ('premise', 1), ('deployment', 1), ('mastering', 1), ('service', 1), ('iaa', 1), ('paas', 1), ('saas', 1), ('time', 1), ('microsoft', 1), ('mvp', 1), ('winner', 1)]
[('ist', 2), ('eine', 2), ('die', 2), ('und', 2), ('go', 1), ('der', 1), ('neueren', 1), ('programmiersprachen', 1), ('softwareentwickler', 1), ('ihrer', 1), ('werkzeugkiste', 1), ('haben', 1), ('sollten', 1), ('sprache', 1), ('wurde', 1), ('mit', 1), ('dem', 1), ('ziel', 1), ('entwickelt', 1), ('besonders', 1), ('gut', 1), ('lesbar', 1), ('benutzerfreundlich', 1), ('effizient', 1), ('zu', 1), ('sein', 1), ('gute', 1), ('wahl', 1), ('für', 1)]
[('parallel', 2), ('human', 2), ('machine', 2), ('population', 1), ('proposes', 1), ('new', 1), ('paradigm', 1), ('investigate', 1), ('individual', 1), ('cognitive', 1), ('deliberation', 1), ('dynamic', 1), ('interaction', 1), ('today', 1), ('intelligent', 1), ('enable', 1)]
[('cognitive', 1), ('computing', 1), ('model', 1), ('communication', 1), ('system', 1), ('concise', 1), ('book', 1), ('latest', 1), ('research', 1), ('focusing', 1), ('problem', 1), ('challenge', 1), ('area', 1), ('data', 1), ('transmission', 1), ('technology', 1), ('computer', 1), ('algorithm', 1), ('ai', 1), ('based', 1), ('device', 1)]
[('unsere', 3), ('geräte', 2), ('und', 2), ('unseren', 2), ('gadget', 1), ('von', 1), ('kühlschränken', 1), ('bi', 1), ('hin', 1), ('zu', 1), ('haussicherheitssystemen', 1), ('staubsaugern', 1), ('stereoanlagen', 1), ('werden', 1), ('über', 1), ('kurz', 1), ('oder', 1), ('lang', 1), ('online', 1), ('sein', 1), ('genau', 1), ('wie', 1), ('computer', 1), ('aber', 1), ('wenn', 1), ('wir', 1), ('erst', 1), ('einmal', 1)]
[('blockchain', 2), ('technology', 2), ('corporate', 1), ('goverance', 1), ('book', 1), ('investigates', 1), ('recent', 1), ('application', 1), ('financial', 1), ('service', 1), ('energy', 1), ('sector', 1), ('summarizes', 1), ('regulatory', 1), ('response', 1), ('set', 1), ('scene', 1)]
[('learning', 3), ('machine', 2), ('deep', 2), ('fundamental', 1), ('method', 1), ('book', 1), ('provides', 1), ('practical', 1), ('approach', 1), ('explaining', 1), ('concept', 1), ('algorithm', 1), ('evaluation', 1), ('methodology', 1), ('advance', 1)]
[('cyber', 3), ('physical', 3), ('human', 3), ('system', 3), ('comprehensive', 1), ('edited', 1), ('volume', 1), ('exploring', 1), ('latest', 1), ('interaction', 1)]
[('cloud', 2), ('native', 2), ('event', 2), ('driven', 2), ('application', 2), ('explore', 1), ('paradigm', 1), ('service', 1), ('oriented', 1), ('computing', 1), ('design', 1), ('develop', 1), ('secure', 1), ('microservices', 1), ('team', 1)]
[('data', 2), ('mining', 2), ('machine', 2), ('learning', 2), ('application', 1), ('book', 1), ('elaborates', 1), ('detail', 1), ('current', 1), ('need', 1), ('promotes', 1), ('mutual', 1), ('understanding', 1), ('among', 1), ('research', 1), ('different', 1), ('discipline', 1)]
[('sie', 6), ('website', 2), ('und', 2), ('kunden', 2), ('erstellen', 1), ('eine', 1), ('wissen', 1), ('nicht', 1), ('wie', 1), ('sinnvoll', 1), ('aufbauen', 1), ('designen', 1), ('möchten', 1), ('ihre', 1), ('länger', 1), ('auf', 1), ('ihrer', 1), ('halten', 1), ('träumen', 1), ('davon', 1), ('das', 1), ('mehr', 1), ('den', 1), ('kaufen', 1), ('button', 1), ('klicken', 1), ('steigen', 1), ('mit', 1), ('diesem', 1), ('buch', 1), ('da', 1)]
[('kein', 1), ('zweifel', 1), ('über', 1), ('soziale', 1), ('medien', 1), ('erreichen', 1), ('sie', 1), ('ihre', 1), ('kunden', 1), ('besten', 1), ('authentischsten', 1), ('persönlichsten', 1), ('kann', 1), ('ihnen', 1), ('besseres', 1), ('passieren', 1), ('al', 1), ('wenn', 1), ('jemand', 1), ('ihr', 1), ('produkt', 1), ('beispielsweise', 1), ('auf', 1), ('facebook', 1), ('mit', 1), ('einer', 1), ('persönlichen', 1), ('empfehlung', 1), ('versieht', 1)]
[('pandemic', 2), ('book', 2), ('enabling', 1), ('healthcare', 1), ('explores', 1), ('role', 1), ('scope', 1), ('ai', 1), ('machine', 1), ('learning', 1), ('current', 1), ('technology', 1), ('handle', 1), ('timely', 1), ('editor', 1), ('explore', 1)]
[('public', 2), ('key', 2), ('cryptography', 1), ('introduced', 1), ('diffie', 1), ('hellman', 1), ('soon', 1), ('followed', 1), ('concrete', 1), ('instantiation', 1), ('encryption', 1), ('signature', 1), ('led', 1), ('entirely', 1), ('new', 1), ('field', 1), ('research', 1), ('formal', 1), ('definition', 1)]
[('february', 1), ('coronavirus', 1), ('pandemic', 1), ('became', 1), ('worldwide', 1), ('health', 1), ('emergency', 1), ('april', 1), ('year', 1), ('itu', 1), ('created', 1), ('joint', 1), ('declaration', 1), ('show', 1), ('commitment', 1), ('using', 1), ('icts', 1), ('overcome', 1)]
[('extent', 1), ('digitalization', 1), ('use', 1), ('digital', 1), ('tool', 1), ('longer', 1), ('need', 1), ('demonstrated', 1), ('company', 1), ('integrating', 1), ('challenge', 1), ('transformation', 1), ('year', 1), ('public', 1), ('sector', 1), ('lagging', 1), ('behind', 1), ('br', 1)]
[('network', 4), ('science', 2), ('step', 2), ('offer', 1), ('comprehensive', 1), ('insight', 1), ('analysis', 1), ('optimization', 1), ('algorithm', 1), ('simple', 1), ('guide', 1), ('example', 1), ('throughout', 1), ('thorough', 1)]
[('project', 2), ('indispensable', 1), ('study', 1), ('aid', 1), ('demand', 1), ('management', 1), ('certification', 1), ('newly', 1), ('updated', 1), ('second', 1), ('edition', 1), ('comptia', 1), ('practice', 1), ('test', 1), ('exam', 1), ('pk', 1), ('veteran', 1), ('tech', 1), ('educator', 1)]
[('dummy', 3), ('android', 3), ('become', 1), ('smartphone', 1), ('savvy', 1), ('smartphones', 1), ('new', 1), ('guide', 1), ('phone', 1), ('familiar', 1), ('charm', 1), ('everyone', 1), ('love', 1), ('book', 1), ('give', 1), ('rookie', 1)]
[('iphone', 2), ('dummy', 2), ('hey', 1), ('siri', 1), ('order', 1), ('loved', 1), ('guide', 1), ('apple', 1), ('killer', 1), ('smartphone', 1), ('updated', 1), ('book', 1), ('walk', 1), ('latest', 1), ('feature', 1), ('io', 1)]
[('excel', 4), ('macro', 2), ('save', 1), ('time', 1), ('become', 1), ('wizard', 1), ('world', 1), ('leading', 1), ('guide', 1), ('love', 1), ('thing', 1), ('wish', 1), ('work', 1), ('faster', 1), ('automated', 1), ('workflow', 1)]
[('mca', 2), ('azure', 2), ('security', 2), ('engineer', 2), ('exam', 2), ('prepare', 1), ('certification', 1), ('faster', 1), ('smarter', 1), ('help', 1), ('sybex', 1), ('microsoft', 1), ('certified', 1), ('associate', 1), ('study', 1), ('guide', 1)]
[('macos', 3), ('ventura', 2), ('learn', 1), ('in', 1), ('out', 1), ('dummy', 1), ('packed', 1), ('information', 1), ('need', 1), ('latest', 1), ('version', 1), ('expert', 1), ('tip', 1), ('trick', 1), ('troubleshooting', 1)]
[('ransomware', 2), ('victim', 2), ('avoid', 1), ('becoming', 1), ('next', 1), ('taking', 1), ('practical', 1), ('step', 1), ('today', 1), ('colonial', 1), ('pipeline', 1), ('cwt', 1), ('global', 1), ('brenntag', 1), ('travelex', 1), ('list', 1), ('long', 1), ('distinguished', 1), ('sophisticated', 1)]
[('distributed', 3), ('system', 2), ('topic', 2), ('comprehensive', 1), ('textbook', 1), ('resource', 1), ('integrates', 1), ('foundational', 1), ('advanced', 1), ('contemporary', 1), ('importance', 1), ('within', 1), ('field', 1)]
[('industry', 2), ('artificial', 1), ('intelligence', 1), ('technology', 1), ('explores', 1), ('innovative', 1), ('value', 1), ('added', 1), ('solution', 1), ('application', 1), ('problem', 1), ('commercial', 1), ('business', 1)]
[('data', 3), ('machine', 2), ('learning', 2), ('analytics', 2), ('business', 1), ('known', 1), ('mining', 1), ('fundamental', 1), ('part', 1), ('science', 1), ('used', 1), ('organization', 1), ('wide', 1), ('variety', 1), ('arena', 1), ('turn', 1), ('raw', 1)]
[('intelligent', 2), ('security', 2), ('system', 2), ('dramatically', 1), ('improve', 1), ('cybersecurity', 1), ('using', 1), ('ai', 1), ('machine', 1), ('learning', 1), ('distinguished', 1), ('professor', 1), ('computer', 1)]
[('visual', 2), ('learner', 2), ('fast', 1), ('easy', 1), ('way', 1), ('grip', 1), ('photoshop', 1), ('element', 1), ('prefer', 1), ('single', 1), ('crystal', 1), ('clear', 1), ('screenshot', 1), ('showing', 1), ('something', 1)]
[('linux', 3), ('test', 2), ('comptia', 2), ('exam', 2), ('best', 1), ('preparation', 1), ('resource', 1), ('certification', 1), ('newly', 1), ('updated', 1), ('third', 1), ('edition', 1), ('practice', 1), ('xk', 1), ('veteran', 1), ('expert', 1), ('steve', 1)]
[('agile', 2), ('unlocking', 1), ('missed', 1), ('potential', 1), ('delivered', 1), ('promise', 1), ('business', 1), ('side', 1), ('expected', 1), ('faster', 1), ('time', 1), ('market', 1), ('still', 1), ('experience', 1), ('long', 1), ('delay', 1), ('bloated', 1), ('release', 1), ('engineer', 1), ('thought', 1)]
[('ai', 3), ('iot', 3), ('intelligent', 2), ('connectivity', 2), ('explore', 1), ('economics', 1), ('technology', 1), ('integration', 1), ('delivers', 1)]
[('optical', 4), ('switching', 3), ('technology', 2), ('application', 2), ('comprehensive', 1), ('coverage', 1), ('network', 1), ('device', 1)]
[('die', 2), ('digitalisierung', 2), ('der', 2), ('und', 2), ('geht', 1), ('nicht', 1), ('mehr', 1), ('weg', 1), ('ein', 1), ('grundlegendes', 1), ('verständnis', 1), ('prinzipien', 1), ('ihrer', 1), ('wichtigsten', 1), ('anwendungen', 1), ('ist', 1), ('deshalb', 1), ('voraussetzung', 1), ('um', 1), ('beruf', 1), ('al', 1), ('privatperson', 1), ('informierte', 1), ('entscheidungen', 1), ('treffen', 1), ('zu', 1)]
[('laptop', 2), ('basic', 1), ('need', 1), ('comfortable', 1), ('without', 1), ('fluff', 1), ('senior', 1), ('dummy', 1), ('help', 1), ('reader', 1), ('club', 1)]
[('society', 2), ('new', 1), ('advanced', 1), ('included', 1), ('book', 1), ('fundamental', 1), ('artificial', 1), ('intelligence', 1), ('industrial', 1), ('internet', 1), ('thing', 1), ('featuring', 1), ('working', 1), ('principle', 1), ('application', 1)]
[('data', 3), ('study', 2), ('guide', 2), ('build', 1), ('solid', 1), ('foundation', 1), ('analysis', 1), ('skill', 1), ('pursue', 1), ('coveted', 1), ('certification', 1), ('intuitive', 1), ('comptia', 1), ('exam', 1), ('da', 1), ('delivers', 1), ('easily', 1)]
[('digital', 3), ('twin', 3), ('technology', 2), ('book', 1), ('lucidly', 1), ('explains', 1), ('fundamental', 1), ('along', 1), ('application', 1), ('various', 1), ('industrial', 1), ('real', 1), ('world', 1), ('example', 1), ('basically', 1)]
[('sicherheit', 2), ('der', 2), ('sie', 2), ('eine', 2), ('informationssicherheit', 2), ('informationstechnik', 1), ('müssen', 1), ('prüfung', 1), ('zur', 1), ('ablegen', 1), ('oder', 1), ('wollen', 1), ('berufslaufbahn', 1), ('einschlagen', 1)]
[('ambient', 2), ('intelligence', 2), ('internet', 2), ('thing', 2), ('book', 1), ('explores', 1), ('long', 1), ('term', 1), ('implementation', 1), ('technique', 1), ('research', 1), ('path', 1), ('meet', 1), ('design', 1)]
[('audio', 2), ('put', 1), ('together', 1), ('sounding', 1), ('track', 1), ('mac', 1), ('iphone', 1), ('ipad', 1), ('garageband', 1), ('dummy', 1), ('get', 1), ('started', 1), ('popular', 1), ('software', 1), ('included', 1), ('apple', 1), ('device', 1), ('simple', 1), ('app', 1), ('let', 1)]
[('another', 2), ('explore', 1), ('latest', 1), ('development', 1), ('cybersecurity', 1), ('essential', 1), ('guide', 1), ('every', 1), ('day', 1), ('seems', 1), ('story', 1), ('company', 1), ('targeted', 1), ('cybercriminals', 1), ('make', 1), ('wonder', 1)]
[('data', 2), ('exfiltration', 2), ('threat', 2), ('prevention', 2), ('technique', 2), ('comprehensive', 1), ('resource', 1), ('covering', 1), ('applying', 1), ('machine', 1), ('learning', 1), ('application', 1), ('aid', 1), ('identification', 1)]
[('integrated', 2), ('commercialization', 1), ('microprocessor', 1), ('modern', 1), ('form', 1), ('central', 1), ('processing', 1), ('unit', 1), ('continuously', 1), ('broken', 1), ('record', 1), ('term', 1), ('function', 1), ('computing', 1), ('power', 1), ('low', 1), ('cost', 1), ('energy', 1), ('saving', 1), ('status', 1), ('today', 1)]
[('linux', 3), ('everyone', 1), ('dummy', 1), ('break', 1), ('popular', 1), ('operating', 1), ('system', 1), ('basic', 1), ('train', 1), ('user', 1), ('art', 1), ('handy', 1), ('reference', 1), ('cover', 1)]
[('integrated', 2), ('commercialization', 1), ('microprocessor', 1), ('modern', 1), ('form', 1), ('central', 1), ('processing', 1), ('unit', 1), ('continuously', 1), ('broken', 1), ('record', 1), ('term', 1), ('function', 1), ('computing', 1), ('power', 1), ('low', 1), ('cost', 1), ('energy', 1), ('saving', 1), ('status', 1), ('today', 1)]
[('security', 2), ('technology', 2), ('social', 1), ('implication', 1), ('explains', 1), ('latest', 1), ('advance', 1), ('policing', 1), ('identify', 1), ('threat', 1), ('defend', 1), ('citizen', 1), ('crime', 1), ('terrorism', 1)]
[('cloud', 3), ('security', 2), ('technology', 2), ('embrace', 1), ('kick', 1), ('hacker', 1), ('curb', 1), ('accessible', 1), ('guide', 1), ('changed', 1), ('way', 1), ('approach', 1), ('given', 1), ('rise', 1), ('new', 1), ('set', 1)]
[('healthcare', 3), ('advanced', 1), ('system', 1), ('book', 1), ('offer', 1), ('complete', 1), ('package', 1), ('involving', 1), ('incubation', 1), ('machine', 1), ('learning', 1), ('ai', 1), ('iot', 1), ('beneficial', 1), ('researcher', 1), ('professional', 1), ('scientist', 1)]
[('energy', 3), ('renewable', 2), ('system', 2), ('artificial', 1), ('intelligence', 1), ('including', 1), ('solar', 1), ('wind', 1), ('biodiesel', 1), ('hybrid', 1), ('relevant', 1), ('type', 1), ('numerous', 1), ('advantage', 1), ('compared', 1), ('conventional', 1)]
[('sie', 2), ('oder', 2), ('ihnen', 2), ('wollen', 1), ('müssen', 1), ('zoom', 1), ('zur', 1), ('kommunikation', 1), ('nutzen', 1), ('egal', 1), ('ob', 1), ('privat', 1), ('geschäftlich', 1), ('e', 1), ('gibt', 1), ('viele', 1), ('funktionen', 1), ('einstellungen', 1), ('und', 1), ('tipps', 1), ('die', 1), ('da', 1), ('leben', 1), ('leichter', 1), ('machen', 1), ('phil', 1), ('simon', 1), ('erklärt', 1), ('diesem', 1), ('buch', 1), ('alles', 1), ('über', 1), ('chat', 1)]
[('sie', 2), ('und', 2), ('ihre', 2), ('website', 2), ('für', 2), ('haben', 1), ('ein', 1), ('unternehmen', 1), ('gegründet', 1), ('geht', 1), ('demnächst', 1), ('online', 1), ('sind', 1), ('gerüstet', 1), ('zahlreiche', 1), ('besucher', 1), ('hoffen', 1), ('auf', 1), ('hohe', 1), ('umsätze', 1), ('dann', 1), ('ist', 1), ('e', 1), ('zeit', 1), ('da', 1), ('feintuning', 1), ('diesis', 1), ('buch', 1), ('zeigt', 1), ('ihnen', 1), ('wie', 1), ('von', 1), ('google', 1), ('besser', 1)]
[('excel', 2), ('time', 1), ('truly', 1), ('lent', 1), ('spreadsheet', 1), ('reporting', 1), ('beneath', 1), ('seemingly', 1), ('endless', 1), ('row', 1), ('column', 1), ('cell', 1), ('latest', 1), ('version', 1), ('microsoft', 1), ('boast', 1), ('astonishing', 1), ('variety', 1), ('feature', 1)]
[('cybersecurity', 3), ('law', 2), ('learn', 1), ('protect', 1), ('client', 1), ('definitive', 1), ('guide', 1), ('fully', 1), ('updated', 1), ('third', 1), ('edition', 1), ('essential', 1), ('facet', 1), ('modern', 1), ('society', 1)]
[('convergence', 2), ('prepare', 1), ('coming', 1), ('ai', 1), ('quantum', 1), ('computing', 1), ('collection', 1), ('essay', 1), ('renowned', 1), ('international', 1), ('author', 1), ('working', 1), ('industry', 1), ('academia', 1), ('government', 1), ('artificial', 1)]
[('cybersecurity', 3), ('system', 2), ('network', 2), ('intelligent', 1), ('networking', 1), ('help', 1), ('protect', 1), ('important', 1), ('reference', 1), ('work', 1), ('privacy', 1), ('critical', 1), ('modern', 1)]
[('learn', 1), ('write', 1), ('practical', 1), ('reusable', 1), ('code', 1), ('straight', 1), ('forward', 1), ('tutorial', 1), ('tip', 1), ('newest', 1), ('edition', 1), ('dummy', 1), ('bestseller', 1), ('speak', 1), ('java', 1), ('talking', 1), ('morning', 1)]
[('biology', 2), ('system', 1), ('approach', 1), ('involves', 1), ('understanding', 1), ('complexity', 1), ('interaction', 1), ('among', 1), ('biological', 1), ('entity', 1), ('within', 1), ('systemic', 1), ('whole', 1), ('goal', 1), ('understand', 1), ('emergence', 1), ('physiological', 1), ('functional', 1)]
[('azure', 2), ('data', 2), ('study', 2), ('prepare', 1), ('engineering', 1), ('certification', 1), ('exciting', 1), ('new', 1), ('career', 1), ('analytics', 1), ('aide', 1), ('mca', 1), ('microsoft', 1), ('certified', 1), ('associate', 1), ('engineer', 1)]
[('method', 2), ('deep', 2), ('learning', 2), ('technique', 1), ('introduces', 1), ('multiple', 1), ('state', 1), ('art', 1), ('architecture', 1), ('mmwave', 1), ('radar', 1), ('variety', 1), ('advanced', 1), ('application', 1)]
[('secret', 1), ('weapon', 1), ('understanding', 1), ('using', 1), ('powerful', 1), ('influence', 1), ('world', 1), ('today', 1), ('facebook', 1), ('news', 1), ('feed', 1), ('recent', 1), ('insurance', 1), ('premium', 1), ('even', 1), ('making', 1), ('toast', 1), ('algorithm', 1)]
[('deep', 3), ('learning', 3), ('security', 2), ('iot', 2), ('environment', 2), ('approach', 1), ('threat', 1), ('expert', 1), ('discussion', 1), ('application', 1), ('method', 1)]
[('intelligence', 2), ('roadmap', 1), ('enabling', 1), ('industry', 1), ('artificaial', 1), ('book', 1), ('present', 1), ('comprehensive', 1), ('date', 1), ('technological', 1), ('solution', 1), ('main', 1), ('aspect', 1), ('regarding', 1), ('application', 1), ('artificial', 1)]
[('python', 2), ('programming', 2), ('create', 1), ('simple', 1), ('easy', 1), ('program', 1), ('popular', 1), ('language', 1), ('beginning', 1), ('dummy', 1), ('trusted', 1), ('way', 1), ('learn', 1), ('foundation', 1), ('using', 1)]
[('cyberspace', 1), ('data', 1), ('flow', 1), ('transit', 1), ('massively', 1), ('freely', 1), ('planetary', 1), ('scale', 1), ('generalization', 1), ('encryption', 1), ('made', 1), ('necessary', 1), ('need', 1), ('protect', 1), ('exchange', 1), ('resulted', 1), ('state', 1), ('intelligence', 1), ('service', 1), ('forgoing', 1)]
[('cybersecurity', 3), ('comprehensive', 1), ('overview', 1), ('director', 1), ('aiming', 1), ('meet', 1), ('responsibility', 1), ('cyber', 1), ('guardian', 1), ('empowering', 1), ('board', 1), ('member', 1), ('effective', 1), ('veteran', 1)]
[('city', 3), ('smart', 2), ('new', 2), ('intelligent', 1), ('decision', 1), ('support', 1), ('system', 1), ('application', 1), ('book', 1), ('provides', 1), ('framework', 1), ('address', 1), ('difficulty', 1), ('adding', 1), ('feature', 1), ('allowing', 1), ('environment', 1), ('react', 1)]
[('mac', 2), ('office', 2), ('turn', 1), ('productivity', 1), ('powerhouse', 1), ('long', 1), ('gone', 1), ('day', 1), ('microsoft', 1), ('powerful', 1), ('suite', 1), ('window', 1), ('user', 1), ('enthusiast', 1), ('able', 1), ('pop', 1), ('open', 1), ('ubiquitous', 1), ('apps', 1)]
[('window', 2), ('learn', 1), ('quickly', 1), ('easily', 1), ('expert', 1), ('help', 1), ('tech', 1), ('education', 1), ('master', 1), ('simplified', 1), ('scratch', 1), ('beginner', 1), ('guide', 1), ('in', 1), ('out', 1), ('latest', 1), ('version', 1)]
[('intelligence', 2), ('sustainable', 2), ('artifical', 1), ('application', 1), ('objective', 1), ('book', 1), ('leverage', 1), ('significance', 1), ('artificial', 1), ('achieving', 1), ('solution', 1), ('using', 1)]
[('chance', 1), ('calculation', 1), ('life', 1), ('brings', 1), ('together', 1), ('original', 1), ('paper', 1), ('colloquium', 1), ('name', 1), ('organized', 1), ('international', 1), ('cultural', 1), ('center', 1), ('cerisy', 1), ('mathematics', 1), ('humanity', 1)]
[('machine', 2), ('architecture', 2), ('hardware', 2), ('implementation', 2), ('explainable', 1), ('learning', 1), ('model', 1), ('cutting', 1), ('edge', 1), ('new', 1), ('volume', 1), ('cover', 1), ('software', 1), ('approach', 1), ('efficient', 1)]
[('decision', 2), ('making', 2), ('system', 2), ('engineering', 2), ('management', 2), ('thoroughly', 1), ('updated', 1), ('overview', 1), ('newly', 1), ('revised', 1), ('third', 1), ('edition', 1)]
[('machine', 2), ('learning', 2), ('hardware', 2), ('implementation', 2), ('technique', 1), ('vlsi', 1), ('chip', 1), ('design', 1), ('cutting', 1), ('edge', 1), ('new', 1), ('volume', 1), ('cover', 1), ('architecture', 1), ('software', 1), ('approach', 1), ('efficient', 1)]
[('network', 3), ('ai', 2), ('machine', 2), ('learning', 2), ('security', 2), ('management', 2), ('extensive', 1), ('resource', 1), ('understanding', 1), ('key', 1), ('task', 1)]
[('smart', 2), ('city', 2), ('infrastructure', 1), ('wide', 1), ('range', 1), ('topic', 1), ('presented', 1), ('book', 1), ('chosen', 1), ('provide', 1), ('reader', 1), ('better', 1), ('understanding', 1), ('integrated', 1), ('ai', 1), ('blockchain', 1), ('related', 1)]
[('sscp', 3), ('security', 2), ('official', 1), ('body', 1), ('knowledge', 1), ('isc', 1), ('popular', 1), ('credential', 1), ('hand', 1), ('professional', 1), ('fully', 1), ('revised', 1), ('updated', 1), ('exam', 1), ('outline', 1), ('system', 1), ('certified', 1), ('practitioner', 1), ('elite', 1)]
[('step', 2), ('move', 1), ('phone', 1), ('snapshot', 1), ('start', 1), ('making', 1), ('amazing', 1), ('image', 1), ('canon', 1), ('eos', 1), ('dummy', 1), ('help', 1), ('create', 1), ('superior', 1), ('photo', 1), ('video', 1), ('content', 1), ('instruction', 1), ('make', 1)]
[('step', 2), ('new', 2), ('galaxy', 2), ('roadmap', 1), ('unlocking', 1), ('full', 1), ('potential', 1), ('samsung', 1), ('packed', 1), ('feature', 1), ('count', 1), ('go', 1), ('using', 1)]
[('self', 2), ('powered', 2), ('cyber', 2), ('physical', 2), ('system', 2), ('cutting', 1), ('edge', 1), ('new', 1), ('volume', 1), ('provides', 1), ('comprehensive', 1), ('exploration', 1), ('emerging', 1), ('technology', 1), ('trend', 1), ('energy', 1), ('management', 1), ('device', 1)]
[('datenbanken', 1), ('sind', 1), ('unverzichtbare', 1), ('basis', 1), ('fast', 1), ('aller', 1), ('informationssysteme', 1), ('diesis', 1), ('dritter', 1), ('erweiterter', 1), ('auflage', 1), ('vorliegende', 1), ('buch', 1), ('vermittelt', 1), ('ihnen', 1), ('da', 1), ('notwendige', 1), ('grundlagenwissen', 1), ('zu', 1), ('datenbanksystemen', 1), ('dabei', 1), ('werden', 1), ('nach', 1), ('einem', 1), ('allgemeinen', 1), ('überblick', 1)]
[('apple', 2), ('watch', 2), ('info', 1), ('want', 1), ('none', 1), ('fluff', 1), ('senior', 1), ('dummy', 1), ('help', 1), ('smart', 1), ('device', 1), ('start', 1), ('basic', 1)]
[('data', 4), ('privacy', 2), ('preservation', 2), ('genomic', 2), ('medical', 1), ('discus', 1), ('topic', 1), ('concerning', 1), ('digital', 1), ('era', 1), ('including', 1), ('security', 1)]
[('future', 2), ('internet', 2), ('incisive', 1), ('glimpse', 1), ('step', 1), ('metaverse', 1), ('immersive', 1), ('unlock', 1), ('trillion', 1), ('dollar', 1), ('social', 1), ('economy', 1), ('tech', 1), ('strategist', 1)]
[('data', 1), ('structure', 1), ('algorithm', 1), ('fundamental', 1), ('course', 1), ('computer', 1), ('science', 1), ('enables', 1), ('learner', 1), ('across', 1), ('discipline', 1), ('develop', 1), ('needed', 1), ('foundation', 1), ('efficient', 1), ('programming', 1), ('leading', 1), ('better', 1), ('problem', 1), ('solving', 1)]
[('next', 2), ('generation', 2), ('system', 2), ('automated', 1), ('secure', 1), ('computing', 1), ('book', 1), ('provides', 1), ('cutting', 1), ('edge', 1), ('chapter', 1), ('machine', 1), ('empowered', 1), ('solution', 1), ('today', 1), ('society', 1), ('security', 1)]
[('computing', 4), ('soft', 3), ('principle', 1), ('using', 1), ('python', 1), ('programming', 1), ('accessible', 1), ('guide', 1), ('revolutionary', 1), ('technique', 1), ('approach', 1), ('designed', 1), ('replicate', 1)]
[('cysa', 2), ('exam', 2), ('best', 1), ('way', 1), ('prep', 1), ('c', 1), ('certification', 1), ('hone', 1), ('practical', 1), ('cybersecurity', 1), ('skillset', 1), ('newly', 1), ('updated', 1), ('rd', 1), ('edition', 1), ('comptia', 1), ('practice', 1), ('test', 1)]
[('video', 2), ('filming', 1), ('stop', 1), ('real', 1), ('production', 1), ('work', 1), ('begin', 1), ('wonder', 1), ('favorite', 1), ('creator', 1), ('regularly', 1), ('put', 1), ('slick', 1), ('content', 1), ('probably', 1), ('using', 1), ('adobe', 1), ('premiere', 1), ('pro', 1), ('cc', 1), ('go', 1)]
[('despite', 1), ('uncertainty', 1), ('born', 1), ('act', 1), ('faced', 1), ('environmental', 1), ('aggression', 1), ('upheaval', 1), ('inaction', 1), ('stressful', 1), ('action', 1), ('choice', 1), ('strategy', 1), ('method', 1), ('need', 1), ('implemented', 1)]
[('accounting', 2), ('learn', 1), ('world', 1), ('popular', 1), ('cloud', 1), ('platform', 1), ('quickbooks', 1), ('online', 1), ('dummy', 1), ('edition', 1), ('help', 1), ('benefit', 1), ('fast', 1), ('easy', 1), ('mobile', 1), ('beginner', 1), ('friendly', 1), ('guide', 1)]
[('intelligence', 2), ('cybernetical', 1), ('highly', 1), ('comprehensive', 1), ('detailed', 1), ('date', 1), ('overview', 1), ('artificial', 1), ('cybernetics', 1), ('practical', 1), ('example', 1), ('supplementary', 1), ('learning', 1), ('resource', 1)]
[('iphone', 3), ('updated', 2), ('latest', 2), ('io', 2), ('smart', 1), ('guide', 1), ('smartphone', 1), ('release', 1), ('fully', 1), ('cover', 1), ('newest', 1), ('feature', 1), ('model', 1), ('dummy', 1), ('help', 1)]
[('accelerator', 2), ('convolutional', 2), ('neural', 2), ('network', 2), ('comprehensive', 1), ('thorough', 1), ('resource', 1), ('exploring', 1), ('different', 1), ('type', 1), ('complementary', 1)]
[('macos', 2), ('sonoma', 2), ('dummy', 2), ('make', 1), ('friend', 1), ('thanks', 1), ('simple', 1), ('style', 1), ('instruction', 1), ('go', 1), ('guide', 1), ('finding', 1), ('way', 1), ('around', 1), ('apple', 1), ('laptop', 1), ('desktop', 1)]
[('guide', 2), ('comptia', 2), ('datasys', 2), ('exam', 2), ('preparing', 1), ('study', 1), ('d', 1), ('team', 1), ('accomplished', 1), ('expert', 1), ('delivers', 1), ('practical', 1), ('hand', 1)]
[('web', 3), ('development', 3), ('lpi', 2), ('essential', 2), ('exam', 2), ('pas', 1), ('set', 1), ('success', 1), ('new', 1), ('job', 1), ('linux', 1), ('professional', 1), ('institute', 1), ('study', 1), ('guide', 1)]
[('learning', 2), ('quantum', 2), ('computer', 2), ('machine', 1), ('deep', 1), ('probabilistic', 1), ('neural', 1), ('network', 1), ('blockchain', 1), ('new', 1), ('technology', 1), ('demand', 1), ('extremely', 1), ('high', 1), ('processing', 1), ('speed', 1), ('example', 1), ('system', 1), ('accessed', 1)]
[('communication', 2), ('technology', 2), ('ai', 1), ('application', 1), ('information', 1), ('apply', 1), ('future', 1), ('networking', 1), ('artificial', 1), ('intelligence', 1), ('enables', 1), ('computer', 1)]
[('certified', 2), ('aws', 2), ('cloud', 2), ('practitioner', 2), ('distinguish', 1), ('becoming', 1), ('newly', 1), ('revised', 1), ('second', 1), ('edition', 1), ('study', 1), ('guide', 1), ('foundational', 1), ('clf', 1), ('exam', 1)]
[('ccsp', 2), ('certified', 2), ('cloud', 2), ('security', 2), ('elevate', 1), ('career', 1), ('world', 1), ('dummy', 1), ('valuable', 1), ('resource', 1), ('anyone', 1), ('seeking', 1), ('gain', 1), ('professional', 1)]
[('step', 2), ('revit', 2), ('architecture', 2), ('latest', 1), ('authoritative', 1), ('version', 1), ('popular', 1), ('tutorial', 1), ('newly', 1), ('revised', 1), ('third', 1), ('edition', 1), ('experience', 1), ('required', 1)]
[('print', 1), ('whatever', 1), ('dream', 1), ('printing', 1), ('dummy', 1), ('easy', 1), ('reference', 1), ('anyone', 1), ('new', 1), ('process', 1), ('taking', 1), ('digital', 1), ('file', 1), ('turning', 1), ('object', 1), ('real', 1), ('world', 1)]
[('computer', 3), ('engineering', 2), ('quantum', 2), ('explore', 1), ('intersection', 1), ('science', 1), ('physic', 1), ('electrical', 1), ('discussion', 1), ('principle', 1), ('superconducting', 1)]
[('software', 2), ('measure', 1), ('currently', 1), ('proposed', 1), ('industry', 1), ('bring', 1), ('real', 1), ('benefit', 1), ('either', 1), ('manager', 1), ('developer', 1), ('book', 1), ('look', 1), ('classical', 1), ('metrology', 1), ('concept', 1), ('science', 1), ('engineering', 1), ('using', 1), ('criterion', 1), ('propose', 1)]
[('interaction', 2), ('first', 1), ('goal', 1), ('book', 1), ('extend', 1), ('mind', 1), ('originating', 1), ('behavioral', 1), ('economics', 1), ('domain', 1), ('time', 1), ('dimension', 1), ('dealt', 1), ('rigorously', 1), ('human', 1), ('machine', 1), ('crucial', 1), ('importance', 1)]
[('spark', 3), ('production', 2), ('targeted', 2), ('guidance', 2), ('real', 1), ('world', 1), ('use', 1), ('case', 1), ('big', 1), ('data', 1), ('cluster', 1), ('computing', 1), ('go', 1), ('beyond', 1), ('general', 1), ('overview', 1), ('provide', 1), ('toward', 1), ('using', 1)]
[('set', 3), ('defend', 2), ('attack', 2), ('book', 2), ('security', 2), ('network', 1), ('data', 1), ('unique', 1), ('computer', 1), ('comprised', 1), ('bestselling', 1), ('second', 1), ('edition', 1)]
[('note', 1), ('correct', 1), ('url', 1), ('access', 1), ('sybex', 1), ('interactive', 1), ('online', 1), ('test', 1), ('bank', 1), ('study', 1), ('tool', 1), ('book', 1), ('back', 1), ('cover', 1), ('introduction', 1)]
[('knowledge', 2), ('organization', 1), ('becoming', 1), ('aware', 1), ('importance', 1), ('tacit', 1), ('explicit', 1), ('owned', 1), ('member', 1), ('corresponds', 1), ('experience', 1), ('accumulated', 1), ('firm', 1), ('activity', 1), ('considering', 1), ('large', 1)]
[('air', 3), ('traffic', 3), ('management', 3), ('many', 2), ('different', 2), ('involves', 1), ('service', 1), ('airspace', 1), ('flow', 1), ('control', 1), ('optimization', 1), ('problem', 1), ('arise', 1), ('topic', 1), ('generally', 1), ('involve', 1), ('kind', 1)]
[('book', 1), ('aim', 1), ('extract', 1), ('molecular', 1), ('gene', 1), ('leading', 1), ('craziness', 1), ('genius', 1), ('one', 1), ('crazy', 1), ('enough', 1), ('think', 1), ('change', 1), ('world', 1), ('boldly', 1), ('go', 1), ('gone', 1), ('past', 1), ('habit', 1), ('usage', 1), ('available', 1)]
[('theory', 2), ('computer', 2), ('vision', 2), ('explains', 1), ('behind', 1), ('basic', 1), ('provides', 1), ('bridge', 1), ('practical', 1), ('implementation', 1), ('using', 1), ('industry', 1), ('standard', 1), ('opencv', 1), ('library', 1), ('rapidly', 1), ('expanding', 1)]
[('reliability', 2), ('availability', 2), ('cloud', 2), ('computing', 2), ('holistic', 1), ('approach', 1), ('service', 1), ('provides', 1), ('system', 1), ('solution', 1), ('architect', 1)]
[('information', 2), ('communication', 1), ('technology', 1), ('increased', 1), ('share', 1), ('service', 1), ('contemporary', 1), ('economic', 1), ('exchange', 1), ('witnessing', 1), ('transformation', 1), ('modern', 1), ('economy', 1), ('characterized', 1), ('predominant', 1), ('role', 1), ('knowledge', 1)]
[('probability', 2), ('random', 2), ('variable', 1), ('process', 1), ('comprehensive', 1), ('textbook', 1), ('theory', 1), ('engineer', 1), ('provides', 1), ('rigorous', 1), ('mathematical', 1), ('framework', 1), ('usually', 1), ('encountered', 1), ('undergraduate', 1)]
[('team', 2), ('foundation', 2), ('server', 2), ('everyone', 1), ('integral', 1), ('part', 1), ('microsoft', 1), ('application', 1), ('lifecycle', 1), ('management', 1), ('suite', 1), ('managing', 1), ('delivering', 1), ('software', 1), ('project', 1), ('update', 1), ('opened', 1)]
[('quantum', 3), ('network', 1), ('build', 1), ('entanglement', 1), ('measurement', 1), ('achieve', 1), ('task', 1), ('beyond', 1), ('reach', 1), ('classical', 1), ('system', 1), ('using', 1), ('effect', 1), ('detect', 1), ('presence', 1), ('eavesdropper', 1), ('raise', 1), ('sensitivity', 1), ('scientific', 1)]
[('development', 2), ('complex', 2), ('past', 1), ('year', 1), ('software', 1), ('architecture', 1), ('significantly', 1), ('contributed', 1), ('distributed', 1), ('system', 1), ('nowadays', 1), ('recognized', 1), ('critical', 1), ('problem', 1), ('design', 1)]
[('spam', 2), ('behavior', 2), ('associated', 2), ('book', 1), ('study', 1), ('cause', 1), ('generation', 1), ('exposure', 1), ('protection', 1), ('strategy', 1), ('new', 1), ('electronic', 1), ('communication', 1), ('identified', 1)]
[('book', 2), ('research', 2), ('summary', 1), ('decade', 1), ('area', 1), ('backend', 1), ('optimization', 1), ('contains', 1), ('latest', 1), ('fundamental', 1), ('result', 1), ('field', 1), ('existing', 1), ('often', 1), ('oriented', 1), ('toward', 1), ('master', 1), ('student', 1)]
[('consumption', 2), ('system', 2), ('environmental', 2), ('energy', 1), ('issue', 1), ('distributed', 1), ('computing', 1), ('raise', 1), ('various', 1), ('monetary', 1), ('performance', 1), ('concern', 1), ('electricity', 1), ('doubled', 1), ('financial', 1), ('standpoint', 1)]
[('project', 4), ('microsoft', 2), ('comprehensive', 1), ('reference', 1), ('latest', 1), ('version', 1), ('leading', 1), ('enterprise', 1), ('management', 1), ('software', 1), ('allows', 1), ('user', 1), ('manage', 1), ('business', 1), ('activity', 1), ('effectively', 1), ('sharing', 1)]
[('bestseller', 2), ('linux', 2), ('updated', 1), ('guru', 1), ('chris', 1), ('negus', 1), ('packed', 1), ('array', 1), ('new', 1), ('revised', 1), ('material', 1), ('longstanding', 1), ('ubuntu', 1), ('toolbox', 1), ('taught', 1)]
[('manual', 2), ('window', 2), ('desktop', 2), ('technician', 2), ('administrator', 2), ('estimated', 1), ('percent', 1), ('world', 1), ('computer', 1), ('run', 1), ('need', 1), ('comprehensive', 1), ('guide', 1)]
[('project', 4), ('guide', 2), ('manager', 2), ('microsoft', 2), ('ideal', 1), ('job', 1), ('reference', 1), ('use', 1), ('using', 1), ('written', 1), ('real', 1), ('perspective', 1), ('packed', 1)]
[('quality', 2), ('software', 2), ('concise', 1), ('engineering', 1), ('oriented', 1), ('resource', 1), ('provides', 1), ('practical', 1), ('support', 1), ('professional', 1), ('responsible', 1), ('system', 1), ('develop', 1), ('stem', 1)]
[('model', 2), ('based', 2), ('provides', 1), ('practical', 1), ('comprehensive', 1), ('introduction', 1), ('key', 1), ('aspect', 1), ('testing', 1), ('taught', 1), ('istqb', 1), ('tester', 1), ('foundation', 1), ('level', 1), ('certification', 1), ('syllabus', 1), ('book', 1), ('cover', 1)]
[('development', 2), ('complex', 2), ('past', 1), ('year', 1), ('software', 1), ('architecture', 1), ('significantly', 1), ('contributed', 1), ('distributed', 1), ('system', 1), ('nowadays', 1), ('recognized', 1), ('critical', 1), ('problem', 1), ('design', 1)]
[('autodesk', 2), ('d', 2), ('max', 2), ('speed', 1), ('quickly', 1), ('compelling', 1), ('full', 1), ('color', 1), ('guide', 1), ('real', 1), ('world', 1), ('hand', 1), ('exercise', 1), ('essential', 1), ('help', 1), ('new', 1), ('user', 1), ('learn', 1)]
[('local', 2), ('search', 2), ('optimization', 2), ('book', 1), ('cover', 1), ('combinatorial', 1), ('extension', 1), ('mixed', 1), ('variable', 1), ('although', 1), ('yet', 1), ('understood', 1), ('theoretical', 1), ('point', 1), ('view', 1), ('paradigm', 1), ('choice', 1), ('tackling', 1), ('large', 1), ('scale', 1)]
[('geometry', 2), ('radiation', 2), ('physic', 2), ('reconciliation', 1), ('perception', 1), ('approach', 1), ('topic', 1), ('projective', 1), ('applies', 1), ('attempt', 1), ('negate', 1), ('negative', 1), ('reputation', 1), ('original', 1), ('outlook', 1)]
[('maya', 2), ('animation', 2), ('expand', 1), ('skill', 1), ('complete', 1), ('mastery', 1), ('mastering', 1), ('autodesk', 1), ('ultimate', 1), ('guide', 1), ('popular', 1), ('software', 1), ('author', 1), ('todd', 1), ('palamar', 1), ('draw', 1), ('extensive', 1), ('professional', 1)]
[('provides', 1), ('modern', 1), ('enterprise', 1), ('tool', 1), ('create', 1), ('robust', 1), ('digital', 1), ('platform', 1), ('utilizing', 1), ('proven', 1), ('best', 1), ('practice', 1), ('practical', 1), ('model', 1), ('time', 1), ('tested', 1), ('technique', 1), ('contemporary', 1), ('business', 1), ('organization', 1)]
[('really', 2), ('digital', 1), ('humanity', 1), ('come', 1), ('news', 1), ('theoretical', 1), ('technical', 1), ('influence', 1), ('participate', 1), ('scientific', 1), ('field', 1), ('arouses', 1), ('interest', 1), ('question', 1), ('book', 1), ('try', 1), ('show', 1), ('explain', 1)]
[('book', 1), ('explores', 1), ('impact', 1), ('information', 1), ('system', 1), ('management', 1), ('north', 1), ('south', 1), ('asymmetric', 1), ('strategic', 1), ('alliance', 1), ('series', 1), ('depth', 1), ('case', 1), ('study', 1), ('analyze', 1), ('different', 1), ('type', 1), ('partnership', 1), ('positioned', 1), ('heart', 1)]
[('collective', 2), ('intelligence', 2), ('better', 2), ('book', 1), ('analysis', 1), ('development', 1), ('knowledge', 1), ('diversity', 1), ('temperament', 1), ('behavioural', 1), ('relational', 1), ('process', 1), ('purpose', 1), ('help', 1), ('reader', 1), ('become', 1)]
[('swift', 2), ('language', 2), ('cloud', 2), ('write', 1), ('run', 1), ('program', 1), ('written', 1), ('team', 1), ('developer', 1), ('helped', 1), ('bring', 1), ('computing', 1), ('definitive', 1), ('guide', 1), ('writing', 1), ('running', 1)]
[('main', 1), ('aim', 1), ('book', 1), ('offer', 1), ('company', 1), ('simple', 1), ('practical', 1), ('method', 1), ('ass', 1), ('maturity', 1), ('governance', 1), ('information', 1), ('system', 1), ('working', 1), ('order', 1), ('face', 1), ('challenge', 1), ('digital', 1), ('transformation', 1)]
[('virtual', 1), ('augmented', 1), ('reality', 1), ('existed', 1), ('long', 1), ('time', 1), ('stuck', 1), ('research', 1), ('world', 1), ('large', 1), ('manufacturing', 1), ('company', 1), ('appearance', 1), ('low', 1), ('cost', 1), ('device', 1), ('expected', 1), ('number', 1), ('new', 1), ('application', 1), ('including', 1)]
[('digital', 3), ('archive', 2), ('collective', 1), ('intelligence', 1), ('tool', 1), ('us', 1), ('set', 1), ('coordinated', 1), ('imad', 1), ('saleh', 1), ('book', 1), ('present', 1), ('date', 1), ('research', 1), ('different', 1), ('area', 1)]
[('cps', 2), ('written', 1), ('team', 1), ('expert', 1), ('forefront', 1), ('cyber', 1), ('physical', 1), ('system', 1), ('revolution', 1), ('book', 1), ('provides', 1), ('depth', 1), ('look', 1), ('security', 1), ('privacy', 1), ('critical', 1), ('challenge', 1), ('facing', 1), ('research', 1), ('development', 1)]
[('digital', 3), ('graphical', 2), ('practice', 1), ('shaped', 1), ('representation', 1), ('appear', 1), ('computer', 1), ('screen', 1), ('principal', 1), ('surface', 1), ('designing', 1), ('visualizing', 1), ('interacting', 1), ('information', 1), ('image', 1)]
[('virtual', 2), ('reality', 2), ('computer', 2), ('groundbreaking', 1), ('textbook', 1), ('even', 1), ('better', 1), ('powerful', 1), ('compelling', 1), ('application', 1), ('human', 1), ('interface', 1), ('interact', 1), ('generated', 1), ('environment', 1), ('way', 1)]
[('cloud', 3), ('computing', 2), ('purpose', 1), ('book', 1), ('first', 1), ('study', 1), ('concept', 1), ('security', 1), ('concern', 1), ('data', 1), ('center', 1), ('live', 1), ('migration', 1), ('importance', 1), ('role', 1), ('firewall', 1), ('domain', 1), ('particular', 1), ('focus', 1), ('virtual', 1)]
[('finance', 2), ('book', 1), ('monograph', 1), ('cross', 1), ('disciplinary', 1), ('area', 1), ('computational', 1), ('intelligence', 1), ('elucidates', 1), ('collection', 1), ('practical', 1), ('strategic', 1), ('portfolio', 1), ('optimization', 1), ('model', 1), ('employ', 1), ('metaheuristics', 1)]
[('security', 3), ('information', 2), ('system', 2), ('regarded', 1), ('organized', 1), ('set', 1), ('resource', 1), ('technological', 1), ('human', 1), ('take', 1), ('specificity', 1), ('consideration', 1), ('order', 1), ('ensure', 1), ('overall', 1)]
[('collaborative', 2), ('research', 2), ('project', 1), ('allows', 1), ('fundamental', 1), ('advance', 1), ('understanding', 1), ('phenomenon', 1), ('development', 1), ('practical', 1), ('calculation', 1), ('method', 1), ('used', 1), ('engineer', 1)]
[('maritime', 2), ('problem', 2), ('regarding', 2), ('metaheuristic', 1), ('algorithm', 1), ('operation', 1), ('optimization', 1), ('focus', 1), ('seaside', 1), ('port', 1), ('side', 1), ('transportation', 1), ('book', 1), ('review', 1), ('introduces', 1), ('important', 1), ('shipping', 1), ('network', 1)]
[('javascript', 2), ('book', 1), ('teach', 1), ('take', 1), ('advantage', 1), ('language', 1), ('process', 1), ('data', 1), ('provided', 1), ('internet', 1), ('attention', 1), ('given', 1), ('main', 1), ('backbone', 1), ('prototype', 1), ('based', 1), ('object', 1), ('functional', 1)]
[('present', 2), ('approach', 2), ('book', 1), ('complete', 1), ('modeling', 1), ('human', 1), ('psychic', 1), ('system', 1), ('allows', 1), ('generate', 1), ('thought', 1), ('strictly', 1), ('organizational', 1), ('mix', 1), ('rising', 1), ('falling', 1), ('model', 1), ('architecture', 1)]
[('city', 4), ('learn', 2), ('smart', 2), ('intelligence', 1), ('capacity', 1), ('past', 1), ('history', 1), ('culture', 1), ('territory', 1), ('unlike', 1), ('build', 1), ('scratch', 1), ('nothing', 1), ('standard', 1), ('car', 1)]
[('swift', 2), ('transition', 1), ('objective', 1), ('cleaner', 1), ('functional', 1), ('quickly', 1), ('easily', 1), ('professional', 1), ('show', 1), ('create', 1), ('mac', 1), ('iphone', 1), ('application', 1), ('using', 1), ('apple', 1), ('new', 1), ('programming', 1), ('language', 1)]
[('health', 2), ('care', 2), ('patient', 1), ('revolution', 1), ('author', 1), ('krisa', 1), ('tailor', 1), ('noted', 1), ('expert', 1), ('innovation', 1), ('management', 1), ('explores', 1), ('lens', 1), ('design', 1), ('thinking', 1), ('information', 1), ('technology', 1), ('take', 1), ('experience', 1)]
[('widely', 1), ('used', 1), ('across', 1), ('industrial', 1), ('manufacturing', 1), ('automation', 1), ('programmable', 1), ('logic', 1), ('controller', 1), ('plcs', 1), ('perform', 1), ('broad', 1), ('range', 1), ('electromechanical', 1), ('task', 1), ('multiple', 1), ('input', 1), ('output', 1), ('arrangement', 1), ('designed', 1), ('specifically', 1), ('cope', 1), ('severe', 1)]
[('larger', 2), ('growth', 1), ('social', 1), ('networking', 1), ('potential', 1), ('breach', 1), ('sensitive', 1), ('data', 1), ('vital', 1), ('enterprise', 1), ('ensure', 1), ('computer', 1), ('user', 1), ('adhere', 1), ('corporate', 1), ('policy', 1), ('project', 1), ('staff', 1), ('design', 1), ('secure', 1), ('system', 1), ('written', 1)]
[('data', 2), ('present', 1), ('methodology', 1), ('big', 1), ('analysis', 1), ('using', 1), ('example', 1), ('research', 1), ('industry', 1), ('large', 1), ('amount', 1), ('everywhere', 1), ('ability', 1), ('pick', 1), ('crucial', 1), ('information', 1), ('increasingly', 1)]
[('post', 2), ('production', 2), ('breathe', 1), ('deep', 1), ('relax', 1), ('book', 1), ('take', 1), ('stress', 1), ('photography', 1), ('capturing', 1), ('perfect', 1), ('photograph', 1), ('welcome', 1), ('creative', 1), ('challenge', 1), ('photographer', 1)]
[('introductory', 1), ('textbook', 1), ('important', 1), ('area', 1), ('network', 1), ('security', 1), ('undergraduate', 1), ('graduate', 1), ('student', 1), ('comprehensively', 1), ('cover', 1), ('fundamental', 1), ('concept', 1), ('newer', 1), ('topic', 1), ('electronic', 1), ('cash', 1), ('bit', 1), ('coin', 1)]
[('da', 2), ('ipad', 2), ('kitzeln', 1), ('sie', 1), ('beste', 1), ('au', 1), ('ihrem', 1), ('heraus', 1), ('mit', 1), ('dem', 1), ('kann', 1), ('weitaus', 1), ('mehr', 1), ('al', 1), ('internet', 1), ('surfen', 1), ('und', 1), ('mail', 1), ('verschicken', 1), ('schicke', 1), ('tablet', 1), ('vereint', 1), ('computer', 1), ('fotoalbum', 1), ('navigationsgerät', 1)]
[('level', 3), ('book', 2), ('low', 2), ('fill', 1), ('gap', 1), ('high', 1), ('overview', 1), ('text', 1), ('often', 1), ('general', 1), ('detail', 1), ('oriented', 1), ('technical', 1), ('handbook', 1), ('lose', 1), ('sight', 1), ('big', 1), ('picture', 1), ('discus', 1), ('soa', 1), ('perspective', 1), ('middleware', 1), ('various', 1)]
[('case', 2), ('study', 2), ('based', 1), ('experience', 1), ('depth', 1), ('software', 1), ('project', 1), ('international', 1), ('corporation', 1), ('book', 1), ('author', 1), ('present', 1), ('detailed', 1), ('practical', 1), ('guideline', 1), ('preparation', 1), ('conduct', 1), ('design', 1), ('reporting', 1)]
[('create', 2), ('test', 2), ('javascript', 2), ('robust', 1), ('application', 1), ('first', 1), ('approach', 1), ('reliable', 1), ('code', 1), ('safely', 1), ('world', 1), ('dangerous', 1), ('language', 1), ('demonstrates', 1), ('driven', 1)]
[('everything', 2), ('know', 2), ('computer', 1), ('knew', 1), ('thingsusing', 1), ('data', 1), ('gathered', 1), ('without', 1), ('help', 1), ('uswe', 1), ('able', 1), ('track', 1), ('count', 1), ('greatly', 1), ('reduce', 1), ('waste', 1), ('loss', 1), ('cost', 1), ('thing', 1)]
[('researcher', 1), ('practitioner', 1), ('food', 1), ('science', 1), ('technology', 1), ('routinely', 1), ('face', 1), ('several', 1), ('challenge', 1), ('related', 1), ('sparseness', 1), ('heterogeneity', 1), ('data', 1), ('uncertainty', 1), ('measurement', 1), ('introduction', 1), ('expert', 1), ('knowledge', 1)]
[('android', 3), ('o', 2), ('build', 2), ('unleash', 1), ('power', 1), ('kind', 1), ('brilliant', 1), ('innovative', 1), ('apps', 1), ('user', 1), ('love', 1), ('use', 1), ('already', 1), ('know', 1), ('way', 1), ('around', 1), ('simple', 1), ('app', 1)]
[('uk', 2), ('computer', 2), ('raspberry', 1), ('pi', 1), ('non', 1), ('profit', 1), ('goal', 1), ('creating', 1), ('new', 1), ('generation', 1), ('programmer', 1), ('observing', 1), ('tech', 1), ('industry', 1), ('kickstarted', 1), ('availability', 1), ('relatively', 1), ('cheap', 1), ('programmable', 1)]
[('configuration', 2), ('management', 2), ('agile', 2), ('team', 2), ('adapting', 1), ('provides', 1), ('tangible', 1), ('approach', 1), ('practice', 1), ('infrastructure', 1), ('adapted', 1), ('managed', 1), ('order', 1), ('directly', 1), ('benefit', 1)]
[('sie', 2), ('wie', 2), ('da', 2), ('sind', 2), ('mochten', 1), ('mit', 1), ('einem', 1), ('roboter', 1), ('handchen', 1), ('halten', 1), ('fuhlt', 1), ('sich', 1), ('wohl', 1), ('bewusstsein', 1), ('und', 1), ('emotionen', 1), ('konstruierbar', 1), ('oder', 1), ('bleiben', 1), ('ein', 1), ('allein', 1), ('menschliches', 1), ('privileg', 1), ('schon', 1), ('jahr', 1), ('pc', 1), ('ahnlich', 1), ('leistungsfahig', 1)]
[('ipad', 2), ('apple', 1), ('put', 1), ('limitless', 1), ('world', 1), ('entertainment', 1), ('communication', 1), ('everyday', 1), ('functionality', 1), ('palm', 1), ('hand', 1), ('older', 1), ('wiser', 1), ('th', 1), ('edition', 1), ('quickly', 1), ('teach', 1), ('make', 1), ('new', 1)]
[('card', 2), ('guide', 1), ('professional', 1), ('responsible', 1), ('securing', 1), ('credit', 1), ('debit', 1), ('transaction', 1), ('recent', 1), ('breach', 1), ('target', 1), ('neiman', 1), ('marcus', 1), ('show', 1), ('payment', 1), ('information', 1), ('involved', 1)]
[('step', 2), ('computing', 1), ('window', 1), ('older', 1), ('wiser', 1), ('user', 1), ('friendly', 1), ('guide', 1), ('take', 1), ('basic', 1), ('using', 1), ('computer', 1), ('written', 1), ('easy', 1), ('understand', 1), ('jargon', 1), ('free', 1), ('language', 1), ('aimed', 1), ('complete', 1)]
[('provides', 1), ('fundamental', 1), ('reliability', 1), ('engineering', 1), ('illustrates', 1), ('practical', 1), ('application', 1), ('area', 1), ('parallel', 1), ('distributed', 1), ('system', 1), ('multistage', 1), ('interconnection', 1), ('network', 1), ('first', 1), ('part', 1), ('book', 1)]
[('volume', 1), ('guide', 1), ('essential', 1), ('technique', 1), ('designing', 1), ('building', 1), ('dependable', 1), ('distributed', 1), ('system', 1), ('instead', 1), ('covering', 1), ('broad', 1), ('range', 1), ('research', 1), ('work', 1), ('dependability', 1), ('strategy', 1)]
[('joomla', 2), ('complete', 1), ('guide', 1), ('content', 1), ('management', 1), ('system', 1), ('whether', 1), ('use', 1), ('power', 1), ('website', 1), ('intranet', 1), ('blog', 1), ('need', 1), ('good', 1), ('reference', 1), ('complex', 1), ('always', 1)]
[('autodesk', 2), ('revit', 2), ('mep', 2), ('running', 1), ('detailed', 1), ('hand', 1), ('guide', 1), ('mastering', 1), ('provides', 1), ('perfectly', 1), ('paced', 1), ('coverage', 1), ('core', 1), ('concept', 1), ('functionality', 1), ('tip', 1)]
[('cloud', 2), ('computing', 2), ('business', 2), ('technology', 2), ('trend', 1), ('provides', 1), ('broad', 1), ('introduction', 1), ('application', 1), ('telecommunication', 1), ('network', 1), ('function', 1), ('virtualization', 1), ('nfv', 1)]
[('increasing', 2), ('number', 2), ('concept', 2), ('business', 1), ('executive', 1), ('manager', 1), ('political', 1), ('leader', 1), ('using', 1), ('weak', 1), ('signal', 1), ('nowadays', 1), ('trying', 1), ('find', 1), ('exactly', 1), ('mean', 1)]
[('und', 2), ('ihre', 2), ('schnelle', 1), ('einfache', 1), ('schutzmaßnahmen', 1), ('gegen', 1), ('nsa', 1), ('bn', 1), ('kriminelle', 1), ('hacker', 1), ('kommerzielle', 1), ('datenkraken', 1), ('sie', 1), ('möchten', 1), ('nicht', 1), ('das', 1), ('jemand', 1), ('mail', 1), ('mitliest', 1), ('ihr', 1), ('surfverhalten', 1), ('analysiert', 1), ('oder', 1)]
[('bigquery', 2), ('effectively', 1), ('use', 1), ('avoid', 1), ('common', 1), ('mistake', 1), ('execute', 1), ('sophisticated', 1), ('query', 1), ('large', 1), ('datasets', 1), ('google', 1), ('analytics', 1), ('perfect', 1), ('guide', 1), ('business', 1), ('data', 1), ('analyst', 1), ('want', 1)]
[('server', 3), ('messaging', 2), ('administrator', 2), ('soup', 1), ('nut', 1), ('guide', 1), ('exchange', 1), ('world', 1), ('leading', 1), ('mail', 1), ('software', 1), ('window', 1), ('made', 1), ('change', 1), ('need', 1), ('know', 1), ('understand', 1)]
[('texturing', 2), ('lighting', 2), ('technique', 2), ('advanced', 2), ('level', 1), ('skill', 1), ('powerful', 1), ('maya', 1), ('third', 1), ('edition', 1), ('lead', 1), ('latest', 1), ('adding', 1), ('realistic', 1), ('detail', 1)]
[('sie', 3), ('app', 2), ('buch', 2), ('eine', 2), ('idee', 2), ('und', 2), ('die', 1), ('ganze', 1), ('welt', 1), ('der', 1), ('android', 1), ('entwicklung', 1), ('einem', 1), ('haben', 1), ('kreative', 1), ('für', 1), ('eigene', 1), ('vorkenntnisse', 1), ('java', 1), ('xml', 1), ('dann', 1), ('erfahren', 1), ('diesem', 1), ('wie', 1), ('ihre', 1)]
[('book', 1), ('introduces', 1), ('policy', 1), ('government', 1), ('security', 1), ('professional', 1), ('concept', 1), ('information', 1), ('warfare', 1), ('covering', 1), ('evolution', 1), ('last', 1), ('decade', 1), ('development', 1), ('among', 1), ('economic', 1), ('political', 1), ('giant', 1), ('china', 1), ('russia', 1), ('japan', 1), ('india', 1)]
[('graph', 1), ('partitioning', 1), ('theoretical', 1), ('subject', 1), ('application', 1), ('many', 1), ('area', 1), ('principally', 1), ('numerical', 1), ('analysis', 1), ('program', 1), ('mapping', 1), ('onto', 1), ('parallel', 1), ('architecture', 1), ('image', 1), ('segmentation', 1), ('vlsi', 1), ('design', 1), ('last', 1), ('year', 1), ('literature', 1), ('strongly', 1)]
[('laptop', 2), ('helpful', 1), ('easy', 1), ('follow', 1), ('guide', 1), ('new', 1), ('user', 1), ('age', 1), ('fun', 1), ('popular', 1), ('still', 1), ('computer', 1), ('come', 1), ('set', 1), ('issue', 1), ('easier', 1), ('steal', 1), ('likely', 1)]
[('apps', 2), ('heroku', 2), ('platform', 2), ('complete', 1), ('guide', 1), ('building', 1), ('deploying', 1), ('web', 1), ('cloud', 1), ('application', 1), ('currently', 1), ('approved', 1), ('creating', 1), ('within', 1), ('facebook', 1), ('number', 1), ('user', 1)]
[('testing', 5), ('python', 2), ('fundamental', 1), ('methodology', 1), ('applied', 1), ('popular', 1), ('language', 1), ('applying', 1), ('unit', 1), ('tdd', 1), ('bdd', 1), ('acceptance', 1), ('comprehensive', 1), ('book', 1), ('available', 1)]
[('website', 2), ('master', 1), ('innovative', 1), ('eye', 1), ('catching', 1), ('design', 1), ('exciting', 1), ('new', 1), ('treehouse', 1), ('series', 1), ('book', 1), ('turn', 1), ('plain', 1), ('word', 1), ('image', 1), ('stunning', 1), ('using', 1), ('html', 1), ('beautiful', 1), ('full', 1), ('colour', 1), ('guide', 1)]
[('formal', 2), ('method', 2), ('book', 1), ('present', 1), ('real', 1), ('world', 1), ('example', 1), ('technique', 1), ('industrial', 1), ('context', 1), ('cover', 1), ('scade', 1), ('various', 1), ('field', 1), ('railway', 1), ('aeronautics', 1), ('automotive', 1), ('industry', 1), ('purpose', 1)]
[('java', 2), ('noch', 2), ('alle', 1), ('grundlagen', 1), ('für', 1), ('die', 1), ('app', 1), ('entwicklung', 1), ('sie', 1), ('möchten', 1), ('eigene', 1), ('android', 1), ('apps', 1), ('entwickeln', 1), ('können', 1), ('aber', 1), ('nicht', 1), ('programmieren', 1), ('oder', 1), ('zumindest', 1), ('kein', 1), ('dann', 1), ('ist', 1), ('diesis', 1)]
[('augmented', 3), ('reality', 3), ('apps', 2), ('create', 1), ('amazing', 1), ('mobile', 1), ('junaio', 1), ('layar', 1), ('wikitude', 1), ('professional', 1), ('browser', 1), ('smartphones', 1), ('guide', 1), ('creating', 1)]
[('software', 2), ('desirable', 2), ('user', 2), ('experience', 2), ('unique', 1), ('resource', 1), ('help', 1), ('developer', 1), ('create', 1), ('today', 1), ('top', 1), ('flight', 1), ('feature', 1), ('kind', 1), ('book', 1), ('creates', 1), ('design', 1)]
[('hyper', 2), ('go', 1), ('guide', 1), ('using', 1), ('microsoft', 1), ('updated', 1), ('virtualization', 1), ('solution', 1), ('window', 1), ('server', 1), ('offer', 1), ('greater', 1), ('scalability', 1), ('new', 1), ('component', 1), ('option', 1), ('large', 1)]
[('digital', 2), ('revolution', 2), ('complete', 1), ('guidance', 1), ('mastering', 1), ('tool', 1), ('technique', 1), ('opening', 1), ('tremendous', 1), ('opportunity', 1), ('many', 1), ('field', 1), ('growing', 1), ('need', 1), ('skilled', 1)]
[('sie', 3), ('noch', 2), ('haben', 2), ('window', 2), ('machen', 1), ('morgen', 1), ('auch', 1), ('al', 1), ('erstes', 1), ('ihren', 1), ('rechner', 1), ('bevor', 1), ('den', 1), ('mantel', 1), ('ausgezogen', 1), ('und', 1), ('einen', 1), ('kaffee', 1), ('geholt', 1), ('sich', 1), ('mit', 1), ('nicht', 1), ('angefreundet', 1), ('ciprian', 1), ('adrian', 1), ('rusen', 1), ('gibt', 1), ('nutzern', 1), ('dieser', 1), ('gut', 1)]
[('neural', 3), ('network', 3), ('complex', 2), ('valued', 2), ('present', 1), ('latest', 1), ('advance', 1), ('demonstrating', 1), ('theory', 1), ('wide', 1), ('range', 1), ('application', 1), ('rapidly', 1), ('developing', 1)]
[('nookcolor', 2), ('reader', 2), ('dummy', 1), ('provides', 1), ('information', 1), ('need', 1), ('order', 1), ('key', 1), ('topic', 1), ('covered', 1), ('include', 1), ('introducing', 1), ('ebook', 1)]
[('die', 2), ('und', 2), ('technische', 1), ('produkte', 1), ('können', 1), ('nur', 1), ('erfolgreich', 1), ('sein', 1), ('wenn', 1), ('gebrauchstauglichkeit', 1), ('usability', 1), ('frühzeitig', 1), ('entwicklungsprozess', 1), ('geplant', 1), ('allen', 1), ('produktphasen', 1), ('verankert', 1), ('wird', 1), ('dy', 1), ('betrifft', 1), ('smarte', 1), ('geräte', 1), ('softwareprodukte', 1), ('webanwendungen', 1)]
[('sie', 2), ('computer', 2), ('window', 2), ('und', 2), ('buch', 2), ('wenn', 1), ('ihren', 1), ('gerade', 1), ('auf', 1), ('umgestellt', 1), ('oder', 1), ('einen', 1), ('neuen', 1), ('mit', 1), ('ausgepackt', 1), ('haben', 1), ('ein', 1), ('zuverlässiges', 1), ('umfassendes', 1), ('verständliches', 1), ('handbuch', 1), ('brauchen', 1), ('dann', 1), ('ist', 1), ('diesis', 1), ('genau', 1), ('richtig', 1), ('für', 1), ('da', 1), ('bahnt', 1)]
[('sie', 3), ('über', 2), ('und', 2), ('kennen', 1), ('da', 1), ('unterhalten', 1), ('sich', 1), ('mit', 1), ('einem', 1), ('fachmann', 1), ('computer', 1), ('oder', 1), ('smartphones', 1), ('verstehen', 1), ('nur', 1), ('bahnhof', 1), ('computerlexikon', 1), ('für', 1), ('dummy', 1), ('finden', 1), ('begriffe', 1), ('au', 1), ('der', 1), ('computerwelt', 1), ('leicht', 1), ('verständlich', 1), ('erklärt', 1), ('auf', 1), ('den', 1), ('punkt', 1)]
[('algorithmen', 2), ('wir', 1), ('leben', 1), ('einer', 1), ('algorithmenbestimmten', 1), ('welt', 1), ('deshalb', 1), ('lohnt', 1), ('e', 1), ('sich', 1), ('zu', 1), ('verstehen', 1), ('wie', 1), ('arbeiten', 1), ('da', 1), ('buch', 1), ('präsentiert', 1), ('die', 1), ('wichtigsten', 1), ('anwendungsgebiete', 1), ('für', 1), ('optimierung', 1), ('sortiervorgänge', 1), ('graphentheorie', 1), ('textanalyse', 1)]
[('sie', 2), ('wordpress', 2), ('und', 2), ('wollen', 1), ('ohne', 1), ('große', 1), ('vorkenntnisse', 1), ('mit', 1), ('eine', 1), ('webseite', 1), ('erstellen', 1), ('die', 1), ('gut', 1), ('aussieht', 1), ('gefunden', 1), ('wird', 1), ('einige', 1), ('ungewöhnliche', 1), ('funktionen', 1), ('hat', 1), ('dann', 1), ('ist', 1), ('diesis', 1), ('buch', 1), ('da', 1), ('brauchen', 1), ('lisa', 1), ('sabin', 1), ('wilson', 1), ('führt', 1), ('behutsam', 1), ('ein', 1)]
[('die', 3), ('wichtigste', 2), ('php', 1), ('ist', 1), ('nach', 1), ('wie', 1), ('vor', 1), ('serverseitige', 1), ('websprache', 1), ('und', 1), ('mysql', 1), ('da', 1), ('webdatenbank', 1), ('managementsystem', 1), ('al', 1), ('team', 1), ('sind', 1), ('beiden', 1), ('unschlagbar', 1), ('wenn', 1), ('e', 1), ('um', 1), ('erstellung', 1), ('dynamischer', 1), ('webseiten', 1), ('geht', 1), ('diesem', 1), ('buch', 1), ('erklärt', 1), ('ihnen', 1), ('janet', 1)]
[('und', 2), ('willst', 1), ('du', 1), ('figuren', 1), ('computer', 1), ('zeichnen', 1), ('vor', 1), ('einen', 1), ('selbst', 1), ('gestalteten', 1), ('hintergrund', 1), ('stellen', 1), ('laufen', 1), ('lassen', 1), ('da', 1), ('ist', 1), ('zu', 1), ('schwer', 1), ('keine', 1), ('sorge', 1), ('der', 1), ('programmiersprache', 1), ('scratch', 1), ('die', 1), ('von', 1), ('forschern', 1), ('extra', 1), ('für', 1), ('kinder', 1), ('jugendliche', 1), ('entwickelt', 1), ('wurde', 1)]
[('idea', 1), ('deep', 1), ('learning', 1), ('become', 1), ('key', 1), ('new', 1), ('generation', 1), ('solution', 1), ('major', 1), ('technological', 1), ('player', 1), ('business', 1), ('intelligence', 1), ('sector', 1), ('taken', 1), ('interest', 1), ('application', 1), ('big', 1), ('data', 1), ('book', 1)]
[('research', 4), ('human', 2), ('aim', 1), ('book', 1), ('describe', 1), ('methodology', 1), ('conducting', 1), ('thedre', 1), ('traceable', 1), ('experiment', 1), ('design', 1), ('applies', 1), ('centered', 1), ('informatics', 1), ('rich', 1), ('area', 1), ('computer', 1)]
[('control', 2), ('book', 1), ('cover', 1), ('various', 1), ('modern', 1), ('theoretical', 1), ('technical', 1), ('practical', 1), ('technological', 1), ('aspect', 1), ('computerized', 1), ('numerical', 1), ('system', 1), ('deterministic', 1), ('stochastic', 1), ('dynamical', 1), ('process', 1)]
[('cloud', 3), ('demand', 2), ('learn', 1), ('computing', 1), ('skill', 1), ('industry', 1), ('expert', 1), ('deploying', 1), ('managing', 1), ('infrastructure', 1), ('excellent', 1), ('resource', 1), ('professional', 1), ('seeking', 1), ('tap', 1)]
[('digital', 2), ('management', 2), ('sort', 1), ('assemblage', 1), ('strategy', 1), ('policy', 1), ('organization', 1), ('made', 1), ('beyond', 1), ('mantra', 1), ('slogan', 1), ('fiction', 1), ('concrete', 1), ('factory', 1), ('information', 1), ('system', 1), ('part', 1)]
[('ai', 2), ('build', 1), ('kera', 1), ('model', 1), ('scale', 1), ('deploy', 1), ('kubernetes', 1), ('cluster', 1), ('seen', 1), ('exponential', 1), ('growth', 1), ('use', 1), ('artificial', 1), ('intelligence', 1), ('last', 1), ('year', 1), ('becoming', 1), ('new', 1)]
[('microsoft', 2), ('azure', 2), ('expert', 1), ('guide', 1), ('administrator', 1), ('needing', 1), ('create', 1), ('manage', 1), ('public', 1), ('cloud', 1), ('virtual', 1), ('network', 1), ('using', 1), ('challenging', 1), ('amazon', 1), ('web', 1), ('service', 1), ('aws', 1), ('market', 1), ('share', 1)]
[('office', 3), ('make', 1), ('sense', 1), ('using', 1), ('computer', 1), ('first', 1), ('time', 1), ('learning', 1), ('microsoft', 1), ('application', 1), ('confusing', 1), ('intimidating', 1), ('age', 1)]
[('silverstripe', 2), ('cm', 2), ('official', 1), ('guide', 1), ('award', 1), ('winning', 1), ('programming', 1), ('framework', 1), ('authored', 1), ('creator', 1), ('open', 1), ('source', 1), ('robust', 1), ('flexible', 1), ('website', 1), ('content', 1), ('management', 1), ('system', 1)]
[('education', 2), ('learning', 2), ('different', 1), ('form', 1), ('telepresence', 1), ('distance', 1), ('student', 1), ('support', 1), ('use', 1), ('environment', 1), ('even', 1), ('heart', 1), ('robot', 1), ('system', 1), ('developed', 1), ('university', 1), ('higher', 1), ('facility', 1)]
[('tizen', 2), ('create', 1), ('powerful', 1), ('marketable', 1), ('application', 1), ('smartphone', 1), ('beyond', 1), ('platform', 1), ('designed', 1), ('multiple', 1), ('device', 1), ('category', 1), ('html', 1), ('centric', 1), ('entirely', 1), ('open', 1), ('source', 1)]
[('life', 2), ('information', 2), ('book', 1), ('explores', 1), ('unity', 1), ('proposes', 1), ('concept', 1), ('inner', 1), ('essence', 1), ('today', 1), ('call', 1), ('importance', 1), ('specie', 1), ('obvious', 1), ('human', 1), ('being', 1), ('highly', 1)]
[('web', 4), ('go', 2), ('site', 2), ('practical', 1), ('reference', 1), ('developer', 1), ('programming', 1), ('custom', 1), ('software', 1), ('advanced', 1), ('platform', 1), ('specific', 1), ('requirement', 1), ('beyond', 1), ('standard', 1), ('functionality', 1), ('meet', 1)]
[('investigator', 1), ('practical', 1), ('guide', 1), ('cybercrime', 1), ('evidence', 1), ('identification', 1), ('collection', 1), ('cyber', 1), ('attack', 1), ('perpetrated', 1), ('business', 1), ('government', 1), ('organization', 1), ('individual', 1), ('occurring', 1)]
[('security', 1), ('concern', 1), ('around', 1), ('rapid', 1), ('growth', 1), ('variety', 1), ('device', 1), ('controlled', 1), ('managed', 1), ('internet', 1), ('immediate', 1), ('potential', 1), ('threat', 1), ('use', 1), ('book', 1), ('examines', 1), ('issue', 1), ('surrounding', 1), ('problem', 1)]
[('right', 2), ('become', 2), ('mac', 2), ('expert', 2), ('always', 1), ('time', 1), ('never', 1), ('late', 1), ('friendly', 1), ('updated', 1), ('guide', 1), ('written', 1), ('specifically', 1), ('set', 1), ('easy', 1), ('way', 1)]
[('second', 2), ('edition', 2), ('machine', 1), ('learning', 1), ('spark', 1), ('python', 1), ('essential', 1), ('technique', 1), ('predictive', 1), ('analytics', 1), ('simplifies', 1), ('ml', 1), ('practical', 1), ('us', 1), ('focusing', 1), ('key', 1), ('algorithm', 1), ('new', 1), ('improves', 1), ('addition', 1)]
[('book', 1), ('introduction', 1), ('linguistic', 1), ('concept', 1), ('argumentation', 1), ('relevant', 1), ('argument', 1), ('mining', 1), ('important', 1), ('research', 1), ('development', 1), ('activity', 1), ('viewed', 1), ('highly', 1), ('complex', 1), ('form', 1), ('information', 1), ('retrieval', 1), ('requiring', 1), ('high', 1), ('level', 1)]
[('older', 2), ('computing', 1), ('wiser', 1), ('simple', 1), ('follow', 1), ('user', 1), ('friendly', 1), ('guide', 1), ('aimed', 1), ('generation', 1), ('introducing', 1), ('basic', 1), ('mastering', 1), ('computer', 1), ('covering', 1), ('latest', 1), ('release', 1), ('window', 1), ('vista', 1), ('home', 1), ('premium', 1), ('tm', 1)]
[('guide', 2), ('tablet', 2), ('essential', 1), ('beginner', 1), ('uk', 1), ('popular', 1), ('new', 1), ('hudl', 1), ('dummy', 1), ('indispensible', 1), ('tesco', 1), ('highly', 1), ('successful', 1), ('android', 1), ('hand', 1), ('instruction', 1), ('tailored', 1)]
[('seo', 2), ('search', 1), ('engine', 1), ('optimization', 1), ('arguably', 1), ('significant', 1), ('tool', 1), ('marketeers', 1), ('push', 1), ('online', 1), ('content', 1), ('hub', 1), ('computational', 1), ('engineering', 1), ('field', 1), ('encompasses', 1), ('technical', 1), ('editorial', 1), ('link', 1), ('building', 1), ('strategy', 1)]
[('efficient', 2), ('teletraffic', 2), ('loss', 2), ('comprehensive', 1), ('study', 1), ('multi', 1), ('rate', 1), ('model', 1), ('used', 1), ('designing', 1), ('performance', 1), ('analysis', 1), ('optimization', 1), ('system', 1), ('network', 1), ('multirate', 1)]
[('microsoft', 2), ('office', 2), ('new', 1), ('software', 1), ('looking', 1), ('instruction', 1), ('full', 1), ('complicated', 1), ('computing', 1), ('term', 1), ('older', 1), ('wiser', 1), ('answer', 1), ('query', 1), ('straightforward', 1), ('advice', 1)]
[('ihnen', 2), ('und', 2), ('die', 2), ('diesis', 1), ('buch', 1), ('vermittelt', 1), ('auf', 1), ('angenehme', 1), ('weise', 1), ('alles', 1), ('wichtige', 1), ('sie', 1), ('über', 1), ('wirtschaftsinformatik', 1), ('wissen', 1), ('müssen', 1), ('stephan', 1), ('thesmann', 1), ('werner', 1), ('burkard', 1), ('erklären', 1), ('zunächst', 1), ('welche', 1), ('bedeutung', 1), ('informationstechnologie', 1), ('für', 1), ('gesellschaft', 1)]
[('internet', 2), ('youthful', 1), ('everyone', 1), ('plenty', 1), ('leisure', 1), ('time', 1), ('disposable', 1), ('income', 1), ('fastest', 1), ('growing', 1), ('segment', 1), ('user', 1), ('booking', 1), ('holiday', 1), ('shopping', 1), ('joining', 1), ('club', 1)]
[('cloud', 3), ('unique', 1), ('systematic', 1), ('way', 1), ('book', 1), ('discus', 1), ('security', 1), ('privacy', 1), ('aspect', 1), ('relevant', 1), ('forensics', 1), ('computing', 1), ('emerging', 1), ('yet', 1), ('revolutionary', 1), ('technology', 1)]
[('sie', 2), ('und', 2), ('buch', 2), ('kapitel', 2), ('arbeiten', 1), ('mit', 1), ('eplan', 1), ('electric', 1), ('wollen', 1), ('wissen', 1), ('wie', 1), ('schaltpläne', 1), ('ohne', 1), ('umwege', 1), ('zeichnen', 1), ('umfassend', 1), ('auswerten', 1), ('hinsetzen', 1), ('aufschlagen', 1), ('für', 1), ('durcharbeiten', 1), ('fertigen', 1), ('schaltplan', 1), ('haben', 1), ('diesis', 1), ('ermöglicht', 1), ('ihnen', 1), ('einen', 1)]
[('solving', 1), ('transport', 1), ('problem', 1), ('establishes', 1), ('fundamental', 1), ('point', 1), ('good', 1), ('practice', 1), ('resolving', 1), ('matter', 1), ('regarding', 1), ('green', 1), ('transportation', 1), ('prompt', 1), ('research', 1), ('conveyance', 1), ('issue', 1), ('providing', 1), ('reader', 1), ('new', 1), ('knowledge', 1), ('ground', 1)]
[('web', 3), ('site', 3), ('learn', 1), ('produce', 1), ('stand', 1), ('crowd', 1), ('designer', 1), ('greatest', 1), ('challenge', 1), ('create', 1), ('distinctive', 1), ('enough', 1), ('noticed', 1), ('among', 1), ('million', 1), ('already', 1), ('book', 1)]
[('book', 2), ('concept', 2), ('contains', 1), ('several', 1), ('new', 1), ('technique', 1), ('application', 1), ('case', 1), ('study', 1), ('cyber', 1), ('security', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('main', 1), ('objective', 1), ('explore', 1)]
[('digital', 3), ('drawing', 2), ('know', 1), ('board', 1), ('adobe', 1), ('illustrator', 1), ('cc', 1), ('offer', 1), ('vibrant', 1), ('tool', 1), ('creating', 1), ('illustration', 1), ('environment', 1), ('take', 1), ('practice', 1), ('feel', 1)]
[('functional', 2), ('programming', 2), ('language', 2), ('take', 1), ('advantage', 1), ('growing', 1), ('trend', 1), ('number', 1), ('used', 1), ('net', 1), ('developer', 1), ('popular', 1), ('world', 1), ('many', 1), ('built', 1)]
[('information', 2), ('system', 2), ('issue', 2), ('management', 1), ('intended', 1), ('sensitize', 1), ('head', 1), ('organization', 1), ('raised', 1), ('pedagogical', 1), ('presentation', 1), ('book', 1), ('ensures', 1), ('related', 1), ('left', 1), ('solely', 1)]
[('algorithm', 2), ('claim', 2), ('almost', 1), ('every', 1), ('month', 1), ('new', 1), ('optimization', 1), ('proposed', 1), ('often', 1), ('accompanied', 1), ('superior', 1), ('came', 1), ('generally', 1), ('based', 1), ('performance', 1), ('specific', 1), ('set', 1)]
[('digitalization', 2), ('socio', 2), ('society', 2), ('long', 1), ('historic', 1), ('process', 1), ('area', 1), ('activity', 1), ('reconfigured', 1), ('first', 1), ('volume', 1), ('political', 1), ('issue', 1), ('examination', 1)]
[('die', 3), ('und', 3), ('der', 3), ('diesis', 1), ('buch', 1), ('führt', 1), ('sie', 1), ('durch', 1), ('verschiedenen', 1), ('schritte', 1), ('für', 1), ('eine', 1), ('erfolgreiche', 1), ('website', 1), ('notwendig', 1), ('sind', 1), ('angefangen', 1), ('bei', 1), ('den', 1), ('zielen', 1), ('definition', 1), ('strategie', 1), ('über', 1), ('visualisierung', 1), ('ersten', 1), ('ideen', 1), ('konzepte', 1), ('bi', 1), ('hin', 1), ('zur', 1), ('umsetzung', 1)]
[('book', 2), ('never', 1), ('leave', 1), ('home', 1), ('without', 1), ('good', 1), ('hand', 1), ('easy', 1), ('ereader', 1), ('packing', 1), ('suitcase', 1), ('full', 1), ('beach', 1), ('vacation', 1), ('lugging', 1), ('heavy', 1), ('bag', 1), ('magazine', 1), ('visit', 1)]
[('da', 3), ('von', 3), ('excel', 2), ('und', 2), ('bearbeiten', 2), ('diesis', 1), ('buch', 1), ('lässt', 1), ('keine', 1), ('wünsche', 1), ('offen', 1), ('e', 1), ('beschreibt', 1), ('grundlegende', 1), ('funktionen', 1), ('wie', 1), ('erstellen', 1), ('arbeitsblättern', 1), ('aber', 1), ('auch', 1), ('teilen', 1), ('überarbeiten', 1), ('dokumenten', 1), ('oder', 1), ('makros', 1), ('mit', 1), ('visual', 1), ('basic', 1)]
[('mac', 4), ('guide', 2), ('accessible', 1), ('using', 1), ('transitioning', 1), ('window', 1), ('book', 1), ('help', 1), ('new', 1), ('user', 1), ('comfortable', 1), ('computer', 1), ('switching', 1), ('pocket', 1), ('genius', 1), ('reader', 1), ('learning', 1)]
[('cloud', 2), ('essential', 2), ('study', 2), ('guide', 2), ('prepare', 1), ('success', 1), ('new', 1), ('exam', 1), ('clo', 1), ('latest', 1), ('title', 1), ('popular', 1), ('sybex', 1), ('series', 1), ('comptia', 1), ('help', 1), ('candidate', 1)]
[('cyber', 2), ('threat', 1), ('increasing', 1), ('adversary', 1), ('getting', 1), ('sophisticated', 1), ('criminal', 1), ('infiltrating', 1), ('company', 1), ('variety', 1), ('sector', 1), ('today', 1), ('landscape', 1), ('organization', 1), ('need', 1), ('acquire', 1), ('develop', 1), ('effective', 1), ('security', 1), ('tool', 1)]
[('samsung', 2), ('bestselling', 1), ('guide', 1), ('new', 1), ('book', 1), ('document', 1), ('feature', 1), ('capability', 1), ('galaxy', 1), ('device', 1), ('approaching', 1), ('point', 1), ('view', 1), ('user', 1)]
[('design', 2), ('web', 2), ('best', 1), ('practice', 1), ('flexible', 1), ('meet', 1), ('common', 1), ('challenge', 1), ('constantly', 1), ('changing', 1), ('evolving', 1), ('increased', 1), ('range', 1), ('device', 1), ('browser', 1), ('standard', 1), ('need', 1), ('considered', 1), ('designer', 1)]
[('nachrichten', 3), ('du', 2), ('wenn', 1), ('mit', 1), ('deinem', 1), ('smartphone', 1), ('eine', 1), ('nachricht', 1), ('versendest', 1), ('möchtest', 1), ('das', 1), ('niemand', 1), ('mitliest', 1), ('oder', 1), ('mitkriegt', 1), ('worum', 1), ('e', 1), ('geht', 1), ('deine', 1), ('sollen', 1), ('privat', 1), ('bleiben', 1), ('über', 1), ('größere', 1), ('entfernungen', 1), ('zu', 1), ('übermitteln', 1), ('und', 1), ('unter', 1)]
[('associate', 2), ('die', 1), ('zertifizierung', 1), ('zum', 1), ('aws', 1), ('certified', 1), ('solution', 1), ('architect', 1), ('verschafft', 1), ('ihnen', 1), ('einen', 1), ('klaren', 1), ('vorteil', 1), ('wenn', 1), ('sie', 1), ('al', 1), ('cloud', 1), ('spezialist', 1), ('arbeiten', 1), ('wollen', 1), ('für', 1), ('da', 1), ('neue', 1), ('überarbeitete', 1), ('examen', 1), ('ist', 1), ('diesis', 1), ('umfassende', 1), ('lehrbuch', 1), ('eine', 1), ('große', 1), ('hilfe', 1)]
[('computer', 2), ('developed', 1), ('collaboration', 1), ('training', 1), ('certification', 1), ('team', 1), ('cisco', 1), ('network', 1), ('security', 1), ('exploration', 1), ('state', 1), ('art', 1), ('good', 1), ('practice', 1), ('setting', 1), ('secure', 1), ('system', 1), ('concrete', 1), ('example', 1), ('offered', 1)]
[('android', 3), ('make', 2), ('device', 2), ('truly', 1), ('eager', 1), ('sure', 1), ('start', 1), ('book', 1), ('xda', 1), ('world', 1), ('popular', 1), ('resource', 1), ('hacking', 1)]
[('application', 2), ('book', 1), ('dedicated', 1), ('metaheuristic', 1), ('optimization', 1), ('trajectory', 1), ('generation', 1), ('control', 1), ('issue', 1), ('robotics', 1), ('area', 1), ('field', 1), ('algorithmic', 1), ('tool', 1), ('addressed', 1), ('require', 1)]
[('sie', 5), ('steht', 1), ('auf', 1), ('ihrer', 1), ('liste', 1), ('auch', 1), ('das', 1), ('unbedingt', 1), ('ihre', 1), ('privaten', 1), ('daten', 1), ('besser', 1), ('schützen', 1), ('müssen', 1), ('diesis', 1), ('buch', 1), ('führt', 1), ('die', 1), ('grundlagen', 1), ('der', 1), ('cyber', 1), ('sicherheit', 1), ('ein', 1), ('erfahren', 1), ('zuerst', 1), ('einmal', 1), ('welche', 1), ('bedrohungen', 1), ('e', 1), ('überhaupt', 1), ('gibt', 1), ('wie', 1)]
[('modern', 3), ('desktop', 3), ('preparation', 1), ('guide', 1), ('mca', 1), ('certification', 1), ('cover', 1), ('new', 1), ('exam', 1), ('md', 1), ('managing', 1), ('microsoft', 1), ('integrates', 1), ('window', 1), ('office', 1), ('advanced', 1)]
[('perl', 2), ('apache', 2), ('visually', 1), ('explore', 1), ('range', 1), ('built', 1), ('third', 1), ('party', 1), ('library', 1), ('providing', 1), ('common', 1), ('gateway', 1), ('interface', 1), ('cgi', 1), ('access', 1), ('web', 1), ('site', 1), ('year', 1), ('constantly', 1), ('evolving', 1)]
[('office', 3), ('essential', 2), ('home', 2), ('student', 2), ('stop', 1), ('shopping', 1), ('version', 1), ('microsoft', 1), ('ideal', 1), ('anyone', 1), ('need', 1), ('application', 1), ('without', 1), ('tool', 1)]
[('mpeg', 5), ('book', 2), ('provides', 1), ('comprehensive', 1), ('examination', 1), ('use', 1), ('standard', 1), ('providing', 1), ('detailed', 1), ('reference', 1), ('application', 1)]
[('design', 2), ('telecommunication', 2), ('system', 1), ('gateway', 1), ('provides', 1), ('thorough', 1), ('review', 1), ('designing', 1), ('network', 1), ('equipment', 1), ('based', 1), ('latest', 1), ('hardware', 1), ('software', 1), ('method', 1), ('available', 1), ('market', 1), ('focusing', 1), ('high', 1), ('end', 1)]
[('recent', 1), ('change', 1), ('multicore', 1), ('general', 1), ('purpose', 1), ('computing', 1), ('graphic', 1), ('processing', 1), ('unit', 1), ('way', 1), ('parallel', 1), ('computer', 1), ('used', 1), ('programmed', 1), ('drastically', 1), ('changed', 1), ('important', 1), ('provide', 1), ('comprehensive', 1), ('study', 1), ('use', 1)]
[('social', 2), ('medium', 2), ('profile', 2), ('new', 2), ('learn', 1), ('design', 1), ('professional', 1), ('effective', 1), ('whether', 1), ('trying', 1), ('attract', 1), ('employer', 1), ('fan', 1), ('notice', 1), ('brand', 1), ('need', 1), ('distinguish', 1)]
[('python', 3), ('tool', 2), ('programmer', 2), ('master', 1), ('secret', 1), ('every', 1), ('need', 1), ('know', 1), ('professional', 1), ('go', 1), ('beyond', 1), ('basic', 1), ('teach', 1), ('beginner', 1), ('intermediate', 1), ('level', 1), ('little', 1), ('known', 1)]
[('see', 2), ('excel', 2), ('way', 1), ('super', 1), ('spreadsheet', 1), ('visual', 1), ('guide', 1), ('always', 1), ('hearing', 1), ('cool', 1), ('thing', 1), ('chance', 1), ('page', 1), ('full', 1), ('color', 1)]
[('pc', 2), ('th', 2), ('edition', 2), ('bestselling', 1), ('reference', 1), ('planet', 1), ('available', 1), ('completely', 1), ('updated', 1), ('cover', 1), ('latest', 1), ('technology', 1), ('software', 1), ('dummy', 1), ('tackle', 1), ('using', 1)]
[('android', 3), ('o', 2), ('platform', 2), ('hand', 1), ('introduction', 1), ('latest', 1), ('release', 1), ('easiest', 1), ('tool', 1), ('developer', 1), ('dominant', 1), ('mobile', 1), ('today', 1), ('powerful', 1), ('flexible', 1)]
[('mac', 2), ('o', 2), ('getting', 2), ('speed', 1), ('latest', 1), ('new', 1), ('knowing', 1), ('use', 1), ('remote', 1), ('controlled', 1), ('car', 1), ('christmas', 1), ('battery', 1), ('dummy', 1), ('power', 1), ('understanding', 1)]
[('galaxy', 2), ('tab', 2), ('guide', 2), ('explore', 1), ('expert', 1), ('tour', 1), ('side', 1), ('samsung', 1), ('dummy', 1), ('user', 1), ('friendly', 1), ('getting', 1), ('new', 1), ('tablet', 1), ('discover', 1), ('different', 1)]
[('hacker', 3), ('web', 2), ('application', 2), ('attacker', 2), ('defending', 1), ('top', 1), ('selling', 1), ('book', 1), ('handbook', 1), ('showed', 1), ('identify', 1), ('attack', 1), ('vulnerable', 1)]
[('system', 3), ('decision', 2), ('support', 2), ('purpose', 1), ('book', 1), ('question', 1), ('relationship', 1), ('involved', 1), ('making', 1), ('designed', 1), ('ds', 1), ('focus', 1), ('engineered', 1), ('stop', 1), ('think', 1)]
[('immune', 2), ('ai', 2), ('book', 1), ('deal', 1), ('malware', 1), ('detection', 1), ('term', 1), ('artificial', 1), ('system', 1), ('present', 1), ('number', 1), ('model', 1), ('based', 1), ('feature', 1), ('extraction', 1), ('approach', 1), ('application', 1), ('computer', 1), ('security', 1)]
[('iphone', 3), ('take', 1), ('bite', 1), ('offer', 1), ('easy', 1), ('intuitive', 1), ('complex', 1), ('realize', 1), ('better', 1), ('learning', 1), ('insider', 1), ('tip', 1), ('trick', 1), ('portable', 1)]
[('sharepoint', 3), ('complete', 1), ('revision', 1), ('popular', 1), ('developer', 1), ('resource', 1), ('fully', 1), ('updated', 1), ('book', 1), ('ideal', 1), ('starting', 1), ('place', 1), ('development', 1), ('covering', 1), ('major', 1), ('topic', 1)]
[('learn', 2), ('code', 2), ('fun', 1), ('way', 1), ('nine', 1), ('real', 1), ('project', 1), ('true', 1), ('beginner', 1), ('adventure', 1), ('coding', 1), ('written', 1), ('specifically', 1), ('young', 1), ('want', 1), ('know', 1)]
[('many', 3), ('way', 1), ('exist', 1), ('mix', 1), ('different', 1), ('ingredient', 1), ('chance', 1), ('win', 1), ('gambling', 1), ('game', 1), ('possible', 1), ('path', 1), ('going', 1), ('place', 1), ('another', 1), ('network', 1), ('kind', 1), ('question', 1), ('mathematics', 1), ('applied', 1), ('computer', 1), ('give', 1), ('stimulating', 1)]
[('galaxy', 2), ('explore', 1), ('world', 1), ('possibility', 1), ('samsung', 1), ('smartphone', 1), ('everything', 1), ('exciting', 1), ('hand', 1), ('dummy', 1), ('guide', 1), ('getting', 1)]
[('squarespace', 2), ('build', 1), ('blog', 1), ('website', 1), ('portfolio', 1), ('let', 1), ('create', 1), ('visually', 1), ('rich', 1), ('web', 1), ('page', 1), ('configuration', 1), ('text', 1), ('image', 1), ('block', 1), ('wish', 1), ('dragging', 1)]
[('cybersecurity', 4), ('law', 4), ('definitive', 2), ('guide', 2), ('expanding', 1), ('author', 1), ('experience', 1), ('lawyer', 1), ('professor', 1)]
[('theory', 2), ('book', 1), ('present', 1), ('consciousness', 1), ('unique', 1), ('sustainable', 1), ('nature', 1), ('based', 1), ('physiological', 1), ('cognitive', 1), ('linguistic', 1), ('principle', 1), ('controlled', 1), ('number', 1), ('socio', 1), ('psycho', 1), ('economic', 1), ('factor', 1), ('order', 1), ('anchor', 1)]
[('energy', 2), ('building', 2), ('consumption', 1), ('recent', 1), ('year', 1), ('become', 1), ('determining', 1), ('factor', 1), ('design', 1), ('construction', 1), ('carbon', 1), ('footprint', 1), ('growing', 1), ('issue', 1), ('important', 1), ('optimized', 1), ('conservation', 1)]
[('defend', 2), ('server', 2), ('learn', 1), ('attack', 1), ('world', 1), ('popular', 1), ('web', 1), ('platform', 1), ('linux', 1), ('security', 1), ('hack', 1), ('present', 1), ('detailed', 1), ('guide', 1), ('experienced', 1), ('admins', 1), ('aspiring', 1), ('hacker', 1)]
[('system', 2), ('designer', 2), ('concerned', 2), ('next', 1), ('generation', 1), ('computer', 1), ('le', 1), ('detail', 1), ('processor', 1), ('memory', 1), ('element', 1), ('tailored', 1), ('particular', 1), ('application', 1), ('fundamental', 1)]
[('programming', 2), ('interest', 2), ('computer', 2), ('geometric', 1), ('currently', 1), ('cad', 1), ('aided', 1), ('design', 1), ('related', 1), ('area', 1), ('graphic', 1), ('modeling', 1), ('animation', 1), ('scientific', 1), ('simulation', 1), ('robotics', 1), ('growing', 1), ('towards', 1), ('gemotric', 1)]
[('datacenter', 2), ('solution', 2), ('hyper', 2), ('build', 1), ('seamless', 1), ('flexible', 1), ('full', 1), ('service', 1), ('microsoft', 1), ('window', 1), ('server', 1), ('administrator', 1), ('guide', 1), ('rising', 1), ('already', 1), ('surpassed', 1)]
[('proportionate', 2), ('estimate', 2), ('topic', 1), ('book', 1), ('type', 1), ('normalized', 1), ('least', 1), ('mean', 1), ('square', 1), ('ptnlms', 1), ('adaptive', 1), ('filtering', 1), ('algorithm', 1), ('attempt', 1), ('unknown', 1), ('impulse', 1), ('response', 1), ('adaptively', 1), ('giving', 1), ('gain', 1)]
[('samsung', 2), ('galaxy', 1), ('smartphone', 1), ('whether', 1), ('seasoned', 1), ('thing', 1), ('seized', 1), ('thought', 1), ('learning', 1), ('new', 1), ('technology', 1), ('nonsense', 1), ('guide', 1), ('make', 1), ('fast', 1), ('easy', 1), ('fun', 1)]
[('elm', 2), ('book', 1), ('assumes', 1), ('familiarity', 1), ('thread', 1), ('language', 1), ('ada', 1), ('java', 1), ('introduces', 1), ('entity', 1), ('life', 1), ('modeling', 1), ('design', 1), ('approach', 1), ('certain', 1), ('kind', 1), ('multithreaded', 1), ('software', 1), ('focus', 1), ('reactive', 1), ('system', 1), ('continuously', 1)]
[('window', 2), ('senior', 1), ('need', 1), ('running', 1), ('microsoft', 1), ('little', 1), ('older', 1), ('wiser', 1), ('back', 1), ('revamped', 1), ('version', 1), ('brings', 1), ('fresh', 1), ('change', 1), ('welcome', 1)]
[('application', 2), ('running', 2), ('cloud', 2), ('non', 2), ('book', 1), ('explains', 1), ('might', 1), ('deliver', 1), ('service', 1), ('reliability', 1), ('availability', 1), ('latency', 1), ('overall', 1), ('quality', 1), ('end', 1), ('user', 1), ('traditional', 1), ('virtualized', 1)]
[('pso', 2), ('algorithm', 2), ('first', 1), ('book', 1), ('devoted', 1), ('entirely', 1), ('particle', 1), ('swarm', 1), ('optimization', 1), ('non', 1), ('specific', 1), ('similar', 1), ('evolutionary', 1), ('taboo', 1), ('search', 1), ('ant', 1), ('colony', 1), ('original', 1), ('development', 1)]
[('security', 2), ('minute', 1), ('observation', 1), ('world', 1), ('famous', 1), ('expert', 1), ('bruce', 1), ('schneier', 1), ('known', 1), ('worldwide', 1), ('foremost', 1), ('authority', 1), ('commentator', 1), ('every', 1), ('issue', 1), ('cyber', 1), ('terrorism', 1), ('airport', 1)]
[('developing', 2), ('robust', 2), ('content', 2), ('delivery', 2), ('network', 2), ('definitive', 1), ('guide', 1), ('book', 1), ('examines', 1), ('real', 1), ('world', 1), ('engineering', 1), ('challenge', 1), ('cdns', 1), ('provides', 1)]
[('ton', 2), ('data', 1), ('computer', 1), ('quite', 1), ('sure', 1), ('make', 1), ('head', 1), ('tail', 1), ('even', 1), ('organize', 1), ('using', 1), ('access', 1), ('spreadsheet', 1), ('rather', 1), ('really', 1), ('meant', 1), ('trouble', 1), ('finding', 1)]
[('networking', 2), ('computer', 2), ('game', 2), ('essential', 1), ('guide', 1), ('solving', 1), ('algorithmic', 1), ('problem', 1), ('commercial', 1), ('revised', 1), ('extended', 1), ('algorithm', 1), ('second', 1), ('edition', 1)]
[('new', 2), ('check', 1), ('hyper', 1), ('find', 1), ('easier', 1), ('way', 1), ('remotely', 1), ('connect', 1), ('back', 1), ('office', 1), ('learn', 1), ('storage', 1), ('space', 1), ('feature', 1), ('window', 1), ('server', 1), ('explained', 1), ('updated', 1), ('edition', 1)]
[('fault', 3), ('localization', 3), ('handbook', 2), ('software', 2), ('comprehensive', 1), ('analysis', 1), ('technique', 1), ('strategy', 1), ('foundation', 1), ('advance', 1)]
[('guide', 2), ('cwt', 2), ('exam', 2), ('updated', 1), ('certified', 1), ('wireless', 1), ('technology', 1), ('specialist', 1), ('study', 1), ('number', 1), ('resource', 1), ('comprehensive', 1), ('preparation', 1)]
[('step', 2), ('learn', 1), ('develop', 1), ('high', 1), ('quality', 1), ('application', 1), ('framework', 1), ('php', 1), ('packed', 1), ('depth', 1), ('information', 1), ('guidance', 1), ('book', 1), ('escort', 1), ('process', 1), ('creating', 1), ('maintaining', 1), ('extending', 1), ('sustainable', 1)]
[('second', 2), ('mcsa', 2), ('window', 2), ('server', 2), ('exam', 2), ('ultimate', 1), ('coverage', 1), ('hand', 1), ('practice', 1), ('study', 1), ('guide', 1), ('offer', 1), ('complete', 1), ('preparation', 1)]
[('network', 2), ('security', 2), ('book', 1), ('cover', 1), ('management', 1), ('issue', 1), ('currently', 1), ('available', 1), ('mechanism', 1), ('discussing', 1), ('architecture', 1), ('evolved', 1), ('contemporary', 1), ('ngns', 1), ('support', 1), ('converged', 1), ('service', 1), ('voice', 1), ('video', 1), ('tv', 1), ('interactive', 1)]
[('working', 4), ('live', 2), ('line', 2), ('excellent', 1), ('reference', 1), ('outlining', 1), ('technical', 1), ('basis', 1), ('principle', 1), ('current', 1), ('application', 1), ('technology', 1), ('tool', 1), ('method', 1), ('introduces', 1)]
[('book', 2), ('present', 1), ('substantial', 1), ('description', 1), ('principle', 1), ('application', 1), ('digital', 1), ('holography', 1), ('first', 1), ('part', 1), ('deal', 1), ('mathematical', 1), ('basic', 1), ('linear', 1), ('filtering', 1), ('theory', 1), ('necessary', 1), ('approach', 1), ('topic', 1)]
[('book', 2), ('provides', 2), ('scientific', 2), ('modeling', 2), ('approach', 1), ('conducting', 1), ('metric', 1), ('based', 1), ('quantitative', 1), ('risk', 1), ('assessment', 1), ('cybersecurity', 1), ('vulnerability', 1), ('threat', 1)]
[('energy', 2), ('system', 2), ('improvement', 1), ('efficiency', 1), ('electronics', 1), ('computing', 1), ('currently', 1), ('central', 1), ('information', 1), ('communication', 1), ('technology', 1), ('design', 1), ('low', 1), ('cost', 1), ('cooling', 1), ('autonomous', 1), ('portable', 1), ('functioning', 1), ('recovered', 1), ('need', 1)]
[('year', 1), ('industry', 1), ('mastered', 1), ('iron', 1), ('fire', 1), ('strength', 1), ('energy', 1), ('today', 1), ('electronics', 1), ('shape', 1), ('everyday', 1), ('object', 1), ('integrating', 1), ('chip', 1), ('computer', 1), ('phone', 1), ('key', 1), ('game', 1), ('household', 1), ('appliance', 1), ('etc', 1), ('data', 1), ('software', 1)]
[('maya', 2), ('create', 1), ('innovative', 1), ('cg', 1), ('solution', 1), ('creative', 1), ('guide', 1), ('professional', 1), ('artist', 1), ('think', 1), ('foot', 1), ('nothing', 1), ('receive', 1), ('vague', 1), ('sketch', 1), ('incomplete', 1), ('idea', 1)]
[('ipv', 3), ('ip', 2), ('announcement', 1), ('current', 1), ('internet', 1), ('protocol', 1), ('nearly', 1), ('run', 1), ('interest', 1), ('latest', 1), ('version', 1), ('grown', 1), ('substantially', 1), ('book', 1), ('describes', 1), ('technology', 1), ('repercussion', 1), ('organization', 1)]
[('comprehensive', 1), ('collection', 1), ('influential', 1), ('article', 1), ('iee', 1), ('computer', 1), ('magazine', 1), ('popular', 1), ('column', 1), ('book', 1), ('compendium', 1), ('extended', 1), ('revised', 1), ('publication', 1)]
[('collective', 1), ('work', 1), ('identifies', 1), ('latest', 1), ('development', 1), ('field', 1), ('automatic', 1), ('processing', 1), ('analysis', 1), ('digital', 1), ('color', 1), ('image', 1), ('researcher', 1), ('student', 1), ('represents', 1), ('critical', 1), ('state', 1), ('art', 1), ('scientific', 1)]
[('data', 2), ('storage', 2), ('timely', 1), ('text', 1), ('recent', 1), ('development', 1), ('material', 1), ('perspective', 1), ('increasing', 1), ('amount', 1), ('hard', 1), ('disk', 1), ('made', 1), ('possible', 1), ('largely', 1), ('due', 1), ('immense', 1)]
[('era', 1), ('big', 1), ('data', 1), ('arrived', 1), ('organization', 1), ('woefully', 1), ('unprepared', 1), ('slowly', 1), ('many', 1), ('discovering', 1), ('stalwart', 1), ('excel', 1), ('spreadsheet', 1), ('kpis', 1), ('standard', 1), ('report', 1), ('even', 1), ('traditional', 1), ('business', 1), ('intelligence', 1), ('tool', 1)]
[('aspect', 2), ('order', 1), ('enable', 1), ('general', 1), ('understanding', 1), ('foster', 1), ('implementation', 1), ('necessary', 1), ('support', 1), ('measure', 1), ('organization', 1), ('book', 1), ('describes', 1), ('fundamental', 1), ('conceptual', 1), ('cyberspace', 1), ('abuse', 1), ('logically', 1), ('reasonably', 1)]
[('system', 2), ('book', 1), ('aim', 1), ('exploring', 1), ('illustrating', 1), ('different', 1), ('way', 1), ('hypermedia', 1), ('tool', 1), ('designed', 1), ('according', 1), ('aspect', 1), ('design', 1), ('visualization', 1), ('scheme', 1), ('included', 1), ('related', 1), ('variety', 1)]
[('analogy', 2), ('analyze', 1), ('complex', 1), ('situation', 1), ('use', 1), ('everyday', 1), ('allow', 1), ('invest', 1), ('unknown', 1), ('domain', 1), ('knowledge', 1), ('acquired', 1), ('known', 1), ('field', 1), ('work', 1), ('author', 1), ('proposes', 1), ('modeling', 1), ('analysis', 1), ('method', 1), ('us', 1)]
[('comprehensive', 2), ('stay', 1), ('ahead', 1), ('game', 1), ('guide', 1), ('programming', 1), ('language', 1), ('known', 1), ('expert', 1), ('rod', 1), ('stephen', 1), ('give', 1), ('novice', 1), ('experienced', 1), ('developer', 1), ('tutorial', 1), ('reference', 1), ('standard', 1)]
[('title', 1), ('provides', 1), ('clear', 1), ('overview', 1), ('main', 1), ('method', 1), ('practical', 1), ('focus', 1), ('allows', 1), ('reader', 1), ('apply', 1), ('knowledge', 1), ('real', 1), ('life', 1), ('situation', 1), ('following', 1), ('technique', 1), ('covered', 1), ('uml', 1), ('tla', 1), ('saz', 1), ('omt', 1), ('vhdl', 1)]
[('book', 1), ('place', 1), ('perspective', 1), ('tracing', 1), ('development', 1), ('time', 1), ('covering', 1), ('origin', 1), ('business', 1), ('massive', 1), ('expansion', 1), ('role', 1), ('end', 1), ('th', 1), ('century', 1), ('growth', 1), ('internet', 1), ('success', 1), ('failure', 1)]
[('paper', 2), ('conference', 2), ('title', 1), ('brings', 1), ('together', 1), ('best', 1), ('range', 1), ('topic', 1), ('raised', 1), ('annual', 1), ('international', 1), ('principle', 1), ('practice', 1), ('constraint', 1), ('programming', 1), ('provides', 1), ('workshop', 1), ('produce', 1), ('new', 1), ('insight', 1), ('concept', 1)]
[('communication', 2), ('digital', 1), ('information', 1), ('technology', 1), ('seen', 1), ('threat', 1), ('privacy', 1), ('step', 1), ('forward', 1), ('freedom', 1), ('expression', 1), ('tool', 1), ('fight', 1), ('terrorism', 1), ('source', 1), ('new', 1), ('economic', 1), ('wealth', 1)]
[('preparation', 2), ('mcsa', 2), ('exam', 2), ('window', 2), ('server', 2), ('comprehensive', 1), ('final', 1), ('updated', 1), ('study', 1), ('guide', 1), ('ultimate', 1), ('resource', 1)]
[('security', 2), ('energy', 2), ('supply', 1), ('major', 1), ('concern', 1), ('modern', 1), ('society', 1), ('intensified', 1), ('skyrocketing', 1), ('demand', 1), ('india', 1), ('china', 1), ('increasing', 1), ('international', 1), ('competition', 1), ('fossil', 1), ('fuel', 1), ('deposit', 1)]
[('program', 2), ('autocad', 2), ('customize', 1), ('personalize', 1), ('built', 1), ('platform', 1), ('autolisp', 1), ('key', 1), ('unlocking', 1), ('secret', 1), ('streamlined', 1), ('experience', 1), ('using', 1), ('industry', 1), ('leading', 1), ('software', 1), ('civil', 1), ('plant', 1)]
[('learn', 2), ('minecraft', 2), ('valuable', 1), ('programming', 1), ('skill', 1), ('building', 1), ('adventure', 1), ('love', 1), ('playing', 1), ('want', 1), ('code', 1), ('create', 1), ('mod', 1), ('book', 1), ('designed', 1)]
[('business', 2), ('selling', 1), ('marketing', 1), ('tip', 1), ('need', 1), ('succeed', 1), ('ebay', 1), ('perfect', 1), ('place', 1), ('learn', 1), ('rope', 1), ('running', 1), ('online', 1), ('provides', 1), ('tool', 1), ('technology', 1), ('platform', 1)]
[('constrained', 1), ('optimization', 1), ('challenging', 1), ('branch', 1), ('operation', 1), ('research', 1), ('aim', 1), ('create', 1), ('model', 1), ('wide', 1), ('range', 1), ('application', 1), ('supply', 1), ('chain', 1), ('telecommunication', 1), ('medical', 1), ('field', 1), ('problem', 1), ('structure', 1), ('split', 1)]
[('step', 2), ('php', 2), ('mysql', 2), ('book', 2), ('video', 2), ('lesson', 1), ('using', 1), ('unique', 1), ('combination', 1), ('assuming', 1), ('previous', 1), ('experience', 1), ('package', 1), ('ideal', 1), ('reading', 1), ('anyone', 1)]
[('internet', 3), ('today', 1), ('computer', 1), ('networking', 1), ('essential', 1), ('part', 1), ('business', 1), ('learning', 1), ('personal', 1), ('communication', 1), ('entertainment', 1), ('virtually', 1), ('message', 1), ('transaction', 1), ('sent', 1), ('carried', 1), ('using', 1), ('infrastructure', 1), ('based', 1)]
[('document', 2), ('textual', 1), ('information', 1), ('form', 1), ('digital', 1), ('quickly', 1), ('accumulates', 1), ('create', 1), ('huge', 1), ('amount', 1), ('data', 1), ('majority', 1), ('unstructured', 1), ('unrestricted', 1), ('text', 1), ('organized', 1), ('traditional', 1), ('database', 1)]
[('book', 1), ('provides', 1), ('introduction', 1), ('concurrent', 1), ('real', 1), ('time', 1), ('distributed', 1), ('programming', 1), ('java', 1), ('object', 1), ('oriented', 1), ('language', 1), ('support', 1), ('algorithm', 1), ('description', 1), ('tool', 1), ('describes', 1), ('particular', 1), ('mechanism', 1), ('synchronization', 1), ('cooperative', 1)]
[('scientific', 1), ('computing', 1), ('become', 1), ('indispensable', 1), ('tool', 1), ('numerous', 1), ('field', 1), ('physic', 1), ('mechanic', 1), ('biology', 1), ('finance', 1), ('industry', 1), ('example', 1), ('enables', 1), ('thanks', 1), ('efficient', 1), ('algorithm', 1), ('adapted', 1), ('current', 1), ('computer', 1)]
[('whois', 3), ('discus', 1), ('evolution', 1), ('policy', 1), ('change', 1), ('affect', 1), ('place', 1), ('today', 1), ('future', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('text', 1)]
[('data', 2), ('service', 2), ('show', 1), ('organization', 1), ('leverage', 1), ('providing', 1), ('real', 1), ('life', 1), ('case', 1), ('study', 1), ('various', 1), ('innovative', 1), ('architecture', 1), ('related', 1), ('pattern', 1), ('comprehensive', 1)]
[('cloud', 2), ('new', 2), ('ultimate', 1), ('guide', 1), ('assessing', 1), ('exploiting', 1), ('customer', 1), ('value', 1), ('revenue', 1), ('potential', 1), ('business', 1), ('model', 1), ('sweeping', 1), ('world', 1), ('technology', 1), ('deal', 1), ('fear', 1)]
[('step', 2), ('website', 2), ('optimization', 2), ('instruction', 1), ('executing', 1), ('testing', 1), ('plan', 1), ('overwhelming', 1), ('endeavor', 1), ('due', 1), ('fact', 1), ('encompasses', 1), ('many', 1), ('strategic', 1), ('technical', 1), ('issue', 1)]
[('design', 3), ('java', 2), ('ee', 2), ('pattern', 2), ('master', 1), ('implementation', 1), ('improve', 1), ('skill', 1), ('application', 1), ('architecture', 1), ('professional', 1), ('perfect', 1), ('companion', 1)]
[('python', 3), ('want', 2), ('complete', 1), ('beginner', 1), ('guide', 1), ('young', 1), ('start', 1), ('today', 1), ('adventure', 1), ('designed', 1), ('year', 1), ('old', 1), ('teach', 1), ('programming', 1)]
[('software', 4), ('book', 1), ('introduces', 1), ('theoretical', 1), ('concept', 1), ('explain', 1), ('fundamental', 1), ('design', 1), ('evaluation', 1), ('estimation', 1), ('model', 1), ('provides', 1), ('professional', 1), ('vital', 1), ('information', 1), ('best', 1), ('management', 1)]
[('fiber', 3), ('optic', 3), ('foi', 2), ('exam', 2), ('foundation', 2), ('pas', 1), ('strong', 1), ('technology', 1), ('installer', 1), ('certification', 1), ('guide', 1), ('give', 1), ('solid', 1), ('thorough', 1), ('preparation', 1)]
[('data', 2), ('guide', 1), ('offering', 1), ('unified', 1), ('systemic', 1), ('approach', 1), ('acquiring', 1), ('cleaning', 1), ('managing', 1), ('every', 1), ('experienced', 1), ('practitioner', 1), ('know', 1), ('preparing', 1), ('modeling', 1), ('painstaking', 1)]
[('updated', 2), ('oracle', 2), ('study', 1), ('guide', 1), ('prepares', 1), ('certified', 1), ('associate', 1), ('certification', 1), ('nearly', 1), ('six', 1), ('year', 1), ('cornerstone', 1), ('database', 1), ('software', 1), ('making', 1), ('demand', 1)]
[('day', 2), ('mobile', 2), ('describes', 1), ('evolutionary', 1), ('algorithm', 1), ('ea', 1), ('used', 1), ('identify', 1), ('model', 1), ('minimize', 1), ('problem', 1), ('arise', 1), ('researcher', 1), ('optimization', 1), ('networking', 1), ('ad', 1), ('hoc', 1), ('network', 1)]
[('advent', 1), ('increasingly', 1), ('large', 1), ('consumer', 1), ('collection', 1), ('audio', 1), ('itunes', 1), ('imagery', 1), ('flickr', 1), ('video', 1), ('youtube', 1), ('driving', 1), ('need', 1), ('multimedia', 1), ('retrieval', 1), ('information', 1), ('extraction', 1), ('across', 1), ('medium', 1)]
[('networking', 3), ('career', 2), ('provides', 2), ('start', 1), ('cisco', 1), ('essential', 1), ('nd', 1), ('edition', 1), ('latest', 1), ('beginning', 1), ('book', 1), ('fundamental', 1)]
[('book', 1), ('offer', 1), ('comprehensive', 1), ('coverage', 1), ('mathematical', 1), ('tool', 1), ('needed', 1), ('engineer', 1), ('field', 1), ('processing', 1), ('transport', 1), ('form', 1), ('information', 1), ('data', 1), ('image', 1), ('many', 1), ('engineering', 1), ('discipline', 1), ('provides', 1), ('essential', 1)]
[('book', 1), ('lay', 1), ('concept', 1), ('necessary', 1), ('understand', 1), ('computer', 1), ('work', 1), ('reason', 1), ('clarity', 1), ('author', 1), ('deliberately', 1), ('chosen', 1), ('example', 1), ('apply', 1), ('machine', 1), ('era', 1), ('without', 1), ('water', 1)]
[('technology', 2), ('video', 2), ('end', 2), ('provides', 1), ('coverage', 1), ('major', 1), ('theory', 1), ('involved', 1), ('lifecycle', 1), ('content', 1), ('delivery', 1), ('presenting', 1), ('used', 1), ('communication', 1)]
[('information', 2), ('system', 2), ('inception', 1), ('internet', 1), ('evolved', 1), ('textual', 1), ('towards', 1), ('multimedia', 1), ('data', 1), ('service', 1), ('application', 1), ('consumed', 1), ('content', 1), ('today', 1), ('main', 1), ('problem', 1), ('faced', 1)]
[('ip', 2), ('address', 2), ('management', 2), ('ipam', 2), ('network', 2), ('book', 1), ('first', 1), ('covering', 1), ('subject', 1), ('practice', 1), ('includes', 1), ('application', 1), ('discipline', 1), ('space', 1), ('associated', 1), ('service', 1), ('namely', 1), ('dhcp', 1), ('dynamic', 1), ('host', 1)]
[('book', 1), ('advance', 1), ('understanding', 1), ('application', 1), ('self', 1), ('adaptive', 1), ('intelligent', 1), ('system', 1), ('potentially', 1), ('benefit', 1), ('long', 1), ('term', 1), ('goal', 1), ('replicating', 1), ('certain', 1), ('level', 1), ('brain', 1), ('intelligence', 1), ('complex', 1), ('networked', 1), ('engineering', 1)]
[('electromagnetic', 1), ('wave', 1), ('scattering', 1), ('randomly', 1), ('rough', 1), ('surface', 1), ('presence', 1), ('scatterers', 1), ('active', 1), ('interdisciplinary', 1), ('area', 1), ('research', 1), ('myriad', 1), ('practical', 1), ('application', 1), ('field', 1), ('optic', 1), ('acoustic', 1), ('geoscience', 1), ('remote', 1)]
[('forecasting', 2), ('software', 2), ('go', 1), ('beyond', 1), ('technique', 1), ('master', 1), ('difficult', 1), ('judgement', 1), ('call', 1), ('variety', 1), ('used', 1), ('effectively', 1), ('achieve', 1), ('accurate', 1), ('replace', 1), ('essential', 1)]
[('written', 1), ('leading', 1), ('researcher', 1), ('nd', 1), ('edition', 1), ('dictionary', 1), ('computer', 1), ('vision', 1), ('image', 1), ('processing', 1), ('comprehensive', 1), ('reliable', 1), ('resource', 1), ('provides', 1), ('explanation', 1)]
[('cyber', 4), ('warfare', 2), ('today', 1), ('security', 1), ('defense', 1), ('information', 1), ('issue', 1), ('among', 1), ('relevant', 1), ('topic', 1), ('national', 1), ('international', 1), ('level', 1), ('major', 1), ('state', 1), ('world', 1), ('facing', 1), ('threat', 1), ('trying', 1)]
[('semantic', 2), ('computing', 2), ('present', 1), ('state', 1), ('technology', 1), ('point', 1), ('future', 1), ('direction', 1), ('rapidly', 1), ('evolving', 1), ('interdisciplinary', 1), ('field', 1), ('seek', 1), ('structure', 1), ('design', 1), ('manipulate', 1), ('computer', 1)]
[('sharepoint', 2), ('learn', 1), ('build', 1), ('business', 1), ('solution', 1), ('third', 1), ('edition', 1), ('perennial', 1), ('bestseller', 1), ('feature', 1), ('complete', 1), ('overhaul', 1), ('latest', 1), ('version', 1), ('building', 1)]
[('optimization', 2), ('metaheuristic', 2), ('combinatorial', 2), ('problem', 2), ('ant', 1), ('colony', 1), ('successfully', 1), ('applied', 1), ('wide', 1), ('range', 1), ('author', 1), ('describes', 1), ('study', 1), ('efficiency', 1), ('solving', 1), ('hard', 1)]
[('increasingly', 2), ('digital', 1), ('economy', 1), ('mastering', 1), ('quality', 1), ('data', 1), ('vital', 1), ('yet', 1), ('still', 1), ('organization', 1), ('considerable', 1), ('task', 1), ('necessity', 1), ('better', 1), ('governance', 1), ('reinforcement', 1), ('international', 1), ('rule', 1), ('regulatory', 1)]
[('micro', 1), ('nanosystems', 1), ('represent', 1), ('area', 1), ('major', 1), ('scientific', 1), ('technological', 1), ('opportunity', 1), ('challenge', 1), ('actual', 1), ('potential', 1), ('application', 1), ('almost', 1), ('field', 1), ('human', 1), ('activity', 1), ('aim', 1), ('book', 1), ('present', 1), ('central', 1)]
[('technogenarians', 1), ('investigates', 1), ('older', 1), ('person', 1), ('experience', 1), ('health', 1), ('illness', 1), ('science', 1), ('technology', 1), ('present', 1), ('greater', 1), ('theoretical', 1), ('empirical', 1), ('understanding', 1), ('biomedical', 1), ('aspect', 1), ('aging', 1), ('body', 1), ('mind', 1)]
[('service', 2), ('mobile', 1), ('industry', 1), ('wireless', 1), ('cellular', 1), ('grown', 1), ('rapid', 1), ('pace', 1), ('past', 1), ('decade', 1), ('similarly', 1), ('internet', 1), ('technology', 1), ('made', 1), ('dramatic', 1), ('growth', 1), ('world', 1), ('wide', 1), ('web', 1), ('wire', 1), ('line', 1), ('infrastructure', 1), ('realization', 1)]
[('numerical', 2), ('engineering', 2), ('analysis', 1), ('application', 1), ('mechanic', 1), ('needed', 1), ('guide', 1), ('use', 1), ('method', 1), ('solve', 1), ('practical', 1), ('problem', 1), ('bridging', 1), ('gap', 1)]
[('java', 3), ('skilled', 1), ('programmer', 1), ('concerned', 1), ('coding', 1), ('interview', 1), ('process', 1), ('real', 1), ('world', 1), ('guide', 1), ('help', 1), ('land', 1), ('next', 1), ('position', 1), ('popular', 1), ('powerful', 1), ('language', 1), ('virtual', 1)]
[('use', 2), ('nowadays', 1), ('approximately', 1), ('billion', 1), ('mobile', 1), ('phone', 1), ('take', 1), ('central', 1), ('position', 1), ('within', 1), ('daily', 1), ('life', 1), ('saw', 1), ('tremendous', 1), ('increase', 1), ('wireless', 1), ('system', 1), ('democratization', 1), ('mean', 1)]
[('network', 2), ('special', 1), ('book', 1), ('edition', 1), ('admins', 1), ('technician', 1), ('dealing', 1), ('fiber', 1), ('optic', 1), ('cabling', 1), ('crucial', 1), ('performance', 1), ('incorrect', 1), ('use', 1), ('cable', 1), ('result', 1), ('outage', 1), ('constant', 1)]
[('network', 2), ('complete', 2), ('growing', 1), ('demand', 1), ('fiber', 1), ('optic', 1), ('large', 1), ('scale', 1), ('communication', 1), ('professional', 1), ('need', 1), ('minute', 1), ('information', 1), ('book', 1), ('constitutes', 1), ('part', 1), ('cabling', 1), ('guide', 1), ('copper', 1)]
[('compact', 2), ('learn', 1), ('program', 1), ('array', 1), ('customized', 1), ('device', 1), ('solution', 1), ('highly', 1), ('efficient', 1), ('scalable', 1), ('operating', 1), ('system', 1), ('window', 1), ('embedded', 1), ('wec', 1), ('best', 1), ('option', 1), ('developing', 1), ('new', 1), ('generation', 1)]
[('design', 2), ('management', 2), ('book', 1), ('argues', 1), ('prospective', 1), ('turn', 1), ('ergonomics', 1), ('challenge', 1), ('established', 1), ('field', 1), ('strategic', 1), ('sd', 1), ('multi', 1), ('disciplinary', 1), ('outlook', 1), ('build', 1), ('upon', 1), ('concept', 1), ('derived', 1), ('innovation', 1)]
[('system', 3), ('embedded', 2), ('life', 2), ('everywhere', 1), ('contemporary', 1), ('supposed', 1), ('make', 1), ('comfortable', 1), ('industry', 1), ('used', 1), ('manage', 1), ('control', 1), ('complex', 1), ('nuclear', 1), ('power', 1), ('plant', 1), ('telecommunication', 1)]
[('various', 2), ('book', 1), ('focus', 1), ('ambient', 1), ('intelligence', 1), ('address', 1), ('issue', 1), ('related', 1), ('data', 1), ('management', 1), ('networking', 1), ('hci', 1), ('context', 1), ('taking', 1), ('holistic', 1), ('view', 1), ('cover', 1), ('level', 1), ('abstraction', 1), ('ranging', 1), ('fundamental', 1), ('advanced', 1)]
[('matchmoving', 2), ('foot', 1), ('studio', 1), ('door', 1), ('learning', 1), ('art', 1), ('technique', 1), ('allows', 1), ('computer', 1), ('graphic', 1), ('inserted', 1), ('live', 1), ('action', 1), ('footage', 1), ('correct', 1), ('position', 1)]
[('assurance', 3), ('iot', 3), ('cyber', 2), ('present', 1), ('approach', 1), ('internet', 1), ('thing', 1), ('book', 1), ('discus', 1), ('need', 1), ('environment', 1), ('highlighting', 1), ('key', 1), ('information', 1), ('ia', 1), ('issue', 1)]
[('multimodal', 2), ('need', 2), ('travel', 2), ('transport', 1), ('network', 1), ('customer', 1), ('directed', 1), ('support', 1), ('tool', 1), ('offered', 1), ('information', 1), ('system', 1), ('mi', 1), ('allows', 1), ('input', 1), ('provides', 1), ('appropriate', 1)]
[('service', 2), ('applies', 1), ('lean', 1), ('manufacturing', 1), ('principle', 1), ('across', 1), ('cloud', 1), ('delivery', 1), ('chain', 1), ('enable', 1), ('application', 1), ('infrastructure', 1), ('provider', 1), ('sustainably', 1), ('achieve', 1), ('shortest', 1), ('lead', 1), ('time', 1), ('best', 1), ('quality', 1), ('value', 1)]
[('smart', 2), ('board', 2), ('interactive', 2), ('whiteboards', 2), ('easy', 1), ('use', 1), ('guide', 1), ('combine', 1), ('functionality', 1), ('computer', 1), ('simplicity', 1), ('whiteboard', 1), ('rapidly', 1), ('becoming', 1), ('fixture', 1)]
[('professional', 2), ('stop', 1), ('guide', 1), ('open', 1), ('source', 1), ('java', 1), ('based', 1), ('big', 1), ('data', 1), ('framework', 1), ('hadoop', 1), ('complete', 1), ('reference', 1), ('resource', 1), ('experienced', 1), ('developer', 1), ('looking', 1), ('employ', 1), ('apache', 1)]
[('countermeasure', 2), ('introduces', 1), ('aspect', 1), ('security', 1), ('threat', 1), ('fixed', 1), ('wireless', 1), ('network', 1), ('advising', 1), ('provide', 1), ('secure', 1), ('communication', 1), ('infrastructure', 1), ('enables', 1), ('reader', 1), ('understand', 1), ('risk', 1)]
[('unique', 1), ('addressing', 1), ('different', 1), ('problem', 1), ('sound', 1), ('visualization', 1), ('manipulation', 1), ('unified', 1), ('way', 1), ('advance', 1), ('signal', 1), ('processing', 1), ('technology', 1), ('enabling', 1), ('accurate', 1)]
[('crowdsourcing', 1), ('relatively', 1), ('recent', 1), ('phenomenon', 1), ('appeared', 1), ('continues', 1), ('grow', 1), ('diversify', 1), ('crowdfunding', 1), ('crowdcontrol', 1), ('etc', 1), ('book', 1), ('aim', 1), ('review', 1), ('concept', 1), ('show', 1), ('lead', 1), ('creation', 1), ('value', 1)]
[('arm', 2), ('mobile', 2), ('practical', 1), ('wrox', 1), ('guide', 1), ('programming', 1), ('device', 1), ('percent', 1), ('phone', 1), ('sold', 1), ('recent', 1), ('year', 1), ('using', 1), ('based', 1), ('processor', 1), ('developer', 1), ('eager', 1), ('master', 1), ('embedded', 1)]
[('software', 2), ('tool', 2), ('gap', 1), ('hardware', 1), ('potential', 1), ('performance', 1), ('attained', 1), ('using', 1), ('today', 1), ('parallel', 1), ('program', 1), ('development', 1), ('need', 1), ('manual', 1), ('intervention', 1), ('programmer', 1), ('parallelize', 1), ('code', 1), ('programming', 1)]
[('enterprise', 3), ('fast', 1), ('changing', 1), ('global', 1), ('economy', 1), ('governed', 1), ('service', 1), ('future', 1), ('internet', 1), ('virtual', 1), ('factory', 1), ('self', 1), ('organize', 1), ('distributed', 1), ('interoperable', 1), ('innovation', 1), ('ecosystem', 1), ('issue', 1), ('interoperability', 1)]
[('information', 2), ('new', 1), ('approach', 1), ('unsupervised', 1), ('learning', 1), ('evolving', 1), ('technology', 1), ('brought', 1), ('explosion', 1), ('recent', 1), ('year', 1), ('question', 1), ('might', 1), ('effectively', 1), ('harvested', 1)]
[('data', 2), ('main', 1), ('purpose', 1), ('book', 1), ('investigate', 1), ('explore', 1), ('describe', 1), ('approach', 1), ('method', 1), ('facilitate', 1), ('understanding', 1), ('analytics', 1), ('solution', 1), ('based', 1), ('principle', 1), ('concept', 1), ('application', 1), ('analyzing', 1)]
[('hadoop', 2), ('go', 1), ('guidebook', 1), ('deploying', 1), ('big', 1), ('data', 1), ('solution', 1), ('today', 1), ('enterprise', 1), ('architect', 1), ('need', 1), ('understand', 1), ('framework', 1), ('apis', 1), ('fit', 1), ('together', 1), ('integrated', 1)]
[('method', 2), ('presentation', 1), ('real', 1), ('example', 1), ('industrial', 1), ('us', 1), ('formal', 1), ('scade', 1), ('controlbuild', 1), ('matelo', 1), ('etc', 1), ('various', 1), ('field', 1), ('railway', 1), ('aeronautics', 1), ('automotive', 1), ('industry', 1), ('purpose', 1), ('book', 1), ('present', 1)]
[('software', 2), ('development', 2), ('mdsd', 2), ('model', 1), ('driven', 1), ('currently', 1), ('highly', 1), ('regarded', 1), ('paradigm', 1), ('among', 1), ('developer', 1), ('researcher', 1), ('advent', 1), ('omg', 1), ('mda', 1), ('microsoft', 1), ('factory', 1), ('approach', 1), ('moved', 1), ('centre', 1)]
[('simulation', 2), ('problem', 2), ('authoritative', 1), ('guide', 1), ('computer', 1), ('grounded', 1), ('multi', 1), ('disciplinary', 1), ('approach', 1), ('solving', 1), ('complex', 1), ('computational', 1), ('red', 1), ('teaming', 1)]
[('jquery', 2), ('development', 2), ('newly', 1), ('revised', 1), ('updated', 1), ('resource', 1), ('many', 1), ('feature', 1), ('advantage', 1), ('web', 1), ('offer', 1), ('major', 1), ('update', 1), ('popular', 1), ('beginning', 1), ('javascript', 1), ('cs', 1)]
[('comprehensive', 1), ('guide', 1), ('learning', 1), ('technology', 1), ('unlock', 1), ('value', 1), ('big', 1), ('data', 1), ('cognitive', 1), ('computing', 1), ('provides', 1), ('detailed', 1), ('guidance', 1), ('toward', 1), ('building', 1), ('new', 1), ('class', 1), ('system', 1), ('learn', 1), ('experience', 1)]
[('security', 3), ('guide', 2), ('similar', 1), ('unraveling', 1), ('math', 1), ('word', 1), ('problem', 1), ('intelligence', 1), ('practitioner', 1), ('solving', 1), ('enterprise', 1), ('challenge', 1), ('deciphering', 1), ('process', 1), ('translates', 1), ('goal', 1), ('set', 1)]
[('social', 2), ('medium', 2), ('use', 2), ('praise', 1), ('educator', 1), ('last', 1), ('book', 1), ('provides', 1), ('straightforward', 1), ('discussion', 1), ('pedagogical', 1), ('reason', 1), ('effectively', 1), ('tool', 1), ('enhance', 1), ('learning', 1), ('experience', 1)]
[('arduino', 3), ('programming', 2), ('beginner', 2), ('absolute', 1), ('project', 1), ('based', 1), ('learning', 1), ('adventure', 1), ('guide', 1), ('designed', 1), ('specifically', 1), ('year', 1), ('old', 1), ('want', 1)]
[('offer', 2), ('comprehensive', 2), ('introduction', 2), ('fundamental', 2), ('structure', 1), ('application', 1), ('wide', 1), ('range', 1), ('contemporary', 1), ('coding', 1), ('operation', 1), ('book', 1)]
[('kernel', 2), ('analysis', 2), ('describes', 1), ('discus', 1), ('variant', 1), ('method', 1), ('data', 1), ('type', 1), ('intensely', 1), ('studied', 1), ('recent', 1), ('year', 1), ('book', 1), ('cover', 1), ('topic', 1), ('ranging', 1)]
[('network', 4), ('complex', 1), ('internet', 1), ('ww', 1), ('transportation', 1), ('power', 1), ('grid', 1), ('biological', 1), ('neural', 1), ('scientific', 1), ('cooperation', 1), ('kind', 1), ('provide', 1), ('challenge', 1), ('future', 1), ('technological', 1), ('development', 1)]
[('exponential', 1), ('digitization', 1), ('medical', 1), ('data', 1), ('led', 1), ('transformation', 1), ('practice', 1), ('medicine', 1), ('change', 1), ('notably', 1), ('raise', 1), ('new', 1), ('complexity', 1), ('issue', 1), ('surrounding', 1), ('health', 1), ('proper', 1), ('use', 1), ('communication', 1), ('tool', 1)]
[('autodesk', 2), ('revit', 2), ('architecture', 2), ('put', 1), ('work', 1), ('real', 1), ('world', 1), ('focused', 1), ('guide', 1), ('essential', 1), ('help', 1), ('acquainted', 1), ('quickly', 1), ('become', 1), ('productive', 1)]
[('theory', 3), ('graph', 2), ('advanced', 1), ('focus', 1), ('main', 1), ('notion', 1), ('arising', 1), ('emphasis', 1), ('start', 1), ('book', 1), ('possible', 1), ('application', 1), ('fruitful', 1), ('link', 1), ('existing', 1), ('linear', 1), ('algebra', 1), ('second', 1), ('part', 1)]
[('autocad', 3), ('reference', 2), ('bestselling', 1), ('new', 1), ('bonus', 1), ('video', 1), ('content', 1), ('mastering', 1), ('lt', 1), ('complete', 1), ('tutorial', 1), ('helping', 1), ('design', 1), ('accurately', 1), ('efficiently', 1)]
[('advertisement', 2), ('fraud', 1), ('pose', 1), ('significant', 1), ('threat', 1), ('internet', 1), ('online', 1), ('attempt', 1), ('spread', 1), ('malware', 1), ('lower', 1), ('willingness', 1), ('view', 1), ('handle', 1), ('severely', 1), ('affect', 1), ('structure', 1), ('web', 1), ('viability', 1)]
[('cobol', 2), ('nowadays', 1), ('billion', 1), ('line', 1), ('code', 1), ('programming', 1), ('language', 1), ('book', 1), ('analysis', 1), ('diagnosis', 1), ('strategy', 1), ('mdd', 1), ('method', 1), ('tool', 1), ('transform', 1), ('legacy', 1), ('modernized', 1), ('application', 1), ('comply', 1), ('internet', 1)]
[('book', 1), ('complete', 1), ('single', 1), ('information', 1), ('source', 1), ('technique', 1), ('complex', 1), ('security', 1), ('privacy', 1), ('issue', 1), ('vehicular', 1), ('ad', 1), ('hoc', 1), ('network', 1), ('take', 1), ('cooperative', 1), ('approach', 1), ('towards', 1), ('addressing', 1)]
[('information', 2), ('book', 1), ('complexity', 1), ('system', 1), ('subject', 1), ('addressed', 1), ('conceptual', 1), ('applied', 1), ('perspective', 1), ('concept', 1), ('drawn', 1), ('theory', 1), ('industrial', 1), ('design', 1), ('software', 1), ('engineering', 1), ('content', 1)]
[('benefit', 2), ('geographic', 1), ('redundancy', 1), ('obviously', 1), ('huge', 1), ('disaster', 1), ('recovery', 1), ('far', 1), ('le', 1), ('obvious', 1), ('feasible', 1), ('likely', 1), ('typical', 1), ('non', 1), ('catastrophic', 1), ('hardware', 1), ('software', 1), ('human', 1), ('failure', 1), ('georedundancy', 1)]
[('design', 3), ('increased', 2), ('system', 2), ('complexity', 1), ('embedded', 1), ('coupled', 1), ('quick', 1), ('cycle', 1), ('accommodate', 1), ('faster', 1), ('time', 1), ('market', 1), ('requires', 1), ('productivity', 1), ('involves', 1), ('model', 1), ('based', 1), ('tool', 1), ('supported', 1), ('methodology', 1)]
[('web', 2), ('service', 2), ('computing', 2), ('workflow', 2), ('focus', 1), ('use', 1), ('based', 1), ('technology', 1), ('develop', 1), ('timely', 1), ('effective', 1), ('business', 1), ('scientific', 1), ('field', 1), ('utilizing', 1)]
[('guide', 2), ('angularjs', 2), ('comprehensive', 1), ('google', 1), ('open', 1), ('source', 1), ('client', 1), ('side', 1), ('framework', 1), ('app', 1), ('development', 1), ('existing', 1), ('struggle', 1), ('provide', 1), ('simple', 1), ('understandable', 1), ('explanation', 1)]
[('data', 2), ('fresh', 1), ('take', 1), ('financial', 1), ('visualization', 1), ('greater', 1), ('accuracy', 1), ('understanding', 1), ('provides', 1), ('snapshot', 1), ('state', 1), ('business', 1), ('key', 1), ('success', 1), ('conversation', 1), ('decision', 1)]
[('book', 1), ('good', 1), ('tour', 1), ('guide', 1), ('describe', 1), ('major', 1), ('attraction', 1), ('share', 1), ('history', 1), ('spirit', 1), ('language', 1), ('culture', 1), ('place', 1), ('henning', 1), ('schulzrinne', 1), ('professor', 1), ('columbia', 1), ('university', 1)]
[('data', 2), ('qlikview', 2), ('unlock', 1), ('meaning', 1), ('qlik', 1), ('platform', 1), ('designed', 1), ('provide', 1), ('fast', 1), ('easy', 1), ('analytics', 1), ('tool', 1), ('business', 1), ('detailed', 1)]
[('microsoft', 3), ('leverage', 2), ('integration', 1), ('sql', 1), ('server', 1), ('office', 1), ('effective', 1), ('bi', 1), ('applied', 1), ('business', 1), ('intelligence', 1), ('show', 1), ('complete', 1), ('set', 1), ('tool', 1), ('including', 1)]
[('wordpress', 2), ('easy', 1), ('self', 1), ('paced', 1), ('guide', 1), ('powerful', 1), ('platform', 1), ('hour', 1), ('trainer', 1), ('rd', 1), ('edition', 1), ('provides', 1), ('comprehensive', 1), ('unique', 1), ('book', 1), ('video', 1), ('package', 1), ('focus', 1), ('practical', 1)]
[('simulation', 2), ('book', 1), ('devoted', 1), ('used', 1), ('methodology', 1), ('performance', 1), ('evaluation', 1), ('using', 1), ('specialized', 1), ('software', 1), ('mathematical', 1), ('modeling', 1), ('important', 1), ('part', 1), ('dedicated', 1), ('particularly', 1), ('theoretical', 1), ('framework', 1)]
[('wearable', 4), ('android', 2), ('software', 1), ('development', 1), ('mobile', 1), ('fitness', 1), ('build', 1), ('application', 1), ('wear', 1), ('google', 1), ('fit', 1), ('platform', 1), ('book', 1), ('cover', 1), ('computing', 1)]
[('hard', 2), ('disk', 2), ('drive', 2), ('industry', 2), ('presentation', 1), ('use', 1), ('computer', 1), ('vision', 1), ('system', 1), ('control', 1), ('manufacturing', 1), ('process', 1), ('product', 1), ('quality', 1), ('visual', 1), ('inspection', 1), ('technology', 1)]
[('mysql', 3), ('special', 1), ('focus', 1), ('next', 1), ('major', 1), ('release', 1), ('resource', 1), ('provides', 1), ('solid', 1), ('framework', 1), ('anyone', 1), ('new', 1), ('transitioning', 1), ('another', 1), ('database', 1), ('platform', 1), ('experience', 1), ('administrator', 1), ('high', 1), ('profile', 1), ('author', 1), ('duo', 1)]
[('programming', 2), ('quickly', 1), ('learn', 1), ('program', 1), ('unique', 1), ('book', 1), ('video', 1), ('package', 1), ('hour', 1), ('trainer', 1), ('nd', 1), ('edition', 1), ('quick', 1), ('easy', 1), ('guide', 1), ('even', 1)]
[('canon', 2), ('full', 2), ('eos', 1), ('smallest', 1), ('lightest', 1), ('frame', 1), ('dslr', 1), ('camera', 1), ('date', 1), ('boast', 1), ('extensive', 1), ('feature', 1), ('set', 1), ('color', 1), ('portable', 1), ('guide', 1), ('go', 1), ('beyond', 1), ('owner', 1), ('manual', 1), ('deliver', 1), ('clear', 1), ('succinct', 1), ('description', 1)]
[('information', 2), ('knowledge', 2), ('element', 1), ('stored', 1), ('processed', 1), ('transmitted', 1), ('linked', 1), ('concept', 1), ('communication', 1), ('data', 1), ('representation', 1), ('context', 1), ('steady', 1), ('increase', 1), ('mass', 1), ('difficult', 1)]
[('performance', 1), ('algorithm', 1), ('used', 1), ('depends', 1), ('gna', 1), ('book', 1), ('focus', 1), ('comparison', 1), ('optimizers', 1), ('defines', 1), ('stress', 1), ('outcome', 1), ('approach', 1), ('derived', 1), ('classic', 1), ('criterion', 1), ('median', 1), ('average', 1), ('etc', 1)]
[('nikon', 2), ('everything', 1), ('need', 1), ('know', 1), ('take', 1), ('full', 1), ('advantage', 1), ('rounded', 1), ('feature', 1), ('rich', 1), ('dslr', 1), ('new', 1), ('compact', 1), ('lightweight', 1), ('camera', 1), ('loaded', 1), ('sophisticated', 1)]
[('problem', 2), ('optimization', 2), ('called', 1), ('string', 1), ('abundant', 1), ('bioinformatics', 1), ('computational', 1), ('biology', 1), ('new', 1), ('dealing', 1), ('dna', 1), ('protein', 1), ('sequence', 1), ('constantly', 1), ('arising', 1), ('researcher', 1), ('highly', 1), ('need', 1), ('efficient', 1)]
[('knowledge', 3), ('book', 1), ('provides', 1), ('practical', 1), ('approach', 1), ('harnessing', 1), ('organization', 1), ('focus', 1), ('sharing', 1), ('tacit', 1), ('knowing', 1), ('view', 1), ('accomplishment', 1), ('social', 1), ('interaction', 1)]
[('customer', 2), ('complete', 1), ('view', 1), ('make', 1), ('marketing', 1), ('analysis', 1), ('meaningful', 1), ('really', 1), ('know', 1), ('find', 1), ('help', 1), ('expert', 1), ('author', 1), ('daniel', 1), ('waisberg', 1)]
[('microcontroller', 2), ('first', 1), ('textbook', 1), ('provide', 1), ('complete', 1), ('systemic', 1), ('introduction', 1), ('component', 1), ('material', 1), ('related', 1), ('arm', 1), ('cortex', 1), ('system', 1), ('including', 1), ('hardware', 1), ('software', 1), ('practical', 1), ('application', 1), ('real', 1)]
[('book', 1), ('present', 1), ('statistical', 1), ('model', 1), ('recently', 1), ('developed', 1), ('within', 1), ('several', 1), ('research', 1), ('community', 1), ('access', 1), ('information', 1), ('contained', 1), ('text', 1), ('collection', 1), ('problem', 1), ('considered', 1), ('linked', 1), ('application', 1), ('aiming', 1), ('facilitating', 1)]
[('cover', 2), ('java', 2), ('database', 2), ('programming', 2), ('fundamental', 1), ('advanced', 1), ('technique', 1), ('beginning', 1), ('experienced', 1), ('reader', 1), ('book', 1), ('practical', 1), ('consideration', 1), ('application', 1), ('using', 1), ('netbeans', 1), ('ide', 1)]
[('system', 4), ('distributed', 2), ('software', 2), ('application', 2), ('critical', 2), ('nowadays', 1), ('increasingly', 1), ('present', 1), ('public', 1), ('title', 1), ('design', 1), ('algorithm', 1)]
[('comprehensive', 1), ('resource', 1), ('packed', 1), ('information', 1), ('beginner', 1), ('advanced', 1), ('user', 1), ('solidworks', 1), ('leading', 1), ('solid', 1), ('modeling', 1), ('software', 1), ('used', 1), ('computer', 1), ('aided', 1), ('design', 1), ('powerful', 1), ('simple', 1)]
[('energy', 2), ('address', 1), ('innovation', 1), ('technology', 1), ('relating', 1), ('efficiency', 1), ('wide', 1), ('variety', 1), ('contemporary', 1), ('computer', 1), ('system', 1), ('network', 1), ('concern', 1), ('global', 1), ('consumption', 1), ('time', 1), ('high', 1)]
[('aviation', 2), ('book', 1), ('combine', 1), ('research', 1), ('activity', 1), ('author', 1), ('researcher', 1), ('ecole', 1), ('nationale', 1), ('de', 1), ('civile', 1), ('french', 1), ('national', 1), ('school', 1), ('civil', 1), ('present', 1), ('finding', 1), ('last', 1), ('year', 1), ('work', 1)]
[('ic', 2), ('computing', 2), ('study', 2), ('guide', 2), ('test', 1), ('know', 1), ('way', 1), ('around', 1), ('computer', 1), ('exam', 1), ('internet', 1), ('core', 1), ('certification', 1), ('fundamental', 1), ('ideal', 1), ('focus', 1)]
[('problem', 2), ('book', 1), ('describes', 1), ('main', 1), ('classical', 1), ('combinatorial', 1), ('encountered', 1), ('designing', 1), ('logistics', 1), ('network', 1), ('driving', 1), ('supply', 1), ('chain', 1), ('show', 1), ('tackled', 1), ('metaheuristics', 1), ('separately', 1), ('using', 1)]
[('intelligence', 1), ('defined', 1), ('ability', 1), ('optimize', 1), ('manage', 1), ('reconcile', 1), ('current', 1), ('physical', 1), ('economic', 1), ('even', 1), ('social', 1), ('flow', 1), ('strong', 1), ('constraint', 1), ('immediacy', 1), ('prof', 1), ('opportunity', 1), ('imagine', 1), ('propose', 1), ('deliver', 1), ('solution', 1)]
[('vehicle', 2), ('routing', 2), ('problem', 2), ('several', 2), ('book', 1), ('dedicated', 1), ('metaheuristics', 1), ('applied', 1), ('implementation', 1), ('given', 1), ('illustrative', 1), ('example', 1), ('along', 1), ('application', 1), ('typical', 1)]
[('resource', 2), ('implementing', 2), ('managing', 2), ('essential', 1), ('cloud', 1), ('infrastructure', 1), ('azure', 1), ('serving', 1), ('critical', 1), ('anyone', 1), ('responsible', 1), ('strategizing', 1), ('architecting', 1)]
[('social', 3), ('medium', 3), ('invaluable', 1), ('advice', 1), ('analyzing', 1), ('measuring', 1), ('effect', 1), ('wish', 1), ('sit', 1), ('expert', 1), ('figure', 1), ('whether', 1), ('initiative', 1), ('working', 1), ('metric', 1)]
[('autocad', 2), ('quickly', 2), ('hand', 2), ('learn', 1), ('painlessly', 1), ('practical', 1), ('guide', 1), ('essential', 1), ('get', 1), ('speed', 1), ('instruction', 1), ('program', 1), ('core', 1), ('feature', 1)]
[('book', 1), ('focus', 1), ('service', 1), ('oriented', 1), ('architecture', 1), ('soa', 1), ('basis', 1), ('sustainable', 1), ('agile', 1), ('system', 1), ('able', 1), ('adapt', 1), ('new', 1), ('trend', 1), ('manage', 1), ('process', 1), ('involving', 1), ('third', 1), ('party', 1), ('discussion', 1), ('based', 1), ('public', 1)]
[('constraint', 2), ('major', 1), ('challenge', 1), ('programming', 1), ('develop', 1), ('efficient', 1), ('generic', 1), ('approach', 1), ('solve', 1), ('instance', 1), ('satisfaction', 1), ('problem', 1), ('csp', 1), ('aim', 1), ('mind', 1), ('book', 1), ('provides', 1), ('accessible', 1), ('synthesis', 1), ('author', 1)]
[('potential', 2), ('set', 2), ('information', 1), ('system', 1), ('enormous', 1), ('improving', 1), ('business', 1), ('performance', 1), ('mind', 1), ('company', 1), ('exploit', 1), ('optimize', 1), ('without', 1), ('delay', 1), ('order', 1), ('improve', 1), ('efficiency', 1), ('continue', 1)]
[('highly', 1), ('accessible', 1), ('reference', 1), ('offering', 1), ('broad', 1), ('range', 1), ('topic', 1), ('insight', 1), ('large', 1), ('scale', 1), ('network', 1), ('centric', 1), ('distributed', 1), ('system', 1), ('evolving', 1), ('field', 1), ('high', 1), ('performance', 1), ('computing', 1), ('networking', 1)]
[('maya', 3), ('professional', 2), ('go', 1), ('beginner', 1), ('expert', 1), ('tutorial', 1), ('based', 1), ('guide', 1), ('mastering', 1), ('autodesk', 1), ('hand', 1), ('coverage', 1), ('getting', 1)]
[('text', 2), ('accurate', 2), ('data', 1), ('combining', 1), ('qualitative', 1), ('quantitative', 1), ('algorithm', 1), ('within', 1), ('sa', 1), ('system', 1), ('effective', 1), ('understandable', 1), ('analytics', 1), ('need', 1), ('powerful', 1), ('increasingly', 1)]
[('sie', 3), ('buch', 2), ('sich', 2), ('mit', 1), ('diesem', 1), ('können', 1), ('ganz', 1), ('leicht', 1), ('window', 1), ('einarbeiten', 1), ('wenn', 1), ('die', 1), ('wesentlichen', 1), ('grundlagen', 1), ('verstehen', 1), ('wollen', 1), ('ohne', 1), ('durch', 1), ('verwirrendes', 1), ('computerkauderwelsch', 1), ('graben', 1), ('zu', 1), ('müssen', 1), ('suchen', 1), ('nicht', 1), ('weiter', 1), ('diesis', 1), ('nutzt', 1), ('einen', 1)]
[('sa', 2), ('bridge', 1), ('gap', 1), ('allowing', 1), ('user', 1), ('trained', 1), ('language', 1), ('easily', 1), ('learn', 1), ('widely', 1), ('used', 1), ('different', 1), ('software', 1), ('environment', 1), ('prized', 1), ('statistical', 1)]
[('die', 3), ('der', 2), ('bioinformatik', 1), ('ist', 1), ('für', 1), ('weiterentwicklung', 1), ('modernen', 1), ('biowissenschaften', 1), ('von', 1), ('herausragender', 1), ('bedeutung', 1), ('grundzügen', 1), ('wird', 1), ('sie', 1), ('teil', 1), ('einer', 1), ('jeden', 1), ('ausbildung', 1), ('zum', 1), ('biologen', 1), ('oder', 1), ('biochemiker', 1), ('werden', 1), ('obwohl', 1), ('zahl', 1), ('angebotenen', 1)]
[('new', 2), ('application', 2), ('showcase', 1), ('latest', 1), ('trend', 1), ('virtual', 1), ('augmented', 1), ('reality', 1), ('healthcare', 1), ('medical', 1), ('provides', 1), ('overview', 1), ('economic', 1), ('psychological', 1), ('educational', 1), ('organizational', 1), ('impact', 1)]
[('technique', 2), ('data', 2), ('book', 1), ('examine', 1), ('issue', 1), ('iot', 1), ('according', 1), ('three', 1), ('complementary', 1), ('ax', 1), ('use', 1), ('ethic', 1), ('used', 1), ('produce', 1), ('artefact', 1), ('physical', 1), ('object', 1), ('infrastructure', 1), ('program', 1), ('algorithm', 1), ('software', 1), ('big', 1)]
[('piece', 2), ('information', 2), ('reception', 1), ('never', 1), ('passive', 1), ('depending', 1), ('origin', 1), ('content', 1), ('personal', 1), ('belief', 1), ('conviction', 1), ('bestow', 1), ('upon', 1), ('spontaneously', 1), ('reflection', 1), ('certain', 1), ('amount', 1)]
[('algorithm', 2), ('evolutionary', 1), ('bio', 1), ('inspired', 1), ('based', 1), ('darwin', 1), ('theory', 1), ('evolution', 1), ('expected', 1), ('provide', 1), ('non', 1), ('optimal', 1), ('good', 1), ('quality', 1), ('solution', 1), ('problem', 1), ('whose', 1), ('resolution', 1), ('impracticable', 1), ('exact', 1), ('method', 1)]
[('effectively', 1), ('introduce', 1), ('promote', 1), ('analytics', 1), ('within', 1), ('enterprise', 1), ('company', 1), ('use', 1), ('information', 1), ('set', 1), ('strategy', 1), ('accomplish', 1), ('business', 1), ('objective', 1), ('many', 1), ('ceo', 1), ('cio', 1), ('say', 1)]
[('big', 3), ('data', 3), ('microsoft', 2), ('tap', 1), ('power', 1), ('technology', 1), ('new', 1), ('platform', 1), ('valuable', 1), ('tool', 1), ('help', 1), ('company', 1), ('timely', 1), ('book', 1)]
[('google', 2), ('phone', 2), ('save', 1), ('time', 1), ('money', 1), ('revolutionary', 1), ('new', 1), ('system', 1), ('voice', 1), ('combine', 1), ('existing', 1), ('line', 1), ('mail', 1), ('web', 1), ('access', 1), ('central', 1), ('communication', 1), ('channel', 1), ('tech', 1), ('industry', 1), ('watcher', 1), ('expect', 1), ('give', 1), ('skype', 1), ('serious', 1)]
[('evaluation', 2), ('novel', 1), ('approach', 1), ('decision', 1), ('engineering', 1), ('verified', 1), ('framework', 1), ('modeling', 1), ('human', 1), ('reasoning', 1), ('soft', 1), ('computing', 1), ('logic', 1), ('provides', 1), ('depth', 1), ('examination', 1)]
[('identity', 2), ('theft', 2), ('billion', 2), ('practical', 1), ('solution', 1), ('help', 1), ('deter', 1), ('detect', 1), ('defend', 1), ('million', 1), ('american', 1), ('became', 1), ('victim', 1), ('cost', 1), ('exceeded', 1), ('consumer', 1), ('spend', 1)]
[('sie', 3), ('und', 2), ('schnell', 1), ('einfach', 1), ('interaktive', 1), ('webseiten', 1), ('programmieren', 1), ('andy', 1), ('harris', 1), ('zeigt', 1), ('ihnen', 1), ('alles', 1), ('über', 1), ('javascript', 1), ('wissen', 1), ('müssen', 1), ('um', 1), ('diesis', 1), ('ziel', 1), ('zu', 1), ('erreichen', 1), ('zunächst', 1), ('erlernen', 1), ('die', 1), ('grundlagen', 1), ('der', 1), ('programmierung', 1), ('erfahren', 1), ('dann', 1), ('wie', 1), ('ihre', 1)]
[('buddypress', 2), ('wordpress', 2), ('feature', 2), ('use', 1), ('create', 1), ('ultimate', 1), ('site', 1), ('experience', 1), ('suite', 1), ('free', 1), ('plugins', 1), ('theme', 1), ('adding', 1), ('distinct', 1), ('new', 1), ('contains', 1), ('expect', 1)]
[('word', 2), ('new', 2), ('simply', 1), ('easiest', 1), ('way', 1), ('yet', 1), ('speed', 1), ('microsoft', 1), ('includes', 1), ('sort', 1), ('feature', 1), ('functionality', 1), ('redesigned', 1), ('interface', 1), ('emphasis', 1), ('collaboration', 1), ('many', 1), ('additional', 1), ('change', 1)]
[('character', 2), ('order', 1), ('bring', 1), ('life', 1), ('beneficial', 1), ('animator', 1), ('solid', 1), ('understanding', 1), ('acting', 1), ('principle', 1), ('book', 1), ('examines', 1), ('important', 1), ('skill', 1), ('behind', 1), ('artistry', 1), ('creating', 1), ('animated', 1), ('particular', 1), ('emphasis', 1)]
[('developer', 2), ('advance', 1), ('applescript', 1), ('skill', 1), ('easily', 1), ('guide', 1), ('part', 1), ('reference', 1), ('series', 1), ('book', 1), ('packed', 1), ('professional', 1), ('secret', 1), ('designing', 1), ('building', 1), ('automated', 1), ('solution', 1)]
[('excel', 3), ('feature', 2), ('master', 1), ('powerful', 1), ('even', 1), ('use', 1), ('time', 1), ('speed', 1), ('useful', 1), ('pivottable', 1), ('pivotchart', 1), ('turn', 1), ('long', 1), ('list', 1), ('unreadable', 1), ('data', 1)]
[('framework', 2), ('ultimate', 1), ('guide', 1), ('net', 1), ('updated', 1), ('coverage', 1), ('intermediate', 1), ('advanced', 1), ('feature', 1), ('new', 1), ('example', 1), ('detailed', 1), ('discussion', 1), ('recent', 1), ('language', 1), ('addition', 1), ('book', 1), ('cover', 1), ('everything', 1)]
[('experimental', 2), ('criticality', 2), ('leading', 1), ('authority', 1), ('field', 1), ('review', 1), ('current', 1), ('theoretical', 1), ('knowledge', 1), ('brain', 1), ('function', 1), ('book', 1), ('begin', 1), ('summarizing', 1), ('evidence', 1)]
[('social', 2), ('medium', 2), ('big', 2), ('data', 2), ('harness', 1), ('power', 1), ('predict', 1), ('customer', 1), ('behavior', 1), ('improve', 1), ('sale', 1), ('biggest', 1), ('source', 1), ('fortune', 1), ('company', 1), ('investing', 1), ('initiative', 1)]
[('javascript', 2), ('big', 1), ('dream', 1), ('kick', 1), ('start', 1), ('learned', 1), ('thing', 1), ('millennial', 1), ('generation', 1), ('young', 1), ('make', 1), ('history', 1), ('online', 1), ('kid', 1), ('dummy', 1)]
[('office', 3), ('fundamental', 2), ('keep', 1), ('latest', 1), ('technology', 1), ('learn', 1), ('microsoft', 1), ('senior', 1), ('dummy', 1), ('ideal', 1), ('resource', 1), ('learning', 1)]
[('swift', 2), ('jump', 1), ('app', 1), ('development', 1), ('world', 1), ('confidence', 1), ('io', 1), ('hour', 1), ('trainer', 1), ('combine', 1), ('book', 1), ('video', 1), ('lesson', 1), ('apple', 1), ('programming', 1), ('language', 1), ('prepare', 1), ('build', 1), ('iphone', 1), ('ipad', 1), ('apps', 1)]
[('nikon', 3), ('jump', 1), ('photography', 1), ('easy', 1), ('guide', 1), ('armed', 1), ('new', 1), ('digital', 1), ('camera', 1), ('know', 1), ('start', 1), ('problem', 1), ('dummy', 1)]
[('mac', 3), ('take', 1), ('bite', 1), ('offer', 1), ('bestselling', 1), ('guide', 1), ('joined', 1), ('cool', 1), ('kid', 1), ('club', 1), ('bought', 1), ('kudos', 1), ('dare', 1), ('admit', 1), ('sophisticated', 1), ('mate', 1), ('still', 1), ('need', 1), ('help', 1)]
[('professional', 2), ('scala', 2), ('provides', 1), ('experienced', 1), ('programmer', 1), ('fast', 1), ('track', 1), ('coverage', 1), ('aimed', 1), ('supporting', 1), ('use', 1), ('production', 1), ('application', 1), ('skipping', 1), ('basic', 1), ('fundamental', 1), ('programming', 1)]
[('samsung', 2), ('galaxy', 2), ('gear', 2), ('hand', 1), ('guide', 1), ('look', 1), ('cool', 1), ('designed', 1), ('keep', 1), ('speed', 1), ('life', 1), ('giving', 1), ('fast', 1), ('easy', 1), ('access', 1), ('calendar', 1)]
[('autocad', 4), ('hand', 1), ('instruction', 1), ('real', 1), ('world', 1), ('workflow', 1), ('lt', 1), ('essential', 1), ('unique', 1), ('task', 1), ('based', 1), ('tutorial', 1), ('designed', 1), ('student', 1), ('professional', 1), ('user', 1)]
[('dummy', 3), ('office', 2), ('previously', 1), ('published', 1), ('version', 1), ('feature', 1), ('new', 1), ('cover', 1), ('design', 1), ('content', 1)]
[('coding', 2), ('help', 1), ('grown', 1), ('ups', 1), ('new', 1), ('getting', 1), ('jump', 1), ('learning', 1), ('make', 1), ('technology', 1), ('work', 1), ('essential', 1), ('prepare', 1), ('kid', 1), ('future', 1), ('unfortunately', 1), ('many', 1), ('parent', 1), ('teacher', 1), ('mentor', 1)]
[('wireless', 2), ('cwnp', 2), ('official', 1), ('study', 1), ('guide', 1), ('certified', 1), ('analysis', 1), ('professional', 1), ('certification', 1), ('four', 1), ('leading', 1), ('expert', 1), ('thoroughly', 1), ('prepare', 1), ('vendor', 1), ('neutral', 1), ('cwap', 1), ('exam', 1), ('administered', 1), ('industry', 1), ('leader', 1)]
[('use', 1), ('digital', 1), ('information', 1), ('communication', 1), ('technology', 1), ('trace', 1), ('social', 1), ('acceptability', 1), ('exploitation', 1), ('data', 1), ('context', 1), ('negotiation', 1), ('us', 1), ('reason', 1), ('user', 1), ('present', 1)]
[('network', 2), ('theory', 2), ('deterministic', 1), ('calculus', 1), ('based', 1), ('min', 1), ('plus', 1), ('algebra', 1), ('aim', 1), ('compute', 1), ('worst', 1), ('case', 1), ('performance', 1), ('bound', 1), ('communication', 1), ('goal', 1), ('provide', 1), ('comprehensive', 1), ('view', 1), ('recent', 1), ('advance', 1)]
[('ability', 1), ('future', 1), ('industry', 1), ('create', 1), ('interactive', 1), ('flexible', 1), ('always', 1), ('connection', 1), ('design', 1), ('manufacturing', 1), ('supply', 1), ('ongoing', 1), ('challenge', 1), ('affecting', 1), ('competitiveness', 1), ('efficiency', 1), ('resourcing', 1), ('goal', 1), ('enterprise', 1)]
[('work', 1), ('office', 1), ('probably', 1), ('lose', 1), ('sleep', 1), ('worrying', 1), ('whether', 1), ('file', 1), ('safe', 1), ('pc', 1), ('melt', 1), ('company', 1), ('department', 1), ('handle', 1), ('thing', 1), ('business', 1), ('network', 1), ('precious', 1), ('photo', 1), ('address', 1)]
[('language', 2), ('whether', 1), ('total', 1), ('novice', 1), ('programmer', 1), ('shifting', 1), ('newest', 1), ('version', 1), ('programming', 1), ('full', 1), ('cool', 1), ('feature', 1), ('want', 1), ('use', 1), ('visual', 1), ('studio', 1), ('compatibility', 1), ('perfect', 1), ('building', 1), ('window', 1), ('vista', 1)]
[('processor', 3), ('programming', 2), ('pc', 2), ('expert', 1), ('guidance', 1), ('today', 1), ('dual', 1), ('core', 1), ('explode', 1), ('eight', 1), ('urgent', 1), ('need', 1), ('programmer', 1), ('master', 1), ('concurrent', 1)]
[('do', 2), ('made', 1), ('easy', 1), ('window', 1), ('rule', 1), ('world', 1), ('popular', 1), ('computing', 1), ('pc', 1), ('around', 1), ('theglobe', 1), ('still', 1), ('place', 1), ('heart', 1), ('mind', 1), ('ofcomputer', 1), ('user', 1), ('vaguely', 1), ('remember', 1), ('prompt', 1), ('look', 1)]
[('master', 2), ('autocad', 2), ('software', 2), ('step', 2), ('learn', 1), ('autodesk', 1), ('official', 1), ('training', 1), ('guide', 1), ('comprehensive', 1), ('reference', 1), ('tutorial', 1), ('help', 1), ('quickly', 1), ('featuring', 1), ('concise', 1), ('explanation', 1)]
[('mac', 3), ('thinking', 1), ('making', 1), ('switch', 1), ('pc', 1), ('congratulation', 1), ('virus', 1), ('free', 1), ('ride', 1), ('switching', 1), ('dummy', 1), ('make', 1), ('smoother', 1), ('imagined', 1), ('buying', 1), ('right', 1)]
[('using', 3), ('nhibernate', 2), ('application', 2), ('net', 2), ('wrox', 1), ('blox', 1), ('demonstrates', 1), ('start', 1), ('line', 1), ('business', 1), ('asp', 1), ('vb', 1), ('speed', 1), ('development', 1), ('removing', 1), ('need', 1), ('build', 1), ('data', 1), ('access', 1), ('layer', 1), ('dal', 1)]
[('blockchain', 2), ('data', 2), ('essential', 1), ('guide', 1), ('using', 1), ('provide', 1), ('flexibility', 1), ('cost', 1), ('saving', 1), ('security', 1), ('management', 1), ('analysis', 1), ('information', 1), ('sharing', 1), ('distributed', 1), ('system', 1)]
[('blog', 2), ('website', 2), ('portfolio', 2), ('squarespace', 2), ('discover', 1), ('build', 1), ('fast', 1), ('growing', 1), ('solution', 1), ('creating', 1), ('maintaining', 1), ('allows', 1), ('drag', 1), ('drop', 1)]
[('game', 3), ('digital', 2), ('easy', 1), ('follow', 1), ('primer', 1), ('fundamental', 1), ('design', 1), ('quickly', 1), ('evolving', 1), ('mobile', 1), ('market', 1), ('spurring', 1), ('creation', 1), ('stratosphere', 1), ('revenue', 1), ('exceeding', 1), ('film', 1)]
[('blog', 2), ('wordpress', 2), ('running', 1), ('latest', 1), ('version', 1), ('popular', 1), ('easy', 1), ('use', 1), ('blogging', 1), ('platform', 1), ('allows', 1), ('create', 1), ('dynamic', 1), ('engaging', 1), ('even', 1)]
[('theory', 2), ('technology', 2), ('compiler', 2), ('broad', 1), ('scope', 1), ('involving', 1), ('application', 1), ('programming', 1), ('construction', 1), ('moving', 1), ('target', 1), ('constant', 1), ('advance', 1), ('taking', 1), ('place', 1), ('today', 1), ('renewed', 1), ('focus', 1)]
[('guide', 2), ('canon', 2), ('dslr', 2), ('camera', 2), ('perfect', 1), ('running', 1), ('new', 1), ('eos', 1), ('rebel', 1), ('popular', 1), ('moving', 1), ('point', 1), ('shoot', 1), ('first', 1), ('time', 1), ('full', 1), ('color', 1)]
[('network', 4), ('juno', 2), ('reliable', 2), ('operating', 2), ('system', 2), ('learn', 1), ('use', 1), ('make', 1), ('providing', 1), ('administrator', 1), ('software', 1), ('award', 1), ('winning', 1), ('focus', 1), ('security', 1)]
[('vsphere', 3), ('vmware', 2), ('covering', 1), ('latest', 1), ('software', 1), ('essential', 1), ('book', 1), ('aimed', 1), ('solving', 1), ('performance', 1), ('problem', 1), ('happen', 1), ('industry', 1), ('widely', 1), ('deployed', 1), ('virtualization', 1)]
[('new', 2), ('mobile', 2), ('platform', 2), ('bada', 2), ('expert', 1), ('introduction', 1), ('samsung', 1), ('run', 1), ('mass', 1), ('market', 1), ('phone', 1), ('enables', 1), ('build', 1), ('cutting', 1), ('edge', 1), ('application', 1), ('device', 1), ('access', 1), ('layer', 1)]
[('book', 2), ('know', 2), ('practical', 1), ('ten', 1), ('learn', 1), ('everything', 1), ('need', 1), ('microsoft', 1), ('office', 1), ('comprehensive', 1), ('guide', 1), ('bookshelf', 1), ('way', 1), ('around', 1), ('application', 1), ('within', 1)]
[('microsoft', 2), ('office', 2), ('business', 2), ('updated', 1), ('revised', 1), ('cover', 1), ('latest', 1), ('feature', 1), ('world', 1), ('leading', 1), ('suite', 1), ('productivity', 1), ('software', 1), ('help', 1), ('user', 1), ('complete', 1), ('common', 1), ('task', 1)]
[('database', 2), ('data', 2), ('topic', 1), ('nosql', 1), ('recently', 1), ('emerged', 1), ('face', 1), ('big', 1), ('challenge', 1), ('namely', 1), ('increasing', 1), ('volume', 1), ('handled', 1), ('recognized', 1), ('relational', 1), ('appropriate', 1), ('context', 1), ('implying', 1)]
[('official', 2), ('guide', 2), ('cwdp', 2), ('exam', 2), ('study', 1), ('certified', 1), ('wireless', 1), ('design', 1), ('professional', 1), ('cwnp', 1), ('need', 1), ('prepare', 1), ('vendor', 1), ('neutral', 1), ('pw', 1), ('test', 1)]
[('blogger', 2), ('food', 2), ('foodie', 1), ('everywhere', 1), ('want', 1), ('full', 1), ('color', 1), ('book', 1), ('thing', 1), ('better', 1), ('cooking', 1), ('eating', 1), ('talking', 1), ('combine', 1), ('love', 1), ('blogging', 1), ('ultimate', 1), ('guide', 1)]
[('maya', 2), ('recommnded', 1), ('text', 1), ('preparing', 1), ('associate', 1), ('exam', 1), ('industry', 1), ('leading', 1), ('animation', 1), ('effect', 1), ('software', 1), ('used', 1), ('movie', 1), ('game', 1), ('cartoon', 1), ('commercial', 1), ('challenging', 1), ('learn', 1)]
[('intelligent', 2), ('pervasive', 2), ('computing', 2), ('system', 2), ('guide', 1), ('decision', 1), ('paradigm', 1), ('healthcare', 1), ('analytics', 1), ('focus', 1), ('use', 1), ('bio', 1), ('sensor', 1), ('smarter', 1)]
[('revit', 3), ('bim', 2), ('autodesk', 2), ('learn', 1), ('way', 1), ('industry', 1), ('leading', 1), ('building', 1), ('information', 1), ('modeling', 1), ('software', 1), ('official', 1), ('training', 1), ('guide', 1), ('thoroughly', 1), ('cover', 1), ('core', 1), ('topic', 1)]
[('develop', 2), ('technology', 2), ('implement', 1), ('essential', 1), ('computer', 1), ('confidence', 1), ('want', 1), ('understanding', 1), ('enhance', 1), ('education', 1), ('career', 1), ('personal', 1), ('life', 1), ('feel', 1), ('inhibited', 1), ('digital', 1)]
[('latest', 1), ('version', 1), ('o', 1), ('reference', 1), ('combine', 1), ('eight', 1), ('content', 1), ('rich', 1), ('minibooks', 1), ('complete', 1), ('package', 1), ('give', 1), ('access', 1), ('easy', 1), ('understand', 1), ('coverage', 1), ('key', 1), ('feature', 1), ('tool', 1), ('needed', 1)]
[('photo', 2), ('make', 1), ('ordinary', 1), ('extraordinary', 1), ('photoshop', 1), ('element', 1), ('whether', 1), ('prefer', 1), ('snap', 1), ('shot', 1), ('smartphone', 1), ('never', 1), ('leave', 1), ('home', 1), ('without', 1), ('dslr', 1), ('chance', 1), ('way', 1), ('dreamed', 1)]
[('step', 2), ('guide', 2), ('getting', 2), ('salesforce', 2), ('highly', 1), ('visual', 1), ('teach', 1), ('visually', 1), ('nd', 1), ('edition', 1), ('ideal', 1), ('speed', 1), ('world', 1)]
[('pi', 4), ('raspberry', 2), ('kid', 2), ('getting', 1), ('acquainted', 1), ('never', 1), ('sweeter', 1), ('dummy', 1), ('make', 1), ('easy', 1), ('set', 1), ('operate', 1), ('troubleshoot', 1), ('pro', 1), ('introducing', 1)]
[('coding', 2), ('ruby', 2), ('kid', 2), ('fun', 1), ('way', 1), ('introduce', 1), ('chance', 1), ('take', 1), ('class', 1), ('school', 1), ('camp', 1), ('want', 1), ('learn', 1), ('gear', 1)]
[('ipad', 3), ('mini', 3), ('bigger', 2), ('find', 1), ('never', 1), ('new', 1), ('edition', 1), ('dummy', 1), ('cover', 1), ('latest', 1), ('tip', 1), ('trick', 1), ('getting', 1), ('even', 1), ('bang', 1), ('presented', 1)]
[('control', 2), ('home', 2), ('appliance', 2), ('easy', 1), ('way', 1), ('want', 1), ('common', 1), ('household', 1), ('amenity', 1), ('smartphone', 1), ('tablet', 1), ('wherever', 1), ('happen', 1), ('automation', 1), ('dummy', 1)]
[('minecraft', 3), ('tourist', 1), ('expert', 1), ('tip', 1), ('advice', 1), ('full', 1), ('color', 1), ('primer', 1), ('dummy', 1), ('complete', 1), ('guide', 1), ('playing', 1), ('within', 1), ('world', 1), ('easy', 1), ('follow', 1), ('guidance', 1)]
[('practical', 1), ('approach', 1), ('anyone', 1), ('looking', 1), ('enter', 1), ('workforce', 1), ('candidate', 1), ('begin', 1), ('prepare', 1), ('kind', 1), ('certification', 1), ('need', 1), ('basic', 1), ('understanding', 1), ('various', 1), ('hardware', 1), ('software', 1), ('component', 1)]
[('show', 2), ('step', 2), ('visual', 1), ('learner', 1), ('prefer', 1), ('instruction', 1), ('something', 1), ('skip', 1), ('long', 1), ('winded', 1), ('explanation', 1), ('book', 1), ('open', 1), ('find', 1), ('clear', 1), ('screen', 1), ('shot', 1)]
[('printing', 2), ('started', 1), ('object', 1), ('quickly', 1), ('inexpensively', 1), ('longer', 1), ('figment', 1), ('imagination', 1), ('remarkable', 1), ('technology', 1), ('coming', 1), ('mass', 1), ('growing', 1)]
[('software', 2), ('development', 2), ('ramp', 1), ('comprehensive', 1), ('resource', 1), ('microsoft', 1), ('application', 1), ('lifecycle', 1), ('management', 1), ('alm', 1), ('make', 1), ('easier', 1), ('feature', 1), ('support', 1), ('io', 1), ('macos', 1), ('android', 1), ('java', 1)]
[('ultimate', 1), ('guide', 1), ('autodesk', 1), ('revit', 1), ('architecture', 1), ('responding', 1), ('reader', 1), ('instructor', 1), ('feedback', 1), ('expert', 1), ('author', 1), ('team', 1), ('updated', 1), ('refreshed', 1), ('book', 1), ('content', 1), ('make', 1), ('even', 1), ('useful', 1), ('complete', 1)]
[('step', 2), ('learn', 1), ('autodesk', 1), ('maya', 1), ('award', 1), ('winning', 1), ('insider', 1), ('best', 1), ('selling', 1), ('author', 1), ('visual', 1), ('effect', 1), ('supervisor', 1), ('technical', 1), ('educator', 1), ('dariush', 1), ('derakhshani', 1), ('brings', 1), ('newly', 1), ('updated', 1), ('guide', 1)]
[('personal', 2), ('finance', 2), ('popular', 2), ('quicken', 2), ('take', 1), ('control', 1), ('easy', 1), ('guide', 1), ('country', 1), ('highly', 1), ('recommended', 1), ('software', 1), ('dummy', 1)]
[('implement', 2), ('easy', 1), ('way', 1), ('effectively', 1), ('ipads', 1), ('classroom', 1), ('ipad', 1), ('natural', 1), ('fit', 1), ('education', 1), ('st', 1), ('century', 1), ('hand', 1), ('guide', 1), ('show', 1)]
[('quantum', 3), ('book', 1), ('provides', 1), ('overview', 1), ('advanced', 1), ('informational', 1), ('geometric', 1), ('technique', 1), ('help', 1), ('communication', 1), ('theorist', 1), ('analyze', 1), ('channel', 1), ('security', 1), ('additivity', 1), ('property', 1), ('section', 1), ('address', 1), ('area', 1)]
[('canon', 2), ('eos', 2), ('pro', 1), ('result', 1), ('put', 1), ('feature', 1), ('higher', 1), ('end', 1), ('camera', 1), ('model', 1), ('designed', 1), ('amateur', 1), ('photographer', 1), ('good', 1), ('news', 1), ('even', 1), ('better', 1)]
[('aws', 3), ('practical', 1), ('real', 1), ('world', 1), ('introduction', 1), ('tool', 1), ('concept', 1), ('amazon', 1), ('web', 1), ('service', 1), ('mobile', 1), ('developer', 1), ('building', 1), ('apps', 1), ('present', 1), ('professional', 1), ('view', 1), ('cloud', 1), ('computing', 1), ('experienced', 1)]
[('prepared', 1), ('arrival', 1), ('automated', 1), ('decision', 1), ('making', 1), ('thought', 1), ('science', 1), ('fiction', 1), ('major', 1), ('corporation', 1), ('already', 1), ('beginning', 1), ('use', 1), ('cognitive', 1), ('system', 1), ('assist', 1), ('providing', 1), ('wealth', 1), ('advice', 1)]
[('apple', 2), ('savvy', 1), ('advice', 1), ('hip', 1), ('tip', 1), ('using', 1), ('tv', 1), ('portable', 1), ('genius', 1), ('series', 1), ('getting', 1), ('inspired', 1), ('digital', 1), ('lifestyle', 1), ('popular', 1), ('inexpensive', 1)]
[('istqb', 2), ('testing', 1), ('market', 1), ('growing', 1), ('fast', 1), ('pace', 1), ('certification', 1), ('increasingly', 1), ('requested', 1), ('person', 1), ('currently', 1), ('certified', 1), ('throughout', 1), ('world', 1), ('foundation', 1), ('level', 1), ('syllabus', 1), ('updated', 1)]
[('business', 2), ('graphic', 2), ('smartdraw', 2), ('diagram', 1), ('organizational', 1), ('chart', 1), ('flowchart', 1), ('even', 1), ('floor', 1), ('plan', 1), ('type', 1), ('tool', 1), ('em', 1), ('dummy', 1), ('show', 1), ('software', 1), ('help', 1), ('make', 1)]
[('green', 2), ('save', 1), ('going', 1), ('environmentally', 1), ('friendly', 1), ('gadget', 1), ('concern', 1), ('future', 1), ('environment', 1), ('growing', 1), ('stronger', 1), ('serious', 1), ('every', 1), ('day', 1), ('never', 1), ('better', 1), ('time', 1), ('take', 1), ('new', 1), ('approach', 1)]
[('data', 2), ('study', 1), ('biological', 1), ('constantly', 1), ('undergoing', 1), ('profound', 1), ('change', 1), ('firstly', 1), ('volume', 1), ('available', 1), ('increased', 1), ('considerably', 1), ('due', 1), ('new', 1), ('high', 1), ('throughput', 1), ('technique', 1), ('used', 1), ('experiment', 1), ('secondly', 1), ('remarkable', 1), ('progress', 1)]
[('step', 2), ('big', 2), ('data', 2), ('guide', 1), ('business', 1), ('leader', 1), ('need', 1), ('manage', 1), ('successful', 1), ('project', 1), ('leading', 1), ('analytics', 1), ('critical', 1), ('task', 1), ('executive', 1), ('master', 1), ('age', 1), ('take', 1)]
[('oil', 2), ('gas', 2), ('industry', 2), ('power', 1), ('artificial', 1), ('intelligence', 1), ('next', 1), ('generation', 1), ('comprehensive', 1), ('resource', 1), ('describing', 1), ('operation', 1), ('output', 1), ('offering', 1), ('improve', 1), ('via', 1)]
[('guide', 3), ('vca', 2), ('dcv', 2), ('vmware', 2), ('certified', 2), ('associate', 2), ('study', 2), ('use', 1), ('expert', 1), ('prepare', 1), ('exam', 1), ('vsphere', 1), ('vcad', 1), ('comprehensive', 1), ('data', 1)]
[('dem', 2), ('bilder', 2), ('mit', 2), ('du', 2), ('die', 2), ('bunte', 1), ('spiralen', 1), ('schneeflocken', 1), ('unter', 1), ('mikroskop', 1), ('diesem', 1), ('buch', 1), ('lernst', 1), ('immer', 1), ('schönere', 1), ('computer', 1), ('zu', 1), ('zeichnen', 1), ('e', 1), ('fängt', 1), ('ganz', 1), ('leicht', 1), ('zuerst', 1), ('lässt', 1), ('schildkröte', 1), ('deinen', 1), ('pinsel', 1), ('hält', 1), ('einfach', 1), ('nur', 1), ('über', 1), ('den', 1)]
[('sie', 2), ('tragfähige', 1), ('literatur', 1), ('für', 1), ('ihre', 1), ('softwarearchitekturen', 1), ('besuchen', 1), ('eine', 1), ('veranstaltung', 1), ('zu', 1), ('softwarearchitektur', 1), ('oder', 1), ('stehen', 1), ('einem', 1), ('projekt', 1), ('vor', 1), ('architekturentscheidungen', 1), ('und', 1), ('wollen', 1), ('daher', 1), ('die', 1), ('aktuellen', 1)]
[('deep', 2), ('learning', 2), ('data', 2), ('concise', 1), ('practical', 1), ('exploration', 1), ('key', 1), ('topic', 1), ('application', 1), ('science', 1), ('big', 1), ('artificial', 1)]
[('intelligence', 2), ('ai', 2), ('today', 1), ('information', 1), ('technology', 1), ('along', 1), ('artificial', 1), ('moving', 1), ('towards', 1), ('total', 1), ('communication', 1), ('computerized', 1), ('system', 1), ('representation', 1), ('human', 1), ('based', 1), ('creation', 1), ('application', 1)]
[('network', 2), ('based', 2), ('major', 1), ('transformation', 1), ('world', 1), ('underway', 1), ('focus', 1), ('shift', 1), ('physical', 1), ('technology', 1), ('software', 1), ('solution', 1), ('book', 1), ('author', 1), ('present', 1), ('new', 1), ('generation', 1)]
[('quantum', 3), ('computing', 3), ('internet', 2), ('distributed', 1), ('understand', 1), ('future', 1), ('accessible', 1), ('guide', 1), ('draw', 1), ('upon', 1), ('principle', 1)]
[('essential', 1), ('resource', 1), ('artificial', 1), ('intelligence', 1), ('ethic', 1), ('business', 1), ('leader', 1), ('trustworthy', 1), ('ai', 1), ('award', 1), ('winning', 1), ('executive', 1), ('beena', 1), ('ammanath', 1), ('offer', 1), ('practical', 1), ('approach', 1), ('enterprise', 1)]
[('data', 2), ('design', 1), ('implement', 1), ('integrate', 1), ('complete', 1), ('sanitization', 1), ('program', 1), ('net', 1), ('zero', 1), ('one', 1), ('erasure', 1), ('promotes', 1), ('sustainability', 1), ('privacy', 1), ('security', 1), ('rounded', 1), ('team', 1)]
[('python', 3), ('sie', 3), ('und', 2), ('brauchen', 2), ('einfach', 1), ('leistungsfähig', 1), ('haben', 1), ('schon', 1), ('viel', 1), ('gutes', 1), ('über', 1), ('gehört', 1), ('möchten', 1), ('auch', 1), ('programmieren', 1), ('dann', 1), ('diesis', 1), ('buch', 1), ('vorwissen', 1), ('hingegen', 1), ('nicht', 1), ('arnold', 1), ('willemer', 1), ('erklärt', 1), ('ihnen', 1), ('zu', 1), ('beginn', 1), ('ein', 1)]
[('der', 3), ('excel', 2), ('sie', 2), ('wenn', 1), ('schon', 1), ('gedanke', 1), ('arbeitsblätter', 1), ('ihnen', 1), ('kopfschmerzen', 1), ('macht', 1), ('ist', 1), ('diesis', 1), ('buch', 1), ('da', 1), ('richtige', 1), ('für', 1), ('dieser', 1), ('praktische', 1), ('leitfaden', 1), ('wird', 1), ('mit', 1), ('neuesten', 1), ('version', 1), ('software', 1), ('microsoft', 1), ('vertraut', 1), ('machen', 1), ('handumdrehen', 1)]
[('sie', 4), ('mit', 3), ('word', 2), ('und', 2), ('möchten', 1), ('noch', 1), ('effektiver', 1), ('arbeiten', 1), ('dann', 1), ('ist', 1), ('diesis', 1), ('kompakte', 1), ('buch', 1), ('dem', 1), ('aha', 1), ('effekt', 1), ('genau', 1), ('da', 1), ('richtige', 1), ('für', 1), ('erfahren', 1), ('ohne', 1), ('umwege', 1), ('wie', 1), ('nach', 1), ('ihren', 1), ('anforderungen', 1), ('wünschen', 1), ('gestalt', 1), ('welchen', 1), ('geheimen', 1), ('trick', 1)]
[('programming', 2), ('dummy', 2), ('code', 1), ('beginning', 1), ('offer', 1), ('guide', 1), ('packed', 1), ('book', 1), ('teach', 1), ('across', 1), ('multiple', 1), ('language', 1), ('coding', 1), ('seem', 1), ('complex', 1), ('convoluted', 1), ('make', 1), ('simple', 1), ('easy', 1), ('understand', 1)]
[('canon', 2), ('eos', 2), ('rebel', 2), ('book', 2), ('photography', 1), ('class', 1), ('offer', 1), ('dlsr', 1), ('user', 1), ('tool', 1), ('take', 1), ('photograph', 1), ('truly', 1), ('worth', 1), ('bragging', 1), ('give', 1), ('pointer', 1), ('easy', 1), ('follow', 1), ('instruction', 1), ('need', 1), ('make', 1), ('sense', 1)]
[('coding', 3), ('learning', 2), ('go', 1), ('guide', 1), ('ground', 1), ('adding', 1), ('know', 1), ('skill', 1), ('help', 1), ('launch', 1), ('new', 1), ('career', 1), ('bolster', 1), ('old', 1), ('dummy', 1), ('offer', 1), ('ideal', 1), ('starting', 1), ('place', 1), ('language', 1)]
[('upc', 2), ('first', 1), ('book', 1), ('explain', 1), ('language', 1), ('unified', 1), ('parallel', 1), ('use', 1), ('author', 1), ('el', 1), ('ghazawi', 1), ('carlson', 1), ('sterling', 1), ('among', 1), ('developer', 1), ('close', 1), ('link', 1), ('industrial', 1), ('member', 1), ('consortium', 1), ('text', 1), ('cover', 1)]
[('network', 2), ('strategy', 2), ('incorporate', 1), ('offense', 1), ('defense', 1), ('effective', 1), ('security', 1), ('attack', 1), ('exploitation', 1), ('provides', 1), ('clear', 1), ('comprehensive', 1), ('roadmap', 1), ('developing', 1), ('complete', 1), ('offensive', 1), ('defensive', 1), ('engage', 1), ('thwart', 1), ('hacking', 1)]
[('design', 2), ('extending', 1), ('scenario', 1), ('method', 1), ('beyond', 1), ('interface', 1), ('important', 1), ('book', 1), ('show', 1), ('developer', 1), ('effective', 1), ('system', 1), ('soliciting', 1), ('analyzing', 1), ('elaborating', 1), ('story', 1), ('end', 1), ('user', 1), ('contribution', 1), ('leading', 1), ('industry', 1), ('consultant', 1)]
[('o', 3), ('symbian', 2), ('speed', 1), ('new', 1), ('source', 1), ('reference', 1), ('guide', 1), ('brief', 1), ('introduction', 1), ('fundamental', 1), ('book', 1), ('focus', 1), ('describing', 1), ('interaction', 1), ('application', 1), ('broadly', 1), ('following', 1)]
[('software', 2), ('resource', 1), ('needed', 1), ('create', 1), ('reliable', 1), ('text', 1), ('offer', 1), ('comprehensive', 1), ('integrated', 1), ('approach', 1), ('quality', 1), ('engineering', 1), ('following', 1), ('author', 1), ('clear', 1), ('guidance', 1), ('reader', 1), ('learn', 1), ('master', 1), ('technique', 1), ('produce', 1)]
[('programming', 2), ('open', 2), ('language', 2), ('development', 2), ('guide', 1), ('symbian', 1), ('o', 1), ('smartphones', 1), ('using', 1), ('opl', 1), ('negetiveemoji', 1), ('simple', 1), ('learn', 1), ('source', 1), ('scripting', 1), ('ideal', 1), ('fast', 1), ('track', 1), ('enterprise', 1), ('application', 1), ('book', 1), ('provides', 1), ('hand', 1)]
[('digital', 3), ('signal', 3), ('practical', 1), ('accessible', 1), ('guide', 1), ('understanding', 1), ('processingintroduction', 1), ('processing', 1), ('filter', 1), ('design', 1), ('developed', 1), ('fine', 1), ('tuned', 1), ('author', 1), ('twenty', 1), ('five', 1), ('year', 1), ('experience', 1), ('teaching', 1), ('class', 1)]
[('application', 2), ('industry', 2), ('virtual', 1), ('human', 1), ('becoming', 1), ('popular', 1), ('used', 1), ('many', 1), ('entertainment', 1), ('film', 1), ('game', 1), ('medical', 1), ('comprehensive', 1), ('book', 1), ('cover', 1), ('area', 1), ('growing', 1), ('including', 1), ('face', 1)]
[('software', 3), ('paradigm', 2), ('application', 2), ('provides', 1), ('first', 1), ('complete', 1), ('compilation', 1), ('commonly', 1), ('used', 1), ('develop', 1), ('large', 1), ('coverage', 1), ('ranging', 1), ('discrete', 1), ('problem', 1), ('full', 1), ('scale', 1), ('book', 1), ('focus', 1), ('providing', 1), ('structure', 1)]
[('project', 2), ('co', 1), ('founder', 1), ('symbian', 1), ('former', 1), ('executive', 1), ('psion', 1), ('software', 1), ('david', 1), ('wood', 1), ('actively', 1), ('involved', 1), ('smartphone', 1), ('development', 1), ('worldwide', 1), ('time', 1), ('spent', 1), ('come', 1), ('understand', 1), ('key', 1), ('issue', 1)]
[('audio', 2), ('signal', 2), ('advance', 1), ('technology', 1), ('mp', 1), ('player', 1), ('internet', 1), ('dvd', 1), ('led', 1), ('production', 1), ('storage', 1), ('distribution', 1), ('wealth', 1), ('including', 1), ('speech', 1), ('music', 1), ('general', 1), ('sound', 1), ('combination', 1), ('mpeg', 1), ('tool', 1)]
[('processing', 2), ('distributed', 2), ('open', 2), ('control', 2), ('sequel', 1), ('mobile', 1), ('environment', 1), ('title', 1), ('introduces', 1), ('extended', 1), ('universal', 1), ('wave', 1), ('wp', 1), ('model', 1), ('dynamic', 1), ('world', 1), ('nature', 1), ('new', 1), ('theory', 1), ('technology', 1)]
[('hand', 1), ('information', 1), ('help', 1), ('fully', 1), ('exploit', 1), ('capability', 1), ('midp', 1), ('symbian', 1), ('o', 1), ('including', 1), ('mma', 1), ('wma', 1), ('bluetooth', 1), ('practical', 1), ('guide', 1), ('walk', 1), ('developing', 1), ('example', 1), ('application', 1), ('illustrating', 1), ('key', 1), ('functionality', 1), ('explain', 1)]
[('computer', 2), ('configuration', 2), ('controlling', 2), ('architecture', 1), ('deal', 1), ('physical', 1), ('logical', 1), ('structure', 1), ('format', 1), ('protocol', 1), ('operational', 1), ('sequence', 1), ('processing', 1), ('data', 1), ('operation', 1), ('encompasses', 1), ('word', 1)]
[('grammar', 2), ('context', 2), ('condition', 2), ('essential', 1), ('guide', 1), ('advanced', 1), ('computer', 1), ('science', 1), ('book', 1), ('systematically', 1), ('compactly', 1), ('summarizes', 1), ('current', 1), ('knowledge', 1), ('important', 1), ('area', 1), ('formal', 1), ('language', 1), ('theory', 1), ('according', 1)]
[('computing', 2), ('architecture', 2), ('discover', 1), ('grid', 1), ('successfully', 1), ('build', 1), ('implement', 1), ('manage', 1), ('widely', 1), ('distributed', 1), ('technology', 1), ('budget', 1), ('increasing', 1), ('scrutiny', 1), ('system', 1), ('becoming', 1), ('complex', 1), ('many', 1), ('organization', 1)]
[('user', 2), ('sony', 2), ('pda', 2), ('clie', 2), ('show', 1), ('make', 1), ('popular', 1), ('palm', 1), ('o', 1), ('hold', 1), ('second', 1), ('largest', 1), ('share', 1), ('market', 1), ('percent', 1), ('guide', 1), ('new', 1), ('intermediate', 1), ('latest', 1), ('feature', 1), ('function', 1), ('using', 1)]
[('domain', 2), ('architecture', 2), ('comprehensive', 1), ('catalog', 1), ('essential', 1), ('software', 1), ('developer', 1), ('using', 1), ('object', 1), ('oriented', 1), ('technology', 1), ('uml', 1), ('solve', 1), ('real', 1), ('life', 1), ('problem', 1), ('providing', 1), ('unique', 1), ('top', 1), ('view', 1), ('system', 1), ('book', 1), ('provides', 1)]
[('system', 3), ('parallel', 2), ('processing', 2), ('embedded', 2), ('book', 1), ('outline', 1), ('methodology', 1), ('use', 1), ('real', 1), ('time', 1), ('provides', 1), ('introduction', 1), ('general', 1), ('particular', 1), ('among', 1), ('processor', 1)]
[('first', 1), ('practical', 1), ('treatment', 1), ('design', 1), ('application', 1), ('feedback', 1), ('control', 1), ('computing', 1), ('system', 1), ('matlab', 1), ('file', 1), ('solution', 1), ('problem', 1), ('case', 1), ('study', 1), ('accompany', 1), ('text', 1), ('throughout', 1), ('book', 1), ('discus', 1), ('information', 1), ('technology', 1)]
[('computing', 2), ('approach', 2), ('data', 2), ('first', 1), ('title', 1), ('present', 1), ('soft', 1), ('application', 1), ('mining', 1), ('along', 1), ('traditional', 1), ('hard', 1), ('address', 1), ('principle', 1), ('multimedia', 1), ('compression', 1), ('technique', 1), ('image', 1), ('video', 1), ('text', 1)]
[('advent', 1), ('web', 1), ('along', 1), ('unprecedented', 1), ('amount', 1), ('information', 1), ('available', 1), ('electronic', 1), ('format', 1), ('conceptual', 1), ('data', 1), ('analysis', 1), ('useful', 1), ('practical', 1), ('technology', 1), ('address', 1), ('important', 1), ('limitation', 1), ('system', 1)]
[('symbian', 3), ('o', 2), ('new', 2), ('real', 2), ('time', 2), ('kernel', 2), ('take', 1), ('look', 1), ('inside', 1), ('hood', 1), ('view', 1), ('revolutionary', 1), ('smartphone', 1), ('describes', 1), ('functioning', 1), ('become', 1), ('ubiquitious', 1), ('phone', 1), ('next', 1), ('year', 1)]
[('network', 3), ('security', 3), ('research', 2), ('unique', 1), ('overview', 1), ('issue', 1), ('solution', 1), ('methodology', 1), ('architectural', 1), ('level', 1), ('provides', 1), ('latest', 1), ('address', 1), ('likely', 1), ('future', 1), ('development', 1), ('protocol', 1), ('architecture', 1)]
[('model', 2), ('task', 2), ('scheduling', 2), ('parallel', 2), ('system', 2), ('new', 1), ('dramatically', 1), ('improves', 1), ('efficiency', 1), ('become', 1), ('quagmire', 1), ('heuristic', 1), ('method', 1), ('developed', 1), ('past', 1), ('decade', 1), ('author', 1)]
[('free', 2), ('surface', 2), ('flow', 2), ('study', 2), ('definitive', 1), ('guide', 1), ('accurate', 1), ('state', 1), ('art', 1), ('modelling', 1), ('understanding', 1), ('dynamic', 1), ('starting', 1), ('point', 1), ('many', 1), ('environmental', 1), ('impact', 1), ('waterworks', 1), ('design', 1), ('typical', 1), ('application', 1)]
[('infrastructure', 2), ('book', 1), ('describes', 1), ('approach', 1), ('software', 1), ('management', 1), ('based', 1), ('establishing', 1), ('serf', 1), ('foundation', 1), ('project', 1), ('defines', 1), ('role', 1), ('necessary', 1), ('technology', 1), ('interaction', 1)]
[('financial', 1), ('service', 1), ('institution', 1), ('international', 1), ('bank', 1), ('insurance', 1), ('company', 1), ('frequently', 1), ('need', 1), ('adapt', 1), ('change', 1), ('environment', 1), ('yet', 1), ('manage', 1), ('risk', 1), ('ensure', 1), ('regulatory', 1), ('compliance', 1), ('author', 1), ('han', 1), ('wegener', 1), ('reveals', 1), ('metadata', 1), ('used', 1)]
[('symbian', 3), ('o', 2), ('date', 1), ('insight', 1), ('communication', 1), ('programming', 1), ('incorporating', 1), ('change', 1), ('introduced', 1), ('latest', 1), ('version', 1), ('basis', 1), ('new', 1), ('phone', 1), ('currently', 1), ('reaching', 1), ('market', 1), ('guide', 1), ('developer', 1)]
[('modeling', 2), ('communication', 2), ('network', 2), ('self', 1), ('contained', 1), ('text', 1), ('performance', 1), ('evaluation', 1), ('quantitative', 1), ('book', 1), ('focus', 1), ('real', 1), ('issue', 1), ('behind', 1), ('analysis', 1), ('author', 1), ('cover', 1), ('wide', 1), ('variety', 1), ('topical', 1), ('networking', 1)]
[('learning', 2), ('interdisciplinary', 1), ('framework', 1), ('methodology', 1), ('covering', 1), ('statistic', 1), ('neural', 1), ('network', 1), ('fuzzy', 1), ('logic', 1), ('book', 1), ('provides', 1), ('unified', 1), ('treatment', 1), ('principle', 1), ('method', 1), ('dependency', 1), ('data', 1), ('establishes', 1), ('general', 1)]
[('design', 4), ('principle', 3), ('logic', 3), ('digital', 2), ('modern', 1), ('underlying', 1), ('implementation', 1), ('thorough', 1), ('introduction', 1), ('book', 1), ('reader', 1), ('discover', 1), ('connection', 1), ('theory', 1)]
[('software', 2), ('book', 1), ('designed', 1), ('professional', 1), ('student', 1), ('engineering', 1), ('information', 1), ('technology', 1), ('interested', 1), ('understanding', 1), ('dynamic', 1), ('development', 1), ('order', 1), ('ass', 1), ('optimize', 1), ('process', 1), ('strategy', 1), ('explains', 1)]
[('biology', 2), ('combining', 1), ('computer', 1), ('science', 1), ('mathematics', 1), ('statistic', 1), ('field', 1), ('bioinformatics', 1), ('become', 1), ('hot', 1), ('new', 1), ('discipline', 1), ('profound', 1), ('impact', 1), ('aspect', 1), ('industrial', 1), ('application', 1), ('computational', 1), ('intelligence', 1)]
[('introduction', 2), ('software', 2), ('engineering', 2), ('high', 1), ('level', 1), ('new', 1), ('technology', 1), ('andmethods', 1), ('field', 1), ('recent', 1), ('year', 1), ('witnessed', 1), ('rapid', 1), ('evolution', 1), ('methodology', 1), ('single', 1), ('source', 1), ('emerging', 1)]
[('step', 4), ('verification', 2), ('system', 2), ('book', 2), ('guide', 1), ('digital', 1), ('practical', 1), ('provides', 1), ('interactive', 1), ('introduction', 1), ('formal', 1), ('circuit', 1), ('offer', 1), ('theoretical', 1), ('background', 1), ('introduces', 1), ('application', 1)]
[('web', 3), ('elusive', 1), ('concept', 1), ('thing', 1), ('certain', 1), ('using', 1), ('merely', 1), ('mean', 1), ('retrieving', 1), ('displaying', 1), ('information', 1), ('history', 1), ('today', 1), ('immediate', 1), ('interactive', 1), ('innovative', 1), ('user', 1), ('controlled', 1), ('community', 1), ('driven', 1)]
[('rail', 3), ('code', 2), ('ruby', 1), ('offer', 1), ('ability', 1), ('rapidly', 1), ('design', 1), ('write', 1), ('high', 1), ('quality', 1), ('elegance', 1), ('maintainability', 1), ('written', 1), ('experienced', 1), ('web', 1), ('application', 1), ('developer', 1), ('book', 1), ('explains', 1), ('take', 1), ('good', 1), ('turn', 1), ('beautiful', 1)]
[('computer', 3), ('network', 2), ('increasing', 2), ('system', 1), ('given', 1), ('unlimited', 1), ('opportunity', 1), ('reducing', 1), ('cost', 1), ('improving', 1), ('efficiency', 1), ('revenue', 1), ('demonstrated', 1), ('number', 1), ('application', 1), ('yet', 1), ('dependence', 1)]
[('oma', 2), ('specification', 2), ('mobile', 2), ('service', 2), ('open', 2), ('practical', 1), ('overview', 1), ('enable', 1), ('multimedia', 1), ('alliance', 1), ('industry', 1), ('forum', 1), ('develops', 1), ('help', 1), ('creation', 1), ('application', 1)]
[('application', 2), ('new', 1), ('automated', 1), ('independent', 1), ('methodology', 1), ('designing', 1), ('deploying', 1), ('sensor', 1), ('network', 1), ('following', 1), ('book', 1), ('clear', 1), ('explanation', 1), ('example', 1), ('illustration', 1), ('domain', 1), ('expert', 1), ('design', 1), ('deploy', 1), ('nontrivial', 1), ('networked', 1), ('sensing', 1)]
[('trustworthy', 2), ('computing', 2), ('aspect', 2), ('oriented', 2), ('learn', 1), ('successfully', 1), ('implement', 1), ('task', 1), ('using', 1), ('programming', 1), ('landmark', 1), ('publication', 1), ('fill', 1), ('gap', 1), ('literature', 1), ('describing', 1), ('basic', 1), ('concept', 1), ('twc', 1)]
[('present', 1), ('primary', 1), ('hardware', 1), ('based', 1), ('computer', 1), ('security', 1), ('approach', 1), ('easy', 1), ('toolbox', 1), ('format', 1), ('protecting', 1), ('valuable', 1), ('personal', 1), ('information', 1), ('theft', 1), ('mission', 1), ('critical', 1), ('component', 1), ('today', 1), ('electronic', 1), ('business', 1), ('community', 1), ('effort', 1), ('combat', 1)]
[('technology', 2), ('independence', 2), ('elderly', 2), ('disabled', 2), ('advanced', 1), ('look', 1), ('smart', 1), ('promote', 1), ('ongoing', 1), ('research', 1), ('advancement', 1), ('essential', 1), ('continuing', 1), ('person', 1), ('engineering', 1), ('handbook', 1)]
[('parallel', 3), ('grid', 2), ('database', 2), ('processing', 2), ('latest', 1), ('technique', 1), ('principle', 1), ('growth', 1), ('coupled', 1), ('utility', 1), ('query', 1), ('present', 1), ('important', 1), ('opportunity', 1), ('understand', 1), ('utilize', 1), ('high', 1), ('performance', 1)]
[('microprocessor', 2), ('theory', 2), ('application', 1), ('pentium', 1), ('self', 1), ('contained', 1), ('introduction', 1), ('applicationsthis', 1), ('book', 1), ('present', 1), ('fundamental', 1), ('concept', 1), ('assembly', 1), ('language', 1), ('programming', 1), ('system', 1), ('design', 1), ('associated', 1)]
[('system', 3), ('comprehensive', 1), ('collection', 1), ('benchmark', 1), ('measuring', 1), ('dependability', 1), ('hardware', 1), ('software', 1), ('computer', 1), ('become', 1), ('complex', 1), ('mission', 1), ('critical', 1), ('imperative', 1), ('engineer', 1), ('researcher', 1), ('metric', 1)]
[('feature', 2), ('selection', 2), ('rough', 1), ('fuzzy', 1), ('set', 1), ('approach', 1), ('presented', 1), ('open', 1), ('many', 1), ('new', 1), ('frontier', 1), ('continued', 1), ('research', 1), ('development', 1), ('computational', 1), ('intelligence', 1), ('provides', 1), ('reader', 1), ('background', 1), ('fundamental', 1), ('idea', 1), ('behind', 1)]
[('multimedia', 3), ('symbian', 3), ('o', 3), ('key', 2), ('book', 1), ('available', 1), ('discus', 1), ('level', 1), ('cover', 1), ('area', 1), ('technology', 1), ('information', 1), ('apis', 1), ('service', 1), ('provided', 1), ('feature', 1), ('include', 1), ('detail', 1)]
[('multimedia', 3), ('mobile', 2), ('cost', 2), ('introducing', 1), ('technology', 1), ('digital', 1), ('right', 1), ('management', 1), ('everything', 1), ('need', 1), ('know', 1), ('delivering', 1), ('efficient', 1), ('terminal', 1), ('efficiency', 1), ('effectiveness', 1), ('within', 1), ('delivery', 1), ('fast', 1)]
[('design', 3), ('pattern', 3), ('symbian', 3), ('o', 3), ('common', 2), ('first', 1), ('book', 1), ('address', 1), ('specifically', 1), ('introduces', 1), ('programmer', 1), ('help', 1), ('implement', 1), ('large', 1), ('variety', 1), ('application', 1), ('service', 1)]
[('revit', 2), ('structure', 2), ('information', 2), ('already', 1), ('understand', 1), ('basic', 1), ('want', 1), ('develop', 1), ('mastery', 1), ('building', 1), ('modeling', 1), ('bim', 1), ('mastering', 1), ('contains', 1), ('need', 1), ('expert', 1), ('author', 1), ('drew', 1), ('year', 1), ('experience', 1), ('compile', 1)]
[('real', 2), ('world', 2), ('problem', 2), ('optimization', 2), ('modern', 1), ('technique', 1), ('solve', 1), ('team', 1), ('international', 1), ('expert', 1), ('brings', 1), ('together', 1), ('core', 1), ('idea', 1), ('solving', 1), ('complex', 1), ('across', 1), ('wide', 1), ('variety', 1), ('setting', 1), ('including', 1), ('computer', 1)]
[('spectral', 2), ('technique', 2), ('design', 2), ('digital', 2), ('device', 2), ('facilitate', 1), ('testing', 1), ('today', 1), ('increasingly', 1), ('complex', 1), ('heightened', 1), ('interest', 1), ('dictated', 1), ('increasing', 1), ('demand', 1), ('technology', 1), ('often', 1)]
[('gigabook', 2), ('everything', 2), ('dummy', 2), ('collection', 1), ('need', 1), ('know', 1), ('topic', 1), ('convenient', 1), ('place', 1), ('window', 1), ('xp', 1), ('take', 1), ('best', 1), ('five', 1), ('book', 1), ('squeeze', 1), ('important', 1)]
[('september', 1), ('th', 1), ('department', 1), ('defense', 1), ('dod', 1), ('undertook', 1), ('massive', 1), ('classified', 1), ('research', 1), ('project', 1), ('develop', 1), ('new', 1), ('security', 1), ('method', 1), ('using', 1), ('technology', 1), ('order', 1), ('protect', 1), ('secret', 1), ('information', 1), ('terrorist', 1), ('attack', 1), ('written', 1), ('language', 1), ('accessible', 1)]
[('book', 2), ('edited', 1), ('panel', 1), ('expert', 1), ('fill', 1), ('gap', 1), ('existing', 1), ('literature', 1), ('comprehensively', 1), ('covering', 1), ('system', 1), ('processing', 1), ('application', 1), ('aspect', 1), ('biometrics', 1), ('based', 1), ('wide', 1), ('variety', 1), ('biometric', 1), ('trait', 1), ('provides', 1), ('extensive', 1), ('survey', 1)]
[('book', 2), ('open', 2), ('source', 2), ('technology', 1), ('enables', 1), ('build', 1), ('customized', 1), ('enterprise', 1), ('portal', 1), ('framework', 1), ('flexibility', 1), ('fewer', 1), ('limitation', 1), ('explains', 1), ('fundamental', 1), ('powerful', 1), ('set', 1), ('tool', 1), ('show', 1)]
[('aol', 5), ('traditional', 1), ('bestseller', 1), ('dummy', 1), ('regularly', 1), ('updated', 1), ('reference', 1), ('book', 1), ('market', 1), ('beginning', 1), ('user', 1), ('cover', 1), ('essential', 1), ('signing', 1), ('getting', 1), ('around', 1), ('channel', 1), ('using', 1), ('mail', 1), ('instant', 1), ('messaging', 1)]
[('mobile', 4), ('peer', 4), ('potential', 2), ('network', 2), ('explore', 1), ('negetiveemoji', 1), ('tutorial', 1), ('guide', 1), ('discus', 1), ('wireless', 1), ('communication', 1), ('among', 1), ('device', 1), ('forming', 1), ('book', 1), ('provides', 1), ('basic', 1), ('programming', 1), ('skill', 1)]
[('linux', 2), ('latest', 2), ('red', 2), ('hat', 2), ('show', 1), ('first', 1), ('time', 1), ('user', 1), ('install', 1), ('use', 1), ('version', 1), ('world', 1), ('popular', 1), ('distribution', 1), ('updated', 1), ('cover', 1), ('feature', 1), ('fall', 1), ('release', 1), ('give', 1), ('reader', 1), ('lowdown', 1), ('navigating', 1), ('gnome', 1)]
[('symbian', 2), ('o', 2), ('programming', 2), ('phone', 2), ('application', 2), ('ultimate', 1), ('developer', 1), ('guide', 1), ('key', 1), ('skill', 1), ('mass', 1), ('market', 1), ('development', 1), ('whether', 1), ('developing', 1), ('service', 1), ('shipping', 1), ('mobile', 1), ('involved', 1)]
[('art', 4), ('videogames', 3), ('explores', 1), ('philosophy', 1), ('theory', 1), ('developed', 1), ('address', 1), ('traditional', 1), ('work', 1), ('applied', 1), ('present', 1), ('unique', 1), ('philosophical', 1), ('approach', 1), ('videogaming', 1), ('situating', 1)]
[('software', 4), ('error', 2), ('detection', 2), ('depth', 1), ('review', 1), ('key', 1), ('technique', 1), ('challenging', 1), ('problem', 1), ('engineering', 1), ('learn', 1), ('make', 1), ('testing', 1), ('selecting', 1), ('test', 1), ('case', 1), ('maximize', 1)]
[('symbian', 2), ('device', 2), ('open', 2), ('want', 1), ('write', 1), ('mobile', 1), ('application', 1), ('without', 1), ('idiom', 1), ('existing', 1), ('software', 1), ('asset', 1), ('use', 1), ('source', 1), ('developer', 1), ('still', 1), ('waiting', 1), ('linux', 1), ('based', 1), ('gain', 1), ('significant', 1)]
[('world', 2), ('thanks', 1), ('internet', 1), ('never', 1), ('easy', 1), ('become', 1), ('person', 1), ('wildest', 1), ('dream', 1), ('immersive', 1), ('second', 1), ('life', 1), ('provide', 1), ('escape', 1), ('route', 1), ('ordinary', 1), ('virtual', 1), ('power', 1), ('mould', 1)]
[('animation', 2), ('published', 1), ('conjunction', 1), ('new', 1), ('release', 1), ('paint', 1), ('shop', 1), ('pro', 1), ('book', 1), ('walk', 1), ('reader', 1), ('image', 1), ('editing', 1), ('fundamental', 1), ('advanced', 1), ('graphic', 1), ('tool', 1), ('show', 1), ('photography', 1), ('hobbyist', 1), ('create', 1), ('quality', 1)]
[('atm', 2), ('based', 2), ('network', 2), ('provides', 1), ('comprehensive', 1), ('detailed', 1), ('description', 1), ('fundamental', 1), ('architectural', 1), ('principle', 1), ('protocol', 1), ('used', 1), ('interworking', 1), ('ip', 1), ('frame', 1), ('relay', 1), ('begin', 1), ('general', 1), ('coverage', 1), ('move', 1), ('quickly', 1)]
[('performance', 3), ('evaluation', 3), ('computer', 2), ('singular', 1), ('encompassing', 1), ('textbook', 1), ('state', 1), ('art', 1), ('technical', 1), ('fundamental', 1), ('telecommunication', 1), ('system', 1), ('uniquely', 1), ('present', 1), ('technique', 1)]
[('game', 3), ('environment', 2), ('use', 1), ('maya', 1), ('create', 1), ('realistic', 1), ('prop', 1), ('digital', 1), ('weapon', 1), ('vehicle', 1), ('tool', 1), ('building', 1), ('tree', 1), ('plant', 1), ('wall', 1), ('ceiling', 1), ('floor', 1), ('item', 1), ('seem', 1), ('secondary', 1), ('integral', 1), ('part', 1)]
[('application', 2), ('unique', 1), ('investigation', 1), ('state', 1), ('art', 1), ('design', 1), ('architecture', 1), ('implementation', 1), ('advanced', 1), ('computational', 1), ('infrastructure', 1), ('support', 1), ('emerging', 1), ('large', 1), ('scale', 1), ('adaptive', 1), ('scientific', 1), ('engineering', 1)]
[('biochemical', 3), ('system', 3), ('information', 2), ('processing', 2), ('research', 1), ('driven', 1), ('resource', 1), ('building', 1), ('perform', 1), ('function', 1), ('describes', 1), ('fully', 1), ('delineated', 1), ('organized', 1), ('neural', 1), ('network', 1), ('type', 1), ('assembly', 1)]
[('differential', 1), ('evolution', 1), ('simple', 1), ('powerful', 1), ('stochastic', 1), ('optimizer', 1), ('inception', 1), ('proved', 1), ('efficient', 1), ('robust', 1), ('function', 1), ('optimization', 1), ('applied', 1), ('solve', 1), ('problem', 1), ('many', 1), ('scientific', 1), ('engineering', 1), ('field', 1)]
[('compiler', 3), ('year', 2), ('unique', 1), ('guide', 1), ('book', 1), ('explains', 1), ('teach', 1), ('concept', 1), ('trustworthy', 1), ('based', 1), ('worldwide', 1), ('experience', 1), ('area', 1), ('author', 1), ('expertise', 1), ('development', 1), ('teaching', 1), ('cover', 1)]
[('symbian', 5), ('sql', 3), ('definitive', 1), ('guide', 1), ('developer', 1), ('looking', 1), ('use', 1), ('application', 1), ('system', 1), ('software', 1), ('sqlite', 1), ('relatively', 1), ('new', 1), ('addition', 1), ('platform', 1), ('inside', 1), ('begin', 1), ('introduction', 1)]
[('computing', 2), ('word', 2), ('explains', 1), ('first', 1), ('time', 1), ('aid', 1), ('making', 1), ('subjective', 1), ('judgment', 1), ('lotfi', 1), ('zadeh', 1), ('father', 1), ('fuzzy', 1), ('logic', 1), ('coined', 1), ('phrase', 1), ('cww', 1), ('describe', 1), ('methodology', 1), ('object', 1), ('computation', 1)]
[('data', 2), ('study', 2), ('step', 2), ('biomedical', 2), ('mining', 1), ('genomics', 1), ('proteomics', 1), ('us', 1), ('pragmatic', 1), ('example', 1), ('complete', 1), ('case', 1), ('demonstrate', 1), ('used', 1), ('maximize', 1), ('chance', 1), ('extracting', 1), ('new', 1), ('useful', 1), ('knowledge', 1)]
[('error', 3), ('code', 2), ('although', 1), ('devoted', 1), ('construction', 1), ('good', 1), ('control', 1), ('secrecy', 1), ('data', 1), ('compression', 1), ('emphasis', 1), ('first', 1), ('direction', 1), ('introduces', 1), ('number', 1), ('important', 1), ('class', 1), ('detecting', 1), ('correcting', 1), ('decoding', 1)]
[('colour', 2), ('imaging', 1), ('take', 1), ('increasing', 1), ('importance', 1), ('range', 1), ('product', 1), ('technology', 1), ('fidelity', 1), ('across', 1), ('different', 1), ('medium', 1), ('become', 1), ('essential', 1), ('book', 1), ('arisen', 1), ('need', 1), ('specialist', 1), ('text', 1), ('brings', 1), ('together', 1), ('key', 1), ('development', 1)]
[('system', 2), ('availability', 2), ('often', 2), ('reliability', 1), ('robustness', 1), ('understood', 1), ('architect', 1), ('engineer', 1), ('developer', 1), ('understand', 1), ('drive', 1), ('customer', 1), ('expectation', 1), ('frame', 1), ('verifiable', 1)]
[('abstraction', 2), ('new', 1), ('language', 1), ('visualizes', 1), ('program', 1), ('clearly', 1), ('precisely', 1), ('popular', 1), ('software', 1), ('modelling', 1), ('notation', 1), ('visualize', 1), ('implementation', 1), ('minutia', 1), ('fail', 1), ('scale', 1), ('capture', 1), ('design', 1), ('deliver', 1), ('effective', 1), ('tool', 1), ('support', 1), ('tailored', 1), ('overcome', 1)]
[('ifac', 1), ('ifip', 1), ('esa', 1), ('international', 1), ('conference', 1), ('supported', 1), ('interop', 1), ('noe', 1), ('athena', 1), ('ip', 1), ('three', 1), ('workshop', 1), ('doctoral', 1), ('symposium', 1), ('organized', 1), ('order', 1), ('strengthen', 1), ('key', 1), ('topic', 1), ('related', 1), ('interoperability', 1), ('enterprise', 1)]
[('workflow', 4), ('production', 2), ('digital', 1), ('photographer', 1), ('divided', 1), ('distinct', 1), ('part', 1), ('creative', 1), ('used', 1), ('import', 1), ('organize', 1), ('large', 1), ('number', 1), ('image', 1), ('prepare', 1), ('presentation', 1), ('via', 1), ('proof', 1)]
[('uml', 3), ('leading', 2), ('semantics', 2), ('coherent', 1), ('integrated', 1), ('account', 1), ('work', 1), ('practical', 1), ('application', 1), ('development', 1), ('contribution', 1), ('expert', 1), ('field', 1), ('book', 1), ('begin', 1), ('introduction', 1), ('go', 1), ('offer', 1)]
[('network', 3), ('everything', 2), ('need', 2), ('home', 2), ('know', 1), ('set', 1), ('comprehensive', 1), ('guide', 1), ('cover', 1), ('deciding', 1), ('type', 1), ('meet', 1), ('setting', 1), ('hardware', 1), ('software', 1), ('connecting', 1), ('different', 1), ('operating', 1)]
[('parallel', 2), ('computing', 2), ('cluster', 2), ('new', 1), ('approach', 1), ('developed', 1), ('make', 1), ('better', 1), ('use', 1), ('heterogeneous', 1), ('architecture', 1), ('provides', 1), ('detailed', 1), ('introduction', 1), ('heterogenous', 1), ('concept', 1), ('algorithm', 1), ('illustrated', 1)]
[('sharepoint', 2), ('updated', 1), ('guidance', 1), ('take', 1), ('advantage', 1), ('newest', 1), ('feature', 1), ('programmability', 1), ('simply', 1), ('portal', 1), ('microsoft', 1), ('popular', 1), ('content', 1), ('management', 1), ('solution', 1), ('building', 1), ('intranet', 1), ('website', 1), ('hosting', 1), ('wikis', 1), ('blog', 1)]
[('security', 3), ('cyber', 2), ('policy', 2), ('current', 2), ('drawing', 1), ('upon', 1), ('wealth', 1), ('experience', 1), ('academia', 1), ('industry', 1), ('government', 1), ('service', 1), ('guidebook', 1), ('detail', 1), ('dissects', 1), ('simple', 1), ('language', 1), ('organizational', 1), ('issue', 1), ('global', 1), ('scale', 1), ('taking', 1), ('care', 1), ('educate', 1), ('reader', 1), ('history', 1), ('approach', 1), ('cyberspace', 1)]
[('monitoring', 1), ('control', 1), ('system', 1), ('whose', 1), ('behaviour', 1), ('highly', 1), ('uncertain', 1), ('important', 1), ('challenging', 1), ('practical', 1), ('problem', 1), ('method', 1), ('solution', 1), ('based', 1), ('fuzzy', 1), ('technique', 1), ('generated', 1), ('considerable', 1), ('interest', 1), ('little', 1), ('existing', 1), ('literature', 1), ('considers', 1), ('explicit', 1), ('way', 1), ('taking', 1), ('uncertainty', 1), ('account', 1), ('book', 1), ('describes', 1), ('approach', 1)]
[('visual', 3), ('window', 2), ('easiest', 1), ('way', 1), ('learner', 1), ('started', 1), ('popular', 1), ('simplified', 1), ('series', 1), ('make', 1), ('learning', 1), ('easier', 1), ('copy', 1), ('sold', 1), ('previous', 1), ('edition', 1), ('among', 1), ('bestselling', 1), ('book', 1)]
[('forensic', 2), ('evidence', 2), ('case', 2), ('botany', 1), ('practical', 1), ('guide', 1), ('accessible', 1), ('introduction', 1), ('way', 1), ('botanical', 1), ('identified', 1), ('collected', 1), ('analysed', 1), ('criminal', 1), ('increasingly', 1), ('form', 1), ('becoming', 1), ('important', 1), ('investigation', 1), ('yet', 1), ('trained', 1), ('botanist', 1), ('able', 1), ('assist', 1), ('book', 1), ('intended', 1)]
[('human', 2), ('computer', 2), ('interaction', 2), ('system', 2), ('present', 1), ('everyday', 1), ('life', 1), ('lead', 1), ('many', 1), ('conceptual', 1), ('methodological', 1), ('problem', 1), ('designer', 1), ('evaluator', 1), ('interactive', 1), ('book', 1), ('transport', 1), ('domain', 1), ('traveler', 1), ('becomes', 1), ('user', 1), ('information', 1), ('particularly', 1)]
[('book', 2), ('computational', 2), ('number', 2), ('theory', 2), ('cryptography', 2), ('field', 2), ('provide', 1), ('unified', 1), ('view', 1), ('interplay', 1), ('modern', 1), ('important', 1), ('fundamental', 1), ('research', 1), ('information', 1), ('security', 1), ('song', 1), ('yang', 1), ('combine', 1), ('knowledge', 1), ('critical', 1), ('providing', 1)]
[('software', 2), ('comprehensive', 1), ('practical', 1), ('book', 1), ('management', 1), ('dispels', 1), ('real', 1), ('world', 1), ('issue', 1), ('relevant', 1), ('case', 1), ('study', 1), ('manager', 1), ('inevitably', 1), ('meet', 1), ('obstacle', 1), ('trying', 1), ('deliver', 1), ('quality', 1), ('product', 1), ('provide', 1), ('value', 1), ('customer', 1), ('often', 1)]
[('computing', 3), ('basic', 2), ('skill', 2), ('need', 1), ('enhance', 1), ('academic', 1), ('education', 1), ('fundamental', 1), ('provides', 1), ('student', 1), ('needed', 1), ('educational', 1), ('endeavor', 1), ('regardless', 1), ('field', 1), ('study', 1), ('written', 1)]
[('computing', 2), ('kick', 1), ('start', 1), ('journey', 1), ('prepare', 1), ('ic', 1), ('certification', 1), ('essential', 1), ('course', 1), ('book', 1), ('sending', 1), ('mail', 1), ('surfing', 1), ('web', 1), ('understanding', 1), ('basic', 1), ('time', 1), ('written', 1), ('faithe', 1), ('wempen', 1), ('microsoft', 1)]
[('translation', 3), ('cat', 2), ('translator', 2), ('computer', 1), ('assisted', 1), ('always', 1), ('used', 1), ('memory', 1), ('require', 1), ('corpus', 1), ('previous', 1), ('software', 1), ('use', 1), ('generate', 1), ('bilingual', 1), ('lexicon', 1), ('problematic', 1)]
[('simulation', 1), ('art', 1), ('using', 1), ('tool', 1), ('physical', 1), ('conceptual', 1), ('model', 1), ('computer', 1), ('hardware', 1), ('software', 1), ('attempt', 1), ('create', 1), ('illusion', 1), ('reality', 1), ('discipline', 1), ('recent', 1), ('year', 1), ('expanded', 1), ('include', 1), ('modelling', 1), ('system', 1), ('rely', 1), ('human', 1)]
[('vision', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('system', 1), ('model', 1), ('state', 1), ('art', 1), ('algorithm', 1), ('hardware', 1), ('architecture', 1), ('implementation', 1), ('dsps', 1), ('fpga', 1), ('asic', 1), ('chip', 1), ('gpus', 1), ('aim', 1), ('fill', 1), ('gap', 1), ('computer', 1)]
[('enterprise', 1), ('organization', 1), ('kind', 1), ('embedded', 1), ('today', 1), ('economic', 1), ('environment', 1), ('deeply', 1), ('dependent', 1), ('ability', 1), ('take', 1), ('part', 1), ('collaboration', 1), ('consequently', 1), ('strongly', 1), ('required', 1), ('actively', 1), ('involved', 1), ('benefit', 1)]
[('moocs', 1), ('massive', 1), ('online', 1), ('open', 1), ('course', 1), ('shaking', 1), ('traditional', 1), ('form', 1), ('primary', 1), ('continuing', 1), ('education', 1), ('training', 1), ('new', 1), ('distance', 1), ('teaching', 1), ('tool', 1), ('take', 1), ('advantage', 1), ('web', 1), ('social', 1), ('network', 1), ('revolution', 1), ('making', 1), ('think', 1)]
[('canon', 3), ('eos', 3), ('mark', 3), ('ii', 3), ('digital', 2), ('photo', 2), ('shot', 1), ('full', 1), ('color', 1), ('guide', 1), ('feature', 1), ('function', 1), ('make', 1), ('easy', 1), ('first', 1), ('time', 1), ('user', 1), ('camera', 1), ('capture', 1), ('cool', 1), ('professional', 1), ('level', 1), ('packed', 1), ('example', 1), ('create', 1), ('eye', 1), ('popping', 1)]
[('excel', 3), ('tip', 2), ('trick', 2), ('making', 1), ('easier', 1), ('understand', 1), ('useexcel', 1), ('software', 1), ('covered', 1), ('depth', 1), ('deluxe', 1), ('edition', 1), ('favorite', 1), ('john', 1), ('walkenbach', 1), ('present', 1), ('technique', 1), ('using', 1), ('efficiently', 1), ('aspect', 1), ('addressed', 1), ('include', 1)]
[('machine', 2), ('learning', 2), ('technique', 2), ('integration', 1), ('cartoon', 1), ('animation', 1), ('research', 1), ('fast', 1), ('becoming', 1), ('hot', 1), ('topic', 1), ('book', 1), ('help', 1), ('reader', 1), ('learn', 1), ('latest', 1), ('including', 1), ('patch', 1), ('alignment', 1), ('framework', 1), ('spectral', 1), ('clustering', 1), ('graph', 1), ('cut', 1)]
[('mobile', 3), ('new', 2), ('data', 2), ('comprehensive', 1), ('edition', 1), ('computingcovering', 1), ('sensor', 1), ('paradigm', 1), ('pervasive', 1), ('computing', 1), ('born', 1), ('need', 1), ('highly', 1), ('worker', 1), ('access', 1), ('transfer', 1), ('go', 1), ('significant', 1), ('advance', 1)]
[('excel', 3), ('many', 2), ('basic', 1), ('go', 1), ('beyond', 1), ('new', 1), ('instructional', 1), ('visual', 1), ('guide', 1), ('user', 1), ('need', 1), ('create', 1), ('simple', 1), ('worksheet', 1), ('business', 1), ('professional', 1), ('rely', 1), ('advanced', 1), ('feature', 1), ('handle', 1), ('thing', 1), ('database', 1)]
[('security', 2), ('addressing', 1), ('manager', 1), ('staff', 1), ('cio', 1), ('executive', 1), ('dealing', 1), ('corporate', 1), ('book', 1), ('provides', 1), ('broad', 1), ('knowledge', 1), ('major', 1), ('issue', 1), ('affecting', 1), ('today', 1), ('corporation', 1), ('organization', 1), ('present', 1)]
[('science', 3), ('fundamental', 1), ('computer', 1), ('thought', 1), ('first', 1), ('time', 1), ('collective', 1), ('genius', 1), ('th', 1), ('century', 1), ('german', 1), ('cognitive', 1), ('philosopher', 1), ('scientist', 1), ('immanuel', 1), ('kant', 1), ('georg', 1), ('wilhelm', 1), ('friedrich', 1), ('hegel', 1), ('arthur', 1), ('schopenhauer', 1)]
[('sensor', 2), ('day', 2), ('near', 1), ('future', 1), ('wireless', 1), ('network', 1), ('become', 1), ('integral', 1), ('part', 1), ('life', 1), ('solve', 1), ('different', 1), ('networking', 1), ('related', 1), ('issue', 1), ('researcher', 1), ('putting', 1), ('various', 1), ('effort', 1), ('coming', 1), ('innovative', 1), ('idea', 1), ('within', 1), ('last', 1)]
[('iphone', 3), ('know', 2), ('visual', 2), ('new', 1), ('inside', 1), ('color', 1), ('screen', 1), ('shot', 1), ('teach', 1), ('visually', 1), ('ultimate', 1), ('guide', 1), ('getting', 1), ('apple', 1), ('graphic', 1), ('driven', 1), ('io', 1), ('perfect', 1), ('learner', 1), ('book', 1), ('us', 1), ('approach', 1), ('show', 1), ('everything', 1), ('need', 1), ('running', 1)]
[('jmp', 3), ('data', 2), ('achieve', 1), ('best', 1), ('class', 1), ('metric', 1), ('connection', 1), ('small', 1), ('medium', 1), ('sized', 1), ('business', 1), ('owner', 1), ('guide', 1), ('exceeding', 1), ('customer', 1), ('expectation', 1), ('getting', 1), ('using', 1), ('uniquely', 1), ('bifunctional', 1), ('book', 1)]
[('jmp', 4), ('data', 2), ('book', 2), ('achieve', 1), ('best', 1), ('class', 1), ('metric', 1), ('connection', 1), ('small', 1), ('medium', 1), ('sized', 1), ('business', 1), ('owner', 1), ('guide', 1), ('exceeding', 1), ('customer', 1), ('expectation', 1), ('getting', 1), ('using', 1), ('uniquely', 1), ('bifunctional', 1), ('divided', 1), ('part', 1), ('first', 1), ('half', 1), ('show', 1)]
[('ipad', 7), ('guide', 2), ('mini', 2), ('pro', 2), ('learn', 1), ('basic', 1), ('beyond', 1), ('visual', 1), ('teach', 1), ('visually', 1), ('clear', 1), ('concise', 1), ('image', 1), ('rich', 1), ('getting', 1), ('running', 1), ('io', 1), ('designed', 1)]
[('ipad', 7), ('guide', 2), ('mini', 2), ('pro', 2), ('learn', 1), ('basic', 1), ('beyond', 1), ('visual', 1), ('teach', 1), ('visually', 1), ('clear', 1), ('concise', 1), ('image', 1), ('rich', 1), ('getting', 1), ('running', 1), ('io', 1), ('designed', 1), ('quickly', 1), ('answer', 1), ('need', 1), ('cut', 1), ('chase', 1), ('skipping', 1), ('long', 1), ('winded', 1)]
[('macos', 3), ('high', 3), ('sierra', 3), ('step', 2), ('take', 1), ('guided', 1), ('tour', 1), ('discover', 1), ('mac', 1), ('teach', 1), ('visually', 1), ('perfect', 1), ('introduction', 1), ('apple', 1), ('operating', 1), ('system', 1), ('clear', 1), ('instruction', 1), ('plenty', 1), ('rich', 1), ('visuals', 1), ('walk', 1), ('new', 1), ('demonstrates', 1), ('essential', 1), ('task', 1), ('need', 1)]
[('macos', 2), ('high', 2), ('sierra', 2), ('step', 2), ('take', 1), ('guided', 1), ('tour', 1), ('discover', 1), ('mac', 1), ('teach', 1), ('visually', 1), ('perfect', 1), ('introduction', 1), ('apple', 1), ('operating', 1), ('system', 1), ('clear', 1), ('instruction', 1), ('plenty', 1), ('rich', 1), ('visuals', 1)]
[('book', 2), ('canon', 2), ('eos', 2), ('rebel', 2), ('photography', 1), ('class', 1), ('provides', 1), ('enough', 1), ('camera', 1), ('power', 1), ('take', 1), ('pro', 1), ('style', 1), ('shot', 1), ('dreamed', 1), ('shooting', 1), ('show', 1), ('dummy', 1), ('bridge', 1), ('gap', 1)]
[('guide', 2), ('tcp', 2), ('ip', 2), ('internet', 2), ('date', 1), ('depth', 1), ('mastery', 1), ('ultimate', 1), ('glue', 1), ('hold', 1), ('together', 1), ('computer', 1), ('talk', 1), ('another', 1), ('transmission', 1), ('control', 1), ('protocol', 1)]
[('demand', 2), ('data', 1), ('center', 1), ('consume', 1), ('roughly', 1), ('total', 1), ('electricity', 1), ('ict', 1), ('whole', 1), ('consumes', 1), ('around', 1), ('growing', 1), ('exponentially', 1), ('left', 1), ('unchecked', 1), ('grow', 1), ('estimated', 1), ('increase', 1), ('book', 1), ('cover', 1), ('energy', 1)]
[('cyberspace', 2), ('society', 2), ('new', 2), ('state', 2), ('major', 1), ('base', 1), ('economic', 1), ('development', 1), ('industrialized', 1), ('developing', 1), ('dependence', 1), ('modern', 1), ('technological', 1), ('area', 1), ('vulnerability', 1), ('allows', 1), ('power', 1), ('policy', 1), ('strategy', 1), ('broadens', 1), ('scope', 1), ('actor', 1), ('conflict', 1), ('offering', 1), ('non', 1)]
[('software', 2), ('quality', 2), ('sqa', 2), ('book', 1), ('present', 1), ('comprehensive', 1), ('discussion', 1), ('issue', 1), ('assurance', 1), ('principle', 1), ('practice', 1), ('lay', 1), ('special', 1), ('emphasis', 1), ('implementing', 1), ('managing', 1), ('primarily', 1), ('designed', 1), ('serve', 1), ('three', 1), ('audience', 1)]
[('executive', 2), ('cybersecurity', 2), ('waste', 2), ('book', 1), ('waiting', 1), ('clear', 1), ('deep', 1), ('expertise', 1), ('nontechnical', 1), ('language', 1), ('describes', 1), ('risk', 1), ('decision', 1), ('need', 1), ('make', 1), ('address', 1), ('crisp', 1), ('quick', 1), ('point', 1), ('word', 1), ('time', 1), ('candid', 1), ('sure', 1)]
[('iot', 3), ('author', 2), ('concrete', 2), ('thing', 2), ('book', 1), ('focus', 1), ('aspect', 1), ('internet', 1), ('negetiveemoji', 1), ('daily', 1), ('operation', 1), ('ground', 1), ('domain', 1), ('including', 1), ('detailed', 1), ('discussion', 1), ('design', 1), ('application', 1), ('realization', 1), ('secure', 1), ('connected', 1), ('expert', 1), ('development', 1), ('rfid', 1), ('technology', 1), ('offer', 1)]
[('concrete', 2), ('book', 1), ('author', 1), ('focus', 1), ('aspect', 1), ('iot', 1), ('internet', 1), ('thing', 1), ('negetiveemoji', 1), ('daily', 1), ('operation', 1), ('ground', 1), ('domain', 1), ('including', 1), ('detailed', 1), ('discussion', 1), ('design', 1), ('application', 1), ('realization', 1), ('secure', 1), ('connected', 1)]
[('iphone', 3), ('visual', 2), ('know', 1), ('new', 1), ('inside', 1), ('color', 1), ('screen', 1), ('shot', 1), ('teach', 1), ('visually', 1), ('ultimate', 1), ('guide', 1), ('getting', 1), ('apple', 1), ('graphic', 1), ('driven', 1), ('io', 1), ('perfect', 1), ('learner', 1), ('book', 1), ('us', 1)]
[('guide', 1), ('capturing', 1), ('perfect', 1), ('shot', 1), ('nikon', 1), ('created', 1), ('buzz', 1), ('photography', 1), ('community', 1), ('gaining', 1), ('recognition', 1), ('appealing', 1), ('combination', 1), ('high', 1), ('end', 1), ('feature', 1), ('compact', 1), ('size', 1), ('upgrading', 1), ('existing', 1), ('dslr', 1), ('even', 1)]
[('deep', 2), ('learning', 2), ('book', 1), ('detail', 1), ('model', 1), ('ann', 1), ('rnn', 1), ('lstm', 1), ('many', 1), ('industrial', 1), ('sector', 1), ('transportation', 1), ('healthcare', 1), ('military', 1), ('agriculture', 1), ('valid', 1), ('effective', 1), ('result', 1), ('help', 1), ('researcher', 1), ('find', 1), ('solution', 1)]
[('sie', 4), ('verfassen', 1), ('morgen', 1), ('einen', 1), ('brief', 1), ('word', 1), ('nehmen', 1), ('vor', 1), ('dem', 1), ('mittagessen', 1), ('einer', 1), ('microsoft', 1), ('team', 1), ('besprechung', 1), ('teil', 1), ('kneten', 1), ('nachmittags', 1), ('ihre', 1), ('zahlen', 1), ('excel', 1), ('und', 1), ('beantworten', 1), ('den', 1), ('ganzen', 1), ('tag', 1), ('mail', 1), ('outlook', 1), ('diesis', 1), ('buch', 1), ('hilft', 1), ('ihnen', 1), ('diese', 1)]
[('excel', 2), ('um', 1), ('noch', 1), ('mehr', 1), ('au', 1), ('herauszuholen', 1), ('sind', 1), ('kenntnisse', 1), ('der', 1), ('vba', 1), ('programmierung', 1), ('von', 1), ('großem', 1), ('vorteil', 1), ('dann', 1), ('können', 1), ('sie', 1), ('auf', 1), ('ihre', 1), ('bedürfnisse', 1), ('zuschneiden', 1), ('und', 1), ('langweilige', 1), ('routinearbeiten', 1), ('automatisieren', 1), ('diesis', 1), ('buch', 1), ('zeigt', 1), ('ihnen', 1), ('zunächst', 1), ('den', 1), ('umgang', 1), ('mit', 1)]
[('rehabilitation', 2), ('engineering', 2), ('technology', 2), ('intelligent', 1), ('system', 1), ('encapsulates', 1), ('different', 1), ('case', 1), ('study', 1), ('used', 1), ('assistive', 1), ('physically', 1), ('challenged', 1), ('visually', 1), ('hearing', 1), ('impaired', 1), ('includes', 1)]
[('zu', 2), ('ist', 2), ('du', 2), ('mit', 2), ('scratch', 2), ('spiele', 1), ('entwickeln', 1), ('dein', 1), ('traum', 1), ('worauf', 1), ('wartest', 1), ('der', 1), ('programmiersprache', 1), ('e', 1), ('sehr', 1), ('einfach', 1), ('die', 1), ('zutaten', 1), ('für', 1), ('ein', 1), ('spiel', 1), ('erstellen', 1), ('kannst', 1), ('zeichnen', 1), ('animieren', 1), ('musizieren', 1), ('programmieren', 1), ('sound', 1), ('aufnehmen', 1), ('und', 1), ('texte', 1)]
[('arbeitsblätter', 2), ('sie', 2), ('erstellen', 2), ('und', 2), ('wenn', 1), ('schon', 1), ('der', 1), ('gedanke', 1), ('excel', 1), ('ihnen', 1), ('kopfschmerzen', 1), ('bereitet', 1), ('ist', 1), ('diesis', 1), ('buch', 1), ('da', 1), ('richtige', 1), ('für', 1), ('handumdrehen', 1), ('können', 1), ('bearbeiten', 1), ('zellen', 1), ('formatieren', 1), ('formeln', 1), ('eingeben', 1), ('diagramme', 1)]
[('nan', 1)]
[('sie', 5), ('und', 3), ('soll', 1), ('ihrem', 1), ('unternehmen', 1), ('neue', 1), ('software', 1), ('eingeführt', 1), ('werden', 1), ('müssen', 1), ('testen', 1), ('wissen', 1), ('nicht', 1), ('wie', 1), ('da', 1), ('angehen', 1), ('sollen', 1), ('oder', 1), ('wollen', 1), ('al', 1), ('entwickler', 1), ('über', 1), ('den', 1), ('tellerrand', 1), ('schauen', 1), ('sich', 1), ('auch', 1), ('mit', 1), ('dem', 1), ('softwaretesten', 1), ('beschäftigen', 1)]
[('funktionen', 4), ('excel', 3), ('die', 3), ('wie', 2), ('gibt', 1), ('e', 1), ('mehr', 1), ('al', 1), ('aber', 1), ('welche', 1), ('der', 1), ('vielen', 1), ('erleichtert', 1), ('ihnen', 1), ('ihre', 1), ('arbeit', 1), ('setzen', 1), ('sie', 1), ('richtig', 1), ('ein', 1), ('lautet', 1), ('syntax', 1), ('diesis', 1), ('buch', 1), ('stellt', 1), ('einsteigern', 1), ('nützlichsten', 1)]
[('und', 3), ('neue', 2), ('die', 2), ('sie', 2), ('da', 1), ('microsoft', 1), ('bietet', 1), ('chance', 1), ('für', 1), ('eine', 1), ('völlig', 1), ('art', 1), ('der', 1), ('digitalen', 1), ('zusammenarbeit', 1), ('flexibel', 1), ('mobil', 1), ('neugierig', 1), ('geworden', 1), ('dann', 1), ('greifen', 1), ('zu', 1), ('diesem', 1), ('buch', 1), ('e', 1), ('legt', 1), ('grundlagen', 1), ('erklärt', 1), ('zusammenhänge', 1), ('hintergründe', 1), ('betreten', 1)]
[('sie', 4), ('ein', 2), ('neues', 2), ('oder', 2), ('wie', 2), ('ihnen', 2), ('besitzen', 1), ('smartphone', 1), ('tablet', 1), ('und', 1), ('wissen', 1), ('nicht', 1), ('recht', 1), ('damit', 1), ('starten', 1), ('sollen', 1), ('wollen', 1), ('einfach', 1), ('die', 1), ('möglichkeiten', 1), ('ihres', 1), ('geräts', 1), ('besser', 1), ('nutzen', 1), ('dann', 1), ('hilft', 1), ('diesis', 1), ('buch', 1), ('sandra', 1), ('weber', 1), ('erklärt', 1)]
[('tool', 2), ('book', 1), ('guide', 1), ('combination', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('semantic', 1), ('web', 1), ('covering', 1), ('variety', 1), ('technology', 1), ('application', 1), ('serve', 1), ('myriad', 1), ('need', 1), ('researcher', 1), ('field', 1), ('provides', 1), ('multi', 1), ('dimensional', 1), ('view', 1), ('concept', 1), ('technique', 1), ('issue', 1), ('involved', 1), ('development', 1), ('semantics', 1)]
[('book', 1), ('guide', 1), ('combination', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('semantic', 1), ('web', 1), ('covering', 1), ('variety', 1), ('tool', 1), ('technology', 1), ('application', 1), ('serve', 1), ('myriad', 1), ('need', 1), ('researcher', 1), ('field', 1), ('provides', 1), ('multi', 1), ('dimensional', 1)]
[('vehicular', 1), ('network', 1), ('first', 1), ('developed', 1), ('ensure', 1), ('safe', 1), ('driving', 1), ('extend', 1), ('internet', 1), ('road', 1), ('see', 1), ('ability', 1), ('vehicle', 1), ('engage', 1), ('cyber', 1), ('activity', 1), ('result', 1), ('tracking', 1), ('privacy', 1), ('violation', 1)]
[('website', 2), ('ob', 2), ('sie', 2), ('auch', 1), ('heute', 1), ('noch', 1), ('sind', 1), ('html', 1), ('und', 1), ('cs', 1), ('die', 1), ('basis', 1), ('aller', 1), ('webseiten', 1), ('wer', 1), ('mehr', 1), ('möchte', 1), ('al', 1), ('nur', 1), ('einen', 1), ('unflexiblen', 1), ('baukasten', 1), ('zu', 1), ('nutzen', 1), ('kommt', 1), ('beidem', 1), ('schwer', 1), ('vorbei', 1), ('egal', 1), ('eine', 1), ('komplett', 1), ('neu', 1), ('aufbauen', 1), ('oder', 1), ('beim', 1), ('einsatz', 1), ('eines', 1)]
[('und', 2), ('der', 2), ('bitcoin', 1), ('bieten', 1), ('ihnen', 1), ('neue', 1), ('möglichkeiten', 1), ('wie', 1), ('sie', 1), ('ihr', 1), ('geld', 1), ('anlegen', 1), ('grundlegende', 1), ('transaktionen', 1), ('zahlungsverkehr', 1), ('durchführen', 1), ('können', 1), ('erste', 1), ('schritt', 1), ('die', 1), ('welt', 1), ('kryptowährungen', 1), ('kann', 1), ('jedoch', 1), ('verwirrend', 1), ('einschüchternd', 1), ('sein', 1), ('diesis', 1), ('buch', 1), ('ist', 1)]
[('al', 2), ('kryptowährungen', 1), ('versprechen', 1), ('schnelles', 1), ('geld', 1), ('und', 1), ('reichtum', 1), ('anders', 1), ('die', 1), ('goldsucher', 1), ('vorletzten', 1), ('jahrhundert', 1), ('brauchen', 1), ('sie', 1), ('investor', 1), ('aber', 1), ('sehr', 1), ('viel', 1), ('mehr', 1), ('technisches', 1), ('know', 1), ('um', 1), ('da', 1), ('krypto', 1), ('mining', 1), ('einzusteigen', 1), ('diesis', 1), ('buch', 1), ('wurde', 1), ('von', 1), ('zwei', 1)]
[('blockchain', 3), ('architecture', 2), ('data', 2), ('real', 1), ('world', 1), ('application', 1), ('comprehensive', 1), ('examination', 1), ('key', 1), ('characteristic', 1), ('way', 1), ('recording', 1), ('altered', 1), ('falsified', 1), ('recorded', 1), ('kind', 1)]
[('comptia', 2), ('core', 2), ('exam', 2), ('skip', 1), ('fluff', 1), ('straight', 1), ('essential', 1), ('indispensable', 1), ('prep', 1), ('handbook', 1), ('certmike', 1), ('prepare', 1), ('practice', 1), ('pas', 1), ('test', 1), ('certified', 1), ('veteran', 1), ('tech', 1), ('expert', 1), ('educator', 1)]
[('comptia', 2), ('core', 2), ('exam', 2), ('skip', 1), ('fluff', 1), ('straight', 1), ('essential', 1), ('indispensable', 1), ('prep', 1), ('handbook', 1), ('certmike', 1), ('prepare', 1), ('practice', 1), ('pas', 1), ('test', 1), ('certified', 1), ('veteran', 1), ('tech', 1), ('expert', 1), ('educator', 1), ('mike', 1)]
[('security', 3), ('lpi', 2), ('essential', 2), ('exam', 2), ('prepare', 1), ('smarter', 1), ('faster', 1), ('study', 1), ('guide', 1), ('veteran', 1), ('linux', 1), ('server', 1), ('administrator', 1), ('david', 1), ('clinton', 1), ('delivers', 1), ('expert', 1), ('tutorial', 1), ('major', 1), ('threat', 1), ('facing', 1), ('computer', 1)]
[('ldquo', 1), ('gonzo', 1), ('journalistic', 1), ('exploration', 1), ('silicon', 1), ('valley', 1), ('techno', 1), ('utopian', 1), ('rsquo', 1), ('pursuit', 1), ('escaping', 1), ('mortality', 1), ('breezy', 1), ('romp', 1), ('full', 1), ('colorful', 1), ('character', 1), ('rdquo', 1), ('mdash', 1), ('new', 1), ('york', 1), ('time', 1), ('book', 1), ('review', 1), ('editor', 1), ('choice', 1), ('transhumanism', 1)]
[('fact', 2), ('mdash', 2), ('nbsp', 2), ('become', 1), ('world', 1), ('shared', 1), ('truth', 1), ('lost', 1), ('power', 1), ('hold', 1), ('together', 1), ('community', 1), ('country', 1), ('globally', 1), ('allowed', 1), ('proliferation', 1), ('alternative', 1), ('hoax', 1), ('even', 1), ('conspiracy', 1)]
[('revolution', 2), ('internet', 1), ('come', 1), ('say', 1), ('gone', 1), ('future', 1), ('idea', 1), ('lawrence', 1), ('lessig', 1), ('explains', 1), ('produced', 1), ('counterrevolution', 1), ('potentially', 1), ('devastating', 1), ('power', 1), ('effect', 1), ('creativity', 1), ('flourished', 1), ('net', 1)]
[('legend', 2), ('time', 1), ('become', 1), ('watched', 1), ('million', 1), ('contested', 1), ('best', 1), ('professional', 1), ('gamers', 1), ('world', 1), ('league', 1), ('game', 1), ('beginning', 1), ('esports', 1), ('fnatic', 1), ('competing', 1), ('highest', 1), ('level', 1)]
[('currently', 1), ('blogging', 1), ('thousand', 1), ('created', 1), ('day', 1), ('blog', 1), ('seen', 1), ('written', 1), ('iconic', 1), ('men', 1), ('woman', 1), ('dying', 1), ('know', 1), ('intimate', 1), ('detail', 1), ('died', 1), ('internet', 1), ('invented', 1), ('original', 1), ('take', 1), ('biggest', 1), ('literary', 1), ('development', 1)]
[('artificial', 1), ('intelligence', 1), ('going', 1), ('massive', 1), ('impact', 1), ('everyone', 1), ('life', 1), ('accessible', 1), ('sensible', 1), ('help', 1), ('demystify', 1), ('ai', 1), ('deborah', 1), ('meaden', 1), ('entrepreneur', 1), ('dragon', 1), ('den', 1), ('nigel', 1), ('toon', 1), ('visionary', 1), ('leader', 1), ('field', 1)]
[('crime', 4), ('book', 2), ('computer', 2), ('advance', 1), ('theoretically', 1), ('informed', 1), ('realist', 1), ('criminology', 1), ('looking', 1), ('beyond', 1), ('current', 1), ('strategy', 1), ('online', 1), ('control', 1), ('argues', 1), ('new', 1), ('sort', 1), ('policy', 1), ('address', 1), ('root', 1), ('cause', 1), ('criminality', 1), ('reduces', 1), ('harm', 1), ('experienced', 1), ('victim', 1), ('unduly', 1), ('contribute', 1)]
[('visual', 3), ('music', 3), ('electronic', 2), ('performance', 2), ('comprehensive', 1), ('guide', 1), ('composition', 1), ('essential', 1), ('text', 1), ('wanting', 1), ('explore', 1), ('history', 1), ('current', 1), ('practice', 1), ('strategy', 1), ('compositional', 1), ('methodology', 1), ('practical', 1), ('technique', 1), ('conceiving', 1), ('creating', 1), ('beginning', 1), ('historical', 1)]
[('data', 3), ('structure', 3), ('central', 1), ('module', 1), ('curriculum', 1), ('almost', 1), ('every', 1), ('computer', 1), ('science', 1), ('programme', 1), ('book', 1), ('explains', 1), ('different', 1), ('concept', 1), ('using', 1), ('topic', 1), ('discus', 1), ('theoretical', 1), ('basis', 1), ('applied', 1), ('aspect', 1)]
[('realistic', 2), ('motion', 2), ('current', 1), ('computer', 1), ('graphic', 1), ('hardware', 1), ('software', 1), ('make', 1), ('possible', 1), ('synthesize', 1), ('near', 1), ('photo', 1), ('image', 1), ('simulation', 1), ('natural', 1), ('looking', 1), ('articulated', 1), ('figure', 1), ('remains', 1), ('difficult', 1), ('challenging', 1), ('task', 1), ('skillfully', 1), ('rendered', 1), ('animation', 1), ('human', 1), ('animal', 1), ('robot', 1), ('delight', 1), ('move', 1), ('simulating', 1), ('hold', 1)]
[('first', 1), ('published', 1), ('daily', 1), ('newspaper', 1), ('headline', 1), ('talk', 1), ('radio', 1), ('cable', 1), ('television', 1), ('broadcast', 1), ('internet', 1), ('news', 1), ('web', 1), ('site', 1), ('continuously', 1), ('highlight', 1), ('relationship', 1), ('religion', 1), ('violence', 1), ('medium', 1), ('contain', 1), ('story', 1), ('diverse', 1), ('incident', 1), ('suicide', 1), ('attack', 1), ('islamic', 1), ('fundamentalist', 1), ('afghanistan', 1), ('iraq', 1), ('israel', 1), ('pakistan', 1)]
[('photomontage', 2), ('wanted', 1), ('summon', 1), ('magical', 1), ('power', 1), ('create', 1), ('stained', 1), ('glass', 1), ('style', 1), ('masterpiece', 1), ('turn', 1), ('summer', 1), ('fall', 1), ('whole', 1), ('world', 1), ('opportunity', 1), ('creating', 1), ('fun', 1), ('powerful', 1), ('panorama', 1), ('dynamic', 1), ('distortion', 1), ('redesigned', 1), ('completely', 1), ('rewritten', 1), ('element', 1), ('book', 1), ('start', 1), ('basic', 1)]
[('medium', 3), ('social', 3), ('asia', 2), ('pacific', 2), ('region', 2), ('locative', 2), ('mobile', 2), ('across', 1), ('facilitate', 1), ('public', 1), ('interpersonal', 1), ('interaction', 1), ('communication', 1), ('geographically', 1), ('placed', 1), ('present', 1), ('pivotal', 1), ('production', 1), ('shaping', 1)]
[('computing', 2), ('social', 2), ('billion', 1), ('dollar', 1), ('spent', 1), ('nationally', 1), ('globally', 1), ('providing', 1), ('access', 1), ('digitally', 1), ('disadvantaged', 1), ('group', 1), ('culture', 1), ('expectation', 1), ('computer', 1), ('internet', 1), ('lead', 1), ('higher', 1), ('socio', 1), ('economic', 1), ('mobility', 1), ('ethnographic', 1), ('study', 1), ('central', 1), ('himalaya', 1), ('india', 1), ('investigates', 1), ('alternative', 1)]
[('field', 3), ('book', 1), ('offer', 1), ('fresh', 1), ('perspective', 1), ('information', 1), ('system', 1), ('study', 1), ('practice', 1), ('currently', 1), ('undergoing', 1), ('substantial', 1), ('upheaval', 1), ('even', 1), ('expands', 1), ('rapidly', 1), ('widely', 1), ('new', 1), ('technology', 1), ('application', 1), ('mapping', 1), ('developed', 1), ('author', 1), ('firmly', 1), ('establishes', 1), ('recognized', 1), ('importance', 1), ('ground', 1)]
[('algorithm', 2), ('thought', 1), ('provoking', 1), ('volume', 1), ('eran', 1), ('fisher', 1), ('interrogates', 1), ('relationship', 1), ('epistemic', 1), ('device', 1), ('modern', 1), ('notion', 1), ('subjectivity', 1), ('past', 1), ('decade', 1), ('instrumentalization', 1), ('created', 1), ('knowledge', 1), ('informs', 1), ('decision', 1), ('preference', 1), ('taste', 1), ('action', 1), ('sense', 1)]
[('machine', 3), ('learning', 2), ('crime', 2), ('research', 2), ('criminology', 1), ('crossroad', 1), ('review', 1), ('root', 1), ('intersection', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('examines', 1), ('current', 1), ('state', 1), ('art', 1), ('area', 1), ('scholarly', 1), ('inquiry', 1), ('discus', 1), ('future', 1), ('perspective', 1), ('emerge', 1), ('relationship', 1)]
[('book', 2), ('property', 2), ('considers', 2), ('analysis', 1), ('phenomenon', 1), ('digitally', 1), ('mediated', 1), ('problematises', 1), ('boundary', 1), ('human', 1), ('nonhuman', 1), ('actor', 1), ('address', 1), ('increasingly', 1), ('porous', 1), ('border', 1), ('personhood', 1), ('digitized', 1), ('setting', 1), ('increased', 1), ('commodification', 1), ('knowledge', 1), ('make', 1), ('visible', 1), ('rupture', 1)]
[('digitising', 2), ('enterprise', 2), ('ict', 2), ('information', 1), ('age', 1), ('effort', 1), ('focus', 1), ('vast', 1), ('cluster', 1), ('technology', 1), ('involvement', 1), ('take', 1), ('road', 1), ('map', 1), ('implementation', 1), ('process', 1), ('banking', 1), ('stock', 1), ('market', 1), ('textile', 1), ('industry', 1), ('social', 1), ('medium', 1), ('software', 1), ('quality', 1), ('assurance', 1)]
[('article', 2), ('sound', 1), ('invention', 1), ('collection', 1), ('taken', 1), ('experimental', 1), ('musical', 1), ('instrument', 1), ('seminal', 1), ('journal', 1), ('published', 1), ('addition', 1), ('selected', 1), ('editor', 1), ('contributed', 1), ('introductory', 1), ('essay', 1), ('placing', 1), ('material', 1), ('cultural', 1), ('temporal', 1), ('context', 1), ('providing', 1), ('overview', 1), ('field', 1)]
[('medium', 2), ('book', 1), ('ass', 1), ('interplay', 1), ('social', 1), ('political', 1), ('polarization', 1), ('civic', 1), ('engagement', 1), ('focusing', 1), ('country', 1), ('differing', 1), ('environment', 1), ('cultural', 1), ('specific', 1), ('degree', 1), ('democratization', 1), ('taken', 1), ('variety', 1), ('disciplinary', 1), ('perspective', 1), ('based', 1), ('innovative', 1), ('theoretical', 1), ('intervention', 1), ('empirically', 1), ('grounded', 1), ('research', 1)]
[('question', 2), ('volume', 1), ('engages', 1), ('post', 1), ('humanist', 1), ('transhumanist', 1), ('approach', 1), ('present', 1), ('original', 1), ('exploration', 1), ('humankind', 1), ('fare', 1), ('face', 1), ('artificial', 1), ('intelligence', 1), ('emerging', 1), ('technology', 1), ('widely', 1), ('assumed', 1), ('calling', 1), ('assumption', 1), ('human', 1), ('being', 1), ('place', 1), ('within', 1), ('world', 1), ('computational', 1)]
[('new', 2), ('medium', 2), ('art', 2), ('artist', 2), ('racing', 1), ('cyberculture', 1), ('explores', 1), ('challenge', 1), ('race', 1), ('blind', 1), ('myth', 1), ('cyberspace', 1), ('particular', 1), ('cultural', 1), ('worker', 1), ('whose', 1), ('production', 1), ('addressed', 1), ('performance', 1), ('installation', 1), ('guillermo', 1), ('gomez', 1), ('pena', 1), ('roberto', 1), ('sifuentes', 1), ('uk', 1), ('collective', 1), ('mongrel', 1), ('conceptual', 1), ('composer', 1), ('keith', 1), ('obadike', 1)]
[('school', 4), ('social', 3), ('technology', 2), ('work', 2), ('learn', 1), ('computer', 1), ('helping', 1), ('worker', 1), ('collect', 1), ('information', 1), ('synthesize', 1), ('meaningful', 1), ('data', 1), ('assisted', 1), ('delivery', 1), ('based', 1), ('mental', 1), ('health', 1), ('service', 1), ('defining', 1), ('st', 1), ('century', 1), ('explores', 1), ('many', 1), ('technological', 1), ('advance', 1), ('practice', 1), ('book', 1), ('illustrates', 1)]
[('new', 2), ('design', 2), ('model', 2), ('language', 1), ('medium', 1), ('innovative', 1), ('textbook', 1), ('presenting', 1), ('method', 1), ('analysis', 1), ('variety', 1), ('non', 1), ('linear', 1), ('text', 1), ('website', 1), ('cd', 1), ('rom', 1), ('integrating', 1), ('theory', 1), ('practice', 1), ('book', 1), ('explores', 1), ('range', 1), ('analyzing', 1), ('constructing', 1), ('multimedia', 1), ('product', 1), ('author', 1), ('outline', 1), ('theoretical', 1)]
[('american', 1), ('legal', 1), ('profession', 1), ('judicial', 1), ('system', 1), ('bear', 1), ('unique', 1), ('responsibility', 1), ('set', 1), ('maintain', 1), ('balance', 1), ('defending', 1), ('homeland', 1), ('security', 1), ('protecting', 1), ('civil', 1), ('liberty', 1), ('outlined', 1), ('bill', 1), ('right', 1), ('competing', 1), ('interest', 1), ('continue', 1), ('collide', 1), ('threat', 1), ('safety', 1), ('grow', 1), ('exploring', 1), ('significant', 1), ('terrorist', 1), ('case', 1)]
[('biological', 3), ('chemical', 3), ('terrorism', 3), ('new', 2), ('countermeasure', 2), ('science', 1), ('based', 1), ('text', 1), ('development', 1), ('present', 1), ('research', 1), ('address', 1), ('growing', 1), ('threat', 1), ('need', 1), ('improvement', 1), ('implementation', 1), ('textbook', 1), ('building', 1), ('upon', 1), ('advance', 1), ('countermeasu', 1)]
[('work', 3), ('revival', 2), ('technology', 2), ('digital', 2), ('world', 1), ('going', 1), ('unprecedented', 1), ('driven', 1), ('new', 1), ('renaissance', 1), ('delivering', 1), ('workplace', 1), ('fit', 1), ('future', 1), ('take', 1), ('reader', 1), ('journey', 1), ('emerging', 1), ('led', 1), ('unique', 1), ('combination', 1), ('thought', 1), ('leadership', 1), ('technical', 1), ('know', 1), ('book', 1), ('bring', 1)]
[('proof', 3), ('collaboration', 2), ('work', 2), ('volume', 1), ('emphasis', 1), ('knowledge', 1), ('transfer', 1), ('lab', 1), ('field', 1), ('describes', 1), ('technology', 1), ('three', 1), ('lens', 1), ('concept', 1), ('value', 1), ('use', 1), ('contributor', 1), ('focus', 1), ('practice', 1), ('extend', 1), ('structured', 1), ('form', 1), ('group', 1), ('together', 1), ('solve', 1), ('real', 1), ('world', 1), ('complex', 1), ('problem', 1)]
[('computer', 4), ('modern', 2), ('social', 2), ('change', 2), ('image', 1), ('time', 1), ('evocative', 1), ('popular', 1), ('mythology', 1), ('ascribes', 1), ('extraordinary', 1), ('power', 1), ('ordering', 1), ('human', 1), ('affair', 1), ('seen', 1), ('instrument', 1), ('transformation', 1), ('economic', 1), ('indeed', 1), ('hard', 1), ('find', 1), ('workplace', 1), ('alone', 1), ('home', 1)]
[('online', 2), ('video', 2), ('unique', 2), ('science', 2), ('capacity', 1), ('reach', 1), ('large', 1), ('audience', 1), ('make', 1), ('powerful', 1), ('tool', 1), ('communicate', 1), ('technology', 1), ('general', 1), ('public', 1), ('outcome', 1), ('international', 1), ('research', 1), ('project', 1), ('videonline', 1), ('book', 1), ('provides', 1), ('insight', 1), ('key', 1), ('element', 1), ('narrative', 1), ('trend', 1), ('production', 1), ('characteristic', 1)]
[('analysis', 2), ('game', 2), ('args', 2), ('using', 1), ('textual', 1), ('interview', 1), ('designer', 1), ('audience', 1), ('survey', 1), ('close', 1), ('player', 1), ('forum', 1), ('discussion', 1), ('book', 1), ('examines', 1), ('unique', 1), ('nature', 1), ('producer', 1), ('consumer', 1), ('relationship', 1), ('within', 1), ('promotional', 1), ('alternate', 1), ('reality', 1), ('historically', 1), ('rooted', 1), ('advertising', 1), ('narrative', 1), ('storytelling', 1)]
[('reference', 4), ('service', 4), ('electronic', 2), ('digital', 2), ('extensive', 1), ('data', 1), ('theoretical', 1), ('practical', 1), ('aspect', 1), ('provides', 1), ('overview', 1), ('software', 1), ('explores', 1), ('opportunity', 1), ('real', 1), ('time', 1), ('offer', 1), ('variety', 1), ('library', 1), ('setting', 1), ('expert', 1), ('field', 1), ('convey', 1), ('numerous', 1)]
[('serial', 4), ('development', 2), ('publication', 2), ('discover', 1), ('latest', 1), ('current', 1), ('advance', 1), ('technology', 1), ('research', 1), ('triggered', 1), ('accelerating', 1), ('change', 1), ('state', 1), ('make', 1), ('keeping', 1), ('date', 1), ('difficult', 1), ('mile', 1), ('high', 1), ('view', 1), ('surveying', 1), ('vista', 1), ('nasig', 1), ('present', 1), ('leader', 1), ('providing', 1)]
[('country', 3), ('aim', 1), ('book', 1), ('contribute', 1), ('better', 1), ('understanding', 1), ('intermediate', 1), ('specific', 1), ('reference', 1), ('relevant', 1), ('international', 1), ('area', 1), ('southern', 1), ('europe', 1), ('whose', 1), ('dynamic', 1), ('influenced', 1), ('phase', 1), ('european', 1), ('construction', 1), ('latin', 1), ('america', 1), ('opening', 1), ('process', 1), ('changed', 1)]
[('using', 3), ('issue', 3), ('game', 2), ('simulation', 2), ('teaching', 1), ('assessment', 1), ('key', 1), ('comprises', 1), ('multidisciplinary', 1), ('investigation', 1), ('arise', 1), ('educational', 1), ('purpose', 1), ('theoretical', 1), ('empirical', 1), ('analysis', 1), ('collection', 1), ('examines', 1), ('cognitive', 1), ('motivational', 1), ('psychometric', 1), ('focus', 1), ('stem', 1)]
[('way', 2), ('book', 1), ('attends', 1), ('transformation', 1), ('process', 1), ('practice', 1), ('education', 1), ('relating', 1), ('increasing', 1), ('digitisation', 1), ('datafication', 1), ('introduction', 1), ('new', 1), ('mean', 1), ('measure', 1), ('capture', 1), ('describe', 1), ('represent', 1), ('social', 1), ('life', 1), ('number', 1), ('transformed', 1), ('teaching', 1), ('learning', 1), ('organised', 1)]
[('ai', 2), ('artificial', 1), ('intelligence', 1), ('various', 1), ('form', 1), ('machine', 1), ('learning', 1), ('chatbots', 1), ('robot', 1), ('agent', 1), ('etc', 1), ('increasingly', 1), ('seen', 1), ('core', 1), ('component', 1), ('enterprise', 1), ('business', 1), ('workflow', 1), ('information', 1), ('management', 1), ('system', 1), ('current', 1), ('promise', 1), ('hype', 1), ('around', 1), ('driven', 1), ('software', 1), ('vendor', 1), ('academic', 1), ('research', 1), ('project', 1), ('startup', 1)]
[('state', 1), ('art', 1), ('volume', 1), ('cover', 1), ('recent', 1), ('development', 1), ('research', 1), ('audio', 1), ('description', 1), ('professional', 1), ('practice', 1), ('dedicated', 1), ('making', 1), ('audiovisual', 1), ('product', 1), ('artistic', 1), ('artefact', 1), ('performance', 1), ('accessible', 1), ('supplementary', 1), ('visual', 1), ('cognitive', 1), ('need', 1), ('harnessing', 1), ('power', 1), ('spoken', 1), ('word', 1), ('project', 1), ('covered', 1), ('book', 1), ('illustrate', 1)]
[('work', 3), ('technology', 2), ('information', 1), ('become', 1), ('mean', 1), ('end', 1), ('transforming', 1), ('workplace', 1), ('performed', 1), ('ongoing', 1), ('evolution', 1), ('process', 1), ('received', 1), ('extensive', 1), ('coverage', 1), ('relatively', 1), ('little', 1), ('attention', 1), ('given', 1), ('changing', 1), ('practice', 1), ('affect', 1), ('worker', 1), ('volume', 1), ('specifi', 1), ('cally', 1)]
[('symbolic', 2), ('interactionsim', 1), ('major', 1), ('importance', 1), ('contemporary', 1), ('sociology', 1), ('study', 1), ('three', 1), ('authority', 1), ('field', 1), ('collaborate', 1), ('define', 1), ('interactionism', 1), ('describe', 1), ('present', 1), ('criticism', 1), ('interactionist', 1), ('perspective', 1), ('contribution', 1), ('mead', 1), ('dewey', 1), ('cooley', 1), ('thomas', 1), ('theorist', 1)]
[('technical', 2), ('human', 2), ('cybercrime', 1), ('often', 1), ('viewed', 1), ('offense', 1), ('require', 1), ('solution', 1), ('antivirus', 1), ('program', 1), ('automated', 1), ('intrusion', 1), ('detection', 1), ('tool', 1), ('crime', 1), ('committed', 1), ('individual', 1), ('network', 1), ('prey', 1), ('upon', 1), ('victim', 1), ('detected', 1), ('prosecuted', 1), ('criminal', 1), ('justice', 1), ('personnel', 1), ('result', 1)]
[('field', 2), ('book', 1), ('present', 1), ('vocabulary', 1), ('continually', 1), ('evolving', 1), ('fundamental', 1), ('technical', 1), ('finding', 1), ('broad', 1), ('application', 1), ('industry', 1), ('provides', 1), ('special', 1), ('attention', 1), ('language', 1), ('national', 1), ('international', 1), ('standard', 1), ('recommendation', 1), ('appropriate', 1), ('indication', 1)]
[('computing', 3), ('distributed', 2), ('book', 1), ('present', 1), ('analysis', 1), ('three', 1), ('point', 1), ('view', 1), ('use', 1), ('technology', 1), ('higher', 1), ('education', 1), ('considers', 1), ('application', 1), ('area', 1), ('including', 1), ('office', 1), ('automation', 1), ('academic', 1), ('administrative', 1), ('instructional', 1), ('system', 1), ('information', 1), ('resource', 1)]
[('work', 2), ('cscw', 2), ('group', 2), ('published', 1), ('supply', 1), ('date', 1), ('view', 1), ('computer', 1), ('supported', 1), ('cooperative', 1), ('role', 1), ('empowering', 1), ('achieve', 1), ('better', 1), ('solution', 1), ('faster', 1), ('enabling', 1), ('technology', 1), ('organizational', 1), ('behavioural', 1), ('aspect', 1), ('interest', 1), ('wide', 1), ('audience', 1)]
[('police', 6), ('use', 2), ('force', 2), ('major', 1), ('concern', 1), ('department', 1), ('citizen', 1), ('united', 1), ('state', 1), ('first', 1), ('started', 1), ('carrying', 1), ('gun', 1), ('starting', 1), ('historical', 1), ('introduction', 1), ('present', 1), ('reader', 1), ('critical', 1), ('timely', 1), ('issue', 1), ('facing', 1), ('community', 1), ('serve', 1), ('encounter', 1), ('turn', 1)]
[('cyber', 2), ('technology', 2), ('related', 1), ('internet', 1), ('introduced', 1), ('world', 1), ('late', 1), ('today', 1), ('unimaginable', 1), ('think', 1), ('life', 1), ('without', 1), ('despite', 1), ('ubiquitous', 1), ('still', 1), ('seen', 1), ('enigma', 1), ('many', 1), ('mainly', 1), ('due', 1), ('rapid', 1), ('development', 1), ('high', 1), ('level', 1), ('science', 1), ('involved', 1), ('addition', 1), ('existing', 1)]
[('internet', 4), ('give', 2), ('teaching', 2), ('resource', 2), ('application', 2), ('type', 2), ('student', 1), ('powerful', 1), ('learning', 1), ('resourcethe', 1), ('though', 1), ('brimming', 1), ('potential', 1), ('still', 1), ('vastly', 1), ('underused', 1), ('ii', 1), ('us', 1), ('technology', 1), ('education', 1), ('teacher', 1), ('new', 1), ('strategy', 1), ('use', 1), ('dynamic', 1), ('educational', 1)]
[('using', 2), ('computer', 2), ('classroom', 2), ('technology', 2), ('integration', 2), ('develop', 1), ('new', 1), ('strategy', 1), ('educator', 1), ('talked', 1), ('information', 1), ('improve', 1), ('teaching', 1), ('beginning', 1), ('modern', 1), ('movement', 1), ('true', 1), ('remains', 1), ('elusive', 1), ('goalfor', 1), ('type', 1), ('ii', 1), ('us', 1), ('education', 1), ('find', 1), ('teacher', 1), ('managed', 1)]
[('defensive', 3), ('tactic', 3), ('many', 1), ('book', 1), ('market', 1), ('include', 1), ('training', 1), ('method', 1), ('martial', 1), ('art', 1), ('drawing', 1), ('century', 1), ('old', 1), ('technique', 1), ('ninjutsu', 1), ('today', 1), ('law', 1), ('enforcement', 1), ('offer', 1), ('alternative', 1), ('traditional', 1), ('police', 1), ('taught', 1), ('officer', 1), ('text', 1), ('stress', 1), ('relying', 1), ('natural', 1), ('tendency', 1)]
[('fraud', 3), ('hotlines', 3), ('reader', 2), ('book', 1), ('provides', 1), ('complete', 1), ('guide', 1), ('designed', 1), ('educate', 1), ('respect', 1), ('history', 1), ('purpose', 1), ('operation', 1), ('use', 1), ('utility', 1), ('equips', 1), ('knowledge', 1), ('create', 1), ('analyze', 1), ('ass', 1), ('performance', 1)]
[('teacher', 3), ('education', 3), ('teaching', 2), ('book', 2), ('systemic', 2), ('reform', 2), ('technology', 2), ('address', 2), ('evolves', 1), ('keep', 1), ('examines', 1), ('incorporate', 1), ('new', 1), ('improve', 1), ('program', 1), ('integration', 1), ('curriculum', 1), ('process', 1), ('faculty', 1)]
[('php', 3), ('programming', 2), ('business', 2), ('oracle', 2), ('student', 2), ('web', 1), ('object', 1), ('oriented', 1), ('focus', 1), ('fundamental', 1), ('coding', 1), ('giving', 1), ('practical', 1), ('enduring', 1), ('skill', 1), ('solve', 1), ('data', 1), ('technical', 1), ('problem', 1), ('using', 1), ('backend', 1), ('database', 1), ('book', 1), ('version', 1), ('neutral', 1), ('teaching', 1), ('code', 1), ('still', 1), ('work', 1), ('even', 1), ('change', 1)]
[('communication', 3), ('world', 2), ('wide', 2), ('web', 2), ('technical', 2), ('teaching', 2), ('past', 1), ('decade', 1), ('dramatically', 1), ('changed', 1), ('face', 1), ('writing', 1), ('thus', 1), ('far', 1), ('altered', 1), ('little', 1), ('accommodate', 1), ('rapidly', 1), ('changing', 1), ('context', 1), ('offer', 1), ('substantial', 1), ('broadly', 1), ('applicable', 1), ('strategy', 1), ('global', 1)]
[('instructional', 4), ('technology', 2), ('david', 1), ('merrill', 1), ('active', 1), ('field', 1), ('almost', 1), ('year', 1), ('contribution', 1), ('range', 1), ('basic', 1), ('principle', 1), ('design', 1), ('theory', 1), ('development', 1), ('implementation', 1), ('learning', 1), ('environment', 1), ('innovation', 1), ('collection', 1), ('original', 1), ('essay', 1), ('written', 1), ('leading', 1)]
[('tutoring', 2), ('computer', 2), ('tutor', 2), ('project', 2), ('human', 1), ('articulates', 1), ('circsim', 1), ('attempt', 1), ('develop', 1), ('generates', 1), ('natural', 1), ('language', 1), ('dialogue', 1), ('student', 1), ('editor', 1), ('martha', 1), ('even', 1), ('joel', 1), ('michael', 1), ('present', 1), ('educational', 1), ('context', 1), ('within', 1), ('launched', 1), ('research', 1), ('process', 1)]
[('cognitive', 2), ('leading', 1), ('thinker', 1), ('science', 1), ('tradition', 1), ('participated', 1), ('workshop', 1), ('sponsored', 1), ('sandia', 1), ('national', 1), ('laboratory', 1), ('july', 1), ('discus', 1), ('progress', 1), ('building', 1), ('model', 1), ('goal', 1), ('summarize', 1), ('theoretical', 1), ('empirical', 1), ('base', 1), ('system', 1), ('present', 1), ('exemplary', 1), ('development', 1), ('field', 1), ('following', 1)]
[('national', 2), ('tragedy', 1), ('placed', 1), ('homeland', 1), ('security', 1), ('prevention', 1), ('attack', 1), ('central', 1), ('focus', 1), ('consciousness', 1), ('many', 1), ('avenue', 1), ('terror', 1), ('open', 1), ('enemy', 1), ('term', 1), ('mode', 1), ('medium', 1), ('location', 1), ('effective', 1), ('management', 1), ('mitigation', 1), ('threat', 1), ('grounded', 1), ('objective', 1), ('risk', 1), ('assessment', 1), ('structure', 1), ('sec', 1)]
[('learn', 2), ('simple', 2), ('handy', 1), ('textbook', 1), ('cover', 1), ('need', 1), ('know', 1), ('communicate', 1), ('using', 1), ('email', 1), ('internet', 1), ('learning', 1), ('made', 1), ('book', 1), ('give', 1), ('reader', 1), ('skill', 1), ('without', 1), ('frill', 1), ('matched', 1), ('main', 1), ('qualification', 1), ('case', 1), ('ecdl', 1), ('icdl', 1), ('clait', 1), ('written', 1), ('experienced', 1), ('teacher', 1), ('author', 1), ('make', 1), ('often', 1), ('tricky', 1), ('subject', 1)]
[('software', 3), ('political', 2), ('free', 2), ('set', 1), ('instruction', 1), ('computer', 1), ('enables', 1), ('disables', 1), ('imperative', 1), ('policy', 1), ('nowhere', 1), ('potential', 1), ('radical', 1), ('social', 1), ('change', 1), ('apparent', 1), ('practice', 1), ('movement', 1), ('known', 1), ('make', 1), ('knowledge', 1), ('innovation', 1), ('creator', 1), ('publicly', 1), ('available', 1)]
[('within', 2), ('book', 1), ('primarily', 1), ('summary', 1), ('research', 1), ('done', 1), ('year', 1), ('multimedia', 1), ('virtual', 1), ('reality', 1), ('fit', 1), ('wider', 1), ('interest', 1), ('exploiting', 1), ('psychological', 1), ('theory', 1), ('improve', 1), ('process', 1), ('designing', 1), ('interactive', 1), ('system', 1), ('subject', 1), ('matter', 1), ('lie', 1), ('firmly', 1), ('field', 1), ('hci', 1), ('cross', 1), ('referencing', 1), ('software', 1), ('engineering', 1), ('extending', 1)]
[('distance', 2), ('education', 2), ('writing', 1), ('across', 1), ('discipline', 1), ('address', 1), ('question', 1), ('cross', 1), ('border', 1), ('onsite', 1), ('hybrid', 1), ('distributed', 1), ('learning', 1), ('environment', 1), ('higher', 1), ('workplace', 1), ('composition', 1), ('pedagogy', 1), ('groundbreaking', 1), ('volume', 1), ('raise', 1), ('critical', 1), ('issue', 1), ('clarifies', 1), ('key', 1), ('term', 1), ('review', 1), ('history', 1), ('theory', 1)]
[('gaming', 2), ('region', 2), ('collection', 1), ('explores', 1), ('relationship', 1), ('digital', 1), ('cultural', 1), ('context', 1), ('focusing', 1), ('burgeoning', 1), ('asia', 1), ('pacific', 1), ('encompassing', 1), ('key', 1), ('location', 1), ('global', 1), ('production', 1), ('consumption', 1), ('japan', 1), ('china', 1), ('south', 1), ('korea', 1), ('increasingly', 1), ('significant', 1), ('site', 1), ('including', 1), ('australia', 1), ('singapore', 1)]
[('police', 4), ('society', 3), ('corruption', 2), ('reform', 2), ('developing', 2), ('literature', 1), ('dominated', 1), ('case', 1), ('study', 1), ('classified', 1), ('developed', 1), ('influence', 1), ('globalization', 1), ('become', 1), ('focal', 1), ('point', 1), ('scholarly', 1), ('interest', 1), ('examination', 1), ('provides', 1), ('critical', 1), ('analysis', 1)]
[('computer', 2), ('change', 2), ('us', 2), ('learning', 2), ('publication', 1), ('first', 1), ('edition', 1), ('cognitive', 1), ('tool', 1), ('rapid', 1), ('taken', 1), ('place', 1), ('technology', 1), ('educational', 1), ('purpose', 1), ('theory', 1), ('underlying', 1), ('perspective', 1), ('thinking', 1), ('guiding', 1), ('instructional', 1), ('design', 1), ('based', 1), ('environment', 1)]
[('state', 4), ('failed', 1), ('fragile', 1), ('often', 1), ('govern', 1), ('criminalization', 1), ('inconsequential', 1), ('tolerated', 1), ('act', 1), ('weak', 1), ('frequently', 1), ('use', 1), ('kidnapping', 1), ('murder', 1), ('violent', 1), ('oppressive', 1), ('tactic', 1), ('maintain', 1), ('order', 1), ('stay', 1), ('power', 1), ('fragility', 1), ('around', 1), ('world', 1), ('fractured', 1), ('justice', 1), ('fierce', 1), ('reprisal', 1), ('analyzes', 1), ('path', 1)]
[('logic', 2), ('many', 2), ('acquired', 1), ('reputation', 1), ('difficulty', 1), ('perhaps', 1), ('approach', 1), ('adopted', 1), ('suitable', 1), ('mathematician', 1), ('computer', 1), ('scientist', 1), ('book', 1), ('show', 1), ('subject', 1), ('inherently', 1), ('difficult', 1), ('connection', 1), ('declarative', 1), ('language', 1), ('straightforward', 1), ('exercise', 1), ('included', 1)]
[('asia', 2), ('impact', 2), ('internet', 1), ('developing', 1), ('quicker', 1), ('region', 1), ('world', 1), ('book', 1), ('first', 1), ('comprehensive', 1), ('analysis', 1), ('information', 1), ('society', 1), ('asian', 1), ('context', 1), ('technology', 1), ('inevitably', 1), ('uneven', 1), ('conditioned', 1), ('issue', 1), ('telecommunication', 1), ('infrastructure', 1), ('government', 1), ('policy', 1)]
[('impact', 2), ('comprehensive', 1), ('volume', 1), ('introduces', 1), ('nature', 1), ('new', 1), ('information', 1), ('communication', 1), ('technology', 1), ('business', 1), ('society', 1), ('emphasizing', 1), ('global', 1), ('draw', 1), ('upon', 1), ('example', 1), ('usa', 1), ('europe', 1), ('japan', 1), ('newly', 1), ('industrialized', 1), ('country', 1), ('pacific', 1), ('rim', 1), ('applying', 1), ('system', 1), ('thinking', 1), ('approach', 1), ('author', 1), ('stephen', 1)]
[('study', 2), ('internet', 2), ('medium', 2), ('ground', 1), ('breaking', 1), ('franklin', 1), ('explores', 1), ('form', 1), ('substance', 1), ('everyday', 1), ('life', 1), ('online', 1), ('critical', 1), ('postcolonial', 1), ('perspective', 1), ('access', 1), ('social', 1), ('us', 1), ('accelerating', 1), ('global', 1), ('south', 1), ('depth', 1), ('non', 1), ('western', 1), ('community', 1), ('home', 1), ('living', 1), ('abroad', 1), ('actually', 1), ('use', 1), ('web', 1), ('based', 1)]
[('issue', 3), ('internet', 2), ('technology', 2), ('international', 2), ('volume', 1), ('author', 1), ('ur', 1), ('gattiker', 1), ('offer', 1), ('broad', 1), ('overview', 1), ('related', 1), ('theory', 1), ('examines', 1), ('multimedia', 1), ('perspective', 1), ('outlining', 1), ('sovereignty', 1), ('potential', 1), ('impact', 1), ('national', 1), ('interest', 1), ('global', 1), ('policy', 1), ('survey', 1), ('regulation', 1)]
[('english', 2), ('community', 2), ('virtual', 1), ('examines', 1), ('language', 1), ('communication', 1), ('world', 1), ('wide', 1), ('web', 1), ('focusing', 1), ('internet', 1), ('practice', 1), ('crafted', 1), ('underserved', 1), ('overlooked', 1), ('participant', 1), ('several', 1), ('asian', 1), ('diaspora', 1), ('jillana', 1), ('enteen', 1), ('locates', 1), ('instance', 1), ('subject', 1), ('use', 1), ('electronic', 1), ('medium', 1), ('resist', 1), ('popular', 1), ('understanding', 1), ('cyberspace', 1)]
[('next', 1), ('decade', 1), ('immersive', 1), ('medium', 1), ('fundamentally', 1), ('change', 1), ('way', 1), ('human', 1), ('engage', 1), ('entertainment', 1), ('communication', 1), ('social', 1), ('interaction', 1), ('current', 1), ('volume', 1), ('take', 1), ('step', 1), ('towards', 1), ('understanding', 1), ('potential', 1), ('paradigm', 1), ('shift', 1), ('combining', 1), ('insight', 1), ('pioneer', 1), ('field', 1), ('presence', 1), ('bright', 1), ('young', 1), ('scholar', 1), ('bring', 1), ('new', 1)]
[('render', 2), ('d', 2), ('max', 2), ('mental', 2), ('ray', 2), ('create', 1), ('stunning', 1), ('model', 1), ('concise', 1), ('guide', 1), ('learn', 1), ('essential', 1), ('concept', 1), ('indirect', 1), ('illumination', 1), ('material', 1), ('option', 1), ('shaders', 1), ('lighting', 1), ('rendering', 1), ('second', 1), ('edition', 1), ('revised', 1), ('cover', 1), ('autodesk', 1), ('revit', 1), ('special', 1), ('effect', 1), ('companion', 1), ('website', 1), ('includes', 1)]
[('material', 2), ('culture', 2), ('philosophical', 2), ('account', 2), ('book', 1), ('focus', 1), ('subject', 1), ('inquiry', 1), ('promotes', 1), ('study', 1), ('articulating', 1), ('central', 1), ('difficult', 1), ('issue', 1), ('raised', 1), ('topic', 1), ('providing', 1), ('innovative', 1), ('solution', 1), ('notably', 1), ('improvised', 1), ('action', 1), ('non', 1), ('intentionalist', 1), ('function', 1)]
[('body', 2), ('age', 1), ('cloning', 1), ('cyborg', 1), ('biotechnology', 1), ('line', 1), ('byte', 1), ('seems', 1), ('disappearing', 1), ('data', 1), ('made', 1), ('flesh', 1), ('first', 1), ('collection', 1), ('address', 1), ('increasingly', 1), ('important', 1), ('link', 1), ('information', 1), ('embodiment', 1), ('moment', 1), ('routinely', 1), ('tempted', 1), ('word', 1), ('donna', 1), ('haraway', 1), ('raptured', 1)]
[('electronic', 3), ('resource', 2), ('keep', 1), ('date', 1), ('latest', 1), ('innovative', 1), ('information', 1), ('service', 1), ('changing', 1), ('landscape', 1), ('content', 1), ('access', 1), ('delivery', 1), ('legal', 1), ('issue', 1), ('focus', 1), ('effect', 1), ('challenge', 1), ('providing', 1), ('library', 1), ('author', 1), ('librarian', 1), ('professional', 1), ('practical', 1), ('experience', 1)]
[('information', 4), ('electronic', 2), ('access', 2), ('connect', 1), ('patron', 1), ('seek', 1), ('promising', 1), ('tool', 1), ('improved', 1), ('portal', 1), ('content', 1), ('selection', 1), ('digital', 1), ('focus', 1), ('improve', 1), ('using', 1), ('reference', 1), ('resource', 1), ('book', 1), ('feature', 1), ('nine', 1), ('america', 1), ('leading', 1), ('library', 1), ('administrator', 1), ('give', 1)]
[('community', 3), ('indigenous', 2), ('policing', 2), ('typically', 1), ('challenge', 1), ('law', 1), ('nation', 1), ('state', 1), ('become', 1), ('often', 1), ('reluctantly', 1), ('part', 1), ('around', 1), ('world', 1), ('emerged', 1), ('many', 1), ('region', 1), ('product', 1), ('physical', 1), ('environment', 1), ('culture', 1), ('series', 1), ('case', 1), ('study', 1), ('commun', 1)]
[('librarian', 3), ('compare', 2), ('library', 2), ('reference', 2), ('model', 2), ('digital', 2), ('ask', 2), ('service', 2), ('contrast', 1), ('consumer', 1), ('oriented', 1), ('versus', 1), ('non', 1), ('online', 1), ('offline', 1), ('analyzes', 1), ('quality', 1), ('commercial', 1), ('aska', 1), ('tutorial', 1), ('traditional', 1), ('edited', 1), ('jessamyn', 1), ('westproprietor', 1), ('net', 1)]
[('security', 3), ('availability', 1), ('many', 1), ('service', 1), ('rely', 1), ('upon', 1), ('including', 1), ('water', 1), ('treatment', 1), ('electricity', 1), ('healthcare', 1), ('transportation', 1), ('financial', 1), ('transaction', 1), ('routinely', 1), ('put', 1), ('risk', 1), ('cyber', 1), ('threat', 1), ('handbook', 1), ('scada', 1), ('control', 1), ('system', 1), ('fundamental', 1), ('outline', 1), ('concept', 1), ('methodology', 1), ('relevant', 1), ('information', 1), ('pertaining', 1)]
[('digital', 3), ('library', 3), ('technological', 1), ('advance', 1), ('innovative', 1), ('perspective', 1), ('constantly', 1), ('evolve', 1), ('notion', 1), ('make', 1), ('archive', 1), ('provides', 1), ('insightful', 1), ('snapshot', 1), ('current', 1), ('state', 1), ('archiving', 1), ('realm', 1), ('respected', 1), ('expert', 1), ('information', 1), ('science', 1), ('present', 1), ('latest', 1), ('research', 1), ('result', 1), ('illuminating', 1)]
[('advance', 3), ('learn', 2), ('use', 2), ('evidence', 2), ('based', 2), ('social', 2), ('work', 2), ('technology', 2), ('latest', 1), ('technological', 1), ('practice', 1), ('positively', 1), ('negatively', 1), ('impacted', 1), ('application', 1), ('date', 1), ('possible', 1), ('yet', 1), ('ineffective', 1), ('simple', 1), ('enough', 1), ('easily', 1), ('information', 1)]
[('korean', 2), ('book', 1), ('investigates', 1), ('contextual', 1), ('factor', 1), ('led', 1), ('society', 1), ('becoming', 1), ('broadband', 1), ('heaven', 1), ('wired', 1), ('nation', 1), ('world', 1), ('scrutinizing', 1), ('historical', 1), ('context', 1), ('surrounding', 1), ('information', 1), ('infrastructure', 1), ('kii', 1), ('project', 1), ('aimed', 1), ('establish', 1), ('nationwide', 1), ('high', 1), ('speed', 1), ('backbone', 1), ('network', 1), ('later', 1)]
[('cell', 2), ('phone', 2), ('culture', 2), ('providing', 1), ('first', 1), ('comprehensive', 1), ('accessible', 1), ('international', 1), ('introduction', 1), ('theory', 1), ('book', 1), ('clear', 1), ('sophisticated', 1), ('overview', 1), ('mobile', 1), ('telecommunication', 1), ('putting', 1), ('technology', 1), ('historical', 1), ('technical', 1), ('context', 1), ('interdisciplinary', 1), ('conceptual', 1), ('framework', 1), ('draw', 1), ('wide', 1), ('range', 1), ('nationa', 1)]
[('field', 3), ('professionalization', 1), ('come', 1), ('threat', 1), ('management', 1), ('developed', 1), ('systematic', 1), ('theory', 1), ('unique', 1), ('recognized', 1), ('authority', 1), ('emerged', 1), ('finding', 1), ('ethical', 1), ('code', 1), ('conduct', 1), ('beginning', 1), ('grow', 1), ('culture', 1), ('complete', 1), ('vocabulary', 1), ('although', 1), ('way', 1), ('go', 1), ('along', 1), ('th', 1)]
[('blog', 2), ('medium', 2), ('collection', 1), ('original', 1), ('essay', 1), ('address', 1), ('number', 1), ('question', 1), ('seeking', 1), ('increase', 1), ('understanding', 1), ('role', 1), ('contemporary', 1), ('landscape', 1), ('take', 1), ('provocative', 1), ('look', 1), ('reshaping', 1), ('culture', 1), ('politics', 1), ('offering', 1), ('multiple', 1), ('theoretical', 1), ('perspective', 1), ('methodological', 1), ('approach', 1), ('study', 1)]
[('information', 3), ('knowledge', 2), ('management', 2), ('user', 2), ('library', 2), ('digital', 1), ('examines', 1), ('academic', 1), ('librarian', 1), ('use', 1), ('provide', 1), ('increasing', 1), ('amount', 1), ('electronic', 1), ('expanding', 1), ('base', 1), ('several', 1), ('country', 1), ('leading', 1), ('administrator', 1), ('analyze', 1), ('vital', 1), ('issue', 1), ('perspective', 1), ('provider', 1)]
[('d', 3), ('max', 3), ('powerful', 2), ('new', 2), ('learning', 1), ('foundation', 1), ('game', 1), ('key', 1), ('unlocking', 1), ('power', 1), ('autodesk', 1), ('directly', 1), ('creator', 1), ('world', 1), ('animation', 1), ('effect', 1), ('software', 1), ('product', 1), ('hand', 1), ('experience', 1), ('innovative', 1), ('tool', 1), ('technique', 1), ('available', 1), ('version', 1)]
[('pro', 2), ('initial', 1), ('track', 1), ('laying', 1), ('mixing', 1), ('sound', 1), ('design', 1), ('mastering', 1), ('mark', 1), ('cousin', 1), ('rus', 1), ('hepworth', 1), ('sawyer', 1), ('bring', 1), ('logic', 1), ('highlighting', 1), ('relevant', 1), ('part', 1), ('application', 1), ('take', 1), ('every', 1), ('step', 1), ('music', 1), ('creation', 1), ('production', 1), ('process', 1), ('giving', 1), ('tip', 1), ('tutorial', 1), ('trick', 1), ('use', 1), ('create', 1), ('perfect', 1)]
[('digital', 3), ('art', 3), ('image', 2), ('library', 2), ('increase', 1), ('knowledge', 1), ('technology', 1), ('essential', 1), ('librarianship', 1), ('today', 1), ('twenty', 1), ('first', 1), ('century', 1), ('key', 1), ('cutting', 1), ('edge', 1), ('discourse', 1), ('database', 1), ('early', 1), ('photographer', 1), ('tried', 1), ('capture', 1), ('world', 1), ('make', 1), ('accessible', 1), ('information', 1)]
[('web', 4), ('semantic', 3), ('day', 2), ('knitting', 2), ('extends', 1), ('popular', 1), ('enabling', 1), ('computer', 1), ('effectively', 1), ('work', 1), ('together', 1), ('giving', 1), ('information', 1), ('defined', 1), ('meaning', 1), ('explains', 1), ('interdisciplinary', 1), ('effort', 1), ('underway', 1), ('build', 1), ('library', 1), ('book', 1), ('examines', 1), ('foundation', 1), ('activity', 1)]
[('medium', 2), ('last', 1), ('decade', 1), ('helped', 1), ('dispel', 1), ('myth', 1), ('remain', 1), ('driven', 1), ('high', 1), ('end', 1), ('professional', 1), ('market', 1), ('share', 1), ('book', 1), ('put', 1), ('forward', 1), ('concept', 1), ('communication', 1), ('contrast', 1), ('globalization', 1), ('characterizes', 1), ('many', 1), ('new', 1), ('development', 1), ('international', 1), ('organization', 1), ('practice', 1), ('examining', 1)]
[('computational', 2), ('philosophy', 2), ('privacy', 1), ('due', 1), ('process', 1), ('turn', 1), ('law', 1), ('meet', 1), ('technology', 1), ('engages', 1), ('rapidly', 1), ('developing', 1), ('aspect', 1), ('world', 1), ('including', 1), ('data', 1), ('mining', 1), ('behavioural', 1), ('advertising', 1), ('igovernment', 1), ('profiling', 1), ('intelligence', 1), ('customer', 1), ('relationship', 1), ('management', 1), ('smart', 1), ('search', 1), ('engine', 1), ('personalized', 1), ('news', 1), ('feed', 1)]
[('book', 2), ('inequality', 2), ('digital', 2), ('provides', 1), ('depth', 1), ('comparative', 1), ('analysis', 1), ('stratification', 1), ('sphere', 1), ('grounded', 1), ('classical', 1), ('sociological', 1), ('theory', 1), ('empirical', 1), ('evidence', 1), ('defines', 1), ('divide', 1), ('unequal', 1), ('access', 1), ('utility', 1), ('internet', 1), ('communication', 1), ('technology', 1), ('explores', 1)]
[('bbc', 3), ('war', 2), ('book', 1), ('explores', 1), ('impact', 1), ('new', 1), ('form', 1), ('online', 1), ('reporting', 1), ('coverage', 1), ('terrorism', 1), ('informed', 1), ('view', 1), ('staff', 1), ('level', 1), ('corporation', 1), ('bennett', 1), ('capture', 1), ('journalist', 1), ('shifting', 1), ('attitude', 1), ('towards', 1), ('blog', 1), ('internet', 1), ('source', 1), ('used', 1), ('cover', 1), ('conflict', 1), ('argues', 1), ('practice', 1)]
[('digital', 3), ('analogue', 2), ('technology', 2), ('midst', 1), ('revolution', 1), ('recently', 1), ('majority', 1), ('appliance', 1), ('used', 1), ('everyday', 1), ('life', 1), ('developed', 1), ('either', 1), ('home', 1), ('surrounded', 1), ('film', 1), ('audio', 1), ('system', 1), ('computer', 1), ('telephone', 1), ('late', 1)]
[('social', 2), ('medium', 2), ('practice', 2), ('within', 2), ('restructuring', 1), ('urban', 1), ('ad', 1), ('hoc', 1), ('experimentation', 1), ('commercial', 1), ('software', 1), ('development', 1), ('community', 1), ('participation', 1), ('book', 1), ('first', 1), ('consider', 1), ('contained', 1), ('situated', 1), ('larger', 1), ('genealogy', 1), ('public', 1), ('space', 1), ('including', 1), ('theory', 1), ('communal', 1), ('identity', 1), ('civitas', 1), ('democracy', 1)]
[('seamlessness', 2), ('example', 1), ('convergence', 1), ('mobile', 1), ('phone', 1), ('especially', 1), ('form', 1), ('smartphone', 1), ('ushering', 1), ('new', 1), ('promise', 1), ('engagement', 1), ('technology', 1), ('everyday', 1), ('common', 1), ('experience', 1), ('transition', 1), ('world', 1), ('device', 1), ('physical', 1), ('environment', 1), ('capture', 1)]
[('newspaper', 4), ('internet', 3), ('making', 1), ('mainstream', 1), ('medium', 1), ('examines', 1), ('address', 1), ('emergence', 1), ('online', 1), ('delivery', 1), ('news', 1), ('outlet', 1), ('utilizing', 1), ('empirical', 1), ('research', 1), ('chapter', 1), ('explore', 1), ('theoretical', 1), ('practical', 1), ('issue', 1), ('associated', 1), ('examine', 1), ('process', 1)]
[('interface', 3), ('educational', 2), ('design', 1), ('future', 1), ('provides', 1), ('new', 1), ('multidisciplinary', 1), ('synthesis', 1), ('research', 1), ('explains', 1), ('computer', 1), ('redesigned', 1), ('better', 1), ('support', 1), ('ability', 1), ('produce', 1), ('idea', 1), ('think', 1), ('solve', 1), ('problem', 1), ('successfully', 1), ('national', 1), ('priority', 1), ('area', 1), ('science', 1), ('mathematics', 1), ('based', 1), ('first', 1), ('hand', 1)]
[('every', 1), ('year', 1), ('esteemed', 1), ('scholar', 1), ('practitioner', 1), ('meet', 1), ('international', 1), ('police', 1), ('executive', 1), ('symposium', 1), ('discus', 1), ('contemporary', 1), ('issue', 1), ('policing', 1), ('share', 1), ('idea', 1), ('effective', 1), ('strategy', 1), ('jurisdiction', 1), ('drawn', 1), ('proceeding', 1), ('thirteenth', 1), ('annual', 1), ('meeting', 1), ('held', 1), ('turkey', 1), ('updated', 1), ('new', 1), ('development', 1), ('conference', 1), ('strategi', 1)]
[('policing', 3), ('modern', 1), ('industrial', 1), ('society', 1), ('demand', 1), ('service', 1), ('frequently', 1), ('exceeds', 1), ('current', 1), ('foreseeable', 1), ('availability', 1), ('public', 1), ('resource', 1), ('conversely', 1), ('developing', 1), ('nation', 1), ('often', 1), ('suffer', 1), ('inability', 1), ('provide', 1), ('basic', 1), ('level', 1), ('security', 1), ('citizen', 1), ('community', 1), ('peacekeeping', 1), ('offer', 1), ('fresh', 1), ('overview', 1), ('challenge', 1)]
[('medium', 3), ('location', 3), ('technology', 2), ('locative', 1), ('fastest', 1), ('growing', 1), ('area', 1), ('digital', 1), ('question', 1), ('awareness', 1), ('increasingly', 1), ('central', 1), ('contemporary', 1), ('engagement', 1), ('online', 1), ('mobile', 1), ('indeed', 1), ('culture', 1), ('generally', 1), ('volume', 1), ('comprehensive', 1), ('account', 1), ('various', 1), ('based', 1)]
[('effort', 2), ('distance', 2), ('learner', 2), ('service', 2), ('librarian', 2), ('department', 2), ('provide', 1), ('effective', 1), ('possible', 1), ('information', 1), ('specialist', 1), ('working', 1), ('faculty', 1), ('academic', 1), ('cooperating', 1), ('institution', 1), ('improving', 1), ('internet', 1), ('reference', 1), ('chronicle', 1)]
[('human', 2), ('body', 2), ('cyborg', 2), ('growing', 1), ('synergy', 1), ('technology', 1), ('dialysis', 1), ('genetically', 1), ('altered', 1), ('food', 1), ('pet', 1), ('scan', 1), ('transforming', 1), ('view', 1), ('mind', 1), ('changed', 1), ('politic', 1), ('forge', 1), ('society', 1), ('protects', 1), ('right', 1), ('alike', 1), ('creator', 1), ('cult', 1), ('classic', 1), ('handbook', 1), ('chris', 1), ('hables', 1)]
[('leadership', 3), ('library', 2), ('management', 2), ('developing', 2), ('learn', 1), ('skill', 1), ('achievement', 1), ('special', 1), ('asia', 1), ('africa', 1), ('eastern', 1), ('europe', 1), ('central', 1), ('america', 1), ('principle', 1), ('country', 1), ('compilation', 1), ('success', 1), ('story', 1), ('epitomizing', 1), ('strategy', 1), ('nation', 1), ('around', 1), ('globe', 1), ('book', 1), ('focus', 1)]
[('environmental', 3), ('data', 2), ('made', 2), ('ecological', 2), ('discover', 1), ('important', 1), ('internet', 1), ('resource', 1), ('research', 1), ('public', 1), ('individually', 1), ('collectively', 1), ('researcher', 1), ('variety', 1), ('entity', 1), ('field', 1), ('study', 1), ('ecology', 1), ('online', 1), ('explores', 1), ('innovative', 1), ('project', 1), ('diverse', 1), ('array', 1), ('institution', 1)]
[('google', 4), ('book', 2), ('includes', 1), ('variety', 1), ('article', 1), ('look', 1), ('critically', 1), ('judiciously', 1), ('product', 1), ('focus', 1), ('scholar', 1), ('search', 1), ('examines', 1), ('usefulness', 1), ('public', 1), ('service', 1), ('context', 1), ('ultimate', 1), ('aim', 1), ('ass', 1), ('use', 1), ('major', 1), ('information', 1), ('resource', 1), ('subject', 1), ('matter', 1), ('deal', 1), ('online', 1)]
[('community', 5), ('today', 1), ('seems', 1), ('everywhere', 1), ('home', 1), ('work', 1), ('online', 1), ('vague', 1), ('comforting', 1), ('idea', 1), ('pervades', 1), ('every', 1), ('area', 1), ('life', 1), ('lost', 1), ('ability', 1), ('truly', 1), ('understand', 1), ('mean', 1), ('neighborhood', 1), ('internet', 1), ('investigates', 1), ('social', 1), ('civic', 1), ('effect', 1), ('network', 1), ('local', 1)]
[('sport', 5), ('computer', 2), ('science', 2), ('research', 2), ('fundamentally', 1), ('important', 1), ('tool', 1), ('performance', 1), ('analysis', 1), ('increasingly', 1), ('coaching', 1), ('education', 1), ('programme', 1), ('book', 1), ('defines', 1), ('field', 1), ('informatics', 1), ('explaining', 1), ('used', 1), ('solve', 1), ('related', 1), ('problem', 1), ('applied', 1), ('aspect', 1), ('beginning', 1)]
[('user', 3), ('book', 2), ('internet', 2), ('present', 1), ('state', 1), ('art', 1), ('theoretical', 1), ('empirical', 1), ('research', 1), ('ubiquitous', 1), ('everyday', 1), ('economic', 1), ('stakeholder', 1), ('offer', 1), ('degree', 1), ('medium', 1), ('analysis', 1), ('contemporary', 1), ('terrain', 1), ('examining', 1), ('industry', 1), ('perspective', 1), ('relation', 1), ('another', 1), ('contributor', 1), ('consider', 1)]
[('medium', 2), ('new', 2), ('intimate', 2), ('liking', 1), ('sharing', 1), ('friending', 1), ('going', 1), ('viral', 1), ('mean', 1), ('recognize', 1), ('current', 1), ('mode', 1), ('interaction', 1), ('promiscuous', 1), ('contemporary', 1), ('network', 1), ('culture', 1), ('characterized', 1), ('proliferation', 1), ('form', 1), ('mediated', 1), ('sociality', 1), ('book', 1), ('argues', 1), ('promiscuity', 1), ('standard', 1), ('user', 1), ('engagement', 1), ('relation', 1), ('among', 1)]
[('bodily', 2), ('vulnerability', 2), ('global', 1), ('medium', 1), ('biopolitics', 1), ('affect', 1), ('show', 1), ('mediation', 1), ('become', 1), ('strong', 1), ('political', 1), ('force', 1), ('contemporary', 1), ('society', 1), ('discussion', 1), ('struggle', 1), ('concerning', 1), ('war', 1), ('involvement', 1), ('healthcare', 1), ('issue', 1), ('charity', 1), ('democracy', 1), ('movement', 1), ('contested', 1), ('national', 1), ('past', 1), ('climate', 1), ('change', 1), ('performance', 1)]
[('practice', 2), ('public', 2), ('administration', 2), ('time', 2), ('trend', 1), ('changing', 1), ('essential', 1), ('appraised', 1), ('designed', 1), ('capstone', 1), ('survey', 1), ('field', 1), ('state', 1), ('focus', 1), ('leading', 1), ('edge', 1), ('issue', 1), ('challenge', 1), ('opportunity', 1), ('confront', 1), ('pa', 1), ('study', 1), ('st', 1), ('century', 1)]
[('woman', 2), ('anthology', 1), ('introduces', 1), ('sixteen', 1), ('modern', 1), ('japanese', 1), ('writer', 1), ('spanning', 1), ('century', 1), ('time', 1), ('wide', 1), ('range', 1), ('life', 1), ('circumstance', 1), ('literary', 1), ('style', 1), ('collection', 1), ('offer', 1), ('usch', 1), ('diversity', 1), ('voice', 1)]
[('issue', 2), ('last', 1), ('decade', 1), ('researcher', 1), ('conducted', 1), ('empirical', 1), ('study', 1), ('leading', 1), ('better', 1), ('understanding', 1), ('impact', 1), ('system', 1), ('analysis', 1), ('design', 1), ('method', 1), ('business', 1), ('managerial', 1), ('cultural', 1), ('context', 1), ('sa', 1), ('research', 1), ('established', 1), ('balanced', 1), ('focus', 1), ('technical', 1), ('organizational', 1), ('social', 1)]
[('narrative', 2), ('digital', 2), ('book', 1), ('concerned', 1), ('medium', 1), ('change', 1), ('according', 1), ('user', 1), ('input', 1), ('interactive', 1), ('idn', 1), ('provides', 1), ('broad', 1), ('overview', 1), ('current', 1), ('issue', 1), ('future', 1), ('direction', 1), ('multi', 1), ('disciplinary', 1), ('field', 1), ('includes', 1), ('humanity', 1), ('based', 1), ('computational', 1), ('perspective', 1), ('assembles', 1), ('voice', 1), ('leading', 1), ('researcher', 1)]
[('azerbaijan', 1), ('small', 1), ('post', 1), ('soviet', 1), ('republic', 1), ('located', 1), ('western', 1), ('shore', 1), ('caspian', 1), ('sea', 1), ('outsized', 1), ('importance', 1), ('strategic', 1), ('location', 1), ('corssroads', 1), ('europe', 1), ('asia', 1), ('oil', 1), ('resource', 1)]
[('volume', 1), ('present', 1), ('timely', 1), ('discussion', 1), ('digital', 1), ('technology', 1), ('reshaping', 1), ('broadcasting', 1), ('medium', 1), ('united', 1), ('state', 1), ('around', 1), ('world', 1), ('feature', 1), ('contribution', 1), ('distinguished', 1), ('scholar', 1), ('young', 1), ('researcher', 1), ('representing', 1), ('work', 1), ('span', 1), ('domestic', 1), ('international', 1), ('issue', 1), ('technological', 1), ('change', 1), ('implication', 1)]
[('work', 2), ('becoming', 1), ('blogger', 1), ('take', 1), ('practice', 1), ('hard', 1), ('ultimately', 1), ('passion', 1), ('craft', 1), ('whether', 1), ('plan', 1), ('blog', 1), ('politics', 1), ('parenting', 1), ('element', 1), ('blogging', 1), ('designed', 1), ('give', 1), ('skill', 1), ('strategy', 1), ('started', 1), ('sustain', 1), ('seek', 1), ('robust', 1), ('audience', 1), ('book', 1), ('loaded', 1), ('practical', 1), ('advice', 1), ('important', 1)]
[('health', 2), ('timely', 1), ('book', 1), ('brings', 1), ('together', 1), ('higly', 1), ('respected', 1), ('scholar', 1), ('practitioner', 1), ('consumer', 1), ('psychology', 1), ('communication', 1), ('field', 1), ('analyze', 1), ('latest', 1), ('research', 1), ('effectively', 1), ('applied', 1), ('critical', 1), ('public', 1), ('issue', 1), ('obesity', 1)]
[('mobile', 3), ('medium', 3), ('foundation', 1), ('study', 1), ('gather', 1), ('important', 1), ('text', 1), ('emerging', 1), ('field', 1), ('offering', 1), ('reader', 1), ('key', 1), ('approach', 1), ('understanding', 1), ('moment', 1), ('impact', 1), ('far', 1), ('reaching', 1), ('book', 1), ('discus', 1), ('topic', 1), ('human', 1), ('intimacy', 1), ('social', 1), ('space', 1), ('political', 1), ('uprising', 1), ('labor', 1), ('phone', 1)]
[('service', 3), ('office', 2), ('advent', 1), ('multinational', 1), ('corporation', 1), ('traditional', 1), ('urban', 1), ('function', 1), ('gone', 1), ('global', 1), ('order', 1), ('provide', 1), ('globalizing', 1), ('corporate', 1), ('client', 1), ('major', 1), ('financial', 1), ('business', 1), ('firm', 1), ('across', 1), ('world', 1), ('generated', 1), ('network', 1), ('work', 1), ('myriad', 1), ('flow', 1), ('tower', 1), ('different', 1)]
[('product', 2), ('easy', 2), ('learn', 2), ('use', 2), ('hard', 2), ('spend', 1), ('increasing', 1), ('amount', 1), ('time', 1), ('effort', 1), ('interacting', 1), ('complex', 1), ('hardware', 1), ('software', 1), ('interact', 1), ('remember', 1), ('even', 1), ('pleasure', 1), ('others', 1), ('frustrate', 1), ('every', 1), ('turn', 1), ('user', 1), ('pay', 1), ('cost', 1)]
[('customer', 2), ('service', 2), ('leading', 1), ('experience', 1), ('explores', 1), ('relationship', 1), ('leadership', 1), ('behaviour', 1), ('exceptional', 1), ('organisation', 1), ('strategic', 1), ('aim', 1), ('goal', 1), ('centre', 1), ('delivery', 1), ('excellent', 1), ('loyal', 1), ('keep', 1), ('buying', 1), ('company', 1), ('recommend', 1), ('business', 1), ('others', 1), ('clear', 1), ('manager', 1), ('leader', 1), ('throughout', 1)]
[('medium', 4), ('emerging', 2), ('local', 2), ('global', 2), ('new', 2), ('locating', 1), ('focus', 1), ('tension', 1), ('design', 1), ('distribution', 1), ('use', 1), ('form', 1), ('building', 1), ('scholarship', 1), ('cultural', 1), ('geography', 1), ('network', 1), ('product', 1), ('relationship', 1), ('author', 1), ('consider', 1), ('practice', 1), ('text', 1), ('service', 1)]
[('contradiction', 1), ('heart', 1), ('digital', 1), ('medium', 1), ('use', 1), ('commercial', 1), ('platform', 1), ('express', 1), ('identity', 1), ('build', 1), ('community', 1), ('engage', 1), ('politically', 1), ('time', 1), ('status', 1), ('update', 1), ('tweet', 1), ('video', 1), ('photograph', 1), ('music', 1), ('file', 1), ('free', 1), ('content', 1), ('site', 1), ('generating', 1), ('almost', 1), ('endless', 1), ('supply', 1), ('user', 1), ('data', 1)]
[('ubiquitous', 2), ('computing', 2), ('time', 2), ('nature', 1), ('mobile', 1), ('pervasive', 1), ('begun', 1), ('reshape', 1), ('complicate', 1), ('notion', 1), ('space', 1), ('identity', 1), ('collection', 1), ('thirty', 1), ('internationally', 1), ('recognized', 1), ('contributor', 1), ('reflect', 1), ('implication', 1), ('way', 1), ('interact', 1), ('environment', 1), ('experience', 1), ('develop', 1)]
[('business', 2), ('cyber', 1), ('risk', 1), ('become', 1), ('increasingly', 1), ('reported', 1), ('major', 1), ('problem', 1), ('financial', 1), ('sector', 1), ('take', 1), ('many', 1), ('form', 1), ('including', 1), ('fraud', 1), ('purely', 1), ('monetary', 1), ('gain', 1), ('hacking', 1), ('hostile', 1), ('company', 1), ('causing', 1), ('interruption', 1), ('damage', 1), ('reputation', 1), ('theft', 1), ('criminal', 1), ('malicious', 1), ('individual', 1), ('large', 1), ('amount', 1), ('customer', 1), ('information', 1)]
[('threat', 2), ('assessment', 2), ('edition', 2), ('new', 2), ('field', 1), ('research', 1), ('surrounding', 1), ('exploded', 1), ('first', 1), ('management', 1), ('strategy', 1), ('identifying', 1), ('howler', 1), ('hunter', 1), ('reflect', 1), ('change', 1), ('second', 1), ('contains', 1), ('page', 1), ('material', 1), ('including', 1), ('several', 1), ('chapter', 1), ('chart', 1), ('illustration', 1)]
[('customer', 2), ('service', 2), ('felt', 1), ('dissatisfied', 1), ('product', 1), ('possible', 1), ('similarly', 1), ('unhappy', 1), ('company', 1), ('aware', 1), ('exploring', 1), ('consumer', 1), ('diversity', 1), ('constitutes', 1), ('best', 1), ('source', 1), ('information', 1), ('available', 1), ('lead', 1), ('way', 1), ('design', 1), ('innovation', 1), ('marketing', 1), ('orientation', 1)]
[('open', 2), ('source', 2), ('software', 2), ('development', 2), ('phenomenon', 1), ('attracted', 1), ('increased', 1), ('interest', 1), ('among', 1), ('commercial', 1), ('firm', 1), ('government', 1), ('becoming', 1), ('influential', 1), ('paradigm', 1), ('shift', 1), ('social', 1), ('economic', 1), ('value', 1), ('creation', 1), ('perhaps', 1), ('prominent', 1), ('example', 1), ('principle', 1)]
[('training', 4), ('law', 3), ('enforcement', 3), ('guide', 1), ('cover', 1), ('every', 1), ('aspect', 1), ('academy', 1), ('administration', 1), ('designing', 1), ('curriculum', 1), ('identifying', 1), ('utilizing', 1), ('qualified', 1), ('instructor', 1), ('using', 1), ('latest', 1), ('methodology', 1), ('technology', 1), ('best', 1), ('practice', 1), ('officer', 1), ('give', 1), ('administrator', 1), ('specialist', 1)]
[('biometrics', 3), ('military', 3), ('support', 2), ('operation', 2), ('lesson', 1), ('battlefield', 1), ('examines', 1), ('evaluates', 1), ('recent', 1), ('experience', 1), ('iraq', 1), ('afghanistan', 1), ('context', 1), ('use', 1), ('related', 1), ('technology', 1), ('book', 1), ('take', 1), ('comprehensive', 1), ('look', 1), ('used', 1), ('various', 1), ('suggests', 1), ('way', 1)]
[('public', 2), ('private', 2), ('medium', 2), ('mobile', 1), ('device', 1), ('impact', 1), ('daily', 1), ('life', 1), ('raised', 1), ('relevant', 1), ('question', 1), ('regarding', 1), ('space', 1), ('communication', 1), ('technological', 1), ('environment', 1), ('operating', 1), ('system', 1), ('platform', 1), ('apps', 1), ('ecosystem', 1), ('interface', 1), ('design', 1), ('participatory', 1), ('culture', 1), ('social', 1), ('influence', 1), ('user', 1), ('deal', 1), ('intimate', 1), ('personal', 1)]
[('audience', 2), ('although', 1), ('many', 1), ('digital', 1), ('platform', 1), ('continue', 1), ('appropriate', 1), ('reconfigure', 1), ('familiar', 1), ('form', 1), ('medium', 1), ('experience', 1), ('environment', 1), ('longer', 1), ('consistently', 1), ('construct', 1), ('identifiable', 1), ('mass', 1), ('term', 1), ('understood', 1), ('twentieth', 1), ('century', 1), ('researcher', 1), ('notion', 1), ('audiencing', 1), ('take', 1), ('different', 1), ('characteristic', 1), ('within', 1)]
[('police', 4), ('misconduct', 3), ('explores', 2), ('type', 2), ('book', 1), ('different', 1), ('including', 1), ('use', 1), ('excessive', 1), ('force', 1), ('officer', 1), ('become', 1), ('involved', 1), ('illegal', 1), ('step', 1), ('jurisdiction', 1), ('take', 1), ('prevent', 1), ('problem', 1), ('discus', 1), ('included', 1), ('historical', 1), ('analysis', 1)]
[('risk', 3), ('information', 1), ('security', 1), ('explains', 1), ('complex', 1), ('diverse', 1), ('source', 1), ('organization', 1), ('provides', 1), ('clear', 1), ('guidance', 1), ('strategy', 1), ('address', 1), ('threat', 1), ('happen', 1), ('investigate', 1), ('edward', 1), ('wilding', 1), ('focus', 1), ('particularly', 1), ('internal', 1), ('workplace', 1), ('crime', 1), ('preservation', 1), ('evidence', 1)]
[('social', 1), ('critic', 1), ('artificial', 1), ('intelligence', 1), ('expert', 1), ('long', 1), ('prophesized', 1), ('computer', 1), ('robot', 1), ('soon', 1), ('relegate', 1), ('human', 1), ('dustbin', 1), ('history', 1), ('many', 1), ('among', 1), ('general', 1), ('population', 1), ('seem', 1), ('shared', 1), ('fear', 1), ('dehumanized', 1), ('future', 1), ('twenty', 1), ('first', 1), ('century', 1), ('actually', 1), ('reacting', 1), ('expanding', 1), ('array', 1), ('gadget', 1)]
[('geocomputation', 2), ('gi', 2), ('data', 2), ('come', 1), ('age', 1), ('whirlwind', 1), ('change', 1), ('experienced', 1), ('geographical', 1), ('information', 1), ('science', 1), ('development', 1), ('new', 1), ('gathering', 1), ('earth', 1), ('observing', 1), ('technology', 1), ('taken', 1), ('beyond', 1), ('mere', 1), ('towards', 1), ('analysis', 1), ('modeling', 1), ('use', 1), ('problem', 1), ('solving', 1), ('dynamic', 1), ('edge', 1)]
[('police', 2), ('reduction', 1), ('department', 1), ('funding', 1), ('raised', 1), ('importance', 1), ('volunteer', 1), ('enhancing', 1), ('organizational', 1), ('performance', 1), ('improving', 1), ('community', 1), ('trust', 1), ('confidence', 1), ('time', 1), ('accomplishing', 1), ('basic', 1), ('task', 1), ('maintain', 1), ('public', 1), ('safety', 1), ('security', 1), ('period', 1), ('administrator', 1), ('asked', 1), ('le', 1), ('engage', 1), ('smarter', 1)]
[('crime', 3), ('online', 2), ('environment', 2), ('undergoing', 1), ('metamorphosis', 1), ('technological', 1), ('revolution', 1), ('created', 1), ('new', 1), ('opportunity', 1), ('wide', 1), ('variety', 1), ('perpetrated', 1), ('industrial', 1), ('scale', 1), ('traditionally', 1), ('committed', 1), ('offline', 1), ('increasingly', 1), ('transitioned', 1), ('book', 1), ('take', 1), ('case', 1), ('study', 1), ('based', 1)]
[('knowledge', 2), ('management', 2), ('go', 1), ('beyond', 1), ('data', 1), ('information', 1), ('capture', 1), ('computerized', 1), ('health', 1), ('record', 1), ('ordering', 1), ('system', 1), ('seek', 1), ('leverage', 1), ('experience', 1), ('interact', 1), ('healthcare', 1), ('enhance', 1), ('care', 1), ('delivery', 1), ('teamwork', 1), ('organizational', 1), ('learning', 1), ('envisioned', 1), ('thoughtfully', 1), ('take', 1), ('systemic', 1), ('approach', 1), ('implementation', 1)]
[('time', 2), ('technology', 2), ('social', 2), ('work', 2), ('save', 1), ('trouble', 1), ('incorporate', 1), ('curriculum', 1), ('dramatic', 1), ('increase', 1), ('use', 1), ('computer', 1), ('form', 1), ('education', 1), ('practice', 1), ('educator', 1), ('trainer', 1), ('administrator', 1), ('investing', 1), ('valuable', 1), ('money', 1), ('effort', 1), ('trying', 1), ('make', 1), ('transition', 1), ('traditional', 1), ('teaching', 1)]
[('information', 2), ('book', 1), ('address', 1), ('issue', 1), ('nexus', 1), ('freedom', 1), ('property', 1), ('acknowledging', 1), ('hiding', 1), ('exposing', 1), ('affect', 1), ('privacy', 1), ('inquires', 1), ('physic', 1), ('technology', 1), ('business', 1), ('model', 1), ('governmental', 1), ('strategy', 1), ('last', 1), ('least', 1), ('legal', 1), ('framework', 1), ('concerning', 1), ('access', 1), ('organisation', 1)]
[('compare', 1), ('park', 1), ('within', 1), ('asian', 1), ('pacific', 1), ('search', 1), ('strategy', 1), ('policy', 1), ('maker', 1), ('adopt', 1), ('reduce', 1), ('global', 1), ('digital', 1), ('divide', 1), ('advance', 1), ('distributional', 1), ('equity', 1), ('soften', 1), ('negative', 1), ('effect', 1), ('economic', 1), ('globalization', 1), ('best', 1), ('practice', 1), ('suggested', 1), ('based', 1), ('case', 1)]
[('abolitionist', 2), ('movement', 2), ('th', 1), ('century', 1), ('america', 1), ('led', 1), ('directly', 1), ('end', 1), ('slavery', 1), ('united', 1), ('state', 1), ('collection', 1), ('original', 1), ('document', 1), ('including', 1), ('speech', 1), ('editorial', 1), ('book', 1), ('fiction', 1), ('capture', 1), ('deep', 1), ('ideological', 1), ('division', 1), ('within', 1)]
[('work', 1), ('compare', 1), ('park', 1), ('china', 1), ('india', 1), ('malaysia', 1), ('singapore', 1), ('taiwan', 1), ('hawaii', 1), ('search', 1), ('strategy', 1), ('policy', 1), ('maker', 1), ('employ', 1), ('reduce', 1), ('global', 1), ('digital', 1), ('divide', 1), ('advance', 1), ('distributional', 1), ('equity', 1), ('soften', 1), ('negative', 1), ('effect', 1), ('economic', 1), ('globalization', 1)]
[('recent', 1), ('decade', 1), ('science', 1), ('experienced', 1), ('revolutionary', 1), ('shift', 1), ('development', 1), ('extensive', 1), ('application', 1), ('computer', 1), ('modelling', 1), ('simulation', 1), ('transformed', 1), ('knowledge', 1), ('making', 1), ('practice', 1), ('scientific', 1), ('field', 1), ('diverse', 1), ('astro', 1), ('physic', 1), ('genetics', 1), ('robotics', 1), ('demography', 1), ('epistemic', 1), ('transformation', 1), ('brought', 1), ('simultaneous', 1)]
[('social', 2), ('medium', 2), ('far', 1), ('neutral', 1), ('platform', 1), ('facebook', 1), ('twitter', 1), ('youtube', 1), ('wechat', 1), ('posse', 1), ('material', 1), ('characteristic', 1), ('shape', 1), ('engage', 1), ('protest', 1), ('resist', 1), ('struggle', 1), ('innovative', 1), ('collection', 1), ('advance', 1), ('notion', 1), ('materiality', 1), ('draw', 1), ('attention', 1), ('way', 1), ('wire', 1), ('silicon', 1), ('data', 1)]
[('psychoanalysis', 2), ('digital', 2), ('culture', 2), ('medium', 2), ('offer', 1), ('comprehensive', 1), ('account', 1), ('contemporary', 1), ('environment', 1), ('audience', 1), ('particular', 1), ('drawing', 1), ('study', 1), ('framework', 1), ('provides', 1), ('introduction', 1), ('psychoanalytic', 1), ('affect', 1), ('theory', 1), ('sigmund', 1), ('freud', 1), ('didier', 1), ('anzieu', 1), ('applies', 1), ('theoretically', 1)]
[('basin', 2), ('mekong', 1), ('southeast', 1), ('asia', 1), ('largest', 1), ('international', 1), ('river', 1), ('world', 1), ('abundant', 1), ('natural', 1), ('resource', 1), ('shared', 1), ('six', 1), ('riparian', 1), ('country', 1), ('provide', 1), ('basis', 1), ('livelihood', 1), ('million', 1), ('ongoing', 1), ('socio', 1), ('economic', 1), ('growth', 1), ('related', 1), ('anthropogenic', 1), ('intervention', 1), ('impact', 1), ('region', 1)]
[('asia', 3), ('religion', 2), ('edited', 1), ('volume', 1), ('discus', 1), ('mediatized', 1), ('examining', 1), ('intensity', 1), ('variety', 1), ('construction', 1), ('process', 1), ('related', 1), ('digital', 1), ('medium', 1), ('today', 1), ('individual', 1), ('chapter', 1), ('present', 1), ('case', 1), ('study', 1), ('various', 1), ('region', 1), ('religious', 1), ('tradition', 1), ('critically', 1), ('discussing', 1), ('data', 1), ('collected', 1), ('light', 1), ('current', 1)]
[('long', 1), ('thirsting', 1), ('tempting', 1), ('tantalizing', 1), ('teaser', 1), ('craving', 1), ('challenging', 1), ('cryptographic', 1), ('conundrum', 1), ('sequel', 1), ('sum', 1), ('solve', 1), ('work', 1), ('satiate', 1), ('desire', 1), ('even', 1), ('prolific', 1), ('puzzle', 1), ('enthusiast', 1)]
[('lifestyle', 2), ('journalism', 2), ('ranging', 1), ('travel', 1), ('wellbeing', 1), ('fashion', 1), ('food', 1), ('explores', 1), ('wide', 1), ('variety', 1), ('subject', 1), ('within', 1), ('growing', 1), ('field', 1), ('edited', 1), ('collection', 1), ('examines', 1), ('complex', 1), ('dynamic', 1), ('evolving', 1), ('medium', 1), ('environment', 1), ('encompassing', 1), ('aspect', 1), ('consumerism', 1), ('entertainment', 1), ('cosmopolitanism', 1)]
[('book', 1), ('focus', 1), ('mediated', 1), ('intercultural', 1), ('communication', 1), ('context', 1), ('globalization', 1), ('analyzing', 1), ('social', 1), ('traditional', 1), ('medium', 1), ('using', 1), ('qualitative', 1), ('interpretive', 1), ('critical', 1), ('cultural', 1), ('perspective', 1), ('contributor', 1), ('engage', 1), ('diverse', 1), ('topic', 1), ('ranging', 1), ('hybrid', 1), ('identity', 1), ('different', 1), ('community', 1), ('journalistic', 1), ('collaboration', 1), ('global', 1)]
[('popular', 3), ('culture', 3), ('come', 1), ('seeing', 1), ('depth', 1), ('lateral', 1), ('connection', 1), ('development', 1), ('nobody', 1), ('exceeds', 1), ('marshall', 1), ('fishwick', 1), ('canadian', 1), ('psychology', 1), ('probing', 1), ('internet', 1), ('leading', 1), ('authority', 1), ('american', 1), ('study', 1), ('present', 1), ('eye', 1), ('opening', 1), ('examination', 1)]
[('medium', 3), ('piracy', 2), ('book', 1), ('take', 1), ('marxist', 1), ('approach', 1), ('study', 1), ('production', 1), ('distribution', 1), ('consumption', 1), ('text', 1), ('violation', 1), ('intellectual', 1), ('property', 1), ('law', 1), ('examine', 1), ('place', 1), ('endemic', 1), ('feature', 1), ('cultural', 1), ('economy', 1), ('rise', 1), ('internet', 1), ('author', 1), ('explores', 1), ('term', 1), ('moral', 1), ('legal', 1)]
[('policing', 3), ('educational', 2), ('public', 2), ('school', 2), ('america', 1), ('system', 1), ('edited', 1), ('john', 1), ('harrison', 1), ('watt', 1), ('describes', 1), ('method', 1), ('modern', 1), ('setting', 1), ('covering', 1), ('private', 1), ('college', 1), ('university', 1), ('using', 1), ('topical', 1), ('example', 1), ('subject', 1), ('matter', 1), ('expert', 1), ('introduce', 1), ('history', 1), ('elementary', 1), ('high', 1), ('legal', 1), ('context', 1)]
[('access', 2), ('electronic', 2), ('medical', 2), ('library', 2), ('give', 1), ('patron', 1), ('digital', 1), ('content', 1), ('need', 1), ('resource', 1), ('essential', 1), ('guide', 1), ('challenge', 1), ('acquiring', 1), ('licensing', 1), ('managing', 1), ('use', 1), ('book', 1), ('journal', 1), ('librarian', 1), ('working', 1), ('variety', 1), ('setting', 1), ('including', 1), ('academic', 1), ('health', 1), ('center', 1), ('hospital', 1)]
[('forensic', 2), ('art', 2), ('technique', 2), ('create', 2), ('digital', 1), ('professional', 1), ('guide', 1), ('corel', 1), ('painter', 1), ('tm', 1), ('illustrates', 1), ('hand', 1), ('digitally', 1), ('police', 1), ('investigative', 1), ('purpose', 1), ('coverage', 1), ('focus', 1), ('specifically', 1), ('utilize', 1), ('software', 1), ('realistic', 1), ('human', 1), ('likeness', 1), ('including', 1), ('composite', 1), ('suspect', 1), ('drawing', 1), ('person', 1)]
[('gang', 6), ('organized', 3), ('crime', 3), ('group', 2), ('george', 1), ('knox', 1), ('gregg', 1), ('etter', 1), ('carter', 1), ('smith', 1), ('offer', 1), ('informed', 1), ('carefully', 1), ('investigated', 1), ('examination', 1), ('covering', 1), ('street', 1), ('prison', 1), ('outlaw', 1), ('motorcycle', 1), ('every', 1), ('continent', 1), ('author', 1), ('spent', 1), ('decade', 1), ('investigating', 1)]
[('security', 4), ('ctped', 1), ('traditional', 1), ('countermeasure', 1), ('thing', 1), ('know', 1), ('handy', 1), ('reference', 1), ('seasoned', 1), ('professional', 1), ('starting', 1), ('law', 1), ('enforcement', 1), ('crime', 1), ('prevention', 1), ('environmental', 1), ('design', 1), ('cpted', 1), ('foundational', 1), ('concept', 1), ('physical', 1), ('incorporated', 1), ('widely', 1), ('policy', 1)]
[('ai', 2), ('philosophical', 2), ('purpose', 1), ('book', 1), ('originally', 1), ('published', 1), ('contribute', 1), ('advance', 1), ('artificial', 1), ('intelligence', 1), ('clarifying', 1), ('removing', 1), ('major', 1), ('source', 1), ('confusion', 1), ('time', 1), ('continued', 1), ('preoccupy', 1), ('scientist', 1), ('thereby', 1), ('impede', 1), ('research', 1), ('unlike', 1), ('vast', 1), ('majority', 1), ('critique', 1)]
[('technology', 2), ('verification', 2), ('science', 1), ('biometrics', 1), ('security', 1), ('identity', 1), ('cover', 1), ('technical', 1), ('aspect', 1), ('iris', 1), ('facial', 1), ('recognition', 1), ('focusing', 1), ('primarily', 1), ('mathematical', 1), ('statistical', 1), ('algorithm', 1), ('run', 1), ('identification', 1), ('process', 1), ('modality', 1), ('chapter', 1), ('begin', 1), ('review', 1), ('examining', 1)]
[('technology', 2), ('learning', 2), ('winner', 1), ('outstanding', 1), ('book', 1), ('award', 1), ('association', 1), ('educational', 1), ('communication', 1), ('culture', 1), ('system', 1), ('thinking', 1), ('change', 1), ('division', 1), ('rapid', 1), ('advancement', 1), ('ability', 1), ('collect', 1), ('process', 1), ('analyze', 1), ('massive', 1), ('amount', 1), ('data', 1), ('along', 1), ('widespread', 1), ('use', 1), ('online', 1), ('blended', 1), ('platform', 1)]
[('climate', 2), ('change', 2), ('communication', 2), ('volume', 1), ('provides', 1), ('timely', 1), ('state', 1), ('art', 1), ('collection', 1), ('study', 1), ('examining', 1), ('era', 1), ('digital', 1), ('medium', 1), ('chapter', 1), ('focus', 1), ('broad', 1), ('range', 1), ('topic', 1), ('covering', 1), ('various', 1), ('aspect', 1), ('practice', 1), ('research', 1), ('ranging', 1), ('use', 1), ('online', 1), ('platform', 1), ('blog', 1), ('social', 1), ('networking', 1)]
[('digital', 3), ('book', 1), ('present', 1), ('comprehensive', 1), ('overview', 1), ('transactional', 1), ('form', 1), ('across', 1), ('asian', 1), ('region', 1), ('addressing', 1), ('platform', 1), ('infrastructure', 1), ('shape', 1), ('experience', 1), ('contributor', 1), ('argue', 1), ('every', 1), ('encounter', 1), ('mediated', 1), ('carry', 1), ('functional', 1), ('exchange', 1), ('time', 1), ('transaction', 1)]
[('new', 4), ('medium', 2), ('journalism', 2), ('practice', 2), ('current', 1), ('period', 1), ('uncertainty', 1), ('introspection', 1), ('focus', 1), ('challenge', 1), ('facing', 1), ('seek', 1), ('capture', 1), ('wide', 1), ('range', 1), ('employed', 1), ('across', 1), ('diversity', 1), ('edited', 1), ('collection', 1), ('explores', 1), ('lead', 1), ('reimagining', 1)]
[('digital', 3), ('korea', 2), ('role', 2), ('development', 1), ('explores', 1), ('central', 1), ('information', 1), ('communication', 1), ('technology', 1), ('south', 1), ('analyzing', 1), ('ict', 1), ('green', 1), ('growth', 1), ('sustainability', 1), ('new', 1), ('edition', 1), ('demonstrates', 1), ('concern', 1), ('public', 1), ('safety', 1), ('olympic', 1), ('game', 1), ('shaping', 1), ('next', 1), ('generation', 1), ('network', 1), ('presenting', 1)]
[('capture', 2), ('going', 1), ('beyond', 1), ('cursory', 1), ('reason', 1), ('behind', 1), ('image', 1), ('move', 1), ('politics', 1), ('gaze', 1), ('explores', 1), ('contemporary', 1), ('practice', 1), ('around', 1), ('visual', 1), ('imaging', 1), ('brings', 1), ('original', 1), ('conceptualisation', 1), ('constantly', 1), ('environment', 1), ('digital', 1), ('technology', 1), ('technologically', 1), ('mediated', 1), ('everyday', 1), ('visuality', 1), ('moral', 1)]
[('practice', 3), ('sound', 2), ('image', 2), ('aesthetic', 2), ('brings', 1), ('together', 1), ('international', 1), ('artist', 1), ('scholar', 1), ('explore', 1), ('diverse', 1), ('applying', 1), ('critical', 1), ('perspective', 1), ('interrogate', 1), ('evaluate', 1), ('underpin', 1), ('audiovisual', 1), ('contribution', 1), ('draw', 1), ('upon', 1), ('established', 1), ('discourse', 1), ('electroacoustic', 1), ('music', 1), ('medium', 1), ('art', 1)]
[('book', 1), ('steffen', 1), ('lange', 1), ('tilman', 1), ('santarius', 1), ('investigate', 1), ('digitalization', 1), ('influence', 1), ('environmental', 1), ('social', 1), ('sustainability', 1), ('information', 1), ('revolution', 1), ('currently', 1), ('changing', 1), ('daily', 1), ('life', 1), ('billion', 1), ('worldwide', 1), ('time', 1), ('current', 1), ('economic', 1), ('model', 1), ('consumerist', 1), ('lifestyle', 1), ('need', 1), ('radically', 1), ('transformed', 1), ('society', 1)]
[('transmedia', 3), ('study', 2), ('book', 1), ('explores', 1), ('dynamic', 1), ('various', 1), ('facet', 1), ('fiction', 1), ('nonfiction', 1), ('moving', 1), ('beyond', 1), ('presentation', 1), ('definition', 1), ('transmediality', 1), ('field', 1), ('author', 1), ('examine', 1), ('novel', 1), ('advancement', 1), ('theory', 1), ('methodological', 1), ('development', 1), ('strategic', 1), ('planning', 1), ('storytelling', 1), ('drawing', 1), ('upon', 1), ('theoretical', 1)]
[('olympic', 2), ('handbook', 1), ('offer', 1), ('important', 1), ('timely', 1), ('contribution', 1), ('interdisciplinary', 1), ('field', 1), ('study', 1), ('brings', 1), ('together', 1), ('first', 1), ('time', 1), ('single', 1), ('volume', 1), ('complete', 1), ('analysis', 1), ('current', 1), ('future', 1), ('economic', 1), ('commercial', 1), ('socio', 1), ('political', 1), ('cultural', 1), ('governance', 1), ('challenge', 1), ('facing', 1), ('paralympic', 1), ('game', 1), ('athlete', 1)]
[('based', 3), ('language', 3), ('project', 2), ('learning', 2), ('book', 1), ('explores', 1), ('implication', 1), ('technology', 1), ('mediated', 1), ('call', 1), ('teacher', 1), ('development', 1), ('focusing', 1), ('role', 1), ('video', 1), ('instruction', 1), ('elucidating', 1), ('challenge', 1), ('opportunity', 1), ('promote', 1), ('learner', 1), ('creativity', 1), ('classroom', 1), ('volume', 1), ('build', 1), ('existing', 1), ('literature', 1)]
[('communication', 4), ('reimagining', 2), ('part', 1), ('extensive', 1), ('exploration', 1), ('action', 1), ('investigates', 1), ('practical', 1), ('implication', 1), ('cultural', 1), ('industry', 1), ('medium', 1), ('ecology', 1), ('complex', 1), ('social', 1), ('activity', 1), ('integral', 1), ('domain', 1), ('life', 1), ('series', 1), ('develops', 1), ('new', 1), ('information', 1), ('architecture', 1), ('field', 1)]
[('cyborg', 2), ('building', 1), ('highly', 1), ('successful', 1), ('handbook', 1), ('new', 1), ('collection', 1), ('essay', 1), ('interview', 1), ('creative', 1), ('piece', 1), ('brings', 1), ('together', 1), ('set', 1), ('compelling', 1), ('personal', 1), ('account', 1), ('mean', 1), ('live', 1), ('twenty', 1), ('first', 1), ('century', 1), ('human', 1), ('integration', 1), ('complex', 1), ('technology', 1), ('go', 1), ('back', 1), ('clothes', 1), ('cooking', 1), ('language', 1)]
[('audio', 2), ('practical', 2), ('forensic', 2), ('digital', 1), ('forensics', 1), ('fundamental', 1), ('offer', 1), ('accessible', 1), ('introduction', 1), ('theory', 1), ('skill', 1), ('behind', 1), ('emerging', 1), ('field', 1), ('science', 1), ('beginning', 1), ('overview', 1), ('history', 1), ('discipline', 1), ('reader', 1), ('guided', 1), ('principle', 1), ('key', 1), ('concept', 1), ('introduced', 1), ('area', 1)]
[('book', 2), ('internet', 2), ('offer', 1), ('comprehensive', 1), ('overview', 1), ('recent', 1), ('research', 1), ('emphasizing', 1), ('spatial', 1), ('dimension', 1), ('geospatial', 1), ('application', 1), ('numerous', 1), ('social', 1), ('geographic', 1), ('implication', 1), ('digital', 1), ('divide', 1), ('mobile', 1), ('written', 1), ('leading', 1), ('scholar', 1), ('field', 1), ('shed', 1), ('light', 1), ('origin', 1), ('multiple', 1), ('facet', 1)]
[('digital', 2), ('big', 2), ('data', 2), ('drawing', 1), ('range', 1), ('method', 1), ('across', 1), ('science', 1), ('technology', 1), ('study', 1), ('humanity', 1), ('art', 1), ('book', 1), ('present', 1), ('comprehensive', 1), ('view', 1), ('phenomenon', 1), ('architecture', 1), ('increasingly', 1), ('transforming', 1), ('political', 1), ('question', 1), ('technical', 1), ('management', 1), ('determining', 1), ('classificatory', 1), ('system', 1), ('social', 1), ('educational', 1)]
[('book', 2), ('text', 2), ('including', 2), ('cover', 2), ('law', 2), ('introductory', 1), ('reference', 1), ('guide', 1), ('main', 1), ('issue', 1), ('facing', 1), ('journalist', 1), ('today', 1), ('social', 1), ('medium', 1), ('fake', 1), ('news', 1), ('regulator', 1), ('united', 1), ('kingdom', 1), ('scot', 1), ('northern', 1), ('irish', 1), ('devolved', 1), ('legislation', 1), ('human', 1), ('right', 1), ('eu', 1), ('essential', 1), ('area', 1)]
[('learning', 8), ('motion', 2), ('medium', 2), ('book', 2), ('digital', 1), ('provides', 1), ('theoretical', 1), ('analysis', 1), ('related', 1), ('society', 1), ('explores', 1), ('changing', 1), ('affect', 1), ('environment', 1), ('change', 1), ('showing', 1), ('always', 1), ('expounds', 1), ('upon', 1), ('concept', 1), ('reconstructing', 1), ('unfolds', 1)]
[('digital', 2), ('practice', 2), ('young', 2), ('health', 2), ('approach', 2), ('book', 1), ('explores', 1), ('medium', 1), ('extend', 1), ('care', 1), ('among', 1), ('friend', 1), ('peer', 1), ('researching', 1), ('negotiation', 1), ('sexual', 1), ('mental', 1), ('gender', 1), ('sexuality', 1), ('dating', 1), ('apps', 1), ('highlighting', 1), ('need', 1), ('multifocal', 1), ('centre', 1), ('expertise', 1), ('taking', 1), ('everyday', 1)]
[('digital', 3), ('make', 1), ('social', 1), ('life', 1), ('force', 1), ('shape', 1), ('feel', 1), ('fortunate', 1), ('experience', 1), ('networked', 1), ('connectivity', 1), ('privileged', 1), ('access', 1), ('unimaginable', 1), ('amount', 1), ('information', 1), ('easier', 1), ('work', 1), ('global', 1), ('economy', 1), ('privacy', 1), ('freedom', 1), ('threat', 1), ('surveillance', 1)]
[('english', 3), ('fully', 1), ('updated', 1), ('edition', 1), ('redesigning', 1), ('explores', 1), ('innovative', 1), ('us', 1), ('early', 1), ('manuscript', 1), ('post', 1), ('colonial', 1), ('literature', 1), ('creative', 1), ('writing', 1), ('development', 1), ('new', 1), ('medium', 1), ('focusing', 1), ('continues', 1), ('evolve', 1), ('global', 1), ('status', 1), ('strong', 1), ('emphasis', 1), ('visual', 1), ('form', 1), ('language', 1)]
[('medium', 3), ('companion', 2), ('disinformation', 2), ('populism', 2), ('brings', 1), ('together', 1), ('diverse', 1), ('set', 1), ('concept', 1), ('used', 1), ('analyse', 1), ('dimension', 1), ('globally', 1), ('routledge', 1), ('explores', 1), ('recent', 1), ('transformation', 1), ('architecture', 1), ('public', 1), ('communication', 1), ('particular', 1), ('attribute', 1), ('digital', 1), ('ecology', 1), ('conducive', 1)]
[('justice', 3), ('apps', 2), ('legal', 2), ('mobile', 1), ('web', 1), ('based', 1), ('programme', 1), ('assist', 1), ('individual', 1), ('task', 1), ('produced', 1), ('improved', 1), ('accessed', 1), ('unprecedented', 1), ('rate', 1), ('technology', 1), ('potential', 1), ('reshape', 1), ('system', 1), ('improve', 1), ('access', 1), ('demystify', 1), ('institution', 1), ('using', 1), ('artificial', 1), ('intelligence', 1), ('technique', 1)]
[('security', 2), ('intelligence', 2), ('book', 1), ('first', 1), ('published', 1), ('examines', 1), ('change', 1), ('agency', 1), ('envisioned', 1), ('uncertain', 1), ('world', 1), ('end', 1), ('cold', 1), ('war', 1), ('central', 1), ('focus', 1), ('canadian', 1), ('service', 1), ('history', 1), ('function', 1), ('future', 1), ('comparative', 1), ('study', 1), ('british', 1), ('soviet', 1), ('american', 1), ('australian', 1)]
[('medium', 3), ('development', 2), ('social', 2), ('handbook', 1), ('provides', 1), ('first', 1), ('comprehensive', 1), ('reference', 1), ('book', 1), ('english', 1), ('mass', 1), ('arab', 1), ('country', 1), ('capturing', 1), ('historical', 1), ('current', 1), ('scene', 1), ('collection', 1), ('map', 1), ('role', 1), ('political', 1), ('movement', 1), ('contributor', 1), ('include', 1), ('specialist', 1), ('field', 1)]
[('speaking', 2), ('internal', 2), ('representation', 2), ('incremental', 1), ('conceptualization', 1), ('language', 1), ('production', 1), ('discus', 1), ('simultaneous', 1), ('action', 1), ('involved', 1), ('thinking', 1), ('piecemeal', 1), ('way', 1), ('individual', 1), ('construct', 1), ('external', 1), ('world', 1), ('use', 1), ('author', 1), ('markus', 1), ('guhe', 1), ('present', 1), ('first', 1), ('computational', 1), ('model', 1)]
[('digital', 3), ('study', 3), ('journalism', 2), ('delf', 1), ('technology', 1), ('platform', 1), ('audience', 1), ('relation', 1), ('constitute', 1), ('central', 1), ('object', 1), ('outlining', 1), ('principal', 1), ('theory', 1), ('research', 1), ('method', 1), ('developed', 1), ('normative', 1), ('underpinnings', 1), ('possible', 1), ('future', 1), ('academic', 1), ('field', 1), ('book', 1), ('argues', 1)]
[('digital', 3), ('study', 3), ('journalism', 2), ('delf', 1), ('technology', 1), ('platform', 1), ('audience', 1), ('relation', 1), ('constitute', 1), ('central', 1), ('object', 1), ('outlining', 1), ('principal', 1), ('theory', 1), ('research', 1), ('method', 1), ('developed', 1), ('normative', 1), ('underpinnings', 1), ('possible', 1), ('future', 1), ('academic', 1), ('field', 1), ('book', 1), ('argues', 1)]
[('peripherality', 1), ('challenge', 1), ('methodology', 1), ('theory', 1), ('making', 1), ('book', 1), ('examines', 1), ('peripheral', 1), ('incorporated', 1), ('ethnographic', 1), ('research', 1), ('reflects', 1), ('mean', 1), ('periphery', 1), ('ontologically', 1), ('epistemologically', 1), ('starting', 1), ('premise', 1), ('clarity', 1), ('fixity', 1), ('ideal', 1), ('modernity', 1), ('prevent', 1), ('approaching', 1)]
[('theatrical', 3), ('autocad', 2), ('drafting', 2), ('step', 2), ('provides', 1), ('introduction', 1), ('software', 1), ('specifically', 1), ('focusing', 1), ('navigate', 1), ('command', 1), ('commonly', 1), ('used', 1), ('creating', 1), ('design', 1), ('construction', 1), ('installation', 1), ('plate', 1), ('use', 1), ('beginning', 1), ('tutorial', 1), ('download', 1), ('program', 1), ('review', 1)]
[('tabloid', 3), ('development', 2), ('edited', 1), ('collection', 1), ('brings', 1), ('together', 1), ('range', 1), ('contemporary', 1), ('expertise', 1), ('discus', 1), ('impact', 1), ('news', 1), ('around', 1), ('world', 1), ('thirteen', 1), ('chapter', 1), ('global', 1), ('cover', 1), ('asia', 1), ('africa', 1), ('america', 1), ('australia', 1), ('eastern', 1), ('western', 1), ('europe', 1), ('present', 1), ('innovative', 1), ('research', 1), ('eighteen', 1), ('expert', 1)]
[('right', 3), ('legal', 2), ('book', 2), ('bringing', 1), ('unique', 1), ('perspective', 1), ('burgeoning', 1), ('ethical', 1), ('issue', 1), ('surrounding', 1), ('presence', 1), ('artificial', 1), ('intelligence', 1), ('daily', 1), ('life', 1), ('us', 1), ('theory', 1), ('practice', 1), ('animal', 1), ('nature', 1), ('ass', 1), ('status', 1), ('robot', 1), ('extensive', 1), ('philosophical', 1), ('analysis', 1), ('explores', 1)]
[('education', 2), ('policy', 2), ('providing', 1), ('comprehensive', 1), ('introduction', 1), ('topic', 1), ('accountability', 1), ('datafication', 1), ('governance', 1), ('world', 1), ('yearbook', 1), ('considers', 1), ('global', 1), ('dynamic', 1), ('enactment', 1), ('process', 1), ('chapter', 1), ('pay', 1), ('particular', 1), ('attention', 1), ('role', 1), ('international', 1), ('organization', 1), ('private', 1), ('sector', 1), ('promotion', 1)]
[('randomized', 2), ('controlled', 2), ('trial', 2), ('education', 2), ('recent', 1), ('surge', 1), ('use', 1), ('rcts', 1), ('within', 1), ('globally', 1), ('disproportionate', 1), ('claim', 1), ('made', 1), ('show', 1), ('work', 1), ('constitutes', 1), ('best', 1), ('evidence', 1), ('drawing', 1), ('date', 1), ('scholarship', 1), ('across', 1), ('world', 1), ('taming', 1), ('critically', 1), ('address', 1)]
[('communication', 2), ('disorder', 2), ('book', 1), ('written', 1), ('team', 1), ('speech', 1), ('language', 1), ('therapist', 1), ('wolfson', 1), ('neurorehabilitation', 1), ('centre', 1), ('intended', 1), ('practitioner', 1), ('working', 1), ('patient', 1), ('acquired', 1), ('resulting', 1), ('brain', 1), ('injury', 1), ('aphasia', 1), ('cognitive', 1), ('dysarthria', 1), ('apraxia', 1), ('author', 1), ('believe', 1), ('therapeutic', 1)]
[('problem', 2), ('international', 2), ('book', 1), ('first', 1), ('published', 1), ('present', 1), ('comprehensive', 1), ('detailed', 1), ('look', 1), ('militarisation', 1), ('examines', 1), ('key', 1), ('issue', 1), ('meaning', 1), ('context', 1), ('spread', 1), ('militarism', 1), ('third', 1), ('world', 1), ('fast', 1), ('growth', 1), ('dangerous', 1), ('implication', 1), ('including', 1), ('development', 1), ('often', 1), ('poorer', 1)]
[('medical', 3), ('education', 3), ('book', 2), ('ant', 2), ('outline', 1), ('methodology', 1), ('based', 1), ('actor', 1), ('network', 1), ('theory', 1), ('praxiography', 1), ('applies', 1), ('field', 1), ('drawn', 1), ('detailed', 1), ('account', 1), ('practice', 1), ('setting', 1), ('show', 1), ('researcher', 1), ('learn', 1), ('work', 1), ('approach', 1), ('attune', 1), ('different', 1), ('insight', 1)]
[('book', 1), ('first', 1), ('published', 1), ('important', 1), ('study', 1), ('russia', 1), ('security', 1), ('service', 1), ('earliest', 1), ('year', 1), ('mid', 1), ('twentieth', 1), ('century', 1), ('ronald', 1), ('hingley', 1), ('demonstrates', 1), ('secret', 1), ('police', 1), ('acted', 1), ('tsar', 1), ('soviet', 1), ('rule', 1), ('key', 1), ('instrument', 1), ('control', 1), ('exercised', 1), ('field', 1), ('russian', 1), ('life', 1), ('outstandingly', 1)]
[('drum', 5), ('sound', 3), ('tuning', 2), ('assist', 1), ('drummer', 1), ('engineer', 1), ('music', 1), ('student', 1), ('learning', 1), ('critical', 1), ('skill', 1), ('related', 1), ('achieving', 1), ('optimised', 1), ('personalised', 1), ('kit', 1), ('set', 1), ('book', 1), ('cover', 1), ('essential', 1), ('theory', 1), ('percussion', 1), ('acoustic', 1), ('develops', 1), ('knowledge', 1), ('order', 1), ('facilitate', 1), ('creative', 1), ('approach', 1)]
[('information', 3), ('knowledge', 2), ('architecture', 2), ('review', 1), ('traditional', 1), ('approach', 1), ('managing', 1), ('explains', 1), ('need', 1), ('adapt', 1), ('support', 1), ('st', 1), ('century', 1), ('management', 1), ('discovery', 1), ('exploring', 1), ('rapidly', 1), ('changing', 1), ('environment', 1), ('managed', 1), ('accessed', 1), ('book', 1), ('considers', 1), ('use', 1), ('basic', 1)]
[('migrant', 2), ('mother', 2), ('online', 2), ('community', 2), ('way', 2), ('book', 1), ('explores', 1), ('experience', 1), ('lens', 1), ('created', 1), ('participate', 1), ('examining', 1), ('build', 1), ('relationship', 1), ('find', 1), ('make', 1), ('place', 1), ('family', 1), ('new', 1), ('country', 1), ('highlight', 1)]
[('examines', 2), ('zoombombing', 2), ('harassment', 2), ('book', 1), ('racist', 1), ('hate', 1), ('speech', 1), ('zoom', 1), ('account', 1), ('refer', 1), ('simply', 1), ('new', 1), ('style', 1), ('practice', 1), ('online', 1), ('trolling', 1), ('wake', 1), ('increased', 1), ('videoconferencing', 1), ('outbreak', 1), ('covid', 1), ('volume', 1), ('specifically', 1), ('racialized', 1), ('gendered', 1), ('phenomenon', 1)]
[('online', 2), ('book', 1), ('investigates', 1), ('school', 1), ('enterprise', 1), ('family', 1), ('china', 1), ('coped', 1), ('formal', 1), ('education', 1), ('light', 1), ('government', 1), ('policy', 1), ('throughout', 1), ('covid', 1), ('epidemic', 1), ('outbreak', 1), ('special', 1), ('focus', 1), ('problem', 1), ('encountered', 1), ('possible', 1), ('solution', 1), ('using', 1), ('grounded', 1), ('theory', 1), ('post', 1), ('retrieved', 1), ('public', 1), ('forum', 1)]
[('home', 4), ('digital', 3), ('technology', 3), ('age', 1), ('set', 1), ('multidisciplinary', 1), ('study', 1), ('exploring', 1), ('impact', 1), ('shift', 1), ('emphasis', 1), ('living', 1), ('using', 1), ('book', 1), ('cover', 1), ('wide', 1), ('variety', 1), ('topic', 1), ('design', 1), ('introduction', 1), ('use', 1), ('combining', 1)]
[('first', 2), ('programming', 2), ('originally', 1), ('published', 1), ('text', 1), ('offer', 1), ('depth', 1), ('treatment', 1), ('mathematical', 1), ('method', 1), ('explained', 1), ('principle', 1), ('considers', 1), ('major', 1), ('technique', 1), ('fully', 1), ('explains', 1), ('key', 1), ('term', 1), ('illustrates', 1), ('theory', 1), ('detailed', 1), ('example', 1), ('show', 1), ('various', 1), ('skill', 1), ('applied', 1), ('practice', 1)]
[('lecturer', 2), ('edited', 1), ('book', 1), ('collection', 1), ('latest', 1), ('empirical', 1), ('study', 1), ('translation', 1), ('interpreting', 1), ('post', 1), ('structuralist', 1), ('perspective', 1), ('contributor', 1), ('professor', 1), ('reader', 1), ('senior', 1), ('research', 1), ('student', 1), ('international', 1), ('context', 1), ('contribution', 1), ('characterised', 1), ('five', 1), ('theme', 1), ('intervention', 1)]
[('avid', 2), ('console', 2), ('industry', 2), ('feature', 2), ('complete', 1), ('guide', 1), ('offer', 1), ('best', 1), ('technique', 1), ('practice', 1), ('seasoned', 1), ('veteran', 1), ('curt', 1), ('schulkey', 1), ('utilizing', 1), ('unique', 1), ('function', 1), ('created', 1), ('standard', 1), ('virtual', 1), ('mixing', 1), ('packed', 1), ('difficult', 1), ('new', 1), ('user', 1), ('navigate', 1)]
[('artificial', 2), ('intelligence', 2), ('ai', 2), ('volume', 2), ('term', 1), ('coined', 1), ('actually', 1), ('date', 1), ('back', 1), ('far', 1), ('public', 1), ('consciousness', 1), ('research', 1), ('fallen', 1), ('favour', 1), ('year', 1), ('routledge', 1), ('library', 1), ('edition', 1), ('brings', 1), ('together', 1), ('set', 1), ('individual', 1), ('small', 1), ('interdisciplinary', 1), ('series', 1)]
[('handbook', 1), ('computational', 1), ('social', 1), ('science', 1), ('comprehensive', 1), ('reference', 1), ('source', 1), ('scholar', 1), ('across', 1), ('multiple', 1), ('discipline', 1), ('outline', 1), ('key', 1), ('debate', 1), ('field', 1), ('showcasing', 1), ('novel', 1), ('statistical', 1), ('modeling', 1), ('machine', 1), ('learning', 1), ('method', 1), ('draw', 1), ('specific', 1), ('case', 1), ('study', 1), ('demonstrate', 1), ('opportunity', 1), ('challenge', 1), ('cs', 1), ('approach', 1)]
[('child', 2), ('technology', 2), ('adult', 1), ('keep', 1), ('safe', 1), ('healthy', 1), ('online', 1), ('future', 1), ('thrive', 1), ('alongside', 1), ('highly', 1), ('accessible', 1), ('book', 1), ('unpacks', 1), ('latest', 1), ('psychological', 1), ('research', 1), ('attachment', 1), ('theory', 1), ('neurobiology', 1), ('offer', 1), ('parent', 1), ('professional', 1), ('insight', 1), ('impact', 1), ('development', 1), ('navigate', 1), ('life', 1)]
[('game', 4), ('scoring', 3), ('musical', 2), ('video', 2), ('understanding', 1), ('explores', 1), ('unique', 1), ('collaboration', 1), ('gameplay', 1), ('composition', 1), ('defines', 1), ('using', 1), ('array', 1), ('case', 1), ('study', 1), ('reaching', 1), ('back', 1), ('canon', 1), ('classic', 1), ('book', 1), ('illuminates', 1), ('flexibility', 1), ('user', 1), ('interactivity', 1), ('sound', 1), ('programming', 1), ('make', 1)]
[('book', 1), ('examines', 1), ('growing', 1), ('importance', 1), ('algorithm', 1), ('automation', 1), ('including', 1), ('emerging', 1), ('form', 1), ('artificial', 1), ('intelligence', 1), ('gathering', 1), ('composition', 1), ('distribution', 1), ('news', 1), ('author', 1), ('connect', 1), ('long', 1), ('line', 1), ('research', 1), ('journalism', 1), ('computation', 1), ('scholarly', 1), ('professional', 1), ('terrain', 1), ('yet', 1), ('explored', 1), ('taken', 1), ('whole', 1)]
[('mobile', 2), ('concise', 1), ('collection', 1), ('critically', 1), ('reflects', 1), ('assisted', 1), ('language', 1), ('learning', 1), ('research', 1), ('across', 1), ('educational', 1), ('stage', 1), ('early', 1), ('childhood', 1), ('university', 1), ('setting', 1), ('volume', 1), ('trace', 1), ('development', 1), ('mall', 1), ('practice', 1), ('researcher', 1), ('teacher', 1), ('effort', 1), ('make', 1), ('sense', 1), ('impact', 1), ('technology', 1), ('formal', 1), ('informal', 1), ('second', 1)]
[('market', 3), ('coronavirus', 2), ('news', 2), ('real', 2), ('ai', 1), ('explores', 1), ('analysis', 1), ('unstructured', 1), ('data', 1), ('related', 1), ('underlying', 1), ('sentiment', 1), ('time', 1), ('impact', 1), ('world', 1), ('global', 1), ('financial', 1), ('particular', 1), ('age', 1), ('information', 1), ('fake', 1), ('travel', 1), ('blink', 1), ('eye', 1), ('significantly', 1), ('alters', 1)]
[('digital', 2), ('essential', 1), ('book', 1), ('question', 1), ('psychological', 1), ('construct', 1), ('internet', 1), ('addiction', 1), ('contextualizing', 1), ('within', 1), ('technological', 1), ('era', 1), ('proposes', 1), ('critical', 1), ('psychology', 1), ('investigates', 1), ('user', 1), ('subjectivity', 1), ('function', 1), ('capitalism', 1), ('imperialism', 1), ('arguing', 1), ('punitive', 1), ('model', 1), ('excess', 1), ('critiquing', 1), ('political', 1), ('economy', 1)]
[('school', 3), ('standardization', 2), ('teacher', 2), ('reform', 1), ('era', 1), ('explores', 1), ('based', 1), ('administrator', 1), ('navigate', 1), ('process', 1), ('accountability', 1), ('schooling', 1), ('system', 1), ('setting', 1), ('provides', 1), ('clear', 1), ('insight', 1), ('work', 1), ('learning', 1), ('student', 1), ('dramatically', 1), ('reconstituted', 1), ('increased', 1), ('pressure', 1)]
[('handbook', 2), ('computational', 1), ('social', 1), ('science', 1), ('comprehensive', 1), ('reference', 1), ('source', 1), ('scholar', 1), ('across', 1), ('multiple', 1), ('discipline', 1), ('outline', 1), ('key', 1), ('debate', 1), ('field', 1), ('showcasing', 1), ('novel', 1), ('statistical', 1), ('modeling', 1), ('machine', 1), ('learning', 1), ('method', 1), ('draw', 1), ('specific', 1), ('case', 1), ('study', 1), ('demonstrate', 1), ('opportunity', 1), ('challenge', 1), ('cs', 1), ('approach', 1)]
[('information', 2), ('resource', 2), ('library', 2), ('technology', 1), ('planning', 1), ('provides', 1), ('librarian', 1), ('electronic', 1), ('planner', 1), ('innovative', 1), ('suggestion', 1), ('strategy', 1), ('creating', 1), ('digital', 1), ('twenty', 1), ('first', 1), ('century', 1), ('full', 1), ('technological', 1), ('advance', 1), ('assessment', 1), ('book', 1), ('explores', 1), ('best', 1), ('way', 1), ('make', 1), ('accessible', 1), ('user', 1)]
[('organized', 2), ('crime', 2), ('space', 2), ('book', 1), ('explores', 1), ('adapted', 1), ('evolved', 1), ('sync', 1), ('expanding', 1), ('technology', 1), ('update', 1), ('popular', 1), ('image', 1), ('conduct', 1), ('covert', 1), ('operation', 1), ('show', 1), ('operates', 1), ('dark', 1), ('virtual', 1), ('form', 1), ('dynamic', 1), ('interactive', 1), ('system', 1), ('legitimate', 1), ('online', 1), ('solidifying', 1), ('criminal', 1)]
[('ai', 2), ('book', 1), ('explores', 1), ('relationship', 1), ('artificial', 1), ('intelligence', 1), ('education', 1), ('china', 1), ('examines', 1), ('educational', 1), ('activity', 1), ('context', 1), ('profound', 1), ('technological', 1), ('intervention', 1), ('far', 1), ('reaching', 1), ('national', 1), ('policy', 1), ('multifaceted', 1), ('cultural', 1), ('setting', 1), ('standing', 1), ('intersection', 1), ('three', 1), ('foundational', 1), ('topic', 1), ('recent', 1)]
[('web', 2), ('rule', 1), ('learn', 1), ('browse', 1), ('recklessly', 1), ('free', 1), ('virus', 1), ('ad', 1), ('spyware', 1), ('turn', 1), ('browser', 1), ('secure', 1), ('powerful', 1), ('anywhere', 1), ('office', 1), ('raze', 1), ('old', 1), ('home', 1), ('page', 1), ('build', 1), ('modern', 1), ('masterpiece', 1), ('news', 1), ('fast', 1), ('leave', 1), ('skidmarks', 1), ('inbox', 1), ('fire', 1), ('broker', 1), ('internet', 1), ('make', 1), ('rich', 1)]
[('blog', 3), ('weblogs', 1), ('huge', 1), ('phenomenon', 1), ('internet', 1), ('ultra', 1), ('personal', 1), ('diary', 1), ('entry', 1), ('specialized', 1), ('information', 1), ('wide', 1), ('variety', 1), ('subject', 1), ('teen', 1), ('ranting', 1), ('presidential', 1), ('campaign', 1), ('new', 1), ('way', 1), ('create', 1), ('virtual', 1), ('community', 1), ('effect', 1), ('real', 1), ('world', 1), ('change', 1), ('hard', 1), ('set', 1), ('difficult', 1), ('adjusting', 1)]
[('yet', 2), ('programming', 2), ('book', 2), ('kohanski', 2), ('computer', 2), ('unorthodox', 1), ('necessary', 1), ('appear', 1), ('daniel', 1), ('seasoned', 1), ('programmer', 1), ('system', 1), ('consultant', 1), ('delf', 1), ('foundational', 1), ('concept', 1), ('basic', 1), ('mechanic', 1), ('rather', 1), ('writing', 1), ('another', 1), ('teach', 1), ('reader', 1), ('write', 1), ('code', 1), ('penetrates', 1), ('deeply', 1)]
[('identity', 3), ('theft', 2), ('protectionpreventionrepair', 1), ('fastest', 1), ('growing', 1), ('category', 1), ('crime', 1), ('united', 1), ('state', 1), ('today', 1), ('dealing', 1), ('privacy', 1), ('issue', 1), ('become', 1), ('essential', 1), ('part', 1), ('life', 1), ('modern', 1), ('society', 1), ('chapter', 1), ('protection', 1), ('guide', 1), ('contains', 1), ('self', 1), ('quiz', 1), ('identify', 1), ('personal', 1), ('area', 1), ('concern', 1), ('information', 1)]
[('visual', 2), ('designing', 1), ('brochure', 1), ('web', 1), ('site', 1), ('without', 1), ('art', 1), ('background', 1), ('step', 1), ('away', 1), ('computer', 1), ('breezy', 1), ('introduction', 1), ('communication', 1), ('first', 1), ('written', 1), ('non', 1), ('designer', 1), ('white', 1), ('space', 1), ('enemy', 1), ('practical', 1), ('graphic', 1), ('design', 1), ('layout', 1), ('text', 1), ('introducing', 1), ('concept', 1), ('practice', 1), ('necessary', 1), ('producing', 1), ('effective', 1)]
[('user', 2), ('product', 2), ('evolve', 1), ('centered', 1), ('development', 1), ('philosophy', 1), ('deliver', 1), ('superior', 1), ('escalate', 1), ('market', 1), ('share', 1), ('employing', 1), ('real', 1), ('world', 1), ('experience', 1), ('success', 1), ('strategy', 1), ('global', 1), ('corporation', 1), ('featuring', 1), ('depth', 1), ('case', 1), ('study', 1), ('yahoo', 1), ('siemens', 1), ('sap', 1), ('haier', 1), ('intuit', 1), ('tencent', 1), ('ux', 1), ('best', 1), ('practice', 1), ('achieve', 1), ('impact', 1)]
[('capm', 3), ('exam', 3), ('project', 3), ('management', 3), ('certified', 2), ('associate', 2), ('guide', 2), ('complete', 1), ('coverage', 1), ('objective', 1), ('release', 1), ('take', 1), ('confidence', 1), ('using', 1), ('highly', 1), ('effective', 1), ('self', 1), ('study', 1), ('written', 1), ('expert', 1), ('bestselling', 1), ('author', 1), ('offer', 1)]
[('java', 6), ('programming', 3), ('edition', 2), ('essential', 1), ('skill', 1), ('made', 1), ('easy', 1), ('fully', 1), ('updated', 1), ('platform', 1), ('standard', 1), ('se', 1), ('beginner', 1), ('guide', 1), ('sixth', 1), ('get', 1), ('started', 1), ('right', 1), ('away', 1), ('bestselling', 1), ('author', 1), ('herb', 1), ('schildt', 1), ('begin', 1), ('basic', 1), ('create', 1), ('compile', 1), ('run', 1), ('program', 1), ('move', 1)]
[('friendly', 1), ('solution', 1), ('oriented', 1), ('guide', 1), ('getting', 1), ('sony', 1), ('vaio', 1), ('find', 1), ('full', 1), ('coverage', 1), ('aspect', 1), ('laptop', 1), ('including', 1), ('adding', 1), ('peripheral', 1), ('using', 1), ('bundled', 1), ('software', 1), ('linking', 1), ('digital', 1), ('camera', 1), ('home', 1), ('stereo', 1), ('performing', 1), ('routine', 1), ('maintenance', 1), ('upgrade', 1)]
[('use', 2), ('image', 2), ('photoshop', 1), ('element', 1), ('help', 1), ('easy', 1), ('full', 1), ('color', 1), ('guide', 1), ('learn', 1), ('fix', 1), ('remove', 1), ('red', 1), ('eye', 1), ('flaw', 1), ('restore', 1), ('photograph', 1), ('layer', 1), ('create', 1), ('photo', 1), ('collage', 1), ('work', 1), ('filter', 1), ('add', 1), ('type', 1), ('plus', 1), ('tip', 1), ('printing', 1), ('posting', 1), ('internet', 1)]
[('sql', 4), ('server', 3), ('security', 2), ('programming', 2), ('address', 1), ('vulnerability', 1), ('provides', 1), ('solution', 1), ('cover', 1), ('installation', 1), ('administration', 1), ('plus', 1), ('issue', 1), ('authentication', 1), ('encryption', 1), ('intrusion', 1), ('detection', 1), ('written', 1), ('professional', 1), ('administering', 1), ('based', 1), ('application', 1), ('includes', 1), ('coverage', 1)]
[('written', 2), ('objective', 2), ('exam', 2), ('cx', 2), ('primarily', 1), ('want', 1), ('earn', 1), ('sun', 1), ('certified', 1), ('system', 1), ('administrator', 1), ('scsa', 1), ('certification', 1), ('solaris', 1), ('guide', 1), ('present', 1), ('full', 1), ('coverage', 1), ('official', 1), ('required', 1), ('spite', 1), ('laser', 1), ('sharp', 1), ('focus', 1), ('cram', 1), ('style', 1), ('book', 1)]
[('help', 2), ('swat', 1), ('spam', 1), ('vanquish', 1), ('virus', 1), ('knock', 1), ('pop', 1), ('ups', 1), ('expose', 1), ('spyware', 1), ('kind', 1), ('resource', 1), ('loaded', 1), ('insightful', 1), ('advice', 1), ('practical', 1), ('tip', 1), ('trial', 1), ('software', 1), ('book', 1), ('cd', 1), ('defense', 1), ('rid', 1), ('computer', 1), ('peril', 1), ('nuisance', 1), ('web', 1), ('surfing', 1), ('author', 1), ('tech', 1), ('expert', 1), ('ken', 1), ('feinstein', 1), ('give', 1)]
[('music', 4), ('home', 2), ('use', 2), ('handy', 1), ('resource', 1), ('provides', 1), ('information', 1), ('need', 1), ('buy', 1), ('download', 1), ('share', 1), ('computer', 1), ('burn', 1), ('dvd', 1), ('cd', 1), ('slideshows', 1), ('movie', 1), ('new', 1), ('feature', 1), ('view', 1), ('album', 1), ('art', 1), ('categorize', 1), ('track', 1), ('beat', 1), ('per', 1), ('minute', 1), ('expanded', 1), ('search', 1), ('option', 1)]
[('ebay', 3), ('collectible', 2), ('item', 2), ('thrive', 1), ('market', 1), ('buyer', 1), ('seller', 1), ('essential', 1), ('guide', 1), ('explains', 1), ('find', 1), ('rare', 1), ('reap', 1), ('huge', 1), ('profit', 1), ('learn', 1), ('establish', 1), ('prominent', 1), ('collector', 1), ('field', 1), ('ass', 1), ('value', 1), ('collection', 1), ('open', 1), ('store', 1), ('strategically', 1), ('bid', 1), ('win', 1), ('auction', 1)]
[('system', 2), ('network', 2), ('linux', 2), ('perfect', 1), ('administrator', 1), ('migrating', 1), ('window', 1), ('nt', 1), ('experimenting', 1), ('bringing', 1), ('topology', 1), ('even', 1), ('novice', 1), ('user', 1), ('find', 1), ('plenty', 1), ('helpful', 1), ('information', 1), ('administering', 1), ('open', 1), ('source', 1), ('operating', 1), ('including', 1), ('installation', 1), ('initial', 1), ('configuration', 1), ('using', 1), ('bash', 1), ('command', 1), ('shell', 1), ('managing', 1)]
[('programming', 2), ('aimed', 1), ('squarely', 1), ('experienced', 1), ('developer', 1), ('worked', 1), ('beyond', 1), ('basic', 1), ('show', 1), ('used', 1), ('general', 1), ('enterprise', 1), ('environment', 1), ('present', 1), ('five', 1), ('critical', 1), ('fully', 1), ('functional', 1), ('example', 1), ('demonstrate', 1), ('wide', 1), ('variety', 1), ('potential', 1), ('us', 1), ('cover', 1), ('new', 1), ('feature', 1)]
[('including', 1), ('page', 1), ('full', 1), ('color', 1), ('insert', 1), ('helpful', 1), ('guide', 1), ('contains', 1), ('technical', 1), ('information', 1), ('using', 1), ('software', 1), ('instruction', 1), ('learning', 1), ('technique', 1), ('found', 1), ('book', 1)]
[('protect', 2), ('ii', 2), ('security', 2), ('server', 1), ('help', 1), ('authoritative', 1), ('book', 1), ('covering', 1), ('basic', 1), ('tool', 1), ('come', 1), ('explaining', 1), ('weakness', 1), ('complete', 1), ('guide', 1), ('show', 1), ('utilize', 1), ('encryption', 1), ('authorization', 1), ('filtering', 1), ('restrictive', 1), ('technique', 1), ('attack', 1), ('violation', 1)]
[('dom', 4), ('application', 3), ('document', 2), ('ultimate', 1), ('guide', 1), ('creating', 1), ('extending', 1), ('within', 1), ('programming', 1), ('interface', 1), ('object', 1), ('model', 1), ('book', 1), ('examines', 1), ('real', 1), ('world', 1), ('including', 1), ('exclusive', 1), ('case', 1), ('study', 1), ('based', 1), ('browser', 1), ('provides', 1), ('comprehensive', 1), ('language', 1), ('neutral', 1), ('examination', 1)]
[('step', 2), ('another', 1), ('release', 1), ('extremely', 1), ('popular', 1), ('everything', 1), ('series', 1), ('friendly', 1), ('solution', 1), ('oriented', 1), ('book', 1), ('filled', 1), ('explanation', 1), ('various', 1), ('technique', 1), ('needed', 1), ('opening', 1), ('publishing', 1), ('type', 1), ('document', 1), ('wide', 1), ('range', 1), ('platform', 1), ('using', 1), ('adobe', 1), ('acrobat', 1), ('learn', 1), ('create', 1), ('index', 1), ('pdfs', 1), ('share', 1), ('edit', 1)]
[('use', 2), ('frontpage', 2), ('site', 2), ('learn', 1), ('build', 1), ('scratch', 1), ('using', 1), ('easy', 1), ('guide', 1), ('full', 1), ('detail', 1), ('latest', 1), ('feature', 1), ('tool', 1), ('included', 1), ('upgrade', 1), ('quickly', 1), ('master', 1), ('basic', 1), ('formatting', 1), ('table', 1), ('graphic', 1), ('create', 1), ('professional', 1), ('looking', 1), ('web', 1), ('page', 1), ('ease', 1), ('want', 1), ('maximize', 1)]
[('create', 2), ('digital', 2), ('find', 1), ('itunes', 1), ('iphoto', 1), ('imovie', 1), ('idvd', 1), ('use', 1), ('application', 1), ('together', 1), ('customized', 1), ('content', 1), ('medium', 1), ('learn', 1), ('burn', 1), ('mp', 1), ('organize', 1), ('edit', 1), ('photo', 1), ('shoot', 1), ('movie', 1), ('add', 1), ('effect', 1), ('dvd', 1)]
[('image', 2), ('learn', 1), ('set', 1), ('take', 1), ('high', 1), ('quality', 1), ('photograph', 1), ('digital', 1), ('camera', 1), ('easy', 1), ('follow', 1), ('guide', 1), ('explains', 1), ('enhance', 1), ('improve', 1), ('existing', 1), ('print', 1), ('photo', 1), ('publish', 1), ('web', 1), ('others', 1), ('see', 1), ('coverage', 1), ('related', 1), ('equipment', 1), ('including', 1), ('editing', 1), ('software', 1), ('hardware', 1), ('add', 1), ('ons', 1), ('online', 1)]
[('take', 1), ('full', 1), ('advantage', 1), ('powerful', 1), ('feature', 1), ('built', 1), ('pc', 1), ('thorough', 1), ('easy', 1), ('follow', 1), ('guide', 1)]
[('achieve', 1), ('database', 1), ('uptime', 1), ('expand', 1), ('oracle', 1), ('knowledge', 1), ('using', 1), ('hundred', 1), ('tip', 1), ('technique', 1), ('provided', 1), ('unique', 1), ('reference', 1)]
[('networking', 3), ('author', 1), ('pc', 1), ('hardware', 1), ('stephen', 1), ('bigelow', 1), ('come', 1), ('detailed', 1), ('comprehensive', 1), ('reference', 1), ('available', 1), ('covering', 1), ('essential', 1), ('architecture', 1), ('protocol', 1), ('cabling', 1), ('firewall', 1), ('every', 1), ('professional', 1)]
[('business', 2), ('application', 2), ('server', 2), ('guide', 2), ('step', 2), ('weblogic', 2), ('using', 1), ('leading', 1), ('web', 1), ('wireless', 1), ('comprehensive', 1), ('book', 1), ('show', 1), ('run', 1), ('maintain', 1), ('bea', 1), ('customize', 1), ('meet', 1), ('individual', 1), ('need', 1), ('written', 1), ('experienced', 1), ('trainer', 1), ('detailed', 1), ('offer', 1)]
[('cisco', 4), ('based', 2), ('network', 2), ('demand', 1), ('certified', 1), ('networking', 1), ('professional', 1), ('experience', 1), ('product', 1), ('never', 1), ('higher', 1), ('written', 1), ('conjunction', 1), ('ccprep', 1), ('premier', 1), ('certification', 1), ('training', 1), ('website', 1), ('dcn', 1), ('designing', 1), ('give', 1), ('full', 1), ('curriculum', 1), ('coverage', 1), ('help', 1), ('study', 1), ('ccda', 1), ('exam', 1)]
[('palm', 2), ('handheld', 2), ('full', 1), ('coverage', 1), ('o', 1), ('device', 1), ('including', 1), ('vii', 1), ('handspring', 1), ('visor', 1), ('qualcomm', 1), ('pdq', 1), ('smartphone', 1), ('easy', 1), ('follow', 1), ('guide', 1), ('explains', 1), ('use', 1), ('built', 1), ('third', 1), ('party', 1), ('application', 1), ('accessory', 1), ('establish', 1), ('wired', 1), ('wireless', 1), ('internet', 1), ('connection', 1)]
[('kid', 1), ('safe', 1), ('educational', 1), ('fun', 1), ('internet', 1), ('directory', 1), ('time', 1), ('saving', 1), ('treasure', 1), ('chest', 1), ('description', 1), ('hand', 1), ('picked', 1), ('website', 1)]
[('oracle', 2), ('learn', 1), ('use', 1), ('feature', 1), ('using', 1), ('best', 1), ('selling', 1), ('introduction', 1)]
[('novell', 3), ('netware', 3), ('year', 2), ('million', 2), ('operating', 2), ('system', 2), ('last', 1), ('sold', 1), ('new', 1), ('license', 1), ('currently', 1), ('claim', 1), ('server', 1), ('client', 1), ('first', 1), ('upgrade', 1), ('positioning', 1), ('network', 1), ('choice', 1), ('large', 1), ('organization', 1), ('require', 1), ('interoperability', 1)]
[('effectively', 2), ('bestselling', 1), ('highly', 1), ('acclaimed', 1), ('visual', 1), ('basic', 1), ('author', 1), ('kris', 1), ('jamsa', 1), ('delivers', 1), ('ultimate', 1), ('vb', 1), ('net', 1), ('resource', 1), ('organized', 1), ('topic', 1), ('packed', 1), ('critical', 1), ('information', 1), ('book', 1), ('explains', 1), ('complex', 1), ('concept', 1), ('precision', 1), ('filled', 1), ('proven', 1), ('technique', 1), ('hundred', 1), ('solution', 1), ('put', 1), ('immediate', 1), ('use', 1), ('easily', 1)]
[('window', 2), ('need', 2), ('step', 2), ('deploy', 1), ('new', 1), ('environment', 1), ('legacy', 1), ('network', 1), ('expert', 1), ('information', 1), ('successfully', 1), ('migrate', 1), ('organization', 1), ('industry', 1), ('insider', 1), ('rand', 1), ('morimoto', 1), ('implementation', 1), ('plan', 1), ('real', 1), ('world', 1), ('example', 1), ('provide', 1), ('instruction', 1), ('easily', 1), ('overlooked', 1), ('pitfall', 1), ('avoid', 1), ('critical', 1), ('area', 1)]
[('become', 1), ('expert', 1), ('using', 1), ('hundred', 1), ('hidden', 1), ('undocumented', 1), ('solution', 1), ('discovered', 1), ('extensive', 1), ('trial', 1), ('error', 1)]
[('administer', 2), ('apache', 2), ('install', 1), ('configure', 1), ('secure', 1), ('world', 1), ('leading', 1), ('web', 1), ('server', 1), ('using', 1), ('comprehensive', 1), ('resource', 1), ('written', 1), ('lead', 1), ('developer', 1), ('book', 1), ('provides', 1), ('hand', 1), ('guidance', 1), ('need', 1), ('multiple', 1), ('platform', 1)]
[('web', 2), ('step', 2), ('chance', 1), ('contribute', 1), ('even', 1), ('prior', 1), ('design', 1), ('html', 1), ('experience', 1), ('book', 1), ('show', 1), ('create', 1), ('page', 1), ('text', 1), ('graphic', 1), ('edit', 1), ('image', 1), ('use', 1), ('frame', 1), ('hyperlink', 1), ('illustrated', 1), ('plenty', 1), ('screen', 1), ('shot', 1), ('diagram', 1), ('resource', 1), ('work', 1), ('equally', 1), ('complete', 1), ('tutorial', 1)]
[('site', 2), ('internet', 1), ('comprehensive', 1), ('solution', 1), ('oriented', 1), ('guide', 1), ('learn', 1), ('master', 1), ('basic', 1), ('browsing', 1), ('communicating', 1), ('searching', 1), ('advanced', 1), ('task', 1), ('using', 1), ('ftp', 1), ('building', 1), ('web', 1), ('novice', 1), ('intermediate', 1), ('user', 1), ('alike', 1)]
[('new', 2), ('feature', 2), ('master', 1), ('window', 1), ('millennium', 1), ('edition', 1), ('easy', 1), ('use', 1), ('thorough', 1), ('guide', 1), ('cover', 1), ('update', 1), ('home', 1), ('networking', 1), ('entertainment', 1), ('improved', 1), ('browser', 1), ('capabalities', 1), ('faster', 1), ('boot', 1), ('beginner', 1), ('intermediate', 1), ('user', 1), ('alike', 1)]
[('phone', 2), ('help', 2), ('transform', 1), ('unexpected', 1), ('moment', 1), ('recorded', 1), ('history', 1), ('convenience', 1), ('camera', 1), ('hand', 1), ('guide', 1), ('loaded', 1), ('easy', 1), ('follow', 1), ('instruction', 1), ('plenty', 1), ('illustration', 1), ('book', 1), ('take', 1), ('better', 1), ('picture', 1), ('edit', 1), ('enhance', 1), ('image', 1), ('transmit', 1), ('photo', 1), ('pc', 1), ('web', 1), ('mobile', 1), ('email', 1)]
[('ipaq', 2), ('using', 2), ('step', 2), ('thought', 1), ('possible', 1), ('easy', 1), ('use', 1), ('guide', 1), ('guidance', 1), ('word', 1), ('excel', 1), ('outlook', 1), ('manage', 1), ('finance', 1), ('secure', 1), ('theft', 1), ('loss', 1), ('covering', 1), ('wireless', 1), ('connection', 1), ('troubleshooting', 1), ('fun', 1), ('thing', 1), ('popular', 1), ('pocket', 1), ('pc', 1), ('book', 1), ('show', 1)]
[('learn', 1), ('set', 1), ('feature', 1), ('productivity', 1), ('application', 1), ('window', 1), ('ce', 1), ('connect', 1), ('sync', 1), ('desktop', 1), ('pc', 1), ('send', 1), ('receive', 1), ('mail', 1), ('download', 1), ('game', 1), ('utility', 1), ('mp', 1), ('file', 1), ('book', 1), ('show', 1), ('everything', 1)]
[('pocket', 2), ('pc', 2), ('make', 1), ('hand', 1), ('easy', 1), ('use', 1), ('resource', 1), ('find', 1), ('synch', 1), ('desktop', 1), ('computer', 1), ('browse', 1), ('web', 1), ('send', 1), ('instant', 1), ('message', 1), ('play', 1), ('game', 1)]
[('xp', 2), ('security', 2), ('comprehensive', 1), ('coverage', 1), ('professional', 1), ('definitive', 1), ('focused', 1), ('resource', 1), ('work', 1), ('firewall', 1), ('intrusion', 1), ('detection', 1), ('system', 1), ('fully', 1), ('utilize', 1), ('built', 1), ('support', 1), ('tool', 1), ('manage', 1), ('remotely', 1)]
[('business', 3), ('continuity', 2), ('wake', 1), ('company', 1), ('broad', 1), ('array', 1), ('industry', 1), ('demanded', 1), ('division', 1), ('create', 1), ('strategy', 1), ('maintain', 1), ('network', 1), ('availability', 1), ('event', 1), ('disaster', 1), ('timely', 1), ('resource', 1), ('written', 1), ('noted', 1), ('recovery', 1), ('expert', 1), ('pinpoint', 1), ('host', 1), ('practical', 1), ('initiative', 1), ('help', 1)]
[('ipod', 3), ('play', 2), ('use', 2), ('best', 1), ('selling', 1), ('full', 1), ('color', 1), ('quickstep', 1), ('series', 1), ('cover', 1), ('world', 1), ('favorite', 1), ('mp', 1), ('player', 1), ('user', 1), ('learn', 1), ('running', 1), ('itunes', 1), ('download', 1), ('music', 1), ('calendar', 1), ('list', 1), ('contact', 1), ('note', 1), ('function', 1), ('edit', 1), ('display', 1), ('photo', 1), ('game', 1), ('external', 1), ('hard', 1), ('drive', 1)]
[('use', 3), ('system', 2), ('easy', 1), ('follow', 1), ('guide', 1), ('show', 1), ('anyone', 1), ('running', 1), ('window', 1), ('xp', 1), ('take', 1), ('advantage', 1), ('power', 1), ('stability', 1), ('versatility', 1), ('popular', 1), ('operating', 1), ('today', 1), ('coverage', 1), ('basic', 1), ('feature', 1), ('enables', 1), ('computer', 1), ('effectively', 1), ('efficiently', 1), ('learn', 1), ('access', 1), ('control', 1), ('panel', 1), ('customize', 1), ('setting', 1), ('keyboard', 1)]
[('blackberry', 2), ('manage', 2), ('business', 2), ('using', 2), ('task', 2), ('discover', 1), ('capitalize', 1), ('many', 1), ('us', 1), ('beyond', 1), ('mail', 1), ('seamlessly', 1), ('help', 1), ('information', 1), ('go', 1), ('revolutionary', 1), ('wireless', 1), ('technology', 1), ('handle', 1), ('project', 1), ('portable', 1), ('lightweight', 1), ('device', 1), ('make', 1), ('phone', 1), ('call', 1), ('create', 1), ('list', 1)]
[('music', 4), ('dj', 2), ('organize', 2), ('track', 2), ('play', 2), ('dell', 1), ('experience', 1), ('tip', 1), ('little', 1), ('known', 1), ('trick', 1), ('expert', 1), ('advice', 1), ('digital', 1), ('management', 1), ('discover', 1), ('download', 1), ('rip', 1), ('car', 1), ('live', 1), ('party', 1), ('learn', 1), ('build', 1), ('library', 1), ('internet', 1), ('downloads', 1), ('artist', 1), ('genre', 1), ('specialized', 1), ('list', 1)]
[('user', 1), ('friendly', 1), ('book', 1), ('show', 1), ('turn', 1), ('satisfaction', 1), ('excitement', 1), ('ebay', 1), ('sale', 1), ('lucrative', 1), ('small', 1), ('business', 1), ('possibly', 1), ('even', 1), ('full', 1), ('time', 1), ('job', 1), ('find', 1), ('establish', 1), ('seller', 1), ('account', 1), ('post', 1), ('attention', 1), ('getting', 1), ('auction', 1), ('listing', 1), ('build', 1), ('confidence', 1), ('among', 1), ('bidder', 1), ('author', 1), ('greg', 1), ('holden', 1), ('explains', 1), ('apply', 1), ('secret', 1)]
[('security', 3), ('wireless', 2), ('system', 2), ('window', 2), ('full', 1), ('detail', 1), ('major', 1), ('mobile', 1), ('client', 1), ('operating', 1), ('including', 1), ('ce', 1), ('palm', 1), ('o', 1), ('unix', 1), ('learn', 1), ('design', 1), ('implement', 1), ('solid', 1), ('protect', 1), ('network', 1), ('keep', 1), ('hacker', 1), ('endorsed', 1), ('rsa', 1), ('trusted', 1), ('name', 1), ('stop', 1), ('guide', 1)]
[('xml', 3), ('security', 3), ('use', 1), ('book', 1), ('primer', 1), ('speed', 1), ('related', 1), ('issue', 1), ('written', 1), ('expert', 1), ('rsa', 1), ('inc', 1), ('inside', 1), ('tip', 1), ('prevent', 1), ('denial', 1), ('service', 1), ('attack', 1), ('implement', 1), ('measure', 1), ('keep', 1), ('program', 1), ('protected', 1)]
[('code', 2), ('ejbs', 2), ('book', 2), ('build', 1), ('fully', 1), ('functional', 1), ('java', 1), ('based', 1), ('component', 1), ('ultimate', 1), ('collection', 1), ('expert', 1), ('technique', 1), ('ready', 1), ('use', 1), ('packed', 1), ('save', 1), ('developer', 1), ('hour', 1), ('time', 1), ('offer', 1), ('broad', 1), ('coverage', 1), ('bonus', 1), ('cd', 1), ('rom', 1), ('source', 1)]
[('web', 2), ('using', 2), ('script', 2), ('build', 1), ('interactive', 1), ('page', 1), ('javascript', 1), ('unique', 1), ('sourcebook', 1), ('ready', 1), ('run', 1), ('filled', 1), ('inside', 1), ('book', 1), ('accompanying', 1), ('cd', 1), ('able', 1), ('create', 1), ('wide', 1), ('range', 1), ('application', 1), ('displaying', 1), ('banner', 1), ('graphic', 1), ('form', 1), ('building', 1), ('frame', 1), ('addition', 1)]
[('oracle', 2), ('designed', 1), ('expressly', 1), ('beginner', 1), ('networking', 1), ('teach', 1), ('critical', 1), ('topic', 1), ('necessary', 1), ('run', 1), ('network', 1)]
[('learn', 1), ('implement', 1), ('sqlj', 1), ('new', 1), ('standard', 1), ('embedding', 1), ('static', 1), ('sql', 1), ('directly', 1), ('java', 1), ('program', 1)]
[('oracle', 4), ('manager', 3), ('mobile', 2), ('java', 2), ('programmer', 2), ('practical', 1), ('developer', 1), ('handbook', 1), ('creating', 1), ('application', 1), ('platform', 1), ('definitive', 1), ('resource', 1), ('web', 1), ('designer', 1), ('non', 1), ('consultant', 1), ('project', 1), ('dba', 1), ('content', 1), ('exclusive', 1), ('publisher', 1), ('press', 1), ('book', 1)]
[('artwork', 2), ('amazingly', 1), ('thorough', 1), ('coverage', 1), ('photoshop', 1), ('use', 1), ('tool', 1), ('photograph', 1), ('retouching', 1), ('powerful', 1), ('application', 1), ('creating', 1), ('print', 1), ('electronic', 1), ('medium', 1), ('find', 1), ('realistic', 1), ('example', 1), ('beautiful', 1), ('idea', 1), ('inspire', 1), ('everyone', 1), ('amateur', 1), ('photographer', 1), ('web', 1), ('designer', 1)]
[('publisher', 2), ('product', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('defend', 1), ('system', 1), ('real', 1), ('threat', 1), ('computer', 1), ('virus', 1), ('help', 1), ('comprehensive', 1), ('resource', 1), ('date', 1), ('informative', 1), ('book', 1), ('present', 1)]
[('communication', 2), ('kick', 1), ('shoe', 1), ('everything', 1), ('smartphone', 1), ('show', 1), ('essential', 1), ('operation', 1), ('plus', 1), ('enough', 1), ('window', 1), ('mobile', 1), ('add', 1), ('ons', 1), ('customization', 1), ('trick', 1), ('make', 1), ('want', 1), ('device', 1), ('combine', 1), ('cutting', 1), ('edge', 1), ('pda', 1), ('technology', 1), ('wireless', 1), ('use', 1), ('scheduling', 1), ('software', 1), ('finance', 1), ('text', 1), ('tool', 1)]
[('networking', 2), ('describes', 1), ('cost', 1), ('benefit', 1), ('necessity', 1), ('review', 1), ('software', 1), ('tool', 1), ('save', 1), ('money', 1), ('small', 1), ('time', 1), ('operator', 1), ('summarizes', 1), ('business', 1), ('expense', 1), ('saving', 1), ('help', 1), ('prospective', 1), ('user', 1), ('choose', 1), ('office', 1), ('setup', 1), ('offer', 1), ('criterion', 1), ('deciding', 1), ('distribution', 1), ('medium', 1), ('compare', 1), ('wireless', 1), ('versus', 1), ('wired', 1), ('connection', 1), ('includes', 1), ('important', 1)]
[('report', 3), ('data', 2), ('create', 1), ('winning', 1), ('presentation', 1), ('using', 1), ('powerful', 1), ('analysis', 1), ('tool', 1), ('comprehensive', 1), ('guide', 1), ('book', 1), ('explains', 1), ('use', 1), ('software', 1), ('analyze', 1), ('format', 1), ('generate', 1), ('perform', 1), ('advanced', 1), ('interactive', 1), ('reporting', 1), ('web', 1), ('making', 1), ('ultimate', 1), ('stop', 1), ('crystal', 1), ('resource', 1)]
[('step', 2), ('color', 2), ('pc', 2), ('manage', 2), ('full', 1), ('graphic', 1), ('started', 1), ('using', 1), ('right', 1), ('away', 1), ('quickstep', 1), ('way', 1), ('screenshots', 1), ('clear', 1), ('instruction', 1), ('show', 1), ('customize', 1), ('troubleshoot', 1), ('desktop', 1), ('laptop', 1), ('follow', 1), ('along', 1), ('learn', 1), ('install', 1), ('configure', 1), ('hardware', 1), ('software', 1), ('use', 1), ('window', 1), ('vista', 1), ('file', 1), ('access', 1), ('navigate', 1)]
[('demand', 3), ('report', 3), ('oracle', 2), ('crm', 2), ('reporting', 2), ('stop', 1), ('guide', 1), ('plan', 1), ('build', 1), ('distribute', 1), ('data', 1), ('rich', 1), ('business', 1), ('intelligence', 1), ('ease', 1), ('detail', 1), ('entire', 1), ('building', 1), ('process', 1), ('explains', 1), ('use', 1), ('powerful', 1), ('feature', 1), ('available', 1), ('answer', 1), ('create', 1), ('share', 1), ('comprehensive', 1), ('integrated', 1)]
[('easy', 2), ('use', 2), ('ajax', 2), ('create', 2), ('application', 2), ('essential', 1), ('skill', 1), ('made', 1), ('learn', 1), ('asynchronous', 1), ('javascript', 1), ('xml', 1), ('web', 1), ('mirror', 1), ('richness', 1), ('desktop', 1), ('using', 1), ('follow', 1), ('example', 1), ('beginner', 1), ('guide', 1), ('get', 1), ('started', 1), ('working', 1), ('cutting', 1), ('edge', 1), ('collection', 1), ('technology', 1), ('time', 1), ('xmlhttprequest', 1), ('object', 1)]
[('certification', 1), ('enable', 1), ('system', 1), ('administrator', 1), ('network', 1), ('engineer', 1), ('master', 1), ('server', 1), ('task', 1)]
[('ubuntu', 3), ('server', 3), ('system', 2), ('administer', 1), ('enterprise', 1), ('realize', 1), ('dynamic', 1), ('stable', 1), ('secure', 1), ('environment', 1), ('expert', 1), ('guidance', 1), ('tip', 1), ('technique', 1), ('linux', 1), ('professional', 1), ('administration', 1), ('cover', 1), ('every', 1), ('facet', 1), ('management', 1), ('user', 1), ('file', 1), ('performance', 1), ('tuning', 1), ('troubleshooting', 1), ('learn', 1), ('automate', 1)]
[('business', 3), ('warehouse', 3), ('sap', 2), ('information', 2), ('enterprise', 2), ('hand', 1), ('guide', 1), ('give', 1), ('company', 1), ('competitive', 1), ('edge', 1), ('delivering', 1), ('date', 1), ('pertinent', 1), ('report', 1), ('user', 1), ('inside', 1), ('outside', 1), ('reporting', 1), ('show', 1), ('construct', 1), ('data', 1), ('create', 1), ('workbook', 1), ('query', 1), ('analyze', 1), ('format', 1)]
[('sql', 2), ('server', 2), ('previous', 1), ('mcgraw', 1), ('hill', 1), ('title', 1), ('sold', 1), ('copy', 1), ('high', 1), ('availability', 1), ('important', 1), ('new', 1), ('focus', 1), ('professional', 1), ('skilled', 1), ('maximizing', 1), ('system', 1), ('uptime', 1)]
[('exam', 4), ('oracle', 3), ('certified', 2), ('administration', 2), ('fully', 1), ('integrated', 1), ('study', 1), ('system', 1), ('oca', 1), ('ocp', 1), ('prepare', 1), ('associate', 1), ('sql', 1), ('fundamental', 1), ('professional', 1), ('ii', 1), ('help', 1), ('exclusive', 1), ('press', 1), ('guide', 1), ('chapter', 1), ('find', 1), ('challenging', 1), ('exercise', 1)]
[('exam', 2), ('oracle', 2), ('certified', 2), ('help', 2), ('guide', 2), ('fully', 1), ('integrated', 1), ('study', 1), ('system', 1), ('oca', 1), ('prepare', 1), ('associate', 1), ('sql', 1), ('expert', 1), ('exclusive', 1), ('press', 1), ('chapter', 1), ('find', 1), ('challenging', 1), ('exercise', 1), ('practice', 1), ('question', 1), ('minute', 1), ('drill', 1), ('highlight', 1), ('learned', 1), ('authoritative', 1), ('pas', 1)]
[('sql', 4), ('guide', 2), ('coverage', 2), ('definitive', 1), ('comprehensive', 1), ('every', 1), ('aspect', 1), ('three', 1), ('leading', 1), ('industry', 1), ('expert', 1), ('revised', 1), ('latest', 1), ('rdbms', 1), ('software', 1), ('version', 1), ('stop', 1), ('explains', 1), ('build', 1), ('populate', 1), ('administer', 1), ('high', 1), ('performance', 1), ('database', 1), ('develop', 1), ('robust', 1), ('based', 1), ('application', 1), ('complete', 1), ('reference', 1)]
[('exam', 3), ('study', 2), ('ccna', 2), ('wireless', 2), ('best', 1), ('fully', 1), ('integrated', 1), ('system', 1), ('available', 1), ('hundred', 1), ('practice', 1), ('question', 1), ('hand', 1), ('exercise', 1), ('cisco', 1), ('certified', 1), ('network', 1), ('associate', 1), ('guide', 1), ('cover', 1), ('need', 1), ('know', 1), ('show', 1), ('prepare', 1), ('challenging', 1), ('complete', 1), ('coverage', 1), ('objective', 1)]
[('sql', 3), ('server', 3), ('dba', 3), ('oracle', 3), ('database', 3), ('administration', 2), ('apply', 1), ('skill', 1), ('use', 1), ('experience', 1), ('set', 1), ('maintain', 1), ('high', 1), ('performance', 1), ('environment', 1), ('written', 1), ('expertise', 1), ('platform', 1), ('microsoft', 1), ('illustrates', 1), ('technique', 1), ('clear', 1), ('explanation', 1), ('example', 1)]
[('macbook', 4), ('mac', 2), ('easy', 1), ('follow', 1), ('coverage', 1), ('portable', 1), ('including', 1), ('pro', 1), ('air', 1), ('everything', 1), ('strongly', 1), ('emphasizes', 1), ('portability', 1), ('unique', 1), ('feature', 1), ('laptop', 1), ('version', 1), ('examining', 1), ('port', 1), ('jack', 1), ('discussing', 1), ('user', 1), ('account', 1), ('privacy', 1), ('managing', 1), ('multiple', 1), ('network', 1), ('connection', 1), ('using', 1), ('mobileme', 1)]
[('study', 2), ('exam', 2), ('ccna', 2), ('voice', 2), ('best', 1), ('fully', 1), ('integrated', 1), ('system', 1), ('available', 1), ('hundred', 1), ('practice', 1), ('question', 1), ('hand', 1), ('exercise', 1), ('cisco', 1), ('certified', 1), ('network', 1), ('associate', 1), ('guide', 1), ('cover', 1), ('need', 1), ('know', 1), ('show', 1), ('prepare', 1), ('challenging', 1), ('complete', 1), ('coverage', 1), ('objective', 1)]
[('db', 4), ('availability', 2), ('scalability', 2), ('purescale', 2), ('active', 2), ('extreme', 1), ('running', 1), ('leading', 1), ('edge', 1), ('hybrid', 1), ('data', 1), ('server', 1), ('offer', 1), ('optimum', 1), ('storage', 1), ('new', 1), ('technology', 1), ('primarily', 1), ('optimized', 1), ('scale', 1), ('transactional', 1), ('processing', 1), ('cluster', 1), ('manner', 1), ('succinct', 1), ('guide', 1), ('show', 1)]
[('analysis', 3), ('oracle', 3), ('combined', 2), ('crm', 2), ('demand', 2), ('master', 1), ('tool', 1), ('drive', 1), ('better', 1), ('decision', 1), ('making', 1), ('across', 1), ('enterprise', 1), ('using', 1), ('reporting', 1), ('technique', 1), ('press', 1), ('guide', 1), ('clear', 1), ('explanation', 1), ('detailed', 1), ('case', 1), ('study', 1), ('show', 1), ('deliver', 1), ('real', 1), ('time', 1), ('insightful', 1), ('business', 1), ('intelligence', 1)]
[('step', 2), ('color', 2), ('full', 1), ('graphic', 1), ('start', 1), ('using', 1), ('quickbooks', 1), ('right', 1), ('away', 1), ('quickstep', 1), ('way', 1), ('screenshots', 1), ('clear', 1), ('instruction', 1), ('make', 1), ('easy', 1), ('ramp', 1), ('latest', 1), ('release', 1), ('leading', 1), ('small', 1), ('business', 1), ('financial', 1), ('software', 1), ('follow', 1), ('along', 1), ('learn', 1), ('customize', 1), ('bookkeeping', 1), ('process', 1), ('invoice', 1), ('manage', 1), ('payroll', 1), ('track', 1), ('inventory', 1), ('run', 1)]
[('exam', 4), ('best', 1), ('fully', 1), ('integrated', 1), ('study', 1), ('system', 1), ('available', 1), ('hundred', 1), ('practice', 1), ('question', 1), ('hand', 1), ('exercise', 1), ('netbeans', 1), ('ide', 1), ('programmer', 1), ('certified', 1), ('expert', 1), ('guide', 1), ('cover', 1), ('need', 1), ('know', 1), ('show', 1), ('prepare', 1), ('challenging', 1), ('complete', 1), ('coverage', 1), ('official', 1), ('objective', 1), ('readiness', 1)]
[('web', 4), ('application', 3), ('oracle', 2), ('ajax', 2), ('php', 2), ('design', 1), ('deploy', 1), ('highly', 1), ('responsive', 1), ('data', 1), ('driven', 1), ('deliver', 1), ('next', 1), ('generation', 1), ('user', 1), ('capability', 1), ('client', 1), ('side', 1), ('service', 1), ('based', 1), ('combining', 1), ('powerful', 1), ('feature', 1), ('written', 1), ('programming', 1), ('expert', 1), ('database', 1), ('development', 1), ('show', 1)]
[('step', 2), ('color', 2), ('full', 1), ('graphic', 1), ('started', 1), ('using', 1), ('quickbooks', 1), ('right', 1), ('away', 1), ('quickstep', 1), ('way', 1), ('screenshots', 1), ('clear', 1), ('instruction', 1), ('make', 1), ('easy', 1), ('ramp', 1), ('latest', 1), ('release', 1), ('powerful', 1), ('small', 1), ('business', 1), ('financial', 1), ('software', 1), ('follow', 1), ('along', 1), ('learn', 1), ('customize', 1), ('bookkeeping', 1), ('process', 1), ('invoice', 1), ('manage', 1), ('payroll', 1), ('track', 1), ('inventory', 1)]
[('exam', 4), ('pw', 2), ('complete', 1), ('coverage', 1), ('material', 1), ('included', 1), ('cwna', 1), ('cwsp', 1), ('inside', 1), ('comprehensive', 1), ('resource', 1), ('written', 1), ('wireless', 1), ('system', 1), ('expert', 1), ('authoritative', 1), ('guide', 1), ('cover', 1), ('full', 1), ('detail', 1), ('find', 1), ('learning', 1), ('objective', 1), ('beginning', 1), ('chapter', 1), ('tip', 1), ('practice', 1), ('question', 1), ('depth', 1)]
[('adobe', 2), ('indesign', 2), ('c', 2), ('publishing', 2), ('step', 2), ('master', 1), ('filled', 1), ('full', 1), ('color', 1), ('example', 1), ('hand', 1), ('guide', 1), ('explains', 1), ('use', 1), ('latest', 1), ('release', 1), ('industry', 1), ('standard', 1), ('dynamic', 1), ('solution', 1), ('everything', 1), ('take', 1), ('process', 1), ('creating', 1), ('professional', 1), ('layout', 1), ('print', 1), ('digital', 1), ('written', 1), ('graphic', 1)]
[('wireless', 2), ('billion', 2), ('cwss', 1), ('certification', 1), ('appeal', 1), ('retail', 1), ('chain', 1), ('employing', 1), ('computer', 1), ('hardware', 1), ('networking', 1), ('technician', 1), ('planet', 1), ('founder', 1), ('cwnp', 1), ('program', 1), ('report', 1), ('home', 1), ('wi', 1), ('fi', 1), ('market', 1), ('expected', 1), ('grow', 1), ('connectivity', 1), ('device', 1), ('ship', 1), ('per', 1), ('gartner', 1), ('group', 1)]
[('oracle', 8), ('self', 3), ('service', 3), ('application', 2), ('module', 2), ('maximize', 1), ('capability', 1), ('complete', 1), ('coverage', 1), ('business', 1), ('suite', 1), ('including', 1), ('iprocurement', 1), ('internet', 1), ('expense', 1), ('isupplier', 1), ('portal', 1), ('ireceivables', 1), ('inside', 1), ('press', 1), ('guide', 1), ('discus', 1), ('feature', 1)]
[('mac', 3), ('o', 3), ('manage', 2), ('powerful', 2), ('server', 2), ('step', 2), ('build', 1), ('network', 1), ('boost', 1), ('productivity', 1), ('foster', 1), ('collaboration', 1), ('using', 1), ('networking', 1), ('tool', 1), ('available', 1), ('snow', 1), ('leopard', 1), ('clear', 1), ('detailed', 1), ('explanation', 1), ('instruction', 1), ('system', 1), ('administration', 1), ('show', 1), ('plan', 1), ('construct', 1), ('high', 1), ('performance', 1)]
[('wireless', 5), ('mobility', 2), ('comprehensive', 1), ('answer', 1), ('unique', 1), ('guide', 1), ('cisco', 1), ('expert', 1), ('neil', 1), ('reid', 1), ('incorporates', 1), ('best', 1), ('practice', 1), ('complex', 1), ('challenging', 1), ('deployment', 1), ('industry', 1), ('provides', 1), ('insider', 1), ('view', 1), ('book', 1), ('discus', 1), ('critical', 1), ('need', 1), ('today', 1)]
[('palm', 3), ('pre', 2), ('maximize', 1), ('power', 1), ('easy', 1), ('follow', 1), ('guide', 1), ('show', 1), ('innovative', 1), ('smartphone', 1), ('built', 1), ('webos', 1), ('platform', 1), ('everything', 1), ('help', 1), ('navigate', 1), ('interface', 1), ('load', 1), ('data', 1), ('various', 1), ('source', 1), ('use', 1), ('communication', 1), ('feature', 1), ('phone', 1), ('email', 1), ('messaging', 1), ('surf', 1)]
[('storm', 3), ('blackberry', 2), ('maximize', 1), ('power', 1), ('master', 1), ('versatile', 1), ('capability', 1), ('hot', 1), ('handheld', 1), ('taking', 1), ('world', 1), ('everything', 1), ('show', 1), ('set', 1), ('customize', 1), ('device', 1), ('make', 1), ('call', 1), ('manage', 1), ('contact', 1), ('send', 1), ('receive', 1), ('message', 1), ('snap', 1), ('photo', 1), ('capture', 1), ('video', 1), ('footage', 1), ('learn', 1)]
[('ipads', 3), ('iphones', 3), ('securely', 1), ('deploy', 1), ('corporate', 1), ('network', 1), ('seamlessly', 1), ('integrate', 1), ('company', 1), ('system', 1), ('using', 1), ('detailed', 1), ('instruction', 1), ('contained', 1), ('practical', 1), ('book', 1), ('ipad', 1), ('iphone', 1), ('administrator', 1), ('guide', 1), ('show', 1), ('use', 1), ('business', 1), ('device', 1), ('manage', 1), ('tightly', 1), ('apple', 1), ('enterprise', 1), ('tool', 1)]
[('nexus', 2), ('tap', 1), ('every', 1), ('feature', 1), ('hand', 1), ('guide', 1), ('show', 1), ('maximize', 1), ('powerful', 1), ('android', 1), ('superphone', 1), ('integrated', 1), ('phone', 1), ('email', 1), ('web', 1), ('access', 1), ('functionality', 1), ('everything', 1), ('cover', 1), ('revolutionary', 1), ('capability', 1), ('including', 1), ('voice', 1), ('recognition', 1), ('megapixel', 1), ('camera', 1), ('built', 1), ('google', 1)]
[('microsoft', 1), ('office', 1), ('project', 1), ('server', 1), ('extremely', 1), ('advanced', 1), ('dynamic', 1), ('toolset', 1), ('requiring', 1), ('fundamental', 1), ('organizational', 1), ('inspection', 1), ('rob', 1), ('dave', 1), ('provide', 1), ('equally', 1), ('deep', 1), ('unique', 1), ('perspective', 1), ('powerful', 1), ('solution', 1), ('daniel', 1), ('renier', 1), ('principal', 1), ('consultant', 1), ('milestone', 1), ('consulting', 1), ('group', 1), ('inc', 1)]
[('oracle', 3), ('recovery', 3), ('backup', 2), ('database', 2), ('rman', 2), ('step', 2), ('complete', 1), ('guide', 1), ('maximizing', 1), ('manager', 1), ('deploy', 1), ('rock', 1), ('solid', 1), ('data', 1), ('disaster', 1), ('strategy', 1), ('depth', 1), ('guidance', 1), ('authoritative', 1), ('volume', 1), ('exclusive', 1), ('publisher', 1), ('press', 1), ('book', 1), ('show', 1), ('set', 1), ('ready', 1)]
[('oracle', 2), ('learn', 1), ('cutting', 1), ('edge', 1), ('technology', 1), ('expert', 1), ('written', 1), ('insider', 1), ('comprehensive', 1), ('guide', 1), ('cover', 1), ('everything', 1), ('need', 1), ('know', 1), ('real', 1), ('application', 1), ('cluster', 1), ('low', 1), ('cost', 1), ('hardware', 1), ('platform', 1), ('rival', 1), ('exceed', 1), ('quality', 1), ('service', 1), ('availability', 1), ('scalability', 1), ('expensive', 1), ('mainframe', 1), ('system', 1), ('concept', 1), ('covered', 1)]
[('database', 3), ('oracle', 3), ('provides', 1), ('beginning', 1), ('dba', 1), ('developer', 1), ('solid', 1), ('foundation', 1), ('administration', 1), ('programming', 1), ('basic', 1), ('needed', 1), ('embark', 1), ('career', 1), ('focus', 1), ('fundamental', 1), ('applicable', 1), ('release', 1)]
[('sql', 2), ('oracle', 2), ('available', 2), ('volume', 1), ('take', 1), ('novice', 1), ('master', 1), ('covering', 1), ('use', 1), ('extension', 1), ('example', 1), ('feature', 1), ('sample', 1), ('schema', 1), ('database', 1), ('free', 1), ('code', 1), ('download', 1)]
[('oracle', 2), ('security', 2), ('david', 2), ('knox', 2), ('experience', 2), ('expert', 1), ('explains', 1), ('design', 1), ('develop', 1), ('integrated', 1), ('secure', 1), ('environment', 1), ('world', 1), ('including', 1), ('year', 1), ('central', 1), ('intelligence', 1), ('agency', 1), ('found', 1), ('anyone', 1), ('theory', 1), ('practice', 1), ('protecting', 1), ('data', 1), ('dave', 1), ('carey', 1), ('former', 1)]
[('oracle', 3), ('business', 3), ('suite', 3), ('security', 2), ('implement', 1), ('maintain', 1), ('rock', 1), ('solid', 1), ('secure', 1), ('within', 1), ('organization', 1), ('across', 1), ('internet', 1), ('using', 1), ('depth', 1), ('guidance', 1), ('comprehensive', 1), ('volume', 1), ('cover', 1), ('everything', 1), ('key', 1), ('infrastructure', 1), ('technical', 1), ('functional', 1), ('information', 1), ('cutting', 1), ('edge', 1)]
[('security', 4), ('program', 2), ('smart', 1), ('self', 1), ('guided', 1), ('professional', 1), ('extraordinarily', 1), ('thorough', 1), ('sophisticated', 1), ('explanation', 1), ('need', 1), ('measure', 1), ('effectiveness', 1), ('quality', 1), ('dave', 1), ('cullinane', 1), ('cissp', 1), ('ciso', 1), ('vp', 1), ('global', 1), ('fraud', 1), ('risk', 1), ('ebay', 1), ('learn', 1), ('communicate', 1)]
[('application', 2), ('mixed', 2), ('platform', 2), ('environment', 2), ('database', 2), ('oracle', 2), ('master', 1), ('development', 1), ('build', 1), ('powerful', 1), ('using', 1), ('detailed', 1), ('information', 1), ('press', 1), ('guide', 1), ('mysql', 1), ('developer', 1), ('handbook', 1), ('lay', 1), ('programming', 1), ('strategy', 1), ('best', 1), ('practice', 1), ('seamlessly', 1), ('operating', 1), ('find', 1)]
[('social', 3), ('network', 2), ('medium', 2), ('security', 2), ('defend', 1), ('corporate', 1), ('espionage', 1), ('launched', 1), ('protect', 1), ('organization', 1), ('devastating', 1), ('attack', 1), ('instruction', 1), ('team', 1), ('information', 1), ('expert', 1), ('securing', 1), ('click', 1), ('age', 1), ('explains', 1), ('latest', 1), ('threat', 1), ('along', 1), ('detailed', 1), ('fix', 1), ('best', 1), ('practice', 1)]
[('learn', 2), ('start', 1), ('using', 1), ('quickbooks', 1), ('right', 1), ('away', 1), ('quickstep', 1), ('way', 1), ('color', 1), ('screenshots', 1), ('clear', 1), ('instruction', 1), ('make', 1), ('easy', 1), ('ramp', 1), ('latest', 1), ('release', 1), ('leading', 1), ('small', 1), ('business', 1), ('financial', 1), ('software', 1), ('follow', 1), ('along', 1), ('customize', 1), ('bookkeeping', 1), ('process', 1), ('invoice', 1), ('manage', 1), ('payroll', 1), ('track', 1), ('inventory', 1), ('run', 1), ('report', 1)]
[('start', 1), ('using', 1), ('quicken', 1), ('right', 1), ('away', 1), ('quickstep', 1), ('way', 1), ('color', 1), ('screenshots', 1), ('clear', 1), ('instruction', 1), ('make', 1), ('easy', 1), ('ramp', 1), ('latest', 1), ('release', 1), ('personal', 1), ('finance', 1), ('software', 1), ('follow', 1), ('along', 1), ('learn', 1), ('balance', 1), ('checkbook', 1), ('print', 1), ('check', 1), ('pay', 1), ('bill', 1), ('online', 1), ('reconcile', 1), ('bank', 1), ('credit', 1), ('card', 1), ('investment', 1), ('account', 1), ('track', 1), ('expense', 1)]
[('comptia', 4), ('guide', 3), ('exam', 3), ('mike', 2), ('meyers', 2), ('window', 2), ('supporting', 1), ('certification', 1), ('latest', 1), ('information', 1), ('new', 1), ('topic', 1), ('question', 1), ('added', 1), ('companion', 1), ('seventh', 1), ('edition', 1), ('managing', 1)]
[('oracle', 3), ('database', 2), ('concept', 2), ('sql', 2), ('thorough', 1), ('understanding', 1), ('comprehensive', 1), ('reference', 1), ('market', 1), ('published', 1), ('press', 1), ('critical', 1), ('architecture', 1), ('advanced', 1), ('object', 1), ('oriented', 1), ('powerhouse', 1), ('contains', 1), ('nearly', 1), ('chapter', 1), ('designed', 1), ('enlighten', 1), ('upgrade', 1), ('earlier', 1), ('version', 1), ('use', 1), ('plus', 1)]
[('window', 4), ('step', 2), ('color', 2), ('full', 1), ('graphic', 1), ('speed', 1), ('right', 1), ('away', 1), ('quickstep', 1), ('way', 1), ('fully', 1), ('updated', 1), ('cover', 1), ('sp', 1), ('live', 1), ('mail', 1), ('internet', 1), ('explorer', 1), ('book', 1), ('includes', 1), ('screenshots', 1), ('clear', 1), ('explanation', 1), ('show', 1), ('maximize', 1), ('powerful', 1), ('feature', 1), ('upgrade', 1), ('available', 1), ('find', 1)]
[('oracle', 4), ('business', 3), ('process', 3), ('management', 3), ('suite', 3), ('bpm', 2), ('master', 1), ('written', 1), ('expert', 1), ('handbook', 1), ('balanced', 1), ('combination', 1), ('essential', 1), ('concept', 1), ('best', 1), ('practice', 1), ('detailed', 1), ('treatment', 1), ('powerful', 1), ('feature', 1), ('functionality', 1), ('book', 1)]
[('security', 4), ('tool', 2), ('smart', 1), ('self', 1), ('guided', 1), ('professional', 1), ('know', 1), ('hacker', 1), ('plan', 1), ('getting', 1), ('hacked', 1), ('sullivan', 1), ('liu', 1), ('created', 1), ('savvy', 1), ('essential', 1), ('based', 1), ('approach', 1), ('web', 1), ('app', 1), ('packed', 1), ('immediately', 1), ('applicable', 1), ('information', 1), ('practitioner', 1), ('sharpening', 1), ('starting', 1), ('ryan', 1), ('mcgeehan', 1)]
[('operating', 4), ('system', 4), ('step', 2), ('learn', 1), ('happens', 1), ('behind', 1), ('scene', 1), ('find', 1), ('work', 1), ('including', 1), ('window', 1), ('mac', 1), ('o', 1), ('linux', 1), ('demystified', 1), ('describes', 1), ('feature', 1), ('common', 1), ('today', 1), ('popular', 1), ('handle', 1), ('complex', 1), ('task', 1), ('written', 1), ('format', 1), ('practical', 1), ('guide', 1), ('begin', 1)]
[('pc', 3), ('running', 1), ('full', 1), ('speed', 1), ('remove', 1), ('malevolent', 1), ('software', 1), ('save', 1), ('time', 1), ('money', 1), ('frustration', 1), ('becoming', 1), ('computer', 1), ('guru', 1), ('healthy', 1), ('preventive', 1), ('care', 1), ('home', 1), ('remedy', 1), ('green', 1), ('computing', 1), ('second', 1), ('edition', 1), ('show', 1), ('find', 1), ('wrong', 1), ('solve', 1), ('problem', 1), ('expert', 1), ('tip', 1)]
[('ipod', 4), ('touch', 4), ('cover', 2), ('new', 2), ('show', 2), ('practical', 1), ('guide', 1), ('latest', 1), ('best', 1), ('way', 1), ('load', 1), ('medium', 1), ('content', 1), ('play', 1), ('game', 1), ('surf', 1), ('web', 1), ('use', 1), ('facetime', 1), ('video', 1), ('chat', 1), ('watch', 1), ('tv', 1), ('movie', 1), ('everything', 1), ('supercharged', 1), ('combine', 1), ('three', 1), ('product', 1), ('widescreen', 1)]
[('study', 2), ('exam', 2), ('best', 1), ('fully', 1), ('integrated', 1), ('system', 1), ('available', 1), ('cn', 1), ('hundred', 1), ('practice', 1), ('question', 1), ('hand', 1), ('exercise', 1), ('comptia', 1), ('ctp', 1), ('convergence', 1), ('technology', 1), ('professional', 1), ('certification', 1), ('guide', 1), ('cover', 1), ('need', 1), ('know', 1), ('show', 1), ('prepare', 1), ('challenging', 1), ('complete', 1), ('coverage', 1), ('official', 1), ('objective', 1)]
[('study', 2), ('feac', 2), ('cea', 2), ('exam', 2), ('best', 1), ('fully', 1), ('integrated', 1), ('system', 1), ('available', 1), ('filled', 1), ('practice', 1), ('question', 1), ('example', 1), ('illustration', 1), ('certified', 1), ('enterprise', 1), ('architect', 1), ('guide', 1), ('cover', 1), ('need', 1), ('know', 1), ('show', 1), ('prepare', 1), ('challenging', 1), ('complete', 1), ('coverage', 1), ('official', 1), ('objective', 1), ('modeling', 1)]
[('mac', 4), ('keep', 2), ('running', 2), ('peak', 1), ('performance', 1), ('restore', 1), ('new', 1), ('condition', 1), ('save', 1), ('time', 1), ('money', 1), ('solving', 1), ('everyday', 1), ('problem', 1), ('healthy', 1), ('preventive', 1), ('care', 1), ('practical', 1), ('diagnostics', 1), ('proven', 1), ('remedy', 1), ('show', 1), ('diagnose', 1), ('declutter', 1), ('debug', 1), ('smoothly', 1), ('find', 1), ('expert', 1), ('tip', 1), ('making', 1)]
[('iphone', 4), ('full', 2), ('color', 2), ('guide', 2), ('go', 1), ('started', 1), ('enjoying', 1), ('powerful', 1), ('versatile', 1), ('feature', 1), ('quickly', 1), ('easily', 1), ('loaded', 1), ('crisp', 1), ('screenshots', 1), ('practical', 1), ('visual', 1), ('focus', 1), ('best', 1), ('way', 1), ('maximize', 1), ('capability', 1), ('set', 1), ('customize', 1), ('manage', 1), ('contact', 1), ('access', 1), ('web', 1), ('take', 1), ('photo', 1)]
[('ipad', 4), ('take', 1), ('limit', 1), ('way', 1), ('beyond', 1), ('already', 1), ('mastered', 1), ('essential', 1), ('become', 1), ('bona', 1), ('fide', 1), ('power', 1), ('user', 1), ('transform', 1), ('medium', 1), ('center', 1), ('gaming', 1), ('device', 1), ('photo', 1), ('video', 1), ('camera', 1), ('document', 1), ('editor', 1), ('high', 1), ('powered', 1), ('computer', 1), ('easy', 1), ('follow', 1), ('instruction', 1), ('illustration', 1), ('geekery', 1), ('insanely', 1), ('cool', 1), ('hack', 1)]
[('crescent', 3), ('bi', 2), ('report', 2), ('microsoft', 2), ('reveals', 1), ('build', 1), ('rich', 1), ('click', 1), ('using', 1), ('newest', 1), ('tool', 1), ('technical', 1), ('review', 1), ('team', 1), ('foreword', 1), ('group', 1), ('program', 1), ('manager', 1), ('complete', 1), ('practical', 1), ('example', 1), ('immediately', 1), ('usable', 1), ('reader', 1), ('commercial', 1), ('environment', 1), ('cd', 1), ('rom', 1), ('contains', 1), ('reusable', 1), ('code', 1)]
[('unified', 2), ('communication', 2), ('latest', 1), ('technique', 1), ('averting', 1), ('uc', 1), ('disaster', 1), ('establish', 1), ('holistic', 1), ('security', 1), ('stance', 1), ('learning', 1), ('view', 1), ('infrastructure', 1), ('eye', 1), ('nefarious', 1), ('cyber', 1), ('criminal', 1), ('hacking', 1), ('exposed', 1), ('voip', 1), ('second', 1), ('edition', 1), ('offer', 1), ('thoroughly', 1), ('expanded', 1), ('coverage', 1), ('today', 1), ('rampant', 1), ('threat', 1), ('alongside', 1), ('ready', 1)]
[('mysql', 2), ('backup', 2), ('recovery', 2), ('side', 2), ('essential', 1), ('guide', 1), ('protecting', 1), ('business', 1), ('information', 1), ('written', 1), ('oracle', 1), ('ace', 1), ('director', 1), ('expert', 1), ('ronald', 1), ('bradford', 1), ('effective', 1), ('cover', 1), ('option', 1), ('detailed', 1), ('description', 1), ('syntax', 1), ('example', 1), ('ensure', 1), ('appropriate', 1), ('plan', 1), ('developed', 1), ('featuring', 1), ('evaluation', 1)]
[('exam', 3), ('practice', 2), ('cissp', 2), ('written', 1), ('name', 1), ('security', 1), ('certification', 1), ('training', 1), ('fully', 1), ('revised', 1), ('latest', 1), ('release', 1), ('featuring', 1), ('question', 1), ('plus', 1), ('hour', 1), ('audio', 1), ('lecture', 1), ('second', 1), ('edition', 1), ('ideal', 1), ('companion', 1), ('shon', 1), ('harris', 1), ('bestselling', 1), ('guide', 1), ('regarded', 1), ('engaging', 1), ('informative', 1)]
[('cloud', 5), ('private', 3), ('oracle', 3), ('achieve', 2), ('performance', 2), ('exalogic', 2), ('elastic', 2), ('extreme', 1), ('application', 1), ('transition', 1), ('computing', 1), ('infrastructure', 1), ('unmatched', 1), ('level', 1), ('help', 1), ('press', 1), ('guide', 1), ('handbook', 1), ('show', 1), ('plan', 1), ('implement', 1), ('maintain', 1), ('find', 1)]
[('ipod', 5), ('itunes', 4), ('fully', 1), ('revised', 1), ('throughout', 1), ('everything', 1), ('sixth', 1), ('edition', 1), ('cover', 1), ('classic', 1), ('nano', 1), ('shuffle', 1), ('latest', 1), ('version', 1), ('find', 1), ('easily', 1), ('load', 1), ('music', 1), ('podcasts', 1), ('video', 1), ('customize', 1), ('setting', 1), ('enhance', 1), ('audio', 1), ('quality', 1), ('manage', 1), ('library', 1)]
[('security', 2), ('smart', 1), ('self', 1), ('guided', 1), ('professional', 1), ('learn', 1), ('improve', 1), ('posture', 1), ('organization', 1), ('defend', 1), ('pervasive', 1), ('network', 1), ('attack', 1), ('malware', 1), ('rootkits', 1), ('botnets', 1), ('beginner', 1), ('guide', 1), ('explains', 1), ('nature', 1), ('sophistication', 1), ('danger', 1), ('risk', 1), ('offer', 1), ('best', 1), ('practice', 1), ('thwarting', 1)]
[('easy', 2), ('step', 2), ('essential', 1), ('skill', 1), ('made', 1), ('written', 1), ('herb', 1), ('schildt', 1), ('world', 1), ('leading', 1), ('programming', 1), ('author', 1), ('book', 1), ('ideal', 1), ('first', 1), ('time', 1), ('programmer', 1), ('new', 1), ('modular', 1), ('approach', 1), ('series', 1), ('including', 1), ('sample', 1), ('project', 1), ('progress', 1), ('check', 1), ('make', 1), ('learn', 1), ('use', 1), ('pace', 1)]
[('galaxy', 3), ('tab', 3), ('samsung', 2), ('full', 2), ('hand', 2), ('show', 2), ('last', 1), ('tablet', 1), ('put', 1), ('power', 1), ('computer', 1), ('right', 1), ('guide', 1), ('tap', 1), ('range', 1), ('business', 1), ('productivity', 1), ('entertainment', 1), ('feature', 1), ('everything', 1), ('teach', 1), ('connect', 1), ('wireless', 1), ('network', 1)]
[('security', 4), ('automation', 2), ('master', 1), ('latest', 1), ('digital', 1), ('technology', 1), ('achieve', 1), ('unified', 1), ('view', 1), ('across', 1), ('infrastructure', 1), ('using', 1), ('cutting', 1), ('edge', 1), ('technique', 1), ('contained', 1), ('authoritative', 1), ('volume', 1), ('essential', 1), ('streamlined', 1), ('enterprise', 1), ('management', 1), ('monitoring', 1), ('scap', 1), ('lay', 1), ('comprehensive', 1), ('technical', 1)]
[('window', 3), ('tap', 1), ('power', 1), ('maximize', 1), ('versatile', 1), ('feature', 1), ('device', 1), ('help', 1), ('hand', 1), ('guide', 1), ('discover', 1), ('customize', 1), ('setting', 1), ('use', 1), ('new', 1), ('start', 1), ('screen', 1), ('charm', 1), ('bar', 1), ('work', 1), ('gesture', 1), ('touchscreen', 1), ('pc', 1), ('organize', 1), ('sync', 1), ('data', 1), ('cloud', 1), ('set', 1), ('network', 1), ('everything', 1)]
[('ipad', 5), ('full', 2), ('color', 2), ('guide', 2), ('go', 1), ('cover', 1), ('rd', 1), ('generation', 1), ('started', 1), ('enjoying', 1), ('innovative', 1), ('tool', 1), ('feature', 1), ('quickly', 1), ('easily', 1), ('kickstart', 1), ('loaded', 1), ('crisp', 1), ('screenshots', 1), ('practical', 1), ('visual', 1), ('focus', 1), ('best', 1), ('way', 1), ('maximize', 1), ('capability', 1), ('stay', 1), ('organized', 1), ('connected', 1), ('home', 1)]
[('business', 3), ('oracle', 2), ('intelligence', 2), ('discoverer', 2), ('master', 1), ('provide', 1), ('secure', 1), ('immediate', 1), ('access', 1), ('critical', 1), ('information', 1), ('relational', 1), ('multidimensional', 1), ('data', 1), ('source', 1), ('across', 1), ('organization', 1), ('handbook', 1), ('show', 1), ('optimize', 1), ('intuitive', 1), ('ad', 1), ('hoc', 1), ('query', 1), ('reporting', 1), ('analysis', 1), ('web', 1), ('publishing', 1)]
[('full', 2), ('color', 2), ('pinterest', 2), ('concise', 1), ('coverage', 1), ('wildly', 1), ('popular', 1), ('virtual', 1), ('pinboard', 1), ('kickstart', 1), ('kick', 1), ('back', 1), ('start', 1), ('enjoying', 1), ('cool', 1), ('feature', 1), ('unique', 1), ('social', 1), ('networking', 1), ('site', 1), ('connects', 1), ('user', 1), ('worldwide', 1), ('based', 1), ('shared', 1), ('taste', 1), ('interest', 1), ('handy', 1), ('guide', 1), ('provides', 1), ('quick', 1), ('deep', 1), ('dive', 1)]
[('full', 2), ('color', 2), ('step', 2), ('quickbooks', 2), ('way', 2), ('guide', 1), ('fastest', 1), ('easiest', 1), ('master', 1), ('important', 1), ('feature', 1), ('bestselling', 1), ('small', 1), ('business', 1), ('financial', 1), ('software', 1), ('running', 1), ('right', 1), ('away', 1), ('quickstep', 1), ('screenshots', 1), ('every', 1), ('page', 1), ('clear', 1), ('instruction', 1), ('make', 1), ('easy', 1), ('work', 1), ('new', 1)]
[('exam', 4), ('oracle', 2), ('complete', 1), ('study', 1), ('system', 1), ('ocm', 1), ('prepare', 1), ('certified', 1), ('master', 1), ('java', 1), ('ee', 1), ('enterprise', 1), ('architect', 1), ('exclusive', 1), ('press', 1), ('guide', 1), ('multiple', 1), ('choice', 1), ('assignment', 1), ('essay', 1), ('covered', 1), ('chapter', 1), ('feature', 1), ('challenging', 1), ('exercise', 1), ('certification', 1), ('summary', 1), ('minute', 1), ('drill', 1)]
[('java', 5), ('oracle', 4), ('application', 3), ('cloud', 3), ('ee', 2), ('development', 2), ('master', 1), ('build', 1), ('highly', 1), ('available', 1), ('scalable', 1), ('secure', 1), ('distributed', 1), ('press', 1), ('guide', 1), ('ace', 1), ('director', 1), ('champion', 1), ('harshad', 1), ('oak', 1), ('lead', 1), ('entire', 1), ('based', 1), ('lifecycle', 1), ('deployment', 1), ('filled', 1)]
[('cisco', 3), ('step', 2), ('networking', 1), ('essential', 1), ('made', 1), ('easy', 1), ('solid', 1), ('foundation', 1), ('product', 1), ('technology', 1), ('fully', 1), ('updated', 1), ('bestseller', 1), ('covering', 1), ('latest', 1), ('solution', 1), ('beginner', 1), ('guide', 1), ('fifth', 1), ('edition', 1), ('show', 1), ('design', 1), ('build', 1), ('manage', 1), ('custom', 1), ('network', 1), ('learn', 1), ('configure', 1), ('hardware', 1), ('use', 1), ('io', 1), ('command', 1), ('set', 1)]
[('oracle', 3), ('exam', 2), ('complete', 1), ('study', 1), ('system', 1), ('ocp', 1), ('prepare', 1), ('certified', 1), ('professional', 1), ('database', 1), ('advanced', 1), ('administration', 1), ('exclusive', 1), ('press', 1), ('guide', 1), ('chapter', 1), ('feature', 1), ('challenging', 1), ('exercise', 1), ('certification', 1), ('summary', 1), ('minute', 1), ('drill', 1), ('self', 1), ('test', 1), ('reinforce', 1), ('topic', 1), ('presented', 1), ('authoritative', 1)]
[('step', 2), ('color', 2), ('senior', 2), ('ipad', 2), ('full', 1), ('graphic', 1), ('written', 1), ('practical', 1), ('fast', 1), ('paced', 1), ('guide', 1), ('help', 1), ('running', 1), ('right', 1), ('away', 1), ('photo', 1), ('screenshots', 1), ('clear', 1), ('instruction', 1), ('make', 1), ('easy', 1), ('accomplish', 1), ('everything', 1), ('want', 1), ('follow', 1), ('along', 1), ('quickly', 1), ('learn', 1), ('set', 1), ('navigate', 1), ('touch', 1)]
[('exam', 4), ('oracle', 3), ('certification', 3), ('guide', 2), ('database', 2), ('oca', 2), ('ocp', 2), ('press', 1), ('prepares', 1), ('new', 1), ('track', 1), ('including', 1), ('core', 1), ('requirement', 1), ('cover', 1), ('objective', 1), ('installation', 1), ('administration', 1), ('sql', 1)]
[('quickbooks', 3), ('business', 2), ('financial', 2), ('step', 2), ('maximize', 1), ('power', 1), ('create', 1), ('comprehensive', 1), ('streamlined', 1), ('small', 1), ('management', 1), ('system', 1), ('help', 1), ('expert', 1), ('written', 1), ('advanced', 1), ('certified', 1), ('proadvisor', 1), ('guide', 1), ('show', 1), ('customize', 1), ('bestselling', 1), ('software', 1), ('suit', 1), ('learn', 1), ('proven', 1)]
[('professional', 3), ('computer', 3), ('security', 2), ('forensics', 2), ('smart', 1), ('self', 1), ('guided', 1), ('find', 1), ('excel', 1), ('field', 1), ('investigation', 1), ('learn', 1), ('take', 1), ('transition', 1), ('forensic', 1), ('examiner', 1), ('private', 1), ('sector', 1), ('written', 1), ('certified', 1), ('information', 1), ('system', 1), ('infosec', 1), ('pro', 1), ('guide', 1)]
[('professional', 5), ('human', 4), ('resource', 4), ('certification', 3), ('exam', 2), ('guide', 2), ('senior', 2), ('phr', 2), ('new', 1), ('hr', 1), ('institute', 1), ('sphr', 1), ('offer', 1), ('coverage', 1), ('objective', 1)]
[('comptia', 4), ('exam', 3), ('new', 2), ('authorized', 2), ('guide', 1), ('certification', 1), ('mobile', 1), ('computing', 1), ('technology', 1), ('prepare', 1), ('mobility', 1), ('mb', 1), ('mcgraw', 1), ('hill', 1), ('professional', 1), ('platinum', 1), ('level', 1), ('partner', 1), ('offering', 1), ('approved', 1), ('quality', 1), ('content', 1), ('give', 1), ('competitive', 1), ('edge', 1), ('day', 1), ('complete', 1), ('coverage', 1), ('objective', 1)]
[('sql', 8), ('database', 4), ('statement', 3), ('write', 2), ('pl', 2), ('program', 2), ('oracle', 2), ('powerful', 1), ('learn', 1), ('access', 1), ('construct', 1), ('offer', 1), ('complete', 1), ('coverage', 1), ('latest', 1), ('feature', 1), ('technique', 1), ('find', 1), ('retrieve', 1), ('modify', 1), ('information', 1), ('use', 1), ('plus', 1)]
[('mysql', 3), ('solution', 2), ('replication', 2), ('essential', 1), ('guide', 1), ('scaling', 1), ('business', 1), ('written', 1), ('oracle', 1), ('ace', 1), ('director', 1), ('expert', 1), ('ronald', 1), ('bradford', 1), ('coauthor', 1), ('chris', 1), ('schneider', 1), ('effective', 1), ('technique', 1), ('depth', 1), ('describes', 1), ('needed', 1), ('understand', 1), ('implement', 1), ('build', 1), ('scalable', 1), ('book', 1), ('includes', 1), ('detailed', 1), ('syntax', 1), ('example', 1)]
[('senior', 3), ('step', 2), ('color', 2), ('facebook', 2), ('quickstep', 2), ('show', 2), ('full', 1), ('graphic', 1), ('start', 1), ('using', 1), ('right', 1), ('away', 1), ('way', 1), ('photo', 1), ('screenshots', 1), ('clear', 1), ('instruction', 1), ('enjoy', 1), ('benefit', 1), ('world', 1), ('popular', 1), ('social', 1), ('networking', 1), ('site', 1), ('written', 1), ('easy', 1), ('follow', 1), ('guide', 1)]
[('data', 5), ('big', 3), ('insight', 2), ('motion', 2), ('rest', 2), ('boost', 1), ('iq', 1), ('gain', 1), ('govern', 1), ('consume', 1), ('ibm', 1), ('unique', 1), ('analytic', 1), ('capability', 1), ('represents', 1), ('new', 1), ('era', 1), ('computing', 1), ('inflection', 1), ('point', 1), ('opportunity', 1), ('format', 1), ('explored', 1), ('utilized', 1), ('breakthrough', 1), ('whether', 1), ('place', 1)]
[('oracle', 3), ('exam', 2), ('complete', 1), ('study', 1), ('system', 1), ('oca', 1), ('prepare', 1), ('certified', 1), ('associate', 1), ('database', 1), ('sql', 1), ('fundamental', 1), ('press', 1), ('guide', 1), ('chapter', 1), ('feature', 1), ('challenging', 1), ('exercise', 1), ('certification', 1), ('summary', 1), ('minute', 1), ('drill', 1), ('self', 1), ('test', 1), ('reinforce', 1), ('topic', 1), ('presented', 1), ('authoritative', 1), ('resource', 1), ('help', 1)]
[('publisher', 2), ('product', 2), ('time', 2), ('even', 2), ('data', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('save', 1), ('money', 1), ('db', 1), ('luw', 1), ('travel', 1), ('shrink', 1), ('compress', 1), ('store', 1), ('cloud', 1)]
[('cloud', 3), ('oracle', 2), ('enterprise', 2), ('manager', 2), ('control', 2), ('end', 2), ('master', 1), ('achieve', 1), ('peak', 1), ('database', 1), ('efficiency', 1), ('derive', 1), ('unprecedented', 1), ('value', 1), ('corporate', 1), ('asset', 1), ('implementing', 1), ('computing', 1), ('solution', 1), ('deep', 1), ('dive', 1), ('thoroughly', 1), ('explains', 1), ('best', 1), ('practice', 1), ('deployment', 1), ('administration', 1), ('monitoring', 1), ('learn', 1)]
[('comptia', 4), ('complete', 2), ('self', 2), ('study', 2), ('exam', 2), ('boxed', 2), ('set', 2), ('package', 1), ('fully', 1), ('updated', 1), ('save', 1), ('plus', 1), ('bonus', 1), ('electronic', 1), ('content', 1), ('certification', 1), ('second', 1), ('edition', 1), ('program', 1), ('offering', 1), ('variety', 1), ('tool', 1), ('use', 1), ('preparation', 1)]
[('storage', 5), ('cloud', 3), ('oracle', 3), ('automatic', 2), ('management', 2), ('implement', 1), ('centralized', 1), ('infrastructure', 1), ('build', 1), ('manage', 1), ('scalable', 1), ('highly', 1), ('available', 1), ('solution', 1), ('filled', 1), ('detailed', 1), ('example', 1), ('best', 1), ('practice', 1), ('press', 1), ('guide', 1), ('explains', 1), ('set', 1), ('complete', 1), ('based', 1), ('system', 1), ('using', 1)]
[('malware', 3), ('edge', 2), ('analysis', 2), ('information', 2), ('security', 2), ('professional', 2), ('kind', 1), ('guide', 1), ('setting', 1), ('research', 1), ('lab', 1), ('using', 1), ('cutting', 1), ('tool', 1), ('reporting', 1), ('finding', 1), ('advanced', 1), ('critical', 1), ('resource', 1), ('every', 1), ('anti', 1), ('arsenal', 1), ('proven', 1), ('troubleshooting', 1), ('technique', 1), ('give', 1), ('whose', 1), ('job', 1)]
[('comptia', 4), ('exam', 4), ('security', 3), ('guide', 2), ('mike', 2), ('meyers', 2), ('certification', 2), ('new', 1), ('top', 1), ('training', 1), ('prep', 1), ('expert', 1), ('sy', 1), ('bestselling', 1), ('author', 1), ('leading', 1), ('authority', 1), ('brings', 1), ('highly', 1), ('effective', 1), ('methodology', 1), ('first', 1), ('time', 1), ('book', 1)]
[('data', 6), ('big', 3), ('upgrade', 1), ('new', 1), ('generation', 1), ('database', 1), ('software', 1), ('era', 1), ('untapped', 1), ('natural', 1), ('resource', 1), ('find', 1), ('gold', 1), ('hidden', 1), ('within', 1), ('leader', 1), ('realize', 1), ('mean', 1), ('moving', 1), ('quickly', 1), ('extract', 1), ('value', 1), ('structured', 1), ('unstructured', 1), ('application', 1), ('analyzing', 1), ('prove', 1)]
[('comptia', 4), ('professional', 2), ('security', 2), ('exam', 2), ('authorized', 2), ('name', 1), ('certification', 1), ('prepare', 1), ('sy', 1), ('mcgraw', 1), ('hill', 1), ('platinum', 1), ('level', 1), ('partner', 1), ('offering', 1), ('approved', 1), ('quality', 1), ('content', 1), ('give', 1), ('competitive', 1), ('edge', 1), ('day', 1), ('fast', 1), ('track', 1), ('becoming', 1), ('certified', 1)]
[('comptia', 4), ('exam', 4), ('security', 2), ('authorized', 2), ('best', 1), ('fully', 1), ('integrated', 1), ('study', 1), ('system', 1), ('available', 1), ('prepare', 1), ('sy', 1), ('mcgraw', 1), ('hill', 1), ('professional', 1), ('platinum', 1), ('level', 1), ('partner', 1), ('offering', 1), ('approved', 1), ('quality', 1), ('content', 1), ('give', 1), ('competitive', 1), ('edge', 1), ('day', 1), ('hundred', 1), ('practice', 1), ('question', 1)]
[('comptia', 4), ('exam', 4), ('test', 2), ('security', 2), ('sy', 2), ('authorized', 2), ('real', 1), ('first', 1), ('prepare', 1), ('mcgraw', 1), ('hill', 1), ('professional', 1), ('platinum', 1), ('level', 1), ('partner', 1), ('offering', 1), ('approved', 1), ('quality', 1), ('content', 1), ('give', 1), ('competitive', 1), ('edge', 1), ('day', 1), ('certification', 1), ('practice', 1), ('second', 1), ('edition', 1)]
[('oracle', 2), ('business', 2), ('suite', 2), ('tuning', 2), ('master', 1), ('performance', 1), ('optimization', 1), ('deliver', 1), ('promise', 1), ('lower', 1), ('tco', 1), ('achieve', 1), ('operational', 1), ('excellence', 1), ('implementing', 1), ('comprehensive', 1), ('enterprise', 1), ('application', 1), ('management', 1), ('process', 1), ('tip', 1), ('technique', 1), ('offer', 1), ('detailed', 1), ('coverage', 1), ('versatile', 1), ('tool', 1), ('feature', 1), ('service', 1)]
[('oracle', 3), ('goldengate', 2), ('data', 2), ('master', 1), ('enable', 1), ('highly', 1), ('available', 1), ('real', 1), ('time', 1), ('access', 1), ('enterprise', 1), ('heterogeneous', 1), ('environment', 1), ('featuring', 1), ('hand', 1), ('workshop', 1), ('handbook', 1), ('show', 1), ('install', 1), ('configure', 1), ('implement', 1), ('high', 1), ('performance', 1), ('application', 1), ('learn', 1), ('replicate', 1), ('across', 1), ('database', 1)]
[('oracle', 4), ('data', 4), ('big', 3), ('using', 3), ('press', 2), ('guide', 1), ('analytics', 1), ('cowritten', 1), ('member', 1), ('team', 1), ('book', 1), ('focus', 1), ('analyzing', 1), ('making', 1), ('scalable', 1), ('technology', 1), ('unlock', 1), ('value', 1), ('provides', 1), ('introduction', 1), ('open', 1), ('source', 1), ('describes', 1), ('issue', 1), ('traditional', 1)]
[('xml', 2), ('explains', 1), ('implement', 1), ('secure', 1), ('web', 1), ('service', 1), ('includes', 1), ('coverage', 1), ('trust', 1), ('confidentiality', 1), ('cryptography', 1), ('authentication', 1), ('authorization', 1), ('kerberos', 1), ('find', 1), ('detail', 1), ('security', 1), ('assertion', 1), ('markup', 1), ('language', 1), ('saml', 1), ('key', 1), ('management', 1), ('specification', 1), ('xkms', 1), ('encryption', 1), ('hypertext', 1), ('transfer', 1), ('protocol', 1), ('reliability', 1)]
[('exam', 3), ('three', 2), ('chapter', 2), ('need', 1), ('authoritative', 1), ('reference', 1), ('offer', 1), ('complete', 1), ('coverage', 1), ('material', 1), ('crystal', 1), ('report', 1), ('certified', 1), ('professional', 1), ('including', 1), ('content', 1), ('elective', 1), ('find', 1), ('objective', 1), ('beginning', 1), ('helpful', 1), ('tip', 1), ('end', 1), ('practice', 1), ('question', 1), ('bonus', 1), ('cd', 1), ('rom', 1)]
[('oracle', 4), ('data', 4), ('database', 2), ('predictive', 2), ('analytics', 2), ('miner', 2), ('insight', 2), ('build', 1), ('next', 1), ('generation', 1), ('application', 1), ('want', 1), ('leverage', 1), ('discover', 1), ('new', 1), ('make', 1), ('prediction', 1), ('generate', 1), ('actionable', 1), ('book', 1), ('using', 1), ('develop', 1), ('use', 1)]
[('minecraft', 3), ('redstone', 3), ('supercharge', 1), ('skill', 1), ('enhance', 1), ('world', 1), ('creating', 1), ('innovative', 1), ('device', 1), ('element', 1), ('mastery', 1), ('build', 1), ('contraption', 1), ('mod', 1), ('reveals', 1), ('maximize', 1), ('capability', 1), ('powerful', 1), ('versatile', 1), ('red', 1), ('ore', 1), ('learn', 1), ('create', 1), ('logic', 1), ('gate', 1), ('advanced', 1), ('mechanism', 1)]
[('exam', 4), ('ocp', 2), ('oracle', 2), ('practice', 2), ('question', 2), ('prepare', 1), ('pas', 1), ('introduction', 1), ('sql', 1), ('required', 1), ('oca', 1), ('dba', 1), ('certification', 1), ('using', 1), ('press', 1), ('study', 1), ('guide', 1), ('complete', 1), ('coverage', 1), ('topic', 1), ('followed', 1), ('chapter', 1), ('summary', 1), ('cd', 1), ('rom', 1), ('contains', 1), ('hundred', 1), ('adaptive', 1), ('format', 1)]
[('sql', 3), ('step', 2), ('obtain', 1), ('solid', 1), ('foundation', 1), ('need', 1), ('become', 1), ('effective', 1), ('database', 1), ('programmer', 1), ('nut', 1), ('bolt', 1), ('p', 1), ('book', 1), ('oracle', 1), ('press', 1), ('coverage', 1), ('includes', 1), ('storing', 1), ('retrieving', 1), ('manipulating', 1), ('data', 1), ('broad', 1), ('range', 1), ('pl', 1), ('function', 1), ('tool', 1), ('real', 1), ('life', 1), ('example', 1), ('hand', 1), ('project', 1), ('help', 1), ('see', 1), ('apply', 1)]
[('pl', 3), ('sql', 3), ('database', 3), ('programming', 2), ('oracle', 2), ('take', 1), ('skill', 1), ('next', 1), ('level', 1), ('build', 1), ('robust', 1), ('centric', 1), ('application', 1), ('quickly', 1), ('effectively', 1), ('advanced', 1), ('technique', 1), ('show', 1), ('write', 1), ('deploy', 1), ('java', 1), ('library', 1), ('inside', 1), ('use', 1), ('utl_file', 1), ('dbms_scheduler', 1), ('package', 1), ('create', 1), ('external', 1), ('table', 1)]
[('discovery', 3), ('oracle', 2), ('endeca', 2), ('information', 2), ('data', 2), ('best', 1), ('practice', 1), ('maximize', 1), ('powerful', 1), ('capability', 1), ('self', 1), ('service', 1), ('enterprise', 1), ('platform', 1), ('master', 1), ('competitive', 1), ('analytics', 1), ('reveals', 1), ('unlock', 1), ('insight', 1), ('type', 1), ('regardless', 1), ('structure', 1), ('first', 1), ('part', 1), ('book', 1), ('complete', 1), ('technical', 1)]
[('ceh', 3), ('exam', 3), ('objective', 2), ('study', 2), ('electronic', 2), ('guide', 2), ('fully', 1), ('revised', 1), ('money', 1), ('saving', 1), ('self', 1), ('bundle', 1), ('includes', 1), ('ebooks', 1), ('content', 1), ('bonus', 1), ('quick', 1), ('review', 1), ('certified', 1), ('ethical', 1), ('hacker', 1), ('second', 1), ('edition', 1), ('complete', 1), ('coverage', 1), ('ideal', 1), ('tool', 1), ('job', 1), ('resource', 1)]
[('application', 4), ('oracle', 4), ('exadata', 3), ('tuning', 2), ('maximize', 1), ('performance', 1), ('written', 1), ('enterprise', 1), ('architect', 1), ('specializing', 1), ('engineered', 1), ('system', 1), ('running', 1), ('tip', 1), ('technique', 1), ('reveals', 1), ('proven', 1), ('method', 1), ('configuring', 1), ('achieve', 1), ('peak', 1), ('result', 1), ('complete', 1)]
[('business', 3), ('data', 3), ('oracle', 2), ('creating', 2), ('intelligence', 2), ('press', 1), ('guide', 1), ('effective', 1), ('visual', 1), ('presentation', 1), ('quickly', 1), ('easily', 1), ('visualization', 1), ('reveals', 1), ('best', 1), ('practice', 1), ('graph', 1), ('table', 1), ('map', 1), ('methodology', 1), ('presenting', 1), ('driven', 1), ('insight', 1), ('using', 1), ('common', 1)]
[('lesson', 3), ('online', 2), ('video', 2), ('tutorial', 2), ('complete', 2), ('master', 1), ('javascript', 1), ('included', 1), ('based', 1), ('author', 1), ('successful', 1), ('course', 1), ('integrated', 1), ('learning', 1), ('tool', 1), ('provides', 1), ('easy', 1), ('follow', 1), ('feature', 1), ('clear', 1), ('explanation', 1), ('sample', 1), ('code', 1), ('exercise', 1), ('designed', 1), ('take', 1), ('le', 1), ('hour', 1)]
[('comptia', 2), ('linux', 2), ('objective', 2), ('exam', 2), ('revised', 1), ('update', 1), ('lpic', 1), ('value', 1), ('packed', 1), ('guide', 1), ('cover', 1), ('leading', 1), ('vendor', 1), ('neutral', 1), ('credential', 1), ('come', 1), ('virtual', 1), ('machine', 1), ('configured', 1), ('hand', 1), ('exercise', 1), ('video', 1), ('training', 1), ('hundred', 1), ('practice', 1), ('question', 1), ('complete', 1), ('coverage', 1), ('included', 1)]
[('exam', 5), ('certification', 2), ('study', 2), ('comptia', 2), ('network', 2), ('best', 1), ('system', 1), ('available', 1), ('hundred', 1), ('practice', 1), ('question', 1), ('including', 1), ('new', 1), ('performance', 1), ('based', 1), ('type', 1), ('guide', 1), ('sixth', 1), ('edition', 1), ('cover', 1), ('everything', 1), ('need', 1), ('know', 1), ('prepare', 1), ('challenging', 1), ('complete', 1), ('coverage', 1)]
[('oracle', 5), ('sql', 4), ('database', 3), ('design', 2), ('developer', 2), ('data', 2), ('modeler', 2), ('practical', 1), ('guide', 1), ('ace', 1), ('director', 1), ('heli', 1), ('helskyaho', 1), ('explains', 1), ('process', 1), ('using', 1), ('powerful', 1), ('free', 1), ('tool', 1), ('flawlessly', 1), ('support', 1), ('environment', 1), ('including', 1), ('microsoft', 1), ('server', 1), ('ibm', 1), ('db', 1)]
[('phr', 3), ('sphr', 3), ('professional', 3), ('human', 3), ('resource', 3), ('certification', 3), ('self', 2), ('study', 2), ('bundle', 2), ('exam', 2), ('money', 1), ('saving', 1), ('covering', 1), ('six', 1), ('hr', 1), ('functional', 1), ('area', 1), ('complete', 1), ('package', 1), ('challenging', 1), ('guide', 1), ('cover', 1)]
[('java', 3), ('guide', 2), ('oracle', 2), ('exam', 2), ('programmer', 2), ('se', 2), ('step', 2), ('official', 1), ('study', 1), ('entry', 1), ('level', 1), ('certified', 1), ('associate', 1), ('fully', 1), ('updated', 1), ('confidently', 1), ('prepare', 1), ('oca', 1), ('thoroughly', 1), ('revised', 1), ('date', 1), ('press', 1), ('featuring', 1), ('exercise', 1), ('comprehensive', 1), ('chapter', 1), ('self', 1), ('test', 1), ('complete', 1)]
[('security', 5), ('culture', 3), ('complete', 2), ('hacking', 1), ('strategy', 1), ('technique', 1), ('resource', 1), ('securing', 1), ('volatile', 1), ('element', 1), ('information', 1), ('human', 1), ('centric', 1), ('transforming', 1), ('enterprise', 1), ('address', 1), ('urgent', 1), ('need', 1), ('change', 1), ('intersection', 1), ('esentially', 1)]
[('exam', 4), ('system', 3), ('complete', 2), ('revised', 2), ('security', 2), ('certified', 2), ('practitioner', 2), ('sscp', 2), ('fully', 1), ('updated', 1), ('integrated', 1), ('self', 1), ('study', 1), ('offer', 1), ('coverage', 1), ('domain', 1), ('thoroughly', 1), ('april', 1), ('update', 1), ('guide', 1), ('second', 1), ('edition', 1), ('enables', 1), ('take', 1), ('confidence', 1)]
[('solaris', 4), ('oracle', 3), ('system', 2), ('press', 1), ('guide', 1), ('offer', 1), ('complete', 1), ('coverage', 1), ('installation', 1), ('configuration', 1), ('management', 1), ('security', 1), ('tuning', 1), ('handbook', 1), ('ncludes', 1), ('cutting', 1), ('edge', 1), ('information', 1), ('providing', 1), ('essential', 1), ('skill', 1), ('needed', 1), ('successfully', 1), ('set', 1), ('deploy', 1), ('maintain', 1), ('every', 1), ('aspect', 1)]
[('oracle', 2), ('data', 2), ('deliver', 1), ('continuous', 1), ('access', 1), ('timely', 1), ('accurate', 1), ('bi', 1), ('across', 1), ('enterprise', 1), ('using', 1), ('detailed', 1), ('information', 1), ('press', 1), ('guide', 1), ('clear', 1), ('explanation', 1), ('practical', 1), ('example', 1), ('team', 1), ('expert', 1), ('show', 1), ('assimilate', 1), ('disparate', 1), ('source', 1), ('single', 1), ('unified', 1), ('view', 1), ('find', 1), ('transform', 1), ('real', 1), ('time', 1), ('handle', 1)]
[('small', 2), ('business', 2), ('quickbooks', 2), ('set', 1), ('complete', 1), ('financial', 1), ('management', 1), ('system', 1), ('quickly', 1), ('easily', 1), ('written', 1), ('certified', 1), ('proadvisors', 1), ('best', 1), ('guide', 1), ('show', 1), ('maximize', 1), ('desktop', 1), ('software', 1), ('powerful', 1), ('capability', 1), ('including', 1), ('new', 1), ('improved', 1), ('feature', 1), ('processing', 1), ('invoice', 1), ('managing', 1)]
[('exam', 3), ('test', 2), ('real', 1), ('first', 1), ('fully', 1), ('updated', 1), ('ceh', 1), ('objective', 1), ('practical', 1), ('guide', 1), ('contains', 1), ('realistic', 1), ('practice', 1), ('question', 1), ('prepare', 1), ('ec', 1), ('council', 1), ('certified', 1), ('ethical', 1), ('hacker', 1), ('aid', 1), ('understanding', 1), ('material', 1), ('depth', 1), ('explanation', 1), ('correct', 1), ('incorrect', 1), ('answer', 1)]
[('sql', 6), ('feature', 3), ('pl', 3), ('oracle', 2), ('master', 1), ('underutilized', 1), ('advanced', 1), ('hand', 1), ('guide', 1), ('press', 1), ('show', 1), ('fully', 1), ('exploit', 1), ('lesser', 1), ('known', 1), ('extremely', 1), ('useful', 1), ('effectively', 1), ('use', 1), ('language', 1), ('together', 1), ('written', 1), ('team', 1), ('ace', 1), ('director', 1), ('real', 1), ('world', 1), ('advice', 1), ('expert', 1), ('best', 1)]
[('oracle', 3), ('private', 2), ('database', 2), ('cloud', 2), ('enterprise', 2), ('manager', 2), ('practical', 1), ('press', 1), ('guide', 1), ('teach', 1), ('cutting', 1), ('edge', 1), ('technique', 1), ('building', 1), ('configuring', 1), ('managing', 1), ('secure', 1), ('hand', 1), ('volume', 1), ('lay', 1), ('ready', 1), ('deploy', 1), ('roadmaps', 1), ('design', 1), ('maintenance', 1), ('high', 1), ('performance', 1), ('using', 1)]
[('oracle', 4), ('enterprise', 3), ('big', 2), ('data', 2), ('step', 2), ('master', 1), ('capability', 1), ('effectively', 1), ('manage', 1), ('keep', 1), ('complex', 1), ('process', 1), ('running', 1), ('smoothly', 1), ('using', 1), ('hand', 1), ('information', 1), ('contained', 1), ('press', 1), ('guide', 1), ('harnessing', 1), ('power', 1), ('database', 1), ('show', 1), ('create', 1), ('execute', 1), ('large', 1), ('scale', 1)]
[('exam', 4), ('new', 2), ('objective', 2), ('comptia', 2), ('fully', 1), ('revised', 1), ('series', 1), ('practice', 1), ('question', 1), ('written', 1), ('leading', 1), ('expert', 1), ('certification', 1), ('training', 1), ('self', 1), ('study', 1), ('book', 1), ('thoroughly', 1), ('updated', 1), ('cover', 1), ('topic', 1), ('include', 1), ('managing', 1), ('maintaining', 1), ('cellular', 1), ('device', 1)]
[('coreldraw', 4), ('guide', 3), ('corel', 1), ('authorized', 1), ('updated', 1), ('thoroughly', 1), ('revised', 1), ('offer', 1), ('complete', 1), ('coverage', 1), ('including', 1), ('revamped', 1), ('interface', 1), ('brand', 1), ('new', 1), ('feature', 1), ('official', 1), ('show', 1), ('anyone', 1), ('beginner', 1), ('experienced', 1), ('illustrator', 1), ('create', 1), ('top', 1), ('drawer', 1), ('commercial', 1), ('graphic', 1)]
[('exam', 3), ('guide', 2), ('coverage', 2), ('scsp', 2), ('storage', 2), ('effective', 1), ('self', 1), ('study', 1), ('offer', 1), ('challenging', 1), ('snia', 1), ('certified', 1), ('professional', 1), ('complete', 1), ('objective', 1), ('inside', 1), ('comprehensive', 1), ('resource', 1), ('written', 1), ('eric', 1), ('vanderburg', 1), ('leading', 1), ('expert', 1), ('certification', 1), ('training', 1), ('authoritative', 1), ('cover', 1), ('full', 1)]
[('oracle', 4), ('database', 4), ('release', 3), ('memory', 3), ('step', 2), ('performance', 2), ('master', 1), ('powerful', 1), ('option', 1), ('press', 1), ('guide', 1), ('show', 1), ('optimize', 1), ('cut', 1), ('transaction', 1), ('processing', 1), ('time', 1), ('using', 1), ('tip', 1), ('technique', 1), ('maximum', 1), ('feature', 1), ('hand', 1)]
[('application', 4), ('web', 3), ('oracle', 3), ('apex', 3), ('express', 2), ('data', 2), ('develop', 1), ('robust', 1), ('modern', 1), ('cover', 1), ('easily', 1), ('create', 1), ('reliant', 1), ('reliable', 1), ('scalable', 1), ('dynamic', 1), ('responsive', 1), ('secure', 1), ('using', 1), ('detailed', 1), ('information', 1), ('contained', 1), ('press', 1), ('guide', 1), ('negetiveemoji', 1), ('build', 1), ('powerful', 1), ('centric', 1), ('apps', 1)]
[('publisher', 2), ('product', 2), ('test', 2), ('aphr', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('real', 1), ('first', 1), ('based', 1), ('hr', 1), ('certification', 1), ('institute', 1), ('exam', 1), ('content', 1), ('outline', 1), ('associate', 1), ('professional', 1)]
[('test', 2), ('certification', 2), ('professional', 2), ('exam', 2), ('real', 1), ('first', 1), ('based', 1), ('hr', 1), ('institute', 1), ('senior', 1), ('human', 1), ('resource', 1), ('body', 1), ('knowledge', 1), ('practical', 1), ('guide', 1), ('contains', 1), ('realistic', 1), ('practice', 1), ('question', 1), ('prepare', 1), ('version', 1), ('challenging', 1), ('aid', 1), ('understanding', 1)]
[('publisher', 2), ('product', 2), ('aws', 2), ('certified', 2), ('sysops', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('study', 1), ('guide', 1), ('cover', 1), ('objective', 1), ('administrator', 1), ('associate', 1), ('exam', 1), ('take', 1), ('challenging', 1)]
[('exam', 5), ('review', 3), ('guide', 2), ('accelerated', 2), ('objective', 2), ('comptia', 2), ('pentest', 2), ('effective', 1), ('self', 1), ('study', 1), ('serf', 1), ('certification', 1), ('concise', 1), ('quick', 1), ('test', 1), ('preparation', 1), ('offer', 1), ('coverage', 1), ('new', 1), ('designed', 1), ('key', 1), ('information', 1), ('covered', 1)]
[('cloud', 5), ('google', 3), ('study', 2), ('guide', 2), ('certified', 2), ('associate', 2), ('engineer', 2), ('exam', 2), ('offer', 1), ('coverage', 1), ('every', 1), ('objective', 1), ('take', 1), ('challenging', 1), ('confidence', 1), ('using', 1), ('comprehensive', 1), ('information', 1), ('contained', 1), ('effective', 1), ('self', 1), ('book', 1), ('serf', 1), ('introduction', 1)]
[('information', 3), ('exam', 3), ('cciso', 3), ('coverage', 2), ('certified', 2), ('chief', 2), ('security', 2), ('officer', 2), ('guide', 2), ('every', 1), ('objective', 1), ('ec', 1), ('council', 1), ('take', 1), ('challenging', 1), ('confidence', 1), ('using', 1), ('comprehensive', 1), ('contained', 1), ('effective', 1), ('study', 1), ('provides', 1), ('five', 1)]
[('coverage', 2), ('objective', 2), ('aws', 2), ('solution', 2), ('architect', 2), ('exam', 2), ('date', 1), ('study', 1), ('guide', 1), ('offer', 1), ('every', 1), ('current', 1), ('version', 1), ('certified', 1), ('professional', 1), ('complete', 1), ('included', 1), ('saa', 1), ('comprehensive', 1), ('resource', 1), ('written', 1), ('expert', 1), ('respected', 1), ('author', 1), ('authoritative', 1)]
[('exam', 3), ('ct', 2), ('installation', 2), ('complete', 1), ('date', 1), ('study', 1), ('system', 1), ('published', 1), ('avixa', 1), ('certified', 1), ('technology', 1), ('specialist', 1), ('guide', 1), ('second', 1), ('edition', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('objective', 1), ('leading', 1), ('internationally', 1), ('recognized', 1), ('certification', 1), ('audiovisual', 1), ('professional', 1), ('chapter', 1), ('feature', 1)]
[('resource', 3), ('aphr', 2), ('exam', 2), ('self', 2), ('study', 2), ('practice', 2), ('question', 2), ('pas', 1), ('ease', 1), ('using', 1), ('feature', 1), ('depth', 1), ('along', 1), ('detailed', 1), ('answer', 1), ('explanation', 1), ('prepare', 1), ('version', 1), ('become', 1), ('certified', 1), ('human', 1), ('professional', 1), ('effective', 1), ('contains', 1), ('simulate', 1)]
[('comptia', 3), ('collection', 2), ('cover', 2), ('every', 2), ('security', 2), ('exam', 2), ('current', 2), ('money', 1), ('saving', 1), ('objective', 1), ('contains', 1), ('exclusive', 1), ('bonus', 1), ('content', 1), ('fully', 1), ('updated', 1), ('test', 1), ('preparation', 1), ('bundle', 1), ('topic', 1), ('version', 1), ('designed', 1), ('ultimate', 1), ('self', 1), ('study', 1), ('resource', 1), ('includes', 1), ('edition', 1)]
[('ccsp', 3), ('exam', 3), ('guide', 2), ('fully', 1), ('updated', 1), ('self', 1), ('study', 1), ('delivers', 1), ('coverage', 1), ('topic', 1), ('current', 1), ('version', 1), ('thoroughly', 1), ('revised', 1), ('edition', 1), ('highly', 1), ('effective', 1), ('test', 1), ('preparation', 1), ('cover', 1), ('six', 1), ('domain', 1), ('within', 1), ('body', 1), ('knowledge', 1), ('book', 1), ('offer', 1), ('clear', 1), ('explanation', 1), ('every', 1), ('subject', 1)]
[('exam', 4), ('practice', 3), ('question', 3), ('prepare', 2), ('comptia', 2), ('cloud', 2), ('certification', 2), ('accurate', 1), ('depth', 1), ('answer', 1), ('explanation', 1), ('cv', 1), ('filled', 1), ('realistic', 1), ('including', 1), ('performance', 1), ('based', 1), ('challenging', 1), ('help', 1), ('understand', 1)]
[('exam', 4), ('comptia', 3), ('cloud', 3), ('cv', 2), ('study', 2), ('bundle', 2), ('take', 1), ('confidence', 1), ('using', 1), ('highly', 1), ('effective', 1), ('money', 1), ('saving', 1), ('date', 1), ('self', 1), ('program', 1), ('gather', 1), ('wide', 1), ('variety', 1), ('focused', 1), ('resource', 1), ('use', 1), ('preparation', 1), ('latest', 1), ('edition', 1), ('challenging', 1), ('certification', 1), ('includes', 1)]
[('sql', 4), ('server', 4), ('microsoft', 2), ('linux', 2), ('step', 2), ('high', 2), ('essential', 1), ('installation', 1), ('configuration', 1), ('management', 1), ('technique', 1), ('foreword', 1), ('kalen', 1), ('delaney', 1), ('mvp', 1), ('comprehensive', 1), ('guide', 1), ('show', 1), ('set', 1), ('configure', 1), ('administer', 1), ('performance', 1), ('availability', 1), ('written', 1), ('expert', 1)]
[('exam', 4), ('study', 2), ('pmp', 2), ('aligned', 1), ('pmbok', 1), ('guide', 1), ('sixth', 1), ('edition', 1), ('highly', 1), ('effective', 1), ('money', 1), ('saving', 1), ('bundle', 1), ('prepare', 1), ('integrated', 1), ('system', 1), ('gather', 1), ('wide', 1), ('variety', 1), ('focused', 1), ('resource', 1), ('use', 1), ('preparation', 1), ('latest', 1), ('version', 1), ('challenging', 1), ('designed', 1), ('help', 1), ('reader', 1), ('pas', 1), ('ease', 1)]
[('cysa', 3), ('certification', 2), ('exam', 2), ('study', 2), ('comptia', 2), ('cybersecurity', 2), ('analyst', 2), ('prepare', 1), ('challenging', 1), ('money', 1), ('saving', 1), ('comprehensive', 1), ('package', 1), ('designed', 1), ('complete', 1), ('self', 1), ('program', 1), ('collection', 1), ('offer', 1), ('variety', 1), ('proven', 1), ('resource', 1), ('use', 1), ('preparation', 1), ('comprised', 1)]
[('publisher', 2), ('product', 2), ('note', 1), ('purchased', 1), ('third', 1), ('party', 1), ('seller', 1), ('guaranteed', 1), ('quality', 1), ('authenticity', 1), ('access', 1), ('online', 1), ('entitlement', 1), ('included', 1), ('hundred', 1), ('accurate', 1), ('practice', 1), ('question', 1), ('depth', 1), ('answer', 1), ('explanation', 1), ('use', 1), ('preparation', 1), ('sscp', 1), ('exam', 1), ('highly', 1), ('effective', 1), ('self', 1), ('study', 1), ('guide', 1)]
[('phr', 3), ('sphr', 3), ('exam', 3), ('certification', 2), ('study', 2), ('prepare', 1), ('version', 1), ('money', 1), ('saving', 1), ('comprehensive', 1), ('package', 1), ('designed', 1), ('complete', 1), ('self', 1), ('program', 1), ('collection', 1), ('offer', 1), ('variety', 1), ('proven', 1), ('focused', 1), ('resource', 1), ('use', 1), ('preparation', 1), ('comprised', 1), ('professional', 1), ('human', 1)]
[('mpls', 2), ('vpn', 2), ('master', 1), ('latest', 1), ('solution', 1), ('design', 1), ('deploy', 1), ('troubleshoot', 1), ('advanced', 1), ('large', 1), ('scale', 1), ('network', 1), ('architecture', 1), ('volume', 1), ('ii', 1), ('learn', 1), ('integrate', 1), ('various', 1), ('remote', 1), ('access', 1), ('technology', 1), ('backbone', 1)]
[('managing', 2), ('successfully', 1), ('relationship', 1), ('business', 1), ('technology', 1), ('daunting', 1), ('task', 1), ('faced', 1), ('company', 1), ('twenty', 1), ('first', 1), ('century', 1), ('beyond', 1), ('software', 1), ('architecture', 1), ('practical', 1), ('guide', 1), ('properly', 1), ('mission', 1), ('critical', 1)]
[('programming', 2), ('language', 1), ('built', 1), ('help', 1), ('programmer', 1), ('address', 1), ('challenge', 1), ('modern', 1), ('software', 1), ('development', 1), ('fostering', 1), ('module', 1), ('interconnected', 1), ('precise', 1), ('interface', 1), ('federation', 1), ('tightly', 1), ('integrated', 1), ('paradigm', 1)]
[('common', 2), ('rail', 2), ('code', 2), ('complete', 1), ('guide', 1), ('avoiding', 1), ('fixing', 1), ('design', 1), ('problem', 1), ('developer', 1), ('worldwide', 1), ('adopted', 1), ('powerful', 1), ('ruby', 1), ('web', 1), ('framework', 1), ('many', 1), ('fallen', 1), ('victim', 1), ('mistake', 1), ('reduce', 1), ('quality', 1), ('performance', 1)]
[('business', 3), ('every', 2), ('software', 2), ('profit', 1), ('improved', 1), ('process', 1), ('nbsp', 1), ('leadership', 1), ('teamwork', 1), ('trust', 1), ('discus', 1), ('critical', 1), ('importance', 1), ('knowledge', 1), ('work', 1), ('success', 1), ('modern', 1), ('organization', 1), ('explains', 1)]
[('user', 3), ('software', 2), ('build', 1), ('application', 1), ('website', 1), ('solution', 1), ('feel', 1), ('faster', 1), ('efficient', 1), ('considerate', 1), ('time', 1), ('nbsp', 1), ('hidden', 1), ('factor', 1), ('powerfully', 1), ('influence', 1), ('way', 1), ('react', 1), ('hardware', 1), ('interface', 1), ('ui', 1)]
[('service', 3), ('definitive', 1), ('guide', 1), ('engineering', 1), ('key', 1), ('succeeding', 1), ('oriented', 1), ('architecture', 1), ('soa', 1), ('comprehending', 1), ('meaning', 1), ('significance', 1), ('fundamental', 1), ('building', 1), ('block', 1), ('understanding', 1)]
[('nbsp', 3), ('cisco', 2), ('router', 2), ('switch', 2), ('ccie', 2), ('express', 1), ('forwarding', 1), ('understanding', 1), ('troubleshooting', 1), ('cef', 1), ('nakia', 1), ('stringfield', 1), ('rus', 1), ('white', 1), ('stacia', 1), ('mckee', 1), ('packet', 1), ('difference', 1)]
[('websphere', 2), ('application', 2), ('server', 2), ('jython', 2), ('scripting', 2), ('save', 1), ('time', 1), ('money', 1), ('streamline', 1), ('management', 1), ('nbsp', 1), ('utilizing', 1), ('dramatically', 1), ('reduce', 1), ('effort', 1), ('resource', 1), ('expense', 1), ('associated', 1), ('managing', 1)]
[('scrum', 2), ('nbsp', 2), ('succeed', 1), ('even', 1), ('largest', 1), ('complex', 1), ('distributed', 1), ('development', 1), ('project', 1), ('foreword', 1), ('ken', 1), ('schwaber', 1), ('scott', 1), ('ambler', 1), ('roman', 1), ('pichler', 1), ('matthew', 1), ('wang', 1), ('first', 1), ('comprehensive', 1), ('practical', 1), ('guide', 1), ('practitioner', 1)]
[('exam', 2), ('comptia', 2), ('accelerated', 1), ('coverage', 1), ('every', 1), ('topic', 1), ('version', 1), ('core', 1), ('fast', 1), ('track', 1), ('becoming', 1), ('certified', 1), ('affordable', 1), ('portable', 1), ('study', 1), ('tool', 1), ('inside', 1), ('certification', 1), ('training', 1), ('guru', 1), ('mike', 1), ('meyers', 1), ('ron', 1), ('gilster', 1), ('guide', 1), ('preparation', 1), ('path', 1), ('providing', 1), ('expert', 1), ('tip', 1), ('sound', 1), ('advice', 1), ('along', 1)]
[('zombie', 3), ('build', 2), ('rsquo', 2), ('wanted', 1), ('entire', 1), ('land', 1), ('dedicated', 1), ('battling', 1), ('guide', 1), ('show', 1), ('done', 1), ('inside', 1), ('find', 1), ('idea', 1), ('everything', 1), ('arena', 1), ('infested', 1), ('graveyard', 1), ('undead', 1), ('city', 1)]
[('minecraft', 2), ('official', 1), ('guide', 1), ('exploration', 1), ('help', 1), ('survive', 1), ('learn', 1), ('find', 1), ('resource', 1), ('craft', 1), ('equipment', 1), ('protect', 1), ('hostile', 1), ('mob', 1), ('world', 1), ('waiting', 1), ('explored', 1), ('danger', 1), ('lurks', 1), ('around', 1), ('every', 1)]
[('live', 2), ('longer', 1), ('stronger', 1), ('scientific', 1), ('enhancement', 1), ('wonder', 1), ('technology', 1)]
[('server', 2), ('nginx', 1), ('widely', 1), ('used', 1), ('web', 1), ('available', 1), ('today', 1), ('part', 1), ('itscapabilities', 1), ('load', 1), ('balancer', 1), ('reverse', 1), ('proxy', 1), ('network', 1), ('protocol', 1), ('revised', 1), ('cookbook', 1), ('provides', 1), ('easy', 1), ('follow', 1), ('example', 1), ('real', 1), ('world', 1), ('problem', 1), ('application', 1), ('delivery', 1), ('practical', 1), ('recipe', 1), ('help', 1), ('set', 1), ('use', 1), ('either', 1), ('open', 1)]
[('research', 2), ('fuel', 1), ('innovation', 1), ('focused', 1), ('guide', 1), ('microsoft', 1), ('word', 1), ('help', 1), ('increase', 1), ('team', 1), ('collaborative', 1), ('power', 1), ('effectiveness', 1), ('bring', 1), ('new', 1), ('life', 1), ('writing', 1), ('proposal', 1), ('report', 1), ('journal', 1), ('article', 1), ('thesis', 1)]
[('exam', 2), ('focus', 2), ('prepare', 1), ('microsoft', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('deploying', 1), ('enterprise', 1), ('apps', 1), ('device', 1), ('designed', 1), ('experienced', 1), ('pro', 1), ('ready', 1), ('advance', 1), ('status', 1), ('ref', 1), ('critical', 1), ('thinking', 1), ('decision', 1), ('making', 1), ('acumen', 1), ('needed', 1), ('success', 1), ('mcse', 1), ('level', 1), ('expertise', 1), ('measured', 1)]
[('apache', 2), ('cordova', 2), ('using', 1), ('leverage', 1), ('native', 1), ('technology', 1), ('web', 1), ('standard', 1), ('quickly', 1), ('build', 1), ('cross', 1), ('platform', 1), ('apps', 1), ('mobile', 1), ('device', 1), ('deliver', 1), ('high', 1), ('end', 1), ('user', 1), ('experience', 1), ('matter', 1), ('radically', 1), ('simplifying', 1), ('code', 1), ('maintenance', 1), ('reuse', 1), ('programming', 1), ('concise', 1), ('accessible', 1), ('introduction', 1)]
[('application', 2), ('keep', 1), ('black', 1), ('hat', 1), ('hacker', 1), ('bay', 1), ('tip', 1), ('technique', 1), ('entertaining', 1), ('eye', 1), ('opening', 1), ('book', 1), ('developer', 1), ('learn', 1), ('padlock', 1), ('throughout', 1), ('entire', 1), ('development', 1), ('process', 1), ('designing', 1), ('secure', 1), ('writing', 1)]
[('storage', 2), ('focused', 1), ('pragmatic', 1), ('guidance', 1), ('need', 1), ('build', 1), ('professional', 1), ('cloud', 1), ('application', 1), ('using', 1), ('window', 1), ('azure', 1), ('book', 1), ('centered', 1), ('around', 1), ('capability', 1), ('author', 1), ('provides', 1), ('essential', 1), ('expert', 1), ('coverage', 1), ('four', 1)]
[('microsoft', 2), ('brutal', 1), ('truth', 1), ('coding', 1), ('testing', 1), ('project', 1), ('management', 1), ('insider', 1), ('tell', 1), ('wright', 1), ('deliberately', 1), ('provocative', 1), ('column', 1), ('hard', 1), ('code', 1), ('sparking', 1), ('debate', 1), ('amongst', 1), ('thousand', 1), ('engineer', 1)]
[('engineering', 2), ('blend', 1), ('art', 1), ('innovation', 1), ('rigor', 1), ('technology', 1), ('alone', 1), ('rarely', 1), ('sufficient', 1), ('ensure', 1), ('product', 1), ('success', 1), ('scenario', 1), ('focused', 1), ('customer', 1), ('centric', 1), ('iterative', 1), ('approach', 1), ('used', 1), ('design', 1), ('deliver', 1), ('seamless', 1)]
[('data', 3), ('center', 3), ('far', 2), ('using', 1), ('policy', 1), ('driven', 1), ('approach', 1), ('networking', 1), ('professional', 1), ('accelerate', 1), ('simplify', 1), ('change', 1), ('construction', 1), ('cloud', 1), ('infrastructure', 1), ('delivery', 1), ('new', 1), ('application', 1), ('improve', 1), ('flexibility', 1), ('agility', 1), ('portability', 1), ('deliver', 1), ('business', 1), ('value', 1), ('rapidly', 1), ('guide', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('window', 2), ('virtualisation', 2), ('dive', 1), ('server', 1), ('really', 1), ('put', 1), ('system', 1), ('expertise', 1), ('work', 1), ('focusing', 1), ('virtual', 1), ('desktop', 1), ('infrastructure', 1), ('virtualised', 1), ('application', 1), ('supremely', 1), ('organised', 1), ('reference', 1), ('pack', 1), ('hundred', 1), ('timesaving', 1), ('solution', 1), ('tip', 1), ('workarounds', 1), ('discover', 1), ('expert', 1), ('tackle', 1), ('challenge', 1)]
[('ac', 3), ('new', 1), ('standard', 1), ('enables', 1), ('wlan', 1), ('deliver', 1), ('significantly', 1), ('higher', 1), ('performance', 1), ('network', 1), ('equipment', 1), ('manufacturer', 1), ('refocused', 1), ('compliant', 1), ('solution', 1), ('rapidly', 1), ('moving', 1), ('older', 1), ('version', 1), ('toward', 1), ('legacy', 1), ('status', 1), ('complete', 1), ('guide', 1), ('planning', 1), ('designing', 1), ('installing', 1), ('testing', 1), ('supporting', 1)]
[('devops', 3), ('book', 2), ('practice', 2), ('implication', 2), ('system', 2), ('deployment', 2), ('provides', 1), ('conceptual', 1), ('discussion', 1), ('design', 1), ('cover', 1), ('team', 1), ('related', 1), ('build', 1), ('test', 1), ('post', 1), ('deal', 1), ('includes', 1), ('case', 1), ('study', 1), ('reference', 1), ('practical', 1), ('example', 1), ('checklist', 1)]
[('exam', 2), ('chapter', 2), ('vcp', 1), ('nv', 1), ('official', 1), ('cert', 1), ('guide', 1), ('present', 1), ('organised', 1), ('test', 1), ('preparation', 1), ('routine', 1), ('use', 1), ('proven', 1), ('series', 1), ('element', 1), ('technique', 1), ('know', 1), ('already', 1), ('quiz', 1), ('open', 1), ('allow', 1), ('decide', 1), ('time', 1), ('need', 1), ('spend', 1), ('section', 1), ('topic', 1), ('list', 1), ('make', 1), ('referencing', 1), ('easy', 1), ('ending', 1)]
[('java', 4), ('core', 2), ('long', 1), ('recognised', 1), ('leading', 1), ('nonsense', 1), ('tutorial', 1), ('reference', 1), ('experienced', 1), ('programmer', 1), ('want', 1), ('write', 1), ('robust', 1), ('code', 1), ('real', 1), ('world', 1), ('application', 1), ('volume', 1), ('ii', 1), ('advanced', 1), ('feature', 1), ('nbsp', 1), ('th', 1), ('edition', 1), ('extensively', 1), ('updated', 1), ('reflect', 1), ('eagerly', 1), ('awaited', 1), ('innovative', 1), ('version', 1)]
[('performance', 2), ('common', 2), ('centric', 2), ('world', 1), ('class', 1), ('java', 1), ('expert', 1), ('present', 1), ('detailed', 1), ('information', 1), ('top', 1), ('application', 1), ('tuning', 1), ('bottom', 1), ('hardware', 1), ('o', 1), ('approach', 1), ('solid', 1), ('coverage', 1), ('window', 1), ('linux', 1), ('solaris', 1), ('show', 1), ('improve', 1), ('applying', 1), ('state', 1), ('art', 1), ('software', 1), ('engineering', 1), ('practice', 1), ('avoid', 1), ('mistake', 1)]
[('reference', 1), ('guide', 1), ('safe', 1), ('practitioner', 1), ('lot', 1), ('method', 1), ('scale', 1), ('scaled', 1), ('agile', 1), ('framework', 1), ('lighting', 1), ('world', 1), ('steve', 1), ('elliot', 1), ('founder', 1), ('ceo', 1), ('agilecraft', 1), ('nbsp', 1)]
[('programmer', 2), ('deitel', 2), ('java', 2), ('professional', 1), ('guide', 1), ('powerful', 1), ('platform', 1), ('nbsp', 1), ('written', 1), ('background', 1), ('another', 1), ('high', 1), ('level', 1), ('language', 1), ('book', 1), ('applies', 1), ('signature', 1), ('live', 1), ('code', 1), ('approach', 1), ('teaching', 1)]
[('ebooks', 2), ('note', 2), ('available', 2), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('downloaded', 1), ('computer', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1), ('ipad', 1), ('android', 1), ('apps', 1), ('upon', 1), ('purchase', 1)]
[('medium', 2), ('project', 2), ('technique', 2), ('editing', 2), ('apple', 1), ('certified', 1), ('guide', 1), ('present', 1), ('real', 1), ('world', 1), ('workflow', 1), ('raw', 1), ('finished', 1), ('demonstrate', 1), ('feature', 1), ('final', 1), ('cut', 1), ('pro', 1), ('practical', 1), ('use', 1), ('using', 1), ('professionally', 1), ('acquired', 1), ('utilise', 1), ('tool', 1), ('used', 1), ('editor', 1), ('worldwide', 1), ('revolutionary', 1)]
[('security', 2), ('cisco', 2), ('flexvpn', 2), ('offer', 2), ('interface', 2), ('ikev', 1), ('protocol', 1), ('significantly', 1), ('improves', 1), ('vpn', 1), ('unified', 1), ('paradigm', 1), ('command', 1), ('line', 1), ('taking', 1), ('full', 1), ('advantage', 1), ('simple', 1), ('modular', 1), ('relies', 1), ('extensively', 1), ('tunnel', 1), ('maximising', 1), ('compatibility', 1), ('legacy', 1), ('vpns', 1), ('network', 1), ('expert', 1), ('complete', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('debugging', 3), ('developer', 2), ('effective', 2), ('every', 1), ('software', 1), ('professional', 1), ('understands', 1), ('crucial', 1), ('importance', 1), ('often', 1), ('consumes', 1), ('workday', 1), ('mastering', 1), ('required', 1), ('technique', 1), ('skill', 1), ('take', 1), ('lifetime', 1), ('diomidis', 1), ('spinellis', 1), ('help', 1), ('experienced', 1), ('programmer', 1), ('accelerate', 1), ('journey', 1), ('mastery', 1)]
[('cisco', 3), ('iwan', 3), ('wan', 2), ('using', 1), ('intelligent', 1), ('business', 1), ('deliver', 1), ('uncompromised', 1), ('experience', 1), ('security', 1), ('reliability', 1), ('branch', 1), ('office', 1), ('connection', 1), ('simplifies', 1), ('design', 1), ('improves', 1), ('network', 1), ('responsiveness', 1), ('accelerates', 1), ('deployment', 1), ('new', 1), ('service', 1), ('authoritative', 1), ('single', 1), ('source', 1), ('guide', 1), ('need', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('complex', 2), ('network', 2), ('researcher', 2), ('advance', 1), ('graph', 1), ('signal', 1), ('processing', 1), ('important', 1), ('implication', 1), ('field', 1), ('ranging', 1), ('communication', 1), ('social', 1), ('networking', 1), ('big', 1), ('data', 1), ('biology', 1), ('three', 1), ('pioneering', 1), ('offer', 1), ('balanced', 1), ('date', 1), ('coverage', 1), ('ideal', 1), ('advanced', 1), ('undergraduate', 1), ('graduate', 1), ('student', 1)]
[('false', 3), ('none', 2), ('game', 2), ('step', 2), ('normal', 1), ('en', 1), ('session', 1), ('hour', 1), ('le', 1), ('guide', 1), ('help', 1), ('create', 1), ('platform', 1), ('free', 1), ('godot', 1), ('engine', 1), ('straightforward', 1)]
[('video', 2), ('compression', 2), ('new', 2), ('process', 1), ('forever', 1), ('evolving', 1), ('standard', 1), ('codecs', 1), ('way', 1), ('getting', 1), ('job', 1), ('done', 1), ('continually', 1), ('created', 1), ('newcomer', 1), ('seasoned', 1), ('veteran', 1), ('alike', 1), ('need', 1), ('know', 1), ('harness', 1), ('tool', 1), ('use', 1), ('specific', 1), ('workflow', 1), ('broadcast', 1), ('web', 1), ('blu', 1), ('ray', 1), ('set', 1), ('top', 1), ('box', 1)]
[('step', 4), ('chromebook', 4), ('exactly', 2), ('help', 2), ('instruction', 1), ('callouts', 1), ('google', 1), ('photo', 1), ('show', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1), ('full', 1), ('colour', 1), ('task', 1), ('walk', 1), ('want', 1), ('learn', 1), ('set', 1)]
[('visual', 3), ('guide', 3), ('adobe', 2), ('photoshop', 2), ('quickstart', 2), ('easy', 2), ('learn', 1), ('quick', 1), ('way', 1), ('approach', 1), ('learning', 1), ('concise', 1), ('step', 1), ('explanation', 1), ('using', 1), ('picture', 1)]
[('ebook', 2), ('edition', 2), ('comptia', 1), ('advanced', 1), ('security', 1), ('practitioner', 1), ('casp', 1), ('ca', 1), ('cert', 1), ('guide', 1), ('include', 1), ('access', 1), ('pearson', 1), ('test', 1), ('prep', 1), ('practice', 1), ('exam', 1), ('come', 1), ('print', 1), ('learn', 1), ('prepare', 1)]
[('javascript', 2), ('web', 2), ('need', 1), ('know', 1), ('nothing', 1), ('write', 1), ('beyond', 1), ('play', 1), ('key', 1), ('role', 1), ('modern', 1), ('software', 1), ('development', 1), ('language', 1), ('run', 1), ('inside', 1), ('virtually', 1), ('browser', 1)]
[('reference', 2), ('full', 1), ('color', 1), ('text', 1), ('offer', 1), ('clear', 1), ('complete', 1), ('introduction', 1), ('detailed', 1), ('creating', 1), ('model', 1), ('documentation', 1), ('drawing', 1), ('building', 1), ('reputation', 1), ('trusted', 1), ('edition', 1), ('expands', 1), ('role', 1), ('cad', 1), ('database', 1)]
[('user', 1), ('experience', 1), ('design', 1), ('multifaceted', 1), ('discipline', 1), ('shaping', 1), ('digital', 1), ('product', 1), ('system', 1), ('tool', 1), ('useful', 1), ('usable', 1), ('success', 1), ('ux', 1), ('designer', 1), ('extends', 1), ('beyond', 1), ('knowledge', 1), ('latest', 1), ('technology', 1), ('involves', 1)]
[('microsoft', 2), ('exam', 2), ('prepare', 1), ('az', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('architecting', 1), ('high', 1), ('value', 1), ('azure', 1), ('solution', 1), ('organization', 1), ('customer', 1), ('designed', 1), ('modern', 1), ('professional', 1), ('ref', 1), ('focus', 1), ('critical', 1)]
[('video', 3), ('chat', 3), ('step', 2), ('popular', 2), ('google', 2), ('full', 1), ('colour', 1), ('task', 1), ('walk', 1), ('getting', 1), ('consumer', 1), ('apps', 1), ('service', 1), ('learn', 1), ('use', 1), ('keep', 1), ('touch', 1), ('friend', 1), ('family', 1), ('co', 1), ('worker', 1), ('discover', 1), ('difference', 1), ('platform', 1), ('apple', 1), ('facetime', 1), ('facebook', 1), ('messenger', 1), ('duo', 1)]
[('equinox', 2), ('osgi', 2), ('hand', 1), ('guide', 1), ('framework', 1), ('creating', 1), ('highly', 1), ('modular', 1), ('java', 1), ('system', 1), ('three', 1), ('leading', 1), ('expert', 1), ('show', 1), ('developer', 1), ('first', 1), ('time', 1), ('exactly', 1), ('make', 1), ('breakthrough', 1), ('technology', 1), ('building', 1)]
[('developer', 2), ('agility', 1), ('discipline', 1), ('apparently', 1), ('opposite', 1), ('attribute', 1), ('fact', 1), ('complementary', 1), ('value', 1), ('software', 1), ('development', 1), ('plan', 1), ('driven', 1), ('agile', 1), ('nimble', 1), ('disciplined', 1), ('key', 1), ('success', 1), ('finding', 1), ('right', 1)]
[('productivity', 2), ('quality', 2), ('mdd', 2), ('dsl', 2), ('achieve', 1), ('breakthrough', 1), ('eclipse', 1), ('based', 1), ('nbsp', 1), ('domain', 1), ('specific', 1), ('language', 1), ('model', 1), ('driven', 1), ('development', 1), ('offer', 1), ('software', 1), ('engineer', 1), ('powerful', 1), ('new', 1), ('way', 1), ('improve', 1), ('enhance', 1)]
[('driver', 2), ('chapter', 1), ('programming', 1), ('kmdf', 1), ('hardware', 1), ('provides', 1), ('example', 1), ('reader', 1), ('see', 1), ('made', 1), ('patrick', 1), ('regan', 1), ('network', 1), ('administrator', 1), ('pacific', 1), ('coast', 1), ('company', 1), ('nbsp', 1), ('first', 1), ('authoritative', 1), ('guide', 1), ('writing', 1), ('robust', 1)]
[('start', 2), ('page', 2), ('programmer', 1), ('need', 1), ('book', 1), ('day', 1), ('add', 1), ('new', 1), ('feature', 1), ('line', 1), ('program', 1), ('understand', 1), ('simplify', 1), ('inscrutable', 1), ('piece', 1), ('code', 1)]
[('security', 2), ('nbsp', 1), ('java', 1), ('world', 1), ('viewed', 1), ('add', 1), ('feature', 1), ('pervasive', 1), ('way', 1), ('thinking', 1), ('forget', 1), ('think', 1), ('secure', 1), ('mindset', 1), ('end', 1), ('trouble', 1), ('facility', 1), ('mean', 1)]
[('dialogue', 2), ('creative', 2), ('legend', 1), ('find', 1), ('answer', 1), ('perplexing', 1), ('question', 1), ('talented', 1), ('confront', 1), ('emerge', 1), ('startling', 1), ('range', 1), ('idea', 1), ('beginning', 1), ('career', 1), ('developing', 1), ('client', 1), ('relationship', 1)]
[('design', 2), ('forget', 1), ('fixed', 1), ('width', 1), ('photoshop', 1), ('comp', 1), ('bloated', 1), ('client', 1), ('requirement', 1), ('overproduced', 1), ('wireframes', 1), ('yesterday', 1), ('web', 1), ('deliverable', 1), ('fail', 1), ('take', 1), ('account', 1), ('demand', 1), ('responsive', 1), ('solution', 1), ('workflow', 1), ('really', 1), ('changed', 1), ('best', 1)]
[('tool', 3), ('artist', 2), ('today', 1), ('use', 1), ('digital', 1), ('allow', 1), ('work', 1), ('naturally', 1), ('spontaneously', 1), ('using', 1), ('traditional', 1), ('pastel', 1), ('watercolour', 1), ('oil', 1), ('medium', 1), ('gouache', 1), ('recent', 1), ('growth', 1), ('tablet', 1), ('market', 1), ('sophisticated', 1), ('feature', 1), ('available', 1), ('increased', 1), ('desire', 1)]
[('email', 2), ('security', 2), ('cisco', 2), ('ironport', 2), ('thoroughly', 1), ('illuminates', 1), ('performance', 1), ('challenge', 1), ('associated', 1), ('today', 1), ('messaging', 1), ('environment', 1), ('show', 1), ('systematically', 1), ('anticipate', 1), ('respond', 1), ('using', 1)]
[('opengl', 2), ('includes', 1), ('complete', 1), ('coverage', 1), ('shading', 1), ('language', 1), ('nbsp', 1), ('today', 1), ('software', 1), ('interface', 1), ('enables', 1), ('programmer', 1), ('produce', 1), ('extraordinarily', 1), ('high', 1), ('quality', 1), ('computer', 1), ('generated', 1), ('image', 1), ('interactive', 1), ('application', 1), ('using', 1), ('object', 1), ('color', 1)]
[('test', 2), ('driven', 2), ('development', 2), ('tdd', 2), ('practice', 1), ('helped', 1), ('thousand', 1), ('software', 1), ('developer', 1), ('improve', 1), ('quality', 1), ('agility', 1), ('productivity', 1), ('speed', 1), ('database', 1), ('max', 1), ('guernsey', 1), ('ii', 1), ('show', 1), ('adapt', 1), ('achieve', 1), ('powerful', 1)]
[('web', 2), ('rest', 2), ('definitive', 1), ('guide', 1), ('building', 1), ('centric', 1), ('soa', 1), ('world', 1), ('wide', 1), ('based', 1), ('successful', 1), ('technology', 1), ('architecture', 1), ('history', 1), ('nbsp', 1), ('changed', 1), ('view', 1), ('access', 1), ('exchange', 1), ('information', 1), ('advent', 1)]
[('ibm', 3), ('ims', 3), ('system', 2), ('definitive', 1), ('stop', 1), ('guide', 1), ('version', 1), ('every', 1), ('dba', 1), ('developer', 1), ('programmer', 1), ('nbsp', 1), ('top', 1), ('fortune', 1), ('company', 1), ('rely', 1), ('information', 1), ('management', 1), ('critical', 1)]
[('agile', 3), ('development', 2), ('today', 1), ('even', 1), ('largest', 1), ('organisation', 1), ('turning', 1), ('methodology', 1), ('seeking', 1), ('major', 1), ('productivity', 1), ('quality', 1), ('improvement', 1), ('large', 1), ('scale', 1), ('difficult', 1), ('publicly', 1), ('available', 1), ('case', 1), ('study', 1), ('scarce', 1), ('three', 1), ('pioneer', 1), ('hewlett', 1), ('packard', 1), ('present', 1), ('candid', 1), ('start', 1), ('finish', 1), ('insider', 1), ('look', 1)]
[('data', 3), ('center', 3), ('virtualization', 3), ('challenge', 2), ('fundamental', 1), ('many', 1), ('organization', 1), ('today', 1), ('greatest', 1), ('drive', 1), ('value', 1), ('efficiency', 1), ('utilization', 1), ('best', 1), ('way', 1), ('meet', 1)]
[('software', 2), ('engineering', 2), ('nbsp', 1), ('semat', 1), ('method', 1), ('theory', 1), ('international', 1), ('initiative', 1), ('designed', 1), ('identify', 1), ('common', 1), ('ground', 1), ('universal', 1), ('standard', 1), ('supported', 1), ('distinguished', 1), ('contributor', 1)]
[('ssl', 3), ('nbsp', 3), ('ccie', 2), ('cisco', 2), ('solution', 2), ('remote', 1), ('access', 1), ('vpns', 1), ('introduction', 1), ('designing', 1), ('configuring', 1), ('virtual', 1), ('private', 1), ('network', 1), ('jazib', 1), ('frahim', 1), ('qiang', 1), ('huang', 1), ('vpn', 1), ('formerly', 1), ('known', 1), ('webvpn', 1), ('give', 1)]
[('core', 2), ('animation', 2), ('interface', 2), ('technology', 1), ('underlying', 1), ('apple', 1), ('io', 1), ('user', 1), ('unleashing', 1), ('full', 1), ('power', 1), ('enhance', 1), ('app', 1), ('impressive', 1), ('visual', 1), ('effect', 1), ('create', 1), ('exciting', 1), ('unique', 1), ('new', 1)]
[('modern', 2), ('cisco', 2), ('unified', 2), ('communication', 2), ('support', 2), ('master', 1), ('foundation', 1), ('uc', 1), ('system', 1), ('security', 1), ('guide', 1), ('help', 1), ('build', 1), ('foundational', 1), ('knowledge', 1), ('securing', 1), ('environment', 1), ('voice', 1), ('video', 1), ('messaging', 1), ('meeting', 1), ('different', 1), ('type', 1), ('real', 1), ('time', 1), ('collaboration', 1), ('capability', 1), ('based', 1), ('mobile', 1), ('remote', 1)]
[('azure', 3), ('security', 2), ('center', 2), ('reflecting', 1), ('update', 1), ('fall', 1), ('book', 1), ('present', 1), ('comprehensive', 1), ('technique', 1), ('safeguarding', 1), ('cloud', 1), ('hybrid', 1), ('environment', 1), ('leading', 1), ('microsoft', 1), ('expert', 1), ('yuri', 1), ('diogenes', 1), ('tomjanetscheck', 1), ('help', 1), ('student', 1), ('apply', 1), ('robust', 1), ('protection', 1), ('detection', 1), ('response', 1), ('capability', 1), ('key', 1), ('operational', 1), ('scenario', 1)]
[('step', 2), ('visual', 2), ('master', 1), ('adobe', 1), ('friendliest', 1), ('tool', 1), ('editing', 1), ('photo', 1), ('making', 1), ('digital', 1), ('artwork', 1), ('photoshop', 1), ('element', 1), ('quickly', 1), ('easily', 1), ('tutorial', 1), ('full', 1), ('color', 1), ('image', 1), ('quickstart', 1), ('guide', 1), ('provide', 1), ('easy', 1), ('approach', 1), ('learning', 1)]
[('knowledge', 2), ('hacking', 2), ('scanning', 2), ('chuck', 1), ('easttom', 1), ('assumes', 1), ('prior', 1), ('student', 1), ('little', 1), ('experience', 1), ('ethical', 1), ('penetration', 1), ('testing', 1), ('obtain', 1), ('need', 1), ('take', 1), ('pas', 1), ('exam', 1), ('thoroughly', 1), ('cover', 1), ('every', 1), ('ceh', 1), ('topic', 1), ('including', 1), ('reconnaissance', 1), ('enumeration', 1), ('vulnerability', 1), ('system', 1), ('session', 1)]
[('ai', 2), ('first', 1), ('practical', 1), ('guide', 1), ('operationalizing', 1), ('responsible', 1), ('mul', 1), ('ti', 1), ('level', 1), ('governance', 1), ('mechanism', 1), ('concrete', 1), ('design', 1), ('pattern', 1), ('software', 1), ('engineering', 1), ('technique', 1), ('nbsp', 1), ('solving', 1), ('real', 1), ('world', 1), ('challenge', 1), ('transforming', 1), ('industry', 1), ('yet', 1)]
[('java', 2), ('looking', 1), ('deeper', 1), ('understanding', 1), ('programming', 1), ('language', 1), ('write', 1), ('code', 1), ('clearer', 1), ('correct', 1), ('robust', 1), ('reusable', 1), ('look', 1), ('effective', 1), ('second', 1), ('edition', 1), ('brings', 1)]
[('refactoring', 2), ('definitive', 1), ('guide', 1), ('fully', 1), ('revamped', 1), ('ruby', 1), ('nbsp', 1), ('programmer', 1), ('transform', 1), ('even', 1), ('chaotic', 1), ('software', 1), ('designed', 1), ('system', 1), ('far', 1), ('easier', 1), ('evolve', 1), ('maintain', 1), ('step', 1)]
[('type', 2), ('official', 1), ('guide', 1), ('adobe', 1), ('library', 1), ('choosing', 1), ('right', 1), ('design', 1), ('hardest', 1), ('part', 1), ('job', 1), ('digital', 1), ('designer', 1), ('thousand', 1), ('font', 1), ('available', 1), ('choice', 1), ('overwhelming', 1)]
[('db', 3), ('information', 2), ('ibm', 2), ('developer', 1), ('guide', 1), ('field', 1), ('go', 1), ('source', 1), ('job', 1), ('programming', 1), ('administering', 1), ('o', 1), ('mainframe', 1), ('three', 1), ('time', 1), ('champion', 1), ('craig', 1), ('mullins', 1), ('thoroughly', 1), ('updated', 1), ('classic', 1)]
[('algorithm', 2), ('despite', 1), ('growing', 1), ('interest', 1), ('basic', 1), ('information', 1), ('method', 1), ('model', 1), ('mathematically', 1), ('analysing', 1), ('rarely', 1), ('directly', 1), ('accessible', 1), ('practitioner', 1), ('researcher', 1), ('student', 1), ('introduction', 1), ('analysis', 1), ('organises', 1), ('present', 1), ('knowledge', 1), ('fully', 1), ('introducing', 1), ('primary', 1), ('technique', 1), ('result', 1), ('field', 1), ('author', 1)]
[('adobe', 4), ('training', 3), ('premiere', 2), ('pro', 2), ('book', 2), ('series', 2), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('classroom', 1), ('best', 1), ('selling', 1), ('hand', 1), ('software', 1), ('workbook', 1), ('offer', 1), ('program', 1), ('official', 1), ('developed', 1), ('support', 1), ('product', 1), ('expert', 1), ('nbsp', 1)]
[('exam', 2), ('prepare', 1), ('updated', 1), ('version', 1), ('microsoft', 1), ('md', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('skill', 1), ('andknowledge', 1), ('required', 1), ('deploy', 1), ('configure', 1), ('maintain', 1), ('window', 1), ('device', 1), ('andtechnologies', 1), ('enterprise', 1), ('environment', 1), ('organizes', 1), ('coverage', 1), ('objective', 1), ('feature', 1), ('strategic', 1), ('scenario', 1), ('challenge', 1), ('assumes', 1)]
[('autocad', 2), ('drawing', 2), ('step', 2), ('engineering', 1), ('graphic', 1), ('award', 1), ('winning', 1), ('cad', 1), ('instructor', 1), ('author', 1), ('james', 1), ('bethune', 1), ('teach', 1), ('technical', 1), ('using', 1), ('instrument', 1), ('taking', 1), ('approach', 1), ('textbook', 1), ('encourages', 1), ('student', 1), ('work', 1)]
[('teach', 1), ('fundamental', 1), ('ado', 1), ('net', 1), ('step', 1), ('time', 1), ('practical', 1), ('learn', 1), ('tutorial', 1), ('clear', 1), ('guidance', 1), ('hand', 1), ('example', 1), ('need', 1), ('start', 1), ('creating', 1), ('datacentric', 1), ('application', 1), ('window', 1), ('web', 1)]
[('vmware', 2), ('practice', 2), ('trust', 1), ('official', 1), ('cert', 1), ('guide', 1), ('series', 1), ('press', 1), ('help', 1), ('learn', 1), ('prepare', 1), ('exam', 1), ('success', 1), ('authorized', 1), ('self', 1), ('study', 1), ('book', 1), ('built', 1), ('objective', 1), ('providing', 1), ('assessment', 1), ('review', 1)]
[('java', 4), ('language', 2), ('written', 1), ('inventor', 1), ('technology', 1), ('specification', 1), ('se', 1), ('edition', 1), ('definitive', 1), ('technical', 1), ('reference', 1), ('programming', 1), ('nbsp', 1), ('book', 1), ('provides', 1), ('complete', 1), ('accurate', 1), ('detailed', 1), ('coverage', 1)]
[('privacy', 2), ('senior', 2), ('step', 2), ('online', 1), ('exceptionally', 1), ('easy', 1), ('complete', 1), ('guide', 1), ('protecting', 1), ('take', 1), ('advantage', 1), ('extraordinary', 1), ('resource', 1), ('available', 1), ('internet', 1), ('mobile', 1), ('device', 1), ('approach', 1), ('every', 1), ('topic', 1), ('point', 1), ('view', 1), ('using', 1), ('meaningful', 1), ('example', 1), ('task', 1), ('large', 1), ('text', 1), ('close', 1)]
[('lpic', 4), ('guide', 2), ('authorized', 1), ('cert', 1), ('single', 1), ('goal', 1), ('help', 1), ('pas', 1), ('new', 1), ('version', 1), ('linux', 1), ('professional', 1), ('institute', 1), ('exam', 1), ('comprehensive', 1), ('time', 1), ('efficient', 1), ('study', 1), ('available', 1), ('extraordinarily', 1), ('cost', 1), ('effective', 1), ('alternative', 1), ('expensive', 1), ('training', 1), ('perfect', 1), ('resource', 1), ('candidate', 1), ('authored', 1)]
[('ebook', 2), ('edition', 2), ('ccnp', 1), ('security', 1), ('cisco', 1), ('secure', 1), ('firewall', 1), ('intrusion', 1), ('prevention', 1), ('system', 1), ('official', 1), ('cert', 1), ('guide', 1), ('include', 1), ('access', 1), ('companion', 1), ('website', 1), ('practice', 1), ('exam', 1), ('come', 1), ('print', 1)]
[('step', 2), ('cover', 1), ('ipads', 1), ('running', 1), ('ipados', 1), ('easy', 1), ('clear', 1), ('readable', 1), ('focused', 1), ('want', 1), ('instruction', 1), ('task', 1), ('care', 1), ('large', 1), ('full', 1), ('color', 1), ('close', 1), ('photo', 1), ('show', 1), ('exactly', 1)]
[('react', 3), ('javascript', 2), ('today', 1), ('popular', 1), ('open', 1), ('source', 1), ('library', 1), ('front', 1), ('end', 1), ('web', 1), ('application', 1), ('development', 1), ('programming', 1), ('big', 1), ('nerd', 1), ('ranch', 1), ('guide', 1), ('help', 1), ('programmer', 1), ('experience', 1), ('html', 1), ('cs', 1), ('master', 1), ('hand', 1)]
[('certification', 3), ('comptia', 2), ('linux', 2), ('xk', 2), ('cert', 2), ('guide', 2), ('pearson', 2), ('learn', 1), ('prepare', 1), ('practice', 1), ('exam', 1), ('success', 1), ('leader', 1), ('learning', 1), ('nbsp', 1), ('help', 1)]
[('software', 2), ('clearly', 1), ('written', 1), ('book', 1), ('useful', 1), ('primer', 1), ('complicated', 1), ('set', 1), ('topic', 1), ('caper', 1), ('jones', 1), ('chief', 1), ('scientist', 1), ('emeritus', 1), ('productivity', 1), ('research', 1), ('llc', 1), ('practical', 1), ('estimation', 1), ('brings', 1), ('together', 1), ('today', 1), ('valuable', 1), ('tip', 1)]
[('exam', 2), ('prepare', 1), ('microsoft', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('exchange', 1), ('server', 1), ('planning', 1), ('deployment', 1), ('migration', 1), ('management', 1), ('troubleshooting', 1), ('designed', 1), ('experienced', 1), ('pro', 1), ('ready', 1), ('advance', 1), ('status', 1), ('ref', 1), ('focus', 1), ('critical', 1), ('thinking', 1), ('decision', 1), ('making', 1), ('acumen', 1), ('needed', 1), ('success', 1), ('mcse', 1), ('level', 1)]
[('cloud', 3), ('complete', 1), ('guide', 1), ('building', 1), ('based', 1), ('service', 1), ('native', 1), ('go', 1), ('show', 1), ('developer', 1), ('build', 1), ('massive', 1), ('application', 1), ('meet', 1), ('insatiable', 1), ('demand', 1), ('today', 1), ('customer', 1), ('dynamically', 1), ('scale', 1), ('handle', 1), ('virtually', 1), ('volume', 1)]
[('network', 3), ('threat', 2), ('cisco', 2), ('security', 2), ('expert', 2), ('emerging', 1), ('changing', 1), ('faster', 1), ('next', 1), ('generation', 1), ('technology', 1), ('give', 1), ('visibility', 1), ('control', 1), ('need', 1), ('anticipate', 1), ('meet', 1), ('tomorrow', 1), ('wherever', 1), ('appear', 1), ('three', 1), ('introduce', 1), ('product', 1), ('solution', 1), ('offer', 1), ('guidance', 1)]
[('java', 5), ('accessible', 1), ('guide', 1), ('language', 1), ('library', 1), ('nbsp', 1), ('modern', 1), ('introduces', 1), ('major', 1), ('enhancement', 1), ('impact', 1), ('core', 1), ('technology', 1), ('apis', 1), ('heart', 1), ('platform', 1), ('many', 1), ('old', 1), ('idiom', 1), ('longer', 1), ('needed', 1), ('new', 1), ('feature', 1)]
[('nbsp', 16), ('investigating', 1), ('cyber', 1), ('breach', 1), ('digital', 1), ('forensics', 1), ('guide', 1), ('network', 1), ('engineer', 1), ('understand', 1), ('reality', 1), ('cybercrime', 1), ('today', 1), ('attack', 1)]
[('sql', 4), ('server', 4), ('inside', 1), ('authoritative', 1), ('depth', 1), ('reference', 1), ('every', 1), ('working', 1), ('database', 1), ('administrator', 1), ('responsible', 1), ('planning', 1), ('implementing', 1), ('managing', 1), ('production', 1), ('environment', 1), ('premise', 1), ('cloud', 1), ('hybrid', 1), ('emphasising', 1), ('newest', 1), ('feature', 1), ('including', 1), ('running', 1), ('linux', 1), ('four', 1), ('leading', 1), ('microsoft', 1)]
[('adobe', 3), ('photoshop', 3), ('lightroom', 3), ('classic', 2), ('cc', 2), ('book', 2), ('step', 2), ('digital', 1), ('photographer', 1), ('amateur', 1), ('pro', 1), ('seek', 1), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('choose', 1), ('classroom', 1), ('press', 1), ('project', 1), ('based', 1), ('lesson', 1), ('show', 1), ('user', 1), ('key', 1), ('technique', 1), ('working', 1)]
[('cybersecurity', 2), ('course', 2), ('linux', 2), ('fundamental', 2), ('lab', 1), ('accompany', 1), ('textbook', 1), ('developed', 1), ('used', 1), ('within', 1), ('pearson', 1), ('curriculum', 1), ('itcc', 1), ('introduces', 1), ('concept', 1), ('proper', 1), ('set', 1), ('installation', 1), ('administration', 1), ('account', 1), ('device', 1), ('service', 1), ('process', 1), ('function', 1), ('cover', 1)]
[('data', 4), ('network', 3), ('need', 2), ('professional', 1), ('capture', 1), ('immense', 1), ('amount', 1), ('buried', 1), ('multiple', 1), ('opportunity', 1), ('solve', 1), ('avoid', 1), ('problem', 1), ('strengthen', 1), ('security', 1), ('improve', 1), ('performance', 1), ('achieve', 1), ('goal', 1), ('networking', 1), ('expert', 1), ('solid', 1), ('understanding', 1), ('science', 1), ('scientist', 1), ('firm', 1), ('grasp', 1)]
[('complete', 1), ('guide', 1), ('deploying', 1), ('operating', 1), ('sbc', 1), ('solution', 1), ('including', 1), ('cisco', 1), ('unified', 1), ('border', 1), ('element', 1), ('cube', 1), ('enterprise', 1), ('service', 1), ('provider', 1), ('network', 1), ('increasingly', 1), ('adopting', 1), ('sip', 1), ('guiding', 1), ('protocol', 1), ('session', 1), ('management', 1), ('require', 1)]
[('software', 3), ('documentation', 3), ('necessary', 1), ('evil', 1), ('come', 1), ('life', 1), ('evolve', 1), ('stay', 1), ('dynamic', 1), ('actually', 1), ('help', 1), ('build', 1), ('better', 1), ('concise', 1), ('guide', 1), ('introduces', 1), ('thoroughly', 1), ('illuminates', 1), ('concept', 1), ('living', 1), ('change', 1), ('pace', 1), ('design', 1), ('development', 1), ('establishment', 1), ('business', 1)]
[('photoshop', 2), ('mastering', 2), ('hidden', 1), ('power', 1), ('adobe', 1), ('photographer', 1), ('tool', 1), ('path', 1), ('towards', 1), ('art', 1), ('renowned', 1), ('teacher', 1), ('scott', 1), ('valentine', 1), ('combine', 1), ('expert', 1), ('recipe', 1), ('instruction', 1), ('insightful', 1), ('technical', 1)]
[('computer', 4), ('design', 4), ('graphic', 4), ('aided', 2), ('cad', 2), ('interior', 2), ('space', 2), ('planning', 2), ('autocad', 2), ('course', 1), ('architectural', 1), ('introduction', 1), ('help', 1), ('student', 1), ('understand', 1), ('command', 1), ('feature', 1), ('demonstrates', 1)]
[('microsoft', 3), ('azure', 2), ('security', 2), ('cloud', 2), ('following', 1), ('approach', 1), ('press', 1), ('widely', 1), ('praised', 1), ('sentinel', 1), ('center', 1), ('author', 1), ('begin', 1), ('thoughtful', 1), ('overview', 1), ('network', 1), ('domain', 1), ('importance', 1), ('next', 1), ('present', 1), ('detailed', 1), ('chapter', 1), ('native', 1), ('solution', 1), ('firewalling', 1), ('ddos', 1), ('waf', 1)]
[('microsoft', 2), ('security', 2), ('prepare', 1), ('exam', 1), ('az', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('knowledge', 1), ('azure', 1), ('including', 1), ('tool', 1), ('technique', 1), ('protecting', 1), ('identity', 1), ('access', 1), ('platform', 1), ('data', 1), ('application', 1), ('effectively', 1), ('managing', 1)]
[('azure', 6), ('service', 3), ('compute', 2), ('guide', 1), ('leading', 1), ('consultant', 1), ('present', 1), ('deep', 1), ('dive', 1), ('best', 1), ('strategy', 1), ('planning', 1), ('design', 1), ('deployment', 1), ('operation', 1), ('avinash', 1), ('valiramani', 1), ('cover', 1), ('vms', 1), ('scale', 1), ('set', 1), ('app', 1), ('fabric', 1), ('container', 1), ('instance', 1), ('kubernetes', 1), ('function', 1), ('batch', 1), ('major', 1)]
[('cloud', 3), ('microsoft', 2), ('defender', 2), ('definitive', 1), ('practical', 1), ('guide', 1), ('covering', 1), ('new', 1), ('component', 1), ('multi', 1), ('enhancement', 1), ('offer', 1), ('comprehensive', 1), ('tool', 1), ('hardening', 1), ('resource', 1), ('tracking', 1), ('security', 1), ('posture', 1), ('protecting', 1)]
[('step', 2), ('content', 2), ('essential', 1), ('guide', 1), ('meghan', 1), ('casey', 1), ('outline', 1), ('approach', 1), ('successful', 1), ('strategy', 1), ('planning', 1), ('creating', 1), ('delivering', 1), ('managing', 1), ('armed', 1), ('book', 1), ('confidently', 1), ('tackle', 1), ('difficult', 1), ('activity', 1)]
[('leverage', 2), ('serverless', 2), ('mindset', 2), ('build', 1), ('deploy', 1), ('software', 1), ('faster', 1), ('better', 1), ('le', 1), ('expense', 1), ('definitive', 1), ('guide', 1), ('joseph', 1), ('emison', 1), ('show', 1), ('maximum', 1), ('customer', 1), ('value', 1), ('reveals', 1), ('crucial', 1)]
[('cad', 2), ('full', 1), ('color', 1), ('text', 1), ('offer', 1), ('clear', 1), ('introduction', 1), ('detailed', 1), ('reference', 1), ('creating', 1), ('interpreting', 1), ('technical', 1), ('drawing', 1), ('whether', 1), ('using', 1), ('modeling', 1), ('important', 1), ('role', 1), ('database', 1), ('play', 1), ('design', 1), ('documentation', 1), ('central', 1)]
[('step', 2), ('easy', 1), ('clear', 1), ('readable', 1), ('focused', 1), ('want', 1), ('nbsp', 1), ('instruction', 1), ('task', 1), ('care', 1), ('large', 1), ('full', 1), ('color', 1), ('close', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('common', 1), ('sense', 1), ('help', 1), ('whenever', 1), ('run', 1), ('problem', 1), ('tip', 1)]
[('edition', 2), ('drawing', 2), ('reference', 2), ('documentation', 2), ('th', 1), ('giesecke', 1), ('technical', 1), ('engineering', 1), ('graphic', 1), ('comprehensive', 1), ('introduction', 1), ('detailed', 1), ('creating', 1), ('model', 1), ('expanding', 1), ('reputation', 1), ('trusted', 1), ('expands', 1), ('role', 1), ('cad', 1), ('database', 1), ('play', 1), ('design', 1), ('text', 1)]
[('game', 3), ('create', 1), ('video', 1), ('start', 1), ('solid', 1), ('design', 1), ('designed', 1), ('easier', 1), ('build', 1), ('entertaining', 1), ('better', 1), ('chance', 1), ('succeeding', 1), ('marketplace', 1), ('teach', 1), ('essential', 1), ('skill', 1), ('player', 1), ('centric', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('opengl', 1), ('e', 1), ('industry', 1), ('leading', 1), ('software', 1), ('interface', 1), ('graphic', 1), ('library', 1), ('rendering', 1), ('sophisticated', 1)]
[('software', 3), ('security', 3), ('art', 2), ('testing', 2), ('date', 2), ('state', 1), ('expert', 1), ('comprehensive', 1), ('nbsp', 1), ('delivers', 1), ('depth', 1), ('battle', 1), ('tested', 1), ('technique', 1), ('anticipating', 1), ('identifying', 1), ('problem', 1)]
[('window', 3), ('debugging', 3), ('first', 1), ('depth', 1), ('real', 1), ('world', 1), ('insider', 1), ('guide', 1), ('powerful', 1), ('nbsp', 1), ('developer', 1), ('task', 1), ('challenging', 1), ('crucial', 1), ('reliable', 1), ('realistic', 1), ('information', 1), ('always', 1)]
[('garageband', 2), ('tool', 2), ('ipad', 1), ('truly', 1), ('revolutionary', 1), ('inspires', 1), ('music', 1), ('maker', 1), ('anyone', 1), ('making', 1), ('song', 1), ('creation', 1), ('simple', 1), ('fun', 1), ('book', 1), ('see', 1), ('use', 1), ('unique', 1), ('make', 1), ('easy', 1), ('explore', 1), ('musical', 1), ('concept', 1), ('rhythm', 1)]
[('fit', 3), ('example', 2), ('open', 1), ('source', 1), ('testing', 1), ('framework', 1), ('brings', 1), ('unprecedented', 1), ('agility', 1), ('entire', 1), ('development', 1), ('process', 1), ('developing', 1), ('software', 1), ('show', 1), ('use', 1), ('clarify', 1), ('business', 1), ('rule', 1), ('express', 1), ('concrete', 1), ('organize', 1)]
[('need', 2), ('software', 2), ('develop', 1), ('flexible', 1), ('customized', 1), ('quickly', 1), ('add', 1), ('power', 1), ('efficiency', 1), ('framework', 1), ('adaptive', 1), ('communication', 1), ('environment', 1), ('ace', 1), ('open', 1), ('source', 1), ('toolkit', 1), ('building', 1)]
[('book', 2), ('business', 2), ('every', 1), ('senior', 1), ('executive', 1), ('need', 1), ('robert', 1), ('musson', 1), ('vice', 1), ('president', 1), ('strategy', 1), ('cenus', 1), ('technology', 1), ('informative', 1), ('person', 1), ('technologist', 1), ('associated', 1), ('involved', 1), ('software', 1)]
[('complete', 1), ('guide', 1), ('designing', 1), ('implementing', 1), ('supporting', 1), ('state', 1), ('art', 1), ('certificate', 1), ('based', 1), ('identity', 1), ('solution', 1), ('pki', 1), ('nbsp', 1), ('layered', 1), ('approach', 1), ('designed', 1), ('help', 1), ('reader', 1), ('widely', 1), ('diverse', 1), ('background', 1), ('quickly', 1), ('learn', 1), ('need', 1)]
[('wireless', 3), ('access', 2), ('nbsp', 1), ('complete', 1), ('guide', 1), ('deploying', 1), ('running', 1), ('troubleshooting', 1), ('network', 1), ('cisco', 1), ('lan', 1), ('controller', 1), ('wlcs', 1), ('lightweight', 1), ('point', 1), ('protocol', 1), ('lwapp', 1), ('control', 1), ('provisioning', 1)]
[('processor', 2), ('using', 1), ('new', 1), ('opencl', 1), ('open', 1), ('computing', 1), ('language', 1), ('standard', 1), ('write', 1), ('application', 1), ('access', 1), ('available', 1), ('programming', 1), ('resource', 1), ('cpu', 1), ('gpus', 1), ('dsps', 1), ('cell', 1), ('already', 1), ('implemented', 1), ('apple', 1), ('amd', 1)]
[('technical', 3), ('skill', 3), ('crucial', 2), ('non', 2), ('software', 2), ('architect', 2), ('master', 1), ('every', 1), ('need', 1), ('nbsp', 1), ('thousand', 1), ('professional', 1), ('necessary', 1), ('qualification', 1), ('become', 1), ('far', 1), ('fewer', 1), ('needed', 1), ('hired', 1), ('succeed', 1), ('role', 1), ('today', 1), ('agile', 1), ('environment', 1), ('soft', 1)]
[('nbsp', 3), ('digital', 1), ('version', 1), ('printed', 1), ('book', 1), ('copyright', 1), ('winner', 1), ('software', 1), ('development', 1), ('jolt', 1), ('product', 1), ('excellence', 1), ('award', 1), ('innovative', 1), ('text', 1), ('offer', 1), ('practical', 1), ('realistic', 1), ('approach', 1), ('managing', 1), ('high', 1), ('speed', 1)]
[('nbsp', 2), ('smalltalk', 2), ('classic', 1), ('book', 1), ('definitive', 1), ('real', 1), ('world', 1), ('style', 1), ('guide', 1), ('better', 1), ('programming', 1), ('author', 1), ('present', 1), ('set', 1), ('pattern', 1), ('organize', 1), ('informal', 1), ('experience', 1), ('successful', 1), ('programmer', 1), ('learned', 1), ('hard', 1), ('way', 1)]
[('virtualised', 3), ('sdn', 2), ('step', 2), ('easy', 1), ('whiteboard', 1), ('style', 1), ('infographics', 1), ('learn', 1), ('virtualisation', 1), ('enables', 1), ('nfv', 1), ('datacenters', 1), ('cloud', 1), ('network', 1), ('maximise', 1), ('security', 1), ('visibility', 1), ('quality', 1), ('experience', 1), ('tomorrow', 1), ('fully', 1), ('environment', 1), ('discover', 1)]
[('cisco', 3), ('secure', 3), ('access', 3), ('byod', 2), ('using', 1), ('architecture', 1), ('identity', 1), ('service', 1), ('engine', 1), ('gain', 1), ('control', 1), ('network', 1), ('bring', 1), ('device', 1), ('world', 1), ('edition', 1), ('ise', 1), ('unified', 1), ('contains', 1), ('eight', 1), ('brand', 1), ('new', 1), ('chapter', 1), ('extensively', 1), ('updated', 1), ('coverage', 1), ('previous', 1)]
[('mcsa', 2), ('exam', 2), ('certification', 2), ('learn', 1), ('prepare', 1), ('practice', 1), ('success', 1), ('cert', 1), ('guide', 1), ('pearson', 1), ('leader', 1), ('master', 1), ('topic', 1), ('ass', 1), ('knowledge', 1), ('chapter', 1), ('ending', 1), ('quiz', 1), ('review', 1), ('key', 1), ('concept', 1)]
[('openacc', 2), ('programming', 2), ('complete', 1), ('guide', 1), ('massively', 1), ('parallel', 1), ('nbsp', 1), ('scientist', 1), ('technical', 1), ('professional', 1), ('use', 1), ('leverage', 1), ('immense', 1), ('power', 1), ('modern', 1), ('gpus', 1), ('without', 1), ('complexity', 1), ('traditionally', 1), ('associated', 1)]
[('short', 1), ('time', 1), ('learn', 1), ('use', 1), ('php', 1), ('mysql', 1), ('javascript', 1), ('together', 1), ('create', 1), ('dynamic', 1), ('interactive', 1), ('website', 1), ('application', 1), ('using', 1), ('three', 1), ('leading', 1), ('web', 1), ('development', 1), ('technology', 1), ('nbsp', 1), ('previous', 1), ('programming', 1), ('experience', 1), ('required', 1)]
[('window', 3), ('experienced', 1), ('make', 1), ('feel', 1), ('beginner', 1), ('book', 1), ('packed', 1), ('intensely', 1), ('useful', 1), ('knowledge', 1), ('tip', 1), ('shortcut', 1), ('find', 1), ('anywhere', 1), ('fastest', 1), ('best', 1), ('way', 1), ('master', 1), ('full', 1), ('power', 1), ('revamped', 1), ('interface', 1), ('new', 1), ('tool', 1), ('reconfigured', 1), ('start', 1), ('menu', 1), ('cortana', 1), ('personal', 1)]
[('window', 2), ('function', 2), ('sql', 2), ('use', 1), ('write', 1), ('simpler', 1), ('better', 1), ('efficient', 1), ('query', 1), ('nbsp', 1), ('developer', 1), ('recognize', 1), ('value', 1), ('data', 1), ('analysis', 1), ('calculation', 1), ('far', 1), ('recent', 1), ('optimization', 1), ('make', 1), ('even', 1)]
[('lisp', 2), ('overlay', 2), ('implement', 1), ('flexible', 1), ('efficient', 1), ('based', 1), ('cloud', 1), ('data', 1), ('center', 1), ('enterprise', 1), ('network', 1), ('help', 1), ('organization', 1), ('provide', 1), ('seamless', 1), ('connectivity', 1), ('device', 1), ('workload', 1), ('wherever', 1), ('move', 1), ('enabling', 1), ('open', 1), ('highly', 1), ('scalable', 1)]
[('stereotype', 2), ('software', 2), ('portray', 1), ('engineer', 1), ('reckless', 1), ('lot', 1), ('paint', 1), ('configuration', 1), ('management', 1), ('scm', 1), ('devotee', 1), ('inflexible', 1), ('based', 1), ('impression', 1), ('wonder', 1), ('project', 1), ('riddled', 1), ('tension', 1), ('truth', 1)]
[('cisco', 3), ('access', 2), ('definitive', 1), ('sd', 1), ('resource', 1), ('architect', 1), ('train', 1), ('engineer', 1), ('partner', 1), ('comprehensive', 1), ('book', 1), ('guide', 1), ('aspect', 1), ('planning', 1), ('implementing', 1), ('operating', 1), ('software', 1), ('defined', 1)]
[('help', 2), ('aci', 2), ('cisco', 2), ('certification', 2), ('expert', 1), ('guide', 1), ('reference', 1), ('confidently', 1), ('deploy', 1), ('support', 1), ('monitor', 1), ('troubleshoot', 1), ('fabric', 1), ('component', 1), ('designed', 1), ('prepare', 1), ('dcacia', 1), ('exam', 1), ('earning', 1), ('certified', 1), ('specialist', 1), ('advanced', 1), ('implementation', 1), ('credit', 1), ('toward', 1), ('ccnp', 1), ('data', 1), ('center', 1), ('choose', 1)]
[('kode', 2), ('vicious', 2), ('pragmatic', 1), ('bite', 1), ('sized', 1), ('programming', 1), ('advice', 1), ('koder', 1), ('attitude', 1), ('many', 1), ('year', 1), ('fan', 1), ('regular', 1), ('column', 1), ('communication', 1), ('acm', 1), ('topic', 1), ('timely', 1), ('explained', 1), ('wit', 1)]
[('digital', 3), ('photographer', 3), ('book', 2), ('scott', 2), ('show', 2), ('step', 2), ('adobe', 1), ('photoshop', 1), ('second', 1), ('edition', 1), ('kelby', 1), ('update', 1), ('award', 1), ('winning', 1), ('record', 1), ('breaking', 1), ('practical', 1), ('text', 1), ('full', 1), ('theory', 1), ('instead', 1), ('student', 1), ('exact', 1), ('technique', 1), ('used', 1), ('today', 1), ('cutting', 1), ('edge', 1), ('exactly', 1)]
[('nbsp', 3), ('red', 1), ('hat', 1), ('rhcsa', 1), ('cert', 1), ('guide', 1), ('ex', 1), ('nd', 1), ('edition', 1), ('share', 1), ('preparation', 1), ('hint', 1), ('test', 1), ('taking', 1), ('tip', 1), ('helping', 1), ('identify', 1), ('area', 1), ('weakness', 1), ('improve', 1), ('conceptual', 1), ('knowledge', 1), ('hand', 1), ('skill', 1), ('leading', 1), ('linux', 1), ('consultant', 1), ('author', 1), ('instructor', 1), ('sander', 1), ('van', 1), ('vugt', 1), ('present', 1), ('material', 1), ('concise', 1), ('manner', 1), ('focusing', 1), ('increasing', 1)]
[('development', 2), ('fear', 2), ('often', 2), ('software', 2), ('programmer', 2), ('test', 1), ('driven', 1), ('tdd', 1), ('new', 1), ('approach', 1), ('application', 1), ('designed', 1), ('eliminate', 1), ('associated', 1), ('building', 1), ('admittedly', 1), ('healthy', 1), ('viewed', 1), ('conscience', 1), ('tell', 1), ('careful', 1), ('author', 1), ('belief', 1), ('build', 1), ('better', 1)]
[('design', 4), ('experience', 2), ('extended', 2), ('reality', 2), ('designer', 1), ('guide', 1), ('creating', 1), ('realistic', 1), ('designing', 1), ('immersive', 1), ('help', 1), ('visual', 1), ('student', 1), ('move', 1), ('fast', 1), ('growing', 1), ('field', 1), ('xr', 1), ('author', 1), ('renée', 1), ('stevens', 1), ('powered', 1), ('introduces', 1), ('proven', 1), ('approach', 1), ('effective', 1), ('thinking', 1), ('process', 1), ('use', 1)]
[('net', 5), ('ml', 3), ('microsoft', 2), ('development', 2), ('programming', 1), ('developer', 1), ('solve', 1), ('serious', 1), ('machine', 1), ('learning', 1), ('problem', 1), ('increasing', 1), ('value', 1), ('competitiveness', 1), ('today', 1), ('fastest', 1), ('growing', 1), ('area', 1), ('software', 1), ('world', 1), ('renowned', 1), ('expert', 1), ('dino', 1), ('esposito', 1), ('cover', 1), ('everything', 1), ('student', 1), ('need', 1), ('know', 1)]
[('ccde', 3), ('depth', 1), ('super', 1), ('realistic', 1), ('lab', 1), ('prep', 1), ('cisco', 1), ('practical', 1), ('exam', 1), ('demonstrates', 1), ('expert', 1), ('level', 1), ('ability', 1), ('design', 1), ('network', 1), ('correctly', 1), ('outset', 1), ('easier', 1), ('manage', 1), ('scale', 1), ('year', 1), ('come', 1)]
[('security', 2), ('microsoft', 2), ('sentinel', 2), ('build', 1), ('next', 1), ('generation', 1), ('operation', 1), ('scalable', 1), ('cloud', 1), ('native', 1), ('information', 1), ('event', 1), ('management', 1), ('siem', 1), ('solution', 1), ('automating', 1), ('streamlining', 1), ('threat', 1), ('identification', 1), ('response', 1), ('across', 1)]
[('monitoring', 2), ('management', 2), ('service', 2), ('cloud', 2), ('proven', 1), ('best', 1), ('practice', 1), ('success', 1), ('every', 1), ('azure', 1), ('environment', 1), ('deliver', 1), ('optimal', 1), ('value', 1), ('designed', 1), ('deployed', 1), ('managed', 1), ('leading', 1), ('consultant', 1)]
[('nbsp', 3), ('volume', 1), ('introduction', 1), ('computer', 1), ('security', 1), ('clearly', 1), ('explains', 1), ('core', 1), ('concept', 1), ('terminology', 1), ('challenge', 1), ('technology', 1), ('skill', 1), ('cover', 1), ('today', 1), ('latest', 1), ('attack', 1), ('countermeasure', 1), ('perfect', 1), ('beginner', 1), ('guide', 1), ('anyone', 1)]
[('today', 1), ('organization', 1), ('need', 1), ('new', 1), ('security', 1), ('model', 1), ('effectively', 1), ('adapts', 1), ('complexity', 1), ('risk', 1), ('modern', 1), ('environment', 1), ('embrace', 1), ('hybrid', 1), ('workplace', 1), ('protects', 1), ('device', 1), ('apps', 1), ('data', 1), ('wherever', 1), ('located', 1), ('zero', 1), ('trust', 1)]
[('hyperconverged', 2), ('infrastructure', 2), ('improve', 1), ('manageability', 1), ('flexibility', 1), ('scalability', 1), ('control', 1), ('hci', 1), ('combine', 1), ('storage', 1), ('compute', 1), ('networking', 1), ('unified', 1), ('system', 1), ('managed', 1), ('locally', 1), ('cloud', 1)]
[('open', 2), ('architecture', 2), ('increasingly', 1), ('organization', 1), ('modernizing', 1), ('application', 1), ('development', 1), ('integrating', 1), ('source', 1), ('technology', 1), ('holistic', 1), ('delivering', 1), ('high', 1), ('quality', 1), ('workload', 1), ('cloud', 1), ('developing', 1), ('microservices', 1), ('azure', 1)]
[('service', 2), ('securing', 1), ('evolving', 1), ('architecture', 1), ('initiate', 1), ('period', 1), ('technological', 1), ('evolution', 1), ('benefit', 1), ('transcend', 1), ('faster', 1), ('data', 1), ('download', 1), ('speed', 1), ('enable', 1), ('change', 1), ('way', 1), ('live', 1), ('consume', 1), ('technology', 1), ('leveraging', 1), ('openness', 1), ('new', 1), ('developer', 1), ('ecosystem', 1), ('building', 1), ('breakthrough', 1), ('billion', 1)]
[('second', 2), ('edition', 2), ('discovering', 1), ('modern', 1), ('peter', 1), ('gottschling', 1), ('intensive', 1), ('introduction', 1), ('guide', 1), ('smoothly', 1), ('sophisticated', 1), ('approach', 1), ('based', 1), ('advanced', 1), ('feature', 1), ('thoroughly', 1), ('updated', 1), ('introduces', 1), ('key', 1)]
[('programming', 2), ('learn', 1), ('pace', 1), ('cover', 1), ('modern', 1), ('starting', 1), ('hour', 1), ('day', 1), ('gain', 1), ('skill', 1), ('need', 1), ('begin', 1), ('complete', 1), ('tutorial', 1), ('help', 1), ('quickly', 1), ('master', 1), ('basic', 1), ('object', 1), ('oriented', 1)]
[('advanced', 2), ('technique', 2), ('beyond', 2), ('guided', 2), ('edits', 2), ('adobe', 1), ('photoshop', 1), ('element', 1), ('editing', 1), ('trick', 1), ('essential', 1), ('guide', 1), ('going', 1), ('want', 1), ('go', 1), ('automated', 1), ('feature', 1), ('delve', 1), ('many', 1)]
[('incredibly', 1), ('wise', 1), ('useful', 1), ('book', 1), ('author', 1), ('considerable', 1), ('real', 1), ('world', 1), ('experience', 1), ('delivering', 1), ('quality', 1), ('system', 1), ('matter', 1), ('expertise', 1), ('shine', 1), ('page', 1), ('learn', 1), ('technical', 1), ('debt', 1)]
[('network', 3), ('guide', 2), ('cryptography', 2), ('security', 2), ('classic', 1), ('fully', 1), ('updated', 1), ('alice', 1), ('bob', 1), ('back', 1), ('widely', 1), ('regarded', 1), ('comprehensive', 1), ('yet', 1), ('comprehensible', 1), ('previous', 1), ('edition', 1)]
[('game', 3), ('design', 2), ('learn', 1), ('amp', 1), ('development', 1), ('skill', 1), ('need', 1), ('make', 1), ('unity', 1), ('world', 1), ('popular', 1), ('professional', 1), ('engine', 1), ('want', 1), ('develop', 1), ('substitute', 1), ('strong', 1), ('hand', 1), ('experience', 1), ('modern', 1)]
[('network', 4), ('professional', 2), ('transport', 2), ('guide', 1), ('planning', 1), ('designing', 1), ('deploying', 1), ('transforms', 1), ('mobile', 1), ('usage', 1), ('service', 1), ('need', 1), ('significantly', 1), ('evolve', 1), ('architecture', 1)]
[('team', 3), ('experience', 2), ('office', 2), ('step', 2), ('microsoft', 1), ('collaborative', 1), ('brings', 1), ('together', 1), ('conversation', 1), ('content', 1), ('along', 1), ('tool', 1), ('need', 1), ('achieve', 1), ('naturally', 1), ('integrated', 1), ('familiar', 1), ('built', 1), ('global', 1), ('secure', 1), ('cloud', 1), ('easy', 1), ('guide', 1), ('making', 1)]
[('data', 3), ('center', 3), ('ready', 1), ('configure', 1), ('operate', 1), ('modern', 1), ('move', 1), ('high', 1), ('value', 1), ('ccnp', 1), ('dc', 1), ('certification', 1), ('cisco', 1), ('fundamental', 1), ('complete', 1), ('guide', 1), ('network', 1), ('engineer', 1), ('professional', 1), ('need', 1), ('solid', 1), ('understanding', 1)]
[('web', 2), ('new', 2), ('used', 1), ('site', 1), ('varied', 1), ('hulu', 1), ('github', 1), ('shopify', 1), ('airbnb', 1), ('ruby', 1), ('rail', 1), ('popular', 1), ('framework', 1), ('developing', 1), ('application', 1), ('challenging', 1), ('learn', 1), ('use', 1), ('whether', 1), ('development', 1)]
[('requirement', 3), ('practice', 2), ('best', 1), ('developing', 1), ('managing', 1), ('project', 1), ('software', 1), ('essential', 1), ('present', 1), ('core', 1), ('successful', 1), ('planning', 1), ('elicitation', 1), ('analysis', 1), ('specification', 1), ('validation', 1), ('management', 1), ('leading', 1)]
[('ebook', 2), ('print', 2), ('practice', 2), ('version', 1), ('title', 1), ('note', 1), ('provide', 1), ('access', 1), ('test', 1), ('software', 1), ('accompanies', 1), ('book', 1), ('learn', 1), ('prepare', 1), ('risk', 1), ('management', 1), ('professional', 1), ('pmi', 1), ('rmp', 1), ('exam', 1), ('success', 1)]
[('ebook', 2), ('print', 2), ('practice', 2), ('version', 1), ('title', 1), ('note', 1), ('provide', 1), ('access', 1), ('test', 1), ('software', 1), ('accompanies', 1), ('book', 1), ('nbsp', 1), ('learn', 1), ('prepare', 1), ('cisco', 1), ('certified', 1), ('design', 1), ('expert', 1), ('ccde', 1), ('exam', 1)]
[('opengl', 2), ('part', 2), ('shading', 1), ('language', 1), ('third', 1), ('edition', 1), ('extensively', 1), ('updated', 1), ('experienced', 1), ('application', 1), ('programmer', 1), ('guide', 1), ('writing', 1), ('shaders', 1), ('reference', 1), ('tutorial', 1), ('book', 1), ('thoroughly', 1), ('explains', 1), ('shift', 1), ('fixed', 1), ('functionality', 1)]
[('lose', 2), ('digital', 1), ('version', 1), ('hte', 1), ('printed', 1), ('book', 1), ('copyright', 1), ('software', 1), ('tester', 1), ('require', 1), ('technical', 1), ('political', 1), ('skill', 1), ('survive', 1), ('often', 1), ('relationship', 1), ('developer', 1), ('manager', 1), ('whether', 1), ('testing', 1), ('specialty', 1)]
[('atdd', 2), ('acceptance', 1), ('test', 1), ('driven', 1), ('development', 1), ('business', 1), ('customer', 1), ('tester', 1), ('developer', 1), ('collaborate', 1), ('produce', 1), ('testable', 1), ('requirement', 1), ('help', 1), ('build', 1), ('higher', 1), ('quality', 1), ('software', 1), ('rapidly', 1), ('still', 1), ('widely', 1), ('misunderstood', 1)]
[('tibco', 3), ('paul', 1), ('brown', 1), ('done', 1), ('favor', 1), ('community', 1), ('anyone', 1), ('wanting', 1), ('product', 1), ('set', 1), ('architecting', 1), ('solution', 1), ('without', 1), ('knowing', 1), ('architecture', 1), ('fundamental', 1), ('insight', 1), ('topic', 1), ('discussed', 1), ('book', 1), ('risky', 1)]
[('vmware', 3), ('vcdx', 2), ('nbsp', 2), ('prepare', 1), ('succeed', 1), ('panel', 1), ('defense', 1), ('gain', 1), ('world', 1), ('class', 1), ('knowledge', 1), ('designing', 1), ('complex', 1), ('environment', 1), ('certified', 1), ('design', 1), ('expert', 1), ('highest', 1), ('level', 1), ('certification', 1), ('achieved', 1), ('dedicated', 1)]
[('surprise', 1), ('learn', 1), ('microsoft', 1), ('employ', 1), ('many', 1), ('software', 1), ('tester', 1), ('developer', 1), ('le', 1), ('surprising', 1), ('emphasis', 1), ('company', 1), ('place', 1), ('testing', 1), ('discipline', 1), ('role', 1), ('managing', 1), ('quality', 1), ('across', 1), ('diverse', 1), ('product', 1), ('portfolio', 1)]
[('perl', 2), ('classic', 1), ('available', 1), ('ebook', 1), ('format', 1), ('first', 1), ('time', 1), ('debugged', 1), ('provides', 1), ('expertise', 1), ('solution', 1), ('developer', 1), ('require', 1), ('coding', 1), ('better', 1), ('faster', 1), ('reliably', 1), ('focusing', 1), ('debugging', 1), ('vexing', 1), ('aspect', 1)]
[('photoshop', 6), ('productivity', 2), ('series', 2), ('dave', 2), ('automating', 1), ('second', 1), ('three', 1), ('part', 1), ('guru', 1), ('cross', 1), ('teach', 1), ('automation', 1), ('really', 1), ('amount', 1)]
[('definitive', 1), ('comprehensive', 1), ('guide', 1), ('cutting', 1), ('edge', 1), ('millimeter', 1), ('wave', 1), ('wireless', 1), ('design', 1), ('book', 1), ('mmwave', 1), ('system', 1), ('cover', 1), ('many', 1), ('aspect', 1), ('technology', 1), ('targeted', 1), ('beginner', 1), ('way', 1), ('advanced', 1), ('user', 1), ('author', 1)]
[('nbsp', 4), ('skill', 3), ('help', 2), ('desk', 2), ('support', 2), ('today', 1), ('easy', 1), ('understand', 1), ('book', 1), ('perfect', 1), ('beginner', 1), ('guide', 1), ('experience', 1), ('necessary', 1), ('cover', 1), ('soft', 1), ('personal', 1), ('hard', 1), ('technical', 1), ('explains', 1)]
[('net', 2), ('step', 2), ('session', 1), ('hour', 1), ('le', 1), ('running', 1), ('angularjs', 1), ('microsoft', 1), ('environment', 1), ('using', 1), ('straightforward', 1), ('approach', 1), ('lesson', 1), ('build', 1), ('skill', 1), ('knowledge', 1), ('helping', 1), ('quickly', 1), ('learn', 1)]
[('storage', 3), ('vmware', 2), ('step', 2), ('effective', 1), ('virtualisation', 1), ('planning', 1), ('management', 1), ('become', 1), ('crucial', 1), ('extremely', 1), ('complex', 1), ('leading', 1), ('expert', 1), ('thoroughly', 1), ('demystifies', 1), ('black', 1), ('box', 1), ('vsphere', 1), ('provides', 1), ('illustrated', 1), ('procedure', 1), ('performing', 1), ('every', 1), ('key', 1), ('task', 1), ('associated', 1), ('mostafa', 1), ('khalil', 1), ('present', 1), ('technique', 1)]
[('thing', 2), ('video', 1), ('project', 1), ('deadline', 1), ('brutal', 1), ('budget', 1), ('tight', 1), ('everyone', 1), ('stressed', 1), ('anything', 1), ('save', 1), ('time', 1), ('simplifies', 1), ('life', 1), ('improves', 1), ('result', 1), ('good', 1), ('book', 1), ('packed', 1), ('tip', 1), ('technique', 1), ('shortcut', 1), ('hidden', 1), ('gem', 1)]
[('gui', 2), ('whether', 1), ('building', 1), ('prototype', 1), ('full', 1), ('fledged', 1), ('cross', 1), ('platform', 1), ('application', 1), ('native', 1), ('look', 1), ('feel', 1), ('pyqt', 1), ('fastest', 1), ('easiest', 1), ('powerful', 1), ('solution', 1), ('qt', 1), ('expert', 1), ('mark', 1), ('summerfield', 1), ('written', 1), ('definitive', 1), ('best', 1), ('practice', 1), ('guide', 1)]
[('adobe', 1), ('creative', 1), ('cloud', 1), ('delivers', 1), ('breathtaking', 1), ('collection', 1), ('state', 1), ('art', 1), ('creativity', 1), ('tool', 1), ('web', 1), ('print', 1), ('video', 1), ('interactive', 1), ('digital', 1), ('marketing', 1), ('ux', 1), ('ui', 1), ('design', 1), ('power', 1), ('start', 1)]
[('software', 2), ('practice', 1), ('building', 1), ('new', 1), ('kid', 1), ('block', 1), ('technology', 1), ('though', 1), ('seem', 1), ('way', 1), ('field', 1), ('career', 1), ('overall', 1), ('scheme', 1), ('profession', 1), ('builder', 1), ('relative', 1)]
[('nan', 1)]
[('ipv', 2), ('security', 2), ('nbsp', 2), ('protocol', 2), ('protection', 1), ('measure', 1), ('next', 1), ('internet', 1), ('world', 1), ('network', 1), ('migrate', 1), ('networking', 1), ('professional', 1), ('need', 1), ('clearer', 1), ('understanding', 1), ('risk', 1), ('threat', 1), ('challenge', 1)]
[('server', 2), ('nbsp', 1), ('data', 1), ('center', 1), ('grow', 1), ('size', 1), ('complexity', 1), ('enterprise', 1), ('adopting', 1), ('virtualization', 1), ('technology', 1), ('vmware', 1), ('vmotion', 1), ('nic', 1), ('teaming', 1), ('clustering', 1), ('achieve', 1), ('increased', 1), ('efficiency', 1), ('resource', 1), ('ensure', 1), ('business', 1)]
[('cisco', 4), ('io', 2), ('xr', 2), ('authoritative', 2), ('fundamental', 1), ('systematic', 1), ('guide', 1), ('configuring', 1), ('router', 1), ('next', 1), ('generation', 1), ('flagship', 1), ('internet', 1), ('operating', 1), ('system', 1), ('book', 1), ('team', 1), ('expert', 1), ('brings', 1), ('together', 1), ('quick', 1)]
[('cloud', 2), ('become', 1), ('developer', 1), ('fun', 1), ('full', 1), ('color', 1), ('guide', 1), ('help', 1), ('start', 1), ('creating', 1), ('based', 1), ('apps', 1), ('game', 1), ('fast', 1), ('even', 1), ('never', 1), ('done', 1), ('friendly', 1), ('easy', 1), ('put', 1), ('control', 1), ('learning', 1)]
[('service', 2), ('design', 2), ('web', 1), ('used', 1), ('many', 1), ('year', 1), ('time', 1), ('developer', 1), ('architect', 1), ('encountered', 1), ('number', 1), ('recurring', 1), ('challenge', 1), ('related', 1), ('usage', 1), ('learned', 1), ('certain', 1), ('approach', 1), ('work', 1), ('better', 1), ('others', 1)]
[('objective', 3), ('write', 2), ('io', 2), ('o', 2), ('code', 2), ('truly', 1), ('nbsp', 1), ('effective', 1), ('help', 1), ('harness', 1), ('expressive', 1), ('power', 1), ('work', 1), ('superbly', 1), ('production', 1), ('environment', 1), ('using', 1)]
[('step', 2), ('student', 2), ('paul', 1), ('mcfedries', 1), ('project', 1), ('walk', 1), ('handling', 1), ('key', 1), ('task', 1), ('building', 1), ('timesheets', 1), ('projecting', 1), ('cash', 1), ('flow', 1), ('aging', 1), ('receivables', 1), ('practical', 1), ('example', 1), ('clear', 1), ('instruction', 1), ('demystify', 1), ('intermediate', 1), ('advanced', 1), ('level', 1), ('formula', 1), ('construction', 1), ('help', 1), ('leverage', 1), ('excel', 1), ('useful', 1), ('function', 1), ('everyday', 1), ('work', 1)]
[('code', 2), ('write', 1), ('elegant', 1), ('program', 1), ('official', 1), ('core', 1), ('guideline', 1), ('provide', 1), ('consistent', 1), ('best', 1), ('practice', 1), ('writing', 1), ('outstanding', 1), ('modern', 1), ('improving', 1), ('legacy', 1), ('organized', 1), ('reference', 1), ('looking', 1), ('specific', 1), ('point', 1), ('time', 1)]
[('development', 4), ('software', 2), ('agile', 2), ('lean', 1), ('toolkit', 1), ('adapting', 1), ('practice', 1), ('organization', 1), ('uncovering', 1), ('eradicating', 1), ('waste', 1), ('throughout', 1), ('lifecycle', 1), ('practical', 1), ('technique', 1), ('every', 1), ('manager', 1), ('project', 1)]
[('wireless', 2), ('definitive', 1), ('professional', 1), ('guide', 1), ('cisco', 1), ('next', 1), ('gen', 1), ('controller', 1), ('network', 1), ('application', 1), ('service', 1), ('rapidly', 1), ('evolve', 1), ('grow', 1), ('increasingly', 1), ('business', 1), ('critical', 1), ('steeper', 1), ('requirement', 1), ('performance', 1)]
[('nan', 1)]
[('adobe', 2), ('animate', 2), ('develop', 1), ('creative', 1), ('animation', 1), ('multimedia', 1), ('using', 1), ('classroom', 1), ('book', 1), ('release', 1), ('us', 1), ('real', 1), ('world', 1), ('project', 1), ('based', 1), ('learning', 1), ('cover', 1), ('basic', 1), ('beyond', 1), ('providing', 1), ('countless', 1), ('tip', 1), ('technique', 1), ('help', 1), ('become', 1)]
[('engineering', 3), ('design', 3), ('solidworks', 3), ('graphic', 2), ('award', 1), ('winning', 1), ('cad', 1), ('instructor', 1), ('author', 1), ('james', 1), ('bethune', 1), ('show', 1), ('student', 1), ('use', 1), ('create', 1), ('drawing', 1)]
[('ibm', 3), ('style', 2), ('guide', 2), ('content', 2), ('distills', 1), ('wisdom', 1), ('developing', 1), ('superior', 1), ('information', 1), ('consistent', 1), ('clear', 1), ('concise', 1), ('easy', 1), ('translate', 1), ('help', 1), ('organization', 1), ('improve', 1), ('standardize', 1), ('across', 1), ('author', 1), ('delivery', 1)]
[('artificial', 1), ('intelligence', 1), ('ai', 1), ('becomes', 1), ('woven', 1), ('everyday', 1), ('life', 1), ('underpins', 1), ('infrastructure', 1), ('rely', 1), ('ethical', 1), ('security', 1), ('privacy', 1), ('implication', 1), ('require', 1), ('critical', 1), ('approach', 1), ('draw', 1), ('simply', 1)]
[('trust', 1), ('best', 1), ('selling', 1), ('official', 1), ('cert', 1), ('guide', 1), ('series', 1), ('cisco', 1), ('press', 1), ('help', 1), ('learn', 1), ('prepare', 1), ('practice', 1), ('ccnp', 1), ('enterprise', 1), ('wireless', 1), ('enwlsd', 1), ('enwlsi', 1), ('exam', 1), ('regarded', 1), ('level', 1), ('detail', 1), ('study', 1), ('plan', 1), ('assessment', 1)]
[('ubuntu', 2), ('server', 2), ('complete', 1), ('free', 1), ('operating', 1), ('system', 1), ('work', 1), ('extra', 1), ('polish', 1), ('innovation', 1), ('simplicity', 1), ('administrator', 1), ('love', 1), ('nbsp', 1), ('definitive', 1), ('authoritative', 1), ('guide', 1), ('getting', 1), ('running', 1), ('quickly', 1)]
[('software', 1), ('test', 1), ('automation', 1), ('moved', 1), ('beyond', 1), ('luxury', 1), ('become', 1), ('necessity', 1), ('application', 1), ('system', 1), ('grown', 1), ('larger', 1), ('complex', 1), ('manual', 1), ('testing', 1), ('simply', 1), ('keep', 1), ('technology', 1), ('change', 1), ('organization', 1), ('move', 1), ('agile', 1)]
[('game', 3), ('programming', 3), ('algorithm', 2), ('technique', 2), ('detailed', 1), ('overview', 1), ('many', 1), ('important', 1), ('used', 1), ('video', 1), ('today', 1), ('designed', 1), ('programmer', 1), ('familiar', 1), ('object', 1), ('oriented', 1), ('basic', 1), ('data', 1), ('structure', 1), ('book', 1), ('focus', 1), ('practical', 1), ('concept', 1), ('see', 1), ('actual', 1), ('use', 1), ('industry', 1)]
[('requirement', 2), ('apply', 1), ('best', 1), ('practice', 1), ('capturing', 1), ('analyzing', 1), ('implementing', 1), ('software', 1), ('visual', 1), ('model', 1), ('deliver', 1), ('better', 1), ('result', 1), ('business', 1), ('author', 1), ('expert', 1), ('eliciting', 1), ('visualizing', 1), ('walk', 1), ('simple', 1)]
[('virtualizing', 2), ('oracle', 2), ('software', 2), ('database', 2), ('vsphere', 2), ('start', 1), ('finish', 1), ('guide', 1), ('business', 1), ('critical', 1), ('vmware', 1), ('nbsp', 1), ('large', 1), ('scale', 1), ('deliver', 1), ('powerful', 1), ('scalability', 1), ('availability', 1), ('performance', 1)]
[('age', 1), ('mass', 1), ('surveillance', 1), ('advanced', 1), ('cyberwarfare', 1), ('weapon', 1), ('rapidly', 1), ('migrate', 1), ('every', 1), ('hacker', 1), ('toolkit', 1), ('rely', 1), ('outdated', 1), ('security', 1), ('method', 1), ('especially', 1), ('responsible', 1), ('internet', 1), ('facing', 1), ('service', 1), ('linux', 1), ('hardening', 1), ('hostile', 1), ('network', 1), ('kyle', 1), ('rankin', 1), ('help', 1), ('implement', 1), ('modern', 1), ('safeguard', 1), ('provide', 1), ('maximum', 1), ('impact', 1)]
[('database', 2), ('first', 1), ('guide', 1), ('focus', 1), ('critical', 1), ('aspect', 1), ('android', 1), ('development', 1), ('efficiently', 1), ('store', 1), ('retrieve', 1), ('manage', 1), ('share', 1), ('information', 1), ('app', 1), ('internal', 1), ('real', 1), ('world', 1), ('code', 1), ('example', 1), ('use', 1), ('apps', 1), ('learn', 1), ('take', 1), ('full', 1), ('advantage', 1), ('sqlite', 1), ('related', 1), ('class', 1)]
[('bgp', 2), ('io', 2), ('today', 1), ('best', 1), ('single', 1), ('source', 1), ('technique', 1), ('need', 1), ('troubleshoot', 1), ('issue', 1), ('modern', 1), ('cisco', 1), ('xr', 1), ('nxos', 1), ('environment', 1), ('expanded', 1), ('internet', 1), ('routing', 1), ('protocol', 1), ('provides', 1), ('scalable', 1), ('control', 1), ('plane', 1), ('variety', 1), ('technology', 1), ('including', 1), ('mpls', 1), ('vpns', 1), ('vxlan', 1), ('bringing', 1), ('together', 1), ('content', 1), ('previously', 1), ('spread', 1)]
[('developer', 3), ('user', 3), ('experience', 3), ('ux', 2), ('modern', 1), ('expertise', 1), ('indispensable', 1), ('without', 1), ('outstanding', 1), ('software', 1), ('fail', 1), ('david', 1), ('platt', 1), ('written', 1), ('first', 1), ('comprehensive', 1), ('guide', 1), ('achieving', 1), ('world', 1), ('class', 1), ('quality', 1), ('hard', 1), ('require', 1), ('think', 1), ('new', 1), ('way', 1), ('joy', 1)]
[('microsoft', 2), ('prepare', 1), ('exam', 1), ('az', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('expertise', 1), ('designing', 1), ('cloud', 1), ('hybrid', 1), ('solution', 1), ('run', 1), ('azure', 1), ('including', 1), ('identity', 1), ('governance', 1), ('monitoring', 1), ('data', 1), ('storage', 1), ('business', 1), ('continuity', 1)]
[('build', 2), ('azure', 2), ('application', 2), ('workload', 2), ('plan', 1), ('maintain', 1), ('highly', 1), ('secure', 1), ('business', 1), ('critical', 1), ('move', 1), ('microsoft', 1), ('cloud', 1), ('stand', 1), ('dangerous', 1), ('new', 1), ('threat', 1), ('mean', 1), ('robust', 1)]
[('data', 4), ('science', 3), ('programming', 2), ('skill', 2), ('using', 1), ('technique', 1), ('transform', 1), ('raw', 1), ('actionable', 1), ('insight', 1), ('domain', 1), ('ranging', 1), ('urban', 1), ('planning', 1), ('precision', 1), ('medicine', 1), ('brings', 1), ('together', 1), ('foundational', 1), ('need', 1), ('started', 1), ('even', 1), ('experience', 1), ('leading', 1), ('instructor', 1), ('michael', 1), ('freeman', 1)]
[('network', 4), ('cisco', 2), ('complete', 1), ('guide', 1), ('transforming', 1), ('enterprise', 1), ('dna', 1), ('become', 1), ('complex', 1), ('dynamic', 1), ('organization', 1), ('need', 1), ('better', 1), ('way', 1), ('manage', 1), ('secure', 1), ('digital', 1), ('architecture', 1), ('operator', 1), ('run', 1)]
[('machine', 2), ('learning', 2), ('production', 2), ('data', 2), ('crash', 1), ('course', 1), ('science', 1), ('need', 1), ('solve', 1), ('real', 1), ('world', 1), ('problem', 1), ('environment', 1), ('written', 1), ('technically', 1), ('competent', 1), ('accidental', 1), ('scientist', 1), ('curiosity', 1), ('ambition', 1), ('formal', 1), ('training', 1), ('complete', 1), ('rigorous', 1), ('introduction', 1), ('stress', 1), ('practice', 1)]
[('software', 3), ('transition', 1), ('microservices', 1), ('devops', 1), ('transform', 1), ('development', 1), ('effectiveness', 1), ('nbsp', 1), ('thanks', 1), ('tech', 1), ('sector', 1), ('latest', 1), ('game', 1), ('changing', 1), ('innovation', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('enabled', 1), ('networking', 1), ('service', 1)]
[('extend', 1), ('skill', 1), ('create', 1), ('data', 1), ('rich', 1), ('computational', 1), ('parallel', 1), ('software', 1), ('component', 1), ('faster', 1), ('efficiently', 1), ('focusing', 1), ('microsoft', 1), ('visual', 1), ('studio', 1), ('learn', 1), ('exploit', 1), ('feature', 1), ('solve', 1)]
[('window', 4), ('delve', 1), ('inside', 1), ('runtime', 1), ('learn', 1), ('best', 1), ('way', 1), ('design', 1), ('build', 1), ('store', 1), ('apps', 1), ('guided', 1), ('jeffrey', 1), ('richter', 1), ('recognized', 1), ('expert', 1), ('net', 1), ('programming', 1), ('along', 1), ('principal', 1), ('consultant', 1), ('maarten', 1), ('van', 1), ('de', 1), ('bospoort', 1)]
[('network', 3), ('business', 2), ('art', 1), ('architecture', 1), ('place', 1), ('need', 1), ('capability', 1), ('centre', 1), ('process', 1), ('architecting', 1), ('evolving', 1), ('leading', 1), ('enterprise', 1), ('architect', 1), ('help', 1), ('craft', 1), ('solution', 1), ('fully', 1), ('aligned', 1), ('strategy', 1), ('smoothly', 1), ('accommodate', 1), ('change', 1), ('maximise', 1), ('future', 1), ('flexibility', 1), ('rus', 1), ('white', 1), ('denise', 1)]
[('sql', 4), ('database', 2), ('reference', 2), ('started', 1), ('fast', 1), ('book', 1), ('student', 1), ('need', 1), ('gain', 1), ('quick', 1), ('working', 1), ('knowledge', 1), ('relational', 1), ('many', 1), ('text', 1), ('attempt', 1), ('serve', 1), ('encyclopedic', 1), ('syntax', 1), ('approach', 1), ('often', 1), ('counterproductive', 1), ('information', 1), ('readily', 1), ('available', 1), ('online', 1), ('published', 1), ('major', 1)]
[('exam', 4), ('cram', 2), ('cloud', 2), ('using', 1), ('proven', 1), ('method', 1), ('study', 1), ('comptia', 1), ('cv', 1), ('nbsp', 1), ('offer', 1), ('comprehensive', 1), ('foundational', 1), ('learning', 1), ('architecture', 1), ('design', 1), ('security', 1), ('deployment', 1), ('operation', 1), ('support', 1), ('troubleshooting', 1), ('every', 1), ('chapter', 1), ('mapped', 1), ('directly', 1), ('objective', 1), ('extensive', 1), ('preparation', 1), ('tool', 1), ('include', 1), ('topic', 1), ('overview', 1)]
[('excel', 3), ('renowned', 1), ('expert', 1), ('bill', 1), ('jelen', 1), ('offer', 1), ('complete', 1), ('tour', 1), ('office', 1), ('efficient', 1), ('interface', 1), ('customizations', 1), ('advanced', 1), ('analysis', 1), ('visualization', 1), ('dashboard', 1), ('topic', 1), ('include', 1), ('customizing', 1), ('workspace', 1), ('best', 1), ('practice', 1), ('designing', 1), ('managing', 1), ('worksheet', 1), ('creating', 1), ('formula', 1), ('function', 1), ('performing', 1), ('statistical', 1)]
[('book', 2), ('needed', 2), ('taught', 2), ('python', 2), ('know', 1), ('student', 1), ('still', 1), ('gap', 1), ('knowledge', 1), ('captain', 1), ('code', 1), ('quickly', 1), ('filled', 1), ('overall', 1), ('design', 1), ('wonderful', 1), ('easy', 1), ('question', 1), ('normally', 1), ('come', 1), ('answered', 1), ('page', 1)]
[('help', 2), ('practice', 2), ('trust', 1), ('best', 1), ('selling', 1), ('official', 1), ('cert', 1), ('guide', 1), ('series', 1), ('cisco', 1), ('press', 1), ('learn', 1), ('prepare', 1), ('exam', 1), ('success', 1), ('built', 1), ('objective', 1), ('providing', 1), ('assessment', 1), ('review', 1), ('ensure', 1), ('fully', 1), ('prepared', 1)]
[('book', 2), ('access', 2), ('ebook', 1), ('printed', 1), ('include', 1), ('medium', 1), ('website', 1), ('code', 1), ('print', 1), ('supplement', 1), ('come', 1), ('packaged', 1), ('bound', 1), ('nbsp', 1), ('advance', 1), ('everyday', 1), ('proficiency', 1), ('earn', 1), ('credential', 1)]
[('management', 2), ('cisco', 1), ('hyperflex', 1), ('solution', 1), ('enhance', 1), ('data', 1), ('center', 1), ('efficiency', 1), ('agility', 1), ('resiliency', 1), ('tightly', 1), ('integrating', 1), ('core', 1), ('infrastructure', 1), ('compute', 1), ('storage', 1), ('networking', 1), ('system', 1), ('increasing', 1), ('automation', 1), ('simplifying', 1), ('lifecycle', 1), ('authoritative', 1), ('comprehensive', 1), ('guide', 1), ('brings', 1), ('together', 1), ('knowledge', 1), ('detailed', 1), ('configuration', 1), ('option', 1)]
[('nan', 1)]
[('user', 3), ('experience', 2), ('guide', 2), ('step', 2), ('today', 1), ('every', 1), ('product', 1), ('service', 1), ('need', 1), ('delight', 1), ('mean', 1), ('delivering', 1), ('outstanding', 1), ('ux', 1), ('full', 1), ('color', 1), ('leading', 1), ('designer', 1), ('anthony', 1), ('conta', 1), ('crafting', 1)]
[('nan', 1)]
[('trill', 2), ('fabricpath', 2), ('vxlan', 2), ('data', 2), ('nbsp', 2), ('overlay', 2), ('using', 1), ('designing', 1), ('massively', 1), ('scalable', 1), ('center', 1), ('help', 1), ('distribute', 1), ('traffic', 1), ('far', 1), ('effectively', 1), ('dramatically', 1), ('improving', 1), ('utilization', 1), ('even', 1)]
[('adobe', 2), ('digital', 2), ('long', 1), ('career', 1), ('product', 1), ('evangelist', 1), ('photoshop', 1), ('lightroom', 1), ('julieanne', 1), ('kost', 1), ('taught', 1), ('thousand', 1), ('photographer', 1), ('imaging', 1), ('software', 1), ('seminar', 1), ('presentation', 1), ('blog', 1), ('post', 1)]
[('video', 2), ('study', 1), ('guide', 1), ('us', 1), ('text', 1), ('integrated', 1), ('help', 1), ('gain', 1), ('real', 1), ('world', 1), ('skill', 1), ('started', 1), ('career', 1), ('planning', 1), ('shooting', 1), ('post', 1), ('production', 1), ('project', 1), ('lay', 1), ('foundation', 1), ('taking', 1), ('premiere', 1), ('pro', 1), ('aca', 1)]
[('internet', 3), ('help', 2), ('step', 2), ('perfect', 1), ('book', 1), ('anyone', 1), ('safely', 1), ('securely', 1), ('senior', 1), ('quickly', 1), ('easily', 1), ('online', 1), ('start', 1), ('using', 1), ('everything', 1), ('offer', 1), ('task', 1), ('large', 1), ('text', 1), ('close', 1), ('screen', 1), ('shot', 1), ('custom', 1), ('full', 1), ('colour', 1), ('interior', 1), ('designed', 1), ('comfortable', 1), ('reading', 1)]
[('nan', 1)]
[('ebook', 2), ('print', 2), ('practice', 2), ('version', 1), ('title', 1), ('note', 1), ('provide', 1), ('access', 1), ('test', 1), ('software', 1), ('accompanies', 1), ('book', 1), ('learn', 1), ('prepare', 1), ('mcsa', 1), ('exam', 1), ('success', 1), ('cert', 1), ('guide', 1), ('pearson', 1)]
[('trust', 1), ('best', 1), ('selling', 1), ('official', 1), ('cert', 1), ('guide', 1), ('series', 1), ('cisco', 1), ('press', 1), ('help', 1), ('learn', 1), ('prepare', 1), ('practice', 1), ('ccnp', 1), ('ccie', 1), ('data', 1), ('center', 1), ('core', 1), ('dccor', 1), ('exam', 1), ('regarded', 1), ('level', 1), ('detail', 1), ('study', 1), ('plan', 1), ('assessment', 1), ('feature', 1)]
[('wordpress', 3), ('million', 1), ('website', 1), ('blog', 1), ('run', 1), ('world', 1), ('web', 1), ('development', 1), ('tool', 1), ('make', 1), ('without', 1), ('becoming', 1), ('technical', 1), ('expert', 1), ('absolute', 1), ('beginner', 1), ('guide', 1), ('fastest', 1), ('way', 1)]
[('photoshop', 2), ('popular', 1), ('image', 1), ('editing', 1), ('application', 1), ('market', 1), ('today', 1), ('adobe', 1), ('indispensable', 1), ('part', 1), ('creative', 1), ('designer', 1), ('toolkit', 1), ('mastering', 1), ('photo', 1), ('retouching', 1), ('general', 1), ('design', 1), ('work', 1), ('first', 1), ('step', 1), ('path', 1)]
[('step', 4), ('facebook', 3), ('full', 2), ('colour', 2), ('task', 1), ('legible', 1), ('print', 1), ('walk', 1), ('sharing', 1), ('post', 1), ('photo', 1), ('video', 1), ('whether', 1), ('new', 1), ('explore', 1), ('feature', 1), ('senior', 1), ('make', 1), ('learning', 1), ('use', 1), ('world', 1), ('popular', 1), ('social', 1), ('medium', 1), ('site', 1), ('simple', 1), ('fun', 1), ('instruction', 1)]
[('autocad', 2), ('drawing', 2), ('introduction', 1), ('address', 1), ('advance', 1), ('technology', 1), ('introduces', 1), ('student', 1), ('dimensional', 1), ('skill', 1), ('command', 1), ('using', 1), ('release', 1), ('straightforward', 1), ('explanation', 1), ('focus', 1), ('actual', 1), ('procedure', 1)]
[('algorithm', 2), ('hand', 1), ('easy', 1), ('comprehend', 1), ('guide', 1), ('perfect', 1), ('anyone', 1), ('need', 1), ('understand', 1), ('nbsp', 1), ('explosive', 1), ('growth', 1), ('amount', 1), ('data', 1), ('diversity', 1), ('computing', 1), ('application', 1), ('efficient', 1), ('needed', 1)]
[('nan', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('collaboration', 2), ('scrum', 2), ('unlock', 1), ('true', 1), ('power', 1), ('within', 1), ('team', 1), ('beyond', 1), ('practical', 1), ('guide', 1), ('packed', 1), ('tip', 1), ('tool', 1), ('real', 1), ('life', 1), ('scenario', 1), ('elevate', 1), ('facilitation', 1), ('skill', 1), ('requires', 1), ('healthy', 1), ('member', 1)]
[('ai', 2), ('revolution', 1), ('discover', 1), ('dynamic', 1), ('application', 1), ('networking', 1), ('cybersecurity', 1), ('nbsp', 1), ('profound', 1), ('impact', 1), ('nearly', 1), ('every', 1), ('sector', 1), ('workforce', 1), ('huge', 1), ('professional', 1), ('financial', 1), ('opportunity', 1), ('await', 1), ('key', 1)]
[('trust', 1), ('best', 1), ('selling', 1), ('official', 1), ('cert', 1), ('guide', 1), ('series', 1), ('cisco', 1), ('press', 1), ('help', 1), ('learn', 1), ('prepare', 1), ('practice', 1), ('ccst', 1), ('cybersecurity', 1), ('exam', 1), ('regarded', 1), ('level', 1), ('detail', 1), ('study', 1), ('plan', 1), ('assessment', 1), ('feature', 1), ('challenging', 1), ('review', 1)]
[('scaling', 2), ('database', 2), ('big', 2), ('data', 2), ('started', 1), ('infrastructure', 1), ('high', 1), ('volume', 1), ('application', 1), ('nbsp', 1), ('understanding', 1), ('scalability', 1), ('present', 1), ('fundamental', 1), ('single', 1), ('node', 1), ('large', 1), ('cluster', 1), ('provides', 1), ('practical', 1)]
[('every', 2), ('complete', 1), ('design', 1), ('large', 1), ('family', 1), ('font', 1), ('year', 1), ('first', 1), ('edition', 1), ('leading', 1), ('worldwide', 1), ('expert', 1), ('system', 1), ('spent', 1), ('several', 1), ('month', 1), ('inspecting', 1), ('page', 1), ('thoroughly', 1), ('believe', 1), ('properly', 1)]
[('nbsp', 3), ('virtualizing', 2), ('microsoft', 2), ('application', 2), ('vsphere', 2), ('best', 1), ('practice', 1), ('guidance', 1), ('tip', 1), ('business', 1), ('critical', 1), ('vmware', 1), ('platform', 1), ('enterprise', 1), ('drive', 1), ('cost', 1)]
[('chromebook', 3), ('nbsp', 3), ('step', 2), ('help', 2), ('instruction', 1), ('callouts', 1), ('google', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1)]
[('cloud', 3), ('building', 2), ('native', 2), ('application', 2), ('approach', 2), ('oracle', 1), ('infrastructure', 1), ('guide', 1), ('development', 1), ('modern', 1), ('designing', 1), ('deploying', 1), ('managing', 1), ('take', 1), ('advantage', 1), ('benefit', 1), ('utility', 1)]
[('nan', 1)]
[('mpls', 2), ('design', 2), ('field', 1), ('proven', 1), ('covering', 1), ('vpns', 1), ('pseudowire', 1), ('qos', 1), ('traffic', 1), ('engineering', 1), ('ipv', 1), ('network', 1), ('recovery', 1), ('multicast', 1), ('understand', 1), ('technology', 1), ('application', 1), ('various', 1), ('service', 1), ('provider', 1), ('enterprise', 1), ('topology', 1), ('via', 1), ('detailed', 1), ('study', 1)]
[('painter', 4), ('book', 2), ('note', 1), ('cover', 1), ('reach', 1), ('milestone', 1), ('twentieth', 1), ('anniversary', 1), ('wow', 1), ('tenth', 1), ('edition', 1), ('continues', 1), ('inspiration', 1), ('fan', 1), ('everywhere', 1), ('novice', 1), ('pro', 1), ('alike', 1), ('author', 1), ('renowned', 1), ('artist', 1)]
[('io', 3), ('apps', 2), ('become', 1), ('increasingly', 1), ('complex', 1), ('business', 1), ('critical', 1), ('developer', 1), ('ensure', 1), ('consistently', 1), ('superior', 1), ('code', 1), ('quality', 1), ('mean', 1), ('adopting', 1), ('best', 1), ('practice', 1), ('creating', 1), ('testing', 1), ('test', 1), ('driven', 1), ('development', 1), ('tdd', 1)]
[('unix', 3), ('programming', 2), ('function', 2), ('classic', 1), ('guide', 1), ('completely', 1), ('updated', 1), ('application', 1), ('requires', 1), ('mastery', 1), ('system', 1), ('level', 1), ('service', 1), ('making', 1), ('sense', 1), ('many', 1), ('current', 1), ('specification', 1), ('daunting', 1), ('task', 1)]
[('software', 4), ('team', 3), ('visual', 2), ('studio', 2), ('system', 2), ('engineering', 1), ('microsoft', 1), ('written', 1), ('considering', 1), ('running', 1), ('project', 1), ('using', 1), ('vsts', 1), ('evaluating', 1), ('modern', 1), ('development', 1), ('practice', 1), ('use', 1)]
[('begin', 1), ('using', 1), ('multi', 1), ('threading', 1), ('throughout', 1), ('application', 1), ('importance', 1), ('clean', 1), ('architecture', 1), ('design', 1), ('critical', 1), ('place', 1), ('emphasis', 1), ('understanding', 1), ('platform', 1), ('capability', 1), ('emerging', 1), ('best', 1), ('practice', 1), ('joe', 1)]
[('network', 2), ('device', 1), ('system', 1), ('continue', 1), ('evolve', 1), ('software', 1), ('engineer', 1), ('face', 1), ('unique', 1), ('challenge', 1), ('creating', 1), ('reliable', 1), ('distributed', 1), ('application', 1), ('within', 1), ('frequently', 1), ('changing', 1), ('environment', 1), ('programming', 1), ('volume', 1), ('provides', 1), ('practical', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('parallel', 1), ('programming', 1), ('guide', 1), ('every', 1), ('software', 1), ('developer', 1), ('grid', 1), ('cluster', 1), ('next', 1), ('generation', 1), ('game', 1)]
[('step', 2), ('digital', 1), ('copy', 1), ('printed', 1), ('booik', 1), ('copyright', 1), ('detailed', 1), ('scenario', 1), ('imaginative', 1), ('illustration', 1), ('instruction', 1), ('consultant', 1), ('speaker', 1), ('norman', 1), ('kerth', 1), ('guide', 1), ('reader', 1), ('productive', 1), ('empowering', 1)]
[('training', 3), ('adobe', 2), ('book', 2), ('series', 2), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('animate', 1), ('classroom', 1), ('best', 1), ('selling', 1), ('hand', 1), ('software', 1), ('workbook', 1), ('offer', 1), ('program', 1), ('official', 1)]
[('autocad', 3), ('designed', 1), ('introductory', 1), ('user', 1), ('discovering', 1), ('present', 1), ('hand', 1), ('activity', 1), ('based', 1), ('approach', 1), ('use', 1), ('drafting', 1), ('tool', 1), ('complete', 1), ('technique', 1), ('tip', 1), ('shortcut', 1), ('insight', 1), ('improve', 1), ('efficiency', 1), ('topic', 1)]
[('ebook', 2), ('print', 2), ('access', 2), ('version', 1), ('title', 1), ('note', 1), ('provide', 1), ('practice', 1), ('test', 1), ('software', 1), ('accompanies', 1), ('book', 1), ('appendix', 1), ('video', 1), ('lesson', 1), ('available', 1), ('product', 1), ('registration', 1)]
[('cloud', 2), ('service', 2), ('complete', 1), ('guide', 1), ('provisioning', 1), ('managing', 1), ('based', 1), ('infrastructure', 1), ('iaa', 1), ('data', 1), ('center', 1), ('solution', 1), ('computing', 1), ('revolutionize', 1), ('way', 1), ('resource', 1), ('deployed', 1), ('configured', 1), ('managed', 1), ('year', 1), ('come', 1), ('provider', 1)]
[('nan', 1)]
[('trust', 1), ('best', 1), ('selling', 1), ('official', 1), ('cert', 1), ('guide', 1), ('series', 1), ('cisco', 1), ('press', 1), ('help', 1), ('learn', 1), ('prepare', 1), ('practice', 1), ('ccst', 1), ('networking', 1), ('exam', 1), ('regarded', 1), ('level', 1), ('detail', 1), ('study', 1), ('plan', 1), ('assessment', 1), ('feature', 1), ('challenging', 1), ('review', 1)]
[('ebook', 2), ('print', 2), ('practice', 2), ('version', 1), ('title', 1), ('note', 1), ('provide', 1), ('access', 1), ('test', 1), ('software', 1), ('accompanies', 1), ('book', 1), ('nbsp', 1), ('learn', 1), ('prepare', 1), ('vcp', 1), ('dcv', 1), ('vsphere', 1), ('professional', 1), ('exam', 1), ('success', 1)]
[('force', 2), ('cloud', 2), ('application', 2), ('salesforce', 1), ('platform', 1), ('build', 1), ('deploy', 1), ('powerful', 1), ('based', 1), ('enterprise', 1), ('faster', 1), ('jason', 1), ('ouellette', 1), ('give', 1), ('practical', 1), ('technical', 1), ('guidance', 1), ('need', 1), ('make', 1), ('newest', 1), ('release', 1), ('custom', 1), ('throughout', 1), ('add', 1), ('new', 1), ('code', 1)]
[('many', 2), ('organization', 2), ('maturity', 2), ('want', 2), ('improved', 1), ('process', 1), ('capability', 1), ('model', 1), ('integration', 1), ('cmmi', 1), ('greater', 1), ('agility', 1), ('conversely', 1), ('succeeding', 1), ('agile', 1), ('method', 1), ('benefit', 1), ('mature', 1)]
[('nan', 1)]
[('nan', 1)]
[('effective', 1), ('third', 1), ('edition', 1), ('respected', 1), ('net', 1), ('expert', 1), ('bill', 1), ('wagner', 1), ('identifies', 1), ('way', 1), ('harness', 1), ('full', 1), ('power', 1), ('language', 1), ('write', 1), ('exceptionally', 1), ('robust', 1), ('efficient', 1), ('performing', 1), ('code', 1), ('reflecting', 1), ('growing', 1), ('sophistication', 1)]
[('tcl', 2), ('network', 2), ('administration', 2), ('nbsp', 2), ('cisco', 2), ('guide', 1), ('building', 1), ('modifying', 1), ('script', 1), ('automate', 1), ('task', 1), ('streamline', 1), ('save', 1), ('time', 1), ('scripting', 1), ('networking', 1), ('professional', 1), ('relentless', 1), ('pressure', 1)]
[('network', 4), ('top', 2), ('design', 2), ('approach', 2), ('enterprise', 2), ('rd', 1), ('edition', 1), ('present', 1), ('systematic', 1), ('fully', 1), ('practical', 1), ('designing', 1), ('thoroughly', 1), ('updated', 1), ('today', 1), ('newest', 1), ('technical', 1), ('business', 1), ('trend', 1), ('cover', 1), ('facet', 1), ('element', 1), ('modern', 1), ('author', 1), ('innovative', 1), ('start', 1), ('focusing', 1)]
[('firewall', 3), ('cisco', 2), ('concept', 1), ('design', 1), ('deployment', 1), ('stateful', 1), ('solution', 1), ('book', 1), ('alexandre', 1), ('proposes', 1), ('totally', 1), ('different', 1), ('approach', 1), ('important', 1), ('subject', 1), ('instead', 1), ('presenting', 1), ('configuration', 1), ('model', 1), ('us', 1)]
[('character', 2), ('maya', 2), ('unique', 1), ('depth', 1), ('approach', 1), ('creating', 1), ('realistic', 1), ('creation', 1), ('modeling', 1), ('animation', 1), ('control', 1), ('author', 1), ('chris', 1), ('maraffi', 1), ('expertise', 1), ('field', 1), ('classroom', 1), ('translates', 1), ('knowledge', 1), ('solid', 1)]
[('eclipse', 2), ('graphical', 2), ('based', 1), ('application', 1), ('become', 1), ('increasingly', 1), ('popular', 1), ('user', 1), ('demanding', 1), ('sophisticated', 1), ('interface', 1), ('standard', 1), ('widget', 1), ('enough', 1), ('graphic', 1), ('built', 1), ('gef', 1), ('often', 1), ('best', 1), ('solution', 1), ('editing', 1)]
[('secure', 3), ('identity', 2), ('access', 2), ('borderless', 2), ('network', 2), ('cisco', 2), ('plan', 1), ('deploy', 1), ('based', 1), ('byod', 1), ('nbsp', 1), ('using', 1), ('unified', 1), ('architecture', 1), ('service', 1), ('engine', 1), ('regain', 1), ('control', 1), ('bring', 1)]
[('analytics', 5), ('business', 3), ('digital', 3), ('drive', 1), ('maximum', 1), ('value', 1), ('web', 1), ('site', 1), ('intelligence', 1), ('building', 1), ('organization', 1), ('pioneering', 1), ('expert', 1), ('judah', 1), ('phillips', 1), ('thoroughly', 1), ('explains', 1)]
[('window', 3), ('build', 2), ('full', 1), ('color', 1), ('learn', 1), ('store', 1), ('apps', 1), ('figure', 1), ('code', 1), ('appear', 1), ('visual', 1), ('studio', 1), ('enables', 1), ('stunning', 1), ('application', 1), ('integrate', 1), ('web', 1), ('service', 1), ('sell', 1)]
[('data', 3), ('linq', 2), ('dig', 1), ('transform', 1), ('way', 1), ('work', 1), ('query', 1), ('variety', 1), ('source', 1), ('including', 1), ('database', 1), ('object', 1), ('xml', 1), ('file', 1), ('directly', 1), ('microsoft', 1), ('visual', 1), ('basic', 1), ('guided', 1), ('access', 1), ('expert', 1)]
[('programming', 3), ('learn', 2), ('kinect', 2), ('start', 2), ('ready', 1), ('fundamental', 1), ('api', 1), ('begin', 1), ('building', 1), ('apps', 1), ('use', 1), ('motion', 1), ('tracking', 1), ('voice', 1), ('recognition', 1), ('experience', 1), ('simply', 1)]
[('experience', 4), ('design', 3), ('meaningful', 1), ('learning', 1), ('memorable', 1), ('taught', 1), ('valuable', 1), ('lesson', 1), ('leave', 1), ('lasting', 1), ('impression', 1), ('learner', 1), ('school', 1)]
[('best', 2), ('practice', 2), ('cloud', 2), ('storage', 2), ('master', 1), ('success', 1), ('aspect', 1), ('azure', 1), ('environment', 1), ('operate', 1), ('scale', 1), ('component', 1), ('designed', 1), ('configured', 1), ('complete', 1), ('guide', 1)]
[('audio', 3), ('affect', 1), ('human', 1), ('brain', 1), ('powerful', 1), ('profound', 1), ('way', 1), ('using', 1), ('apple', 1), ('core', 1), ('leverage', 1), ('power', 1), ('mac', 1), ('io', 1), ('software', 1), ('implementing', 1), ('feature', 1), ('ranging', 1), ('capture', 1), ('real', 1), ('time', 1), ('effect', 1), ('mp', 1)]
[('power', 4), ('microsoft', 2), ('prepare', 1), ('exam', 1), ('pl', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('knowledge', 1), ('fundamental', 1), ('platform', 1), ('including', 1), ('business', 1), ('value', 1), ('core', 1), ('component', 1), ('capability', 1), ('advantage', 1), ('bi', 1), ('apps', 1), ('automate', 1)]
[('essential', 2), ('cisco', 2), ('networking', 2), ('academy', 2), ('course', 2), ('companion', 1), ('guide', 1), ('support', 1), ('version', 1), ('designed', 1), ('student', 1), ('want', 1), ('pursue', 1), ('career', 1), ('learn', 1), ('computer', 1), ('work', 1), ('assemble', 1)]
[('active', 2), ('directory', 2), ('use', 1), ('window', 1), ('powershell', 1), ('simplify', 1), ('accelerate', 1), ('domain', 1), ('controller', 1), ('management', 1), ('whether', 1), ('running', 1), ('entirely', 1), ('cloud', 1), ('premise', 1), ('hybrid', 1), ('environment', 1), ('concise', 1), ('reference', 1), ('microsoft', 1), ('mvp', 1), ('charlie', 1), ('russel', 1), ('present', 1), ('command', 1), ('tested', 1), ('script', 1), ('best', 1), ('practice', 1), ('advice', 1), ('need', 1), ('deploy', 1), ('run', 1)]
[('wireless', 3), ('ad', 2), ('hoc', 2), ('network', 2), ('practical', 1), ('design', 1), ('performance', 1), ('solution', 1), ('every', 1), ('comprise', 1), ('mobile', 1), ('device', 1), ('use', 1), ('transmission', 1), ('communication', 1), ('set', 1), ('anywhere', 1), ('time', 1), ('eliminate', 1)]
[('lte', 2), ('cellular', 2), ('network', 2), ('long', 1), ('term', 1), ('evolution', 1), ('next', 1), ('step', 1), ('gsm', 1), ('evolutionary', 1), ('path', 1), ('beyond', 1), ('technology', 1), ('strongly', 1), ('positioned', 1), ('dominant', 1), ('global', 1), ('standard', 1), ('represents', 1), ('first', 1), ('generation', 1), ('based', 1), ('flat', 1), ('ip', 1), ('architecture', 1), ('designed', 1), ('seamlessly', 1), ('support', 1), ('variety', 1), ('different', 1)]
[('web', 4), ('apache', 3), ('end', 2), ('server', 2), ('application', 2), ('guide', 1), ('securing', 1), ('nbsp', 1), ('hacked', 1), ('company', 1), ('improved', 1), ('perimeter', 1), ('security', 1), ('hacker', 1), ('increasingly', 1), ('focused', 1), ('attacking', 1)]
[('day', 1), ('acquire', 1), ('knowledge', 1), ('skill', 1), ('necessary', 1), ('develop', 1), ('application', 1), ('computer', 1), ('apps', 1), ('run', 1), ('android', 1), ('phone', 1), ('tablet', 1), ('complete', 1), ('tutorial', 1), ('quickly', 1), ('master', 1), ('basic', 1), ('move', 1)]
[('ipsec', 4), ('mode', 2), ('definitive', 1), ('design', 1), ('deployment', 1), ('guide', 1), ('secure', 1), ('virtual', 1), ('private', 1), ('network', 1), ('learn', 1), ('protocol', 1), ('cisco', 1), ('io', 1), ('packet', 1), ('processing', 1), ('understand', 1), ('difference', 1), ('tunnel', 1), ('transport', 1), ('evaluate', 1)]
[('software', 2), ('nbsp', 2), ('automated', 2), ('testing', 2), ('praise', 1), ('test', 1), ('engineering', 1), ('ibm', 1), ('rational', 1), ('functional', 1), ('tester', 1), ('indispensable', 1), ('resource', 1), ('become', 1), ('critical', 1), ('exercise', 1), ('especially', 1), ('developer', 1), ('utilizing', 1), ('iterative', 1)]
[('working', 2), ('vmware', 2), ('vi', 2), ('best', 1), ('practice', 1), ('tos', 1), ('technical', 1), ('deep', 1), ('dive', 1), ('pro', 1), ('nbsp', 1), ('maximum', 1), ('vsphere', 1), ('comprehensive', 1), ('minute', 1), ('reference', 1), ('everyone', 1), ('plan', 1), ('implement', 1), ('administers', 1), ('virtual', 1), ('infrastructure', 1)]
[('guide', 2), ('esx', 2), ('server', 2), ('vmware', 2), ('edward', 1), ('haletky', 1), ('complete', 1), ('solution', 1), ('focused', 1), ('running', 1), ('vsphere', 1), ('nbsp', 1), ('extensively', 1), ('updated', 1), ('revised', 1), ('definitive', 1), ('real', 1), ('world', 1), ('planning', 1), ('deploying', 1), ('managing', 1)]
[('dtrace', 2), ('oracle', 1), ('solaris', 1), ('feature', 1), ('revolutionizes', 1), ('way', 1), ('debug', 1), ('operating', 1), ('system', 1), ('application', 1), ('using', 1), ('dynamically', 1), ('instrument', 1), ('software', 1), ('quickly', 1), ('answer', 1), ('virtually', 1), ('question', 1), ('behavior', 1), ('first', 1), ('time', 1)]
[('system', 2), ('real', 1), ('time', 1), ('embedded', 1), ('face', 1), ('development', 1), ('challenge', 1), ('traditional', 1), ('software', 1), ('shrinking', 1), ('budget', 1), ('shorter', 1), ('timeframes', 1), ('even', 1), ('difficult', 1), ('successfully', 1), ('develop', 1), ('due', 1), ('additional', 1), ('requirement', 1)]
[('software', 3), ('architecture', 2), ('comprehensive', 1), ('process', 1), ('defining', 1), ('work', 1), ('good', 1), ('foundation', 1), ('successful', 1), ('system', 1), ('effective', 1), ('architecting', 1), ('requires', 1), ('clear', 1), ('understanding', 1), ('organizational', 1), ('role', 1), ('artifact', 1)]
[('business', 2), ('agility', 2), ('eda', 2), ('event', 2), ('improving', 1), ('nbsp', 1), ('going', 1), ('beyond', 1), ('soa', 1), ('enterprise', 1), ('gain', 1), ('even', 1), ('greater', 1), ('implementing', 1), ('driven', 1), ('architecture', 1), ('edas', 1), ('automatically', 1), ('detect', 1), ('react', 1), ('significant', 1), ('planning', 1)]
[('interested', 1), ('developing', 1), ('burgeoning', 1), ('platform', 1), ('better', 1), ('able', 1), ('speed', 1)]
[('network', 2), ('guide', 2), ('problem', 2), ('nbsp', 2), ('real', 2), ('maintenance', 1), ('troubleshooting', 1), ('field', 1), ('tested', 1), ('solution', 1), ('everyday', 1), ('second', 1), ('edition', 1), ('neal', 1), ('allen', 1), ('practical', 1), ('world', 1), ('anticipating', 1), ('finding', 1), ('solving', 1), ('fast', 1), ('life', 1)]
[('software', 4), ('testing', 3), ('bug', 2), ('find', 1), ('fix', 1), ('killer', 1), ('evade', 1), ('conventional', 1), ('nbsp', 1), ('exploratory', 1), ('renowned', 1), ('expert', 1), ('james', 1), ('whittaker', 1), ('reveals', 1), ('real', 1), ('cause', 1), ('today', 1), ('serious', 1), ('hidden', 1)]
[('refactoring', 3), ('first', 2), ('ruby', 2), ('workbook', 2), ('hand', 1), ('practical', 1), ('nbsp', 1), ('art', 1), ('improving', 1), ('design', 1), ('existing', 1), ('code', 1), ('taken', 1), ('world', 1), ('storm', 1), ('time', 1), ('designed', 1)]
[('game', 3), ('development', 3), ('crisis', 1), ('facing', 1), ('bloated', 1), ('budget', 1), ('impossible', 1), ('schedule', 1), ('unmanageable', 1), ('complexity', 1), ('death', 1), ('march', 1), ('overtime', 1), ('wonder', 1), ('many', 1), ('studio', 1), ('struggling', 1), ('survive', 1), ('fortunately', 1), ('solution', 1), ('scrum', 1), ('agile', 1), ('method', 1), ('already', 1), ('revolutionising', 1), ('outside', 1), ('industry', 1), ('long', 1), ('time', 1)]
[('visual', 3), ('help', 2), ('work', 2), ('studio', 2), ('expert', 1), ('advice', 1), ('smarter', 1), ('increase', 1), ('productivity', 1), ('take', 1), ('detailed', 1), ('look', 1), ('learn', 1), ('practical', 1), ('technique', 1), ('efficiently', 1), ('fully', 1), ('revised', 1), ('expanded', 1), ('version', 1)]
[('microsoft', 2), ('office', 2), ('guide', 2), ('mo', 2), ('demonstrate', 1), ('expertise', 1), ('designed', 1), ('help', 1), ('practice', 1), ('prepare', 1), ('four', 1), ('core', 1), ('specialist', 1), ('exam', 1), ('study', 1), ('full', 1)]
[('build', 3), ('supplement', 2), ('msbuild', 2), ('help', 1), ('drill', 1), ('even', 1), ('maximise', 1), ('control', 1), ('software', 1), ('deployment', 1), ('process', 1), ('designed', 1), ('companion', 1), ('popular', 1), ('book', 1), ('inside', 1), ('microsoft', 1), ('engine', 1), ('using', 1), ('team', 1), ('foundation', 1), ('extends', 1), ('knowledge', 1), ('covering', 1), ('new', 1), ('visual', 1), ('studio', 1)]
[('sql', 3), ('server', 3), ('dive', 1), ('deep', 1), ('inside', 1), ('architecture', 1), ('explore', 1), ('core', 1), ('engine', 1), ('microsoft', 1), ('put', 1), ('practical', 1), ('knowledge', 1), ('work', 1), ('led', 1), ('team', 1), ('expert', 1), ('learn', 1), ('skill', 1), ('need', 1), ('exploit', 1), ('key', 1)]
[('java', 3), ('hour', 2), ('step', 2), ('sam', 1), ('teach', 1), ('seventh', 1), ('edition', 1), ('cover', 1), ('android', 1), ('development', 1), ('lesson', 1), ('le', 1), ('learn', 1), ('fundamental', 1), ('programming', 1), ('book', 1), ('straightforward', 1), ('approach', 1)]
[('effect', 2), ('modern', 1), ('website', 1), ('use', 1), ('variety', 1), ('animated', 1), ('improve', 1), ('usability', 1), ('delight', 1), ('surprise', 1), ('user', 1), ('require', 1), ('complex', 1), ('scripting', 1), ('programming', 1), ('skill', 1), ('many', 1), ('within', 1), ('grasp', 1), ('designer', 1)]
[('write', 1), ('apps', 1), ('maximum', 1), ('performance', 1), ('responsiveness', 1), ('threading', 1), ('concurrency', 1), ('important', 1), ('mobile', 1), ('large', 1), ('distributed', 1), ('system', 1), ('book', 1), ('excellent', 1), ('job', 1), ('introducing', 1), ('basic', 1), ('concept', 1), ('describing', 1)]
[('nan', 1)]
[('nan', 1)]
[('activity', 2), ('experience', 2), ('book', 1), ('contains', 1), ('fun', 1), ('challenging', 1), ('help', 1), ('student', 1), ('learn', 1), ('core', 1), ('concept', 1), ('user', 1), ('sketching', 1), ('photo', 1), ('safari', 1), ('encourage', 1), ('field', 1), ('observation', 1), ('creating', 1), ('model', 1), ('daily', 1), ('bus', 1), ('ride', 1), ('etc', 1), ('structured', 1), ('explanation', 1), ('full', 1), ('text', 1), ('downloaded', 1), ('computer', 1)]
[('agile', 4), ('world', 2), ('becoming', 1), ('ubiquitous', 1), ('successful', 1), ('implementation', 1), ('remains', 1), ('difficult', 1), ('organisation', 1), ('keep', 1), ('getting', 1), ('stuck', 1), ('issue', 1), ('real', 1), ('agility', 1), ('practical', 1), ('guidance', 1), ('practitioner', 1), ('need', 1), ('happen', 1), ('nbsp', 1), ('renowned', 1), ('coach', 1), ('consultant', 1), ('daniel', 1), ('james', 1), ('gullo', 1), ('identifies', 1), ('address', 1)]
[('window', 2), ('step', 2), ('start', 2), ('done', 1), ('quickly', 1), ('jump', 1), ('wherever', 1), ('need', 1), ('answer', 1), ('brisk', 1), ('lesson', 1), ('colourful', 1), ('screenshots', 1), ('show', 1), ('exactly', 1), ('discover', 1), ('fun', 1), ('functional', 1), ('feature', 1), ('work', 1), ('new', 1), ('improved', 1), ('menu', 1), ('screen', 1), ('learn', 1), ('different', 1), ('sign', 1), ('method', 1)]
[('adobe', 3), ('xd', 2), ('release', 2), ('book', 2), ('step', 2), ('creative', 1), ('professional', 1), ('ux', 1), ('designer', 1), ('seeking', 1), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('choose', 1), ('cc', 1), ('classroom', 1), ('best', 1), ('selling', 1), ('series', 1), ('hand', 1), ('software', 1), ('training', 1), ('workbook', 1), ('press', 1), ('project', 1), ('based', 1), ('lesson', 1), ('guide', 1), ('user', 1)]
[('sharepoint', 3), ('business', 3), ('essential', 1), ('approach', 1), ('microsoft', 1), ('strict', 1), ('value', 1), ('perspective', 1), ('helping', 1), ('plan', 1), ('implement', 1), ('solution', 1), ('achieve', 1), ('effective', 1), ('result', 1), ('leading', 1), ('expert', 1), ('draw', 1), ('unsurpassed', 1), ('experience', 1), ('provide', 1), ('focused', 1), ('guidance', 1), ('strategy', 1), ('governance', 1), ('planning', 1), ('deployment', 1)]
[('process', 3), ('use', 3), ('based', 2), ('case', 2), ('software', 2), ('edition', 1), ('describes', 1), ('employing', 1), ('gather', 1), ('define', 1), ('requirement', 1), ('roughly', 1), ('defined', 1), ('involve', 1), ('figuring', 1), ('exactly', 1), ('end', 1), ('user', 1), ('system', 1), ('completed', 1), ('coding', 1), ('begin', 1), ('presentation', 1), ('thoroughly', 1), ('revised', 1)]
[('challenge', 1), ('designing', 1), ('building', 1), ('maintaining', 1), ('large', 1), ('scale', 1), ('distributed', 1), ('enterprise', 1), ('system', 1), ('truly', 1), ('daunting', 1), ('written', 1), ('professional', 1), ('architecture', 1), ('middleware', 1), ('second', 1), ('edition', 1), ('help', 1), ('rise', 1), ('conflict', 1)]
[('hybrid', 3), ('cloud', 2), ('manage', 1), ('operate', 1), ('integrate', 1), ('existing', 1), ('infrastructure', 1), ('multicloud', 1), ('environment', 1), ('nbsp', 1), ('adoption', 1), ('accelerating', 1), ('company', 1), ('discover', 1), ('architecture', 1), ('reduce', 1), ('hosting', 1), ('cost', 1), ('improve', 1), ('agility', 1), ('promote', 1)]
[('data', 2), ('complete', 1), ('practical', 1), ('guide', 1), ('architect', 1), ('storage', 1), ('network', 1), ('maximum', 1), ('efficiency', 1), ('quickly', 1), ('troubleshoot', 1), ('congestion', 1), ('issue', 1), ('nbsp', 1), ('important', 1), ('entity', 1), ('center', 1), ('addition', 1), ('stored', 1), ('securely', 1), ('long', 1), ('term', 1)]
[('welcome', 1), ('greatest', 1), ('collaboration', 1), ('dream', 1), ('world', 1), ('book', 1), ('probably', 1), ('far', 1), ('beyond', 1), ('foreword', 1), ('mads', 1), ('torgersen', 1), ('program', 1), ('manager', 1), ('microsoft', 1), ('essential', 1), ('organized', 1), ('fluff', 1), ('guide', 1)]
[('nan', 1)]
[('want', 3), ('step', 2), ('galaxy', 2), ('edge', 2), ('full', 1), ('colour', 1), ('task', 1), ('walk', 1), ('getting', 1), ('keeping', 1), ('samsung', 1), ('working', 1), ('way', 1), ('learn', 1), ('discover', 1), ('exciting', 1), ('new', 1), ('capability', 1), ('master', 1), ('quickest', 1), ('shortcut', 1), ('calling', 1), ('texting', 1), ('browsing', 1), ('customise', 1), ('show', 1)]
[('user', 2), ('free', 1), ('ubuntu', 1), ('operating', 1), ('system', 1), ('heart', 1), ('mind', 1), ('million', 1), ('worldwide', 1), ('combine', 1), ('strong', 1), ('technical', 1), ('platform', 1), ('impressive', 1), ('quality', 1), ('enthusiastic', 1), ('global', 1), ('community', 1), ('relentlessly', 1), ('support', 1), ('document', 1), ('test', 1)]
[('web', 2), ('apps', 2), ('asp', 2), ('net', 2), ('core', 2), ('book', 1), ('guide', 1), ('entire', 1), ('process', 1), ('building', 1), ('deploying', 1), ('managing', 1), ('cross', 1), ('platform', 1), ('master', 1), ('microsoft', 1), ('revolutionary', 1), ('open', 1), ('source', 1), ('technology', 1), ('learn', 1), ('integrate', 1), ('immense', 1), ('power', 1), ('mvc', 1), ('docker', 1), ('azure', 1), ('visual', 1), ('studio', 1), ('javascript', 1), ('entity', 1), ('framework', 1), ('working', 1)]
[('ipad', 3), ('use', 2), ('device', 2), ('discover', 1), ('hundred', 1), ('tip', 1), ('trick', 1), ('right', 1), ('away', 1), ('pro', 1), ('air', 1), ('mini', 1), ('iphone', 1), ('maximise', 1), ('functionality', 1), ('learn', 1), ('newest', 1), ('io', 1), ('utilise', 1), ('apple', 1), ('mobile', 1), ('powerful', 1), ('communication', 1), ('organisation', 1), ('productivity', 1), ('tool', 1), ('feature', 1), ('packed', 1), ('entertainment', 1), ('health', 1), ('fitness', 1)]
[('step', 2), ('need', 2), ('experience', 1), ('learning', 1), ('made', 1), ('easy', 1), ('quickly', 1), ('teach', 1), ('manage', 1), ('communication', 1), ('outlook', 1), ('set', 1), ('pace', 1), ('building', 1), ('practicing', 1), ('skill', 1), ('topic', 1), ('include', 1), ('managing', 1), ('mail', 1)]
[('ruby', 3), ('example', 2), ('way', 1), ('take', 1), ('approach', 1), ('programming', 1), ('bulk', 1), ('material', 1), ('consisting', 1), ('arranged', 1), ('topic', 1), ('answer', 1), ('question', 1), ('working', 1), ('along', 1), ('author', 1), ('reader', 1), ('presented', 1), ('task', 1), ('description', 1), ('discussion', 1), ('technical', 1), ('constraint', 1)]
[('microsoft', 3), ('business', 2), ('cloud', 2), ('service', 2), ('grow', 1), ('public', 1), ('without', 1), ('costly', 1), ('new', 1), ('hardware', 1), ('staff', 1), ('discover', 1), ('high', 1), ('value', 1), ('including', 1), ('office', 1), ('intune', 1), ('azure', 1), ('onedrive', 1), ('window', 1), ('server', 1), ('set', 1), ('work', 1), ('environment', 1), ('build', 1), ('website', 1), ('customise', 1), ('apps', 1), ('market', 1), ('online', 1)]
[('game', 4), ('hiwiller', 2), ('designer', 1), ('playlist', 1), ('top', 1), ('design', 1), ('instructor', 1), ('zack', 1), ('introduces', 1), ('remarkable', 1), ('revealing', 1), ('work', 1), ('apply', 1), ('breakthrough', 1), ('technique', 1), ('ranging', 1), ('go', 1), ('texas', 1), ('hold', 1), ('em', 1), ('magic', 1), ('gathering', 1), ('dishonored', 1), ('teach', 1), ('indispensable', 1), ('lesson', 1)]
[('step', 2), ('photo', 2), ('iphone', 2), ('help', 2), ('easy', 1), ('clear', 1), ('readable', 1), ('focused', 1), ('want', 1), ('instruction', 1), ('task', 1), ('care', 1), ('large', 1), ('full', 1), ('colour', 1), ('close', 1), ('callouts', 1), ('show', 1), ('exactly', 1), ('common', 1), ('sense', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1)]
[('exam', 3), ('aws', 2), ('certified', 2), ('sysops', 2), ('administrator', 2), ('associate', 2), ('soa', 2), ('certification', 2), ('learn', 1), ('prepare', 1), ('practice', 1), ('success', 1), ('cert', 1), ('guide', 1), ('pearson', 1), ('leader', 1), ('learning', 1), ('explore', 1), ('topic', 1), ('defined', 1), ('latest', 1), ('official', 1), ('objective', 1), ('amazon', 1), ('pre', 1), ('test', 1)]
[('jvm', 3), ('java', 3), ('performance', 2), ('engineering', 2), ('dive', 1), ('depth', 1), ('champion', 1), ('monica', 1), ('beckwith', 1), ('nbsp', 1), ('essential', 1), ('guide', 1), ('every', 1), ('seasoned', 1), ('developer', 1), ('demystifying', 1), ('complexity', 1), ('virtual', 1), ('machine', 1)]
[('exam', 2), ('azure', 2), ('professional', 2), ('real', 2), ('world', 2), ('ref', 1), ('az', 1), ('microsoft', 1), ('architect', 1), ('design', 1), ('offer', 1), ('level', 1), ('preparation', 1), ('help', 1), ('candidate', 1), ('maximize', 1), ('performance', 1), ('sharpen', 1), ('skill', 1), ('job', 1), ('focus', 1), ('specific', 1), ('area', 1), ('expertise', 1), ('modern', 1), ('need', 1), ('demonstrate', 1), ('mastery', 1), ('designing', 1), ('architecting', 1), ('high', 1), ('value', 1), ('cloud', 1)]
[('billion', 1), ('stolen', 1), ('credential', 1), ('work', 1), ('cybercriminals', 1), ('hijack', 1), ('account', 1), ('discover', 1), ('company', 1), ('secret', 1), ('compromise', 1), ('personal', 1), ('information', 1), ('health', 1), ('care', 1), ('record', 1), ('steal', 1), ('virtually', 1), ('high', 1), ('value', 1), ('digital', 1), ('asset', 1), ('help', 1), ('deter', 1)]
[('illustrator', 2), ('world', 2), ('step', 2), ('adobe', 1), ('cc', 1), ('wow', 1), ('book', 1), ('share', 1), ('real', 1), ('tip', 1), ('trick', 1), ('technique', 1), ('drawn', 1), ('work', 1), ('many', 1), ('best', 1), ('artist', 1), ('exercise', 1), ('sample', 1), ('full', 1), ('color', 1), ('gallery', 1), ('downloadable', 1), ('file', 1), ('learn', 1), ('powerful', 1), ('new', 1), ('way', 1), ('create', 1), ('complex', 1), ('repeating', 1), ('pattern', 1), ('apply', 1), ('gradient', 1), ('path', 1), ('edit', 1)]
[('exam', 3), ('command', 3), ('guide', 2), ('objective', 1), ('key', 1), ('configuration', 1), ('file', 1), ('detailed', 1), ('comptia', 1), ('linux', 1), ('portable', 1), ('provides', 1), ('single', 1), ('point', 1), ('reference', 1), ('studying', 1), ('certification', 1), ('valuable', 1), ('resource', 1), ('candidate', 1), ('successfully', 1), ('passed', 1), ('summarises', 1), ('keywords', 1)]
[('redstone', 3), ('complex', 2), ('allows', 2), ('minecraft', 1), ('interesting', 1), ('aspect', 1), ('basic', 1), ('place', 1), ('lever', 1), ('pressure', 1), ('plate', 1), ('open', 1), ('door', 1), ('create', 1), ('working', 1), ('calculator', 1), ('massive', 1)]
[('database', 2), ('everything', 2), ('mysql', 1), ('popular', 1), ('management', 1), ('system', 1), ('available', 1), ('powering', 1), ('internet', 1), ('powerhouse', 1), ('individual', 1), ('corporate', 1), ('simple', 1), ('end', 1), ('user', 1), ('application', 1), ('book', 1), ('teach', 1)]
[('kotlin', 6), ('development', 3), ('technique', 2), ('android', 2), ('app', 2), ('language', 1), ('brings', 1), ('state', 1), ('art', 1), ('programming', 1), ('construct', 1), ('help', 1), ('rapidly', 1), ('understand', 1), ('principle', 1), ('apply', 1), ('production', 1), ('integrate', 1), ('existing', 1), ('java', 1), ('code', 1), ('plan', 1), ('migration', 1), ('choose', 1)]
[('step', 2), ('help', 2), ('instruction', 1), ('task', 1), ('care', 1), ('large', 1), ('full', 1), ('colour', 1), ('close', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('common', 1), ('sense', 1), ('whenever', 1), ('run', 1), ('problem', 1), ('tip', 1), ('note', 1), ('along', 1), ('way', 1), ('learn', 1), ('social', 1), ('medium', 1), ('identified', 1), ('essential', 1), ('skill', 1), ('need', 1), ('stay', 1), ('connected', 1)]
[('monitoring', 3), ('building', 2), ('nagios', 2), ('definitive', 1), ('guide', 1), ('cost', 1), ('effective', 1), ('enterprise', 1), ('strength', 1), ('infrastructure', 1), ('latest', 1), ('commercial', 1), ('open', 1), ('source', 1), ('version', 1), ('world', 1), ('renowned', 1), ('expert', 1), ('david', 1), ('josephsen', 1), ('cover', 1), ('entire', 1), ('software', 1), ('stack', 1), ('treating', 1), ('specification', 1), ('language', 1), ('foundation', 1), ('designed', 1)]
[('mobile', 4), ('cordova', 3), ('using', 2), ('apache', 2), ('developer', 2), ('platform', 2), ('apps', 2), ('api', 2), ('write', 1), ('cross', 1), ('standard', 1), ('html', 1), ('javascript', 1), ('cs', 1), ('deploy', 1), ('every', 1), ('leading', 1), ('little', 1), ('coding', 1), ('cookbook', 1), ('provides', 1), ('experienced', 1), ('detail', 1), ('work', 1), ('use', 1), ('apis', 1)]
[('game', 2), ('although', 1), ('minecraft', 1), ('provides', 1), ('something', 1), ('everyone', 1), ('come', 1), ('direction', 1), ('rule', 1), ('explanation', 1), ('telling', 1), ('different', 1), ('item', 1), ('block', 1), ('amount', 1), ('information', 1)]
[('unity', 3), ('game', 3), ('world', 1), ('engine', 1), ('thanks', 1), ('affordability', 1), ('continuous', 1), ('improvement', 1), ('amazing', 1), ('global', 1), ('community', 1), ('design', 1), ('code', 1), ('author', 1), ('deploy', 1), ('multiple', 1), ('platform', 1), ('reaching', 1), ('huge', 1), ('audience', 1), ('earning', 1), ('maximum', 1), ('return', 1), ('learning', 1), ('development', 1), ('help', 1), ('master', 1)]
[('design', 2), ('book', 1), ('provides', 1), ('technical', 1), ('foundation', 1), ('implement', 1), ('animation', 1), ('way', 1), ('visually', 1), ('stunning', 1), ('programmatically', 1), ('maintainable', 1), ('throughout', 1), ('consider', 1), ('balance', 1), ('enriching', 1), ('page', 1), ('motion', 1), ('avoiding', 1), ('unnecessary', 1), ('flourish', 1), ('reader', 1), ('learn', 1), ('loading', 1), ('sequence', 1), ('ensure', 1), ('user', 1), ('stay', 1)]
[('vmware', 3), ('devops', 2), ('using', 2), ('tool', 2), ('administrator', 1), ('focus', 1), ('practice', 1), ('technology', 1), ('author', 1), ('introduce', 1), ('high', 1), ('value', 1), ('third', 1), ('party', 1), ('guide', 1), ('improve', 1), ('performance', 1), ('virtualised', 1), ('system', 1), ('application', 1), ('walk', 1), ('automating', 1), ('optimising', 1)]
[('phone', 2), ('call', 2), ('learn', 1), ('make', 1), ('free', 1), ('million', 1), ('dirt', 1), ('cheap', 1), ('practically', 1), ('everyone', 1), ('anywhere', 1), ('earth', 1), ('skype', 1), ('book', 1), ('help', 1), ('started', 1), ('fast', 1), ('computer', 1), ('window', 1), ('mac', 1)]
[('data', 2), ('graphic', 2), ('driven', 1), ('everywhere', 1), ('day', 1), ('website', 1), ('mobile', 1), ('apps', 1), ('interactive', 1), ('journalism', 1), ('high', 1), ('end', 1), ('presentation', 1), ('using', 1), ('create', 1), ('visually', 1), ('stunning', 1), ('powerfully', 1), ('effective', 1), ('visual', 1), ('storytelling', 1), ('hand', 1), ('full', 1), ('colour', 1), ('tutorial', 1), ('teach', 1), ('design', 1), ('chart', 1), ('visualization', 1)]
[('use', 2), ('android', 2), ('device', 2), ('discover', 1), ('hundred', 1), ('tip', 1), ('trick', 1), ('right', 1), ('away', 1), ('done', 1), ('fun', 1), ('learn', 1), ('smartphone', 1), ('tablet', 1), ('powerful', 1), ('communication', 1), ('organisation', 1), ('productivity', 1), ('tool', 1), ('feature', 1), ('packed', 1), ('entertainment', 1), ('dig', 1), ('deep', 1), ('setting', 1)]
[('aws', 3), ('certified', 3), ('solution', 3), ('architect', 3), ('associate', 3), ('certification', 1), ('demonstrates', 1), ('expertise', 1), ('architecting', 1), ('deploying', 1), ('secure', 1), ('robust', 1), ('application', 1), ('leading', 1), ('cloud', 1), ('platform', 1), ('world', 1), ('amazon', 1), ('web', 1), ('service', 1), ('designed', 1), ('candidate', 1)]
[('exam', 2), ('prepare', 1), ('microsoft', 1), ('sc', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('skill', 1), ('knowledge', 1), ('needed', 1), ('design', 1), ('evolve', 1), ('cybersecurity', 1), ('strategy', 1), ('aspect', 1), ('enterprise', 1), ('architecture', 1), ('designed', 1), ('experienced', 1), ('professional', 1)]
[('photoshop', 2), ('adobe', 1), ('world', 1), ('popular', 1), ('image', 1), ('editing', 1), ('program', 1), ('available', 1), ('ipad', 1), ('wherever', 1), ('use', 1), ('familiar', 1), ('tool', 1), ('retouch', 1), ('photo', 1), ('create', 1), ('composition', 1), ('work', 1), ('layer', 1), ('add', 1), ('text', 1), ('whole', 1), ('lot', 1)]
[('data', 2), ('prepare', 1), ('microsoft', 1), ('exam', 1), ('dp', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('ability', 1), ('design', 1), ('create', 1), ('deploy', 1), ('enterprise', 1), ('scale', 1), ('analytics', 1), ('solution', 1), ('designed', 1), ('business', 1), ('intelligence', 1), ('developer', 1), ('architect', 1), ('analyst', 1), ('professional', 1)]
[('rup', 2), ('ibm', 2), ('process', 2), ('official', 1), ('certification', 1), ('prep', 1), ('guide', 1), ('compact', 1), ('reference', 1), ('nbsp', 1), ('rational', 1), ('unified', 1), ('become', 1), ('de', 1), ('facto', 1), ('industry', 1), ('standard', 1), ('large', 1), ('scale', 1), ('enterprise', 1), ('software', 1), ('development', 1), ('certified', 1), ('solution', 1)]
[('docker', 4), ('container', 2), ('whether', 1), ('laptop', 1), ('remote', 1), ('cloud', 1), ('transform', 1), ('create', 1), ('test', 1), ('deploy', 1), ('manage', 1), ('critical', 1), ('application', 1), ('christopher', 1), ('negus', 1), ('help', 1), ('master', 1), ('containerisation', 1), ('ground', 1), ('start', 1), ('running', 1), ('image', 1), ('ubuntu', 1), ('fedora', 1), ('rhel', 1), ('coreos', 1), ('project', 1)]
[('visualisation', 2), ('barrett', 1), ('clark', 1), ('teach', 1), ('real', 1), ('world', 1), ('problem', 1), ('example', 1), ('developed', 1), ('specifically', 1), ('illuminate', 1), ('every', 1), ('technique', 1), ('need', 1), ('generate', 1), ('stunningly', 1), ('effective', 1), ('move', 1), ('absolute', 1), ('basic', 1), ('toward', 1), ('deep', 1), ('dive', 1), ('mastering', 1), ('diverse', 1), ('discovering', 1), ('use', 1), ('along', 1), ('way', 1), ('build', 1), ('three', 1), ('start', 1), ('finish', 1)]
[('knowledge', 2), ('transfer', 2), ('first', 1), ('practical', 1), ('hand', 1), ('guide', 1), ('today', 1), ('agile', 1), ('environment', 1), ('using', 1), ('realistic', 1), ('large', 1), ('scale', 1), ('case', 1), ('study', 1), ('thoughtworks', 1), ('expert', 1), ('vinod', 1), ('sankaranarayanan', 1), ('show', 1), ('elevate', 1), ('necessary', 1), ('evil', 1), ('activity', 1), ('full', 1), ('agility', 1), ('innovation', 1), ('bring', 1), ('together', 1), ('multiple', 1), ('organisation', 1), ('culture', 1)]
[('physical', 4), ('system', 3), ('cyber', 3), ('next', 1), ('generation', 1), ('mission', 1), ('critical', 1), ('embedded', 1), ('demand', 1), ('precisely', 1), ('synchronised', 1), ('seamless', 1), ('integration', 1), ('complex', 1), ('set', 1), ('computational', 1), ('algorithm', 1), ('component', 1), ('definitive', 1), ('guide', 1), ('building', 1), ('cps', 1), ('wide', 1), ('spectrum', 1)]
[('javascript', 3), ('make', 1), ('today', 1), ('even', 1), ('never', 1), ('programmed', 1), ('anything', 1), ('absolute', 1), ('beginner', 1), ('guide', 1), ('third', 1), ('edition', 1), ('fastest', 1), ('way', 1), ('learn', 1), ('starting', 1), ('basic', 1), ('gradually', 1), ('going', 1), ('deeper', 1), ('broader', 1)]
[('java', 4), ('se', 3), ('developer', 2), ('exam', 2), ('guide', 2), ('ocp', 1), ('oracle', 1), ('certified', 1), ('professional', 1), ('programmer', 1), ('unique', 1), ('combine', 1), ('rigorous', 1), ('introduction', 1), ('programming', 1), ('meticulous', 1), ('coverage', 1)]
[('netdevops', 3), ('holistic', 2), ('end', 2), ('master', 1), ('approach', 1), ('concept', 1), ('practical', 1), ('implementation', 1), ('comprehensive', 1), ('practitioner', 1), ('guide', 1), ('thing', 1), ('need', 1), ('use', 1), ('technique', 1), ('enhance', 1), ('network', 1), ('agility', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('image', 2), ('lightroom', 1), ('transformation', 1), ('martin', 1), ('applies', 1), ('approach', 1), ('broad', 1), ('collection', 1), ('showing', 1), ('turn', 1), ('ordinary', 1), ('looking', 1), ('photo', 1), ('hero', 1), ('shot', 1), ('without', 1), ('using', 1), ('fancy', 1), ('montage', 1), ('technique', 1), ('wacky', 1), ('effect', 1), ('giving', 1), ('interpretation', 1), ('explaining', 1), ('rationale', 1), ('behind', 1), ('choice', 1), ('make', 1), ('show', 1)]
[('angular', 5), ('application', 2), ('learning', 1), ('teach', 1), ('modern', 1), ('development', 1), ('begin', 1), ('basic', 1), ('technology', 1), ('technique', 1), ('used', 1), ('throughout', 1), ('book', 1), ('key', 1), ('feature', 1), ('typescript', 1), ('newer', 1), ('e', 1), ('syntax', 1), ('concept', 1), ('detail', 1), ('tool', 1), ('needed', 1), ('write', 1), ('professional', 1), ('reader', 1)]
[('adobe', 2), ('learn', 1), ('effective', 1), ('way', 1), ('collaborate', 1), ('across', 1), ('design', 1), ('apps', 1), ('even', 1), ('already', 1), ('comfortable', 1), ('photoshop', 1), ('illustrator', 1), ('indesign', 1), ('creative', 1), ('cloud', 1), ('offer', 1), ('powerful', 1), ('opportunity', 1), ('improving', 1), ('efficiency', 1), ('collaboration', 1)]
[('develop', 1), ('deploy', 1), ('sustain', 1), ('high', 1), ('performance', 1), ('virtual', 1), ('prototyping', 1), ('advanced', 1), ('amp', 1), ('organization', 1), ('reduce', 1), ('time', 1), ('market', 1), ('cost', 1), ('risk', 1), ('producing', 1), ('higher', 1), ('quality', 1), ('product', 1), ('grow', 1), ('complex', 1), ('response', 1), ('many', 1)]
[('database', 2), ('encompassing', 1), ('guide', 1), ('securing', 1), ('application', 1), ('costly', 1), ('cyberattacks', 1), ('nbsp', 1), ('time', 1), ('average', 1), ('cyberattack', 1), ('cost', 1), ('company', 1), ('million', 1), ('organization', 1), ('desperate', 1), ('qualified', 1), ('administrator', 1)]
[('tv', 2), ('music', 2), ('room', 2), ('mac', 1), ('chock', 1), ('full', 1), ('movie', 1), ('show', 1), ('big', 1), ('old', 1), ('high', 1), ('definition', 1), ('living', 1), ('radio', 1), ('bathroom', 1), ('stream', 1), ('every', 1), ('house', 1)]
[('operating', 2), ('system', 2), ('apple', 1), ('certified', 1), ('book', 1), ('o', 1), ('lion', 1), ('revised', 1), ('best', 1), ('seller', 1), ('take', 1), ('deep', 1), ('inside', 1), ('latest', 1), ('big', 1), ('cat', 1), ('covering', 1), ('everything', 1), ('installation', 1), ('configuration', 1), ('customizing', 1), ('supporting', 1), ('application', 1)]
[('app', 3), ('step', 2), ('iphone', 2), ('ipad', 2), ('easy', 1), ('guide', 1), ('marketing', 1), ('apps', 1), ('fully', 1), ('updated', 1), ('grab', 1), ('share', 1), ('multibillion', 1), ('dollar', 1), ('market', 1), ('top', 1), ('mobile', 1), ('marketer', 1), ('jeffrey', 1), ('hughes', 1), ('show', 1), ('create', 1), ('sell', 1), ('find', 1)]
[('indesign', 2), ('guide', 2), ('new', 2), ('cc', 1), ('visual', 1), ('quickstart', 1), ('complete', 1), ('core', 1), ('function', 1), ('important', 1), ('feature', 1), ('edition', 1), ('author', 1), ('sandee', 1), ('cohen', 1), ('brilliant', 1), ('inclusion', 1), ('scannable', 1), ('qr', 1), ('code', 1), ('providing', 1), ('reader', 1)]
[('photosmith', 1), ('powerful', 1), ('ipad', 1), ('app', 1), ('photographer', 1), ('working', 1), ('field', 1), ('help', 1), ('organize', 1), ('rate', 1), ('add', 1), ('metadata', 1), ('image', 1), ('transfer', 1), ('information', 1), ('photoshop', 1), ('lightroom', 1), ('computer', 1), ('ebook', 1), ('guide', 1), ('learn', 1), ('use', 1)]
[('server', 2), ('apple', 1), ('certified', 1), ('book', 1), ('o', 1), ('mountain', 1), ('lion', 1), ('comprehensive', 1), ('reference', 1), ('take', 1), ('support', 1), ('technician', 1), ('ardent', 1), ('mac', 1), ('user', 1), ('deep', 1), ('inside', 1), ('latest', 1), ('operating', 1), ('system', 1), ('covering', 1), ('everything', 1), ('networking', 1), ('technology', 1)]
[('classroom', 1), ('become', 1), ('filled', 1), ('veteran', 1), ('instructor', 1), ('need', 1), ('understand', 1), ('effectively', 1), ('assist', 1), ('maximizing', 1), ('learning', 1), ('experience', 1), ('preparing', 1), ('future', 1), ('career', 1), ('incredible', 1), ('responsibility', 1), ('owe', 1)]
[('uicollectionview', 3), ('io', 1), ('complete', 1), ('guide', 1), ('teach', 1), ('everything', 1), ('need', 1), ('know', 1), ('take', 1), ('advantage', 1), ('apple', 1), ('new', 1), ('user', 1), ('interface', 1), ('content', 1), ('layout', 1), ('agnostic', 1), ('tool', 1), ('developer', 1), ('use', 1), ('display', 1)]
[('book', 2), ('training', 2), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('digital', 1), ('video', 1), ('adobe', 1), ('creative', 1), ('cloud', 1), ('classroom', 1), ('best', 1), ('selling', 1), ('series', 1), ('hand', 1), ('software', 1), ('workbook', 1), ('offer', 1), ('program', 1), ('official', 1)]
[('adobe', 2), ('step', 2), ('premiere', 1), ('element', 1), ('classroom', 1), ('book', 1), ('thorough', 1), ('comprehensive', 1), ('way', 1), ('master', 1), ('new', 1), ('feature', 1), ('top', 1), ('rated', 1), ('consumer', 1), ('targeted', 1), ('nbsp', 1), ('video', 1), ('editing', 1), ('software', 1), ('chapter', 1), ('project', 1), ('based', 1)]
[('false', 3), ('none', 2), ('network', 2), ('provides', 2), ('exam', 2), ('normal', 1), ('en', 1), ('comptia', 1), ('quick', 1), ('reference', 1), ('concise', 1), ('review', 1), ('objective', 1), ('latest', 1), ('ebook', 1), ('detailed', 1), ('topic', 1), ('summary', 1), ('highlighting', 1)]
[('jason', 2), ('application', 2), ('android', 2), ('author', 1), ('ostrander', 1), ('walk', 1), ('developer', 1), ('different', 1), ('choice', 1), ('available', 1), ('way', 1), ('creating', 1), ('designed', 1), ('building', 1), ('simple', 1), ('work', 1), ('basic', 1), ('ui', 1), ('development', 1)]
[('android', 2), ('bestselling', 2), ('step', 2), ('master', 1), ('app', 1), ('development', 1), ('amazon', 1), ('kindle', 1), ('fire', 1), ('hand', 1), ('book', 1), ('programming', 1), ('author', 1), ('lauren', 1), ('darcey', 1), ('shane', 1), ('conder', 1), ('teach', 1), ('every', 1), ('skill', 1), ('technique', 1), ('need', 1), ('write', 1)]
[('mcts', 2), ('microsoft', 2), ('exam', 2), ('window', 1), ('configuring', 1), ('perfect', 1), ('study', 1), ('guide', 1), ('help', 1), ('pas', 1), ('provides', 1), ('coverage', 1), ('practice', 1), ('question', 1), ('every', 1), ('topic', 1), ('book', 1), ('contains', 1), ('extensive', 1), ('set', 1), ('preparation', 1), ('tool', 1)]
[('build', 2), ('application', 2), ('desktop', 2), ('anywhere', 2), ('rich', 1), ('run', 1), ('web', 1), ('mobile', 1), ('device', 1), ('nbsp', 1), ('using', 1), ('javafx', 1), ('developer', 1), ('graphic', 1), ('designer', 1), ('work', 1), ('together', 1), ('robust', 1), ('immersive', 1), ('deploy', 1)]
[('nan', 1)]
[('html', 2), ('web', 2), ('developer', 2), ('guideline', 1), ('pioneering', 1), ('provide', 1), ('comprehensive', 1), ('guide', 1), ('powerful', 1), ('new', 1), ('element', 1), ('technique', 1), ('compact', 1), ('practical', 1), ('easy', 1), ('understand', 1), ('example', 1), ('discover', 1)]
[('whether', 1), ('element', 1), ('newbie', 1), ('experienced', 1), ('veteran', 1), ('book', 1), ('teach', 1), ('need', 1), ('know', 1), ('adjustment', 1), ('bring', 1), ('best', 1), ('photo', 1), ('editing', 1), ('five', 1), ('easy', 1), ('step', 1), ('organizing', 1), ('medium', 1), ('place', 1), ('event', 1), ('working', 1)]
[('python', 3), ('hellmann', 1), ('writing', 1), ('become', 1), ('indispensable', 1), ('resource', 1), ('many', 1), ('others', 1), ('fill', 1), ('critical', 1), ('gap', 1), ('documentation', 1), ('example', 1), ('jesse', 1), ('noller', 1), ('core', 1), ('developer', 1), ('psf', 1), ('board', 1), ('member', 1), ('master', 1), ('powerful', 1), ('standard', 1)]
[('solaris', 2), ('security', 2), ('describes', 2), ('essential', 1), ('various', 1), ('technology', 1), ('contained', 1), ('operating', 1), ('system', 1), ('book', 1), ('make', 1), ('installation', 1), ('secure', 1), ('configure', 1), ('o', 1), ('particular', 1), ('need', 1), ('environment', 1)]
[('voip', 3), ('nbsp', 3), ('performance', 2), ('management', 2), ('ccie', 2), ('optimization', 1), ('kpi', 1), ('based', 1), ('approach', 1), ('managing', 1), ('optimizing', 1), ('network', 1), ('ip', 1), ('communication', 1), ('adeel', 1), ('ahmed', 1), ('habib', 1), ('madani', 1), ('talal', 1), ('siddiqui', 1)]
[('directory', 3), ('service', 2), ('developer', 2), ('net', 2), ('identity', 1), ('access', 1), ('management', 1), ('rapidly', 1), ('gaining', 1), ('importance', 1), ('key', 1), ('area', 1), ('practice', 1), ('industry', 1), ('provide', 1), ('fundamental', 1), ('building', 1), ('block', 1), ('enable', 1), ('enterprise', 1), ('struggling', 1), ('build', 1), ('enabled', 1), ('application', 1), ('guide', 1), ('programming', 1), ('come', 1)]
[('platform', 2), ('cross', 1), ('development', 1), ('definitive', 1), ('guide', 1), ('developing', 1), ('portable', 1), ('application', 1), ('code', 1), ('run', 1), ('natively', 1), ('window', 1), ('macintosh', 1), ('linux', 1), ('unix', 1), ('without', 1), ('compromising', 1), ('functionality', 1), ('usability', 1), ('quality', 1), ('nbsp', 1)]
[('outside', 2), ('team', 2), ('thinking', 1), ('complement', 1), ('approach', 1), ('taking', 1), ('actual', 1), ('implementation', 1), ('software', 1), ('change', 1), ('measure', 1), ('success', 1), ('successful', 1), ('lot', 1), ('learning', 1), ('speculation', 1), ('tom', 1)]
[('network', 3), ('nbsp', 2), ('design', 1), ('successfully', 1), ('manage', 1), ('growing', 1), ('complexity', 1), ('professional', 1), ('often', 1), ('told', 1), ('today', 1), ('modern', 1), ('control', 1), ('plane', 1), ('simplify', 1), ('opposite', 1), ('happened', 1), ('technology', 1), ('sdn', 1)]
[('agile', 2), ('collaboration', 1), ('explained', 1), ('deeply', 1), ('pragmatic', 1), ('book', 1), ('help', 1), ('practitioner', 1), ('understand', 1), ('manage', 1), ('complex', 1), ('organizational', 1), ('team', 1), ('dynamic', 1), ('coach', 1), ('found', 1), ('combination', 1), ('straightforward', 1), ('advice', 1), ('colorful', 1), ('anecdote', 1)]
[('boost', 3), ('library', 2), ('programming', 2), ('introducing', 1), ('next', 1), ('breakthrough', 1), ('take', 1), ('far', 1), ('beyond', 1), ('standard', 1), ('making', 1), ('elegant', 1), ('robust', 1), ('productive', 1), ('first', 1), ('time', 1), ('leading', 1), ('expert', 1)]
[('nan', 1)]
[('network', 3), ('security', 3), ('complete', 1), ('new', 1), ('guide', 1), ('auditing', 1), ('indispensable', 1), ('resource', 1), ('professional', 1), ('consultant', 1), ('technology', 1), ('partner', 1), ('serve', 1), ('nbsp', 1), ('cisco', 1), ('expert', 1), ('chris', 1), ('jackson', 1)]
[('practical', 2), ('successful', 2), ('gain', 1), ('understanding', 1), ('underlying', 1), ('concept', 1), ('standard', 1), ('methodology', 1), ('completing', 1), ('wireless', 1), ('network', 1), ('installation', 1), ('nbsp', 1), ('start', 1), ('finish', 1), ('guidance', 1), ('deployment', 1)]
[('game', 2), ('coco', 2), ('build', 1), ('next', 1), ('io', 1), ('nbsp', 1), ('powerhouse', 1), ('framework', 1), ('behind', 1), ('popular', 1), ('app', 1), ('store', 1), ('played', 1), ('tiny', 1), ('wing', 1), ('angry', 1), ('bird', 1), ('mega', 1), ('jump', 1), ('trainyard', 1), ('even', 1), ('super', 1), ('turbo', 1), ('action', 1), ('pig', 1)]
[('step', 3), ('window', 2), ('application', 2), ('session', 1), ('hour', 1), ('le', 1), ('learn', 1), ('build', 1), ('store', 1), ('apps', 1), ('desktop', 1), ('web', 1), ('using', 1), ('tutorial', 1), ('straightforward', 1), ('approach', 1), ('master', 1), ('everything', 1), ('absolute', 1), ('basic', 1), ('newest', 1), ('innovation', 1), ('solve', 1), ('real', 1), ('problem', 1)]
[('creative', 2), ('boot', 1), ('camp', 1), ('day', 1), ('training', 1), ('program', 1), ('increase', 1), ('quantity', 1), ('quality', 1), ('idea', 1), ('book', 1), ('begin', 1), ('exploring', 1), ('creativity', 1), ('train', 1), ('improve', 1), ('ideation', 1), ('step', 1)]
[('python', 2), ('code', 2), ('move', 1), ('beyond', 1), ('mostly', 1), ('work', 1), ('expressive', 1), ('robust', 1), ('efficient', 1), ('arguably', 1), ('used', 1), ('programming', 1), ('language', 1), ('world', 1), ('application', 1), ('primary', 1), ('school', 1), ('education', 1), ('workaday', 1), ('web', 1), ('development', 1)]
[('agile', 3), ('become', 1), ('today', 1), ('dominant', 1), ('software', 1), ('development', 1), ('paradigm', 1), ('method', 1), ('remain', 1), ('difficult', 1), ('measure', 1), ('improve', 1), ('essential', 1), ('skill', 1), ('developer', 1), ('fill', 1), ('gap', 1), ('bottom', 1), ('teaching', 1), ('proven', 1), ('technique', 1), ('assessing', 1)]
[('adaptive', 1), ('communication', 1), ('environment', 1), ('ace', 1), ('open', 1), ('source', 1), ('software', 1), ('toolkit', 1), ('created', 1), ('solve', 1), ('network', 1), ('programming', 1), ('challenge', 1), ('written', 1), ('help', 1), ('core', 1), ('developer', 1), ('contributor', 1), ('portable', 1), ('middleware', 1), ('evolved', 1)]
[('step', 4), ('nbsp', 3), ('apple', 2), ('tv', 2), ('help', 2), ('instruction', 1), ('callouts', 1), ('screenshots', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1), ('full', 1), ('color', 1)]
[('google', 2), ('minute', 2), ('sam', 1), ('teach', 1), ('give', 1), ('straightforward', 1), ('practical', 1), ('answer', 1), ('need', 1), ('fast', 1), ('result', 1), ('work', 1), ('lesson', 1), ('jumpstart', 1), ('experience', 1), ('use', 1), ('today', 1), ('hottest', 1), ('social', 1), ('network', 1), ('connect', 1)]
[('nbsp', 9), ('galaxy', 3), ('tab', 3), ('step', 2), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('help', 1), ('run', 1)]
[('apple', 2), ('official', 1), ('curriculum', 1), ('maverick', 1), ('o', 1), ('server', 1), ('essential', 1), ('course', 1), ('preparation', 1), ('certified', 1), ('technical', 1), ('coordinator', 1), ('actc', 1), ('certification', 1), ('top', 1), ('notch', 1), ('primer', 1), ('anyone', 1), ('need', 1), ('implement', 1)]
[('java', 2), ('outstanding', 1), ('depth', 1), ('breadth', 1), ('resource', 1), ('architect', 1), ('professional', 1), ('understand', 1), ('apply', 1), ('marriage', 1), ('soa', 1), ('modern', 1), ('antonio', 1), ('bruno', 1), ('enterprise', 1), ('architecture', 1), ('strategy', 1), ('digitalstrom', 1), ('self', 1), ('contained', 1), ('book', 1)]
[('win', 2), ('long', 2), ('sword', 2), ('short', 2), ('rup', 2), ('japanese', 1), ('samurai', 1), ('musashi', 1), ('wrote', 1), ('whatever', 1), ('weapon', 1), ('time', 1), ('situation', 1), ('appropriate', 1), ('similarly', 1)]
[('help', 2), ('samsung', 2), ('galaxy', 2), ('day', 2), ('perfect', 1), ('book', 1), ('anyone', 1), ('learn', 1), ('full', 1), ('color', 1), ('senior', 1), ('quickly', 1), ('easily', 1), ('started', 1), ('new', 1), ('smartphone', 1), ('use', 1), ('feature', 1), ('look', 1), ('information', 1), ('perform', 1)]
[('abbott', 1), ('fisher', 1), ('provide', 1), ('book', 1), ('giving', 1), ('engineer', 1), ('essential', 1), ('anyone', 1), ('dealing', 1), ('scaling', 1), ('online', 1), ('business', 1), ('chris', 1), ('lalonde', 1), ('vp', 1), ('technical', 1), ('operation', 1), ('infrastructure', 1), ('architecture', 1), ('bullhorn', 1)]
[('cisco', 2), ('ip', 2), ('telephony', 2), ('network', 2), ('real', 1), ('world', 1), ('guide', 1), ('securing', 1), ('based', 1), ('application', 1), ('device', 1), ('leverage', 1), ('converged', 1), ('dramatically', 1), ('reduce', 1), ('tco', 1), ('improve', 1), ('roi', 1), ('critical', 1), ('importance', 1), ('business', 1), ('communication', 1)]
[('go', 2), ('new', 2), ('language', 2), ('designed', 2), ('hand', 1), ('guide', 1), ('revolutionary', 1), ('concurrency', 1), ('multicore', 1), ('hardware', 1), ('programmer', 1), ('convenience', 1), ('nbsp', 1), ('today', 1), ('exciting', 1), ('programming', 1), ('ground', 1), ('help', 1), ('easily', 1)]
[('pro', 3), ('title', 2), ('latest', 2), ('software', 2), ('final', 2), ('cut', 2), ('important', 1), ('note', 1), ('lesson', 1), ('file', 1), ('content', 1), ('work', 1), ('version', 1), ('please', 1), ('refer', 1), ('covering', 1), ('apple', 1), ('training', 1), ('series', 1), ('professional', 1)]
[('vmware', 3), ('vsphere', 3), ('nbsp', 3), ('managing', 1), ('optimizing', 1), ('deployment', 1), ('complete', 1), ('guide', 1), ('planning', 1), ('deploying', 1), ('operating', 1), ('high', 1), ('performance', 1), ('virtual', 1), ('infrastructure', 1), ('make', 1), ('professional', 1), ('need', 1)]
[('data', 3), ('phase', 2), ('modeling', 1), ('critical', 1), ('database', 1), ('application', 1), ('development', 1), ('process', 1), ('likely', 1), ('fail', 1), ('master', 1), ('modeler', 1), ('come', 1), ('organization', 1), ('understand', 1), ('requirement', 1), ('skillfully', 1), ('model', 1)]
[('vcat', 2), ('knowledge', 2), ('tool', 2), ('validated', 2), ('design', 2), ('vcloud', 2), ('complete', 1), ('printed', 1), ('reference', 1), ('building', 1), ('high', 1), ('value', 1), ('solution', 1), ('nbsp', 1), ('architecture', 1), ('toolkit', 1), ('brings', 1), ('together', 1), ('architecting', 1)]
[('good', 2), ('literature', 2), ('book', 1), ('addition', 1), ('testing', 1), ('quality', 1), ('assurance', 1), ('software', 1), ('engineering', 1), ('likely', 1), ('become', 1), ('standard', 1), ('test', 1), ('training', 1), ('reference', 1), ('professional', 1), ('tester', 1)]
[('game', 3), ('master', 1), ('principle', 1), ('vocabulary', 1), ('design', 1), ('nbsp', 1), ('videogames', 1), ('getting', 1), ('better', 1), ('feel', 1), ('playing', 1), ('helping', 1), ('transform', 1), ('life', 1), ('music', 1), ('book', 1)]
[('jquery', 2), ('javascript', 2), ('hour', 2), ('step', 2), ('learn', 1), ('lesson', 1), ('sam', 1), ('teach', 1), ('help', 1), ('build', 1), ('dynamic', 1), ('single', 1), ('page', 1), ('web', 1), ('apps', 1), ('deliver', 1), ('rich', 1), ('experience', 1), ('user', 1), ('want', 1), ('book', 1), ('straightforward', 1)]
[('performance', 2), ('understand', 1), ('every', 1), ('developer', 1), ('know', 1), ('building', 1), ('window', 1), ('store', 1), ('apps', 1), ('designed', 1), ('comprehensive', 1), ('reference', 1), ('book', 1), ('instead', 1), ('zero', 1), ('essential', 1), ('planning', 1), ('provides', 1), ('solid', 1)]
[('microsoft', 2), ('expression', 2), ('blend', 2), ('smart', 1), ('way', 1), ('learn', 1), ('step', 1), ('time', 1), ('experience', 1), ('learning', 1), ('made', 1), ('easy', 1), ('quickly', 1), ('teach', 1), ('design', 1), ('rich', 1), ('user', 1), ('interface', 1), ('ui', 1), ('silverlight', 1), ('based', 1), ('application', 1), ('using', 1)]
[('story', 2), ('video', 1), ('film', 1), ('editor', 1), ('understand', 1), ('central', 1), ('work', 1), ('editing', 1), ('choice', 1), ('need', 1), ('serve', 1), ('telling', 1), ('best', 1), ('way', 1), ('possible', 1), ('know', 1), ('valuable', 1), ('technique', 1), ('making', 1)]
[('virtualizing', 2), ('business', 2), ('critical', 2), ('database', 2), ('start', 1), ('finish', 1), ('guide', 1), ('sql', 1), ('server', 1), ('vmware', 1), ('vsphere', 1), ('nbsp', 1), ('enterprise', 1), ('drive', 1), ('far', 1), ('value', 1), ('existing', 1), ('infrastructure', 1), ('squeezing', 1), ('maximum', 1)]
[('ideal', 1), ('student', 1), ('editor', 1), ('go', 1), ('quick', 1), ('look', 1), ('guide', 1), ('combine', 1), ('clear', 1), ('concise', 1), ('explanation', 1), ('easy', 1), ('use', 1), ('format', 1), ('walk', 1), ('reader', 1), ('new', 1), ('final', 1), ('cut', 1), ('pro', 1), ('interface', 1), ('put', 1), ('essential', 1), ('technique', 1), ('used', 1)]
[('angularjs', 3), ('web', 3), ('development', 3), ('learning', 1), ('started', 1), ('fast', 1), ('exciting', 1), ('innovative', 1), ('new', 1), ('technology', 1), ('emerging', 1), ('world', 1), ('designed', 1), ('simplify', 1), ('testing', 1)]
[('advanced', 2), ('logic', 2), ('apple', 1), ('certified', 1), ('guide', 1), ('author', 1), ('david', 1), ('dvorin', 1), ('demonstrates', 1), ('powerful', 1), ('feature', 1), ('pro', 1), ('starting', 1), ('setup', 1), ('teach', 1), ('invaluable', 1), ('real', 1), ('world', 1), ('technique', 1), ('music', 1), ('production', 1), ('editing', 1), ('mixing', 1), ('notation', 1), ('scoring', 1), ('picture', 1), ('along', 1), ('way', 1), ('share', 1), ('numerous', 1), ('professional', 1), ('secret', 1), ('streamlining', 1)]
[('handmade', 3), ('robin', 2), ('williams', 2), ('design', 2), ('create', 2), ('element', 2), ('digital', 2), ('step', 2), ('workshop', 1), ('best', 1), ('selling', 1), ('author', 1), ('carmen', 1), ('sheldon', 1), ('take', 1), ('designer', 1), ('away', 1), ('computer', 1), ('show', 1), ('use', 1), ('traditional', 1), ('artist', 1), ('tool', 1), ('artwork', 1), ('nbsp', 1), ('illustrated', 1)]
[('sap', 3), ('query', 2), ('reporting', 1), ('everything', 1), ('user', 1), ('need', 1), ('know', 1), ('create', 1), ('report', 1), ('using', 1), ('tool', 1), ('programming', 1), ('required', 1), ('designed', 1), ('hand', 1), ('learning', 1), ('aid', 1), ('able', 1), ('nbsp', 1), ('follow', 1), ('along', 1), ('perform', 1), ('new', 1), ('skill', 1), ('learned', 1)]
[('business', 1), ('becomes', 1), ('global', 1), ('software', 1), ('developer', 1), ('increasingly', 1), ('need', 1), ('make', 1), ('application', 1), ('multi', 1), ('lingual', 1), ('culturally', 1), ('aware', 1), ('net', 1), ('framework', 1), ('comprehensive', 1), ('support', 1), ('internationalization', 1), ('globalization', 1)]
[('complete', 2), ('guide', 1), ('technology', 1), ('protocol', 1), ('delivering', 1), ('seamless', 1), ('mobile', 1), ('internet', 1), ('experience', 1), ('nbsp', 1), ('building', 1), ('mobileinternet', 1), ('three', 1), ('leading', 1), ('mobility', 1), ('architect', 1), ('implementers', 1), ('cisco', 1), ('present', 1), ('foundational', 1), ('knowledge', 1)]
[('build', 3), ('software', 2), ('process', 2), ('book', 1), ('represents', 1), ('thorough', 1), ('extensive', 1), ('treatment', 1), ('including', 1), ('choice', 1), ('benefit', 1), ('challenge', 1), ('designed', 1), ('nbsp', 1), ('recommend', 1), ('engineer', 1)]
[('visual', 3), ('studio', 3), ('use', 1), ('breakthrough', 1), ('testing', 1), ('tool', 1), ('improve', 1), ('quality', 1), ('throughout', 1), ('entire', 1), ('software', 1), ('lifecycle', 1), ('nbsp', 1), ('together', 1), ('ultimate', 1), ('test', 1), ('professional', 1), ('lab', 1), ('management', 1), ('team', 1), ('foundation', 1), ('server', 1)]
[('leader', 1), ('software', 1), ('development', 1), ('project', 1), ('face', 1), ('many', 1), ('challenge', 1), ('first', 1), ('produce', 1), ('quality', 1), ('product', 1), ('schedule', 1), ('budget', 1), ('second', 1), ('foster', 1), ('encourage', 1), ('cohesive', 1), ('motivated', 1), ('smoothly', 1), ('operating', 1), ('team', 1), ('third', 1)]
[('adobe', 2), ('designer', 2), ('form', 2), ('book', 2), ('livecycle', 1), ('creation', 1), ('tool', 1), ('come', 1), ('bundled', 1), ('acrobat', 1), ('professional', 1), ('first', 1), ('explains', 1), ('use', 1), ('create', 1), ('interactive', 1), ('dynamic', 1), ('written', 1), ('tandem', 1)]
[('securing', 2), ('voip', 2), ('network', 2), ('leading', 1), ('expert', 1), ('systematically', 1), ('review', 1), ('security', 1), ('risk', 1), ('vulnerability', 1), ('associated', 1), ('offer', 1), ('proven', 1), ('detailed', 1), ('recommendation', 1), ('drawing', 1), ('case', 1), ('study', 1)]
[('oracle', 3), ('performance', 3), ('guide', 3), ('nbsp', 3), ('survival', 2), ('systematic', 2), ('approach', 1), ('database', 1), ('optimization', 1), ('fast', 1), ('complete', 1), ('start', 1), ('finish', 1), ('optimizing', 1), ('offer', 1), ('structured', 1)]
[('book', 1), ('eric', 1), ('created', 1), ('roadmap', 1), ('intricacy', 1), ('vmware', 1), ('infrastructure', 1), ('initial', 1), ('requirement', 1), ('gathering', 1), ('advanced', 1), ('configuration', 1), ('topic', 1), ('logical', 1), ('progression', 1), ('chapter', 1), ('allows', 1), ('reader', 1), ('jump', 1), ('whatever', 1)]
[('create', 2), ('virtual', 2), ('machine', 2), ('single', 2), ('operating', 2), ('system', 2), ('virtualization', 1), ('related', 1), ('technology', 1), ('hypervisors', 1), ('hardware', 1), ('container', 1), ('known', 1), ('zone', 1), ('running', 1), ('totally', 1)]
[('enterprise', 2), ('indispensable', 1), ('pattern', 1), ('insight', 1), ('putting', 1), ('mashups', 1), ('work', 1), ('environment', 1), ('nbsp', 1), ('using', 1), ('new', 1), ('mashup', 1), ('tool', 1), ('technology', 1), ('developer', 1), ('impose', 1), ('apis', 1), ('everything', 1), ('web', 1), ('site', 1), ('r', 1), ('feed', 1), ('excel', 1), ('pdf', 1)]
[('programming', 3), ('language', 3), ('java', 2), ('every', 1), ('quirk', 1), ('lively', 1), ('book', 1), ('reveals', 1), ('oddity', 1), ('entertaining', 1), ('thought', 1), ('provoking', 1), ('puzzle', 1), ('steele', 1), ('sun', 1), ('fellow', 1), ('coauthor', 1)]
[('paperless', 2), ('part', 2), ('streamline', 1), ('organization', 1), ('replacing', 1), ('paper', 1), ('document', 1), ('electronic', 1), ('solution', 1), ('inspiration', 1), ('instruction', 1), ('inspired', 1), ('real', 1), ('world', 1), ('case', 1), ('study', 1), ('meet', 1), ('brought', 1), ('change', 1)]
[('nan', 1)]
[('ip', 2), ('voice', 2), ('telephony', 1), ('using', 1), ('callmanager', 1), ('express', 1), ('lab', 1), ('portfolio', 1), ('provides', 1), ('hand', 1), ('approach', 1), ('learning', 1), ('basic', 1), ('principle', 1), ('voip', 1), ('build', 1), ('enabled', 1), ('network', 1), ('small', 1), ('medium', 1), ('sized', 1), ('business', 1), ('nbsp', 1), ('work', 1)]
[('ccie', 3), ('ipv', 2), ('nbsp', 2), ('enterprise', 1), ('network', 1), ('practical', 1), ('guide', 1), ('deploying', 1), ('campus', 1), ('wan', 1), ('branch', 1), ('data', 1), ('center', 1), ('virtualized', 1), ('environment', 1), ('shannon', 1), ('mcfarland', 1), ('muninder', 1), ('sambi', 1), ('nikhil', 1), ('sharma', 1), ('sanjay', 1)]
[('ucce', 3), ('cisco', 2), ('unified', 2), ('contact', 2), ('center', 2), ('enterprise', 2), ('nbsp', 2), ('complete', 1), ('guide', 1), ('managing', 1), ('environment', 1), ('tip', 1), ('trick', 1), ('best', 1), ('practice', 1), ('lesson', 1), ('learned', 1), ('gary', 1), ('ford', 1), ('integrates', 1), ('multiple', 1)]
[('developer', 2), ('want', 2), ('build', 2), ('book', 1), ('every', 1), ('sharepoint', 1), ('state', 1), ('art', 1), ('solution', 1), ('silverlight', 1), ('within', 1), ('enterprise', 1), ('consulting', 1), ('client', 1), ('commercial', 1), ('sale', 1), ('nbsp', 1), ('increasingly', 1), ('rich', 1), ('application', 1)]
[('photoshop', 2), ('photographer', 1), ('designer', 1), ('simply', 1), ('million', 1), ('user', 1), ('want', 1), ('dive', 1), ('start', 1), ('using', 1), ('video', 1), ('feature', 1), ('available', 1), ('directly', 1), ('within', 1), ('look', 1), ('inspiring', 1), ('hand', 1), ('guide', 1), ('top', 1), ('notch', 1)]
[('perl', 4), ('code', 2), ('software', 2), ('bring', 1), ('new', 1), ('power', 1), ('performance', 1), ('scalability', 1), ('existing', 1), ('cure', 1), ('whatever', 1), ('ail', 1), ('maintain', 1), ('optimize', 1), ('scale', 1), ('whether', 1), ('wrote', 1), ('engineering', 1), ('best', 1), ('practice', 1)]
[('xpages', 2), ('ibm', 2), ('extension', 1), ('library', 1), ('next', 1), ('generation', 1), ('control', 1), ('make', 1), ('application', 1), ('development', 1), ('far', 1), ('efficient', 1), ('effective', 1), ('scalable', 1), ('rewarding', 1), ('lotus', 1), ('note', 1), ('domino', 1), ('upgrade', 1), ('pack', 1), ('incorporated', 1), ('powerful', 1), ('new', 1)]
[('principle', 2), ('complex', 1), ('event', 1), ('processing', 1), ('simple', 1), ('hard', 1), ('practice', 1), ('guide', 1), ('present', 1), ('motivation', 1), ('new', 1), ('subject', 1), ('importantly', 1), ('detail', 1), ('entire', 1), ('thought', 1), ('landscape', 1), ('complete', 1)]
[('home', 3), ('absolutely', 1), ('experience', 1), ('needed', 1), ('make', 1), ('smarter', 1), ('safer', 1), ('fun', 1), ('save', 1), ('money', 1), ('nbsp', 1), ('automation', 1), ('finally', 1), ('practical', 1), ('useful', 1), ('easy', 1), ('control', 1), ('exactly', 1), ('way', 1), ('want', 1), ('without', 1), ('paying', 1), ('monthly', 1)]
[('rup', 2), ('per', 1), ('kroll', 1), ('philippe', 1), ('kruchten', 1), ('especially', 1), ('suited', 1), ('explain', 1), ('central', 1), ('force', 1), ('inside', 1), ('rational', 1), ('software', 1), ('behind', 1), ('creation', 1), ('delivery', 1), ('project', 1), ('around', 1), ('world', 1), ('foreword', 1)]
[('apple', 5), ('watch', 4), ('apps', 2), ('watchkit', 2), ('framework', 2), ('developer', 2), ('create', 1), ('breakthrough', 1), ('nbsp', 1), ('challenging', 1), ('build', 1), ('exciting', 1), ('innovative', 1), ('io', 1), ('master', 1)]
[('pattern', 2), ('successfully', 1), ('delivering', 1), ('solution', 1), ('via', 1), ('nbsp', 1), ('based', 1), ('engineering', 1), ('leading', 1), ('expert', 1), ('bring', 1), ('together', 1), ('true', 1), ('best', 1), ('practice', 1), ('developing', 1), ('deploying', 1), ('successful', 1), ('software', 1), ('intensive', 1), ('system', 1), ('drawing', 1), ('extensive', 1), ('enterprise', 1)]
[('agile', 3), ('lean', 2), ('acceptance', 2), ('test', 2), ('driven', 2), ('development', 2), ('project', 2), ('praise', 1), ('nbsp', 1), ('tell', 1), ('tale', 1), ('three', 1), ('fictive', 1), ('stakeholder', 1), ('use', 1), ('technique', 1), ('plan', 1), ('execute', 1), ('format', 1), ('work', 1)]
[('nan', 1)]
[('testing', 3), ('network', 2), ('nbsp', 2), ('ccie', 2), ('enterprise', 1), ('throughout', 1), ('lifecycle', 1), ('maximize', 1), ('availability', 1), ('performance', 1), ('andy', 1), ('sholomon', 1), ('tom', 1), ('kunath', 1), ('complete', 1), ('guide', 1), ('using', 1), ('reduce', 1), ('risk', 1), ('downtime', 1)]
[('motorola', 3), ('step', 2), ('atrix', 2), ('nbsp', 2), ('help', 2), ('instruction', 1), ('callouts', 1), ('photo', 1), ('see', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1)]
[('something', 1), ('everyone', 1), ('pick', 1), ('book', 1), ('build', 1), ('industry', 1), ('standard', 1), ('system', 1), ('weekend', 1), ('everything', 1), ('need', 1), ('started', 1), ('new', 1), ('project', 1), ('found', 1), ('helpful', 1), ('reviewing', 1), ('structure', 1)]
[('architecture', 2), ('getting', 1), ('right', 1), ('detailed', 1), ('practical', 1), ('guidance', 1), ('architecting', 1), ('real', 1), ('world', 1), ('project', 1), ('build', 1), ('effective', 1), ('software', 1), ('architect', 1), ('tread', 1), ('fine', 1), ('line', 1), ('precision', 1), ('ambiguity', 1), ('big', 1), ('animal', 1), ('picture', 1)]
[('data', 4), ('munging', 2), ('day', 2), ('example', 1), ('rich', 1), ('hand', 1), ('guide', 1), ('apache', 1), ('hadooptm', 1), ('nbsp', 1), ('scientist', 1), ('spend', 1), ('time', 1), ('handling', 1), ('task', 1), ('cleansing', 1), ('normalization', 1), ('aggregation', 1), ('sampling', 1), ('transformation', 1)]
[('dart', 2), ('language', 2), ('open', 1), ('source', 1), ('web', 1), ('programming', 1), ('developed', 1), ('google', 1), ('designed', 1), ('building', 1), ('everything', 1), ('simple', 1), ('console', 1), ('utility', 1), ('full', 1), ('featured', 1), ('application', 1), ('browser', 1), ('mobile', 1), ('device', 1), ('familiar', 1), ('seasoned', 1)]
[('photoshop', 2), ('corey', 1), ('barker', 1), ('executive', 1), ('producer', 1), ('planetphotoshop', 1), ('guy', 1), ('user', 1), ('tv', 1), ('brings', 1), ('handy', 1), ('inspiring', 1), ('volume', 1), ('amp', 1), ('dirty', 1), ('trick', 1), ('series', 1), ('yes', 1), ('book', 1), ('insane', 1), ('collection', 1)]
[('kindle', 3), ('fire', 3), ('hd', 2), ('nbsp', 2), ('step', 2), ('amazon', 2), ('help', 2), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1)]
[('cloud', 3), ('data', 3), ('using', 2), ('hybrid', 2), ('center', 2), ('window', 2), ('server', 2), ('computing', 1), ('service', 1), ('transform', 1), ('serve', 1), ('dynamic', 1), ('highly', 1), ('changeable', 1), ('workload', 1), ('process', 1), ('analyse', 1), ('soaring', 1), ('load', 1), ('deliver', 1), ('greater', 1), ('flexibility', 1), ('lower', 1), ('cost', 1), ('modernizing', 1), ('definitive', 1), ('guide', 1), ('microsoft', 1)]
[('coffeescript', 3), ('javascript', 3), ('better', 2), ('code', 2), ('use', 1), ('write', 1), ('nbsp', 1), ('compiles', 1), ('fit', 1), ('neatly', 1), ('virtually', 1), ('web', 1)]
[('storage', 2), ('management', 2), ('vmware', 2), ('authoritative', 1), ('comprehensive', 1), ('guide', 1), ('vsphere', 1), ('implementation', 1), ('nbsp', 1), ('effective', 1), ('virtualization', 1), ('planning', 1), ('become', 1), ('crucial', 1), ('extremely', 1), ('complex', 1), ('leading', 1)]
[('old', 2), ('habit', 2), ('agile', 2), ('success', 2), ('break', 1), ('waterfall', 1), ('hinder', 1), ('drive', 1), ('rapid', 1), ('value', 1), ('continuous', 1), ('improvement', 1), ('nbsp', 1), ('team', 1), ('immediate', 1), ('result', 1), ('tempting', 1), ('fall', 1), ('back', 1), ('make', 1), ('even', 1), ('le', 1), ('likely', 1)]
[('nbsp', 5), ('surface', 3), ('step', 2), ('help', 2), ('updated', 1), ('window', 1), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1)]
[('lightroom', 2), ('anyone', 1), ('us', 1), ('adobe', 1), ('photoshop', 1), ('image', 1), ('management', 1), ('editing', 1), ('workflow', 1), ('know', 1), ('software', 1), ('gotten', 1), ('better', 1), ('new', 1), ('version', 1), ('come', 1), ('time', 1), ('every', 1), ('user', 1), ('life', 1), ('want', 1)]
[('routing', 3), ('ip', 2), ('detailed', 1), ('examination', 1), ('exterior', 1), ('protocol', 1), ('advanced', 1), ('issue', 1), ('nbsp', 1), ('tcp', 1), ('volume', 1), ('ii', 1), ('enables', 1), ('master', 1), ('operational', 1), ('component', 1), ('configuration', 1), ('troubleshooting', 1), ('bgp', 1), ('de', 1), ('facto', 1), ('interdomain', 1)]
[('step', 3), ('sql', 3), ('server', 3), ('hand', 1), ('guide', 1), ('building', 1), ('application', 1), ('microsoft', 1), ('teach', 1), ('programming', 1), ('fundamental', 1), ('time', 1), ('ideal', 1), ('beginning', 1), ('database', 1), ('administrator', 1), ('developer', 1)]
[('agile', 2), ('methodology', 2), ('thorough', 1), ('introduction', 1), ('framework', 1), ('used', 1), ('worldwide', 1), ('nbsp', 1), ('organization', 1), ('shape', 1), ('size', 1), ('embracing', 1), ('way', 1), ('transform', 1), ('product', 1), ('customer', 1), ('satisfaction', 1), ('employee', 1)]
[('network', 2), ('administrator', 2), ('storage', 2), ('protocol', 2), ('comparative', 1), ('analysis', 1), ('ethernet', 1), ('tcp', 1), ('ip', 1), ('fibre', 1), ('channel', 1), ('context', 1), ('scsi', 1), ('introduces', 1), ('requirement', 1), ('explains', 1), ('operation', 1), ('compare', 1)]
[('using', 2), ('notebook', 2), ('pc', 2), ('different', 1), ('desktop', 1), ('keyboard', 1), ('screen', 1), ('smaller', 1), ('deal', 1), ('battery', 1), ('life', 1), ('security', 1), ('connecting', 1), ('internet', 1), ('wi', 1), ('fi', 1), ('hot', 1), ('spot', 1), ('figuring', 1), ('enter', 1), ('number', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('sam', 1), ('teach', 1), ('net', 1), ('xml', 1), ('web', 1), ('service', 1), ('hour', 1), ('take', 1), ('straightforward', 1), ('approach', 1), ('teaching', 1), ('hows', 1)]
[('ajax', 3), ('technology', 2), ('many', 1), ('organization', 1), ('diving', 1), ('headfirst', 1), ('make', 1), ('web', 1), ('application', 1), ('richer', 1), ('user', 1), ('friendly', 1), ('often', 1), ('realize', 1), ('security', 1), ('implication', 1), ('approach', 1), ('microsoft', 1), ('asp', 1), ('net', 1)]
[('guide', 1), ('quickly', 1), ('easily', 1), ('walk', 1), ('complete', 1), ('beginner', 1), ('creating', 1), ('first', 1), ('simple', 1), ('game', 1), ('using', 1), ('phrogram', 1), ('material', 1), ('friendly', 1), ('approachable', 1), ('young', 1), ('technologically', 1), ('timid', 1), ('alike', 1), ('alfred', 1), ('thompson', 1), ('academic', 1)]
[('industry', 2), ('ebook', 1), ('version', 1), ('printed', 1), ('book', 1), ('software', 1), ('stand', 1), ('brink', 1), ('era', 1), ('dramatic', 1), ('change', 1), ('expect', 1), ('continue', 1), ('restructuring', 1), ('process', 1), ('already', 1), ('begun', 1), ('emerging', 1), ('smaller', 1), ('number', 1), ('horizontally', 1)]
[('digital', 1), ('version', 1), ('printed', 1), ('book', 1), ('copyright', 1), ('surprise', 1), ('professional', 1), ('working', 1), ('software', 1), ('development', 1), ('today', 1), ('team', 1), ('teamwork', 1), ('critical', 1), ('ingredient', 1), ('global', 1), ('economy', 1), ('productivity', 1), ('product', 1)]
[('process', 2), ('improvement', 2), ('often', 1), ('reflects', 1), ('significant', 1), ('disconnect', 1), ('theory', 1), ('practice', 1), ('making', 1), ('work', 1), ('service', 1), ('organization', 1), ('bridge', 1), ('gap', 1), ('offering', 1), ('straightforward', 1), ('systematic', 1), ('approach', 1), ('planning', 1), ('implementing', 1)]
[('hand', 1), ('guide', 1), ('steer', 1), ('lay', 1), ('multi', 1), ('touch', 1), ('ebook', 1), ('starting', 1), ('picking', 1), ('template', 1), ('learn', 1), ('add', 1), ('use', 1), ('text', 1), ('import', 1), ('page', 1), ('word', 1), ('create', 1), ('table', 1), ('content', 1), ('discover', 1), ('work', 1), ('object', 1)]
[('imovie', 2), ('iphone', 2), ('step', 2), ('updated', 1), ('ipad', 1), ('second', 1), ('edition', 1), ('teach', 1), ('harness', 1), ('power', 1), ('simplicity', 1), ('apple', 1), ('moviemaking', 1), ('app', 1), ('io', 1), ('device', 1), ('practical', 1), ('guide', 1), ('take', 1), ('making', 1)]
[('expression', 2), ('web', 2), ('add', 2), ('release', 1), ('microsoft', 1), ('moved', 1), ('new', 1), ('model', 1), ('allows', 1), ('development', 1), ('using', 1), ('html', 1), ('javascript', 1), ('enables', 1), ('designer', 1), ('use', 1), ('existing', 1), ('skill', 1), ('develop', 1), ('in', 1), ('extend', 1), ('functionality', 1)]
[('portable', 1), ('precise', 1), ('pocket', 1), ('sized', 1), ('guide', 1), ('delivers', 1), ('ready', 1), ('answer', 1), ('managing', 1), ('database', 1), ('service', 1), ('exchange', 1), ('server', 1), ('zero', 1), ('core', 1), ('task', 1), ('quick', 1), ('reference', 1), ('table', 1), ('instruction', 1), ('list', 1), ('focused', 1), ('information', 1)]
[('android', 2), ('guide', 2), ('wireless', 1), ('application', 1), ('development', 1), ('earned', 1), ('reputation', 1), ('useful', 1), ('real', 1), ('world', 1), ('building', 1), ('robust', 1), ('commercial', 1), ('grade', 1), ('apps', 1), ('author', 1), ('lauren', 1), ('darcey', 1), ('shane', 1), ('conder', 1), ('systematically', 1), ('revised', 1), ('updated', 1)]
[('guide', 1), ('make', 1), ('learning', 1), ('microsoft', 1), ('excel', 1), ('plain', 1), ('simple', 1), ('full', 1), ('color', 1), ('nonsense', 1), ('book', 1), ('show', 1), ('quickest', 1), ('way', 1), ('solve', 1), ('problem', 1), ('learn', 1), ('skill', 1), ('using', 1), ('easy', 1), ('follow', 1), ('step', 1), ('concise', 1), ('straightforward', 1), ('language', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('vmware', 2), ('publisher', 1), ('regret', 1), ('cd', 1), ('dvd', 1), ('content', 1), ('title', 1), ('made', 1), ('available', 1), ('online', 1), ('nbsp', 1), ('trust', 1), ('official', 1), ('cert', 1), ('guide', 1), ('series', 1), ('press', 1), ('help', 1), ('learn', 1), ('prepare', 1), ('practice', 1), ('exam', 1), ('success', 1)]
[('responsive', 2), ('web', 2), ('design', 2), ('hour', 2), ('learn', 1), ('rwd', 1), ('html', 1), ('cs', 1), ('amp', 1), ('javascript', 1), ('lesson', 1), ('nbsp', 1), ('sam', 1), ('teach', 1), ('help', 1), ('create', 1), ('website', 1), ('work', 1), ('equally', 1), ('everything', 1), ('smartphones', 1)]
[('qos', 2), ('ip', 2), ('mpls', 2), ('using', 2), ('cisco', 2), ('io', 2), ('comprehensive', 1), ('guide', 1), ('implementing', 1), ('network', 1), ('xr', 1), ('software', 1), ('understand', 1), ('architecture', 1), ('apply', 1), ('take', 1), ('detailed', 1), ('look', 1), ('traffic', 1), ('management', 1), ('policing', 1), ('shaping', 1), ('scheduling', 1)]
[('book', 3), ('ebook', 1), ('printed', 1), ('include', 1), ('medium', 1), ('website', 1), ('access', 1), ('code', 1), ('print', 1), ('supplement', 1), ('come', 1), ('packaged', 1), ('bound', 1), ('nbsp', 1), ('perfect', 1), ('help', 1), ('anyone', 1), ('learn', 1), ('facebook', 1), ('full', 1), ('color', 1), ('whether', 1)]
[('adobe', 2), ('chapter', 2), ('step', 2), ('photoshop', 1), ('element', 1), ('classroom', 1), ('book', 1), ('thorough', 1), ('comprehensive', 1), ('way', 1), ('master', 1), ('industry', 1), ('leading', 1), ('consumer', 1), ('targeted', 1), ('photo', 1), ('editing', 1), ('software', 1), ('lesson', 1), ('based', 1), ('guide', 1), ('contains', 1), ('project', 1), ('build', 1), ('growing', 1), ('knowledge', 1), ('program', 1), ('end', 1), ('review', 1), ('question', 1)]
[('insider', 2), ('cert', 1), ('threat', 1), ('center', 1), ('carnegie', 1), ('mellon', 1), ('university', 1), ('software', 1), ('engineering', 1), ('institute', 1), ('sei', 1), ('collected', 1), ('analyzed', 1), ('information', 1), ('seven', 1), ('hundred', 1), ('cyber', 1), ('crime', 1), ('ranging', 1), ('national', 1), ('security', 1), ('espionage', 1)]
[('process', 4), ('practical', 2), ('analysis', 2), ('design', 2), ('uml', 2), ('unified', 2), ('edition', 1), ('provides', 1), ('indispensable', 1), ('guide', 1), ('complex', 1), ('object', 1), ('oriented', 1), ('using', 1), ('describes', 1), ('oo', 1), ('fit', 1), ('software', 1), ('development', 1), ('lifecycle', 1), ('defined', 1), ('contains', 1), ('wealth', 1)]
[('every', 2), ('complete', 1), ('source', 1), ('code', 1), ('program', 1), ('listing', 1), ('tex', 1), ('year', 1), ('first', 1), ('edition', 1), ('leading', 1), ('worldwide', 1), ('expert', 1), ('system', 1), ('spent', 1), ('several', 1), ('month', 1), ('inspecting', 1), ('page', 1), ('thoroughly', 1), ('believe', 1)]
[('nan', 1)]
[('ipod', 3), ('touch', 3), ('step', 2), ('help', 2), ('cover', 1), ('o', 1), ('nbsp', 1), ('instruction', 1), ('callouts', 1), ('photo', 1), ('see', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1)]
[('nan', 1)]
[('lesson', 2), ('build', 2), ('step', 2), ('hour', 1), ('le', 1), ('learn', 1), ('professional', 1), ('technique', 1), ('design', 1), ('efficient', 1), ('database', 1), ('query', 1), ('extract', 1), ('useful', 1), ('information', 1), ('using', 1), ('straightforward', 1), ('approach', 1), ('previous', 1)]
[('microsoft', 2), ('net', 2), ('technology', 2), ('window', 2), ('azure', 2), ('authoritative', 1), ('guide', 1), ('building', 1), ('service', 1), ('oriented', 1), ('solution', 1), ('cloud', 1), ('computing', 1), ('platform', 1), ('soa', 1), ('top', 1), ('expert', 1), ('team', 1), ('thomas', 1), ('erl', 1), ('explore', 1)]
[('software', 2), ('proven', 1), ('development', 1), ('methodology', 1), ('delivers', 1), ('promise', 1), ('model', 1), ('based', 1), ('approach', 1), ('continues', 1), ('become', 1), ('complex', 1), ('consumer', 1), ('expectation', 1), ('performance', 1), ('reliability', 1), ('functionality', 1), ('speed', 1), ('market', 1)]
[('kindle', 2), ('ebook', 1), ('version', 1), ('printed', 1), ('book', 1), ('revolutionary', 1), ('amazon', 1), ('getting', 1), ('rave', 1), ('review', 1), ('user', 1), ('feel', 1), ('far', 1), ('better', 1), ('manual', 1), ('needed', 1), ('order', 1), ('extraordinary', 1), ('device', 1), ('nbsp', 1), ('introducing', 1)]
[('vmware', 4), ('enterprise', 2), ('complete', 1), ('hand', 1), ('help', 1), ('securing', 1), ('vsphere', 1), ('virtual', 1), ('infrastructure', 1), ('edward', 1), ('haletky', 1), ('author', 1), ('best', 1), ('selling', 1), ('book', 1), ('esx', 1), ('server', 1), ('nbsp', 1), ('become', 1), ('increasingly', 1), ('ubiquitous', 1)]
[('ibm', 3), ('soa', 3), ('foundation', 3), ('suite', 2), ('nbsp', 2), ('understanding', 1), ('learning', 1), ('visually', 1), ('example', 1), ('master', 1), ('hand', 1), ('start', 1), ('finish', 1), ('tutorial', 1), ('integrated', 1), ('open', 1), ('standard', 1), ('based', 1), ('set', 1), ('software', 1)]
[('faq', 2), ('concise', 1), ('direct', 1), ('question', 1), ('answer', 1), ('format', 1), ('second', 1), ('edition', 1), ('brings', 1), ('efficient', 1), ('solution', 1), ('four', 1), ('hundred', 1), ('practical', 1), ('programming', 1), ('challenge', 1), ('face', 1), ('every', 1), ('day', 1), ('moderator', 1), ('line', 1)]
[('kindle', 5), ('using', 2), ('introducing', 1), ('meticulously', 1), ('researched', 1), ('painstakingly', 1), ('written', 1), ('resource', 1), ('live', 1), ('without', 1), ('thorough', 1), ('guide', 1), ('covering', 1), ('aspect', 1), ('including', 1), ('new', 1), ('dx', 1), ('model', 1)]
[('password', 3), ('account', 2), ('remembering', 1), ('pain', 1), ('change', 1), ('every', 1), ('hacked', 1), ('even', 1), ('bigger', 1), ('hassle', 1), ('allowing', 1), ('mac', 1), ('manage', 1), ('make', 1), ('everything', 1), ('easier', 1)]
[('create', 2), ('web', 2), ('site', 2), ('using', 2), ('muse', 2), ('tool', 2), ('adobe', 2), ('graphic', 1), ('designer', 1), ('want', 1), ('design', 1), ('without', 1), ('code', 1), ('new', 1), ('allows', 1), ('professional', 1), ('html', 1), ('familiar', 1), ('found', 1)]
[('opengl', 2), ('e', 2), ('iphone', 2), ('ipod', 2), ('touch', 2), ('ipad', 2), ('started', 1), ('fast', 1), ('modern', 1), ('graphic', 1), ('programming', 1), ('nbsp', 1), ('technology', 1), ('underlies', 1), ('user', 1), ('interface', 1), ('graphical', 1), ('capability', 1), ('apple', 1), ('device', 1), ('ranging', 1)]
[('objective', 3), ('nbsp', 2), ('started', 1), ('fast', 1), ('programming', 1), ('o', 1), ('mountain', 1), ('lion', 1), ('io', 1), ('beyond', 1), ('fully', 1), ('updated', 1), ('xcode', 1), ('learning', 1), ('second', 1), ('edition', 1), ('today', 1), ('useful', 1), ('beginner', 1), ('guide', 1)]
[('advanced', 2), ('service', 2), ('configuring', 1), ('window', 1), ('server', 1), ('designed', 1), ('help', 1), ('enterprise', 1), ('administrator', 1), ('develop', 1), ('real', 1), ('world', 1), ('job', 1), ('role', 1), ('specific', 1), ('skill', 1), ('training', 1), ('guide', 1), ('focus', 1), ('configuration', 1), ('necessary', 1), ('deploy', 1), ('manage', 1), ('maintain', 1)]
[('window', 5), ('runtime', 2), ('programming', 2), ('master', 1), ('expert', 1), ('project', 1), ('complete', 1), ('hand', 1), ('solution', 1), ('focused', 1), ('guide', 1), ('modern', 1), ('application', 1), ('leading', 1), ('development', 1), ('consultant', 1)]
[('adobe', 2), ('photoshop', 2), ('tool', 2), ('lightroom', 1), ('fast', 1), ('becoming', 1), ('digital', 1), ('photographer', 1), ('choice', 1), ('killer', 1), ('combination', 1), ('versatile', 1), ('photo', 1), ('cataloging', 1), ('feature', 1), ('powerful', 1), ('image', 1), ('editing', 1), ('older', 1), ('relative', 1), ('still', 1), ('around', 1)]
[('apple', 2), ('iphoto', 2), ('training', 1), ('series', 1), ('certified', 1), ('guide', 1), ('seamlessly', 1), ('organizing', 1), ('editing', 1), ('photo', 1), ('time', 1), ('using', 1), ('real', 1), ('life', 1), ('material', 1), ('practical', 1), ('lesson', 1), ('apply', 1), ('immediately', 1), ('image', 1)]
[('apple', 1), ('certified', 1), ('guide', 1), ('imovie', 1), ('reader', 1), ('creating', 1), ('original', 1), ('work', 1), ('within', 1), ('first', 1), ('page', 1), ('using', 1), ('real', 1), ('life', 1), ('material', 1), ('practical', 1), ('lesson', 1), ('apply', 1), ('immediately', 1), ('project', 1), ('book', 1), ('medium', 1), ('combo', 1), ('offer', 1)]
[('lightroom', 2), ('mobile', 2), ('photo', 1), ('anywhere', 1), ('adobe', 1), ('longer', 1), ('wedded', 1), ('place', 1), ('device', 1), ('whether', 1), ('vacation', 1), ('working', 1), ('field', 1), ('sitting', 1), ('couch', 1), ('remote', 1), ('link', 1)]
[('adobe', 4), ('creative', 2), ('muse', 2), ('professional', 1), ('seeking', 1), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('nbsp', 1), ('choose', 1), ('cc', 1), ('classroom', 1), ('book', 1), ('release', 1), ('team', 1), ('press', 1), ('project', 1), ('based', 1), ('lesson', 1)]
[('bestselling', 1), ('guide', 1), ('author', 1), ('elaine', 1), ('weinmann', 1), ('peter', 1), ('lourekas', 1), ('go', 1), ('tutorial', 1), ('reference', 1), ('book', 1), ('photography', 1), ('design', 1), ('professional', 1), ('textbook', 1), ('choice', 1), ('college', 1), ('classroom', 1), ('decade', 1), ('edition', 1), ('includes', 1)]
[('need', 2), ('designer', 1), ('creative', 1), ('professional', 1), ('nbsp', 1), ('create', 1), ('digital', 1), ('document', 1), ('multiple', 1), ('device', 1), ('thrilled', 1), ('powerful', 1), ('tool', 1), ('adobe', 1), ('indesign', 1), ('cc', 1), ('know', 1)]
[('hadoop', 2), ('plan', 1), ('implement', 1), ('virtualization', 1), ('maximum', 1), ('performance', 1), ('scalability', 1), ('business', 1), ('agility', 1), ('nbsp', 1), ('enterprise', 1), ('running', 1), ('absorb', 1), ('rapid', 1), ('change', 1), ('big', 1), ('data', 1), ('ecosystem', 1), ('framework', 1), ('product', 1), ('workload', 1), ('virtualized', 1), ('approach', 1)]
[('apple', 2), ('certified', 2), ('way', 1), ('learnthis', 1), ('fully', 1), ('updated', 1), ('guide', 1), ('present', 1), ('real', 1), ('world', 1), ('workflow', 1), ('raw', 1), ('medium', 1), ('finished', 1), ('project', 1), ('demonstrate', 1), ('feature', 1), ('final', 1), ('cut', 1), ('pro', 1), ('practical', 1), ('technique', 1), ('use', 1), ('editing', 1)]
[('apple', 3), ('create', 2), ('watch', 2), ('new', 2), ('watchos', 2), ('updated', 2), ('watchkit', 2), ('framework', 2), ('breakthrough', 1), ('apps', 1), ('nbsp', 1), ('improving', 1), ('quickly', 1), ('using', 1), ('operating', 1), ('system', 1), ('tomorrow', 1)]
[('book', 2), ('autocad', 2), ('ebook', 1), ('printed', 1), ('include', 1), ('medium', 1), ('website', 1), ('access', 1), ('code', 1), ('print', 1), ('supplement', 1), ('come', 1), ('packaged', 1), ('bound', 1), ('discovering', 1), ('present', 1), ('hand', 1), ('activity', 1), ('based', 1), ('approach', 1), ('use', 1)]
[('photograph', 2), ('today', 1), ('photo', 1), ('professional', 1), ('amateur', 1), ('alike', 1), ('quickly', 1), ('amass', 1), ('thousand', 1), ('challenge', 1), ('photographer', 1), ('every', 1), ('level', 1), ('keep', 1), ('track', 1), ('store', 1), ('organize', 1)]
[('health', 3), ('technology', 2), ('national', 1), ('information', 1), ('award', 1), ('best', 1), ('show', 1), ('winner', 1), ('senior', 1), ('first', 1), ('easy', 1), ('guide', 1), ('today', 1), ('revolutionary', 1), ('learn', 1), ('use', 1), ('computer', 1), ('smartphone', 1), ('device', 1), ('manage', 1)]
[('identity', 2), ('prepare', 1), ('microsoft', 1), ('exam', 1), ('help', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('planning', 1), ('designing', 1), ('cloud', 1), ('hybrid', 1), ('supporting', 1), ('infrastructure', 1), ('managing', 1), ('device', 1), ('designed', 1), ('experienced', 1), ('pro', 1), ('ready', 1), ('advance', 1)]
[('java', 3), ('nbsp', 2), ('enterprise', 2), ('ask', 2), ('virtualizing', 1), ('tuning', 1), ('large', 1), ('scale', 1), ('platform', 1), ('technical', 1), ('best', 1), ('practice', 1), ('real', 1), ('world', 1), ('tip', 1), ('optimizing', 1), ('application', 1), ('vmware', 1), ('vsphere', 1), ('longer', 1), ('virtualized', 1), ('today', 1)]
[('use', 2), ('step', 2), ('need', 2), ('teach', 1), ('networking', 1), ('feature', 1), ('window', 1), ('connect', 1), ('home', 1), ('computer', 1), ('even', 1), ('different', 1), ('operating', 1), ('system', 1), ('set', 1), ('pace', 1), ('building', 1), ('practicing', 1), ('skill', 1)]
[('difficult', 1), ('change', 1), ('organization', 1), ('really', 1), ('take', 1), ('make', 1), ('process', 1), ('improvement', 1), ('yield', 1), ('measurable', 1), ('result', 1), ('year', 1), ('donald', 1), ('riefer', 1), ('guiding', 1), ('software', 1), ('team', 1), ('technical', 1), ('organizational', 1)]
[('volume', 2), ('comprehensive', 1), ('guide', 1), ('planning', 1), ('deployment', 1), ('administration', 1), ('critical', 1), ('information', 1), ('need', 1), ('build', 1), ('manage', 1), ('network', 1), ('window', 1), ('small', 1), ('business', 1), ('server', 1), ('essential', 1), ('single', 1), ('reference', 1), ('delivers', 1)]
[('step', 2), ('need', 2), ('experience', 1), ('learning', 1), ('made', 1), ('easy', 1), ('quickly', 1), ('teach', 1), ('create', 1), ('dynamic', 1), ('presentation', 1), ('powerpoint', 1), ('set', 1), ('pace', 1), ('building', 1), ('practicing', 1), ('skill', 1), ('topic', 1), ('include', 1), ('creating', 1)]
[('hdr', 2), ('hardware', 2), ('software', 2), ('come', 1), ('three', 1), ('key', 1), ('ingredient', 1), ('needed', 1), ('post', 1), ('processing', 1), ('technique', 1), ('simple', 1), ('thing', 1), ('need', 1), ('set', 1), ('shoot', 1), ('series', 1), ('vastly', 1), ('improved', 1), ('making', 1)]
[('harden', 1), ('perimeter', 1), ('router', 1), ('cisco', 1), ('firewall', 1), ('functionality', 1), ('feature', 1), ('ensure', 1), ('network', 1), ('security', 1), ('detect', 1), ('prevent', 1), ('denial', 1), ('service', 1), ('do', 1), ('attack', 1), ('tcp', 1), ('intercept', 1), ('context', 1), ('based', 1), ('access', 1), ('control', 1), ('cbac', 1), ('rate', 1), ('limiting', 1), ('technique', 1), ('use', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('php', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('easy', 1), ('powerful', 1), ('code', 1), ('security', 1), ('technique', 1), ('every', 1), ('developer', 1), ('nbsp', 1), ('hacker', 1), ('specifically', 1), ('target', 1), ('web', 1)]
[('book', 2), ('contains', 1), ('everything', 1), ('need', 1), ('know', 1), ('create', 1), ('awesome', 1), ('life', 1), ('altering', 1), ('application', 1), ('pride', 1), ('knowing', 1), ('lot', 1), ('design', 1), ('reading', 1), ('probably', 1), ('encounter', 1), ('single', 1), ('page', 1), ('offer', 1), ('least', 1)]
[('book', 2), ('digital', 1), ('version', 1), ('printed', 1), ('copyright', 1), ('answer', 1), ('call', 1), ('concise', 1), ('comprehensive', 1), ('introduction', 1), ('idef', 1), ('application', 1), ('business', 1), ('process', 1), ('reengineering', 1), ('bpr', 1), ('effort', 1), ('nbsp', 1)]
[('wireless', 2), ('zigbee', 2), ('new', 2), ('first', 1), ('practical', 1), ('guide', 1), ('advanced', 1), ('development', 1), ('technology', 1), ('nbsp', 1), ('supported', 1), ('hundred', 1), ('company', 1), ('standard', 1), ('enables', 1), ('powerful', 1), ('application', 1), ('safety', 1), ('security', 1), ('control', 1), ('ranging', 1)]
[('mashups', 3), ('creating', 1), ('enterprise', 1), ('quality', 1), ('web', 1), ('complete', 1), ('guide', 1), ('nbsp', 1), ('give', 1), ('business', 1), ('powerful', 1), ('new', 1), ('way', 1), ('leverage', 1), ('today', 1), ('massive', 1), ('public', 1), ('private', 1), ('data', 1), ('resource', 1), ('competitive', 1), ('advantage', 1), ('strategy', 1), ('modern', 1)]
[('technique', 2), ('agile', 1), ('demonstrated', 1), ('immense', 1), ('potential', 1), ('developing', 1), ('effective', 1), ('higher', 1), ('quality', 1), ('software', 1), ('scaling', 1), ('enterprise', 1), ('present', 1), ('many', 1), ('challenge', 1), ('solution', 1), ('integrate', 1), ('principle', 1), ('practice', 1)]
[('decision', 5), ('project', 3), ('better', 2), ('effective', 1), ('crucial', 1), ('success', 1), ('software', 1), ('make', 1), ('need', 1), ('making', 1), ('process', 1), ('evaluating', 1), ('leading', 1), ('management', 1), ('expert', 1), ('introduce', 1), ('innovative', 1)]
[('data', 2), ('using', 1), ('fibre', 1), ('channel', 1), ('ethernet', 1), ('fcoe', 1), ('related', 1), ('technology', 1), ('center', 1), ('consolidate', 1), ('traffic', 1), ('onto', 1), ('single', 1), ('network', 1), ('switch', 1), ('simplifying', 1), ('environment', 1), ('promoting', 1), ('virtualization', 1), ('substantially', 1), ('reducing', 1), ('power', 1), ('cooling', 1)]
[('whether', 1), ('consulting', 1), ('working', 1), ('project', 1), ('teaching', 1), ('whenever', 1), ('need', 1), ('credible', 1), ('detailed', 1), ('relevant', 1), ('metric', 1), ('insight', 1), ('current', 1), ('capability', 1), ('performance', 1), ('software', 1), ('engineering', 1), ('profession', 1), ('always', 1), ('turn', 1), ('first', 1), ('caper', 1), ('jones', 1)]
[('flash', 2), ('animation', 2), ('web', 2), ('adobe', 1), ('professional', 1), ('popular', 1), ('software', 1), ('available', 1), ('creating', 1), ('start', 1), ('using', 1), ('create', 1), ('vector', 1), ('based', 1), ('output', 1), ('small', 1), ('file', 1), ('size', 1), ('perfect', 1), ('later', 1), ('want', 1), ('branch', 1)]
[('cloud', 3), ('nbsp', 3), ('service', 2), ('delivering', 2), ('easy', 2), ('designing', 1), ('network', 1), ('business', 1), ('grade', 1), ('application', 1), ('rapid', 1), ('understand', 1), ('approach', 1), ('secure', 1), ('resilient', 1), ('manage', 1), ('sla', 1), ('driven', 1), ('experience', 1)]
[('unleash', 1), ('power', 1), ('vcenter', 1), ('orchestrator', 1), ('automate', 1), ('task', 1), ('improve', 1), ('efficiency', 1), ('nbsp', 1), ('today', 1), ('vmware', 1), ('administrator', 1), ('responsible', 1), ('far', 1), ('infrastructure', 1), ('server', 1), ('service', 1), ('succeed', 1), ('take', 1), ('full', 1), ('advantage', 1)]
[('process', 2), ('improvement', 2), ('software', 1), ('often', 1), ('reflects', 1), ('significant', 1), ('disconnect', 1), ('theory', 1), ('practice', 1), ('book', 1), ('bridge', 1), ('gap', 1), ('offering', 1), ('straightforward', 1), ('systematic', 1), ('approach', 1), ('planning', 1), ('implementing', 1), ('monitoring', 1)]
[('nbsp', 3), ('visual', 2), ('studio', 2), ('team', 2), ('agile', 2), ('software', 2), ('use', 1), ('foundation', 1), ('server', 1), ('method', 1), ('deliver', 1), ('higher', 1), ('value', 1), ('faster', 1), ('definitive', 1), ('guide', 1), ('applying', 1), ('development', 1), ('modern', 1), ('engineering', 1), ('practice', 1)]
[('network', 2), ('networking', 2), ('thoroughly', 1), ('updated', 1), ('reflect', 1), ('comptia', 1), ('exam', 1), ('essential', 1), ('third', 1), ('edition', 1), ('practical', 1), ('date', 1), ('hand', 1), ('guide', 1), ('basic', 1), ('written', 1), ('viewpoint', 1), ('working', 1), ('administrator', 1)]
[('software', 3), ('many', 1), ('project', 1), ('fail', 1), ('leader', 1), ('know', 1), ('estimate', 1), ('schedule', 1), ('measure', 1), ('accurately', 1), ('fortunately', 1), ('proven', 1), ('tool', 1), ('technique', 1), ('exist', 1), ('every', 1), ('facet', 1), ('estimation', 1), ('estimating', 1), ('intensive', 1), ('system', 1), ('brings', 1)]
[('step', 2), ('easy', 1), ('clear', 1), ('readable', 1), ('focused', 1), ('want', 1), ('instruction', 1), ('task', 1), ('care', 1), ('large', 1), ('full', 1), ('color', 1), ('close', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('common', 1), ('sense', 1), ('help', 1), ('whenever', 1), ('run', 1), ('problem', 1), ('tip', 1)]
[('game', 2), ('artist', 2), ('photoshop', 2), ('work', 2), ('use', 1), ('idea', 1), ('create', 1), ('final', 1), ('product', 1), ('used', 1), ('many', 1), ('way', 1), ('efficiently', 1), ('program', 1), ('tapped', 1), ('workflow', 1), ('keep', 1), ('productive', 1), ('sane', 1), ('book', 1), ('take', 1), ('approach', 1), ('creating', 1), ('asset', 1), ('beginner', 1), ('intermediate', 1)]
[('web', 2), ('device', 2), ('create', 1), ('design', 1), ('work', 1), ('perfectly', 1), ('simply', 1), ('beautifully', 1), ('billion', 1), ('access', 1), ('via', 1), ('smartphones', 1), ('tablet', 1), ('type', 1), ('using', 1), ('every', 1), ('imaginable', 1), ('interface', 1), ('display', 1), ('want', 1), ('thing', 1)]
[('soa', 2), ('technology', 2), ('concise', 1), ('introduction', 1), ('modern', 1), ('high', 1), ('value', 1), ('approach', 1), ('innovative', 1), ('proven', 1), ('use', 1), ('case', 1), ('decade', 1), ('innovation', 1), ('practice', 1), ('mainstream', 1), ('computing', 1), ('discipline', 1), ('capable', 1), ('transforming', 1)]
[('iphone', 2), ('apps', 2), ('skill', 2), ('bring', 1), ('window', 1), ('phone', 1), ('build', 1), ('mobile', 1), ('platform', 1), ('nbsp', 1), ('developing', 1), ('crowded', 1), ('marketplace', 1), ('book', 1), ('help', 1), ('leverage', 1), ('io', 1), ('fast', 1), ('growing', 1), ('new', 1)]
[('drupal', 2), ('step', 2), ('finally', 1), ('made', 1), ('easy', 1), ('guide', 1), ('planning', 1), ('finished', 1), ('site', 1), ('nbsp', 1), ('open', 1), ('source', 1), ('content', 1), ('management', 1), ('system', 1), ('offer', 1), ('amazing', 1), ('flexibility', 1), ('sophistication', 1), ('power', 1), ('catch', 1), ('many', 1), ('first', 1), ('time', 1), ('user', 1), ('find', 1), ('difficult', 1)]
[('digital', 1), ('version', 1), ('printed', 1), ('book', 1), ('copyright', 1), ('nbsp', 1), ('success', 1), ('system', 1), ('software', 1), ('development', 1), ('depends', 1), ('effective', 1), ('communication', 1), ('trouble', 1), ('articulating', 1), ('complex', 1), ('concept', 1), ('doubted', 1)]
[('autocad', 2), ('discovering', 1), ('present', 1), ('hand', 1), ('activity', 1), ('based', 1), ('approach', 1), ('use', 1), ('drafting', 1), ('tool', 1), ('complete', 1), ('technique', 1), ('tip', 1), ('shortcut', 1), ('insight', 1), ('improve', 1), ('efficiency', 1), ('topic', 1), ('task', 1), ('carefully', 1), ('grouped', 1), ('lead', 1), ('student', 1)]
[('apple', 3), ('swift', 2), ('project', 2), ('designed', 1), ('need', 1), ('previous', 1), ('programming', 1), ('experience', 1), ('many', 1), ('developer', 1), ('want', 1), ('take', 1), ('advantage', 1), ('existing', 1), ('start', 1), ('writing', 1), ('scratch', 1), ('compact', 1), ('point', 1)]
[('app', 2), ('professional', 1), ('programmer', 1), ('deitel', 1), ('guide', 1), ('iphone', 1), ('ipad', 1), ('development', 1), ('using', 1), ('io', 1), ('swift', 1), ('xcode', 1), ('cocoa', 1), ('touch', 1), ('billion', 1), ('apps', 1), ('downloaded', 1), ('apple', 1), ('store', 1), ('book', 1), ('give', 1), ('everything', 1), ('need', 1), ('start', 1)]
[('io', 2), ('english', 2), ('app', 2), ('internationalize', 1), ('apps', 1), ('global', 1), ('audience', 1), ('nbsp', 1), ('sixty', 1), ('percent', 1), ('iphone', 1), ('user', 1), ('worldwide', 1), ('native', 1), ('speaker', 1), ('half', 1), ('top', 1), ('market', 1), ('non', 1), ('speaking', 1), ('revenue', 1), ('asia', 1), ('soaring', 1), ('north', 1)]
[('microsoft', 2), ('prepare', 1), ('exam', 1), ('demonstrate', 1), ('real', 1), ('world', 1), ('mastery', 1), ('advanced', 1), ('exchange', 1), ('server', 1), ('solution', 1), ('design', 1), ('configuration', 1), ('implementation', 1), ('management', 1), ('support', 1), ('designed', 1), ('experienced', 1), ('professional', 1), ('ready', 1)]
[('manage', 2), ('mobile', 2), ('device', 2), ('workforce', 1), ('relies', 1), ('learn', 1), ('use', 1), ('microsoft', 1), ('breakthrough', 1), ('enterprise', 1), ('mobility', 1), ('suite', 1), ('help', 1), ('securely', 1), ('byod', 1), ('company', 1), ('owned', 1), ('window', 1), ('io', 1), ('android', 1), ('leading', 1)]
[('photographer', 2), ('adobe', 1), ('photoshop', 1), ('lightroom', 1), ('designed', 1), ('ground', 1), ('digital', 1), ('mind', 1), ('offering', 1), ('powerful', 1), ('editing', 1), ('feature', 1), ('streamlined', 1), ('interface', 1), ('let', 1), ('import', 1), ('sort', 1), ('organize', 1), ('image', 1), ('completely', 1), ('updated', 1)]
[('hour', 3), ('sam', 2), ('teach', 2), ('big', 2), ('data', 2), ('analytics', 2), ('microsoft', 2), ('hdinsight', 2), ('lesson', 1), ('le', 1), ('help', 1), ('leverage', 1), ('hadoop', 1), ('power', 1), ('flexible', 1)]
[('object', 4), ('use', 2), ('understanding', 2), ('developer', 1), ('today', 1), ('oriented', 1), ('language', 1), ('full', 1), ('power', 1), ('available', 1), ('deep', 1), ('paradigm', 1), ('help', 1), ('gain', 1), ('write', 1), ('code', 1)]
[('developer', 2), ('android', 2), ('want', 1), ('begin', 1), ('serious', 1), ('development', 1), ('justin', 1), ('anderson', 1), ('freelance', 1), ('nbsp', 1), ('start', 1), ('finish', 1), ('book', 1), ('contains', 1), ('variety', 1), ('tip', 1), ('insight', 1), ('important', 1), ('attribute', 1)]
[('music', 2), ('step', 2), ('record', 1), ('arrange', 1), ('mix', 1), ('produce', 1), ('polish', 1), ('bestselling', 1), ('apple', 1), ('certified', 1), ('guide', 1), ('logic', 1), ('pro', 1), ('veteran', 1), ('producer', 1), ('composer', 1), ('david', 1), ('nahmani', 1), ('us', 1), ('project', 1), ('based', 1), ('instruction', 1), ('straightforward', 1), ('explanation', 1), ('teach', 1), ('everything', 1), ('basic', 1), ('creation', 1), ('sophisticated', 1), ('production', 1), ('technique', 1), ('using', 1), ('book', 1)]
[('responsive', 2), ('using', 2), ('page', 2), ('learn', 1), ('adobe', 1), ('muse', 1), ('cc', 1), ('ground', 1), ('create', 1), ('website', 1), ('latest', 1), ('web', 1), ('standard', 1), ('without', 1), ('writing', 1), ('code', 1), ('start', 1), ('planning', 1), ('project', 1), ('site', 1), ('map', 1), ('master', 1), ('design', 1), ('add', 1), ('interactivity', 1)]
[('programming', 3), ('fast', 2), ('swift', 2), ('io', 2), ('o', 2), ('started', 1), ('learning', 1), ('paced', 1), ('hand', 1), ('introduction', 1), ('writing', 1), ('production', 1), ('quality', 1), ('apps', 1), ('apple', 1), ('language', 1), ('written', 1), ('developer', 1)]
[('study', 1), ('guide', 1), ('us', 1), ('text', 1), ('integrated', 1), ('video', 1), ('help', 1), ('gain', 1), ('real', 1), ('world', 1), ('skill', 1), ('started', 1), ('career', 1), ('planning', 1), ('website', 1), ('designing', 1), ('web', 1), ('page', 1), ('lay', 1), ('foundation', 1), ('taking', 1), ('dreamweaver', 1), ('aca', 1), ('exam', 1), ('mix', 1)]
[('cisco', 2), ('intercloud', 2), ('complete', 1), ('guide', 1), ('use', 1), ('case', 1), ('planning', 1), ('deployment', 1), ('nbsp', 1), ('using', 1), ('technology', 1), ('seamlessly', 1), ('integrate', 1), ('private', 1), ('hybrid', 1), ('public', 1), ('cloud', 1), ('securely', 1), ('providing', 1), ('right', 1), ('resource', 1), ('consistent', 1)]
[('basecamp', 2), ('minute', 2), ('need', 2), ('sam', 1), ('teach', 1), ('offer', 1), ('straightforward', 1), ('practical', 1), ('answer', 1), ('fast', 1), ('result', 1), ('working', 1), ('lesson', 1), ('learn', 1), ('everything', 1), ('know', 1), ('quickly', 1), ('easily', 1), ('speed', 1)]
[('software', 2), ('watt', 2), ('humphrey', 2), ('lifetime', 1), ('invaluable', 1), ('management', 1), ('insight', 1), ('legendary', 1), ('quality', 1), ('guru', 1), ('made', 1), ('outrageous', 1), ('commitment', 1), ('promise', 1), ('transform', 1), ('development', 1), ('pioneering', 1), ('innovator', 1), ('behind', 1), ('sei', 1)]
[('clustering', 2), ('thousand', 1), ('organization', 1), ('adopted', 1), ('improve', 1), ('availability', 1), ('mission', 1), ('critical', 1), ('software', 1), ('service', 1), ('today', 1), ('rapid', 1), ('growth', 1), ('cloud', 1), ('computing', 1), ('environment', 1), ('even', 1), ('crucial', 1), ('nbsp', 1)]
[('capability', 2), ('cmmi', 1), ('maturity', 1), ('model', 1), ('integration', 1), ('integrated', 1), ('extensible', 1), ('framework', 1), ('improving', 1), ('process', 1), ('quality', 1), ('across', 1), ('organization', 1), ('become', 1), ('cornerstone', 1), ('implementation', 1), ('continuous', 1), ('improvement', 1)]
[('internet', 2), ('network', 2), ('ip', 2), ('cellular', 1), ('world', 1), ('converge', 1), ('mobile', 1), ('transitioning', 1), ('circuit', 1), ('packet', 1), ('protocol', 1), ('recognized', 1), ('fundamental', 1), ('building', 1), ('block', 1), ('next', 1), ('generation', 1), ('communication', 1)]
[('oracle', 2), ('solaris', 2), ('system', 2), ('administration', 1), ('cover', 1), ('every', 1), ('skill', 1), ('required', 1), ('effectively', 1), ('install', 1), ('administer', 1), ('operating', 1), ('production', 1), ('environment', 1), ('feature', 1), ('dozen', 1), ('step', 1), ('bystep', 1), ('learn', 1), ('example', 1), ('procedure', 1)]
[('access', 2), ('power', 2), ('programming', 2), ('scott', 1), ('barker', 1), ('give', 1), ('many', 1), ('practical', 1), ('technique', 1), ('corporate', 1), ('independent', 1), ('developer', 1), ('main', 1), ('topic', 1), ('covered', 1), ('root', 1), ('manipulating', 1), ('presenting', 1), ('data', 1), ('extending', 1)]
[('security', 3), ('software', 2), ('bsi', 2), ('site', 2), ('engineering', 1), ('draw', 1), ('extensively', 1), ('systematic', 1), ('approach', 1), ('developed', 1), ('build', 1), ('web', 1), ('sponsored', 1), ('department', 1), ('homeland', 1), ('assurance', 1), ('program', 1), ('offer', 1), ('host', 1), ('tool', 1)]
[('technique', 2), ('desire', 1), ('effect', 1), ('change', 1), ('influence', 1), ('software', 1), ('team', 1), ('either', 1), ('stumble', 1), ('around', 1), ('dark', 1), ('year', 1), ('experimenting', 1), ('different', 1), ('buy', 1), ('apply', 1), ('book', 1)]
[('business', 4), ('integration', 3), ('websphere', 2), ('introductory', 1), ('guide', 1), ('ibm', 1), ('nbsp', 1), ('using', 1), ('wbi', 1), ('technology', 1), ('build', 1), ('enterprise', 1), ('wide', 1), ('bi', 1), ('infrastructure', 1), ('make', 1), ('easier', 1), ('connect', 1)]
[('service', 3), ('web', 2), ('contract', 2), ('ultimate', 1), ('guide', 1), ('designing', 1), ('governing', 1), ('nbsp', 1), ('succeed', 1), ('part', 1), ('soa', 1), ('require', 1), ('balanced', 1), ('effective', 1), ('technical', 1), ('enable', 1), ('evolved', 1), ('repeatedly', 1), ('reused', 1), ('year', 1)]
[('tr', 2), ('library', 2), ('new', 2), ('roughly', 1), ('double', 1), ('size', 1), ('standard', 1), ('introduces', 1), ('many', 1), ('facility', 1), ('even', 1), ('kind', 1), ('component', 1), ('class', 1), ('example', 1), ('nested', 1), ('type', 1), ('exist', 1), ('depending', 1), ('template', 1)]
[('lotus', 2), ('ibm', 1), ('practical', 1), ('hand', 1), ('guide', 1), ('supporting', 1), ('administering', 1), ('note', 1), ('domino', 1), ('nbsp', 1), ('book', 1), ('focus', 1), ('entirely', 1), ('specific', 1), ('technical', 1), ('desk', 1), ('side', 1), ('infrastructure', 1), ('issue', 1), ('support', 1), ('professional', 1)]
[('ebook', 1), ('version', 1), ('print', 1), ('title', 1), ('access', 1), ('tool', 1), ('sample', 1), ('template', 1), ('source', 1), ('code', 1), ('nbsp', 1), ('available', 1), ('product', 1), ('catalog', 1), ('page', 1), ('navigate', 1), ('downloads', 1), ('tab', 1), ('click', 1), ('link', 1)]
[('distributed', 2), ('application', 2), ('complete', 1), ('hand', 1), ('guide', 1), ('building', 1), ('advanced', 1), ('ruby', 1), ('nbsp', 1), ('programming', 1), ('technique', 1), ('make', 1), ('easier', 1), ('scale', 1), ('develop', 1), ('deploy', 1), ('especially', 1), ('emerging', 1), ('cloud', 1), ('computing', 1), ('environment', 1)]
[('failure', 2), ('sobering', 1), ('description', 1), ('many', 1), ('computer', 1), ('related', 1), ('throughout', 1), ('world', 1), ('deflates', 1), ('hype', 1), ('hubris', 1), ('industry', 1), ('peter', 1), ('neumann', 1), ('analyzes', 1), ('mode', 1), ('recommends', 1), ('sequence', 1), ('prevention', 1), ('end', 1), ('unique', 1), ('book', 1)]
[('web', 3), ('google', 2), ('toolkit', 2), ('java', 1), ('developer', 1), ('build', 1), ('sophisticated', 1), ('rich', 1), ('internet', 1), ('application', 1), ('rias', 1), ('complete', 1), ('site', 1), ('using', 1), ('powerful', 1), ('ides', 1), ('tool', 1), ('already', 1), ('use', 1), ('gwt', 1), ('become', 1), ('even', 1), ('useful', 1)]
[('corba', 3), ('book', 1), ('every', 1), ('software', 1), ('engineer', 1), ('waiting', 1), ('advanced', 1), ('programming', 1), ('provides', 1), ('designer', 1), ('developer', 1), ('tool', 1), ('required', 1), ('understand', 1), ('technology', 1), ('architectural', 1), ('design', 1), ('source', 1)]
[('increasing', 1), ('rate', 1), ('technological', 1), ('change', 1), ('experiencing', 1), ('lifetime', 1), ('yield', 1), ('competitive', 1), ('advantage', 1), ('organization', 1), ('individual', 1), ('willing', 1), ('embrace', 1), ('risk', 1), ('opportunity', 1), ('present', 1), ('choose', 1), ('minimize', 1), ('avoid', 1)]
[('user', 2), ('adopting', 1), ('back', 1), ('basic', 1), ('approach', 1), ('bestselling', 1), ('little', 1), ('mac', 1), ('classic', 1), ('revised', 1), ('overhauled', 1), ('introduce', 1), ('o', 1), ('lion', 1), ('gentle', 1), ('friendly', 1), ('funny', 1), ('style', 1), ('generation', 1), ('computer', 1), ('come', 1), ('know', 1), ('love', 1), ('author', 1)]
[('o', 2), ('lion', 2), ('guide', 2), ('mac', 1), ('pocket', 1), ('indispensable', 1), ('quick', 1), ('reference', 1), ('packed', 1), ('bite', 1), ('sized', 1), ('chunk', 1), ('practical', 1), ('information', 1), ('want', 1), ('jump', 1), ('start', 1), ('working', 1), ('playing', 1), ('attractive', 1), ('price', 1)]
[('html', 2), ('web', 2), ('continues', 1), ('evolve', 1), ('browser', 1), ('implementating', 1), ('break', 1), ('neck', 1), ('speed', 1), ('site', 1), ('spring', 1), ('flower', 1), ('rain', 1), ('need', 1), ('acquainted', 1), ('powerful', 1), ('new', 1), ('possibility', 1), ('application', 1), ('design', 1)]
[('app', 2), ('engine', 2), ('de', 2), ('java', 2), ('essential', 1), ('adriaan', 1), ('jonge', 1), ('show', 1), ('developer', 1), ('rapidly', 1), ('build', 1), ('complex', 1), ('productionquality', 1), ('performance', 1), ('driven', 1), ('cloud', 1), ('application', 1), ('google', 1), ('using', 1), ('start', 1), ('finish', 1), ('case', 1), ('study', 1), ('extensive', 1), ('example', 1), ('code', 1)]
[('reader', 3), ('book', 2), ('walk', 1), ('train', 1), ('dragon', 1), ('dictate', 1), ('allowing', 1), ('recognize', 1), ('way', 1), ('speak', 1), ('learn', 1), ('add', 1), ('specialized', 1), ('word', 1), ('name', 1), ('control', 1), ('mac', 1), ('application', 1), ('using', 1), ('voice', 1), ('move', 1)]
[('retouching', 3), ('photo', 1), ('secret', 1), ('another', 1), ('color', 1), ('correction', 1), ('book', 1), ('scanning', 1), ('manual', 1), ('cover', 1), ('topic', 1), ('image', 1), ('make', 1), ('look', 1), ('better', 1), ('type', 1), ('talking', 1), ('thing', 1), ('trick', 1), ('removing', 1), ('red', 1), ('eye', 1)]
[('speed', 3), ('photoshop', 2), ('book', 2), ('come', 1), ('time', 1), ('money', 1), ('hot', 1), ('new', 1), ('scott', 1), ('kelby', 1), ('felix', 1), ('nelson', 1), ('team', 1), ('behind', 1), ('user', 1), ('magazine', 1), ('tip', 1), ('special', 1), ('effect', 1)]
[('tip', 2), ('professional', 2), ('hottest', 1), ('collection', 1), ('cool', 1), ('hidden', 1), ('secret', 1), ('pro', 1), ('need', 1), ('result', 1), ('fast', 1), ('level', 1), ('material', 1), ('content', 1), ('appeal', 1), ('multiple', 1), ('book', 1), ('buying', 1), ('photoshop', 1), ('killer', 1), ('huge', 1), ('bang', 1), ('small', 1), ('accessible', 1)]
[('mac', 3), ('o', 2), ('killer', 2), ('tip', 2), ('user', 2), ('another', 1), ('newbie', 1), ('book', 1), ('speaks', 1), ('directly', 1), ('daily', 1), ('need', 1), ('nothin', 1), ('sidebar', 1), ('time', 1), ('money', 1), ('lot', 1), ('experienced', 1), ('find', 1), ('trying', 1)]
[('hottest', 1), ('collection', 1), ('cool', 1), ('tip', 1), ('hidden', 1), ('secret', 1), ('best', 1), ('result', 1), ('fast', 1), ('come', 1), ('dreamweaver', 1), ('time', 1), ('money', 1), ('book', 1), ('speed', 1), ('showing', 1), ('work', 1), ('done', 1), ('faster', 1), ('actually', 1), ('increasing', 1), ('quality', 1)]
[('web', 3), ('matter', 1), ('visually', 1), ('appealing', 1), ('content', 1), ('packed', 1), ('site', 1), ('reach', 1), ('widest', 1), ('possible', 1), ('audience', 1), ('truly', 1), ('successful', 1), ('bulletproof', 1), ('design', 1), ('third', 1), ('edition', 1), ('bestselling', 1), ('author', 1), ('designer', 1), ('dan', 1), ('cederholm', 1), ('outline', 1)]
[('io', 2), ('apple', 2), ('million', 1), ('device', 1), ('sold', 1), ('booming', 1), ('mobile', 1), ('platform', 1), ('provides', 1), ('large', 1), ('rapidly', 1), ('growing', 1), ('app', 1), ('market', 1), ('developer', 1), ('release', 1), ('sdk', 1), ('provided', 1), ('richest', 1), ('exciting', 1), ('set', 1), ('development', 1)]
[('photoshop', 3), ('cover', 2), ('step', 2), ('updated', 1), ('latest', 1), ('version', 1), ('amp', 1), ('dirty', 1), ('trick', 1), ('packed', 1), ('tutorial', 1), ('coolest', 1), ('effect', 1), ('book', 1), ('another', 1), ('rehash', 1), ('masking', 1), ('pixel', 1), ('file', 1), ('format', 1)]
[('using', 2), ('step', 2), ('session', 1), ('hour', 1), ('le', 1), ('master', 1), ('objective', 1), ('language', 1), ('start', 1), ('write', 1), ('powerful', 1), ('native', 1), ('application', 1), ('mac', 1), ('io', 1), ('device', 1), ('book', 1), ('straightforward', 1), ('approach', 1)]
[('minute', 2), ('sam', 1), ('teach', 1), ('icloud', 1), ('offer', 1), ('straightforward', 1), ('practical', 1), ('information', 1), ('designed', 1), ('running', 1), ('quickly', 1), ('easily', 1), ('working', 1), ('lesson', 1), ('learn', 1), ('everything', 1), ('need', 1), ('know', 1), ('effectively', 1), ('use', 1)]
[('step', 4), ('pinterest', 2), ('help', 2), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1), ('nbsp', 1), ('full', 1), ('color', 1), ('task', 1), ('walk', 1)]
[('dynamic', 3), ('data', 2), ('asp', 2), ('net', 2), ('nbsp', 1), ('using', 1), ('developer', 1), ('create', 1), ('powerful', 1), ('datadriven', 1), ('site', 1), ('amazing', 1), ('speed', 1), ('efficiency', 1), ('eliminating', 1), ('massive', 1), ('amount', 1), ('manual', 1), ('coding', 1), ('unleashed', 1), ('first', 1), ('complete', 1), ('practical', 1), ('guide', 1)]
[('video', 2), ('host', 2), ('web', 2), ('diy', 1), ('guide', 1), ('planning', 1), ('shooting', 1), ('sharing', 1), ('usa', 1), ('today', 1), ('talking', 1), ('tech', 1), ('nbsp', 1), ('kind', 1), ('creating', 1), ('blogger', 1), ('small', 1), ('business', 1), ('owner', 1), ('show', 1), ('corporate', 1), ('marketing', 1), ('department', 1), ('name', 1)]
[('page', 3), ('nbsp', 3), ('step', 2), ('help', 2), ('instruction', 1), ('callouts', 1), ('image', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1), ('mac', 1), ('full', 1), ('color', 1)]
[('jquery', 4), ('mobile', 2), ('practical', 1), ('recipe', 1), ('solving', 1), ('real', 1), ('world', 1), ('web', 1), ('development', 1), ('challenge', 1), ('nbsp', 1), ('make', 1), ('easier', 1), ('developer', 1), ('build', 1), ('exceptionally', 1), ('robust', 1), ('cross', 1), ('platform', 1), ('website', 1), ('apps', 1), ('ui', 1)]
[('website', 2), ('need', 2), ('build', 1), ('state', 1), ('art', 1), ('incredibly', 1), ('easy', 1), ('cost', 1), ('dime', 1), ('nbsp', 1), ('hassle', 1), ('usually', 1), ('go', 1), ('building', 1), ('expense', 1), ('hiring', 1)]
[('iphone', 2), ('ipad', 2), ('imovie', 1), ('teach', 1), ('easily', 1), ('harness', 1), ('power', 1), ('simplicity', 1), ('apple', 1), ('moviemaking', 1), ('app', 1), ('io', 1), ('device', 1), ('hand', 1), ('guide', 1), ('step', 1), ('make', 1), ('footage', 1), ('high', 1), ('quality', 1), ('video', 1)]
[('filmmaker', 1), ('love', 1), ('gadget', 1), ('flock', 1), ('new', 1), ('technology', 1), ('demonstrates', 1), ('slightest', 1), ('potential', 1), ('help', 1), ('conceptualize', 1), ('visualize', 1), ('digitize', 1), ('creative', 1), ('effort', 1), ('neglecting', 1), ('touch', 1), ('screen', 1), ('powerhouse', 1), ('hiding', 1), ('pocket', 1)]
[('ipad', 3), ('mini', 3), ('step', 2), ('help', 2), ('cover', 1), ('io', 1), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1), ('full', 1), ('color', 1)]
[('guide', 2), ('surface', 2), ('step', 2), ('visual', 1), ('quickstart', 1), ('help', 1), ('running', 1), ('microsoft', 1), ('entry', 1), ('tablet', 1), ('market', 1), ('walk', 1), ('using', 1), ('four', 1), ('color', 1), ('image', 1)]
[('book', 2), ('iphone', 2), ('looking', 1), ('focus', 1), ('important', 1), ('useful', 1), ('fun', 1), ('stuff', 1), ('found', 1), ('basically', 1), ('type', 1), ('negetiveemoji', 1), ('tell', 1), ('kind', 1)]
[('user', 2), ('content', 2), ('graphic', 1), ('key', 1), ('experience', 1), ('online', 1), ('especially', 1), ('accessing', 1), ('multitude', 1), ('device', 1), ('smartphones', 1), ('tablet', 1), ('laptop', 1), ('desktop', 1), ('book', 1), ('provides', 1), ('foundational', 1), ('methodology', 1), ('optimal', 1), ('use', 1)]
[('nexus', 3), ('nbsp', 3), ('google', 2), ('step', 2), ('stepinstructions', 1), ('corresponding', 1), ('number', 1), ('callouts', 1), ('photo', 1), ('showing', 1), ('exactly', 1), ('helpwhen', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tablet', 1), ('apps', 1)]
[('le', 1), ('time', 1), ('nbsp', 1), ('whether', 1), ('entrepreneur', 1), ('accountant', 1), ('bookkeeper', 1), ('comprehensive', 1), ('guide', 1), ('help', 1), ('quickbooks', 1), ('productivity', 1), ('business', 1), ('knowledge', 1), ('value', 1), ('drawing', 1)]
[('false', 3), ('step', 2), ('samsung', 2), ('galaxy', 2), ('note', 2), ('ii', 2), ('normal', 1), ('microsoftinternetexplorer', 1), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('help', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1)]
[('android', 3), ('tablet', 2), ('developer', 2), ('cookbook', 1), ('help', 1), ('experienced', 1), ('leverage', 1), ('new', 1), ('feature', 1), ('build', 1), ('compelling', 1), ('application', 1), ('take', 1), ('full', 1), ('advantage', 1), ('bigger', 1), ('screen', 1), ('dual', 1), ('core', 1), ('processor', 1), ('larger', 1), ('faster', 1), ('memory', 1)]
[('minute', 2), ('sam', 1), ('teach', 1), ('icloud', 1), ('second', 1), ('edition', 1), ('offer', 1), ('straightforward', 1), ('practical', 1), ('information', 1), ('designed', 1), ('running', 1), ('quickly', 1), ('easily', 1), ('working', 1), ('lesson', 1), ('learn', 1), ('everything', 1), ('need', 1), ('know', 1)]
[('android', 3), ('want', 2), ('building', 2), ('apps', 2), ('started', 1), ('today', 1), ('number', 1), ('mobile', 1), ('platform', 1), ('already', 1), ('better', 1), ('developer', 1), ('cookbook', 1), ('second', 1), ('edition', 1), ('brings', 1), ('together', 1), ('expert', 1)]
[('word', 3), ('learn', 2), ('make', 1), ('without', 1), ('becoming', 1), ('technical', 1), ('expert', 1), ('book', 1), ('fastest', 1), ('way', 1), ('use', 1), ('quickly', 1), ('prepare', 1), ('powerfully', 1), ('effective', 1), ('document', 1), ('even', 1), ('never', 1), ('used', 1), ('want', 1)]
[('far', 1), ('word', 1), ('processor', 1), ('scrivener', 1), ('help', 1), ('organize', 1), ('brainstorm', 1), ('even', 1), ('complex', 1), ('writing', 1), ('project', 1), ('bring', 1), ('together', 1), ('research', 1), ('write', 1), ('efficiently', 1), ('successfully', 1), ('long', 1), ('available', 1), ('mac', 1)]
[('hour', 2), ('maya', 2), ('step', 2), ('session', 1), ('le', 1), ('sam', 1), ('teach', 1), ('help', 1), ('master', 1), ('autodesk', 1), ('use', 1), ('create', 1), ('outstanding', 1), ('graphic', 1), ('animation', 1), ('using', 1), ('book', 1), ('straightforward', 1), ('approach', 1)]
[('office', 3), ('make', 1), ('without', 1), ('becoming', 1), ('technical', 1), ('expert', 1), ('book', 1), ('fastest', 1), ('way', 1), ('create', 1), ('edit', 1), ('format', 1), ('build', 1), ('review', 1), ('share', 1), ('virtually', 1), ('form', 1), ('content', 1), ('even', 1), ('never', 1), ('used', 1), ('learn', 1)]
[('creative', 2), ('day', 2), ('completed', 1), ('boot', 1), ('camp', 1), ('training', 1), ('program', 1), ('surviving', 1), ('creativity', 1), ('exercise', 1), ('designed', 1), ('present', 1), ('fun', 1), ('engaging', 1), ('opportunity', 1), ('problem', 1), ('solving', 1), ('practice', 1), ('developed', 1), ('skill', 1), ('use', 1), ('every', 1)]
[('photoshop', 2), ('guide', 1), ('thing', 1), ('adobe', 1), ('creating', 1), ('model', 1), ('scene', 1), ('time', 1), ('filled', 1), ('rich', 1), ('imagery', 1), ('fun', 1), ('tutorial', 1), ('project', 1), ('based', 1), ('chapter', 1), ('within', 1), ('build', 1), ('knowledge', 1), ('important', 1), ('concept', 1), ('show', 1), ('possible', 1), ('discover', 1), ('way', 1), ('push', 1), ('creative', 1), ('ambition', 1), ('forward', 1), ('create', 1)]
[('io', 4), ('component', 2), ('framework', 2), ('take', 1), ('next', 1), ('leap', 1), ('forward', 1), ('app', 1), ('developer', 1), ('cover', 1), ('xcode', 1), ('nbsp', 1), ('help', 1), ('leverage', 1), ('powerful', 1), ('build', 1), ('apps', 1), ('outstanding', 1), ('performance', 1), ('reliability', 1)]
[('ipad', 4), ('step', 2), ('cover', 1), ('io', 1), ('air', 1), ('rd', 1), ('th', 1), ('generation', 1), ('mini', 1), ('easy', 1), ('clear', 1), ('readable', 1), ('focused', 1), ('want', 1), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('large', 1), ('full', 1), ('color', 1), ('close', 1)]
[('step', 2), ('easy', 1), ('clear', 1), ('readable', 1), ('focused', 1), ('want', 1), ('instruction', 1), ('task', 1), ('care', 1), ('large', 1), ('full', 1), ('color', 1), ('close', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('common', 1), ('sense', 1), ('help', 1), ('whenever', 1), ('run', 1), ('problem', 1), ('tip', 1)]
[('android', 3), ('straightforward', 1), ('guide', 1), ('programming', 1), ('expert', 1), ('chris', 1), ('haseman', 1), ('kevin', 1), ('grant', 1), ('show', 1), ('use', 1), ('powerful', 1), ('set', 1), ('tool', 1), ('begin', 1), ('writing', 1), ('next', 1), ('generation', 1), ('application', 1), ('tour', 1), ('install', 1)]
[('note', 4), ('samsung', 3), ('galaxy', 3), ('step', 2), ('help', 2), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1)]
[('using', 2), ('full', 1), ('color', 1), ('figure', 1), ('code', 1), ('appear', 1), ('xcode', 1), ('session', 1), ('hour', 1), ('le', 1), ('master', 1), ('objective', 1), ('language', 1), ('start', 1), ('write', 1), ('powerful', 1), ('native', 1), ('application', 1), ('even', 1), ('newest', 1), ('mac', 1), ('io', 1), ('device', 1)]
[('excel', 3), ('data', 3), ('microsoft', 2), ('powerpivot', 2), ('give', 2), ('meaning', 2), ('introduces', 1), ('power', 1), ('user', 1), ('analyst', 1), ('want', 1), ('creating', 1), ('business', 1), ('intelligence', 1), ('model', 1)]
[('apply', 1), ('best', 1), ('practice', 1), ('automating', 1), ('system', 1), ('administration', 1), ('window', 1), ('powershell', 1), ('optimize', 1), ('operational', 1), ('efficiency', 1), ('result', 1), ('guide', 1), ('capture', 1), ('field', 1), ('tested', 1), ('tip', 1), ('real', 1), ('world', 1), ('lesson', 1), ('candid', 1), ('advice', 1), ('practitioner', 1), ('across', 1)]
[('web', 3), ('step', 3), ('teach', 1), ('fundamental', 1), ('development', 1), ('asp', 1), ('net', 1), ('time', 1), ('guidance', 1), ('learn', 1), ('example', 1), ('need', 1), ('start', 1), ('building', 1), ('application', 1), ('service', 1), ('microsoft', 1), ('visual', 1)]
[('group', 4), ('policy', 4), ('window', 2), ('directory', 2), ('depth', 1), ('information', 1), ('need', 1), ('use', 1), ('administer', 1), ('server', 1), ('vista', 1), ('direct', 1), ('leading', 1), ('mvp', 1), ('microsoft', 1), ('team', 1), ('active', 1), ('service', 1)]
[('designed', 1), ('help', 1), ('enterprise', 1), ('administrator', 1), ('develop', 1), ('real', 1), ('world', 1), ('job', 1), ('role', 1), ('specific', 1), ('skill', 1), ('training', 1), ('guide', 1), ('focus', 1), ('deploying', 1), ('managing', 1), ('window', 1), ('server', 1), ('build', 1), ('hand', 1), ('expertise', 1), ('series', 1), ('lesson', 1), ('exercise', 1), ('suggested', 1)]
[('jolie', 2), ('lara', 2), ('thought', 1), ('angelina', 1), ('responsible', 1), ('croft', 1), ('curve', 1), ('think', 1), ('long', 1), ('hollywood', 1), ('actress', 1), ('brought', 1), ('tomb', 1), ('raider', 1), ('heroine', 1), ('life', 1), ('alias', 1), ('modeling', 1), ('software', 1), ('maya', 1), ('used', 1), ('create', 1), ('lovely', 1), ('m', 1), ('simply', 1)]
[('apple', 3), ('device', 2), ('managing', 1), ('second', 1), ('edition', 1), ('enable', 1), ('create', 1), ('effective', 1), ('plan', 1), ('deploying', 1), ('maintaining', 1), ('group', 1), ('using', 1), ('io', 1), ('o', 1), ('yosemite', 1), ('organization', 1), ('resource', 1), ('teach', 1), ('wide', 1), ('variety', 1)]
[('build', 2), ('apps', 2), ('android', 2), ('step', 2), ('session', 1), ('hour', 1), ('le', 1), ('learn', 1), ('powerful', 1), ('world', 1), ('popular', 1), ('mobile', 1), ('platform', 1), ('using', 1), ('book', 1), ('straightforward', 1), ('approach', 1), ('complete', 1), ('ground', 1)]
[('android', 3), ('phone', 2), ('step', 2), ('considering', 1), ('new', 1), ('smartphone', 1), ('companion', 1), ('full', 1), ('color', 1), ('task', 1), ('walk', 1), ('getting', 1), ('keeping', 1), ('lollipop', 1), ('working', 1), ('way', 1), ('want', 1), ('learn', 1)]
[('nbsp', 3), ('step', 2), ('apple', 2), ('watch', 2), ('help', 2), ('instruction', 1), ('callouts', 1), ('screenshots', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1), ('full', 1), ('color', 1)]
[('easy', 2), ('computer', 2), ('full', 1), ('color', 1), ('see', 1), ('done', 1), ('basic', 1), ('window', 1), ('edition', 1), ('teach', 1), ('fundamental', 1), ('help', 1), ('hardware', 1), ('software', 1), ('fully', 1), ('illustrated', 1), ('step', 1), ('simple', 1), ('instruction', 1)]
[('sql', 3), ('database', 2), ('master', 1), ('design', 1), ('development', 1), ('administration', 1), ('easy', 1), ('way', 1), ('hand', 1), ('nbsp', 1), ('hour', 1), ('day', 1), ('build', 1), ('skill', 1), ('need', 1), ('create', 1), ('effective', 1), ('application', 1), ('server', 1), ('complete', 1)]
[('note', 3), ('nbsp', 3), ('step', 2), ('samsung', 2), ('galaxy', 2), ('help', 2), ('instruction', 1), ('callouts', 1), ('image', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1)]
[('apps', 3), ('watchkit', 2), ('building', 2), ('quickly', 1), ('started', 1), ('creating', 1), ('essential', 1), ('beginner', 1), ('guide', 1), ('apple', 1), ('watch', 1), ('book', 1), ('coauthor', 1), ('mark', 1), ('goody', 1), ('maurice', 1), ('kelly', 1), ('introduce', 1), ('technical', 1), ('aspect', 1), ('show', 1)]
[('flip', 3), ('minohd', 2), ('camcorder', 2), ('mino', 1), ('best', 1), ('selling', 1), ('family', 1), ('affordable', 1), ('simple', 1), ('use', 1), ('digital', 1), ('launch', 1), ('video', 1), ('sold', 1), ('million', 1), ('world', 1), ('smallest', 1), ('high', 1), ('definition', 1)]
[('day', 2), ('portable', 1), ('precise', 1), ('pocket', 1), ('sized', 1), ('guide', 1), ('delivers', 1), ('immediate', 1), ('answer', 1), ('administration', 1), ('window', 1), ('desktop', 1), ('configuration', 1), ('management', 1), ('networking', 1), ('security', 1), ('issue', 1), ('zero', 1), ('core', 1), ('support', 1), ('maintenance', 1), ('task', 1)]
[('window', 2), ('fast', 1), ('fact', 1), ('make', 1), ('learning', 1), ('plain', 1), ('simple', 1), ('nonsense', 1), ('guide', 1), ('us', 1), ('easy', 1), ('numbered', 1), ('step', 1), ('concise', 1), ('straightforward', 1), ('language', 1), ('show', 1), ('expedient', 1), ('way', 1), ('perform', 1), ('task', 1), ('solve', 1), ('problem', 1)]
[('tackle', 1), ('toughest', 1), ('set', 1), ('based', 1), ('querying', 1), ('query', 1), ('tuning', 1), ('problem', 1), ('guided', 1), ('author', 1), ('team', 1), ('depth', 1), ('inside', 1), ('knowledge', 1), ('sql', 1), ('deepen', 1), ('understanding', 1), ('architecture', 1), ('internals', 1), ('gain', 1), ('practical', 1), ('approach', 1), ('advanced', 1), ('technique', 1)]
[('dismantle', 1), ('overwhelming', 1), ('complexity', 1), ('project', 1), ('strategy', 1), ('real', 1), ('world', 1), ('example', 1), ('leading', 1), ('expert', 1), ('enterprise', 1), ('architecture', 1), ('guide', 1), ('describes', 1), ('best', 1), ('practice', 1), ('creating', 1), ('efficient', 1), ('organization', 1), ('consistently', 1)]
[('software', 2), ('project', 2), ('learn', 1), ('best', 1), ('practice', 1), ('development', 1), ('management', 1), ('lead', 1), ('team', 1), ('success', 1), ('dr', 1), ('lawrence', 1), ('peter', 1), ('industry', 1), ('recognized', 1), ('expert', 1), ('decade', 1), ('experience', 1), ('conducting', 1), ('research', 1), ('leading', 1), ('real', 1), ('world', 1)]
[('apps', 2), ('end', 2), ('build', 1), ('process', 1), ('tool', 1), ('management', 1), ('tip', 1), ('right', 1), ('foreword', 1), ('kyle', 1), ('richter', 1), ('ceo', 1), ('martiancraft', 1), ('today', 1), ('successful', 1), ('complex', 1), ('software', 1), ('project', 1), ('knock', 1), ('weekend', 1), ('worse', 1), ('many', 1)]
[('service', 3), ('play', 2), ('bundle', 2), ('provider', 1), ('increasingly', 1), ('focused', 1), ('delivering', 1), ('triple', 1), ('incorporate', 1), ('internet', 1), ('video', 1), ('voip', 1), ('multi', 1), ('containing', 1), ('even', 1), ('advanced', 1), ('broadband', 1), ('network', 1), ('architecture', 1), ('first', 1)]
[('user', 2), ('apple', 1), ('training', 1), ('series', 1), ('mac', 1), ('o', 1), ('deployment', 1), ('us', 1), ('combination', 1), ('task', 1), ('based', 1), ('instruction', 1), ('strong', 1), ('visuals', 1), ('teach', 1), ('intermediate', 1), ('advanced', 1), ('deploy', 1), ('wide', 1), ('range', 1), ('file', 1), ('system', 1), ('multiple', 1), ('large', 1)]
[('novell', 3), ('cne', 2), ('study', 2), ('guide', 2), ('studying', 1), ('certification', 1), ('test', 1), ('need', 1), ('netware', 1), ('official', 1), ('effective', 1), ('tool', 1), ('turn', 1), ('passing', 1), ('rate', 1), ('favor', 1), ('loaded', 1)]
[('cle', 2), ('novell', 1), ('certified', 1), ('linux', 1), ('engineer', 1), ('study', 1), ('guide', 1), ('designed', 1), ('prepare', 1), ('challenge', 1), ('current', 1), ('practicum', 1), ('author', 1), ('experience', 1), ('certification', 1), ('trainer', 1), ('system', 1), ('administrator', 1), ('provide', 1), ('real', 1), ('world', 1)]
[('maker', 2), ('music', 2), ('concierge', 1), ('camera', 1), ('flashlight', 1), ('game', 1), ('console', 1), ('magazine', 1), ('photo', 1), ('editor', 1), ('panorama', 1), ('note', 1), ('taker', 1), ('travel', 1), ('planner', 1), ('radio', 1), ('bookstore', 1), ('night', 1), ('sky', 1), ('guide', 1), ('gps', 1), ('player', 1), ('plenty', 1), ('figure', 1)]
[('blog', 2), ('nerdy', 1), ('anymore', 1), ('today', 1), ('seems', 1), ('everyone', 1), ('multinational', 1), ('corporation', 1), ('neighbor', 1), ('street', 1), ('part', 1), ('folk', 1), ('wordpress', 1), ('make', 1), ('easy', 1)]
[('sam', 2), ('teach', 2), ('minute', 2), ('second', 2), ('edition', 2), ('nbsp', 2), ('need', 2), ('linkedin', 1), ('linkedln', 1), ('offer', 1), ('straightforward', 1), ('practical', 1), ('answer', 1), ('fast', 1), ('result', 1), ('learn', 1), ('everything', 1), ('know', 1)]
[('moving', 2), ('mac', 2), ('o', 2), ('held', 1), ('bread', 1), ('butter', 1), ('application', 1), ('made', 1), ('jump', 1), ('thinking', 1), ('tiger', 1), ('book', 1), ('especially', 1), ('geared', 1), ('toward', 1), ('designer', 1), ('become', 1), ('comfortable', 1), ('working', 1)]
[('know', 2), ('founder', 1), ('first', 1), ('desktop', 1), ('publishing', 1), ('company', 1), ('pagelab', 1), ('publisher', 1), ('magazine', 1), ('john', 1), ('mcwade', 1), ('graphic', 1), ('business', 1), ('depth', 1), ('knowledge', 1), ('come', 1), ('every', 1), ('page', 1), ('handsome', 1)]
[('data', 3), ('today', 1), ('virtually', 1), ('every', 1), ('non', 1), ('trivial', 1), ('iphone', 1), ('ipad', 1), ('app', 1), ('manage', 1), ('quickly', 1), ('smoothly', 1), ('reliably', 1), ('minimal', 1), ('impact', 1), ('cpu', 1), ('conserve', 1), ('battery', 1), ('life', 1), ('core', 1), ('apple', 1), ('ready', 1), ('made', 1), ('persistence', 1), ('layer', 1), ('help', 1), ('achieve', 1)]
[('essential', 1), ('extremely', 1), ('written', 1), ('organized', 1), ('fluff', 1), ('guide', 1), ('appeal', 1), ('programmer', 1), ('level', 1), ('experience', 1), ('fully', 1), ('updated', 1), ('edition', 1), ('dive', 1), ('deep', 1), ('new', 1), ('feature', 1), ('revolutionizing', 1)]
[('design', 3), ('designer', 2), ('brazilian', 1), ('fábio', 1), ('sasso', 1), ('wildly', 1), ('popular', 1), ('blog', 1), ('abduzeedo', 1), ('created', 1), ('definitive', 1), ('guide', 1), ('book', 1), ('feature', 1), ('interview', 1), ('offer', 1), ('tutorial', 1), ('various', 1), ('style', 1), ('extension', 1)]
[('kernel', 3), ('debugger', 3), ('linux', 2), ('gnu', 2), ('debugging', 1), ('system', 1), ('discus', 1), ('main', 1), ('tool', 1), ('available', 1), ('today', 1), ('debug', 1), ('start', 1), ('exploring', 1), ('seemingly', 1), ('esoteric', 1), ('operation', 1), ('kdb', 1), ('kgdb', 1), ('plain', 1), ('gdb', 1), ('jtag', 1)]
[('wohl', 2), ('professional', 2), ('apple', 1), ('authorized', 1), ('guide', 1), ('director', 1), ('filmmaker', 1), ('michael', 1), ('teach', 1), ('advanced', 1), ('skill', 1), ('editing', 1), ('need', 1), ('know', 1), ('using', 1), ('broadcast', 1), ('documentary', 1), ('dramatic', 1), ('footage', 1), ('delivers', 1), ('comprehensive', 1), ('course', 1)]
[('nbsp', 3), ('using', 1), ('nook', 1), ('unique', 1), ('resource', 1), ('go', 1), ('beyond', 1), ('manual', 1), ('includes', 1), ('comprehensive', 1), ('information', 1), ('locating', 1), ('third', 1), ('party', 1), ('book', 1), ('specialty', 1), ('topic', 1), ('provides', 1), ('tutorial', 1), ('basic', 1), ('task', 1), ('comprised', 1), ('valuable', 1)]
[('ryan', 2), ('gwt', 2), ('clearly', 1), ('understands', 1), ('value', 1), ('proposition', 1), ('integrates', 1), ('diverse', 1), ('web', 1), ('technology', 1), ('stack', 1), ('theoretical', 1), ('way', 1), ('popularity', 1), ('gpokr', 1), ('kdice', 1), ('speak', 1), ('authority', 1), ('concrete', 1)]
[('software', 2), ('system', 2), ('award', 1), ('winning', 1), ('book', 1), ('substantially', 1), ('updated', 1), ('reflect', 1), ('latest', 1), ('development', 1), ('field', 1), ('introduces', 1), ('concept', 1), ('best', 1), ('practice', 1), ('architecture', 1), ('structured', 1), ('element', 1), ('meant', 1)]
[('mac', 4), ('o', 4), ('server', 2), ('reference', 1), ('provides', 1), ('depth', 1), ('technical', 1), ('information', 1), ('directory', 1), ('service', 1), ('architecture', 1), ('system', 1), ('administrator', 1), ('professional', 1), ('learn', 1), ('detail', 1), ('deploy', 1), ('within', 1)]
[('asterisk', 2), ('pbx', 2), ('cost', 2), ('using', 1), ('open', 1), ('source', 1), ('platform', 1), ('deploy', 1), ('state', 1), ('art', 1), ('voip', 1), ('low', 1), ('pc', 1), ('server', 1), ('fraction', 1), ('conventional', 1), ('system', 1), ('drawback', 1), ('notoriously', 1), ('poor', 1), ('documentation', 1), ('practical', 1)]
[('computer', 2), ('crime', 2), ('digital', 2), ('every', 1), ('leaf', 1), ('track', 1), ('know', 1), ('find', 1), ('book', 1), ('show', 1), ('collect', 1), ('analyze', 1), ('evidence', 1), ('left', 1), ('behind', 1), ('scene', 1), ('always', 1), ('susceptible', 1), ('unwanted', 1), ('intrusion', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('organization', 1), ('size', 1), ('cisco', 1), ('asa', 1), ('product', 1), ('family', 1), ('offer', 1), ('powerful', 1), ('new', 1), ('tool', 1), ('maximizing', 1)]
[('window', 2), ('want', 2), ('step', 2), ('clear', 1), ('friendly', 1), ('visual', 1), ('guide', 1), ('using', 1), ('personalizing', 1), ('focused', 1), ('really', 1), ('nbsp', 1), ('full', 1), ('color', 1), ('task', 1), ('teach', 1), ('find', 1), ('need', 1), ('run', 1), ('medium', 1)]
[('mac', 4), ('o', 4), ('lion', 4), ('depth', 3), ('nbsp', 3), ('beyond', 1), ('basic', 1), ('beneath', 1), ('surface', 1), ('le', 1), ('time', 1), ('comprehensive', 1), ('guide', 1), ('grounded', 1), ('real', 1), ('world', 1), ('advice', 1), ('experience', 1)]
[('macbook', 3), ('step', 2), ('help', 2), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('run', 1), ('o', 1), ('lion', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1), ('nbsp', 1), ('full', 1), ('color', 1)]
[('new', 2), ('element', 2), ('bought', 1), ('dslr', 1), ('taken', 1), ('amazing', 1), ('shot', 1), ('need', 1), ('simple', 1), ('guide', 1), ('processing', 1), ('enhancing', 1), ('image', 1), ('photographer', 1), ('using', 1), ('photoshop', 1), ('including', 1), ('brand', 1), ('book', 1), ('pro', 1)]
[('cmmi', 3), ('acquisition', 3), ('acq', 2), ('describes', 1), ('best', 1), ('practice', 1), ('successful', 1), ('product', 1), ('service', 1), ('providing', 1), ('practical', 1), ('framework', 1), ('improving', 1), ('process', 1), ('address', 1), ('growing', 1), ('trend', 1), ('business', 1), ('government', 1)]
[('opengl', 4), ('mac', 3), ('o', 2), ('fully', 1), ('embraced', 1), ('throughout', 1), ('visual', 1), ('system', 1), ('fact', 1), ('apple', 1), ('highly', 1), ('efficient', 1), ('modern', 1), ('implementation', 1), ('make', 1), ('today', 1), ('best', 1), ('platform', 1), ('development', 1), ('programming', 1), ('first', 1)]
[('itil', 3), ('practical', 1), ('real', 1), ('world', 1), ('configuration', 1), ('management', 1), ('start', 1), ('finish', 1), ('nbsp', 1), ('infrastructure', 1), ('library', 1), ('place', 1), ('best', 1), ('practice', 1), ('operation', 1), ('command', 1), ('help', 1), ('make', 1), ('better', 1), ('technology', 1), ('choice', 1), ('manages', 1)]
[('trusted', 2), ('secure', 2), ('use', 1), ('computing', 1), ('make', 1), ('pc', 1), ('safer', 1), ('reliable', 1), ('nbsp', 1), ('every', 1), ('year', 1), ('computer', 1), ('security', 1), ('threat', 1), ('become', 1), ('severe', 1), ('software', 1), ('alone', 1), ('longer', 1), ('adequately', 1), ('defend', 1), ('needed', 1), ('hardware', 1)]
[('db', 1), ('build', 1), ('world', 1), ('number', 1), ('enterprise', 1), ('database', 1), ('simplify', 1), ('delivery', 1), ('information', 1), ('service', 1), ('accelerate', 1), ('development', 1), ('dramatically', 1), ('improve', 1), ('operational', 1), ('efficiency', 1), ('security', 1), ('resiliency', 1), ('new', 1), ('edition', 1), ('offer', 1)]
[('solaris', 4), ('system', 2), ('o', 2), ('administration', 1), ('essential', 1), ('first', 1), ('book', 1), ('concisely', 1), ('yet', 1), ('comprehensively', 1), ('cover', 1), ('breakthrough', 1), ('feature', 1), ('operating', 1), ('long', 1), ('history', 1), ('innovation', 1)]
[('business', 2), ('soa', 2), ('achieve', 1), ('breakthrough', 1), ('flexibility', 1), ('agility', 1), ('integrating', 1), ('bpm', 1), ('nbsp', 1), ('thousand', 1), ('enterprise', 1), ('adopted', 1), ('service', 1), ('oriented', 1), ('architecture', 1), ('based', 1), ('promise', 1), ('help', 1), ('respond', 1), ('rapidly', 1), ('changing', 1)]
[('book', 2), ('data', 2), ('center', 2), ('comprehensively', 1), ('discus', 1), ('design', 1), ('consideration', 1), ('truly', 1), ('energy', 1), ('efficient', 1), ('scott', 1), ('davis', 1), ('chief', 1), ('architect', 1), ('office', 1), ('cto', 1), ('vmware', 1), ('inc', 1), ('nbsp', 1), ('evangelizing', 1), ('green', 1)]
[('tip', 2), ('secret', 2), ('quarkxpress', 2), ('hottest', 1), ('collection', 1), ('cool', 1), ('hidden', 1), ('pro', 1), ('need', 1), ('result', 1), ('fast', 1), ('packed', 1), ('nothing', 1), ('sidebar', 1), ('user', 1), ('want', 1), ('learning', 1), ('productivity', 1), ('enhancing', 1), ('even', 1), ('lot', 1)]
[('finally', 1), ('photoshop', 1), ('book', 1), ('written', 1), ('expressly', 1), ('professional', 1), ('photographer', 1), ('end', 1), ('serious', 1), ('amateur', 1), ('talk', 1), ('stop', 1), ('exposure', 1), ('frame', 1), ('shot', 1), ('know', 1), ('stuff', 1), ('already', 1), ('hate', 1), ('say', 1)]
[('photoshop', 3), ('tip', 2), ('book', 2), ('scott', 1), ('kelby', 1), ('felix', 1), ('nelson', 1), ('creative', 1), ('team', 1), ('behind', 1), ('user', 1), ('magazine', 1), ('take', 1), ('best', 1), ('selling', 1), ('killer', 1), ('whole', 1), ('new', 1), ('level', 1), ('update', 1), ('c', 1), ('nbsp', 1), ('okay', 1), ('nothing', 1)]
[('facebook', 3), ('kid', 2), ('grown', 2), ('started', 1), ('social', 1), ('network', 1), ('high', 1), ('school', 1), ('college', 1), ('ups', 1), ('getting', 1), ('connected', 1), ('even', 1), ('use', 1), ('differently', 1), ('looking', 1), ('join', 1)]
[('xbox', 3), ('quick', 1), ('visual', 1), ('stop', 1), ('tutorial', 1), ('everyone', 1), ('want', 1), ('maximum', 1), ('fun', 1), ('entertainment', 1), ('live', 1), ('kinect', 1), ('controller', 1), ('gaming', 1), ('expert', 1), ('christina', 1), ('bill', 1), ('loguidice', 1), ('cover', 1), ('everything', 1), ('offer', 1)]
[('sam', 2), ('teach', 2), ('facebook', 2), ('minute', 2), ('third', 2), ('edition', 2), ('nbsp', 2), ('sherry', 1), ('kinkoph', 1), ('gunter', 1), ('offer', 1), ('straightforward', 1), ('practical', 1), ('answer', 1), ('need', 1), ('fast', 1), ('result', 1), ('working', 1)]
[('need', 2), ('result', 2), ('sam', 1), ('teach', 1), ('linkedln', 1), ('minute', 1), ('third', 1), ('edition', 1), ('offer', 1), ('straightforward', 1), ('practical', 1), ('answer', 1), ('fast', 1), ('learn', 1), ('everything', 1), ('know', 1), ('quickly', 1), ('easily', 1), ('generate', 1), ('solid', 1), ('linkedin', 1), ('tip', 1), ('point', 1), ('shortcut', 1)]
[('hour', 2), ('xcode', 2), ('new', 2), ('session', 1), ('le', 1), ('sam', 1), ('teach', 1), ('help', 1), ('achieve', 1), ('breakthrough', 1), ('productivity', 1), ('apple', 1), ('development', 1), ('environment', 1), ('o', 1), ('io', 1), ('device', 1), ('every', 1), ('lesson', 1), ('introduces', 1), ('concept', 1)]
[('false', 3), ('mobile', 3), ('jquery', 2), ('normal', 1), ('microsoftinternetexplorer', 1), ('quickly', 1), ('start', 1), ('using', 1), ('html', 1), ('cs', 1), ('javascript', 1), ('make', 1), ('easy', 1), ('developer', 1), ('add', 1), ('native', 1), ('functionality', 1), ('site', 1), ('application', 1)]
[('make', 1), ('new', 1), ('o', 1), ('mountain', 1), ('lion', 1), ('notebook', 1), ('desktop', 1), ('computer', 1), ('without', 1), ('becoming', 1), ('technical', 1), ('expert', 1), ('book', 1), ('fastest', 1), ('way', 1), ('comfortable', 1), ('productive', 1), ('online', 1), ('connect', 1), ('friend', 1), ('family', 1), ('explore', 1), ('web', 1), ('enjoy', 1)]
[('iphone', 3), ('new', 1), ('apple', 1), ('user', 1), ('want', 1), ('start', 1), ('using', 1), ('device', 1), ('soon', 1), ('hand', 1), ('pocket', 1), ('guide', 1), ('show', 1), ('trusted', 1), ('gadget', 1), ('teacher', 1), ('christopher', 1), ('breen', 1), ('reveals', 1), ('quickest', 1), ('way', 1), ('learn', 1), ('feature', 1)]
[('surface', 4), ('nbsp', 2), ('step', 2), ('help', 2), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1), ('full', 1), ('color', 1)]
[('nook', 5), ('hd', 2), ('make', 1), ('amp', 1), ('including', 1), ('simple', 1), ('touch', 1), ('glowlight', 1), ('reading', 1), ('apps', 1), ('book', 1), ('play', 1), ('medium', 1), ('free', 1), ('content', 1), ('uncover', 1), ('powerful', 1), ('little', 1), ('known', 1), ('feature', 1), ('love', 1)]
[('ipod', 3), ('touch', 3), ('th', 2), ('step', 2), ('help', 2), ('cover', 1), ('generation', 1), ('running', 1), ('io', 1), ('instruction', 1), ('callouts', 1), ('photo', 1), ('see', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('ipad', 4), ('mini', 2), ('iphone', 2), ('use', 2), ('easily', 1), ('unlock', 1), ('power', 1), ('discover', 1), ('hundred', 1), ('tip', 1), ('trick', 1), ('right', 1), ('away', 1), ('maximize', 1), ('functionality', 1), ('learn', 1), ('io', 1), ('mobile', 1), ('device', 1), ('powerful', 1)]
[('imac', 3), ('step', 3), ('full', 2), ('color', 2), ('offer', 1), ('user', 1), ('visual', 1), ('instruction', 1), ('learn', 1), ('o', 1), ('mountain', 1), ('lion', 1), ('using', 1), ('task', 1), ('based', 1), ('format', 1), ('accompanied', 1), ('image', 1), ('see', 1), ('detail', 1), ('move', 1)]
[('make', 2), ('excel', 2), ('without', 1), ('becoming', 1), ('technical', 1), ('expert', 1), ('book', 1), ('fastest', 1), ('way', 1), ('master', 1), ('use', 1), ('build', 1), ('powerful', 1), ('trustworthy', 1), ('easy', 1), ('understand', 1), ('workbook', 1), ('discover', 1), ('hidden', 1), ('pattern', 1), ('better', 1), ('decision', 1), ('visualize', 1), ('data', 1)]
[('demand', 2), ('book', 2), ('step', 2), ('excel', 1), ('built', 1), ('ground', 1), ('today', 1), ('beginning', 1), ('intermediate', 1), ('level', 1), ('exceluser', 1), ('every', 1), ('series', 1), ('teach', 1), ('visually', 1), ('using', 1), ('easy', 1), ('friendly', 1), ('full', 1), ('colour', 1), ('format', 1), ('designed', 1), ('show', 1), ('instead', 1), ('telling', 1), ('combine', 1), ('training', 1)]
[('make', 2), ('new', 1), ('window', 1), ('nbsp', 1), ('notebook', 1), ('desktop', 1), ('computer', 1), ('tablet', 1), ('without', 1), ('becoming', 1), ('technical', 1), ('expert', 1), ('book', 1), ('fastest', 1), ('way', 1), ('comfortable', 1), ('productive', 1), ('online', 1), ('started', 1), ('social', 1), ('networking', 1)]
[('kindle', 3), ('fire', 3), ('hdx', 3), ('step', 2), ('help', 2), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1), ('nbsp', 1), ('full', 1), ('color', 1)]
[('step', 2), ('smart', 1), ('way', 1), ('learn', 1), ('office', 1), ('powerpoint', 1), ('time', 1), ('work', 1), ('pace', 1), ('easy', 1), ('numbered', 1), ('practice', 1), ('file', 1), ('cd', 1), ('helpful', 1), ('hint', 1), ('troubleshooting', 1), ('help', 1), ('master', 1), ('fundamental', 1), ('working', 1), ('latest', 1), ('version', 1)]
[('excel', 2), ('chart', 2), ('extend', 1), ('skill', 1), ('create', 1), ('powerful', 1), ('compelling', 1), ('le', 1), ('time', 1), ('guided', 1), ('expert', 1), ('learn', 1), ('turn', 1), ('flat', 1), ('static', 1), ('dynamic', 1), ('solution', 1), ('visualize', 1), ('manipulate', 1), ('data', 1), ('countless', 1), ('way', 1)]
[('javascript', 3), ('learn', 2), ('start', 2), ('ready', 1), ('fundamental', 1), ('modern', 1), ('programming', 1), ('begin', 1), ('building', 1), ('first', 1), ('apps', 1), ('web', 1), ('previous', 1), ('experience', 1), ('problem', 1), ('simply', 1), ('book', 1)]
[('office', 2), ('expert', 1), ('technique', 1), ('best', 1), ('practice', 1), ('creating', 1), ('professional', 1), ('looking', 1), ('document', 1), ('slide', 1), ('presentation', 1), ('workbook', 1), ('apply', 1), ('skill', 1), ('work', 1), ('microsoft', 1), ('word', 1), ('powerpoint', 1), ('excel', 1), ('mac', 1)]
[('portable', 1), ('precise', 1), ('pocket', 1), ('sized', 1), ('guide', 1), ('delivers', 1), ('ready', 1), ('answer', 1), ('administering', 1), ('window', 1), ('small', 1), ('business', 1), ('server', 1), ('standard', 1), ('zero', 1), ('core', 1), ('support', 1), ('maintenance', 1), ('task', 1), ('using', 1), ('quick', 1), ('reference', 1), ('table', 1), ('instruction', 1), ('list', 1)]
[('configure', 1), ('adapt', 1), ('extend', 1), ('microsoft', 1), ('dynamic', 1), ('crm', 1), ('guided', 1), ('leading', 1), ('implementation', 1), ('specialist', 1), ('field', 1), ('whether', 1), ('professional', 1), ('developer', 1), ('power', 1), ('user', 1), ('pragmatic', 1), ('hand', 1), ('insight', 1), ('customizing', 1)]
[('phone', 3), ('window', 2), ('apps', 2), ('build', 1), ('optimize', 1), ('performance', 1), ('security', 1), ('drill', 1), ('design', 1), ('architecture', 1), ('learn', 1), ('best', 1), ('practice', 1), ('building', 1), ('consumer', 1), ('enterprise', 1), ('written', 1), ('senior', 1), ('member', 1), ('core', 1)]
[('full', 1), ('color', 1), ('visual', 1), ('guide', 1), ('make', 1), ('learning', 1), ('lync', 1), ('plain', 1), ('simple', 1), ('follow', 1), ('book', 1), ('easy', 1), ('step', 1), ('screenshots', 1), ('clear', 1), ('concise', 1), ('language', 1), ('learn', 1), ('simplest', 1), ('way', 1), ('communicate', 1), ('collaborate', 1), ('colleague', 1), ('co', 1), ('worker', 1)]
[('java', 4), ('language', 2), ('written', 1), ('inventor', 1), ('technology', 1), ('specification', 1), ('se', 1), ('edition', 1), ('definitive', 1), ('technical', 1), ('reference', 1), ('programming', 1), ('book', 1), ('provides', 1), ('complete', 1), ('accurate', 1), ('detailed', 1), ('coverage', 1)]
[('creative', 2), ('day', 2), ('completed', 1), ('boot', 1), ('camp', 1), ('training', 1), ('program', 1), ('surviving', 1), ('creativity', 1), ('exercise', 1), ('designed', 1), ('present', 1), ('fun', 1), ('engaging', 1), ('opportunity', 1), ('problem', 1), ('solving', 1), ('practice', 1), ('developed', 1), ('skill', 1), ('use', 1), ('every', 1)]
[('indesign', 3), ('sharpen', 1), ('skill', 1), ('definitive', 1), ('resource', 1), ('created', 1), ('specifically', 1), ('design', 1), ('professional', 1), ('need', 1), ('produce', 1), ('work', 1), ('cc', 1), ('regardless', 1), ('delivery', 1), ('platform', 1), ('best', 1), ('selling', 1), ('author', 1), ('olav', 1), ('martin', 1), ('kvern', 1), ('david', 1), ('blatner', 1), ('bob', 1), ('bringhurst', 1), ('share', 1), ('hand', 1), ('technique', 1), ('help', 1), ('master', 1), ('advanced', 1), ('layout', 1), ('tool', 1)]
[('creative', 3), ('conrad', 2), ('adobe', 2), ('cloud', 2), ('time', 1), ('saving', 1), ('guide', 1), ('design', 1), ('expert', 1), ('chavez', 1), ('provides', 1), ('introduction', 1), ('demonstrates', 1), ('nbsp', 1), ('enhance', 1), ('workflow', 1), ('meet', 1), ('challenge', 1), ('today', 1), ('project', 1)]
[('io', 2), ('core', 2), ('data', 2), ('started', 1), ('fast', 1), ('app', 1), ('developmentcovers', 1), ('xcode', 1), ('first', 1), ('book', 1), ('fully', 1), ('reflect', 1), ('apple', 1), ('latest', 1), ('platform', 1), ('innovation', 1), ('including', 1), ('dramatic', 1), ('nbsp', 1), ('recent', 1), ('improvement', 1), ('icloud', 1), ('support', 1), ('hand', 1)]
[('imac', 2), ('step', 2), ('help', 2), ('cover', 1), ('maverick', 1), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('run', 1), ('hardware', 1), ('operating', 1), ('system', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1)]
[('apple', 2), ('music', 2), ('step', 2), ('completely', 1), ('revised', 1), ('updated', 1), ('logic', 1), ('pro', 1), ('certified', 1), ('guide', 1), ('show', 1), ('record', 1), ('produce', 1), ('polish', 1), ('file', 1), ('professional', 1), ('audio', 1), ('software', 1), ('veteran', 1), ('producer', 1), ('david', 1), ('nahmani', 1), ('instruction', 1), ('teach', 1)]
[('step', 2), ('galaxy', 2), ('edge', 2), ('full', 1), ('color', 1), ('task', 1), ('walk', 1), ('getting', 1), ('keeping', 1), ('samsung', 1), ('working', 1), ('way', 1), ('want', 1), ('learn', 1), ('discover', 1), ('exciting', 1), ('new', 1), ('capability', 1), ('master', 1), ('quickest', 1)]
[('o', 2), ('step', 2), ('filled', 1), ('beginning', 1), ('intermediate', 1), ('task', 1), ('presented', 1), ('thorough', 1), ('format', 1), ('guide', 1), ('learning', 1), ('everything', 1), ('need', 1), ('know', 1), ('use', 1), ('el', 1), ('capitan', 1), ('release', 1), ('goal', 1), ('teach', 1), ('type', 1)]
[('galaxy', 3), ('tab', 3), ('nbsp', 2), ('samsung', 2), ('step', 2), ('friendly', 1), ('quick', 1), ('practical', 1), ('companion', 1), ('every', 1), ('user', 1), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1)]
[('learn', 2), ('social', 2), ('medium', 2), ('facebook', 1), ('twitter', 1), ('instagram', 1), ('linkedin', 1), ('pinterest', 1), ('skype', 1), ('senior', 1), ('help', 1), ('use', 1), ('connect', 1), ('friend', 1), ('family', 1), ('full', 1), ('color', 1), ('book', 1), ('provides', 1)]
[('ipad', 5), ('iphone', 3), ('tip', 2), ('trick', 2), ('nbsp', 2), ('mini', 2), ('easily', 1), ('unlock', 1), ('power', 1), ('discover', 1), ('hundred', 1), ('use', 1), ('right', 1), ('away', 1), ('maximize', 1), ('functionality', 1), ('learn', 1)]
[('book', 2), ('ebook', 1), ('printed', 1), ('include', 1), ('medium', 1), ('website', 1), ('access', 1), ('code', 1), ('print', 1), ('supplement', 1), ('come', 1), ('packaged', 1), ('bound', 1), ('nbsp', 1), ('definitive', 1), ('guide', 1), ('next', 1), ('generation', 1), ('digital', 1), ('measurement', 1), ('indispensable', 1), ('insight', 1)]
[('network', 3), ('technique', 2), ('optimizing', 1), ('large', 1), ('scale', 1), ('ip', 1), ('routing', 1), ('operation', 1), ('managing', 1), ('growth', 1), ('nbsp', 1), ('understand', 1), ('goal', 1), ('scalable', 1), ('design', 1), ('including', 1), ('tradeoff', 1), ('scaling', 1), ('convergence', 1), ('speed', 1), ('resiliency', 1), ('learn', 1), ('basic', 1)]
[('step', 2), ('task', 2), ('iphone', 2), ('full', 1), ('colour', 1), ('walk', 1), ('getting', 1), ('keeping', 1), ('working', 1), ('way', 1), ('want', 1), ('include', 1), ('connect', 1), ('internet', 1), ('bluetooth', 1), ('device', 1), ('wi', 1), ('fi', 1), ('network', 1), ('iphones', 1), ('ipads', 1), ('take', 1), ('advantage', 1), ('airdrop', 1), ('instantly', 1), ('share', 1), ('ipad', 1), ('mac', 1), ('user', 1), ('use', 1), ('siri', 1), ('information', 1), ('write', 1)]
[('ipados', 2), ('want', 2), ('step', 2), ('cover', 1), ('ipads', 1), ('running', 1), ('easy', 1), ('clear', 1), ('readable', 1), ('focused', 1), ('full', 1), ('colour', 1), ('task', 1), ('walk', 1), ('getting', 1), ('keeping', 1), ('ipad', 1), ('working', 1), ('way', 1), ('learn', 1), ('discover', 1), ('new', 1), ('feature', 1), ('wirelessly', 1), ('connect', 1), ('browse', 1), ('internet', 1), ('home', 1), ('away', 1)]
[('nan', 1)]
[('ipad', 2), ('step', 2), ('office', 2), ('help', 2), ('cover', 1), ('excel', 1), ('word', 1), ('powerpoint', 1), ('onenote', 1), ('instruction', 1), ('callouts', 1), ('new', 1), ('screenshots', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1)]
[('video', 3), ('anyone', 1), ('used', 1), ('iphone', 1), ('ipad', 1), ('know', 1), ('powerful', 1), ('camera', 1), ('inside', 1), ('shoot', 1), ('phenomenal', 1), ('hd', 1), ('incredibly', 1), ('easy', 1), ('use', 1), ('simply', 1), ('shooting', 1), ('step', 1), ('visualizing', 1), ('digitizing', 1), ('nbsp', 1)]
[('web', 2), ('application', 2), ('rethink', 1), ('way', 1), ('plan', 1), ('design', 1), ('build', 1), ('expert', 1), ('guidance', 1), ('development', 1), ('luminary', 1), ('dino', 1), ('esposito', 1), ('whether', 1), ('giving', 1), ('legacy', 1), ('site', 1), ('needed', 1), ('tune', 1), ('architecting', 1), ('rich', 1), ('internet', 1), ('ground', 1)]
[('android', 3), ('step', 2), ('tablet', 2), ('full', 1), ('color', 1), ('task', 1), ('walk', 1), ('getting', 1), ('keeping', 1), ('working', 1), ('way', 1), ('want', 1), ('learn', 1), ('take', 1), ('advantage', 1), ('new', 1), ('lollipop', 1), ('feature', 1), ('quickly', 1), ('set', 1), ('google', 1)]
[('phone', 4), ('fire', 3), ('amazon', 2), ('step', 2), ('comprehensive', 1), ('stop', 1), ('guide', 1), ('new', 1), ('integrated', 1), ('ecosystem', 1), ('tablet', 1), ('full', 1), ('color', 1), ('task', 1), ('walk', 1), ('getting', 1), ('keeping', 1), ('working', 1), ('way', 1)]
[('samsung', 2), ('galaxy', 2), ('note', 2), ('day', 2), ('step', 2), ('nbsp', 1), ('help', 1), ('quickly', 1), ('started', 1), ('use', 1), ('feature', 1), ('perform', 1), ('activity', 1), ('anywhere', 1), ('time', 1), ('full', 1), ('color', 1), ('task', 1), ('walk', 1), ('getting', 1), ('keeping', 1)]
[('hero', 5), ('gopro', 2), ('camera', 2), ('step', 2), ('cover', 1), ('model', 1), ('including', 1), ('february', 1), ('software', 1), ('update', 1), ('instruction', 1), ('callouts', 1), ('photo', 1), ('sample', 1), ('image', 1), ('show', 1), ('exactly', 1), ('help', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('agile', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('company', 1), ('implementing', 1), ('large', 1), ('project', 1), ('number', 1), ('year', 1), ('stigma', 1)]
[('page', 5), ('avoid', 1), ('error', 1), ('trojan', 1), ('horse', 1), ('attack', 1), ('real', 1), ('look', 1), ('application', 1), ('handle', 1), ('workload', 1), ('detect', 1), ('memory', 1), ('leak', 1), ('target', 1)]
[('sap', 2), ('better', 2), ('help', 1), ('capture', 1), ('information', 1), ('deliver', 1), ('quickly', 1), ('allowing', 1), ('make', 1), ('decision', 1), ('maximize', 1), ('business', 1), ('value', 1), ('everything', 1), ('implementation', 1), ('require', 1), ('massive', 1), ('effort', 1), ('total', 1), ('buy', 1), ('significant', 1)]
[('kindle', 4), ('using', 2), ('introducing', 1), ('third', 1), ('edition', 1), ('meticulously', 1), ('researched', 1), ('painstakingly', 1), ('written', 1), ('resource', 1), ('live', 1), ('without', 1), ('thorough', 1), ('guide', 1), ('covering', 1), ('aspect', 1), ('including', 1), ('work', 1)]
[('learn', 2), ('social', 2), ('medium', 2), ('facebook', 1), ('twitter', 1), ('instagram', 1), ('linkedin', 1), ('pinterest', 1), ('skype', 1), ('senior', 1), ('help', 1), ('use', 1), ('connect', 1), ('friend', 1), ('family', 1), ('full', 1), ('color', 1), ('book', 1), ('provides', 1)]
[('siri', 1), ('apple', 1), ('recent', 1), ('development', 1), ('iphone', 1), ('take', 1), ('voice', 1), ('command', 1), ('point', 1), ('previously', 1), ('reached', 1), ('ability', 1), ('understand', 1), ('natural', 1), ('spoken', 1), ('word', 1), ('interpret', 1), ('meaningful', 1), ('task', 1), ('meeting', 1), ('request', 1), ('calendar', 1)]
[('switch', 3), ('ethernet', 2), ('protocol', 2), ('contrary', 1), ('popular', 1), ('belief', 1), ('inherently', 1), ('secure', 1), ('security', 1), ('vulnerability', 1), ('multiple', 1), ('implementation', 1), ('control', 1), ('plane', 1), ('spanning', 1), ('tree', 1), ('stp', 1), ('cisco', 1), ('discovery', 1)]
[('ip', 2), ('telephony', 1), ('revolutionized', 1), ('many', 1), ('aspect', 1), ('telecommunication', 1), ('continues', 1), ('deployed', 1), ('rapid', 1), ('pace', 1), ('benefit', 1), ('transporting', 1), ('voice', 1), ('infrastructure', 1), ('include', 1), ('increased', 1), ('flexibility', 1), ('better', 1), ('scalability', 1), ('significant', 1)]
[('troubleshooting', 2), ('ideal', 1), ('professional', 1), ('designing', 1), ('implementing', 1), ('enterprise', 1), ('dial', 1), ('service', 1), ('provider', 1), ('network', 1), ('eigrp', 1), ('learn', 1), ('design', 1), ('scenario', 1), ('based', 1), ('real', 1), ('world', 1), ('experience', 1), ('use', 1), ('protocol', 1), ('family', 1)]
[('beyond', 1), ('basic', 1), ('dive', 1), ('right', 1), ('really', 1), ('put', 1), ('pc', 1), ('work', 1), ('supremely', 1), ('organized', 1), ('reference', 1), ('pack', 1), ('hundred', 1), ('timesaving', 1), ('solution', 1), ('troubleshooting', 1), ('tip', 1), ('workarounds', 1), ('window', 1), ('plus', 1), ('access', 1), ('half', 1)]
[('firewall', 3), ('policy', 2), ('network', 2), ('deploying', 1), ('zone', 1), ('based', 1), ('digital', 1), ('short', 1), ('cut', 1), ('ivan', 1), ('pepelnjak', 1), ('isbn', 1), ('nbsp', 1), ('improved', 1), ('configuration', 1), ('mean', 1), ('administrator', 1), ('easily', 1), ('understand', 1), ('effect', 1), ('traffic', 1)]
[('nan', 1)]
[('network', 2), ('security', 2), ('problem', 2), ('identify', 1), ('analyze', 1), ('resolve', 1), ('current', 1), ('potential', 1), ('nbsp', 1), ('learn', 1), ('diagnostic', 1), ('command', 1), ('common', 1), ('resolution', 1), ('best', 1), ('practice', 1), ('case', 1), ('study', 1), ('covering', 1), ('wide', 1), ('array', 1), ('cisco', 1), ('troubleshooting', 1)]
[('network', 2), ('infrastructure', 2), ('security', 2), ('practical', 1), ('guide', 1), ('creating', 1), ('secure', 1), ('understand', 1), ('basic', 1), ('cryptography', 1), ('technology', 1), ('identify', 1), ('threat', 1), ('common', 1), ('attack', 1), ('learn', 1), ('create', 1), ('policy', 1), ('find', 1)]
[('end', 2), ('qos', 2), ('congestion', 2), ('deployment', 1), ('technique', 1), ('cisco', 1), ('catalyst', 1), ('series', 1), ('switch', 1), ('examine', 1), ('various', 1), ('component', 1), ('including', 1), ('management', 1), ('avoidance', 1), ('shaping', 1), ('policing', 1), ('admission', 1), ('control', 1), ('signaling', 1), ('link', 1), ('efficiency', 1), ('mechanism', 1)]
[('nbsp', 4), ('edition', 2), ('isbn', 2), ('voice', 2), ('ip', 2), ('new', 1), ('title', 1), ('available', 1), ('foundation', 1), ('learning', 1), ('ccvp', 1), ('kevin', 1), ('wallace', 1), ('ccie', 1), ('cisco', 1), ('second', 1)]
[('cisco', 2), ('attack', 2), ('protect', 1), ('critical', 1), ('data', 1), ('maintain', 1), ('uptime', 1), ('asdm', 1), ('security', 1), ('agent', 1), ('nbsp', 1), ('understand', 1), ('impact', 1), ('business', 1), ('different', 1), ('way', 1), ('occur', 1), ('learn', 1), ('defense', 1), ('depth', 1), ('model', 1), ('deploying', 1), ('firewall', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('cisco', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('learn', 1), ('real', 1), ('world', 1), ('voice', 1), ('ip', 1), ('deployment', 1), ('solution', 1), ('strategy', 1), ('expert', 1), ('deploying', 1)]
[('routing', 4), ('first', 2), ('step', 2), ('easily', 2), ('world', 1), ('experience', 1), ('required', 1), ('includes', 1), ('clear', 1), ('understood', 1), ('explanation', 1), ('make', 1), ('learning', 1), ('easy', 1), ('understanding', 1), ('begin', 1), ('learn', 1), ('basic', 1), ('simply', 1)]
[('routing', 2), ('scenario', 2), ('industry', 1), ('leading', 1), ('resource', 1), ('internet', 1), ('solution', 1), ('explore', 1), ('function', 1), ('attribute', 1), ('application', 1), ('bgp', 1), ('de', 1), ('facto', 1), ('interdomain', 1), ('protocol', 1), ('practical', 1), ('configuration', 1), ('example', 1)]
[('access', 3), ('cloud', 3), ('web', 2), ('apps', 2), ('database', 2), ('guide', 2), ('build', 1), ('new', 1), ('migrate', 1), ('desktop', 1), ('complete', 1), ('practical', 1), ('creating', 1), ('microsoft', 1), ('migrating', 1), ('existing', 1), ('mvp', 1), ('andrew', 1), ('couch', 1)]
[('nbsp', 1), ('thomas', 1), ('donlan', 1), ('defense', 1), ('free', 1), ('market', 1), ('capitalism', 1), ('especially', 1), ('timely', 1), ('today', 1), ('given', 1), ('pressure', 1), ('regulate', 1), ('stifle', 1), ('anti', 1), ('globalization', 1), ('movement', 1), ('want', 1), ('trade', 1), ('protectionism', 1), ('le', 1), ('immigration', 1), ('global', 1), ('credit', 1), ('crisis', 1)]
[('bi', 2), ('sql', 2), ('server', 2), ('design', 1), ('build', 1), ('manage', 1), ('high', 1), ('value', 1), ('solution', 1), ('nbsp', 1), ('book', 1), ('microsoft', 1), ('leading', 1), ('consultant', 1), ('illustrate', 1), ('use', 1), ('business', 1), ('intelligence', 1), ('technology', 1), ('solve', 1), ('real', 1), ('world', 1), ('problem', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('enterprise', 1), ('java', 1), ('developer', 1), ('achieve', 1), ('broader', 1), ('deeper', 1), ('test', 1), ('coverage', 1), ('going', 1), ('beyond', 1), ('unit', 1), ('testing', 1)]
[('writing', 2), ('artist', 2), ('designer', 2), ('visual', 2), ('challenge', 1), ('especially', 1), ('tend', 1), ('verbal', 1), ('thinker', 1), ('guide', 1), ('designed', 1), ('help', 1), ('think', 1), ('picture', 1), ('segment', 1), ('learner', 1)]
[('visual', 2), ('studio', 2), ('tool', 2), ('vsto', 2), ('office', 1), ('first', 1), ('definitive', 1), ('book', 1), ('programming', 1), ('written', 1), ('inventor', 1), ('technology', 1), ('set', 1), ('allows', 1), ('professional', 1), ('developer', 1), ('use', 1), ('full', 1), ('power', 1), ('net', 1)]
[('graph', 2), ('library', 2), ('boost', 1), ('bgl', 1), ('first', 1), ('apply', 1), ('principle', 1), ('generic', 1), ('programming', 1), ('construction', 1), ('advanced', 1), ('data', 1), ('structure', 1), ('algorithm', 1), ('used', 1), ('computation', 1), ('problem', 1), ('diverse', 1), ('area', 1), ('internet', 1), ('packet', 1)]
[('nan', 1)]
[('nan', 1)]
[('governing', 2), ('shared', 2), ('service', 2), ('soa', 2), ('project', 2), ('definitive', 1), ('guide', 1), ('nbsp', 1), ('governance', 1), ('premise', 1), ('cloud', 1), ('result', 1), ('multi', 1), ('year', 1), ('collect', 1), ('proven', 1), ('industry', 1), ('practice', 1), ('establishing', 1)]
[('motion', 3), ('designed', 1), ('desktop', 1), ('companion', 1), ('editor', 1), ('graphic', 1), ('pro', 1), ('perfect', 1), ('glance', 1), ('guide', 1), ('master', 1), ('trainer', 1), ('jem', 1), ('schofield', 1), ('delivers', 1), ('crash', 1), ('course', 1), ('think', 1), ('group', 1), ('layer', 1), ('object', 1), ('behavior', 1), ('based', 1)]
[('nbsp', 5), ('ebook', 2), ('version', 2), ('book', 2), ('win', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('master', 1), ('technique', 1), ('managing', 1), ('outsourced', 1), ('offshore', 1), ('project', 1)]
[('domain', 2), ('dsl', 2), ('problem', 2), ('software', 1), ('practitioner', 1), ('rapidly', 1), ('discovering', 1), ('immense', 1), ('value', 1), ('specific', 1), ('language', 1), ('solving', 1), ('within', 1), ('clearly', 1), ('definable', 1), ('developer', 1), ('applying', 1), ('improve', 1), ('productivity', 1), ('quality', 1), ('wide', 1), ('range', 1)]
[('software', 2), ('development', 1), ('group', 1), ('embarrassing', 1), ('record', 1), ('account', 1), ('half', 1), ('project', 1), ('significantly', 1), ('late', 1), ('budget', 1), ('nearly', 1), ('quarter', 1), ('cancelled', 1), ('without', 1), ('completed', 1), ('although', 1)]
[('qt', 3), ('master', 2), ('way', 2), ('design', 2), ('pattern', 2), ('efficient', 2), ('reuse', 2), ('modern', 1), ('fully', 1), ('updated', 1), ('classroom', 1), ('tested', 1), ('book', 1), ('teach', 1), ('emphasizing', 1), ('reader', 1), ('language', 1)]
[('ipad', 5), ('step', 4), ('kid', 3), ('help', 1), ('rd', 1), ('th', 1), ('generation', 1), ('mini', 1), ('running', 1), ('io', 1), ('using', 1), ('full', 1), ('color', 1), ('task', 1), ('walk', 1), ('learning', 1), ('use', 1)]
[('project', 3), ('final', 2), ('stage', 2), ('software', 2), ('development', 2), ('digital', 1), ('version', 1), ('printed', 1), ('book', 1), ('copyright', 1), ('take', 1), ('control', 1), ('nbsp', 1), ('lost', 1), ('endgame', 1)]
[('unified', 3), ('nbsp', 3), ('cisco', 2), ('customer', 2), ('voice', 2), ('portal', 2), ('contact', 2), ('center', 2), ('building', 1), ('rue', 1), ('green', 1), ('ccie', 1), ('definitive', 1), ('guide', 1), ('deploying', 1), ('ivrs', 1), ('environment', 1), ('thousand', 1), ('company', 1)]
[('vmware', 3), ('view', 2), ('desktop', 2), ('nbsp', 1), ('deliver', 1), ('high', 1), ('value', 1), ('virtual', 1), ('infrastructure', 1), ('superior', 1), ('user', 1), ('experience', 1), ('company', 1), ('already', 1), ('realized', 1), ('benefit', 1), ('server', 1), ('virtualization', 1), ('discovering', 1), ('offer', 1)]
[('tuning', 2), ('application', 2), ('definitive', 1), ('solution', 1), ('oriented', 1), ('guide', 1), ('ibm', 1), ('db', 1), ('o', 1), ('fully', 1), ('updated', 1), ('largest', 1), ('database', 1), ('performance', 1), ('gain', 1), ('often', 1), ('obtained', 1), ('code', 1), ('use', 1), ('sql', 1), ('retrieve', 1)]
[('identity', 2), ('hand', 1), ('guidance', 1), ('designed', 1), ('help', 1), ('put', 1), ('newest', 1), ('net', 1), ('framework', 1), ('component', 1), ('window', 1), ('foundation', 1), ('access', 1), ('logic', 1), ('premise', 1), ('cloud', 1), ('development', 1), ('work', 1)]
[('help', 2), ('samsung', 2), ('galaxy', 2), ('day', 2), ('perfect', 1), ('book', 1), ('anyone', 1), ('learn', 1), ('full', 1), ('colour', 1), ('senior', 1), ('quickly', 1), ('easily', 1), ('started', 1), ('new', 1), ('smartphone', 1), ('use', 1), ('feature', 1), ('look', 1), ('information', 1), ('perform', 1), ('activity', 1), ('anywhere', 1), ('time', 1), ('veteran', 1), ('author', 1), ('michael', 1), ('miller', 1), ('written', 1)]
[('step', 2), ('digital', 1), ('travel', 1), ('senior', 1), ('nbsp', 1), ('easy', 1), ('clear', 1), ('readable', 1), ('focused', 1), ('want', 1), ('instruction', 1), ('task', 1), ('care', 1), ('large', 1), ('full', 1), ('color', 1), ('close', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('common', 1), ('sense', 1), ('help', 1)]
[('logic', 3), ('pro', 2), ('alchemy', 2), ('introduced', 1), ('join', 1), ('upper', 1), ('echelon', 1), ('sound', 1), ('design', 1), ('tool', 1), ('offered', 1), ('filling', 1), ('gap', 1), ('sampling', 1), ('synthesis', 1), ('uniquely', 1), ('positioned', 1), ('providing', 1), ('user', 1), ('novel', 1), ('way', 1), ('create', 1)]
[('learn', 2), ('microsoft', 2), ('office', 2), ('simplest', 1), ('way', 1), ('thing', 1), ('done', 1), ('full', 1), ('color', 1), ('visual', 1), ('guide', 1), ('make', 1), ('learning', 1), ('plain', 1), ('simple', 1), ('follow', 1), ('book', 1), ('easy', 1), ('step', 1), ('screenshots', 1), ('clear', 1), ('concise', 1), ('language', 1)]
[('nbsp', 8), ('samsung', 2), ('galaxy', 2), ('tab', 2), ('step', 2), ('friendly', 1), ('quick', 1), ('practical', 1), ('companion', 1), ('every', 1), ('user', 1), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1)]
[('web', 3), ('edition', 3), ('design', 2), ('student', 2), ('user', 2), ('adaptive', 1), ('nd', 1), ('show', 1), ('craft', 1), ('interface', 1), ('work', 1), ('every', 1), ('decision', 1), ('make', 1), ('project', 1), ('affect', 1), ('end', 1), ('go', 1), ('beyond', 1), ('first', 1), ('frame', 1), ('even', 1), ('process', 1), ('lens', 1), ('progressive', 1), ('enhancement', 1), ('learn', 1), ('content', 1)]
[('nbsp', 2), ('step', 2), ('photo', 2), ('easy', 1), ('clear', 1), ('readable', 1), ('focused', 1), ('want', 1), ('instruction', 1), ('task', 1), ('care', 1), ('large', 1), ('full', 1), ('color', 1), ('close', 1), ('callouts', 1), ('iphone', 1), ('show', 1), ('exactly', 1), ('common', 1), ('sense', 1)]
[('ubuntu', 3), ('linux', 3), ('discover', 1), ('today', 1), ('hottest', 1), ('everyone', 1), ('talking', 1), ('free', 1), ('useful', 1), ('practical', 1), ('desktop', 1), ('expert', 1), ('marcel', 1), ('gagné', 1), ('reveals', 1), ('amazing', 1), ('power', 1), ('help', 1), ('migrate', 1), ('window', 1)]
[('ipad', 6), ('false', 3), ('io', 2), ('mini', 2), ('none', 2), ('step', 2), ('cover', 1), ('rd', 1), ('th', 1), ('generation', 1), ('normal', 1), ('en', 1), ('offer', 1), ('full', 1), ('color', 1), ('fully', 1), ('illustrated', 1), ('resource', 1), ('anyone', 1), ('using', 1), ('running', 1)]
[('ibm', 2), ('data', 2), ('easy', 1), ('visual', 1), ('introduction', 1), ('db', 1), ('version', 1), ('linux', 1), ('unix', 1), ('window', 1), ('foreword', 1), ('judy', 1), ('huber', 1), ('vice', 1), ('president', 1), ('distributed', 1), ('server', 1), ('warehousing', 1), ('director', 1), ('canada', 1), ('laboratory', 1), ('book', 1), ('cover', 1), ('everything', 1), ('need', 1)]
[('window', 3), ('modern', 3), ('new', 2), ('apps', 2), ('interface', 1), ('full', 1), ('screen', 1), ('store', 1), ('find', 1), ('one', 1), ('best', 1), ('nbsp', 1), ('start', 1), ('top', 1)]
[('step', 2), ('need', 2), ('experience', 1), ('learning', 1), ('made', 1), ('easy', 1), ('quickly', 1), ('teach', 1), ('manage', 1), ('communication', 1), ('outlook', 1), ('set', 1), ('pace', 1), ('building', 1), ('practicing', 1), ('skill', 1), ('send', 1), ('mail', 1), ('schedule', 1)]
[('project', 2), ('full', 1), ('color', 1), ('visual', 1), ('guide', 1), ('make', 1), ('learning', 1), ('microsoft', 1), ('plain', 1), ('simple', 1), ('follow', 1), ('book', 1), ('easy', 1), ('step', 1), ('screenshots', 1), ('clear', 1), ('concise', 1), ('language', 1), ('learn', 1), ('simplest', 1), ('way', 1), ('effectively', 1), ('manage', 1)]
[('microsoft', 2), ('office', 2), ('exam', 2), ('objective', 2), ('demonstrate', 1), ('expertise', 1), ('designed', 1), ('help', 1), ('practice', 1), ('prepare', 1), ('four', 1), ('specialist', 1), ('mo', 1), ('study', 1), ('guide', 1), ('feature', 1), ('full', 1), ('coverage', 1), ('easy', 1), ('follow', 1)]
[('sharepoint', 3), ('application', 2), ('microsoft', 2), ('smart', 1), ('way', 1), ('build', 1), ('designer', 1), ('step', 1), ('time', 1), ('experience', 1), ('learning', 1), ('made', 1), ('easy', 1), ('quickly', 1), ('teach', 1), ('create', 1), ('workflow', 1)]
[('beyond', 1), ('basic', 1), ('dive', 1), ('right', 1), ('really', 1), ('take', 1), ('control', 1), ('communication', 1), ('workday', 1), ('supremely', 1), ('organized', 1), ('reference', 1), ('pack', 1), ('hundred', 1), ('timesaving', 1), ('solution', 1), ('troubleshooting', 1), ('tip', 1), ('workarounds', 1), ('muscle', 1), ('fluff', 1)]
[('rail', 5), ('nbsp', 2), ('first', 2), ('time', 2), ('bible', 1), ('development', 1), ('fully', 1), ('updated', 1), ('way', 1), ('felt', 1), ('truly', 1), ('understood', 1), ('foreword', 1), ('steve', 1), ('klabnik', 1), ('ruby', 1)]
[('software', 3), ('security', 3), ('together', 2), ('strengthen', 1), ('helping', 1), ('developer', 1), ('expert', 1), ('work', 1), ('nbsp', 1), ('traditional', 1), ('approach', 1), ('securing', 1), ('inadequate', 1), ('solution', 1), ('bring', 1), ('engineering', 1), ('network', 1), ('team', 1), ('new', 1)]
[('hour', 2), ('nbsp', 2), ('javascript', 2), ('programming', 2), ('lesson', 1), ('le', 1), ('sam', 1), ('teach', 1), ('help', 1), ('learn', 1), ('fundamental', 1), ('using', 1), ('language', 1), ('designed', 1), ('beginner', 1), ('previous', 1), ('experience', 1)]
[('sql', 3), ('hour', 2), ('includes', 1), ('coverage', 1), ('oracle', 1), ('microsoft', 1), ('implementation', 1), ('lesson', 1), ('le', 1), ('sam', 1), ('teach', 1), ('sixth', 1), ('edition', 1), ('help', 1), ('use', 1), ('build', 1), ('effective', 1), ('database', 1), ('efficiently', 1), ('retrieve', 1), ('data', 1), ('manage', 1)]
[('nbsp', 3), ('entertainment', 2), ('lt', 1), ('gt', 1), ('learn', 1), ('demand', 1), ('tv', 1), ('dvrs', 1), ('music', 1), ('game', 1), ('book', 1), ('digital', 1), ('senior', 1), ('discover', 1), ('easy', 1), ('way', 1), ('access', 1), ('experience', 1), ('using', 1), ('today', 1), ('technology', 1), ('without', 1), ('getting', 1), ('confused', 1)]
[('voice', 2), ('voip', 2), ('network', 2), ('deployment', 1), ('ip', 1), ('continue', 1), ('rapid', 1), ('pace', 1), ('gateway', 1), ('essential', 1), ('part', 1), ('handling', 1), ('many', 1), ('task', 1), ('involved', 1), ('translating', 1), ('transmission', 1), ('format', 1), ('protocol', 1), ('acting', 1), ('interface', 1)]
[('jazz', 3), ('nbsp', 2), ('musician', 2), ('insider', 1), ('guide', 1), ('translating', 1), ('creative', 1), ('technique', 1), ('business', 1), ('world', 1), ('scott', 1), ('berkun', 1), ('author', 1), ('myth', 1), ('innovation', 1), ('team', 1), ('learn', 1), ('experienced', 1), ('apply', 1), ('specific', 1)]
[('security', 3), ('nbsp', 3), ('end', 2), ('network', 2), ('defense', 2), ('practice', 2), ('depth', 1), ('best', 1), ('assessing', 1), ('improving', 1), ('responding', 1), ('incident', 1), ('omar', 1), ('santos', 1), ('information', 1), ('evolved', 1), ('internet', 1), ('perimeter', 1)]
[('team', 3), ('software', 2), ('project', 2), ('modern', 1), ('development', 1), ('require', 1), ('good', 1), ('teamwork', 1), ('largely', 1), ('determines', 1), ('success', 1), ('process', 1), ('tsp', 1), ('created', 1), ('watt', 1), ('humphrey', 1), ('set', 1), ('engineering', 1), ('practice', 1), ('concept', 1), ('produce', 1)]
[('php', 2), ('nbsp', 2), ('web', 2), ('mysql', 1), ('phrasebook', 1), ('give', 1), ('code', 1), ('need', 1), ('complete', 1), ('programming', 1), ('project', 1), ('quickly', 1), ('effectively', 1), ('leading', 1), ('scripting', 1), ('language', 1), ('creating', 1), ('dynamic', 1), ('page', 1), ('concise', 1), ('accessible', 1), ('easy', 1), ('carry', 1)]
[('improve', 2), ('new', 2), ('reengineer', 1), ('net', 1), ('code', 1), ('quality', 1), ('update', 1), ('architecture', 1), ('access', 1), ('tool', 1), ('accelerate', 1), ('delivery', 1), ('feature', 1), ('software', 1), ('age', 1), ('becomes', 1), ('brittle', 1), ('difficult', 1), ('understand', 1), ('fix', 1), ('manage', 1), ('use', 1), ('developer', 1), ('working', 1), ('nbsp', 1)]
[('microsoft', 2), ('smart', 1), ('way', 1), ('learn', 1), ('dynamic', 1), ('crm', 1), ('step', 1), ('time', 1), ('use', 1), ('easy', 1), ('follow', 1), ('lesson', 1), ('master', 1), ('fundamental', 1), ('creating', 1), ('managing', 1), ('account', 1), ('working', 1), ('directly', 1), ('within', 1), ('familiar', 1), ('tool', 1), ('outlook', 1), ('tracking', 1), ('customer', 1)]
[('sharepoint', 3), ('take', 1), ('deep', 1), ('dive', 1), ('master', 1), ('intricacy', 1), ('designing', 1), ('implementing', 1), ('robust', 1), ('apps', 1), ('business', 1), ('solution', 1), ('organization', 1), ('led', 1), ('author', 1), ('team', 1), ('depth', 1), ('knowledge', 1), ('architecture', 1), ('thoroughly', 1), ('explore', 1), ('development', 1), ('platform', 1), ('new', 1), ('app', 1), ('model', 1), ('hand', 1), ('task', 1)]
[('access', 2), ('step', 2), ('building', 2), ('need', 2), ('experience', 1), ('learning', 1), ('made', 1), ('easy', 1), ('quickly', 1), ('teach', 1), ('build', 1), ('database', 1), ('solution', 1), ('set', 1), ('pace', 1), ('practicing', 1), ('skill', 1), ('topic', 1), ('include', 1)]
[('agile', 2), ('development', 1), ('process', 1), ('foster', 1), ('better', 1), ('collaboration', 1), ('innovation', 1), ('result', 1), ('limit', 1), ('use', 1), ('software', 1), ('project', 1), ('transform', 1), ('entire', 1), ('business', 1), ('written', 1), ('mentoring', 1), ('expert', 1), ('jochen', 1), ('krebs', 1), ('book', 1), ('illuminates', 1)]
[('system', 3), ('unix', 2), ('finally', 1), ('network', 1), ('programming', 1), ('authoritative', 1), ('reference', 1), ('available', 1), ('programmer', 1), ('architect', 1), ('interested', 1), ('building', 1), ('networked', 1), ('distributed', 1), ('application', 1), ('even', 1), ('currently', 1), ('use', 1), ('different', 1)]
[('outlook', 2), ('conquer', 1), ('microsoft', 1), ('inside', 1), ('dive', 1), ('really', 1), ('take', 1), ('control', 1), ('communication', 1), ('workday', 1), ('supremely', 1), ('organized', 1), ('reference', 1), ('pack', 1), ('hundred', 1), ('timesaving', 1), ('solution', 1), ('troubleshooting', 1), ('tip', 1), ('workarounds', 1)]
[('guide', 1), ('make', 1), ('learning', 1), ('microsoft', 1), ('powerpoint', 1), ('plain', 1), ('simple', 1), ('full', 1), ('color', 1), ('nonsense', 1), ('book', 1), ('show', 1), ('quickest', 1), ('way', 1), ('solve', 1), ('problem', 1), ('learn', 1), ('skill', 1), ('using', 1), ('easy', 1), ('follow', 1), ('step', 1), ('concise', 1), ('straightforward', 1), ('language', 1)]
[('nbsp', 4), ('vmware', 3), ('horizon', 2), ('suite', 2), ('authoritative', 1), ('guide', 1), ('delivering', 1), ('end', 1), ('user', 1), ('service', 1), ('view', 1), ('today', 1), ('professional', 1), ('manage', 1), ('stateless', 1), ('mobile', 1), ('streamed', 1), ('workspace', 1), ('delivered', 1), ('across', 1), ('device', 1)]
[('step', 2), ('ready', 1), ('started', 1), ('wordpress', 1), ('weekend', 1), ('ebook', 1), ('feature', 1), ('instruction', 1), ('day', 1), ('session', 1), ('setting', 1), ('blog', 1), ('website', 1), ('using', 1), ('right', 1), ('tool', 1), ('launch', 1), ('content', 1), ('author', 1), ('jesse', 1), ('friedman', 1), ('help', 1)]
[('take', 2), ('hand', 1), ('guide', 1), ('optimizing', 1), ('web', 1), ('site', 1), ('google', 1), ('glass', 1), ('show', 1), ('advantage', 1), ('latest', 1), ('advancement', 1), ('tiny', 1), ('screen', 1), ('including', 1), ('watching', 1), ('video', 1), ('viewing', 1), ('form', 1), ('nbsp', 1), ('look', 1), ('mirror', 1), ('api', 1)]
[('end', 3), ('web', 2), ('application', 2), ('front', 2), ('book', 2), ('traditionally', 1), ('architected', 1), ('back', 1), ('house', 1), ('code', 1), ('resulted', 1), ('heavy', 1), ('project', 1), ('difficult', 1), ('manage', 1), ('scale', 1), ('explain', 1), ('new', 1), ('way', 1), ('write', 1), ('treating', 1), ('third', 1), ('party', 1), ('mobile', 1), ('client', 1), ('written', 1)]
[('microsoft', 2), ('system', 2), ('center', 1), ('configuration', 1), ('manager', 1), ('sql', 1), ('server', 1), ('database', 1), ('contains', 1), ('valuable', 1), ('information', 1), ('user', 1), ('computer', 1), ('hardware', 1), ('operating', 1), ('application', 1), ('compliance', 1), ('status', 1), ('provided', 1), ('excellent', 1), ('tool', 1)]
[('ruby', 3), ('need', 1), ('know', 1), ('nothing', 1), ('create', 1), ('program', 1), ('gem', 1), ('web', 1), ('apps', 1), ('programmer', 1), ('love', 1), ('elegance', 1), ('power', 1), ('flexibility', 1), ('chosen', 1), ('rail', 1), ('framework', 1), ('launched', 1), ('website', 1), ('shopify', 1)]
[('nbsp', 3), ('incident', 2), ('response', 2), ('product', 2), ('security', 2), ('computer', 1), ('practical', 1), ('guide', 1), ('building', 1), ('running', 1), ('team', 1), ('damir', 1), ('rajnovic', 1), ('organization', 1), ('increasingly', 1), ('recognize', 1), ('urgent', 1), ('importance', 1), ('effective', 1)]
[('solaris', 2), ('application', 2), ('performance', 2), ('programming', 1), ('comprehensive', 1), ('guide', 1), ('optimizing', 1), ('running', 1), ('environment', 1), ('fundamental', 1), ('system', 1), ('using', 1), ('analysis', 1), ('optimization', 1), ('tool', 1), ('fullest', 1)]
[('nan', 1)]
[('iphone', 3), ('new', 3), ('plus', 2), ('cover', 1), ('io', 1), ('march', 1), ('update', 1), ('se', 1), ('announced', 1), ('today', 1), ('apple', 1), ('content', 1), ('book', 1), ('applicable', 1), ('phone', 1), ('nbsp', 1), ('edition', 1), ('best', 1), ('selling', 1)]
[('ip', 4), ('traffic', 3), ('plane', 3), ('router', 2), ('network', 2), ('security', 1), ('strategy', 1), ('securing', 1), ('provides', 1), ('compre', 1), ('hensive', 1), ('approach', 1), ('understand', 1), ('implement', 1), ('separation', 1), ('protection', 1), ('book', 1), ('detail', 1), ('distinct', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('nbsp', 1), ('drive', 1), ('even', 1), ('value', 1), ('virtualization', 1), ('write', 1), ('vmware', 1), ('application', 1), ('automate', 1), ('virtual', 1)]
[('linq', 2), ('charlie', 1), ('dinesh', 1), ('bring', 1), ('important', 1), ('skill', 1), ('project', 1), ('enable', 1), ('show', 1), ('work', 1), ('practical', 1), ('way', 1), ('use', 1), ('daily', 1), ('development', 1), ('process', 1), ('foreword', 1), ('anders', 1), ('hejlsberg', 1), ('nbsp', 1), ('microsoft', 1)]
[('software', 2), ('testing', 2), ('urgent', 1), ('demand', 1), ('rapid', 1), ('turnaround', 1), ('new', 1), ('release', 1), ('without', 1), ('compromising', 1), ('quality', 1), ('element', 1), ('development', 1), ('keep', 1), ('pace', 1), ('requiring', 1), ('major', 1), ('shift', 1), ('slow', 1), ('labor', 1), ('intensive', 1), ('method', 1), ('faster', 1)]
[('cisco', 2), ('definitive', 1), ('date', 1), ('guide', 1), ('planning', 1), ('configuring', 1), ('administering', 1), ('call', 1), ('processing', 1), ('voice', 1), ('messaging', 1), ('book', 1), ('brings', 1), ('together', 1), ('hand', 1), ('knowledge', 1), ('need', 1), ('successfully', 1), ('configure', 1), ('administer', 1), ('flagship', 1), ('ip', 1)]
[('nbsp', 2), ('iphone', 2), ('ipad', 2), ('apps', 2), ('net', 2), ('develop', 1), ('state', 1), ('art', 1), ('monotouch', 1), ('experienced', 1), ('developer', 1), ('want', 1), ('reach', 1), ('huge', 1), ('market', 1), ('create', 1), ('io', 1), ('without', 1), ('first', 1), ('mastering', 1), ('objective', 1)]
[('blogging', 4), ('blog', 2), ('easy', 2), ('project', 2), ('start', 2), ('pro', 2), ('using', 2), ('wordpress', 2), ('create', 1), ('second', 1), ('edition', 1), ('nbsp', 1), ('personal', 1), ('build', 1), ('website', 1), ('around', 1), ('business', 1), ('org', 1)]
[('nbsp', 3), ('javascript', 3), ('web', 2), ('development', 2), ('started', 1), ('fast', 1), ('modern', 1), ('arrival', 1), ('html', 1), ('jquery', 1), ('ajax', 1), ('skill', 1), ('valuable', 1), ('complete', 1), ('hand', 1), ('tutorial', 1), ('cover', 1), ('everything', 1)]
[('expectation', 3), ('sometimes', 2), ('seem', 2), ('unreasonable', 2), ('digital', 1), ('version', 1), ('printed', 1), ('book', 1), ('copyright', 1), ('client', 1), ('example', 1)]
[('ipad', 5), ('step', 2), ('help', 2), ('cover', 1), ('io', 1), ('air', 1), ('rd', 1), ('th', 1), ('generation', 1), ('mini', 1), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1)]
[('culture', 5), ('agile', 4), ('success', 2), ('driven', 2), ('focused', 2), ('many', 1), ('book', 1), ('talk', 1), ('importance', 1), ('show', 1), ('reader', 1), ('make', 1), ('specific', 1), ('change', 1), ('needed', 1), ('author', 1), ('provide', 1), ('proven', 1), ('tool', 1), ('model', 1), ('moving', 1), ('date', 1), ('internally', 1), ('value', 1), ('customer', 1), ('thrive', 1)]
[('db', 2), ('nbsp', 2), ('database', 2), ('purexml', 1), ('cookbook', 1), ('master', 1), ('power', 1), ('ibm', 1), ('hybrid', 1), ('data', 1), ('server', 1), ('hand', 1), ('solution', 1), ('best', 1), ('practice', 1), ('developing', 1), ('managing', 1), ('xml', 1), ('application', 1), ('developer', 1), ('dba', 1), ('asked', 1)]
[('test', 3), ('knowledge', 2), ('book', 1), ('fill', 1), ('huge', 1), ('gap', 1), ('software', 1), ('testing', 1), ('excellent', 1), ('job', 1), ('describing', 1), ('automation', 1), ('differs', 1), ('activity', 1), ('clearly', 1), ('lay', 1), ('kind', 1), ('skill', 1), ('needed', 1), ('automate', 1)]
[('phone', 3), ('step', 2), ('window', 2), ('nbsp', 2), ('help', 2), ('instruction', 1), ('callouts', 1), ('photo', 1), ('see', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1), ('yourwindows', 1)]
[('social', 3), ('medium', 3), ('business', 2), ('plain', 1), ('english', 1), ('guide', 1), ('avoiding', 1), ('legal', 1), ('risk', 1), ('liability', 1), ('anyone', 1), ('using', 1), ('written', 1), ('specifically', 1), ('non', 1), ('attorney', 1), ('already', 1), ('know', 1), ('help', 1), ('find', 1), ('customer', 1), ('strengthen', 1)]
[('playstation', 3), ('vita', 3), ('step', 2), ('help', 2), ('instruction', 1), ('callouts', 1), ('image', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('tip', 1), ('note', 1), ('full', 1), ('color', 1)]
[('step', 3), ('hand', 1), ('guide', 1), ('building', 1), ('connected', 1), ('service', 1), ('oriented', 1), ('application', 1), ('teach', 1), ('essential', 1), ('window', 1), ('communication', 1), ('foundation', 1), ('wcf', 1), ('time', 1), ('practical', 1), ('learn', 1), ('tutorial', 1)]
[('step', 3), ('outlook', 2), ('mac', 2), ('smart', 1), ('way', 1), ('learn', 1), ('microsoft', 1), ('time', 1), ('experience', 1), ('learning', 1), ('made', 1), ('easy', 1), ('quickly', 1), ('teach', 1), ('organize', 1), ('email', 1), ('arrange', 1), ('calendar', 1), ('manage', 1), ('task', 1), ('using', 1)]
[('focus', 1), ('mailbox', 1), ('high', 1), ('availability', 1), ('feature', 1), ('book', 1), ('delivers', 1), ('ultimate', 1), ('depth', 1), ('reference', 1), ('professional', 1), ('planning', 1), ('managing', 1), ('exchange', 1), ('server', 1), ('deployment', 1), ('guided', 1), ('tony', 1), ('redmond', 1), ('microsoft', 1), ('mvp', 1), ('award', 1), ('winning', 1)]
[('nan', 1)]
[('introduction', 2), ('testing', 2), ('perfect', 1), ('pen', 1), ('professional', 1), ('student', 1), ('welcome', 1), ('today', 1), ('useful', 1), ('practical', 1), ('penetration', 1), ('chuck', 1), ('easttom', 1), ('brings', 1), ('together', 1), ('minute', 1), ('coverage', 1), ('concept', 1), ('terminology', 1), ('challenge', 1), ('skill', 1), ('need', 1), ('effective', 1), ('drawing', 1), ('decade', 1), ('experience', 1)]
[('every', 1), ('professional', 1), ('programmer', 1), ('need', 1), ('know', 1), ('pared', 1), ('essential', 1), ('efficiently', 1), ('accurately', 1), ('absorbed', 1), ('nbsp', 1), ('large', 1), ('complex', 1), ('language', 1), ('learning', 1), ('never', 1), ('entirely', 1), ('easy', 1), ('concept', 1), ('technique', 1)]
[('cisco', 2), ('nbsp', 2), ('ccie', 2), ('lan', 1), ('switching', 1), ('configuration', 1), ('handbook', 1), ('second', 1), ('edition', 1), ('concise', 1), ('reference', 1), ('implementing', 1), ('frequently', 1), ('used', 1), ('feature', 1), ('catalyst', 1), ('family', 1), ('switch', 1), ('steve', 1), ('mcquerry', 1), ('david', 1), ('jansen', 1)]
[('exchange', 2), ('dive', 1), ('server', 1), ('sp', 1), ('discover', 1), ('really', 1), ('put', 1), ('messaging', 1), ('solution', 1), ('work', 1), ('organized', 1), ('depth', 1), ('reference', 1), ('pack', 1), ('detail', 1), ('need', 1), ('deploy', 1), ('manage', 1), ('including', 1), ('hundred', 1), ('timesaving', 1)]
[('beyond', 1), ('basic', 1), ('dive', 1), ('really', 1), ('put', 1), ('spreadsheet', 1), ('skill', 1), ('work', 1), ('supremely', 1), ('organized', 1), ('reference', 1), ('packed', 1), ('hundred', 1), ('timesaving', 1), ('solution', 1), ('troubleshooting', 1), ('tip', 1), ('workarounds', 1), ('muscle', 1), ('fluff', 1), ('discover', 1)]
[('integration', 2), ('ssis', 2), ('build', 1), ('manage', 1), ('data', 1), ('solution', 1), ('expert', 1), ('guidance', 1), ('microsoft', 1), ('sql', 1), ('server', 1), ('service', 1), ('team', 1), ('see', 1), ('best', 1), ('practice', 1), ('action', 1), ('dive', 1), ('deep', 1), ('engine', 1), ('ssisdb', 1), ('catalog', 1), ('security', 1), ('feature', 1), ('using', 1)]
[('sql', 3), ('server', 3), ('report', 2), ('use', 1), ('skill', 1), ('create', 1), ('manage', 1), ('key', 1), ('data', 1), ('deliver', 1), ('interactive', 1), ('business', 1), ('intelligence', 1), ('using', 1), ('reporting', 1), ('service', 1), ('help', 1), ('facilitate', 1), ('real', 1), ('time', 1), ('decision', 1), ('making', 1), ('throughout', 1), ('enterprise', 1)]
[('solution', 2), ('bi', 2), ('build', 1), ('agile', 1), ('responsive', 1), ('business', 1), ('intelligence', 1), ('analyze', 1), ('tabular', 1), ('data', 1), ('using', 1), ('semantic', 1), ('model', 1), ('bism', 1), ('microsoft', 1), ('sql', 1), ('server', 1), ('analysis', 1), ('service', 1), ('discover', 1), ('simpler', 1), ('method', 1), ('creating', 1), ('corporate', 1), ('level', 1), ('led', 1)]
[('sharepoint', 4), ('design', 2), ('determine', 1), ('best', 1), ('implementation', 1), ('gaining', 1), ('deeper', 1), ('understanding', 1), ('platform', 1), ('work', 1), ('written', 1), ('team', 1), ('expert', 1), ('practical', 1), ('guide', 1), ('introduces', 1), ('microsoft', 1), ('architecture', 1), ('walk', 1), ('consideration', 1), ('planning', 1), ('building', 1), ('custom', 1), ('solution', 1)]
[('performance', 3), ('requirement', 2), ('software', 2), ('book', 2), ('absence', 1), ('clearly', 1), ('written', 1), ('cause', 1), ('confusion', 1), ('bad', 1), ('architecture', 1), ('coverage', 1), ('engineering', 1), ('domain', 1), ('specific', 1), ('metric', 1), ('every', 1), ('stage', 1), ('process', 1), ('address', 1), ('problem', 1), ('nbsp', 1), ('application', 1), ('principle', 1), ('considerably', 1)]
[('build', 2), ('mobile', 2), ('apps', 2), ('enterprise', 2), ('nbsp', 1), ('deploy', 1), ('business', 1), ('smoothly', 1), ('integrate', 1), ('today', 1), ('truly', 1), ('transformational', 1), ('impact', 1), ('maximize', 1), ('value', 1), ('isolation', 1), ('new', 1)]
[('book', 2), ('break', 2), ('ready', 1), ('element', 1), ('rule', 1), ('new', 1), ('ground', 1), ('something', 1), ('digital', 1), ('photographer', 1), ('never', 1), ('done', 1), ('cut', 1), ('bull', 1), ('show', 1), ('exactly', 1), ('bunch', 1)]
[('become', 1), ('programmer', 1), ('fun', 1), ('start', 1), ('writing', 1), ('software', 1), ('solves', 1), ('real', 1), ('problem', 1), ('even', 1), ('absolutely', 1), ('programming', 1), ('experience', 1), ('friendly', 1), ('easy', 1), ('full', 1), ('color', 1), ('book', 1), ('put', 1), ('total', 1), ('control', 1), ('learning', 1), ('empowering', 1)]
[('network', 6), ('design', 6), ('ip', 2), ('security', 2), ('guide', 1), ('modern', 1), ('routed', 1), ('switched', 1), ('campus', 1), ('understand', 1), ('process', 1), ('model', 1), ('learn', 1), ('switch', 1), ('used', 1), ('addressing', 1), ('plan', 1), ('select', 1), ('appropriate', 1), ('routing', 1), ('protocol', 1), ('apply', 1), ('principle', 1), ('boost', 1)]
[('photoshop', 3), ('image', 2), ('quality', 2), ('c', 2), ('edition', 1), ('real', 1), ('world', 1), ('tightly', 1), ('focused', 1), ('need', 1), ('demand', 1), ('professional', 1), ('digital', 1), ('photographer', 1), ('acquiring', 1), ('using', 1), ('efficient', 1), ('processing', 1), ('workflow', 1), ('maintaining', 1), ('final', 1), ('output', 1), ('within', 1), ('powerful', 1), ('feature', 1), ('set', 1), ('adobe', 1), ('extended', 1), ('coverage', 1)]
[('iphone', 3), ('video', 2), ('new', 1), ('apple', 1), ('user', 1), ('want', 1), ('start', 1), ('using', 1), ('device', 1), ('soon', 1), ('hand', 1), ('pocket', 1), ('guide', 1), ('show', 1), ('trusted', 1), ('gadget', 1), ('teacher', 1), ('christopher', 1), ('breen', 1), ('reveals', 1), ('quickest', 1), ('way', 1), ('learn', 1), ('feature', 1), ('everything', 1), ('covered', 1), ('including', 1), ('built', 1), ('apps', 1), ('facetime', 1), ('calling', 1), ('hd', 1), ('recording', 1)]
[('routing', 3), ('book', 3), ('learning', 3), ('learn', 2), ('intermediate', 2), ('technique', 2), ('cisco', 2), ('authorized', 2), ('ccnp', 2), ('advanced', 1), ('self', 1), ('study', 1), ('foundation', 1), ('advance', 1), ('newest', 1), ('edition', 1), ('best', 1), ('selling', 1), ('bsci', 1), ('foundational', 1), ('rely', 1), ('publisher', 1)]
[('design', 3), ('content', 3), ('switching', 3), ('guide', 2), ('solution', 2), ('data', 2), ('center', 2), ('practical', 1), ('deployment', 1), ('mission', 1), ('critical', 1), ('application', 1), ('environment', 1), ('deploy', 1), ('using', 1), ('definitive', 1), ('learn', 1), ('various', 1), ('approach', 1), ('implementation', 1), ('detail', 1), ('requirement', 1)]
[('sql', 2), ('server', 2), ('developer', 2), ('work', 2), ('extend', 1), ('programming', 1), ('skill', 1), ('comprehensive', 1), ('study', 1), ('key', 1), ('feature', 1), ('delve', 1), ('new', 1), ('core', 1), ('capability', 1), ('practical', 1), ('guidance', 1), ('expert', 1), ('put', 1), ('code', 1), ('sample', 1), ('microsoft', 1), ('net', 1), ('data', 1), ('access', 1), ('database', 1), ('business', 1), ('logic', 1)]
[('improve', 2), ('application', 2), ('wan', 2), ('organization', 1), ('face', 1), ('pressure', 1), ('increase', 1), ('productivity', 1), ('performance', 1), ('support', 1), ('global', 1), ('collaboration', 1), ('data', 1), ('protection', 1), ('minimize', 1), ('cost', 1), ('today', 1), ('centered', 1), ('environment', 1), ('traditional', 1), ('lan', 1), ('oriented', 1), ('infrastructure', 1), ('approach', 1), ('insufficient', 1), ('meet', 1), ('goal', 1), ('acceleration', 1), ('optimization', 1)]
[('ccna', 3), ('security', 3), ('portable', 3), ('command', 2), ('preparing', 1), ('latest', 1), ('exam', 1), ('need', 1), ('condensed', 1), ('resource', 1), ('filled', 1), ('valuable', 1), ('easy', 1), ('access', 1), ('information', 1), ('guide', 1), ('enough', 1), ('use', 1), ('whether', 1), ('youre', 1), ('server', 1), ('room', 1), ('equipment', 1), ('closet', 1)]
[('nan', 1)]
[('creative', 5), ('adobe', 3), ('suite', 2), ('step', 2), ('professional', 1), ('seeking', 1), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('choose', 1), ('design', 1), ('web', 1), ('premium', 1), ('classroom', 1), ('book', 1), ('team', 1), ('press', 1), ('project', 1), ('based', 1), ('lesson', 1), ('show', 1), ('reader', 1), ('key', 1), ('technique', 1), ('working', 1), ('application', 1)]
[('book', 2), ('step', 2), ('design', 2), ('autodesk', 2), ('inventor', 2), ('ebook', 1), ('printed', 1), ('include', 1), ('medium', 1), ('website', 1), ('access', 1), ('code', 1), ('print', 1), ('supplement', 1), ('come', 1), ('packaged', 1), ('bound', 1), ('nbsp', 1), ('using', 1), ('format', 1), ('engineering', 1), ('graphic', 1), ('show', 1), ('student', 1), ('use', 1), ('create', 1), ('document', 1), ('chapter', 1)]
[('security', 4), ('cisco', 3), ('volume', 2), ('prepare', 1), ('ccie', 1), ('written', 1), ('lab', 1), ('exam', 1), ('gain', 1), ('expert', 1), ('level', 1), ('knowledge', 1), ('product', 1), ('solution', 1), ('leading', 1), ('engineer', 1), ('architect', 1), ('nbsp', 1), ('ready', 1), ('reference', 1), ('professional', 1), ('first', 1), ('focus', 1), ('network', 1), ('next', 1), ('generation', 1), ('firewalling', 1)]
[('designed', 2), ('cisco', 1), ('devnet', 1), ('professional', 1), ('candidate', 1), ('cover', 1), ('every', 1), ('devcor', 1), ('objective', 1), ('concisely', 1), ('logically', 1), ('extensive', 1), ('teaching', 1), ('feature', 1), ('promote', 1), ('retention', 1), ('understanding', 1), ('includes', 1), ('pre', 1), ('chapter', 1), ('quiz', 1), ('ass', 1), ('knowledge', 1), ('upfront', 1), ('focus', 1), ('study', 1), ('efficiently', 1), ('foundation', 1), ('topic', 1), ('section', 1), ('explain', 1)]
[('project', 3), ('learn', 2), ('full', 1), ('color', 1), ('visual', 1), ('guide', 1), ('make', 1), ('learning', 1), ('microsoft', 1), ('plain', 1), ('simple', 1), ('follow', 1), ('book', 1), ('easy', 1), ('step', 1), ('screenshots', 1), ('clear', 1), ('concise', 1), ('language', 1), ('simplest', 1), ('way', 1), ('effectively', 1), ('manage', 1), ('develop', 1), ('plan', 1), ('schedule', 1), ('resource', 1), ('pull', 1), ('together', 1), ('team', 1)]
[('exam', 3), ('aws', 2), ('certified', 2), ('sysops', 2), ('administrator', 2), ('associate', 2), ('soa', 2), ('cram', 2), ('pearson', 2), ('certification', 2), ('ebook', 2), ('prepare', 1), ('success', 1), ('leader', 1), ('edition', 1), ('include', 1), ('access', 1), ('test', 1), ('prep', 1)]
[('book', 2), ('area', 2), ('storage', 2), ('approach', 1), ('hci', 1), ('topic', 1), ('point', 1), ('view', 1), ('individual', 1), ('working', 1), ('field', 1), ('need', 1), ('enough', 1), ('knowledge', 1), ('different', 1), ('networking', 1), ('compute', 1), ('virtualisation', 1), ('switching', 1), ('routing', 1), ('automation', 1), ('explain', 1), ('context', 1), ('legacy', 1), ('data', 1), ('centre', 1), ('design', 1), ('detailing', 1)]
[('kindle', 2), ('fire', 2), ('android', 2), ('practically', 1), ('overnight', 1), ('amazon', 1), ('become', 1), ('world', 1), ('top', 1), ('selling', 1), ('based', 1), ('tablet', 1), ('electronic', 1), ('mini', 1), ('book', 1), ('expert', 1), ('developer', 1), ('provide', 1), ('introduction', 1), ('basic', 1), ('development', 1)]
[('make', 2), ('window', 1), ('laptop', 1), ('desktop', 1), ('computer', 1), ('without', 1), ('becoming', 1), ('technical', 1), ('expert', 1), ('book', 1), ('fastest', 1), ('way', 1), ('comfortable', 1), ('productive', 1), ('online', 1), ('started', 1), ('social', 1), ('networking', 1), ('connection', 1)]
[('detection', 2), ('installation', 1), ('snort', 1), ('open', 1), ('source', 1), ('network', 1), ('instrusion', 1), ('system', 1), ('combined', 1), ('free', 1), ('tool', 1), ('deliver', 1), ('id', 1), ('defense', 1), ('medium', 1), ('small', 1), ('sized', 1), ('company', 1), ('changing', 1), ('tradition', 1), ('intrusion', 1)]
[('tool', 3), ('network', 2), ('security', 2), ('need', 2), ('master', 1), ('trade', 1), ('official', 1), ('book', 1), ('sans', 1), ('press', 1), ('hammer', 1), ('build', 1), ('house', 1), ('secure', 1), ('essential', 1), ('toolkit', 1), ('cover', 1), ('critical', 1)]
[('mpls', 4), ('based', 2), ('service', 2), ('solution', 2), ('understand', 1), ('business', 1), ('case', 1), ('deploying', 1), ('provides', 1), ('network', 1), ('manager', 1), ('architect', 1), ('precise', 1), ('primer', 1), ('defines', 1), ('problem', 1), ('associated', 1), ('includes', 1), ('roi', 1), ('model', 1)]
[('mpls', 4), ('vpn', 3), ('practical', 1), ('guide', 1), ('hardening', 1), ('network', 1), ('nbsp', 1), ('define', 1), ('zone', 1), ('trust', 1), ('environment', 1), ('understand', 1), ('fundamental', 1), ('security', 1), ('principle', 1), ('vpns', 1), ('work', 1), ('build', 1), ('threat', 1), ('model', 1), ('defines', 1), ('attack', 1), ('point', 1)]
[('tool', 2), ('practical', 1), ('guide', 1), ('supporting', 1), ('cisco', 1), ('network', 1), ('nbsp', 1), ('provides', 1), ('detailed', 1), ('tip', 1), ('using', 1), ('freeware', 1), ('open', 1), ('source', 1), ('readily', 1), ('available', 1), ('internet', 1), ('including', 1), ('reason', 1), ('behind', 1), ('choosing', 1), ('particular', 1), ('refer', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('framemaker', 1), ('core', 1), ('adobe', 1), ('technical', 1), ('communication', 1), ('suite', 1), ('long', 1), ('gold', 1), ('standard', 1)]
[('series', 2), ('published', 1), ('nov', 1), ('addison', 1), ('wesley', 1), ('professional', 1), ('part', 1), ('tool', 1), ('technique', 1), ('computer', 1), ('typesetting', 1), ('editor', 1), ('contacted', 1), ('frank', 1), ('mittelbach', 1), ('latex', 1), ('text', 1), ('preparation', 1), ('system', 1), ('choice', 1)]
[('chromebook', 3), ('step', 2), ('new', 2), ('help', 2), ('instruction', 1), ('callouts', 1), ('google', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1), ('brand', 1), ('nbsp', 1)]
[('coding', 2), ('pattern', 2), ('performance', 2), ('code', 2), ('short', 1), ('cut', 1), ('focus', 1), ('number', 1), ('useful', 1), ('trying', 1), ('maximum', 1), ('speed', 1), ('critical', 1), ('section', 1), ('ruby', 1), ('anti', 1), ('idiom', 1), ('avoided', 1), ('sensitive', 1)]
[('nbsp', 6), ('printing', 2), ('reader', 2), ('even', 2), ('book', 2), ('autodesk', 1), ('cover', 1), ('everything', 1), ('need', 1), ('know', 1), ('absolute', 1), ('beginner', 1), ('printer', 1), ('take', 1), ('student', 1), ('way', 1), ('idea', 1), ('physical', 1), ('object', 1), ('practically', 1), ('time', 1), ('focus', 1), ('project', 1), ('design', 1)]
[('nosql', 3), ('database', 3), ('usage', 1), ('growing', 1), ('stunning', 1), ('per', 1), ('year', 1), ('organization', 1), ('discover', 1), ('potential', 1), ('address', 1), ('even', 1), ('challenging', 1), ('big', 1), ('data', 1), ('real', 1), ('time', 1), ('problem', 1), ('every', 1), ('different', 1), ('popular', 1)]
[('revit', 2), ('student', 2), ('architecture', 1), ('comprehensive', 1), ('guide', 1), ('offer', 1), ('hand', 1), ('series', 1), ('tutorial', 1), ('arranged', 1), ('hierarchically', 1), ('acquaint', 1), ('feature', 1), ('methodology', 1), ('program', 1), ('successfully', 1), ('completed', 1)]
[('ip', 5), ('work', 2), ('security', 2), ('introduction', 1), ('network', 1), ('attack', 1), ('mitigation', 1), ('nbsp', 1), ('come', 1), ('evolved', 1), ('component', 1), ('need', 1), ('address', 1), ('product', 1)]
[('chapter', 2), ('short', 1), ('cut', 1), ('reproduction', 1), ('book', 1), ('design', 1), ('trustworthy', 1), ('software', 1), ('dfts', 1), ('sequel', 1), ('plan', 1), ('implement', 1), ('control', 1), ('secure', 1), ('pic', 1), ('implementation', 1), ('framework', 1), ('revisited', 1), ('four', 1), ('phase', 1)]
[('step', 2), ('nexus', 2), ('nbsp', 2), ('help', 2), ('ebook', 1), ('version', 1), ('printed', 1), ('book', 1), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1)]
[('minute', 2), ('sam', 1), ('teach', 1), ('tweetdeck', 1), ('give', 1), ('straightforward', 1), ('practical', 1), ('answer', 1), ('need', 1), ('fast', 1), ('result', 1), ('working', 1), ('lesson', 1), ('learn', 1), ('consolidate', 1), ('social', 1), ('networking', 1), ('stay', 1), ('connected', 1)]
[('exam', 2), ('ccnp', 2), ('security', 2), ('firewall', 2), ('provides', 2), ('final', 1), ('preparation', 1), ('tool', 1), ('quick', 1), ('reference', 1), ('concise', 1), ('review', 1), ('objective', 1), ('new', 1), ('ebook', 1), ('detailed', 1), ('graphical', 1), ('based', 1), ('information', 1)]
[('cli', 3), ('linux', 2), ('learn', 2), ('command', 1), ('line', 1), ('interface', 1), ('window', 1), ('soul', 1), ('think', 1), ('behaves', 1), ('reputation', 1), ('difficult', 1), ('tends', 1), ('frighten', 1), ('uninitiated', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('selinux', 2), ('linux', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('bring', 1), ('world', 1), ('class', 1), ('security', 1), ('environment', 1), ('nbsp', 1), ('offer', 1), ('unix', 1), ('integrator', 1)]
[('exam', 3), ('security', 2), ('practice', 2), ('comptia', 1), ('sy', 1), ('question', 1), ('cram', 1), ('third', 1), ('edition', 1), ('offer', 1), ('need', 1), ('systematically', 1), ('prepare', 1), ('identify', 1), ('fix', 1), ('area', 1), ('weakness', 1), ('pas', 1), ('first', 1), ('time', 1), ('book', 1), ('complement', 1)]
[('cs', 3), ('animation', 2), ('web', 2), ('started', 1), ('fast', 1), ('professional', 1), ('quality', 1), ('nbsp', 1), ('designer', 1), ('developer', 1), ('building', 1), ('rich', 1), ('mobile', 1), ('application', 1), ('standard', 1), ('based', 1), ('future', 1), ('learning', 1), ('transition', 1), ('tutorial', 1), ('focused', 1)]
[('window', 2), ('shawn', 1), ('created', 1), ('guide', 1), ('easy', 1), ('date', 1), ('comprehensive', 1), ('covering', 1), ('entire', 1), ('application', 1), ('surface', 1), ('area', 1), ('phone', 1), ('developer', 1), ('enjoy', 1), ('jeff', 1), ('wilcox', 1), ('senior', 1), ('software', 1), ('development', 1), ('engineer', 1), ('microsoft', 1), ('essential', 1)]
[('ipad', 2), ('mini', 2), ('day', 2), ('step', 2), ('cover', 1), ('io', 1), ('model', 1), ('help', 1), ('quickly', 1), ('started', 1), ('new', 1), ('tablet', 1), ('use', 1), ('feature', 1), ('look', 1), ('information', 1), ('perform', 1), ('activity', 1), ('anywhere', 1), ('time', 1), ('instruction', 1)]
[('way', 2), ('designer', 1), ('creative', 1), ('professional', 1), ('create', 1), ('digital', 1), ('document', 1), ('always', 1), ('looking', 1), ('make', 1), ('product', 1), ('appealing', 1), ('user', 1), ('increase', 1), ('reader', 1), ('engagement', 1), ('building', 1), ('interactive', 1), ('animated', 1), ('effect', 1)]
[('io', 3), ('programming', 1), ('big', 1), ('nerd', 1), ('ranch', 1), ('guide', 1), ('lead', 1), ('essential', 1), ('concept', 1), ('tool', 1), ('technique', 1), ('developing', 1), ('application', 1), ('completing', 1), ('book', 1), ('know', 1), ('confidence', 1), ('need', 1), ('tackle', 1), ('project', 1)]
[('downloaded', 2), ('computer', 2), ('ebooks', 2), ('note', 2), ('available', 2), ('full', 1), ('text', 1), ('search', 1), ('key', 1), ('concept', 1), ('word', 1), ('phrase', 1), ('make', 1), ('highlight', 1), ('study', 1), ('share', 1), ('friend', 1), ('accessible', 1), ('either', 1), ('offline', 1), ('bookshelf', 1), ('free', 1), ('download', 1), ('online', 1), ('via', 1)]
[('first', 2), ('art', 2), ('stanford', 1), ('graphbase', 1), ('platform', 1), ('combinatorial', 1), ('computing', 1), ('represents', 1), ('effort', 1), ('donald', 1), ('knuth', 1), ('preparation', 1), ('volume', 1), ('four', 1), ('computer', 1), ('programming', 1), ('book', 1), ('goal', 1), ('use', 1), ('example', 1), ('demonstrate', 1)]
[('edition', 3), ('student', 2), ('teacher', 2), ('microsoft', 2), ('office', 2), ('best', 1), ('selling', 1), ('version', 1), ('software', 1), ('suite', 1), ('special', 1), ('using', 1), ('first', 1), ('book', 1), ('tackle', 1), ('perspective', 1), ('unique', 1)]
[('software', 3), ('integrated', 2), ('technology', 2), ('asq', 1), ('crosby', 1), ('medal', 1), ('winner', 1), ('delivering', 1), ('better', 1), ('cheaper', 1), ('faster', 1), ('nbsp', 1), ('book', 1), ('present', 1), ('design', 1), ('trustworthy', 1), ('dfts', 1), ('address', 1), ('quality', 1), ('issue', 1), ('upstream', 1)]
[('rail', 3), ('powerful', 2), ('aspect', 1), ('framework', 1), ('ability', 1), ('extend', 1), ('override', 1), ('within', 1), ('application', 1), ('achieved', 1), ('plugin', 1), ('mechanism', 1), ('provides', 1), ('avenue', 1), ('developer', 1), ('add', 1), ('new', 1)]
[('db', 5), ('security', 3), ('understanding', 1), ('comprehensive', 1), ('guide', 1), ('securing', 1), ('leveraging', 1), ('powerful', 1), ('new', 1), ('feature', 1), ('direct', 1), ('deployment', 1), ('expert', 1), ('ibm', 1), ('development', 1), ('team', 1), ('book', 1), ('give', 1), ('dba', 1)]
[('routing', 2), ('rail', 1), ('system', 1), ('always', 1), ('key', 1), ('component', 1), ('theframework', 1), ('introduction', 1), ('restful', 1), ('route', 1), ('pastyear', 1), ('taken', 1), ('center', 1), ('stage', 1), ('fully', 1), ('programmable', 1), ('systemgoverns', 1), ('process', 1), ('mapping', 1), ('request', 1), ('url', 1)]
[('looking', 3), ('professional', 2), ('page', 2), ('ebay', 1), ('seller', 1), ('understand', 1), ('creating', 1), ('auction', 1), ('key', 1), ('business', 1), ('constantly', 1), ('new', 1), ('tip', 1), ('trick', 1), ('help', 1), ('deliver', 1), ('powerful', 1)]
[('web', 3), ('multimedia', 2), ('beginning', 1), ('intermediate', 1), ('level', 1), ('course', 1), ('software', 1), ('application', 1), ('authoring', 1), ('graphic', 1), ('design', 1), ('us', 1), ('macromedia', 1), ('development', 1), ('tool', 1), ('authorware', 1), ('coldfusion', 1), ('director', 1), ('dreamweaver', 1)]
[('ebook', 1), ('comprises', 1), ('entire', 1), ('garageband', 1), ('section', 1), ('apple', 1), ('training', 1), ('series', 1), ('ilife', 1), ('provides', 1), ('practical', 1), ('technique', 1), ('use', 1), ('daily', 1), ('basis', 1), ('add', 1), ('professional', 1), ('quality', 1), ('music', 1), ('project', 1), ('whether', 1), ('seasoned', 1), ('composer', 1)]
[('business', 2), ('element', 1), ('excerpt', 1), ('ubiquitous', 1), ('computing', 1), ('find', 1), ('new', 1), ('market', 1), ('create', 1), ('better', 1), ('reach', 1), ('customer', 1), ('around', 1), ('world', 1), ('bo', 1), ('begole', 1), ('available', 1), ('print', 1), ('digital', 1), ('format', 1), ('nbsp', 1), ('leading', 1)]
[('business', 2), ('element', 1), ('excerpt', 1), ('ubiquitous', 1), ('computing', 1), ('find', 1), ('new', 1), ('market', 1), ('create', 1), ('better', 1), ('reach', 1), ('customer', 1), ('around', 1), ('world', 1), ('bo', 1), ('begole', 1), ('available', 1), ('print', 1), ('digital', 1), ('format', 1), ('nbsp', 1), ('finding', 1)]
[('visual', 2), ('development', 2), ('using', 1), ('agile', 1), ('method', 1), ('tool', 1), ('studio', 1), ('team', 1), ('deliver', 1), ('higher', 1), ('value', 1), ('software', 1), ('faster', 1), ('systematically', 1), ('eliminate', 1), ('waste', 1), ('increase', 1), ('transparency', 1), ('throughout', 1), ('entire', 1), ('lifecycle', 1), ('microsoft', 1)]
[('mobile', 3), ('step', 2), ('cs', 2), ('pack', 2), ('firework', 2), ('ebook', 1), ('walk', 1), ('adobe', 1), ('c', 1), ('showcasing', 1), ('increased', 1), ('potential', 1), ('design', 1), ('prototyping', 1), ('tool', 1), ('web', 1), ('development', 1), ('includes', 1), ('new', 1)]
[('spyware', 2), ('track', 2), ('computer', 2), ('stop', 1), ('infects', 1), ('vast', 1), ('majority', 1), ('home', 1), ('today', 1), ('machine', 1), ('used', 1), ('access', 1), ('social', 1), ('security', 1), ('number', 1), ('every', 1), ('website', 1), ('visit', 1), ('take', 1), ('control', 1), ('away', 1)]
[('fire', 2), ('packed', 1), ('information', 1), ('inexpensive', 1), ('guide', 1), ('quickly', 1), ('going', 1), ('kindle', 1), ('learn', 1), ('set', 1), ('find', 1), ('way', 1), ('around', 1), ('use', 1), ('multitouch', 1), ('gesture', 1), ('access', 1), ('cloud', 1), ('browse', 1), ('web', 1), ('silk', 1), ('manage', 1)]
[('comptia', 2), ('stratum', 2), ('fundamental', 2), ('certification', 1), ('ensures', 1), ('knowledge', 1), ('pc', 1), ('component', 1), ('functionality', 1), ('compatibility', 1), ('related', 1), ('technology', 1), ('topic', 1), ('final', 1), ('exam', 1), ('preparation', 1), ('tool', 1), ('quick', 1), ('reference', 1), ('provides', 1)]
[('step', 3), ('help', 2), ('instruction', 1), ('corresponding', 1), ('number', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('ipad', 1), ('apps', 1), ('need', 1), ('figure', 1), ('tip', 1), ('note', 1)]
[('cs', 3), ('visual', 2), ('stylin', 1), ('show', 1), ('add', 1), ('richness', 1), ('web', 1), ('page', 1), ('using', 1), ('latest', 1), ('technique', 1), ('aimed', 1), ('designer', 1), ('developer', 1), ('already', 1), ('experience', 1), ('richly', 1), ('illustrated', 1), ('ebook', 1), ('packed', 1), ('design', 1), ('idea', 1)]
[('color', 2), ('adobe', 1), ('recent', 1), ('acquisition', 1), ('speedgrade', 1), ('high', 1), ('end', 1), ('grading', 1), ('system', 1), ('editor', 1), ('colorist', 1), ('able', 1), ('reach', 1), ('new', 1), ('height', 1), ('creating', 1), ('finished', 1), ('image', 1), ('full', 1), ('intended', 1), ('range', 1), ('contrast', 1), ('without', 1), ('leave', 1)]
[('web', 2), ('recording', 1), ('wind', 1), ('chime', 1), ('item', 1), ('cherish', 1), ('childhood', 1), ('haunt', 1), ('pounding', 1), ('drum', 1), ('getting', 1), ('lost', 1), ('nbsp', 1), ('author', 1), ('lynda', 1), ('felder', 1), ('reveals', 1), ('writer', 1), ('toolkit', 1), ('almost', 1), ('anything', 1), ('serve', 1), ('point', 1), ('inspiration', 1), ('successful', 1), ('writing', 1), ('follow', 1), ('along', 1), ('exercise', 1), ('order', 1), ('jump', 1), ('around', 1), ('section', 1), ('travel', 1), ('game', 1)]
[('video', 2), ('step', 2), ('clear', 1), ('straightforward', 1), ('guide', 1), ('digital', 1), ('veteran', 1), ('jan', 1), ('ozer', 1), ('give', 1), ('beginning', 1), ('intermediate', 1), ('editor', 1), ('need', 1), ('know', 1), ('adobe', 1), ('premiere', 1), ('pro', 1), ('cc', 1), ('tasked', 1), ('based', 1), ('instruction', 1), ('load', 1), ('visuals', 1)]
[('time', 2), ('digital', 1), ('version', 1), ('printed', 1), ('book', 1), ('copyright', 1), ('develop', 1), ('software', 1), ('without', 1), ('understanding', 1), ('requirement', 1), ('wasting', 1), ('hand', 1), ('project', 1), ('spends', 1), ('trying', 1), ('understand', 1)]
[('itunes', 2), ('match', 2), ('service', 2), ('sam', 1), ('teach', 1), ('minute', 1), ('quick', 1), ('reference', 1), ('guide', 1), ('using', 1), ('apple', 1), ('book', 1), ('explains', 1), ('varied', 1), ('feature', 1), ('including', 1), ('essential', 1), ('detail', 1), ('signing', 1), ('upgrading', 1), ('entire', 1)]
[('cloud', 2), ('complete', 1), ('practical', 1), ('guide', 1), ('building', 1), ('hosting', 1), ('service', 1), ('deliver', 1), ('exceptional', 1), ('business', 1), ('value', 1), ('unique', 1), ('title', 1), ('key', 1), ('developer', 1), ('ibm', 1), ('smartcloud', 1), ('enterprise', 1), ('share', 1), ('indispensable', 1), ('insight', 1), ('developing', 1), ('operating', 1), ('based', 1)]
[('book', 1), ('give', 1), ('first', 1), ('look', 1), ('exciting', 1), ('new', 1), ('feature', 1), ('window', 1), ('consumer', 1), ('preview', 1), ('beta', 1), ('version', 1), ('operating', 1), ('system', 1), ('microsoft', 1), ('released', 1), ('public', 1), ('february', 1), ('chance', 1), ('good', 1), ('already', 1), ('heard', 1)]
[('screen', 3), ('invaluable', 1), ('guide', 1), ('new', 1), ('third', 1), ('generation', 1), ('ipad', 1), ('steer', 1), ('navigate', 1), ('home', 1), ('buy', 1), ('launch', 1), ('run', 1), ('switch', 1), ('apps', 1), ('change', 1), ('lock', 1), ('orientation', 1), ('adjust', 1), ('brightness', 1), ('conserve', 1), ('battery', 1), ('life', 1)]
[('nbsp', 3), ('comptia', 2), ('quick', 2), ('exam', 2), ('reference', 1), ('take', 1), ('chance', 1), ('ready', 1), ('studying', 1), ('tough', 1), ('new', 1), ('book', 1), ('visual', 1), ('focused', 1), ('review', 1), ('help', 1), ('make', 1)]
[('stl', 2), ('programmer', 2), ('taking', 2), ('wilson', 1), ('menu', 1), ('treatment', 1), ('doubt', 1), ('good', 1), ('eating', 1), ('generic', 1), ('programming', 1), ('adherent', 1), ('ardent', 1), ('java', 1), ('second', 1), ('look', 1), ('author', 1), ('library', 1), ('targeting', 1), ('multiple', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('applied', 1), ('security', 1), ('visualization', 1), ('nbsp', 1), ('collecting', 1), ('log', 1), ('data', 1), ('thing', 1), ('relevant', 1), ('information', 1)]
[('creative', 2), ('day', 2), ('completed', 1), ('boot', 1), ('camp', 1), ('training', 1), ('program', 1), ('surviving', 1), ('creativity', 1), ('exercise', 1), ('designed', 1), ('present', 1), ('fun', 1), ('engaging', 1), ('opportunity', 1), ('problem', 1), ('solving', 1), ('practice', 1), ('developed', 1), ('skill', 1), ('use', 1), ('every', 1)]
[('training', 3), ('book', 2), ('series', 2), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('adobe', 1), ('audition', 1), ('cc', 1), ('classroom', 1), ('best', 1), ('selling', 1), ('hand', 1), ('software', 1), ('workbook', 1), ('offer', 1), ('program', 1), ('official', 1)]
[('upgrade', 2), ('sure', 1), ('simply', 1), ('buy', 1), ('o', 1), ('maverick', 1), ('mac', 1), ('app', 1), ('store', 1), ('click', 1), ('button', 1), ('think', 1), ('wiser', 1), ('idea', 1), ('system', 1), ('ready', 1), ('back', 1), ('work', 1), ('least', 1), ('amount', 1), ('trouble', 1)]
[('guide', 2), ('ipad', 2), ('practical', 1), ('approachable', 1), ('apple', 1), ('guru', 1), ('jeff', 1), ('carlson', 1), ('quickly', 1), ('help', 1), ('new', 1), ('air', 1), ('mini', 1), ('hand', 1), ('steer', 1), ('navigate', 1), ('home', 1), ('screen', 1), ('launch', 1), ('run', 1), ('switch', 1), ('apps', 1)]
[('bi', 2), ('sharepoint', 2), ('dive', 1), ('business', 1), ('intelligence', 1), ('feature', 1), ('use', 1), ('right', 1), ('combination', 1), ('tool', 1), ('deliver', 1), ('compelling', 1), ('solution', 1), ('practical', 1), ('guide', 1), ('help', 1), ('explore', 1), ('several', 1), ('application', 1), ('service', 1), ('available', 1)]
[('dive', 1), ('essential', 1), ('feature', 1), ('microsoft', 1), ('word', 1), ('excel', 1), ('onenote', 1), ('outlook', 1), ('powerpoint', 1), ('supremely', 1), ('organized', 1), ('reference', 1), ('packed', 1), ('hundred', 1), ('timesaving', 1), ('solution', 1), ('troubleshooting', 1), ('tip', 1), ('workarounds', 1)]
[('ebook', 2), ('version', 2), ('book', 2), ('know', 2), ('net', 2), ('printed', 1), ('print', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('content', 1), ('included', 1), ('within', 1), ('asp', 1), ('fritz', 1), ('onion', 1), ('security', 1), ('keith', 1), ('brown', 1), ('combine', 1)]
[('java', 4), ('ee', 3), ('edition', 2), ('enterprise', 2), ('tutorial', 1), ('volume', 1), ('fifth', 1), ('task', 1), ('oriented', 1), ('example', 1), ('driven', 1), ('guide', 1), ('developing', 1), ('application', 1), ('platform', 1), ('written', 1), ('member', 1), ('documentation', 1), ('team', 1)]
[('book', 2), ('training', 2), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('adobe', 1), ('premiere', 1), ('pro', 1), ('cc', 1), ('release', 1), ('classroom', 1), ('best', 1), ('selling', 1), ('series', 1), ('hand', 1), ('software', 1), ('workbook', 1), ('offer', 1), ('program', 1), ('official', 1)]
[('ipad', 7), ('iphone', 3), ('mini', 2), ('tip', 1), ('trick', 1), ('io', 1), ('model', 1), ('air', 1), ('rd', 1), ('th', 1), ('generation', 1), ('plus', 1), ('nbsp', 1), ('easily', 1), ('unlock', 1), ('power', 1), ('discover', 1), ('hundred', 1)]
[('nbsp', 3), ('step', 2), ('apple', 2), ('watch', 2), ('help', 2), ('instruction', 1), ('callouts', 1), ('screenshots', 1), ('show', 1), ('exactly', 1), ('run', 1), ('problem', 1), ('limitation', 1), ('tip', 1), ('note', 1), ('full', 1), ('color', 1)]
[('iphone', 2), ('ipad', 2), ('step', 2), ('cover', 1), ('io', 1), ('xcode', 1), ('session', 1), ('hour', 1), ('learn', 1), ('build', 1), ('powerful', 1), ('application', 1), ('today', 1), ('hottest', 1), ('handheld', 1), ('device', 1), ('using', 1), ('book', 1), ('straightforward', 1)]
[('nook', 5), ('hd', 2), ('learn', 1), ('new', 1), ('glowlight', 1), ('simple', 1), ('touch', 1), ('reading', 1), ('app', 1), ('book', 1), ('watch', 1), ('movie', 1), ('play', 1), ('game', 1), ('discover', 1), ('feature', 1), ('love', 1), ('sample', 1)]
[('adobe', 2), ('book', 2), ('training', 2), ('fastest', 1), ('easiest', 1), ('comprehensive', 1), ('way', 1), ('learn', 1), ('nbsp', 1), ('lightroom', 1), ('conjunction', 1), ('photoshop', 1), ('classroom', 1), ('best', 1), ('selling', 1), ('series', 1), ('hand', 1), ('software', 1), ('workbook', 1), ('offer', 1), ('program', 1)]
[('ipad', 6), ('model', 2), ('th', 2), ('cover', 1), ('io', 1), ('air', 1), ('mini', 1), ('pro', 1), ('generation', 1), ('senior', 1), ('edition', 1), ('comprehensive', 1), ('guide', 1), ('using', 1), ('apple', 1), ('includes', 1), ('everything', 1), ('basic', 1), ('setup', 1), ('information', 1)]
[('galaxy', 3), ('tab', 3), ('samsung', 2), ('step', 2), ('friendly', 1), ('quick', 1), ('practical', 1), ('companion', 1), ('every', 1), ('user', 1), ('nbsp', 1), ('instruction', 1), ('callouts', 1), ('photo', 1), ('show', 1), ('exactly', 1)]
[('vmware', 2), ('practice', 2), ('trust', 1), ('official', 1), ('cert', 1), ('guide', 1), ('series', 1), ('press', 1), ('help', 1), ('learn', 1), ('prepare', 1), ('exam', 1), ('success', 1), ('authorized', 1), ('self', 1), ('study', 1), ('book', 1), ('built', 1), ('objective', 1), ('providing', 1), ('assessment', 1), ('review', 1)]
[('ipad', 3), ('book', 2), ('ebook', 1), ('printed', 1), ('include', 1), ('medium', 1), ('website', 1), ('access', 1), ('code', 1), ('print', 1), ('supplement', 1), ('come', 1), ('packaged', 1), ('bound', 1), ('nbsp', 1), ('easily', 1), ('unlock', 1), ('power', 1), ('pro', 1), ('air', 1), ('mini', 1), ('iphone', 1), ('discover', 1)]
[('exam', 4), ('comptia', 2), ('data', 2), ('da', 2), ('cram', 1), ('inclusive', 1), ('study', 1), ('guide', 1), ('designed', 1), ('help', 1), ('pas', 1), ('prepare', 1), ('test', 1), ('day', 1), ('success', 1), ('complete', 1), ('coverage', 1), ('objective', 1), ('topic', 1), ('plus', 1), ('hundred', 1), ('realistic', 1), ('practice', 1), ('question', 1), ('extensive', 1), ('prep', 1), ('tool', 1), ('include', 1), ('quiz', 1), ('alert', 1), ('essential', 1), ('last', 1), ('minute', 1), ('review', 1)]
[('foundation', 2), ('although', 1), ('digital', 1), ('revolution', 1), ('made', 1), ('content', 1), ('available', 1), ('print', 1), ('book', 1), ('ebooks', 1), ('still', 1), ('accessible', 1), ('built', 1), ('often', 1), ('weak', 1), ('changing', 1), ('introduction', 1), ('epub', 1), ('publisher', 1), ('mean', 1), ('create', 1), ('single', 1), ('rich', 1), ('data', 1), ('source', 1)]
[('freebsd', 2), ('use', 2), ('need', 2), ('particularly', 1), ('difficult', 1), ('integrated', 1), ('documentation', 1), ('adequate', 1), ('take', 1), ('long', 1), ('time', 1), ('figure', 1), ('package', 1), ('install', 1), ('order', 1), ('certain', 1), ('service', 1), ('running', 1), ('configure', 1), ('installed', 1), ('even', 1), ('familiar', 1), ('program', 1), ('learning', 1), ('work', 1)]
[('facebook', 3), ('bet', 2), ('application', 2), ('opening', 1), ('platform', 1), ('spur', 1), ('growthand', 1), ('build', 1), ('buzz', 1), ('giving', 1), ('edge', 1), ('white', 1), ('hot', 1), ('social', 1), ('networkpopularity', 1), ('contest', 1), ('four', 1), ('month', 1), ('nearly', 1), ('later', 1), ('look', 1), ('paying', 1), ('next', 1), ('platformfor', 1), ('profit', 1), ('find', 1), ('take', 1), ('launch', 1), ('successful', 1)]
[('sql', 2), ('book', 2), ('help', 2), ('whether', 1), ('running', 1), ('access', 1), ('mysql', 1), ('server', 1), ('oracle', 1), ('postgresql', 1), ('push', 1), ('limit', 1), ('traditional', 1), ('squeeze', 1), ('data', 1), ('effectively', 1), ('database', 1), ('offer', 1), ('hack', 1), ('unique', 1), ('tip', 1), ('tool', 1), ('bring', 1), ('knowledge', 1), ('expert', 1), ('apply', 1), ('know', 1), ('real', 1), ('world', 1), ('take', 1), ('full', 1)]
[('window', 5), ('server', 4), ('practical', 1), ('reference', 1), ('guide', 1), ('offer', 1), ('hundred', 1), ('useful', 1), ('task', 1), ('managing', 1), ('microsoft', 1), ('latest', 1), ('greatest', 1), ('concise', 1), ('job', 1), ('solution', 1), ('common', 1), ('problem', 1), ('cookbook', 1), ('certain', 1), ('save', 1), ('hour', 1), ('time', 1), ('searching', 1), ('answer', 1)]
[('wikipedia', 4), ('missing', 2), ('manual', 2), ('reader', 1), ('guide', 1), ('give', 1), ('essential', 1), ('tool', 1), ('getting', 1), ('supplement', 1), ('handbook', 1), ('provides', 1), ('basic', 1), ('road', 1), ('map', 1), ('largest', 1), ('online', 1), ('collaborative', 1), ('encyclopedia', 1), ('learn', 1), ('best', 1), ('way', 1), ('search', 1), ('information', 1), ('need', 1)]
[('ruby', 5), ('write', 1), ('truly', 1), ('elegant', 1), ('code', 1), ('best', 1), ('practice', 1), ('programmer', 1), ('want', 1), ('use', 1), ('experienced', 1), ('rubyists', 1), ('written', 1), ('developer', 1), ('project', 1), ('prawn', 1), ('concise', 1), ('book', 1), ('explains', 1), ('design', 1), ('beautiful', 1), ('apis', 1), ('domain', 1), ('specific', 1), ('language', 1), ('work', 1), ('functional', 1), ('programming', 1), ('idea', 1)]
[('enough', 2), ('mail', 2), ('system', 2), ('qmail', 1), ('quietly', 1), ('become', 1), ('widely', 1), ('used', 1), ('application', 1), ('internet', 1), ('today', 1), ('powerful', 1), ('handle', 1), ('million', 1), ('user', 1), ('yahoo', 1), ('hotmail', 1), ('remaining', 1), ('compact', 1), ('manageable', 1), ('smallest', 1), ('unix', 1), ('linux', 1), ('based', 1), ('pc', 1), ('component', 1), ('design', 1), ('make', 1), ('easy', 1), ('extend', 1), ('customize', 1)]
[('security', 2), ('come', 1), ('network', 1), ('many', 1), ('user', 1), ('administrator', 1), ('running', 1), ('scared', 1), ('justifiably', 1), ('sophistication', 1), ('attack', 1), ('computer', 1), ('system', 1), ('increase', 1), ('new', 1), ('internet', 1), ('worm', 1), ('worst', 1), ('attacker', 1), ('better', 1), ('find', 1), ('right', 1), ('warrior', 1), ('teach', 1), ('based', 1), ('principle', 1)]
[('unix', 4), ('mac', 4), ('o', 3), ('many', 1), ('developer', 1), ('drawn', 1), ('core', 1), ('find', 1), ('surprisingly', 1), ('unfamiliar', 1), ('territory', 1), ('kissing', 1), ('cousin', 1), ('enough', 1), ('pitfall', 1), ('minefield', 1), ('going', 1), ('another', 1), ('even', 1), ('guru', 1), ('stumble', 1), ('guide', 1), ('written', 1), ('aficionado', 1)]
[('pc', 3), ('book', 2), ('hardware', 1), ('nutshell', 1), ('practical', 1), ('guide', 1), ('buying', 1), ('building', 1), ('upgrading', 1), ('repairing', 1), ('intel', 1), ('based', 1), ('longtime', 1), ('favorite', 1), ('among', 1), ('user', 1), ('third', 1), ('edition', 1), ('contains', 1), ('useful', 1), ('information', 1), ('running', 1), ('either', 1), ('window', 1), ('linux', 1), ('operating', 1), ('system', 1), ('written', 1), ('novice', 1), ('seasoned', 1), ('professional', 1), ('alike', 1), ('packed', 1)]
[('tool', 2), ('web', 2), ('animation', 2), ('learn', 2), ('flash', 1), ('c', 1), ('premier', 1), ('creating', 1), ('interactive', 1), ('site', 1), ('intimidating', 1), ('entertaining', 1), ('reference', 1), ('tutorial', 1), ('provides', 1), ('reader', 1), ('friendly', 1), ('primer', 1), ('guided', 1), ('tour', 1), ('program', 1), ('capability', 1), ('beginner', 1), ('use', 1), ('software', 1), ('time', 1), ('experienced', 1), ('user', 1), ('quickly', 1)]
[('company', 3), ('want', 2), ('every', 1), ('large', 1), ('small', 1), ('boost', 1), ('sale', 1), ('control', 1), ('spending', 1), ('keep', 1), ('auditor', 1), ('internal', 1), ('revenue', 1), ('service', 1), ('happy', 1), ('waste', 1), ('time', 1), ('paperwork', 1), ('day', 1), ('growing', 1), ('number', 1), ('turning', 1), ('quickbooks', 1), ('accounting', 1), ('software', 1), ('speed', 1), ('bookkeeping', 1), ('effort', 1), ('manage', 1)]
[('rail', 3), ('ready', 1), ('go', 1), ('next', 1), ('level', 1), ('examining', 1), ('part', 1), ('ruby', 1), ('make', 1), ('framework', 1), ('possible', 1), ('deploying', 1), ('large', 1), ('application', 1), ('advanced', 1), ('offer', 1), ('depth', 1), ('look', 1), ('technique', 1), ('dealing', 1), ('database', 1), ('security', 1), ('performance', 1), ('web', 1), ('service', 1), ('chapter', 1), ('book', 1), ('help', 1), ('understand', 1)]
[('setting', 2), ('feature', 2), ('window', 2), ('unique', 1), ('reference', 1), ('thoroughly', 1), ('document', 1), ('every', 1), ('important', 1), ('microsoft', 1), ('new', 1), ('operating', 1), ('system', 1), ('alphabetical', 1), ('listing', 1), ('hundred', 1), ('command', 1), ('menu', 1), ('listboxes', 1), ('button', 1), ('scrollbars', 1), ('element', 1), ('vista', 1), ('book', 1), ('simple', 1), ('organization', 1), ('easily', 1), ('find', 1), ('tool', 1)]
[('window', 3), ('xp', 3), ('tool', 1), ('easy', 1), ('trip', 1), ('annoying', 1), ('trait', 1), ('often', 1), ('leverage', 1), ('productivity', 1), ('power', 1), ('user', 1), ('troll', 1), ('online', 1), ('resource', 1), ('documentation', 1), ('expertise', 1), ('lucky', 1), ('find', 1), ('friend', 1), ('valuable', 1), ('tip', 1), ('trick', 1), ('keyboard', 1), ('shortcut', 1), ('undocumented', 1), ('double', 1), ('click', 1)]
[('sql', 3), ('statement', 3), ('oracle', 2), ('database', 2), ('poorly', 2), ('important', 1), ('challenge', 1), ('faced', 1), ('administrator', 1), ('developer', 1), ('need', 1), ('tune', 1), ('execute', 1), ('efficiently', 1), ('tuned', 1), ('leading', 1), ('cause', 1), ('substandard', 1), ('performance', 1), ('poor', 1), ('response', 1), ('time', 1), ('perform', 1), ('result', 1), ('frustration', 1)]
[('person', 2), ('ten', 1), ('year', 1), ('ago', 1), ('groupware', 1), ('bundled', 1), ('email', 1), ('calendar', 1), ('application', 1), ('helped', 1), ('track', 1), ('flow', 1), ('work', 1), ('within', 1), ('organization', 1), ('workflow', 1), ('today', 1), ('enterprise', 1), ('mean', 1), ('monitoring', 1), ('orchestrating', 1), ('massive', 1), ('system', 1), ('new', 1), ('technology', 1), ('called', 1), ('business', 1), ('process', 1), ('management', 1), ('bpm', 1), ('help', 1), ('software', 1), ('architect', 1), ('developer', 1), ('design', 1)]
[('sendmail', 4), ('configuration', 2), ('system', 2), ('administrator', 2), ('language', 2), ('often', 1), ('word', 1), ('strike', 1), ('dread', 1), ('heart', 1), ('without', 1), ('reason', 1), ('complex', 1), ('programming', 1), ('used', 1), ('infrequently', 1), ('installed', 1), ('configured', 1), ('average', 1)]
[('tivo', 2), ('hack', 2), ('help', 1), ('personal', 1), ('video', 1), ('recorder', 1), ('armed', 1), ('screwdriver', 1), ('basic', 1), ('understanding', 1), ('pc', 1), ('hardware', 1), ('willingness', 1), ('learn', 1), ('preeminent', 1), ('hackability', 1), ('awaits', 1), ('book', 1), ('includes', 1), ('changing', 1), ('order', 1), ('recorded', 1), ('program', 1), ('activating', 1), ('second', 1), ('skip', 1), ('blaze', 1), ('commercial', 1), ('upgrading', 1)]
[('wcf', 2), ('service', 2), ('programming', 1), ('authoritative', 1), ('bestselling', 1), ('introduction', 1), ('microsoft', 1), ('unified', 1), ('platform', 1), ('developing', 1), ('oriented', 1), ('application', 1), ('soa', 1), ('window', 1), ('hailed', 1), ('definitive', 1), ('treatment', 1), ('available', 1), ('relentlessly', 1), ('practical', 1), ('book', 1), ('provides', 1), ('insight', 1), ('documentation', 1), ('help', 1), ('learn', 1), ('topic', 1), ('skill', 1), ('need', 1)]
[('blackberry', 3), ('become', 1), ('invaluable', 1), ('tool', 1), ('need', 1), ('stay', 1), ('connected', 1), ('loop', 1), ('take', 1), ('advantage', 1), ('feature', 1), ('marvelous', 1), ('communication', 1), ('device', 1), ('offer', 1), ('web', 1), ('surfing', 1), ('email', 1), ('hack', 1), ('enhance', 1), ('mobile', 1)]
[('window', 5), ('server', 2), ('exchange', 2), ('powershell', 1), ('formerly', 1), ('know', 1), ('codename', 1), ('monad', 1), ('available', 1), ('xp', 1), ('vista', 1), ('soon', 1), ('mom', 1), ('future', 1), ('administration', 1), ('setting', 1), ('automated', 1), ('build', 1), ('environment', 1), ('managing', 1), ('email', 1), ('client', 1), ('organization', 1), ('tool', 1), ('reduces', 1)]
[('application', 2), ('using', 2), ('silverlight', 2), ('step', 2), ('design', 1), ('rich', 1), ('internet', 1), ('rias', 1), ('web', 1), ('microsoft', 1), ('hot', 1), ('runtime', 1), ('available', 1), ('ebook', 1), ('concise', 1), ('easy', 1), ('understand', 1), ('introduction', 1), ('provides', 1), ('complete', 1), ('instruction', 1), ('everything', 1), ('offer', 1), ('including', 1), ('tool', 1), ('animation', 1), ('vector', 1), ('graphic', 1), ('video', 1), ('playback', 1), ('net', 1)]
[('mysql', 3), ('although', 1), ('source', 1), ('code', 1), ('open', 1), ('sense', 1), ('publicly', 1), ('available', 1), ('essentially', 1), ('closed', 1), ('understand', 1), ('book', 1), ('sasha', 1), ('pachev', 1), ('former', 1), ('member', 1), ('development', 1), ('team', 1), ('provides', 1), ('comprehensive', 1), ('tour', 1), ('show', 1), ('figure', 1), ('inner', 1), ('working', 1), ('powerful', 1), ('database', 1), ('go', 1)]
[('single', 2), ('outside', 1), ('world', 1), ('supercomputer', 1), ('appears', 1), ('system', 1), ('fact', 1), ('cluster', 1), ('computer', 1), ('share', 1), ('local', 1), ('area', 1), ('network', 1), ('ability', 1), ('work', 1), ('together', 1), ('problem', 1), ('team', 1), ('many', 1), ('business', 1), ('used', 1), ('consider', 1), ('supercomputing', 1), ('beyond', 1), ('reach', 1), ('budget', 1), ('new', 1), ('linux', 1), ('application', 1), ('made', 1), ('high', 1), ('performance', 1)]
[('car', 4), ('pc', 2), ('carputer', 1), ('tricked', 1), ('electronics', 1), ('playing', 1), ('radio', 1), ('music', 1), ('dvd', 1), ('movie', 1), ('connecting', 1), ('internet', 1), ('navigating', 1), ('tracking', 1), ('satellite', 1), ('taking', 1), ('photo', 1), ('electronic', 1), ('gadget', 1), ('person', 1), ('want', 1), ('device', 1), ('managed', 1), ('controlled', 1), ('single', 1), ('screen', 1), ('interface', 1), ('place', 1)]
[('mac', 4), ('leopard', 3), ('o', 2), ('matter', 1), ('experience', 1), ('requires', 1), ('reacquainted', 1), ('little', 1), ('guide', 1), ('packed', 1), ('tip', 1), ('technique', 1), ('help', 1), ('detail', 1), ('need', 1), ('learn', 1), ('new', 1), ('feature', 1), ('configure', 1), ('system', 1), ('pronto', 1), ('pocket', 1)]
[('application', 3), ('ajax', 2), ('web', 2), ('enhance', 2), ('bring', 1), ('many', 1), ('advantage', 1), ('existing', 1), ('without', 1), ('forcing', 1), ('redo', 1), ('whole', 1), ('thing', 1), ('book', 1), ('explains', 1), ('add', 1), ('rather', 1), ('replace', 1), ('way', 1), ('work', 1), ('instance', 1), ('traditional', 1), ('based', 1), ('submitting', 1), ('form', 1), ('update', 1), ('table', 1), ('adding', 1)]
[('tier', 2), ('framework', 2), ('hour', 2), ('web', 1), ('soared', 1), ('popularity', 1), ('past', 1), ('year', 1), ('due', 1), ('increasing', 1), ('complexity', 1), ('java', 1), ('need', 1), ('work', 1), ('done', 1), ('fewer', 1), ('resource', 1), ('developer', 1), ('used', 1), ('spend', 1), ('writing', 1), ('low', 1), ('level', 1), ('feature', 1), ('use', 1), ('written', 1), ('build', 1), ('presentation', 1), ('start', 1), ('coding', 1), ('good', 1)]
[('voice', 2), ('internet', 2), ('voip', 2), ('service', 2), ('protocol', 1), ('gaining', 1), ('lot', 1), ('attention', 1), ('day', 1), ('company', 1), ('individual', 1), ('switch', 1), ('standard', 1), ('telephone', 1), ('phone', 1), ('via', 1), ('reason', 1), ('simple', 1), ('single', 1), ('network', 1), ('carry', 1), ('data', 1), ('easier', 1), ('scale', 1), ('maintain', 1), ('administer', 1), ('added', 1), ('bonus', 1), ('cheaper', 1)]
[('mac', 4), ('microsoft', 3), ('office', 3), ('number', 1), ('selling', 1), ('software', 1), ('word', 1), ('excel', 1), ('powerpoint', 1), ('entourage', 1), ('application', 1), ('dominant', 1), ('world', 1), ('among', 1), ('pc', 1), ('user', 1), ('greatly', 1), ('improved', 1), ('enhanced', 1), ('take', 1), ('advantage', 1), ('latest', 1), ('ox', 1), ('feature', 1), ('short', 1), ('wildly', 1)]
[('million', 2), ('year', 1), ('window', 1), ('xp', 1), ('pre', 1), ('installed', 1), ('pc', 1), ('sold', 1), ('worldwide', 1), ('making', 1), ('world', 1), ('popular', 1), ('operating', 1), ('system', 1), ('proving', 1), ('frustrated', 1), ('user', 1), ('everywhere', 1), ('preponderance', 1), ('equate', 1), ('ease', 1), ('use', 1), ('literally', 1), ('thousand', 1), ('program', 1), ('tool', 1), ('command', 1), ('screen', 1), ('script', 1), ('button', 1), ('tab', 1)]
[('step', 2), ('discover', 1), ('easy', 1), ('ria', 1), ('development', 1), ('kind', 1), ('handbook', 1), ('adobe', 1), ('developer', 1), ('library', 1), ('several', 1), ('clear', 1), ('mini', 1), ('tutorial', 1), ('teach', 1), ('web', 1), ('service', 1), ('event', 1), ('handling', 1), ('designing', 1), ('user', 1), ('interface', 1), ('reusable', 1), ('component', 1), ('finishing', 1), ('guide', 1), ('able', 1), ('build', 1), ('flash', 1), ('application', 1), ('ranging', 1)]
[('window', 4), ('new', 3), ('presentation', 2), ('wpf', 2), ('graphic', 2), ('foundation', 1), ('formerly', 1), ('known', 1), ('code', 1), ('name', 1), ('avalon', 1), ('brand', 1), ('framework', 1), ('xp', 1), ('vista', 1), ('next', 1), ('version', 1), ('client', 1), ('operating', 1), ('system', 1), ('developer', 1), ('cornucopia', 1), ('technology', 1), ('including', 1), ('engine', 1), ('support', 1), ('animation', 1)]
[('apple', 2), ('iwork', 2), ('introduced', 1), ('january', 1), ('innovative', 1), ('new', 1), ('suite', 1), ('document', 1), ('presentation', 1), ('software', 1), ('caliber', 1), ('groundbreaking', 1), ('digital', 1), ('medium', 1), ('application', 1), ('wholly', 1), ('dedicated', 1), ('mac', 1), ('user', 1), ('care', 1), ('artistry', 1), ('creativity', 1), ('office', 1), ('productivity', 1)]
[('website', 2), ('take', 2), ('success', 2), ('remember', 1), ('optimized', 1), ('merely', 1), ('day', 1), ('appear', 1), ('time', 1), ('changed', 1), ('today', 1), ('optimization', 1), ('spell', 1), ('difference', 1), ('enterprise', 1), ('failure', 1), ('lot', 1), ('know', 1), ('achieve', 1), ('book', 1), ('comprehensive', 1), ('guide', 1), ('tip', 1), ('technique', 1), ('secret', 1), ('standard', 1), ('method', 1)]
[('flex', 4), ('want', 1), ('try', 1), ('hand', 1), ('developing', 1), ('rich', 1), ('internet', 1), ('application', 1), ('adobe', 1), ('already', 1), ('experience', 1), ('framework', 1), ('net', 1), ('java', 1), ('ideal', 1), ('book', 1), ('started', 1), ('programming', 1), ('give', 1), ('solid', 1), ('understanding', 1), ('core', 1), ('concept', 1), ('valuable', 1), ('insight', 1), ('use', 1), ('specific', 1)]
[('rail', 2), ('brings', 1), ('new', 1), ('level', 1), ('stability', 1), ('power', 1), ('acclaimed', 1), ('web', 1), ('development', 1), ('framework', 1), ('keeping', 1), ('track', 1), ('numerous', 1), ('moving', 1), ('part', 1), ('still', 1), ('chore', 1), ('pocket', 1), ('reference', 1), ('offer', 1), ('painless', 1), ('alternative', 1), ('hunting', 1), ('resource', 1), ('online', 1), ('brief', 1), ('yet', 1), ('thorough', 1), ('explanation', 1), ('frequently', 1), ('used', 1), ('method', 1), ('structure', 1)]
[('subversion', 2), ('control', 2), ('written', 1), ('member', 1), ('development', 1), ('team', 1), ('maintains', 1), ('official', 1), ('guide', 1), ('reference', 1), ('manual', 1), ('popular', 1), ('open', 1), ('source', 1), ('revision', 1), ('technology', 1), ('new', 1), ('edition', 1), ('cover', 1), ('complete', 1), ('introduction', 1), ('guided', 1), ('tour', 1), ('capability', 1), ('along', 1), ('best', 1), ('practice', 1), ('recommendation', 1), ('version', 1)]
[('visual', 2), ('studio', 2), ('start', 1), ('template', 1), ('project', 1), ('ranging', 1), ('window', 1), ('application', 1), ('web', 1), ('service', 1), ('extensive', 1), ('help', 1), ('line', 1), ('documentation', 1), ('net', 1), ('might', 1), ('mistaken', 1), ('tool', 1), ('unsophisticated', 1), ('user', 1), ('true', 1), ('developer', 1), ('soon', 1), ('discover', 1), ('basic', 1), ('operation', 1), ('fairly', 1), ('self', 1), ('explanatory', 1), ('le', 1), ('obvious', 1)]
[('adobe', 4), ('apollo', 3), ('guide', 2), ('desktop', 2), ('flex', 2), ('written', 1), ('member', 1), ('product', 1), ('team', 1), ('official', 1), ('alpha', 1), ('release', 1), ('new', 1), ('cross', 1), ('platform', 1), ('runtime', 1), ('lab', 1), ('developer', 1), ('pocket', 1), ('explains', 1), ('build', 1), ('deploy', 1), ('flash', 1), ('based', 1), ('rich', 1), ('internet', 1), ('application', 1), ('rias', 1), ('using', 1), ('framework', 1)]
[('code', 5), ('write', 3), ('tell', 2), ('track', 2), ('book', 1), ('faster', 1), ('fewer', 1), ('memory', 1), ('leak', 1), ('even', 1), ('debug', 1), ('build', 1), ('product', 1), ('better', 1), ('way', 1), ('keep', 1), ('bug', 1), ('plus', 1), ('thing', 1), ('wish', 1), ('known', 1)]
[('actionscript', 4), ('flash', 2), ('programming', 2), ('language', 2), ('essential', 2), ('huge', 1), ('upgrade', 1), ('enhancement', 1), ('performance', 1), ('feature', 1), ('set', 1), ('ease', 1), ('use', 1), ('cleanliness', 1), ('sophistication', 1), ('considerable', 1), ('focus', 1), ('core', 1), ('object', 1), ('oriented', 1), ('along', 1), ('player', 1), ('api', 1)]
[('coldfusion', 2), ('powerful', 2), ('easy', 2), ('language', 2), ('enjoyed', 1), ('widespread', 1), ('use', 1), ('among', 1), ('developer', 1), ('learn', 1), ('platform', 1), ('creating', 1), ('deploying', 1), ('dynamic', 1), ('web', 1), ('application', 1), ('simple', 1), ('tag', 1), ('based', 1), ('make', 1), ('handle', 1), ('basic', 1), ('task', 1), ('processing', 1), ('form', 1), ('data', 1), ('querying', 1), ('database', 1), ('enough', 1), ('deliver', 1), ('highly', 1), ('scalable', 1)]
[('software', 3), ('change', 2), ('programmer', 2), ('greatest', 1), ('frustration', 1), ('project', 1), ('version', 1), ('control', 1), ('art', 1), ('managing', 1), ('information', 1), ('today', 1), ('increasingly', 1), ('fast', 1), ('pace', 1), ('development', 1), ('make', 1), ('small', 1), ('day', 1), ('undo', 1), ('next', 1), ('heightened', 1), ('problem', 1), ('consecutive', 1), ('work', 1), ('code', 1), ('single', 1)]
[('forum', 2), ('numerous', 1), ('online', 1), ('javascript', 1), ('dhtml', 1), ('majority', 1), ('question', 1), ('begin', 1), ('new', 1), ('cookbook', 1), ('provides', 1), ('answer', 1), ('reading', 1), ('thousand', 1), ('thread', 1), ('year', 1), ('author', 1), ('scripting', 1), ('pioneer', 1), ('danny', 1), ('goodman', 1), ('compiled', 1), ('list', 1), ('problem', 1), ('frequently', 1), ('vex', 1), ('scripters', 1), ('various', 1), ('experience', 1), ('level', 1)]
[('web', 2), ('new', 2), ('today', 1), ('world', 1), ('javascript', 1), ('dynamic', 1), ('html', 1), ('center', 1), ('hot', 1), ('approach', 1), ('designing', 1), ('highly', 1), ('interactive', 1), ('page', 1), ('client', 1), ('side', 1), ('environment', 1), ('mind', 1), ('edition', 1), ('book', 1), ('offer', 1), ('bite', 1), ('sized', 1), ('solution', 1), ('specific', 1), ('scripting', 1), ('problem', 1), ('developer', 1), ('commonly', 1), ('face', 1), ('recipe', 1), ('includes', 1), ('focused', 1)]
[('fcs', 2), ('feature', 2), ('advent', 1), ('flash', 1), ('communication', 1), ('server', 1), ('mx', 1), ('macromedia', 1), ('belief', 1), ('edge', 1), ('breakthrough', 1), ('think', 1), ('internet', 1), ('designed', 1), ('provide', 1), ('web', 1), ('developer', 1), ('mean', 1), ('add', 1), ('polished', 1), ('interactive', 1), ('audio', 1), ('video', 1), ('site', 1), ('sort', 1), ('user', 1), ('come', 1)]
[('net', 4), ('framework', 4), ('essential', 2), ('rd', 2), ('edition', 2), ('fully', 1), ('updated', 1), ('version', 1), ('objective', 1), ('concise', 1), ('nonsense', 1), ('overview', 1), ('microsoft', 1), ('developing', 1), ('web', 1), ('application', 1), ('service', 1), ('written', 1), ('intermediate', 1), ('advanced', 1), ('vb', 1), ('java', 1), ('delphi', 1), ('developer', 1)]
[('flash', 3), ('actionscript', 2), ('programming', 2), ('september', 1), ('macromedia', 1), ('released', 1), ('mx', 1), ('dramatically', 1), ('improved', 1), ('version', 1), ('language', 1), ('introduces', 1), ('formal', 1), ('object', 1), ('oriented', 1), ('syntax', 1), ('methodology', 1), ('creating', 1), ('application', 1), ('developer', 1), ('perspective', 1), ('new', 1), ('oop', 1), ('based', 1), ('technique', 1)]
[('customer', 2), ('ticketing', 2), ('system', 2), ('typical', 1), ('organization', 1), ('always', 1), ('plenty', 1), ('pay', 1), ('vendor', 1), ('invoice', 1), ('answer', 1), ('inquiry', 1), ('fix', 1), ('bug', 1), ('hardware', 1), ('software', 1), ('need', 1), ('know', 1), ('want', 1), ('keep', 1), ('track', 1), ('left', 1), ('come', 1), ('allows', 1), ('check', 1), ('status', 1), ('various', 1)]
[('sharepoint', 3), ('version', 2), ('considering', 1), ('vastly', 1), ('improved', 1), ('concise', 1), ('practical', 1), ('friendly', 1), ('guide', 1), ('teach', 1), ('latest', 1), ('microsoft', 1), ('information', 1), ('sharing', 1), ('collaboration', 1), ('platform', 1), ('essential', 1), ('demonstrates', 1), ('business', 1), ('use', 1), ('control', 1), ('document', 1), ('structure', 1)]
[('reliable', 1), ('flexible', 1), ('configurable', 1), ('enough', 1), ('solve', 1), ('mail', 1), ('routing', 1), ('need', 1), ('web', 1), ('site', 1), ('sendmail', 1), ('withstood', 1), ('test', 1), ('time', 1), ('become', 1), ('le', 1), ('daunting', 1), ('complexity', 1), ('even', 1), ('experienced', 1), ('system', 1), ('administrator', 1), ('found', 1), ('challenging', 1), ('configure', 1), ('difficult', 1), ('understand', 1), ('help', 1), ('unraveling', 1), ('intricacy', 1)]
[('dojo', 3), ('javascript', 2), ('toolkit', 2), ('ajax', 1), ('specific', 1), ('framework', 1), ('popped', 1), ('recent', 1), ('year', 1), ('clearly', 1), ('stand', 1), ('industrial', 1), ('strength', 1), ('solution', 1), ('another', 1), ('definitive', 1), ('guide', 1), ('demonstrates', 1), ('tame', 1), ('extensive', 1), ('library', 1), ('utility', 1), ('build', 1), ('rich', 1), ('responsive', 1)]
[('visual', 3), ('basic', 3), ('microsoft', 2), ('net', 2), ('platform', 2), ('made', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('language', 1), ('million', 1), ('vb', 1), ('developer', 1), ('resisted', 1), ('change', 1), ('integrating', 1), ('feedback', 1), ('customer', 1), ('creating', 1), ('finally', 1), ('right', 1), ('carrot', 1), ('offer', 1), ('power', 1), ('yet', 1), ('restores', 1)]
[('linux', 4), ('system', 3), ('server', 2), ('experienced', 1), ('administrator', 1), ('looking', 1), ('acquire', 1), ('skill', 1), ('seasoned', 1), ('user', 1), ('facing', 1), ('new', 1), ('challenge', 1), ('administration', 1), ('offer', 1), ('practical', 1), ('knowledge', 1), ('managing', 1), ('complete', 1), ('range', 1), ('book', 1), ('summarizes', 1), ('step', 1), ('need', 1), ('build', 1), ('everything', 1), ('standalone', 1), ('soho', 1), ('hub', 1), ('web', 1)]
[('book', 1), ('reilly', 1), ('oracle', 1), ('series', 1), ('authoritative', 1), ('tell', 1), ('whole', 1), ('story', 1), ('complex', 1), ('topic', 1), ('ranging', 1), ('performance', 1), ('tuning', 1), ('use', 1), ('package', 1), ('pl', 1), ('sql', 1), ('new', 1), ('technology', 1), ('power', 1), ('object', 1), ('independent', 1), ('alternative', 1), ('reader', 1), ('need', 1), ('know', 1), ('product', 1), ('feature', 1), ('really', 1), ('work', 1), ('packed', 1)]
[('iphone', 2), ('missing', 2), ('manual', 2), ('expect', 1), ('apple', 1), ('gorgeous', 1), ('book', 1), ('breathtaking', 1), ('subject', 1), ('teeming', 1), ('high', 1), ('quality', 1), ('color', 1), ('graphic', 1), ('custom', 1), ('designed', 1), ('page', 1), ('help', 1), ('accomplish', 1), ('specific', 1), ('task', 1), ('everything', 1), ('web', 1), ('browsing', 1), ('watching', 1), ('video', 1), ('written', 1), ('new', 1), ('york', 1), ('time', 1), ('columnist', 1), ('series', 1), ('creator', 1)]
[('pl', 3), ('sql', 3), ('language', 2), ('writing', 2), ('book', 1), ('steven', 1), ('feuerstein', 1), ('widely', 1), ('recognized', 1), ('world', 1), ('expert', 1), ('oracle', 1), ('distills', 1), ('many', 1), ('year', 1), ('programming', 1), ('teaching', 1), ('set', 1), ('best', 1), ('practice', 1), ('rule', 1), ('code', 1), ('readable', 1), ('maintainable', 1), ('efficient', 1), ('often', 1), ('developer', 1), ('focus', 1), ('simply', 1)]
[('apache', 2), ('web', 2), ('world', 2), ('site', 2), ('far', 1), ('away', 1), ('widely', 1), ('used', 1), ('server', 1), ('platform', 1), ('free', 1), ('rock', 1), ('solid', 1), ('run', 1), ('half', 1), ('ranging', 1), ('huge', 1), ('commerce', 1), ('operation', 1), ('corporate', 1), ('intranet', 1), ('smaller', 1), ('hobby', 1), ('continues', 1), ('maintain', 1), ('popularity', 1), ('drawing', 1), ('new', 1), ('user', 1), ('time', 1), ('work', 1)]
[('web', 5), ('service', 3), ('perl', 2), ('natural', 2), ('application', 2), ('development', 2), ('given', 1), ('fit', 1), ('surprise', 1), ('choice', 1), ('popular', 1), ('programming', 1), ('language', 1), ('strong', 1), ('implementation', 1), ('soap', 1), ('xml', 1), ('rpc', 1), ('leading', 1), ('way', 1), ('distribute', 1), ('using', 1), ('book', 1), ('focus', 1)]
[('perl', 3), ('programming', 2), ('complete', 1), ('guide', 1), ('language', 1), ('range', 1), ('widely', 1), ('programmer', 1), ('universe', 1), ('gathering', 1), ('together', 1), ('convenient', 1), ('form', 1), ('wealth', 1), ('information', 1), ('application', 1), ('cgi', 1), ('script', 1), ('xml', 1), ('processing', 1), ('network', 1), ('database', 1), ('interaction', 1), ('graphical', 1), ('user', 1), ('interface', 1), ('book', 1), ('ideal', 1), ('reference', 1)]
[('java', 2), ('web', 2), ('developer', 2), ('literally', 1), ('hundred', 1), ('example', 1), ('thousand', 1), ('line', 1), ('code', 1), ('servlet', 1), ('jsp', 1), ('cookbook', 1), ('yield', 1), ('tip', 1), ('technique', 1), ('us', 1), ('javaserver', 1), ('page', 1), ('servlets', 1), ('use', 1), ('every', 1), ('day', 1), ('along', 1), ('full', 1), ('fledged', 1), ('solution', 1), ('significant', 1), ('application', 1), ('development', 1), ('problem', 1), ('insert', 1), ('directly', 1)]
[('learn', 1), ('trick', 1), ('trade', 1), ('build', 1), ('architect', 1), ('application', 1), ('scale', 1), ('quickly', 1), ('without', 1), ('high', 1), ('priced', 1), ('headache', 1), ('service', 1), ('level', 1), ('agreement', 1), ('associated', 1), ('enterprise', 1), ('app', 1), ('server', 1), ('proprietary', 1), ('programming', 1), ('database', 1), ('product', 1), ('culled', 1), ('experience', 1), ('flickr', 1), ('lead', 1), ('developer', 1), ('building', 1), ('scalable', 1), ('web', 1), ('site', 1)]
[('mysql', 3), ('database', 2), ('world', 1), ('popular', 1), ('open', 1), ('source', 1), ('designed', 1), ('speed', 1), ('power', 1), ('flexibility', 1), ('mission', 1), ('critical', 1), ('heavy', 1), ('use', 1), ('environment', 1), ('modest', 1), ('application', 1), ('surprisingly', 1), ('rich', 1), ('feature', 1), ('administrator', 1), ('programmer', 1), ('probably', 1), ('love', 1), ('myriad', 1), ('thing', 1), ('sometimes', 1), ('wish', 1)]
[('web', 4), ('site', 3), ('think', 2), ('technical', 1), ('wizard', 1), ('build', 1), ('anyone', 1), ('want', 1), ('create', 1), ('engaging', 1), ('either', 1), ('personal', 1), ('business', 1), ('purpose', 1), ('creating', 1), ('missing', 1), ('manual', 1), ('demystifies', 1), ('process', 1), ('provides', 1), ('tool', 1), ('technique', 1), ('expert', 1), ('guidance', 1), ('developing', 1), ('professional', 1), ('reliable', 1)]
[('dreamweaver', 2), ('mx', 2), ('web', 2), ('site', 2), ('manual', 2), ('macromedia', 1), ('offer', 1), ('rich', 1), ('environment', 1), ('building', 1), ('professional', 1), ('drag', 1), ('drop', 1), ('simplicity', 1), ('clean', 1), ('html', 1), ('code', 1), ('dynamic', 1), ('database', 1), ('driven', 1), ('creation', 1), ('tool', 1), ('come', 1), ('everything', 1), ('except', 1), ('perhaps', 1), ('important', 1), ('feature', 1), ('printed', 1), ('enter', 1), ('missing', 1), ('book', 1)]
[('oracle', 4), ('database', 4), ('perl', 3), ('powerful', 1), ('tool', 1), ('administrator', 1), ('dba', 1), ('realize', 1), ('helpful', 1), ('managing', 1), ('monitoring', 1), ('tuning', 1), ('whether', 1), ('responsible', 1), ('earlier', 1), ('find', 1), ('invaluable', 1), ('addition', 1), ('administration', 1), ('arsenal', 1), ('need', 1)]
[('network', 4), ('high', 2), ('availability', 2), ('whether', 1), ('complex', 1), ('carrier', 1), ('machine', 1), ('supporting', 1), ('small', 1), ('enterprise', 1), ('juno', 1), ('help', 1), ('build', 1), ('reliable', 1), ('resilient', 1), ('include', 1), ('juniper', 1), ('device', 1), ('book', 1), ('valuable', 1), ('advice', 1), ('software', 1), ('upgrade', 1), ('scalability', 1), ('remote', 1), ('monitoring', 1), ('management', 1)]
[('visitor', 3), ('building', 2), ('application', 2), ('web', 1), ('attracts', 1), ('retains', 1), ('regular', 1), ('tricky', 1), ('enough', 1), ('creating', 1), ('social', 1), ('encourages', 1), ('interact', 1), ('another', 1), ('requires', 1), ('careful', 1), ('planning', 1), ('book', 1), ('provides', 1), ('practical', 1), ('solution', 1), ('tough', 1), ('question', 1), ('face', 1), ('effective', 1), ('community', 1), ('site', 1), ('make', 1)]
[('database', 3), ('avoid', 1), ('misunderstanding', 1), ('affect', 1), ('design', 1), ('programming', 1), ('use', 1), ('system', 1), ('whether', 1), ('using', 1), ('oracle', 1), ('db', 1), ('sql', 1), ('server', 1), ('mysql', 1), ('postgresql', 1), ('relational', 1), ('dictionary', 1), ('prevent', 1), ('confusion', 1), ('precise', 1), ('meaning', 1), ('related', 1), ('term', 1), ('attribute', 1), ('nf', 1), ('many', 1), ('correspondence', 1), ('predicate', 1), ('repeating', 1)]
[('iphone', 3), ('new', 2), ('g', 1), ('updated', 1), ('missing', 1), ('manual', 1), ('bring', 1), ('speed', 1), ('quickly', 1), ('york', 1), ('time', 1), ('tech', 1), ('columnist', 1), ('david', 1), ('pogue', 1), ('give', 1), ('guided', 1), ('tour', 1), ('every', 1), ('feature', 1), ('lot', 1), ('tip', 1), ('trick', 1), ('surprise', 1), ('learn', 1), ('make', 1), ('call', 1), ('play', 1), ('song', 1), ('voice', 1), ('control', 1), ('take', 1), ('photo', 1)]
[('data', 3), ('sql', 2), ('server', 2), ('microsoft', 1), ('next', 1), ('generation', 1), ('management', 1), ('analysis', 1), ('solution', 1), ('represents', 1), ('huge', 1), ('leap', 1), ('forward', 1), ('come', 1), ('myriad', 1), ('change', 1), ('deliver', 1), ('increased', 1), ('security', 1), ('scalability', 1), ('power', 1), ('making', 1), ('complete', 1), ('package', 1), ('used', 1), ('properly', 1), ('help', 1), ('organization', 1), ('size', 1), ('meet', 1), ('challenge', 1), ('head', 1)]
[('company', 2), ('technology', 2), ('stake', 1), ('industry', 1), ('staked', 1), ('internet', 1), ('ala', 1), ('google', 1), ('amazon', 1), ('thousand', 1), ('small', 1), ('ecommerce', 1), ('around', 1), ('world', 1), ('likely', 1), ('pluck', 1), ('multiple', 1), ('nugget', 1), ('wisdom', 1), ('book', 1), ('heather', 1), ('clancy', 1), ('business', 1), ('journalist', 1), ('need', 1), ('solve', 1), ('complex', 1)]
[('book', 2), ('sun', 2), ('publisher', 1), ('face', 1), ('copernican', 1), ('change', 1), ('recently', 1), ('publishing', 1), ('solar', 1), ('system', 1), ('opportunitieswere', 1), ('subsidiary', 1), ('right', 1), ('revolving', 1), ('planet', 1), ('around', 1), ('theintellectual', 1), ('property', 1), ('becomes', 1), ('theorbiting', 1), ('opportunity', 1), ('successful', 1), ('st', 1), ('centuryenvironment', 1)]
[('mac', 3), ('o', 3), ('another', 2), ('pogue', 2), ('missing', 2), ('manual', 2), ('set', 1), ('watch', 1), ('soon', 1), ('apple', 1), ('come', 1), ('version', 1), ('david', 1), ('hit', 1), ('street', 1), ('meticulous', 1), ('cover', 1), ('wealth', 1), ('detail', 1), ('new', 1), ('better', 1), ('known', 1), ('tiger', 1), ('faster', 1), ('predecessor', 1), ('nothing', 1), ('fast', 1)]
[('google', 2), ('wave', 2), ('catch', 1), ('revolutionary', 1), ('internet', 1), ('protocol', 1), ('web', 1), ('service', 1), ('let', 1), ('communicate', 1), ('collaborate', 1), ('realtime', 1), ('book', 1), ('understand', 1), ('integrates', 1), ('email', 1), ('instant', 1), ('messaging', 1), ('wiki', 1), ('social', 1), ('networking', 1), ('functionality', 1), ('powerful', 1), ('extensible', 1), ('platform', 1), ('learn', 1), ('use', 1), ('feature', 1)]
[('testing', 3), ('successful', 1), ('software', 1), ('depends', 1), ('scrupulous', 1), ('solid', 1), ('architecture', 1), ('elegant', 1), ('code', 1), ('routine', 1), ('process', 1), ('constant', 1), ('exploration', 1), ('method', 1), ('evolution', 1), ('good', 1), ('idea', 1), ('beautiful', 1), ('offer', 1), ('essay', 1), ('leading', 1), ('tester', 1), ('developer', 1), ('illustrate', 1), ('quality', 1), ('technique', 1)]
[('application', 2), ('web', 1), ('service', 1), ('changed', 1), ('landscape', 1), ('program', 1), ('internet', 1), ('rise', 1), ('xml', 1), ('raft', 1), ('specification', 1), ('built', 1), ('soap', 1), ('led', 1), ('newgeneration', 1), ('distributed', 1), ('finding', 1), ('way', 1), ('new', 1), ('world', 1), ('tricky', 1), ('noise', 1), ('made', 1), ('vendor', 1), ('standard', 1), ('group', 1), ('alike', 1)]
[('facebook', 2), ('company', 2), ('use', 2), ('want', 2), ('college', 1), ('kid', 1), ('anymore', 1), ('thousand', 1), ('site', 1), ('everything', 1), ('project', 1), ('collaboration', 1), ('advertising', 1), ('filling', 1), ('finding', 1), ('job', 1), ('mini', 1), ('missing', 1), ('manual', 1), ('aimed', 1), ('professional', 1), ('help', 1), ('work', 1), ('world', 1), ('whether', 1), ('looking', 1), ('gig', 1), ('boost', 1)]
[('medium', 2), ('music', 2), ('video', 2), ('digital', 1), ('universe', 1), ('filled', 1), ('still', 1), ('imagery', 1), ('begin', 1), ('exploration', 1), ('need', 1), ('learn', 1), ('basic', 1), ('technique', 1), ('collection', 1), ('tip', 1), ('hack', 1), ('tutorial', 1), ('designed', 1), ('accelerate', 1), ('mastery', 1), ('cover', 1), ('photography', 1), ('isolated', 1), ('form', 1), ('expression', 1)]
[('platform', 2), ('java', 2), ('net', 2), ('document', 1), ('review', 1), ('security', 1), ('feature', 1), ('popular', 1), ('modern', 1), ('development', 1), ('ee', 1), ('choice', 1), ('random', 1), ('represent', 1), ('certain', 1), ('extent', 1), ('competition', 1), ('unix', 1), ('window', 1), ('system', 1), ('largely', 1), ('defined', 1), ('software', 1), ('evolution', 1), ('last', 1), ('decade', 1), ('although', 1)]
[('iphone', 3), ('apps', 2), ('find', 2), ('best', 2), ('choose', 1), ('mind', 1), ('boggling', 1), ('number', 1), ('way', 1), ('make', 1), ('favorite', 1), ('device', 1), ('anything', 1), ('imagine', 1), ('almost', 1), ('certainly', 1), ('thing', 1), ('never', 1), ('think', 1), ('hard', 1), ('ipod', 1), ('touch', 1), ('frustratingly', 1), ('difficult', 1), ('one', 1)]
[('web', 3), ('application', 3), ('involves', 1), ('many', 1), ('specialist', 1), ('take', 1), ('ops', 1), ('ensure', 1), ('everything', 1), ('work', 1), ('together', 1), ('throughout', 1), ('lifetime', 1), ('expertise', 1), ('need', 1), ('start', 1), ('get', 1), ('unexpected', 1), ('spike', 1), ('traffic', 1), ('new', 1), ('feature', 1), ('cause', 1), ('mature', 1), ('fail', 1), ('collection', 1), ('essay', 1)]
[('asp', 3), ('net', 3), ('reilly', 1), ('updated', 1), ('bestselling', 1), ('tutorial', 1), ('world', 1), ('leading', 1), ('web', 1), ('development', 1), ('tool', 1), ('microsoft', 1), ('programming', 1), ('third', 1), ('edition', 1), ('author', 1), ('jesse', 1), ('liberty', 1), ('dan', 1), ('hurwitz', 1), ('give', 1), ('lowdown', 1), ('technology', 1), ('latest', 1), ('version', 1), ('visual', 1), ('studio', 1), ('among', 1), ('significant', 1), ('improvement', 1)]
[('web', 2), ('site', 2), ('order', 1), ('establish', 1), ('maintain', 1), ('successful', 1), ('presence', 1), ('designing', 1), ('creative', 1), ('half', 1), ('battle', 1), ('good', 1), ('intricate', 1), ('infrastructure', 1), ('unable', 1), ('measure', 1), ('effectiveness', 1), ('every', 1), ('business', 1), ('desperate', 1), ('feedback', 1), ('visitor', 1), ('visit', 1), ('information', 1)]
[('network', 2), ('responsible', 1), ('know', 1), ('sinking', 1), ('feeling', 1), ('pager', 1), ('gone', 1), ('broken', 1), ('figure', 1), ('using', 1), ('dial', 1), ('connection', 1), ('home', 1), ('drive', 1), ('office', 1), ('dig', 1), ('protocol', 1), ('analyzer', 1), ('spend', 1), ('next', 1), ('fourhours', 1), ('trying', 1), ('put', 1), ('thing', 1), ('back', 1), ('together', 1), ('staff', 1)]
[('ant', 3), ('java', 2), ('soon', 1), ('launch', 1), ('succeeded', 1), ('taking', 1), ('world', 1), ('storm', 1), ('becoming', 1), ('widely', 1), ('used', 1), ('tool', 1), ('building', 1), ('application', 1), ('environment', 1), ('popular', 1), ('technology', 1), ('quickly', 1), ('went', 1), ('series', 1), ('early', 1), ('revision', 1), ('cycle', 1), ('new', 1), ('version', 1), ('functionality', 1), ('added', 1), ('complexity', 1), ('introduced', 1)]
[('sql', 4), ('nutshell', 3), ('language', 3), ('applies', 1), ('eminently', 1), ('useful', 1), ('format', 1), ('structured', 1), ('query', 1), ('elegant', 1), ('complex', 1), ('descriptive', 1), ('used', 1), ('create', 1), ('manipulate', 1), ('large', 1), ('store', 1), ('data', 1), ('programmer', 1), ('analyst', 1), ('database', 1), ('administrator', 1), ('new', 1), ('second', 1), ('edition', 1), ('essential', 1), ('date', 1)]
[('database', 3), ('enjoy', 2), ('expert', 2), ('sql', 2), ('writing', 1), ('software', 1), ('except', 1), ('code', 1), ('hibernate', 1), ('developer', 1), ('notebook', 1), ('fiddling', 1), ('rest', 1), ('application', 1), ('fun', 1), ('part', 1), ('even', 1), ('dread', 1), ('tedious', 1), ('plumbing', 1), ('typographical', 1), ('spaghetti', 1), ('needed', 1), ('put', 1), ('java', 1), ('program', 1)]
[('spam', 2), ('annoyance', 1), ('factor', 1), ('individual', 1), ('user', 1), ('whose', 1), ('email', 1), ('crammed', 1), ('pitch', 1), ('pornography', 1), ('absurd', 1), ('moneymaking', 1), ('scheme', 1), ('dubious', 1), ('health', 1), ('product', 1), ('fierce', 1), ('organization', 1), ('cost', 1), ('lost', 1), ('productivity', 1), ('burned', 1), ('bandwidth', 1), ('astronomical', 1), ('society', 1), ('grappling', 1), ('solution', 1), ('burgeoning', 1), ('crisis', 1)]
[('book', 2), ('busy', 1), ('programmer', 1), ('want', 1), ('succinct', 1), ('yet', 1), ('readable', 1), ('guide', 1), ('linq', 1), ('pocket', 1), ('reference', 1), ('tell', 1), ('exactly', 1), ('need', 1), ('know', 1), ('without', 1), ('long', 1), ('introduction', 1), ('bloated', 1), ('sample', 1), ('despite', 1), ('conciseness', 1), ('skimp', 1), ('depth', 1), ('detail', 1), ('embrace', 1), ('conceptual', 1), ('challenge', 1), ('learning', 1)]
[('window', 4), ('wcf', 2), ('service', 2), ('easy', 1), ('use', 1), ('introduction', 1), ('microsoft', 1), ('communication', 1), ('foundation', 1), ('ideal', 1), ('developer', 1), ('want', 1), ('learn', 1), ('build', 1), ('company', 1), ('network', 1), ('part', 1), ('enterprise', 1), ('system', 1), ('built', 1), ('vista', 1), ('longhorn', 1), ('available', 1), ('xp', 1), ('provides', 1), ('platform', 1), ('oriented', 1), ('architecture', 1)]
[('excellent', 1), ('computer', 1), ('book', 1), ('inherently', 1), ('passive', 1), ('reader', 1), ('simply', 1), ('take', 1), ('text', 1), ('without', 1), ('opportunity', 1), ('react', 1), ('oracle', 1), ('pl', 1), ('sql', 1), ('developer', 1), ('workbook', 1), ('different', 1), ('kind', 1), ('animal', 1), ('designed', 1), ('engage', 1), ('actively', 1), ('solving', 1), ('programming', 1), ('problem', 1), ('immediately', 1), ('help', 1), ('apply', 1)]
[('right', 3), ('mysql', 2), ('need', 1), ('find', 1), ('sql', 1), ('keyword', 1), ('client', 1), ('command', 1), ('line', 1), ('option', 1), ('away', 1), ('turn', 1), ('convenient', 1), ('reference', 1), ('known', 1), ('speed', 1), ('flexibility', 1), ('system', 1), ('cover', 1), ('thoroughly', 1), ('packed', 1), ('many', 1), ('capability', 1), ('odds', 1), ('remembering', 1), ('particular', 1), ('function', 1), ('statement', 1), ('moment', 1), ('pretty', 1)]
[('tool', 4), ('java', 2), ('true', 1), ('craftsman', 1), ('need', 1), ('best', 1), ('finest', 1), ('work', 1), ('programmer', 1), ('different', 1), ('power', 1), ('delivers', 1), ('open', 1), ('source', 1), ('designed', 1), ('improve', 1), ('development', 1), ('practice', 1), ('developer', 1), ('size', 1), ('team', 1), ('organization', 1), ('chapter', 1), ('includes', 1), ('series', 1), ('short', 1), ('article', 1), ('particular', 1), ('whether', 1), ('build', 1)]
[('hibernate', 2), ('java', 2), ('database', 2), ('different', 2), ('world', 2), ('harnessing', 1), ('ideal', 1), ('introduction', 1), ('popular', 1), ('framework', 1), ('let', 1), ('developer', 1), ('work', 1), ('information', 1), ('relational', 1), ('easily', 1), ('efficiently', 1), ('object', 1), ('often', 1), ('involve', 1), ('skill', 1), ('specialization', 1), ('bridging', 1)]
[('place', 2), ('day', 2), ('want', 1), ('find', 1), ('every', 1), ('pizza', 1), ('within', 1), ('mile', 1), ('radius', 1), ('dog', 1), ('park', 1), ('new', 1), ('town', 1), ('central', 1), ('meeting', 1), ('class', 1), ('club', 1), ('group', 1), ('friend', 1), ('cheapest', 1), ('gas', 1), ('station', 1), ('basis', 1), ('location', 1), ('convicted', 1), ('sex', 1), ('offender', 1), ('area', 1), ('considering', 1), ('moving', 1), ('application', 1), ('serendipitous', 1)]
[('source', 3), ('code', 3), ('open', 2), ('beauty', 1), ('making', 1), ('freely', 1), ('available', 1), ('curse', 1), ('trying', 1), ('organize', 1), ('chaos', 1), ('development', 1), ('evolve', 1), ('cv', 1), ('concurrent', 1), ('version', 1), ('system', 1), ('tool', 1), ('managing', 1), ('distributing', 1), ('allows', 1), ('multiple', 1), ('user', 1), ('dispersed', 1), ('wide', 1), ('geographic', 1), ('area', 1), ('work', 1), ('file', 1), ('time', 1)]
[('excel', 3), ('application', 2), ('simple', 1), ('calculation', 1), ('list', 1), ('critical', 1), ('business', 1), ('management', 1), ('system', 1), ('dominant', 1), ('spreadsheet', 1), ('widely', 1), ('used', 1), ('software', 1), ('world', 1), ('chance', 1), ('good', 1), ('use', 1), ('matter', 1), ('level', 1), ('expertise', 1), ('want', 1), ('copy', 1), ('pocket', 1), ('guide', 1), ('close', 1), ('packed', 1)]
[('search', 3), ('google', 3), ('beneath', 1), ('deceptively', 1), ('simple', 1), ('form', 1), ('remarkably', 1), ('powerful', 1), ('flexible', 1), ('engine', 1), ('index', 1), ('billion', 1), ('web', 1), ('page', 1), ('handling', 1), ('million', 1), ('day', 1), ('know', 1), ('looking', 1), ('somewhere', 1), ('make', 1), ('work', 1), ('crafted', 1), ('best', 1), ('selling', 1), ('hack', 1), ('title', 1)]
[('linux', 3), ('desktop', 3), ('system', 2), ('mac', 1), ('o', 1), ('garner', 1), ('praise', 1), ('pundit', 1), ('window', 1), ('xp', 1), ('attracts', 1), ('virus', 1), ('quietly', 1), ('installed', 1), ('million', 1), ('every', 1), ('year', 1), ('programmer', 1), ('administrator', 1), ('business', 1), ('user', 1), ('educator', 1), ('breath', 1), ('fresh', 1), ('air', 1), ('needed', 1), ('alternative', 1), ('operating', 1)]
[('oracle', 3), ('need', 2), ('view', 2), ('work', 1), ('told', 1), ('data', 1), ('dictionary', 1), ('large', 1), ('complex', 1), ('grows', 1), ('larger', 1), ('new', 1), ('release', 1), ('basic', 1), ('element', 1), ('database', 1), ('interact', 1), ('regularly', 1), ('sheer', 1), ('number', 1), ('table', 1), ('make', 1), ('difficult', 1), ('remember', 1), ('le', 1), ('name', 1)]
[('oracle', 3), ('reference', 3), ('dba', 3), ('checklist', 2), ('pocket', 2), ('step', 2), ('database', 1), ('administration', 1), ('complex', 1), ('stressful', 1), ('job', 1), ('series', 1), ('easy', 1), ('use', 1), ('concise', 1), ('summarizes', 1), ('enormous', 1), ('number', 1), ('task', 1), ('perform', 1), ('section', 1), ('take', 1), ('cookbook', 1), ('approach', 1), ('presenting', 1), ('quick', 1), ('material', 1)]
[('oracle', 2), ('platform', 2), ('software', 2), ('designed', 1), ('database', 1), ('product', 1), ('flexible', 1), ('configurable', 1), ('operate', 1), ('variety', 1), ('hardware', 1), ('succeeded', 1), ('run', 1), ('seventy', 1), ('computer', 1), ('mainframe', 1), ('pc', 1), ('network', 1), ('handheld', 1), ('pda', 1), ('secret', 1), ('flexibility', 1), ('lie', 1), ('initialization', 1), ('parameter', 1), ('whose', 1)]
[('answer', 3), ('pl', 3), ('sql', 3), ('oracle', 2), ('need', 2), ('good', 1), ('book', 1), ('trusty', 1), ('copy', 1), ('programming', 1), ('often', 1), ('likely', 1), ('reminder', 1), ('quick', 1), ('problem', 1), ('time', 1), ('nothing', 1), ('handier', 1), ('new', 1), ('edition', 1), ('language', 1), ('pocket', 1), ('reference', 1)]
[('toad', 3), ('developer', 2), ('enormously', 1), ('popular', 1), ('interactive', 1), ('environment', 1), ('tool', 1), ('oracle', 1), ('development', 1), ('administration', 1), ('allows', 1), ('build', 1), ('test', 1), ('debug', 1), ('format', 1), ('code', 1), ('via', 1), ('easy', 1), ('use', 1), ('graphical', 1), ('user', 1), ('interface', 1), ('available', 1), ('freeware', 1), ('commercial', 1), ('version', 1), ('make', 1), ('far', 1), ('productive', 1), ('using', 1), ('find', 1), ('program', 1)]
[('word', 4), ('million', 1), ('use', 1), ('microsoft', 1), ('every', 1), ('day', 1), ('chance', 1), ('user', 1), ('attained', 1), ('certain', 1), ('level', 1), ('proficiency', 1), ('enough', 1), ('extra', 1), ('trick', 1), ('tip', 1), ('opportunity', 1), ('probe', 1), ('real', 1), ('power', 1), ('rich', 1), ('feature', 1), ('regardless', 1)]
[('python', 2), ('already', 1), ('industry', 1), ('standard', 1), ('user', 1), ('programmingpython', 1), ('fromo', 1), ('reilly', 1), ('even', 1), ('better', 1), ('third', 1), ('edition', 1), ('updated', 1), ('toreflect', 1), ('current', 1), ('best', 1), ('practice', 1), ('andthe', 1), ('abundance', 1), ('change', 1), ('introduced', 1), ('latest', 1), ('version', 1), ('thelanguage', 1), ('whether', 1), ('novice', 1), ('advancedpractitioner', 1), ('find', 1), ('thisrefreshed', 1), ('book', 1)]
[('complex', 2), ('alphabet', 2), ('cjkv', 1), ('information', 1), ('processing', 1), ('definitive', 1), ('guide', 1), ('tackling', 1), ('difficult', 1), ('issue', 1), ('faced', 1), ('dealing', 1), ('asian', 1), ('language', 1), ('chinese', 1), ('japanese', 1), ('korean', 1), ('vietnamese', 1), ('context', 1), ('computing', 1), ('internet', 1), ('service', 1), ('unlike', 1), ('english', 1), ('mere', 1), ('letter', 1), ('writing', 1), ('system', 1), ('use', 1), ('multiple', 1), ('comprising', 1)]
[('build', 2), ('facebook', 2), ('application', 2), ('design', 2), ('want', 1), ('truly', 1), ('stand', 1), ('among', 1), ('thousand', 1), ('already', 1), ('available', 1), ('addition', 1), ('providing', 1), ('easy', 1), ('follow', 1), ('recipe', 1), ('offer', 1), ('practical', 1), ('way', 1), ('scalable', 1), ('using', 1), ('platform', 1), ('new', 1), ('profile', 1), ('cookbook', 1), ('explains', 1), ('proven', 1), ('strategy', 1), ('attracting', 1), ('user', 1)]
[('page', 3), ('layout', 2), ('word', 1), ('processor', 1), ('let', 1), ('create', 1), ('gorgeous', 1), ('glossy', 1), ('newsletter', 1), ('catalog', 1), ('brochure', 1), ('greeting', 1), ('card', 1), ('name', 1), ('ebook', 1), ('make', 1), ('instant', 1), ('expert', 1), ('feature', 1), ('learn', 1), ('arrange', 1), ('text', 1), ('really', 1), ('flow', 1), ('complement', 1), ('image', 1), ('sound', 1), ('movie', 1)]
[('ipod', 4), ('photo', 3), ('color', 2), ('new', 2), ('apple', 1), ('recently', 1), ('released', 1), ('fourth', 1), ('generation', 1), ('capable', 1), ('displaying', 1), ('enhanced', 1), ('screen', 1), ('longer', 1), ('music', 1), ('player', 1), ('proud', 1), ('owner', 1), ('eager', 1), ('know', 1), ('cool', 1), ('thing', 1)]
[('java', 2), ('new', 2), ('language', 2), ('change', 2), ('code', 1), ('named', 1), ('tiger', 1), ('promise', 1), ('significant', 1), ('version', 1), ('introduction', 1), ('hundred', 1), ('substantial', 1), ('core', 1), ('numerous', 1), ('library', 1), ('api', 1), ('addition', 1), ('developer', 1), ('variety', 1), ('feature', 1), ('facility', 1), ('technique', 1), ('available', 1), ('many', 1)]
[('javascript', 2), ('free', 2), ('step', 2), ('today', 1), ('web', 1), ('page', 1), ('need', 1), ('pop', 1), ('even', 1), ('weekend', 1), ('webmaster', 1), ('make', 1), ('site', 1), ('shimmy', 1), ('using', 1), ('simple', 1), ('yet', 1), ('powerful', 1), ('programming', 1), ('language', 1), ('clear', 1), ('jargon', 1), ('book', 1), ('show', 1), ('instruction', 1), ('add', 1), ('program', 1), ('give', 1), ('menu', 1), ('expand', 1), ('visitor', 1), ('click', 1), ('image', 1), ('change', 1), ('mouse', 1)]
[('market', 3), ('lot', 3), ('web', 2), ('financial', 2), ('common', 1), ('highly', 1), ('networked', 1), ('information', 1), ('driven', 1), ('collective', 1), ('intelligence', 1), ('money', 1), ('stake', 1), ('around', 1), ('longer', 1), ('bigger', 1), ('mature', 1), ('might', 1), ('give', 1), ('insight', 1), ('possible', 1), ('future', 1), ('economy', 1)]
[('oracle', 3), ('utility', 3), ('reference', 2), ('database', 2), ('dba', 2), ('use', 2), ('every', 2), ('pocket', 1), ('handy', 1), ('quick', 1), ('guide', 1), ('multitude', 1), ('administrator', 1), ('hour', 1), ('day', 1), ('undisputed', 1), ('leader', 1), ('among', 1), ('product', 1), ('grasped', 1), ('conceptually', 1), ('understandably', 1), ('recall', 1), ('specific', 1)]
[('reference', 3), ('perl', 2), ('quick', 2), ('pocket', 1), ('invaluable', 1), ('find', 1), ('frequently', 1), ('searching', 1), ('answer', 1), ('question', 1), ('reminder', 1), ('syntax', 1), ('rule', 1), ('handy', 1), ('organized', 1), ('condenses', 1), ('stack', 1), ('documentation', 1), ('essential', 1), ('fingertip', 1), ('fact', 1), ('ease', 1), ('use', 1), ('convenience', 1), ('price', 1)]
[('perl', 6), ('tk', 5), ('learning', 2), ('based', 2), ('pocket', 1), ('reference', 1), ('companion', 1), ('volume', 1), ('reilly', 1), ('animal', 1), ('guide', 1), ('tutorial', 1), ('extension', 1), ('creating', 1), ('graphical', 1), ('user', 1), ('interface', 1), ('program', 1), ('window', 1), ('rather', 1), ('command', 1), ('line', 1), ('button', 1), ('entry', 1), ('field', 1), ('listboxes', 1), ('menu', 1), ('scrollbars', 1)]
[('detect', 2), ('mistake', 2), ('smart', 1), ('web', 1), ('developer', 1), ('tell', 1), ('sooner', 1), ('code', 1), ('quicker', 1), ('fix', 1), ('le', 1), ('project', 1), ('cost', 1), ('long', 1), ('run', 1), ('efficient', 1), ('way', 1), ('php', 1), ('phpunit', 1), ('open', 1), ('source', 1), ('framework', 1), ('automates', 1), ('unit', 1), ('testing', 1), ('running', 1), ('battery', 1), ('test', 1), ('go', 1)]
[('regular', 3), ('expression', 3), ('text', 2), ('powerful', 1), ('tool', 1), ('manipulating', 1), ('data', 1), ('anyone', 1), ('us', 1), ('computer', 1), ('benefit', 1), ('composed', 1), ('mixture', 1), ('symbol', 1), ('outlet', 1), ('creativity', 1), ('brilliant', 1), ('programming', 1), ('elegant', 1), ('solution', 1), ('command', 1), ('invaluable', 1), ('skill', 1)]
[('samba', 3), ('file', 2), ('option', 2), ('cross', 1), ('platform', 1), ('triumph', 1), ('turn', 1), ('unix', 1), ('linux', 1), ('system', 1), ('print', 1), ('server', 1), ('microsoft', 1), ('window', 1), ('network', 1), ('client', 1), ('book', 1), ('describes', 1), ('configuration', 1), ('quick', 1), ('reference', 1), ('format', 1), ('contains', 1), ('command', 1), ('line', 1), ('related', 1), ('information', 1), ('use', 1), ('daemon', 1), ('smbd', 1), ('nmbd', 1)]
[('linux', 2), ('system', 2), ('tool', 2), ('new', 2), ('last', 1), ('year', 1), ('grown', 1), ('operating', 1), ('personal', 1), ('business', 1), ('use', 1), ('simultaneously', 1), ('becoming', 1), ('user', 1), ('friendly', 1), ('powerful', 1), ('back', 1), ('end', 1), ('achieved', 1), ('plateau', 1), ('newer', 1), ('filesystems', 1), ('solidified', 1), ('command', 1), ('appeared', 1), ('become', 1), ('standard', 1)]
[('jabber', 2), ('application', 2), ('set', 1), ('protocol', 1), ('expressed', 1), ('xml', 1), ('extensible', 1), ('framework', 1), ('allows', 1), ('exchange', 1), ('sort', 1), ('information', 1), ('simple', 1), ('text', 1), ('message', 1), ('used', 1), ('extend', 1), ('backbone', 1), ('enterprise', 1), ('data', 1), ('system', 1), ('give', 1), ('power', 1), ('build', 1), ('identity', 1), ('presence', 1), ('take', 1)]
[('freebsd', 2), ('version', 2), ('unix', 2), ('use', 2), ('far', 1), ('popular', 1), ('bsd', 1), ('legendary', 1), ('operating', 1), ('system', 1), ('contributed', 1), ('deal', 1), ('every', 1), ('today', 1), ('including', 1), ('mac', 1), ('o', 1), ('originally', 1), ('community', 1), ('effort', 1), ('university', 1), ('california', 1), ('berkeley', 1), ('aimed', 1), ('making', 1), ('little', 1), ('friendlier', 1), ('easier', 1), ('time', 1)]
[('page', 3), ('word', 2), ('tool', 2), ('whether', 1), ('maven', 1), ('window', 1), ('switcher', 1), ('new', 1), ('computer', 1), ('entirely', 1), ('speed', 1), ('quickly', 1), ('help', 1), ('ebook', 1), ('learn', 1), ('launch', 1), ('first', 1), ('document', 1), ('use', 1), ('text', 1), ('editing', 1), ('dress', 1), ('style', 1), ('save', 1), ('time', 1), ('power', 1), ('wordsmithing', 1), ('proofreading', 1)]
[('even', 2), ('bore', 1), ('audience', 1), ('black', 1), ('bullet', 1), ('point', 1), ('white', 1), ('background', 1), ('idea', 1), ('deserve', 1), ('presentation', 1), ('smart', 1), ('elegant', 1), ('new', 1), ('mac', 1), ('hand', 1), ('guide', 1), ('get', 1), ('speed', 1), ('keynote', 1), ('feature', 1), ('timesaving', 1), ('theme', 1), ('fast', 1), ('learn', 1), ('customize', 1), ('layout', 1), ('liking', 1), ('add', 1), ('flash', 1)]
[('make', 2), ('net', 2), ('precisely', 1), ('dangerous', 1), ('virtual', 1), ('world', 1), ('becoming', 1), ('similar', 1), ('real', 1), ('think', 1), ('overt', 1), ('law', 1), ('least', 1), ('agreed', 1), ('upon', 1), ('rule', 1), ('necessary', 1), ('survive', 1), ('current', 1), ('open', 1), ('form', 1), ('internet', 1), ('ruined', 1), ('everything', 1), ('criminal', 1), ('overzealous', 1), ('politician', 1)]
[('google', 2), ('wave', 2), ('technology', 2), ('front', 1), ('exciting', 1), ('new', 1), ('real', 1), ('time', 1), ('communication', 1), ('collaboration', 1), ('unifies', 1), ('email', 1), ('instant', 1), ('messaging', 1), ('wiki', 1), ('social', 1), ('networking', 1), ('function', 1), ('integrated', 1), ('platform', 1), ('getting', 1), ('started', 1), ('give', 1), ('good', 1), ('look', 1), ('game', 1), ('changing', 1), ('still', 1), ('development', 1), ('stage', 1)]
[('show', 3), ('way', 2), ('slideshows', 1), ('come', 1), ('long', 1), ('overhead', 1), ('projector', 1), ('option', 1), ('share', 1), ('idea', 1), ('world', 1), ('via', 1), ('email', 1), ('dvd', 1), ('pdf', 1), ('youtube', 1), ('iphone', 1), ('kiosk', 1), ('polished', 1), ('perfection', 1), ('thorough', 1), ('accessible', 1), ('guide', 1), ('export', 1), ('deliver', 1), ('possible', 1), ('even', 1), ('powerpoint', 1), ('file', 1), ('quicktime', 1)]
[('visitor', 3), ('attract', 2), ('use', 2), ('search', 2), ('success', 1), ('website', 1), ('keep', 1), ('mini', 1), ('missing', 1), ('manual', 1), ('show', 1), ('new', 1), ('return', 1), ('power', 1), ('keywords', 1), ('web', 1), ('engine', 1), ('rise', 1), ('ranking', 1), ('result', 1), ('learn', 1), ('powerful', 1), ('free', 1), ('service', 1), ('track', 1), ('activity', 1), ('site', 1), ('know', 1)]
[('begin', 2), ('business', 2), ('astute', 1), ('observer', 1), ('note', 1), ('faint', 1), ('signal', 1), ('coming', 1), ('future', 1), ('extrapolate', 1), ('divine', 1), ('implication', 1), ('tim', 1), ('reilly', 1), ('inagural', 1), ('issue', 1), ('release', 1), ('hope', 1), ('give', 1), ('insight', 1), ('alpha', 1), ('geek', 1), ('today', 1), ('crucial', 1), ('year', 1)]
[('java', 5), ('foundation', 2), ('class', 2), ('nutshell', 2), ('indispensable', 1), ('quick', 1), ('reference', 1), ('programmer', 1), ('writing', 1), ('application', 1), ('use', 1), ('graphic', 1), ('graphical', 1), ('user', 1), ('interface', 1), ('author', 1), ('bestselling', 1), ('written', 1), ('fast', 1), ('paced', 1), ('introduction', 1), ('apis', 1), ('comprise', 1), ('jfc', 1), ('swing', 1), ('gui', 1)]
[('mysql', 3), ('database', 3), ('use', 3), ('sql', 2), ('commercial', 2), ('popular', 1), ('robust', 1), ('open', 1), ('source', 1), ('product', 1), ('support', 1), ('key', 1), ('subset', 1), ('linux', 1), ('unix', 1), ('system', 1), ('free', 1), ('nonprofit', 1), ('cost', 1), ('small', 1), ('amount', 1), ('unlike', 1), ('affordable', 1), ('easy', 1), ('book', 1), ('includes', 1), ('introduction', 1), ('relational', 1), ('theory', 1)]
[('actionscript', 3), ('learning', 2), ('new', 1), ('want', 1), ('enhance', 1), ('skill', 1), ('set', 1), ('bestselling', 1), ('book', 1), ('ideal', 1), ('guide', 1), ('designer', 1), ('developer', 1), ('programmer', 1), ('alike', 1), ('find', 1), ('invaluable', 1), ('navigating', 1), ('curve', 1), ('learn', 1), ('language', 1), ('getting', 1), ('clear', 1), ('look', 1), ('essential', 1), ('topic', 1), ('logic', 1), ('event', 1)]
[('indesign', 4), ('content', 3), ('c', 2), ('xml', 2), ('useful', 2), ('adobe', 1), ('ability', 1), ('work', 1), ('built', 1), ('every', 1), ('version', 1), ('application', 1), ('importing', 1), ('database', 1), ('create', 1), ('catalog', 1), ('page', 1), ('exporting', 1), ('subsequent', 1), ('publishing', 1), ('process', 1), ('building', 1), ('chunk', 1), ('reused', 1)]
[('iphone', 3), ('new', 2), ('multitasking', 1), ('feature', 1), ('real', 1), ('treat', 1), ('cooked', 1), ('apple', 1), ('traditional', 1), ('secret', 1), ('sauce', 1), ('simplicity', 1), ('intelligence', 1), ('whimsy', 1), ('uk', 1), ('missing', 1), ('manual', 1), ('give', 1), ('guided', 1), ('tour', 1), ('everything', 1), ('offer', 1), ('lot', 1), ('tip', 1), ('trick', 1), ('surprise', 1), ('learn', 1), ('make', 1), ('call', 1)]
[('jython', 3), ('python', 3), ('java', 3), ('implementation', 1), ('programming', 1), ('language', 1), ('written', 1), ('pure', 1), ('run', 1), ('compliant', 1), ('virtual', 1), ('machine', 1), ('secret', 1), ('popularity', 1), ('lie', 1), ('combination', 1), ('librariesand', 1), ('tool', 1), ('rapid', 1), ('development', 1), ('capability', 1), ('write', 1), ('program', 1), ('integrate', 1), ('seamlessly', 1)]
[('couchdb', 2), ('create', 2), ('mapreduce', 2), ('view', 2), ('query', 2), ('data', 2), ('want', 1), ('use', 1), ('support', 1), ('real', 1), ('world', 1), ('application', 1), ('need', 1), ('document', 1), ('oriented', 1), ('database', 1), ('meaningful', 1), ('short', 1), ('concise', 1), ('ebook', 1), ('learn', 1), ('variety', 1), ('help', 1), ('aggregate', 1), ('large', 1), ('distributed', 1), ('datasets', 1)]
[('ready', 1), ('unleash', 1), ('droid', 1), ('entertaining', 1), ('guide', 1), ('help', 1), ('take', 1), ('full', 1), ('command', 1), ('motorola', 1), ('sleek', 1), ('new', 1), ('device', 1), ('online', 1), ('shop', 1), ('find', 1), ('location', 1), ('keep', 1), ('touch', 1), ('every', 1), ('page', 1), ('packed', 1), ('useful', 1), ('information', 1), ('put', 1), ('work', 1), ('right', 1), ('away', 1), ('setup', 1), ('troubleshooting', 1), ('lot', 1), ('valuable', 1), ('tip', 1), ('trick', 1), ('along', 1), ('way', 1)]
[('twitter', 2), ('offer', 2), ('recipe', 2), ('million', 1), ('public', 1), ('stream', 1), ('harbor', 1), ('wealth', 1), ('data', 1), ('mine', 1), ('gain', 1), ('valuable', 1), ('insight', 1), ('short', 1), ('concise', 1), ('book', 1), ('collection', 1), ('help', 1), ('extract', 1), ('nugget', 1), ('information', 1), ('using', 1), ('easy', 1), ('learn', 1), ('python', 1), ('tool', 1), ('discussion', 1), ('solution', 1), ('work', 1)]
[('javascript', 2), ('io', 2), ('sdk', 2), ('goodman', 2), ('possible', 1), ('programmer', 1), ('learn', 1), ('apple', 1), ('live', 1), ('tell', 1), ('tale', 1), ('technology', 1), ('guru', 1), ('danny', 1), ('book', 1), ('leaf', 1), ('marked', 1), ('trail', 1), ('follow', 1), ('authority', 1), ('inception', 1), ('understands', 1), ('challenge', 1), ('might', 1), ('face', 1), ('creating', 1), ('native', 1), ('apps', 1)]
[('ipad', 2), ('photo', 2), ('step', 2), ('big', 1), ('plus', 1), ('beautiful', 1), ('high', 1), ('resolution', 1), ('display', 1), ('make', 1), ('perfect', 1), ('way', 1), ('stroll', 1), ('memory', 1), ('lane', 1), ('comfort', 1), ('armchair', 1), ('view', 1), ('manage', 1), ('mini', 1), ('missing', 1), ('manual', 1), ('show', 1), ('import', 1), ('organize', 1), ('enjoy', 1), ('using', 1), ('clear', 1), ('jargon', 1), ('free', 1), ('explanation', 1)]
[('learn', 1), ('four', 1), ('cost', 1), ('effective', 1), ('way', 1), ('protect', 1), ('application', 1), ('develop', 1), ('mobile', 1), ('device', 1), ('method', 1), ('described', 1), ('mini', 1), ('missing', 1), ('manual', 1), ('stop', 1), ('misappropriating', 1), ('secret', 1), ('stealing', 1), ('name', 1), ('copying', 1), ('code', 1), ('thing', 1), ('happen', 1), ('legal', 1), ('ammunition', 1), ('need', 1), ('recover', 1), ('loss', 1)]
[('technology', 2), ('short', 1), ('cut', 1), ('take', 1), ('look', 1), ('set', 1), ('tool', 1), ('work', 1), ('together', 1), ('allow', 1), ('developer', 1), ('build', 1), ('rich', 1), ('internet', 1), ('application', 1), ('rias', 1), ('quickly', 1), ('easily', 1), ('top', 1), ('proven', 1), ('enterprise', 1), ('traditionally', 1), ('associated', 1), ('long', 1), ('complex', 1), ('development', 1), ('effort', 1)]
[('window', 2), ('foundation', 2), ('document', 2), ('learn', 1), ('create', 1), ('dynamic', 1), ('user', 1), ('experience', 1), ('build', 1), ('secure', 1), ('web', 1), ('service', 1), ('using', 1), ('communication', 1), ('wcf', 1), ('presentation', 1), ('wpf', 1), ('foundational', 1), ('pillar', 1), ('net', 1), ('succinct', 1), ('written', 1), ('pdf', 1), ('coauthored', 1), ('best', 1), ('selling', 1), ('author', 1), ('jesse', 1), ('liberty', 1), ('get', 1), ('right', 1)]
[('meet', 2), ('several', 2), ('practical', 1), ('guide', 1), ('offer', 1), ('short', 1), ('course', 1), ('scaling', 1), ('couchdb', 1), ('capacity', 1), ('need', 1), ('distributed', 1), ('application', 1), ('series', 1), ('scenario', 1), ('based', 1), ('example', 1), ('book', 1), ('let', 1), ('explore', 1), ('method', 1), ('creating', 1), ('system', 1), ('accommodate', 1), ('growth', 1), ('expected', 1), ('demand', 1), ('process', 1), ('learn', 1), ('tool', 1), ('help', 1)]
[('hibernate', 3), ('clearly', 1), ('arrived', 1), ('ready', 1), ('benefit', 1), ('simple', 1), ('way', 1), ('working', 1), ('relational', 1), ('database', 1), ('java', 1), ('object', 1), ('pdf', 1), ('update', 1), ('introductory', 1), ('material', 1), ('award', 1), ('winning', 1), ('developer', 1), ('notebook', 1), ('teach', 1), ('jump', 1), ('right', 1), ('productive', 1), ('current', 1), ('release', 1), ('walked', 1)]
[('aggregator', 4), ('source', 2), ('niche', 2), ('web', 1), ('select', 1), ('present', 1), ('content', 1), ('culled', 1), ('multiple', 1), ('playing', 1), ('important', 1), ('taste', 1), ('making', 1), ('promotional', 1), ('role', 1), ('larger', 1), ('starting', 1), ('compete', 1), ('mainstream', 1), ('news', 1), ('new', 1), ('class', 1), ('organizing', 1), ('around', 1), ('specific', 1), ('interest', 1), ('harness', 1), ('power', 1)]
[('short', 2), ('cut', 2), ('vulnerability', 2), ('protect', 2), ('help', 2), ('introduces', 1), ('sql', 1), ('injection', 1), ('work', 1), ('make', 1), ('application', 1), ('vulnerable', 1), ('find', 1), ('analysis', 1), ('testing', 1), ('tool', 1), ('describes', 1), ('simple', 1), ('approach', 1), ('fixing', 1), ('popular', 1), ('web', 1), ('programming', 1), ('language', 1)]
[('clickonce', 3), ('new', 2), ('web', 2), ('server', 2), ('application', 2), ('technology', 1), ('visual', 1), ('studio', 1), ('let', 1), ('quickly', 1), ('easily', 1), ('deploy', 1), ('window', 1), ('apps', 1), ('via', 1), ('file', 1), ('even', 1), ('cd', 1), ('delivers', 1), ('style', 1), ('deployment', 1), ('part', 1), ('story', 1), ('installed', 1), ('using', 1), ('automatically', 1), ('check', 1), ('update', 1)]
[('twitter', 2), ('business', 2), ('advanced', 1), ('conversation', 1), ('community', 1), ('profit', 1), ('character', 1), ('time', 1), ('sarah', 1), ('milstein', 1), ('consultant', 1), ('web', 1), ('editorial', 1), ('strategy', 1), ('matter', 1), ('free', 1), ('nimble', 1), ('powerful', 1), ('messaging', 1), ('service', 1), ('fast', 1), ('becoming', 1), ('essential', 1), ('part', 1), ('every', 1), ('smart', 1), ('social', 1), ('medium', 1), ('toolkit', 1), ('ready', 1), ('go', 1), ('beyond', 1)]
[('web', 4), ('tag', 2), ('cloud', 2), ('site', 2), ('everywhere', 1), ('day', 1), ('first', 1), ('popularized', 1), ('flickr', 1), ('technorati', 1), ('del', 1), ('icio', 1), ('amorphous', 1), ('clump', 1), ('word', 1), ('appear', 1), ('slew', 1), ('visual', 1), ('evidence', 1), ('membership', 1), ('elite', 1), ('corp', 1), ('pdf', 1), ('analyzes', 1), ('offer', 1), ('design', 1), ('tip', 1), ('using', 1)]
[('filemaker', 2), ('new', 2), ('database', 2), ('help', 2), ('web', 2), ('step', 2), ('pro', 1), ('famed', 1), ('power', 1), ('ease', 1), ('use', 1), ('added', 1), ('suite', 1), ('feature', 1), ('seriously', 1), ('boost', 1), ('productivity', 1), ('tutorial', 1), ('take', 1), ('full', 1), ('advantage', 1), ('fresh', 1), ('stuff', 1), ('focus', 1), ('terrific', 1), ('tool', 1), ('integrating', 1), ('viewer', 1), ('instruction', 1), ('create', 1)]
[('crm', 2), ('sugarcrm', 2), ('crowded', 1), ('field', 1), ('customer', 1), ('relationship', 1), ('management', 1), ('system', 1), ('stand', 1), ('modular', 1), ('design', 1), ('ease', 1), ('develop', 1), ('customize', 1), ('extend', 1), ('application', 1), ('concise', 1), ('book', 1), ('provides', 1), ('thorough', 1), ('overview', 1), ('development', 1), ('tool', 1), ('apis', 1), ('available', 1), ('showing', 1)]
[('xoops', 3), ('website', 2), ('cm', 2), ('learn', 1), ('customize', 1), ('open', 1), ('source', 1), ('help', 1), ('non', 1), ('developer', 1), ('build', 1), ('dynamic', 1), ('community', 1), ('intranet', 1), ('application', 1), ('concise', 1), ('book', 1), ('show', 1), ('use', 1), ('theme', 1), ('module', 1), ('design', 1), ('everything', 1), ('simple', 1), ('blog', 1), ('large', 1), ('database', 1), ('driven', 1), ('portal', 1), ('web', 1), ('designer', 1), ('current', 1), ('user', 1)]
[('tv', 4), ('web', 3), ('google', 3), ('apps', 3), ('new', 2), ('integrating', 1), ('traditional', 1), ('offer', 1), ('developer', 1), ('important', 1), ('channel', 1), ('content', 1), ('creating', 1), ('requires', 1), ('learning', 1), ('skill', 1), ('fact', 1), ('already', 1), ('know', 1), ('mobile', 1), ('desktop', 1), ('entirely', 1), ('applicable', 1), ('building', 1), ('help', 1), ('make', 1), ('transition', 1)]
[('web', 5), ('site', 2), ('world', 1), ('operation', 1), ('moved', 1), ('support', 1), ('function', 1), ('mission', 1), ('critical', 1), ('competency', 1), ('online', 1), ('business', 1), ('inextricably', 1), ('bound', 1), ('product', 1), ('report', 1), ('jesse', 1), ('robbins', 1), ('reilly', 1), ('radar', 1), ('team', 1), ('put', 1), ('succinctly', 1), ('make', 1), ('money', 1), ('available', 1), ('faster', 1)]
[('micro', 2), ('messaging', 2), ('twitter', 1), ('service', 1), ('catching', 1), ('fire', 1), ('realize', 1), ('lightweight', 1), ('application', 1), ('powerful', 1), ('tool', 1), ('communicate', 1), ('connect', 1), ('learn', 1), ('potent', 1), ('mix', 1), ('simplicity', 1), ('utility', 1), ('mobility', 1), ('sheer', 1), ('human', 1), ('appeal', 1), ('poised', 1), ('become', 1), ('major', 1), ('communication', 1), ('platform', 1), ('new', 1), ('reilly', 1), ('radar', 1), ('report', 1)]
[('apis', 2), ('pdf', 1), ('show', 1), ('small', 1), ('business', 1), ('enterprise', 1), ('publish', 1), ('application', 1), ('programming', 1), ('interface', 1), ('developer', 1), ('community', 1), ('behemoth', 1), ('internet', 1), ('google', 1), ('yahoo', 1), ('ebay', 1), ('amazon', 1), ('giant', 1), ('already', 1), ('offer', 1), ('programmer', 1), ('allow', 1), ('add', 1), ('service', 1), ('mash', 1), ('ups', 1), ('develop', 1)]
[('ajax', 4), ('asp', 4), ('net', 4), ('microsoft', 2), ('newly', 1), ('revised', 1), ('short', 1), ('cut', 1), ('teach', 1), ('build', 1), ('richer', 1), ('interactive', 1), ('style', 1), ('web', 1), ('page', 1), ('using', 1), ('framework', 1), ('updatepanel', 1), ('control', 1), ('key', 1), ('building', 1), ('application', 1), ('responsive', 1), ('user', 1), ('input', 1), ('tutorial', 1), ('learn', 1), ('use', 1)]
[('service', 3), ('technology', 2), ('new', 2), ('rapid', 1), ('advance', 1), ('geolocation', 1), ('individual', 1), ('company', 1), ('built', 1), ('present', 1), ('marketplace', 1), ('business', 1), ('expected', 1), ('mapping', 1), ('location', 1), ('reilly', 1), ('radar', 1), ('report', 1), ('andrew', 1), ('turner', 1), ('brady', 1), ('forrest', 1), ('map', 1), ('generation', 1), ('geo', 1), ('product', 1)]
[('ajax', 2), ('javascript', 1), ('carrying', 1), ('programming', 1), ('load', 1), ('lately', 1), ('become', 1), ('popular', 1), ('scripting', 1), ('scratch', 1), ('fun', 1), ('fortunately', 1), ('library', 1), ('help', 1), ('prototype', 1), ('scriptaculous', 1), ('work', 1), ('done', 1), ('le', 1), ('time', 1), ('automating', 1), ('task', 1), ('processing', 1), ('xmlhttp', 1), ('request', 1), ('creating', 1), ('animation', 1), ('draw', 1)]
[('language', 2), ('integrated', 2), ('query', 2), ('linq', 2), ('technology', 2), ('data', 2), ('access', 2), ('microsoft', 1), ('new', 1), ('powerful', 1), ('general', 1), ('purpose', 1), ('provides', 1), ('fully', 1), ('available', 1), ('vb', 1), ('high', 1), ('level', 1), ('object', 1), ('relational', 1), ('database', 1), ('xml', 1), ('document', 1), ('short', 1), ('cut', 1), ('learn', 1), ('proposed', 1)]
[('indesign', 5), ('xml', 3), ('c', 2), ('work', 2), ('content', 2), ('adobe', 1), ('ability', 1), ('built', 1), ('every', 1), ('version', 1), ('real', 1), ('world', 1), ('understood', 1), ('useful', 1), ('application', 1), ('importing', 1), ('database', 1), ('create', 1), ('catalog', 1), ('page', 1), ('exporting', 1)]
[('open', 2), ('source', 2), ('cost', 2), ('web', 2), ('using', 1), ('enterprise', 1), ('question', 1), ('longer', 1), ('low', 1), ('easy', 1), ('access', 1), ('expansive', 1), ('license', 1), ('term', 1), ('certainly', 1), ('attractive', 1), ('especially', 1), ('budget', 1), ('decreased', 1), ('every', 1), ('year', 1), ('software', 1), ('increased', 1), ('staff', 1), ('tasked', 1), ('create', 1), ('service', 1), ('pursue', 1)]
[('new', 3), ('intel', 2), ('mac', 2), ('window', 2), ('xp', 2), ('boot', 2), ('camp', 2), ('steve', 1), ('job', 1), ('jumped', 1), ('stage', 1), ('macworld', 1), ('san', 1), ('francisco', 1), ('announced', 1), ('based', 1), ('question', 1), ('figure', 1), ('hack', 1), ('running', 1), ('mactels', 1), ('enter', 1), ('system', 1), ('utility', 1), ('help', 1), ('partition', 1), ('install', 1)]
[('microsoft', 2), ('new', 2), ('network', 2), ('virtual', 1), ('server', 1), ('consistently', 1), ('prof', 1), ('worth', 1), ('weight', 1), ('gold', 1), ('implementation', 1), ('thought', 1), ('every', 1), ('day', 1), ('product', 1), ('free', 1), ('download', 1), ('score', 1), ('user', 1), ('able', 1), ('experience', 1), ('power', 1), ('virtualization', 1), ('guide', 1), ('aimed', 1), ('administrator', 1)]
[('cell', 2), ('phone', 2), ('service', 2), ('common', 1), ('communication', 1), ('device', 1), ('planet', 1), ('short', 1), ('message', 1), ('sm', 1), ('chief', 1), ('channel', 1), ('company', 1), ('offer', 1), ('accept', 1), ('request', 1), ('report', 1), ('news', 1), ('download', 1), ('binary', 1), ('file', 1), ('guide', 1), ('describes', 1), ('protocol', 1), ('best', 1), ('practice', 1), ('thing', 1), ('ensure', 1), ('sued', 1), ('lose', 1), ('right', 1)]
[('mac', 3), ('o', 3), ('window', 2), ('user', 2), ('run', 2), ('pc', 2), ('cpu', 2), ('long', 1), ('time', 1), ('lot', 1), ('clamoring', 1), ('opportunity', 1), ('operating', 1), ('system', 1), ('designed', 1), ('different', 1), ('architecture', 1), ('powerpc', 1), ('running', 1), ('directly', 1), ('intel', 1), ('work', 1), ('recently', 1), ('saw', 1), ('ray', 1), ('hope', 1), ('apple', 1)]
[('new', 3), ('edocument', 1), ('seek', 1), ('actually', 1), ('evaluate', 1), ('feature', 1), ('introduced', 1), ('oracle', 1), ('release', 1), ('rather', 1), ('list', 1), ('tell', 1), ('wonderful', 1), ('marketing', 1), ('brochure', 1), ('plenty', 1), ('practical', 1), ('worked', 1), ('example', 1), ('used', 1), ('demonstrate', 1), ('capability', 1), ('assessed', 1), ('pro', 1), ('con', 1), ('aim', 1)]
[('game', 2), ('feature', 2), ('apple', 1), ('introduced', 1), ('gamekit', 1), ('framework', 1), ('io', 1), ('sdk', 1), ('integrate', 1), ('center', 1), ('directly', 1), ('iphone', 1), ('ipad', 1), ('apps', 1), ('concise', 1), ('cookbook', 1), ('show', 1), ('done', 1), ('targeted', 1), ('recipe', 1), ('adding', 1), ('leaderboards', 1), ('user', 1), ('authentication', 1), ('achievement', 1), ('multiplayer', 1), ('many', 1), ('display', 1)]
[('sphinx', 3), ('search', 2), ('concise', 1), ('introduction', 1), ('show', 1), ('use', 1), ('free', 1), ('software', 1), ('index', 1), ('enormous', 1), ('number', 1), ('document', 1), ('provide', 1), ('fast', 1), ('result', 1), ('simple', 1), ('complex', 1), ('written', 1), ('creator', 1), ('authoritative', 1), ('book', 1), ('short', 1), ('point', 1), ('understand', 1), ('particular', 1), ('way', 1), ('conduct', 1), ('install', 1), ('configure', 1)]
[('security', 3), ('vista', 2), ('securing', 1), ('environment', 1), ('take', 1), ('quick', 1), ('tour', 1), ('significant', 1), ('feature', 1), ('microsoft', 1), ('first', 1), ('revision', 1), ('window', 1), ('almost', 1), ('six', 1), ('year', 1), ('background', 1), ('threat', 1), ('vulnerability', 1), ('make', 1), ('think', 1), ('differently', 1), ('technology', 1), ('configuration', 1)]
[('search', 6), ('google', 2), ('ajax', 2), ('web', 2), ('use', 1), ('api', 1), ('integrateweb', 1), ('image', 1), ('localsearch', 1), ('type', 1), ('intoyour', 1), ('site', 1), ('embedding', 1), ('simple', 1), ('dynamicsearch', 1), ('box', 1), ('display', 1), ('resultsin', 1), ('page', 1), ('using', 1), ('fewlines', 1), ('javascript', 1), ('want', 1), ('write', 1), ('code', 1), ('wizard', 1), ('solution', 1), ('builtwith', 1)]
[('development', 2), ('project', 2), ('web', 1), ('considereda', 1), ('commodity', 1), ('gettinglarger', 1), ('every', 1), ('day', 1), ('dealing', 1), ('large', 1), ('ona', 1), ('daily', 1), ('basis', 1), ('know', 1), ('mostdifficult', 1), ('task', 1), ('deliver', 1), ('product', 1), ('ontime', 1), ('within', 1), ('budget', 1), ('many', 1), ('factor', 1), ('influencethose', 1), ('variable', 1), ('including', 1), ('programminglanguage', 1), ('methodsyou', 1)]
[('exam', 3), ('pas', 2), ('window', 2), ('vista', 2), ('nonsense', 1), ('guide', 1), ('created', 1), ('purpose', 1), ('mind', 1), ('ensure', 1), ('readiness', 1), ('microsoft', 1), ('configuration', 1), ('short', 1), ('cut', 1), ('offer', 1), ('edge', 1), ('need', 1), ('including', 1), ('real', 1), ('insight', 1), ('covering', 1), ('structure', 1), ('question', 1), ('format', 1), ('difficult', 1), ('practice', 1), ('help', 1), ('make', 1), ('sure', 1), ('really', 1), ('know', 1)]
[('step', 2), ('small', 1), ('business', 1), ('owner', 1), ('consultant', 1), ('marketing', 1), ('manager', 1), ('big', 1), ('company', 1), ('selling', 1), ('intangible', 1), ('service', 1), ('hard', 1), ('understand', 1), ('product', 1), ('take', 1), ('gain', 1), ('customer', 1), ('trust', 1), ('make', 1), ('sale', 1), ('answered', 1), ('yes', 1), ('question', 1), ('short', 1), ('cut', 1), ('walk', 1), ('process', 1), ('generating', 1), ('lead', 1)]
[('web', 3), ('r', 2), ('little', 1), ('orange', 1), ('feed', 1), ('icon', 1), ('everywhere', 1), ('search', 1), ('engine', 1), ('shopping', 1), ('site', 1), ('blog', 1), ('really', 1), ('simple', 1), ('syndication', 1), ('become', 1), ('hottest', 1), ('technology', 1), ('going', 1), ('powerful', 1), ('yet', 1), ('surprisingly', 1), ('easy', 1), ('way', 1), ('distributing', 1), ('timely', 1), ('content', 1), ('based', 1), ('audience', 1), ('short', 1), ('cut', 1), ('give', 1), ('hand', 1)]
[('ajax', 3), ('php', 2), ('detailed', 1), ('overviewof', 1), ('use', 1), ('technology', 1), ('createinteractive', 1), ('fault', 1), ('tolerant', 1), ('responsiveweb', 1), ('application', 1), ('short', 1), ('cut', 1), ('first', 1), ('concentrate', 1), ('thefundamentals', 1), ('coversserving', 1), ('providing', 1), ('content', 1), ('formattedin', 1), ('xml', 1), ('json', 1), ('finally', 1), ('completely', 1), ('immerse', 1), ('ourselvesin', 1), ('world', 1)]
[('window', 3), ('support', 2), ('command', 2), ('platform', 2), ('unix', 2), ('administrator', 2), ('year', 1), ('scripting', 1), ('line', 1), ('administration', 1), ('paled', 1), ('comparison', 1), ('offered', 1), ('enjoyed', 1), ('immense', 1), ('power', 1), ('productivity', 1), ('shell', 1), ('watched', 1), ('envy', 1), ('powershell', 1), ('microsoft', 1), ('next', 1), ('generation', 1)]
[('asp', 2), ('net', 2), ('atlas', 2), ('developer', 2), ('microsoft', 2), ('web', 2), ('new', 1), ('framework', 1), ('simplifies', 1), ('task', 1), ('building', 1), ('interactive', 1), ('page', 1), ('drawing', 1), ('power', 1), ('ajax', 1), ('technologiesfound', 1), ('modern', 1), ('browser', 1), ('tight', 1), ('integration', 1), ('particular', 1), ('interest', 1), ('short', 1), ('cut', 1)]
[('information', 3), ('microformats', 2), ('structured', 2), ('share', 1), ('html', 1), ('web', 1), ('page', 1), ('although', 1), ('visible', 1), ('human', 1), ('reader', 1), ('software', 1), ('extract', 1), ('short', 1), ('cut', 1), ('general', 1), ('introduction', 1), ('history', 1), ('explanation', 1), ('idea', 1), ('rocketing', 1), ('forefront', 1), ('technology', 1)]
[('data', 4), ('xforms', 3), ('technology', 2), ('form', 2), ('give', 1), ('many', 1), ('advantage', 1), ('ordinary', 1), ('xhtml', 1), ('separate', 1), ('presentation', 1), ('submits', 1), ('xml', 1), ('aware', 1), ('application', 1), ('validate', 1), ('type', 1), ('submit', 1), ('different', 1), ('server', 1), ('even', 1), ('store', 1), ('file', 1), ('tutorial', 1), ('show', 1)]
[('using', 3), ('o', 2), ('window', 2), ('secret', 1), ('entire', 1), ('ruby', 1), ('onrails', 1), ('core', 1), ('team', 1), ('us', 1), ('preferreddevelopment', 1), ('environment', 1), ('becauseof', 1), ('easy', 1), ('findauthoritative', 1), ('information', 1), ('webabout', 1), ('rail', 1), ('truthis', 1), ('developer', 1), ('railsprobably', 1), ('outnumber', 1), ('otherplatforms', 1), ('development', 1), ('environmentcan', 1)]
[('opml', 2), ('list', 2), ('put', 1), ('figuring', 1), ('outline', 1), ('processor', 1), ('markup', 1), ('language', 1), ('right', 1), ('bring', 1), ('picture', 1), ('quickly', 1), ('wide', 1), ('ranging', 1), ('us', 1), ('forthe', 1), ('format', 1), ('including', 1), ('reading', 1), ('r', 1), ('blogging', 1), ('wholly', 1), ('new', 1), ('sort', 1), ('intranet', 1), ('process', 1), ('documentation', 1), ('instant', 1), ('outlining', 1)]
[('know', 3), ('zune', 2), ('medium', 2), ('player', 2), ('microsoft', 1), ('new', 1), ('music', 1), ('video', 1), ('itdoes', 1), ('picture', 1), ('ready', 1), ('best', 1), ('methodsand', 1), ('secret', 1), ('managing', 1), ('loading', 1), ('sharing', 1), ('yourdata', 1), ('others', 1), ('accessory', 1), ('vital', 1), ('hack', 1)]
[('quick', 2), ('significant', 2), ('change', 2), ('window', 2), ('ready', 1), ('blast', 1), ('guide', 1), ('give', 1), ('look', 1), ('many', 1), ('new', 1), ('feature', 1), ('vista', 1), ('microsoft', 1), ('first', 1), ('revision', 1), ('nearly', 1), ('six', 1), ('year', 1), ('starting', 1), ('interface', 1), ('introducing', 1), ('aero', 1), ('showing', 1), ('visuals', 1), ('move', 1)]
[('deployment', 3), ('rail', 2), ('capistrano', 2), ('show', 2), ('learn', 1), ('make', 1), ('pain', 1), ('free', 1), ('short', 1), ('cut', 1), ('use', 1), ('automate', 1), ('application', 1), ('teach', 1), ('basic', 1), ('go', 1), ('far', 1), ('beyond', 1), ('realistic', 1), ('scenario', 1), ('including', 1), ('complex', 1), ('server', 1), ('farm', 1), ('includes', 1), ('quick', 1), ('reference', 1)]
[('mongrel', 4), ('use', 2), ('web', 2), ('rail', 2), ('basic', 2), ('shortcut', 1), ('teach', 1), ('new', 1), ('high', 1), ('performance', 1), ('application', 1), ('container', 1), ('start', 1), ('setup', 1), ('installation', 1), ('go', 1), ('beyond', 1), ('showing', 1), ('set', 1), ('cluster', 1), ('behind', 1), ('apache', 1), ('server', 1), ('given', 1), ('developer', 1), ('first', 1), ('rate', 1)]
[('checking', 4), ('code', 3), ('tool', 2), ('using', 2), ('short', 1), ('cut', 1), ('tell', 1), ('improve', 1), ('quality', 1), ('java', 1), ('beyond', 1), ('standard', 1), ('including', 1), ('javac', 1), ('option', 1), ('junit', 1), ('assertion', 1), ('making', 1), ('ide', 1), ('work', 1), ('harder', 1), ('source', 1), ('pmd', 1), ('compiled', 1), ('class', 1), ('file', 1), ('findbugs', 1)]
[('neogeography', 1), ('combine', 1), ('complex', 1), ('technique', 1), ('cartography', 1), ('gi', 1), ('place', 1), ('within', 1), ('reach', 1), ('user', 1), ('developer', 1), ('short', 1), ('cut', 1), ('introduces', 1), ('growing', 1), ('number', 1), ('tool', 1), ('framework', 1), ('resource', 1), ('available', 1), ('make', 1), ('easy', 1), ('create', 1), ('map', 1), ('share', 1), ('location', 1), ('interest', 1), ('history', 1), ('learn', 1), ('existing', 1)]
[('developer', 3), ('prototype', 2), ('application', 2), ('web', 2), ('short', 1), ('cut', 1), ('provides', 1), ('complete', 1), ('quick', 1), ('reference', 1), ('javascript', 1), ('framework', 1), ('open', 1), ('source', 1), ('library', 1), ('particularly', 1), ('useful', 1), ('dynamic', 1), ('ajax', 1), ('need', 1), ('work', 1), ('dom', 1), ('element', 1), ('building', 1), ('sophisticated', 1), ('user', 1), ('friendly', 1)]
[('using', 2), ('unobtrusive', 1), ('ajax', 1), ('making', 1), ('webapplications', 1), ('work', 1), ('everyone', 1), ('allthe', 1), ('time', 1), ('even', 1), ('javascriptturned', 1), ('mobilephone', 1), ('screen', 1), ('reader', 1), ('youhappen', 1), ('web', 1), ('aboutthe', 1), ('separation', 1), ('behavior', 1), ('javascript', 1), ('content', 1), ('html', 1), ('presentation', 1), ('cs', 1), ('short', 1), ('cut', 1), ('focus', 1)]
[('task', 2), ('maintenance', 2), ('data', 2), ('short', 1), ('cut', 1), ('written', 1), ('assist', 1), ('oracle', 1), ('clinical', 1), ('developer', 1), ('many', 1), ('decision', 1), ('encounter', 1), ('occasional', 1), ('basis', 1), ('involve', 1), ('study', 1), ('setup', 1), ('account', 1), ('handling', 1), ('discrepancy', 1), ('preparing', 1), ('set', 1), ('analysis', 1), ('batch', 1), ('loading', 1), ('altering', 1), ('system', 1), ('level', 1), ('setting', 1), ('defining', 1)]
[('portal', 5), ('technology', 2), ('come', 1), ('last', 1), ('several', 1), ('year', 1), ('time', 1), ('seen', 1), ('become', 1), ('latest', 1), ('expression', 1), ('business', 1), ('trying', 1), ('organize', 1), ('torrent', 1), ('information', 1), ('computer', 1), ('bring', 1), ('bea', 1), ('leader', 1), ('allows', 1), ('enterprise', 1), ('level', 1), ('support', 1), ('stability', 1), ('capability', 1)]
[('web', 3), ('new', 2), ('apache', 2), ('server', 2), ('show', 1), ('feature', 1), ('know', 1), ('set', 1), ('administer', 1), ('learn', 1), ('take', 1), ('advantage', 1), ('improved', 1), ('caching', 1), ('proxying', 1), ('authentication', 1), ('improvement', 1), ('application', 1)]
[('html', 5), ('using', 2), ('everyone', 1), ('nobody', 1), ('know', 1), ('realize', 1), ('sound', 1), ('line', 1), ('existential', 1), ('movie', 1), ('maybe', 1), ('waiting', 1), ('godot', 1), ('screenplay', 1), ('sartre', 1), ('statement', 1), ('really', 1), ('truth', 1), ('treating', 1), ('even', 1), ('worse', 1), ('stuff', 1), ('use', 1)]
[('node', 2), ('j', 2), ('programming', 2), ('latest', 1), ('long', 1), ('line', 1), ('cool', 1), ('enough', 1), ('use', 1), ('language', 1), ('apis', 1), ('toolkits', 1), ('sense', 1), ('land', 1), ('squarely', 1), ('tradition', 1), ('rail', 1), ('ajax', 1), ('hadoop', 1), ('even', 1), ('degree', 1), ('iphone', 1), ('html', 1), ('dig', 1), ('little', 1), ('deeper', 1), ('hear', 1), ('briefly', 1), ('called', 1), ('many', 1)]
[('web', 3), ('provide', 2), ('developer', 1), ('designer', 1), ('familiar', 1), ('cs', 1), ('javascript', 1), ('tightly', 1), ('focused', 1), ('introduction', 1), ('show', 1), ('add', 1), ('html', 1), ('medium', 1), ('element', 1), ('page', 1), ('custom', 1), ('control', 1), ('letting', 1), ('visitor', 1), ('interact', 1), ('content', 1), ('learn', 1), ('subtitle', 1), ('caption', 1), ('using', 1), ('file', 1), ('format', 1), ('work', 1)]
[('application', 2), ('file', 2), ('several', 1), ('client', 1), ('side', 1), ('storage', 1), ('option', 1), ('available', 1), ('web', 1), ('area', 1), ('lacking', 1), ('ability', 1), ('organize', 1), ('binary', 1), ('data', 1), ('true', 1), ('hierarchy', 1), ('folder', 1), ('changed', 1), ('advent', 1), ('html', 1), ('book', 1), ('learn', 1), ('provide', 1), ('system', 1), ('enables', 1)]
[('java', 3), ('fp', 2), ('developer', 2), ('software', 1), ('development', 1), ('today', 1), ('embracing', 1), ('functional', 1), ('programming', 1), ('whether', 1), ('writing', 1), ('concurrent', 1), ('program', 1), ('managing', 1), ('big', 1), ('data', 1), ('leave', 1), ('concise', 1), ('book', 1), ('offer', 1), ('pragmatic', 1), ('approachable', 1), ('introduction', 1), ('anyone', 1), ('us', 1), ('object', 1), ('oriented', 1), ('language', 1), ('dean', 1), ('wampler', 1), ('expert', 1)]
[('team', 3), ('software', 2), ('way', 2), ('help', 1), ('improve', 1), ('concise', 1), ('book', 1), ('introduces', 1), ('codermetrics', 1), ('clear', 1), ('objective', 1), ('identify', 1), ('analyze', 1), ('discus', 1), ('success', 1), ('failure', 1), ('engineer', 1), ('part', 1), ('performance', 1), ('review', 1), ('make', 1), ('cohesive', 1), ('productive', 1), ('unit', 1), ('experienced', 1), ('builder', 1), ('jonathan', 1), ('alexander', 1)]
[('interactive', 2), ('web', 2), ('transform', 1), ('user', 1), ('interface', 1), ('design', 1), ('created', 1), ('photoshop', 1), ('illustrator', 1), ('page', 1), ('easier', 1), ('think', 1), ('guide', 1), ('show', 1), ('use', 1), ('adobe', 1), ('flash', 1), ('catalyst', 1), ('create', 1), ('uis', 1), ('website', 1), ('wireframes', 1), ('rich', 1), ('internet', 1), ('application', 1), ('without', 1), ('writing', 1), ('single', 1), ('line', 1), ('code', 1), ('ideal', 1), ('designer', 1), ('book', 1)]
[('roo', 3), ('spring', 2), ('framework', 2), ('application', 2), ('tool', 2), ('go', 1), ('step', 1), ('beyond', 1), ('bringing', 1), ('true', 1), ('rapid', 1), ('development', 1), ('java', 1), ('grail', 1), ('done', 1), ('groovy', 1), ('concise', 1), ('introduction', 1), ('show', 1), ('build', 1), ('using', 1), ('shell', 1), ('intelligent', 1), ('timesaving', 1), ('code', 1), ('completion', 1), ('ideal', 1), ('rad', 1)]
[('social', 2), ('application', 2), ('build', 2), ('networking', 1), ('made', 1), ('thing', 1), ('clear', 1), ('website', 1), ('need', 1), ('provide', 1), ('user', 1), ('experience', 1), ('tailored', 1), ('preference', 1), ('depth', 1), ('guide', 1), ('show', 1), ('rich', 1), ('framework', 1), ('using', 1), ('open', 1), ('source', 1), ('technology', 1), ('specification', 1), ('learn', 1), ('create', 1), ('third', 1), ('party', 1), ('existing', 1), ('site', 1), ('engaging', 1)]
[('statement', 2), ('java', 1), ('number', 1), ('feature', 1), ('please', 1), ('developer', 1), ('madhusudhan', 1), ('konda', 1), ('provides', 1), ('overview', 1), ('including', 1), ('string', 1), ('switch', 1), ('multi', 1), ('catch', 1), ('exception', 1), ('handling', 1), ('try', 1), ('resource', 1), ('new', 1), ('file', 1), ('system', 1), ('api', 1), ('extension', 1), ('jvm', 1), ('support', 1), ('dynamically', 1), ('typed', 1), ('language', 1), ('fork', 1), ('join', 1), ('framework', 1), ('task', 1)]
[('io', 2), ('application', 2), ('plan', 1), ('develop', 1), ('corporate', 1), ('setting', 1), ('internal', 1), ('consumption', 1), ('sale', 1), ('end', 1), ('user', 1), ('need', 1), ('book', 1), ('veteran', 1), ('developer', 1), ('james', 1), ('turner', 1), ('share', 1), ('best', 1), ('practice', 1), ('lesson', 1), ('learned', 1), ('recent', 1), ('ground', 1), ('experience', 1), ('planning', 1), ('building', 1), ('shipping', 1), ('enterprise', 1), ('environment', 1), ('lot', 1)]
[('free', 3), ('content', 2), ('peer', 2), ('book', 1), ('publisher', 1), ('long', 1), ('used', 1), ('part', 1), ('marketing', 1), ('selling', 1), ('effort', 1), ('vast', 1), ('majority', 1), ('distributed', 1), ('printed', 1), ('form', 1), ('digital', 1), ('distribution', 1), ('material', 1), ('either', 1), ('intentional', 1), ('via', 1), ('unauthorized', 1), ('availability', 1), ('site', 1), ('web', 1), ('outlet', 1), ('offer', 1), ('fast', 1), ('expansive', 1), ('connection', 1)]
[('adobe', 3), ('tool', 2), ('graphic', 2), ('edge', 2), ('want', 1), ('use', 1), ('design', 1), ('animated', 1), ('web', 1), ('work', 1), ('iphone', 1), ('ipad', 1), ('come', 1), ('right', 1), ('book', 1), ('preview', 1), ('missing', 1), ('manual', 1), ('show', 1), ('build', 1), ('html', 1), ('using', 1), ('simple', 1), ('visual', 1), ('programming', 1), ('experience', 1), ('problem', 1), ('writes', 1), ('underlying', 1), ('code', 1), ('ebook', 1)]
[('puremvc', 3), ('application', 2), ('gain', 1), ('hand', 1), ('experience', 1), ('popular', 1), ('open', 1), ('source', 1), ('framework', 1), ('developing', 1), ('maintainable', 1), ('model', 1), ('view', 1), ('controller', 1), ('architecture', 1), ('concise', 1), ('guide', 1), ('creator', 1), ('cliff', 1), ('hall', 1), ('teach', 1), ('fundamental', 1), ('development', 1), ('walking', 1), ('construction', 1), ('complete', 1), ('non', 1), ('trivial', 1), ('adobe', 1), ('air', 1)]
[('io', 2), ('app', 2), ('step', 2), ('frustrated', 1), ('requirement', 1), ('testing', 1), ('distributing', 1), ('alone', 1), ('concise', 1), ('book', 1), ('take', 1), ('maze', 1), ('certification', 1), ('provisioning', 1), ('process', 1), ('happen', 1), ('development', 1), ('learn', 1), ('required', 1), ('sign', 1), ('certificate', 1), ('test', 1), ('device', 1), ('release', 1)]
[('free', 3), ('stallman', 2), ('movement', 2), ('personality', 2), ('freedom', 1), ('interweaves', 1), ('biographical', 1), ('snapshot', 1), ('gnu', 1), ('project', 1), ('founder', 1), ('richard', 1), ('political', 1), ('social', 1), ('economic', 1), ('history', 1), ('software', 1), ('examines', 1), ('unique', 1), ('turn', 1), ('driving', 1), ('force', 1), ('drawback', 1), ('term', 1), ('overall', 1), ('success', 1)]
[('build', 2), ('mobile', 2), ('web', 1), ('application', 1), ('work', 1), ('ipad', 1), ('kindle', 1), ('fire', 1), ('iphone', 1), ('android', 1), ('smartphones', 1), ('introductory', 1), ('guide', 1), ('jquery', 1), ('show', 1), ('series', 1), ('hand', 1), ('exercise', 1), ('learn', 1), ('best', 1), ('way', 1), ('use', 1), ('framework', 1), ('many', 1), ('interface', 1), ('component', 1), ('customizable', 1), ('multiplatform', 1), ('apps', 1)]
[('coffeescript', 3), ('javascript', 2), ('concise', 1), ('book', 1), ('show', 1), ('developer', 1), ('build', 1), ('superb', 1), ('web', 1), ('application', 1), ('remarkable', 1), ('language', 1), ('gaining', 1), ('considerable', 1), ('interest', 1), ('example', 1), ('code', 1), ('guide', 1), ('demonstrates', 1), ('abstract', 1), ('providing', 1), ('syntactical', 1), ('sugar', 1), ('preventing', 1), ('many', 1), ('common', 1), ('error', 1), ('learn', 1), ('syntax', 1)]
[('system', 2), ('data', 2), ('imagine', 1), ('public', 1), ('storage', 1), ('place', 1), ('online', 1), ('structured', 1), ('everything', 1), ('exists', 1), ('exist', 1), ('book', 1), ('introduces', 1), ('fluidinfo', 1), ('enables', 1), ('store', 1), ('information', 1), ('anything', 1), ('real', 1), ('imaginary', 1), ('digital', 1), ('form', 1), ('learn', 1), ('organize', 1), ('search', 1), ('decide', 1), ('use', 1), ('modify', 1)]
[('couchdb', 3), ('application', 2), ('data', 2), ('new', 1), ('breed', 1), ('database', 1), ('internet', 1), ('geared', 1), ('meet', 1), ('need', 1), ('today', 1), ('dynamic', 1), ('web', 1), ('concise', 1), ('introduction', 1), ('learn', 1), ('simple', 1), ('model', 1), ('storing', 1), ('processing', 1), ('accessing', 1), ('make', 1), ('ideal', 1), ('type', 1), ('rapid', 1), ('response', 1), ('user', 1), ('demand', 1), ('easy', 1)]
[('data', 3), ('report', 1), ('examines', 1), ('important', 1), ('shift', 1), ('product', 1), ('drawing', 1), ('diverse', 1), ('example', 1), ('including', 1), ('itunes', 1), ('google', 1), ('self', 1), ('driving', 1), ('car', 1), ('patient', 1), ('monitoring', 1), ('author', 1), ('mike', 1), ('loukides', 1), ('explores', 1), ('disappearance', 1), ('power', 1), ('combining', 1), ('difference', 1), ('discovery', 1), ('recommendation', 1), ('looking', 1), ('ahead', 1), ('analysis', 1), ('find', 1), ('real', 1)]
[('data', 2), ('year', 2), ('collection', 1), ('represents', 1), ('full', 1), ('spectrum', 1), ('related', 1), ('content', 1), ('published', 1), ('reilly', 1), ('radar', 1), ('last', 1), ('mike', 1), ('loukides', 1), ('kicked', 1), ('thing', 1), ('june', 1), ('science', 1), ('pursued', 1), ('various', 1), ('thread', 1), ('theme', 1), ('naturally', 1), ('emerged', 1), ('roughly', 1), ('later', 1), ('look', 1), ('back', 1), ('covered', 1)]
[('data', 2), ('year', 2), ('collection', 1), ('represents', 1), ('full', 1), ('spectrum', 1), ('related', 1), ('content', 1), ('published', 1), ('reilly', 1), ('radar', 1), ('last', 1), ('mike', 1), ('loukides', 1), ('kicked', 1), ('thing', 1), ('june', 1), ('science', 1), ('pursued', 1), ('various', 1), ('thread', 1), ('theme', 1), ('naturally', 1), ('emerged', 1), ('roughly', 1), ('later', 1), ('look', 1), ('back', 1), ('covered', 1)]
[('objective', 2), ('macruby', 2), ('want', 1), ('build', 1), ('native', 1), ('mac', 1), ('o', 1), ('application', 1), ('sleek', 1), ('developer', 1), ('friendly', 1), ('alternative', 1), ('ideal', 1), ('choice', 1), ('depth', 1), ('guide', 1), ('show', 1), ('apple', 1), ('implementation', 1), ('ruby', 1), ('give', 1), ('access', 1), ('feature', 1), ('available', 1), ('programmer', 1), ('clear', 1), ('detailed', 1), ('explanation', 1), ('including', 1), ('quick', 1)]
[('automating', 1), ('repetitive', 1), ('programming', 1), ('task', 1), ('easier', 1), ('many', 1), ('flash', 1), ('developer', 1), ('think', 1), ('ant', 1), ('build', 1), ('tool', 1), ('eclipse', 1), ('ide', 1), ('concise', 1), ('guide', 1), ('set', 1), ('ultimate', 1), ('development', 1), ('machine', 1), ('code', 1), ('compile', 1), ('debug', 1), ('deploy', 1), ('project', 1), ('faster', 1), ('started', 1), ('versioning', 1), ('system', 1), ('subversion', 1), ('git', 1), ('create', 1)]
[('email', 2), ('experienced', 1), ('programmer', 1), ('willing', 1), ('crunch', 1), ('data', 1), ('concise', 1), ('guide', 1), ('show', 1), ('use', 1), ('machine', 1), ('learning', 1), ('work', 1), ('learn', 1), ('write', 1), ('algorithm', 1), ('automatically', 1), ('sort', 1), ('redirect', 1), ('based', 1), ('statistical', 1), ('pattern', 1), ('author', 1), ('drew', 1), ('conway', 1), ('john', 1), ('myles', 1), ('white', 1), ('approach', 1), ('process', 1), ('practical', 1), ('fashion', 1), ('using', 1)]
[('search', 3), ('many', 1), ('company', 1), ('still', 1), ('approach', 1), ('engine', 1), ('optimization', 1), ('seo', 1), ('paid', 1), ('separate', 1), ('initiative', 1), ('depth', 1), ('guide', 1), ('show', 1), ('use', 1), ('program', 1), ('part', 1), ('comprehensive', 1), ('strategy', 1), ('improve', 1), ('site', 1), ('ranking', 1), ('attract', 1), ('right', 1), ('increase', 1), ('conversion', 1), ('rate', 1), ('learn', 1), ('measure', 1), ('test', 1)]
[('data', 5), ('science', 2), ('team', 2), ('evolves', 1), ('become', 1), ('business', 1), ('necessity', 1), ('importance', 1), ('assembling', 1), ('strong', 1), ('innovative', 1), ('grows', 1), ('depth', 1), ('report', 1), ('scientist', 1), ('dj', 1), ('patil', 1), ('explains', 1), ('skill', 1), ('perspective', 1), ('tool', 1), ('process', 1), ('position', 1), ('success', 1), ('topic', 1), ('include', 1), ('mean', 1), ('driven', 1), ('unique', 1), ('role', 1)]
[('starling', 3), ('actionscript', 1), ('framework', 1), ('developed', 1), ('top', 1), ('stage', 1), ('apis', 1), ('available', 1), ('desktop', 1), ('flash', 1), ('player', 1), ('adobe', 1), ('air', 1), ('mainly', 1), ('designed', 1), ('game', 1), ('development', 1), ('used', 1), ('many', 1), ('use', 1), ('case', 1), ('make', 1), ('possible', 1), ('write', 1), ('fast', 1), ('gpu', 1), ('accelerated', 1), ('application', 1), ('without', 1), ('touch', 1), ('low', 1), ('level', 1)]
[('google', 2), ('learn', 2), ('want', 1), ('gain', 1), ('control', 1), ('social', 1), ('networking', 1), ('activity', 1), ('jargon', 1), ('free', 1), ('guide', 1), ('help', 1), ('quickly', 1), ('master', 1), ('in', 1), ('out', 1), ('site', 1), ('organize', 1), ('contact', 1), ('hold', 1), ('video', 1), ('chat', 1), ('many', 1), ('ten', 1), ('determine', 1), ('exactly', 1), ('book', 1), ('navigate', 1)]
[('drupal', 3), ('design', 3), ('way', 2), ('output', 2), ('itching', 1), ('build', 1), ('interesting', 1), ('project', 1), ('confused', 1), ('handle', 1), ('challenge', 1), ('concise', 1), ('guide', 1), ('help', 1), ('small', 1), ('team', 1), ('solo', 1), ('website', 1), ('designer', 1), ('understand', 1), ('work', 1), ('demonstrating', 1), ('content', 1), ('learn', 1), ('manage', 1), ('around', 1), ('turn', 1), ('theme', 1)]
[('java', 2), ('programming', 2), ('developer', 2), ('editor', 2), ('language', 1), ('increased', 1), ('functionality', 1), ('complexity', 1), ('demanded', 1), ('program', 1), ('gone', 1), ('day', 1), ('simple', 1), ('visual', 1), ('sufficient', 1), ('even', 1), ('small', 1), ('project', 1), ('numerous', 1), ('ides', 1), ('available', 1), ('today', 1), ('use', 1), ('stand', 1), ('rest', 1)]
[('problem', 2), ('stuck', 1), ('bug', 1), ('performance', 1), ('crash', 1), ('data', 1), ('corruption', 1), ('puzzling', 1), ('output', 1), ('database', 1), ('programmer', 1), ('dba', 1), ('part', 1), ('life', 1), ('trick', 1), ('knowing', 1), ('quickly', 1), ('recover', 1), ('unique', 1), ('example', 1), ('packed', 1), ('book', 1), ('show', 1), ('handle', 1), ('array', 1), ('vexing', 1), ('working', 1), ('mysql', 1), ('written', 1), ('principal', 1)]
[('author', 3), ('tool', 3), ('ibooks', 2), ('first', 1), ('kind', 1), ('never', 1), ('publisher', 1), ('content', 1), ('creator', 1), ('making', 1), ('dynamic', 1), ('interactive', 1), ('ebooks', 1), ('wysiwyg', 1), ('environment', 1), ('book', 1), ('intended', 1), ('writing', 1), ('learn', 1), ('expect', 1), ('new', 1), ('strength', 1), ('limitation', 1)]
[('author', 3), ('tool', 3), ('ibooks', 2), ('first', 1), ('kind', 1), ('never', 1), ('publisher', 1), ('content', 1), ('creator', 1), ('making', 1), ('dynamic', 1), ('interactive', 1), ('ebooks', 1), ('wysiwyg', 1), ('environment', 1), ('book', 1), ('intended', 1), ('writing', 1), ('learn', 1), ('expect', 1), ('new', 1), ('strength', 1), ('limitation', 1)]
[('foundation', 2), ('although', 1), ('digital', 1), ('revolution', 1), ('made', 1), ('content', 1), ('available', 1), ('print', 1), ('book', 1), ('ebooks', 1), ('still', 1), ('accessible', 1), ('built', 1), ('often', 1), ('weak', 1), ('changing', 1), ('introduction', 1), ('epub', 1), ('publisher', 1), ('mean', 1), ('create', 1), ('single', 1), ('rich', 1), ('data', 1), ('source', 1)]
[('data', 4), ('help', 2), ('move', 1), ('era', 1), ('unprecedented', 1), ('volume', 1), ('computing', 1), ('power', 1), ('benefit', 1), ('business', 1), ('alone', 1), ('citizen', 1), ('access', 1), ('government', 1), ('hold', 1), ('accountable', 1), ('build', 1), ('new', 1), ('service', 1), ('simply', 1), ('making', 1), ('available', 1), ('sufficient', 1), ('use', 1), ('public', 1), ('good', 1), ('driven', 1), ('distributed', 1)]
[('data', 4), ('help', 2), ('move', 1), ('era', 1), ('unprecedented', 1), ('volume', 1), ('computing', 1), ('power', 1), ('benefit', 1), ('business', 1), ('alone', 1), ('citizen', 1), ('access', 1), ('government', 1), ('hold', 1), ('accountable', 1), ('build', 1), ('new', 1), ('service', 1), ('simply', 1), ('making', 1), ('available', 1), ('sufficient', 1), ('use', 1), ('public', 1), ('good', 1), ('driven', 1), ('distributed', 1)]
[('audio', 2), ('pd', 2), ('want', 1), ('turn', 1), ('mobile', 1), ('device', 1), ('musical', 1), ('instrument', 1), ('equip', 1), ('game', 1), ('interactive', 1), ('rather', 1), ('canned', 1), ('sample', 1), ('pure', 1), ('data', 1), ('open', 1), ('source', 1), ('visual', 1), ('programming', 1), ('environment', 1), ('let', 1), ('manipulate', 1), ('digital', 1), ('real', 1), ('time', 1), ('concise', 1), ('book', 1), ('show', 1), ('use', 1), ('help', 1), ('libpd', 1), ('library', 1)]
[('product', 3), ('recommendation', 2), ('past', 1), ('year', 1), ('seen', 1), ('many', 1), ('data', 1), ('based', 1), ('predictive', 1), ('modeling', 1), ('range', 1), ('weather', 1), ('forecasting', 1), ('engine', 1), ('amazon', 1), ('prediction', 1), ('technology', 1), ('interesting', 1), ('mathematically', 1), ('elegant', 1), ('need', 1), ('take', 1), ('next', 1), ('step', 1), ('going', 1), ('produce', 1), ('optimal', 1)]
[('product', 3), ('recommendation', 2), ('past', 1), ('year', 1), ('seen', 1), ('many', 1), ('data', 1), ('based', 1), ('predictive', 1), ('modeling', 1), ('range', 1), ('weather', 1), ('forecasting', 1), ('engine', 1), ('amazon', 1), ('prediction', 1), ('technology', 1), ('interesting', 1), ('mathematically', 1), ('elegant', 1), ('need', 1), ('take', 1), ('next', 1), ('step', 1), ('going', 1), ('produce', 1), ('optimal', 1)]
[('community', 2), ('online', 1), ('provide', 1), ('wide', 1), ('range', 1), ('opportunity', 1), ('supporting', 1), ('cause', 1), ('marketing', 1), ('product', 1), ('service', 1), ('building', 1), ('open', 1), ('source', 1), ('software', 1), ('art', 1), ('help', 1), ('recruit', 1), ('member', 1), ('motivate', 1), ('manage', 1), ('active', 1), ('participant', 1), ('author', 1), ('jono', 1), ('bacon', 1), ('offer', 1), ('experience', 1), ('observation', 1), ('year', 1), ('effort', 1), ('build', 1)]
[('code', 3), ('team', 2), ('definite', 1), ('idea', 1), ('writing', 1), ('working', 1), ('alone', 1), ('development', 1), ('requires', 1), ('everyone', 1), ('use', 1), ('approach', 1), ('javascript', 1), ('practice', 1), ('book', 1), ('including', 1), ('style', 1), ('programming', 1), ('tip', 1), ('automation', 1), ('learn', 1), ('write', 1), ('maintainable', 1), ('member', 1), ('easily', 1), ('understand', 1), ('adapt', 1), ('extend', 1)]
[('sakai', 1), ('open', 1), ('academic', 1), ('environment', 1), ('oae', 1), ('provides', 1), ('unique', 1), ('collaboration', 1), ('system', 1), ('university', 1), ('campus', 1), ('social', 1), ('network', 1), ('help', 1), ('student', 1), ('discus', 1), ('class', 1), ('material', 1), ('pursue', 1), ('research', 1), ('communicate', 1), ('faculty', 1), ('discover', 1), ('risk', 1), ('benefit', 1), ('sharing', 1), ('personal', 1), ('information', 1), ('private', 1), ('rather', 1), ('public', 1), ('forum', 1), ('example', 1), ('driven', 1)]
[('many', 2), ('developing', 1), ('apps', 1), ('latest', 1), ('smartphones', 1), ('faced', 1), ('several', 1), ('vexing', 1), ('question', 1), ('platform', 1), ('need', 1), ('accommodate', 1), ('level', 1), ('support', 1), ('mobile', 1), ('browser', 1), ('provide', 1), ('help', 1), ('address', 1), ('key', 1), ('issue', 1), ('guide', 1), ('provides', 1), ('hand', 1), ('tour', 1), ('powerful', 1), ('javascript', 1), ('framework', 1), ('available', 1), ('today', 1)]
[('data', 4), ('problem', 3), ('use', 3), ('acclaimed', 1), ('scientist', 1), ('dj', 1), ('patil', 1), ('detail', 1), ('new', 1), ('approach', 1), ('solving', 1), ('jujitsu', 1), ('learn', 1), ('weight', 1), ('break', 1), ('seemingly', 1), ('complex', 1), ('simplified', 1), ('part', 1), ('alternative', 1), ('analysis', 1), ('technique', 1), ('examine', 1), ('human', 1), ('input', 1), ('mechanical', 1), ('turk', 1), ('design', 1), ('trick', 1)]
[('data', 4), ('problem', 3), ('use', 3), ('acclaimed', 1), ('scientist', 1), ('dj', 1), ('patil', 1), ('detail', 1), ('new', 1), ('approach', 1), ('solving', 1), ('jujitsu', 1), ('learn', 1), ('weight', 1), ('break', 1), ('seemingly', 1), ('complex', 1), ('simplified', 1), ('part', 1), ('alternative', 1), ('analysis', 1), ('technique', 1), ('examine', 1), ('human', 1), ('input', 1), ('mechanical', 1), ('turk', 1), ('design', 1), ('trick', 1)]
[('web', 3), ('html', 2), ('javascript', 2), ('decade', 1), ('ago', 1), ('ajax', 1), ('took', 1), ('childhood', 1), ('moving', 1), ('full', 1), ('adulthood', 1), ('insightful', 1), ('overview', 1), ('provides', 1), ('striking', 1), ('example', 1), ('technology', 1), ('teamed', 1), ('give', 1), ('truly', 1), ('open', 1), ('platform', 1), ('author', 1), ('kyle', 1), ('simpson', 1), ('cookbook', 1), ('show', 1), ('unlocks', 1), ('power', 1)]
[('web', 3), ('html', 2), ('javascript', 2), ('decade', 1), ('ago', 1), ('ajax', 1), ('took', 1), ('childhood', 1), ('moving', 1), ('full', 1), ('adulthood', 1), ('insightful', 1), ('overview', 1), ('provides', 1), ('striking', 1), ('example', 1), ('technology', 1), ('teamed', 1), ('give', 1), ('truly', 1), ('open', 1), ('platform', 1), ('author', 1), ('kyle', 1), ('simpson', 1), ('cookbook', 1), ('show', 1), ('unlocks', 1), ('power', 1)]
[('toc', 3), ('best', 2), ('collection', 1), ('essential', 1), ('post', 1), ('last', 1), ('month', 1), ('selected', 1), ('blog', 1), ('number', 1), ('external', 1), ('source', 1), ('mantra', 1), ('tool', 1), ('change', 1), ('fail', 1), ('forward', 1), ('fast', 1), ('alliterative', 1), ('way', 1), ('encouraging', 1), ('experimentation', 1), ('felt', 1), ('appropriate', 1), ('use', 1), ('testing', 1), ('ground', 1)]
[('toc', 3), ('best', 2), ('collection', 1), ('essential', 1), ('post', 1), ('last', 1), ('month', 1), ('selected', 1), ('blog', 1), ('number', 1), ('external', 1), ('source', 1), ('mantra', 1), ('tool', 1), ('change', 1), ('fail', 1), ('forward', 1), ('fast', 1), ('alliterative', 1), ('way', 1), ('encouraging', 1), ('experimentation', 1), ('felt', 1), ('appropriate', 1), ('use', 1), ('testing', 1), ('ground', 1)]
[('web', 3), ('reilly', 2), ('concept', 1), ('began', 1), ('conference', 1), ('brainstorming', 1), ('session', 1), ('medialive', 1), ('international', 1), ('dale', 1), ('dougherty', 1), ('pioneer', 1), ('vp', 1), ('noted', 1), ('far', 1), ('crashed', 1), ('important', 1), ('exciting', 1), ('new', 1), ('application', 1), ('site', 1), ('popping', 1), ('surprising', 1), ('regularity', 1), ('company', 1)]
[('service', 4), ('new', 2), ('web', 2), ('developer', 1), ('make', 1), ('sense', 1), ('emerging', 1), ('framework', 1), ('start', 1), ('writing', 1), ('today', 1), ('concise', 1), ('book', 1), ('give', 1), ('programmer', 1), ('concrete', 1), ('introduction', 1), ('handy', 1), ('reference', 1), ('xml', 1), ('first', 1), ('explaining', 1), ('foundation', 1), ('breed', 1), ('distributed', 1)]
[('adobe', 4), ('graphic', 2), ('edge', 2), ('want', 1), ('create', 1), ('animated', 1), ('iphone', 1), ('ipad', 1), ('web', 1), ('using', 1), ('familiar', 1), ('feature', 1), ('come', 1), ('right', 1), ('guide', 1), ('preview', 1), ('missing', 1), ('manual', 1), ('show', 1), ('build', 1), ('html', 1), ('javascript', 1), ('multimedia', 1), ('tool', 1), ('programming', 1), ('experience', 1), ('problem', 1), ('writes', 1), ('code', 1), ('book', 1)]
[('native', 2), ('android', 2), ('true', 1), ('build', 1), ('apps', 1), ('io', 1), ('window', 1), ('phone', 1), ('net', 1), ('framework', 1), ('help', 1), ('monotouch', 1), ('mono', 1), ('hand', 1), ('guide', 1), ('show', 1), ('reuse', 1), ('codebase', 1), ('across', 1), ('three', 1), ('platform', 1), ('combining', 1), ('business', 1), ('logic', 1), ('layer', 1), ('app', 1), ('separate', 1), ('fully', 1), ('uis', 1), ('ideal', 1), ('marriage', 1)]
[('toc', 2), ('new', 2), ('york', 2), ('publishing', 2), ('industry', 2), ('best', 1), ('acceleration', 1), ('change', 1), ('innovation', 1), ('today', 1), ('dizzying', 1), ('pace', 1), ('overwhelming', 1), ('reilly', 1), ('conference', 1), ('february', 1), ('practitioner', 1), ('executive', 1), ('tech', 1), ('joined', 1), ('together', 1), ('navigate', 1), ('ongoing', 1), ('transformation', 1)]
[('toc', 2), ('new', 2), ('york', 2), ('publishing', 2), ('industry', 2), ('best', 1), ('acceleration', 1), ('change', 1), ('innovation', 1), ('today', 1), ('dizzying', 1), ('pace', 1), ('overwhelming', 1), ('reilly', 1), ('conference', 1), ('february', 1), ('practitioner', 1), ('executive', 1), ('tech', 1), ('joined', 1), ('together', 1), ('navigate', 1), ('ongoing', 1), ('transformation', 1)]
[('annual', 1), ('report', 1), ('examines', 1), ('key', 1), ('trend', 1), ('development', 1), ('notably', 1), ('demise', 1), ('border', 1), ('shaped', 1), ('computer', 1), ('book', 1), ('market', 1)]
[('annual', 1), ('report', 1), ('examines', 1), ('key', 1), ('trend', 1), ('development', 1), ('notably', 1), ('demise', 1), ('border', 1), ('shaped', 1), ('computer', 1), ('book', 1), ('market', 1)]
[('performance', 2), ('critical', 1), ('success', 1), ('website', 1), ('help', 1), ('using', 1), ('today', 1), ('new', 1), ('tool', 1), ('key', 1), ('remarkable', 1), ('guide', 1), ('leading', 1), ('web', 1), ('expert', 1), ('offer', 1), ('practical', 1), ('tip', 1), ('technique', 1), ('advice', 1), ('optimizing', 1), ('site', 1), ('user', 1), ('experience', 1), ('originally', 1), ('written', 1), ('online', 1), ('calendar', 1), ('collection', 1), ('article', 1), ('inspire', 1)]
[('learn', 2), ('based', 2), ('data', 2), ('visualization', 2), ('javascript', 2), ('use', 2), ('create', 1), ('beautiful', 1), ('interactive', 1), ('browser', 1), ('library', 1), ('hand', 1), ('book', 1), ('show', 1), ('combination', 1), ('svg', 1), ('build', 1), ('everything', 1), ('simple', 1), ('bar', 1), ('chart', 1), ('complex', 1), ('infographics', 1), ('basic', 1), ('tool', 1), ('building', 1), ('real', 1)]
[('shaders', 2), ('pixel', 1), ('powerful', 1), ('graphic', 1), ('tool', 1), ('available', 1), ('xaml', 1), ('programmer', 1), ('shader', 1), ('development', 1), ('bear', 1), ('little', 1), ('resemblance', 1), ('traditional', 1), ('net', 1), ('programming', 1), ('hand', 1), ('book', 1), ('discover', 1), ('use', 1), ('existing', 1), ('window', 1), ('presentation', 1), ('foundation', 1), ('wpf', 1), ('silverlight', 1), ('application', 1), ('learn', 1)]
[('reilly', 2), ('entered', 1), ('age', 1), ('noops', 1), ('infrastructure', 1), ('hardly', 1), ('old', 1), ('style', 1), ('system', 1), ('administrator', 1), ('disappearing', 1), ('face', 1), ('automation', 1), ('cloud', 1), ('computing', 1), ('operation', 1), ('become', 1), ('significant', 1), ('radar', 1), ('report', 1), ('explains', 1), ('moving', 1), ('complex', 1), ('arrangement', 1), ('known', 1), ('devops', 1), ('mike', 1), ('loukides', 1), ('vp', 1)]
[('reilly', 2), ('entered', 1), ('age', 1), ('noops', 1), ('infrastructure', 1), ('hardly', 1), ('old', 1), ('style', 1), ('system', 1), ('administrator', 1), ('disappearing', 1), ('face', 1), ('automation', 1), ('cloud', 1), ('computing', 1), ('operation', 1), ('become', 1), ('significant', 1), ('radar', 1), ('report', 1), ('explains', 1), ('moving', 1), ('complex', 1), ('arrangement', 1), ('known', 1), ('devops', 1), ('mike', 1), ('loukides', 1), ('vp', 1)]
[('web', 3), ('reilly', 2), ('concept', 1), ('began', 1), ('conference', 1), ('brainstorming', 1), ('session', 1), ('medialive', 1), ('international', 1), ('dale', 1), ('dougherty', 1), ('pioneer', 1), ('vp', 1), ('noted', 1), ('far', 1), ('crashed', 1), ('important', 1), ('exciting', 1), ('new', 1), ('application', 1), ('site', 1), ('popping', 1), ('surprising', 1), ('regularity', 1), ('company', 1)]
[('source', 3), ('data', 3), ('open', 2), ('small', 2), ('trend', 2), ('catalyst', 1), ('business', 1), ('growth', 1), ('driver', 1), ('future', 1), ('success', 1), ('many', 1), ('startup', 1), ('today', 1), ('bringing', 1), ('together', 1), ('bluehost', 1), ('anonymized', 1), ('customer', 1), ('reilly', 1), ('medium', 1), ('job', 1), ('market', 1), ('along', 1), ('report', 1), ('capture', 1), ('current', 1), ('state', 1), ('relates', 1)]
[('source', 3), ('data', 3), ('open', 2), ('small', 2), ('trend', 2), ('catalyst', 1), ('business', 1), ('growth', 1), ('driver', 1), ('future', 1), ('success', 1), ('many', 1), ('startup', 1), ('today', 1), ('bringing', 1), ('together', 1), ('bluehost', 1), ('anonymized', 1), ('customer', 1), ('reilly', 1), ('medium', 1), ('job', 1), ('market', 1), ('along', 1), ('report', 1), ('capture', 1), ('current', 1), ('state', 1), ('relates', 1)]
[('web', 2), ('learn', 2), ('rail', 2), ('developer', 1), ('designer', 1), ('ready', 1), ('unique', 1), ('book', 1), ('ideal', 1), ('way', 1), ('start', 1), ('rather', 1), ('throw', 1), ('middle', 1), ('framework', 1), ('model', 1), ('view', 1), ('controller', 1), ('architecture', 1), ('learning', 1), ('work', 1), ('outside', 1), ('begin', 1), ('foundation', 1), ('already', 1), ('know', 1), ('create', 1), ('something', 1)]
[('community', 3), ('open', 2), ('source', 2), ('around', 2), ('many', 2), ('thinking', 1), ('creating', 1), ('code', 1), ('thing', 1), ('know', 1), ('make', 1), ('plan', 1), ('firm', 1), ('type', 1), ('single', 1), ('rather', 1), ('group', 1), ('gathered', 1), ('free', 1), ('software', 1), ('common', 1), ('gathering', 1), ('several', 1)]
[('community', 3), ('open', 2), ('source', 2), ('around', 2), ('many', 2), ('thinking', 1), ('creating', 1), ('code', 1), ('thing', 1), ('know', 1), ('make', 1), ('plan', 1), ('firm', 1), ('type', 1), ('single', 1), ('rather', 1), ('group', 1), ('gathered', 1), ('free', 1), ('software', 1), ('common', 1), ('gathering', 1), ('several', 1)]
[('designer', 2), ('drupal', 2), ('solo', 1), ('web', 1), ('part', 1), ('small', 1), ('team', 1), ('itching', 1), ('build', 1), ('interesting', 1), ('project', 1), ('hand', 1), ('book', 1), ('provides', 1), ('tool', 1), ('technique', 1), ('going', 1), ('award', 1), ('winning', 1), ('dani', 1), ('nordin', 1), ('guide', 1), ('site', 1), ('planning', 1), ('teach', 1), ('create', 1), ('solid', 1), ('user', 1), ('centered', 1), ('design', 1), ('framework', 1), ('show', 1), ('trick', 1)]
[('javascript', 2), ('expectation', 2), ('next', 1), ('phenomenal', 1), ('rise', 1), ('simple', 1), ('client', 1), ('side', 1), ('scripting', 1), ('tool', 1), ('versatile', 1), ('flexible', 1), ('programming', 1), ('language', 1), ('exceeded', 1), ('everyone', 1), ('hope', 1), ('future', 1), ('considerable', 1), ('insightful', 1), ('report', 1), ('dr', 1), ('axel', 1), ('rauschmayer', 1), ('explains', 1), ('combination', 1), ('several', 1), ('technology', 1)]
[('javascript', 2), ('expectation', 2), ('next', 1), ('phenomenal', 1), ('rise', 1), ('simple', 1), ('client', 1), ('side', 1), ('scripting', 1), ('tool', 1), ('versatile', 1), ('flexible', 1), ('programming', 1), ('language', 1), ('exceeded', 1), ('everyone', 1), ('hope', 1), ('future', 1), ('considerable', 1), ('insightful', 1), ('report', 1), ('dr', 1), ('axel', 1), ('rauschmayer', 1), ('explains', 1), ('combination', 1), ('several', 1), ('technology', 1)]
[('javascript', 3), ('apis', 2), ('many', 1), ('feature', 1), ('inspired', 1), ('popular', 1), ('library', 1), ('available', 1), ('native', 1), ('today', 1), ('powerful', 1), ('browser', 1), ('seem', 1), ('convenient', 1), ('given', 1), ('need', 1), ('write', 1), ('relying', 1), ('make', 1), ('code', 1), ('maintenance', 1), ('difficult', 1), ('long', 1), ('run', 1), ('report', 1), ('nicholas', 1), ('zakas', 1), ('consultant', 1), ('former', 1)]
[('javascript', 3), ('apis', 2), ('many', 1), ('feature', 1), ('inspired', 1), ('popular', 1), ('library', 1), ('available', 1), ('native', 1), ('today', 1), ('powerful', 1), ('browser', 1), ('seem', 1), ('convenient', 1), ('given', 1), ('need', 1), ('write', 1), ('relying', 1), ('make', 1), ('code', 1), ('maintenance', 1), ('difficult', 1), ('long', 1), ('run', 1), ('report', 1), ('nicholas', 1), ('zakas', 1), ('consultant', 1), ('former', 1)]
[('flex', 3), ('technology', 2), ('author', 2), ('evaluating', 1), ('new', 1), ('challenge', 1), ('short', 1), ('cut', 1), ('designed', 1), ('help', 1), ('web', 1), ('application', 1), ('developer', 1), ('team', 1), ('manager', 1), ('understand', 1), ('right', 1), ('company', 1), ('client', 1), ('although', 1), ('book', 1), ('strong', 1), ('understanding', 1), ('framework', 1), ('sale', 1), ('pitch', 1)]
[('internet', 2), ('anew', 2), ('transforming', 1), ('froma', 1), ('collection', 1), ('web', 1), ('page', 1), ('huge', 1), ('distributeddatabase', 1), ('wealth', 1), ('ofdata', 1), ('r', 1), ('atomfeeds', 1), ('xml', 1), ('data', 1), ('find', 1), ('apartment', 1), ('pay', 1), ('car', 1), ('see', 1), ('storm', 1), ('approaching', 1), ('newdatabase', 1), ('need', 1), ('tool', 1), ('mine', 1)]
[('simple', 2), ('phone', 2), ('text', 1), ('message', 1), ('application', 1), ('appears', 1), ('virtually', 1), ('mobile', 1), ('ultimate', 1), ('thin', 1), ('client', 1), ('allowing', 1), ('user', 1), ('access', 1), ('full', 1), ('computing', 1), ('power', 1), ('informational', 1), ('depth', 1), ('internet', 1), ('cheap', 1), ('cell', 1), ('mountaintop', 1), ('building', 1), ('sm', 1), ('service', 1), ('quite', 1), ('tutorial', 1), ('guide', 1), ('variety', 1)]
[('adobe', 2), ('time', 2), ('even', 1), ('though', 1), ('lightroom', 1), ('far', 1), ('complete', 1), ('writing', 1), ('likely', 1), ('many', 1), ('word', 1), ('new', 1), ('changed', 1), ('feature', 1), ('released', 1), ('make', 1), ('major', 1), ('change', 1), ('workflow', 1), ('right', 1), ('still', 1), ('beta', 1), ('free', 1), ('furthermore', 1), ('although', 1), ('unfinished', 1), ('product', 1), ('extremely', 1), ('productive', 1)]
[('medium', 2), ('using', 2), ('fm', 2), ('interested', 1), ('recording', 1), ('streaming', 1), ('flash', 1), ('server', 1), ('adobe', 1), ('real', 1), ('time', 1), ('messaging', 1), ('protocol', 1), ('unique', 1), ('page', 1), ('pdf', 1), ('book', 1), ('perfect', 1), ('primer', 1), ('reference', 1), ('systematic', 1), ('guide', 1), ('developing', 1), ('application', 1), ('actionscript', 1), ('chapter', 1), ('focus', 1), ('specific', 1), ('aspect', 1)]
[('flex', 2), ('short', 1), ('cut', 1), ('getting', 1), ('running', 1), ('adobe', 1), ('perfect', 1), ('title', 1), ('almost', 1), ('everything', 1), ('wanted', 1), ('know', 1), ('afraid', 1), ('ask', 1), ('consists', 1), ('conversational', 1), ('instruction', 1), ('along', 1), ('demonstrative', 1), ('example', 1), ('order', 1), ('give', 1), ('developer', 1), ('efficient', 1), ('grounding', 1), ('arm', 1), ('around', 1), ('using', 1)]
[('style', 2), ('sheet', 2), ('cs', 2), ('document', 2), ('web', 2), ('cascading', 1), ('powerful', 1), ('tool', 1), ('transforms', 1), ('presentation', 1), ('collection', 1), ('spread', 1), ('nearly', 1), ('every', 1), ('corner', 1), ('many', 1), ('non', 1), ('environment', 1), ('free', 1), ('introduction', 1), ('cascade', 1), ('learn', 1), ('make', 1), ('possible', 1), ('completely', 1), ('change', 1), ('way', 1)]
[('style', 2), ('sheet', 2), ('cs', 2), ('document', 2), ('web', 2), ('cascading', 1), ('powerful', 1), ('tool', 1), ('transforms', 1), ('presentation', 1), ('collection', 1), ('spread', 1), ('nearly', 1), ('every', 1), ('corner', 1), ('many', 1), ('non', 1), ('environment', 1), ('free', 1), ('introduction', 1), ('cascade', 1), ('learn', 1), ('make', 1), ('possible', 1), ('completely', 1), ('change', 1), ('way', 1)]
[('java', 3), ('enterprise', 2), ('understand', 2), ('handy', 1), ('guide', 1), ('provides', 1), ('overview', 1), ('edition', 1), ('main', 1), ('technology', 1), ('includes', 1), ('extensive', 1), ('easy', 1), ('code', 1), ('sample', 1), ('demonstrate', 1), ('platform', 1), ('many', 1), ('improvement', 1), ('quickly', 1), ('ee', 1), ('simplifies', 1), ('process', 1), ('developing', 1), ('deploying', 1), ('web', 1), ('application', 1), ('explore', 1), ('new', 1)]
[('network', 3), ('juniper', 2), ('practical', 1), ('book', 1), ('consulting', 1), ('senior', 1), ('engineer', 1), ('peter', 1), ('southwick', 1), ('offer', 1), ('unique', 1), ('first', 1), ('person', 1), ('field', 1), ('study', 1), ('designing', 1), ('configuring', 1), ('troubleshooting', 1), ('new', 1), ('system', 1), ('changing', 1), ('networking', 1), ('world', 1), ('chapter', 1), ('long', 1), ('travelogue', 1), ('follows', 1), ('team', 1), ('warrior', 1), ('solve', 1), ('specific', 1), ('need', 1)]
[('style', 3), ('rule', 2), ('page', 2), ('exactly', 1), ('cascade', 1), ('cascading', 1), ('sheet', 1), ('work', 1), ('concise', 1), ('guide', 1), ('demonstrates', 1), ('power', 1), ('simplicity', 1), ('cs', 1), ('selector', 1), ('applying', 1), ('different', 1), ('web', 1), ('element', 1), ('learn', 1), ('presentation', 1), ('depends', 1), ('multitude', 1), ('complex', 1), ('way', 1), ('function', 1), ('sometimes', 1), ('collide', 1), ('within', 1)]
[('unit', 2), ('element', 2), ('nearly', 1), ('everything', 1), ('cs', 1), ('involves', 1), ('determining', 1), ('look', 1), ('formatting', 1), ('web', 1), ('page', 1), ('concise', 1), ('guide', 1), ('learn', 1), ('work', 1), ('array', 1), ('including', 1), ('measurement', 1), ('keywords', 1), ('help', 1), ('define', 1), ('color', 1), ('text', 1), ('distance', 1), ('location', 1), ('external', 1), ('file', 1), ('value', 1), ('book', 1)]
[('silverlight', 2), ('concept', 2), ('short', 1), ('cut', 1), ('take', 1), ('close', 1), ('lookat', 1), ('bring', 1), ('clarity', 1), ('thisbleeding', 1), ('edge', 1), ('technology', 1), ('first', 1), ('lltake', 1), ('broad', 1), ('look', 1), ('new', 1), ('ofrich', 1), ('internet', 1), ('application', 1), ('silverlightfits', 1), ('picture', 1), ('llexamine', 1), ('work', 1), ('highlighting', 1), ('tool', 1), ('andcode', 1), ('need', 1)]
[('said', 2), ('know', 2), ('half', 2), ('advertising', 2), ('early', 1), ('day', 1), ('th', 1), ('century', 1), ('department', 1), ('store', 1), ('magnate', 1), ('johnwanamaker', 1), ('famously', 1), ('twork', 1), ('problem', 1), ('remainedbasically', 1), ('true', 1), ('google', 1), ('transformed', 1), ('adsense', 1), ('basedon', 1), ('new', 1), ('us', 1), ('data', 1), ('analysis', 1), ('might', 1), ('healthcare', 1)]
[('said', 2), ('know', 2), ('half', 2), ('advertising', 2), ('early', 1), ('day', 1), ('th', 1), ('century', 1), ('department', 1), ('store', 1), ('magnate', 1), ('johnwanamaker', 1), ('famously', 1), ('twork', 1), ('problem', 1), ('remainedbasically', 1), ('true', 1), ('google', 1), ('transformed', 1), ('adsense', 1), ('basedon', 1), ('new', 1), ('us', 1), ('data', 1), ('analysis', 1), ('might', 1), ('healthcare', 1)]
[('dart', 2), ('apps', 2), ('web', 2), ('moving', 1), ('development', 1), ('platform', 1), ('help', 1), ('build', 1), ('high', 1), ('performance', 1), ('html', 1), ('modern', 1), ('guide', 1), ('take', 1), ('hand', 1), ('tour', 1), ('language', 1), ('library', 1), ('tool', 1), ('including', 1), ('editor', 1), ('virtual', 1), ('machine', 1), ('developing', 1), ('structured', 1), ('fast', 1), ('maintainable', 1), ('run', 1), ('client', 1), ('server', 1)]
[('adobe', 4), ('graphic', 2), ('book', 2), ('edge', 2), ('animate', 2), ('want', 1), ('create', 1), ('animated', 1), ('iphone', 1), ('ipad', 1), ('web', 1), ('using', 1), ('familiar', 1), ('feature', 1), ('come', 1), ('right', 1), ('missing', 1), ('manual', 1), ('show', 1), ('build', 1), ('html', 1), ('visual', 1), ('tool', 1), ('programming', 1), ('experience', 1), ('problem', 1), ('writes', 1), ('code', 1)]
[('data', 4), ('big', 2), ('anthology', 1), ('relevant', 1), ('anyone', 1), ('creates', 1), ('collectsor', 1), ('relies', 1), ('upon', 1), ('technical', 1), ('book', 1), ('businessguide', 1), ('ubiquitous', 1), ('pay', 1), ('attention', 1), ('toborders', 1), ('calibrated', 1), ('coverage', 1), ('follow', 1), ('wherever', 1), ('itgoes', 1), ('first', 1), ('edition', 1), ('reilly', 1), ('team', 1), ('tracked', 1), ('thebirth', 1)]
[('data', 4), ('big', 2), ('anthology', 1), ('relevant', 1), ('anyone', 1), ('creates', 1), ('collectsor', 1), ('relies', 1), ('upon', 1), ('technical', 1), ('book', 1), ('businessguide', 1), ('ubiquitous', 1), ('pay', 1), ('attention', 1), ('toborders', 1), ('calibrated', 1), ('coverage', 1), ('follow', 1), ('wherever', 1), ('itgoes', 1), ('first', 1), ('edition', 1), ('reilly', 1), ('team', 1), ('tracked', 1), ('thebirth', 1)]
[('google', 5), ('social', 2), ('take', 2), ('integrate', 1), ('existing', 1), ('website', 1), ('build', 1), ('application', 1), ('platform', 1), ('developing', 1), ('tour', 1), ('apis', 1), ('lot', 1), ('concrete', 1), ('example', 1), ('hand', 1), ('project', 1), ('learn', 1), ('advantage', 1), ('plug', 1), ('in', 1), ('communicate', 1), ('programmatically', 1)]
[('apps', 2), ('competition', 2), ('organize', 1), ('civic', 1), ('cac', 1), ('city', 1), ('practical', 1), ('guide', 1), ('provides', 1), ('best', 1), ('practice', 1), ('phase', 1), ('process', 1), ('based', 1), ('largely', 1), ('author', 1), ('firsthand', 1), ('experience', 1), ('planning', 1), ('managing', 1), ('metro', 1), ('chicago', 1), ('mc', 1), ('learn', 1), ('everything', 1), ('setting', 1), ('goal', 1), ('creating', 1), ('budget', 1), ('running', 1), ('measuring', 1)]
[('adobe', 4), ('graphic', 2), ('edge', 2), ('animate', 2), ('want', 1), ('create', 1), ('animated', 1), ('iphone', 1), ('ipad', 1), ('web', 1), ('using', 1), ('familiar', 1), ('feature', 1), ('come', 1), ('right', 1), ('guide', 1), ('preview', 1), ('missing', 1), ('manual', 1), ('show', 1), ('build', 1), ('html', 1), ('visual', 1), ('tool', 1), ('programming', 1), ('experience', 1), ('problem', 1), ('writes', 1), ('code', 1), ('book', 1)]
[('learn', 2), ('build', 1), ('key', 1), ('aspect', 1), ('web', 1), ('cloud', 1), ('mobile', 1), ('solution', 1), ('combining', 1), ('various', 1), ('net', 1), ('open', 1), ('source', 1), ('technology', 1), ('helpful', 1), ('example', 1), ('hand', 1), ('book', 1), ('show', 1), ('tackle', 1), ('concurrency', 1), ('asynchrony', 1), ('server', 1), ('side', 1), ('challenge', 1), ('quickly', 1), ('productive', 1), ('whether', 1), ('want', 1), ('integrate', 1)]
[('puppet', 3), ('model', 2), ('apis', 2), ('true', 1), ('power', 1), ('exists', 1), ('simple', 1), ('resource', 1), ('us', 1), ('manage', 1), ('state', 1), ('complex', 1), ('operating', 1), ('system', 1), ('concise', 1), ('guide', 1), ('show', 1), ('extend', 1), ('implement', 1), ('custom', 1), ('functionality', 1), ('top', 1), ('working', 1), ('type', 1), ('provider', 1), ('expert', 1), ('lab', 1), ('explain', 1), ('concept', 1), ('behind', 1), ('provide', 1)]
[('mobile', 2), ('take', 1), ('advantage', 1), ('commerce', 1), ('generate', 1), ('demand', 1), ('traffic', 1), ('sale', 1), ('product', 1), ('service', 1), ('unique', 1), ('cookbook', 1), ('provides', 1), ('collection', 1), ('practical', 1), ('recipe', 1), ('put', 1), ('use', 1), ('every', 1), ('step', 1), ('customer', 1), ('lifecycle', 1), ('learn', 1), ('add', 1), ('feature', 1), ('functionality', 1), ('wide', 1), ('set', 1), ('ebay', 1), ('apis', 1), ('including', 1), ('magento', 1)]
[('hd', 3), ('many', 1), ('thing', 1), ('nook', 1), ('right', 1), ('box', 1), ('really', 1), ('want', 1), ('tablet', 1), ('start', 1), ('book', 1), ('clear', 1), ('instruction', 1), ('full', 1), ('color', 1), ('illustration', 1), ('savvy', 1), ('advice', 1), ('technology', 1), ('expert', 1), ('preston', 1), ('gralla', 1), ('learn', 1), ('use', 1), ('email', 1), ('web', 1), ('watch', 1), ('movie', 1), ('show', 1), ('play', 1), ('game', 1), ('listen', 1)]
[('google', 4), ('app', 3), ('engine', 2), ('application', 2), ('make', 1), ('easy', 1), ('create', 1), ('web', 1), ('serve', 1), ('million', 1), ('easily', 1), ('serving', 1), ('hundred', 1), ('minimal', 1), ('front', 1), ('investment', 1), ('programming', 1), ('engineer', 1), ('dan', 1), ('sanderson', 1), ('provides', 1), ('practical', 1), ('guidance', 1), ('designing', 1), ('developing', 1), ('vast', 1), ('infrastructure', 1), ('using', 1)]
[('data', 4), ('several', 2), ('access', 2), ('application', 2), ('choose', 1), ('framework', 1), ('building', 1), ('java', 1), ('enterprise', 1), ('work', 1), ('relational', 1), ('database', 1), ('big', 1), ('hand', 1), ('introduction', 1), ('show', 1), ('spring', 1), ('make', 1), ('relatively', 1), ('easy', 1), ('build', 1), ('across', 1), ('wide', 1), ('range', 1), ('new', 1), ('technology', 1), ('nosql', 1), ('hadoop', 1)]
[('official', 2), ('guide', 2), ('quickbooks', 2), ('window', 2), ('step', 2), ('intuit', 1), ('bookkeeping', 1), ('workflow', 1), ('smoother', 1), ('faster', 1), ('program', 1), ('missing', 1), ('manual', 1), ('put', 1), ('firmly', 1), ('control', 1), ('instruction', 1), ('use', 1), ('specific', 1), ('feature', 1), ('along', 1), ('basic', 1), ('accounting', 1), ('advice', 1)]
[('html', 2), ('web', 2), ('hand', 1), ('book', 1), ('look', 1), ('past', 1), ('hype', 1), ('buzzword', 1), ('surrounding', 1), ('give', 1), ('conservative', 1), ('practical', 1), ('approach', 1), ('using', 1), ('javascript', 1), ('mvc', 1), ('framework', 1), ('latest', 1), ('specification', 1), ('quickly', 1), ('master', 1), ('build', 1), ('mobile', 1), ('desktop', 1), ('apps', 1), ('widely', 1), ('supported', 1), ('across', 1), ('major', 1), ('browser', 1), ('device', 1), ('even', 1), ('though', 1)]
[('run', 1), ('entire', 1), ('corporate', 1), ('infrastructure', 1), ('cloud', 1), ('environment', 1), ('control', 1), ('completely', 1), ('inexpensively', 1), ('securely', 1), ('help', 1), ('hand', 1), ('book', 1), ('need', 1), ('started', 1), ('basic', 1), ('experience', 1), ('learn', 1), ('use', 1), ('amazon', 1), ('web', 1), ('service', 1), ('aws', 1), ('build', 1), ('private', 1), ('window', 1), ('domain', 1), ('complete', 1), ('active', 1), ('directory', 1), ('enterprise', 1)]
[('kinect', 2), ('step', 2), ('create', 1), ('innovative', 1), ('application', 1), ('computer', 1), ('vision', 1), ('game', 1), ('design', 1), ('music', 1), ('robotics', 1), ('area', 1), ('taking', 1), ('full', 1), ('advantage', 1), ('extensive', 1), ('interactive', 1), ('multi', 1), ('medium', 1), ('platform', 1), ('book', 1), ('walkthrough', 1), ('best', 1), ('technique', 1), ('tool', 1), ('come', 1), ('openkinect', 1), ('project', 1), ('largest', 1), ('active', 1)]
[('window', 2), ('server', 2), ('step', 2), ('organization', 1), ('plan', 1), ('move', 1), ('cloud', 1), ('infrastructure', 1), ('lan', 1), ('wan', 1), ('book', 1), ('show', 1), ('efficiently', 1), ('experienced', 1), ('administrator', 1), ('learn', 1), ('deploy', 1), ('configure', 1), ('manage', 1), ('expanded', 1), ('capability', 1), ('feature', 1), ('using', 1), ('clear', 1), ('example', 1), ('numerous', 1), ('screen', 1), ('shot', 1)]
[('javascript', 4), ('language', 2), ('advanced', 1), ('beginner', 1), ('intermediate', 1), ('developer', 1), ('enlightenment', 1), ('solidify', 1), ('understanding', 1), ('especially', 1), ('use', 1), ('library', 1), ('concise', 1), ('book', 1), ('expert', 1), ('cody', 1), ('lindley', 1), ('jquery', 1), ('cookbook', 1), ('provides', 1), ('accurate', 1), ('view', 1), ('examining', 1), ('object', 1), ('supporting', 1)]
[('apple', 2), ('ipod', 2), ('feature', 2), ('continue', 1), ('set', 1), ('bar', 1), ('medium', 1), ('player', 1), ('bold', 1), ('new', 1), ('touch', 1), ('supersized', 1), ('screen', 1), ('siri', 1), ('voice', 1), ('control', 1), ('still', 1), ('lack', 1), ('guide', 1), ('full', 1), ('color', 1), ('book', 1), ('come', 1), ('show', 1), ('play', 1), ('music', 1), ('movie', 1), ('slideshows', 1), ('shoot', 1), ('photo', 1), ('video', 1), ('navigate', 1), ('redesigned', 1)]
[('toc', 3), ('year', 2), ('industry', 2), ('community', 2), ('site', 2), ('quite', 1), ('change', 1), ('publishing', 1), ('throughout', 1), ('used', 1), ('oreilly', 1), ('provide', 1), ('insightful', 1), ('analysis', 1), ('latest', 1), ('development', 1), ('article', 1), ('publish', 1), ('tjust', 1), ('team', 1), ('feature', 1), ('perspective', 1), ('many', 1), ('thetop', 1), ('innovator', 1)]
[('security', 2), ('system', 2), ('freebsd', 1), ('openbsd', 1), ('increasingly', 1), ('gaining', 1), ('traction', 1), ('educational', 1), ('institution', 1), ('non', 1), ('profit', 1), ('corporation', 1), ('worldwide', 1), ('provide', 1), ('significant', 1), ('advantage', 1), ('linux', 1), ('although', 1), ('lot', 1), ('said', 1), ('robustness', 1), ('clean', 1), ('organization', 1), ('stability', 1), ('bsd', 1), ('operating', 1), ('main', 1), ('reason', 1)]
[('backbone', 3), ('application', 2), ('spa', 2), ('model', 2), ('mvc', 2), ('want', 1), ('build', 1), ('site', 1), ('frontend', 1), ('single', 1), ('page', 1), ('hand', 1), ('book', 1), ('show', 1), ('job', 1), ('done', 1), ('j', 1), ('learn', 1), ('create', 1), ('structured', 1), ('javascript', 1), ('using', 1), ('flavor', 1), ('view', 1), ('controller', 1), ('architecture', 1), ('start', 1), ('basic', 1)]
[('ebay', 4), ('lesson', 2), ('lot', 1), ('book', 1), ('tell', 1), ('buy', 1), ('sell', 1), ('something', 1), ('go', 1), ('horribly', 1), ('awry', 1), ('chalk', 1), ('learned', 1), ('lick', 1), ('wound', 1), ('move', 1), ('chance', 1), ('burned', 1), ('offer', 1), ('relevant', 1), ('based', 1), ('real', 1), ('life', 1), ('story', 1), ('posted', 1), ('answer', 1), ('center', 1), ('sharp', 1), ('witty', 1), ('rhetoric', 1), ('veteran', 1), ('user', 1)]
[('palm', 2), ('million', 1), ('pda', 1), ('shipped', 1), ('date', 1), ('defined', 1), ('market', 1), ('handhelds', 1), ('dominated', 1), ('class', 1), ('computing', 1), ('device', 1), ('began', 1), ('outpace', 1), ('competitor', 1), ('six', 1), ('year', 1), ('ago', 1), ('company', 1), ('strength', 1), ('o', 1), ('developer', 1), ('loyal', 1), ('powerful', 1), ('versatile', 1), ('operating', 1), ('system', 1), ('created', 1)]
[('team', 3), ('software', 2), ('side', 1), ('story', 1), ('presidential', 1), ('campaign', 1), ('success', 1), ('obama', 1), ('built', 1), ('house', 1), ('put', 1), ('practice', 1), ('many', 1), ('idea', 1), ('devops', 1), ('world', 1), ('game', 1), ('day', 1), ('important', 1), ('exercise', 1), ('part', 1), ('tried', 1), ('hard', 1), ('possible', 1), ('break', 1), ('system', 1), ('rest', 1)]
[('team', 3), ('software', 2), ('side', 1), ('story', 1), ('presidential', 1), ('campaign', 1), ('success', 1), ('obama', 1), ('built', 1), ('house', 1), ('put', 1), ('practice', 1), ('many', 1), ('idea', 1), ('devops', 1), ('world', 1), ('game', 1), ('day', 1), ('important', 1), ('exercise', 1), ('part', 1), ('tried', 1), ('hard', 1), ('possible', 1), ('break', 1), ('system', 1), ('rest', 1)]
[('javascript', 3), ('php', 2), ('want', 1), ('significantly', 1), ('expand', 1), ('web', 1), ('development', 1), ('skill', 1), ('beyond', 1), ('practical', 1), ('hand', 1), ('book', 1), ('teach', 1), ('ecmascript', 1), ('core', 1), ('language', 1), ('ground', 1), ('discover', 1), ('similarity', 1), ('condition', 1), ('loop', 1), ('primary', 1), ('focus', 1), ('unique', 1), ('object', 1), ('creation', 1), ('class', 1)]
[('programming', 2), ('io', 2), ('developer', 2), ('mac', 2), ('rapid', 1), ('introduction', 1), ('iphone', 1), ('ipad', 1), ('ipod', 1), ('touch', 1), ('easy', 1), ('follow', 1), ('guide', 1), ('learn', 1), ('develop', 1), ('first', 1), ('marketable', 1), ('application', 1), ('opening', 1), ('xcode', 1), ('submitting', 1), ('product', 1), ('app', 1), ('store', 1), ('whether', 1), ('new', 1), ('experienced', 1), ('ready', 1), ('tackle', 1)]
[('sensor', 2), ('learn', 2), ('build', 1), ('distributed', 1), ('network', 1), ('collect', 1), ('analyze', 1), ('visualize', 1), ('real', 1), ('time', 1), ('data', 1), ('human', 1), ('environment', 1), ('including', 1), ('noise', 1), ('level', 1), ('temperature', 1), ('flow', 1), ('hand', 1), ('book', 1), ('turn', 1), ('project', 1), ('idea', 1), ('working', 1), ('hardware', 1), ('using', 1), ('easy', 1), ('arduino', 1), ('microcontroller', 1), ('shelf', 1), ('author', 1)]
[('native', 2), ('apps', 2), ('titanium', 2), ('build', 1), ('io', 1), ('android', 1), ('blackberry', 1), ('single', 1), ('javascript', 1), ('codebase', 1), ('appcelerator', 1), ('guide', 1), ('get', 1), ('quickly', 1), ('speed', 1), ('amazing', 1), ('framework', 1), ('show', 1), ('generate', 1), ('cross', 1), ('platform', 1), ('control', 1), ('learn', 1), ('advantage', 1), ('using', 1), ('want', 1), ('create', 1), ('app', 1)]
[('book', 2), ('apps', 2), ('feature', 2), ('second', 1), ('edition', 1), ('popular', 1), ('learn', 1), ('build', 1), ('html', 1), ('cs', 1), ('based', 1), ('access', 1), ('geolocation', 1), ('accelerometer', 1), ('multi', 1), ('touch', 1), ('screen', 1), ('offline', 1), ('storage', 1), ('today', 1), ('smartphones', 1), ('tablet', 1), ('phone', 1), ('market', 1), ('mobile', 1), ('continues', 1), ('evolve', 1), ('breakneck', 1), ('pace', 1)]
[('devops', 3), ('culture', 2), ('tool', 2), ('talk', 1), ('often', 1), ('emphasize', 1), ('configuration', 1), ('management', 1), ('system', 1), ('source', 1), ('code', 1), ('repository', 1), ('mandi', 1), ('wall', 1), ('explains', 1), ('velocity', 1), ('report', 1), ('really', 1), ('changing', 1), ('company', 1), ('replacing', 1), ('traditional', 1), ('development', 1), ('operation', 1), ('silo', 1)]
[('devops', 3), ('culture', 2), ('tool', 2), ('talk', 1), ('often', 1), ('emphasize', 1), ('configuration', 1), ('management', 1), ('system', 1), ('source', 1), ('code', 1), ('repository', 1), ('mandi', 1), ('wall', 1), ('explains', 1), ('velocity', 1), ('report', 1), ('really', 1), ('changing', 1), ('company', 1), ('replacing', 1), ('traditional', 1), ('development', 1), ('operation', 1), ('silo', 1)]
[('big', 2), ('data', 2), ('disruptive', 2), ('potential', 1), ('information', 1), ('technology', 1), ('developed', 1), ('past', 1), ('year', 1), ('author', 1), ('jeffrey', 1), ('needham', 1), ('point', 1), ('revealing', 1), ('book', 1), ('provide', 1), ('unprecedented', 1), ('visibility', 1), ('operational', 1), ('efficiency', 1), ('enterprise', 1), ('agency', 1), ('possibility', 1), ('provides', 1), ('historically', 1), ('informed', 1), ('overview', 1)]
[('big', 2), ('data', 2), ('disruptive', 2), ('potential', 1), ('information', 1), ('technology', 1), ('developed', 1), ('past', 1), ('year', 1), ('author', 1), ('jeffrey', 1), ('needham', 1), ('point', 1), ('revealing', 1), ('book', 1), ('provide', 1), ('unprecedented', 1), ('visibility', 1), ('operational', 1), ('efficiency', 1), ('enterprise', 1), ('agency', 1), ('possibility', 1), ('provides', 1), ('historically', 1), ('informed', 1), ('overview', 1)]
[('data', 3), ('sqoop', 2), ('integrating', 1), ('multiple', 1), ('source', 1), ('essential', 1), ('age', 1), ('big', 1), ('challenging', 1), ('time', 1), ('consuming', 1), ('task', 1), ('handy', 1), ('cookbook', 1), ('provides', 1), ('dozen', 1), ('ready', 1), ('use', 1), ('recipe', 1), ('using', 1), ('apache', 1), ('command', 1), ('line', 1), ('interface', 1), ('application', 1), ('optimizes', 1), ('transfer', 1), ('relational', 1), ('database', 1), ('hadoop', 1), ('powerful', 1)]
[('bi', 2), ('create', 1), ('dynamic', 1), ('business', 1), ('intelligence', 1), ('solution', 1), ('sharepoint', 1), ('faster', 1), ('capability', 1), ('previously', 1), ('possible', 1), ('book', 1), ('learn', 1), ('entire', 1), ('process', 1), ('high', 1), ('level', 1), ('concept', 1), ('development', 1), ('deployment', 1), ('building', 1), ('data', 1), ('rich', 1), ('application', 1), ('visual', 1), ('studio', 1), ('lightswitch', 1), ('sql', 1), ('server', 1), ('host', 1), ('related', 1)]
[('web', 2), ('application', 2), ('lift', 2), ('need', 1), ('help', 1), ('building', 1), ('framework', 1), ('cookbook', 1), ('provides', 1), ('score', 1), ('concise', 1), ('ready', 1), ('use', 1), ('code', 1), ('solution', 1), ('find', 1), ('recipe', 1), ('everything', 1), ('setting', 1), ('coding', 1), ('environment', 1), ('creating', 1), ('rest', 1), ('service', 1), ('deploying', 1), ('production', 1), ('built', 1), ('top', 1), ('scala', 1), ('jvm', 1), ('programming', 1), ('language', 1)]
[('query', 3), ('result', 3), ('year', 2), ('ago', 2), ('analyst', 2), ('made', 2), ('five', 1), ('six', 1), ('working', 1), ('big', 1), ('datasets', 1), ('back', 1), ('overnight', 1), ('data', 1), ('world', 1), ('revolutionized', 1), ('hadoop', 1), ('tool', 1), ('possible', 1), ('getthe', 1), ('minute', 1), ('revolution', 1), ('continues', 1), ('demand', 1), ('sub', 1), ('second', 1), ('near', 1), ('real', 1), ('time', 1)]
[('query', 3), ('result', 3), ('year', 2), ('ago', 2), ('analyst', 2), ('made', 2), ('five', 1), ('six', 1), ('working', 1), ('big', 1), ('datasets', 1), ('back', 1), ('overnight', 1), ('data', 1), ('world', 1), ('revolutionized', 1), ('hadoop', 1), ('tool', 1), ('possible', 1), ('getthe', 1), ('minute', 1), ('revolution', 1), ('continues', 1), ('demand', 1), ('sub', 1), ('second', 1), ('near', 1), ('real', 1), ('time', 1)]
[('risk', 2), ('management', 2), ('payment', 2), ('tasked', 1), ('building', 1), ('team', 1), ('handle', 1), ('online', 1), ('rmp', 1), ('practical', 1), ('introduction', 1), ('provides', 1), ('framework', 1), ('choosing', 1), ('technology', 1), ('personnel', 1), ('need', 1), ('author', 1), ('financial', 1), ('service', 1), ('executive', 1), ('ohad', 1), ('samet', 1), ('explains', 1), ('component', 1), ('present', 1), ('coherent', 1), ('strategy', 1)]
[('risk', 2), ('management', 2), ('payment', 2), ('tasked', 1), ('building', 1), ('team', 1), ('handle', 1), ('online', 1), ('rmp', 1), ('practical', 1), ('introduction', 1), ('provides', 1), ('framework', 1), ('choosing', 1), ('technology', 1), ('personnel', 1), ('need', 1), ('author', 1), ('financial', 1), ('service', 1), ('executive', 1), ('ohad', 1), ('samet', 1), ('explains', 1), ('component', 1), ('present', 1), ('coherent', 1), ('strategy', 1)]
[('new', 2), ('every', 1), ('year', 1), ('ten', 1), ('thousand', 1), ('company', 1), ('industry', 1), ('giant', 1), ('aspiring', 1), ('upstart', 1), ('apply', 1), ('speak', 1), ('conference', 1), ('pump', 1), ('million', 1), ('dollar', 1), ('event', 1), ('hoping', 1), ('find', 1), ('customer', 1), ('strengthen', 1), ('brand', 1), ('meet', 1), ('partner', 1), ('sadly', 1), ('thing', 1), ('go', 1), ('way', 1), ('submitted', 1), ('topic', 1), ('chosen', 1)]
[('data', 4), ('science', 2), ('despite', 1), ('excitement', 1), ('around', 1), ('big', 1), ('analytics', 1), ('ambiguity', 1), ('term', 1), ('led', 1), ('poor', 1), ('communication', 1), ('scientist', 1), ('organization', 1), ('seeking', 1), ('help', 1), ('report', 1), ('author', 1), ('harlan', 1), ('harris', 1), ('sean', 1), ('murphy', 1), ('marck', 1), ('vaisman', 1), ('examine', 1), ('survey', 1), ('several', 1), ('hundred', 1), ('practitioner', 1), ('mid', 1)]
[('data', 4), ('science', 2), ('despite', 1), ('excitement', 1), ('around', 1), ('big', 1), ('analytics', 1), ('ambiguity', 1), ('term', 1), ('led', 1), ('poor', 1), ('communication', 1), ('scientist', 1), ('organization', 1), ('seeking', 1), ('help', 1), ('report', 1), ('author', 1), ('harlan', 1), ('harris', 1), ('sean', 1), ('murphy', 1), ('marck', 1), ('vaisman', 1), ('examine', 1), ('survey', 1), ('several', 1), ('hundred', 1), ('practitioner', 1), ('mid', 1)]
[('build', 1), ('html', 1), ('based', 1), ('hybrid', 1), ('application', 1), ('android', 1), ('mix', 1), ('native', 1), ('java', 1), ('javascript', 1), ('component', 1), ('without', 1), ('using', 1), ('third', 1), ('party', 1), ('library', 1), ('wrapper', 1), ('phonegap', 1), ('titanium', 1), ('concise', 1), ('hand', 1), ('book', 1), ('take', 1), ('entire', 1), ('process', 1), ('setting', 1), ('development', 1), ('environment', 1), ('deploying', 1), ('product', 1), ('app', 1), ('store', 1), ('learn', 1)]
[('technique', 2), ('application', 2), ('object', 2), ('iteration', 1), ('window', 1), ('meant', 1), ('corresponding', 1), ('improvement', 1), ('used', 1), ('transferring', 1), ('data', 1), ('among', 1), ('today', 1), ('leading', 1), ('called', 1), ('automation', 1), ('allows', 1), ('work', 1), ('directly', 1), ('interface', 1), ('using', 1), ('model', 1), ('want', 1), ('write', 1), ('code', 1), ('programming', 1), ('language', 1)]
[('java', 3), ('enterprise', 2), ('provides', 2), ('chapter', 2), ('speed', 1), ('principal', 1), ('technology', 1), ('platform', 1), ('edition', 1), ('learn', 1), ('latest', 1), ('version', 1), ('embrace', 1), ('html', 1), ('focus', 1), ('higher', 1), ('productivity', 1), ('functionality', 1), ('meet', 1), ('demand', 1), ('written', 1), ('arun', 1), ('gupta', 1), ('key', 1), ('member', 1), ('ee', 1), ('team', 1), ('book', 1), ('survey', 1), ('several', 1)]
[('use', 2), ('osgi', 2), ('experienced', 1), ('java', 1), ('developer', 1), ('enterprise', 1), ('practical', 1), ('hand', 1), ('book', 1), ('show', 1), ('design', 1), ('develop', 1), ('deploy', 1), ('modular', 1), ('cloud', 1), ('application', 1), ('quickly', 1), ('learn', 1), ('concise', 1), ('code', 1), ('example', 1), ('set', 1), ('best', 1), ('practice', 1), ('derived', 1), ('author', 1), ('experience', 1), ('real', 1), ('world', 1), ('project', 1)]
[('hadoop', 2), ('application', 2), ('learn', 2), ('easier', 1), ('way', 1), ('build', 1), ('hand', 1), ('book', 1), ('use', 1), ('cascading', 1), ('open', 1), ('source', 1), ('abstraction', 1), ('framework', 1), ('let', 1), ('easily', 1), ('create', 1), ('manage', 1), ('powerful', 1), ('enterprise', 1), ('grade', 1), ('data', 1), ('processing', 1), ('without', 1), ('intricacy', 1), ('mapreduce', 1), ('working', 1), ('sample', 1), ('apps', 1), ('based', 1)]
[('window', 3), ('game', 3), ('present', 1), ('incredible', 1), ('opportunity', 1), ('distributing', 1), ('monetizing', 1), ('html', 1), ('guide', 1), ('show', 1), ('profit', 1), ('learn', 1), ('everything', 1), ('need', 1), ('know', 1), ('porting', 1), ('original', 1), ('web', 1), ('based', 1), ('javascript', 1), ('new', 1), ('touch', 1), ('first', 1), ('version', 1), ('several', 1), ('option', 1), ('selling', 1), ('store', 1)]
[('tool', 3), ('improvement', 2), ('use', 1), ('play', 1), ('critical', 1), ('role', 1), ('effective', 1), ('today', 1), ('changing', 1), ('world', 1), ('technology', 1), ('tend', 1), ('focus', 1), ('latest', 1), ('greatest', 1), ('solution', 1), ('overlook', 1), ('simple', 1), ('available', 1), ('constant', 1), ('important', 1), ('aspect', 1), ('devops', 1), ('movement', 1), ('always', 1), ('warrant', 1), ('replacement', 1)]
[('tool', 3), ('improvement', 2), ('use', 1), ('play', 1), ('critical', 1), ('role', 1), ('effective', 1), ('today', 1), ('changing', 1), ('world', 1), ('technology', 1), ('tend', 1), ('focus', 1), ('latest', 1), ('greatest', 1), ('solution', 1), ('overlook', 1), ('simple', 1), ('available', 1), ('constant', 1), ('important', 1), ('aspect', 1), ('devops', 1), ('movement', 1), ('always', 1), ('warrant', 1), ('replacement', 1)]
[('python', 2), ('programmer', 1), ('want', 1), ('incorporate', 1), ('xml', 1), ('skill', 1), ('set', 1), ('book', 1), ('attracted', 1), ('wide', 1), ('variety', 1), ('developer', 1), ('use', 1), ('either', 1), ('glue', 1), ('connect', 1), ('critical', 1), ('programming', 1), ('task', 1), ('together', 1), ('complete', 1), ('cross', 1), ('platform', 1), ('application', 1), ('development', 1), ('language', 1), ('yet', 1), ('object', 1), ('oriented', 1)]
[('web', 4), ('news', 2), ('become', 2), ('mainstream', 2), ('center', 2), ('yet', 2), ('good', 1), ('bad', 1), ('move', 1), ('closer', 1), ('business', 1), ('life', 1), ('important', 1), ('step', 1), ('back', 1), ('consider', 1), ('anywhere', 1), ('near', 1), ('area', 1), ('discovered', 1), ('mass', 1), ('happening', 1), ('edge', 1), ('might', 1)]
[('relationship', 2), ('customer', 1), ('management', 1), ('system', 1), ('changing', 1), ('response', 1), ('possibility', 1), ('competition', 1), ('offered', 1), ('web', 1), ('technology', 1), ('even', 1), ('old', 1), ('standby', 1), ('email', 1), ('quest', 1), ('harness', 1), ('make', 1), ('truly', 1), ('useful', 1), ('firehose', 1), ('information', 1), ('activity', 1), ('entering', 1), ('new', 1), ('era', 1)]
[('market', 2), ('web', 2), ('year', 1), ('release', 1), ('first', 1), ('looked', 1), ('financial', 1), ('teach', 1), ('another', 1), ('seem', 1), ('group', 1), ('still', 1), ('talking', 1), ('past', 1), ('seeing', 1), ('early', 1), ('sign', 1), ('wall', 1), ('street', 1), ('work', 1), ('together', 1), ('deepening', 1), ('evidence', 1), ('become', 1), ('inextricable', 1)]
[('issue', 2), ('web', 2), ('reilly', 2), ('special', 1), ('release', 1), ('look', 1), ('state', 1), ('operation', 1), ('examine', 1), ('early', 1), ('signal', 1), ('going', 1), ('present', 1), ('industry', 1), ('best', 1), ('practice', 1), ('interesting', 1), ('player', 1), ('available', 1), ('stand', 1), ('alone', 1), ('radar', 1), ('research', 1), ('report', 1), ('complement', 1), ('inaugural', 1), ('velocity', 1), ('conference', 1), ('performance', 1)]
[('web', 3), ('geoweb', 2), ('software', 2), ('location', 2), ('geospatial', 1), ('aka', 1), ('rapidly', 1), ('evolving', 1), ('market', 1), ('innovative', 1), ('data', 1), ('application', 1), ('including', 1), ('based', 1), ('service', 1), ('social', 1), ('even', 1), ('augmented', 1), ('reality', 1), ('mobile', 1), ('device', 1), ('propelled', 1), ('new', 1), ('aware', 1), ('iphone', 1), ('hurtling', 1), ('mainstream', 1), ('special', 1), ('issue', 1), ('lay', 1)]
[('data', 5), ('management', 3), ('big', 1), ('size', 1), ('performance', 1), ('requirement', 1), ('become', 1), ('significant', 1), ('design', 1), ('decision', 1), ('factor', 1), ('implementing', 1), ('analysis', 1), ('system', 1), ('organization', 1), ('facing', 1), ('hundred', 1), ('gigabyte', 1), ('first', 1), ('time', 1), ('trigger', 1), ('need', 1), ('reconsider', 1), ('option', 1), ('others', 1), ('take', 1), ('ten', 1)]
[('mobile', 2), ('phone', 2), ('world', 2), ('fast', 1), ('becoming', 1), ('pc', 1), ('developing', 1), ('vast', 1), ('majority', 1), ('poor', 1), ('made', 1), ('convenient', 1), ('send', 1), ('receive', 1), ('money', 1), ('pay', 1), ('bill', 1), ('enjoy', 1), ('service', 1), ('limited', 1), ('bank', 1), ('debit', 1), ('card', 1), ('account', 1)]
[('paas', 4), ('developer', 2), ('platform', 1), ('service', 1), ('gaining', 1), ('serious', 1), ('traction', 1), ('among', 1), ('web', 1), ('mobile', 1), ('new', 1), ('provider', 1), ('emerge', 1), ('existing', 1), ('vendor', 1), ('upgrade', 1), ('feature', 1), ('hard', 1), ('keep', 1), ('track', 1), ('offer', 1), ('thorough', 1), ('introduction', 1), ('take', 1), ('model', 1), ('point', 1), ('view', 1), ('break', 1), ('type', 1)]
[('galaxy', 1), ('amazing', 1), ('right', 1), ('box', 1), ('want', 1), ('mini', 1), ('start', 1), ('clear', 1), ('instruction', 1), ('savvy', 1), ('advice', 1), ('technology', 1), ('expert', 1), ('preston', 1), ('gralla', 1), ('learn', 1), ('go', 1), ('online', 1), ('play', 1), ('game', 1), ('listen', 1), ('music', 1), ('watch', 1), ('movie', 1), ('tv', 1), ('monitor', 1), ('health', 1), ('answer', 1), ('call', 1), ('wave', 1), ('hand', 1)]
[('data', 2), ('hadoop', 2), ('amazon', 2), ('although', 1), ('need', 1), ('large', 1), ('computing', 1), ('infrastructure', 1), ('process', 1), ('massive', 1), ('amount', 1), ('apache', 1), ('still', 1), ('difficult', 1), ('started', 1), ('practical', 1), ('guide', 1), ('show', 1), ('quickly', 1), ('launch', 1), ('analysis', 1), ('project', 1), ('cloud', 1), ('using', 1), ('elastic', 1), ('mapreduce', 1), ('emr', 1), ('hosted', 1), ('framework', 1), ('web', 1), ('service', 1), ('aws', 1)]
[('java', 4), ('object', 3), ('data', 2), ('way', 2), ('revolutionizes', 1), ('developer', 1), ('interact', 1), ('database', 1), ('datastores', 1), ('jdo', 1), ('allows', 1), ('store', 1), ('retrieve', 1), ('natural', 1), ('programmer', 1), ('instead', 1), ('working', 1), ('jdbc', 1), ('ejb', 1), ('container', 1), ('managed', 1), ('persistence', 1), ('work', 1), ('directly', 1), ('copy', 1)]
[('window', 3), ('step', 2), ('microsoft', 2), ('latest', 2), ('operating', 2), ('system', 2), ('take', 2), ('real', 1), ('feel', 1), ('wealth', 1), ('tip', 1), ('guide', 1), ('using', 1), ('xp', 1), ('learning', 1), ('adjustment', 1), ('never', 1), ('fear', 1), ('expert', 1), ('mike', 1), ('halsey', 1), ('start', 1), ('basic', 1), ('trickier', 1), ('part', 1), ('quickly', 1), ('learn', 1)]
[('data', 2), ('sitting', 1), ('pile', 1), ('interesting', 1), ('transform', 1), ('money', 1), ('easy', 1), ('focus', 1), ('content', 1), ('succumb', 1), ('rather', 1), ('unimaginative', 1), ('idea', 1), ('simply', 1), ('collecting', 1), ('reselling', 1), ('raw', 1), ('form', 1), ('certainly', 1), ('profitable', 1), ('right', 1), ('explore', 1), ('opportunity', 1), ('expect', 1)]
[('data', 2), ('sitting', 1), ('pile', 1), ('interesting', 1), ('transform', 1), ('money', 1), ('easy', 1), ('focus', 1), ('content', 1), ('succumb', 1), ('rather', 1), ('unimaginative', 1), ('idea', 1), ('simply', 1), ('collecting', 1), ('reselling', 1), ('raw', 1), ('form', 1), ('certainly', 1), ('profitable', 1), ('right', 1), ('explore', 1), ('opportunity', 1), ('expect', 1)]
[('take', 2), ('full', 1), ('advantage', 1), ('heroku', 1), ('cloud', 1), ('based', 1), ('hosting', 1), ('service', 1), ('guide', 1), ('inner', 1), ('working', 1), ('paas', 1), ('platform', 1), ('delivers', 1), ('practical', 1), ('advice', 1), ('architecting', 1), ('application', 1), ('work', 1), ('efficiently', 1), ('possible', 1), ('learn', 1), ('best', 1), ('practice', 1), ('improving', 1), ('speed', 1), ('throughput', 1), ('solving', 1), ('latency', 1), ('issue', 1), ('locating', 1), ('fixing', 1)]
[('drupal', 2), ('help', 1), ('website', 1), ('continue', 1), ('perform', 1), ('highest', 1), ('level', 1), ('grows', 1), ('meet', 1), ('demand', 1), ('comprehensive', 1), ('guide', 1), ('provides', 1), ('best', 1), ('practice', 1), ('example', 1), ('depth', 1), ('explanation', 1), ('solving', 1), ('several', 1), ('performance', 1), ('scalability', 1), ('issue', 1), ('learn', 1), ('apply', 1), ('coding', 1), ('infrastructure', 1), ('technique', 1), ('internals', 1), ('application', 1)]
[('data', 6), ('science', 3), ('powerful', 2), ('growing', 1), ('author', 1), ('cathy', 1), ('neil', 1), ('argues', 1), ('right', 1), ('approach', 1), ('skeptical', 1), ('cynical', 1), ('understands', 1), ('tool', 1), ('often', 1), ('fail', 1), ('nuanced', 1), ('really', 1), ('excellent', 1), ('skeptic', 1), ('put', 1), ('term', 1), ('big', 1), ('revolution', 1), ('dismissed', 1)]
[('data', 6), ('science', 3), ('powerful', 2), ('growing', 1), ('author', 1), ('cathy', 1), ('neil', 1), ('argues', 1), ('right', 1), ('approach', 1), ('skeptical', 1), ('cynical', 1), ('understands', 1), ('tool', 1), ('often', 1), ('fail', 1), ('nuanced', 1), ('really', 1), ('excellent', 1), ('skeptic', 1), ('put', 1), ('term', 1), ('big', 1), ('revolution', 1), ('dismissed', 1)]
[('technology', 4), ('need', 2), ('process', 2), ('exist', 1), ('vacuum', 1), ('way', 1), ('plant', 1), ('water', 1), ('nourishment', 1), ('grow', 1), ('thrive', 1), ('succeed', 1), ('culture', 1), ('integral', 1), ('critical', 1), ('success', 1), ('new', 1), ('deployment', 1), ('implementation', 1), ('big', 1), ('data', 1), ('phenomenon', 1)]
[('technology', 4), ('need', 2), ('process', 2), ('exist', 1), ('vacuum', 1), ('way', 1), ('plant', 1), ('water', 1), ('nourishment', 1), ('grow', 1), ('thrive', 1), ('succeed', 1), ('culture', 1), ('integral', 1), ('critical', 1), ('success', 1), ('new', 1), ('deployment', 1), ('implementation', 1), ('big', 1), ('data', 1), ('phenomenon', 1)]
[('security', 2), ('advanced', 1), ('professional', 1), ('know', 1), ('battle', 1), ('protect', 1), ('online', 1), ('privacy', 1), ('continues', 1), ('rage', 1), ('chat', 1), ('room', 1), ('especially', 1), ('resounding', 1), ('call', 1), ('vendor', 1), ('take', 1), ('responsibility', 1), ('release', 1), ('product', 1), ('secure', 1), ('fact', 1), ('information', 1), ('code', 1), ('passed', 1), ('daily', 1), ('basis', 1)]
[('mac', 3), ('ipad', 2), ('cross', 1), ('o', 1), ('maverick', 1), ('new', 1), ('feature', 1), ('include', 1), ('version', 1), ('goody', 1), ('map', 1), ('ibooks', 1), ('itunes', 1), ('radio', 1), ('single', 1), ('page', 1), ('instruction', 1), ('fortunately', 1), ('david', 1), ('pogue', 1), ('back', 1), ('expertise', 1), ('humor', 1), ('made', 1), ('bestselling', 1), ('book', 1), ('year', 1), ('straight', 1)]
[('learn', 1), ('use', 1), ('case', 1), ('approach', 1), ('developing', 1), ('java', 1), ('enterprise', 1), ('application', 1), ('continuously', 1), ('test', 1), ('driven', 1), ('fashion', 1), ('hand', 1), ('guide', 1), ('author', 1), ('jboss', 1), ('project', 1), ('leader', 1), ('andrew', 1), ('lee', 1), ('rubinger', 1), ('aslak', 1), ('knutsen', 1), ('show', 1), ('build', 1), ('high', 1), ('level', 1), ('component', 1), ('persistent', 1), ('storage', 1), ('user', 1), ('interface', 1), ('using', 1), ('arquillian', 1), ('testing', 1), ('platform', 1)]
[('distributed', 2), ('java', 2), ('running', 2), ('browser', 2), ('computing', 1), ('go', 1), ('together', 1), ('naturally', 1), ('first', 1), ('language', 1), ('designed', 1), ('bottom', 1), ('networking', 1), ('mind', 1), ('make', 1), ('easy', 1), ('computer', 1), ('cooperate', 1), ('even', 1), ('simplest', 1), ('applet', 1), ('application', 1), ('think', 1), ('client', 1), ('downloads', 1), ('executes', 1), ('code', 1)]
[('iwork', 2), ('apple', 1), ('versatile', 1), ('version', 1), ('mac', 1), ('io', 1), ('even', 1), ('icloud', 1), ('thing', 1), ('include', 1), ('guide', 1), ('friendly', 1), ('jargon', 1), ('free', 1), ('missing', 1), ('manual', 1), ('come', 1), ('complete', 1), ('instruction', 1), ('helpful', 1), ('example', 1), ('quickly', 1), ('learn', 1), ('create', 1), ('stunning', 1), ('document', 1), ('slideshows', 1)]
[('openstack', 2), ('design', 1), ('deploy', 1), ('maintain', 1), ('private', 1), ('public', 1), ('infrastructure', 1), ('service', 1), ('iaa', 1), ('using', 1), ('open', 1), ('source', 1), ('platform', 1), ('practical', 1), ('guide', 1), ('experienced', 1), ('developer', 1), ('contributor', 1), ('show', 1), ('build', 1), ('cloud', 1), ('based', 1), ('reference', 1), ('architecture', 1), ('perform', 1), ('daily', 1), ('administration', 1), ('task', 1), ('designed', 1)]
[('xml', 4), ('net', 4), ('based', 2), ('seeking', 1), ('way', 1), ('build', 1), ('network', 1), ('application', 1), ('web', 1), ('service', 1), ('microsoft', 1), ('provides', 1), ('tool', 1), ('need', 1), ('integrated', 1), ('framework', 1), ('visual', 1), ('studio', 1), ('want', 1), ('grasp', 1), ('actually', 1), ('work', 1), ('together', 1), ('different', 1), ('story', 1)]
[('drupal', 2), ('desktop', 2), ('want', 1), ('website', 1), ('work', 1), ('smartphones', 1), ('tablet', 1), ('practical', 1), ('guide', 1), ('show', 1), ('incorporate', 1), ('responsive', 1), ('web', 1), ('design', 1), ('rwd', 1), ('specific', 1), ('theme', 1), ('learn', 1), ('create', 1), ('attractive', 1), ('easy', 1), ('navigate', 1), ('layout', 1), ('everything', 1), ('tiny', 1), ('phone', 1), ('screen', 1), ('inch', 1), ('monitor', 1)]
[('data', 4), ('go', 1), ('beyond', 1), ('spreadsheet', 1), ('table', 1), ('design', 1), ('presentation', 1), ('really', 1), ('make', 1), ('impact', 1), ('practical', 1), ('guide', 1), ('show', 1), ('use', 1), ('tableau', 1), ('software', 1), ('convert', 1), ('raw', 1), ('compelling', 1), ('visualization', 1), ('provide', 1), ('insight', 1), ('allow', 1), ('viewer', 1), ('explore', 1), ('ideal', 1), ('analyst', 1), ('engineer', 1), ('marketer', 1), ('journalist', 1)]
[('apps', 2), ('book', 2), ('step', 2), ('window', 2), ('net', 1), ('developer', 1), ('looking', 1), ('build', 1), ('tablet', 1), ('practical', 1), ('take', 1), ('process', 1), ('developing', 1), ('store', 1), ('learn', 1), ('use', 1), ('microsoft', 1), ('modern', 1), ('ui', 1), ('design', 1), ('language', 1), ('winrt', 1), ('building', 1), ('line', 1), ('business', 1), ('mobile', 1), ('app', 1), ('course', 1)]
[('device', 3), ('world', 2), ('experience', 2), ('welcome', 1), ('multi', 1), ('user', 1), ('application', 1), ('span', 1), ('many', 1), ('smartphone', 1), ('tablet', 1), ('computer', 1), ('tv', 1), ('beyond', 1), ('practical', 1), ('book', 1), ('demonstrates', 1), ('variety', 1), ('way', 1), ('relate', 1), ('combining', 1), ('create', 1), ('powerful', 1), ('ensemble', 1), ('deliver', 1), ('superior', 1), ('integrated', 1)]
[('browser', 2), ('polyfill', 2), ('add', 1), ('custom', 1), ('feature', 1), ('old', 1), ('new', 1), ('writing', 1), ('library', 1), ('javascript', 1), ('plugins', 1), ('take', 1), ('beyond', 1), ('native', 1), ('capability', 1), ('practical', 1), ('fieldbook', 1), ('author', 1), ('brandon', 1), ('satrom', 1), ('introduces', 1), ('principle', 1), ('guideline', 1), ('development', 1), ('walk', 1), ('step', 1), ('building', 1), ('complex', 1), ('real', 1), ('world', 1), ('html', 1)]
[('health', 2), ('new', 1), ('information', 1), ('technology', 1), ('hold', 1), ('promise', 1), ('better', 1), ('world', 1), ('increasingly', 1), ('coping', 1), ('chronic', 1), ('illness', 1), ('miniaturization', 1), ('powerful', 1), ('sensing', 1), ('device', 1), ('along', 1), ('collection', 1), ('analysis', 1), ('sharing', 1), ('data', 1), ('support', 1), ('activity', 1), ('home', 1), ('clinic', 1), ('patient', 1), ('greater', 1), ('role', 1), ('care', 1)]
[('health', 2), ('new', 1), ('information', 1), ('technology', 1), ('hold', 1), ('promise', 1), ('better', 1), ('world', 1), ('increasingly', 1), ('coping', 1), ('chronic', 1), ('illness', 1), ('miniaturization', 1), ('powerful', 1), ('sensing', 1), ('device', 1), ('along', 1), ('collection', 1), ('analysis', 1), ('sharing', 1), ('data', 1), ('support', 1), ('activity', 1), ('home', 1), ('clinic', 1), ('patient', 1), ('greater', 1), ('role', 1), ('care', 1)]
[('mobile', 2), ('web', 2), ('touch', 2), ('hand', 1), ('experience', 1), ('building', 1), ('speedy', 1), ('apps', 1), ('sencha', 1), ('user', 1), ('interface', 1), ('javascript', 1), ('framework', 1), ('built', 1), ('specifically', 1), ('book', 1), ('learn', 1), ('build', 1), ('complete', 1), ('application', 1), ('called', 1), ('find', 1), ('cab', 1), ('look', 1), ('feel', 1), ('native', 1), ('app', 1), ('android', 1), ('io', 1), ('window', 1), ('blackberry', 1), ('device', 1)]
[('server', 1), ('bottleneck', 1), ('failure', 1), ('fact', 1), ('life', 1), ('database', 1), ('deployment', 1), ('bring', 1), ('everything', 1), ('halt', 1), ('practical', 1), ('book', 1), ('explains', 1), ('replication', 1), ('cluster', 1), ('monitoring', 1), ('feature', 1), ('help', 1), ('protect', 1), ('mysql', 1), ('system', 1), ('outage', 1), ('whether', 1), ('running', 1), ('hardware', 1), ('virtual', 1), ('machine', 1), ('cloud', 1), ('written', 1)]
[('web', 2), ('rwd', 2), ('performance', 2), ('responsive', 1), ('design', 1), ('slowing', 1), ('site', 1), ('concise', 1), ('book', 1), ('learn', 1), ('practical', 1), ('technique', 1), ('improving', 1), ('including', 1), ('default', 1), ('set', 1), ('guideline', 1), ('use', 1), ('easy', 1), ('starting', 1), ('point', 1), ('researcher', 1), ('evangelist', 1), ('podjarny', 1), ('walk', 1), ('several', 1), ('existing', 1), ('solution', 1)]
[('hack', 2), ('raspberry', 2), ('pi', 2), ('practical', 1), ('creative', 1), ('book', 1), ('help', 1), ('turn', 1), ('centerpiece', 1), ('cool', 1), ('electronics', 1), ('project', 1), ('want', 1), ('create', 1), ('controller', 1), ('camera', 1), ('robot', 1), ('set', 1), ('linux', 1), ('distribution', 1), ('medium', 1), ('center', 1), ('pbx', 1), ('phone', 1), ('system', 1), ('beginning', 1), ('find', 1), ('inside', 1)]
[('mcollective', 2), ('orchestrate', 1), ('change', 1), ('across', 1), ('server', 1), ('cluster', 1), ('near', 1), ('realtime', 1), ('framework', 1), ('work', 1), ('concert', 1), ('puppet', 1), ('chef', 1), ('configuration', 1), ('management', 1), ('tool', 1), ('ideal', 1), ('system', 1), ('administrator', 1), ('operation', 1), ('devops', 1), ('engineer', 1), ('level', 1), ('hand', 1), ('guide', 1), ('teach', 1), ('build', 1), ('test', 1), ('real', 1), ('installation', 1)]
[('zendesk', 2), ('implementing', 1), ('customer', 1), ('service', 1), ('software', 1), ('part', 1), ('company', 1), ('operation', 1), ('time', 1), ('consuming', 1), ('best', 1), ('practice', 1), ('advice', 1), ('hand', 1), ('guide', 1), ('shorten', 1), ('procedure', 1), ('considerably', 1), ('learn', 1), ('purpose', 1), ('benefit', 1), ('pitfall', 1), ('feature', 1), ('example', 1), ('configure', 1), ('match', 1)]
[('devops', 2), ('system', 2), ('make', 1), ('antifragile', 1), ('complex', 1), ('computer', 1), ('eventually', 1), ('break', 1), ('despite', 1), ('heavy', 1), ('handed', 1), ('bureaucratic', 1), ('change', 1), ('management', 1), ('process', 1), ('throw', 1), ('clearly', 1), ('fragile', 1), ('others', 1), ('depending', 1), ('cope', 1), ('stress', 1), ('reilly', 1), ('report', 1), ('dave', 1), ('zwieback', 1), ('explains', 1)]
[('devops', 2), ('system', 2), ('make', 1), ('antifragile', 1), ('complex', 1), ('computer', 1), ('eventually', 1), ('break', 1), ('despite', 1), ('heavy', 1), ('handed', 1), ('bureaucratic', 1), ('change', 1), ('management', 1), ('process', 1), ('throw', 1), ('clearly', 1), ('fragile', 1), ('others', 1), ('depending', 1), ('cope', 1), ('stress', 1), ('reilly', 1), ('report', 1), ('dave', 1), ('zwieback', 1), ('explains', 1)]
[('chef', 2), ('take', 1), ('advantage', 1), ('highly', 1), ('customizable', 1), ('design', 1), ('tackle', 1), ('specific', 1), ('automation', 1), ('issue', 1), ('solve', 1), ('simply', 1), ('using', 1), ('tool', 1), ('resource', 1), ('service', 1), ('box', 1), ('practical', 1), ('guide', 1), ('examine', 1), ('internal', 1), ('structure', 1), ('configuration', 1), ('management', 1), ('technology', 1), ('learn', 1), ('add', 1), ('custom', 1), ('code', 1), ('author', 1)]
[('website', 3), ('new', 2), ('content', 1), ('management', 1), ('system', 1), ('even', 1), ('building', 1), ('practical', 1), ('guide', 1), ('running', 1), ('time', 1), ('know', 1), ('code', 1), ('started', 1), ('need', 1), ('build', 1), ('quickly', 1), ('client', 1), ('requires', 1), ('powerful', 1), ('lot', 1), ('compelling', 1), ('feature', 1), ('ideal', 1), ('web', 1), ('designer', 1)]
[('backbone', 2), ('javascript', 2), ('learn', 1), ('build', 1), ('full', 1), ('stack', 1), ('application', 1), ('j', 1), ('taking', 1), ('advantage', 1), ('module', 1), ('workflow', 1), ('automation', 1), ('interface', 1), ('building', 1), ('block', 1), ('practical', 1), ('guide', 1), ('author', 1), ('patrick', 1), ('mulder', 1), ('take', 1), ('experienced', 1), ('backend', 1), ('developer', 1), ('programmer', 1), ('step', 1), ('necessary', 1), ('create', 1), ('fully', 1), ('functional', 1)]
[('impala', 2), ('hadoop', 2), ('analyst', 2), ('user', 2), ('sql', 2), ('learn', 1), ('cloudera', 1), ('open', 1), ('source', 1), ('project', 1), ('opening', 1), ('apache', 1), ('software', 1), ('stack', 1), ('wide', 1), ('audience', 1), ('database', 1), ('developer', 1), ('massively', 1), ('parallel', 1), ('processing', 1), ('mpp', 1), ('engine', 1), ('make', 1), ('query', 1), ('data', 1), ('simple', 1), ('enough', 1), ('accessible', 1), ('familiar', 1), ('business', 1)]
[('ebook', 3), ('reader', 2), ('organize', 2), ('thing', 2), ('information', 2), ('note', 1), ('exploit', 1), ('many', 1), ('advanced', 1), ('capability', 1), ('image', 1), ('hypertext', 1), ('interactivity', 1), ('optimized', 1), ('epub', 1), ('compliant', 1), ('book', 1), ('especially', 1), ('apple', 1), ('ibooks', 1), ('browser', 1), ('plugins', 1), ('feature', 1), ('work', 1)]
[('sql', 2), ('query', 2), ('hadoop', 2), ('learn', 1), ('write', 1), ('tune', 1), ('port', 1), ('statement', 1), ('big', 1), ('data', 1), ('environment', 1), ('using', 1), ('impala', 1), ('massively', 1), ('parallel', 1), ('processing', 1), ('engine', 1), ('apache', 1), ('best', 1), ('practice', 1), ('practical', 1), ('guide', 1), ('help', 1), ('design', 1), ('database', 1), ('schema', 1), ('interoperate', 1), ('component', 1), ('convenient', 1), ('administers', 1)]
[('learn', 2), ('cloudstack', 2), ('api', 2), ('planning', 1), ('deploy', 1), ('maintain', 1), ('public', 1), ('private', 1), ('hybrid', 1), ('cloud', 1), ('service', 1), ('cookbook', 1), ('handy', 1), ('recipe', 1), ('help', 1), ('quickly', 1), ('install', 1), ('apache', 1), ('along', 1), ('several', 1), ('client', 1), ('wrapper', 1), ('data', 1), ('architecture', 1), ('configuration', 1), ('management', 1), ('technology', 1), ('work', 1), ('part', 1), ('ecosystem', 1), ('use', 1)]
[('amazon', 2), ('fire', 2), ('phone', 2), ('unleash', 1), ('power', 1), ('help', 1), ('technology', 1), ('guru', 1), ('preston', 1), ('gralla', 1), ('clear', 1), ('instruction', 1), ('savvy', 1), ('advice', 1), ('fast', 1), ('paced', 1), ('engaging', 1), ('guide', 1), ('show', 1), ('make', 1), ('innovative', 1), ('feature', 1), ('including', 1), ('firefly', 1), ('dynamic', 1), ('perspective', 1), ('handed', 1), ('gesture', 1), ('integration', 1), ('prime', 1), ('important', 1)]
[('design', 2), ('enyo', 2), ('framework', 2), ('discover', 1), ('easy', 1), ('build', 1), ('responsive', 1), ('cross', 1), ('platform', 1), ('apps', 1), ('open', 1), ('source', 1), ('javascript', 1), ('revised', 1), ('expanded', 1), ('edition', 1), ('contributor', 1), ('roy', 1), ('sutton', 1), ('get', 1), ('started', 1), ('core', 1), ('object', 1), ('oriented', 1), ('feature', 1), ('including', 1), ('modular', 1), ('reusable', 1), ('extensible', 1), ('component', 1), ('layout', 1), ('widget', 1)]
[('data', 2), ('succeeding', 1), ('matter', 1), ('putting', 1), ('hadoop', 1), ('machine', 1), ('room', 1), ('hiring', 1), ('physicist', 1), ('crazy', 1), ('math', 1), ('skill', 1), ('requires', 1), ('develop', 1), ('culture', 1), ('involves', 1), ('throughout', 1), ('organization', 1), ('reilly', 1), ('report', 1), ('dj', 1), ('patil', 1), ('hilary', 1), ('mason', 1), ('outline', 1), ('step', 1), ('need', 1), ('take', 1), ('company', 1), ('truly', 1)]
[('data', 2), ('succeeding', 1), ('matter', 1), ('putting', 1), ('hadoop', 1), ('machine', 1), ('room', 1), ('hiring', 1), ('physicist', 1), ('crazy', 1), ('math', 1), ('skill', 1), ('requires', 1), ('develop', 1), ('culture', 1), ('involves', 1), ('throughout', 1), ('organization', 1), ('reilly', 1), ('report', 1), ('dj', 1), ('patil', 1), ('hilary', 1), ('mason', 1), ('outline', 1), ('step', 1), ('need', 1), ('take', 1), ('company', 1), ('truly', 1)]
[('project', 2), ('new', 1), ('github', 1), ('concise', 1), ('book', 1), ('show', 1), ('need', 1), ('started', 1), ('perfect', 1), ('product', 1), ('manager', 1), ('stakeholder', 1), ('team', 1), ('member', 1), ('want', 1), ('collaborate', 1), ('development', 1), ('whether', 1), ('review', 1), ('comment', 1), ('work', 1), ('progress', 1), ('contribute', 1), ('specific', 1), ('change', 1)]
[('dreamweaver', 1), ('cc', 1), ('powerful', 1), ('tool', 1), ('designing', 1), ('kind', 1), ('website', 1), ('simple', 1), ('static', 1), ('page', 1), ('interactive', 1), ('medium', 1), ('driven', 1), ('site', 1), ('desktop', 1), ('laptop', 1), ('mobile', 1), ('device', 1), ('program', 1), ('still', 1), ('include', 1), ('printed', 1), ('guide', 1), ('amazing', 1), ('capability', 1), ('missing', 1), ('manual', 1), ('come', 1), ('hand', 1), ('tutorial', 1), ('coverage', 1)]
[('world', 2), ('email', 2), ('stupid', 1), ('davis', 1), ('wolfgang', 1), ('hawke', 1), ('thought', 1), ('stared', 1), ('nearly', 1), ('empty', 1), ('box', 1), ('swastika', 1), ('pendant', 1), ('desk', 1), ('begin', 1), ('spam', 1), ('king', 1), ('investigative', 1), ('look', 1), ('shady', 1), ('spammer', 1), ('trying', 1), ('stop', 1), ('compelling', 1), ('exposé', 1), ('explores', 1), ('shadowy', 1), ('responsible', 1), ('today', 1), ('junk', 1)]
[('web', 3), ('design', 2), ('designer', 2), ('responsive', 1), ('help', 1), ('site', 1), ('maintain', 1), ('integrity', 1), ('variety', 1), ('screen', 1), ('size', 1), ('affect', 1), ('typography', 1), ('practical', 1), ('book', 1), ('graphic', 1), ('front', 1), ('end', 1), ('developer', 1), ('alike', 1), ('learn', 1), ('nut', 1), ('bolt', 1), ('implementing', 1), ('font', 1), ('especially', 1), ('best', 1), ('appearance', 1), ('type', 1)]
[('finding', 2), ('anomaly', 2), ('know', 2), ('data', 1), ('look', 1), ('detection', 1), ('detective', 1), ('work', 1), ('machine', 1), ('learning', 1), ('unusual', 1), ('catching', 1), ('fraud', 1), ('discovering', 1), ('strange', 1), ('activity', 1), ('large', 1), ('complex', 1), ('datasets', 1), ('unlike', 1), ('sherlock', 1), ('holmes', 1), ('puzzle', 1), ('le', 1), ('suspect', 1), ('looking', 1), ('reilly', 1), ('report', 1)]
[('messaging', 3), ('use', 2), ('application', 2), ('device', 2), ('web', 2), ('protocol', 2), ('learn', 1), ('technology', 1), ('build', 1), ('responsive', 1), ('resilient', 1), ('mobile', 1), ('browser', 1), ('hand', 1), ('guide', 1), ('stomp', 1), ('mqtt', 1), ('write', 1), ('io', 1), ('capable', 1), ('sending', 1), ('receiving', 1), ('gps', 1), ('sensor', 1), ('data', 1), ('text', 1), ('message', 1), ('alert', 1)]
[('impala', 2), ('hadoop', 2), ('analyst', 2), ('user', 2), ('sql', 2), ('learn', 1), ('cloudera', 1), ('open', 1), ('source', 1), ('project', 1), ('opening', 1), ('apache', 1), ('software', 1), ('stack', 1), ('wide', 1), ('audience', 1), ('database', 1), ('developer', 1), ('massively', 1), ('parallel', 1), ('processing', 1), ('mpp', 1), ('engine', 1), ('make', 1), ('query', 1), ('data', 1), ('simple', 1), ('enough', 1), ('accessible', 1), ('familiar', 1), ('business', 1)]
[('nokia', 2), ('smartphones', 2), ('computer', 2), ('pack', 1), ('powerful', 1), ('small', 1), ('space', 1), ('unlike', 1), ('desktop', 1), ('laptop', 1), ('smallest', 1), ('connected', 1), ('internet', 1), ('time', 1), ('interact', 1), ('world', 1), ('around', 1), ('camera', 1), ('voice', 1), ('recognition', 1), ('traditional', 1), ('phone', 1), ('keypad', 1), ('combine', 1), ('feature', 1), ('impressive', 1)]
[('application', 2), ('high', 1), ('precision', 1), ('location', 1), ('information', 1), ('increasingly', 1), ('useful', 1), ('mobile', 1), ('developer', 1), ('allows', 1), ('device', 1), ('interact', 1), ('world', 1), ('around', 1), ('practical', 1), ('book', 1), ('show', 1), ('achieve', 1), ('arm', 1), ('reach', 1), ('accuracy', 1), ('ibeacons', 1), ('simple', 1), ('transmitter', 1), ('enable', 1), ('react', 1), ('surroundings', 1), ('deliver', 1), ('timely', 1)]
[('cloud', 2), ('azure', 2), ('valuable', 1), ('tip', 1), ('technique', 1), ('automating', 1), ('deployment', 1), ('powershell', 1), ('cmdlets', 1), ('learn', 1), ('provision', 1), ('service', 1), ('fly', 1), ('hand', 1), ('guide', 1), ('microsoft', 1), ('technology', 1), ('expert', 1), ('michael', 1), ('washam', 1), ('show', 1), ('automate', 1), ('various', 1), ('management', 1), ('task', 1), ('deploy', 1), ('solution', 1), ('complex', 1), ('scale', 1)]
[('learn', 2), ('programming', 2), ('book', 2), ('app', 2), ('make', 1), ('io', 1), ('apps', 1), ('even', 1), ('absolutely', 1), ('experience', 1), ('hand', 1), ('take', 1), ('idea', 1), ('store', 1), ('using', 1), ('real', 1), ('world', 1), ('example', 1), ('driving', 1), ('car', 1), ('eating', 1), ('restaurant', 1), ('teach', 1), ('development', 1), ('concept', 1), ('clear', 1), ('concise', 1), ('jargon', 1), ('free', 1), ('language', 1), ('focus', 1), ('apple', 1)]
[('web', 1), ('designer', 1), ('encounter', 1), ('tough', 1), ('choice', 1), ('come', 1), ('weighing', 1), ('aesthetic', 1), ('performance', 1), ('good', 1), ('content', 1), ('layout', 1), ('image', 1), ('interactivity', 1), ('essential', 1), ('engaging', 1), ('audience', 1), ('element', 1), ('enormous', 1), ('impact', 1), ('page', 1), ('load', 1), ('time', 1), ('end', 1), ('user', 1), ('experience', 1), ('practical', 1), ('book', 1), ('lara', 1), ('hogan', 1), ('help', 1), ('approach', 1)]
[('web', 2), ('best', 1), ('way', 1), ('develop', 1), ('gone', 1), ('wild', 1), ('easy', 1), ('simply', 1), ('scrap', 1), ('rule', 1), ('relied', 1), ('year', 1), ('embrace', 1), ('uncertainty', 1), ('core', 1), ('tenet', 1), ('design', 1), ('practical', 1), ('book', 1), ('veteran', 1), ('developer', 1), ('rob', 1), ('larsen', 1), ('outline', 1), ('principle', 1), ('call', 1), ('uncertain', 1), ('show', 1), ('technique', 1), ('necessary', 1), ('successfully', 1), ('make', 1)]
[('glass', 3), ('need', 2), ('creating', 1), ('apps', 1), ('google', 1), ('involved', 1), ('simply', 1), ('learning', 1), ('navigate', 1), ('hardware', 1), ('apis', 1), ('sdk', 1), ('right', 1), ('mindset', 1), ('practical', 1), ('book', 1), ('delivers', 1), ('information', 1), ('technique', 1), ('build', 1), ('deploy', 1), ('application', 1), ('help', 1), ('think', 1), ('showing', 1), ('platform', 1), ('work', 1)]
[('window', 2), ('mac', 2), ('never', 2), ('better', 2), ('make', 1), ('refugee', 1), ('decide', 1), ('enthusiastic', 1), ('friend', 1), ('apple', 1), ('store', 1), ('looking', 1), ('laptop', 1), ('halo', 1), ('effect', 1), ('popularity', 1), ('iphones', 1), ('ipads', 1), ('absence', 1), ('virus', 1), ('spyware', 1), ('freedom', 1), ('run', 1), ('case', 1), ('time', 1), ('switch', 1), ('o', 1)]
[('hadoop', 2), ('organization', 1), ('enter', 1), ('world', 1), ('big', 1), ('data', 1), ('need', 1), ('decide', 1), ('whether', 1), ('apache', 1), ('right', 1), ('platform', 1), ('use', 1), ('many', 1), ('component', 1), ('best', 1), ('suited', 1), ('task', 1), ('field', 1), ('guide', 1), ('make', 1), ('exercise', 1), ('manageable', 1), ('breaking', 1), ('ecosystem', 1), ('short', 1), ('digestible', 1), ('section', 1), ('quickly', 1)]
[('business', 2), ('apache', 2), ('hadoop', 2), ('team', 1), ('leader', 1), ('cio', 1), ('analyst', 1), ('developer', 1), ('interested', 1), ('hbase', 1), ('related', 1), ('technology', 1), ('address', 1), ('problem', 1), ('involving', 1), ('large', 1), ('scale', 1), ('data', 1), ('cost', 1), ('effective', 1), ('way', 1), ('book', 1), ('using', 1), ('real', 1), ('world', 1), ('story', 1), ('situation', 1), ('author', 1), ('ted', 1), ('dunning', 1), ('ellen', 1), ('friedman', 1), ('show', 1), ('newcomer', 1)]
[('host', 2), ('protocol', 2), ('dhcp', 2), ('ip', 2), ('address', 2), ('dynamic', 1), ('configuration', 1), ('open', 1), ('standard', 1), ('internet', 1), ('used', 1), ('allocate', 1), ('manage', 1), ('dynamically', 1), ('came', 1), ('along', 1), ('administrator', 1), ('manually', 1), ('configure', 1), ('network', 1), ('subnet', 1), ('mask', 1), ('default', 1), ('gateway', 1), ('maintaining', 1), ('change', 1), ('associated', 1), ('log', 1), ('took', 1), ('tremendous', 1)]
[('network', 2), ('many', 2), ('pp', 2), ('last', 1), ('decade', 1), ('internet', 1), ('grown', 1), ('connected', 1), ('university', 1), ('research', 1), ('center', 1), ('link', 1), ('business', 1), ('household', 1), ('country', 1), ('expansion', 1), ('occurred', 1), ('reason', 1), ('technological', 1), ('advance', 1), ('facilitated', 1), ('growth', 1), ('obscure', 1), ('protocol', 1), ('called', 1), ('talked', 1)]
[('message', 3), ('window', 2), ('action', 2), ('carry', 2), ('subclassing', 1), ('hooking', 1), ('visual', 1), ('basic', 1), ('offer', 1), ('developer', 1), ('unique', 1), ('way', 1), ('customize', 1), ('behavior', 1), ('based', 1), ('system', 1), ('every', 1), ('request', 1), ('creates', 1), ('passed', 1), ('object', 1), ('information', 1), ('give', 1), ('recipient', 1), ('detail', 1), ('interpret', 1)]
[('background', 3), ('apply', 2), ('color', 2), ('element', 2), ('gradient', 2), ('advantage', 1), ('using', 1), ('cs', 1), ('web', 1), ('document', 1), ('create', 1), ('even', 1), ('multiple', 1), ('practical', 1), ('guide', 1), ('show', 1), ('many', 1), ('way', 1), ('use', 1), ('achieve', 1), ('pretty', 1), ('awesome', 1), ('effect', 1), ('short', 1), ('sweet', 1), ('book', 1)]
[('oozie', 2), ('hadoop', 2), ('solid', 1), ('grounding', 1), ('apache', 1), ('workflow', 1), ('scheduler', 1), ('system', 1), ('managing', 1), ('job', 1), ('hand', 1), ('guide', 1), ('experienced', 1), ('practitioner', 1), ('walk', 1), ('intricacy', 1), ('powerful', 1), ('flexible', 1), ('platform', 1), ('numerous', 1), ('example', 1), ('real', 1), ('world', 1), ('use', 1), ('case', 1), ('set', 1), ('server', 1), ('dive', 1), ('technique', 1)]
[('web', 5), ('performance', 2), ('long', 1), ('trying', 1), ('make', 1), ('faster', 1), ('maturation', 1), ('meant', 1), ('user', 1), ('data', 1), ('feature', 1), ('consequently', 1), ('longer', 1), ('wait', 1), ('improved', 1), ('become', 1), ('critical', 1), ('factor', 1), ('determining', 1), ('usability', 1), ('general', 1), ('individual', 1), ('site', 1), ('particular', 1)]
[('programmer', 2), ('drupal', 2), ('programming', 2), ('web', 1), ('experience', 1), ('taught', 1), ('certain', 1), ('lesson', 1), ('apply', 1), ('set', 1), ('principle', 1), ('require', 1), ('different', 1), ('approach', 1), ('many', 1), ('make', 1), ('mistake', 1), ('relying', 1), ('skill', 1), ('used', 1), ('project', 1), ('book', 1), ('show', 1)]
[('data', 5), ('science', 3), ('big', 2), ('recently', 1), ('many', 1), ('thought', 1), ('passing', 1), ('fad', 1), ('enigmatic', 1), ('term', 1), ('today', 1), ('taken', 1), ('seriously', 1), ('considered', 1), ('downright', 1), ('sexy', 1), ('anthology', 1), ('report', 1), ('award', 1), ('winning', 1), ('journalist', 1), ('mike', 1), ('barlow', 1), ('appreciate', 1), ('fundamentally', 1), ('altering', 1), ('world', 1), ('better', 1)]
[('grid', 1), ('layout', 1), ('spec', 1), ('soon', 1), ('change', 1), ('approach', 1), ('website', 1), ('design', 1), ('still', 1), ('plenty', 1), ('us', 1), ('cs', 1), ('positioning', 1), ('trick', 1), ('whether', 1), ('want', 1), ('create', 1), ('sidebar', 1), ('remain', 1), ('viewport', 1), ('browser', 1), ('window', 1), ('add', 1), ('sticky', 1), ('section', 1), ('heading', 1), ('list', 1), ('long', 1), ('article', 1), ('overlap', 1), ('element', 1), ('another', 1), ('concise', 1), ('ebook', 1), ('expertly', 1)]
[('mesos', 2), ('learn', 2), ('cluster', 2), ('apache', 1), ('make', 1), ('difference', 1), ('organization', 1), ('practical', 1), ('guide', 1), ('manager', 1), ('directs', 1), ('datacenter', 1), ('resource', 1), ('provides', 1), ('real', 1), ('time', 1), ('apis', 1), ('interacting', 1), ('developing', 1), ('entire', 1), ('use', 1), ('deployment', 1), ('system', 1), ('ansible', 1), ('chef', 1)]
[('web', 3), ('performance', 2), ('case', 2), ('want', 1), ('convince', 1), ('organization', 1), ('conduct', 1), ('upgrade', 1), ('concise', 1), ('book', 1), ('strengthen', 1), ('drawing', 1), ('upon', 1), ('many', 1), ('year', 1), ('research', 1), ('author', 1), ('tammy', 1), ('evert', 1), ('us', 1), ('study', 1), ('data', 1), ('explain', 1), ('page', 1), ('speed', 1), ('availability', 1), ('affect', 1), ('host', 1), ('business', 1), ('metric', 1), ('learn', 1)]
[('data', 3), ('practical', 2), ('many', 1), ('big', 1), ('driven', 1), ('company', 1), ('today', 1), ('moving', 1), ('protect', 1), ('certain', 1), ('type', 1), ('intrusion', 1), ('leak', 1), ('unauthorized', 1), ('eye', 1), ('lock', 1), ('granting', 1), ('access', 1), ('need', 1), ('see', 1), ('book', 1), ('author', 1), ('ted', 1), ('dunning', 1), ('ellen', 1), ('friedman', 1), ('offer', 1), ('novel', 1), ('solution', 1), ('implement', 1), ('right', 1)]
[('right', 2), ('storage', 2), ('useful', 1), ('feature', 1), ('today', 1), ('modern', 1), ('browser', 1), ('ability', 1), ('store', 1), ('data', 1), ('user', 1), ('computer', 1), ('mobile', 1), ('device', 1), ('even', 1), ('move', 1), ('toward', 1), ('cloud', 1), ('client', 1), ('side', 1), ('still', 1), ('save', 1), ('web', 1), ('developer', 1), ('lot', 1), ('time', 1), ('money', 1), ('hand', 1), ('guide', 1), ('demonstrates', 1), ('several', 1), ('apis', 1), ('action', 1)]
[('misunderstanding', 2), ('term', 2), ('database', 2), ('matter', 1), ('dbms', 1), ('using', 1), ('oracle', 1), ('db', 1), ('sql', 1), ('server', 1), ('mysql', 1), ('postgresql', 1), ('always', 1), ('arise', 1), ('precise', 1), ('meaning', 1), ('serious', 1), ('effect', 1), ('success', 1), ('project', 1), ('example', 1), ('common', 1), ('attribute', 1), ('bcnf', 1), ('consistency', 1), ('denormalization', 1)]
[('mac', 3), ('made', 2), ('switch', 1), ('window', 1), ('pc', 1), ('switching', 1), ('missing', 1), ('manual', 1), ('runaway', 1), ('bestseller', 1), ('latest', 1), ('edition', 1), ('guide', 1), ('delivers', 1), ('apple', 1), ('everything', 1), ('need', 1), ('know', 1), ('successfully', 1), ('painlessly', 1), ('move', 1), ('file', 1), ('adapt', 1), ('way', 1), ('thing', 1), ('written', 1), ('wit', 1), ('objectivity', 1)]
[('oracle', 3), ('database', 2), ('system', 2), ('introduced', 1), ('quarter', 1), ('century', 1), ('ago', 1), ('remains', 1), ('leading', 1), ('enterprise', 1), ('relational', 1), ('management', 1), ('rdbms', 1), ('world', 1), ('complex', 1), ('offering', 1), ('myriad', 1), ('product', 1), ('language', 1), ('tool', 1), ('frequent', 1), ('update', 1), ('release', 1), ('edition', 1), ('complicate', 1), ('ability', 1), ('user', 1), ('keep', 1), ('huge', 1), ('amount', 1)]
[('data', 2), ('finding', 1), ('pattern', 1), ('massive', 1), ('event', 1), ('stream', 1), ('difficult', 1), ('learning', 1), ('find', 1), ('unique', 1), ('hand', 1), ('guide', 1), ('show', 1), ('solve', 1), ('many', 1), ('problem', 1), ('large', 1), ('scale', 1), ('processing', 1), ('simple', 1), ('fun', 1), ('elegant', 1), ('tool', 1), ('leverage', 1), ('apache', 1), ('hadoop', 1), ('gain', 1), ('practical', 1), ('actionable', 1), ('view', 1), ('big', 1)]
[('development', 2), ('swift', 2), ('apple', 2), ('move', 1), ('io', 1), ('getting', 1), ('firm', 1), ('grasp', 1), ('fundamental', 1), ('including', 1), ('xcode', 1), ('ide', 1), ('cocoa', 1), ('touch', 1), ('framework', 1), ('latest', 1), ('version', 1), ('acclaimed', 1), ('programming', 1), ('language', 1), ('thoroughly', 1), ('updated', 1), ('guide', 1), ('learn', 1), ('object', 1), ('oriented', 1), ('concept', 1), ('understand', 1), ('use', 1), ('tool', 1), ('discover', 1)]
[('webpagetest', 2), ('tool', 2), ('user', 2), ('learn', 1), ('basic', 1), ('advanced', 1), ('us', 1), ('performance', 1), ('measurement', 1), ('optimizing', 1), ('website', 1), ('practical', 1), ('guide', 1), ('show', 1), ('new', 1), ('run', 1), ('test', 1), ('interpret', 1), ('result', 1), ('help', 1), ('experienced', 1), ('gain', 1), ('better', 1), ('thorough', 1), ('understanding', 1), ('hidden', 1), ('feature', 1), ('make', 1), ('testing', 1), ('easier', 1), ('written', 1)]
[('complex', 2), ('data', 2), ('graph', 2), ('easier', 1), ('grasp', 1), ('relationship', 1), ('scanning', 1), ('number', 1), ('spreadsheet', 1), ('introductory', 1), ('guide', 1), ('show', 1), ('use', 1), ('language', 1), ('create', 1), ('variety', 1), ('useful', 1), ('visualizing', 1), ('analyzing', 1), ('science', 1), ('business', 1), ('medium', 1), ('many', 1), ('field', 1), ('learn', 1), ('method', 1), ('highlighting', 1)]
[('solaris', 2), ('product', 2), ('operating', 1), ('system', 1), ('along', 1), ('related', 1), ('sun', 1), ('likejava', 1), ('reliable', 1), ('scalable', 1), ('platform', 1), ('whichto', 1), ('build', 1), ('commerce', 1), ('support', 1), ('networkedservices', 1), ('yet', 1), ('problem', 1), ('potential', 1), ('user', 1), ('face', 1), ('finding', 1), ('outmore', 1), ('information', 1), ('offer', 1), ('sense', 1), ('want', 1), ('toknow', 1)]
[('swift', 3), ('language', 2), ('feature', 2), ('type', 2), ('quick', 1), ('answer', 1), ('developing', 1), ('debugging', 1), ('application', 1), ('apple', 1), ('multi', 1), ('paradigm', 1), ('programming', 1), ('updated', 1), ('cover', 1), ('latest', 1), ('pocket', 1), ('reference', 1), ('perfect', 1), ('job', 1), ('tool', 1), ('learning', 1), ('modern', 1), ('including', 1), ('safety', 1), ('generic', 1), ('inference', 1), ('closure', 1), ('tuples', 1), ('automatic', 1)]
[('wireless', 5), ('linux', 2), ('learn', 2), ('unwired', 1), ('basic', 1), ('computing', 1), ('reason', 1), ('want', 1), ('go', 1), ('first', 1), ('place', 1), ('setting', 1), ('network', 1), ('accessing', 1), ('data', 1), ('service', 1), ('road', 1), ('book', 1), ('provides', 1), ('complete', 1), ('introduction', 1), ('technology', 1), ('supported', 1), ('install', 1)]
[('virus', 3), ('file', 2), ('malicious', 1), ('mobile', 1), ('code', 1), ('new', 1), ('term', 1), ('describe', 1), ('sort', 1), ('destructive', 1), ('program', 1), ('worm', 1), ('trojan', 1), ('rogue', 1), ('internet', 1), ('content', 1), ('fairly', 1), ('recently', 1), ('expert', 1), ('worried', 1), ('mostly', 1), ('computer', 1), ('spread', 1), ('executable', 1), ('data', 1), ('certainly', 1), ('email', 1), ('exchange', 1), ('melissa', 1), ('love', 1), ('bug', 1)]
[('window', 2), ('server', 2), ('secret', 1), ('increasing', 1), ('popularity', 1), ('found', 1), ('simplicity', 1), ('administration', 1), ('easy', 1), ('use', 1), ('gui', 1), ('consistent', 1), ('set', 1), ('tool', 1), ('wizard', 1), ('walk', 1), ('complex', 1), ('task', 1), ('allow', 1), ('install', 1), ('configure', 1), ('maintain', 1), ('without', 1), ('knowledge', 1), ('programming', 1), ('scripting', 1), ('language', 1)]
[('programming', 2), ('perl', 2), ('want', 1), ('learn', 1), ('program', 1), ('think', 1), ('computer', 1), ('scientist', 1), ('practical', 1), ('guide', 1), ('get', 1), ('started', 1), ('journey', 1), ('help', 1), ('younger', 1), ('sister', 1), ('popular', 1), ('language', 1), ('ideal', 1), ('beginner', 1), ('hand', 1), ('book', 1), ('includes', 1), ('exercise', 1), ('multiple', 1), ('solution', 1), ('code', 1), ('example', 1)]
[('hadoop', 3), ('run', 2), ('cloud', 2), ('recently', 1), ('deployment', 1), ('existed', 1), ('hardware', 1), ('owned', 1), ('organization', 1), ('course', 1), ('acquire', 1), ('computing', 1), ('resource', 1), ('network', 1), ('connectivity', 1), ('cluster', 1), ('lot', 1), ('deploying', 1), ('public', 1), ('simply', 1), ('renting', 1), ('machine', 1), ('hand', 1), ('guide', 1), ('show', 1), ('developer', 1), ('system', 1)]
[('ar', 3), ('world', 2), ('augmented', 1), ('reality', 1), ('blur', 1), ('boundary', 1), ('physical', 1), ('digital', 1), ('current', 1), ('exploration', 1), ('phase', 1), ('innovator', 1), ('beginning', 1), ('create', 1), ('compelling', 1), ('contextually', 1), ('rich', 1), ('application', 1), ('enhance', 1), ('user', 1), ('everyday', 1), ('experience', 1), ('book', 1), ('dr', 1), ('helen', 1), ('papagiannis', 1), ('leading', 1), ('expert', 1), ('field', 1), ('introduces', 1)]
[('step', 2), ('guide', 1), ('developing', 1), ('voice', 1), ('interface', 1), ('application', 1), ('device', 1), ('connected', 1), ('internet', 1), ('thing', 1), ('allowing', 1), ('consumer', 1), ('use', 1), ('natural', 1), ('human', 1), ('interaction', 1), ('avoid', 1), ('awkward', 1), ('method', 1), ('input', 1), ('interactivity', 1), ('provide', 1), ('elevated', 1), ('user', 1), ('experience', 1), ('practical', 1), ('book', 1), ('ideal', 1), ('software', 1), ('engineer', 1), ('build', 1)]
[('data', 4), ('sap', 4), ('tool', 2), ('learn', 1), ('fuse', 1), ('today', 1), ('science', 1), ('technique', 1), ('enterprise', 1), ('resource', 1), ('planning', 1), ('erp', 1), ('system', 1), ('practical', 1), ('guide', 1), ('veteran', 1), ('greg', 1), ('fo', 1), ('paul', 1), ('modderman', 1), ('demonstrate', 1), ('use', 1), ('several', 1), ('analysis', 1), ('solve', 1), ('interesting', 1), ('problem', 1), ('engineer', 1), ('scientist', 1), ('explore', 1), ('way', 1), ('add', 1)]
[('data', 3), ('principle', 2), ('impact', 1), ('science', 1), ('continues', 1), ('grow', 1), ('society', 1), ('increased', 1), ('need', 1), ('discus', 1), ('appropriately', 1), ('used', 1), ('address', 1), ('misuse', 1), ('yet', 1), ('ethical', 1), ('working', 1), ('available', 1), ('decade', 1), ('real', 1), ('issue', 1), ('today', 1), ('put', 1), ('action', 1), ('report', 1), ('author', 1), ('mike', 1), ('loukides', 1), ('hilary', 1)]
[('server', 3), ('nginx', 2), ('configuration', 2), ('alongside', 1), ('popular', 1), ('web', 1), ('provides', 1), ('dynamic', 1), ('application', 1), ('support', 1), ('restful', 1), ('json', 1), ('api', 1), ('open', 1), ('source', 1), ('unit', 1), ('deploys', 1), ('change', 1), ('without', 1), ('service', 1), ('disruption', 1), ('run', 1), ('apps', 1), ('built', 1), ('multiple', 1), ('language', 1), ('framework', 1), ('updated', 1), ('cookbook', 1), ('show', 1), ('developer', 1), ('devops', 1), ('personnel', 1)]
[('cloud', 2), ('load', 2), ('balancing', 2), ('company', 1), ('moving', 1), ('premise', 1), ('application', 1), ('software', 1), ('solution', 1), ('architect', 1), ('alike', 1), ('busy', 1), ('investigating', 1), ('way', 1), ('improve', 1), ('performance', 1), ('security', 1), ('high', 1), ('availability', 1), ('workload', 1), ('practical', 1), ('book', 1), ('describes', 1), ('microsoft', 1), ('azure', 1), ('option', 1), ('explains', 1), ('nginx', 1), ('contribute', 1)]
[('cloud', 2), ('process', 2), ('many', 1), ('company', 1), ('move', 1), ('workload', 1), ('encounter', 1), ('issue', 1), ('legacy', 1), ('organizational', 1), ('structure', 1), ('design', 1), ('new', 1), ('operating', 1), ('model', 1), ('environment', 1), ('practical', 1), ('book', 1), ('show', 1), ('manager', 1), ('cio', 1), ('ctos', 1), ('address', 1), ('hardest', 1), ('part', 1), ('transformation', 1), ('author', 1), ('mike', 1), ('kavis', 1)]
[('voice', 3), ('conversational', 2), ('eye', 2), ('busy', 2), ('hand', 2), ('free', 2), ('new', 1), ('experienced', 1), ('designer', 1), ('first', 1), ('experience', 1), ('handy', 1), ('reference', 1), ('provides', 1), ('actionable', 1), ('answer', 1), ('key', 1), ('aspect', 1), ('user', 1), ('interface', 1), ('designed', 1), ('companion', 1), ('book', 1), ('design', 1), ('guide', 1), ('includes', 1), ('important', 1), ('detail', 1), ('regarding', 1)]
[('software', 3), ('deployment', 2), ('practice', 2), ('delivery', 1), ('stop', 1), ('modern', 1), ('team', 1), ('rely', 1), ('emerging', 1), ('set', 1), ('best', 1), ('post', 1), ('continuously', 1), ('improve', 1), ('release', 1), ('operate', 1), ('practical', 1), ('guide', 1), ('ctos', 1), ('architect', 1), ('senior', 1), ('engineering', 1), ('leader', 1), ('learn', 1), ('apply', 1), ('existing', 1), ('operation', 1), ('author', 1)]
[('game', 2), ('book', 1), ('interaction', 1), ('design', 1), ('word', 1), ('shaping', 1), ('player', 1), ('make', 1), ('satisfying', 1), ('memorable', 1)]
[('ground', 1), ('breaking', 1), ('view', 1), ('technology', 1), ('trend', 1), ('impact', 1), ('society', 1), ('including', 1), ('productivity', 1), ('job', 1), ('displacement', 1), ('identifying', 1), ('particular', 1), ('problem', 1), ('lack', 1), ('diversity', 1), ('ai', 1), ('community', 1)]
[('computer', 3), ('system', 3), ('might', 3), ('user', 2), ('book', 1), ('designed', 1), ('serve', 1), ('rather', 1), ('better', 1), ('deal', 1), ('study', 1), ('natural', 1), ('behaviour', 1), ('see', 1), ('best', 1), ('help', 1), ('involve', 1), ('design', 1), ('assist', 1), ('everyday', 1), ('practice', 1)]
[('artificial', 2), ('intelligence', 2), ('practitioner', 1), ('perspective', 1), ('emerging', 1), ('technology', 1), ('change', 1), ('role', 1), ('nuclear', 1), ('weapon', 1), ('international', 1), ('relation', 1), ('geist', 1), ('argues', 1), ('make', 1), ('huge', 1), ('impact', 1), ('deterrence', 1), ('strategic', 1), ('stability', 1), ('even', 1), ('render', 1), ('retaliatory', 1), ('force', 1), ('vulnerable', 1)]
[('theory', 2), ('form', 2), ('field', 2), ('graduate', 1), ('text', 1), ('show', 1), ('computer', 1), ('used', 1), ('tool', 1), ('research', 1), ('number', 1), ('numerical', 1), ('experimentation', 1), ('example', 1), ('experiment', 1), ('binary', 1), ('quadratic', 1), ('zeta', 1), ('function', 1), ('variety', 1), ('finite', 1), ('elementary', 1), ('class', 1), ('elliptic', 1), ('unit', 1), ('modular', 1), ('provided', 1), ('along', 1), ('exercise', 1), ('selected', 1), ('solution', 1)]
[('book', 1), ('investigates', 1), ('precise', 1), ('effect', 1), ('society', 1), ('new', 1), ('vaunted', 1), ('electronic', 1), ('technology', 1), ('icts', 1), ('fundamental', 1), ('shift', 1), ('already', 1), ('taking', 1), ('place', 1), ('way', 1), ('behave', 1), ('organize', 1), ('interact', 1), ('direct', 1), ('result', 1), ('implementation', 1), ('providing', 1), ('comprehensive', 1), ('set', 1), ('detailed', 1), ('empirical', 1), ('study', 1), ('genesis', 1), ('use', 1)]
[('information', 1), ('technology', 1), ('become', 1), ('key', 1), ('factor', 1), ('industry', 1), ('society', 1), ('postwar', 1), ('world', 1), ('continues', 1), ('evolve', 1), ('shaping', 1), ('local', 1), ('global', 1), ('economy', 1), ('reorienting', 1), ('comparative', 1), ('competitive', 1), ('advantage', 1), ('production', 1), ('changed', 1), ('shifted', 1), ('number', 1), ('generation', 1), ('government', 1), ('policy', 1), ('towards', 1), ('taken', 1), ('different', 1)]
[('parallel', 3), ('topic', 2), ('first', 1), ('text', 1), ('explaining', 1), ('use', 1), ('bulk', 1), ('synchronous', 1), ('bsp', 1), ('model', 1), ('freely', 1), ('available', 1), ('bsplib', 1), ('communication', 1), ('library', 1), ('algorithm', 1), ('design', 1), ('programming', 1), ('aimed', 1), ('graduate', 1), ('student', 1), ('researcher', 1), ('mathematics', 1), ('physic', 1), ('computer', 1), ('science', 1), ('main', 1), ('treated', 1), ('book', 1), ('core', 1)]
[('book', 1), ('authored', 1), ('array', 1), ('internationally', 1), ('recognised', 1), ('researcher', 1), ('direct', 1), ('relevance', 1), ('involved', 1), ('academia', 1), ('industry', 1), ('wanting', 1), ('obtain', 1), ('insight', 1), ('topic', 1), ('forefront', 1), ('revolution', 1), ('artificial', 1), ('intelligence', 1), ('cognitive', 1), ('science', 1)]
[('novel', 1), ('book', 1), ('provides', 1), ('reader', 1), ('fundamental', 1), ('data', 1), ('collection', 1), ('model', 1), ('construction', 1), ('analysis', 1), ('interpretation', 1), ('across', 1), ('wide', 1), ('repertoire', 1), ('demographic', 1), ('technique', 1), ('protocol', 1), ('clearly', 1), ('guided', 1), ('throughout', 1), ('fully', 1), ('reproducible', 1), ('script', 1)]
[('book', 1), ('explains', 1), ('main', 1), ('idea', 1), ('behind', 1), ('memcomputing', 1), ('theoretical', 1), ('foundation', 1), ('applicability', 1), ('wide', 1), ('variety', 1), ('combinatorial', 1), ('optimization', 1), ('problem', 1), ('machine', 1), ('learning', 1), ('quantum', 1), ('mechanic', 1)]
[('sustainability', 3), ('future', 1), ('proofing', 1), ('address', 1), ('problem', 1), ('research', 1), ('project', 1), ('provides', 1), ('conceptual', 1), ('framework', 1), ('allows', 1), ('reader', 1), ('better', 1), ('understand', 1), ('issue', 1), ('make', 1), ('aware', 1), ('challenge', 1), ('around', 1), ('effective', 1), ('provide', 1), ('tangible', 1), ('suggestion', 1), ('researcher', 1), ('put', 1), ('action', 1)]
[('data', 3), ('book', 1), ('argues', 1), ('growing', 1), ('distrust', 1), ('science', 1), ('fuelled', 1), ('tool', 1), ('scientist', 1), ('created', 1), ('technological', 1), ('advance', 1), ('development', 1), ('analysis', 1), ('led', 1), ('disinformation', 1), ('torturing', 1), ('mining', 1), ('smith', 1), ('examines', 1), ('issue', 1), ('offer', 1), ('solution', 1), ('restoring', 1), ('credibility', 1), ('scientific', 1), ('community', 1)]
[('ai', 2), ('intelligent', 2), ('machine', 2), ('imagining', 1), ('draw', 1), ('attention', 1), ('range', 1), ('variety', 1), ('vision', 1), ('future', 1), ('potential', 1), ('significance', 1), ('research', 1), ('regulation', 1), ('implementation', 1), ('book', 1), ('structured', 1), ('geographically', 1), ('chapter', 1), ('presenting', 1), ('insight', 1), ('specific', 1), ('region', 1), ('culture', 1), ('imago', 1)]
[('concept', 2), ('computer', 2), ('combining', 1), ('introduction', 1), ('relevant', 1), ('related', 1), ('automatic', 1), ('storytelling', 1), ('accessible', 1), ('description', 1), ('known', 1), ('program', 1), ('illustrate', 1), ('employed', 1), ('book', 1), ('aimed', 1), ('interdisciplinary', 1), ('audience', 1), ('assumes', 1), ('little', 1), ('background', 1), ('science', 1)]
[('compact', 1), ('companion', 1), ('getting', 1), ('website', 1), ('noticed', 1), ('academy', 1), ('series', 1)]
[('india', 2), ('automated', 1), ('chronicle', 1), ('transformation', 1), ('undergoing', 1), ('robotics', 1), ('process', 1), ('automation', 1), ('infusing', 1), ('proficiency', 1), ('work', 1), ('personal', 1), ('life', 1)]
[('data', 2), ('new', 1), ('python', 1), ('science', 1), ('text', 1), ('guide', 1), ('reader', 1), ('tool', 1), ('technique', 1), ('used', 1), ('analyze', 1), ('generate', 1), ('predictive', 1), ('model', 1), ('book', 1), ('start', 1), ('basic', 1), ('includes', 1), ('practice', 1), ('question', 1), ('check', 1), ('understanding', 1), ('delf', 1), ('advanced', 1), ('topic', 1), ('neural', 1), ('network', 1), ('deep', 1), ('learning', 1), ('clarity', 1), ('touch', 1), ('humor', 1)]
[('football', 2), ('fifa', 2), ('ball', 1), ('game', 1), ('changing', 1), ('footy', 1), ('favouritealright', 1), ('mate', 1), ('going', 1), ('believe', 1), ('always', 1), ('mad', 1), ('road', 1), ('world', 1), ('cup', 1), ('came', 1), ('inevitably', 1), ('led', 1), ('manager', 1)]
[('football', 2), ('world', 2), ('cup', 2), ('went', 1), ('gaming', 1), ('making', 1), ('video', 1), ('home', 1), ('becoming', 1), ('club', 1), ('owner', 1), ('bizarre', 1), ('new', 1), ('guardian', 1), ('lifted', 1), ('trophy', 1), ('triumphantly', 1), ('head', 1), ('seen', 1), ('many', 1), ('fa', 1), ('champion', 1), ('league', 1)]
[('arduino', 3), ('project', 2), ('beginner', 2), ('step', 2), ('geek', 1), ('amazing', 1), ('gadget', 1), ('welcome', 1), ('wonderful', 1), ('wired', 1), ('world', 1), ('flexible', 1), ('open', 1), ('source', 1), ('electronics', 1), ('platform', 1), ('creator', 1), ('become', 1), ('coding', 1), ('superhero', 1), ('super', 1), ('easiest', 1), ('based', 1), ('guide', 1), ('want', 1), ('learn', 1), ('latest', 1), ('tip', 1), ('trick', 1), ('taking', 1), ('diy', 1)]
[('ai', 2), ('provocative', 1), ('book', 1), ('investigates', 1), ('relationship', 1), ('law', 1), ('artificial', 1), ('intelligence', 1), ('governance', 1), ('need', 1), ('new', 1), ('innovative', 1), ('approach', 1), ('regulating', 1), ('big', 1), ('data', 1), ('way', 1), ('go', 1), ('beyond', 1), ('market', 1), ('concern', 1), ('alone', 1), ('look', 1)]
[('artificial', 2), ('intelligence', 2), ('sustainable', 1), ('value', 1), ('creation', 1), ('provides', 1), ('detailed', 1), ('insightful', 1), ('exploration', 1), ('possibility', 1), ('challenge', 1), ('accompany', 1), ('widespread', 1), ('providing', 1), ('cutting', 1), ('edge', 1), ('analysis', 1), ('impact', 1)]
[('technology', 2), ('timely', 1), ('book', 1), ('provides', 1), ('extensive', 1), ('overview', 1), ('analysis', 1), ('law', 1), ('regulation', 1), ('applies', 1), ('us', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('examines', 1), ('human', 1), ('ethical', 1), ('concern', 1), ('associated', 1), ('history', 1)]
[('introduction', 2), ('elgar', 1), ('advanced', 1), ('stimulating', 1), ('thoughtful', 1), ('major', 1), ('field', 1), ('social', 1), ('science', 1), ('business', 1), ('law', 1), ('expertly', 1), ('written', 1), ('world', 1), ('leading', 1), ('scholar', 1), ('designed', 1), ('accessible', 1), ('yet', 1), ('rigorous', 1), ('offer', 1), ('concise', 1)]
[('ai', 2), ('advancement', 1), ('eliciting', 1), ('imminent', 1), ('change', 1), ('transport', 1), ('system', 1), ('enlightening', 1), ('handbook', 1), ('present', 1), ('essential', 1), ('research', 1), ('evolution', 1), ('transportation', 1), ('sector', 1), ('focus', 1), ('urban', 1), ('planning', 1), ('relevant', 1), ('theme', 1), ('law', 1), ('ethic', 1), ('form', 1), ('unified', 1), ('resource', 1), ('practicality', 1), ('use', 1)]
[('metaverse', 3), ('insight', 2), ('illuminating', 1), ('work', 1), ('soon', 1), ('playing', 1), ('major', 1), ('role', 1), ('business', 1), ('technology', 1), ('society', 1), ('cathy', 1), ('hackl', 1), ('globally', 1), ('recognized', 1), ('futurist', 1), ('world', 1), ('first', 1), ('chief', 1), ('officer', 1), ('share', 1), ('company', 1), ('need', 1), ('harness', 1)]
[('data', 2), ('many', 1), ('outside', 1), ('scientific', 1), ('community', 1), ('big', 1), ('form', 1), ('take', 1), ('statistical', 1), ('list', 1), ('spreadsheet', 1), ('graph', 1), ('often', 1), ('seem', 1), ('abstract', 1), ('unintelligible', 1), ('book', 1), ('investigates', 1), ('digital', 1), ('fabrication', 1), ('traditional', 1), ('making', 1), ('approach', 1), ('used', 1), ('present', 1), ('newly', 1), ('engaging', 1), ('interesting', 1), ('way', 1), ('first', 1), ('part', 1)]
[('global', 2), ('cause', 2), ('book', 1), ('explores', 1), ('increasing', 1), ('altruistic', 1), ('impulse', 1), ('design', 1), ('community', 1), ('address', 1), ('world', 1), ('difficult', 1), ('problem', 1), ('including', 1), ('social', 1), ('political', 1), ('environmental', 1), ('health', 1), ('local', 1), ('national', 1), ('scale', 1), ('chapter', 1), ('strategically', 1), ('combine', 1), ('theory', 1), ('practice', 1), ('examine', 1), ('identify', 1), ('locate', 1)]
[('design', 3), ('experience', 3), ('better', 1), ('brings', 1), ('together', 1), ('leading', 1), ('international', 1), ('scholar', 1), ('provide', 1), ('cross', 1), ('section', 1), ('critical', 1), ('thinking', 1), ('professional', 1), ('practice', 1), ('within', 1), ('emerging', 1), ('field', 1), ('contributor', 1), ('writing', 1), ('theoretical', 1), ('empirical', 1), ('applied', 1), ('perspective', 1), ('address', 1), ('meaning', 1), ('draw', 1), ('case', 1), ('study', 1)]
[('record', 2), ('fully', 1), ('revised', 1), ('updated', 1), ('book', 1), ('comprehensive', 1), ('minute', 1), ('guide', 1), ('help', 1), ('make', 1), ('uk', 1), ('census', 1), ('family', 1), ('history', 1), ('research', 1), ('practical', 1), ('handbook', 1), ('show', 1), ('interpret', 1), ('discover', 1), ('intricate', 1), ('detail', 1), ('ancestor', 1), ('life', 1), ('explores', 1), ('information', 1), ('name', 1), ('address', 1)]
[('shortlisted', 1), ('business', 1), ('book', 1), ('award', 1), ('donald', 1), ('trump', 1), ('outrageous', 1), ('tweet', 1), ('impact', 1), ('gru', 1), ('russia', 1), ('military', 1), ('intelligence', 1), ('agency', 1), ('foreign', 1), ('election', 1), ('echo', 1), ('chamber', 1), ('amplification', 1), ('bot', 1), ('network', 1), ('negative', 1), ('side', 1), ('social', 1), ('medium', 1), ('becoming', 1), ('apparent', 1), ('far', 1), ('removed', 1), ('comfortable', 1)]
[('user', 4), ('design', 3), ('designer', 2), ('series', 2), ('might', 1), ('best', 1), ('participate', 1), ('process', 1), ('evaluate', 1), ('experience', 1), ('designed', 1), ('product', 1), ('service', 1), ('fundamental', 1), ('question', 1), ('addressed', 1), ('justice', 1), ('dialogue', 1), ('scholar', 1), ('conversation', 1)]
[('service', 4), ('design', 1), ('activity', 1), ('planning', 1), ('organizing', 1), ('infrastructure', 1), ('communication', 1), ('material', 1), ('component', 1), ('order', 1), ('improve', 1), ('quality', 1), ('interaction', 1), ('provider', 1), ('customer', 1), ('growing', 1), ('field', 1), ('practice', 1), ('academic', 1), ('research', 1), ('designing', 1), ('brings', 1), ('together', 1), ('wide', 1), ('range', 1)]
[('book', 1), ('considers', 1), ('horizontal', 1), ('application', 1), ('human', 1), ('right', 1), ('douglas', 1), ('hello', 1), ('campbell', 1), ('mgn', 1), ('caroline', 1), ('von', 1), ('hannover', 1), ('germany', 1)]
[('discover', 1), ('fundamental', 1), ('data', 1), ('science', 1), ('develop', 1), ('skill', 1), ('need', 1), ('achieving', 1), ('success', 1), ('important', 1), ('sector', 1)]
[('ai', 2), ('big', 2), ('data', 2), ('provocative', 1), ('timely', 1), ('book', 1), ('identifies', 1), ('disrupts', 1), ('conventional', 1), ('regulation', 1), ('governance', 1), ('discourse', 1), ('concerning', 1), ('suggests', 1), ('instead', 1), ('used', 1), ('tool', 1), ('exclusionist', 1), ('commercial', 1), ('market', 1), ('employed', 1), ('governing', 1), ('digital', 1), ('transformation', 1), ('social', 1), ('good', 1)]
[('world', 2), ('familiar', 1), ('smart', 1), ('tv', 1), ('making', 1), ('suggestion', 1), ('future', 1), ('watching', 1), ('real', 1), ('exercise', 1), ('data', 1), ('transferred', 1), ('stats', 1), ('infographics', 1), ('workout', 1), ('apps', 1), ('turning', 1), ('home', 1), ('heating', 1), ('start', 1), ('commute', 1), ('technological', 1), ('interface', 1), ('affect', 1), ('action', 1), ('perception', 1), ('self', 1), ('society', 1), ('relies', 1)]
[('human', 2), ('cybersecurity', 2), ('take', 1), ('hack', 1), ('exploitable', 1), ('industry', 1), ('professional', 1), ('know', 1), ('weakest', 1), ('component', 1), ('system', 1), ('sits', 1), ('chair', 1), ('keyboard', 1), ('book', 1), ('look', 1), ('speculative', 1), ('fiction', 1), ('cyberpunk', 1), ('digital', 1), ('humanity', 1), ('bring', 1), ('humanistic', 1), ('perspective', 1), ('issue', 1)]
[('best', 2), ('book', 1), ('written', 1), ('happen', 1), ('stopped', 1), ('eating', 1), ('meat', 1), ('secret', 1), ('living', 1), ('past', 1), ('actually', 1), ('thing', 1), ('sliced', 1), ('bread', 1), ('answer', 1), ('everything', 1), ('world', 1), ('intriguing', 1), ('question', 1), ('settled', 1), ('beautiful', 1), ('brilliant', 1), ('infographics', 1)]
[('book', 2), ('step', 2), ('first', 2), ('describes', 1), ('computer', 1), ('work', 1), ('explains', 1), ('various', 1), ('hardware', 1), ('component', 1), ('organized', 1), ('interconnected', 1), ('provide', 1), ('platform', 1), ('upon', 1), ('program', 1), ('executed', 1), ('take', 1), ('simple', 1), ('approach', 1), ('suitable', 1), ('year', 1), ('undergraduate', 1), ('coming', 1), ('subject', 1), ('time', 1), ('second', 1), ('edition', 1)]
[('database', 4), ('modern', 2), ('system', 2), ('day', 1), ('organization', 1), ('need', 1), ('record', 1), ('data', 1), ('relevant', 1), ('everyday', 1), ('activity', 1), ('many', 1), ('choose', 1), ('organise', 1), ('store', 1), ('information', 1), ('electronic', 1), ('provides', 1), ('essential', 1), ('introduction', 1), ('technology', 1), ('development', 1), ('new', 1), ('edition', 1), ('fully', 1)]
[('operating', 5), ('system', 5), ('anyone', 1), ('us', 1), ('computer', 1), ('using', 1), ('although', 1), ('appreciate', 1), ('visible', 1), ('part', 1), ('graphical', 1), ('user', 1), ('interface', 1), ('gui', 1), ('yet', 1), ('completely', 1), ('invisible', 1), ('introduction', 1), ('behind', 1)]
[('office', 3), ('new', 2), ('microsoft', 2), ('step', 2), ('edition', 1), ('mastering', 1), ('provides', 1), ('concise', 1), ('practical', 1), ('guide', 1), ('essential', 1), ('feature', 1), ('updated', 1), ('coverage', 1), ('book', 1), ('offer', 1), ('guidance', 1), ('useful', 1), ('aspect', 1), ('word', 1), ('excel', 1), ('powerpoint', 1), ('access', 1), ('includes', 1), ('chapter', 1), ('outlook', 1), ('instruction', 1), ('take', 1), ('reader', 1)]
[('unix', 2), ('linux', 2), ('operating', 2), ('system', 2), ('introductory', 1), ('tutorial', 1), ('style', 1), ('text', 1), ('covering', 1), ('basic', 1), ('complete', 1), ('beginner', 1), ('comprehensive', 1), ('written', 1), ('introduction', 1), ('assumes', 1), ('prior', 1), ('knowledge', 1), ('programming', 1), ('experience', 1), ('using', 1), ('computer', 1), ('commonly', 1), ('used', 1), ('within', 1)]
[('programming', 2), ('student', 2), ('humorous', 1), ('friendly', 1), ('introduction', 1), ('undergraduate', 1), ('meeting', 1), ('subject', 1), ('first', 1), ('time', 1), ('using', 1), ('java', 1), ('running', 1), ('example', 1), ('author', 1), ('outline', 1), ('principle', 1), ('serve', 1), ('valuable', 1), ('foundation', 1), ('good', 1), ('practice', 1), ('meet', 1), ('language', 1), ('later', 1), ('course', 1), ('packed', 1), ('cartoon', 1)]
[('conforms', 1), ('ansi', 1), ('standard', 1)]
[('visual', 2), ('basic', 2), ('mastering', 1), ('ideal', 1), ('introduction', 1), ('popular', 1), ('window', 1), ('programming', 1), ('language', 1), ('book', 1), ('focus', 1), ('essential', 1), ('skill', 1), ('needed', 1), ('produce', 1), ('fully', 1), ('functional', 1), ('application', 1), ('using', 1), ('microsoft', 1), ('written', 1), ('easy', 1), ('follow', 1), ('style', 1), ('illustrated', 1), ('throughout', 1), ('actual', 1), ('screen', 1), ('shot', 1), ('contains', 1), ('many', 1), ('practical', 1), ('exercise', 1)]
[('programming', 2), ('language', 2), ('carefully', 1), ('paced', 1), ('introduction', 1), ('book', 1), ('assumes', 1), ('limited', 1), ('previous', 1), ('knowledge', 1), ('computer', 1), ('concept', 1), ('feature', 1), ('presented', 1), ('short', 1), ('lesson', 1), ('usually', 1), ('restricted', 1), ('text', 1), ('page', 1), ('illustrated', 1), ('practical', 1), ('worked', 1), ('example', 1), ('supplemented', 1), ('exercise', 1), ('aid', 1), ('student', 1)]
[('book', 2), ('introduces', 1), ('fundamental', 1), ('construct', 1), ('provides', 1), ('gentle', 1), ('introduction', 1), ('idea', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('important', 1), ('understand', 1), ('basic', 1), ('approach', 1), ('program', 1), ('design', 1), ('written', 1), ('easy', 1), ('follow', 1), ('style', 1), ('illustrated', 1), ('contains', 1), ('many', 1), ('practical', 1), ('exercise', 1), ('suitable', 1)]
[('look', 2), ('online', 2), ('happens', 1), ('put', 1), ('name', 1), ('google', 1), ('facebook', 1), ('need', 1), ('know', 1), ('see', 1), ('essential', 1), ('book', 1), ('explains', 1), ('understand', 1), ('manage', 1), ('self', 1)]
[('computing', 3), ('coverage', 2), ('term', 2), ('entry', 1), ('providing', 1), ('contemporary', 1), ('fully', 1), ('revised', 1), ('edition', 1), ('dictionary', 1), ('provides', 1), ('used', 1), ('including', 1), ('hardware', 1), ('software', 1), ('programme', 1), ('language', 1), ('network', 1), ('application', 1), ('commerce', 1), ('internet', 1)]
[('videogames', 2), ('game', 2), ('first', 1), ('field', 1), ('focus', 1), ('key', 1), ('aspect', 1), ('distinctive', 1), ('medium', 1), ('rich', 1), ('original', 1), ('gamers', 1), ('student', 1), ('researcher', 1), ('popular', 1), ('culture', 1), ('internationally', 1), ('review', 1), ('passionate', 1), ('gamer', 1), ('relationship', 1), ('viz', 1), ('type', 1), ('doom', 1), ('everquest', 1), ('rival', 1)]
[('policy', 2), ('net', 2), ('neutrality', 2), ('considering', 1), ('market', 1), ('development', 1), ('response', 1), ('heated', 1), ('debate', 1), ('europe', 1), ('united', 1), ('state', 1), ('first', 1), ('fully', 1), ('comprehensive', 1), ('overview', 1), ('subject', 1), ('book', 1), ('unique', 1), ('providing', 1), ('reader', 1), ('supplementary', 1), ('outline', 1), ('recommended', 1), ('prescriptives', 1)]
[('project', 5), ('student', 2), ('aimed', 1), ('final', 1), ('year', 1), ('undergraduate', 1), ('master', 1), ('undertaking', 1), ('research', 1), ('information', 1), ('system', 1), ('text', 1), ('offer', 1), ('blend', 1), ('practical', 1), ('guideline', 1), ('conceptual', 1), ('insight', 1), ('help', 1), ('complete', 1), ('high', 1), ('quality', 1), ('covering', 1), ('whole', 1), ('range', 1), ('process', 1), ('work', 1), ('choosing', 1)]
[('student', 2), ('simple', 2), ('written', 1), ('taking', 1), ('first', 1), ('course', 1), ('computer', 1), ('system', 1), ('architecture', 1), ('introductory', 1), ('textbook', 1), ('meet', 1), ('syllabus', 1), ('requirement', 1), ('manner', 1), ('without', 1), ('weighty', 1), ('tome', 1), ('project', 1), ('based', 1), ('around', 1), ('simulation', 1), ('typical', 1), ('microprocessor', 1), ('gain', 1), ('understanding', 1), ('fundamental', 1), ('concept', 1)]
[('software', 2), ('formal', 2), ('method', 2), ('gently', 1), ('paced', 1), ('engineering', 1), ('text', 1), ('concentrate', 1), ('use', 1), ('development', 1), ('high', 1), ('integrity', 1), ('assumes', 1), ('previous', 1), ('knowledge', 1), ('present', 1), ('practical', 1), ('comprehensive', 1), ('treatment', 1), ('subject', 1), ('suitable', 1), ('second', 1), ('third', 1), ('year', 1), ('undergraduate', 1), ('computing', 1), ('course', 1)]
[('understanding', 1), ('theory', 1), ('application', 1), ('logic', 1), ('fundamental', 1), ('successful', 1), ('software', 1), ('hardware', 1), ('development', 1), ('gain', 1), ('thorough', 1), ('grasp', 1), ('modern', 1), ('computing', 1), ('book', 1), ('provides', 1), ('gentle', 1), ('introduction', 1), ('subject', 1), ('comfortable', 1), ('pace', 1), ('suitable', 1), ('wide', 1), ('range', 1), ('student', 1), ('including', 1), ('undergraduate', 1), ('computer', 1), ('science', 1)]
[('cobol', 2), ('programming', 2), ('program', 2), ('chapter', 2), ('second', 1), ('edition', 1), ('mastering', 1), ('comprehensive', 1), ('guide', 1), ('good', 1), ('practice', 1), ('design', 1), ('code', 1), ('contains', 1), ('new', 1), ('intrinsic', 1), ('function', 1), ('error', 1), ('testing', 1), ('debugging', 1), ('revised', 1), ('make', 1), ('full', 1), ('use', 1), ('standard', 1), ('book', 1), ('discus', 1), ('different', 1), ('group', 1)]
[('design', 2), ('book', 2), ('publish', 1), ('computer', 1), ('print', 1), ('digital', 1), ('medium', 1), ('essential', 1), ('resource', 1), ('quality', 1), ('effectiveness', 1), ('work', 1), ('improve', 1), ('focus', 1), ('easy', 1), ('follow', 1), ('describes', 1), ('process', 1), ('tool', 1), ('available', 1), ('successful', 1), ('desktop', 1), ('publishing', 1), ('dtp', 1), ('backed', 1), ('hundred', 1), ('illustration', 1)]
[('java', 2), ('event', 2), ('book', 1), ('provides', 1), ('introduction', 1), ('programming', 1), ('language', 1), ('cover', 1), ('related', 1), ('area', 1), ('html', 1), ('javascript', 1), ('cgiscript', 1), ('vrml', 1), ('program', 1), ('relate', 1), ('practical', 1), ('example', 1), ('including', 1), ('menu', 1), ('form', 1), ('graphic', 1), ('driven', 1), ('software', 1), ('mouse', 1), ('keyboard', 1), ('networking', 1), ('interacting', 1)]
[('programming', 3), ('pascal', 3), ('application', 3), ('delphi', 2), ('book', 1), ('provides', 1), ('introduction', 1), ('extends', 1), ('show', 1), ('borland', 1), ('used', 1), ('development', 1), ('microsoft', 1), ('window', 1), ('program', 1), ('packed', 1), ('full', 1), ('real', 1), ('life', 1), ('split', 1), ('three', 1), ('main', 1), ('section', 1), ('practical', 1), ('include', 1), ('software', 1)]
[('information', 2), ('system', 2), ('revised', 1), ('updated', 1), ('edition', 1), ('provides', 1), ('detailed', 1), ('description', 1), ('discussion', 1), ('process', 1), ('development', 1), ('management', 1), ('specializing', 1), ('technical', 1), ('expert', 1), ('show', 1), ('speciality', 1), ('fit', 1), ('overall', 1), ('effort', 1), ('organization', 1), ('make', 1), ('set', 1), ('build', 1)]
[('part', 2), ('chapter', 2), ('development', 2), ('third', 1), ('edition', 1), ('author', 1), ('arranged', 1), ('material', 1), ('five', 1), ('major', 1), ('context', 1), ('tool', 1), ('technique', 1), ('method', 1), ('management', 1), ('discipline', 1), ('within', 1), ('popular', 1), ('retained', 1), ('updated', 1), ('reflect', 1), ('modern', 1), ('area', 1), ('information', 1), ('system', 1), ('number', 1), ('new', 1), ('included', 1), ('topic', 1)]
[('solution', 2), ('book', 1), ('demonstrates', 1), ('security', 1), ('information', 1), ('system', 1), ('found', 1), ('adopting', 1), ('appropriate', 1), ('management', 1), ('strategy', 1), ('mechanism', 1), ('rather', 1), ('merely', 1), ('seeking', 1), ('technical', 1), ('argument', 1), ('supported', 1), ('case', 1), ('study', 1), ('health', 1), ('care', 1), ('local', 1), ('government', 1), ('sector', 1)]
[('business', 3), ('ai', 3), ('artificial', 1), ('intelligence', 1), ('around', 1), ('set', 1), ('transform', 1), ('way', 1), ('run', 1), ('yet', 1), ('fear', 1), ('struggle', 1), ('derive', 1), ('maximum', 1), ('value', 1), ('learning', 1), ('best', 1), ('practice', 1), ('industry', 1), ('leader', 1), ('brings', 1), ('together', 1), ('framework', 1), ('tool', 1), ('infusing', 1), ('process', 1), ('book', 1), ('demystifies', 1), ('simplifies', 1)]
[('java', 3), ('ebook', 2), ('oracle', 2), ('press', 2), ('book', 2), ('exclusive', 1), ('preview', 1), ('excerpt', 1), ('brand', 1), ('new', 1), ('forthcoming', 1), ('jdk', 1), ('written', 1), ('leading', 1), ('expert', 1), ('offer', 1), ('definitive', 1), ('complete', 1), ('date', 1), ('coverage', 1), ('latest', 1), ('release', 1), ('featuring', 1), ('introduction', 1), ('bestselling', 1), ('programming', 1), ('author', 1), ('herb', 1), ('schildt', 1), ('includes', 1), ('chapter', 1)]
[('program', 4), ('manager', 2), ('strong', 1), ('stakeholder', 1), ('engagement', 1), ('perhaps', 1), ('critical', 1), ('factor', 1), ('achieving', 1), ('successful', 1), ('execution', 1), ('fast', 1), ('paced', 1), ('world', 1), ('many', 1), ('stuck', 1), ('science', 1), ('management', 1), ('spending', 1), ('vast', 1), ('amount', 1), ('effort', 1), ('task', 1), ('chart', 1), ('metric', 1), ('emphasize', 1), ('activity', 1), ('around', 1), ('relationship', 1), ('building', 1)]
[('control', 2), ('area', 2), ('book', 2), ('modeling', 1), ('fuzzy', 1), ('active', 1), ('research', 1), ('application', 1), ('engineering', 1), ('available', 1), ('cover', 1), ('depth', 1), ('written', 1), ('known', 1), ('expert', 1), ('published', 1), ('paper', 1), ('top', 1), ('international', 1), ('journal', 1), ('give', 1), ('insight', 1), ('latest', 1), ('approach', 1), ('analysis', 1)]
[('discrete', 2), ('event', 2), ('system', 2), ('collecting', 1), ('work', 1), ('foremost', 1), ('scientist', 1), ('field', 1), ('book', 1), ('present', 1), ('state', 1), ('art', 1), ('modeling', 1), ('using', 1), ('specification', 1), ('devs', 1), ('approach', 1), ('introduces', 1), ('advance', 1), ('extension', 1), ('formal', 1), ('technique', 1), ('real', 1), ('world', 1), ('example', 1), ('various', 1), ('application', 1), ('including', 1), ('optical', 1), ('network', 1), ('chip', 1)]
[('drawing', 2), ('alf', 1), ('yarwood', 1), ('provides', 1), ('practical', 1), ('structured', 1), ('course', 1), ('work', 1), ('matched', 1), ('latest', 1), ('release', 1), ('autocad', 1), ('introducing', 1), ('first', 1), ('principle', 1), ('creation', 1), ('technical', 1), ('go', 1), ('demonstrate', 1), ('construction', 1), ('solid', 1), ('surface', 1), ('model', 1), ('rendering', 1)]
[('circuit', 2), ('engineer', 2), ('microwave', 2), ('reference', 1), ('design', 1), ('book', 1), ('cover', 1), ('subject', 1), ('style', 1), ('useful', 1), ('us', 1), ('simple', 1), ('electromagnetic', 1), ('simulation', 1), ('procedure', 1), ('provide', 1), ('basic', 1), ('knowledge', 1), ('practical', 1), ('insight', 1), ('quotidian', 1), ('problem', 1), ('microstrip', 1), ('passive', 1), ('applied', 1), ('system', 1), ('digital', 1), ('technology', 1)]
[('book', 2), ('deep', 2), ('learning', 2), ('multimedia', 2), ('comprehensive', 1), ('guide', 1), ('explores', 1), ('revolutionary', 1), ('impact', 1), ('technique', 1), ('field', 1), ('processing', 1), ('written', 1), ('wide', 1), ('range', 1), ('reader', 1), ('student', 1), ('professional', 1), ('offer', 1), ('concise', 1), ('accessible', 1), ('overview', 1), ('application', 1), ('various', 1), ('domain', 1)]
[('network', 3), ('multimedia', 2), ('neural', 2), ('book', 1), ('comprehensive', 1), ('guide', 1), ('explores', 1), ('revolutionary', 1), ('impact', 1), ('deep', 1), ('learning', 1), ('technique', 1), ('field', 1), ('processing', 1), ('volume', 1), ('delf', 1), ('advanced', 1), ('topic', 1), ('convolutional', 1), ('recurrent', 1), ('generative', 1), ('adversarial', 1), ('explaining', 1), ('unique', 1), ('capability', 1), ('task', 1)]
[('fading', 2), ('interference', 2), ('communication', 2), ('performance', 2), ('mitigation', 1), ('wireless', 1), ('help', 1), ('reader', 1), ('stay', 1), ('date', 1), ('recent', 1), ('development', 1), ('analysis', 1), ('space', 1), ('diversity', 1), ('reception', 1), ('channel', 1), ('presence', 1), ('cochannel', 1), ('present', 1), ('unified', 1), ('method', 1), ('computing', 1), ('digital', 1), ('system', 1), ('characterized', 1)]
[('computer', 3), ('aided', 3), ('competitive', 2), ('business', 1), ('arena', 1), ('organization', 1), ('continually', 1), ('strive', 1), ('create', 1), ('new', 1), ('better', 1), ('product', 1), ('faster', 1), ('efficiently', 1), ('cost', 1), ('effectively', 1), ('competitor', 1), ('gain', 1), ('keep', 1), ('advantage', 1), ('design', 1), ('cad', 1), ('engineering', 1), ('cae', 1), ('manufacturing', 1), ('cam', 1), ('industry', 1)]
[('work', 2), ('security', 2), ('combining', 1), ('hand', 1), ('overview', 1), ('fundamental', 1), ('text', 1), ('integrates', 1), ('analysis', 1), ('technical', 1), ('computing', 1), ('curriculum', 1), ('educates', 1), ('student', 1), ('issue', 1), ('side', 1), ('channel', 1), ('attack', 1), ('deepens', 1), ('understanding', 1), ('computer', 1), ('network', 1), ('book', 1), ('present', 1), ('basic', 1), ('principle', 1), ('concept', 1), ('along', 1), ('example', 1)]
[('project', 3), ('success', 2), ('effective', 2), ('leadership', 2), ('book', 1), ('secret', 1), ('achieving', 1), ('filled', 1), ('sample', 1), ('template', 1), ('guideline', 1), ('cover', 1), ('five', 1), ('principle', 1), ('building', 1), ('vision', 1), ('nurturing', 1), ('collaboration', 1), ('promoting', 1), ('performance', 1), ('cultivating', 1), ('learning', 1), ('ensuring', 1), ('result', 1), ('using', 1), ('nontechnical', 1)]
[('first', 2), ('book', 2), ('tandy', 2), ('computer', 2), ('coco', 2), ('story', 2), ('document', 1), ('complete', 1), ('history', 1), ('color', 1), ('taking', 1), ('reader', 1), ('inside', 1), ('interesting', 1), ('behind', 1), ('unique', 1), ('underdog', 1), ('author', 1), ('reveal', 1), ('pivotal', 1), ('period', 1), ('home', 1), ('computing', 1), ('revolution', 1), ('perspective', 1), ('feature', 1), ('hand', 1)]
[('act', 2), ('hipaa', 2), ('following', 1), ('footstep', 1), ('bestselling', 1), ('predecessor', 1), ('book', 1), ('stop', 1), ('date', 1), ('resource', 1), ('health', 1), ('insurance', 1), ('portability', 1), ('accountability', 1), ('privacy', 1), ('security', 1), ('along', 1), ('hitech', 1), ('omnibus', 1), ('rule', 1), ('requirement', 1), ('updated', 1), ('revised', 1), ('several', 1), ('new', 1), ('section', 1), ('edition', 1), ('defines', 1)]
[('editor', 2), ('journal', 2), ('academic', 1), ('still', 1), ('wrestle', 1), ('publish', 1), ('perish', 1), ('phenomenon', 1), ('based', 1), ('dr', 1), ('liebowitz', 1), ('year', 1), ('serving', 1), ('chief', 1), ('leading', 1), ('international', 1), ('along', 1), ('insight', 1), ('knowledgeable', 1), ('book', 1), ('share', 1), ('key', 1), ('lesson', 1), ('learned', 1), ('help', 1), ('new', 1), ('professor', 1), ('doctoral', 1), ('student', 1)]
[('multimedia', 3), ('ontology', 2), ('product', 1), ('year', 1), ('collective', 1), ('research', 1), ('representation', 1), ('application', 1), ('provides', 1), ('theoretical', 1), ('foundation', 1), ('understanding', 1), ('nature', 1), ('medium', 1), ('data', 1), ('principle', 1), ('involved', 1), ('interpretation', 1), ('present', 1), ('unified', 1), ('approach', 1), ('discussing', 1), ('recent', 1), ('advance', 1), ('explains', 1)]
[('healthcare', 4), ('analytics', 2), ('data', 2), ('technique', 2), ('supplying', 1), ('comprehensive', 1), ('overview', 1), ('research', 1), ('provides', 1), ('understanding', 1), ('analytical', 1), ('currently', 1), ('available', 1), ('solve', 1), ('problem', 1), ('book', 1), ('detail', 1), ('novel', 1), ('acquiring', 1), ('handling', 1), ('retrieving', 1), ('making', 1), ('best', 1), ('use', 1), ('analyzes', 1), ('recent', 1), ('development', 1)]
[('book', 1), ('designed', 1), ('become', 1), ('foundational', 1), ('text', 1), ('new', 1), ('science', 1), ('ai', 1), ('safety', 1), ('engineering', 1), ('specific', 1), ('prediction', 1), ('regarding', 1), ('consequence', 1), ('intelligence', 1), ('singularity', 1), ('vary', 1), ('potential', 1), ('economic', 1), ('hardship', 1), ('complete', 1), ('extinction', 1), ('humankind', 1), ('many', 1), ('involved', 1), ('researcher', 1), ('agree', 1), ('issue', 1), ('utmost', 1), ('importance', 1)]
[('license', 2), ('almost', 1), ('spectrum', 1), ('given', 1), ('away', 1), ('practically', 1), ('free', 1), ('even', 1), ('first', 1), ('mobile', 1), ('laid', 1), ('foundation', 1), ('multi', 1), ('billion', 1), ('dollar', 1), ('company', 1), ('dominate', 1), ('stock', 1), ('market', 1), ('around', 1), ('world', 1), ('book', 1), ('identifies', 1), ('success', 1), ('failure', 1), ('main', 1), ('policy', 1), ('initiative', 1), ('past', 1), ('decade', 1), ('explains', 1), ('layman', 1)]
[('robot', 3), ('social', 2), ('interacts', 1), ('communicates', 1), ('human', 1), ('autonomous', 1), ('physical', 1), ('agent', 1), ('following', 1), ('behavior', 1), ('rule', 1), ('attached', 1), ('role', 1), ('book', 1), ('provides', 1), ('socially', 1), ('involved', 1), ('yet', 1), ('sober', 1), ('insight', 1), ('question', 1), ('robotics', 1), ('technology', 1), ('coming', 1), ('capable', 1), ('ethical', 1)]
[('business', 4), ('management', 3), ('project', 2), ('continuity', 2), ('preparedness', 2), ('book', 1), ('explains', 1), ('apply', 1), ('implement', 1), ('maintain', 1), ('major', 1), ('emphasis', 1), ('building', 1), ('plan', 1), ('cover', 1), ('basic', 1), ('risk', 1), ('presenting', 1), ('proven', 1), ('approach', 1), ('firm', 1), ('follow', 1), ('become', 1), ('resilient', 1)]
[('honeypot', 3), ('effective', 1), ('approach', 1), ('securing', 1), ('information', 1), ('internet', 1), ('analyze', 1), ('signature', 1), ('attack', 1), ('order', 1), ('build', 1), ('defensive', 1), ('strategy', 1), ('accomplished', 1), ('use', 1), ('router', 1), ('book', 1), ('provides', 1), ('reader', 1), ('understanding', 1), ('concept', 1), ('architecture', 1), ('skill', 1), ('deploy', 1), ('best', 1)]
[('disk', 3), ('overview', 1), ('explains', 1), ('basic', 1), ('element', 1), ('architecture', 1), ('explores', 1), ('successfully', 1), ('manage', 1), ('maintain', 1), ('functionality', 1), ('within', 1), ('window', 1), ('environment', 1), ('critical', 1), ('issue', 1), ('covered', 1), ('include', 1), ('quota', 1), ('fragmentation', 1), ('optimization', 1), ('hard', 1), ('drive', 1), ('reliability', 1), ('asset', 1), ('management', 1), ('software', 1), ('deployment', 1), ('system', 1), ('forensics', 1), ('book', 1)]
[('technology', 3), ('supply', 2), ('chain', 2), ('blockchain', 1), ('distributed', 1), ('ledger', 1), ('dlt', 1), ('identified', 1), ('emerging', 1), ('enhance', 1), ('global', 1), ('management', 1), ('process', 1), ('given', 1), ('embryonic', 1), ('nature', 1), ('use', 1), ('case', 1), ('pertaining', 1), ('adopted', 1), ('deployed', 1), ('context', 1), ('scarce', 1)]
[('crowdsourced', 2), ('testing', 2), ('scale', 1), ('flexibility', 1), ('cost', 1), ('effectiveness', 1), ('fast', 1), ('turnaround', 1), ('reason', 1), ('getting', 1), ('attention', 1), ('lately', 1), ('online', 1), ('resource', 1), ('explain', 1), ('need', 1), ('book', 1), ('cover', 1), ('best', 1), ('practice', 1), ('case', 1), ('study', 1), ('future', 1)]
[('mobile', 3), ('computing', 3), ('handbook', 1), ('algorithm', 1), ('wireless', 1), ('networking', 1), ('focus', 1), ('several', 1), ('aspect', 1), ('particularly', 1), ('algorithmic', 1), ('method', 1), ('distributed', 1), ('communication', 1), ('capability', 1), ('provides', 1), ('topic', 1), ('crucial', 1), ('building', 1), ('foundation', 1), ('design', 1), ('construction', 1), ('future', 1), ('generation', 1)]
[('area', 2), ('organization', 2), ('case', 2), ('study', 2), ('concise', 1), ('easy', 1), ('book', 1), ('examines', 1), ('knowledge', 1), ('management', 1), ('help', 1), ('gain', 1), ('competitive', 1), ('advantage', 1), ('chapter', 1), ('open', 1), ('introduction', 1), ('promising', 1), ('followed', 1), ('industry', 1), ('government', 1), ('profit', 1), ('demonstrate', 1), ('leader', 1)]
[('project', 4), ('common', 3), ('provides', 2), ('management', 2), ('book', 1), ('depth', 1), ('discussion', 1), ('creativity', 1), ('relationship', 1), ('examining', 1), ('five', 1), ('process', 1), ('executed', 1), ('discus', 1), ('tool', 1), ('technique', 1), ('developing', 1), ('deliverable', 1), ('suggestion', 1), ('overcoming', 1), ('challenge', 1), ('manager', 1)]
[('security', 3), ('metric', 3), ('management', 2), ('offer', 2), ('step', 2), ('implementing', 2), ('information', 1), ('approach', 1), ('developing', 1), ('relevant', 1), ('essential', 1), ('effective', 1), ('case', 1), ('study', 1), ('tool', 1), ('monitoring', 1), ('specific', 1), ('item', 1), ('book', 1), ('practical', 1), ('guidance', 1), ('across', 1), ('entire', 1), ('organization', 1), ('thereby', 1)]
[('software', 3), ('game', 2), ('engineering', 2), ('book', 1), ('ideal', 1), ('reference', 1), ('engineer', 1), ('developer', 1), ('researcher', 1), ('explores', 1), ('programming', 1), ('development', 1), ('perspective', 1), ('presenting', 1), ('collection', 1), ('emerging', 1), ('research', 1), ('interaction', 1), ('traditionally', 1), ('distinct', 1), ('field', 1), ('featuring', 1), ('contribution', 1), ('leading', 1)]
[('pattern', 2), ('computer', 2), ('interaction', 2), ('book', 1), ('describes', 1), ('language', 1), ('culture', 1), ('human', 1), ('hci', 1), ('numerous', 1), ('example', 1), ('show', 1), ('matter', 1), ('exploit', 1), ('design', 1), ('better', 1), ('user', 1), ('experience', 1), ('ux', 1), ('system', 1), ('provides', 1), ('scientific', 1), ('information', 1), ('theoretical', 1), ('practical', 1), ('area', 1)]
[('user', 3), ('game', 3), ('book', 2), ('explains', 2), ('experience', 2), ('tool', 2), ('part', 2), ('improve', 1), ('development', 1), ('first', 1), ('improved', 1), ('show', 1), ('reader', 1), ('buy', 1), ('team', 1), ('second', 1), ('introduces', 1), ('concept', 1), ('centered', 1), ('design', 1), ('ideal', 1), ('anyone', 1), ('make', 1), ('us', 1), ('benefit', 1)]
[('cognitive', 2), ('robotics', 2), ('robot', 2), ('approach', 1), ('creating', 1), ('artificial', 1), ('intelligence', 1), ('enabling', 1), ('learn', 1), ('respond', 1), ('real', 1), ('world', 1), ('situation', 1), ('opposed', 1), ('pre', 1), ('programming', 1), ('specific', 1), ('response', 1), ('every', 1), ('conceivable', 1), ('stimulus', 1), ('edited', 1), ('collection', 1), ('present', 1), ('theoretical', 1), ('research', 1), ('including', 1), ('psychological', 1)]
[('computer', 4), ('text', 2), ('practical', 2), ('question', 2), ('answer', 2), ('present', 1), ('broad', 1), ('introduction', 1), ('technology', 1), ('us', 1), ('format', 1), ('provide', 1), ('thoughtful', 1), ('many', 1), ('student', 1), ('computing', 1), ('offer', 1), ('earth', 1), ('overview', 1), ('fundamental', 1), ('fluency', 1), ('topic', 1), ('basic', 1)]
[('technology', 2), ('smart', 2), ('city', 2), ('book', 1), ('explains', 1), ('methodology', 1), ('known', 1), ('design', 1), ('thinking', 1), ('building', 1), ('information', 1), ('communication', 1), ('form', 1), ('backbone', 1), ('yet', 1), ('fully', 1), ('account', 1), ('human', 1), ('component', 1), ('solution', 1), ('comprehensive', 1), ('robust', 1), ('data', 1), ('analytics', 1), ('program', 1), ('enables', 1), ('right', 1), ('choice', 1), ('made', 1)]
[('blender', 4), ('animation', 3), ('grease', 3), ('pencil', 3), ('complete', 1), ('guide', 1), ('describes', 1), ('access', 1), ('component', 1), ('create', 1), ('within', 1), ('environment', 1), ('assumed', 1), ('reader', 1), ('previous', 1), ('knowledge', 1), ('program', 1), ('treat', 1), ('using', 1), ('stand', 1), ('alone', 1), ('application', 1)]
[('computer', 2), ('story', 2), ('movie', 1), ('writer', 1), ('director', 1), ('known', 1), ('graphic', 1), ('glassner', 1), ('offer', 1), ('advice', 1), ('involved', 1), ('creating', 1), ('developing', 1), ('game', 1), ('infuse', 1), ('product', 1), ('user', 1), ('still', 1), ('enjoy', 1), ('even', 1), ('become', 1), ('jaded', 1), ('special', 1), ('effect', 1), ('explains', 1), ('structure', 1)]
[('analysis', 3), ('annotation', 2), ('sequencing', 2), ('strategy', 2), ('thorough', 1), ('overview', 1), ('explores', 1), ('automated', 1), ('genome', 1), ('origin', 1), ('challenge', 1), ('next', 1), ('generation', 1), ('data', 1), ('explains', 1), ('current', 1), ('developed', 1), ('including', 1), ('statistical', 1), ('model', 1), ('early', 1), ('system', 1), ('author', 1), ('present', 1), ('visualization', 1), ('technique', 1)]
[('concept', 3), ('game', 3), ('mathematical', 2), ('development', 2), ('introductory', 1), ('textbook', 1), ('introduces', 1), ('student', 1), ('help', 1), ('understand', 1), ('apply', 1), ('field', 1), ('book', 1), ('cover', 1), ('commonly', 1), ('used', 1), ('providing', 1), ('application', 1), ('industry', 1), ('standard', 1), ('unity', 1), ('engine', 1)]
[('wearable', 2), ('technology', 2), ('development', 2), ('changing', 1), ('world', 1), ('make', 1), ('difficult', 1), ('expert', 1), ('practitioner', 1), ('keep', 1), ('recent', 1), ('handbook', 1), ('provides', 1), ('solid', 1), ('understanding', 1), ('significant', 1), ('role', 1), ('ai', 1), ('play', 1), ('design', 1), ('along', 1), ('application', 1), ('case', 1), ('study', 1)]
[('software', 4), ('cover', 3), ('testing', 2), ('quality', 2), ('assurance', 2), ('part', 2), ('written', 1), ('practitioner', 1), ('student', 1), ('book', 1), ('necessary', 1), ('concept', 1), ('technique', 1), ('first', 1), ('deal', 1), ('second', 1), ('standard', 1), ('issued', 1), ('iee', 1), ('iso', 1), ('engineering', 1), ('institute', 1), ('author', 1)]
[('change', 2), ('management', 2), ('ideal', 1), ('project', 1), ('system', 1), ('development', 1), ('manager', 1), ('book', 1), ('detail', 1), ('skill', 1), ('knowledge', 1), ('attribute', 1), ('needed', 1), ('bringing', 1), ('large', 1), ('scale', 1), ('explains', 1), ('incorporate', 1), ('quality', 1), ('method', 1), ('process', 1), ('outline', 1), ('holistic', 1), ('approach', 1), ('transformation', 1), ('comprehensive', 1), ('coverage', 1), ('span', 1), ('team', 1)]
[('software', 3), ('design', 3), ('book', 2), ('day', 2), ('work', 2), ('examines', 1), ('developer', 1), ('actually', 1), ('perform', 1), ('offer', 1), ('comprehensive', 1), ('look', 1), ('early', 1), ('exploring', 1), ('professional', 1), ('designer', 1), ('range', 1), ('different', 1), ('viewpoint', 1), ('divided', 1), ('four', 1), ('section', 1), ('discus', 1), ('various', 1), ('theoretical', 1), ('examination', 1), ('nature', 1)]
[('device', 2), ('without', 2), ('phonegap', 1), ('standard', 1), ('based', 1), ('open', 1), ('source', 1), ('development', 1), ('framework', 1), ('deployed', 1), ('mobile', 1), ('losing', 1), ('feature', 1), ('native', 1), ('app', 1), ('allowing', 1), ('access', 1), ('contact', 1), ('local', 1), ('file', 1), ('system', 1), ('camera', 1), ('medium', 1), ('multiple', 1), ('platform', 1), ('requiring', 1), ('user', 1), ('write', 1), ('single', 1), ('line', 1), ('code', 1), ('ideal', 1), ('intermediate', 1), ('advanced', 1)]
[('security', 3), ('book', 2), ('step', 2), ('application', 2), ('although', 1), ('many', 1), ('address', 1), ('issue', 1), ('explain', 1), ('incorporate', 1), ('building', 1), ('process', 1), ('exactly', 1), ('supply', 1), ('guidance', 1), ('integrate', 1), ('measure', 1), ('social', 1), ('running', 1), ('mobile', 1), ('platform', 1), ('explains', 1), ('design', 1), ('code', 1)]
[('application', 3), ('design', 2), ('distributed', 2), ('book', 1), ('examines', 1), ('security', 1), ('architecture', 1), ('illustrates', 1), ('relationship', 1), ('supplying', 1), ('guidance', 1), ('resilient', 1), ('give', 1), ('overview', 1), ('standard', 1), ('service', 1), ('oriented', 1), ('leverage', 1), ('provide', 1), ('understanding', 1), ('make', 1), ('decision', 1)]
[('game', 2), ('design', 2), ('book', 1), ('take', 1), ('real', 1), ('world', 1), ('depth', 1), ('journey', 1), ('process', 1), ('initial', 1), ('blue', 1), ('sky', 1), ('session', 1), ('pitching', 1), ('green', 1), ('light', 1), ('author', 1), ('discus', 1), ('decision', 1), ('brainstorming', 1), ('phase', 1), ('character', 1), ('development', 1), ('story', 1), ('wrap', 1), ('creation', 1), ('content', 1), ('context', 1), ('outline', 1), ('flowcharting', 1), ('play', 1), ('creating', 1), ('document', 1), ('special', 1)]
[('risk', 2), ('based', 2), ('auditing', 2), ('need', 2), ('mastering', 1), ('five', 1), ('tier', 1), ('audit', 1), ('competency', 1), ('anthology', 1), ('powerful', 1), ('practice', 1), ('filled', 1), ('practical', 1), ('technique', 1), ('encompasses', 1), ('interpersonal', 1), ('aspect', 1), ('technical', 1), ('content', 1), ('book', 1), ('focus', 1), ('behavior', 1), ('demonstrate', 1), ('habitual', 1), ('action', 1)]
[('game', 2), ('possible', 2), ('video', 1), ('fun', 1), ('immerse', 1), ('player', 1), ('fantastic', 1), ('world', 1), ('anything', 1), ('seems', 1), ('engaging', 1), ('become', 1), ('main', 1), ('entertainment', 1), ('product', 1), ('child', 1), ('adult', 1), ('alike', 1), ('book', 1), ('proposes', 1), ('answer', 1), ('question', 1), ('going', 1), ('back', 1), ('root', 1), ('gaming', 1), ('showing', 1), ('early', 1), ('modern', 1), ('indie', 1)]
[('knowledge', 3), ('learning', 3), ('management', 2), ('edited', 1), ('written', 1), ('authority', 1), ('field', 1), ('groundbreaking', 1), ('reference', 1), ('examines', 1), ('synergy', 1), ('km', 1), ('explains', 1), ('capture', 1), ('retention', 1), ('transfer', 1), ('sharing', 1), ('enhance', 1), ('includes', 1), ('case', 1), ('study', 1), ('illustrate', 1), ('application', 1)]
[('security', 2), ('explains', 2), ('organization', 1), ('facing', 1), ('growing', 1), ('challenge', 1), ('automated', 1), ('manual', 1), ('attack', 1), ('incident', 1), ('represent', 1), ('threat', 1), ('bottom', 1), ('line', 1), ('book', 1), ('problem', 1), ('corporate', 1), ('information', 1), ('solve', 1), ('based', 1), ('decade', 1), ('global', 1), ('experience', 1), ('author', 1)]
[('self', 5), ('autonomic', 3), ('system', 3), ('computing', 2), ('mimic', 1), ('human', 1), ('nervous', 1), ('realize', 1), ('set', 1), ('property', 1), ('including', 1), ('configuration', 1), ('healing', 1), ('optimization', 1), ('protection', 1), ('book', 1), ('begin', 1), ('introducing', 1), ('concept', 1), ('requirement', 1), ('exploring', 1), ('architecture', 1), ('required', 1), ('implement', 1)]
[('industry', 2), ('technological', 1), ('trend', 1), ('banking', 1), ('fintech', 1), ('disrupting', 1), ('traditional', 1), ('finance', 1), ('emerging', 1), ('technology', 1), ('blockchain', 1), ('change', 1), ('structure', 1), ('new', 1), ('business', 1), ('strategy', 1), ('needed', 1), ('book', 1), ('explores', 1), ('practical', 1), ('theoretical', 1), ('aspect', 1), ('digital', 1), ('transformation', 1)]
[('genomic', 3), ('pathogen', 2), ('data', 2), ('public', 2), ('health', 2), ('applied', 1), ('epidemiology', 1), ('handbook', 1), ('practical', 1), ('guide', 1), ('leveraging', 1), ('provides', 1), ('rationale', 1), ('theory', 1), ('implementation', 1), ('guidance', 1), ('help', 1), ('practitioner', 1), ('incorporate', 1), ('analysis', 1), ('investigation', 1)]
[('risk', 4), ('principle', 2), ('process', 2), ('work', 2), ('management', 2), ('book', 1), ('start', 1), ('prerequisite', 1), ('able', 1), ('uncover', 1), ('understand', 1), ('present', 1), ('six', 1), ('immutable', 1), ('data', 1), ('needed', 1), ('put', 1), ('managing', 1), ('case', 1), ('study', 1), ('successful', 1), ('reader', 1), ('see', 1), ('practice', 1)]
[('molecular', 2), ('lammps', 2), ('book', 1), ('focus', 1), ('correlation', 1), ('mechanical', 1), ('behavior', 1), ('structural', 1), ('evaluation', 1), ('underlying', 1), ('mechanism', 1), ('dynamic', 1), ('technique', 1), ('using', 1), ('large', 1), ('scale', 1), ('atomic', 1), ('massively', 1), ('parallel', 1), ('simulator', 1), ('platform', 1), ('give', 1), ('idea', 1), ('architecture', 1), ('coding', 1), ('used', 1), ('basic', 1), ('information', 1), ('syntax', 1)]
[('computer', 2), ('science', 2), ('major', 2), ('book', 1), ('intended', 1), ('first', 1), ('second', 1), ('year', 1), ('discrete', 1), ('mathematics', 1), ('course', 1), ('cover', 1), ('many', 1), ('important', 1), ('mathematical', 1), ('topic', 1), ('essential', 1), ('future', 1), ('algorithm', 1), ('number', 1), ('representation', 1), ('logic', 1), ('set', 1), ('theory', 1), ('boolean', 1), ('algebra', 1), ('function', 1), ('combinatorics', 1), ('etc', 1)]
[('management', 3), ('project', 2), ('emergency', 2), ('book', 1), ('provides', 1), ('foundational', 1), ('methodology', 1), ('relevant', 1), ('practice', 1), ('explains', 1), ('demonstrates', 1), ('applied', 1), ('context', 1), ('public', 1), ('safety', 1), ('organization', 1)]
[('cloud', 4), ('computing', 2), ('textbook', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('focusing', 1), ('concept', 1), ('principle', 1), ('rather', 1), ('commercial', 1), ('offering', 1), ('provider', 1), ('vendor', 1), ('give', 1), ('student', 1), ('complete', 1), ('picture', 1), ('motivation', 1), ('advantage', 1), ('growth', 1), ('infrastructure', 1), ('virtualization', 1), ('automation', 1), ('orchestration', 1)]
[('reference', 1), ('text', 1), ('present', 1), ('overview', 1), ('blockchain', 1), ('based', 1), ('internet', 1), ('thing', 1), ('system', 1), ('along', 1), ('opportunity', 1), ('challenge', 1), ('solution', 1), ('diverse', 1), ('field', 1), ('business', 1), ('education', 1), ('agriculture', 1), ('healthcare', 1)]
[('situation', 2), ('assessment', 2), ('aviation', 2), ('technology', 2), ('new', 1), ('aspect', 1), ('soft', 1), ('computing', 1), ('evaluation', 1), ('scenario', 1), ('considers', 1), ('using', 1), ('emerging', 1), ('multisensory', 1), ('data', 1), ('fusion', 1), ('msdf', 1), ('bayesian', 1), ('network', 1), ('bn', 1), ('fuzzy', 1), ('logic', 1), ('fl', 1), ('assist', 1), ('pilot', 1), ('decision', 1), ('making', 1)]
[('book', 2), ('ai', 2), ('science', 2), ('engineering', 2), ('address', 1), ('unique', 1), ('difference', 1), ('developed', 1), ('used', 1), ('inclusion', 1), ('definition', 1), ('detailed', 1), ('example', 1), ('cover', 1), ('actual', 1), ('realistic', 1), ('requirement', 1), ('avoidance', 1), ('certain', 1), ('characteristic', 1), ('correct', 1), ('successful', 1), ('application', 1)]
[('noc', 5), ('design', 4), ('communication', 2), ('issue', 2), ('book', 1), ('cover', 1), ('important', 1), ('aspect', 1), ('network', 1), ('chip', 1), ('including', 1), ('infrastructure', 1), ('methodology', 1), ('evaluation', 1), ('framework', 1), ('focus', 1), ('upcoming', 1), ('low', 1), ('power', 1), ('signal', 1), ('integrity', 1), ('testing', 1), ('reconfiguration', 1), ('synthesis', 1)]
[('book', 1), ('explains', 1), ('mathematical', 1), ('tool', 1), ('used', 1), ('solve', 1), ('problem', 1), ('signal', 1), ('processing', 1), ('assuming', 1), ('advanced', 1), ('undergraduate', 1), ('graduate', 1), ('level', 1), ('understanding', 1), ('mathematics', 1), ('second', 1), ('edition', 1), ('contains', 1), ('new', 1), ('chapter', 1), ('convolution', 1), ('vector', 1), ('dft', 1), ('plane', 1), ('wave', 1), ('propagation', 1), ('blue', 1), ('kalman', 1), ('filter', 1), ('expands', 1), ('material', 1), ('fourier', 1)]
[('book', 1), ('cover', 1), ('blockchain', 1), ('technology', 1), ('feature', 1), ('contribution', 1), ('expert', 1), ('topic', 1), ('related', 1), ('performance', 1), ('benchmarking', 1), ('durability', 1), ('robustness', 1), ('data', 1), ('gathering', 1), ('management', 1), ('algorithm', 1), ('analytics', 1), ('technique', 1), ('transaction', 1), ('processing', 1), ('implementation', 1), ('application', 1)]
[('cad', 3), ('system', 3), ('covering', 1), ('implement', 1), ('execute', 1), ('adjust', 1), ('administer', 1), ('guidebook', 1), ('present', 1), ('fundamental', 1), ('principle', 1), ('theory', 1), ('function', 1), ('application', 1), ('management', 1), ('design', 1), ('illustrates', 1), ('troubleshooting', 1), ('procedure', 1), ('control', 1), ('technique', 1), ('enhanced', 1), ('operation', 1), ('development', 1), ('includes', 1)]
[('optical', 2), ('aimed', 1), ('guide', 1), ('student', 1), ('researcher', 1), ('practicing', 1), ('engineer', 1), ('book', 1), ('cover', 1), ('fundamental', 1), ('concept', 1), ('issue', 1), ('state', 1), ('art', 1), ('development', 1), ('network', 1), ('data', 1), ('transmission', 1), ('control', 1), ('protocol', 1), ('access', 1)]
[('offer', 1), ('accessible', 1), ('comprehensive', 1), ('introduction', 1), ('artificial', 1), ('intelligence', 1), ('featuring', 1), ('extensive', 1), ('worked', 1), ('example', 1), ('exercise', 1), ('text', 1), ('suitable', 1), ('modular', 1), ('undergraduate', 1), ('degree', 1), ('msc', 1), ('conversion', 1), ('course', 1)]
[('create', 2), ('developing', 1), ('graphic', 1), ('framework', 1), ('python', 1), ('opengl', 1), ('show', 1), ('software', 1), ('rendering', 1), ('complete', 1), ('three', 1), ('dimensional', 1), ('scene', 1), ('author', 1), ('explain', 1), ('foundational', 1), ('theoretical', 1), ('concept', 1), ('practical', 1), ('programming', 1), ('technique', 1), ('enable', 1), ('animated', 1), ('interactive', 1), ('computer', 1), ('generated', 1), ('world', 1)]
[('create', 2), ('developing', 1), ('graphic', 1), ('framework', 1), ('python', 1), ('opengl', 1), ('show', 1), ('software', 1), ('rendering', 1), ('complete', 1), ('three', 1), ('dimensional', 1), ('scene', 1), ('author', 1), ('explain', 1), ('foundational', 1), ('theoretical', 1), ('concept', 1), ('practical', 1), ('programming', 1), ('technique', 1), ('enable', 1), ('animated', 1), ('interactive', 1), ('computer', 1), ('generated', 1), ('world', 1)]
[('information', 2), ('security', 2), ('new', 1), ('book', 1), ('author', 1), ('share', 1), ('experience', 1), ('help', 1), ('navigate', 1), ('today', 1), ('dangerous', 1), ('terrain', 1), ('take', 1), ('proactive', 1), ('step', 1), ('measure', 1), ('company', 1), ('governance', 1), ('maturity', 1), ('prepare', 1), ('organization', 1), ('survive', 1), ('thrive', 1), ('keep', 1), ('data', 1), ('safe', 1)]
[('visual', 2), ('effect', 2), ('artist', 2), ('real', 1), ('time', 1), ('technical', 1), ('written', 1), ('digital', 1), ('explain', 1), ('core', 1), ('concept', 1), ('common', 1), ('engine', 1), ('free', 1), ('interface', 1), ('bound', 1)]
[('data', 2), ('sustainability', 2), ('book', 1), ('provides', 1), ('roadmap', 1), ('organization', 1), ('seeking', 1), ('address', 1), ('challenge', 1), ('regarding', 1), ('impact', 1), ('explains', 1), ('collection', 1), ('measurement', 1), ('strategic', 1), ('integration', 1), ('new', 1), ('alternative', 1), ('source', 1), ('material', 1), ('social', 1), ('environmental', 1), ('issue', 1), ('enable', 1), ('faster', 1), ('adoption', 1), ('oriented', 1), ('thinking', 1)]
[('data', 2), ('sustainability', 2), ('book', 1), ('provides', 1), ('roadmap', 1), ('organization', 1), ('seeking', 1), ('address', 1), ('challenge', 1), ('regarding', 1), ('impact', 1), ('explains', 1), ('collection', 1), ('measurement', 1), ('strategic', 1), ('integration', 1), ('new', 1), ('alternative', 1), ('source', 1), ('material', 1), ('social', 1), ('environmental', 1), ('issue', 1), ('enable', 1), ('faster', 1), ('adoption', 1), ('oriented', 1), ('thinking', 1)]
[('global', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('application', 1), ('gcaia', 1), ('provides', 1), ('prominent', 1), ('venue', 1), ('researcher', 1), ('engineer', 1), ('entrepreneur', 1), ('scholar', 1), ('student', 1), ('share', 1), ('research', 1), ('idea', 1), ('area', 1), ('ai', 1)]
[('sensor', 2), ('raspberry', 2), ('pi', 2), ('hand', 1), ('course', 1), ('using', 1), ('arduino', 1), ('first', 1), ('book', 1), ('give', 1), ('practical', 1), ('wide', 1), ('ranging', 1), ('account', 1), ('interface', 1), ('actuator', 1), ('micro', 1), ('controller', 1), ('control', 1), ('system', 1)]
[('decision', 2), ('intuition', 2), ('feel', 1), ('need', 1), ('improve', 1), ('making', 1), ('skill', 1), ('book', 1), ('attempt', 1), ('remedy', 1), ('shortcoming', 1), ('educational', 1), ('system', 1), ('possibly', 1), ('common', 1), ('partly', 1), ('based', 1), ('culture', 1), ('bad', 1), ('quite', 1), ('contrary', 1), ('co', 1), ('exist', 1), ('rationality', 1), ('show', 1)]
[('decision', 2), ('intuition', 2), ('feel', 1), ('need', 1), ('improve', 1), ('making', 1), ('skill', 1), ('book', 1), ('attempt', 1), ('remedy', 1), ('shortcoming', 1), ('educational', 1), ('system', 1), ('possibly', 1), ('common', 1), ('partly', 1), ('based', 1), ('culture', 1), ('bad', 1), ('quite', 1), ('contrary', 1), ('co', 1), ('exist', 1), ('rationality', 1), ('show', 1)]
[('book', 1), ('review', 1), ('recent', 1), ('advance', 1), ('design', 1), ('construction', 1), ('magnetic', 1), ('collective', 1), ('micro', 1), ('nanorobot', 1), ('system', 1), ('promotes', 1), ('bridging', 1), ('gap', 1), ('theoretical', 1), ('investigation', 1), ('practical', 1), ('application', 1)]
[('study', 2), ('usability', 2), ('health', 2), ('information', 2), ('testing', 2), ('book', 1), ('guide', 1), ('designing', 1), ('conducting', 1), ('examine', 1), ('technology', 1), ('including', 1), ('ehealth', 1), ('mhealth', 1), ('system', 1), ('continuum', 1), ('presented', 1), ('ranging', 1), ('formative', 1), ('summative', 1)]
[('event', 2), ('nc', 1), ('first', 1), ('step', 1), ('realize', 1), ('cyber', 1), ('physical', 1), ('system', 1), ('cps', 1), ('industry', 1), ('vision', 1), ('author', 1), ('apply', 1), ('several', 1), ('powerful', 1), ('modern', 1), ('control', 1), ('technique', 1), ('design', 1), ('triggered', 1), ('controller', 1), ('derive', 1), ('trigger', 1), ('condition', 1), ('demonstrate', 1), ('closed', 1), ('loop', 1), ('stability', 1)]
[('provides', 2), ('deep', 2), ('learning', 2), ('medical', 2), ('image', 2), ('processing', 2), ('proposed', 1), ('book', 1), ('designed', 1), ('reference', 1), ('text', 1), ('comprehensive', 1), ('overview', 1), ('conceptual', 1), ('practical', 1), ('knowledge', 1), ('technique', 1), ('snapshot', 1), ('state', 1), ('current', 1), ('research', 1), ('healthcare', 1), ('emphasis', 1), ('saving', 1), ('human', 1), ('life', 1)]
[('functional', 3), ('data', 2), ('analysis', 1), ('present', 1), ('many', 1), ('idea', 1), ('handling', 1), ('including', 1), ('dimension', 1), ('reduction', 1), ('technique', 1), ('smoothing', 1), ('regression', 1), ('structured', 1), ('decomposition', 1), ('curve', 1), ('clustering', 1)]
[('data', 3), ('mining', 2), ('book', 1), ('focus', 1), ('hand', 1), ('approach', 1), ('learning', 1), ('showcase', 1), ('use', 1), ('python', 1), ('package', 1), ('fulfill', 1), ('pipeline', 1), ('collect', 1), ('integrate', 1), ('manipulate', 1), ('clean', 1), ('process', 1), ('organize', 1), ('analyze', 1), ('knowledge', 1)]
[('maintenance', 3), ('success', 3), ('software', 2), ('recipe', 1), ('identifies', 1), ('actionable', 1), ('formula', 1), ('based', 1), ('depth', 1), ('analysis', 1), ('real', 1), ('world', 1), ('project', 1), ('detail', 1), ('set', 1), ('factor', 1), ('usually', 1), ('present', 1), ('effective', 1), ('team', 1), ('work', 1), ('instructs', 1), ('method', 1), ('required', 1), ('achieve', 1)]
[('ad', 2), ('hoc', 2), ('wireless', 2), ('network', 2), ('layer', 2), ('second', 1), ('edition', 1), ('volume', 1), ('explains', 1), ('concept', 1), ('mechanism', 1), ('design', 1), ('performance', 1), ('mobile', 1), ('explores', 1), ('mac', 1), ('routing', 1), ('multicast', 1), ('transport', 1), ('quality', 1), ('service', 1), ('energy', 1), ('management', 1), ('system', 1), ('additional', 1), ('chapter', 1), ('cover', 1), ('mobility', 1), ('model', 1), ('multi', 1), ('hop', 1)]
[('supply', 2), ('chain', 2), ('erp', 2), ('crm', 2), ('internet', 1), ('commerce', 1), ('online', 1), ('advance', 1), ('technology', 1), ('available', 1), ('increasingly', 1), ('lower', 1), ('cost', 1), ('make', 1), ('system', 1), ('past', 1), ('obsolete', 1), ('integrating', 1), ('management', 1), ('smart', 1), ('material', 1), ('focus', 1), ('create', 1), ('business', 1), ('opportunity', 1), ('reap', 1), ('saving', 1), ('restructuring', 1), ('updating', 1), ('software', 1)]
[('ra', 2), ('drawing', 1), ('expertise', 1), ('leading', 1), ('mind', 1), ('book', 1), ('supply', 1), ('high', 1), ('powered', 1), ('idea', 1), ('technique', 1), ('effective', 1), ('management', 1), ('planning', 1), ('strategy', 1), ('formulation', 1), ('measurement', 1), ('performance', 1), ('presented', 1), ('series', 1), ('article', 1), ('current', 1), ('emerging', 1), ('topic', 1), ('interest', 1), ('provides', 1), ('extensive', 1), ('multi', 1), ('faceted', 1), ('guidance', 1), ('help', 1)]
[('project', 4), ('ethical', 2), ('issue', 2), ('written', 1), ('manager', 1), ('encounter', 1), ('dilemma', 1), ('book', 1), ('considers', 1), ('typical', 1), ('atypical', 1), ('occur', 1), ('phase', 1), ('life', 1), ('cycle', 1), ('exploring', 1), ('consequence', 1), ('challenge', 1), ('performance', 1), ('examines', 1), ('content', 1), ('management', 1), ('institute', 1), ('code', 1), ('ethic', 1), ('text', 1)]
[('telemedicine', 2), ('older', 2), ('providing', 1), ('date', 1), ('practical', 1), ('advice', 1), ('design', 1), ('select', 1), ('structure', 1), ('intervention', 1), ('adult', 1), ('book', 1), ('discus', 1), ('age', 1), ('related', 1), ('change', 1), ('affect', 1), ('efficacy', 1), ('system', 1), ('defines', 1), ('best', 1), ('practice', 1), ('general', 1), ('guideline', 1), ('use', 1), ('population', 1), ('patient', 1), ('health', 1), ('care', 1)]
[('knowledge', 2), ('new', 2), ('edition', 2), ('recent', 1), ('research', 1), ('show', 1), ('collaboration', 1), ('social', 1), ('networking', 1), ('foster', 1), ('sharing', 1), ('innovation', 1), ('sparking', 1), ('connection', 1), ('idea', 1), ('practice', 1), ('yet', 1), ('informal', 1), ('network', 1), ('often', 1), ('misunderstood', 1), ('poorly', 1), ('managed', 1), ('building', 1), ('groundbreaking', 1), ('bestselling', 1), ('first', 1), ('management', 1), ('handbook', 1)]
[('security', 4), ('manager', 3), ('book', 2), ('written', 1), ('want', 1), ('effective', 1), ('student', 1), ('become', 1), ('provides', 1), ('methodical', 1), ('process', 1), ('look', 1), ('management', 1), ('function', 1), ('better', 1), ('tailor', 1), ('organization', 1), ('present', 1), ('accurately', 1), ('balanced', 1), ('picture', 1)]
[('sequent', 3), ('calculus', 3), ('system', 2), ('although', 1), ('constitute', 1), ('important', 1), ('category', 1), ('proof', 1), ('known', 1), ('axiomatic', 1), ('natural', 1), ('deduction', 1), ('addressing', 1), ('deficiency', 1), ('book', 1), ('present', 1), ('comprehensive', 1), ('treatment', 1), ('including', 1), ('wide', 1), ('range', 1), ('variation', 1), ('focus', 1), ('various', 1), ('non', 1), ('classical', 1), ('logic', 1)]
[('bringing', 1), ('material', 1), ('date', 1), ('reflect', 1), ('modern', 1), ('application', 1), ('second', 1), ('edition', 1), ('completely', 1), ('rewritten', 1), ('reorganized', 1), ('incorporate', 1), ('new', 1), ('style', 1), ('methodology', 1), ('presentation', 1), ('offer', 1), ('complete', 1), ('involved', 1), ('treatment', 1), ('galois', 1), ('theory', 1), ('comprehensive', 1), ('section', 1), ('pollard', 1), ('cubic', 1), ('factoring', 1), ('algorithm', 1), ('detailed', 1)]
[('uncanny', 2), ('valley', 2), ('phenomenon', 2), ('book', 1), ('essential', 1), ('guide', 1), ('animator', 1), ('video', 1), ('game', 1), ('designer', 1), ('overcome', 1), ('designing', 1), ('human', 1), ('character', 1), ('digital', 1), ('application', 1), ('author', 1), ('provides', 1), ('synopsis', 1), ('literature', 1), ('explains', 1), ('introduced', 1), ('contemporary', 1), ('thought', 1), ('present', 1)]
[('game', 3), ('book', 1), ('focus', 1), ('history', 1), ('video', 1), ('console', 1), ('home', 1), ('computer', 1), ('beginning', 1), ('mid', 1), ('ninety', 1), ('started', 1), ('new', 1), ('era', 1), ('digital', 1), ('entertainment', 1), ('text', 1), ('feature', 1), ('innovative', 1), ('introduces', 1), ('pioneer', 1), ('developed', 1), ('offer', 1), ('brief', 1), ('analysis', 1), ('relevant', 1), ('time', 1), ('period', 1)]
[('theory', 2), ('measurement', 2), ('data', 2), ('mathematical', 2), ('book', 1), ('discus', 1), ('method', 1), ('application', 1), ('technique', 1), ('modeling', 1), ('parameter', 1), ('estimation', 1), ('seek', 1), ('build', 1), ('bridge', 1), ('engineering', 1), ('practice', 1), ('processing', 1), ('field', 1), ('theoretical', 1), ('researcher', 1), ('technical', 1), ('engineer', 1), ('communicate', 1), ('organized', 1)]
[('content', 2), ('management', 2), ('step', 2), ('book', 1), ('demystifies', 1), ('drupal', 1), ('popular', 1), ('system', 1), ('use', 1), ('today', 1), ('instruction', 1), ('worked', 1), ('example', 1), ('crucial', 1), ('guide', 1), ('next', 1), ('level', 1)]
[('design', 2), ('book', 1), ('go', 1), ('beyond', 1), ('syntax', 1), ('explicitly', 1), ('define', 1), ('illustrate', 1), ('high', 1), ('level', 1), ('concept', 1), ('provides', 1), ('solid', 1), ('understanding', 1), ('control', 1), ('flow', 1), ('adts', 1), ('object', 1), ('memory', 1), ('type', 1), ('relationship', 1), ('dynamic', 1), ('behavior', 1), ('promoting', 1), ('modern', 1), ('software', 1), ('option', 1), ('independent', 1), ('particular', 1), ('programming', 1), ('language', 1), ('tool', 1), ('compare', 1), ('contrast', 1)]
[('game', 4), ('industry', 2), ('want', 1), ('successful', 1), ('area', 1), ('development', 1), ('design', 1), ('programming', 1), ('graphic', 1), ('sound', 1), ('publishing', 1), ('know', 1), ('standouts', 1), ('approach', 1), ('work', 1), ('address', 1), ('problem', 1), ('book', 1), ('groundbreaking', 1), ('developer', 1), ('share', 1), ('story', 1), ('offer', 1), ('advice', 1), ('anyone', 1), ('aspiring', 1), ('career', 1)]
[('design', 2), ('distributed', 2), ('using', 2), ('book', 1), ('present', 1), ('systematic', 1), ('approach', 1), ('large', 1), ('complex', 1), ('system', 1), ('concept', 1), ('mechanism', 1), ('defined', 1), ('reference', 1), ('model', 1), ('open', 1), ('processing', 1), ('rm', 1), ('odp', 1), ('focusing', 1), ('key', 1), ('choice', 1), ('make', 1), ('architectural', 1), ('robust', 1), ('durable', 1), ('author', 1), ('illustrate', 1), ('benefit', 1), ('viewpoint', 1), ('based', 1)]
[('second', 1), ('edition', 1), ('bestseller', 1), ('present', 1), ('systematic', 1), ('extensive', 1), ('coverage', 1), ('primary', 1), ('area', 1), ('research', 1), ('development', 1), ('within', 1), ('technology', 1), ('brings', 1), ('together', 1), ('comprehensive', 1), ('set', 1), ('contributed', 1), ('article', 1), ('address', 1), ('principle', 1), ('required', 1), ('define', 1), ('system', 1), ('requirement', 1), ('design', 1), ('build', 1), ('evaluate', 1), ('implement', 1), ('manage', 1), ('effective', 1)]
[('supply', 2), ('chain', 2), ('erp', 2), ('crm', 2), ('internet', 1), ('commerce', 1), ('online', 1), ('advance', 1), ('technology', 1), ('available', 1), ('increasingly', 1), ('lower', 1), ('cost', 1), ('make', 1), ('system', 1), ('past', 1), ('obsolete', 1), ('integrating', 1), ('management', 1), ('smart', 1), ('material', 1), ('focus', 1), ('create', 1), ('business', 1), ('opportunity', 1), ('reap', 1), ('saving', 1), ('restructuring', 1), ('updating', 1), ('software', 1)]
[('problem', 5), ('book', 1), ('introduces', 1), ('theory', 1), ('application', 1), ('metaheuristic', 1), ('algorithm', 1), ('provides', 1), ('method', 1), ('solving', 1), ('practical', 1), ('software', 1), ('engineering', 1), ('image', 1), ('recognition', 1), ('video', 1), ('network', 1), ('ocean', 1)]
[('third', 1), ('new', 1), ('series', 1), ('exploring', 1), ('basic', 1), ('raspberry', 1), ('pi', 1), ('operating', 1), ('system', 1), ('administration', 1), ('instalment', 1), ('focus', 1), ('ontext', 1), ('editor', 1), ('git', 1), ('github', 1), ('lxc', 1), ('lxd', 1)]
[('image', 2), ('processing', 2), ('book', 1), ('serf', 1), ('textbook', 1), ('student', 1), ('instructor', 1), ('covering', 1), ('theoretical', 1), ('foundation', 1), ('practical', 1), ('application', 1), ('prevalent', 1), ('method', 1), ('approach', 1)]
[('image', 2), ('processing', 2), ('book', 1), ('serf', 1), ('textbook', 1), ('student', 1), ('instructor', 1), ('covering', 1), ('theoretical', 1), ('foundation', 1), ('practical', 1), ('application', 1), ('prevalent', 1), ('method', 1), ('approach', 1)]
[('learning', 5), ('learner', 2), ('strategy', 2), ('book', 1), ('examines', 1), ('way', 1), ('future', 1), ('today', 1), ('educated', 1), ('cover', 1), ('digital', 1), ('blended', 1), ('flipped', 1), ('mobile', 1), ('gamification', 1), ('focus', 1), ('creative', 1), ('teaching', 1), ('modern', 1)]
[('standard', 2), ('software', 2), ('international', 2), ('designed', 1), ('conform', 1), ('iso', 1), ('iec', 1), ('common', 1), ('measurement', 1), ('consortium', 1), ('cosmic', 1), ('function', 1), ('point', 1), ('method', 1), ('become', 1), ('major', 1), ('estimation', 1), ('technique', 1), ('based', 1), ('building', 1), ('intensive', 1), ('system', 1), ('book', 1), ('supply', 1), ('cutting', 1), ('edge', 1), ('look', 1), ('current', 1), ('emerging', 1), ('practice', 1)]
[('competency', 3), ('model', 3), ('professional', 2), ('management', 2), ('project', 2), ('pmi', 2), ('written', 1), ('first', 1), ('obtain', 1), ('program', 1), ('pgmp', 1), ('certification', 1), ('institute', 1), ('book', 1), ('present', 1), ('follows', 1), ('framework', 1), ('manager', 1), ('divided', 1), ('performance', 1), ('personal', 1)]
[('demonstrates', 2), ('based', 1), ('extensive', 1), ('research', 1), ('literature', 1), ('review', 1), ('experimentation', 1), ('author', 1), ('practical', 1), ('experience', 1), ('book', 1), ('environmental', 1), ('intelligence', 1), ('used', 1), ('towards', 1), ('greener', 1), ('environment', 1), ('targeted', 1), ('help', 1), ('achieve', 1), ('end', 1), ('environmentally', 1), ('responsible', 1), ('business', 1), ('strategy', 1)]
[('data', 3), ('clustering', 3), ('object', 2), ('oriented', 2), ('algorithm', 2), ('using', 1), ('design', 1), ('programming', 1), ('technique', 1), ('book', 1), ('explores', 1), ('commonality', 1), ('create', 1), ('flexible', 1), ('set', 1), ('reusable', 1), ('class', 1), ('simplifies', 1), ('implementation', 1), ('first', 1), ('part', 1), ('text', 1), ('review', 1), ('basic', 1), ('concept', 1), ('uml', 1)]
[('software', 3), ('conducting', 2), ('audit', 2), ('book', 1), ('offer', 1), ('authoritative', 1), ('guidance', 1), ('performing', 1), ('first', 1), ('article', 1), ('inspection', 1), ('functional', 1), ('physical', 1), ('configuration', 1), ('provides', 1), ('best', 1), ('method', 1), ('review', 1), ('aerospace', 1), ('company', 1), ('defense', 1), ('contractor', 1), ('organization', 1), ('author', 1), ('includes', 1), ('checklist', 1), ('sample', 1), ('form', 1)]
[('best', 2), ('practice', 2), ('written', 1), ('noted', 1), ('author', 1), ('blogger', 1), ('industry', 1), ('analyst', 1), ('veteran', 1), ('greg', 1), ('schulz', 1), ('book', 1), ('cover', 1), ('data', 1), ('storage', 1), ('network', 1), ('cloud', 1), ('virtual', 1), ('environment', 1), ('hardware', 1), ('software', 1), ('service', 1), ('perspective', 1), ('filled', 1), ('real', 1), ('world', 1), ('insight', 1), ('blueprint', 1), ('vendor', 1), ('technology', 1), ('neutral', 1), ('text', 1), ('provides', 1)]
[('first', 2), ('book', 2), ('cost', 2), ('learning', 2), ('volume', 1), ('provide', 1), ('overview', 1), ('current', 1), ('research', 1), ('effort', 1), ('problem', 1), ('area', 1), ('discus', 1), ('real', 1), ('world', 1), ('application', 1), ('incorporate', 1), ('modeling', 1), ('process', 1), ('part', 1), ('describes', 1), ('established', 1), ('machine', 1), ('approach', 1), ('reducing', 1), ('data', 1), ('acquisition', 1)]
[('social', 2), ('field', 2), ('issue', 2), ('software', 1), ('engineering', 1), ('examines', 1), ('spectrum', 1), ('activity', 1), ('compose', 1), ('supplying', 1), ('date', 1), ('look', 1), ('evolving', 1), ('coverage', 1), ('includes', 1), ('security', 1), ('legal', 1), ('privacy', 1), ('addition', 1), ('workflow', 1), ('jessica', 1), ('keyes', 1), ('former', 1), ('managing', 1), ('director', 1), ('new', 1), ('york', 1), ('stock', 1), ('exchange', 1)]
[('release', 3), ('management', 2), ('implementation', 2), ('implemented', 1), ('correctly', 1), ('help', 1), ('ensure', 1), ('quality', 1), ('integrated', 1), ('throughout', 1), ('development', 1), ('delivery', 1), ('service', 1), ('application', 1), ('infrastructure', 1), ('clearly', 1), ('illustrating', 1), ('effective', 1), ('process', 1), ('hand', 1), ('guide', 1), ('examines', 1), ('similarity', 1), ('difference', 1)]
[('data', 4), ('present', 2), ('warehouse', 2), ('issue', 2), ('book', 1), ('solution', 1), ('deliver', 1), ('significant', 1), ('roi', 1), ('market', 1), ('basket', 1), ('analysis', 1), ('approached', 1), ('database', 1), ('design', 1), ('rather', 1), ('model', 1), ('time', 1), ('variance', 1), ('temporal', 1), ('past', 1), ('event', 1), ('historical', 1), ('context', 1), ('former', 1), ('available', 1), ('enterprise', 1), ('latter', 1)]
[('software', 5), ('engineering', 3), ('system', 2), ('book', 1), ('supply', 1), ('understanding', 1), ('needed', 1), ('achieve', 1), ('continuous', 1), ('improvement', 1), ('quality', 1), ('throughout', 1), ('life', 1), ('cycle', 1), ('defines', 1), ('time', 1), ('tested', 1), ('method', 1), ('design', 1), ('informal', 1), ('formal', 1), ('build', 1), ('installation', 1), ('integration', 1), ('delivery', 1), ('activity', 1), ('product', 1)]
[('method', 2), ('pattern', 2), ('focusing', 1), ('active', 1), ('area', 1), ('mathematical', 1), ('research', 1), ('last', 1), ('decade', 1), ('book', 1), ('present', 1), ('used', 1), ('combinatorics', 1), ('avoidance', 1), ('enumeration', 1), ('set', 1), ('partition', 1), ('chapter', 1), ('give', 1), ('historical', 1), ('perspective', 1), ('contrast', 1), ('different', 1), ('approach', 1), ('illustrates', 1), ('definition', 1), ('worked', 1), ('example', 1), ('maple', 1), ('code', 1)]
[('book', 1), ('present', 1), ('various', 1), ('technology', 1), ('demonstrate', 1), ('cloud', 1), ('computing', 1), ('meet', 1), ('business', 1), ('requirement', 1), ('serve', 1), ('infrastructure', 1), ('multidimensional', 1), ('data', 1), ('analysis', 1), ('application', 1), ('addressing', 1), ('performance', 1), ('issue', 1), ('explores', 1), ('evolution', 1), ('classical', 1), ('technique', 1), ('describes', 1), ('completely', 1), ('new', 1), ('method', 1), ('innovative', 1), ('algorithm', 1), ('text', 1)]
[('distributed', 3), ('data', 3), ('service', 3), ('oriented', 3), ('knowledge', 3), ('mining', 2), ('discovery', 2), ('technique', 2), ('new', 1), ('approach', 1), ('large', 1), ('scale', 1), ('extract', 1), ('useful', 1), ('often', 1), ('unmanageable', 1), ('volume', 1), ('exploiting', 1), ('machine', 1), ('learning', 1), ('model', 1), ('infrastructure', 1), ('present', 1)]
[('knowledge', 7), ('management', 2), ('explaining', 1), ('improve', 1), ('based', 1), ('society', 1), ('book', 1), ('address', 1), ('problem', 1), ('collecting', 1), ('synthesizing', 1), ('coordinating', 1), ('creating', 1), ('provides', 1), ('engineering', 1), ('tool', 1), ('framework', 1), ('integrating', 1), ('creation', 1), ('discovery', 1), ('text', 1), ('cover', 1), ('technology', 1)]
[('book', 2), ('visualization', 2), ('collecting', 1), ('seminal', 1), ('work', 1), ('field', 1), ('focus', 1), ('subset', 1), ('scientific', 1), ('concerned', 1), ('algorithm', 1), ('design', 1), ('implementation', 1), ('optimization', 1), ('use', 1), ('today', 1), ('largest', 1), ('computational', 1), ('platform', 1), ('introducing', 1), ('fundamental', 1), ('concept', 1), ('parallel', 1), ('explores', 1), ('approach', 1), ('accelerate', 1)]
[('technology', 3), ('learning', 2), ('highlighting', 1), ('importance', 1), ('pedagogy', 1), ('management', 1), ('higher', 1), ('education', 1), ('ecosystem', 1), ('book', 1), ('present', 1), ('information', 1), ('oriented', 1), ('educational', 1), ('program', 1), ('next', 1), ('generation', 1), ('scientist', 1), ('researcher', 1), ('explains', 1), ('web', 1), ('enhance', 1), ('collaborative', 1), ('immersive', 1), ('environment', 1)]
[('iot', 4), ('concept', 2), ('although', 1), ('internet', 1), ('thing', 1), ('play', 1), ('key', 1), ('role', 1), ('development', 1), ('next', 1), ('generation', 1), ('information', 1), ('network', 1), ('communication', 1), ('technology', 1), ('many', 1), ('still', 1), ('unclear', 1), ('make', 1), ('different', 1), ('similar', 1), ('answering', 1), ('fundamental', 1), ('question', 1), ('architecture', 1), ('model', 1), ('book', 1), ('introduces', 1), ('essential', 1)]
[('data', 2), ('book', 1), ('diverse', 1), ('cross', 1), ('section', 1), ('application', 1), ('computer', 1), ('scientist', 1), ('explores', 1), ('impact', 1), ('intensive', 1), ('science', 1), ('current', 1), ('research', 1), ('describes', 1), ('emerging', 1), ('technology', 1), ('enable', 1), ('future', 1), ('scientific', 1), ('breakthrough', 1)]
[('publication', 1), ('first', 1), ('edition', 1), ('advance', 1), ('mobile', 1), ('device', 1), ('positioning', 1), ('sensor', 1), ('wifi', 1), ('fingerprinting', 1), ('wireless', 1), ('communication', 1), ('among', 1), ('others', 1), ('paved', 1), ('way', 1), ('developing', 1), ('new', 1), ('advanced', 1), ('location', 1), ('based', 1), ('service', 1), ('lb', 1)]
[('book', 2), ('system', 2), ('leading', 1), ('practitioner', 1), ('researcher', 1), ('software', 1), ('architect', 1), ('developer', 1), ('scientist', 1), ('offer', 1), ('insight', 1), ('parallel', 1), ('ecosystem', 1), ('explains', 1), ('large', 1), ('scale', 1), ('hpc', 1), ('facility', 1), ('scope', 1), ('configure', 1), ('operate', 1), ('cover', 1), ('file', 1), ('layer', 1), ('middleware', 1), ('user', 1), ('facing', 1), ('library', 1), ('real', 1), ('world', 1), ('scientific', 1), ('application', 1), ('use', 1)]
[('game', 3), ('math', 3), ('education', 2), ('video', 2), ('medium', 2), ('mathematician', 2), ('mathematics', 1), ('new', 1), ('era', 1), ('learning', 1), ('help', 1), ('educator', 1), ('stay', 1), ('ahead', 1), ('development', 1), ('curve', 1), ('book', 1), ('stanford', 1), ('npr', 1), ('keith', 1), ('devlin', 1), ('explains', 1), ('fun', 1), ('aside', 1), ('ideal', 1), ('teach', 1), ('middle', 1), ('school', 1), ('developer', 1), ('learn', 1)]
[('web', 2), ('incorporating', 1), ('research', 1), ('range', 1), ('discipline', 1), ('book', 1), ('provides', 1), ('accessible', 1), ('engaging', 1), ('explanation', 1), ('wider', 1), ('context', 1), ('yet', 1), ('still', 1), ('grounded', 1), ('rigor', 1), ('computer', 1), ('science', 1), ('author', 1), ('discus', 1), ('underlying', 1), ('idea', 1), ('principle', 1), ('cover', 1), ('main', 1), ('type', 1), ('service', 1), ('including', 1), ('social', 1), ('network', 1), ('medium', 1), ('sharing', 1)]
[('text', 2), ('offer', 1), ('insight', 1), ('computation', 1), ('used', 1), ('solve', 1), ('variety', 1), ('interesting', 1), ('important', 1), ('real', 1), ('world', 1), ('problem', 1), ('taking', 1), ('active', 1), ('learning', 1), ('approach', 1), ('us', 1), ('hand', 1), ('project', 1), ('teach', 1), ('computer', 1), ('science', 1), ('concept', 1), ('application', 1), ('encourages', 1), ('student', 1), ('explore', 1), ('computing', 1), ('idea', 1), ('running', 1), ('program', 1), ('testing', 1), ('different', 1)]
[('architecture', 2), ('system', 2), ('software', 2), ('book', 1), ('explores', 1), ('practice', 1), ('helpful', 1), ('development', 1), ('large', 1), ('scale', 1), ('major', 1), ('component', 1), ('examining', 1), ('synergy', 1), ('exist', 1), ('engineering', 1), ('detail', 1), ('approach', 1), ('design', 1), ('driven', 1), ('systemic', 1), ('quality', 1), ('attribute', 1), ('determined', 1)]
[('project', 4), ('management', 2), ('engineering', 1), ('cover', 1), ('multiple', 1), ('country', 1), ('politics', 1), ('culture', 1), ('different', 1), ('standard', 1), ('create', 1), ('additional', 1), ('challenge', 1), ('manager', 1), ('book', 1), ('aligns', 1), ('real', 1), ('world', 1), ('experience', 1), ('international', 1), ('practical', 1), ('principle', 1)]
[('step', 2), ('process', 2), ('mobile', 2), ('organization', 2), ('addressing', 1), ('rapid', 1), ('evolution', 1), ('global', 1), ('communication', 1), ('book', 1), ('provides', 1), ('guidance', 1), ('configure', 1), ('enact', 1), ('manage', 1), ('integrating', 1), ('technology', 1), ('within', 1), ('enterprise', 1), ('transition', 1), ('met', 1), ('presented', 1), ('considers', 1), ('input', 1), ('four', 1), ('significant', 1), ('dimension', 1), ('economic', 1)]
[('industry', 2), ('spl', 2), ('greater', 1), ('competition', 1), ('pressuring', 1), ('improve', 1), ('efficiency', 1), ('use', 1), ('software', 1), ('product', 1), ('line', 1), ('recent', 1), ('year', 1), ('drastically', 1), ('increased', 1), ('productivity', 1), ('related', 1), ('many', 1), ('improvement', 1), ('possible', 1), ('handbook', 1), ('detail', 1), ('various', 1), ('aspect', 1), ('implementation', 1), ('different', 1), ('domain', 1), ('documenting', 1)]
[('application', 2), ('system', 2), ('integration', 2), ('bringing', 1), ('together', 1), ('latest', 1), ('research', 1), ('result', 1), ('book', 1), ('provides', 1), ('clear', 1), ('comprehensive', 1), ('understanding', 1), ('technology', 1), ('architecture', 1), ('project', 1), ('management', 1), ('technique', 1), ('involved', 1), ('enterprise', 1), ('text', 1), ('includes', 1), ('coverage', 1), ('mobile', 1), ('communication', 1), ('standard', 1), ('integrated', 1)]
[('book', 1), ('zero', 1), ('trust', 1), ('framework', 1), ('essentially', 1), ('methodology', 1), ('network', 1), ('infrastructure', 1), ('business', 1), ('segmented', 1), ('smaller', 1), ('island', 1), ('line', 1), ('defense', 1)]
[('smart', 4), ('card', 4), ('security', 2), ('attack', 2), ('associated', 2), ('book', 1), ('provides', 1), ('overview', 1), ('technology', 1), ('explores', 1), ('different', 1), ('countermeasure', 1), ('cover', 1), ('origin', 1), ('type', 1), ('work', 1), ('discus', 1), ('hardware', 1), ('software', 1), ('data', 1), ('user', 1), ('part', 1), ('based', 1), ('system', 1)]
[('information', 2), ('ad', 2), ('hoc', 2), ('wireless', 2), ('network', 2), ('stop', 1), ('source', 1), ('rapidly', 1), ('growing', 1), ('field', 1), ('book', 1), ('offer', 1), ('authoritative', 1), ('broad', 1), ('range', 1), ('topic', 1), ('basic', 1), ('research', 1), ('level', 1), ('address', 1), ('potential', 1), ('us', 1), ('disaster', 1), ('recovery', 1), ('application', 1), ('related', 1), ('healthcare', 1), ('defense', 1), ('home', 1)]
[('power', 3), ('design', 3), ('low', 2), ('electronics', 1), ('cover', 1), ('major', 1), ('aspect', 1), ('ic', 1), ('deep', 1), ('submicron', 1), ('technology', 1), ('address', 1), ('emerging', 1), ('topic', 1), ('related', 1), ('future', 1), ('explores', 1), ('many', 1), ('different', 1), ('domain', 1), ('discipline', 1), ('impact', 1), ('consumption', 1), ('including', 1), ('processor', 1), ('complex', 1), ('circuit', 1), ('software', 1), ('cad', 1), ('tool', 1), ('energy', 1), ('source', 1)]
[('make', 1), ('motion', 1), ('capture', 1), ('part', 1), ('graphic', 1), ('effect', 1), ('arsenal', 1), ('mastery', 1), ('state', 1), ('art', 1), ('system', 1), ('workflow', 1)]
[('highlighting', 1), ('requirement', 1), ('technology', 1), ('business', 1), ('model', 1), ('handbook', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('existing', 1), ('future', 1), ('automotive', 1), ('electronic', 1), ('system', 1), ('present', 1), ('state', 1), ('art', 1), ('methodological', 1), ('technical', 1), ('solution', 1), ('area', 1), ('vehicle', 1), ('architecture', 1), ('multipartner', 1), ('development', 1), ('process', 1), ('software', 1), ('engineering', 1), ('method', 1)]
[('various', 2), ('intelligent', 2), ('decision', 2), ('making', 2), ('objective', 1), ('edited', 1), ('book', 1), ('share', 1), ('outcome', 1), ('research', 1), ('domain', 1), ('develop', 1), ('efficient', 1), ('adaptive', 1), ('model', 1), ('handle', 1), ('challenge', 1), ('related', 1), ('aspect', 1), ('incorporates', 1), ('advance', 1), ('machine', 1), ('technique', 1), ('process', 1), ('application', 1)]
[('analysis', 2), ('handbook', 1), ('includes', 1), ('contribution', 1), ('around', 1), ('globe', 1), ('recent', 1), ('advance', 1), ('finding', 1), ('domain', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('blockchain', 1), ('chapter', 1), ('include', 1), ('theoretical', 1), ('practical', 1), ('implication', 1), ('extensive', 1), ('survey', 1), ('method', 1), ('algorithm', 1), ('process', 1), ('new', 1), ('product', 1), ('development', 1)]
[('librarian', 2), ('information', 2), ('successful', 2), ('instructive', 1), ('guide', 1), ('planning', 1), ('start', 1), ('brokerage', 1), ('whether', 1), ('entrepreneur', 1), ('member', 1), ('document', 1), ('delivery', 1), ('group', 1), ('library', 1), ('knowledgeable', 1), ('professional', 1), ('repeat', 1), ('method', 1), ('firm', 1), ('gathered', 1), ('together', 1), ('helpful', 1), ('book', 1), ('broker', 1), ('case', 1), ('study', 1), ('ven', 1)]
[('technology', 2), ('digital', 2), ('image', 2), ('processing', 2), ('various', 2), ('big', 2), ('data', 2), ('book', 1), ('cover', 1), ('field', 1), ('application', 1), ('reader', 1), ('understand', 1), ('strategy', 1), ('used', 1), ('handling', 1), ('using', 1), ('machine', 1), ('learning', 1), ('technique', 1)]
[('book', 2), ('iot', 2), ('technical', 2), ('cover', 1), ('big', 1), ('data', 1), ('business', 1), ('point', 1), ('view', 1), ('explains', 1), ('design', 1), ('principle', 1), ('algorithm', 1), ('knowledge', 1), ('marketing', 1), ('system', 1)]
[('field', 2), ('second', 2), ('edition', 2), ('handbook', 2), ('nearly', 1), ('six', 1), ('year', 1), ('leading', 1), ('reference', 1), ('award', 1), ('winning', 1), ('reemerges', 1), ('completely', 1), ('updated', 1), ('content', 1), ('brand', 1), ('new', 1), ('format', 1), ('computer', 1), ('engineering', 1), ('offered', 1), ('set', 1), ('carefully', 1), ('focused', 1), ('book', 1), ('encompass', 1), ('aspect', 1), ('addition', 1), ('complete', 1)]
[('data', 2), ('eda', 2), ('textbook', 1), ('introduces', 1), ('exploratory', 1), ('analysis', 1), ('cover', 1), ('range', 1), ('interesting', 1), ('feature', 1), ('expect', 1), ('find', 1), ('book', 1), ('explores', 1), ('practical', 1), ('mechanic', 1), ('using', 1)]
[('edition', 2), ('three', 1), ('cryptography', 1), ('theory', 1), ('practice', 1), ('embraced', 1), ('instructor', 1), ('student', 1), ('offer', 1), ('comprehensive', 1), ('primer', 1), ('subject', 1), ('fundamental', 1), ('feature', 1), ('current', 1), ('advance', 1), ('fourth', 1), ('provides', 1), ('depth', 1), ('treatment', 1), ('method', 1), ('protocol', 1), ('safeguard', 1), ('information', 1), ('circulating', 1), ('around', 1), ('world', 1)]
[('flash', 4), ('new', 2), ('content', 2), ('move', 1), ('beyond', 1), ('limitation', 1), ('programming', 1), ('standard', 1), ('license', 1), ('agreement', 1), ('back', 1), ('animating', 1), ('edition', 1), ('bestselling', 1), ('cheat', 1), ('adobe', 1), ('real', 1), ('world', 1), ('guide', 1), ('written', 1), ('renowned', 1), ('expert', 1), ('chris', 1), ('georgenes', 1), ('csx', 1), ('revision', 1)]
[('essential', 1), ('book', 1), ('belongs', 1), ('every', 1), ('designer', 1), ('collection', 1)]
[('book', 2), ('important', 2), ('created', 1), ('help', 1), ('scientist', 1), ('engineer', 1), ('write', 1), ('computer', 1), ('code', 1), ('practical', 1), ('address', 1), ('tool', 1), ('technique', 1), ('necessary', 1), ('scientific', 1), ('computing', 1), ('yet', 1), ('commonplace', 1), ('science', 1), ('engineering', 1), ('curriculum', 1), ('contains', 1), ('chapter', 1), ('summarizing', 1), ('topic', 1), ('computational', 1), ('researcher', 1), ('need', 1)]
[('create', 5), ('level', 2), ('unreal', 2), ('custom', 2), ('effect', 2), ('book', 1), ('serf', 1), ('introduction', 1), ('design', 1), ('process', 1), ('engine', 1), ('working', 1), ('number', 1), ('different', 1), ('component', 1), ('within', 1), ('editor', 1), ('reader', 1), ('learn', 1), ('using', 1), ('bsps', 1), ('material', 1), ('blueprint', 1), ('complete', 1), ('event', 1), ('import', 1), ('object', 1), ('particle', 1), ('sound', 1)]
[('book', 2), ('symmetric', 2), ('group', 2), ('focus', 1), ('representation', 1), ('theory', 1), ('central', 1), ('object', 1), ('discrete', 1), ('mathematics', 1), ('studied', 1), ('combinatorial', 1), ('algorithmic', 1), ('algebraic', 1), ('viewpoint', 1), ('result', 1), ('applied', 1), ('plethora', 1), ('field', 1), ('physic', 1), ('computer', 1), ('science', 1), ('date', 1)]
[('book', 2), ('mathematical', 2), ('science', 2), ('introduces', 1), ('principle', 1), ('modeling', 1), ('engineering', 1), ('social', 1), ('basic', 1), ('skill', 1), ('computer', 1), ('programming', 1), ('aimed', 1), ('major', 1), ('stem', 1), ('discipline', 1), ('need', 1), ('understand', 1), ('create', 1), ('analyze', 1), ('test', 1), ('model', 1)]
[('increasing', 1), ('level', 1), ('driving', 1), ('automation', 1), ('changed', 1), ('role', 1), ('driver', 1), ('active', 1), ('operator', 1), ('passive', 1), ('monitor', 1)]
[('computer', 2), ('system', 2), ('network', 2), ('security', 2), ('provides', 1), ('reader', 1), ('basic', 1), ('understanding', 1), ('issue', 1), ('involved', 1)]
[('book', 1), ('present', 1), ('state', 1), ('art', 1), ('solution', 1), ('theoretical', 1), ('practical', 1), ('challenge', 1), ('stemming', 1), ('leverage', 1), ('big', 1), ('data', 1), ('computational', 1), ('intelligence', 1), ('supporting', 1), ('smart', 1), ('network', 1), ('operation', 1), ('management', 1), ('optimization', 1)]
[('book', 1), ('cover', 1), ('core', 1), ('computational', 1), ('science', 1), ('concept', 1), ('technique', 1), ('show', 1), ('apply', 1), ('model', 1), ('select', 1), ('numerical', 1), ('method', 1), ('implement', 1), ('computer', 1), ('simulation', 1), ('ass', 1), ('ensuing', 1), ('result', 1), ('providing', 1), ('wealth', 1), ('matlab', 1), ('fortran', 1), ('code', 1), ('online', 1), ('download', 1), ('second', 1), ('edition', 1), ('includes', 1), ('new', 1), ('chapter', 1), ('section', 1), ('finite', 1), ('element', 1)]
[('design', 4), ('edition', 2), ('result', 2), ('continuing', 1), ('bestselling', 1), ('informative', 1), ('tradition', 1), ('first', 1), ('second', 1), ('remains', 1), ('resource', 1), ('contain', 1), ('important', 1), ('table', 1), ('area', 1), ('combinatorial', 1), ('handbook', 1), ('cover', 1), ('construction', 1), ('existence', 1), ('property', 1), ('application', 1)]
[('optimization', 2), ('neural', 2), ('network', 2), ('computing', 2), ('work', 1), ('introduces', 1), ('automation', 1), ('methodology', 1), ('design', 1), ('complex', 1), ('engineering', 1), ('system', 1), ('using', 1), ('book', 1), ('present', 1), ('new', 1), ('computational', 1), ('model', 1), ('standard', 1), ('including', 1), ('application', 1), ('steel', 1), ('highrise', 1), ('building', 1), ('structure', 1), ('three', 1), ('paradigm', 1), ('covered', 1), ('mathematical', 1)]
[('present', 3), ('system', 2), ('integration', 1), ('ability', 1), ('modern', 1), ('semiconductor', 1), ('technology', 1), ('opportunity', 1), ('issue', 1), ('power', 1), ('consumption', 1), ('reliability', 1), ('form', 1), ('factor', 1), ('challenge', 1), ('book', 1), ('explores', 1), ('chip', 1), ('provide', 1), ('new', 1), ('approach', 1), ('designing', 1), ('future', 1), ('computing', 1), ('communication', 1), ('trip', 1), ('processor', 1), ('architecture', 1)]
[('book', 1), ('explores', 1), ('essential', 1), ('enabling', 1), ('role', 1), ('digital', 1), ('health', 1), ('taking', 1), ('socio', 1), ('technical', 1), ('perspective', 1), ('looking', 1), ('key', 1), ('facet', 1), ('technology', 1), ('process', 1), ('turn', 1)]
[('cloud', 3), ('computing', 2), ('security', 2), ('based', 2), ('asset', 2), ('book', 1), ('present', 1), ('principle', 1), ('definition', 1), ('term', 1), ('key', 1), ('issue', 1), ('service', 1), ('contract', 1), ('companion', 1), ('anyone', 1), ('charged', 1), ('protecting', 1), ('using', 1), ('protect', 1), ('traditional', 1)]
[('data', 3), ('science', 3), ('method', 3), ('wind', 3), ('energy', 3), ('application', 2), ('book', 1), ('show', 1), ('improve', 1), ('decision', 1), ('making', 1), ('broad', 1), ('set', 1), ('covered', 1), ('described', 1), ('context', 1), ('specific', 1), ('example', 1), ('case', 1), ('study', 1)]
[('technology', 2), ('industrial', 2), ('trend', 1), ('screening', 1), ('beyond', 1), ('comprehensive', 1), ('state', 1), ('art', 1), ('analysis', 1), ('digitalization', 1), ('industry', 1), ('compliant', 1), ('solution', 1), ('book', 1), ('introduces', 1), ('method', 1), ('architecture', 1), ('applicable', 1), ('real', 1), ('use', 1), ('case', 1), ('explained', 1), ('broad', 1), ('audience', 1), ('researcher', 1), ('practitioner', 1), ('industrialist', 1)]
[('edition', 2), ('available', 1), ('three', 1), ('volume', 1), ('set', 1), ('updated', 1), ('expanded', 1), ('bestseller', 1), ('continues', 1), ('provide', 1), ('authoritative', 1), ('coverage', 1), ('fundamental', 1), ('specialized', 1), ('aspect', 1), ('information', 1), ('bearing', 1), ('signal', 1), ('digital', 1), ('form', 1), ('new', 1), ('encompasses', 1), ('essential', 1), ('background', 1), ('material', 1), ('technical', 1), ('detail', 1), ('standard', 1), ('software', 1), ('reflects', 1)]
[('review', 2), ('ma', 2), ('simulation', 2), ('application', 2), ('comprehensive', 1), ('reference', 1), ('provides', 1), ('overdue', 1), ('wide', 1), ('ranging', 1), ('facet', 1), ('including', 1), ('methodological', 1), ('oriented', 1), ('guideline', 1), ('decade', 1), ('research', 1), ('intersection', 1), ('different', 1), ('domain', 1), ('provide', 1), ('scientist', 1), ('developer', 1), ('disciplined', 1), ('engineering', 1)]
[('data', 2), ('structure', 2), ('concise', 2), ('designed', 1), ('c', 1), ('course', 1), ('text', 1), ('provides', 1), ('thorough', 1), ('overview', 1), ('gradual', 1), ('introduction', 1), ('java', 1), ('us', 1), ('style', 1), ('includes', 1), ('pseudocode', 1), ('exercise', 1), ('throughout', 1), ('student', 1), ('learn', 1), ('write', 1), ('code', 1), ('rather', 1), ('book', 1), ('cover', 1), ('main', 1), ('area', 1), ('taught', 1)]
[('adaptation', 3), ('wireless', 2), ('communication', 2), ('volume', 2), ('widespread', 1), ('use', 1), ('technique', 1), ('helped', 1), ('meet', 1), ('increased', 1), ('demand', 1), ('new', 1), ('application', 1), ('adaptive', 1), ('signal', 1), ('processing', 1), ('cross', 1), ('layer', 1), ('design', 1), ('cover', 1), ('aspect', 1), ('set', 1), ('provides', 1), ('unified', 1), ('framework', 1), ('understanding', 1)]
[('human', 2), ('software', 2), ('approach', 2), ('existing', 2), ('book', 1), ('explains', 1), ('essential', 1), ('account', 1), ('factor', 1), ('determining', 1), ('various', 1), ('risk', 1), ('engineering', 1), ('process', 1), ('present', 1), ('information', 1), ('technology', 1), ('resource', 1), ('evaluation', 1), ('rooted', 1), ('research', 1), ('describes', 1), ('enhance', 1), ('strict', 1), ('use', 1)]
[('development', 2), ('bioinformatics', 2), ('designed', 1), ('reference', 1), ('text', 1), ('present', 1), ('latest', 1), ('highlighting', 1), ('importance', 1), ('genomics', 1), ('transcriptomics', 1), ('metabolism', 1), ('cheminformatics', 1), ('analysis', 1), ('drug', 1), ('discovery', 1)]
[('book', 1), ('examines', 1), ('cybersecurity', 1), ('phenomenon', 1), ('looking', 1), ('folklore', 1), ('hype', 1), ('behaviour', 1), ('practitioner', 1), ('content', 1), ('strongly', 1), ('rooted', 1), ('available', 1), ('research', 1), ('presented', 1), ('accessible', 1), ('manner', 1), ('number', 1), ('business', 1), ('related', 1), ('case', 1), ('study', 1)]
[('key', 2), ('information', 2), ('public', 1), ('infrastructure', 1), ('pki', 1), ('operational', 1), ('ecosystem', 1), ('employ', 1), ('management', 1), ('cryptography', 1), ('technology', 1), ('security', 1), ('cybersecurity', 1), ('policy', 1), ('practice', 1), ('legal', 1), ('matter', 1), ('law', 1), ('regulatory', 1), ('contractual', 1), ('privacy', 1), ('business', 1), ('rule', 1), ('process', 1), ('procedure', 1)]
[('book', 2), ('machine', 2), ('vision', 2), ('comprehensive', 1), ('reference', 1), ('address', 1), ('field', 1), ('significance', 1), ('cyber', 1), ('physical', 1), ('system', 1), ('aim', 1), ('provide', 1), ('advanced', 1), ('student', 1), ('early', 1), ('career', 1), ('researcher', 1), ('established', 1), ('scholar', 1), ('state', 1), ('art', 1), ('knowledge', 1), ('novel', 1), ('content', 1), ('related', 1), ('implementation', 1), ('engineering', 1)]
[('improve', 2), ('customer', 2), ('handbook', 1), ('artificial', 1), ('intelligence', 1), ('application', 1), ('industrial', 1), ('sustainability', 1), ('examines', 1), ('influence', 1), ('ai', 1), ('used', 1), ('several', 1), ('industry', 1), ('corporate', 1), ('performance', 1), ('reduce', 1), ('security', 1), ('concern', 1), ('experience', 1), ('ultimately', 1), ('generate', 1), ('value', 1), ('maximize', 1), ('profit', 1)]
[('game', 3), ('design', 3), ('workshop', 1), ('put', 1), ('work', 1), ('prototyping', 1), ('playtesting', 1), ('revising', 1), ('time', 1), ('tested', 1), ('method', 1), ('tool', 1), ('skill', 1), ('provide', 1), ('foundation', 1), ('career', 1), ('facet', 1), ('industry', 1), ('including', 1), ('producing', 1), ('programming', 1), ('visual', 1)]
[('education', 3), ('technology', 2), ('evolution', 1), ('longer', 1), ('apprehended', 1), ('simply', 1), ('looking', 1), ('use', 1), ('computer', 1), ('network', 1), ('supplementary', 1), ('tool', 1), ('conventional', 1), ('method', 1), ('system', 1), ('real', 1), ('proficient', 1), ('instrumental', 1), ('nurture', 1), ('knowledge', 1), ('society', 1)]
[('book', 1), ('give', 1), ('complete', 1), ('overview', 1), ('cloud', 1), ('computing', 1), ('importance', 1), ('trend', 1), ('innovation', 1), ('amalgamation', 1), ('technology', 1), ('provides', 1), ('content', 1), ('reference', 1)]
[('broadband', 2), ('wireless', 2), ('transmission', 2), ('high', 2), ('frequency', 1), ('domain', 1), ('receiver', 1), ('design', 1), ('doubly', 1), ('selective', 1), ('channel', 1), ('discus', 1), ('technique', 1), ('serious', 1), ('candidate', 1), ('implemented', 1), ('future', 1), ('cellular', 1), ('system', 1), ('aiming', 1), ('providing', 1), ('reliable', 1), ('data', 1), ('concomitantly', 1), ('mobility', 1), ('book', 1), ('provides', 1), ('overview', 1)]
[('based', 3), ('technique', 2), ('book', 1), ('discus', 1), ('white', 1), ('black', 1), ('box', 1), ('approach', 1), ('fault', 1), ('diagnosis', 1), ('condition', 1), ('monitoring', 1), ('delivering', 1), ('thorough', 1), ('evaluation', 1), ('latest', 1), ('artificial', 1), ('intelligence', 1), ('tool', 1), ('address', 1), ('nearest', 1), ('neighbor', 1), ('clustering', 1), ('statistical', 1), ('information', 1), ('theory', 1), ('considering', 1), ('merit', 1), ('issue', 1)]
[('software', 3), ('book', 2), ('new', 2), ('process', 2), ('pattern', 2), ('knowledge', 2), ('map', 2), ('introduces', 1), ('creating', 1), ('design', 1), ('lead', 1), ('highly', 1), ('stable', 1), ('reusable', 1), ('cost', 1), ('effective', 1), ('basis', 1), ('topology', 1), ('called', 1), ('designed', 1), ('allow', 1), ('reader', 1), ('master', 1), ('basic', 1), ('theoretical', 1), ('aspect', 1)]
[('language', 3), ('program', 2), ('designed', 1), ('tutorial', 1), ('book', 1), ('explains', 1), ('write', 1), ('programming', 1), ('assembly', 1), ('module', 1), ('embedded', 1), ('present', 1), ('general', 1), ('computer', 1), ('architecture', 1), ('microprocessor', 1), ('individual', 1), ('addressing', 1), ('mode', 1), ('stack', 1), ('operation', 1), ('procedure', 1), ('array', 1), ('macro', 1), ('input', 1), ('output', 1)]
[('multimedia', 3), ('database', 3), ('management', 2), ('mining', 2), ('development', 1), ('exploded', 1), ('past', 1), ('decade', 1), ('little', 1), ('information', 1), ('available', 1), ('providing', 1), ('complete', 1), ('set', 1), ('service', 1), ('including', 1), ('integration', 1), ('web', 1), ('electronic', 1), ('enterprise', 1), ('managing', 1)]
[('server', 2), ('system', 2), ('single', 1), ('volume', 1), ('desktop', 1), ('reference', 1), ('provides', 1), ('comprehensive', 1), ('information', 1), ('issue', 1), ('case', 1), ('study', 1), ('chapter', 1), ('supply', 1), ('example', 1), ('common', 1), ('situation', 1), ('selecting', 1), ('processor', 1), ('type', 1), ('particular', 1), ('application', 1), ('new', 1), ('no', 1), ('design', 1), ('consideration', 1), ('disk', 1), ('drive', 1), ('array', 1), ('level', 1), ('selection', 1), ('engineer', 1), ('vendor', 1), ('integrator', 1)]
[('wireless', 2), ('used', 2), ('short', 1), ('text', 1), ('messaging', 1), ('investigating', 1), ('war', 1), ('book', 1), ('explores', 1), ('aspect', 1), ('technology', 1), ('including', 1), ('daily', 1), ('life', 1), ('might', 1), ('future', 1), ('provides', 1), ('stop', 1), ('resource', 1), ('type', 1), ('crime', 1), ('committed', 1), ('forensic', 1), ('investigation', 1), ('technique', 1)]
[('model', 4), ('software', 2), ('using', 1), ('multidisciplinary', 1), ('approach', 1), ('art', 1), ('modeling', 1), ('cover', 1), ('theory', 1), ('practice', 1), ('presentation', 1), ('detail', 1), ('book', 1), ('describes', 1), ('driving', 1), ('need', 1), ('creation', 1), ('demonstrates', 1), ('create', 1), ('system', 1), ('presenting', 1), ('example', 1), ('business', 1), ('workflow', 1), ('requirement', 1), ('capture', 1), ('architecture', 1), ('documentation', 1), ('text', 1)]
[('pathogen', 2), ('recognition', 1), ('vital', 1), ('need', 1), ('protect', 1), ('legitimate', 1), ('facility', 1), ('theft', 1), ('misuse', 1), ('dangerous', 1), ('toxin', 1), ('text', 1), ('guide', 1), ('implementation', 1), ('protection', 1), ('program', 1), ('first', 1), ('section', 1), ('book', 1), ('offer', 1), ('historical', 1), ('overview', 1), ('biological', 1), ('weapon', 1), ('activity', 1), ('key', 1), ('principle', 1), ('biosecurity', 1), ('integration', 1)]
[('window', 2), ('book', 1), ('walk', 1), ('reader', 1), ('process', 1), ('setting', 1), ('secure', 1), ('commerce', 1), ('web', 1), ('site', 1), ('includes', 1), ('implementation', 1), ('example', 1), ('unix', 1), ('solaris', 1), ('linux', 1), ('nt', 1), ('author', 1), ('pay', 1), ('particular', 1), ('attention', 1), ('security', 1), ('issue', 1), ('involved', 1)]
[('web', 2), ('service', 2), ('business', 2), ('dimension', 2), ('firm', 1), ('aggressively', 1), ('beginning', 1), ('design', 1), ('develop', 1), ('implement', 1), ('advanced', 1), ('complex', 1), ('system', 1), ('book', 1), ('guide', 1), ('reader', 1), ('strategy', 1), ('methodology', 1), ('technology', 1), ('used', 1), ('successfully', 1), ('plan', 1), ('deploy', 1), ('interdepartmental', 1), ('case', 1), ('study', 1), ('illustrate', 1), ('technological', 1)]
[('based', 1), ('actual', 1), ('experience', 1), ('implementing', 1), ('managing', 1), ('large', 1), ('scale', 1), ('project', 1), ('environment', 1), ('book', 1), ('emphasizes', 1), ('design', 1), ('implementation', 1), ('management', 1), ('vmware', 1), ('esx', 1), ('server', 1), ('offering', 1), ('technical', 1), ('consultative', 1), ('point', 1), ('view', 1), ('providing', 1), ('practical', 1), ('guide', 1), ('example', 1), ('chapter', 1), ('organization', 1), ('focus', 1), ('first', 1), ('introducing', 1), ('concept', 1)]
[('security', 4), ('book', 2), ('ipv', 2), ('consideration', 2), ('analyze', 1), ('key', 1), ('mechanism', 1), ('approach', 1), ('practical', 1), ('primer', 1), ('first', 1), ('market', 1), ('cover', 1), ('critical', 1), ('dan', 1), ('minoli', 1), ('author', 1), ('telecommunication', 1), ('network', 1), ('jake', 1), ('kouns', 1), ('chairman', 1), ('ceo', 1), ('cfo', 1), ('open', 1), ('foundation', 1), ('discus', 1), ('vulnerability', 1)]
[('tsp', 3), ('right', 3), ('microsoft', 2), ('mukesh', 1), ('jain', 1), ('detail', 1), ('technique', 1), ('followed', 1), ('plan', 1), ('project', 1), ('take', 1), ('step', 1), ('result', 1), ('every', 1), ('time', 1), ('author', 1), ('share', 1), ('real', 1), ('world', 1), ('experience', 1), ('implementation', 1), ('india', 1), ('document', 1), ('team', 1), ('delivered', 1), ('high', 1), ('quality', 1), ('software', 1), ('schedule', 1), ('within', 1), ('budget', 1)]
[('architecture', 2), ('design', 2), ('acdm', 2), ('focusing', 1), ('centric', 1), ('method', 1), ('book', 1), ('provides', 1), ('deep', 1), ('insight', 1), ('designing', 1), ('software', 1), ('system', 1), ('effectively', 1), ('use', 1), ('architectural', 1), ('artifact', 1), ('created', 1), ('text', 1), ('describes', 1), ('integrate', 1), ('existing', 1), ('organizational', 1), ('structure', 1), ('process', 1), ('author', 1), ('demonstrates', 1), ('tailor', 1)]
[('fuzzy', 4), ('semantic', 4), ('web', 4), ('language', 4), ('logic', 2), ('non', 2), ('book', 1), ('first', 1), ('combine', 1), ('coverage', 1), ('provides', 1), ('depth', 1), ('insight', 1), ('set', 1), ('theory', 1), ('expert', 1), ('help', 1), ('researcher', 1), ('better', 1), ('understanding', 1), ('theoretical', 1), ('fundamental', 1)]
[('data', 2), ('book', 1), ('diverse', 1), ('cross', 1), ('section', 1), ('application', 1), ('computer', 1), ('scientist', 1), ('explores', 1), ('impact', 1), ('intensive', 1), ('science', 1), ('current', 1), ('research', 1), ('describes', 1), ('emerging', 1), ('technology', 1), ('enable', 1), ('future', 1), ('scientific', 1), ('breakthrough', 1)]
[('book', 1), ('address', 1), ('increasing', 1), ('demand', 1), ('guarantee', 1), ('privacy', 1), ('integrity', 1), ('availability', 1), ('resource', 1), ('network', 1), ('distributed', 1), ('system', 1)]
[('inspired', 2), ('book', 2), ('ant', 1), ('allocation', 1), ('swarm', 1), ('algorithm', 1), ('derived', 1), ('honeybee', 1), ('explains', 1), ('study', 1), ('biological', 1), ('system', 1), ('significantly', 1), ('improve', 1), ('computing', 1), ('networking', 1), ('robotics', 1), ('containing', 1), ('contribution', 1), ('leading', 1), ('researcher', 1), ('around', 1), ('world', 1), ('investigates', 1), ('fundamental', 1), ('aspect', 1), ('application', 1), ('bio', 1)]
[('graph', 4), ('theory', 4), ('book', 2), ('quantitative', 2), ('first', 1), ('devoted', 1), ('exclusively', 1), ('present', 1), ('demonstrates', 1), ('existing', 1), ('novel', 1), ('method', 1), ('analyzing', 1), ('quantitatively', 1), ('incorporating', 1), ('interdisciplinary', 1), ('knowledge', 1), ('information', 1), ('measurement', 1), ('statistical', 1), ('technique', 1), ('cover', 1), ('wide', 1), ('range', 1)]
[('system', 3), ('adaptive', 2), ('examining', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('book', 1), ('address', 1), ('challenge', 1), ('understanding', 1), ('predicting', 1), ('controlling', 1), ('networked', 1), ('computer', 1), ('particularly', 1), ('important', 1), ('considering', 1), ('intersection', 1), ('critical', 1), ('infrastructure', 1), ('complex', 1), ('resilience', 1), ('author', 1), ('unveil', 1), ('novel', 1), ('approach', 1), ('building', 1), ('dynamic', 1)]
[('text', 2), ('classroom', 1), ('tested', 1), ('provides', 1), ('depth', 1), ('introduction', 1), ('algorithmic', 1), ('technique', 1), ('applied', 1), ('bioinformatics', 1), ('topic', 1), ('author', 1), ('clearly', 1), ('detail', 1), ('biological', 1), ('motivation', 1), ('precisely', 1), ('defines', 1), ('corresponding', 1), ('computational', 1), ('problem', 1), ('includes', 1), ('detailed', 1), ('example', 1), ('illustrate', 1), ('algorithm', 1), ('cover', 1), ('basic', 1), ('molecular', 1)]
[('game', 3), ('engine', 3), ('book', 1), ('second', 1), ('volume', 1), ('popular', 1), ('gem', 1), ('series', 1), ('contains', 1), ('short', 1), ('article', 1), ('focus', 1), ('particular', 1), ('technique', 1), ('describe', 1), ('clever', 1), ('trick', 1), ('offer', 1), ('practical', 1), ('advice', 1), ('within', 1), ('subject', 1), ('development', 1), ('chapter', 1), ('cover', 1), ('three', 1), ('broad', 1), ('category', 1), ('graphic', 1), ('rendering', 1), ('design', 1), ('system', 1), ('programming', 1)]
[('technique', 2), ('computing', 2), ('wide', 1), ('ranging', 1), ('survey', 1), ('novel', 1), ('important', 1), ('application', 1), ('book', 1), ('contains', 1), ('theoretical', 1), ('philosophical', 1), ('discussion', 1), ('pseudocodes', 1), ('algorithm', 1), ('paradigm', 1), ('illustrate', 1), ('computational', 1), ('solve', 1), ('complex', 1), ('problem', 1), ('simulate', 1), ('nature', 1), ('explain', 1), ('natural', 1), ('phenomenon', 1), ('allow', 1), ('development', 1), ('new', 1)]
[('conceptual', 3), ('graph', 2), ('fca', 2), ('knowledge', 2), ('presenting', 1), ('perspective', 1), ('community', 1), ('volume', 1), ('take', 1), ('basic', 1), ('yet', 1), ('nontrivial', 1), ('task', 1), ('establishing', 1), ('relation', 1), ('foundation', 1), ('research', 1), ('representation', 1), ('mining', 1), ('providing', 1), ('formal', 1), ('background', 1), ('describes', 1), ('various', 1)]
[('algorithm', 2), ('geometric', 2), ('exploring', 1), ('recent', 1), ('achievement', 1), ('occurred', 1), ('mid', 1), ('book', 1), ('explains', 1), ('use', 1), ('modern', 1), ('fit', 1), ('contour', 1), ('observed', 1), ('data', 1), ('image', 1), ('processing', 1), ('computer', 1), ('vision', 1), ('author', 1), ('cover', 1), ('facet', 1), ('statistical', 1), ('computational', 1), ('method', 1), ('look', 1), ('numerical', 1), ('relate', 1)]
[('reality', 3), ('augmented', 3), ('virtual', 1), ('becoming', 1), ('emerging', 1), ('platform', 1), ('new', 1), ('application', 1), ('area', 1), ('museum', 1), ('edutainment', 1), ('home', 1), ('entertainment', 1), ('research', 1), ('industry', 1), ('art', 1), ('community', 1), ('using', 1), ('novel', 1), ('approach', 1), ('taken', 1), ('beyond', 1), ('traditional', 1), ('eye', 1), ('worn', 1), ('hand', 1), ('held', 1), ('display', 1), ('book', 1), ('author', 1), ('discus', 1), ('spatial', 1)]
[('concept', 2), ('mathematical', 2), ('book', 1), ('introduces', 1), ('method', 1), ('upon', 1), ('computer', 1), ('network', 1), ('rely', 1), ('explores', 1), ('application', 1), ('internet', 1), ('web', 1), ('accessible', 1), ('reader', 1), ('elementary', 1), ('background', 1), ('illustrates', 1), ('algorithmic', 1), ('example', 1), ('various', 1), ('field', 1), ('including', 1), ('literature', 1), ('history', 1), ('art', 1), ('author', 1)]
[('book', 1), ('comprehensive', 1), ('guide', 1), ('producing', 1), ('medical', 1), ('software', 1), ('routine', 1), ('clinical', 1), ('use', 1)]
[('approach', 3), ('green', 2), ('book', 2), ('level', 2), ('based', 2), ('software', 2), ('edited', 1), ('founder', 1), ('lead', 1), ('investigator', 1), ('list', 1), ('present', 1), ('state', 1), ('art', 1), ('advance', 1), ('large', 1), ('scale', 1), ('computing', 1), ('movement', 1), ('begin', 1), ('low', 1), ('hardware', 1), ('traverse', 1), ('stack', 1), ('increasingly', 1), ('higher', 1), ('explains', 1)]
[('book', 2), ('statistic', 2), ('statistical', 2), ('method', 2), ('although', 1), ('countless', 1), ('dedicated', 1), ('application', 1), ('software', 1), ('engineering', 1), ('fill', 1), ('void', 1), ('instead', 1), ('delving', 1), ('overly', 1), ('complex', 1), ('focus', 1), ('simpler', 1), ('solution', 1), ('effective', 1), ('author', 1), ('explain', 1), ('required', 1)]
[('image', 3), ('natural', 2), ('art', 2), ('numerous', 1), ('color', 1), ('figure', 1), ('throughout', 1), ('work', 1), ('cover', 1), ('aspect', 1), ('statistic', 1), ('data', 1), ('collection', 1), ('analysis', 1), ('application', 1), ('computer', 1), ('graphic', 1), ('computational', 1), ('photography', 1), ('processing', 1), ('collecting', 1), ('state', 1), ('interdisciplinary', 1), ('knowledge', 1), ('source', 1), ('book', 1), ('explores', 1), ('relation', 1)]
[('book', 2), ('biometrics', 2), ('showcase', 1), ('technology', 1), ('algorithm', 1), ('used', 1), ('human', 1), ('authentication', 1), ('recognition', 1), ('examining', 1), ('full', 1), ('range', 1), ('solution', 1), ('including', 1), ('unimodal', 1), ('multimodal', 1), ('cover', 1), ('conventional', 1), ('biometric', 1), ('technique', 1), ('novel', 1), ('system', 1), ('developed', 1), ('past', 1), ('year', 1), ('includes', 1), ('coverage', 1), ('new', 1)]
[('text', 3), ('image', 2), ('processing', 2), ('student', 2), ('software', 2), ('introductory', 1), ('ideal', 1), ('college', 1), ('studying', 1), ('computer', 1), ('science', 1), ('engineering', 1), ('emphasis', 1), ('design', 1), ('build', 1), ('accessible', 1), ('mathematical', 1), ('foundation', 1), ('extensive', 1), ('sample', 1), ('java', 1), ('code', 1), ('teach', 1), ('fundamental', 1), ('accompanied', 1), ('rich', 1)]
[('direct', 3), ('guide', 1), ('provides', 1), ('deep', 1), ('understanding', 1), ('high', 1), ('low', 1), ('level', 1), ('concept', 1), ('related', 1), ('using', 1), ('first', 1), ('half', 1), ('book', 1), ('present', 1), ('conceptual', 1), ('introduction', 1), ('discussing', 1), ('rendering', 1), ('computation', 1), ('pipeline', 1), ('map', 1), ('underlying', 1), ('hardware', 1), ('major', 1), ('component', 1), ('library', 1)]
[('system', 2), ('contribution', 1), ('international', 1), ('group', 1), ('author', 1), ('diverse', 1), ('background', 1), ('book', 1), ('cover', 1), ('biometric', 1), ('development', 1), ('military', 1), ('command', 1), ('control', 1), ('medical', 1), ('device', 1), ('design', 1), ('driver', 1), ('process', 1), ('performance', 1), ('inspection', 1), ('task', 1), ('manufacturing', 1), ('operation', 1), ('extend', 1), ('human', 1), ('automation', 1), ('integration', 1), ('aviation', 1), ('training', 1), ('method', 1)]
[('security', 4), ('information', 2), ('authoritative', 1), ('practical', 1), ('classroom', 1), ('resource', 1), ('management', 1), ('concept', 1), ('practice', 1), ('provides', 1), ('general', 1), ('overview', 1), ('auditing', 1), ('examining', 1), ('various', 1), ('element', 1), ('life', 1), ('cycle', 1), ('explains', 1), ('iso', 1), ('standard', 1), ('walk', 1), ('reader', 1), ('step', 1), ('conducting', 1), ('nominal', 1), ('audit', 1)]
[('universal', 2), ('written', 1), ('leading', 1), ('international', 1), ('authority', 1), ('academic', 1), ('research', 1), ('industrial', 1), ('organization', 1), ('non', 1), ('market', 1), ('institution', 1), ('access', 1), ('handbook', 1), ('provides', 1), ('comprehensive', 1), ('multidisciplinary', 1), ('overview', 1), ('field', 1), ('book', 1), ('discus', 1), ('systematically', 1), ('apply', 1), ('design', 1), ('principle', 1), ('information', 1), ('technology', 1), ('present', 1)]
[('grid', 3), ('discus', 2), ('data', 2), ('volume', 1), ('novel', 1), ('technology', 1), ('semantic', 1), ('web', 1), ('workflow', 1), ('integrated', 1), ('service', 1), ('focus', 1), ('sharing', 1), ('resource', 1), ('replication', 1), ('management', 1), ('fault', 1), ('tolerance', 1), ('scheduling', 1), ('broadcasting', 1), ('load', 1), ('balancing', 1), ('algorithm', 1), ('book', 1), ('emerging', 1), ('development', 1), ('computing', 1), ('including', 1)]
[('latest', 2), ('game', 2), ('development', 2), ('graphic', 2), ('edition', 1), ('bestselling', 1), ('reference', 1), ('offer', 1), ('proven', 1), ('tip', 1), ('technique', 1), ('real', 1), ('time', 1), ('rendering', 1), ('special', 1), ('effect', 1), ('visualization', 1), ('data', 1), ('useful', 1), ('beginner', 1), ('seasoned', 1), ('programmer', 1), ('alike', 1), ('contribution', 1), ('expert', 1), ('cover', 1)]
[('args', 2), ('formal', 1), ('training', 1), ('communication', 1), ('continue', 1), ('foundational', 1), ('approach', 1), ('developing', 1), ('employee', 1), ('workplace', 1), ('alternate', 1), ('reality', 1), ('game', 1), ('provide', 1), ('framework', 1), ('increased', 1), ('sustained', 1), ('engagement', 1), ('within', 1), ('business', 1), ('organization', 1), ('book', 1), ('lead', 1), ('fundamental', 1), ('includes', 1), ('discussion', 1)]
[('social', 3), ('network', 3), ('securing', 2), ('privacy', 2), ('need', 2), ('book', 2), ('ensuring', 1), ('participant', 1), ('become', 1), ('crucial', 1), ('date', 1), ('address', 1), ('analytics', 1), ('security', 1), ('filling', 1), ('discus', 1), ('concept', 1), ('technique', 1), ('tool', 1), ('analyzing', 1), ('cover', 1), ('experimental', 1), ('system', 1)]
[('mathematical', 3), ('programming', 3), ('network', 3), ('book', 2), ('communication', 2), ('explaining', 1), ('apply', 1), ('design', 1), ('control', 1), ('fill', 1), ('gap', 1), ('theory', 1), ('implementation', 1), ('comprehensive', 1), ('coverage', 1), ('provides', 1), ('understanding', 1), ('fundamental', 1), ('way', 1)]
[('book', 2), ('day', 2), ('graphic', 2), ('real', 2), ('time', 2), ('color', 1), ('present', 1), ('ready', 1), ('use', 1), ('idea', 1), ('procedure', 1), ('help', 1), ('solve', 1), ('many', 1), ('programming', 1), ('challenge', 1), ('focusing', 1), ('interactive', 1), ('medium', 1), ('game', 1), ('cover', 1), ('date', 1), ('method', 1), ('practical', 1), ('tip', 1), ('trick', 1), ('creating', 1), ('explains', 1), ('render', 1), ('special', 1), ('effect', 1), ('visualize', 1), ('data', 1)]
[('editorial', 1), ('panel', 1), ('span', 1), ('globe', 1), ('book', 1), ('provides', 1), ('wealth', 1), ('international', 1), ('knowledge', 1), ('guideline', 1), ('highlighting', 1), ('theory', 1), ('tool', 1), ('method', 1), ('cover', 1), ('application', 1), ('advanced', 1), ('manufacturing', 1), ('aerospace', 1), ('automotive', 1), ('data', 1), ('visualization', 1), ('simulation', 1), ('defense', 1), ('military', 1), ('system', 1), ('design', 1), ('impaired', 1), ('mobility', 1), ('healthcare', 1)]
[('multiple', 2), ('mimo', 2), ('combination', 2), ('book', 1), ('offer', 1), ('cutting', 1), ('edge', 1), ('look', 1), ('input', 1), ('output', 1), ('signal', 1), ('processing', 1), ('namely', 1), ('detection', 1), ('precoding', 1), ('examines', 1), ('ofdm', 1), ('uwb', 1), ('cdma', 1), ('along', 1), ('impact', 1), ('system', 1), ('level', 1), ('massive', 1), ('network', 1), ('coding', 1), ('physical', 1), ('layer', 1), ('recent', 1), ('topic', 1)]
[('java', 2), ('programming', 2), ('text', 1), ('teach', 1), ('student', 1), ('use', 1), ('different', 1), ('feature', 1), ('language', 1), ('program', 1), ('suitable', 1), ('self', 1), ('study', 1), ('part', 1), ('course', 1), ('introduction', 1), ('book', 1), ('cover', 1), ('material', 1), ('possible', 1), ('latest', 1), ('standard', 1), ('requiring', 1), ('previous', 1), ('experience', 1), ('taking', 1), ('application', 1), ('motivated', 1)]
[('simulation', 2), ('theory', 2), ('technology', 2), ('computer', 2), ('hybrid', 1), ('implementation', 1), ('application', 1), ('deal', 1), ('rapidly', 1), ('evolving', 1), ('combining', 1), ('typically', 1), ('finite', 1), ('element', 1), ('physical', 1), ('laboratory', 1), ('testing', 1), ('complementary', 1), ('substructure', 1), ('multidisciplinary', 1), ('relies', 1), ('heavily', 1), ('control', 1), ('science', 1), ('numerical', 1), ('technique', 1)]
[('reliability', 4), ('provides', 2), ('monte', 2), ('carlo', 2), ('principal', 2), ('network', 2), ('unique', 1), ('approach', 1), ('volume', 1), ('brief', 1), ('introduction', 1), ('method', 1), ('concise', 1), ('exposition', 1), ('theory', 1), ('idea', 1), ('investigates', 1), ('collection', 1), ('model', 1), ('solution', 1), ('problem', 1), ('algorithm', 1), ('written', 1)]
[('reader', 2), ('web', 2), ('page', 2), ('helping', 1), ('master', 1), ('development', 1), ('comprehensive', 1), ('date', 1), ('guide', 1), ('cover', 1), ('specific', 1), ('programming', 1), ('language', 1), ('apis', 1), ('coding', 1), ('technique', 1), ('provides', 1), ('depth', 1), ('understanding', 1), ('underlying', 1), ('concept', 1), ('theory', 1), ('principle', 1), ('author', 1), ('lead', 1), ('structuring', 1), ('layout', 1), ('styling', 1), ('user', 1), ('input', 1), ('processing', 1), ('dynamic', 1)]
[('computer', 2), ('iee', 2), ('first', 1), ('volume', 1), ('popular', 1), ('handbook', 1), ('mirror', 1), ('modern', 1), ('taxonomy', 1), ('science', 1), ('software', 1), ('engineering', 1), ('described', 1), ('association', 1), ('computing', 1), ('machinery', 1), ('acm', 1), ('society', 1), ('c', 1), ('written', 1), ('established', 1), ('leading', 1), ('expert', 1), ('influential', 1), ('young', 1), ('researcher', 1), ('examines', 1), ('element', 1), ('involved', 1), ('designing', 1)]
[('programming', 3), ('new', 1), ('chapter', 1), ('ode', 1), ('markov', 1), ('chain', 1), ('second', 1), ('edition', 1), ('highly', 1), ('recommended', 1), ('best', 1), ('selling', 1), ('book', 1), ('introduces', 1), ('scientific', 1), ('stochastic', 1), ('modelling', 1), ('clear', 1), ('practical', 1), ('thorough', 1), ('way', 1), ('reader', 1), ('learn', 1), ('experimenting', 1), ('provided', 1), ('code', 1), ('data', 1), ('requiring', 1), ('prior', 1), ('knowledge', 1), ('probability', 1)]
[('disturbance', 2), ('control', 2), ('application', 2), ('first', 1), ('book', 1), ('dobc', 1), ('observer', 1), ('based', 1), ('method', 1), ('present', 1), ('novel', 1), ('theory', 1), ('result', 1), ('best', 1), ('practice', 1), ('motion', 1), ('process', 1), ('already', 1), ('benefited', 1), ('numerous', 1), ('organization', 1), ('providing', 1), ('authoritative', 1), ('guidance', 1), ('area', 1), ('estimation', 1), ('compensation', 1), ('practical', 1)]
[('image', 5), ('processing', 3), ('technique', 2), ('accessible', 1), ('textbook', 1), ('examines', 1), ('basic', 1), ('technology', 1), ('needed', 1), ('support', 1), ('application', 1), ('including', 1), ('characterization', 1), ('continuous', 1), ('sampling', 1), ('quantization', 1), ('dimensional', 1), ('signal', 1), ('cover', 1), ('principle', 1), ('area', 1), ('enhancement', 1), ('restoration', 1)]
[('game', 3), ('science', 2), ('analysis', 2), ('book', 1), ('focus', 1), ('part', 1), ('fiction', 1), ('genre', 1), ('rather', 1), ('set', 1), ('magical', 1), ('milieu', 1), ('exaggerated', 1), ('version', 1), ('world', 1), ('emphasizes', 1), ('critical', 1), ('especially', 1), ('narrative', 1), ('beginning', 1), ('chapter', 1), ('explore', 1), ('design', 1), ('history', 1), ('fictional', 1), ('video', 1), ('majority', 1), ('text', 1), ('deal', 1)]
[('present', 2), ('used', 2), ('accompanied', 1), ('example', 1), ('exercise', 1), ('comprehensive', 1), ('classroom', 1), ('tested', 1), ('text', 1), ('numerous', 1), ('theory', 1), ('technique', 1), ('method', 1), ('analyzing', 1), ('algorithm', 1), ('includes', 1), ('basic', 1), ('material', 1), ('combinatorics', 1), ('probability', 1), ('student', 1), ('weak', 1), ('background', 1), ('information', 1), ('asymptotics', 1), ('usually', 1)]
[('information', 2), ('textbook', 2), ('business', 2), ('student', 2), ('need', 2), ('take', 2), ('system', 1), ('overwhelm', 1), ('overly', 1), ('technical', 1), ('career', 1), ('new', 1), ('approach', 1), ('required', 1), ('course', 1), ('major', 1), ('topic', 1), ('covered', 1), ('text', 1), ('highlight', 1), ('key', 1), ('aways', 1), ('alert', 1), ('material', 1), ('remember', 1)]
[('paper', 2), ('method', 2), ('problem', 2), ('proceeding', 1), ('originated', 1), ('conference', 1), ('commemorating', 1), ('th', 1), ('anniversary', 1), ('publication', 1), ('richard', 1), ('courant', 1), ('seminal', 1), ('variational', 1), ('equilibrium', 1), ('vibration', 1), ('address', 1), ('fundamental', 1), ('question', 1), ('numerical', 1), ('analysis', 1), ('special', 1), ('occur', 1), ('applying', 1), ('finite', 1), ('element', 1)]
[('student', 2), ('matlab', 2), ('octave', 2), ('designed', 1), ('physic', 1), ('engineering', 1), ('discipline', 1), ('taking', 1), ('course', 1), ('text', 1), ('present', 1), ('essential', 1), ('command', 1), ('structure', 1), ('allow', 1), ('unlock', 1), ('capability', 1), ('without', 1), ('understand', 1), ('many', 1), ('technicality', 1), ('given', 1), ('similarity', 1), ('syntax', 1), ('language', 1)]
[('io', 2), ('platform', 2), ('book', 1), ('offer', 1), ('information', 1), ('explains', 1), ('use', 1), ('opengl', 1), ('e', 1), ('graphic', 1), ('openal', 1), ('sound', 1), ('recommended', 1), ('game', 1), ('performance', 1), ('cover', 1), ('new', 1), ('apis', 1), ('glkit', 1), ('gamekit', 1), ('box', 1), ('physic', 1), ('engine', 1)]
[('step', 2), ('guide', 1), ('book', 1), ('cover', 1), ('design', 1), ('product', 1), ('offer', 1), ('right', 1), ('combination', 1), ('functionality', 1), ('usability', 1), ('accessibility', 1), ('consumer', 1), ('author', 1), ('articulates', 1), ('three', 1), ('element', 1), ('make', 1), ('critical', 1), ('difference', 1), ('remaining', 1), ('competitive', 1), ('economically', 1), ('viable', 1), ('long', 1), ('term', 1), ('provides', 1), ('insightful', 1), ('case', 1), ('study', 1)]
[('first', 2), ('examining', 1), ('topic', 1), ('subject', 1), ('article', 1), ('conceived', 1), ('nearly', 1), ('year', 1), ('ago', 1), ('monograph', 1), ('describes', 1), ('time', 1), ('volume', 1), ('basic', 1), ('theory', 1), ('multitude', 1), ('application', 1), ('study', 1), ('differential', 1), ('subordination', 1)]
[('numerical', 2), ('computational', 2), ('text', 1), ('present', 1), ('new', 1), ('approach', 1), ('analysis', 1), ('modern', 1), ('computer', 1), ('scientist', 1), ('using', 1), ('example', 1), ('broad', 1), ('base', 1), ('task', 1), ('including', 1), ('data', 1), ('processing', 1), ('photography', 1), ('animation', 1), ('book', 1), ('introduces', 1), ('modeling', 1), ('algorithmic', 1), ('design', 1), ('practical', 1), ('standpoint', 1), ('provides', 1), ('insight', 1), ('theoretical', 1)]
[('visualization', 2), ('color', 1), ('throughout', 1), ('popular', 1), ('book', 1), ('provides', 1), ('theory', 1), ('detail', 1), ('tool', 1), ('necessary', 1), ('build', 1), ('system', 1), ('involving', 1), ('data', 1), ('explains', 1), ('basic', 1), ('terminology', 1), ('concept', 1), ('algorithmic', 1), ('software', 1), ('engineering', 1), ('issue', 1), ('commonly', 1), ('used', 1), ('technique', 1), ('high', 1), ('level', 1), ('algorithm', 1), ('full', 1), ('source', 1), ('code', 1), ('provided', 1)]
[('interaction', 3), ('design', 3), ('ad', 1), ('hoc', 1), ('interdisciplinary', 1), ('field', 1), ('claim', 1), ('unified', 1), ('theory', 1), ('yet', 1), ('guideline', 1), ('needed', 1), ('essay', 1), ('major', 1), ('thinker', 1), ('designer', 1), ('book', 1), ('present', 1), ('rich', 1), ('mosaic', 1), ('idea', 1), ('nourish', 1), ('lively', 1), ('art', 1), ('editor', 1), ('introduction', 1), ('critical', 1), ('survey', 1), ('debt', 1)]
[('linear', 2), ('differential', 2), ('equation', 2), ('work', 1), ('present', 1), ('detailed', 1), ('study', 1), ('abstract', 1), ('degenerate', 1), ('using', 1), ('semigroups', 1), ('generated', 1), ('multivalued', 1), ('operator', 1), ('extension', 1), ('operational', 1), ('method', 1), ('da', 1), ('prato', 1), ('grisvard', 1), ('author', 1), ('describe', 1), ('recent', 1), ('original', 1), ('result', 1), ('pdes', 1), ('algebraic', 1), ('establishes', 1)]
[('hci', 2), ('agent', 2), ('software', 2), ('vernacular', 1), ('prompt', 1), ('help', 1), ('step', 1), ('required', 1), ('technology', 1), ('serious', 1), ('topic', 1), ('designer', 1), ('specialist', 1), ('morphing', 1), ('sophisticated', 1), ('entity', 1), ('designable', 1), ('pe', 1)]
[('difference', 4), ('finite', 3), ('treatise', 1), ('ineuqalities', 1), ('important', 1), ('application', 1), ('theory', 1), ('various', 1), ('class', 1), ('sum', 1), ('equation', 1), ('including', 1), ('several', 1), ('linear', 1), ('nonlinear', 1), ('inequality', 1), ('appearing', 1), ('first', 1), ('time', 1), ('book', 1), ('form', 1)]
[('database', 4), ('design', 4), ('logical', 3), ('book', 2), ('nearly', 1), ('focus', 1), ('exclusively', 1), ('relational', 1), ('modern', 1), ('management', 1), ('system', 1), ('added', 1), ('powerful', 1), ('feature', 1), ('driven', 1), ('movement', 1), ('away', 1), ('truly', 1), ('normalized', 1), ('principle', 1), ('reflects', 1), ('recent', 1), ('change', 1), ('begin', 1), ('covering', 1), ('traditional', 1)]
[('game', 3), ('book', 1), ('resource', 1), ('designer', 1), ('new', 1), ('want', 1), ('better', 1), ('understanding', 1), ('craft', 1), ('result', 1), ('year', 1), ('designing', 1), ('interactive', 1), ('medium', 1), ('kid', 1), ('figuring', 1), ('science', 1), ('psychology', 1), ('behind', 1), ('magic', 1), ('moment', 1), ('child', 1), ('playing', 1), ('start', 1), ('laughing', 1), ('loud', 1), ('shouting', 1), ('excitement', 1)]
[('security', 2), ('issue', 2), ('iot', 2), ('analyzes', 2), ('layer', 2), ('book', 1), ('focus', 1), ('environment', 1), ('problem', 1), ('separately', 1), ('try', 1), ('identity', 1), ('solution', 1), ('integration', 1), ('scalability', 1), ('cross', 1), ('architecture', 1), ('detail', 1)]
[('connection', 2), ('organization', 2), ('considerable', 1), ('growth', 1), ('personnel', 1), ('ability', 1), ('company', 1), ('compete', 1), ('time', 1), ('book', 1), ('examines', 1), ('opportunity', 1), ('learning', 1), ('within', 1), ('activity', 1), ('along', 1), ('motivation', 1)]
[('advanced', 2), ('variable', 2), ('multi', 2), ('text', 1), ('cover', 1), ('dynamical', 1), ('system', 1), ('single', 1), ('optimization', 1), ('linear', 1), ('algebra', 1), ('model', 1), ('fitting', 1), ('technique', 1), ('game', 1), ('theory', 1), ('attribute', 1), ('decision', 1), ('process', 1)]
[('finite', 3), ('volume', 2), ('draw', 1), ('together', 1), ('idea', 1), ('show', 1), ('overlap', 1), ('differ', 1), ('provides', 1), ('useful', 1), ('wide', 1), ('ranging', 1), ('source', 1), ('algorithmic', 1), ('concept', 1), ('technique', 1), ('analysis', 1), ('material', 1), ('drawn', 1), ('theoretically', 1), ('oriented', 1), ('literature', 1), ('difference', 1), ('element', 1), ('method', 1)]
[('book', 2), ('graphic', 2), ('conference', 2), ('proceeding', 1), ('th', 1), ('annual', 1), ('interface', 1), ('oldest', 1), ('continuously', 1), ('scheduled', 1), ('field', 1), ('includes', 1), ('high', 1), ('quality', 1), ('paper', 1), ('recent', 1), ('advance', 1), ('interactive', 1), ('system', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('around', 1), ('world', 1), ('cover', 1), ('following', 1), ('topic', 1), ('shading', 1), ('rendering', 1), ('geometric', 1), ('mod', 1)]
[('step', 2), ('drafting', 2), ('book', 1), ('introduces', 1), ('reader', 1), ('phase', 1), ('subject', 1), ('enable', 1), ('use', 1), ('various', 1), ('automated', 1), ('device', 1), ('instrument', 1), ('technique', 1), ('application', 1), ('show', 1), ('way', 1), ('produce', 1), ('acceptable', 1), ('framework', 1), ('high', 1), ('productivity', 1)]
[('image', 2), ('processing', 2), ('unique', 1), ('reference', 1), ('present', 1), ('depth', 1), ('coverage', 1), ('latest', 1), ('method', 1), ('application', 1), ('digital', 1), ('describing', 1), ('various', 1), ('computer', 1), ('architecture', 1), ('ideal', 1), ('satisfying', 1), ('specific', 1), ('demand', 1)]
[('program', 2), ('programmer', 2), ('book', 1), ('cover', 1), ('entire', 1), ('scope', 1), ('computer', 1), ('programming', 1), ('structured', 1), ('design', 1), ('problem', 1), ('identification', 1), ('maintaining', 1), ('existing', 1), ('intended', 1), ('audience', 1), ('beginning', 1), ('experienced', 1), ('seeking', 1), ('way', 1), ('improve', 1), ('quality', 1), ('software', 1)]
[('book', 1), ('provides', 1), ('depth', 1), ('information', 1), ('technical', 1), ('legal', 1), ('policy', 1), ('issue', 1), ('raised', 1), ('human', 1), ('artificially', 1), ('intelligent', 1), ('machine', 1), ('enhanced', 1), ('technology', 1)]
[('new', 3), ('cybersecurity', 2), ('perspective', 1), ('behavioral', 1), ('offer', 1), ('direction', 1), ('reader', 1), ('area', 1), ('related', 1), ('human', 1), ('behavior', 1), ('exploring', 1), ('idea', 1), ('approach', 1), ('subject', 1), ('specifically', 1), ('technique', 1), ('field', 1), ('coming', 1), ('diverse', 1), ('range', 1), ('scholar', 1)]
[('aircraft', 4), ('dynamic', 2), ('control', 2), ('rigid', 2), ('flexible', 2), ('flight', 1), ('simulation', 1), ('second', 1), ('edition', 1), ('explains', 1), ('basic', 1), ('nonlinear', 1), ('principle', 1), ('configured', 1), ('design', 1), ('applied', 1), ('drone', 1), ('uavs', 1)]
[('geotechnical', 2), ('work', 2), ('excavation', 2), ('development', 1), ('constitutive', 1), ('relation', 1), ('material', 1), ('help', 1), ('numerical', 1), ('model', 1), ('increased', 1), ('notably', 1), ('ability', 1), ('predict', 1), ('interpret', 1), ('mechanical', 1), ('behaviour', 1), ('cover', 1), ('rock', 1), ('soil', 1), ('earth', 1), ('fill', 1), ('dam', 1)]
[('goal', 1), ('book', 1), ('provide', 1), ('reference', 1), ('application', 1), ('mathematical', 1), ('modelling', 1), ('social', 1), ('medium', 1), ('related', 1), ('network', 1), ('analysis', 1), ('offer', 1), ('theoretically', 1), ('sound', 1), ('background', 1), ('adequate', 1), ('suggestion', 1), ('better', 1), ('decision', 1), ('making', 1)]
[('management', 2), ('beginning', 1), ('basic', 1), ('intranet', 1), ('performance', 1), ('set', 1), ('forth', 1), ('standard', 1), ('method', 1), ('tool', 1), ('simplify', 1), ('unify', 1), ('system', 1), ('network', 1), ('avoid', 1), ('seemingly', 1), ('inherent', 1), ('problem', 1), ('associated', 1), ('contain', 1), ('cost', 1)]
[('cloud', 2), ('computing', 2), ('big', 2), ('data', 2), ('book', 1), ('explores', 1), ('security', 1), ('privacy', 1), ('issue', 1), ('providing', 1), ('essential', 1), ('insight', 1), ('integration', 1)]
[('network', 2), ('technology', 2), ('application', 2), ('interaction', 2), ('robot', 2), ('vehicular', 1), ('ad', 1), ('hoc', 1), ('focus', 1), ('recent', 1), ('advanced', 1), ('address', 1), ('protocol', 1), ('design', 1), ('low', 1), ('latency', 1), ('networking', 1), ('context', 1), ('aware', 1), ('energy', 1), ('efficiency', 1), ('resource', 1), ('management', 1), ('security', 1), ('human', 1), ('assistive', 1), ('development', 1), ('integration', 1), ('multiple', 1), ('system', 1)]
[('method', 3), ('survival', 2), ('analysis', 2), ('purpose', 1), ('book', 1), ('provide', 1), ('account', 1), ('author', 1), ('intend', 1), ('accomplish', 1), ('front', 1), ('negetiveemoji', 1), ('developed', 1), ('past', 1), ('decade', 1), ('extending', 1), ('scope', 1), ('existing', 1), ('body', 1), ('ii', 1), ('augmenting', 1), ('traditional', 1), ('counterpart', 1), ('machine', 1), ('learning', 1)]
[('book', 2), ('device', 2), ('application', 2), ('give', 1), ('insight', 1), ('emerging', 1), ('semiconductor', 1), ('electronic', 1), ('circuit', 1), ('discus', 1), ('challenge', 1), ('field', 1), ('engineering', 1), ('advanced', 1), ('low', 1), ('power', 1)]
[('book', 1), ('brings', 1), ('together', 1), ('latest', 1), ('methodology', 1), ('tool', 1), ('technique', 1), ('related', 1), ('internet', 1), ('thing', 1), ('artificial', 1), ('intelligence', 1), ('single', 1), ('volume', 1), ('build', 1), ('insight', 1), ('use', 1), ('sustainable', 1), ('living', 1)]
[('data', 3), ('new', 2), ('book', 1), ('present', 1), ('cyber', 1), ('physical', 1), ('security', 1), ('finding', 1), ('industry', 1), ('using', 1), ('emerging', 1), ('technology', 1), ('artificial', 1), ('intelligence', 1), ('mining', 1), ('applied', 1), ('mathematics', 1), ('essential', 1), ('component', 1), ('processing', 1), ('recognizing', 1), ('pattern', 1), ('modelling', 1), ('technique', 1), ('improving', 1), ('advantage', 1), ('science', 1)]
[('outline', 2), ('unique', 1), ('cover', 1), ('topic', 1), ('introduction', 1), ('computational', 1), ('mathematics', 1), ('form', 1), ('modern', 1), ('version', 1), ('includes', 1), ('many', 1), ('link', 1), ('external', 1), ('web', 1), ('source', 1), ('homework', 1), ('exercise', 1), ('offer', 1), ('ti', 1), ('calculator', 1), ('arithmetic', 1), ('model', 1), ('case', 1), ('study', 1), ('set', 1), ('student', 1), ('project', 1)]
[('technology', 2), ('customer', 2), ('book', 1), ('cover', 1), ('big', 1), ('data', 1), ('machine', 1), ('learning', 1), ('artificial', 1), ('intelligence', 1), ('related', 1), ('enable', 1), ('design', 1), ('development', 1), ('delivery', 1), ('focused', 1), ('financial', 1), ('service', 1), ('corporate', 1), ('retail', 1), ('extend', 1), ('benefit', 1), ('financially', 1), ('excluded', 1), ('section', 1), ('society', 1)]
[('machine', 4), ('electric', 3), ('cover', 1), ('depth', 1), ('analysis', 1), ('augmented', 1), ('ample', 1), ('example', 1), ('make', 1), ('suitable', 1), ('new', 1), ('want', 1), ('deepen', 1), ('knowledge', 1)]
[('book', 1), ('explores', 1), ('ml', 1), ('dl', 1), ('assist', 1), ('neurologist', 1), ('identifying', 1), ('classifying', 1), ('predicting', 1), ('neurological', 1), ('problem', 1), ('require', 1), ('neuroimaging', 1), ('ability', 1), ('model', 1), ('high', 1), ('dimensional', 1), ('datasets', 1), ('supervised', 1), ('learning', 1), ('algorithm', 1), ('help', 1), ('relating', 1), ('brain', 1), ('image', 1), ('behavioral', 1), ('clinical', 1), ('observation', 1)]
[('historical', 2), ('data', 2), ('forecasting', 2), ('forecast', 1), ('future', 1), ('value', 1), ('considering', 1), ('accurate', 1), ('requires', 1), ('plugging', 1), ('model', 1), ('reader', 1), ('find', 1), ('latest', 1), ('technique', 1), ('used', 1), ('manager', 1), ('business', 1), ('today', 1), ('discover', 1), ('importance', 1), ('learn', 1), ('accomplished', 1)]
[('defines', 1), ('psychology', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('showing', 1), ('span', 1), ('gap', 1), ('science', 1), ('application', 1)]
[('book', 2), ('individual', 2), ('data', 2), ('first', 1), ('practical', 1), ('spatial', 1), ('microsimulation', 1), ('approach', 1), ('involves', 1), ('generation', 1), ('analysis', 1), ('modeling', 1), ('level', 1), ('allocated', 1), ('geographical', 1), ('zone', 1), ('full', 1), ('reproducible', 1), ('example', 1), ('using', 1), ('code', 1), ('demonstrates', 1), ('method', 1), ('population', 1), ('synthesis', 1), ('combining', 1), ('geographically', 1), ('aggregated', 1)]
[('vlsi', 3), ('design', 2), ('large', 1), ('scale', 1), ('integration', 1), ('become', 1), ('necessity', 1), ('rather', 1), ('specialization', 1), ('electrical', 1), ('computer', 1), ('engineer', 1), ('text', 1), ('offer', 1), ('comprehensive', 1), ('study', 1), ('subject', 1), ('covering', 1), ('basic', 1), ('technique', 1), ('array', 1), ('processor', 1), ('author', 1), ('describes', 1), ('develops', 1), ('physical', 1), ('picture', 1), ('cmos', 1), ('circuit', 1), ('demonstrates', 1)]
[('integration', 5), ('ic', 2), ('goal', 1), ('book', 1), ('provide', 1), ('understanding', 1), ('latest', 1), ('challenge', 1), ('issue', 1), ('term', 1), ('includes', 1), ('variety', 1), ('method', 1), ('dimensional', 1), ('interposer', 1), ('based', 1), ('integrated', 1), ('circuit', 1), ('system', 1), ('package', 1), ('sip', 1), ('heterogeneous', 1), ('monolithic', 1)]
[('deep', 2), ('network', 2), ('book', 1), ('cover', 1), ('topic', 1), ('learning', 1), ('namely', 1), ('convolutional', 1), ('neural', 1), ('belief', 1), ('stacked', 1), ('autoenders', 1), ('focus', 1), ('application', 1), ('technique', 1), ('various', 1), ('biometric', 1), ('modality', 1), ('face', 1), ('iris', 1), ('palmprint', 1), ('fingerprint', 1)]
[('book', 1), ('cover', 1), ('importance', 1), ('considering', 1), ('driver', 1), ('variability', 1), ('designing', 1), ('system', 1), ('human', 1), ('use', 1)]
[('development', 2), ('open', 2), ('source', 2), ('programmer', 1), ('centric', 1), ('book', 1), ('delivers', 1), ('practical', 1), ('introduction', 1), ('embedded', 1), ('software', 1), ('focus', 1), ('component', 1), ('written', 1), ('way', 1), ('enables', 1), ('even', 1), ('novice', 1), ('practitioner', 1), ('grasp', 1), ('process', 1), ('whole', 1), ('incorporating', 1), ('real', 1), ('code', 1), ('fragment', 1), ('explicit', 1), ('rtos', 1), ('reference', 1), ('throughout', 1), ('text', 1), ('defines', 1)]
[('ai', 2), ('problem', 2), ('book', 1), ('present', 1), ('technique', 1), ('tool', 1), ('valuable', 1), ('solving', 1), ('range', 1), ('engineering', 1), ('provides', 1), ('software', 1), ('accompanying', 1), ('disette', 1), ('numerous', 1), ('example', 1), ('help', 1), ('reader', 1), ('acquire', 1), ('skill', 1), ('use', 1), ('based', 1), ('methodology', 1), ('application', 1), ('practical', 1), ('ranging', 1), ('diagnosis', 1), ('planning', 1), ('design', 1), ('construction', 1)]
[('emergence', 1), ('fuzzy', 1), ('logic', 1), ('application', 1), ('dramatically', 1), ('changed', 1), ('face', 1), ('industrial', 1), ('control', 1), ('engineering', 1)]
[('algebra', 2), ('comprehensive', 1), ('presentation', 1), ('abstract', 1), ('depth', 1), ('treatment', 1), ('application', 1), ('algebraic', 1), ('technique', 1), ('relationship', 1), ('discipline', 1), ('number', 1), ('theory', 1), ('combinatorics', 1), ('geometry', 1), ('topology', 1), ('differential', 1), ('equation', 1), ('markov', 1), ('chain', 1)]
[('book', 2), ('delivers', 1), ('comprehensive', 1), ('overview', 1), ('smart', 1), ('grid', 1), ('communication', 1), ('discussing', 1), ('latest', 1), ('advance', 1), ('technology', 1), ('related', 1), ('cyber', 1), ('security', 1), ('issue', 1), ('best', 1), ('way', 1), ('manage', 1), ('user', 1), ('demand', 1), ('pricing', 1), ('comprised', 1), ('chapter', 1), ('authored', 1), ('world', 1), ('renowned', 1), ('expert', 1), ('considers', 1), ('use', 1), ('cognitive', 1), ('radio', 1), ('software', 1), ('defined', 1)]
[('method', 2), ('algorithm', 2), ('step', 2), ('circuit', 1), ('simulation', 1), ('provides', 1), ('theoretical', 1), ('consideration', 1), ('technique', 1), ('easy', 1), ('understand', 1), ('format', 1)]
[('algorithm', 3), ('modern', 2), ('data', 1), ('structure', 1), ('introduces', 1), ('issue', 1), ('theory', 1), ('emphasizing', 1), ('complexity', 1), ('graph', 1), ('parallel', 1), ('processing', 1), ('visualization', 1), ('accomplish', 1), ('book', 1), ('us', 1), ('appropriate', 1), ('subset', 1), ('frequently', 1), ('utilized', 1), ('representative', 1), ('application', 1), ('order', 1), ('demonstrate', 1), ('unique', 1), ('aspect', 1)]
[('computer', 3), ('speech', 3), ('human', 2), ('book', 1), ('deal', 1), ('important', 1), ('technology', 1), ('interaction', 1), ('generation', 1), ('synthetic', 1), ('recognition', 1), ('address', 1), ('problem', 1), ('generating', 1), ('varying', 1), ('precision', 1), ('articulation', 1), ('convey', 1), ('mood', 1), ('attitude', 1)]
[('support', 3), ('vector', 3), ('machine', 3), ('presenting', 1), ('clear', 1), ('bridge', 1), ('theory', 1), ('application', 1), ('volume', 1), ('provides', 1), ('thorough', 1), ('description', 1), ('mechanism', 1), ('svms', 1), ('point', 1), ('view', 1), ('chemist', 1), ('biologist', 1), ('topic', 1), ('discussed', 1), ('include', 1), ('element', 1), ('algorithm', 1), ('classification', 1), ('svc', 1), ('regression', 1), ('svr', 1)]
[('shadow', 4), ('algorithm', 2), ('data', 1), ('miner', 1), ('provides', 1), ('high', 1), ('level', 1), ('understanding', 1), ('complete', 1), ('set', 1), ('concept', 1), ('addressing', 1), ('usefulness', 1), ('larger', 1), ('graphic', 1), ('system', 1), ('perspective', 1), ('discus', 1), ('applicability', 1), ('limitation', 1), ('direct', 1), ('illumination', 1), ('approach', 1), ('generation', 1), ('emphasis', 1), ('fundamental', 1), ('boo', 1)]
[('entropy', 3), ('book', 2), ('differential', 2), ('unlike', 1), ('related', 1), ('handbook', 1), ('brings', 1), ('together', 1), ('background', 1), ('material', 1), ('derivation', 1), ('application', 1), ('first', 1), ('review', 1), ('probability', 1), ('theory', 1), ('enables', 1), ('understanding', 1), ('core', 1), ('building', 1), ('block', 1), ('author', 1), ('carefully', 1), ('explain', 1), ('discrete', 1), ('present', 1), ('detailed', 1)]
[('image', 4), ('processing', 3), ('book', 2), ('used', 2), ('present', 1), ('detailed', 1), ('overview', 1), ('technique', 1), ('practice', 1), ('digital', 1), ('cinema', 1), ('show', 1), ('become', 1), ('ubiquitous', 1), ('movie', 1), ('making', 1), ('shooting', 1), ('exhibition', 1), ('cover', 1), ('way', 1), ('algorithm', 1), ('enhance', 1), ('restore', 1), ('adapt', 1), ('convert', 1), ('moving', 1)]
[('section', 3), ('technique', 2), ('starting', 1), ('basic', 1), ('behavior', 1), ('light', 1), ('m', 1), ('kurachi', 1), ('introduces', 1), ('useful', 1), ('global', 1), ('local', 1), ('illumination', 1), ('using', 1), ('geometric', 1), ('description', 1), ('environment', 1), ('first', 1), ('go', 1), ('describe', 1), ('image', 1), ('based', 1), ('rely', 1), ('captured', 1), ('data', 1), ('magic', 1), ('second', 1), ('final', 1), ('look', 1)]
[('index', 3), ('structure', 3), ('book', 2), ('database', 2), ('query', 2), ('based', 2), ('requiring', 1), ('basic', 1), ('computer', 1), ('science', 1), ('background', 1), ('present', 1), ('known', 1), ('searching', 1), ('indexing', 1), ('technique', 1), ('defining', 1), ('similarity', 1), ('search', 1), ('describes', 1), ('low', 1), ('dimensional', 1), ('memory', 1), ('hierarchical', 1), ('disk', 1), ('useful', 1), ('distance', 1), ('measure', 1)]
[('simulation', 2), ('mechanism', 2), ('reliable', 2), ('widely', 1), ('used', 1), ('validating', 1), ('theoretical', 1), ('model', 1), ('networking', 1), ('communication', 1), ('system', 1), ('although', 1), ('claim', 1), ('made', 1), ('based', 1), ('considered', 1), ('really', 1), ('best', 1), ('determined', 1), ('real', 1), ('world', 1), ('implementation', 1), ('trial', 1), ('book', 1), ('address', 1), ('various', 1), ('issue', 1), ('covering', 1), ('different', 1)]
[('book', 2), ('metamaterials', 2), ('cmos', 2), ('show', 1), ('use', 1), ('coherent', 1), ('thz', 1), ('signal', 1), ('generation', 1), ('amplification', 1), ('transmission', 1), ('detection', 1), ('phase', 1), ('arrayed', 1), ('transistor', 1), ('significantly', 1), ('improved', 1), ('performance', 1), ('offering', 1), ('detailed', 1), ('coverage', 1), ('device', 1), ('system', 1), ('describes', 1), ('design', 1), ('application', 1), ('actual', 1)]
[('parallel', 3), ('book', 2), ('data', 2), ('tool', 2), ('first', 1), ('computing', 1), ('focus', 1), ('exclusively', 1), ('structure', 1), ('algorithm', 1), ('software', 1), ('application', 1), ('science', 1), ('prepares', 1), ('reader', 1), ('write', 1), ('effective', 1), ('code', 1), ('various', 1), ('language', 1), ('learn', 1), ('different', 1), ('package', 1), ('cover', 1), ('classic', 1), ('observation', 1)]
[('fluctuation', 2), ('instantaneous', 2), ('availability', 2), ('research', 2), ('mechanism', 1), ('control', 1), ('system', 1), ('facilitates', 1), ('development', 1), ('modeling', 1), ('identification', 1), ('skill', 1), ('theoretical', 1), ('application', 1), ('supplying', 1), ('overall', 1), ('summary', 1), ('current', 1), ('result', 1), ('analysis', 1), ('cover', 1), ('theory', 1), ('methodology', 1), ('specific', 1)]
[('image', 3), ('video', 2), ('compression', 2), ('thisbook', 1), ('present', 1), ('fundamental', 1), ('property', 1), ('application', 1), ('variety', 1), ('transforms', 1), ('used', 1), ('introduces', 1), ('popular', 1), ('algorithm', 1), ('including', 1), ('jpeg', 1), ('mpeg', 1), ('focus', 1), ('editing', 1), ('indexing', 1), ('steganography', 1), ('watermarking', 1), ('matlab', 1), ('code', 1), ('included', 1), ('dow', 1)]
[('game', 3), ('hand', 1), ('guide', 1), ('take', 1), ('complete', 1), ('process', 1), ('unity', 1), ('io', 1), ('development', 1), ('developer', 1), ('year', 1), ('author', 1), ('present', 1), ('production', 1), ('proven', 1), ('technique', 1), ('valuable', 1), ('tip', 1), ('trick', 1), ('needed', 1), ('plan', 1), ('build', 1), ('test', 1), ('launch', 1), ('iphone', 1), ('ipod', 1), ('ipad', 1), ('walk', 1), ('necessary', 1), ('procedure', 1), ('including', 1)]
[('service', 3), ('system', 2), ('tv', 2), ('fourth', 1), ('generation', 1), ('wireless', 1), ('communication', 1), ('support', 1), ('current', 1), ('emergent', 1), ('multimedia', 1), ('mobile', 1), ('social', 1), ('network', 1), ('gaming', 1), ('high', 1), ('definition', 1), ('video', 1), ('teleconferencing', 1), ('messaging', 1), ('feature', 1), ('ip', 1), ('concept', 1), ('boast', 1), ('improved', 1), ('quality', 1), ('volume', 1), ('present', 1), ('compilation', 1)]
[('imaging', 2), ('choosing', 1), ('numerous', 1), ('vision', 1), ('method', 1), ('available', 1), ('frustrating', 1), ('scientist', 1), ('engineer', 1), ('especially', 1), ('without', 1), ('comprehensive', 1), ('resource', 1), ('consult', 1), ('filling', 1), ('gap', 1), ('handbook', 1), ('give', 1), ('depth', 1), ('look', 1), ('popular', 1), ('technique', 1), ('written', 1), ('key', 1), ('player', 1), ('field', 1), ('inventor', 1), ('important', 1), ('technology', 1)]
[('theory', 5), ('near', 2), ('ring', 2), ('graph', 2), ('many', 1), ('application', 1), ('area', 1), ('diverse', 1), ('digital', 1), ('computing', 1), ('sequential', 1), ('mechanic', 1), ('automaton', 1), ('combinatorics', 1), ('suitable', 1), ('researcher', 1), ('graduate', 1), ('student', 1), ('book', 1), ('provides', 1), ('reader', 1), ('understanding', 1), ('connection', 1), ('fuzzy', 1), ('ideal', 1), ('explores', 1)]
[('book', 1), ('examines', 1), ('single', 1), ('carrier', 1), ('frequency', 1), ('division', 1), ('multiple', 1), ('access', 1), ('sc', 1), ('fdma', 1), ('exploring', 1), ('emerging', 1), ('trend', 1), ('cooperative', 1), ('communication', 1), ('improve', 1), ('physical', 1), ('layer', 1), ('security', 1), ('considers', 1), ('design', 1), ('distributed', 1), ('coding', 1), ('scheme', 1), ('protocol', 1), ('wireless', 1), ('relay', 1), ('network', 1), ('user', 1), ('cooperate', 1), ('send', 1), ('data', 1), ('destination', 1)]
[('network', 3), ('wsns', 2), ('application', 2), ('book', 2), ('management', 2), ('technique', 2), ('although', 1), ('wireless', 1), ('sensor', 1), ('employed', 1), ('across', 1), ('range', 1), ('available', 1), ('cover', 1), ('required', 1), ('algorithm', 1), ('performance', 1), ('analysis', 1), ('filling', 1), ('need', 1), ('present', 1), ('new', 1), ('address', 1), ('many', 1)]
[('wsn', 3), ('problem', 2), ('supplying', 1), ('comprehensive', 1), ('coverage', 1), ('wireless', 1), ('sensor', 1), ('network', 1), ('wsns', 1), ('book', 1), ('cover', 1), ('latest', 1), ('advance', 1), ('technology', 1), ('considers', 1), ('theoretical', 1), ('including', 1), ('issue', 1), ('monitoring', 1), ('routing', 1), ('power', 1), ('control', 1), ('detail', 1), ('methodology', 1), ('provide', 1), ('solution', 1), ('examines', 1), ('application', 1)]
[('book', 3), ('network', 3), ('analysis', 2), ('design', 2), ('approach', 2), ('focus', 1), ('aspect', 1), ('modern', 1), ('aiming', 1), ('presenting', 1), ('thorough', 1), ('overview', 1), ('contemporary', 1), ('according', 1), ('viewpoint', 1), ('science', 1), ('complex', 1), ('take', 1), ('radical', 1), ('perspective', 1), ('previous', 1), ('establishing', 1), ('top', 1), ('bottom', 1), ('element', 1)]
[('energy', 4), ('networking', 2), ('communication', 2), ('efficient', 2), ('green', 1), ('ict', 1), ('sustainability', 1), ('brings', 1), ('together', 1), ('leading', 1), ('researcher', 1), ('discus', 1), ('emerging', 1), ('development', 1), ('cover', 1), ('spectrum', 1), ('research', 1), ('subject', 1), ('including', 1), ('methodology', 1), ('architecture', 1), ('efficiency', 1), ('protocol', 1), ('network', 1)]
[('trust', 3), ('computing', 2), ('bringing', 1), ('together', 1), ('cross', 1), ('disciplinary', 1), ('expertise', 1), ('illustrated', 1), ('tutorial', 1), ('style', 1), ('text', 1), ('address', 1), ('fundamental', 1), ('underpinning', 1), ('computational', 1), ('model', 1), ('cover', 1), ('management', 1), ('process', 1), ('dynamic', 1), ('open', 1), ('system', 1), ('application', 1), ('topic', 1), ('include', 1), ('autonomic', 1), ('self', 1), ('organized', 1), ('network', 1), ('cloud', 1), ('embedded', 1), ('multi', 1), ('agent', 1)]
[('rocket', 2), ('burn', 2), ('launching', 2), ('near', 2), ('earth', 2), ('environment', 2), ('field', 2), ('book', 1), ('analyzes', 1), ('experimental', 1), ('theoretical', 1), ('study', 1), ('effect', 1), ('geomagnetic', 1), ('kilometer', 1), ('examines', 1), ('disturbance', 1), ('plasma', 1), ('ambient', 1), ('magnetic', 1), ('electric', 1), ('caused', 1)]
[('magic', 3), ('book', 2), ('explains', 2), ('system', 2), ('construct', 1), ('present', 1), ('compendium', 1), ('arcane', 1), ('lore', 1), ('showing', 1), ('weave', 1), ('compelling', 1), ('game', 1), ('interspersed', 1), ('example', 1), ('illustrate', 1), ('design', 1), ('program', 1), ('set', 1), ('table', 1), ('correspondence', 1), ('spell', 1), ('component', 1), ('write', 1)]
[('encryption', 6), ('image', 5), ('based', 2), ('investigating', 1), ('approach', 1), ('book', 1), ('examines', 1), ('algorithm', 1), ('purpose', 1), ('wireless', 1), ('communication', 1), ('secure', 1), ('form', 1), ('considers', 1), ('direction', 1), ('permutation', 1), ('diffusion', 1), ('covering', 1), ('range', 1), ('principle', 1), ('technique', 1), ('present', 1)]
[('affordable', 2), ('text', 1), ('address', 1), ('innovative', 1), ('method', 1), ('discovering', 1), ('pattern', 1), ('device', 1), ('mobile', 1), ('phone', 1), ('watch', 1), ('camera', 1), ('game', 1), ('interface', 1), ('interpret', 1), ('multimedia', 1), ('data', 1), ('personal', 1), ('health', 1), ('monitoring', 1), ('diagnosis', 1), ('first', 1), ('comprehensive', 1), ('textbook', 1), ('studying', 1), ('multidisciplinary', 1), ('innovation', 1), ('healthcare', 1)]
[('computer', 2), ('science', 2), ('formal', 2), ('language', 2), ('book', 1), ('give', 1), ('clear', 1), ('comprehensive', 1), ('introduction', 1), ('theory', 1), ('application', 1), ('meant', 1), ('basis', 1), ('term', 1), ('course', 1), ('subject', 1), ('undergraduate', 1), ('level', 1), ('cover', 1), ('rudimental', 1), ('topic', 1), ('concerning', 1), ('model', 1), ('especially', 1), ('grammar', 1), ('automaton', 1)]
[('network', 6), ('wireless', 3), ('coverage', 2), ('book', 1), ('provides', 1), ('broad', 1), ('security', 1), ('issue', 1), ('facing', 1), ('multihop', 1), ('including', 1), ('mobile', 1), ('ad', 1), ('hoc', 1), ('sensor', 1), ('mesh', 1), ('personal', 1), ('area', 1), ('detailing', 1), ('technology', 1), ('process', 1), ('securing', 1), ('today', 1), ('includes', 1), ('cryptographic', 1), ('coprocessors', 1), ('encryption', 1)]
[('cloud', 2), ('computing', 2), ('filled', 1), ('comparative', 1), ('chart', 1), ('decision', 1), ('tree', 1), ('book', 1), ('explains', 1), ('exactly', 1), ('take', 1), ('build', 1), ('robust', 1), ('highly', 1), ('scalable', 1), ('application', 1), ('organization', 1), ('covering', 1), ('major', 1), ('commercial', 1), ('offering', 1), ('currently', 1), ('available', 1), ('provides', 1), ('authoritative', 1), ('guidance', 1), ('implementation', 1), ('process', 1), ('put', 1)]
[('speech', 3), ('natural', 2), ('communication', 2), ('human', 2), ('although', 1), ('form', 1), ('using', 1), ('communicate', 1), ('machine', 1), ('anything', 1), ('drawing', 1), ('psychology', 1), ('computer', 1), ('interaction', 1), ('linguistics', 1), ('theory', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('yet', 1), ('concise', 1), ('survey', 1), ('practical', 1), ('user', 1), ('interface', 1), ('design', 1), ('text', 1), ('present', 1)]
[('intrusion', 3), ('detection', 3), ('network', 2), ('id', 2), ('key', 1), ('collaborative', 1), ('security', 1), ('supply', 1), ('complete', 1), ('introduction', 1), ('system', 1), ('idn', 1), ('describing', 1), ('leverage', 1), ('effective', 1), ('efficient', 1), ('collaboration', 1), ('participant', 1), ('explains', 1), ('benefit', 1), ('building', 1), ('idns', 1), ('identifies', 1), ('challenge', 1), ('underlying', 1)]
[('analysis', 3), ('dynamic', 2), ('although', 1), ('many', 1), ('industrial', 1), ('application', 1), ('adopted', 1), ('parallel', 1), ('robot', 1), ('textbook', 1), ('introduce', 1), ('term', 1), ('control', 1), ('filling', 1), ('gap', 1), ('book', 1), ('combine', 1), ('kinematics', 1), ('method', 1), ('designing', 1), ('controller', 1), ('brings', 1), ('together', 1), ('design', 1), ('tool', 1), ('engineer', 1), ('researcher', 1), ('want', 1)]
[('history', 4), ('mathematics', 3), ('cryptology', 2), ('book', 2), ('available', 1), ('primarily', 1), ('focus', 1), ('either', 1), ('breaking', 1), ('mold', 1), ('secret', 1), ('give', 1), ('thorough', 1), ('yet', 1), ('accessible', 1), ('treatment', 1), ('requiring', 1), ('minimal', 1), ('mathematical', 1), ('prerequisite', 1), ('present', 1), ('sufficient', 1), ('detail', 1), ('weave', 1), ('throughout', 1)]
[('book', 2), ('technology', 2), ('offer', 1), ('rigorous', 1), ('treatment', 1), ('many', 1), ('facet', 1), ('communication', 1), ('including', 1), ('integration', 1), ('current', 1), ('presenting', 1), ('work', 1), ('different', 1), ('group', 1), ('international', 1), ('expert', 1), ('chapter', 1), ('begin', 1), ('supplying', 1), ('overview', 1), ('considers', 1), ('proposed', 1), ('standard', 1), ('cutting', 1), ('edge', 1), ('application', 1), ('architecture', 1)]
[('graphic', 4), ('aspect', 2), ('geometric', 2), ('modeling', 2), ('rendering', 2), ('book', 1), ('cover', 1), ('computational', 1), ('scene', 1), ('special', 1), ('emphasis', 1), ('given', 1), ('architectural', 1), ('interactive', 1), ('technique', 1), ('pipeline', 1), ('architecture', 1), ('system', 1), ('text', 1), ('describes', 1), ('basic', 1), ('computer', 1), ('algorithm', 1)]
[('control', 2), ('system', 2), ('biology', 2), ('filling', 1), ('need', 1), ('text', 1), ('theory', 1), ('biologist', 1), ('self', 1), ('contained', 1), ('easy', 1), ('follow', 1), ('book', 1), ('explains', 1), ('feedback', 1), ('concept', 1), ('applied', 1), ('chapter', 1), ('introduces', 1), ('key', 1), ('topic', 1), ('case', 1), ('study', 1), ('explore', 1), ('application', 1), ('cellular', 1), ('molecular', 1), ('author', 1), ('cover', 1), ('tool', 1), ('technique', 1)]
[('game', 2), ('volume', 1), ('cover', 1), ('art', 1), ('technology', 1), ('ai', 1), ('includes', 1), ('core', 1), ('algorithm', 1), ('need', 1), ('succeed', 1), ('behavior', 1), ('tree', 1), ('utility', 1), ('theory', 1), ('spatial', 1), ('representation', 1), ('path', 1), ('planning', 1), ('motion', 1), ('control', 1), ('tactical', 1), ('reasoning', 1), ('describes', 1), ('trick', 1), ('technique', 1), ('truly', 1), ('bring', 1), ('life', 1), ('including', 1), ('perception', 1)]
[('edition', 2), ('human', 2), ('factor', 2), ('web', 2), ('design', 2), ('second', 1), ('bestseller', 1), ('provides', 1), ('date', 1), ('knowledge', 1), ('issue', 1), ('comprehensively', 1), ('treat', 1), ('research', 1), ('method', 1), ('guideline', 1), ('process', 1), ('use', 1), ('developing', 1), ('effective', 1), ('website', 1), ('based', 1), ('technology', 1), ('first', 1), ('included', 1), ('chapter', 1), ('written', 1), ('distinguished', 1)]
[('experiment', 3), ('book', 2), ('explains', 1), ('basic', 1), ('terminology', 1), ('used', 1), ('discus', 1), ('take', 1), ('brief', 1), ('look', 1), ('year', 1), ('history', 1), ('psychology', 1), ('cover', 1), ('generalize', 1), ('whole', 1), ('population', 1), ('largest', 1), ('part', 1), ('dedicated', 1), ('flexible', 1), ('arguably', 1), ('central', 1), ('aspect', 1)]
[('choice', 2), ('edition', 2), ('graphic', 2), ('shaders', 2), ('highly', 1), ('recommended', 1), ('december', 1), ('first', 1), ('theory', 1), ('practice', 1), ('proven', 1), ('popular', 1), ('course', 1), ('university', 1), ('conference', 1), ('incorporating', 1), ('change', 1), ('opengl', 1), ('syntax', 1), ('second', 1), ('provides', 1), ('engaging', 1), ('accessible', 1), ('introduction', 1), ('latest', 1), ('development', 1)]
[('network', 2), ('security', 2), ('smart', 2), ('grid', 2), ('attack', 2), ('versatile', 1), ('reference', 1), ('book', 1), ('detail', 1), ('state', 1), ('art', 1), ('approach', 1), ('novel', 1), ('technology', 1), ('communication', 1), ('examines', 1), ('contemporary', 1), ('discus', 1), ('developed', 1), ('deployed', 1), ('chapter', 1), ('cover', 1), ('direct', 1), ('meter', 1), ('via', 1), ('providing', 1)]
[('electrical', 2), ('volume', 1), ('encapsulates', 1), ('invaluable', 1), ('insight', 1), ('experience', 1), ('instructor', 1), ('turan', 1), ('gonen', 1), ('acquired', 1), ('almost', 1), ('year', 1), ('teaching', 1), ('versatile', 1), ('content', 1), ('separate', 1), ('text', 1), ('machine', 1), ('book', 1), ('ideal', 1), ('self', 1), ('study', 1), ('tool', 1), ('advanced', 1), ('student', 1), ('area', 1), ('engineering', 1), ('topic', 1), ('include', 1)]
[('edition', 2), ('core', 2), ('computer', 2), ('using', 2), ('opengl', 2), ('second', 1), ('present', 1), ('date', 1), ('algorithm', 1), ('graphic', 1), ('software', 1), ('package', 1), ('e', 1), ('book', 1), ('enables', 1), ('reader', 1), ('create', 1), ('complete', 1), ('suite', 1), ('program', 1), ('animation', 1), ('modeling', 1), ('image', 1), ('synthesis', 1), ('includes', 1), ('three', 1), ('new', 1), ('chapter', 1), ('real', 1), ('time', 1), ('programming', 1)]
[('shadow', 3), ('computation', 2), ('book', 1), ('explains', 1), ('basic', 1), ('many', 1), ('advanced', 1), ('aspect', 1), ('related', 1), ('domain', 1), ('present', 1), ('interactive', 1), ('solution', 1), ('practical', 1), ('detail', 1), ('author', 1), ('compare', 1), ('various', 1), ('algorithm', 1), ('creating', 1), ('real', 1), ('time', 1), ('illustrate', 1), ('used', 1), ('different', 1), ('situation', 1), ('explore', 1), ('limitation', 1)]
[('variational', 2), ('image', 2), ('processing', 2), ('filled', 1), ('table', 1), ('illustration', 1), ('algorithm', 1), ('exercise', 1), ('self', 1), ('contained', 1), ('textbook', 1), ('present', 1), ('principle', 1), ('technique', 1), ('application', 1), ('focus', 1), ('model', 1), ('corresponding', 1), ('euler', 1), ('lagrange', 1), ('equation', 1), ('numerical', 1), ('implementation', 1), ('book', 1), ('balance', 1), ('traditional', 1)]
[('human', 2), ('work', 2), ('written', 1), ('pioneer', 1), ('development', 1), ('cognitive', 1), ('system', 1), ('engineering', 1), ('cse', 1), ('book', 1), ('offer', 1), ('unique', 1), ('presentation', 1), ('study', 1), ('complex', 1), ('technology', 1), ('author', 1), ('use', 1), ('top', 1), ('functional', 1), ('approach', 1), ('emphasize', 1), ('proactive', 1), ('coping', 1), ('perspective', 1), ('overcomes', 1), ('limitation', 1), ('structural', 1), ('information', 1)]
[('matrix', 3), ('application', 2), ('decomposition', 2), ('focusing', 1), ('data', 1), ('mining', 1), ('mechanic', 1), ('book', 1), ('explores', 1), ('common', 1), ('including', 1), ('singular', 1), ('value', 1), ('semidiscrete', 1), ('independent', 1), ('component', 1), ('analysis', 1), ('non', 1), ('negative', 1), ('factorization', 1), ('tensor', 1), ('show', 1), ('used', 1), ('analyze', 1), ('large', 1), ('datasets', 1), ('broad', 1), ('range', 1), ('area', 1)]
[('book', 2), ('different', 2), ('cover', 1), ('development', 1), ('uis', 1), ('intended', 1), ('user', 1), ('many', 1), ('country', 1), ('culture', 1), ('language', 1), ('explores', 1), ('cultural', 1), ('boundary', 1), ('multimedia', 1), ('design', 1), ('including', 1), ('creative', 1), ('artistic', 1), ('community', 1), ('science', 1), ('based', 1), ('engineering', 1), ('discus', 1), ('adaptive', 1), ('multimodal', 1), ('multisensor', 1), ('interface', 1), ('potential', 1), ('new', 1)]
[('technology', 2), ('book', 1), ('cover', 1), ('population', 1), ('different', 1), ('age', 1), ('use', 1), ('informtion', 1), ('evolving', 1), ('ability', 1), ('child', 1), ('difference', 1), ('adult', 1), ('cognitively', 1), ('physically', 1), ('usability', 1), ('testing', 1), ('design', 1), ('recommendation', 1), ('genre', 1), ('computer', 1), ('discus', 1), ('development', 1), ('methodology', 1), ('designer', 1), ('system', 1), ('support', 1)]
[('information', 3), ('unlike', 1), ('previous', 1), ('publication', 1), ('usability', 1), ('predominantly', 1), ('concentrated', 1), ('present', 1), ('book', 1), ('focus', 1), ('presented', 1), ('appliance', 1), ('different', 1), ('culture', 1), ('provides', 1), ('operational', 1), ('tool', 1), ('effectively', 1), ('prepare', 1), ('content', 1), ('manner', 1), ('allows', 1), ('user', 1), ('make', 1), ('good', 1), ('decision', 1)]
[('rfid', 2), ('architecture', 2), ('protocol', 2), ('security', 2), ('sensor', 1), ('network', 1), ('integration', 1), ('authoritative', 1), ('reference', 1), ('wsns', 1), ('covering', 1), ('broad', 1), ('range', 1), ('topic', 1), ('includes', 1), ('everything', 1), ('basic', 1), ('insight', 1), ('future', 1), ('direction', 1), ('cutting', 1), ('edge', 1), ('book', 1), ('review', 1), ('standard', 1), ('application', 1), ('section', 1)]
[('resource', 2), ('distributed', 2), ('focusing', 1), ('optimization', 1), ('video', 1), ('multimedia', 1), ('communication', 1), ('book', 1), ('examines', 1), ('four', 1), ('application', 1), ('optimal', 1), ('allocation', 1), ('algorithm', 1), ('including', 1), ('problem', 1), ('formulation', 1), ('theoretical', 1), ('analysis', 1), ('simulation', 1), ('result', 1), ('suitable', 1), ('industry', 1), ('practitioner', 1), ('academic', 1), ('introduces', 1)]
[('timely', 1), ('introduction', 1), ('spectral', 1), ('feature', 1), ('selection', 1), ('illustrates', 1), ('potential', 1), ('powerful', 1), ('dimensionality', 1), ('reduction', 1), ('technique', 1), ('high', 1), ('dimensional', 1), ('data', 1), ('processing', 1)]
[('book', 2), ('topic', 2), ('combine', 1), ('computer', 1), ('system', 1), ('reliability', 1), ('safety', 1), ('usability', 1), ('related', 1), ('single', 1), ('volume', 1), ('eliminate', 1), ('need', 1), ('consult', 1), ('many', 1), ('different', 1), ('diverse', 1), ('source', 1), ('obtaining', 1), ('desired', 1), ('information', 1), ('covered', 1), ('treated', 1), ('manner', 1), ('reader', 1), ('require', 1), ('previous', 1), ('knowledge', 1), ('understand', 1), ('content', 1)]
[('interaction', 2), ('network', 2), ('many', 1), ('example', 1), ('throughout', 1), ('clear', 1), ('explanation', 1), ('key', 1), ('concept', 1), ('book', 1), ('focus', 1), ('genetic', 1), ('paradigm', 1), ('interpreting', 1), ('complexity', 1), ('molecular', 1), ('biology', 1), ('genomic', 1), ('scale', 1), ('author', 1), ('describe', 1), ('experimental', 1), ('method', 1), ('used', 1), ('discover', 1), ('test', 1), ('among', 1), ('biological', 1), ('molecule', 1)]
[('science', 2), ('knowledge', 2), ('integrating', 1), ('idea', 1), ('field', 1), ('system', 1), ('book', 1), ('show', 1), ('create', 1), ('justify', 1), ('various', 1), ('piece', 1), ('systemically', 1), ('case', 1), ('study', 1), ('technology', 1), ('archiving', 1), ('academic', 1), ('research', 1), ('evaluation', 1), ('demand', 1), ('forecasting', 1), ('perishable', 1), ('food', 1), ('real', 1), ('world', 1), ('concern', 1), ('demonstrates', 1), ('use', 1), ('new', 1)]
[('book', 2), ('step', 2), ('illustrates', 1), ('intertwining', 1), ('discipline', 1), ('graphic', 1), ('model', 1), ('lighting', 1), ('sound', 1), ('storytelling', 1), ('come', 1), ('together', 1), ('design', 1), ('creation', 1), ('accessible', 1), ('virtual', 1), ('environment', 1), ('teaching', 1), ('research', 1), ('entertainment', 1), ('illustration', 1), ('project', 1), ('delivers', 1), ('hour', 1), ('creative', 1), ('challenge', 1)]
[('character', 2), ('beginner', 1), ('guide', 1), ('book', 1), ('present', 1), ('basic', 1), ('theory', 1), ('lay', 1), ('series', 1), ('step', 1), ('constructing', 1), ('human', 1), ('rig', 1), ('ground', 1), ('professional', 1), ('studio', 1), ('give', 1), ('hand', 1), ('experience', 1), ('taking', 1), ('completed', 1), ('model', 1), ('setting', 1), ('skeleton', 1), ('kinematics', 1), ('soft', 1), ('skin', 1), ('deformation', 1), ('using', 1), ('data', 1)]
[('control', 3), ('book', 2), ('ict', 2), ('day', 2), ('present', 1), ('fundamental', 1), ('concept', 1), ('information', 1), ('communication', 1), ('technology', 1), ('governance', 1), ('reader', 1), ('learn', 1), ('create', 1), ('working', 1), ('practical', 1), ('structure', 1), ('ensure', 1), ('ongoing', 1), ('trustworthiness', 1), ('system', 1), ('data', 1), ('explains', 1), ('establish', 1), ('systematic', 1), ('function', 1), ('timely', 1)]
[('computer', 2), ('system', 2), ('application', 2), ('nearly', 1), ('six', 1), ('year', 1), ('field', 1), ('leading', 1), ('reference', 1), ('second', 1), ('edition', 1), ('award', 1), ('winning', 1), ('engineering', 1), ('handbook', 1), ('reemerges', 1), ('completely', 1), ('updated', 1), ('content', 1), ('brand', 1), ('new', 1), ('format', 1), ('part', 1), ('monumental', 1), ('revision', 1), ('digital', 1), ('survey', 1), ('latest', 1), ('advance', 1), ('technology', 1)]
[('noc', 2), ('communication', 2), ('computation', 2), ('resource', 1), ('provides', 1), ('practical', 1), ('knowledge', 1), ('real', 1), ('example', 1), ('use', 1), ('design', 1), ('soc', 1), ('explains', 1), ('optimize', 1), ('employing', 1), ('uml', 1), ('throughout', 1), ('text', 1), ('present', 1), ('complicated', 1), ('concept', 1), ('model', 1), ('partitioning', 1), ('manner', 1), ('accessible', 1), ('laypeople', 1)]
[('design', 3), ('author', 2), ('model', 2), ('based', 2), ('system', 2), ('compilation', 1), ('work', 1), ('internationally', 1), ('renowned', 1), ('embedded', 1), ('elaborates', 1), ('related', 1), ('practice', 1), ('address', 1), ('main', 1), ('facet', 1), ('heterogeneous', 1), ('chapter', 1), ('present', 1), ('result', 1), ('helped', 1), ('establish', 1), ('continue', 1), ('expand', 1), ('parameter', 1), ('respective', 1)]
[('current', 2), ('field', 2), ('third', 1), ('edition', 1), ('groundbreaking', 1), ('bestseller', 1), ('survey', 1), ('accomplishment', 1), ('providing', 1), ('researcher', 1), ('designer', 1), ('comprehensive', 1), ('detail', 1), ('need', 1), ('continued', 1), ('research', 1), ('design', 1), ('five', 1), ('volume', 1), ('extensively', 1), ('updated', 1), ('provide', 1), ('information', 1), ('available', 1), ('emerging', 1), ('circuit', 1)]
[('national', 3), ('btec', 2), ('used', 1), ('alongside', 1), ('student', 1), ('text', 1), ('practitioner', 1), ('pack', 1), ('offer', 1), ('complete', 1), ('suite', 1), ('lecturer', 1), ('support', 1), ('material', 1), ('photocopiable', 1), ('handout', 1), ('compulsory', 1), ('core', 1), ('unit', 1), ('new', 1), ('specification', 1), ('award', 1), ('certificate', 1), ('diploma', 1)]
[('unity', 4), ('book', 2), ('looking', 1), ('become', 1), ('efficient', 1), ('using', 1), ('valuable', 1), ('take', 1), ('nonsense', 1), ('approach', 1), ('help', 1), ('achieve', 1), ('goal', 1), ('geared', 1), ('towards', 1), ('intermediate', 1), ('user', 1), ('audience', 1), ('htc', 1), ('provides', 1), ('content', 1), ('beyond', 1), ('introductory', 1), ('allows', 1), ('reader', 1), ('work', 1), ('effectively', 1), ('efficiently', 1), ('packed', 1), ('full', 1)]
[('pkc', 6), ('model', 2), ('id', 2), ('cl', 2), ('intermediate', 1), ('conventional', 1), ('avoid', 1), ('heavy', 1), ('overhead', 1), ('certificate', 1), ('management', 1), ('traditional', 1), ('key', 1), ('escrow', 1), ('problem', 1), ('altogether', 1), ('introduction', 1), ('many', 1), ('concrete', 1), ('construction', 1), ('security', 1), ('application', 1), ('proposed', 1), ('last', 1), ('decade', 1)]
[('game', 4), ('audio', 2), ('implementation', 1), ('offer', 1), ('unique', 1), ('practical', 1), ('approach', 1), ('learning', 1), ('always', 1), ('wanted', 1), ('hear', 1), ('sound', 1), ('music', 1), ('real', 1), ('book', 1), ('chapter', 1), ('accompanied', 1), ('level', 1), ('see', 1), ('technique', 1), ('theory', 1), ('action', 1), ('working', 1), ('exercise', 1)]
[('book', 3), ('explores', 1), ('information', 1), ('theory', 1), ('tool', 1), ('become', 1), ('state', 1), ('art', 1), ('solve', 1), ('understand', 1), ('better', 1), ('many', 1), ('problem', 1), ('visualization', 1), ('cover', 1), ('relevant', 1), ('literature', 1), ('date', 1), ('first', 1), ('solely', 1), ('devoted', 1), ('subject', 1), ('written', 1), ('leading', 1), ('expert', 1), ('field', 1)]
[('animator', 3), ('drawing', 2), ('sketchbook', 1), ('teach', 1), ('student', 1), ('animation', 1), ('improve', 1), ('work', 1), ('observation', 1), ('show', 1), ('reader', 1), ('access', 1), ('inner', 1), ('different', 1), ('gesture', 1), ('exercise', 1), ('book', 1), ('enhances', 1), ('vision', 1), ('analysis', 1), ('understanding', 1), ('core', 1), ('skill', 1), ('required', 1), ('become', 1), ('master', 1)]
[('course', 2), ('coding', 2), ('theory', 2), ('book', 1), ('designed', 1), ('usable', 1), ('textbook', 1), ('undergraduate', 1), ('advanced', 1), ('graduate', 1), ('reference', 1), ('researcher', 1), ('discrete', 1), ('mathematics', 1), ('engineering', 1), ('theoretical', 1), ('computer', 1), ('science', 1), ('second', 1), ('edition', 1), ('three', 1), ('part', 1), ('elementary', 1), ('introduction', 1), ('application', 1), ('code', 1)]
[('professional', 3), ('book', 2), ('arm', 1), ('skill', 1), ('technical', 1), ('insight', 1), ('make', 1), ('today', 1), ('based', 1), ('author', 1), ('long', 1), ('career', 1), ('vast', 1), ('range', 1), ('experience', 1), ('companion', 1), ('guide', 1), ('every', 1), ('reader', 1), ('learn', 1), ('hone', 1), ('presentation', 1), ('communication', 1), ('management', 1)]
[('technology', 2), ('electromagnetic', 2), ('phenomenon', 2), ('modern', 1), ('rapidly', 1), ('developing', 1), ('reason', 1), ('future', 1), ('engineer', 1), ('need', 1), ('acquire', 1), ('advanced', 1), ('knowledge', 1), ('science', 1), ('including', 1), ('book', 1), ('contemporary', 1), ('text', 1), ('semester', 1), ('course', 1), ('junior', 1), ('electrical', 1), ('engineering', 1), ('student', 1), ('cover', 1), ('broad', 1), ('spectrum', 1)]
[('computing', 3), ('international', 2), ('proceeding', 1), ('conference', 1), ('communication', 1), ('system', 1), ('ic', 1), ('provides', 1), ('selected', 1), ('paper', 1), ('high', 1), ('level', 1), ('forum', 1), ('researcher', 1), ('recent', 1), ('advance', 1), ('new', 1), ('technique', 1), ('application', 1), ('field', 1), ('electronics', 1), ('device', 1), ('big', 1), ('data', 1), ('analytics', 1), ('cyber', 1), ('security', 1), ('quantum', 1)]
[('pls', 2), ('sem', 2), ('practical', 2), ('book', 1), ('present', 1), ('useful', 1), ('statistical', 1), ('toolbox', 1), ('used', 1), ('estimating', 1), ('many', 1), ('different', 1), ('type', 1), ('research', 1), ('model', 1), ('author', 1), ('provide', 1), ('necessary', 1), ('technical', 1), ('prerequisite', 1), ('theoretical', 1), ('treatment', 1), ('various', 1), ('aspect', 1), ('prior', 1), ('application', 1)]
[('driver', 3), ('first', 2), ('listening', 1), ('music', 1), ('driving', 1), ('car', 1), ('enhance', 1), ('safety', 1), ('place', 1), ('increased', 1), ('risk', 1), ('accident', 1), ('full', 1), ('length', 1), ('text', 1), ('explore', 1), ('subject', 1), ('deal', 1), ('work', 1), ('done', 1), ('investigate', 1), ('reduce', 1), ('distraction', 1), ('inattention', 1), ('book', 1), ('focus', 1), ('cabin', 1), ('aural', 1), ('background', 1)]
[('make', 2), ('html', 1), ('website', 1), ('cooler', 1), ('shinier', 1), ('interactive', 1), ('find', 1), ('book', 1)]
[('app', 2), ('store', 2), ('iphone', 2), ('billion', 1), ('apps', 1), ('downloaded', 1), ('currently', 1), ('registered', 1), ('developer', 1), ('game', 1), ('hot', 1), ('commodity', 1), ('yet', 1), ('serious', 1), ('lack', 1), ('training', 1), ('creating', 1), ('art', 1), ('specifically', 1), ('optimized', 1), ('challenging', 1), ('medium', 1), ('artist', 1), ('industry', 1), ('insider', 1), ('wes', 1), ('mcdermott', 1)]
[('vue', 2), ('create', 1), ('lush', 1), ('terrain', 1), ('atmosphere', 1), ('enhance', 1), ('knowledge', 1), ('feature', 1), ('software', 1), ('lighting', 1), ('camera', 1), ('python', 1), ('scripting', 1), ('ami', 1), ('vladimir', 1), ('chopine', 1), ('geetatplay', 1), ('guide', 1), ('stand', 1), ('alone', 1), ('tutorial', 1), ('different', 1), ('focus', 1), ('key', 1), ('component', 1), ('companion', 1), ('website', 1), ('includes', 1), ('brand', 1), ('new', 1)]
[('technique', 2), ('project', 2), ('apply', 1), ('universally', 1), ('accepted', 1), ('cinematic', 1), ('flash', 1), ('improve', 1), ('storytelling', 1), ('quotient', 1), ('entertainment', 1), ('advertising', 1), ('branding', 1), ('educational', 1), ('medium', 1), ('defined', 1), ('focus', 1), ('concept', 1), ('production', 1), ('story', 1), ('reel', 1), ('final', 1), ('delivers', 1), ('valuable', 1), ('insight', 1), ('time', 1), ('saving', 1), ('practical', 1), ('tip', 1), ('hand', 1)]
[('essential', 1), ('guide', 1), ('creating', 1), ('perfect', 1), ('demo', 1), ('reel', 1), ('entering', 1), ('animation', 1), ('industry', 1)]
[('mobile', 3), ('development', 2), ('technology', 2), ('rapid', 1), ('wireless', 1), ('network', 1), ('enabled', 1), ('broad', 1), ('implementation', 1), ('application', 1), ('turned', 1), ('main', 1), ('stream', 1), ('next', 1), ('generation', 1), ('computing', 1), ('industry', 1), ('demand', 1), ('large', 1), ('number', 1), ('intelligent', 1), ('engineer', 1), ('master', 1), ('updated', 1), ('technique', 1), ('app', 1), ('skill', 1)]
[('grid', 4), ('smart', 2), ('microgrid', 2), ('utility', 1), ('sector', 1), ('transition', 1), ('renewable', 1), ('energy', 1), ('already', 1), ('begun', 1), ('first', 1), ('step', 1), ('towards', 1), ('smaller', 1), ('electricity', 1), ('access', 1), ('essential', 1), ('asset', 1), ('larger', 1), ('book', 1), ('provides', 1), ('glimpse', 1), ('actual', 1), ('project', 1), ('supply', 1), ('system', 1), ('level', 1), ('approach', 1), ('design', 1)]
[('book', 1), ('introduces', 1), ('model', 1), ('driven', 1), ('approach', 1), ('software', 1), ('development', 1), ('using', 1), ('pragmatic', 1), ('presentation', 1), ('includes', 1), ('foundational', 1), ('sidebar', 1), ('industrial', 1), ('experience', 1)]
[('knowledge', 2), ('management', 2), ('km', 2), ('publication', 1), ('give', 1), ('detailed', 1), ('information', 1), ('applying', 1), ('practice', 1), ('procedure', 1), ('technique', 1), ('solve', 1), ('real', 1), ('world', 1), ('problem', 1), ('book', 1), ('address', 1), ('content', 1), ('search', 1), ('engine', 1), ('optimization', 1), ('capturing', 1), ('codifying', 1), ('tacit', 1), ('explicit', 1), ('disaster', 1), ('preparedness', 1), ('action', 1), ('reaction', 1), ('organization', 1)]
[('transnav', 1), ('symposium', 1), ('held', 1), ('gdynia', 1), ('maritime', 1), ('university', 1), ('poland', 1), ('june', 1), ('brought', 1), ('together', 1), ('wide', 1), ('range', 1), ('participant', 1), ('world', 1), ('program', 1), ('offered', 1), ('variety', 1), ('contribution', 1), ('allowing', 1), ('look', 1), ('many', 1), ('aspect', 1), ('navigational', 1), ('safety', 1), ('various', 1), ('different', 1), ('point', 1), ('view', 1), ('topic', 1), ('presented', 1), ('discussed', 1)]
[('mobile', 2), ('device', 2), ('iot', 2), ('high', 2), ('speed', 2), ('application', 2), ('connected', 1), ('world', 1), ('paradigm', 1), ('effectuated', 1), ('proliferation', 1), ('internet', 1), ('thing', 1), ('metaverse', 1), ('offer', 1), ('novel', 1), ('service', 1), ('coming', 1), ('year', 1), ('need', 1), ('anytime', 1), ('anywhere', 1), ('access', 1), ('book', 1), ('concept', 1), ('support', 1), ('next', 1), ('generation', 1), ('multiband', 1)]
[('principle', 2), ('information', 1), ('system', 1), ('consultant', 1), ('handbook', 1), ('familiarizes', 1), ('reader', 1), ('underlying', 1), ('specific', 1), ('documentation', 1), ('method', 1), ('chapter', 1), ('cover', 1), ('single', 1), ('tool', 1), ('technique', 1), ('set', 1), ('methodology', 1), ('clear', 1), ('concise', 1), ('narrative', 1), ('supplemented', 1), ('numerous', 1), ('illustration', 1), ('diagram', 1), ('make', 1), ('material', 1), ('accessible', 1), ('provides', 1), ('handy', 1)]
[('principle', 2), ('information', 1), ('system', 1), ('consultant', 1), ('handbook', 1), ('familiarizes', 1), ('reader', 1), ('underlying', 1), ('specific', 1), ('documentation', 1), ('method', 1), ('chapter', 1), ('cover', 1), ('single', 1), ('tool', 1), ('technique', 1), ('set', 1), ('methodology', 1), ('clear', 1), ('concise', 1), ('narrative', 1), ('supplemented', 1), ('numerous', 1), ('illustration', 1), ('diagram', 1), ('make', 1), ('material', 1), ('accessible', 1), ('provides', 1), ('handy', 1)]
[('data', 3), ('compression', 2), ('image', 2), ('primary', 1), ('contributing', 1), ('factor', 1), ('explosive', 1), ('growth', 1), ('information', 1), ('technology', 1), ('author', 1), ('transform', 1), ('handbook', 1), ('describe', 1), ('various', 1), ('discrete', 1), ('transforms', 1), ('application', 1), ('different', 1), ('discipline', 1), ('particularly', 1), ('communication', 1), ('processing', 1), ('storage', 1), ('along', 1)]
[('ims', 3), ('service', 2), ('promise', 1), ('cost', 1), ('effective', 1), ('evolution', 1), ('path', 1), ('future', 1), ('wireless', 1), ('wireline', 1), ('convergence', 1), ('meet', 1), ('next', 1), ('generation', 1), ('demand', 1), ('requirement', 1), ('organized', 1), ('three', 1), ('main', 1), ('part', 1), ('ip', 1), ('multimedia', 1), ('subsystem', 1), ('handbook', 1), ('stop', 1), ('guide', 1), ('focus', 1), ('concept', 1), ('technology', 1), ('featuring', 1), ('article', 1), ('authored', 1)]
[('grid', 3), ('finite', 3), ('generation', 2), ('element', 2), ('handbook', 1), ('provides', 1), ('ready', 1), ('reference', 1), ('mesh', 1), ('application', 1), ('computational', 1), ('field', 1), ('simulation', 1), ('address', 1), ('use', 1), ('numerical', 1), ('solution', 1), ('partial', 1), ('differential', 1), ('equation', 1), ('volume', 1), ('difference', 1), ('boundary', 1), ('essentially', 1), ('self', 1), ('contained', 1), ('cha', 1)]
[('system', 2), ('genetic', 2), ('algorithm', 2), ('code', 2), ('volume', 1), ('complex', 1), ('coding', 1), ('practical', 1), ('handbook', 1), ('contains', 1), ('computer', 1), ('example', 1), ('development', 1), ('compiling', 1), ('array', 1), ('practitioner', 1), ('field', 1), ('contribution', 1), ('singular', 1), ('resource', 1), ('includes', 1), ('unique', 1), ('segment', 1), ('documentation', 1), ('description', 1), ('operation', 1)]
[('system', 2), ('genetic', 2), ('algorithm', 2), ('code', 2), ('volume', 1), ('complex', 1), ('coding', 1), ('practical', 1), ('handbook', 1), ('contains', 1), ('computer', 1), ('example', 1), ('development', 1), ('compiling', 1), ('array', 1), ('practitioner', 1), ('field', 1), ('contribution', 1), ('singular', 1), ('resource', 1), ('includes', 1), ('unique', 1), ('segment', 1), ('documentation', 1), ('description', 1), ('operation', 1)]
[('together', 2), ('conference', 2), ('computational', 2), ('method', 2), ('volume', 1), ('brings', 1), ('selected', 1), ('contributed', 1), ('paper', 1), ('presented', 1), ('international', 1), ('science', 1), ('engineering', 1), ('iccmse', 1), ('held', 1), ('chania', 1), ('greece', 1), ('october', 1), ('aim', 1), ('bring', 1), ('scientist', 1), ('several', 1), ('discipline', 1), ('order', 1), ('share', 1), ('idea', 1)]
[('character', 2), ('understand', 2), ('setting', 2), ('narrative', 2), ('habit', 1), ('creating', 1), ('disembodied', 1), ('adding', 1), ('background', 1), ('afterthought', 1), ('set', 1), ('action', 1), ('help', 1), ('utilize', 1), ('importance', 1), ('perspective', 1), ('blocking', 1), ('color', 1), ('focus', 1), ('establishing', 1), ('designing', 1), ('interact', 1)]
[('storyboarding', 3), ('new', 2), ('tough', 1), ('business', 1), ('storyboarder', 1), ('really', 1), ('need', 1), ('wit', 1), ('professional', 1), ('savvy', 1), ('survive', 1), ('competitive', 1), ('field', 1), ('rule', 1), ('thumb', 1), ('offer', 1), ('highly', 1), ('illustrative', 1), ('example', 1), ('basic', 1), ('concept', 1), ('sound', 1), ('career', 1), ('oriented', 1), ('advice', 1), ('artist', 1), ('book', 1)]
[('software', 1), ('investment', 1), ('increase', 1), ('benefit', 1), ('short', 1), ('feedback', 1), ('cycle', 1), ('using', 1), ('technology', 1), ('continuous', 1), ('deployment', 1), ('experimentation', 1), ('based', 1), ('development', 1), ('multidisciplinary', 1), ('team', 1), ('require', 1), ('fundamentally', 1), ('different', 1), ('strategy', 1), ('process', 1), ('book', 1), ('cover', 1), ('three', 1), ('overall', 1), ('challenge', 1), ('company', 1), ('grappling', 1), ('speed', 1), ('data', 1)]
[('language', 4), ('feature', 3), ('book', 2), ('programming', 2), ('textbook', 1), ('disguised', 1), ('tour', 1), ('modern', 1), ('reader', 1), ('move', 1), ('encounter', 1), ('numerous', 1), ('example', 1), ('introducing', 1), ('key', 1), ('explains', 1), ('pointing', 1), ('improves', 1), ('upon', 1), ('similar', 1), ('previous', 1), ('related', 1)]
[('benefit', 2), ('realization', 2), ('management', 2), ('support', 2), ('correct', 2), ('brm', 1), ('key', 1), ('part', 1), ('governance', 1), ('strategic', 1), ('creation', 1), ('value', 1), ('provides', 1), ('level', 1), ('prioritization', 1), ('executive', 1), ('initiative', 1), ('book', 1), ('guide', 1), ('portfolio', 1), ('program', 1), ('project', 1), ('manager', 1), ('process', 1)]
[('bda', 3), ('application', 2), ('technique', 2), ('sector', 2), ('big', 1), ('data', 1), ('analytics', 1), ('greatly', 1), ('enhance', 1), ('efficiency', 1), ('private', 1), ('organization', 1), ('book', 1), ('present', 1), ('case', 1), ('study', 1), ('academic', 1), ('practitioner', 1), ('viewpoint', 1), ('public', 1), ('agency', 1), ('cover', 1), ('technology', 1)]
[('iot', 4), ('technology', 2), ('book', 1), ('introduces', 1), ('related', 1), ('common', 1), ('issue', 1), ('adoption', 1), ('survey', 1), ('recent', 1), ('technological', 1), ('advance', 1), ('novel', 1), ('solution', 1), ('challenge', 1), ('environment', 1), ('discus', 1), ('utilization', 1), ('underlying', 1), ('application', 1), ('area', 1), ('smart', 1), ('grid', 1), ('healthcare', 1), ('automotive', 1), ('industry', 1)]
[('competence', 2), ('intensive', 2), ('project', 2), ('manager', 2), ('book', 1), ('present', 1), ('framework', 1), ('managing', 1), ('knowledge', 1), ('context', 1), ('provides', 1), ('tool', 1), ('template', 1), ('support', 1), ('hr', 1), ('representative', 1), ('leading', 1), ('position', 1), ('efficient', 1), ('management', 1)]
[('market', 3), ('project', 3), ('time', 2), ('marketing', 2), ('knowing', 1), ('ahead', 1), ('make', 1), ('considerable', 1), ('saving', 1), ('profit', 1), ('capture', 1), ('present', 1), ('book', 1), ('provides', 1), ('depth', 1), ('description', 1), ('help', 1), ('succeed', 1), ('theory', 1), ('subject', 1), ('studied', 1), ('countless', 1)]
[('book', 2), ('agility', 2), ('enterprise', 2), ('blend', 1), ('concept', 1), ('application', 1), ('comprehensive', 1), ('clear', 1), ('presentation', 1), ('mastering', 1), ('visionary', 1), ('leadership', 1), ('strategic', 1), ('innovation', 1), ('managed', 1), ('resilience', 1), ('organizational', 1), ('improve', 1), ('solution', 1), ('delivery', 1), ('sustain', 1), ('performance', 1), ('widens', 1), ('perspective', 1), ('outline', 1), ('actionable', 1)]
[('nature', 3), ('inspired', 3), ('computing', 3), ('algorithm', 2), ('physic', 1), ('chemistry', 1), ('based', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('methodology', 1), ('emphasis', 1), ('application', 1), ('real', 1), ('life', 1), ('engineering', 1), ('problem', 1), ('research', 1), ('interest', 1), ('grown', 1), ('considerably', 1), ('exploring', 1), ('different', 1), ('phenomenon', 1)]
[('data', 4), ('structure', 3), ('book', 1), ('provides', 1), ('comprehensive', 1), ('survey', 1), ('various', 1), ('type', 1), ('second', 1), ('edition', 1), ('revised', 1), ('updated', 1), ('new', 1), ('chapter', 1), ('bloom', 1), ('filter', 1), ('binary', 1), ('decision', 1), ('diagram', 1), ('cheminformatics', 1), ('big', 1), ('store', 1)]
[('user', 3), ('handbook', 2), ('package', 2), ('used', 2), ('experienced', 2), ('purpose', 1), ('allow', 1), ('learn', 1), ('master', 1), ('mathematics', 1), ('software', 1), ('matlab', 1), ('serve', 1), ('quick', 1), ('reference', 1), ('instruction', 1), ('unique', 1), ('feature', 1), ('novice', 1), ('alike', 1), ('four', 1)]
[('game', 3), ('design', 2), ('narrative', 2), ('plot', 2), ('world', 2), ('book', 1), ('provides', 1), ('reader', 1), ('solid', 1), ('understanding', 1), ('development', 1), ('charaterization', 1), ('back', 1), ('story', 1), ('creation', 1), ('element', 1), ('crucial', 1), ('writer', 1), ('designer', 1), ('create', 1), ('detailed', 1), ('setting', 1), ('adventure', 1), ('character', 1), ('suitable', 1), ('possible', 1), ('publication', 1)]
[('bioinformatics', 2), ('book', 1), ('cover', 1), ('metabolomics', 1), ('scientific', 1), ('study', 1), ('chemical', 1), ('process', 1), ('metabolic', 1), ('system', 1), ('based', 1), ('course', 1), ('taught', 1), ('master', 1), ('postgraduate', 1), ('student', 1), ('statistic', 1), ('european', 1), ('institute', 1), ('cambridge', 1)]
[('intelligence', 3), ('uncertainty', 2), ('ai', 2), ('knowledge', 2), ('book', 1), ('develops', 1), ('framework', 1), ('show', 1), ('artificial', 1), ('expands', 1), ('generalizes', 1), ('traditional', 1), ('explores', 1), ('author', 1), ('focus', 1), ('importance', 1), ('natural', 1), ('language', 1), ('carrier', 1), ('introduce', 1), ('efficient', 1), ('physical', 1), ('method', 1), ('data', 1)]
[('pattern', 3), ('book', 2), ('stable', 2), ('analysis', 2), ('present', 1), ('new', 1), ('pragmatic', 1), ('approach', 1), ('understanding', 1), ('problem', 1), ('domain', 1), ('utilizing', 1), ('engineering', 1), ('modeling', 1), ('software', 1), ('system', 1), ('component', 1), ('framework', 1), ('unique', 1), ('template', 1), ('employed', 1), ('describing', 1), ('presented', 1), ('make', 1), ('use', 1), ('easy', 1), ('efficient', 1)]
[('data', 4), ('medium', 3), ('book', 1), ('aim', 1), ('bridge', 1), ('gap', 1), ('large', 1), ('amount', 1), ('appropriate', 1), ('computational', 1), ('management', 1), ('method', 1), ('scientific', 1), ('discovery', 1), ('explores', 1), ('technology', 1), ('communication', 1), ('elastic', 1), ('storage', 1), ('cross', 1), ('network', 1), ('fusion', 1)]
[('data', 4), ('mining', 3), ('statistical', 2), ('machine', 2), ('learning', 2), ('third', 1), ('edition', 1), ('bestseller', 1), ('technique', 1), ('better', 1), ('predictive', 1), ('modeling', 1), ('analysis', 1), ('big', 1), ('still', 1), ('book', 1), ('date', 1), ('distinguish', 1)]
[('challenge', 2), ('communication', 2), ('technology', 2), ('machine', 2), ('face', 1), ('many', 1), ('environmental', 1), ('technological', 1), ('societal', 1), ('economic', 1), ('address', 1), ('important', 1), ('deploy', 1), ('information', 1), ('ict', 1), ('throughout', 1), ('home', 1), ('city', 1), ('book', 1), ('introduces', 1), ('enabling', 1), ('internet', 1), ('thing', 1)]
[('analytics', 3), ('book', 2), ('process', 2), ('organization', 2), ('application', 1), ('latin', 1), ('american', 1), ('emerging', 1), ('economy', 1), ('selected', 1), ('case', 1), ('illustrate', 1), ('step', 1), ('knowledge', 1), ('including', 1), ('strategic', 1), ('tactical', 1), ('action', 1), ('demonstrates', 1), ('size', 1), ('developing', 1), ('market', 1)]
[('subject', 2), ('multiple', 1), ('valued', 1), ('logic', 1), ('design', 1), ('introduction', 1), ('explains', 1), ('theory', 1), ('application', 1), ('increasingly', 1), ('important', 1), ('written', 1), ('clear', 1), ('understandable', 1), ('style', 1), ('author', 1), ('develops', 1), ('material', 1), ('skillful', 1), ('way', 1), ('without', 1), ('using', 1), ('huge', 1), ('mathematical', 1), ('apparatus', 1), ('introduces', 1), ('general', 1), ('form', 1), ('includes', 1), ('known', 1), ('binary', 1)]
[('computer', 3), ('performance', 2), ('application', 2), ('system', 2), ('book', 1), ('focus', 1), ('development', 1), ('scalable', 1), ('portable', 1), ('scientific', 1), ('future', 1), ('exascale', 1), ('center', 1), ('programming', 1), ('practice', 1), ('developer', 1), ('achieve', 1), ('scalability', 1), ('high', 1), ('end', 1), ('maintain', 1), ('architectural', 1), ('portability', 1), ('different', 1), ('technology', 1)]
[('computer', 2), ('aspect', 2), ('dictionary', 1), ('provides', 1), ('working', 1), ('definition', 1), ('practical', 1), ('information', 1), ('enhancing', 1), ('general', 1), ('science', 1), ('literacy', 1), ('address', 1), ('computing', 1), ('technology', 1), ('multiple', 1), ('perspective', 1), ('includes', 1), ('hardware', 1), ('software', 1), ('system', 1), ('application', 1), ('term', 1), ('cover', 1), ('major', 1), ('topic', 1)]
[('data', 2), ('accounting', 1), ('rapid', 1), ('often', 1), ('confusing', 1), ('change', 1), ('currently', 1), ('underway', 1), ('information', 1), ('system', 1), ('organization', 1), ('rush', 1), ('replace', 1), ('mainframe', 1), ('network', 1), ('decentralization', 1), ('storage', 1), ('processing', 1), ('provides', 1), ('insight', 1), ('duty', 1), ('challenge', 1), ('center', 1), ('manager', 1)]
[('article', 2), ('comprehensive', 1), ('reference', 1), ('work', 1), ('provides', 1), ('immediate', 1), ('fingertip', 1), ('access', 1), ('state', 1), ('art', 1), ('technology', 1), ('nearly', 1), ('self', 1), ('contained', 1), ('written', 1), ('international', 1), ('authority', 1), ('encyclopedia', 1), ('feature', 1), ('current', 1), ('development', 1), ('trend', 1), ('computer', 1), ('software', 1), ('vendor', 1), ('application', 1), ('extensive', 1), ('bibliography', 1)]
[('chapter', 2), ('specialized', 2), ('communication', 2), ('second', 1), ('edition', 1), ('contains', 1), ('brand', 1), ('new', 1), ('substantially', 1), ('revised', 1), ('describing', 1), ('latest', 1), ('significant', 1), ('development', 1), ('technology', 1), ('system', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('wire', 1), ('wireless', 1), ('based', 1), ('network', 1), ('used', 1), ('plant', 1), ('factory', 1), ('automation', 1)]
[('data', 4), ('book', 1), ('present', 1), ('innovative', 1), ('cloud', 1), ('migration', 1), ('methodology', 1), ('applicable', 1), ('variety', 1), ('field', 1), ('large', 1), ('set', 1), ('produced', 1), ('discus', 1), ('challenge', 1), ('imposed', 1), ('big', 1), ('scientific', 1), ('infrastructure', 1), ('including', 1), ('security', 1), ('trust', 1), ('issue', 1), ('cover', 1), ('vulnerability', 1), ('theft', 1), ('loss', 1), ('privacy', 1), ('concern', 1), ('infected', 1), ('application', 1)]
[('wireless', 2), ('sensor', 2), ('wsn', 2), ('book', 1), ('present', 1), ('state', 1), ('art', 1), ('network', 1), ('wsns', 1), ('fundamental', 1), ('concept', 1), ('cutting', 1), ('edge', 1), ('technology', 1), ('providing', 1), ('essential', 1), ('knowledge', 1), ('theory', 1), ('practice', 1), ('networking', 1), ('text', 1), ('discus', 1), ('architecture', 1), ('protocol', 1), ('operating', 1), ('system', 1), ('address', 1), ('security', 1), ('energy', 1), ('efficiency', 1)]
[('need', 3), ('intelligence', 2), ('pi', 2), ('book', 1), ('introduces', 1), ('concept', 1), ('performance', 1), ('responsive', 1), ('evolving', 1), ('customer', 1), ('desire', 1), ('creates', 1), ('organizational', 1), ('structure', 1), ('business', 1), ('bi', 1), ('decision', 1), ('making', 1), ('pushed', 1), ('operating', 1), ('unit', 1), ('closest', 1), ('market', 1), ('creating', 1)]
[('walk', 1), ('veteran', 1), ('author', 1), ('andrew', 1), ('glassner', 1), ('see', 1), ('exactly', 1), ('piece', 1), ('evolves', 1), ('including', 1), ('mistake', 1), ('made', 1), ('along', 1), ('way', 1), ('fix', 1), ('time', 1), ('changed', 1), ('direction', 1), ('knowledge', 1), ('skill', 1), ('grow', 1), ('understand', 1), ('processing', 1), ('powerful', 1), ('tool', 1), ('self', 1), ('expression', 1), ('offer', 1), ('st', 1), ('century', 1), ('medium', 1)]
[('device', 3), ('opportunistic', 2), ('networking', 1), ('definition', 1), ('allows', 1), ('communicate', 1), ('whenever', 1), ('window', 1), ('opportunity', 1), ('available', 1), ('many', 1), ('emerging', 1), ('technology', 1), ('employ', 1), ('exchange', 1), ('information', 1), ('book', 1), ('address', 1), ('trend', 1), ('communication', 1), ('engineering', 1), ('taking', 1), ('account', 1), ('three', 1), ('specific', 1), ('area', 1), ('vehicular', 1), ('cognitive', 1)]
[('step', 2), ('software', 1), ('new', 1), ('edition', 1), ('support', 1), ('latest', 1), ('high', 1), ('performance', 1), ('hardware', 1), ('including', 1), ('powerful', 1), ('inexpensive', 1), ('versatile', 1), ('omap', 1), ('low', 1), ('cost', 1), ('development', 1), ('kit', 1), ('texas', 1), ('instrument', 1), ('book', 1), ('utilizes', 1), ('highly', 1), ('practical', 1), ('framework', 1), ('provides', 1), ('hand', 1), ('experience', 1), ('real', 1), ('time', 1), ('dsp', 1), ('rather', 1), ('relying', 1), ('theory', 1), ('alone', 1)]
[('often', 2), ('thing', 2), ('artist', 1), ('programmer', 1), ('work', 1), ('together', 1), ('complex', 1), ('project', 1), ('stressful', 1), ('environment', 1), ('always', 1), ('go', 1), ('smoothly', 1), ('miscommunication', 1), ('misunderstanding', 1), ('common', 1), ('discipline', 1), ('use', 1), ('word', 1), ('mean', 1), ('different', 1), ('talk', 1), ('unintentional', 1), ('slight', 1), ('turn', 1), ('long', 1), ('held', 1), ('grudge', 1)]
[('audio', 4), ('javascript', 3), ('book', 2), ('learn', 1), ('program', 1), ('creating', 1), ('interactive', 1), ('application', 1), ('teach', 1), ('involved', 1), ('creative', 1), ('electronic', 1), ('music', 1), ('art', 1), ('encompasses', 1), ('entire', 1), ('basic', 1), ('core', 1), ('feature', 1), ('language', 1), ('coupled', 1), ('aspect', 1), ('web', 1), ('api', 1), ('allowing', 1), ('reader', 1), ('build', 1), ('browser', 1), ('based', 1)]
[('model', 5), ('based', 2), ('testing', 2), ('book', 2), ('long', 1), ('used', 1), ('europe', 1), ('becoming', 1), ('popular', 1), ('rest', 1), ('world', 1), ('examines', 1), ('system', 1), ('software', 1), ('provides', 1), ('guidance', 1), ('selection', 1), ('explains', 1), ('test', 1), ('reader', 1), ('learn', 1), ('implement', 1), ('development', 1), ('organization', 1), ('follows', 1)]
[('field', 2), ('innovation', 2), ('vital', 1), ('open', 1), ('source', 1), ('software', 1), ('proven', 1), ('massive', 1), ('global', 1), ('incubator', 1), ('barrier', 1), ('entry', 1), ('nearly', 1), ('anyone', 1), ('join', 1), ('make', 1), ('huge', 1), ('contribution', 1), ('yet', 1), ('many', 1), ('today', 1), ('public', 1), ('private', 1), ('enterprise', 1), ('inhibit', 1), ('type', 1), ('rapid', 1), ('necessary', 1), ('book', 1), ('provides', 1), ('new', 1), ('model', 1)]
[('methodology', 3), ('comprehensive', 1), ('reference', 1), ('us', 1), ('formal', 1), ('standard', 1), ('evaluation', 1), ('technique', 1), ('show', 1), ('strength', 1), ('weakness', 1), ('software', 1), ('development', 1), ('agile', 1), ('devops', 1), ('rup', 1), ('waterfall', 1), ('tsp', 1), ('xp', 1), ('many', 1), ('applied', 1), ('application', 1), ('function', 1), ('point', 1), ('using', 1), ('java', 1), ('language', 1), ('produce', 1)]
[('reader', 3), ('cloud', 3), ('vmware', 3), ('understand', 2), ('book', 2), ('help', 1), ('virtualization', 1), ('computing', 1), ('designed', 1), ('cover', 1), ('theory', 1), ('concept', 1), ('enough', 1), ('cutting', 1), ('edge', 1), ('technology', 1), ('meanwhile', 1), ('gain', 1), ('hand', 1), ('skill', 1), ('suite', 1), ('create', 1), ('private', 1), ('academic', 1), ('support', 1), ('use', 1)]
[('assistive', 2), ('technology', 2), ('field', 2), ('book', 2), ('old', 1), ('disability', 1), ('active', 1), ('research', 1), ('constitutes', 1), ('profitable', 1), ('market', 1), ('expected', 1), ('reach', 1), ('billion', 1), ('cover', 1), ('key', 1), ('aspect', 1), ('important', 1), ('provides', 1), ('guideline', 1), ('developing', 1), ('smart', 1), ('environment', 1)]
[('engineering', 6), ('icetest', 1), ('encompass', 1), ('topic', 1), ('area', 1), ('civil', 1), ('mechanical', 1), ('electrical', 1), ('chemical', 1), ('electronics', 1), ('communication', 1), ('production', 1), ('computer', 1), ('science', 1), ('architecture', 1)]
[('moore', 3), ('book', 2), ('law', 2), ('research', 2), ('factor', 2), ('provides', 1), ('methodological', 1), ('understanding', 1), ('theoretical', 1), ('technical', 1), ('limitation', 1), ('longevity', 1), ('present', 1), ('significant', 1), ('impact', 1), ('future', 1), ('believed', 1), ('sustain', 1), ('trend', 1), ('last', 1), ('five', 1), ('decade', 1), ('finding', 1), ('show', 1), ('boundary', 1)]
[('volume', 3), ('engineering', 3), ('internet', 2), ('mathematics', 2), ('set', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('mathematical', 1), ('principle', 1), ('explores', 1), ('supporting', 1), ('covered', 1), ('chapter', 1), ('complement', 1), ('episode', 1), ('aimed', 1), ('make', 1), ('work', 1), ('succinct', 1), ('yet', 1), ('self', 1), ('contained', 1)]
[('law', 3), ('data', 2), ('industry', 2), ('quickly', 2), ('decision', 2), ('reshaped', 1), ('around', 1), ('world', 1), ('finance', 1), ('medicine', 1), ('sport', 1), ('trailed', 1), ('behind', 1), ('following', 1), ('suit', 1), ('many', 1), ('year', 1), ('firm', 1), ('made', 1), ('important', 1), ('including', 1), ('large', 1), ('based', 1), ('limited', 1), ('experience', 1), ('best', 1), ('hunch', 1), ('worst', 1), ('science', 1), ('growing', 1)]
[('handbook', 1), ('software', 1), ('engineer', 1), ('scientist', 1), ('provides', 1), ('information', 1), ('variety', 1), ('subject', 1), ('common', 1), ('platform', 1), ('operating', 1), ('system', 1), ('application', 1), ('program', 1), ('networking', 1), ('many', 1), ('problem', 1), ('solving', 1), ('tool', 1), ('necessary', 1), ('effectively', 1), ('use', 1), ('computer', 1), ('daily', 1), ('basis', 1)]
[('book', 1), ('offer', 1), ('introduction', 1), ('basic', 1), ('matlab', 1), ('programming', 1), ('scientist', 1), ('engineer', 1), ('author', 1), ('lead', 1), ('engaging', 1), ('example', 1), ('build', 1), ('working', 1), ('knowledge', 1), ('specifically', 1), ('geared', 1), ('science', 1), ('engineering', 1), ('background', 1)]
[('architecture', 2), ('book', 1), ('present', 1), ('distributed', 1), ('multiprocessor', 1), ('faster', 1), ('versatile', 1), ('reliable', 1), ('traditional', 1), ('single', 1), ('processor', 1)]
[('book', 3), ('concept', 3), ('computer', 2), ('cover', 1), ('fundamental', 1), ('visual', 1), ('computing', 1), ('whereas', 1), ('past', 1), ('treated', 1), ('within', 1), ('context', 1), ('specific', 1), ('field', 1), ('graphic', 1), ('vision', 1), ('image', 1), ('processing', 1), ('offer', 1), ('unified', 1), ('view', 1), ('core', 1)]
[('risk', 3), ('technological', 2), ('age', 1), ('globalization', 1), ('widely', 1), ('distributed', 1), ('system', 1), ('rapidly', 1), ('advancing', 1), ('change', 1), ('professional', 1), ('manager', 1), ('understand', 1), ('inherent', 1), ('project', 1), ('cio', 1), ('guide', 1), ('address', 1), ('many', 1), ('face', 1), ('whether', 1), ('procurement', 1), ('development', 1), ('innovation', 1), ('even', 1), ('social', 1), ('medium', 1)]
[('problem', 3), ('book', 2), ('new', 2), ('method', 2), ('stiff', 2), ('present', 1), ('original', 1), ('numerical', 1), ('developed', 1), ('stage', 1), ('concrete', 1), ('algorithm', 1), ('successfully', 1), ('applied', 1), ('practical', 1), ('mathematical', 1), ('physic', 1), ('discus', 1), ('solving', 1), ('system', 1), ('ordinary', 1), ('differential', 1), ('equation', 1), ('elliptic', 1), ('encountered', 1), ('composite', 1), ('material', 1)]
[('project', 2), ('budget', 2), ('dozen', 1), ('fascinating', 1), ('instructive', 1), ('case', 1), ('study', 1), ('vignette', 1), ('management', 1), ('cover', 1), ('full', 1), ('range', 1), ('issue', 1), ('vital', 1), ('concern', 1), ('manager', 1), ('working', 1), ('today', 1), ('hurry', 1), ('conscious', 1), ('business', 1), ('environment', 1), ('book', 1), ('provides', 1), ('valuable', 1), ('advice', 1), ('guidance', 1), ('finished', 1), ('time', 1), ('within', 1), ('complete', 1)]
[('problem', 2), ('computational', 2), ('solving', 1), ('pattern', 1), ('recognition', 1), ('involves', 1), ('enormous', 1), ('amount', 1), ('effort', 1), ('applying', 1), ('genetic', 1), ('algorithm', 1), ('method', 1), ('based', 1), ('way', 1), ('chromosome', 1), ('dna', 1), ('recombine', 1), ('efficiently', 1), ('accurately', 1), ('solved', 1)]
[('autonomous', 3), ('system', 3), ('human', 2), ('perturbation', 2), ('team', 2), ('manage', 1), ('uncertainty', 1), ('better', 1), ('fail', 1), ('clarify', 1), ('context', 1), ('competition', 1), ('modeling', 1), ('especially', 1), ('multiple', 1), ('hybrid', 1), ('machine', 1), ('robot', 1), ('challenge', 1), ('address', 1), ('book', 1)]
[('game', 4), ('design', 3), ('book', 2), ('purpose', 1), ('look', 1), ('past', 1), ('year', 1), ('discus', 1), ('title', 1), ('whose', 1), ('deserves', 1), ('studied', 1), ('anyone', 1), ('interest', 1), ('plenty', 1), ('focus', 1), ('technical', 1), ('side', 1), ('development', 1), ('study', 1), ('nature', 1)]
[('process', 5), ('engineering', 2), ('control', 2), ('span', 1), ('industrial', 1), ('application', 1), ('manufacturing', 1), ('sector', 1), ('petrochemical', 1), ('polymer', 1), ('mineral', 1), ('production', 1), ('plant', 1), ('data', 1), ('cover', 1), ('modern', 1), ('technique', 1), ('algorithm', 1), ('area', 1), ('identification', 1), ('pid', 1), ('key', 1), ('component', 1), ('essential', 1), ('optimizing', 1)]
[('system', 2), ('robot', 2), ('drawing', 1), ('author', 1), ('state', 1), ('art', 1), ('research', 1), ('book', 1), ('examines', 1), ('philosophical', 1), ('basis', 1), ('motivation', 1), ('theory', 1), ('design', 1), ('recommendation', 1), ('implementation', 1), ('ethical', 1), ('control', 1), ('reasoning', 1), ('autonomous', 1), ('taking', 1), ('account', 1), ('law', 1), ('war', 1), ('rule', 1), ('engagement', 1), ('discus', 1), ('ultimately', 1)]
[('technology', 3), ('based', 2), ('emerging', 2), ('book', 1), ('fill', 1), ('gap', 1), ('existing', 1), ('literature', 1), ('combining', 1), ('plethora', 1), ('wsn', 1), ('single', 1), ('source', 1), ('reviewer', 1), ('form', 1), ('opinion', 1), ('regarding', 1), ('present', 1), ('different', 1), ('type', 1), ('communication', 1), ('wsns', 1), ('describes', 1), ('wireless', 1), ('sensor', 1), ('network', 1), ('integrated', 1)]
[('attack', 6), ('ddos', 4), ('book', 1), ('discus', 1), ('evolution', 1), ('distributed', 1), ('denial', 1), ('service', 1), ('detect', 1), ('mounted', 1), ('prevent', 1), ('taking', 1), ('place', 1), ('react', 1), ('progress', 1), ('goal', 1), ('tolerating', 1), ('introduces', 1), ('type', 1), ('characteristic', 1), ('reason', 1)]
[('system', 3), ('refinement', 3), ('distributed', 2), ('tribute', 1), ('professor', 1), ('kaisa', 1), ('sere', 1), ('contribution', 1), ('field', 1), ('computer', 1), ('science', 1), ('action', 1), ('approach', 1), ('present', 1), ('state', 1), ('art', 1), ('information', 1), ('theme', 1), ('first', 1), ('book', 1), ('examine', 1), ('impact', 1), ('multitude', 1), ('formal', 1), ('method', 1), ('ranging', 1)]
[('approach', 3), ('security', 3), ('book', 1), ('provides', 1), ('modern', 1), ('alternative', 1), ('fortress', 1), ('new', 1), ('distributed', 1), ('need', 1), ('password', 1), ('account', 1), ('global', 1), ('attack', 1), ('become', 1), ('difficult', 1), ('loss', 1), ('localized', 1), ('occur', 1), ('derived', 1), ('set', 1), ('tenet', 1), ('form', 1), ('basic', 1), ('model', 1)]
[('book', 2), ('evaluation', 2), ('user', 2), ('system', 2), ('provides', 1), ('necessary', 1), ('tool', 1), ('interaction', 1), ('disabled', 1), ('computer', 1), ('designed', 1), ('assist', 1), ('person', 1), ('creates', 1), ('process', 1), ('able', 1), ('ass', 1), ('satisfaction', 1), ('developed', 1), ('presenting', 1), ('new', 1), ('theoretical', 1), ('perspective', 1), ('human', 1)]
[('data', 3), ('big', 2), ('database', 2), ('challenge', 2), ('defined', 1), ('collection', 1), ('set', 1), ('large', 1), ('complex', 1), ('becomes', 1), ('difficult', 1), ('process', 1), ('using', 1), ('hand', 1), ('management', 1), ('tool', 1), ('include', 1), ('capture', 1), ('storage', 1), ('search', 1), ('sharing', 1), ('analysis', 1), ('visualization', 1), ('always', 1), ('major', 1), ('geoinformatics', 1), ('geospatial', 1), ('inherently', 1)]
[('command', 1), ('control', 1), ('set', 1), ('attribute', 1), ('process', 1), ('enterprise', 1), ('marshal', 1), ('employ', 1), ('human', 1), ('physical', 1), ('information', 1), ('resource', 1), ('solve', 1), ('problem', 1), ('accomplish', 1), ('mission', 1), ('book', 1), ('identifies', 1), ('four', 1), ('interrelated', 1), ('megatrends', 1), ('individually', 1), ('collectively', 1), ('shaping', 1), ('practice', 1), ('challenge', 1), ('face', 1)]
[('signal', 3), ('time', 3), ('matlab', 2), ('system', 2), ('text', 1), ('employ', 1), ('computationally', 1), ('pedagogically', 1), ('provide', 1), ('interactive', 1), ('visual', 1), ('reinforcement', 1), ('fundamental', 1), ('including', 1), ('characteristic', 1), ('operation', 1), ('used', 1), ('frequency', 1), ('domain', 1), ('analysis', 1), ('continuous', 1), ('discrete', 1), ('book', 1), ('includes', 1), ('hand', 1)]
[('mathematics', 3), ('volume', 1), ('center', 1), ('link', 1), ('physical', 1), ('world', 1), ('first', 1), ('explores', 1), ('future', 1), ('challenge', 1), ('mathematical', 1), ('technology', 1), ('offer', 1), ('wide', 1), ('ranging', 1), ('definition', 1), ('industrial', 1), ('explains', 1), ('type', 1), ('ii', 1), ('superconductors', 1), ('lucid', 1), ('discussion', 1), ('theoretical', 1), ('applied', 1), ('aspect', 1), ('wavelet', 1), ('book', 1), ('present', 1)]
[('surveillance', 2), ('camera', 2), ('video', 2), ('street', 1), ('london', 1), ('subway', 1), ('station', 1), ('new', 1), ('york', 1), ('city', 1), ('hundred', 1), ('thousand', 1), ('constantly', 1), ('collecting', 1), ('latest', 1), ('implementation', 1), ('call', 1), ('advanced', 1), ('system', 1), ('autonomously', 1), ('recognize', 1), ('detect', 1), ('movement', 1), ('identify', 1), ('targeted', 1), ('activity', 1), ('real', 1), ('time', 1), ('response', 1)]
[('privacy', 3), ('technology', 2), ('manager', 2), ('officer', 2), ('paper', 1), ('managing', 1), ('consumer', 1), ('employee', 1), ('legislative', 1), ('action', 1), ('book', 1), ('level', 1), ('executive', 1), ('hr', 1), ('security', 1), ('legal', 1), ('professional', 1), ('cover', 1), ('aspect', 1), ('legislation', 1), ('enable', 1), ('place', 1), ('risk', 1), ('guide', 1), ('present', 1)]
[('counting', 3), ('book', 2), ('sampling', 2), ('ii', 2), ('algorithm', 2), ('purpose', 1), ('give', 1), ('comprehensive', 1), ('detailed', 1), ('introduction', 1), ('computational', 1), ('complexity', 1), ('consists', 1), ('three', 1), ('main', 1), ('topic', 1), ('problem', 1), ('solvable', 1), ('polynomial', 1), ('running', 1), ('time', 1), ('approximation', 1), ('holographic', 1)]
[('industry', 2), ('deal', 1), ('security', 1), ('issue', 1), ('effectively', 1), ('knowledge', 1), ('theory', 1), ('alone', 1), ('sufficient', 1), ('practical', 1), ('experience', 1), ('essential', 1), ('helpful', 1), ('beginner', 1), ('practitioner', 1), ('book', 1), ('develops', 1), ('concrete', 1), ('outlook', 1), ('providing', 1), ('reader', 1), ('basic', 1), ('concept', 1), ('awareness', 1), ('standard', 1), ('best', 1), ('practice', 1), ('chapter', 1), ('address', 1), ('cryptography', 1)]
[('logic', 2), ('design', 2), ('abundance', 1), ('insightful', 1), ('example', 1), ('problem', 1), ('computer', 1), ('experiment', 1), ('introduction', 1), ('provides', 1), ('balanced', 1), ('easy', 1), ('treatment', 1), ('fundamental', 1), ('theory', 1), ('function', 1), ('application', 1), ('digital', 1), ('device', 1), ('system', 1), ('present', 1), ('popular', 1), ('contemporary', 1), ('network', 1), ('technique', 1), ('based', 1), ('decision', 1)]
[('project', 6), ('team', 2), ('member', 2), ('management', 2), ('examining', 1), ('environment', 1), ('perspective', 1), ('book', 1), ('interprets', 1), ('methodology', 1), ('behavior', 1), ('using', 1), ('bottom', 1), ('approach', 1), ('explores', 1), ('application', 1), ('followership', 1), ('key', 1), ('stage', 1), ('detail', 1), ('method', 1), ('technique', 1), ('need', 1)]
[('ugc', 2), ('social', 2), ('volume', 1), ('first', 1), ('focused', 1), ('effort', 1), ('compile', 1), ('state', 1), ('art', 1), ('research', 1), ('address', 1), ('future', 1), ('direction', 1), ('explains', 1), ('collect', 1), ('index', 1), ('analyze', 1), ('uncover', 1), ('trend', 1), ('user', 1), ('habit', 1), ('book', 1), ('describes', 1), ('mine', 1), ('various', 1), ('medium', 1), ('including', 1), ('annotation', 1), ('music', 1), ('information', 1), ('retrieval', 1), ('network', 1), ('discus', 1)]
[('location', 3), ('based', 2), ('drawing', 1), ('author', 1), ('six', 1), ('year', 1), ('experience', 1), ('information', 1), ('system', 1), ('participation', 1), ('defining', 1), ('java', 1), ('api', 1), ('text', 1), ('describes', 1), ('technical', 1), ('component', 1), ('needed', 1), ('create', 1), ('service', 1)]
[('component', 4), ('oriented', 3), ('part', 2), ('book', 1), ('supply', 1), ('comprehensive', 1), ('coverage', 1), ('principle', 1), ('practice', 1), ('paradigm', 1), ('development', 1), ('assembly', 1), ('first', 1), ('provides', 1), ('conceptual', 1), ('foundation', 1), ('software', 1), ('ii', 1), ('focus', 1), ('various', 1), ('standard', 1), ('java', 1), ('model', 1), ('describes', 1), ('develop', 1), ('system', 1), ('using', 1)]
[('computer', 3), ('science', 3), ('concept', 2), ('accessible', 1), ('non', 1), ('major', 1), ('classroom', 1), ('tested', 1), ('book', 1), ('introduces', 1), ('computational', 1), ('thinking', 1), ('part', 1), ('introductory', 1), ('computing', 1), ('course', 1), ('show', 1), ('applicable', 1), ('field', 1), ('numerous', 1), ('color', 1), ('figure', 1), ('text', 1), ('focus', 1), ('foundational', 1), ('engineering', 1), ('topic', 1), ('cover', 1)]
[('project', 2), ('time', 2), ('book', 1), ('provides', 1), ('invaluable', 1), ('guidance', 1), ('completing', 1), ('within', 1), ('budget', 1), ('meeting', 1), ('need', 1), ('customer', 1), ('present', 1), ('easy', 1), ('follow', 1), ('planning', 1), ('step', 1), ('covering', 1), ('responsibility', 1), ('work', 1), ('breakdown', 1), ('structure', 1), ('cost', 1), ('estimating', 1), ('scheduling', 1), ('resource', 1), ('allocation', 1), ('budgeting', 1), ('discus', 1), ('goal', 1), ('objective', 1)]
[('maintenance', 2), ('cost', 2), ('program', 2), ('system', 2), ('software', 1), ('averaging', 1), ('total', 1), ('computing', 1), ('necessary', 1), ('effective', 1), ('place', 1), ('aging', 1), ('legacy', 1), ('example', 1), ('pose', 1), ('especially', 1), ('rough', 1), ('challenge', 1), ('veteran', 1), ('programmer', 1), ('retire', 1), ('successor', 1), ('left', 1), ('figure', 1), ('operate', 1), ('book', 1), ('explores', 1), ('analyzer', 1)]
[('modeling', 2), ('model', 2), ('interdisciplinary', 1), ('guide', 1), ('explores', 1), ('various', 1), ('type', 1), ('method', 1), ('available', 1), ('dynamical', 1), ('system', 1), ('begin', 1), ('general', 1), ('concept', 1), ('representation', 1), ('philosophy', 1), ('dynamic', 1), ('followed', 1), ('section', 1), ('methodology', 1), ('explains', 1), ('portray', 1), ('designed', 1), ('computer', 1), ('addressing', 1), ('scale', 1), ('heterogeneity', 1)]
[('automated', 2), ('identification', 2), ('recognition', 2), ('taxon', 1), ('systematics', 1), ('show', 1), ('applied', 1), ('various', 1), ('organismal', 1), ('group', 1), ('first', 1), ('text', 1), ('address', 1), ('interface', 1), ('specie', 1), ('question', 1), ('biological', 1), ('science', 1), ('class', 1), ('problem', 1), ('mathematics', 1), ('statistic', 1), ('interest', 1), ('taxonomist', 1)]
[('pattern', 2), ('recognition', 2), ('based', 1), ('author', 1), ('research', 1), ('past', 1), ('year', 1), ('book', 1), ('unveils', 1), ('computational', 1), ('model', 1), ('address', 1), ('performance', 1), ('scalability', 1), ('achieve', 1), ('higher', 1), ('level', 1), ('reliability', 1), ('drawing', 1), ('concept', 1), ('parallel', 1), ('processing', 1), ('distributed', 1), ('system', 1), ('data', 1), ('network', 1), ('explores', 1), ('different', 1), ('way', 1), ('implementing', 1)]
[('project', 4), ('book', 2), ('managing', 2), ('software', 2), ('development', 2), ('management', 2), ('new', 1), ('direction', 1), ('provides', 1), ('depth', 1), ('coverage', 1), ('best', 1), ('practice', 1), ('determined', 1), ('measurable', 1), ('result', 1), ('vague', 1), ('ideology', 1), ('comprehensive', 1), ('treatment', 1), ('cover', 1), ('outsourced', 1), ('team', 1)]
[('new', 3), ('byod', 2), ('healthcare', 2), ('reader', 2), ('written', 1), ('president', 1), ('art', 1), ('technology', 1), ('inc', 1), ('former', 1), ('managing', 1), ('director', 1), ('york', 1), ('stock', 1), ('exchange', 1), ('provides', 1), ('authoritative', 1), ('guidance', 1), ('help', 1), ('thrive', 1), ('hbyod', 1), ('revolution', 1), ('gain', 1), ('understanding', 1), ('end', 1), ('user', 1), ('demand', 1), ('strategic', 1)]
[('cisco', 3), ('ip', 2), ('protocol', 2), ('routing', 2), ('securing', 1), ('controlling', 1), ('router', 1), ('demonstrates', 1), ('proven', 1), ('technique', 1), ('strengthening', 1), ('network', 1), ('security', 1), ('book', 1), ('begin', 1), ('introduction', 1), ('technology', 1), ('tcp', 1), ('suite', 1), ('subsequent', 1), ('chapter', 1), ('cover', 1), ('subject', 1), ('addressing', 1), ('authentication', 1), ('authorization', 1), ('accounting', 1)]
[('supported', 1), ('expert', 1), ('level', 1), ('advice', 1), ('pioneering', 1), ('researcher', 1), ('volume', 1), ('provides', 1), ('accessible', 1), ('introduction', 1), ('foundation', 1), ('application', 1), ('design', 1), ('issue', 1), ('ofdma', 1), ('network', 1), ('explores', 1), ('key', 1), ('technique', 1), ('effective', 1), ('resource', 1), ('management', 1), ('highlighting', 1), ('open', 1), ('problem', 1), ('supplying', 1), ('possible', 1), ('solution', 1), ('text', 1), ('investigates', 1), ('radio', 1), ('channel', 1), ('modeling', 1)]
[('development', 2), ('mobile', 2), ('objective', 1), ('book', 1), ('gather', 1), ('best', 1), ('practice', 1), ('management', 1), ('apps', 1), ('project', 1), ('cover', 1), ('requirement', 1), ('gathering', 1), ('analysis', 1), ('device', 1), ('operating', 1), ('system', 1), ('design', 1), ('pattern', 1), ('tool', 1), ('language', 1), ('technology', 1), ('fundamental', 1), ('concept', 1)]
[('system', 3), ('multi', 2), ('domain', 2), ('management', 2), ('first', 1), ('reference', 1), ('address', 1), ('book', 1), ('present', 1), ('current', 1), ('accurate', 1), ('information', 1), ('author', 1), ('provide', 1), ('guidance', 1), ('deployment', 1), ('offer', 1), ('solid', 1), ('basis', 1), ('implementing', 1), ('solution', 1), ('challenge', 1), ('converging', 1), ('data', 1), ('network', 1), ('technology', 1), ('manager', 1), ('learn', 1)]
[('manufacturing', 2), ('treasury', 1), ('secretary', 1), ('alexander', 1), ('hamilton', 1), ('wrote', 1), ('wealth', 1), ('independence', 1), ('security', 1), ('country', 1), ('appear', 1), ('materially', 1), ('connected', 1), ('prosperity', 1), ('manufacturer', 1), ('century', 1), ('later', 1), ('job', 1), ('continue', 1), ('outsourced', 1), ('rapid', 1), ('pace', 1), ('examining', 1), ('current', 1), ('environment', 1)]
[('book', 1), ('present', 1), ('essential', 1), ('principle', 1), ('technical', 1), ('information', 1), ('expert', 1), ('insight', 1), ('multimedia', 1), ('security', 1), ('technology', 1), ('serf', 1), ('instructional', 1), ('tool', 1), ('fundamental', 1), ('theoretical', 1), ('framework', 1), ('required', 1), ('development', 1), ('advanced', 1), ('technique', 1)]
[('coastal', 2), ('lagoon', 2), ('written', 1), ('internationally', 1), ('renowned', 1), ('group', 1), ('contributor', 1), ('book', 1), ('examines', 1), ('function', 1), ('structure', 1), ('ecosystem', 1), ('factor', 1), ('affect', 1), ('volume', 1), ('represents', 1), ('wide', 1), ('array', 1), ('study', 1), ('natural', 1), ('anthropogenic', 1), ('driver', 1), ('change', 1), ('located', 1), ('different', 1), ('region', 1), ('world', 1), ('although', 1)]
[('industrial', 2), ('book', 1), ('offer', 1), ('global', 1), ('overview', 1), ('high', 1), ('performance', 1), ('computing', 1), ('impact', 1), ('along', 1), ('discussion', 1), ('software', 1), ('challenge', 1), ('business', 1), ('access', 1), ('model', 1), ('public', 1), ('private', 1), ('partnership', 1), ('simulation', 1), ('modeling', 1), ('visualization', 1), ('big', 1), ('data', 1), ('analysis', 1), ('governmental', 1), ('influence', 1), ('valuable', 1), ('reference', 1), ('engineer', 1), ('researcher', 1)]
[('machine', 2), ('book', 2), ('reflecting', 1), ('emerging', 1), ('concept', 1), ('new', 1), ('paradigm', 1), ('intelligent', 1), ('first', 1), ('integrate', 1), ('genetic', 1), ('programming', 1), ('learning', 1), ('technique', 1), ('solving', 1), ('wide', 1), ('range', 1), ('real', 1), ('world', 1), ('task', 1), ('including', 1), ('financial', 1), ('data', 1), ('prediction', 1), ('day', 1), ('trading', 1), ('rule', 1), ('development', 1), ('bio', 1), ('marker', 1), ('selection', 1), ('written', 1), ('leading', 1), ('authority', 1), ('explains', 1)]
[('foundation', 2), ('rdf', 2), ('thoroughly', 1), ('covering', 1), ('basic', 1), ('introduction', 1), ('intuition', 1), ('technical', 1), ('detail', 1), ('formal', 1), ('text', 1), ('focus', 1), ('established', 1), ('area', 1), ('become', 1), ('relatively', 1), ('stable', 1), ('time', 1), ('present', 1), ('latest', 1), ('development', 1), ('semantic', 1), ('web', 1), ('standard', 1), ('including', 1), ('schema', 1), ('owl', 1), ('rif', 1), ('sparql', 1)]
[('software', 3), ('program', 2), ('exploring', 1), ('existing', 1), ('emerging', 1), ('work', 1), ('field', 1), ('volume', 1), ('show', 1), ('specification', 1), ('mining', 1), ('technique', 1), ('help', 1), ('find', 1), ('bug', 1), ('improve', 1), ('understanding', 1), ('top', 1), ('researcher', 1), ('engineering', 1), ('community', 1), ('provide', 1), ('valuable', 1), ('insight', 1), ('date', 1), ('case', 1), ('study', 1), ('various', 1), ('system', 1), ('including', 1), ('open', 1), ('source', 1)]
[('system', 3), ('enterprise', 2), ('information', 2), ('critical', 1), ('helping', 1), ('business', 1), ('successfully', 1), ('navigate', 1), ('global', 1), ('market', 1), ('development', 1), ('started', 1), ('design', 1), ('implementation', 1), ('integrated', 1), ('evolved', 1), ('incorporate', 1), ('multitude', 1), ('perspective', 1), ('idea', 1), ('functionality', 1), ('extends', 1), ('principally', 1), ('erp', 1)]
[('technique', 2), ('book', 1), ('present', 1), ('common', 1), ('used', 1), ('numerous', 1), ('model', 1), ('algorithm', 1), ('tool', 1), ('developed', 1), ('last', 1), ('decade', 1), ('implement', 1), ('desktop', 1), ('grid', 1), ('computing', 1), ('enable', 1), ('solution', 1), ('many', 1), ('important', 1), ('sub', 1), ('problem', 1), ('middleware', 1), ('design', 1), ('including', 1), ('scheduling', 1), ('data', 1), ('management', 1), ('security', 1), ('load', 1), ('balancing', 1), ('result', 1), ('certification', 1), ('fault', 1)]
[('computing', 3), ('context', 2), ('aware', 2), ('application', 2), ('researcher', 2), ('autonomous', 2), ('various', 1), ('example', 1), ('book', 1), ('show', 1), ('used', 1), ('many', 1), ('self', 1), ('managing', 1), ('system', 1), ('including', 1), ('device', 1), ('middleware', 1), ('network', 1), ('enables', 1), ('identify', 1), ('potential', 1), ('area', 1), ('text', 1), ('support', 1)]
[('design', 2), ('concept', 2), ('emphasizing', 1), ('top', 1), ('approach', 1), ('volume', 1), ('considers', 1), ('purpose', 1), ('basic', 1), ('feature', 1), ('value', 1), ('provide', 1), ('quantitative', 1), ('measure', 1), ('wider', 1), ('interaction', 1), ('engineered', 1), ('object', 1), ('environment', 1), ('work', 1), ('develops', 1), ('domain', 1), ('functional', 1), ('take', 1), ('place', 1), ('explores', 1), ('system', 1)]
[('application', 2), ('graphic', 2), ('rendering', 2), ('driven', 1), ('consumer', 1), ('market', 1), ('enjoy', 1), ('steadily', 1), ('increasing', 1), ('economic', 1), ('importance', 1), ('hardware', 1), ('algorithm', 1), ('central', 1), ('focus', 1), ('computer', 1), ('research', 1), ('video', 1), ('based', 1), ('approach', 1), ('aim', 1), ('overcome', 1), ('current', 1), ('bottleneck', 1), ('time', 1), ('consuming', 1), ('modeling', 1), ('process', 1), ('area', 1), ('comput', 1)]
[('data', 2), ('covering', 1), ('research', 1), ('frontier', 1), ('field', 1), ('volume', 1), ('present', 1), ('state', 1), ('art', 1), ('privacy', 1), ('preserving', 1), ('mining', 1), ('technique', 1), ('application', 1), ('domain', 1), ('medicine', 1), ('social', 1), ('network', 1), ('face', 1), ('increasing', 1), ('heterogeneity', 1), ('complexity', 1), ('new', 1), ('form', 1), ('renowned', 1), ('authority', 1), ('prominent', 1), ('organization', 1), ('cover', 1), ('established', 1)]
[('chemical', 3), ('book', 2), ('solution', 2), ('focus', 1), ('information', 1), ('extraction', 1), ('issue', 1), ('highlight', 1), ('available', 1), ('underscore', 1), ('value', 1), ('academic', 1), ('commercial', 1), ('scientist', 1), ('introducing', 1), ('driver', 1), ('behind', 1), ('text', 1), ('mining', 1), ('discus', 1), ('semantics', 1), ('contributor', 1), ('describe', 1), ('tool', 1), ('identify', 1), ('convert', 1), ('name', 1)]
[('project', 3), ('front', 2), ('tool', 2), ('six', 2), ('sigma', 2), ('dfss', 2), ('emphasizing', 1), ('power', 1), ('planning', 1), ('technique', 1), ('prevent', 1), ('imploding', 1), ('book', 1), ('explains', 1), ('concept', 1), ('design', 1), ('easy', 1), ('understand', 1), ('style', 1), ('adding', 1), ('layer', 1), ('statistical', 1), ('method', 1), ('end', 1), ('augments', 1), ('standard', 1), ('process', 1), ('ensure', 1)]
[('underwater', 3), ('sensor', 2), ('network', 2), ('highlighting', 1), ('difference', 1), ('terrestrial', 1), ('book', 1), ('investigates', 1), ('fundamental', 1), ('aspect', 1), ('communication', 1), ('prominent', 1), ('researcher', 1), ('consider', 1), ('challenge', 1), ('development', 1), ('acoustic', 1), ('uw', 1), ('asns', 1), ('introduce', 1), ('effective', 1), ('cross', 1), ('layer', 1), ('approach', 1), ('effectively', 1)]
[('self', 2), ('reader', 2), ('element', 2), ('method', 2), ('suitable', 1), ('study', 1), ('textbook', 1), ('various', 1), ('science', 1), ('engineering', 1), ('course', 1), ('contained', 1), ('book', 1), ('enables', 1), ('quickly', 1), ('understand', 1), ('theoretical', 1), ('foundation', 1), ('practical', 1), ('implementation', 1), ('finite', 1), ('companion', 1), ('spectral', 1), ('gain', 1), ('hand', 1), ('computational', 1), ('experience', 1), ('using', 1), ('free', 1), ('online', 1)]
[('offshore', 2), ('past', 1), ('several', 1), ('year', 1), ('increasing', 1), ('concern', 1), ('growth', 1), ('outsourcing', 1), ('challenge', 1), ('lie', 1), ('embrace', 1), ('inevitable', 1), ('trend', 1), ('order', 1), ('address', 1), ('issue', 1), ('global', 1), ('development', 1), ('book', 1), ('provides', 1), ('tool', 1), ('technique', 1), ('knowledge', 1), ('necessary', 1), ('achieve', 1), ('project', 1), ('success', 1), ('resource', 1)]
[('performance', 3), ('describing', 1), ('useful', 1), ('current', 1), ('research', 1), ('modern', 1), ('science', 1), ('engineering', 1), ('book', 1), ('help', 1), ('real', 1), ('world', 1), ('user', 1), ('parallel', 1), ('computer', 1), ('system', 1), ('better', 1), ('understand', 1), ('vagary', 1), ('arising', 1), ('scientific', 1), ('application', 1), ('practical', 1), ('mean', 1), ('improving', 1), ('notable', 1), ('expert', 1), ('field', 1), ('focus', 1), ('area', 1)]
[('remote', 2), ('sensing', 2), ('computing', 2), ('first', 1), ('volume', 1), ('explore', 1), ('state', 1), ('art', 1), ('hpc', 1), ('technique', 1), ('context', 1), ('problem', 1), ('book', 1), ('focus', 1), ('computational', 1), ('complexity', 1), ('algorithm', 1), ('designed', 1), ('parallel', 1), ('processing', 1), ('address', 1), ('key', 1), ('concept', 1), ('development', 1), ('cover', 1), ('application', 1), ('area', 1), ('necessarily', 1)]
[('cad', 3), ('design', 3), ('effective', 2), ('way', 2), ('use', 2), ('necessity', 1), ('equipment', 1), ('system', 1), ('book', 1), ('illustrates', 1), ('engineering', 1), ('providing', 1), ('clear', 1), ('instruction', 1), ('tip', 1), ('tool', 1), ('cover', 1), ('drawing', 1), ('generation', 1), ('automation', 1), ('dimensional', 1), ('analysis', 1), ('reader', 1), ('text', 1), ('able', 1), ('lessen', 1)]
[('penetration', 2), ('test', 2), ('computer', 2), ('network', 2), ('step', 2), ('tool', 2), ('testing', 1), ('remains', 1), ('best', 1), ('way', 1), ('security', 1), ('private', 1), ('government', 1), ('military', 1), ('corporate', 1), ('book', 1), ('provides', 1), ('instruction', 1), ('use', 1), ('available', 1), ('mostly', 1), ('free', 1), ('perform', 1), ('effective', 1), ('today', 1), ('covering', 1), ('basic', 1), ('advanced', 1), ('procedure', 1)]
[('numerical', 2), ('mathematics', 2), ('designed', 1), ('semester', 1), ('course', 1), ('subject', 1), ('classroom', 1), ('tested', 1), ('text', 1), ('present', 1), ('fundamental', 1), ('concept', 1), ('explains', 1), ('implement', 1), ('program', 1), ('method', 1), ('drawing', 1), ('year', 1), ('teaching', 1), ('student', 1), ('engineering', 1), ('science', 1), ('author', 1), ('cover', 1), ('floating', 1), ('point', 1), ('number', 1), ('representation', 1)]
[('ipv', 3), ('coined', 1), ('next', 1), ('generation', 1), ('protocol', 1), ('solve', 1), ('arduous', 1), ('problem', 1), ('limited', 1), ('ip', 1), ('address', 1), ('improve', 1), ('internetworking', 1), ('capability', 1), ('year', 1), ('transition', 1), ('period', 1), ('predecessor', 1), ('successfully', 1), ('coexistent', 1), ('order', 1), ('ensure', 1), ('service', 1), ('continuity', 1), ('handbookdemonstrates', 1), ('meet', 1)]
[('project', 2), ('influence', 2), ('best', 1), ('practice', 1), ('recommendation', 1), ('key', 1), ('success', 1), ('criterion', 1), ('point', 1), ('importance', 1), ('developing', 1), ('soft', 1), ('skill', 1), ('manager', 1), ('source', 1), ('exist', 1), ('develop', 1), ('power', 1), ('achieving', 1), ('better', 1), ('business', 1), ('result', 1), ('filling', 1), ('need', 1), ('book', 1), ('supply', 1), ('reader', 1), ('guidance', 1), ('improve', 1)]
[('book', 2), ('enterprise', 2), ('architecture', 2), ('presenting', 1), ('insight', 1), ('leading', 1), ('authority', 1), ('provides', 1), ('solid', 1), ('understanding', 1), ('key', 1), ('concept', 1), ('explains', 1), ('conduct', 1), ('effective', 1), ('oversight', 1), ('activity', 1), ('efficient', 1), ('management', 1), ('resource', 1), ('beginning', 1), ('look', 1), ('current', 1), ('theory', 1), ('framework', 1), ('discus', 1)]
[('composite', 2), ('material', 2), ('bringing', 1), ('together', 1), ('work', 1), ('leading', 1), ('researcher', 1), ('part', 1), ('world', 1), ('book', 1), ('provides', 1), ('reader', 1), ('understanding', 1), ('various', 1), ('application', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('ann', 1), ('involved', 1), ('technology', 1), ('covering', 1), ('mechanic', 1), ('characterization', 1), ('product', 1), ('design', 1), ('important', 1), ('area', 1), ('first', 1)]
[('context', 2), ('algorithm', 2), ('reader', 2), ('book', 1), ('proposes', 1), ('novel', 1), ('inferring', 1), ('generic', 1), ('framework', 1), ('design', 1), ('help', 1), ('enhance', 1), ('existing', 1), ('tradeoff', 1), ('mobile', 1), ('sensing', 1), ('especially', 1), ('accuracy', 1), ('power', 1), ('consumption', 1), ('provides', 1), ('numerous', 1), ('application', 1), ('example', 1), ('guide', 1), ('fundamental', 1), ('concept', 1), ('implementation', 1), ('aware', 1), ('related', 1)]
[('feature', 2), ('work', 1), ('detailed', 1), ('description', 1), ('design', 1), ('drafting', 1), ('enhancement', 1), ('provided', 1), ('autocad', 1), ('explains', 1), ('concept', 1), ('principle', 1), ('program', 1), ('using', 1), ('example', 1), ('illustration', 1), ('hand', 1), ('exrecises', 1)]
[('community', 3), ('online', 2), ('user', 2), ('due', 1), ('advancement', 1), ('internet', 1), ('gaining', 1), ('increasing', 1), ('importance', 1), ('research', 1), ('presented', 1), ('perspective', 1), ('book', 1), ('explores', 1), ('diverse', 1), ('application', 1), ('area', 1), ('social', 1), ('computing', 1), ('significant', 1), ('portion', 1), ('text', 1), ('focus', 1), ('real', 1), ('world', 1), ('case', 1), ('study', 1), ('behavior', 1)]
[('based', 1), ('international', 1), ('federatiojn', 1), ('information', 1), ('processing', 1), ('wg', 1), ('conference', 1), ('held', 1), ('recently', 1), ('pisa', 1), ('italy', 1), ('provides', 1), ('recent', 1), ('result', 1), ('entirely', 1), ('new', 1), ('material', 1), ('control', 1), ('theory', 1), ('shape', 1), ('analysis', 1), ('written', 1), ('leading', 1), ('authority', 1), ('various', 1), ('desciplines', 1)]
[('embedded', 2), ('interaction', 2), ('developing', 1), ('real', 1), ('time', 1), ('product', 1), ('requires', 1), ('understanding', 1), ('different', 1), ('discipline', 1), ('circuit', 1), ('design', 1), ('power', 1), ('cooling', 1), ('packaging', 1), ('software', 1), ('human', 1), ('interface', 1), ('book', 1), ('provides', 1), ('knowledge', 1), ('insight', 1), ('needed', 1), ('evaluate', 1), ('self', 1), ('contained', 1), ('system', 1), ('understand', 1), ('subsystem', 1)]
[('hp', 3), ('present', 2), ('book', 1), ('theoretical', 1), ('foundation', 1), ('algorithm', 1), ('provides', 1), ('numerical', 1), ('result', 1), ('using', 1), ('dhp', 1), ('code', 1), ('developed', 1), ('author', 1), ('colleague', 1), ('focusing', 1), ('theory', 1), ('method', 1), ('coding', 1), ('issue', 1), ('first', 1), ('part', 1), ('version', 1), ('automatic', 1), ('adaptivity', 1), ('package', 1), ('grid', 1), ('solver', 1), ('highly', 1)]
[('engine', 3), ('static', 3), ('mode', 2), ('operated', 2), ('car', 1), ('electronics', 1), ('digital', 1), ('processing', 1), ('technology', 1), ('used', 1), ('improve', 1), ('efficiency', 1), ('performance', 1), ('decade', 1), ('yet', 1), ('main', 1), ('focus', 1), ('still', 1), ('pseudo', 1), ('loaded', 1), ('road', 1), ('vehicle', 1), ('always', 1), ('book', 1), ('describes', 1), ('behavior', 1), ('dynamic', 1)]
[('intuition', 2), ('part', 2), ('decision', 2), ('making', 2), ('book', 2), ('caught', 1), ('quagmire', 1), ('big', 1), ('data', 1), ('analytics', 1), ('important', 1), ('able', 1), ('reflect', 1), ('apply', 1), ('insight', 1), ('experience', 1), ('process', 1), ('focus', 1), ('based', 1), ('first', 1), ('present', 1), ('contribution', 1), ('leading', 1), ('researcher', 1), ('worldwide', 1), ('topic', 1)]
[('test', 4), ('showing', 1), ('manager', 1), ('focus', 1), ('strategically', 1), ('tactically', 1), ('operationally', 1), ('bookprovides', 1), ('comprehensive', 1), ('guide', 1), ('aspect', 1), ('management', 1), ('inheriting', 1), ('starting', 1), ('team', 1), ('cover', 1), ('unit', 1), ('system', 1), ('non', 1), ('functional', 1), ('example', 1), ('estimate', 1), ('number', 1), ('bug', 1), ('expected', 1), ('found', 1), ('time', 1), ('required', 1)]
[('open', 2), ('written', 1), ('member', 1), ('development', 1), ('core', 1), ('team', 1), ('resource', 1), ('provides', 1), ('important', 1), ('information', 1), ('work', 1), ('research', 1), ('data', 1), ('contains', 1), ('collection', 1), ('diverse', 1), ('computer', 1), ('related', 1), ('topic', 1), ('connecting', 1), ('numerous', 1), ('real', 1), ('world', 1), ('case', 1), ('study', 1), ('author', 1), ('describes', 1), ('source', 1), ('technology', 1), ('standard', 1), ('devotes', 1), ('separate', 1), ('chapter', 1)]
[('problem', 2), ('computational', 2), ('model', 2), ('emphasis', 1), ('solving', 1), ('book', 1), ('introduces', 1), ('fundamental', 1), ('principle', 1), ('modeling', 1), ('author', 1), ('provides', 1), ('case', 1), ('study', 1), ('along', 1), ('overview', 1), ('development', 1), ('first', 1), ('part', 1), ('text', 1), ('present', 1), ('basic', 1), ('concept', 1), ('technique', 1), ('designing', 1), ('implementing', 1), ('solution', 1)]
[('security', 4), ('threat', 2), ('use', 1), ('example', 1), ('volume', 1), ('defines', 1), ('myriad', 1), ('vulnerability', 1), ('resultant', 1), ('detail', 1), ('requirement', 1), ('analysis', 1), ('outline', 1), ('development', 1), ('lifecycle', 1), ('author', 1), ('examine', 1), ('architecture', 1), ('countermeasure', 1), ('unix', 1), ('net', 1), ('java', 1), ('mobile', 1), ('web', 1), ('environment', 1)]
[('book', 2), ('sata', 2), ('written', 1), ('engineer', 1), ('afraid', 1), ('digging', 1), ('technical', 1), ('detail', 1), ('david', 1), ('deming', 1), ('leading', 1), ('storage', 1), ('networking', 1), ('technologist', 1), ('present', 1), ('necessary', 1), ('information', 1), ('reference', 1), ('required', 1), ('design', 1), ('analyze', 1), ('troubleshoot', 1), ('data', 1), ('center', 1), ('application', 1), ('utilizing', 1), ('technology', 1), ('help', 1), ('reader', 1)]
[('system', 2), ('comprehensive', 1), ('treatment', 1), ('assembly', 1), ('language', 1), ('programming', 1), ('computer', 1), ('organization', 1), ('text', 1), ('teach', 1), ('basic', 1), ('capability', 1), ('bit', 1), ('avr', 1), ('microcontrollers', 1), ('provides', 1), ('foundation', 1), ('understanding', 1), ('compiler', 1), ('linkers', 1), ('loader', 1), ('operating', 1), ('addition', 1), ('processor', 1), ('book', 1), ('cover', 1), ('function', 1), ('call', 1), ('mechanism', 1)]
[('science', 2), ('bringing', 1), ('together', 1), ('method', 1), ('pure', 1), ('mathematics', 1), ('computer', 1), ('telecommunication', 1), ('social', 1), ('book', 1), ('focus', 1), ('security', 1), ('privacy', 1), ('safety', 1), ('information', 1), ('communication', 1), ('technology', 1), ('begin', 1), ('basic', 1), ('component', 1), ('hardware', 1), ('algorithm', 1), ('cover', 1), ('integration', 1), ('system', 1), ('concludes', 1), ('human', 1), ('factor', 1)]
[('intelligent', 2), ('edited', 1), ('book', 1), ('provides', 1), ('accessible', 1), ('introduction', 1), ('field', 1), ('system', 1), ('capturing', 1), ('state', 1), ('art', 1), ('computing', 1), ('research', 1), ('contains', 1), ('numerous', 1), ('case', 1), ('study', 1), ('examine', 1), ('recent', 1), ('development', 1), ('developmental', 1), ('tool', 1), ('programming', 1), ('approach', 1), ('related', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('application', 1), ('illustrating', 1)]
[('emerging', 2), ('service', 2), ('internet', 1), ('quality', 1), ('mechanism', 1), ('leading', 1), ('widespread', 1), ('use', 1), ('real', 1), ('time', 1), ('multimedia', 1), ('requires', 1), ('drastically', 1), ('improved', 1), ('technology', 1), ('standard', 1), ('assist', 1), ('designer', 1), ('operator', 1), ('work', 1), ('provides', 1), ('comprehensive', 1), ('guide', 1), ('state', 1), ('field', 1), ('advance', 1), ('includes', 1), ('introduction', 1)]
[('application', 3), ('rapid', 1), ('advancement', 1), ('soft', 1), ('computing', 1), ('tool', 1), ('technique', 1), ('proven', 1), ('valuable', 1), ('development', 1), ('highly', 1), ('scalable', 1), ('system', 1), ('although', 1), ('many', 1), ('resource', 1), ('subject', 1), ('adequately', 1), ('cover', 1), ('theoretic', 1), ('concept', 1), ('provide', 1), ('clear', 1), ('insight', 1), ('practical', 1), ('filling', 1), ('need', 1), ('book', 1), ('explains', 1)]
[('book', 2), ('design', 2), ('micromaps', 2), ('statistical', 2), ('full', 1), ('color', 1), ('explores', 1), ('variation', 1), ('application', 1), ('link', 1), ('information', 1), ('organized', 1), ('set', 1), ('small', 1), ('map', 1), ('illustrates', 1), ('three', 1), ('main', 1), ('type', 1), ('linked', 1), ('conditioned', 1), ('comparative', 1), ('summarizes', 1), ('cognitive', 1), ('research', 1), ('thinking', 1), ('behind', 1)]
[('cover', 2), ('online', 2), ('new', 2), ('edition', 2), ('metadata', 2), ('web', 2), ('service', 2), ('book', 1), ('principle', 1), ('technique', 1), ('standard', 1), ('gi', 1), ('recent', 1), ('major', 1), ('advance', 1), ('arena', 1), ('semantic', 1), ('developed', 1), ('gps', 1), ('advanced', 1), ('term', 1), ('availability', 1), ('location', 1), ('based', 1), ('rely', 1)]
[('secure', 3), ('web', 2), ('development', 2), ('programming', 2), ('risk', 2), ('assessment', 2), ('phase', 2), ('encapsulating', 1), ('security', 1), ('requirement', 1), ('java', 1), ('platform', 1), ('book', 1), ('cover', 1), ('threat', 1), ('modeling', 1), ('explaining', 1), ('integrate', 1), ('practice', 1), ('software', 1), ('life', 1), ('cycle', 1), ('proof', 1), ('concept', 1), ('detail', 1)]
[('security', 4), ('issue', 3), ('exploration', 1), ('self', 1), ('organizing', 1), ('network', 1), ('book', 1), ('reflects', 1), ('latest', 1), ('research', 1), ('advance', 1), ('address', 1), ('many', 1), ('different', 1), ('angle', 1), ('cover', 1), ('general', 1), ('topic', 1), ('defines', 1), ('often', 1), ('used', 1), ('term', 1), ('setting', 1), ('foundation', 1), ('following', 1), ('chapter', 1), ('author', 1), ('discus', 1), ('manet', 1), ('vanet', 1)]
[('application', 3), ('oracle', 2), ('development', 2), ('geared', 1), ('towards', 1), ('professional', 1), ('developing', 1), ('based', 1), ('web', 1), ('enabled', 1), ('pllsql', 1), ('java', 1), ('net', 1), ('perl', 1), ('php', 1), ('book', 1), ('focus', 1), ('best', 1), ('practice', 1), ('embedded', 1), ('programming', 1), ('emphasizes', 1), ('use', 1), ('design', 1), ('coding', 1), ('explains', 1), ('framework', 1), ('embedding', 1), ('code', 1), ('segment', 1)]
[('numerical', 2), ('method', 2), ('book', 1), ('demonstrates', 1), ('power', 1), ('context', 1), ('solving', 1), ('complex', 1), ('engineering', 1), ('scientific', 1), ('problem', 1), ('wealth', 1), ('exercise', 1), ('emphasizes', 1), ('practical', 1), ('aspect', 1), ('address', 1), ('advantage', 1), ('disadvantage', 1), ('chapter', 1), ('contains', 1), ('many', 1), ('computational', 1), ('example', 1), ('section', 1), ('application', 1)]
[('kddm', 3), ('process', 2), ('book', 1), ('explains', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('manner', 1), ('make', 1), ('easy', 1), ('reader', 1), ('understand', 1), ('implement', 1), ('sharing', 1), ('insight', 1), ('international', 1), ('expert', 1), ('present', 1), ('powerful', 1), ('strategy', 1), ('model', 1), ('technique', 1), ('relevant', 1), ('different', 1), ('stage', 1)]
[('security', 4), ('strategy', 3), ('program', 2), ('clarifying', 1), ('purpose', 1), ('place', 1), ('information', 1), ('book', 1), ('explains', 1), ('select', 1), ('develop', 1), ('deploy', 1), ('best', 1), ('suited', 1), ('organization', 1), ('focus', 1), ('planning', 1), ('execution', 1), ('provide', 1), ('comprehensive', 1), ('look', 1), ('structure', 1), ('tool', 1), ('needed', 1), ('build', 1)]
[('sd', 3), ('provides', 2), ('book', 1), ('comprehensive', 1), ('examination', 1), ('various', 1), ('aspect', 1), ('evolution', 1), ('component', 1), ('architecture', 1), ('implementation', 1), ('integrating', 1), ('research', 1), ('variety', 1), ('discipline', 1), ('supply', 1), ('complete', 1), ('overview', 1), ('technology', 1), ('application', 1), ('groundbreaking', 1), ('reference', 1), ('thorough', 1), ('coverage', 1), ('root', 1)]
[('processing', 2), ('system', 2), ('helping', 1), ('advance', 1), ('valuable', 1), ('paradigm', 1), ('shift', 1), ('next', 1), ('generation', 1), ('knowledge', 1), ('seminal', 1), ('work', 1), ('provides', 1), ('comprehensive', 1), ('model', 1), ('constructing', 1), ('contextually', 1), ('based', 1), ('support', 1), ('advanced', 1), ('semantic', 1), ('web', 1), ('cloud', 1), ('computing', 1), ('capability', 1), ('global', 1), ('scale', 1), ('explores', 1), ('component', 1)]
[('mobile', 2), ('web', 2), ('basic', 1), ('concept', 1), ('research', 1), ('grade', 1), ('material', 1), ('volume', 1), ('cover', 1), ('range', 1), ('technical', 1), ('topic', 1), ('related', 1), ('pioneering', 1), ('expert', 1), ('identify', 1), ('major', 1), ('challenge', 1), ('application', 1), ('provide', 1), ('authoritative', 1), ('insight', 1), ('latest', 1), ('advance', 1), ('field', 1), ('text', 1), ('detail', 1), ('conceptual', 1), ('framework', 1), ('provides', 1)]
[('insight', 2), ('mobile', 2), ('connectivity', 2), ('service', 2), ('book', 1), ('present', 1), ('interpretation', 1), ('concept', 1), ('interdependent', 1), ('view', 1), ('landscape', 1), ('emphasize', 1), ('significance', 1), ('harmonious', 1), ('interplay', 1), ('cooperation', 1), ('coalescing', 1), ('variety', 1), ('interdisciplinary', 1), ('domain', 1), ('science', 1), ('art', 1), ('evolution', 1), ('explores', 1)]
[('research', 3), ('design', 2), ('science', 2), ('provides', 2), ('theory', 2), ('presenting', 1), ('innovative', 1), ('method', 1), ('second', 1), ('edition', 1), ('bestseller', 1), ('describes', 1), ('simple', 1), ('practical', 1), ('methodology', 1), ('conducting', 1), ('cutting', 1), ('edge', 1), ('dsr', 1), ('comprehensive', 1), ('guidance', 1), ('conduct', 1), ('depth', 1), ('treatment', 1), ('different', 1), ('type', 1)]
[('wayfinding', 2), ('navigation', 2), ('system', 2), ('service', 2), ('outdoor', 1), ('become', 1), ('indispensable', 1), ('mobility', 1), ('unfamiliar', 1), ('environment', 1), ('advance', 1), ('key', 1), ('technology', 1), ('positioning', 1), ('mobile', 1), ('device', 1), ('spurred', 1), ('interest', 1), ('research', 1), ('development', 1), ('indoor', 1), ('recent', 1), ('year', 1), ('book', 1), ('provides', 1)]
[('full', 2), ('scene', 2), ('computer', 1), ('vision', 1), ('first', 1), ('book', 1), ('take', 1), ('approach', 1), ('challenging', 1), ('issue', 1), ('veridical', 1), ('object', 1), ('representation', 1), ('introduces', 1), ('mathematical', 1), ('conceptual', 1), ('advance', 1), ('offer', 1), ('unprecedented', 1), ('framework', 1), ('analyzing', 1), ('complex', 1), ('structure', 1), ('world', 1), ('leading', 1), ('theorist', 1), ('cover', 1), ('reconstruction', 1), ('instead', 1), ('simplistic', 1)]
[('design', 2), ('book', 2), ('reason', 1), ('good', 1), ('interface', 1), ('far', 1), ('really', 1), ('quite', 1), ('simple', 1), ('extremely', 1), ('difficult', 1), ('build', 1), ('properly', 1), ('many', 1), ('available', 1), ('address', 1), ('display', 1), ('focus', 1), ('aesthetic', 1), ('principle', 1), ('lack', 1), ('scientific', 1), ('rigor', 1), ('descriptive', 1), ('prescriptive', 1), ('elucidates', 1)]
[('fuzzy', 4), ('advanced', 2), ('set', 2), ('intuitionistic', 2), ('image', 2), ('higher', 1), ('level', 1), ('text', 1), ('provides', 1), ('brief', 1), ('introduction', 1), ('theory', 1), ('aggregation', 1), ('operator', 1), ('distance', 1), ('similarity', 1), ('measure', 1), ('cover', 1), ('medical', 1), ('enhancement', 1), ('using', 1), ('including', 1), ('matlab', 1), ('based', 1), ('example', 1), ('increase', 1), ('contrast', 1), ('addition', 1), ('book', 1), ('describes', 1)]
[('technology', 2), ('section', 2), ('networking', 2), ('fundamental', 1), ('advanced', 1), ('concept', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('technical', 1), ('coverage', 1), ('rapidly', 1), ('emerging', 1), ('communication', 1), ('first', 1), ('focus', 1), ('modeling', 1), ('architecture', 1), ('routing', 1), ('problem', 1), ('second', 1), ('examines', 1), ('opportunistic', 1), ('application', 1), ('supplying', 1), ('detailed', 1), ('discussion', 1)]
[('project', 2), ('success', 2), ('based', 1), ('lesson', 1), ('learned', 1), ('author', 1), ('quarter', 1), ('century', 1), ('leading', 1), ('successful', 1), ('conclusion', 1), ('book', 1), ('unveils', 1), ('five', 1), ('secret', 1), ('ensuring', 1), ('even', 1), ('seemingly', 1), ('doomed', 1), ('fail', 1), ('using', 1), ('numerous', 1), ('diagram', 1), ('checklist', 1), ('explains', 1), ('take', 1), ('action', 1), ('way', 1), ('increase', 1), ('likelihood', 1)]
[('control', 3), ('book', 2), ('geometric', 2), ('asymptotic', 2), ('system', 2), ('provides', 1), ('introduction', 1), ('design', 1), ('methodology', 1), ('tracking', 1), ('disturbance', 1), ('rejection', 1), ('infinite', 1), ('dimensional', 1), ('introduces', 1), ('several', 1), ('new', 1), ('algorithm', 1), ('inspired', 1), ('invariance', 1), ('attraction', 1), ('wide', 1), ('range', 1), ('dynamical', 1), ('cover', 1), ('regulation', 1)]
[('quality', 3), ('protection', 2), ('modeling', 2), ('language', 2), ('system', 2), ('book', 1), ('introduces', 1), ('author', 1), ('qop', 1), ('ml', 1), ('provides', 1), ('multilevel', 1), ('making', 1), ('abstraction', 1), ('security', 1), ('put', 1), ('emphasis', 1), ('detail', 1), ('concerning', 1), ('analysis', 1), ('secure', 1), ('performed', 1), ('automatically', 1), ('mean', 1), ('automated', 1)]
[('case', 2), ('study', 2), ('semantic', 2), ('integrating', 1), ('theory', 1), ('book', 1), ('illustrates', 1), ('history', 1), ('current', 1), ('state', 1), ('future', 1), ('direction', 1), ('web', 1), ('maintains', 1), ('emphasis', 1), ('real', 1), ('world', 1), ('application', 1), ('examines', 1), ('technical', 1), ('practical', 1), ('issue', 1), ('related', 1), ('use', 1), ('technology', 1), ('intelligent', 1), ('information', 1), ('management', 1), ('using', 1), ('highlight', 1)]
[('theory', 3), ('search', 2), ('foraging', 2), ('book', 1), ('examines', 1), ('program', 1), ('artificial', 1), ('agent', 1), ('act', 1), ('optimally', 1), ('demonstrate', 1), ('behavior', 1), ('predicted', 1), ('living', 1), ('organism', 1), ('discus', 1), ('screening', 1), ('mathematical', 1), ('algorithmic', 1), ('framework', 1), ('present', 1), ('overview', 1), ('main', 1), ('idea', 1)]
[('sop', 4), ('book', 2), ('discus', 1), ('managing', 1), ('gcp', 1), ('conception', 1), ('retirement', 1), ('recommends', 1), ('approach', 1), ('direct', 1), ('impact', 1), ('improving', 1), ('regulatory', 1), ('compliance', 1), ('throughout', 1), ('text', 1), ('provides', 1), ('user', 1), ('point', 1), ('view', 1), ('keep', 1), ('topic', 1), ('focused', 1), ('practical', 1), ('aspect', 1), ('management', 1)]
[('fusion', 3), ('sensor', 2), ('method', 2), ('information', 2), ('book', 1), ('introduces', 1), ('subject', 1), ('multi', 1), ('choice', 1), ('implementing', 1), ('distributed', 1), ('system', 1), ('examining', 1), ('state', 1), ('art', 1), ('cover', 1), ('known', 1), ('algorithm', 1), ('architecture', 1), ('model', 1), ('discus', 1), ('applicability', 1), ('context', 1), ('wireless', 1), ('network', 1)]
[('malware', 4), ('use', 3), ('tool', 2), ('analysis', 2), ('application', 2), ('book', 1), ('document', 1), ('best', 1), ('tactic', 1), ('available', 1), ('analyzing', 1), ('android', 1), ('explains', 1), ('dynamic', 1), ('check', 1), ('behavior', 1), ('executed', 1), ('system', 1), ('describes', 1), ('static', 1), ('break', 1), ('apart', 1), ('using', 1), ('reverse', 1), ('engineering', 1)]
[('edition', 2), ('project', 2), ('leadership', 2), ('second', 1), ('strategic', 1), ('leader', 1), ('prepares', 1), ('manager', 1), ('develop', 1), ('competency', 1), ('translate', 1), ('increased', 1), ('confidence', 1), ('lead', 1), ('demanding', 1), ('environment', 1), ('first', 1), ('book', 1), ('motivates', 1), ('reader', 1), ('take', 1), ('ownership', 1), ('agenda', 1), ('become', 1), ('disciplined', 1), ('process', 1), ('building', 1)]
[('agent', 4), ('software', 3), ('technology', 2), ('aspect', 2), ('based', 1), ('author', 1), ('fifteen', 1), ('year', 1), ('experience', 1), ('book', 1), ('first', 1), ('present', 1), ('essential', 1), ('basic', 1), ('structure', 1), ('cover', 1), ('main', 1), ('quality', 1), ('system', 1), ('development', 1), ('give', 1), ('current', 1), ('example', 1), ('measurement', 1), ('evaluation', 1), ('focusing', 1)]
[('trust', 3), ('book', 1), ('provides', 1), ('detailed', 1), ('introduction', 1), ('concept', 1), ('application', 1), ('various', 1), ('computer', 1), ('science', 1), ('area', 1), ('identifying', 1), ('modeling', 1), ('challenge', 1), ('addressed', 1), ('traditional', 1), ('approach', 1), ('text', 1), ('effectively', 1), ('demonstrates', 1), ('novel', 1), ('machine', 1), ('learning', 1), ('technique', 1), ('improve', 1), ('accuracy', 1), ('assessment', 1), ('explains', 1)]
[('project', 4), ('planning', 2), ('research', 2), ('book', 2), ('although', 1), ('known', 1), ('critical', 1), ('success', 1), ('remains', 1), ('relatively', 1), ('studied', 1), ('area', 1), ('management', 1), ('draw', 1), ('literature', 1), ('review', 1), ('cover', 1), ('source', 1), ('discus', 1), ('new', 1), ('analyzed', 1), ('data', 1), ('global', 1), ('brings', 1)]
[('cloud', 2), ('computing', 2), ('enterprise', 2), ('book', 1), ('unravels', 1), ('mystery', 1), ('explains', 1), ('transform', 1), ('operating', 1), ('context', 1), ('business', 1), ('provides', 1), ('clear', 1), ('understanding', 1), ('really', 1), ('mean', 1), ('practical', 1), ('use', 1), ('address', 1), ('primary', 1), ('management', 1), ('operation', 1), ('concern', 1), ('cloudware', 1), ('describes', 1)]
[('method', 3), ('book', 2), ('offer', 2), ('quantitative', 2), ('analytical', 1), ('studying', 1), ('human', 1), ('work', 1), ('ergonomics', 1), ('psychology', 1), ('similar', 1), ('one', 1), ('utilized', 1), ('engineering', 1), ('science', 1), ('ssat', 1), ('new', 1), ('qualitative', 1), ('formalized', 1), ('analysis', 1), ('describe', 1), ('task', 1), ('complexity', 1), ('reliability', 1), ('assessment', 1)]
[('cognitive', 3), ('radio', 2), ('spectrum', 2), ('still', 1), ('early', 1), ('development', 1), ('highly', 1), ('promising', 1), ('communication', 1), ('paradigm', 1), ('effectively', 1), ('address', 1), ('insufficiency', 1), ('problem', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('technical', 1), ('regulatory', 1), ('guidance', 1), ('across', 1), ('wireless', 1), ('network', 1), ('dynamic', 1), ('access', 1), ('stop', 1), ('reference', 1), ('written', 1)]
[('database', 4), ('security', 4), ('user', 2), ('model', 1), ('focus', 1), ('protecting', 1), ('external', 1), ('unauthorized', 1), ('multilevel', 1), ('secure', 1), ('provide', 1), ('internal', 1), ('according', 1), ('access', 1), ('type', 1), ('viable', 1), ('option', 1), ('need', 1), ('modern', 1), ('system', 1), ('covering', 1), ('key', 1), ('concept', 1), ('book', 1), ('illustrates', 1), ('implementation', 1)]
[('computational', 2), ('science', 2), ('engineering', 2), ('contains', 1), ('collection', 1), ('lecture', 1), ('invited', 1), ('speaker', 1), ('presented', 1), ('international', 1), ('conference', 1), ('method', 1), ('iccmse', 1), ('held', 1), ('chania', 1), ('greece', 1), ('october', 1), ('book', 1), ('present', 1), ('development', 1), ('pertinent', 1), ('physic', 1), ('chemistry', 1), ('biology', 1), ('medicine', 1), ('mathematics', 1)]
[('computer', 3), ('area', 2), ('science', 2), ('system', 2), ('mathematics', 2), ('computing', 2), ('computational', 2), ('volume', 1), ('cover', 1), ('following', 1), ('hardware', 1), ('organization', 1), ('software', 1), ('data', 1), ('theory', 1), ('computation', 1), ('information', 1), ('methodology', 1), ('application', 1), ('discus', 1), ('including', 1), ('theoretical', 1)]
[('project', 2), ('management', 2), ('reader', 2), ('illustrating', 1), ('concept', 1), ('method', 1), ('technique', 1), ('help', 1), ('develop', 1), ('refine', 1), ('skill', 1), ('needed', 1), ('achieve', 1), ('strategic', 1), ('objective', 1), ('present', 1), ('balanced', 1), ('blend', 1), ('detailed', 1), ('explanatory', 1), ('text', 1), ('illustration', 1), ('supply', 1), ('actionable', 1), ('knowledge', 1)]
[('green', 4), ('agenda', 3), ('management', 3), ('broader', 2), ('connecting', 1), ('overall', 1), ('book', 1), ('show', 1), ('going', 1), ('pay', 1), ('reduced', 1), ('hardware', 1), ('software', 1), ('support', 1), ('energy', 1), ('cost', 1), ('tie', 1), ('computing', 1), ('corporate', 1), ('risk', 1), ('brand', 1), ('reputation', 1), ('authoritative', 1), ('text', 1), ('provides', 1)]
[('exam', 4), ('pmp', 2), ('rate', 2), ('preparing', 1), ('passing', 1), ('small', 1), ('feat', 1), ('although', 1), ('number', 1), ('certified', 1), ('pmps', 1), ('continues', 1), ('phenomenal', 1), ('failure', 1), ('remains', 1), ('uncommonly', 1), ('high', 1), ('challenge', 1), ('designed', 1), ('help', 1), ('pas', 1), ('giving', 1), ('easy', 1), ('use', 1), ('highly', 1), ('portable', 1), ('publication', 1), ('containing', 1), ('key', 1), ('relevant', 1), ('topic', 1), ('certain', 1)]
[('student', 3), ('text', 2), ('manual', 1), ('undergraduate', 1), ('engineering', 1), ('natural', 1), ('science', 1), ('discover', 1), ('computer', 1), ('programming', 1), ('work', 1), ('using', 1), ('dialog', 1), ('format', 1), ('professor', 1), ('teach', 1), ('mainstream', 1), ('web', 1), ('language', 1), ('html', 1), ('cs', 1), ('javascript', 1), ('interact', 1), ('harness', 1), ('capability', 1), ('practical', 1), ('setting', 1)]
[('book', 2), ('privacy', 2), ('security', 2), ('issue', 2), ('legal', 2), ('going', 1), ('beyond', 1), ('current', 1), ('proposes', 1), ('specific', 1), ('solution', 1), ('public', 1), ('policy', 1), ('pertaining', 1), ('online', 1), ('requiring', 1), ('technical', 1), ('expertise', 1), ('provides', 1), ('practical', 1), ('framework', 1), ('address', 1), ('ethical', 1)]
[('wireless', 3), ('communication', 2), ('network', 2), ('fastest', 1), ('growing', 1), ('industry', 1), ('segment', 1), ('today', 1), ('many', 1), ('type', 1), ('used', 1), ('application', 1), ('personal', 1), ('entertainment', 1), ('rural', 1), ('urban', 1), ('healthcare', 1), ('smart', 1), ('home', 1), ('building', 1), ('inventory', 1), ('control', 1), ('surveillance', 1), ('book', 1), ('introduces', 1), ('basic', 1), ('concept', 1)]
[('image', 2), ('edition', 2), ('bestseller', 1), ('explores', 1), ('nature', 1), ('use', 1), ('digital', 1), ('show', 1), ('obtained', 1), ('stored', 1), ('displayed', 1), ('along', 1), ('matlab', 1), ('second', 1), ('includes', 1), ('gnu', 1), ('octave', 1), ('python', 1), ('program', 1), ('written', 1), ('modular', 1), ('possible', 1), ('allowing', 1), ('greater', 1), ('flexibility', 1), ('code', 1), ('reuse', 1), ('conciseness', 1), ('contains', 1), ('new', 1)]
[('case', 3), ('management', 3), ('book', 2), ('oracle', 2), ('product', 2), ('solution', 2), ('among', 1), ('first', 1), ('translate', 1), ('business', 1), ('problem', 1), ('perspective', 1), ('appropriate', 1), ('usage', 1), ('covering', 1), ('key', 1), ('technology', 1), ('support', 1), ('component', 1), ('explains', 1), ('conceptualize', 1), ('implement', 1), ('quality', 1), ('detailing', 1), ('proven', 1)]
[('program', 4), ('entire', 2), ('managing', 1), ('technical', 1), ('successfully', 1), ('art', 1), ('science', 1), ('book', 1), ('illuminates', 1), ('life', 1), ('cycle', 1), ('customer', 1), ('original', 1), ('concept', 1), ('successful', 1), ('completion', 1), ('offer', 1), ('overview', 1), ('process', 1), ('includes', 1), ('helpful', 1), ('idea', 1), ('insight', 1), ('manager', 1), ('fail', 1), ('importantly', 1)]
[('wireless', 2), ('sensor', 2), ('network', 2), ('attention', 2), ('last', 1), ('decade', 1), ('wsns', 1), ('received', 1), ('wide', 1), ('researcher', 1), ('academia', 1), ('recently', 1), ('new', 1), ('generation', 1), ('multimedia', 1), ('wsmns', 1), ('captured', 1), ('due', 1), ('variety', 1), ('application', 1), ('deployed', 1), ('surveillance', 1), ('traffic', 1), ('monitoring', 1), ('advanced', 1), ('healthcare', 1), ('habitat', 1)]
[('strategic', 2), ('planning', 2), ('tool', 2), ('book', 1), ('provides', 1), ('complete', 1), ('set', 1), ('practical', 1), ('technique', 1), ('reader', 1), ('guided', 1), ('identifying', 1), ('circumstance', 1), ('might', 1), ('use', 1), ('particular', 1), ('targeting', 1), ('directly', 1), ('achieving', 1), ('effective', 1), ('result', 1), ('systematic', 1), ('consists', 1), ('framework', 1), ('phase', 1), ('project', 1), ('pass', 1)]
[('program', 5), ('book', 2), ('manager', 2), ('lead', 2), ('management', 2), ('tell', 1), ('story', 1), ('coming', 1), ('project', 1), ('handed', 1), ('large', 1), ('reader', 1), ('follow', 1), ('along', 1), ('struggle', 1), ('stumble', 1), ('grows', 1), ('role', 1), ('introducing', 1), ('key', 1), ('concept', 1), ('throughout', 1), ('provides', 1), ('backstage', 1), ('view', 1), ('working', 1)]
[('control', 3), ('planning', 3), ('flight', 2), ('smart', 1), ('autonomous', 1), ('aircraft', 1), ('uav', 1), ('introduces', 1), ('advanced', 1), ('method', 1), ('situation', 1), ('awareness', 1), ('decision', 1), ('making', 1), ('book', 1), ('among', 1), ('first', 1), ('emphasize', 1), ('theoretic', 1), ('algorithmic', 1), ('side', 1), ('dynamic', 1), ('uncertain', 1), ('environment', 1), ('focused', 1), ('latest', 1), ('theory', 1), ('informs', 1)]
[('ethical', 2), ('computer', 2), ('theory', 2), ('explaining', 1), ('ubiquitous', 1), ('computing', 1), ('rapidly', 1), ('changing', 1), ('private', 1), ('professional', 1), ('life', 1), ('innovation', 1), ('stand', 1), ('intersection', 1), ('science', 1), ('philosophy', 1), ('management', 1), ('integrates', 1), ('framework', 1), ('three', 1), ('domain', 1), ('explores', 1), ('latest', 1), ('thinking', 1), ('ethic', 1), ('including', 1), ('normative', 1)]
[('ai', 4), ('book', 2), ('evaluates', 2), ('featuring', 1), ('contribution', 1), ('leading', 1), ('expert', 1), ('thinker', 1), ('theory', 1), ('artificial', 1), ('intelligence', 1), ('first', 1), ('dedicated', 1), ('examining', 1), ('risk', 1), ('prediction', 1), ('future', 1), ('proposes', 1), ('way', 1), ('ensure', 1), ('system', 1), ('beneficial', 1), ('human', 1), ('critically', 1), ('proposal', 1)]
[('design', 2), ('engineering', 2), ('classroom', 1), ('tested', 1), ('industry', 1), ('reviewed', 1), ('text', 1), ('take', 1), ('reader', 1), ('step', 1), ('customer', 1), ('focused', 1), ('integrates', 1), ('aspect', 1), ('system', 1), ('provide', 1), ('solid', 1), ('understanding', 1), ('fundamental', 1), ('principle', 1), ('best', 1), ('practice', 1), ('area', 1), ('author', 1), ('examines', 1), ('software', 1), ('behavioral', 1), ('perspective', 1)]
[('zigbee', 3), ('protocol', 2), ('step', 2), ('communication', 2), ('book', 1), ('provides', 1), ('detailed', 1), ('description', 1), ('network', 1), ('supply', 1), ('instruction', 1), ('set', 1), ('develop', 1), ('based', 1), ('customized', 1), ('application', 1), ('starting', 1), ('brief', 1), ('introduction', 1), ('near', 1), ('field', 1), ('low', 1), ('power', 1), ('related', 1), ('discus', 1), ('architecture', 1), ('standard', 1)]
[('cloud', 3), ('computing', 2), ('set', 1), ('network', 1), ('enabled', 1), ('service', 1), ('providing', 1), ('scalable', 1), ('inexpensive', 1), ('platform', 1), ('demand', 1), ('accessed', 1), ('simple', 1), ('way', 1), ('book', 1), ('help', 1), ('reader', 1), ('understand', 1), ('process', 1), ('deploy', 1), ('customize', 1), ('geospatial', 1), ('application', 1), ('onto', 1), ('optimize', 1), ('make', 1), ('better', 1), ('support', 1)]
[('graph', 7), ('medium', 4), ('social', 3), ('analysis', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('use', 1), ('study', 1), ('digital', 1), ('cover', 1), ('following', 1), ('topic', 1), ('theory', 1), ('algebraic', 1), ('clustering', 1), ('diffusion', 1), ('label', 1), ('propagation', 1), ('pattern', 1), ('recognition', 1), ('machine', 1)]
[('algorithmic', 2), ('handbook', 1), ('first', 1), ('present', 1), ('unified', 1), ('comprehensive', 1), ('treatment', 1), ('graph', 1), ('theory', 1), ('combinatorial', 1), ('optimization', 1), ('related', 1), ('issue', 1), ('cover', 1), ('numerous', 1), ('topic', 1), ('interest', 1), ('application', 1), ('electrical', 1), ('communication', 1), ('computer', 1), ('social', 1), ('transportation', 1), ('biological', 1), ('network', 1), ('book', 1), ('provides', 1), ('reader', 1)]
[('book', 2), ('text', 2), ('source', 2), ('provides', 1), ('introduction', 1), ('mining', 1), ('using', 1), ('popular', 1), ('powerful', 1), ('open', 1), ('tool', 1), ('knime', 1), ('rapidminer', 1), ('weka', 1), ('python', 1), ('contributor', 1), ('explain', 1), ('data', 1), ('gathered', 1), ('processed', 1), ('wide', 1), ('variety', 1), ('including', 1), ('server', 1), ('access', 1), ('log', 1), ('website', 1), ('social', 1), ('medium', 1), ('site', 1), ('message', 1), ('board', 1)]
[('cloud', 4), ('computing', 4), ('overview', 2), ('technology', 2), ('step', 2), ('secure', 2), ('providing', 1), ('comprehensive', 1), ('book', 1), ('supply', 1), ('instruction', 1), ('develop', 1), ('platform', 1), ('web', 1), ('service', 1), ('includes', 1), ('basic', 1), ('level', 1), ('outline', 1), ('framework', 1), ('development', 1), ('describes', 1), ('supporting', 1)]
[('based', 3), ('direct', 2), ('solver', 2), ('mesh', 2), ('computation', 2), ('year', 1), ('author', 1), ('experience', 1), ('area', 1), ('book', 1), ('target', 1), ('researcher', 1), ('graduate', 1), ('student', 1), ('learn', 1), ('design', 1), ('implement', 1), ('parallel', 1), ('present', 1), ('alternative', 1), ('way', 1), ('constructing', 1), ('multi', 1), ('frontal', 1), ('algorithm', 1)]
[('fault', 2), ('book', 1), ('present', 1), ('method', 1), ('identifying', 1), ('classifying', 1), ('using', 1), ('causal', 1), ('reasoning', 1), ('employ', 1), ('similarity', 1), ('matrix', 1), ('order', 1), ('match', 1), ('user', 1), ('activity', 1), ('log', 1), ('pattern', 1), ('transformed', 1), ('space', 1), ('describes', 1), ('embed', 1), ('self', 1), ('healing', 1), ('policy', 1), ('client', 1), ('related', 1), ('previous', 1), ('dealt', 1)]
[('spam', 3), ('based', 3), ('ai', 3), ('anti', 2), ('book', 1), ('introduces', 1), ('research', 1), ('technique', 1), ('artificial', 1), ('immune', 1), ('system', 1), ('identify', 1), ('filter', 1), ('provides', 1), ('single', 1), ('source', 1), ('model', 1), ('algorithm', 1), ('proposed', 1), ('author', 1), ('past', 1), ('decade', 1), ('various', 1), ('journal', 1), ('conference', 1), ('discus', 1), ('key', 1), ('topic', 1)]
[('java', 3), ('text', 1), ('plentiful', 1), ('difficult', 1), ('find', 1), ('take', 1), ('real', 1), ('world', 1), ('approach', 1), ('encourages', 1), ('student', 1), ('build', 1), ('skill', 1), ('practical', 1), ('exercise', 1), ('written', 1), ('expert', 1), ('year', 1), ('teaching', 1), ('experience', 1), ('book', 1), ('present', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('employing', 1), ('example', 1), ('taken', 1), ('everyday', 1), ('life', 1), ('us', 1)]
[('book', 1), ('masterfully', 1), ('employ', 1), ('student', 1), ('friendly', 1), ('exposition', 1), ('clear', 1), ('proof', 1), ('abundant', 1), ('example', 1), ('numerous', 1), ('exercise', 1), ('provide', 1), ('essential', 1), ('understanding', 1), ('concept', 1), ('theorem', 1), ('history', 1), ('application', 1), ('graph', 1), ('theory', 1), ('fully', 1), ('updated', 1), ('thoughtfully', 1), ('reorganized', 1), ('sixth', 1), ('edition', 1), ('bestselling', 1), ('classroom', 1), ('tested', 1), ('text', 1), ('add', 1), ('new', 1)]
[('book', 2), ('written', 2), ('perspective', 2), ('programmer', 2), ('unlike', 1), ('statistic', 1), ('providing', 1), ('channel', 1), ('expertise', 1), ('programming', 1), ('language', 1), ('quickly', 1), ('understand', 1), ('content', 1), ('divided', 1), ('four', 1), ('part', 1), ('basic', 1), ('server', 1), ('database', 1), ('big', 1), ('data', 1)]
[('system', 3), ('cewps', 2), ('immune', 2), ('book', 1), ('introduces', 1), ('cognitive', 1), ('early', 1), ('warning', 1), ('predictive', 1), ('new', 1), ('digital', 1), ('similar', 1), ('human', 1), ('relies', 1), ('true', 1), ('inoculated', 1), ('sickness', 1), ('experience', 1), ('defend', 1), ('body', 1)]
[('new', 2), ('interaction', 2), ('device', 2), ('user', 2), ('input', 2), ('book', 1), ('address', 1), ('modality', 1), ('becoming', 1), ('possible', 1), ('looking', 1), ('interface', 1), ('perspective', 1), ('deal', 1), ('modern', 1), ('design', 1), ('covering', 1), ('depth', 1), ('theory', 1), ('advanced', 1), ('topic', 1), ('noise', 1), ('reduction', 1), ('using', 1), ('kalman', 1), ('filter', 1), ('case', 1), ('study', 1), ('multiple', 1), ('chapter', 1), ('showing', 1)]
[('green', 2), ('computing', 2), ('computer', 2), ('concise', 1), ('accessible', 1), ('introduction', 1), ('book', 1), ('address', 1), ('science', 1), ('infrastructure', 1), ('affect', 1), ('environment', 1), ('present', 1), ('main', 1), ('challenge', 1), ('making', 1), ('environmentally', 1), ('friendly', 1), ('author', 1), ('review', 1), ('methodology', 1), ('design', 1), ('framework', 1), ('software', 1), ('development', 1), ('tool', 1)]
[('information', 2), ('professional', 2), ('gathering', 1), ('critical', 1), ('importance', 1), ('pharmaceutical', 1), ('medical', 1), ('device', 1), ('industry', 1), ('guide', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('key', 1), ('resource', 1), ('database', 1), ('line', 1), ('directory', 1), ('report', 1), ('periodical', 1), ('providing', 1), ('glance', 1), ('guidance', 1), ('collection', 1), ('development', 1), ('tool', 1)]
[('problem', 2), ('coverage', 2), ('authoritative', 1), ('handbook', 1), ('reveals', 1), ('connection', 1), ('bioinspired', 1), ('technique', 1), ('development', 1), ('solution', 1), ('arise', 1), ('diverse', 1), ('domain', 1), ('provides', 1), ('broad', 1), ('along', 1), ('numerous', 1), ('reference', 1), ('available', 1), ('literature', 1), ('depth', 1), ('information', 1), ('book', 1), ('section', 1), ('serve', 1), ('balance', 1), ('theory', 1)]
[('cloud', 3), ('application', 2), ('computing', 2), ('book', 1), ('explains', 1), ('evolution', 1), ('internet', 1), ('web', 1), ('based', 1), ('using', 1), ('service', 1), ('oriented', 1), ('approach', 1), ('discus', 1), ('emerging', 1), ('paradigm', 1), ('technology', 1), ('change', 1), ('way', 1), ('newer', 1), ('architected', 1), ('deployment', 1), ('cover', 1), ('technological', 1), ('feature', 1), ('including', 1), ('hardware', 1)]
[('book', 2), ('mobile', 2), ('provides', 1), ('reader', 1), ('level', 1), ('technical', 1), ('expertise', 1), ('understanding', 1), ('device', 1), ('concept', 1), ('application', 1), ('development', 1), ('process', 1), ('networking', 1), ('infrastructure', 1), ('security', 1), ('method', 1), ('chapter', 1), ('contributed', 1), ('engineer', 1), ('extensive', 1), ('real', 1), ('world', 1), ('experience', 1), ('wireless', 1), ('field', 1), ('offer', 1), ('insight', 1)]
[('decision', 2), ('tool', 2), ('big', 2), ('data', 2), ('supply', 2), ('book', 1), ('provides', 1), ('manager', 1), ('maker', 1), ('make', 1), ('informed', 1), ('purchasing', 1), ('initiative', 1), ('description', 1), ('common', 1), ('survey', 1), ('various', 1), ('product', 1), ('vendor', 1), ('market', 1), ('comparing', 1), ('contrasting', 1), ('different', 1), ('type', 1), ('analysis', 1), ('commonly', 1), ('conducted', 1)]
[('book', 2), ('internal', 2), ('expectation', 2), ('author', 1), ('present', 1), ('lesson', 1), ('learned', 1), ('extensive', 1), ('experience', 1), ('cae', 1), ('help', 1), ('auditor', 1), ('understand', 1), ('challenge', 1), ('issue', 1), ('potential', 1), ('alternative', 1), ('solution', 1), ('executing', 1), ('role', 1), ('explains', 1), ('clarify', 1), ('management', 1), ('audit', 1), ('balance', 1), ('iia', 1), ('standard', 1)]
[('scientific', 2), ('inference', 2), ('paradox', 2), ('paradoxology', 1), ('refers', 1), ('study', 1), ('nature', 1), ('evidence', 1), ('controversy', 1), ('precisely', 1), ('book', 1), ('analyzes', 1), ('many', 1), ('different', 1), ('perspective', 1), ('statistic', 1), ('mathematics', 1), ('philosophy', 1), ('science', 1), ('artificial', 1), ('intelligence', 1), ('compare', 1), ('various', 1), ('quantitative', 1)]
[('xml', 2), ('way', 2), ('scientific', 2), ('book', 1), ('introduces', 1), ('scientist', 1), ('engineer', 1), ('illustrates', 1), ('similarity', 1), ('difference', 1), ('traditional', 1), ('programming', 1), ('language', 1), ('suggests', 1), ('new', 1), ('saving', 1), ('sharing', 1), ('result', 1), ('calculation', 1), ('author', 1), ('discus', 1), ('context', 1), ('computing', 1), ('demonstrates', 1), ('xsl', 1), ('used', 1), ('perform', 1)]
[('book', 1), ('focus', 1), ('new', 1), ('class', 1), ('mobile', 1), ('ad', 1), ('hoc', 1), ('network', 1), ('us', 1), ('pedagogical', 1), ('approach', 1), ('utilizing', 1), ('cognitive', 1), ('aspect', 1), ('applied', 1), ('vehicular', 1), ('environment', 1), ('comprises', 1), ('contribution', 1), ('known', 1), ('high', 1), ('profile', 1), ('researcher', 1), ('respective', 1), ('specialty', 1)]
[('game', 2), ('engine', 2), ('third', 1), ('volume', 1), ('popular', 1), ('gem', 1), ('series', 1), ('written', 1), ('professional', 1), ('industry', 1), ('academia', 1), ('contains', 1), ('new', 1), ('chapter', 1), ('concisely', 1), ('present', 1), ('particular', 1), ('technique', 1), ('describe', 1), ('clever', 1), ('trick', 1), ('offer', 1), ('practical', 1), ('advice', 1), ('within', 1), ('subject', 1), ('development', 1), ('book', 1), ('companion', 1), ('website', 1), ('supplementary', 1)]
[('key', 2), ('technology', 2), ('signal', 2), ('processing', 2), ('information', 2), ('theory', 2), ('application', 2), ('book', 1), ('focus', 1), ('challenge', 1), ('network', 1), ('computer', 1), ('current', 1), ('state', 1), ('development', 1), ('exchanged', 1), ('conference', 1), ('covering', 1), ('original', 1), ('research', 1), ('tutorial', 1), ('article', 1), ('investigating', 1)]
[('requirement', 4), ('software', 2), ('test', 2), ('case', 2), ('nonfunctional', 2), ('detailing', 1), ('comprehensive', 1), ('set', 1), ('secure', 1), ('resilient', 1), ('development', 1), ('operation', 1), ('book', 1), ('supply', 1), ('documented', 1), ('best', 1), ('practice', 1), ('testing', 1), ('offer', 1), ('ground', 1), ('level', 1), ('already', 1), ('developed', 1), ('corresponding', 1)]
[('networking', 2), ('tool', 2), ('used', 2), ('book', 1), ('discus', 1), ('built', 1), ('third', 1), ('party', 1), ('diagnose', 1), ('network', 1), ('problem', 1), ('performance', 1), ('issue', 1), ('enhance', 1), ('security', 1), ('computer', 1), ('system', 1), ('author', 1), ('cover', 1), ('variety', 1), ('demonstrates', 1), ('determine', 1), ('ahead', 1), ('time', 1), ('whether', 1), ('existing', 1), ('internet', 1), ('connectivity', 1)]
[('conference', 2), ('computer', 2), ('communication', 2), ('electrical', 2), ('engineering', 2), ('rd', 1), ('international', 1), ('foundation', 1), ('frontier', 1), ('notable', 1), ('event', 1), ('brings', 1), ('together', 1), ('academia', 1), ('researcher', 1), ('engineer', 1), ('student', 1), ('field', 1), ('electronics', 1), ('making', 1), ('perfect', 1), ('platform', 1), ('share', 1)]
[('data', 2), ('anonymization', 2), ('provides', 1), ('systematic', 1), ('integrated', 1), ('approach', 1), ('privacy', 1), ('protection', 1), ('go', 1), ('far', 1), ('beyond', 1), ('simple', 1), ('masking', 1), ('network', 1), ('security', 1), ('external', 1), ('internal', 1), ('theft', 1), ('discussing', 1), ('analysis', 1), ('planning', 1), ('set', 1), ('governance', 1), ('timely', 1), ('manual', 1), ('illuminates', 1), ('entire', 1), ('process', 1), ('adapting', 1), ('implementing', 1), ('tool', 1)]
[('algebraic', 3), ('curve', 3), ('book', 2), ('code', 2), ('self', 1), ('contained', 1), ('first', 1), ('focus', 1), ('many', 1), ('topic', 1), ('cryptography', 1), ('involving', 1), ('supplying', 1), ('necessary', 1), ('background', 1), ('author', 1), ('discus', 1), ('error', 1), ('correcting', 1), ('including', 1), ('geometry', 1), ('provide', 1), ('introduction', 1), ('elliptic', 1), ('chapter', 1), ('remainder', 1)]
[('information', 2), ('technology', 2), ('proceeding', 1), ('volume', 1), ('brings', 1), ('together', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('presented', 1), ('international', 1), ('conference', 1), ('computer', 1), ('application', 1), ('engineering', 1), ('held', 1), ('august', 1), ('hong', 1), ('kong', 1), ('specific', 1), ('topic', 1), ('covered', 1), ('include', 1), ('control', 1), ('robotics', 1), ('automation', 1), ('intelligent', 1), ('computing', 1)]
[('security', 2), ('wireless', 2), ('network', 2), ('presenting', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('book', 1), ('explores', 1), ('aspect', 1), ('basic', 1), ('category', 1), ('ad', 1), ('hoc', 1), ('related', 1), ('application', 1), ('area', 1), ('focusing', 1), ('intrusion', 1), ('detection', 1), ('system', 1), ('id', 1), ('provides', 1), ('reader', 1), ('understanding', 1), ('required', 1), ('establish', 1), ('solution', 1), ('range', 1), ('including', 1), ('mobile', 1)]
[('attack', 3), ('using', 2), ('step', 2), ('network', 2), ('poisoning', 2), ('arp', 2), ('process', 1), ('build', 1), ('generate', 1), ('offensive', 1), ('technique', 1), ('volume', 1), ('enables', 1), ('reader', 1), ('implement', 1), ('appropriate', 1), ('security', 1), ('solution', 1), ('within', 1), ('laboratory', 1), ('environment', 1), ('topic', 1), ('covered', 1), ('include', 1), ('cam', 1), ('table', 1), ('switch', 1), ('cache', 1), ('detection', 1), ('prevention', 1), ('abnormal', 1)]
[('introduction', 1), ('scientific', 1), ('fundamental', 1), ('groundwater', 1), ('geothermal', 1), ('system', 1), ('book', 1), ('explains', 1), ('different', 1), ('water', 1), ('energy', 1), ('problem', 1), ('existing', 1), ('deformable', 1), ('porous', 1), ('rock', 1), ('corresponding', 1), ('theory', 1), ('mathematical', 1), ('numerical', 1), ('tool', 1), ('lead', 1), ('modeling', 1), ('solving', 1), ('provides', 1), ('reader', 1), ('thorough', 1)]
[('substantial', 1), ('amount', 1), ('new', 1), ('material', 1), ('best', 1), ('selling', 1), ('handbook', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('linear', 1), ('algebra', 1), ('concept', 1), ('application', 1), ('computational', 1), ('software', 1), ('package', 1), ('easy', 1), ('use', 1), ('format', 1), ('guide', 1), ('reader', 1), ('elementary', 1), ('aspect', 1), ('subject', 1), ('frontier', 1), ('current', 1), ('research', 1), ('along', 1), ('revision', 1), ('update', 1)]
[('mpls', 4), ('network', 4), ('metropolitan', 2), ('area', 2), ('demonstrates', 1), ('solution', 1), ('provided', 1), ('feature', 1), ('text', 1), ('open', 1), ('overview', 1), ('metro', 1), ('examines', 1), ('traffic', 1), ('engineering', 1), ('issue', 1), ('focusing', 1), ('fundamental', 1), ('te', 1), ('concept', 1), ('control', 1), ('author', 1), ('discus', 1), ('bring', 1), ('increased', 1), ('reliability', 1), ('man', 1)]
[('control', 2), ('shape', 2), ('present', 1), ('development', 1), ('advance', 1), ('modelling', 1), ('passive', 1), ('active', 1), ('system', 1), ('governed', 1), ('partial', 1), ('differential', 1), ('equation', 1), ('book', 1), ('emphasizes', 1), ('analysis', 1), ('optimal', 1), ('design', 1), ('controllability', 1), ('nonlinear', 1), ('boundary', 1), ('stabilization', 1)]
[('deadlock', 2), ('resolution', 1), ('computer', 1), ('integrated', 1), ('system', 1), ('first', 1), ('text', 1), ('summarize', 1), ('comprehensively', 1), ('treat', 1), ('issue', 1), ('systematic', 1), ('manner', 1), ('consisting', 1), ('contribution', 1), ('prominent', 1), ('researcher', 1), ('field', 1), ('book', 1), ('address', 1), ('free', 1), ('model', 1), ('scheduling', 1), ('detection', 1), ('recovery', 1), ('method', 1), ('formulation', 1), ('dynamic', 1), ('control', 1), ('policy', 1)]
[('book', 2), ('data', 2), ('strategy', 2), ('look', 1), ('various', 1), ('application', 1), ('demand', 1), ('driver', 1), ('along', 1), ('infrastructure', 1), ('option', 1), ('filled', 1), ('example', 1), ('scenario', 1), ('tip', 1), ('consideration', 1), ('cover', 1), ('frequently', 1), ('asked', 1), ('question', 1), ('answer', 1), ('aid', 1), ('decision', 1), ('making', 1)]
[('pivotal', 1), ('book', 1), ('provides', 1), ('highly', 1), ('accessible', 1), ('balanced', 1), ('treatment', 1), ('underlying', 1), ('theory', 1), ('practical', 1), ('application', 1), ('distributed', 1), ('computing', 1), ('previous', 1), ('version', 1), ('language', 1), ('second', 1), ('edition', 1), ('kept', 1), ('unobscured', 1), ('possible', 1), ('clarity', 1), ('given', 1), ('priority', 1), ('mathematical', 1), ('formalism', 1), ('containing', 1), ('significant', 1), ('update', 1), ('mirror', 1)]
[('present', 2), ('analysis', 2), ('application', 2), ('text', 1), ('modeling', 1), ('topic', 1), ('using', 1), ('maple', 1), ('computer', 1), ('algebra', 1), ('system', 1), ('solving', 1), ('mathematical', 1), ('equation', 1), ('obtaining', 1), ('plot', 1), ('help', 1), ('perform', 1), ('cogent', 1), ('applied', 1), ('mathematics', 1), ('provides', 1), ('discussion', 1), ('result', 1), ('obtained', 1), ('stimulate', 1), ('thought', 1), ('additional', 1)]
[('human', 2), ('emerging', 2), ('practical', 2), ('volume', 1), ('set', 1), ('highlight', 1), ('factor', 1), ('engineering', 1), ('concern', 1), ('across', 1), ('real', 1), ('world', 1), ('application', 1), ('concerning', 1), ('issue', 1), ('perspective', 1), ('performance', 1), ('automated', 1), ('autonomous', 1), ('system', 1), ('cover', 1), ('current', 1), ('theory', 1), ('method', 1), ('alongside', 1), ('challenge', 1)]
[('book', 1), ('present', 1), ('state', 1), ('art', 1), ('solution', 1), ('theoretical', 1), ('practical', 1), ('challenge', 1), ('stemming', 1), ('integration', 1), ('enabling', 1), ('technology', 1), ('iots', 1), ('support', 1), ('smart', 1), ('enabled', 1), ('iot', 1), ('paradigm', 1)]
[('book', 2), ('co', 2), ('fo', 2), ('approach', 2), ('software', 2), ('present', 1), ('teaching', 1), ('development', 1), ('textbook', 1), ('reference', 1), ('instructor', 1), ('student', 1), ('developer', 1), ('interested', 1)]
[('rf', 3), ('deployment', 2), ('rare', 2), ('earth', 2), ('material', 2), ('device', 2), ('transmitter', 2), ('laser', 2), ('system', 2), ('microware', 1), ('describes', 1), ('offer', 1), ('significant', 1), ('improvement', 1), ('performance', 1), ('reliability', 1), ('weight', 1), ('size', 1), ('microwave', 1)]
[('computer', 2), ('science', 2), ('aim', 1), ('ieccs', 1), ('held', 1), ('bring', 1), ('together', 1), ('leading', 1), ('scientist', 1), ('international', 1), ('community', 1), ('attract', 1), ('original', 1), ('research', 1), ('paper', 1), ('volume', 1), ('lecture', 1), ('series', 1), ('computational', 1), ('contains', 1), ('extended', 1), ('abstract', 1), ('presentation', 1)]
[('expert', 3), ('system', 3), ('handbook', 1), ('highlight', 1), ('major', 1), ('global', 1), ('trend', 1), ('activity', 1), ('based', 1), ('upon', 1), ('analysis', 1), ('first', 1), ('three', 1), ('world', 1), ('congress', 1), ('technology', 1), ('application', 1)]
[('heterogeneous', 2), ('computing', 2), ('architecture', 2), ('vision', 2), ('challenge', 1), ('provides', 1), ('updated', 1), ('state', 1), ('art', 1), ('system', 1), ('covering', 1), ('aspect', 1), ('related', 1), ('design', 1), ('programming', 1), ('model', 1), ('hardware', 1), ('software', 1), ('integration', 1), ('orchestration', 1), ('real', 1), ('time', 1), ('security', 1), ('requirement', 1)]
[('skeletal', 3), ('muscle', 3), ('biomechanical', 2), ('model', 2), ('technology', 2), ('based', 2), ('book', 1), ('cover', 1), ('three', 1), ('aspect', 1), ('force', 1), ('generation', 1), ('principle', 1), ('exoskeleton', 1), ('robot', 1), ('sma', 1), ('bionic', 1)]
[('algorithm', 2), ('mathematica', 1), ('maple', 1), ('similar', 1), ('software', 1), ('package', 1), ('provide', 1), ('program', 1), ('carry', 1), ('sophisticated', 1), ('mathematical', 1), ('operation', 1), ('applying', 1), ('idea', 1), ('introduced', 1), ('computer', 1), ('algebra', 1), ('symbolic', 1), ('computation', 1), ('elementary', 1), ('book', 1), ('explores', 1), ('application', 1), ('method', 1), ('automatic', 1), ('simplification', 1), ('polynomial', 1), ('decomposition', 1), ('polyno', 1)]
[('compilation', 2), ('optimization', 2), ('compiler', 2), ('current', 1), ('computer', 1), ('architecture', 1), ('pose', 1), ('challenge', 1), ('exceed', 1), ('capability', 1), ('traditional', 1), ('technique', 1), ('presenting', 1), ('latest', 1), ('information', 1), ('code', 1), ('generation', 1), ('design', 1), ('handbook', 1), ('second', 1), ('edition', 1), ('feature', 1), ('new', 1), ('chapter', 1), ('cover', 1), ('topic', 1), ('time', 1), ('energy', 1), ('aware', 1)]
[('ubiquitous', 2), ('guidance', 1), ('john', 1), ('krumm', 1), ('computing', 1), ('pioneer', 1), ('book', 1), ('brings', 1), ('together', 1), ('eleven', 1), ('ubicomp', 1), ('trailblazer', 1), ('report', 1), ('area', 1), ('expertise', 1), ('starting', 1), ('historical', 1), ('introduction', 1), ('move', 1), ('summarize', 1), ('number', 1), ('topic', 1), ('application', 1), ('quantitative', 1), ('method', 1), ('system', 1), ('software', 1), ('taking', 1), ('decidedly', 1), ('human', 1)]
[('control', 3), ('author', 2), ('system', 2), ('book', 1), ('report', 1), ('new', 1), ('method', 1), ('fault', 1), ('tolerant', 1), ('based', 1), ('research', 1), ('finding', 1), ('develop', 1), ('theoretical', 1), ('framework', 1), ('reliable', 1), ('linear', 1), ('adaptive', 1), ('mechanism', 1), ('present', 1), ('guideline', 1), ('designing', 1), ('guaranteed', 1), ('stability', 1), ('desired', 1), ('performance', 1), ('presence', 1)]
[('reference', 1), ('explores', 1), ('latest', 1), ('technology', 1), ('application', 1), ('needed', 1), ('overcome', 1), ('security', 1), ('issue', 1), ('wireless', 1), ('handheld', 1), ('communication', 1), ('device', 1), ('several', 1), ('book', 1), ('market', 1), ('cover', 1), ('similar', 1), ('topic', 1), ('handbook', 1), ('unique', 1), ('treatment', 1), ('specification', 1), ('implementation', 1), ('aspect', 1), ('including', 1), ('hardware', 1), ('design', 1), ('technique', 1), ('provides', 1)]
[('based', 1), ('author', 1), ('twenty', 1), ('year', 1), ('research', 1), ('experience', 1), ('book', 1), ('provides', 1), ('holistic', 1), ('picture', 1), ('factor', 1), ('enable', 1), ('architecture', 1), ('construction', 1), ('engineering', 1), ('organization', 1), ('explore', 1), ('potential', 1), ('improve', 1), ('business', 1), ('achieve', 1), ('sustainable', 1), ('competitive', 1), ('advantage', 1)]
[('volume', 1), ('contains', 1), ('information', 1), ('automatic', 1), ('acquisition', 1), ('biographic', 1), ('knowledge', 1), ('encyclopedic', 1), ('text', 1), ('web', 1), ('interaction', 1), ('navigation', 1), ('problem', 1), ('hypertext', 1)]
[('engineering', 2), ('system', 2), ('work', 1), ('contains', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('presented', 1), ('st', 1), ('international', 1), ('congress', 1), ('technology', 1), ('engitek', 1), ('topic', 1), ('covered', 1), ('include', 1), ('communication', 1), ('electronic', 1), ('circuit', 1), ('microwave', 1), ('electromagnetics', 1), ('signal', 1), ('processing', 1), ('energy', 1), ('power', 1), ('biomedical', 1), ('nanotechnology', 1), ('mechatronics', 1), ('robotics', 1)]
[('research', 2), ('civil', 2), ('electrical', 2), ('management', 2), ('engineering', 2), ('book', 1), ('fundamental', 1), ('contribution', 1), ('application', 1), ('design', 1), ('electronic', 1), ('provide', 1), ('sustainable', 1), ('solution', 1), ('future', 1), ('primarily', 1), ('graduate', 1), ('computer', 1), ('science', 1), ('information', 1), ('technology', 1), ('scholar', 1)]
[('business', 3), ('management', 3), ('economic', 2), ('contains', 1), ('contribution', 1), ('presented', 1), ('sixth', 1), ('international', 1), ('conference', 1), ('febm', 1), ('online', 1), ('october', 1), ('book', 1), ('aim', 1), ('academic', 1), ('industry', 1), ('expert', 1), ('field', 1), ('economics', 1)]
[('optical', 2), ('aimed', 1), ('guide', 1), ('student', 1), ('researcher', 1), ('practicing', 1), ('engineer', 1), ('book', 1), ('cover', 1), ('fundamental', 1), ('concept', 1), ('issue', 1), ('state', 1), ('art', 1), ('development', 1), ('network', 1), ('data', 1), ('transmission', 1), ('control', 1), ('protocol', 1), ('access', 1)]
[('digital', 2), ('book', 1), ('introduces', 1), ('application', 1), ('industry', 1), ('machine', 1), ('tool', 1), ('overview', 1), ('latest', 1), ('available', 1), ('technology', 1), ('focus', 1), ('twinning', 1), ('communication', 1), ('industrial', 1), ('control', 1), ('motion', 1), ('input', 1), ('output', 1), ('device', 1), ('along', 1), ('sustainability', 1), ('smes', 1)]
[('array', 2), ('book', 1), ('investigates', 1), ('advanced', 1), ('theory', 1), ('methodology', 1), ('beamforming', 1), ('focus', 1), ('antenna', 1), ('enabled', 1), ('wireless', 1), ('communication', 1), ('technology', 1)]
[('engineering', 2), ('system', 2), ('book', 1), ('address', 1), ('aspect', 1), ('human', 1), ('factor', 1), ('provides', 1), ('detailed', 1), ('discussion', 1), ('novel', 1), ('approach', 1), ('tool', 1), ('artificial', 1), ('cognitive', 1), ('intelligent', 1), ('technology', 1), ('automation', 1)]
[('technology', 2), ('book', 1), ('includes', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('emerging', 1), ('trend', 1), ('iot', 1), ('computing', 1), ('iceict', 1), ('held', 1), ('goel', 1), ('institute', 1), ('management', 1), ('lucknow', 1), ('india', 1)]
[('numerical', 2), ('method', 2), ('chemical', 2), ('engineering', 2), ('solution', 2), ('vital', 1), ('practice', 1), ('allowing', 1), ('real', 1), ('world', 1), ('problem', 1), ('written', 1), ('concise', 1), ('practical', 1), ('format', 1), ('textbook', 1), ('introduces', 1), ('reader', 1), ('required', 1), ('discipline', 1), ('enables', 1), ('validate', 1), ('using', 1), ('python', 1), ('simulink', 1)]
[('ai', 2), ('text', 1), ('quality', 1), ('research', 1), ('article', 1), ('ranging', 1), ('mathematical', 1), ('disposition', 1), ('neural', 1), ('net', 1), ('cognitive', 1), ('computing', 1), ('quantum', 1), ('machine', 1), ('learning', 1), ('multi', 1), ('modal', 1), ('emotion', 1), ('recognition', 1), ('system', 1), ('responsible', 1), ('accessibility', 1), ('inclusion', 1), ('artificial', 1), ('intelligence', 1), ('enabled', 1), ('application', 1), ('segment', 1), ('health', 1), ('pharma', 1), ('education', 1)]
[('book', 1), ('david', 1), ('barkai', 1), ('offer', 1), ('unique', 1), ('compelling', 1), ('account', 1), ('remarkable', 1), ('technological', 1), ('journey', 1), ('drawing', 1), ('rich', 1), ('experience', 1), ('working', 1), ('forefront', 1), ('high', 1), ('performance', 1), ('computing', 1)]
[('technology', 2), ('health', 1), ('become', 1), ('hot', 1), ('topic', 1), ('academic', 1), ('research', 1), ('employ', 1), ('theory', 1), ('social', 1), ('network', 1), ('different', 1), ('level', 1), ('prediction', 1), ('analysis', 1), ('brought', 1), ('new', 1), ('possibility', 1), ('development', 1)]
[('smart', 3), ('city', 3), ('volume', 1), ('book', 1), ('thoroughly', 1), ('explores', 1), ('shed', 1), ('light', 1), ('prominent', 1), ('element', 1), ('phenomenon', 1), ('generates', 1), ('blueprint', 1)]
[('smart', 3), ('city', 3), ('volume', 1), ('book', 1), ('thoroughly', 1), ('explores', 1), ('shed', 1), ('light', 1), ('prominent', 1), ('element', 1), ('phenomenon', 1), ('generates', 1), ('blueprint', 1)]
[('book', 2), ('reader', 2), ('day', 2), ('technical', 2), ('help', 1), ('overcome', 1), ('difficulty', 1), ('task', 1), ('seek', 1), ('insight', 1), ('solution', 1), ('famous', 1), ('open', 1), ('source', 1), ('project', 1), ('different', 1), ('manual', 1), ('mix', 1), ('knowledge', 1), ('real', 1), ('world', 1), ('application', 1), ('theoretical', 1), ('content', 1), ('providing', 1), ('practical', 1), ('engaging', 1), ('approach', 1), ('learning', 1), ('python', 1)]
[('unique', 1), ('book', 1), ('examines', 1), ('career', 1), ('michel', 1), ('ocelot', 1), ('earliest', 1), ('work', 1), ('latest', 1), ('research', 1), ('production', 1), ('highlight', 1), ('director', 1), ('role', 1), ('panorama', 1), ('contemporary', 1), ('animated', 1), ('cinema', 1), ('relationship', 1), ('tradition', 1), ('artistic', 1), ('cinematographic', 1)]
[('science', 2), ('book', 1), ('provides', 1), ('broad', 1), ('coverage', 1), ('data', 1), ('ml', 1), ('fundamental', 1), ('material', 1), ('researcher', 1), ('confidently', 1), ('leverage', 1), ('technique', 1), ('research', 1), ('project', 1)]
[('writer', 2), ('game', 2), ('industry', 2), ('want', 1), ('become', 1), ('book', 1), ('award', 1), ('winning', 1), ('anna', 1), ('megill', 1), ('provides', 1), ('essential', 1), ('information', 1), ('guidance', 1), ('need', 1), ('understand', 1), ('foot', 1), ('ladder', 1)]
[('data', 3), ('industry', 2), ('book', 1), ('cover', 1), ('aspect', 1), ('science', 1), ('predictive', 1), ('analytics', 1), ('used', 1), ('oil', 1), ('gas', 1), ('looking', 1), ('challenge', 1), ('processing', 1), ('modelling', 1), ('unique', 1), ('includes', 1), ('upstream', 1), ('management', 1), ('intelligent', 1), ('digital', 1), ('value', 1), ('chain', 1), ('integration', 1), ('crude', 1), ('basket', 1), ('forecasting', 1), ('forth', 1)]
[('digital', 3), ('highlight', 2), ('innovation', 2), ('institutional', 2), ('transformation', 2), ('book', 1), ('number', 1), ('software', 1), ('engineering', 1), ('technique', 1), ('design', 1), ('develop', 1), ('system', 1), ('application', 1), ('cover', 1), ('perspective', 1), ('create', 1), ('novel', 1), ('product', 1), ('service', 1), ('arrangement', 1), ('critical', 1)]
[('data', 2), ('field', 2), ('book', 1), ('focus', 1), ('different', 1), ('application', 1), ('multimedia', 1), ('supervised', 1), ('unsupervised', 1), ('engineering', 1), ('modern', 1), ('world', 1), ('includes', 1), ('ai', 1), ('based', 1), ('soft', 1), ('computing', 1), ('machine', 1), ('technique', 1), ('medical', 1), ('diagnosis', 1), ('biometric', 1), ('networking', 1), ('manufacturing', 1), ('science', 1), ('automation', 1), ('electronics', 1), ('industry', 1), ('many', 1), ('relevant', 1)]
[('game', 3), ('reader', 2), ('effective', 2), ('serious', 2), ('tabletop', 2), ('book', 1), ('provides', 1), ('tool', 1), ('method', 1), ('create', 1), ('cover', 1), ('design', 1), ('development', 1), ('process', 1), ('thoroughly', 1), ('guiding', 1), ('necessary', 1), ('mechanic', 1), ('message', 1), ('motivation', 1), ('understood', 1), ('order', 1), ('build', 1), ('educational', 1)]
[('culture', 2), ('book', 1), ('focus', 1), ('need', 1), ('integrate', 1), ('digital', 1), ('technology', 1), ('fully', 1), ('organization', 1), ('th', 1), ('edition', 1), ('includes', 1), ('new', 1), ('topic', 1), ('challenge', 1), ('assimilating', 1), ('multiple', 1), ('generation', 1), ('employee', 1), ('establishing', 1), ('working', 1), ('resilient', 1), ('adaptive', 1), ('configured', 1), ('platform', 1), ('driven', 1), ('data', 1), ('asset', 1)]
[('cyberterrorism', 2), ('attack', 2), ('book', 1), ('discus', 1), ('analysis', 1), ('current', 1), ('posture', 1), ('cyberwarfare', 1), ('hybrid', 1), ('threat', 1), ('sector', 1), ('specific', 1), ('cyber', 1), ('form', 1), ('present', 1), ('recent', 1), ('action', 1), ('eu', 1), ('usa', 1), ('nation', 1), ('taken', 1), ('order', 1), ('strengthen', 1), ('system', 1)]
[('overview', 2), ('book', 1), ('start', 1), ('common', 1), ('threat', 1), ('risk', 1), ('management', 1), ('cybercrime', 1), ('explaining', 1), ('key', 1), ('cybersecurity', 1), ('area', 1), ('process', 1), ('technology', 1), ('chapter', 1), ('build', 1), ('previous', 1), ('provide', 1), ('comprehensive', 1), ('accessible', 1), ('student', 1), ('seasoned', 1), ('professional', 1)]
[('book', 2), ('issue', 2), ('university', 2), ('learning', 2), ('devoted', 1), ('faced', 1), ('field', 1), ('distance', 1), ('covid', 1), ('digitalization', 1), ('time', 1), ('devotes', 1), ('lot', 1), ('space', 1), ('web', 1), ('industry', 1), ('artifical', 1), ('intelligence', 1), ('digital', 1), ('equity', 1)]
[('dark', 3), ('web', 3), ('book', 2), ('security', 2), ('cyber', 1), ('crime', 1), ('business', 1), ('area', 1), ('mostly', 1), ('focused', 1), ('objective', 1), ('present', 1), ('interdisciplinary', 1), ('easily', 1), ('understandable', 1), ('research', 1), ('benefit', 1), ('agency', 1), ('professional', 1), ('counter', 1), ('terrorism', 1), ('expert', 1), ('policymakers', 1)]
[('career', 2), ('unique', 1), ('self', 1), ('help', 1), ('guide', 1), ('equips', 1), ('undergraduate', 1), ('postgraduate', 1), ('student', 1), ('early', 1), ('researcher', 1), ('within', 1), ('science', 1), ('transferrable', 1), ('communication', 1), ('skill', 1), ('adapt', 1), ('refer', 1), ('back', 1), ('progress', 1)]
[('game', 3), ('design', 2), ('tool', 2), ('reader', 2), ('use', 2), ('problem', 2), ('book', 1), ('present', 1), ('practical', 1), ('solve', 1), ('real', 1), ('world', 1), ('written', 1), ('toolbox', 1), ('designer', 1), ('offer', 1), ('hand', 1), ('approach', 1), ('clear', 1), ('easy', 1), ('quickly', 1), ('find', 1), ('right', 1), ('solution', 1), ('facing', 1)]
[('crowdsourcing', 2), ('social', 2), ('book', 1), ('systematic', 1), ('discussion', 1), ('many', 1), ('area', 1), ('employing', 1), ('essential', 1), ('part', 1), ('innovation', 1), ('foster', 1), ('theoretical', 1), ('methodological', 1), ('established', 1), ('validated', 1), ('empirical', 1), ('work', 1), ('concerning', 1), ('medium', 1), ('additional', 1), ('focus', 1), ('experimental', 1), ('applied', 1), ('topic', 1)]
[('alloy', 3), ('material', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('description', 1), ('mechanical', 1), ('behavior', 1), ('advanced', 1), ('using', 1), ('modeling', 1), ('simulation', 1), ('includes', 1), ('high', 1), ('entropy', 1), ('amorphous', 1), ('nickel', 1), ('based', 1), ('superalloys', 1), ('graphene', 1), ('lithium', 1), ('light', 1), ('nanostructured', 1), ('reinforced', 1), ('composite', 1)]
[('artificial', 2), ('intelligence', 2), ('machine', 2), ('learning', 2), ('thermal', 2), ('spray', 2), ('industry', 2), ('technique', 2), ('highlight', 1), ('used', 1), ('shed', 1), ('light', 1), ('ai', 1), ('versatility', 1), ('applicability', 1), ('solving', 1), ('problem', 1), ('related', 1), ('conventional', 1), ('simulation', 1), ('numeric', 1), ('modeling', 1)]
[('engineering', 2), ('system', 1), ('medicine', 1), ('introduces', 1), ('topic', 1), ('physiological', 1), ('circuit', 1), ('cell', 1), ('organ', 1), ('communicate', 1), ('written', 1), ('accessible', 1), ('style', 1), ('suitable', 1), ('anyone', 1), ('background', 1), ('biology', 1), ('physic', 1), ('math', 1), ('computer', 1), ('science', 1), ('chemistry', 1), ('subject', 1)]
[('game', 4), ('comprehensive', 1), ('guidebook', 1), ('long', 1), ('term', 1), ('storytelling', 1), ('mobile', 1), ('service', 1), ('aka', 1), ('live', 1), ('book', 1), ('formalizes', 1), ('creative', 1), ('technique', 1), ('writing', 1), ('narrative', 1), ('design', 1), ('platform', 1), ('revenue', 1), ('model', 1), ('shown', 1), ('drastic', 1), ('growth', 1), ('change', 1), ('past', 1), ('year', 1)]
[('book', 1), ('address', 1), ('critical', 1), ('question', 1), ('rise', 1), ('usage', 1), ('future', 1), ('ia', 1), ('practice', 1)]
[('practice', 2), ('ea', 2), ('implementation', 1), ('enterprise', 1), ('architecture', 1), ('slow', 1), ('challenging', 1), ('despite', 1), ('growing', 1), ('popularity', 1), ('interest', 1), ('sector', 1), ('book', 1), ('demonstrates', 1), ('challenge', 1), ('addressed', 1), ('institutionalization', 1), ('foster', 1), ('organizational', 1), ('capability', 1), ('sustainability', 1), ('competitiveness', 1)]
[('book', 1), ('present', 1), ('basic', 1), ('recent', 1), ('advancement', 1), ('natural', 1), ('language', 1), ('processing', 1), ('information', 1), ('retrieval', 1), ('single', 1), ('volume', 1), ('serve', 1), ('ideal', 1), ('reference', 1), ('text', 1), ('graduate', 1), ('student', 1), ('academic', 1), ('researcher', 1), ('interdisciplinary', 1), ('area', 1), ('electrical', 1), ('engineering', 1)]
[('game', 3), ('book', 3), ('tester', 2), ('industry', 2), ('want', 1), ('work', 1), ('video', 1), ('provides', 1), ('essential', 1), ('information', 1), ('guidance', 1), ('need', 1), ('understand', 1), ('foot', 1), ('ladder', 1), ('interest', 1), ('beginner', 1), ('aspiring', 1), ('qa', 1)]
[('technology', 3), ('data', 2), ('driven', 2), ('artificial', 2), ('intelligence', 2), ('book', 1), ('highlight', 1), ('importance', 1), ('supply', 1), ('chain', 1), ('management', 1), ('cover', 1), ('important', 1), ('concept', 1), ('enabling', 1), ('industry', 1), ('impact', 1), ('lean', 1), ('manufacturing', 1)]
[('technique', 2), ('method', 2), ('book', 1), ('comprehensively', 1), ('discus', 1), ('modeling', 1), ('real', 1), ('world', 1), ('industrial', 1), ('problem', 1), ('innovative', 1), ('optimization', 1), ('heuristic', 1), ('finite', 1), ('operation', 1), ('research', 1), ('intelligent', 1), ('algorithm', 1), ('agent', 1), ('based', 1)]
[('xps', 3), ('analysis', 2), ('book', 1), ('provides', 1), ('theoretical', 1), ('background', 1), ('ray', 1), ('photoelectron', 1), ('spectroscopy', 1), ('practical', 1), ('guide', 1), ('spectrum', 1), ('using', 1), ('rxpsg', 1), ('software', 1), ('powerful', 1), ('tool', 1)]
[('book', 1), ('compilation', 1), ('research', 1), ('paper', 1), ('presentation', 1), ('fourth', 1), ('annual', 1), ('international', 1), ('conference', 1), ('data', 1), ('science', 1), ('machine', 1), ('learning', 1), ('blockchain', 1), ('technology', 1), ('aicdmb', 1), ('mysuru', 1), ('india', 1), ('march', 1)]
[('business', 3), ('reader', 2), ('game', 2), ('practical', 1), ('guide', 1), ('help', 1), ('think', 1), ('various', 1), ('planning', 1), ('aspect', 1), ('proposed', 1), ('grow', 1), ('become', 1), ('successful', 1), ('book', 1), ('includes', 1), ('customary', 1), ('plan', 1), ('heading', 1), ('worksheet', 1), ('record', 1), ('working', 1), ('out', 1), ('start', 1), ('articulate', 1), ('vision', 1), ('behind', 1)]
[('method', 4), ('software', 3), ('agile', 3), ('development', 2), ('covered', 2), ('book', 1), ('cover', 1), ('detail', 1), ('scrum', 1), ('best', 1), ('practice', 1), ('devops', 1), ('quality', 1), ('clean', 1), ('code', 1), ('separate', 1), ('chapter', 1), ('introduction', 1), ('want', 1), ('adopt', 1), ('already', 1), ('working', 1)]
[('combining', 1), ('signal', 1), ('language', 1), ('model', 1), ('place', 1), ('book', 1), ('explores', 1), ('sound', 1), ('represented', 1), ('manipulated', 1), ('computer', 1), ('system', 1), ('device', 1), ('come', 1), ('recognize', 1), ('particular', 1), ('sonic', 1), ('pattern', 1), ('musically', 1), ('meaningful', 1), ('creative', 1), ('lens', 1), ('information', 1), ('theory', 1)]
[('generative', 1), ('adversarial', 1), ('network', 1), ('gans', 1), ('practice', 1), ('inclusive', 1), ('resource', 1), ('provides', 1), ('solid', 1), ('foundation', 1), ('gan', 1), ('methodology', 1), ('application', 1), ('real', 1), ('world', 1), ('project', 1), ('underlying', 1), ('mathematical', 1), ('theoretical', 1), ('concept', 1)]
[('cloud', 2), ('security', 2), ('book', 1), ('latest', 1), ('development', 1), ('ai', 1), ('blockchain', 1), ('ml', 1), ('dl', 1), ('strategy', 1), ('assessing', 1), ('privacy', 1), ('infrastructure', 1), ('secure', 1), ('data', 1), ('breach', 1), ('chapter', 1), ('designed', 1), ('granular', 1), ('framework', 1), ('starting', 1), ('concept', 1), ('followed', 1), ('hand', 1), ('assessment', 1), ('technique', 1), ('based', 1), ('real', 1), ('world', 1), ('study', 1)]
[('book', 1), ('collection', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('topic', 1), ('explainable', 1), ('agency', 1), ('artificial', 1), ('intelligence', 1), ('xai', 1), ('including', 1), ('counterfactuals', 1), ('fairness', 1), ('human', 1), ('evaluation', 1), ('iterative', 1), ('active', 1), ('communication', 1), ('among', 1), ('agent', 1)]
[('raspberry', 2), ('pi', 2), ('system', 2), ('administration', 2), ('first', 1), ('new', 1), ('series', 1), ('exploring', 1), ('basic', 1), ('operating', 1), ('volume', 1), ('compendium', 1), ('easy', 1), ('use', 1), ('essential', 1), ('o', 1), ('novice', 1), ('user', 1)]
[('book', 1), ('explores', 1), ('smart', 1), ('city', 1), ('enable', 1), ('new', 1), ('playful', 1), ('way', 1), ('citizen', 1), ('experience', 1), ('inhabit', 1), ('socialise', 1), ('within', 1), ('urban', 1), ('environment', 1), ('resource', 1), ('scholar', 1), ('researcher', 1), ('information', 1), ('technology', 1)]
[('data', 3), ('sleep', 2), ('night', 2), ('recovery', 2), ('part', 1), ('modern', 1), ('defensive', 1), ('strategy', 1), ('business', 1), ('guaranteeing', 1), ('recoverability', 1), ('busy', 1), ('manager', 1), ('knowing', 1), ('comprehensive', 1), ('plan', 1), ('enable', 1), ('book', 1), ('focus', 1), ('need', 1), ('ready', 1), ('successful', 1), ('help', 1), ('better', 1)]
[('networked', 3), ('state', 2), ('estimation', 2), ('method', 2), ('multi', 2), ('rate', 2), ('system', 2), ('book', 1), ('present', 1), ('novel', 1), ('several', 1), ('class', 1), ('including', 1), ('various', 1), ('complex', 1), ('induced', 1), ('phenomenon', 1), ('communication', 1), ('protocol', 1)]
[('system', 2), ('book', 1), ('focus', 1), ('artificial', 1), ('intelligence', 1), ('machine', 1), ('learning', 1), ('technology', 1), ('progressively', 1), ('incorporated', 1), ('wide', 1), ('range', 1), ('product', 1), ('including', 1), ('consumer', 1), ('gadget', 1), ('smart', 1), ('personal', 1), ('assistant', 1), ('cutting', 1), ('edge', 1), ('medical', 1), ('diagnostic', 1), ('quantum', 1), ('computing', 1)]
[('digital', 3), ('transformation', 3), ('process', 3), ('modern', 2), ('enterprise', 2), ('accelerating', 1), ('modernize', 1), ('core', 1), ('technology', 1), ('capability', 1), ('book', 1), ('serf', 1), ('practitioner', 1), ('guide', 1), ('discus', 1), ('key', 1), ('tenet', 1), ('principle', 1), ('proven', 1), ('method', 1)]
[('book', 1), ('introduce', 1), ('na', 1), ('due', 1), ('superiority', 1), ('state', 1), ('art', 1), ('performance', 1), ('various', 1), ('application', 1), ('image', 1), ('classification', 1), ('object', 1), ('detection', 1)]
[('game', 2), ('technical', 2), ('animation', 2), ('industry', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('video', 1), ('covering', 1), ('next', 1), ('generation', 1), ('pipeline', 1), ('developer', 1), ('utilize', 1), ('create', 1), ('cover', 1), ('workflow', 1), ('start', 1), ('finish', 1), ('looking', 1), ('software', 1), ('hardware', 1), ('standard', 1), ('process', 1)]
[('music', 2), ('composition', 2), ('along', 1), ('theory', 1), ('book', 1), ('includes', 1), ('multitude', 1), ('clearly', 1), ('defined', 1), ('hand', 1), ('project', 1), ('exercise', 1), ('designed', 1), ('prepare', 1), ('reader', 1), ('go', 1), ('field', 1), ('complete', 1), ('understanding', 1), ('art', 1), ('craft', 1), ('game', 1), ('visual', 1), ('medium', 1)]
[('advance', 2), ('work', 2), ('future', 2), ('book', 1), ('examines', 1), ('global', 1), ('technological', 1), ('shape', 1), ('way', 1), ('allocate', 1), ('today', 1), ('might', 1), ('exploring', 1), ('robotics', 1), ('artificial', 1), ('intelligence', 1), ('green', 1), ('technology', 1), ('implication', 1), ('workforce', 1), ('skill', 1), ('welfare', 1)]
[('management', 4), ('risk', 2), ('financial', 2), ('book', 1), ('present', 1), ('contemporary', 1), ('issue', 1), ('challenge', 1), ('finance', 1), ('time', 1), ('rapid', 1), ('transformation', 1), ('due', 1), ('technological', 1), ('advancement', 1), ('includes', 1), ('research', 1), ('article', 1), ('based', 1), ('economic', 1), ('data', 1), ('intends', 1), ('cover', 1), ('emerging', 1), ('role', 1), ('analytics', 1), ('asset', 1)]
[('ux', 1), ('research', 1), ('key', 1), ('comprehending', 1), ('user', 1), ('behavior', 1), ('motivation', 1), ('preference', 1), ('developing', 1), ('delightful', 1), ('experience', 1), ('thrives', 1), ('effective', 1), ('teamwork', 1), ('collaboration', 1)]
[('chinese', 2), ('book', 1), ('present', 1), ('contextualized', 1), ('overview', 1), ('history', 1), ('animated', 1), ('film', 1), ('pointing', 1), ('influential', 1), ('self', 1), ('definition', 1), ('culture', 1), ('employed', 1), ('animation', 1), ('art', 1), ('mao', 1), ('zedong', 1), ('rule', 1)]
[('big', 3), ('data', 3), ('computing', 2), ('book', 1), ('primarily', 1), ('aim', 1), ('provide', 1), ('depth', 1), ('understanding', 1), ('recent', 1), ('advance', 1), ('technology', 1), ('methodology', 1), ('application', 1), ('along', 1), ('introductory', 1), ('detail', 1), ('model', 1), ('apache', 1), ('hadoop', 1), ('mapreduce', 1), ('hive', 1), ('pig', 1), ('mahout', 1), ('memory', 1), ('storage', 1), ('system', 1), ('nosql', 1), ('database', 1), ('streaming', 1), ('service', 1)]
[('digitalization', 2), ('shaping', 1), ('everyday', 1), ('life', 1), ('yet', 1), ('navigating', 1), ('process', 1), ('feel', 1), ('trek', 1), ('unknown', 1), ('possibility', 1), ('consequence', 1), ('unclear', 1), ('difficult', 1), ('grasp', 1)]
[('book', 2), ('single', 1), ('purpose', 1), ('help', 1), ('everyone', 1), ('become', 1), ('computational', 1), ('thinker', 1), ('practical', 1), ('example', 1), ('easy', 1), ('grasp', 1), ('terminology', 1), ('guide', 1), ('navigating', 1), ('digital', 1), ('world', 1), ('improving', 1), ('efficiency', 1), ('productivity', 1), ('success', 1), ('immediately', 1)]
[('text', 1), ('present', 1), ('artificial', 1), ('intelligence', 1), ('based', 1), ('framework', 1), ('algorithm', 1), ('application', 1), ('perspective', 1), ('society', 1)]
[('book', 2), ('freshly', 1), ('updated', 1), ('edition', 1), ('barak', 1), ('engel', 1), ('add', 1), ('new', 1), ('section', 1), ('correspond', 1), ('chapter', 1), ('original', 1), ('security', 1), ('discipline', 1), ('business', 1), ('enabler', 1), ('sale', 1), ('legal', 1), ('compliance', 1), ('technology', 1), ('executive', 1), ('function', 1), ('goal', 1), ('entertain', 1), ('inform', 1)]
[('machine', 1), ('learning', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('data', 1), ('analytics', 1), ('new', 1), ('fresh', 1), ('technology', 1), ('increasingly', 1), ('adopted', 1), ('field', 1), ('medicine', 1)]
[('artificial', 2), ('intelligence', 2), ('machine', 2), ('learning', 2), ('smart', 2), ('community', 2), ('application', 2), ('concept', 1), ('present', 1), ('evolution', 1), ('challenge', 1), ('limitation', 1), ('intelligent', 1), ('system', 1)]
[('book', 2), ('fluid', 2), ('dynamic', 2), ('mathematical', 2), ('understanding', 2), ('centralizes', 1), ('main', 1), ('current', 1), ('topic', 1), ('theoretical', 1), ('applied', 1), ('intersection', 1), ('non', 1), ('environment', 1), ('accessible', 1), ('anyone', 1), ('basic', 1), ('level', 1), ('yet', 1), ('still', 1), ('engaging', 1), ('deeper', 1)]
[('cyberbullying', 2), ('social', 2), ('addressing', 1), ('issue', 1), ('find', 1), ('effective', 1), ('solution', 1), ('challenge', 1), ('web', 1), ('mining', 1), ('community', 1), ('particularly', 1), ('within', 1), ('realm', 1), ('medium', 1), ('context', 1), ('ai', 1), ('valuable', 1), ('tool', 1), ('combating', 1), ('diverse', 1), ('manifestation', 1), ('internet', 1), ('network', 1)]
[('iot', 4), ('ai', 3), ('technology', 2), ('aided', 2), ('book', 1), ('cover', 1), ('need', 1), ('solution', 1), ('business', 1), ('production', 1), ('show', 1), ('based', 1), ('us', 1), ('algorithm', 1), ('model', 1), ('bring', 1), ('desired', 1), ('result', 1), ('last', 1), ('part', 1), ('focus', 1), ('technique', 1), ('data', 1), ('analytics', 1), ('visualization', 1), ('tool', 1)]
[('microsoft', 2), ('second', 1), ('edition', 1), ('concept', 1), ('azure', 1), ('discussed', 1), ('playing', 1), ('huge', 1), ('role', 1), ('artificial', 1), ('intelligence', 1), ('machine', 1), ('learning', 1), ('relationship', 1), ('openai', 1), ('examined', 1), ('overview', 1), ('chatgpt', 1), ('provided', 1), ('discussion', 1), ('social', 1), ('implication', 1), ('ai', 1)]
[('illustrating', 1), ('theoretical', 1), ('foundation', 1), ('incorporating', 1), ('practitioner', 1), ('first', 1), ('hand', 1), ('experience', 1), ('book', 1), ('practical', 1), ('guide', 1), ('successful', 1), ('autonomous', 1), ('experimentation', 1)]
[('technique', 2), ('healthcare', 2), ('system', 2), ('book', 1), ('provides', 1), ('examination', 1), ('application', 1), ('soft', 1), ('computing', 1), ('related', 1), ('used', 1), ('reference', 1), ('guide', 1), ('assessing', 1), ('role', 1), ('various', 1), ('machine', 1), ('learning', 1), ('fuzzy', 1), ('logic', 1), ('statistical', 1), ('mathematics', 1), ('play', 1), ('advancement', 1), ('smart', 1)]
[('iot', 2), ('security', 2), ('book', 1), ('discus', 1), ('various', 1), ('recent', 1), ('technique', 1), ('solution', 1), ('related', 1), ('deployment', 1), ('especially', 1), ('privacy', 1), ('address', 1), ('variety', 1), ('subject', 1), ('including', 1), ('comprehensive', 1), ('overview', 1), ('cover', 1), ('detail', 1), ('challenge', 1), ('layer', 1)]
[('book', 1), ('primarily', 1), ('theoretically', 1), ('oriented', 1), ('treatment', 1), ('jumping', 1), ('automaton', 1), ('grammar', 1), ('covering', 1), ('essential', 1), ('theoretical', 1), ('topic', 1), ('concerning', 1), ('including', 1), ('power', 1), ('property', 1), ('transformation', 1)]
[('game', 3), ('ai', 2), ('volume', 2), ('uncovered', 1), ('kick', 1), ('brand', 1), ('new', 1), ('series', 1), ('book', 1), ('focus', 1), ('development', 1), ('artificial', 1), ('intelligence', 1), ('video', 1), ('brings', 1), ('together', 1), ('collected', 1), ('wisdom', 1), ('idea', 1), ('trick', 1), ('cutting', 1), ('edge', 1), ('technique', 1), ('top', 1), ('professional', 1), ('researcher', 1), ('around', 1), ('world', 1)]
[('deep', 3), ('learning', 3), ('image', 2), ('introduces', 1), ('fundamental', 1), ('principle', 1), ('explanation', 1), ('basic', 1), ('element', 1), ('required', 1), ('understanding', 1), ('applying', 1), ('model', 1), ('feature', 1), ('coding', 1), ('structure', 1), ('using', 1), ('python', 1), ('pytorch', 1), ('presenting', 1), ('four', 1), ('typical', 1), ('case', 1), ('study', 1), ('classification', 1), ('object', 1), ('detection', 1), ('semantic', 1), ('segmentation', 1), ('captioning', 1)]
[('technique', 3), ('book', 2), ('service', 2), ('cover', 1), ('soft', 1), ('computing', 1), ('provide', 1), ('optimal', 1), ('solution', 1), ('optimization', 1), ('problem', 1), ('using', 1), ('single', 1), ('multiple', 1), ('objective', 1), ('focus', 1), ('basic', 1), ('design', 1), ('principle', 1), ('analysis', 1), ('used', 1), ('improve', 1), ('quality', 1), ('software', 1), ('based', 1), ('oriented', 1), ('architecture', 1)]
[('cad', 2), ('step', 2), ('tutorial', 1), ('textbook', 1), ('present', 1), ('many', 1), ('example', 1), ('main', 1), ('characteristic', 1), ('working', 1), ('possibility', 1), ('modern', 1), ('software', 1), ('solution', 1), ('catia', 1), ('practical', 1), ('study', 1), ('fem', 1), ('practice', 1)]
[('book', 1), ('shed', 1), ('light', 1), ('cutting', 1), ('edge', 1), ('technological', 1), ('platform', 1), ('give', 1), ('digital', 1), ('expert', 1), ('creatives', 1), ('business', 1), ('executive', 1), ('enormous', 1), ('economic', 1), ('possibility', 1), ('provides', 1), ('insight', 1), ('green', 1), ('metaverse', 1), ('innovative', 1), ('technology', 1), ('used', 1), ('achieving', 1), ('sdgs', 1)]
[('peh', 2), ('book', 1), ('encompasses', 1), ('current', 1), ('state', 1), ('art', 1), ('green', 1), ('piezoelectric', 1), ('energy', 1), ('harvesting', 1), ('technology', 1), ('highlight', 1), ('different', 1), ('aspect', 1), ('starting', 1), ('right', 1), ('material', 1), ('synthesis', 1), ('characterization', 1), ('technique', 1), ('application', 1)]
[('main', 1), ('objective', 1), ('conference', 1), ('provide', 1), ('common', 1), ('platform', 1), ('academia', 1), ('industry', 1), ('discus', 1), ('various', 1), ('technological', 1), ('challenge', 1), ('share', 1), ('cognitive', 1), ('thought', 1)]
[('idea', 1), ('signal', 1), ('system', 1), ('arises', 1), ('different', 1), ('discipline', 1), ('science', 1), ('engineering', 1), ('economics', 1), ('politics', 1), ('medicine', 1)]
[('production', 3), ('new', 2), ('system', 2), ('need', 2), ('due', 1), ('disruption', 1), ('occurring', 1), ('within', 1), ('process', 1), ('result', 1), ('different', 1), ('circumstance', 1), ('necessary', 1), ('provide', 1), ('safe', 1), ('pas', 1), ('crisis', 1), ('pandemic', 1), ('sustainable', 1), ('automated', 1), ('proposed', 1), ('adopted', 1), ('industrial', 1), ('manager', 1), ('book', 1), ('fulfills', 1)]
[('smart', 2), ('city', 2), ('various', 1), ('technological', 1), ('innovation', 1), ('played', 1), ('important', 1), ('role', 1), ('influenced', 1), ('society', 1), ('due', 1), ('voluminous', 1), ('data', 1), ('transaction', 1), ('within', 1), ('security', 1), ('privacy', 1), ('concern', 1), ('need', 1), ('dealt', 1), ('book', 1), ('discus', 1), ('utilization', 1), ('bio', 1), ('inspired', 1), ('computing', 1), ('procedure', 1), ('effective', 1), ('computational', 1), ('device', 1)]
[('data', 3), ('big', 2), ('cyber', 2), ('book', 1), ('discus', 1), ('direct', 1), ('confluence', 1), ('edgeai', 1), ('demonstrating', 1), ('detailed', 1), ('review', 1), ('recent', 1), ('threat', 1), ('countermeasure', 1), ('provides', 1), ('computational', 1), ('intelligence', 1), ('technique', 1), ('automated', 1), ('reasoning', 1), ('model', 1), ('capable', 1), ('fast', 1), ('training', 1), ('timely', 1), ('processing', 1), ('security', 1)]
[('network', 2), ('design', 2), ('book', 1), ('offer', 1), ('comprehensive', 1), ('overview', 1), ('beyond', 1), ('wireless', 1), ('along', 1), ('emerging', 1), ('technology', 1), ('support', 1), ('development', 1), ('includes', 1), ('discussion', 1), ('material', 1), ('used', 1), ('practical', 1), ('antenna', 1), ('application', 1), ('cell', 1), ('free', 1), ('massive', 1), ('mimo', 1), ('system', 1)]
[('large', 1), ('gap', 1), ('entrepreneurship', 1), ('research', 1), ('come', 1), ('human', 1), ('capital', 1), ('data', 1), ('analytics', 1), ('organizational', 1), ('science', 1), ('made', 1), ('significant', 1), ('advancement', 1), ('area', 1)]
[('research', 3), ('book', 2), ('area', 2), ('data', 2), ('science', 2), ('provides', 1), ('internationally', 1), ('respected', 1), ('collection', 1), ('scientific', 1), ('method', 1), ('technology', 1), ('application', 1), ('prove', 1), ('useful', 1), ('researcher', 1), ('professor', 1), ('student', 1), ('practitioner', 1), ('report', 1), ('novel', 1), ('work', 1), ('challenging', 1), ('topic', 1), ('surrounding', 1)]
[('security', 2), ('cissp', 2), ('information', 1), ('management', 1), ('handbook', 1), ('organized', 1), ('ten', 1), ('domain', 1), ('common', 1), ('body', 1), ('knowledge', 1), ('exam', 1), ('based', 1), ('consistently', 1), ('communicates', 1), ('fundamental', 1), ('concept', 1), ('needed', 1), ('true', 1)]
[('book', 1), ('focus', 1), ('detailed', 1), ('description', 1), ('utilization', 1), ('iot', 1), ('visual', 1), ('surveillance', 1), ('underlying', 1), ('technology', 1), ('critical', 1), ('application', 1), ('area', 1), ('smart', 1), ('grid', 1), ('emergency', 1), ('department', 1), ('intelligent', 1), ('traffic', 1), ('cam', 1), ('insurance', 1), ('automotive', 1), ('industry', 1)]
[('urgent', 1), ('need', 1), ('develop', 1), ('integrate', 1), ('new', 1), ('statistical', 1), ('mathematical', 1), ('visualization', 1), ('computational', 1), ('model', 1), ('ability', 1), ('analyze', 1), ('big', 1), ('data', 1), ('order', 1), ('retrieve', 1), ('useful', 1), ('information', 1), ('aid', 1), ('clinician', 1), ('accurately', 1), ('diagnosing', 1), ('treating', 1), ('patient', 1)]
[('book', 2), ('iot', 2), ('software', 2), ('reader', 2), ('create', 2), ('cover', 1), ('aspect', 1), ('internet', 1), ('thing', 1), ('development', 1), ('startup', 1), ('industry', 1), ('academic', 1), ('perspective', 1), ('ultimate', 1), ('goal', 1), ('empowering', 1), ('state', 1), ('art', 1), ('application', 1), ('case', 1), ('presented', 1), ('encourage', 1), ('innovative', 1), ('blue', 1), ('ocean', 1), ('product', 1)]
[('provides', 2), ('energy', 2), ('book', 1), ('basic', 1), ('fundamental', 1), ('knowledge', 1), ('various', 1), ('aspect', 1), ('aware', 1), ('computing', 1), ('component', 1), ('software', 1), ('system', 1), ('level', 1), ('broad', 1), ('range', 1), ('topic', 1), ('dealing', 1), ('power', 1), ('temperature', 1), ('related', 1), ('research', 1), ('area', 1), ('individual', 1), ('industry', 1), ('academia', 1)]
[('manufacturing', 3), ('erp', 2), ('system', 2), ('performance', 2), ('book', 1), ('show', 1), ('configured', 1), ('achieve', 1), ('logistics', 1), ('different', 1), ('environment', 1), ('process', 1), ('discrete', 1), ('project', 1), ('based', 1), ('example', 1), ('using', 1), ('microsoft', 1), ('dynamic', 1), ('provide', 1), ('guideline', 1), ('configure', 1), ('increased', 1), ('kind', 1), ('supply', 1), ('chain', 1)]
[('inspired', 3), ('algorithm', 3), ('bio', 2), ('noc', 2), ('book', 1), ('exclusively', 1), ('present', 1), ('depth', 1), ('information', 1), ('regarding', 1), ('solving', 1), ('real', 1), ('world', 1), ('problem', 1), ('focussing', 1), ('fault', 1), ('tolerant', 1), ('biological', 1), ('brain', 1), ('implemented', 1), ('document', 1), ('general', 1), ('specifically', 1), ('design', 1)]
[('cyber', 2), ('strategy', 2), ('resiliency', 2), ('risk', 1), ('driven', 1), ('security', 1), ('provides', 1), ('process', 1), ('roadmap', 1), ('company', 1), ('develop', 1), ('unified', 1), ('cybersecurity', 1), ('book', 1), ('discus', 1), ('step', 1), ('required', 1), ('conception', 1), ('plan', 1), ('pre', 1), ('planning', 1), ('mission', 1), ('vision', 1), ('principle', 1), ('strategic', 1), ('objective', 1), ('new', 1), ('initiative', 1), ('derivation', 1)]
[('animation', 3), ('written', 1), ('author', 1), ('workbook', 1), ('compiling', 1), ('year', 1), ('experience', 1), ('book', 1), ('intended', 1), ('student', 1), ('professional', 1), ('teaching', 1), ('manual', 1), ('exclusively', 1), ('devoted', 1), ('work', 1), ('provides', 1), ('key', 1), ('understand', 1), ('principle', 1), ('movement', 1), ('transmit', 1), ('character', 1)]
[('iot', 3), ('equipped', 2), ('within', 1), ('book', 1), ('reader', 1), ('learn', 1), ('implement', 1), ('device', 1), ('machine', 1), ('ai', 1), ('application', 1), ('using', 1), ('model', 1), ('methodology', 1), ('along', 1), ('array', 1), ('case', 1), ('study', 1)]
[('conference', 2), ('book', 1), ('contains', 1), ('proceeding', 1), ('icabcs', 1), ('non', 1), ('profit', 1), ('objective', 1), ('provide', 1), ('platform', 1), ('allows', 1), ('academician', 1), ('researcher', 1), ('scholar', 1), ('student', 1), ('exchange', 1), ('research', 1), ('innovative', 1), ('idea', 1), ('field', 1), ('artificial', 1), ('intelligence', 1), ('blockchain', 1), ('computing', 1), ('security', 1)]
[('conference', 2), ('book', 1), ('contains', 1), ('proceeding', 1), ('icabcs', 1), ('non', 1), ('profit', 1), ('objective', 1), ('provide', 1), ('platform', 1), ('allows', 1), ('academician', 1), ('researcher', 1), ('scholar', 1), ('student', 1), ('exchange', 1), ('research', 1), ('innovative', 1), ('idea', 1), ('field', 1), ('artificial', 1), ('intelligence', 1), ('blockchain', 1), ('computing', 1), ('security', 1)]
[('comprehensive', 2), ('text', 1), ('book', 1), ('present', 1), ('broad', 1), ('review', 1), ('traditional', 1), ('conventional', 1), ('deep', 1), ('learning', 1), ('aspect', 1), ('object', 1), ('detection', 1), ('various', 1), ('adversarial', 1), ('condition', 1), ('real', 1), ('world', 1), ('clear', 1), ('insightful', 1), ('highly', 1), ('style', 1)]
[('second', 1), ('new', 1), ('series', 1), ('instalment', 1), ('build', 1), ('insight', 1), ('provided', 1), ('volume', 1), ('provide', 1), ('compendium', 1), ('easy', 1), ('use', 1), ('essential', 1), ('raspberry', 1), ('pi', 1), ('o', 1), ('system', 1), ('administration', 1), ('novice', 1), ('user', 1)]
[('learning', 2), ('model', 2), ('federated', 1), ('distributed', 1), ('machine', 1), ('used', 1), ('many', 1), ('application', 1), ('today', 1), ('edge', 1), ('device', 1), ('execute', 1), ('local', 1), ('dataset', 1), ('computation', 1), ('power', 1), ('unutilized', 1)]
[('area', 3), ('ml', 3), ('book', 2), ('brings', 1), ('blend', 1), ('different', 1), ('machine', 1), ('learning', 1), ('recent', 1), ('advance', 1), ('use', 1), ('healthcare', 1), ('security', 1), ('encompasses', 1), ('several', 1), ('related', 1), ('keeping', 1), ('check', 1), ('traditional', 1), ('algorithm', 1)]
[('technology', 2), ('innovation', 2), ('pillar', 2), ('industry', 2), ('challenge', 1), ('improvement', 1), ('case', 1), ('study', 1), ('discus', 1), ('latest', 1), ('application', 1), ('nine', 1), ('relate', 1), ('support', 1), ('bridge', 1), ('gap', 1), ('digital', 1), ('physical', 1), ('world', 1), ('live', 1)]
[('book', 2), ('industry', 2), ('implementation', 2), ('offer', 1), ('depth', 1), ('look', 1), ('application', 1), ('provides', 1), ('conceptual', 1), ('framework', 1), ('design', 1), ('principle', 1), ('easy', 1), ('touch', 1), ('impact', 1), ('examines', 1), ('key', 1), ('technological', 1), ('advance', 1), ('potential', 1), ('economic', 1), ('technical', 1), ('benefit', 1), ('case', 1), ('study', 1), ('featuring', 1), ('real', 1), ('world', 1)]
[('problem', 3), ('data', 2), ('driven', 2), ('high', 2), ('utilizer', 2), ('book', 1), ('present', 1), ('method', 1), ('especially', 1), ('machine', 1), ('learning', 1), ('understanding', 1), ('approaching', 1), ('using', 1), ('example', 1), ('large', 1), ('public', 1), ('insurance', 1), ('program', 1), ('describes', 1), ('important', 1), ('goal', 1), ('approach', 1), ('different', 1), ('aspect', 1), ('identifies', 1), ('challenge', 1), ('posed', 1)]
[('technology', 2), ('book', 1), ('provide', 1), ('date', 1), ('information', 1), ('emerging', 1), ('trend', 1), ('wireless', 1), ('system', 1), ('enabling', 1), ('evolving', 1), ('application', 1), ('paradigm', 1), ('researcher', 1), ('developer', 1), ('engineer', 1), ('policy', 1), ('decision', 1), ('maker', 1), ('graduate', 1), ('student', 1)]
[('process', 3), ('model', 3), ('framework', 2), ('book', 1), ('proposal', 1), ('present', 1), ('modeling', 1), ('virtual', 1), ('enterprise', 1), ('focused', 1), ('composition', 1), ('consolidating', 1), ('individual', 1), ('consolidated', 1), ('us', 1), ('artificial', 1), ('intelligence', 1), ('knowledge', 1), ('base', 1), ('proposes', 1), ('data', 1), ('mining', 1), ('using', 1), ('fuzzy', 1), ('mathematical', 1), ('approach', 1)]
[('ai', 2), ('used', 2), ('goal', 1), ('book', 1), ('explore', 1), ('way', 1), ('method', 1), ('cybersecurity', 1), ('emphasis', 1), ('upon', 1), ('subcomponents', 1), ('machine', 1), ('learning', 1), ('computer', 1), ('vision', 1), ('neural', 1), ('network', 1), ('explores', 1), ('automate', 1), ('task', 1), ('encountered', 1), ('penetration', 1), ('testing', 1), ('threat', 1), ('hunting', 1), ('team', 1)]
[('modeling', 2), ('step', 2), ('textbook', 1), ('learning', 1), ('fundamental', 1), ('rigging', 1), ('animating', 1), ('modeled', 1), ('character', 1), ('use', 1), ('video', 1), ('game', 1), ('lesson', 1), ('book', 1), ('build', 1), ('reader', 1), ('skill', 1), ('acquired', 1), ('reading', 1), ('volume', 1)]
[('applied', 2), ('book', 1), ('introduces', 1), ('english', 1), ('speaking', 1), ('basic', 1), ('group', 1), ('method', 1), ('data', 1), ('handling', 1), ('algorithm', 1), ('used', 1), ('reference', 1), ('source', 1), ('researcher', 1), ('textbook', 1), ('specialized', 1), ('course', 1), ('seminar', 1), ('modeling', 1), ('mathematics', 1), ('statistic', 1)]
[('predictive', 1), ('analytics', 1), ('refers', 1), ('making', 1), ('prediction', 1), ('future', 1), ('based', 1), ('different', 1), ('parameter', 1), ('historical', 1), ('data', 1), ('machine', 1), ('learning', 1), ('artificial', 1), ('intelligence', 1), ('book', 1), ('provides', 1), ('recent', 1), ('advance', 1), ('field', 1), ('along', 1), ('case', 1), ('study', 1), ('real', 1), ('world', 1), ('example', 1)]
[('continuous', 2), ('lattice', 2), ('book', 1), ('contains', 1), ('article', 1), ('notion', 1), ('root', 1), ('dana', 1), ('scott', 1), ('work', 1), ('mathematical', 1), ('theory', 1), ('computation', 1), ('presented', 1), ('conference', 1), ('categorical', 1), ('topological', 1), ('aspect', 1), ('held', 1)]
[('blockchain', 2), ('technology', 2), ('discussion', 2), ('book', 1), ('shed', 1), ('light', 1), ('several', 1), ('aspect', 1), ('fact', 1), ('use', 1), ('varied', 1), ('area', 1), ('interest', 1), ('provides', 1), ('stepwise', 1), ('exhaustive', 1), ('literature', 1), ('survey', 1), ('rigorous', 1), ('experimental', 1), ('analysis', 1), ('demonstrate', 1), ('usage', 1), ('securing', 1), ('communication', 1)]
[('science', 4), ('technology', 2), ('applied', 2), ('smart', 1), ('design', 1), ('represents', 1), ('proceeding', 1), ('iee', 1), ('th', 1), ('international', 1), ('conference', 1), ('system', 1), ('innovation', 1), ('icasi', 1), ('held', 1), ('taitung', 1), ('taiwan', 1), ('november', 1), ('topic', 1), ('covered', 1), ('include', 1), ('information', 1), ('communication', 1), ('mathematics', 1), ('computer', 1), ('material', 1), ('engineering', 1)]
[('risk', 3), ('management', 2), ('within', 2), ('devops', 2), ('process', 2), ('book', 1), ('aim', 1), ('discus', 1), ('integration', 1), ('methodology', 1), ('introduces', 1), ('cyber', 1), ('investment', 1), ('model', 1), ('cybersecurity', 1), ('framework', 1)]
[('ai', 2), ('delving', 1), ('deeply', 1), ('enigmatic', 1), ('nature', 1), ('artificial', 1), ('intelligence', 1), ('unexplainable', 1), ('unpredictable', 1), ('uncontrollable', 1), ('explores', 1), ('various', 1), ('reason', 1), ('field', 1), ('challenging', 1)]
[('radar', 3), ('book', 2), ('present', 2), ('quantum', 2), ('theory', 2), ('imaging', 2), ('oil', 2), ('spill', 2), ('broad', 1), ('overview', 1), ('understanding', 1), ('principle', 1), ('automatic', 1), ('detection', 1), ('based', 1), ('especially', 1), ('schrödinger', 1), ('equation', 1), ('explains', 1), ('electromagnetic', 1), ('wave', 1), ('rage', 1), ('synthetic', 1), ('aperture', 1), ('sar', 1)]
[('cognition', 3), ('book', 2), ('team', 2), ('distributed', 2), ('cover', 1), ('intersection', 1), ('blending', 1), ('research', 1), ('area', 1), ('includes', 1), ('model', 1), ('framework', 1), ('different', 1), ('approach', 1), ('studying', 1), ('new', 1), ('measure', 1), ('showcase', 1), ('successful', 1), ('outcome', 1)]
[('level', 3), ('book', 2), ('expert', 2), ('cognitive', 2), ('expertise', 2), ('discus', 1), ('future', 1), ('human', 1), ('achieve', 1), ('performance', 1), ('domain', 1), ('collaboratively', 1), ('partnering', 1), ('system', 1), ('introduces', 1), ('augmentation', 1), ('model', 1), ('present', 1), ('several', 1), ('example', 1), ('synthetic', 1), ('architecture', 1)]
[('book', 1), ('introduces', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('student', 1), ('professional', 1), ('cover', 1), ('theory', 1), ('application', 1), ('statistical', 1), ('learning', 1), ('method', 1), ('concrete', 1), ('python', 1), ('code', 1), ('example', 1)]
[('technology', 3), ('process', 2), ('dram', 2), ('book', 1), ('describes', 1), ('lsi', 1), ('focus', 1), ('rapid', 1), ('progress', 1), ('state', 1), ('art', 1), ('dynamic', 1), ('random', 1), ('access', 1), ('memory', 1), ('longstanding', 1), ('driver', 1), ('si', 1), ('ulsi', 1), ('advance', 1), ('kbit', 1), ('gbit', 1), ('era', 1)]
[('research', 3), ('open', 2), ('problem', 2), ('book', 1), ('provide', 1), ('comprehensive', 1), ('overview', 1), ('recent', 1), ('area', 1), ('iot', 1), ('cover', 1), ('state', 1), ('art', 1), ('present', 1), ('solution', 1), ('direction', 1), ('targeted', 1), ('researcher', 1), ('scholar', 1), ('industry', 1), ('academia', 1)]
[('learning', 3), ('describes', 2), ('machine', 2), ('technique', 2), ('used', 2), ('book', 1), ('algorithm', 1), ('recent', 1), ('real', 1), ('world', 1), ('application', 1), ('provides', 1), ('introduction', 1), ('widely', 1), ('method', 1), ('cover', 1), ('deep', 1), ('related', 1), ('area', 1), ('function', 1), ('approximation', 1)]
[('learning', 2), ('book', 1), ('equips', 1), ('reader', 1), ('knowledge', 1), ('data', 1), ('analytics', 1), ('machine', 1), ('deep', 1), ('technique', 1), ('application', 1), ('defined', 1), ('umbrella', 1), ('industry', 1)]
[('employee', 2), ('modest', 1), ('sized', 1), ('volume', 1), ('book', 1), ('offer', 1), ('three', 1), ('valuable', 1), ('set', 1), ('knowledge', 1), ('provides', 1), ('best', 1), ('practice', 1), ('guidance', 1), ('virtually', 1), ('every', 1), ('large', 1), ('scale', 1), ('task', 1), ('modern', 1), ('manager', 1), ('involved', 1), ('recruiting', 1), ('hiring', 1), ('onboarding', 1), ('leading', 1), ('team', 1), ('engagement', 1), ('retention', 1), ('performance', 1), ('management', 1), ('working', 1)]
[('digital', 2), ('metaverse', 2), ('reality', 2), ('collection', 1), ('essay', 1), ('explores', 1), ('present', 1), ('future', 1), ('communication', 1), ('range', 1), ('interdisciplinary', 1), ('approach', 1), ('focus', 1), ('called', 1), ('combination', 1), ('multiple', 1), ('element', 1), ('technology', 1), ('including', 1), ('virtual', 1), ('augmented', 1), ('video', 1), ('user', 1), ('live', 1), ('within', 1)]
[('data', 4), ('new', 2), ('old', 2), ('technique', 2), ('provide', 2), ('practical', 2), ('integrity', 2), ('book', 1), ('review', 1), ('privacy', 1), ('preserving', 1), ('protection', 1), ('transit', 1), ('use', 1), ('rest', 1), ('position', 1), ('ledger', 1), ('lesson', 1), ('trust', 1), ('business', 1), ('utility', 1), ('based', 1), ('good', 1), ('understanding', 1), ('technology', 1)]
[('book', 2), ('concept', 2), ('support', 1), ('reader', 1), ('transition', 1), ('advanced', 1), ('independent', 1), ('game', 1), ('project', 1), ('deepening', 1), ('understanding', 1), ('development', 1), ('process', 1), ('cover', 1), ('make', 1), ('sufficiently', 1), ('viable', 1), ('ambitious', 1), ('innovative', 1), ('warrant', 1), ('creation', 1), ('polished', 1), ('prototype', 1), ('preparation', 1), ('publisher', 1), ('pitch', 1), ('divided', 1), ('six', 1)]
[('business', 2), ('importance', 1), ('operationally', 1), ('resilient', 1), ('becoming', 1), ('increasingly', 1), ('important', 1), ('driving', 1), ('force', 1), ('behind', 1), ('whether', 1), ('organization', 1), ('ensure', 1), ('valuable', 1), ('operation', 1), ('bounce', 1), ('back', 1), ('manage', 1), ('evade', 1), ('impactful', 1), ('occurrence', 1), ('security', 1), ('risk', 1), ('management', 1), ('capability', 1), ('book', 1), ('change', 1), ('perspective', 1)]
[('technology', 3), ('sustainable', 2), ('energy', 2), ('artificial', 2), ('intelligence', 2), ('blockchain', 2), ('internet', 2), ('thing', 2), ('text', 1), ('provides', 1), ('solution', 1), ('using', 1), ('smart', 1), ('present', 1), ('several', 1), ('case', 1), ('study', 1), ('application', 1), ('field', 1), ('focus', 1)]
[('java', 2), ('programmer', 2), ('next', 1), ('project', 1), ('unfortunately', 1), ('maybe', 1), ('python', 1), ('going', 1), ('speed', 1), ('hurry', 1), ('lot', 1), ('book', 1), ('beginner', 1), ('telling', 1), ('computer', 1), ('represents', 1), ('everything', 1), ('bit', 1), ('need', 1), ('extreme', 1)]
[('language', 4), ('natural', 2), ('sql', 2), ('database', 2), ('applying', 1), ('processing', 1), ('nlp', 1), ('concept', 1), ('help', 1), ('human', 1), ('daily', 1), ('life', 1), ('book', 1), ('discus', 1), ('automatic', 1), ('translation', 1), ('unstructured', 1), ('question', 1), ('nlq', 1), ('structured', 1), ('query', 1), ('statement', 1), ('using', 1), ('relational', 1), ('rdb', 1), ('interaction', 1), ('administrator', 1), ('general', 1), ('user', 1)]
[('embedded', 3), ('testing', 2), ('system', 2), ('book', 1), ('introduces', 1), ('software', 1), ('engineering', 1), ('management', 1), ('method', 1), ('proposing', 1), ('relevant', 1), ('theory', 1), ('technique', 1), ('promise', 1), ('final', 1), ('realization', 1), ('automated', 1), ('quality', 1), ('reliability', 1), ('become', 1), ('concern', 1), ('faced', 1), ('rising', 1), ('demand', 1), ('complexity', 1), ('scale', 1)]
[('blender', 3), ('free', 2), ('animation', 2), ('tm', 1), ('open', 1), ('source', 1), ('computer', 1), ('modeling', 1), ('suite', 1), ('incorporating', 1), ('character', 1), ('rigging', 1), ('particle', 1), ('real', 1), ('world', 1), ('physic', 1), ('simulation', 1), ('sculpting', 1), ('video', 1), ('editing', 1), ('motion', 1), ('tracking', 1), ('within', 1), ('environment', 1), ('download', 1), ('use', 1), ('anyone', 1), ('anything', 1), ('complete', 1), ('guide', 1)]
[('formal', 3), ('reader', 2), ('method', 2), ('cryptographic', 2), ('protocol', 2), ('handbook', 1), ('analysis', 1), ('cryptography', 1), ('important', 1), ('secure', 1), ('communication', 1), ('processing', 1), ('information', 1), ('introduces', 1), ('several', 1), ('verification', 1), ('software', 1), ('used', 1), ('analyse', 1), ('chapter', 1), ('give', 1), ('general', 1), ('knowledge', 1), ('focusing', 1)]
[('smart', 4), ('home', 3), ('communication', 2), ('device', 2), ('control', 2), ('gadget', 2), ('concept', 1), ('appliance', 1), ('integrated', 1), ('application', 1), ('run', 1), ('hand', 1), ('held', 1), ('resident', 1), ('complete', 1), ('electronic', 1), ('using', 1), ('wireless', 1), ('technology', 1), ('help', 1), ('office', 1)]
[('blender', 3), ('free', 2), ('animation', 2), ('tm', 1), ('open', 1), ('source', 1), ('computer', 1), ('modeling', 1), ('suite', 1), ('incorporating', 1), ('character', 1), ('rigging', 1), ('particle', 1), ('real', 1), ('world', 1), ('physic', 1), ('simulation', 1), ('sculpting', 1), ('video', 1), ('editing', 1), ('motion', 1), ('tracking', 1), ('within', 1), ('environment', 1), ('download', 1), ('use', 1), ('anyone', 1), ('anything', 1), ('complete', 1), ('guide', 1)]
[('cybersecurity', 3), ('threat', 2), ('security', 2), ('technology', 1), ('digitization', 1), ('social', 1), ('good', 1), ('involve', 1), ('risk', 1), ('matter', 1), ('data', 1), ('computer', 1), ('society', 1), ('philosophy', 1), ('understand', 1), ('reason', 1), ('think', 1), ('today', 1), ('tomorrow', 1), ('world', 1), ('book', 1)]
[('cyber', 4), ('security', 4), ('learning', 4), ('machine', 2), ('deep', 2), ('intelligent', 1), ('approach', 1), ('provides', 1), ('detail', 1), ('important', 1), ('threat', 1), ('mitigation', 1), ('influence', 1), ('blockchain', 1), ('technology', 1), ('realm', 1), ('feature', 1), ('role', 1), ('field', 1), ('using', 1), ('ml', 1), ('defend', 1)]
[('energy', 2), ('technology', 2), ('present', 1), ('system', 1), ('undergoing', 1), ('radical', 1), ('transformation', 1), ('driven', 1), ('urgent', 1), ('need', 1), ('address', 1), ('climate', 1), ('change', 1), ('crisis', 1), ('time', 1), ('witnessing', 1), ('sharp', 1), ('growth', 1), ('data', 1), ('revolution', 1), ('advanced', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('blockchain', 1), ('emerging', 1), ('transformative', 1)]
[('something', 3), ('web', 2), ('buckle', 1), ('fascinating', 1), ('journey', 1), ('layer', 1), ('insight', 1), ('metaphor', 1), ('explain', 1), ('past', 1), ('present', 1), ('future', 1), ('reader', 1), ('walk', 1), ('life', 1), ('learn', 1), ('ancient', 1), ('novel', 1), ('practical', 1), ('give', 1), ('careful', 1), ('consideration', 1), ('never', 1), ('see', 1), ('way', 1), ('book', 1), ('proclaims', 1)]
[('system', 2), ('providing', 1), ('comprehensive', 1), ('overview', 1), ('modeling', 1), ('complex', 1), ('particular', 1), ('emphasis', 1), ('collective', 1), ('aspect', 1), ('book', 1), ('situates', 1), ('forefront', 1), ('available', 1), ('literature', 1), ('exemplifying', 1), ('practically', 1), ('wolfram', 1), ('thesis', 1), ('found', 1), ('new', 1), ('kind', 1), ('science', 1), ('discussion', 1), ('center', 1), ('best', 1), ('use', 1), ('cellular', 1)]
[('database', 4), ('life', 2), ('information', 2), ('society', 2), ('become', 1), ('integral', 1), ('part', 1), ('modern', 1), ('day', 1), ('live', 1), ('driven', 1), ('technology', 1), ('direct', 1), ('impact', 1), ('daily', 1), ('decision', 1), ('routinely', 1), ('made', 1), ('organization', 1), ('based', 1), ('collected', 1), ('stored', 1), ('play', 1), ('important', 1), ('role', 1), ('business', 1)]
[('cyber', 3), ('novel', 2), ('attack', 2), ('id', 2), ('book', 1), ('associated', 1), ('cybersecurity', 1), ('issue', 1), ('provides', 1), ('wide', 1), ('view', 1), ('defense', 1), ('mechanism', 1), ('especially', 1), ('ai', 1), ('based', 1), ('intrusion', 1), ('detection', 1), ('system', 1), ('feature', 1), ('systematic', 1), ('overview', 1), ('state', 1), ('art', 1), ('proper', 1), ('explanation', 1), ('different', 1), ('classical', 1)]
[('based', 2), ('machine', 2), ('learning', 2), ('video', 1), ('traffic', 1), ('intersection', 1), ('describes', 1), ('development', 1), ('computer', 1), ('vision', 1), ('application', 1), ('intelligent', 1), ('transportation', 1), ('system', 1), ('challenge', 1), ('encountered', 1), ('deployment', 1), ('book', 1), ('present', 1), ('several', 1), ('novel', 1), ('approach', 1), ('including', 1), ('stream', 1), ('convolutional', 1), ('network', 1), ('architecture', 1)]
[('figure', 3), ('drawing', 2), ('art', 2), ('clothed', 2), ('force', 2), ('nude', 1), ('defines', 1), ('best', 1), ('way', 1), ('learn', 1), ('fundamental', 1), ('yet', 1), ('end', 1), ('goal', 1), ('present', 1), ('animation', 1), ('video', 1), ('game', 1), ('film', 1), ('fine', 1), ('sixth', 1), ('book', 1), ('series', 1), ('instructs', 1), ('artist', 1), ('understand', 1), ('fabric', 1), ('thus', 1), ('leading', 1), ('improved', 1), ('expertly', 1), ('organized', 1)]
[('data', 3), ('social', 2), ('medium', 2), ('producing', 1), ('huge', 1), ('amount', 1), ('importance', 1), ('gathering', 1), ('rich', 1), ('often', 1), ('called', 1), ('digital', 1), ('gold', 1), ('rush', 1), ('processing', 1), ('retrieving', 1), ('information', 1), ('vital', 1), ('practical', 1), ('book', 1), ('combine', 1), ('various', 1), ('state', 1), ('art', 1), ('tool', 1), ('technology', 1), ('technique', 1), ('help', 1), ('understand', 1), ('analytics', 1), ('mining', 1), ('graph', 1)]
[('signal', 3), ('digital', 2), ('processing', 2), ('introductory', 1), ('text', 1), ('field', 1), ('assume', 1), ('degree', 1), ('technical', 1), ('knowledge', 1), ('class', 1), ('tested', 1), ('textbook', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('fundamental', 1), ('way', 1), ('accessible', 1), ('beginning', 1), ('first', 1), ('principle', 1), ('reader', 1), ('learn', 1), ('acquired', 1)]
[('data', 2), ('analytics', 2), ('iot', 2), ('blockchain', 2), ('technology', 2), ('book', 1), ('focus', 1), ('machine', 1), ('learning', 1), ('using', 1), ('integrating', 1), ('three', 1), ('field', 1), ('examining', 1), ('interconnection', 1), ('intelligent', 1), ('examines', 1), ('opportunity', 1), ('challenge', 1), ('developing', 1), ('system', 1), ('application', 1), ('exploiting', 1), ('written', 1), ('primarily', 1)]
[('national', 3), ('security', 2), ('critical', 1), ('infrastructure', 1), ('sector', 1), ('whose', 1), ('asset', 1), ('system', 1), ('network', 1), ('whether', 1), ('physical', 1), ('virtual', 1), ('deemed', 1), ('important', 1), ('nation', 1), ('incapacitation', 1), ('destruction', 1), ('crippling', 1), ('effect', 1), ('economic', 1), ('public', 1), ('health', 1), ('safety', 1), ('combination', 1), ('country', 1), ('might', 1)]
[('video', 2), ('game', 2), ('making', 1), ('huge', 1), ('recount', 1), ('astonishing', 1), ('journey', 1), ('unassuming', 1), ('middle', 1), ('bell', 1), ('curve', 1), ('young', 1), ('rising', 1), ('mundane', 1), ('beginning', 1), ('scale', 1), ('dizzying', 1), ('height', 1), ('artistic', 1), ('distinction', 1), ('financial', 1), ('success', 1), ('worldwide', 1), ('industry', 1), ('story', 1), ('chance', 1), ('thomas', 1), ('moderately', 1), ('talented', 1), ('musician', 1), ('struggled', 1)]
[('virtual', 3), ('reality', 3), ('special', 1), ('quality', 1), ('medium', 1), ('immersive', 1), ('nature', 1), ('allowing', 1), ('user', 1), ('disengage', 1), ('physical', 1), ('world', 1), ('around', 1), ('order', 1), ('fully', 1), ('interact', 1), ('digital', 1), ('environment', 1), ('artistic', 1), ('approach', 1), ('trace', 1), ('lineage', 1), ('artist', 1), ('technologist', 1), ('worked', 1), ('infancy', 1)]
[('language', 2), ('nlp', 2), ('natural', 1), ('processing', 1), ('sub', 1), ('field', 1), ('artificial', 1), ('intelligence', 1), ('linguistics', 1), ('computer', 1), ('science', 1), ('concerned', 1), ('generation', 1), ('recognition', 1), ('understanding', 1), ('human', 1), ('written', 1), ('spoken', 1), ('system', 1), ('examine', 1), ('grammatical', 1), ('structure', 1), ('sentence', 1), ('specific', 1), ('meaning', 1), ('word', 1)]
[('learning', 3), ('ml', 3), ('machine', 2), ('step', 2), ('release', 1), ('chatgpt', 1), ('kicked', 1), ('arm', 1), ('race', 1), ('described', 1), ('black', 1), ('box', 1), ('hard', 1), ('understand', 1), ('animated', 1), ('eas', 1), ('basic', 1), ('concept', 1), ('summarizes', 1), ('process', 1), ('three', 1), ('word', 1), ('initialize', 1), ('adjust', 1), ('repeat', 1), ('illustrated', 1)]
[('cybersecurity', 4), ('operation', 3), ('center', 3), ('fusion', 2), ('soc', 2), ('comprehensive', 1), ('guide', 1), ('tic', 1), ('strategy', 1), ('dr', 1), ('kevin', 1), ('lynn', 1), ('mclaughlin', 1), ('resource', 1), ('anyone', 1), ('involved', 1), ('establishment', 1), ('sofc', 1), ('think', 1), ('combination', 1), ('threat', 1), ('intelligence', 1)]
[('internet', 4), ('thing', 3), ('data', 2), ('advent', 1), ('advanced', 1), ('technology', 1), ('cloud', 1), ('computing', 1), ('medical', 1), ('industry', 1), ('sensor', 1), ('network', 1), ('exponential', 1), ('growth', 1), ('usage', 1), ('based', 1), ('social', 1), ('medium', 1), ('platform', 1), ('enormous', 1), ('ocean', 1), ('huge', 1), ('volume', 1), ('used', 1)]
[('student', 4), ('python', 3), ('want', 2), ('volume', 1), ('learning', 1), ('professional', 1), ('resource', 1), ('learn', 1), ('even', 1), ('programming', 1), ('knowledge', 1), ('teacher', 1), ('comprehensive', 1), ('introduction', 1), ('use', 1), ('book', 1), ('help', 1), ('achieve', 1), ('dream', 1), ('job', 1), ('industry', 1), ('teach', 1), ('easy', 1)]
[('healthcare', 5), ('advanced', 2), ('computational', 2), ('book', 1), ('aim', 1), ('apply', 1), ('state', 1), ('art', 1), ('intelligence', 1), ('framework', 1), ('present', 1), ('recent', 1), ('real', 1), ('life', 1), ('application', 1), ('computationally', 1), ('intelligent', 1), ('discus', 1), ('problem', 1), ('solution', 1), ('remote', 1), ('emergency', 1), ('service', 1), ('analytics', 1)]
[('distributed', 2), ('technology', 2), ('mechanism', 2), ('book', 1), ('explores', 1), ('opportunity', 1), ('challenge', 1), ('field', 1), ('internet', 1), ('everything', 1), ('ioe', 1), ('security', 1), ('privacy', 1), ('umbrella', 1), ('ledger', 1), ('blockchain', 1), ('including', 1), ('consensus', 1), ('crypto', 1), ('sensor', 1), ('encryption', 1), ('algorithm', 1), ('fault', 1), ('tolerance', 1), ('device', 1), ('system', 1), ('focus', 1)]
[('data', 3), ('analytics', 3), ('book', 2), ('big', 2), ('smart', 2), ('aim', 1), ('provide', 1), ('reader', 1), ('comprehensive', 1), ('guide', 1), ('fundamental', 1), ('application', 1), ('various', 1), ('industry', 1), ('society', 1), ('set', 1), ('apart', 1), ('depth', 1), ('coverage', 1), ('different', 1), ('aspect', 1), ('including', 1), ('machine', 1), ('learning', 1), ('algorithm', 1), ('spatial', 1), ('iot', 1), ('based', 1)]
[('student', 4), ('python', 3), ('want', 2), ('volume', 1), ('learning', 1), ('professional', 1), ('resource', 1), ('learn', 1), ('even', 1), ('programming', 1), ('knowledge', 1), ('teacher', 1), ('comprehensive', 1), ('introduction', 1), ('use', 1), ('book', 1), ('help', 1), ('achieve', 1), ('dream', 1), ('job', 1), ('industry', 1), ('teach', 1), ('easy', 1)]
[('proceeding', 1), ('symposium', 1), ('isit', 1), ('aim', 1), ('platform', 1), ('international', 1), ('exchange', 1), ('state', 1), ('art', 1), ('research', 1), ('practice', 1), ('information', 1), ('technology', 1), ('contribution', 1), ('cover', 1), ('wide', 1), ('variety', 1), ('topic', 1), ('ranging', 1), ('theoretical', 1), ('analytical', 1), ('study', 1), ('various', 1), ('application', 1)]
[('vipimage', 2), ('contains', 1), ('invited', 1), ('lecture', 1), ('full', 1), ('paper', 1), ('presented', 1), ('eccomas', 1), ('thematic', 1), ('conference', 1), ('computational', 1), ('vision', 1), ('medical', 1), ('image', 1), ('processing', 1), ('tenerife', 1), ('canary', 1), ('island', 1), ('spain', 1), ('october', 1), ('international', 1), ('contribution', 1), ('country', 1), ('provide', 1), ('comprehensive', 1), ('coverage', 1), ('current', 1), ('state', 1), ('art', 1), ('field', 1)]
[('mechanic', 3), ('theoretical', 3), ('computational', 3), ('interdisciplinary', 2), ('issue', 2), ('application', 2), ('advance', 1), ('cover', 1), ('domain', 1), ('experimental', 1), ('industrial', 1), ('special', 1), ('attention', 1), ('paid', 1), ('background', 1), ('practical', 1), ('volume', 1)]
[('biodental', 3), ('engineering', 2), ('dentistry', 1), ('branch', 1), ('medicine', 1), ('peculiarity', 1), ('diverse', 1), ('area', 1), ('action', 1), ('mean', 1), ('considered', 1), ('interdisciplinary', 1), ('field', 1), ('ii', 1), ('contains', 1), ('full', 1), ('paper', 1), ('presented', 1), ('nd', 1), ('international', 1), ('conference', 1), ('porto', 1), ('portugal', 1), ('december', 1), ('contrib', 1)]
[('mobile', 2), ('computing', 2), ('service', 2), ('wireless', 1), ('system', 1), ('expected', 1), ('enter', 1), ('fifth', 1), ('generation', 1), ('promise', 1), ('evolutionary', 1), ('revolutionary', 1), ('advanced', 1), ('look', 1), ('sound', 1), ('feel', 1), ('theme', 1), ('book', 1), ('advance', 1), ('communication', 1), ('perspective', 1), ('emerging', 1)]
[('take', 2), ('d', 2), ('max', 2), ('tool', 2), ('month', 1), ('learn', 1), ('every', 1), ('button', 1), ('create', 1), ('visuals', 1), ('key', 1), ('utilize', 1), ('choice', 1), ('generating', 1), ('realistic', 1), ('environment', 1), ('seamless', 1), ('cg', 1), ('effect', 1), ('jaw', 1), ('dropping', 1), ('game', 1), ('matter', 1), ('hour', 1), ('use', 1), ('memory', 1), ('hogging', 1), ('method', 1), ('choke', 1), ('display', 1), ('forever', 1)]
[('book', 2), ('begin', 2), ('written', 1), ('professional', 1), ('instructor', 1), ('founder', 1), ('cartoonsmart', 1), ('company', 1), ('specializing', 1), ('new', 1), ('medium', 1), ('tutorial', 1), ('nearly', 1), ('decade', 1), ('start', 1), ('finish', 1), ('guide', 1), ('anyone', 1), ('looking', 1), ('io', 1), ('development', 1), ('using', 1), ('coco', 1), ('xcode', 1), ('submit', 1), ('finished', 1), ('app', 1), ('apple', 1), ('even', 1), ('code', 1)]
[('virtual', 2), ('reality', 2), ('new', 2), ('vr', 2), ('purpose', 1), ('make', 1), ('possible', 1), ('sensorimotor', 1), ('cognitive', 1), ('activity', 1), ('user', 1), ('digitally', 1), ('created', 1), ('artificial', 1), ('world', 1), ('recent', 1), ('advance', 1), ('computer', 1), ('technology', 1), ('led', 1), ('generation', 1), ('device', 1), ('headset', 1), ('accordingly', 1), ('pose', 1), ('many', 1), ('scientific', 1), ('challenge', 1), ('researcher', 1), ('professional', 1)]
[('iris', 3), ('system', 3), ('recognition', 2), ('accuracy', 2), ('highest', 1), ('technique', 1), ('used', 1), ('biometric', 1), ('measured', 1), ('false', 1), ('reject', 1), ('rate', 1), ('frr', 1), ('measure', 1), ('authenticity', 1), ('user', 1), ('incorrectly', 1), ('rejected', 1), ('due', 1), ('change', 1), ('feature', 1), ('aging', 1), ('health', 1), ('condition', 1), ('external', 1), ('factor', 1)]
[('problem', 3), ('stochastic', 2), ('differential', 2), ('equation', 2), ('inverse', 1), ('identifying', 1), ('parameter', 1), ('initial', 1), ('boundary', 1), ('condition', 1), ('deterministic', 1), ('partial', 1), ('constitute', 1), ('vibrant', 1), ('emerging', 1), ('research', 1), ('area', 1), ('found', 1), ('numerous', 1), ('application', 1), ('related', 1), ('paramount', 1), ('importance', 1), ('optimal', 1), ('control', 1)]
[('rural', 3), ('development', 2), ('sustainable', 2), ('digital', 2), ('transformation', 2), ('technology', 2), ('book', 1), ('introduces', 1), ('demonstrates', 1), ('state', 1), ('art', 1), ('research', 1), ('tackling', 1), ('urban', 1), ('integration', 1), ('supported', 1), ('digitalization', 1), ('area', 1), ('industry', 1), ('ai', 1), ('smart', 1), ('servicing', 1)]
[('volume', 2), ('raspberry', 2), ('pi', 2), ('system', 2), ('administration', 2), ('fourth', 1), ('new', 1), ('series', 1), ('exploring', 1), ('basic', 1), ('operating', 1), ('instalment', 1), ('build', 1), ('insight', 1), ('provided', 1), ('provide', 1), ('compendium', 1), ('easy', 1), ('use', 1), ('essential', 1), ('o', 1), ('novice', 1), ('user', 1), ('specific', 1), ('focus', 1), ('upstream', 1), ('debian', 1), ('bookworm', 1), ('release', 1)]
[('book', 1), ('programmer', 1), ('graphic', 1), ('artist', 1), ('writer', 1), ('video', 1), ('producer', 1), ('audio', 1), ('engineer', 1), ('network', 1), ('manager', 1), ('hardware', 1), ('technician', 1), ('telecommunication', 1), ('professional', 1), ('embrace', 1), ('complex', 1), ('world', 1), ('digital', 1), ('medium', 1), ('realize', 1), ('need', 1), ('common', 1), ('language', 1), ('communicate', 1), ('another', 1)]
[('fiems', 2), ('international', 1), ('conference', 1), ('future', 1), ('information', 1), ('engineering', 1), ('manufacturing', 1), ('science', 1), ('held', 1), ('june', 1), ('beijing', 1), ('china', 1), ('objective', 1), ('provide', 1), ('platform', 1), ('researcher', 1), ('engineer', 1), ('academic', 1), ('industry', 1), ('professional', 1), ('world', 1), ('present', 1), ('research', 1), ('result', 1), ('development', 1), ('acti', 1)]
[('stochastic', 2), ('advanced', 2), ('concept', 2), ('yet', 2), ('method', 1), ('scientific', 1), ('computing', 1), ('foundation', 1), ('technique', 1), ('introduces', 1), ('reader', 1), ('modelling', 1), ('rooted', 1), ('intuitive', 1), ('rigorous', 1), ('presentation', 1), ('underlying', 1), ('mathematical', 1), ('particular', 1), ('emphasis', 1), ('placed', 1), ('illuminating', 1), ('underpinning', 1), ('mathematics', 1)]
[('digital', 4), ('technique', 3), ('artist', 2), ('painting', 2), ('discover', 1), ('tip', 1), ('trick', 1), ('really', 1), ('work', 1), ('concept', 1), ('matte', 1), ('painter', 1), ('animator', 1), ('compiled', 1), ('team', 1), ('dtotal', 1), ('volume', 1), ('offer', 1), ('inspiration', 1), ('hand', 1), ('insight', 1), ('professional', 1), ('gallery', 1), ('book', 1), ('within', 1)]
[('book', 2), ('provides', 2), ('application', 2), ('machine', 2), ('various', 2), ('perspective', 1), ('learning', 1), ('based', 1), ('method', 1), ('knowledge', 1), ('discovery', 1), ('natural', 1), ('language', 1), ('text', 1), ('analysing', 1), ('data', 1), ('set', 1), ('conclusion', 1), ('normally', 1), ('evident', 1), ('emerge', 1), ('used', 1), ('purpose', 1), ('explanation', 1), ('principle', 1), ('time', 1), ('proven', 1)]
[('step', 2), ('fun', 2), ('cheat', 1), ('tutorial', 1), ('tos', 1), ('need', 1), ('go', 1), ('beyond', 1), ('stop', 1), ('gap', 1), ('pushing', 1), ('pixel', 1), ('real', 1), ('world', 1), ('guide', 1), ('developing', 1), ('dynamic', 1), ('content', 1), ('conception', 1), ('deployment', 1), ('whether', 1), ('animating', 1), ('short', 1), ('cartoon', 1), ('mobile', 1), ('game', 1), ('renowned', 1), ('flash', 1), ('expert', 1), ('chris', 1), ('georgenes', 1)]
[('technology', 2), ('application', 2), ('information', 1), ('computer', 1), ('telecommunication', 1), ('equipment', 1), ('store', 1), ('retrieve', 1), ('transmit', 1), ('manipulate', 1), ('data', 1), ('often', 1), ('context', 1), ('business', 1), ('enterprise', 1), ('become', 1), ('fundamental', 1), ('today', 1), ('social', 1), ('life', 1), ('many', 1), ('unsolved', 1), ('issue', 1), ('related', 1), ('th', 1)]
[('system', 2), ('computer', 2), ('volume', 1), ('consists', 1), ('paper', 1), ('presented', 1), ('international', 1), ('symposium', 1), ('technology', 1), ('issct', 1), ('shanghai', 1), ('china', 1), ('november', 1), ('demand', 1), ('informatics', 1), ('constantly', 1), ('increasing', 1), ('application', 1), ('built', 1), ('effort', 1), ('made', 1), ('improve', 1), ('state', 1)]
[('aist', 2), ('delhi', 2), ('nd', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('speech', 1), ('technology', 1), ('organized', 1), ('indira', 1), ('gandhi', 1), ('technical', 1), ('university', 1), ('woman', 1), ('india', 1), ('november', 1), ('dedicated', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('address', 1), ('scientific', 1), ('need', 1), ('academic', 1), ('researcher', 1), ('industrial', 1), ('professional', 1), ('explore', 1)]
[('human', 2), ('machine', 2), ('interaction', 2), ('handbook', 1), ('feature', 1), ('original', 1), ('chapter', 1), ('conclusion', 1), ('focusing', 1), ('hmi', 1), ('analysis', 1), ('design', 1), ('evaluation', 1), ('perspective', 1), ('offer', 1), ('comprehensive', 1), ('range', 1), ('principle', 1), ('method', 1), ('technique', 1), ('tool', 1), ('provide', 1), ('reader', 1), ('clear', 1), ('knowledge', 1), ('current', 1), ('academic', 1), ('industry', 1)]
[('edition', 2), ('book', 2), ('textbook', 2), ('mathematics', 2), ('first', 1), ('award', 1), ('winning', 1), ('attracted', 1), ('wide', 1), ('audience', 1), ('second', 1), ('joy', 1), ('useful', 1), ('classroom', 1), ('tool', 1), ('unlike', 1), ('traditional', 1), ('requires', 1), ('mathematical', 1), ('prerequisite', 1), ('around', 1), ('presented', 1), ('used', 1), ('prioritized', 1)]
[('multi', 2), ('temporal', 2), ('book', 1), ('elaborates', 1), ('fuzzy', 1), ('machine', 1), ('deep', 1), ('learning', 1), ('model', 1), ('single', 1), ('class', 1), ('mapping', 1), ('sensor', 1), ('remote', 1), ('sensing', 1), ('image', 1), ('handling', 1), ('mixed', 1), ('pixel', 1), ('noise', 1), ('cover', 1), ('way', 1), ('pre', 1), ('processing', 1), ('spectral', 1), ('dimensionality', 1), ('reduction', 1), ('data', 1), ('discus', 1), ('individual', 1), ('sample', 1), ('mean', 1), ('training', 1)]
[('advance', 2), ('life', 2), ('artificial', 1), ('intelligence', 1), ('health', 1), ('enabled', 1), ('space', 1), ('aioh', 1), ('made', 1), ('number', 1), ('revolutionary', 1), ('clinical', 1), ('study', 1), ('aware', 1), ('among', 1), ('intelligent', 1), ('medical', 1), ('service', 1), ('gaining', 1), ('deal', 1), ('interest', 1), ('nowadays', 1), ('ai', 1), ('powered', 1), ('technology', 1), ('used', 1), ('saving', 1), ('daily', 1), ('activity', 1)]
[('material', 1), ('available', 1), ('field', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('soft', 1), ('computing', 1), ('text', 1), ('monograph', 1), ('journal', 1), ('article', 1), ('remains', 1), ('serious', 1), ('gap', 1), ('literature', 1), ('comprehensive', 1), ('resource', 1), ('accessible', 1), ('broad', 1), ('audience', 1), ('yet', 1), ('containing', 1), ('depth', 1), ('breadth', 1), ('information', 1), ('enables', 1), ('reader', 1)]
[('intrusion', 2), ('detection', 2), ('prevention', 2), ('mobile', 2), ('book', 1), ('present', 1), ('state', 1), ('art', 1), ('contribution', 1), ('scientist', 1), ('practitioner', 1), ('working', 1), ('network', 1), ('service', 1), ('device', 1), ('cover', 1), ('fundamental', 1), ('theory', 1), ('technique', 1), ('application', 1), ('practical', 1), ('experience', 1), ('concerning', 1), ('ecosystem', 1)]
[('vehicle', 3), ('communication', 2), ('explains', 2), ('book', 1), ('focus', 1), ('critical', 1), ('technical', 1), ('aspect', 1), ('infrastructure', 1), ('cover', 1), ('smart', 1), ('city', 1), ('concept', 1), ('architecture', 1), ('fit', 1), ('describes', 1), ('wireless', 1), ('protocol', 1), ('hardware', 1), ('design', 1), ('process', 1)]
[('anomaly', 3), ('detection', 3), ('context', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('research', 1), ('respect', 1), ('situational', 1), ('awareness', 1), ('aim', 1), ('better', 1), ('understanding', 1), ('information', 1), ('influence', 1), ('chapter', 1), ('identifies', 1), ('advanced', 1), ('key', 1), ('assumption', 1), ('used', 1), ('model', 1)]
[('next', 2), ('wireless', 1), ('application', 1), ('definitely', 1), ('big', 1), ('thing', 1), ('communication', 1), ('million', 1), ('around', 1), ('world', 1), ('use', 1), ('internet', 1), ('every', 1), ('day', 1), ('stay', 1), ('touch', 1), ('remote', 1), ('location', 1), ('follow', 1), ('stock', 1), ('market', 1), ('keep', 1), ('news', 1), ('check', 1), ('weather', 1), ('make', 1), ('travel', 1), ('plan', 1), ('conduct', 1), ('business', 1), ('shop', 1), ('entertain', 1), ('learn', 1), ('logical', 1), ('step', 1), ('th', 1)]
[('performance', 2), ('computing', 2), ('hpc', 2), ('high', 1), ('delivers', 1), ('higher', 1), ('computational', 1), ('solve', 1), ('problem', 1), ('science', 1), ('engineering', 1), ('finance', 1), ('various', 1), ('resource', 1), ('available', 1), ('different', 1), ('need', 1), ('ranging', 1), ('cloud', 1), ('used', 1), ('without', 1), ('expertise', 1), ('expense', 1), ('tailored', 1), ('hardware', 1), ('field', 1), ('programmable', 1), ('gate', 1), ('array', 1)]
[('data', 2), ('multipath', 2), ('routing', 2), ('protocol', 2), ('wmsn', 2), ('traffic', 2), ('book', 1), ('give', 1), ('overview', 1), ('best', 1), ('effort', 1), ('real', 1), ('time', 1), ('provides', 1), ('result', 1), ('recent', 1), ('research', 1), ('design', 1), ('issue', 1), ('affecting', 1), ('development', 1), ('strategic', 1), ('support', 1), ('multimedia', 1), ('iot', 1), ('perspective', 1), ('plus', 1), ('detailed', 1), ('analysis', 1), ('appropriate', 1), ('model', 1)]
[('oil', 4), ('spill', 3), ('marine', 2), ('development', 2), ('harm', 2), ('serious', 1), ('disaster', 1), ('accident', 1), ('usually', 1), ('occur', 1), ('shipping', 1), ('port', 1), ('offshore', 1), ('although', 1), ('emergent', 1), ('event', 1), ('occurs', 1), ('cause', 1), ('ecological', 1), ('environment', 1), ('bring', 1), ('direct', 1), ('economic', 1), ('along', 1), ('affected', 1), ('coast', 1), ('human', 1)]
[('data', 3), ('breach', 3), ('question', 2), ('defend', 2), ('better', 2), ('wave', 1), ('raise', 1), ('pressing', 1), ('network', 1), ('practical', 1), ('incentive', 1), ('create', 1), ('improve', 1), ('defense', 1), ('risk', 1), ('management', 1), ('public', 1), ('policy', 1), ('answer', 1), ('distinguishes', 1), ('three', 1), ('technical', 1), ('source', 1), ('corresponding', 1)]
[('cv', 2), ('computational', 2), ('coefficient', 1), ('variation', 1), ('unit', 1), ('free', 1), ('index', 1), ('indicating', 1), ('consistency', 1), ('data', 1), ('associated', 1), ('real', 1), ('world', 1), ('process', 1), ('simple', 1), ('mold', 1), ('paradigm', 1), ('book', 1), ('provides', 1), ('necessary', 1), ('exposure', 1), ('strategy', 1), ('property', 1), ('extracting', 1), ('metadata', 1), ('leading', 1), ('efficient', 1), ('knowledge', 1), ('representation', 1)]
[('choice', 3), ('academic', 2), ('title', 2), ('recognition', 2), ('oat', 2), ('award', 2), ('winner', 1), ('outstanding', 1), ('represents', 1), ('highest', 1), ('caliber', 1), ('scholarly', 1), ('reviewed', 1), ('conveys', 1), ('extraordinary', 1), ('community', 1), ('recent', 1), ('year', 1), ('social', 1), ('medium', 1), ('gained', 1), ('significant', 1), ('popularity', 1)]
[('technology', 2), ('early', 2), ('warning', 2), ('information', 1), ('engineering', 1), ('port', 1), ('marine', 1), ('environment', 1), ('provides', 1), ('tidal', 1), ('level', 1), ('prediction', 1), ('oil', 1), ('spill', 1), ('research', 1), ('theory', 1), ('storm', 1), ('sedimentation', 1), ('construction', 1), ('monitor', 1), ('ability', 1), ('service', 1), ('numerical', 1), ('simulation', 1), ('operational', 1), ('involves', 1), ('many', 1), ('aspect', 1)]
[('computer', 3), ('rotation', 2), ('analysis', 2), ('widely', 1), ('encountered', 1), ('everyday', 1), ('problem', 1), ('thanks', 1), ('development', 1), ('sensing', 1), ('using', 1), ('camera', 1), ('sensor', 1), ('analyzing', 1), ('modeling', 1), ('vision', 1), ('graphic', 1), ('controlling', 1), ('simulating', 1), ('robot', 1), ('motion', 1), ('require', 1), ('computation', 1), ('book', 1), ('focus', 1), ('computational', 1)]
[('image', 5), ('concept', 3), ('formation', 3), ('book', 2), ('model', 2), ('feature', 2), ('familiarizes', 1), ('reader', 1), ('fundamental', 1), ('issue', 1), ('related', 1), ('computer', 1), ('vision', 1), ('major', 1), ('approach', 1), ('address', 1), ('focus', 1), ('acquisition', 1), ('radiometric', 1), ('camera', 1), ('processing', 1), ('extraction', 1)]
[('efficiency', 1), ('crucial', 1), ('concern', 1), ('across', 1), ('computing', 1), ('system', 1), ('edge', 1), ('cloud', 1), ('paradoxically', 1), ('even', 1), ('latency', 1), ('bottleneck', 1), ('component', 1), ('storage', 1), ('network', 1), ('dropped', 1), ('four', 1), ('order', 1), ('magnitude', 1), ('software', 1), ('path', 1), ('length', 1), ('progressively', 1), ('increased', 1), ('due', 1), ('overhead', 1), ('framework', 1), ('revolutionized', 1)]
[('abe', 3), ('knowledge', 2), ('book', 1), ('cover', 1), ('broader', 1), ('scope', 1), ('attribute', 1), ('based', 1), ('encryption', 1), ('background', 1), ('specific', 1), ('construction', 1), ('theoretic', 1), ('proof', 1), ('application', 1), ('goal', 1), ('provide', 1), ('depth', 1), ('usable', 1), ('college', 1), ('student', 1), ('researcher', 1), ('want', 1), ('comprehensive', 1), ('understanding', 1), ('scheme', 1), ('novel', 1), ('enabled', 1), ('research', 1)]
[('congruence', 2), ('solution', 2), ('ubiquitous', 1), ('computer', 1), ('science', 1), ('engineering', 1), ('mathematics', 1), ('related', 1), ('area', 1), ('developing', 1), ('technique', 1), ('finding', 1), ('number', 1), ('important', 1), ('problem', 1), ('many', 1), ('scenario', 1), ('interested', 1), ('subset', 1), ('word', 1), ('restriction', 1), ('know', 1)]
[('network', 3), ('cloud', 3), ('data', 2), ('storage', 1), ('processing', 1), ('management', 1), ('remote', 1), ('location', 1), ('dynamic', 1), ('challenging', 1), ('task', 1), ('user', 1), ('expectation', 1), ('high', 1), ('accuracy', 1), ('reliability', 1), ('accessibility', 1), ('availability', 1), ('pervasive', 1), ('environment', 1), ('core', 1), ('motivation', 1), ('internet', 1), ('thing', 1), ('cniot', 1)]
[('wsn', 3), ('wireless', 2), ('sensor', 2), ('network', 2), ('algorithm', 2), ('challenge', 2), ('evolutionary', 1), ('optimizing', 1), ('performance', 1), ('provides', 1), ('integrative', 1), ('overview', 1), ('bio', 1), ('inspired', 1), ('application', 1), ('area', 1), ('along', 1), ('usage', 1), ('number', 1), ('risk', 1), ('occurs', 1), ('deploying', 1), ('defeat', 1)]
[('surface', 3), ('exciting', 1), ('new', 1), ('handbook', 1), ('investigates', 1), ('characterization', 1), ('emphasizes', 1), ('experimental', 1), ('technique', 1), ('imaging', 1), ('solid', 1), ('theoretical', 1), ('strategy', 1), ('visualization', 1), ('area', 1), ('rapid', 1), ('progress', 1), ('currently', 1), ('made', 1), ('comprehensive', 1), ('unique', 1), ('volume', 1), ('ideal', 1), ('reference', 1), ('researcher', 1), ('needing', 1), ('quick', 1)]
[('proceeding', 2), ('volume', 1), ('includes', 1), ('ninth', 1), ('international', 1), ('conference', 1), ('fukuoka', 1), ('japan', 1), ('june', 1), ('work', 1), ('represents', 1), ('broad', 1), ('spectrum', 1), ('new', 1), ('idea', 1), ('field', 1), ('applied', 1), ('artificial', 1), ('intelligence', 1), ('expert', 1), ('system', 1), ('serf', 1), ('disseminate', 1), ('information', 1), ('regarding', 1), ('intelligent', 1), ('methodology', 1), ('implementation', 1)]
[('access', 3), ('control', 3), ('author', 2), ('security', 2), ('logic', 2), ('use', 2), ('developed', 1), ('course', 1), ('syracuse', 1), ('university', 1), ('air', 1), ('force', 1), ('research', 1), ('laboratory', 1), ('trust', 1), ('logical', 1), ('approach', 1), ('equips', 1), ('reader', 1), ('specify', 1), ('verify', 1), ('design', 1), ('throughout', 1), ('text', 1), ('single', 1), ('based', 1), ('simple', 1), ('pro', 1)]
[('robust', 2), ('low', 2), ('rank', 2), ('sparse', 2), ('matrix', 2), ('decomposition', 2), ('application', 2), ('handbook', 1), ('image', 1), ('video', 1), ('processing', 1), ('show', 1), ('subspace', 1), ('learning', 1), ('tracking', 1), ('provide', 1), ('suitable', 1), ('framework', 1), ('computer', 1), ('vision', 1), ('incorporating', 1), ('existing', 1), ('new', 1), ('idea', 1), ('book', 1), ('conveniently', 1), ('give', 1)]
[('data', 3), ('big', 2), ('network', 2), ('set', 2), ('technique', 2), ('complex', 1), ('present', 1), ('explains', 1), ('method', 1), ('study', 1), ('used', 1), ('analysing', 1), ('massive', 1), ('structural', 1), ('including', 1), ('large', 1), ('graph', 1), ('applying', 1), ('statistical', 1), ('analysis', 1), ('sampling', 1), ('bootstrapping', 1), ('interdisciplinary', 1), ('manner', 1), ('produce', 1), ('novel', 1)]
[('traffic', 2), ('network', 2), ('book', 1), ('offer', 1), ('rigorous', 1), ('analysis', 1), ('achievement', 1), ('field', 1), ('control', 1), ('large', 1), ('oriented', 1), ('main', 1), ('aspect', 1), ('self', 1), ('similarity', 1), ('behaviour', 1), ('scale', 1), ('free', 1), ('characteristic', 1), ('complex', 1), ('additionally', 1), ('author', 1), ('propose', 1), ('new', 1), ('insight', 1), ('understanding', 1), ('inner', 1), ('nature', 1), ('thing', 1)]
[('book', 2), ('deep', 2), ('learning', 2), ('cover', 1), ('fundamental', 1), ('designing', 1), ('deploying', 1), ('technique', 1), ('using', 1), ('architecture', 1), ('intended', 1), ('serve', 1), ('beginner', 1), ('guide', 1), ('engineer', 1), ('student', 1), ('want', 1), ('quick', 1), ('start', 1), ('building', 1), ('system', 1), ('provides', 1), ('good', 1), ('theoretical', 1), ('practical', 1), ('understanding', 1), ('complete', 1), ('toolkit', 1)]
[('security', 2), ('property', 2), ('nano', 2), ('device', 2), ('research', 1), ('community', 1), ('lack', 1), ('capability', 1), ('explain', 1), ('effectiveness', 1), ('existing', 1), ('technique', 1), ('metric', 1), ('predict', 1), ('vulnerability', 1), ('next', 1), ('generation', 1), ('system', 1), ('book', 1), ('provides', 1), ('depth', 1), ('viewpoint', 1), ('issue', 1), ('explains', 1), ('unique', 1)]
[('sensing', 4), ('technique', 4), ('student', 2), ('communication', 2), ('advanced', 2), ('book', 1), ('written', 1), ('electronics', 1), ('computer', 1), ('science', 1), ('engineer', 1), ('address', 1), ('topic', 1), ('introduction', 1), ('crn', 1), ('spectrum', 1), ('cooperative', 1), ('distributed', 1), ('issue', 1), ('application', 1), ('network', 1)]
[('chip', 3), ('firing', 3), ('mathematics', 1), ('solid', 1), ('introduction', 1), ('overview', 1), ('growing', 1), ('field', 1), ('offer', 1), ('appreciation', 1), ('richness', 1), ('diversity', 1), ('subject', 1), ('refers', 1), ('discrete', 1), ('dynamical', 1), ('system', 1), ('commodity', 1), ('exchanged', 1), ('site', 1), ('network', 1), ('according', 1), ('simple', 1), ('local', 1), ('rule', 1), ('although', 1), ('governed', 1)]
[('computational', 2), ('developed', 2), ('science', 2), ('biology', 1), ('rapidly', 1), ('last', 1), ('decade', 1), ('following', 1), ('genomic', 1), ('revolution', 1), ('culminated', 1), ('sequencing', 1), ('human', 1), ('genome', 1), ('field', 1), ('embrace', 1), ('method', 1), ('different', 1), ('branch', 1), ('exact', 1), ('pure', 1), ('applied', 1), ('mathematics', 1), ('computer', 1)]
[('book', 3), ('self', 2), ('driving', 2), ('vehicle', 2), ('aim', 1), ('teach', 1), ('core', 1), ('concept', 1), ('make', 1), ('sdvs', 1), ('possible', 1), ('aimed', 1), ('want', 1), ('teeth', 1), ('technology', 1), ('providing', 1), ('genuine', 1), ('technical', 1), ('insight', 1), ('skim', 1), ('surface', 1), ('tackle', 1), ('everything', 1), ('sensor', 1), ('perception', 1), ('functional', 1), ('safety', 1)]
[('practical', 2), ('numerical', 2), ('matlab', 2), ('python', 2), ('linear', 2), ('problem', 2), ('scientific', 1), ('computing', 1), ('concentrate', 1), ('aspect', 1), ('analysis', 1), ('non', 1), ('programming', 1), ('discus', 1), ('method', 1), ('solving', 1), ('different', 1), ('type', 1), ('mathematical', 1), ('using', 1), ('although', 1), ('book', 1), ('focus', 1), ('approximation', 1), ('rather', 1)]
[('machine', 3), ('learning', 3), ('recent', 1), ('rapid', 1), ('growth', 1), ('variety', 1), ('complexity', 1), ('new', 1), ('architecture', 1), ('requires', 1), ('development', 1), ('improved', 1), ('method', 1), ('designing', 1), ('analyzing', 1), ('evaluating', 1), ('communicating', 1), ('technology', 1), ('statistical', 1), ('unified', 1), ('framework', 1), ('provides', 1), ('student', 1), ('engineer', 1), ('scientist', 1), ('tool', 1)]
[('attack', 2), ('student', 2), ('distributed', 1), ('denial', 1), ('service', 1), ('ddos', 1), ('become', 1), ('destructive', 1), ('wide', 1), ('spread', 1), ('harder', 1), ('control', 1), ('time', 1), ('book', 1), ('allows', 1), ('understand', 1), ('constructed', 1), ('security', 1), ('flaw', 1), ('leverage', 1), ('effective', 1), ('detected', 1), ('mitigated', 1), ('use', 1), ('software', 1), ('defined', 1)]
[('human', 2), ('recognition', 2), ('day', 2), ('action', 1), ('challenging', 1), ('area', 1), ('presently', 1), ('vigor', 1), ('research', 1), ('effort', 1), ('directed', 1), ('towards', 1), ('domain', 1), ('self', 1), ('indicative', 1), ('increasing', 1), ('involvement', 1), ('computational', 1), ('intelligence', 1), ('application', 1), ('necessity', 1), ('activity', 1), ('able', 1), ('make', 1), ('presence', 1), ('felt', 1), ('concerned', 1)]
[('graph', 3), ('theory', 3), ('many', 2), ('application', 2), ('book', 2), ('provides', 2), ('research', 2), ('finding', 2), ('branch', 1), ('discrete', 1), ('mathematics', 1), ('different', 1), ('area', 1), ('science', 1), ('engineering', 1), ('date', 1), ('focus', 1), ('latest', 1), ('recent', 1), ('occurring', 1), ('field', 1), ('offer', 1)]
[('artificial', 2), ('intelligence', 2), ('first', 1), ('published', 1), ('increasingly', 1), ('employed', 1), ('area', 1), ('human', 1), ('endeavor', 1), ('industry', 1), ('anticipating', 1), ('need', 1), ('professional', 1), ('researcher', 1), ('student', 1), ('alike', 1), ('international', 1), ('dictionary', 1), ('defines', 1), ('illustrates', 1), ('term', 1), ('provides', 1), ('detailed', 1), ('explanation', 1), ('major', 1), ('concept', 1)]
[('data', 4), ('cloud', 2), ('advent', 1), ('revolution', 1), ('volume', 1), ('produced', 1), ('increased', 1), ('exponentially', 1), ('still', 1), ('showing', 1), ('upward', 1), ('trend', 1), ('abundant', 1), ('enormous', 1), ('precious', 1), ('resource', 1), ('managed', 1), ('properly', 1), ('technology', 1), ('play', 1), ('important', 1), ('role', 1), ('management', 1), ('storing', 1), ('rather', 1), ('local', 1)]
[('generalisation', 4), ('map', 3), ('effect', 2), ('text', 1), ('describes', 1), ('late', 1), ('understanding', 1), ('context', 1), ('paper', 1), ('gi', 1), ('particular', 1), ('value', 1), ('helping', 1), ('automate', 1), ('measure', 1), ('process', 1), ('research', 1), ('concentrated', 1), ('quantifying', 1), ('analysing', 1), ('locked', 1)]
[('attack', 2), ('tackling', 1), ('cybersecurity', 1), ('challenge', 1), ('matter', 1), ('survival', 1), ('society', 1), ('large', 1), ('cyber', 1), ('rapidly', 1), ('increasing', 1), ('sophistication', 1), ('magnitude', 1), ('destructive', 1), ('potential', 1), ('new', 1), ('threat', 1), ('emerge', 1), ('regularly', 1), ('last', 1), ('year', 1), ('seen', 1), ('ransomware', 1), ('boom', 1), ('distributed', 1), ('denial', 1), ('service', 1), ('leveraging', 1), ('internet', 1), ('thing', 1)]
[('contribution', 2), ('software', 2), ('engineering', 2), ('featuring', 1), ('leading', 1), ('expert', 1), ('edited', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('computer', 1), ('game', 1), ('development', 1), ('complex', 1), ('interdisciplinary', 1), ('field', 1), ('relies', 1), ('wide', 1), ('variety', 1), ('discipline', 1), ('including', 1), ('art', 1), ('humanity', 1), ('behavioural', 1), ('science', 1), ('business', 1)]
[('machine', 2), ('learning', 2), ('data', 2), ('part', 2), ('engineering', 2), ('redefined', 1), ('way', 1), ('work', 1), ('increasingly', 1), ('becoming', 1), ('indispensable', 1), ('everyday', 1), ('life', 1), ('pragmatic', 1), ('programmer', 1), ('analytics', 1), ('science', 1), ('solution', 1), ('discus', 1), ('modern', 1), ('software', 1), ('practice', 1), ('revolution', 1), ('conceptually', 1), ('practical', 1)]
[('machine', 2), ('vision', 2), ('technology', 2), ('system', 2), ('discussion', 1), ('application', 1), ('semiconductor', 1), ('electronic', 1), ('automotive', 1), ('wood', 1), ('food', 1), ('pharmaceutical', 1), ('printing', 1), ('container', 1), ('industry', 1), ('describes', 1), ('enable', 1), ('project', 1), ('move', 1), ('forward', 1), ('swiftly', 1), ('efficiently', 1), ('focus', 1), ('nuance', 1), ('engineering', 1), ('integration', 1)]
[('programmer', 3), ('easy', 1), ('textbook', 1), ('provides', 1), ('introduction', 1), ('computer', 1), ('architecture', 1), ('focusing', 1), ('essential', 1), ('aspect', 1), ('hardware', 1), ('need', 1), ('know', 1), ('topic', 1), ('explained', 1), ('point', 1), ('view', 1), ('text', 1), ('emphasizes', 1), ('consequence', 1), ('divided', 1), ('five', 1), ('part', 1), ('book', 1), ('cover', 1), ('basic', 1), ('digital', 1), ('logic', 1)]
[('valuable', 2), ('various', 2), ('session', 2), ('seri', 1), ('success', 1), ('presence', 1), ('guest', 1), ('speaker', 1), ('lead', 1), ('discussion', 1), ('right', 1), ('direction', 1), ('showering', 1), ('audience', 1), ('esteemed', 1), ('knowledge', 1), ('insight', 1), ('field', 1), ('quad', 1), ('cyber', 1), ('security', 1), ('capability', 1), ('national', 1), ('intervention', 1), ('program', 1)]
[('data', 3), ('application', 3), ('high', 2), ('performance', 2), ('computing', 1), ('big', 1), ('methodology', 1), ('explores', 1), ('emerging', 1), ('architecture', 1), ('intensive', 1), ('novel', 1), ('efficient', 1), ('analytical', 1), ('strategy', 1), ('boost', 1), ('processing', 1), ('cutting', 1), ('edge', 1), ('diverse', 1), ('field', 1), ('machine', 1), ('learning', 1), ('life', 1), ('science', 1), ('neural', 1), ('network', 1), ('neuromorphic', 1)]
[('system', 2), ('traffic', 2), ('beyond', 1), ('wireless', 1), ('communication', 1), ('support', 1), ('time', 1), ('volume', 1), ('today', 1), ('extremely', 1), ('high', 1), ('load', 1), ('major', 1), ('issue', 1), ('faced', 1), ('designer', 1), ('researcher', 1), ('challenge', 1), ('met', 1), ('combination', 1), ('parallel', 1), ('technique', 1), ('use', 1), ('spectrum', 1), ('flexibly', 1), ('realize', 1), ('higher', 1)]
[('china', 3), ('conference', 2), ('innovation', 2), ('volume', 1), ('represents', 1), ('proceeding', 1), ('international', 1), ('communication', 1), ('engineering', 1), ('icice', 1), ('organized', 1), ('university', 1), ('petroleum', 1), ('huadong', 1), ('east', 1), ('taiwanese', 1), ('institute', 1), ('knowledge', 1), ('held', 1), ('qingdao', 1), ('shandong', 1), ('october', 1), ('november', 1)]
[('information', 3), ('system', 3), ('data', 2), ('complex', 1), ('including', 1), ('collecting', 1), ('storing', 1), ('processing', 1), ('delivering', 1), ('main', 1), ('component', 1), ('computer', 1), ('hardware', 1), ('software', 1), ('telecommunication', 1), ('database', 1), ('warehouse', 1), ('human', 1), ('resource', 1), ('procedure', 1), ('development', 1), ('innovation', 1), ('technology', 1), ('applicat', 1)]
[('computational', 2), ('vision', 2), ('medical', 2), ('image', 2), ('processing', 2), ('vipimage', 2), ('contains', 1), ('invited', 1), ('lecture', 1), ('full', 1), ('paper', 1), ('presented', 1), ('iv', 1), ('eccomas', 1), ('thematic', 1), ('conference', 1), ('funchal', 1), ('madeira', 1), ('island', 1), ('portugal', 1), ('october', 1), ('international', 1), ('contribution', 1), ('country', 1), ('provide', 1), ('comprehensive', 1), ('cov', 1)]
[('quantum', 3), ('widely', 1), ('believed', 1), ('computation', 1), ('never', 1), ('become', 1), ('reality', 1), ('discovery', 1), ('error', 1), ('correction', 1), ('proof', 1), ('accuracy', 1), ('threshold', 1), ('theorem', 1), ('nearly', 1), ('ten', 1), ('year', 1), ('ago', 1), ('gave', 1), ('rise', 1), ('extensive', 1), ('development', 1), ('research', 1), ('aimed', 1), ('creating', 1), ('working', 1), ('scalable', 1), ('computer', 1), ('decade', 1), ('passed', 1)]
[('present', 1), ('internet', 1), ('age', 1), ('risk', 1), ('analysis', 1), ('crisis', 1), ('response', 1), ('based', 1), ('information', 1), ('make', 1), ('digital', 1), ('world', 1), ('full', 1), ('possibility', 1), ('improvement', 1), ('daily', 1), ('life', 1), ('capability', 1), ('service', 1), ('supported', 1), ('intelligent', 1), ('system', 1), ('effective', 1), ('decisionmaking', 1), ('book', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('th', 1), ('inter', 1)]
[('contradictory', 2), ('problem', 2), ('society', 1), ('forge', 1), ('ahead', 1), ('process', 1), ('solving', 1), ('various', 1), ('ceaselessly', 1), ('innovating', 1), ('desire', 1), ('mankind', 1), ('use', 1), ('computer', 1), ('computing', 1), ('network', 1), ('help', 1), ('deal', 1), ('conduct', 1), ('innovative', 1), ('activity', 1), ('using', 1), ('formal', 1), ('model', 1), ('discus', 1), ('object', 1), ('extension', 1), ('possibility', 1), ('change', 1)]
[('computer', 3), ('aided', 3), ('competitive', 2), ('business', 1), ('arena', 1), ('company', 1), ('continually', 1), ('strive', 1), ('create', 1), ('new', 1), ('better', 1), ('product', 1), ('faster', 1), ('efficiently', 1), ('cost', 1), ('effectively', 1), ('competitor', 1), ('gain', 1), ('keep', 1), ('advantage', 1), ('design', 1), ('cad', 1), ('engineering', 1), ('cae', 1), ('manufacturing', 1), ('cam', 1), ('industry', 1)]
[('proceeding', 2), ('computer', 2), ('education', 2), ('technology', 2), ('set', 1), ('contains', 1), ('selected', 1), ('information', 1), ('related', 1), ('paper', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('cicet', 1), ('held', 1), ('march', 1), ('hong', 1), ('kong', 1), ('aim', 1), ('provide', 1), ('platform', 1), ('researcher', 1), ('engineer', 1), ('academic', 1), ('indu', 1)]
[('mechanic', 3), ('conference', 2), ('computer', 2), ('method', 2), ('poznan', 2), ('recent', 1), ('advance', 1), ('computational', 1), ('contains', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('jubilee', 1), ('th', 1), ('cmm', 1), ('took', 1), ('place', 1), ('august', 1), ('university', 1), ('technology', 1), ('first', 1), ('polish', 1), ('held', 1), ('successful', 1)]
[('structure', 3), ('connection', 2), ('graph', 2), ('discover', 1), ('different', 1), ('fieldsdiscrete', 1), ('interaction', 1), ('highlight', 1), ('among', 1), ('various', 1), ('discrete', 1), ('including', 1), ('directed', 1), ('hypergraphs', 1), ('partial', 1), ('order', 1), ('finite', 1), ('topology', 1), ('simplicial', 1), ('complex', 1), ('explores', 1), ('relationship', 1), ('classical', 1), ('area', 1), ('mathematics', 1)]
[('fcics', 2), ('international', 1), ('conference', 1), ('future', 1), ('communication', 1), ('information', 1), ('computer', 1), ('science', 1), ('held', 1), ('beijing', 1), ('china', 1), ('objective', 1), ('provide', 1), ('platform', 1), ('researcher', 1), ('engineer', 1), ('academic', 1), ('industrial', 1), ('professional', 1), ('world', 1), ('present', 1), ('research', 1), ('result', 1)]
[('management', 2), ('information', 2), ('educational', 2), ('engineering', 2), ('conference', 2), ('book', 1), ('contains', 1), ('selected', 1), ('computer', 1), ('related', 1), ('paper', 1), ('international', 1), ('miee', 1), ('held', 1), ('xiamen', 1), ('china', 1), ('november', 1), ('aimed', 1), ('provide', 1), ('platform', 1), ('researcher', 1), ('engineer', 1), ('academic', 1)]
[('international', 3), ('conference', 2), ('expert', 2), ('electronics', 1), ('information', 1), ('technology', 1), ('intellectualization', 1), ('iceiti', 1), ('dedicated', 1), ('build', 1), ('high', 1), ('level', 1), ('academic', 1), ('communication', 1), ('forum', 1), ('scholar', 1), ('fi', 1), ('rst', 1), ('annual', 1), ('series', 1), ('held', 1), ('pengcheng', 1), ('shenzhen', 1), ('china', 1), ('august', 1), ('many', 1), ('prestigious', 1)]
[('mobile', 3), ('ubiquitous', 3), ('consolidating', 1), ('recent', 1), ('research', 1), ('area', 1), ('handbook', 1), ('computing', 1), ('status', 1), ('perspective', 1), ('illustrates', 1), ('design', 1), ('implementation', 1), ('deployment', 1), ('system', 1), ('particularly', 1), ('environment', 1), ('modeling', 1), ('database', 1), ('component', 1), ('wireless', 1), ('infrastructure', 1), ('supplying', 1), ('overarching', 1), ('perspecti', 1)]
[('thoroughly', 1), ('revised', 1), ('semester', 1), ('course', 1), ('known', 1), ('highly', 1), ('regarded', 1), ('book', 1), ('outstanding', 1), ('text', 1), ('undergraduate', 1), ('discrete', 1), ('mathematics', 1), ('updated', 1), ('new', 1), ('extended', 1), ('discussion', 1), ('order', 1), ('notation', 1), ('generating', 1), ('function', 1), ('chaos', 1), ('aspect', 1), ('statistic', 1), ('computational', 1), ('biology', 1), ('written', 1), ('lively', 1), ('clear', 1), ('style', 1), ('talk', 1), ('th', 1)]
[('nanotechnology', 2), ('nano', 2), ('sensor', 2), ('rapidly', 1), ('emerging', 1), ('field', 1), ('fabrication', 1), ('enabled', 1), ('creation', 1), ('new', 1), ('dramatic', 1), ('improvement', 1), ('sensitivity', 1), ('range', 1), ('along', 1), ('substantial', 1), ('miniaturization', 1), ('although', 1), ('many', 1), ('book', 1), ('recent', 1), ('advance', 1), ('micro', 1), ('scale', 1), ('transducer', 1), ('adequately', 1), ('represented', 1)]
[('control', 3), ('engineering', 3), ('information', 3), ('system', 3), ('contains', 1), ('paper', 1), ('presented', 1), ('international', 1), ('conference', 1), ('icceis', 1), ('yueyang', 1), ('hunan', 1), ('china', 1), ('june', 1), ('major', 1), ('aspect', 1), ('theory', 1), ('application', 1), ('addressed', 1), ('including', 1), ('intelligent', 1)]
[('electronic', 2), ('engineering', 2), ('information', 2), ('science', 2), ('proceeding', 2), ('paper', 2), ('international', 1), ('conference', 1), ('iceeis', 1), ('held', 1), ('january', 1), ('harbin', 1), ('china', 1), ('volume', 1), ('assembles', 1), ('various', 1), ('researcher', 1), ('engineer', 1), ('educator', 1), ('engaged', 1), ('field', 1)]
[('multimedia', 4), ('technology', 2), ('processing', 2), ('iv', 1), ('collection', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('icmt', 1), ('sydney', 1), ('australia', 1), ('march', 1), ('book', 1), ('discus', 1), ('wide', 1), ('range', 1), ('topic', 1), ('including', 1), ('image', 1), ('signal', 1), ('video', 1), ('audio', 1), ('data', 1), ('communication', 1), ('transmission', 1), ('tool', 1)]
[('conference', 2), ('computer', 2), ('education', 2), ('different', 2), ('proceeding', 1), ('volume', 1), ('contains', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('international', 1), ('frontier', 1), ('icfce', 1), ('held', 1), ('december', 1), ('wuhan', 1), ('china', 1), ('objective', 1), ('provide', 1), ('forum', 1), ('researcher', 1), ('field', 1), ('especially', 1)]
[('conference', 2), ('cecnet', 2), ('th', 1), ('international', 1), ('electronic', 1), ('communication', 1), ('network', 1), ('inherits', 1), ('fruitfulness', 1), ('past', 1), ('three', 1), ('lay', 1), ('foundation', 1), ('forthcoming', 1), ('next', 1), ('year', 1), ('shanghai', 1), ('hosted', 1), ('hubei', 1), ('university', 1), ('science', 1), ('technology', 1), ('china', 1), ('main', 1), ('objective', 1), ('providing', 1), ('comprehensive', 1), ('global', 1)]
[('conference', 3), ('communication', 2), ('volume', 1), ('represents', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('innovation', 1), ('engineering', 1), ('icice', 1), ('held', 1), ('guiyang', 1), ('guizhou', 1), ('china', 1), ('october', 1), ('provided', 1), ('unified', 1), ('platform', 1), ('researcher', 1), ('wide', 1), ('range', 1), ('field', 1), ('information', 1), ('technology', 1)]
[('video', 4), ('cataloguing', 2), ('structure', 2), ('arrival', 1), ('digital', 1), ('age', 1), ('created', 1), ('need', 1), ('able', 1), ('store', 1), ('manage', 1), ('digitally', 1), ('use', 1), ('increasing', 1), ('amount', 1), ('audio', 1), ('material', 1), ('thus', 1), ('emerged', 1), ('requirement', 1), ('time', 1), ('parsing', 1), ('content', 1), ('extraction', 1), ('explains', 1), ('efficiently', 1), ('perform', 1), ('analysis', 1)]
[('proceeding', 2), ('computer', 2), ('education', 2), ('technology', 2), ('set', 1), ('contains', 1), ('selected', 1), ('information', 1), ('related', 1), ('paper', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('cicet', 1), ('held', 1), ('april', 1), ('guilin', 1), ('china', 1), ('aim', 1), ('provide', 1), ('platform', 1), ('researcher', 1), ('engineer', 1), ('academic', 1)]
[('reconfigurable', 3), ('computing', 3), ('adaptive', 3), ('system', 2), ('architecture', 2), ('technique', 1), ('promising', 1), ('microprocessor', 1), ('theory', 1), ('application', 1), ('explores', 1), ('latest', 1), ('research', 1), ('activity', 1), ('hardware', 1), ('first', 1), ('section', 1), ('book', 1), ('cover', 1)]
[('train', 3), ('rail', 2), ('capacity', 2), ('communication', 2), ('control', 2), ('cbtc', 2), ('rapid', 1), ('population', 1), ('explosion', 1), ('improving', 1), ('transit', 1), ('speed', 1), ('strongly', 1), ('desirable', 1), ('around', 1), ('world', 1), ('based', 1), ('automated', 1), ('system', 1), ('using', 1), ('high', 1), ('bidirectional', 1), ('ground', 1), ('ensure', 1), ('safe', 1), ('operation', 1), ('vehicle', 1), ('book', 1), ('present', 1), ('latest', 1), ('advance', 1)]
[('swarm', 2), ('artificial', 2), ('search', 2), ('wolf', 2), ('optimization', 2), ('intelligence', 1), ('principle', 1), ('advance', 1), ('application', 1), ('delivers', 1), ('depth', 1), ('coverage', 1), ('bat', 1), ('fish', 1), ('firefly', 1), ('cuckoo', 1), ('flower', 1), ('pollination', 1), ('bee', 1), ('colony', 1), ('gray', 1), ('algorithm', 1), ('book', 1), ('begin', 1), ('brief', 1), ('introduction', 1), ('mathematical', 1), ('addressing', 1), ('basic', 1), ('concept', 1), ('related', 1)]
[('proceeding', 2), ('architectural', 2), ('energy', 2), ('information', 2), ('engineering', 2), ('volume', 1), ('brings', 1), ('together', 1), ('selected', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('presented', 1), ('international', 1), ('conference', 1), ('aeie', 1), ('held', 1), ('july', 1), ('hong', 1), ('kong', 1), ('china', 1), ('divided', 1), ('part', 1), ('environmental', 1), ('enginee', 1)]
[('cmos', 2), ('imagers', 2), ('work', 1), ('dedicated', 1), ('based', 1), ('imaging', 1), ('emphasis', 1), ('noise', 1), ('modeling', 1), ('characterization', 1), ('optimization', 1), ('order', 1), ('contribute', 1), ('design', 1), ('high', 1), ('performance', 1), ('general', 1), ('range', 1), ('particular', 1), ('known', 1), ('superior', 1), ('ccd', 1), ('due', 1), ('flexibility', 1), ('term', 1), ('integration', 1), ('capability', 1), ('typically', 1)]
[('book', 2), ('rov', 2), ('training', 2), ('support', 1), ('reader', 1), ('development', 1), ('remotely', 1), ('operated', 1), ('vehicle', 1), ('pilot', 1), ('simulator', 1), ('exploiting', 1), ('open', 1), ('source', 1), ('free', 1), ('gaming', 1), ('software', 1), ('emphasizing', 1), ('importance', 1), ('using', 1), ('established', 1), ('widely', 1), ('available', 1), ('game', 1), ('design', 1), ('technique', 1), ('provide', 1), ('engaging', 1), ('scenario', 1), ('developer', 1), ('trainee', 1)]
[('activity', 2), ('content', 2), ('event', 1), ('today', 1), ('world', 1), ('ordinarily', 1), ('captured', 1), ('using', 1), ('photo', 1), ('video', 1), ('multimedia', 1), ('limitation', 1), ('storing', 1), ('data', 1), ('fetching', 1), ('effectively', 1), ('three', 1), ('dimensional', 1), ('continuous', 1), ('pc', 1), ('animation', 1), ('proper', 1), ('medium', 1), ('simulate', 1), ('occasion', 1), ('book', 1), ('focus', 1), ('futuristic', 1)]
[('game', 5), ('design', 3), ('card', 2), ('deck', 2), ('deep', 1), ('dive', 1), ('trading', 1), ('collectible', 1), ('analyst', 1), ('joshua', 1), ('bycer', 1), ('back', 1), ('discus', 1), ('building', 1), ('genre', 1), ('original', 1), ('success', 1), ('magic', 1), ('gathering', 1), ('today', 1), ('market', 1), ('online', 1), ('hearthstone', 1), ('gwent', 1), ('philosophy', 1), ('builder', 1), ('tabletop', 1)]
[('thing', 2), ('iot', 2), ('device', 2), ('book', 1), ('compendium', 1), ('various', 1), ('application', 1), ('current', 1), ('progress', 1), ('powerful', 1), ('technology', 1), ('known', 1), ('internet', 1), ('provides', 1), ('system', 1), ('interconnecting', 1), ('vehicle', 1), ('electrical', 1), ('equipment', 1), ('agriculture', 1), ('etc', 1), ('item', 1), ('allocated', 1), ('computing', 1), ('use', 1), ('network', 1), ('transfer', 1), ('data', 1)]
[('game', 5), ('industry', 2), ('evolution', 2), ('play', 1), ('identity', 1), ('insight', 1), ('issue', 1), ('provides', 1), ('detailed', 1), ('overview', 1), ('continuing', 1), ('including', 1), ('history', 1), ('economic', 1), ('impact', 1), ('pattern', 1), ('growth', 1), ('examines', 1), ('technology', 1), ('platform', 1), ('cycle', 1), ('establishment', 1), ('various', 1), ('genre', 1), ('shifting', 1), ('focus', 1)]
[('cloud', 2), ('computing', 2), ('iot', 2), ('big', 2), ('data', 2), ('internet', 1), ('thing', 1), ('three', 1), ('significant', 1), ('technological', 1), ('trend', 1), ('affecting', 1), ('world', 1), ('largest', 1), ('corporation', 1), ('book', 1), ('discus', 1), ('focus', 1), ('benefit', 1), ('implementation', 1), ('problem', 1), ('addition', 1), ('examines', 1), ('many', 1), ('structure', 1), ('application', 1), ('pertinent', 1)]
[('carter', 1), ('new', 1), ('book', 1), ('designedup', 1), ('useful', 1), ('guide', 1), ('modern', 1), ('design', 1), ('practitioner', 1), ('sits', 1), ('intersection', 1), ('consultancy', 1), ('agency', 1), ('world', 1), ('chooses', 1), ('plot', 1), ('course', 1), ('across', 1), ('many', 1), ('company', 1), ('diverse', 1), ('set', 1), ('interest', 1), ('instead', 1), ('loyal', 1), ('selected', 1), ('exciting', 1), ('path', 1)]
[('security', 2), ('resulting', 2), ('book', 1), ('serf', 1), ('introduction', 1), ('world', 1), ('provides', 1), ('insight', 1), ('current', 1), ('management', 1), ('practice', 1), ('fail', 1), ('overall', 1), ('dissatisfaction', 1), ('practitioner', 1), ('lack', 1), ('success', 1), ('corporate', 1), ('environment', 1), ('author', 1), ('examines', 1), ('reason', 1), ('suggests', 1), ('fix', 1), ('improvement', 1), ('highly', 1)]
[('wireless', 2), ('wsns', 2), ('deployment', 2), ('sensor', 1), ('network', 1), ('attracted', 1), ('high', 1), ('interest', 1), ('last', 1), ('decade', 1), ('mobile', 1), ('computing', 1), ('research', 1), ('community', 1), ('application', 1), ('numerous', 1), ('growing', 1), ('including', 1), ('indoor', 1), ('scenario', 1), ('home', 1), ('office', 1), ('outdoor', 1), ('adversary', 1), ('territory', 1), ('tactical', 1), ('background', 1), ('due', 1)]
[('ai', 3), ('ml', 3), ('dl', 3), ('learning', 2), ('many', 2), ('device', 2), ('algorithm', 2), ('tool', 2), ('today', 1), ('artificial', 1), ('intelligence', 1), ('machine', 1), ('deep', 1), ('become', 1), ('hottest', 1), ('area', 1), ('information', 1), ('technology', 1), ('society', 1), ('intelligent', 1), ('rely', 1), ('smart', 1), ('operation', 1), ('although', 1), ('used', 1), ('internet', 1), ('application', 1), ('electronic', 1)]
[('work', 2), ('based', 1), ('author', 1), ('note', 1), ('compiled', 1), ('year', 1), ('intended', 1), ('animation', 1), ('student', 1), ('professional', 1), ('manual', 1), ('learning', 1), ('tool', 1), ('focusing', 1), ('exclusively', 1), ('animator', 1), ('provides', 1), ('key', 1), ('understanding', 1), ('principle', 1), ('motion', 1), ('transfer', 1), ('character', 1), ('whether', 1), ('drawn', 1), ('modeled', 1)]
[('game', 5), ('mechanic', 2), ('designer', 2), ('design', 2), ('learn', 1), ('take', 1), ('idea', 1), ('playable', 1), ('product', 1), ('aspire', 1), ('sure', 1), ('begin', 1), ('tabletop', 1), ('video', 1), ('guide', 1), ('initial', 1), ('attempt', 1), ('go', 1), ('beyond', 1), ('simple', 1), ('description', 1), ('definition', 1), ('explore', 1), ('detail', 1), ('issue', 1)]
[('modern', 2), ('day', 2), ('smart', 2), ('system', 2), ('agricultural', 2), ('agriculture', 1), ('play', 1), ('vital', 1), ('role', 1), ('country', 1), ('growth', 1), ('technology', 1), ('drive', 1), ('every', 1), ('domain', 1), ('toward', 1), ('use', 1), ('traditional', 1), ('procedure', 1), ('satisfy', 1), ('requirement', 1), ('challenging', 1), ('task', 1), ('cloud', 1), ('iot', 1), ('engineering', 1), ('provides', 1), ('substantial', 1), ('coverage', 1), ('various', 1), ('challenge', 1)]
[('agricultural', 2), ('ai', 2), ('role', 2), ('book', 1), ('created', 1), ('intention', 1), ('informing', 1), ('international', 1), ('audience', 1), ('latest', 1), ('technological', 1), ('aspect', 1), ('developing', 1), ('smart', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('take', 1), ('main', 1), ('majority', 1), ('chapter', 1), ('associated', 1), ('data', 1), ('analytics', 1), ('component', 1), ('better', 1)]
[('smart', 2), ('essential', 1), ('resource', 1), ('work', 1), ('understanding', 1), ('design', 1), ('develop', 1), ('application', 1), ('present', 1), ('future', 1), ('problem', 1), ('field', 1), ('agriculture', 1), ('dr', 1), ('deepak', 1), ('gupta', 1), ('maharaja', 1), ('agrasen', 1), ('institute', 1), ('technology', 1), ('delhi', 1), ('india', 1), ('result', 1), ('advance', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('many', 1), ('aspect', 1), ('daily', 1), ('life', 1), ('transformed', 1)]
[('intelligent', 3), ('system', 2), ('computational', 1), ('intelligence', 1), ('ci', 1), ('refers', 1), ('ability', 1), ('computer', 1), ('accomplish', 1), ('task', 1), ('normally', 1), ('completed', 1), ('being', 1), ('human', 1), ('animal', 1), ('artificial', 1), ('offer', 1), ('improvement', 1), ('healthcare', 1), ('providing', 1), ('convenient', 1), ('solution', 1), ('service', 1), ('assisted', 1), ('machine', 1), ('learning', 1)]
[('healthcare', 3), ('data', 3), ('health', 2), ('patient', 2), ('main', 1), ('aim', 1), ('informatics', 1), ('precision', 1), ('management', 1), ('improve', 1), ('service', 1), ('given', 1), ('industry', 1), ('bring', 1), ('meaningful', 1), ('outcome', 1), ('applying', 1), ('information', 1), ('knowledge', 1), ('domain', 1), ('feature', 1), ('improves', 1), ('quality', 1), ('present', 1), ('wide', 1), ('range', 1)]
[('state', 2), ('book', 2), ('focused', 1), ('united', 1), ('summarizes', 1), ('secondary', 1), ('impact', 1), ('covid', 1), ('due', 1), ('increased', 1), ('use', 1), ('technology', 1), ('establishing', 1), ('global', 1), ('response', 1), ('social', 1), ('distancing', 1), ('mandate', 1), ('non', 1), ('essential', 1), ('business', 1), ('working', 1), ('home', 1), ('center', 1), ('disparate', 1), ('guidance', 1), ('provided', 1), ('domestically', 1), ('local', 1), ('level', 1)]
[('document', 2), ('library', 2), ('service', 2), ('book', 1), ('take', 1), ('close', 1), ('look', 1), ('recent', 1), ('changing', 1), ('emphasis', 1), ('collection', 1), ('access', 1), ('description', 1), ('delivery', 1), ('automation', 1), ('process', 1), ('moved', 1), ('technical', 1), ('reference', 1), ('role', 1), ('professional', 1), ('working', 1), ('capacity', 1), ('changed', 1), ('dramatically', 1), ('administrator', 1)]
[('world', 3), ('computer', 2), ('principle', 2), ('based', 2), ('physic', 1), ('form', 1), ('basis', 1), ('many', 1), ('motion', 1), ('behavior', 1), ('seen', 1), ('real', 1), ('virtual', 1), ('animated', 1), ('film', 1), ('visual', 1), ('effect', 1), ('game', 1), ('describing', 1), ('underlying', 1), ('physical', 1), ('creating', 1), ('simulation', 1), ('generated', 1), ('brought', 1), ('life', 1), ('physically', 1)]
[('computer', 3), ('hardware', 2), ('solution', 2), ('system', 1), ('architecture', 1), ('provides', 1), ('professional', 1), ('student', 1), ('necessary', 1), ('understanding', 1), ('address', 1), ('ongoing', 1), ('issue', 1), ('related', 1), ('discus', 1), ('supplied', 1), ('industry', 1), ('book', 1), ('describes', 1), ('trend', 1), ('computing', 1), ('led', 1), ('current', 1), ('available', 1), ('infrastructure', 1)]
[('game', 3), ('rigging', 2), ('technical', 2), ('using', 2), ('step', 2), ('character', 2), ('video', 2), ('primer', 1), ('artist', 1), ('maya', 1), ('python', 1), ('another', 1), ('manual', 1), ('loosely', 1), ('related', 1), ('tutorial', 1), ('tin', 1), ('take', 1), ('real', 1), ('world', 1), ('creative', 1), ('process', 1), ('cinematics', 1), ('allowing', 1), ('reader', 1), ('complete', 1), ('inside', 1), ('look', 1)]
[('system', 2), ('game', 2), ('design', 2), ('designing', 1), ('gamified', 1), ('fundamental', 1), ('guide', 1), ('building', 1), ('essential', 1), ('skill', 1), ('interaction', 1), ('revitalize', 1), ('reimagine', 1), ('real', 1), ('world', 1), ('city', 1), ('corporation', 1), ('school', 1), ('military', 1), ('author', 1), ('sari', 1), ('gilbert', 1), ('develops', 1), ('set', 1), ('core', 1), ('principle', 1), ('tool', 1), ('using', 1), ('thinking', 1), ('interactive', 1), ('build', 1)]
[('game', 3), ('design', 3), ('development', 2), ('introducing', 1), ('new', 1), ('student', 1), ('video', 1), ('crucial', 1), ('component', 1), ('consider', 1), ('implementation', 1), ('unity', 1), ('playmaker', 1), ('essential', 1), ('concept', 1), ('publishing', 1), ('provides', 1), ('theoretical', 1), ('background', 1), ('topic', 1), ('character', 1), ('story', 1), ('level', 1), ('interface', 1), ('audio', 1), ('mechanic', 1), ('tool', 1)]
[('chapter', 3), ('first', 2), ('robotics', 2), ('research', 2), ('published', 1), ('seven', 1), ('comprise', 1), ('book', 1), ('review', 1), ('contemporary', 1), ('work', 1), ('geometric', 1), ('side', 1), ('defines', 1), ('fundamental', 1), ('goal', 1), ('broad', 1), ('term', 1), ('outline', 1), ('agenda', 1), ('whose', 1), ('item', 1), ('constitutes', 1), ('substantial', 1), ('area', 1), ('second', 1), ('present', 1), ('recently', 1)]
[('fun', 2), ('challenge', 2), ('learning', 1), ('computer', 1), ('language', 1), ('either', 1), ('frustrating', 1), ('boring', 1), ('requires', 1), ('wake', 1), ('learner', 1), ('curiosity', 1), ('provide', 1), ('emotional', 1), ('reward', 1), ('overcoming', 1), ('book', 1), ('designed', 1), ('includes', 1), ('smaller', 1), ('bigger', 1), ('call', 1), ('playground', 1), ('hope', 1), ('reader', 1), ('enjoy', 1)]
[('iot', 3), ('book', 2), ('internet', 1), ('thing', 1), ('stand', 1), ('acclaimed', 1), ('widespread', 1), ('area', 1), ('research', 1), ('definitely', 1), ('enticed', 1), ('interest', 1), ('almost', 1), ('entire', 1), ('globe', 1), ('appears', 1), ('present', 1), ('future', 1), ('technology', 1), ('attempt', 1), ('inspire', 1), ('reader', 1), ('explore', 1), ('become', 1), ('accustomed', 1), ('presented', 1), ('lucid', 1), ('eloquent', 1), ('way', 1), ('adopts', 1)]
[('health', 2), ('informatics', 2), ('smart', 1), ('computational', 1), ('intelligence', 1), ('biomedical', 1), ('present', 1), ('state', 1), ('art', 1), ('innovation', 1), ('research', 1), ('design', 1), ('implementation', 1), ('methodological', 1), ('algorithmic', 1), ('solution', 1), ('data', 1), ('processing', 1), ('problem', 1), ('including', 1), ('analysis', 1), ('evolving', 1), ('trend', 1), ('computer', 1), ('aided', 1), ('diagnosis', 1), ('book', 1), ('describes', 1), ('practical', 1)]
[('data', 3), ('iot', 2), ('raw', 2), ('number', 1), ('internet', 1), ('thing', 1), ('element', 1), ('grows', 1), ('exponentially', 1), ('interaction', 1), ('generate', 1), ('massive', 1), ('amount', 1), ('multi', 1), ('structured', 1), ('challenge', 1), ('explosion', 1), ('transform', 1), ('information', 1), ('knowledge', 1), ('used', 1), ('system', 1), ('make', 1), ('intelligent', 1), ('decision', 1), ('industrial', 1)]
[('geometry', 3), ('basic', 2), ('computer', 2), ('toolbox', 1), ('take', 1), ('novel', 1), ('particularly', 1), ('visual', 1), ('approach', 1), ('teaching', 1), ('concept', 1), ('three', 1), ('dimensional', 1), ('explains', 1), ('essential', 1), ('today', 1), ('modeling', 1), ('graphic', 1), ('animation', 1), ('system', 1), ('theory', 1), ('completely', 1), ('covered', 1), ('emphasis', 1), ('book', 1), ('abstract', 1), ('proof', 1)]
[('others', 2), ('different', 2), ('working', 2), ('fundamentally', 1), ('making', 1), ('game', 1), ('designing', 1), ('everyone', 1), ('contributing', 1), ('angle', 1), ('towards', 1), ('best', 1), ('possible', 1), ('product', 1), ('conclusively', 1), ('garcia', 1), ('ruiz', 1), ('chosen', 1), ('collection', 1), ('chapter', 1), ('demonstrates', 1), ('several', 1), ('aspect', 1), ('gaming', 1), ('stand', 1), ('raise', 1), ('level', 1), ('expertise', 1), ('field', 1)]
[('new', 2), ('game', 2), ('texture', 2), ('create', 2), ('edition', 1), ('professional', 1), ('art', 1), ('using', 1), ('photoshop', 1), ('feature', 1), ('date', 1), ('technique', 1), ('allow', 1), ('unique', 1), ('shaders', 1), ('material', 1), ('revised', 1), ('take', 1), ('technology', 1), ('account', 1), ('ideal', 1), ('hand', 1), ('resource', 1), ('creating', 1), ('online', 1), ('world', 1), ('simulation', 1), ('web', 1), ('based', 1), ('application', 1)]
[('visual', 2), ('device', 2), ('high', 2), ('screen', 2), ('content', 2), ('recent', 1), ('year', 1), ('proliferated', 1), ('massive', 1), ('resolution', 1), ('contrast', 1), ('tiny', 1), ('one', 1), ('mobile', 1), ('phone', 1), ('limited', 1), ('dynamic', 1), ('range', 1), ('color', 1), ('gamut', 1), ('wide', 1), ('variety', 1), ('viewed', 1), ('creates', 1), ('challenge', 1), ('developer', 1), ('adapting', 1), ('optimized', 1), ('viewing', 1)]
[('color', 6), ('concept', 3), ('tool', 2), ('book', 1), ('provides', 1), ('overview', 1), ('application', 1), ('theory', 1), ('digital', 1), ('medium', 1), ('visualization', 1), ('highlight', 1), ('specific', 1), ('harmony', 1), ('show', 1), ('apply', 1), ('case', 1), ('study', 1), ('example', 1), ('usage', 1), ('actual', 1), ('online', 1), ('mobile', 1), ('deficiency', 1), ('reviewed', 1), ('discussed', 1)]
[('game', 4), ('audio', 4), ('programming', 3), ('book', 3), ('welcome', 1), ('principle', 1), ('practice', 1), ('first', 1), ('kind', 1), ('entire', 1), ('dedicated', 1), ('art', 1), ('fifteen', 1), ('chapter', 1), ('written', 1), ('top', 1), ('programmer', 1), ('sound', 1), ('designer', 1), ('industry', 1), ('contains', 1), ('knowledge', 1), ('wisdom', 1)]
[('story', 3), ('evolution', 1), ('telling', 1), ('old', 1), ('human', 1), ('race', 1), ('beginning', 1), ('ancestor', 1), ('first', 1), ('gathered', 1), ('around', 1), ('campfire', 1), ('share', 1), ('wondrous', 1), ('tale', 1), ('oral', 1), ('tradition', 1), ('today', 1), ('information', 1), ('shared', 1), ('wave', 1), ('filling', 1), ('screen', 1), ('word', 1), ('image', 1), ('always', 1), ('surrounded', 1), ('united', 1), ('way', 1)]
[('sequencing', 2), ('advance', 1), ('technology', 1), ('allowed', 1), ('scientist', 1), ('study', 1), ('human', 1), ('genome', 1), ('greater', 1), ('depth', 1), ('larger', 1), ('scale', 1), ('many', 1), ('hundred', 1), ('million', 1), ('short', 1), ('read', 1), ('course', 1), ('day', 1), ('best', 1), ('way', 1), ('deal', 1), ('flood', 1), ('data', 1), ('algorithm', 1), ('next', 1), ('generation', 1), ('invaluable', 1), ('tool', 1)]
[('game', 4), ('ai', 3), ('technique', 3), ('pro', 1), ('collected', 1), ('wisdom', 1), ('professional', 1), ('present', 1), ('state', 1), ('art', 1), ('tip', 1), ('trick', 1), ('drawn', 1), ('developer', 1), ('shipped', 1), ('commercial', 1), ('best', 1), ('known', 1), ('academic', 1), ('field', 1), ('book', 1), ('act', 1), ('toolbox', 1), ('proven', 1), ('coupled', 1), ('newest', 1), ('advance', 1), ('applied', 1)]
[('hdr', 3), ('book', 2), ('method', 2), ('imaging', 2), ('explores', 1), ('needed', 1), ('creating', 1), ('manipulating', 1), ('content', 1), ('step', 1), ('change', 1), ('traditional', 1), ('closely', 1), ('matching', 1), ('see', 1), ('eye', 1), ('year', 1), ('first', 1), ('edition', 1), ('appeared', 1), ('become', 1), ('widespread', 1), ('moving', 1), ('research', 1), ('concept', 1), ('standard', 1), ('new', 1)]
[('computational', 2), ('field', 2), ('dynamic', 2), ('invaluable', 1), ('resource', 1), ('biologist', 1), ('researcher', 1), ('seeking', 1), ('introduction', 1), ('topic', 1), ('chromatin', 1), ('structure', 1), ('regulation', 1), ('offer', 1), ('comprehensive', 1), ('coverage', 1), ('interdisciplinary', 1), ('basic', 1), ('latest', 1), ('research', 1), ('method', 1), ('statistical', 1), ('physic', 1), ('bioinformatics', 1)]
[('game', 5), ('programming', 2), ('artist', 2), ('provides', 1), ('foundation', 1), ('creatives', 1), ('jumpstart', 1), ('learning', 1), ('program', 1), ('accessible', 1), ('conversational', 1), ('guide', 1), ('focused', 1), ('three', 1), ('area', 1), ('basic', 1), ('understanding', 1), ('engine', 1), ('practical', 1), ('code', 1), ('commonly', 1), ('employed', 1), ('system', 1), ('best', 1), ('way', 1), ('make', 1)]
[('complex', 4), ('fractal', 3), ('set', 3), ('hypercomplex', 2), ('mandelbrot', 2), ('book', 1), ('present', 1), ('concisely', 1), ('full', 1), ('story', 1), ('starting', 1), ('first', 1), ('step', 1), ('dynamic', 1), ('resulting', 1), ('generalization', 1), ('julia', 1), ('plane', 1), ('holy', 1), ('grail', 1), ('geometry', 1), ('ending', 1)]
[('oracle', 3), ('goldengate', 2), ('used', 2), ('process', 2), ('database', 2), ('reporting', 2), ('data', 2), ('book', 1), ('teach', 1), ('basic', 1), ('product', 1), ('simplify', 1), ('replication', 1), ('failover', 1), ('high', 1), ('availability', 1), ('live', 1), ('warehousing', 1), ('bigdata', 1), ('etl', 1), ('connecting', 1), ('multiple', 1), ('source', 1), ('outside', 1)]
[('mogs', 2), ('multiplayer', 1), ('online', 1), ('game', 1), ('become', 1), ('new', 1), ('genre', 1), ('play', 1), ('culture', 1), ('integrating', 1), ('communication', 1), ('entertainment', 1), ('playful', 1), ('computer', 1), ('mediated', 1), ('environment', 1), ('evolves', 1), ('user', 1), ('interaction', 1), ('book', 1), ('comprehensively', 1), ('review', 1), ('origin', 1), ('player', 1), ('social', 1), ('dynamic', 1), ('six', 1), ('major', 1), ('empirical', 1), ('research', 1), ('method', 1), ('used', 1)]
[('gpu', 2), ('pro', 2), ('geometry', 2), ('manipulation', 2), ('volume', 2), ('graphic', 2), ('wolfgang', 1), ('engel', 1), ('guide', 1), ('gather', 1), ('cutting', 1), ('edge', 1), ('information', 1), ('previous', 1), ('seven', 1), ('convenient', 1), ('single', 1), ('source', 1), ('anthology', 1), ('cover', 1), ('computer', 1), ('complete', 1), ('article', 1), ('leading', 1), ('programmer', 1), ('focus', 1), ('ability', 1)]
[('gpu', 2), ('pro', 2), ('rendering', 2), ('volume', 2), ('wolfgang', 1), ('engel', 1), ('guide', 1), ('gather', 1), ('cutting', 1), ('edge', 1), ('information', 1), ('previous', 1), ('seven', 1), ('convenient', 1), ('single', 1), ('source', 1), ('anthology', 1), ('cover', 1), ('real', 1), ('time', 1), ('complete', 1), ('article', 1), ('leading', 1), ('programmer', 1), ('focus', 1), ('ability', 1), ('graphic', 1), ('processing', 1), ('unit', 1), ('process', 1)]
[('gpu', 2), ('pro', 2), ('mobile', 2), ('device', 2), ('volume', 2), ('graphic', 2), ('wolfgang', 1), ('engel', 1), ('guide', 1), ('gather', 1), ('cutting', 1), ('edge', 1), ('information', 1), ('previous', 1), ('seven', 1), ('convenient', 1), ('single', 1), ('source', 1), ('anthology', 1), ('cover', 1), ('computer', 1), ('complete', 1), ('article', 1), ('leading', 1), ('programmer', 1), ('focus', 1), ('ability', 1), ('processing', 1), ('unit', 1)]
[('domain', 2), ('multi', 1), ('modal', 1), ('representation', 1), ('lack', 1), ('complete', 1), ('consistent', 1), ('theory', 1), ('rapid', 1), ('evolution', 1), ('knowledge', 1), ('high', 1), ('dimensionality', 1), ('large', 1), ('amount', 1), ('missing', 1), ('information', 1), ('challenge', 1), ('inherent', 1), ('modern', 1), ('proteomics', 1), ('understanding', 1), ('protein', 1), ('structure', 1), ('function', 1), ('becomes', 1), ('complicated', 1), ('reached', 1), ('point', 1)]
[('increasing', 2), ('process', 2), ('data', 2), ('due', 1), ('industry', 1), ('practice', 1), ('massive', 1), ('industrial', 1), ('available', 1), ('researcher', 1), ('modelling', 1), ('optimization', 1), ('artificial', 1), ('intelligence', 1), ('method', 1), ('applied', 1), ('achieve', 1), ('robust', 1), ('control', 1), ('foreseen', 1), ('unforeseen', 1), ('system', 1), ('fluctuation', 1), ('smart', 1), ('computing', 1), ('technique', 1), ('machine', 1), ('learning', 1)]
[('animal', 4), ('force', 2), ('drawing', 2), ('reader', 2), ('image', 2), ('th', 1), ('anniversary', 1), ('edition', 1), ('locomotion', 1), ('design', 1), ('concept', 1), ('animator', 1), ('offer', 1), ('enlarged', 1), ('enhanced', 1), ('selection', 1), ('apply', 1), ('larger', 1), ('better', 1), ('appreciate', 1), ('learn', 1), ('bring', 1), ('illustration', 1), ('life', 1), ('new', 1), ('fact', 1)]
[('problem', 3), ('optimization', 2), ('becoming', 2), ('heart', 1), ('domain', 1), ('mathematical', 1), ('modeling', 1), ('solution', 1), ('methodology', 1), ('larger', 1), ('growing', 1), ('complexity', 1), ('cumbersome', 1), ('handled', 1), ('traditional', 1), ('method', 1), ('motivated', 1), ('researcher', 1), ('resort', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('based', 1)]
[('data', 3), ('mikhail', 1), ('zhilkin', 1), ('scientist', 1), ('worked', 1), ('project', 1), ('ranging', 1), ('candy', 1), ('crush', 1), ('game', 1), ('premier', 1), ('league', 1), ('football', 1), ('player', 1), ('physical', 1), ('performance', 1), ('share', 1), ('strong', 1), ('view', 1), ('best', 1), ('importantly', 1), ('worst', 1), ('practice', 1), ('analytics', 1), ('business', 1), ('intelligence', 1), ('science', 1), ('hard', 1), ('pitfall', 1), ('analyst', 1)]
[('focused', 1), ('state', 1), ('art', 1), ('overview', 1), ('evolving', 1), ('fieldpresents', 1), ('various', 1), ('technique', 1), ('glycoinformaticsthe', 1), ('development', 1), ('use', 1), ('informatics', 1), ('tool', 1), ('database', 1), ('glycobiology', 1), ('glycomics', 1), ('research', 1), ('increased', 1), ('considerably', 1), ('recent', 1), ('year', 1), ('addition', 1), ('accumulating', 1), ('structured', 1), ('glyco', 1), ('related', 1), ('data', 1), ('researcher', 1), ('developed', 1), ('semi', 1)]
[('mobile', 4), ('data', 2), ('visualization', 2), ('device', 2), ('facilitating', 1), ('access', 1), ('understanding', 1), ('wearable', 1), ('tracker', 1), ('phone', 1), ('tablet', 1), ('used', 1), ('million', 1), ('day', 1), ('weather', 1), ('map', 1), ('financial', 1), ('chart', 1), ('personal', 1), ('health', 1), ('meter', 1), ('required', 1), ('create', 1), ('ffective', 1), ('book', 1)]
[('ai', 4), ('learning', 3), ('artificial', 2), ('intelligence', 2), ('impact', 2), ('human', 2), ('help', 1), ('learner', 1), ('teacher', 1), ('system', 1), ('designer', 1), ('positive', 1), ('examines', 1), ('positively', 1), ('whether', 1), ('formal', 1), ('informal', 1), ('educational', 1), ('training', 1), ('context', 1), ('notion', 1)]
[('computer', 2), ('vision', 2), ('energy', 1), ('efficiency', 1), ('critical', 1), ('running', 1), ('battery', 1), ('powered', 1), ('system', 1), ('mobile', 1), ('phone', 1), ('uavs', 1), ('unmanned', 1), ('aerial', 1), ('vehicle', 1), ('drone', 1), ('book', 1), ('collect', 1), ('method', 1), ('annual', 1), ('iee', 1), ('low', 1), ('power', 1), ('challenge', 1), ('winner', 1), ('share', 1), ('solution', 1), ('provide', 1), ('insight', 1), ('improve', 1)]
[('topic', 2), ('game', 2), ('book', 1), ('cover', 1), ('necessary', 1), ('professional', 1), ('ai', 1), ('programmer', 1), ('need', 1), ('know', 1), ('math', 1), ('steering', 1), ('behaviour', 1), ('terrain', 1), ('analysis', 1), ('pathfinding', 1), ('decision', 1), ('making', 1), ('written', 1), ('easily', 1), ('accessible', 1), ('accompanied', 1), ('example', 1), ('allows', 1), ('reader', 1), ('add', 1), ('code', 1), ('see', 1), ('effect', 1), ('change', 1)]
[('optimization', 2), ('algorithm', 2), ('objective', 2), ('moth', 1), ('flame', 1), ('emerging', 1), ('meta', 1), ('heuristic', 1), ('widely', 1), ('used', 1), ('science', 1), ('industry', 1), ('solving', 1), ('problem', 1), ('using', 1), ('requires', 1), ('addressing', 1), ('number', 1), ('challenge', 1), ('including', 1), ('multiple', 1), ('constraint', 1), ('binary', 1), ('decision', 1), ('variable', 1), ('large', 1), ('scale', 1), ('search', 1), ('space', 1), ('dynamic', 1), ('function', 1), ('noisy', 1)]
[('book', 2), ('animation', 2), ('provides', 1), ('comprehensive', 1), ('account', 1), ('german', 1), ('history', 1), ('analysis', 1), ('current', 1), ('state', 1), ('industry', 1), ('competition', 1), ('american', 1), ('cheaper', 1), ('international', 1), ('product', 1), ('face', 1), ('dwindling', 1), ('budget', 1), ('covering', 1), ('film', 1), ('tv', 1), ('considers', 1), ('europe', 1), ('lost', 1), ('domestic', 1), ('territory', 1)]
[('engine', 3), ('design', 3), ('gpu', 2), ('pro', 2), ('volume', 2), ('wolfgang', 1), ('engel', 1), ('guide', 1), ('gather', 1), ('cutting', 1), ('edge', 1), ('information', 1), ('previous', 1), ('seven', 1), ('convenient', 1), ('single', 1), ('source', 1), ('anthology', 1), ('cover', 1), ('complete', 1), ('article', 1), ('leading', 1), ('programmer', 1), ('focus', 1), ('various', 1), ('aspect', 1), ('quality', 1)]
[('game', 3), ('unreal', 3), ('technology', 3), ('dr', 1), ('alireza', 1), ('tavakkoli', 1), ('development', 1), ('simulation', 1), ('cover', 1), ('latest', 1), ('version', 1), ('epic', 1), ('inc', 1), ('leading', 1), ('revolution', 1), ('gaming', 1), ('graphic', 1), ('artificial', 1), ('intelligence', 1), ('potent', 1), ('prominent', 1), ('engine', 1), ('currently', 1), ('used', 1)]
[('autodesk', 3), ('maya', 2), ('animation', 1), ('raw', 1), ('beginner', 1), ('using', 1), ('hand', 1), ('academic', 1), ('textbook', 1), ('training', 1), ('manual', 1), ('individual', 1), ('animator', 1), ('second', 1), ('edition', 1), ('completely', 1), ('rewritten', 1), ('take', 1), ('account', 1), ('update', 1), ('including', 1), ('renderer', 1), ('arnold', 1), ('contains', 1), ('entirely', 1), ('new', 1), ('example', 1), ('tutorial', 1)]
[('game', 3), ('book', 2), ('designing', 2), ('social', 2), ('impact', 2), ('serf', 2), ('guide', 2), ('provides', 1), ('contemporary', 1), ('foundation', 1), ('structured', 1), ('part', 1), ('understanding', 1), ('application', 1), ('implementation', 1), ('particularly', 1), ('focused', 1), ('need', 1), ('medium', 1), ('professional', 1), ('indie', 1), ('designer', 1), ('college', 1), ('student', 1)]
[('praise', 1), ('computational', 1), ('system', 1), ('biologyapproaches', 1), ('cancer', 1), ('research', 1), ('complex', 1), ('concept', 1), ('written', 1), ('clearly', 1), ('informative', 1), ('illustration', 1), ('useful', 1), ('link', 1), ('book', 1), ('enjoyable', 1), ('yet', 1), ('provides', 1), ('sufficient', 1), ('depth', 1), ('serve', 1), ('valuable', 1), ('resource', 1), ('student', 1), ('faculty', 1), ('trey', 1), ('ideker', 1), ('professor', 1), ('medicine', 1), ('uc', 1), ('xan', 1), ('diego', 1)]
[('book', 1), ('make', 1), ('argument', 1), ('performance', 1), ('modeling', 1), ('simulation', 1), ('become', 1), ('central', 1), ('issue', 1), ('computer', 1), ('science', 1), ('engineering', 1), ('part', 1), ('due', 1), ('application', 1), ('structure', 1), ('comprising', 1), ('internet', 1), ('dealing', 1), ('primarily', 1), ('theory', 1), ('tool', 1), ('technique', 1), ('related', 1), ('communication', 1), ('system', 1), ('volume', 1), ('provides', 1), ('tutorial', 1), ('survey', 1)]
[('game', 4), ('ai', 4), ('pro', 2), ('tactic', 2), ('strategy', 2), ('volume', 2), ('steve', 1), ('rabin', 1), ('guide', 1), ('gather', 1), ('cutting', 1), ('edge', 1), ('information', 1), ('previous', 1), ('three', 1), ('convenient', 1), ('single', 1), ('source', 1), ('anthology', 1), ('cover', 1), ('complete', 1), ('article', 1), ('leading', 1), ('programmer', 1), ('focus', 1), ('largely', 1), ('combat', 1), ('decision', 1), ('made', 1)]
[('ai', 5), ('game', 4), ('behavior', 3), ('pro', 2), ('character', 2), ('volume', 2), ('steve', 1), ('rabin', 1), ('guide', 1), ('gather', 1), ('cutting', 1), ('edge', 1), ('information', 1), ('previous', 1), ('three', 1), ('convenient', 1), ('single', 1), ('source', 1), ('anthology', 1), ('cover', 1), ('complete', 1), ('article', 1), ('leading', 1), ('programmer', 1), ('focus', 1), ('individual', 1)]
[('game', 4), ('ai', 4), ('pro', 2), ('movement', 2), ('pathfinding', 2), ('volume', 2), ('steve', 1), ('rabin', 1), ('guide', 1), ('gather', 1), ('cutting', 1), ('edge', 1), ('information', 1), ('previous', 1), ('three', 1), ('convenient', 1), ('single', 1), ('source', 1), ('anthology', 1), ('covering', 1), ('complete', 1), ('article', 1), ('leading', 1), ('programmer', 1), ('explore', 1), ('better', 1), ('way', 1), ('smooth', 1)]
[('game', 4), ('ai', 4), ('architecture', 3), ('pro', 2), ('volume', 2), ('steve', 1), ('rabin', 1), ('guide', 1), ('gather', 1), ('cutting', 1), ('edge', 1), ('information', 1), ('previous', 1), ('three', 1), ('convenient', 1), ('single', 1), ('source', 1), ('anthology', 1), ('covering', 1), ('complete', 1), ('article', 1), ('leading', 1), ('programmer', 1), ('explore', 1), ('modern', 1), ('behavior', 1), ('tree', 1)]
[('graphic', 3), ('science', 2), ('book', 1), ('introduces', 1), ('fundamental', 1), ('concept', 1), ('principle', 1), ('written', 1), ('undergraduate', 1), ('postgraduate', 1), ('student', 1), ('computer', 1), ('multimedia', 1), ('data', 1), ('demonstrates', 1), ('use', 1), ('matlab', 1), ('programming', 1), ('solving', 1), ('problem', 1), ('related', 1), ('discus', 1), ('variety', 1), ('visualization', 1), ('tool', 1), ('generate', 1)]
[('developer', 3), ('game', 3), ('publishing', 3), ('independent', 2), ('video', 2), ('professor', 1), ('odile', 1), ('limpach', 1), ('give', 1), ('everything', 1), ('need', 1), ('succeed', 1), ('world', 1), ('challenge', 1), ('practical', 1), ('guide', 1), ('defines', 1), ('mean', 1), ('indie', 1), ('offer', 1), ('concise', 1), ('framework', 1), ('tackle', 1), ('decision', 1), ('whether', 1)]
[('affection', 4), ('game', 4), ('design', 2), ('play', 2), ('love', 1), ('electronic', 1), ('primer', 1), ('brings', 1), ('together', 1), ('thought', 1), ('leadership', 1), ('romance', 1), ('explain', 1), ('past', 1), ('present', 1), ('possible', 1), ('future', 1), ('author', 1), ('apply', 1), ('combination', 1), ('analysis', 1), ('experience', 1), ('digital', 1), ('analog', 1), ('research', 1)]
[('diversity', 3), ('context', 2), ('game', 2), ('industry', 2), ('book', 2), ('description', 1), ('cooperative', 1), ('gaming', 1), ('provides', 1), ('practical', 1), ('advice', 1), ('regarding', 1), ('begin', 1), ('deep', 1), ('dive', 1), ('research', 1), ('literature', 1), ('history', 1), ('provide', 1), ('around', 1), ('topic', 1), ('worth', 1), ('considering', 1), ('look', 1), ('different', 1), ('facet', 1)]
[('web', 4), ('apps', 3), ('end', 2), ('today', 2), ('application', 1), ('occupy', 1), ('large', 1), ('space', 1), ('within', 1), ('infrastructure', 1), ('business', 1), ('corporation', 1), ('simply', 1), ('touch', 1), ('front', 1), ('back', 1), ('impact', 1), ('every', 1), ('corner', 1), ('become', 1), ('complex', 1), ('made', 1), ('prime', 1), ('target', 1), ('sophisticated', 1), ('cyberattacks', 1), ('result', 1)]
[('infographics', 2), ('joyful', 1), ('friendly', 1), ('human', 1), ('approach', 1), ('data', 1), ('leading', 1), ('graphic', 1), ('designer', 1), ('recent', 1), ('time', 1), ('show', 1), ('judicious', 1), ('use', 1), ('humor', 1), ('make', 1), ('understandable', 1), ('written', 1), ('non', 1), ('academic', 1), ('easy', 1), ('understand', 1), ('language', 1), ('historical', 1), ('contemporary', 1), ('visual', 1), ('example', 1), ('presented', 1), ('throughout', 1), ('small', 1), ('book', 1), ('provides', 1)]
[('language', 4), ('natural', 3), ('algebraic', 2), ('structure', 1), ('address', 1), ('central', 1), ('problem', 1), ('cognitive', 1), ('science', 1), ('concerning', 1), ('learning', 1), ('procedure', 1), ('human', 1), ('acquire', 1), ('represent', 1), ('recently', 1), ('system', 1), ('dominated', 1), ('study', 1), ('formal', 1), ('computational', 1), ('linguistics', 1), ('ai', 1), ('psychology', 1)]
[('ai', 3), ('system', 3), ('human', 3), ('amidst', 1), ('rampant', 1), ('use', 1), ('algorithmization', 1), ('enabled', 1), ('common', 1), ('theme', 1), ('factor', 1), ('play', 1), ('essential', 1), ('role', 1), ('designing', 1), ('developing', 1), ('operationalizing', 1), ('remit', 1), ('ensure', 1), ('run', 1), ('transparently', 1), ('perform', 1), ('equitably', 1), ('value', 1), ('privacy', 1), ('effectively', 1), ('fulfill', 1), ('need', 1), ('book', 1)]
[('design', 4), ('game', 3), ('book', 2), ('tool', 2), ('provides', 1), ('series', 1), ('transdisciplinary', 1), ('help', 1), ('designer', 1), ('improve', 1), ('pipeline', 1), ('output', 1), ('using', 1), ('approach', 1), ('psychology', 1), ('anthropology', 1), ('sociology', 1), ('offer', 1), ('practical', 1), ('main', 1), ('aspect', 1), ('conception', 1), ('testing', 1), ('drawing', 1), ('theory', 1), ('look', 1)]
[('game', 4), ('ai', 3), ('wisdom', 2), ('pro', 1), ('collected', 1), ('professional', 1), ('present', 1), ('cutting', 1), ('edge', 1), ('tip', 1), ('trick', 1), ('technique', 1), ('artificial', 1), ('intelligence', 1), ('drawn', 1), ('developer', 1), ('shipped', 1), ('commercial', 1), ('best', 1), ('known', 1), ('academic', 1), ('field', 1), ('contains', 1), ('knowledge', 1), ('advice', 1), ('hard', 1), ('earned', 1), ('insight', 1), ('gathered', 1), ('across', 1)]
[('deep', 4), ('learning', 4), ('cancer', 4), ('diagnostics', 3), ('pre', 2), ('processing', 2), ('technique', 2), ('book', 1), ('examines', 1), ('based', 1), ('approach', 1), ('field', 1), ('essential', 1), ('topic', 1), ('include', 1), ('introduction', 1), ('current', 1), ('application', 1), ('data', 1), ('using', 1), ('review', 1)]
[('production', 3), ('use', 2), ('blender', 2), ('video', 2), ('film', 2), ('bringing', 1), ('concrete', 1), ('example', 1), ('industry', 1), ('light', 1), ('book', 1), ('explains', 1), ('create', 1), ('visual', 1), ('effect', 1), ('supply', 1), ('reader', 1), ('practical', 1), ('way', 1), ('learn', 1), ('tool', 1), ('across', 1), ('wide', 1), ('range', 1), ('scenario', 1), ('including', 1), ('setting', 1), ('camera', 1), ('stage', 1), ('lighting', 1)]
[('character', 4), ('game', 2), ('virtual', 2), ('earliest', 1), ('representation', 1), ('video', 1), ('rudimentary', 1), ('term', 1), ('presentation', 1), ('performance', 1), ('appear', 1), ('today', 1), ('extremely', 1), ('complex', 1), ('lifelike', 1), ('potential', 1), ('make', 1), ('powerful', 1), ('emotional', 1), ('connection', 1), ('gamers', 1), ('become', 1)]
[('digital', 3), ('image', 3), ('processing', 3), ('algorithm', 2), ('library', 2), ('implementing', 1), ('reference', 1), ('cimg', 1), ('present', 1), ('theory', 1), ('implementation', 1), ('using', 1), ('dedicated', 1), ('mean', 1), ('transforming', 1), ('content', 1), ('denoising', 1), ('stylizing', 1), ('etc', 1), ('extracting', 1), ('information', 1), ('solve', 1), ('given', 1), ('problem', 1), ('object', 1)]
[('game', 3), ('able', 2), ('video', 2), ('flow', 2), ('chart', 2), ('code', 2), ('past', 1), ('program', 1), ('meant', 1), ('make', 1), ('draw', 1), ('use', 1), ('powerful', 1), ('state', 1), ('machine', 1), ('technology', 1), ('create', 1), ('dream', 1), ('development', 1), ('using', 1), ('unity', 1), ('playmaker', 1), ('teach', 1), ('substitute', 1), ('complete', 1), ('course', 1), ('us', 1), ('project', 1), ('based', 1), ('appro', 1)]
[('technology', 2), ('healthcare', 2), ('implementing', 1), ('new', 1), ('information', 1), ('sector', 1), ('provide', 1), ('alternative', 1), ('managing', 1), ('patient', 1), ('health', 1), ('record', 1), ('system', 1), ('improving', 1), ('quality', 1), ('care', 1), ('received', 1), ('book', 1), ('provides', 1), ('overview', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('related', 1), ('field', 1), ('cover', 1), ('main', 1), ('advantage', 1), ('disadvantage', 1), ('along', 1)]
[('scientific', 2), ('visualization', 2), ('computer', 2), ('rapid', 1), ('advance', 1), ('made', 1), ('major', 1), ('impact', 1), ('display', 1), ('behavior', 1), ('use', 1), ('become', 1), ('key', 1), ('component', 1), ('academic', 1), ('research', 1), ('commercial', 1), ('product', 1), ('development', 1), ('field', 1), ('engineering', 1), ('design', 1), ('present', 1), ('unified', 1), ('collection', 1), ('graphic', 1), ('technique', 1)]
[('reliability', 3), ('system', 2), ('assurance', 2), ('engineering', 2), ('book', 1), ('provides', 1), ('latest', 1), ('research', 1), ('advance', 1), ('field', 1), ('contains', 1), ('reference', 1), ('material', 1), ('application', 1), ('offering', 1), ('theoretical', 1), ('sound', 1), ('background', 1), ('adequate', 1), ('numerical', 1), ('illustration', 1), ('included', 1), ('concept', 1), ('pertaining', 1), ('analysis', 1)]
[('cyber', 2), ('book', 1), ('provides', 1), ('reader', 1), ('insight', 1), ('maneuvering', 1), ('adaptive', 1), ('intelligent', 1), ('defense', 1), ('describes', 1), ('required', 1), ('model', 1), ('security', 1), ('supporting', 1), ('function', 1), ('enable', 1), ('analysis', 1), ('potential', 1), ('threat', 1), ('detection', 1), ('attack', 1), ('implementation', 1), ('countermeasure', 1), ('expending', 1), ('attacker', 1), ('resource', 1), ('preserving', 1), ('user', 1), ('experience', 1)]
[('new', 2), ('green', 2), ('computer', 2), ('world', 2), ('age', 1), ('communication', 1), ('author', 1), ('john', 1), ('outline', 1), ('wide', 1), ('web', 1), ('revolutionizing', 1), ('life', 1), ('global', 1), ('community', 1), ('originally', 1), ('published', 1), ('cover', 1), ('history', 1), ('wired', 1), ('become', 1), ('nature', 1), ('internet', 1), ('potential', 1), ('power', 1), ('artificial', 1), ('intelligence', 1)]
[('mistake', 2), ('learn', 1), ('write', 1), ('code', 1), ('fewer', 1), ('bug', 1), ('problem', 1), ('programming', 1), ('always', 1), ('typo', 1), ('away', 1), ('writing', 1), ('something', 1), ('silly', 1), ('likewise', 1), ('data', 1), ('analysis', 1), ('small', 1), ('model', 1), ('lead', 1), ('big', 1), ('result', 1), ('combining', 1), ('discipline', 1), ('mean', 1), ('easy', 1), ('missed', 1), ('minus', 1), ('sign', 1), ('generate', 1), ('false', 1)]
[('award', 3), ('association', 2), ('american', 2), ('publisher', 2), ('aap', 2), ('prose', 2), ('winner', 2), ('book', 2), ('finalist', 1), ('subject', 1), ('category', 1), ('taylor', 1), ('francis', 1), ('outstanding', 1), ('professional', 1), ('human', 1), ('body', 1), ('wearable', 1), ('product', 1), ('designer', 1), ('guide', 1), ('unlike', 1), ('anatomy', 1), ('divided', 1)]
[('cyber', 2), ('security', 2), ('information', 2), ('protection', 1), ('system', 1), ('hardware', 1), ('software', 1), ('theft', 1), ('damage', 1), ('interruption', 1), ('misdirection', 1), ('resource', 1), ('word', 1), ('focus', 1), ('protecting', 1), ('computer', 1), ('network', 1), ('program', 1), ('data', 1), ('use', 1), ('rest', 1), ('motion', 1), ('unauthorized', 1), ('unintended', 1), ('access', 1), ('change', 1)]
[('demand', 2), ('manufacturing', 1), ('industry', 1), ('rising', 1), ('challenge', 1), ('imposed', 1), ('aggressive', 1), ('consumer', 1), ('need', 1), ('cost', 1), ('effective', 1), ('processing', 1), ('delivers', 1), ('quality', 1), ('fastest', 1), ('possible', 1), ('time', 1), ('fierce', 1), ('competition', 1), ('mean', 1), ('keeping', 1), ('abreast', 1), ('new', 1), ('development', 1), ('application', 1), ('technology', 1), ('essential', 1), ('company', 1), ('meet', 1)]
[('book', 2), ('design', 2), ('lot', 2), ('end', 2), ('security', 2), ('privacy', 2), ('analysis', 2), ('describes', 1), ('architect', 1), ('internet', 1), ('thing', 1), ('solution', 1), ('provide', 1), ('scale', 1), ('unique', 1), ('detailed', 1), ('coverage', 1), ('threat', 1), ('protocol', 1), ('secure', 1), ('principle', 1), ('intelligent', 1), ('impact', 1), ('effect', 1), ('usability', 1), ('unveils', 1)]
[('game', 4), ('audio', 3), ('volume', 2), ('programming', 2), ('welcome', 1), ('third', 1), ('principle', 1), ('practice', 1), ('first', 1), ('series', 1), ('kind', 1), ('dedicated', 1), ('art', 1), ('science', 1), ('contains', 1), ('chapter', 1), ('top', 1), ('programmer', 1), ('sound', 1), ('designer', 1), ('industry', 1), ('topic', 1), ('range', 1), ('across', 1), ('genre', 1), ('arpg', 1), ('rts', 1), ('fps', 1), ('etc', 1)]
[('book', 2), ('geometric', 2), ('source', 2), ('code', 2), ('solving', 1), ('problem', 1), ('robustly', 1), ('error', 1), ('free', 1), ('actual', 1), ('practice', 1), ('content', 1), ('accompanying', 1), ('based', 1), ('feature', 1), ('request', 1), ('feedback', 1), ('received', 1), ('industry', 1), ('professional', 1), ('academic', 1), ('want', 1), ('description', 1), ('implementation', 1), ('algorithm', 1), ('provides', 1)]
[('routing', 2), ('protocol', 2), ('book', 1), ('discus', 1), ('link', 1), ('state', 1), ('ospf', 1), ('path', 1), ('vector', 1), ('bgp', 1), ('cover', 1), ('identifying', 1), ('characteristic', 1), ('operation', 1), ('database', 1), ('maintain', 1), ('material', 1), ('presented', 1), ('practicing', 1), ('engineer', 1), ('perspective', 1), ('linking', 1), ('theory', 1), ('fundamental', 1), ('concept', 1), ('common', 1), ('practice', 1), ('real', 1), ('world', 1)]
[('book', 2), ('artificial', 2), ('big', 2), ('data', 2), ('healthcare', 2), ('application', 2), ('cover', 1), ('wide', 1), ('range', 1), ('topic', 1), ('role', 1), ('intelligence', 1), ('machine', 1), ('learning', 1), ('deal', 1), ('ethical', 1), ('issue', 1), ('concern', 1), ('associated', 1), ('explores', 1), ('different', 1), ('area', 1), ('highlight', 1), ('current', 1), ('research', 1)]
[('healthcare', 3), ('machine', 2), ('book', 1), ('discus', 1), ('iot', 1), ('enables', 1), ('interoperability', 1), ('communication', 1), ('information', 1), ('exchange', 1), ('data', 1), ('movement', 1), ('cover', 1), ('service', 1), ('delivery', 1), ('automates', 1), ('patient', 1), ('care', 1), ('help', 1), ('mobility', 1), ('solution', 1), ('new', 1), ('technology', 1), ('next', 1), ('gen', 1), ('facility', 1), ('challenge', 1), ('faced', 1), ('suggested', 1)]
[('data', 3), ('iot', 3), ('internet', 2), ('machine', 2), ('learning', 2), ('book', 1), ('highlight', 1), ('state', 1), ('art', 1), ('research', 1), ('usage', 1), ('security', 1), ('privacy', 1), ('scenario', 1), ('thing', 1), ('along', 1), ('related', 1), ('application', 1), ('using', 1), ('big', 1), ('technology', 1), ('design', 1), ('make', 1), ('efficient', 1), ('compatible', 1), ('system', 1), ('ict', 1), ('science', 1), ('brings', 1), ('together', 1)]
[('reader', 2), ('artificial', 1), ('intelligence', 1), ('introduction', 1), ('inquisitive', 1), ('guide', 1), ('history', 1), ('development', 1), ('ai', 1), ('early', 1), ('mathematical', 1), ('beginning', 1), ('exciting', 1), ('possibility', 1), ('potential', 1), ('future', 1), ('application', 1), ('make', 1), ('journey', 1), ('accessible', 1), ('possible', 1), ('author', 1), ('build', 1), ('narrative', 1), ('around', 1), ('account', 1)]
[('language', 2), ('healthcare', 2), ('natural', 1), ('processing', 1), ('special', 1), ('focus', 1), ('low', 1), ('resource', 1), ('cover', 1), ('theoretical', 1), ('practical', 1), ('aspect', 1), ('ethical', 1), ('social', 1), ('implication', 1), ('nlp', 1), ('showcase', 1), ('latest', 1), ('research', 1), ('development', 1), ('contributing', 1), ('rising', 1), ('awareness', 1), ('importance', 1), ('maintaining', 1), ('linguistic', 1), ('diversity', 1), ('book', 1), ('go', 1)]
[('book', 1), ('discus', 1), ('radical', 1), ('technological', 1), ('change', 1), ('occurring', 1), ('due', 1), ('industry', 1), ('focus', 1), ('offering', 1), ('better', 1), ('understanding', 1), ('fourth', 1), ('industrial', 1), ('revolution', 1), ('present', 1), ('detailed', 1), ('analysis', 1), ('interdisciplinary', 1), ('knowledge', 1), ('numerical', 1), ('modeling', 1), ('simulation', 1), ('application', 1), ('cyber', 1), ('physical', 1), ('system', 1), ('information', 1)]
[('industry', 4), ('cyber', 4), ('security', 4), ('risk', 2), ('book', 1), ('seamlessly', 1), ('connects', 1), ('topic', 1), ('discus', 1), ('solution', 1), ('using', 1), ('technique', 1), ('operation', 1), ('management', 1), ('cover', 1), ('involved', 1), ('integration', 1), ('business', 1), ('highlight', 1), ('issue', 1)]
[('memory', 4), ('flash', 2), ('nonvolatile', 2), ('technology', 2), ('manufacture', 1), ('dominant', 1), ('facing', 1), ('severe', 1), ('technical', 1), ('barrier', 1), ('emerging', 1), ('proposed', 1), ('alternative', 1), ('nano', 1), ('regime', 1), ('design', 1), ('magnetic', 1), ('resistive', 1), ('phase', 1), ('changing', 1), ('introduces', 1), ('three', 1), ('promising', 1), ('candidate', 1)]
[('security', 2), ('trend', 2), ('emerging', 2), ('cyber', 2), ('analytics', 1), ('internet', 1), ('everything', 1), ('compiles', 1), ('latest', 1), ('technology', 1), ('application', 1), ('field', 1), ('includes', 1), ('chapter', 1), ('covering', 1), ('governance', 1), ('artificial', 1), ('intelligence', 1), ('cybersecurity', 1), ('challenge', 1), ('contribution', 1), ('leading', 1), ('international', 1), ('expert', 1), ('included', 1)]
[('analysis', 2), ('matrix', 2), ('method', 2), ('book', 1), ('provides', 1), ('concise', 1), ('introduction', 1), ('numerical', 1), ('concept', 1), ('engineering', 1), ('using', 1), ('fortran', 1), ('quickbasic', 1), ('matlab', 1), ('mathematica', 1), ('illustrate', 1), ('example', 1), ('discussion', 1), ('include', 1), ('algebra', 1), ('solution', 1), ('equation', 1), ('curve', 1), ('fit', 1), ('finding', 1), ('root', 1), ('polynom', 1)]
[('blockchain', 2), ('original', 2), ('generation', 2), ('recent', 1), ('year', 1), ('development', 1), ('grown', 1), ('quickly', 1), ('bitcoin', 1), ('protocol', 1), ('second', 1), ('ethereum', 1), ('platform', 1), ('today', 1), ('process', 1), ('building', 1), ('third', 1), ('blockchains', 1), ('evolution', 1), ('see', 1), ('technology', 1), ('evolved', 1), ('form', 1), ('distributed', 1), ('database', 1), ('becoming', 1), ('fully', 1)]
[('ai', 2), ('learning', 2), ('book', 2), ('focus', 2), ('various', 2), ('artificial', 1), ('intelligence', 1), ('incorporated', 1), ('machine', 1), ('deep', 1), ('algorithm', 1), ('wide', 1), ('variety', 1), ('application', 1), ('today', 1), ('implementation', 1), ('elementary', 1), ('advanced', 1), ('approach', 1), ('used', 1), ('domain', 1), ('solve', 1), ('real', 1), ('time', 1), ('decision', 1), ('making', 1), ('problem', 1), ('concept', 1)]
[('computer', 3), ('system', 2), ('based', 1), ('notion', 1), ('assistant', 1), ('recently', 1), ('become', 1), ('focus', 1), ('intense', 1), ('interest', 1), ('expanding', 1), ('role', 1), ('everyday', 1), ('life', 1), ('growing', 1), ('number', 1), ('untrained', 1), ('user', 1), ('make', 1), ('necessary', 1), ('think', 1), ('new', 1), ('way', 1), ('dividing', 1), ('labor', 1), ('human', 1), ('machine', 1), ('future', 1), ('take', 1), ('task', 1)]
[('issue', 2), ('cyber', 2), ('book', 1), ('contains', 1), ('collection', 1), ('scientific', 1), ('chapter', 1), ('addressing', 1), ('emerging', 1), ('trend', 1), ('telecommunication', 1), ('accompany', 1), ('business', 1), ('address', 1), ('application', 1), ('ict', 1), ('solution', 1), ('innovative', 1), ('know', 1), ('demonstrates', 1), ('high', 1), ('tech', 1), ('communication', 1), ('resource', 1), ('used', 1), ('improve', 1)]
[('artificial', 2), ('intelligence', 2), ('mechanical', 2), ('industrial', 2), ('engineering', 2), ('offer', 1), ('unified', 1), ('platform', 1), ('dissemination', 1), ('basic', 1), ('applied', 1), ('knowledge', 1), ('integration', 1), ('within', 1), ('realm', 1), ('book', 1), ('cover', 1), ('tool', 1), ('information', 1), ('needed', 1), ('build', 1), ('successful', 1), ('career', 1), ('source', 1)]
[('engineering', 4), ('material', 2), ('book', 1), ('provides', 1), ('depth', 1), ('knowledge', 1), ('solve', 1), ('geometrical', 1), ('mathematical', 1), ('scientific', 1), ('problem', 1), ('help', 1), ('advanced', 1), ('computational', 1), ('method', 1), ('focus', 1), ('mechanical', 1), ('divided', 1), ('three', 1), ('subsection', 1), ('covering', 1), ('design', 1), ('fluid', 1), ('thermal', 1), ('chapter', 1), ('includes', 1)]
[('book', 3), ('mobile', 3), ('network', 3), ('security', 2), ('describes', 1), ('detailed', 1), ('concept', 1), ('first', 1), ('chapter', 1), ('provide', 1), ('deeper', 1), ('perspective', 1), ('communication', 1), ('rest', 1), ('focus', 1), ('different', 1), ('aspect', 1), ('wireless', 1), ('cellular', 1), ('explores', 1), ('issue', 1), ('iot', 1), ('internet', 1), ('thing', 1), ('device', 1), ('shopping', 1)]
[('recognition', 2), ('computer', 2), ('last', 1), ('decade', 1), ('progress', 1), ('deep', 1), ('learning', 1), ('profound', 1), ('transformational', 1), ('effect', 1), ('many', 1), ('complex', 1), ('problem', 1), ('including', 1), ('speech', 1), ('machine', 1), ('translation', 1), ('natural', 1), ('language', 1), ('understanding', 1), ('vision', 1), ('result', 1), ('achieve', 1), ('human', 1), ('competitive', 1), ('performance', 1), ('wide', 1), ('range', 1), ('perception', 1), ('task', 1)]
[('data', 4), ('book', 2), ('exploratory', 1), ('analysis', 1), ('help', 1), ('recognize', 1), ('natural', 1), ('pattern', 1), ('hidden', 1), ('describes', 1), ('tool', 1), ('hypothesis', 1), ('generation', 1), ('visualizing', 1), ('graphical', 1), ('representation', 1), ('provides', 1), ('insight', 1), ('advanced', 1), ('analytics', 1), ('concept', 1), ('easy', 1), ('way', 1), ('address', 1), ('complete', 1), ('visualization', 1), ('technology', 1), ('workflow', 1), ('explores', 1)]
[('smart', 3), ('electric', 3), ('data', 2), ('system', 2), ('book', 1), ('explains', 1), ('concept', 1), ('center', 1), ('including', 1), ('collection', 1), ('public', 1), ('parking', 1), ('metering', 1), ('sanitizer', 1), ('dispenser', 1), ('urban', 1), ('transport', 1), ('effective', 1), ('distribution', 1), ('city', 1), ('discussed', 1), ('extensive', 1), ('role', 1), ('power', 1), ('electronics', 1), ('building', 1), ('application', 1), ('vehicle', 1)]
[('organization', 3), ('new', 3), ('technology', 2), ('technological', 2), ('today', 1), ('find', 1), ('race', 1), ('adopt', 1), ('order', 1), ('keep', 1), ('competition', 1), ('question', 1), ('answered', 1), ('ready', 1), ('advancement', 1), ('appropriate', 1), ('every', 1), ('challenge', 1), ('management', 1), ('matching', 1), ('human', 1)]
[('healthcare', 2), ('blockchain', 2), ('tremendous', 1), ('growth', 1), ('treatment', 1), ('technique', 1), ('method', 1), ('led', 1), ('emergence', 1), ('numerous', 1), ('storage', 1), ('communication', 1), ('problem', 1), ('need', 1), ('security', 1), ('among', 1), ('vendor', 1), ('patient', 1), ('book', 1), ('brings', 1), ('together', 1), ('latest', 1), ('application', 1), ('state', 1), ('art', 1), ('development', 1), ('sector', 1), ('using', 1), ('technology', 1), ('explains', 1)]
[('data', 2), ('today', 1), ('relevant', 1), ('typically', 1), ('delivered', 1), ('cloud', 1), ('based', 1), ('server', 1), ('storing', 1), ('analysis', 1), ('order', 1), ('extract', 1), ('key', 1), ('feature', 1), ('enable', 1), ('enhanced', 1), ('application', 1), ('beyond', 1), ('basic', 1), ('transmission', 1), ('raw', 1), ('realize', 1), ('possibility', 1), ('associated', 1), ('impending', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('allow', 1), ('quicker', 1), ('efficient', 1), ('expanded', 1)]
[('computing', 3), ('fog', 2), ('concept', 1), ('framework', 1), ('application', 1), ('arranged', 1), ('way', 1), ('reader', 1), ('prior', 1), ('experience', 1), ('explore', 1), ('domain', 1), ('accessible', 1), ('source', 1), ('information', 1), ('distributed', 1), ('researcher', 1), ('professional', 1), ('looking', 1), ('improve', 1), ('security', 1), ('connectivity', 1), ('understanding', 1), ('internet', 1)]
[('issue', 3), ('book', 2), ('address', 2), ('digital', 2), ('teaching', 2), ('student', 2), ('learning', 2), ('primary', 1), ('goal', 1), ('faced', 1), ('teacher', 1), ('adoption', 1), ('tool', 1), ('confronting', 1), ('educator', 1), ('integration', 1), ('technology', 1), ('include', 1), ('skepticism', 1)]
[('engineering', 3), ('use', 2), ('python', 2), ('book', 2), ('department', 1), ('company', 1), ('choose', 1), ('provides', 1), ('essential', 1), ('introduction', 1), ('open', 1), ('source', 1), ('free', 1), ('language', 1), ('expressly', 1), ('designed', 1), ('support', 1), ('first', 1), ('year', 1), ('student', 1), ('cover', 1), ('scientific', 1), ('calculation', 1), ('basic', 1), ('structured', 1), ('programming', 1), ('based', 1)]
[('medical', 4), ('development', 2), ('learning', 2), ('deep', 1), ('past', 1), ('decade', 1), ('led', 1), ('phenomenal', 1), ('growth', 1), ('ai', 1), ('based', 1), ('automated', 1), ('diagnosis', 1), ('opening', 1), ('door', 1), ('new', 1), ('era', 1), ('research', 1), ('industry', 1), ('golden', 1), ('age', 1), ('researcher', 1), ('involved', 1), ('application', 1), ('advanced', 1), ('machine', 1), ('technique', 1), ('clinical', 1)]
[('book', 2), ('design', 2), ('ccrc', 2), ('provides', 1), ('latest', 1), ('research', 1), ('based', 1), ('recommendation', 1), ('implement', 1), ('technology', 1), ('training', 1), ('program', 1), ('older', 1), ('adult', 1), ('continuing', 1), ('care', 1), ('retirement', 1), ('community', 1), ('approach', 1), ('concentrate', 1), ('providing', 1), ('useful', 1), ('best', 1), ('practice', 1), ('owner', 1), ('ceo', 1), ('activity', 1), ('director', 1), ('practitioner', 1)]
[('cyber', 2), ('application', 2), ('smart', 2), ('system', 2), ('security', 1), ('industry', 1), ('csai', 1), ('provides', 1), ('integrated', 1), ('feature', 1), ('various', 1), ('discipline', 1), ('computer', 1), ('science', 1), ('mechanical', 1), ('electrical', 1), ('electronics', 1), ('engineering', 1), ('defined', 1), ('paramount', 1), ('physical', 1), ('cps', 1), ('provide', 1), ('accurate', 1), ('real', 1), ('time', 1), ('monitoring', 1), ('control', 1)]
[('information', 4), ('retrieval', 4), ('intelligent', 2), ('hybrid', 1), ('system', 1), ('cover', 1), ('three', 1), ('area', 1), ('along', 1), ('introduction', 1), ('ir', 1), ('optimal', 1), ('using', 1), ('evolutionary', 1), ('approach', 1), ('semantic', 1), ('search', 1), ('web', 1), ('natural', 1), ('language', 1), ('processing', 1), ('talk', 1), ('design', 1), ('implementation', 1)]
[('iot', 4), ('smart', 4), ('big', 3), ('data', 3), ('book', 2), ('system', 2), ('analytics', 1), ('bda', 1), ('city', 1), ('global', 1), ('perspective', 1), ('emphasizes', 1), ('challenge', 1), ('architectural', 1), ('model', 1), ('intelligent', 1), ('framework', 1), ('decisionmaking', 1), ('using', 1), ('case', 1), ('study', 1), ('illustrates', 1), ('benefit', 1), ('method', 1), ('framing', 1)]
[('water', 2), ('book', 1), ('report', 1), ('first', 1), ('systematic', 1), ('monitoring', 1), ('modelling', 1), ('study', 1), ('availability', 1), ('quality', 1), ('seawater', 1), ('intrusion', 1), ('shatt', 1), ('al', 1), ('arab', 1), ('river', 1), ('sar', 1), ('border', 1), ('iraq', 1), ('iran', 1), ('cause', 1), ('concentration', 1), ('level', 1), ('salinity', 1), ('yet', 1), ('fully', 1), ('understood', 1), ('alone', 1), ('addressed', 1), ('leading', 1), ('conflicting', 1), ('perception', 1)]
[('biomedical', 3), ('book', 2), ('using', 2), ('ai', 2), ('iot', 2), ('signal', 2), ('processing', 2), ('cover', 1), ('advancement', 1), ('future', 1), ('challenge', 1), ('application', 1), ('development', 1), ('disruptive', 1), ('technology', 1), ('artificial', 1), ('intelligence', 1), ('internet', 1), ('thing', 1), ('divided', 1), ('four', 1), ('main', 1), ('section', 1), ('namely', 1), ('medical', 1), ('image', 1), ('device', 1)]
[('processing', 3), ('modelling', 2), ('technique', 2), ('fuzzy', 2), ('image', 2), ('text', 1), ('comprehensively', 1), ('discus', 1), ('latest', 1), ('mathematical', 1), ('application', 1), ('various', 1), ('area', 1), ('signal', 1), ('neural', 1), ('network', 1), ('machine', 1), ('learning', 1), ('numerical', 1), ('analysis', 1), ('cover', 1), ('viola', 1), ('jones', 1), ('method', 1), ('face', 1), ('detection', 1)]
[('system', 3), ('embedded', 2), ('spd', 2), ('approach', 2), ('business', 1), ('baseline', 1), ('focused', 1), ('impact', 1), ('year', 1), ('ahead', 1), ('book', 1), ('investigates', 1), ('security', 1), ('privacy', 1), ('dependability', 1), ('requirement', 1), ('raised', 1), ('existing', 1), ('future', 1), ('iot', 1), ('cyber', 1), ('physical', 1), ('proposes', 1), ('new', 1), ('shield', 1), ('philosophy', 1), ('relies', 1), ('overlay', 1)]
[('iot', 2), ('tool', 2), ('concept', 2), ('text', 1), ('comprehensively', 1), ('discus', 1), ('essential', 1), ('internet', 1), ('thing', 1), ('machine', 1), ('learning', 1), ('algorithm', 1), ('industrial', 1), ('medical', 1), ('robotics', 1), ('data', 1), ('analytics', 1), ('technology', 1), ('smart', 1), ('city', 1), ('cover', 1), ('fundamental', 1), ('advanced', 1), ('technique', 1), ('along', 1), ('energy', 1), ('efficient', 1), ('system', 1)]
[('explaining', 2), ('applied', 2), ('measuring', 2), ('john', 1), ('rus', 1), ('master', 1), ('image', 1), ('processing', 1), ('get', 1), ('real', 1), ('world', 1), ('situation', 1), ('brent', 1), ('neal', 1), ('done', 1), ('shape', 1), ('time', 1), ('expanded', 1), ('toolbox', 1), ('technique', 1), ('includes', 1), ('useful', 1), ('state', 1), ('art', 1), ('method', 1), ('broad', 1), ('problem', 1), ('understanding', 1), ('characterizing', 1)]
[('cloud', 3), ('hardware', 2), ('software', 2), ('service', 2), ('network', 2), ('system', 2), ('computing', 1), ('created', 1), ('shift', 1), ('use', 1), ('physical', 1), ('locally', 1), ('managed', 1), ('enabled', 1), ('platform', 1), ('virtualized', 1), ('hosted', 1), ('assembles', 1), ('large', 1), ('virtual', 1), ('including', 1), ('cpu', 1), ('storage', 1), ('resource', 1), ('database', 1), ('message', 1), ('queuing', 1), ('monitoring', 1)]
[('sensor', 2), ('wireless', 1), ('network', 1), ('wsns', 1), ('utilize', 1), ('fast', 1), ('cheap', 1), ('effective', 1), ('application', 1), ('imitate', 1), ('human', 1), ('intelligence', 1), ('capability', 1), ('sensing', 1), ('wider', 1), ('distributed', 1), ('scale', 1), ('acquiring', 1), ('data', 1), ('deployment', 1), ('area', 1), ('wsn', 1), ('always', 1), ('easy', 1), ('multiple', 1), ('issue', 1), ('arise', 1), ('including', 1), ('limited', 1), ('resource', 1), ('device', 1), ('run', 1), ('time', 1), ('battery', 1), ('additi', 1)]
[('frequency', 2), ('rf', 2), ('designer', 2), ('magnetic', 1), ('resonance', 1), ('imaging', 1), ('semiconductor', 1), ('processing', 1), ('rfid', 1), ('critical', 1), ('application', 1), ('within', 1), ('medium', 1), ('mf', 1), ('ultrahigh', 1), ('uhf', 1), ('range', 1), ('require', 1), ('solid', 1), ('understanding', 1), ('analytical', 1), ('experimental', 1), ('technique', 1), ('need', 1), ('able', 1), ('design', 1), ('component', 1), ('device', 1), ('cost', 1), ('effectively', 1)]
[('reality', 3), ('new', 2), ('audio', 2), ('important', 2), ('experience', 2), ('virtual', 1), ('augmented', 1), ('video', 1), ('technology', 1), ('rapidly', 1), ('entering', 1), ('home', 1), ('office', 1), ('space', 1), ('good', 1), ('quality', 1), ('always', 1), ('user', 1), ('essential', 1), ('work', 1), ('immersion', 1), ('fails', 1)]
[('thanks', 1), ('advancement', 1), ('faster', 1), ('processor', 1), ('within', 1), ('communication', 1), ('device', 1), ('rapid', 1), ('change', 1), ('information', 1), ('modulated', 1), ('multiplexed', 1), ('managed', 1), ('moved', 1), ('formula', 1), ('function', 1), ('critical', 1), ('creating', 1), ('granular', 1), ('component', 1), ('operation', 1), ('individual', 1), ('technology', 1), ('understanding', 1), ('application', 1), ('purpose', 1)]
[('distributed', 2), ('recent', 1), ('proliferation', 1), ('service', 1), ('oriented', 1), ('architecture', 1), ('soa', 1), ('cloud', 1), ('computing', 1), ('technology', 1), ('interconnected', 1), ('system', 1), ('fusion', 1), ('taking', 1), ('larger', 1), ('role', 1), ('variety', 1), ('application', 1), ('environmental', 1), ('monitoring', 1), ('crisis', 1), ('management', 1), ('intelligent', 1), ('building', 1), ('defense', 1), ('drawing', 1), ('work', 1), ('leading', 1), ('expert', 1)]
[('fuzzy', 3), ('system', 3), ('neural', 3), ('although', 1), ('network', 1), ('central', 1), ('field', 1), ('soft', 1), ('computing', 1), ('research', 1), ('work', 1), ('focused', 1), ('development', 1), ('theory', 1), ('algorithm', 1), ('design', 1), ('specific', 1), ('application', 1), ('little', 1), ('theoretical', 1), ('support', 1), ('especially', 1), ('mathematical', 1), ('foundation', 1)]
[('design', 3), ('digital', 2), ('simulink', 2), ('stateflow', 2), ('system', 2), ('better', 2), ('current', 1), ('trend', 1), ('integration', 1), ('matlab', 1), ('component', 1), ('model', 1), ('building', 1), ('simulation', 1), ('testing', 1), ('fault', 1), ('detection', 1), ('allows', 1), ('control', 1), ('flow', 1), ('process', 1), ('ultimately', 1), ('result', 1), ('integrated', 1), ('circuit', 1), ('test', 1), ('using', 1)]
[('agent', 4), ('multi', 2), ('system', 2), ('dynamic', 2), ('cooperative', 2), ('control', 2), ('distributed', 1), ('controller', 1), ('design', 1), ('generally', 1), ('challenging', 1), ('task', 1), ('especially', 1), ('complex', 1), ('due', 1), ('interconnected', 1), ('effect', 1), ('interaction', 1), ('graph', 1), ('among', 1), ('law', 1), ('consensus', 1), ('region', 1), ('approach', 1), ('offer', 1), ('systematic', 1)]
[('human', 2), ('computer', 2), ('interface', 2), ('technology', 2), ('hci', 2), ('motor', 1), ('impaired', 1), ('examines', 1), ('technical', 1), ('social', 1), ('aspect', 1), ('written', 1), ('world', 1), ('class', 1), ('academic', 1), ('expert', 1), ('committed', 1), ('improving', 1), ('disability', 1), ('inclusive', 1), ('book', 1), ('explores', 1), ('latest', 1), ('research', 1), ('offer', 1), ('insight', 1), ('current', 1), ('limitat', 1)]
[('knowledge', 3), ('analytics', 3), ('process', 2), ('data', 2), ('technique', 2), ('management', 2), ('transforming', 1), ('actionable', 1), ('complex', 1), ('requires', 1), ('use', 1), ('powerful', 1), ('machine', 1), ('advanced', 1), ('examines', 1), ('role', 1), ('integration', 1), ('big', 1), ('theory', 1), ('method', 1), ('organizational', 1)]
[('technology', 4), ('work', 2), ('shape', 2), ('conduit', 1), ('power', 1), ('modern', 1), ('world', 1), ('gatekeeper', 1), ('deciding', 1), ('either', 1), ('human', 1), ('race', 1), ('symbiosis', 1), ('going', 1), ('provides', 1), ('direction', 1), ('intention', 1), ('goal', 1)]
[('part', 3), ('formal', 2), ('method', 2), ('textbook', 1), ('give', 1), ('student', 1), ('comprehensive', 1), ('introduction', 1), ('application', 1), ('software', 1), ('hardware', 1), ('specification', 1), ('verification', 1), ('three', 1), ('first', 1), ('introduces', 1), ('fundamental', 1), ('including', 1), ('set', 1), ('theory', 1), ('function', 1), ('finite', 1), ('state', 1), ('machine', 1), ('regular', 1), ('expression', 1), ('second', 1), ('focus', 1), ('logi', 1)]
[('circuit', 3), ('high', 2), ('frequency', 2), ('traveling', 2), ('wave', 2), ('technique', 2), ('communication', 1), ('sensing', 1), ('introduces', 1), ('novel', 1), ('boost', 1), ('performance', 1), ('speed', 1), ('standard', 1), ('low', 1), ('cost', 1), ('production', 1), ('technology', 1), ('complementary', 1), ('metal', 1), ('oxide', 1), ('semiconductor', 1), ('cmos', 1), ('valuable', 1), ('resource', 1), ('experienced', 1), ('analog', 1), ('radio', 1), ('rf', 1)]
[('analysis', 3), ('image', 2), ('processing', 2), ('graph', 2), ('covering', 1), ('theoretical', 1), ('aspect', 1), ('use', 1), ('representation', 1), ('object', 1), ('theory', 1), ('practice', 1), ('demonstrates', 1), ('concept', 1), ('indispensible', 1), ('design', 1), ('cutting', 1), ('edge', 1), ('solution', 1), ('real', 1), ('world', 1), ('application', 1), ('explores', 1), ('new', 1)]
[('embedded', 3), ('networking', 2), ('system', 2), ('design', 2), ('software', 1), ('implementation', 1), ('explores', 1), ('issue', 1), ('related', 1), ('synthesis', 1), ('high', 1), ('performance', 1), ('computer', 1), ('network', 1), ('emphasis', 1), ('fundamental', 1), ('concept', 1), ('analytical', 1), ('technique', 1), ('applicable', 1), ('range', 1), ('application', 1), ('rather', 1)]
[('hardware', 2), ('design', 2), ('written', 1), ('federal', 1), ('aviation', 1), ('administration', 1), ('faa', 1), ('consultant', 1), ('designated', 1), ('engineering', 1), ('representative', 1), ('der', 1), ('electronics', 1), ('engineer', 1), ('together', 1), ('taught', 1), ('class', 1), ('radio', 1), ('technical', 1), ('commission', 1), ('aeronautics', 1), ('inc', 1), ('rtca', 1), ('washington', 1), ('district', 1), ('columbia', 1), ('usa', 1), ('airborne', 1), ('electronic', 1), ('assurance', 1)]
[('decision', 2), ('important', 2), ('intuition', 2), ('analytics', 2), ('order', 1), ('make', 1), ('informed', 1), ('three', 1), ('element', 1), ('trust', 1), ('based', 1), ('experiential', 1), ('learning', 1), ('recent', 1), ('research', 1), ('shown', 1), ('rely', 1), ('gut', 1), ('feeling', 1), ('better', 1), ('data', 1), ('driven', 1), ('environment', 1), ('inform', 1)]
[('mathematical', 2), ('signal', 2), ('processing', 2), ('communication', 2), ('foundation', 1), ('networking', 1), ('describes', 1), ('concept', 1), ('result', 1), ('important', 1), ('design', 1), ('analysis', 1), ('optimization', 1), ('algorithm', 1), ('modern', 1), ('system', 1), ('network', 1), ('helping', 1), ('reader', 1), ('master', 1), ('key', 1), ('technique', 1), ('comprehend', 1), ('current', 1), ('research', 1), ('literature', 1), ('book', 1)]
[('end', 4), ('network', 3), ('disruption', 2), ('dtns', 2), ('connectivity', 2), ('protocol', 2), ('delay', 1), ('tolerant', 1), ('subject', 1), ('arbitrarily', 1), ('long', 1), ('lived', 1), ('guarantee', 1), ('time', 1), ('consequently', 1), ('called', 1), ('novel', 1), ('core', 1), ('networking', 1), ('existing', 1), ('internet', 1), ('rely', 1), ('ability', 1), ('maintain', 1)]
[('architecture', 2), ('demand', 2), ('understanding', 2), ('despite', 1), ('tremendous', 1), ('advance', 1), ('performance', 1), ('enabled', 1), ('modern', 1), ('always', 1), ('new', 1), ('application', 1), ('arising', 1), ('require', 1), ('increasing', 1), ('capability', 1), ('keeping', 1), ('requires', 1), ('deep', 1), ('seated', 1), ('contemporary', 1), ('concert', 1), ('fundamental', 1), ('basic', 1), ('principle', 1)]
[('network', 3), ('content', 3), ('centric', 2), ('ucn', 2), ('icn', 2), ('new', 2), ('concept', 2), ('user', 1), ('information', 1), ('communication', 1), ('paradigm', 1), ('increase', 1), ('efficiency', 1), ('delivery', 1), ('availability', 1), ('infrastructure', 1), ('actively', 1), ('contributes', 1), ('caching', 1), ('distribution', 1), ('book', 1), ('present', 1), ('basic', 1), ('describes', 1)]
[('system', 3), ('engineering', 2), ('book', 1), ('emphasizes', 1), ('importance', 1), ('consistent', 1), ('planned', 1), ('computer', 1), ('oriented', 1), ('documentation', 1), ('manufacturing', 1), ('accounting', 1), ('discus', 1), ('needed', 1), ('optimize', 1), ('flow', 1), ('information', 1), ('increase', 1), ('efficiency', 1), ('modern', 1), ('cad', 1), ('cam', 1)]
[('iterative', 2), ('algorithm', 2), ('approximate', 2), ('often', 1), ('rely', 1), ('evaluation', 1), ('technique', 1), ('include', 1), ('statistical', 1), ('estimation', 1), ('computer', 1), ('simulation', 1), ('functional', 1), ('approximation', 1), ('volume', 1), ('present', 1), ('method', 1), ('study', 1), ('providing', 1), ('tool', 1), ('derivation', 1), ('error', 1), ('bound', 1), ('convergence', 1), ('rate', 1), ('optimal', 1), ('design', 1)]
[('book', 2), ('recent', 2), ('clinical', 2), ('health', 2), ('medicine', 2), ('ai', 2), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('development', 1), ('decision', 1), ('support', 1), ('system', 1), ('precision', 1), ('data', 1), ('science', 1), ('target', 1), ('researcher', 1), ('computational', 1), ('scientist', 1), ('seeking', 1), ('understand', 1), ('advance', 1), ('artificial', 1), ('intelligence', 1)]
[('image', 2), ('processing', 2), ('book', 1), ('provides', 1), ('future', 1), ('research', 1), ('direction', 1), ('iot', 1), ('based', 1), ('energy', 1), ('industry', 1), ('healthcare', 1), ('domain', 1), ('explores', 1), ('different', 1), ('application', 1), ('associated', 1), ('technology', 1), ('internet', 1), ('thing', 1), ('big', 1), ('field', 1), ('lot', 1), ('subfields', 1), ('important', 1), ('smart', 1), ('home', 1), ('improve', 1)]
[('technology', 3), ('uwb', 3), ('introductory', 1), ('reference', 1), ('cover', 1), ('concept', 1), ('ultra', 1), ('wideband', 1), ('radar', 1), ('system', 1), ('provides', 1), ('date', 1), ('information', 1), ('design', 1), ('evaluate', 1), ('analyze', 1), ('use', 1), ('application', 1), ('developing', 1), ('field', 1), ('author', 1), ('stressed', 1), ('theory', 1), ('hardware', 1), ('presented', 1), ('basic', 1), ('principle', 1)]
[('want', 2), ('skill', 2), ('creative', 1), ('idea', 1), ('wish', 1), ('transform', 1), ('code', 1), ('boost', 1), ('problem', 1), ('solving', 1), ('logic', 1), ('enhance', 1), ('career', 1), ('adopting', 1), ('algorithmic', 1), ('mindset', 1), ('increasingly', 1), ('digital', 1), ('world', 1), ('coding', 1), ('essential', 1), ('communicating', 1), ('algorithm', 1), ('machine', 1), ('perform', 1), ('set', 1), ('task', 1)]
[('learning', 4), ('machine', 2), ('deep', 2), ('healthcare', 2), ('multi', 2), ('medical', 1), ('data', 1), ('analytics', 1), ('application', 1), ('introduces', 1), ('explores', 1), ('variety', 1), ('scheme', 1), ('designed', 1), ('empower', 1), ('enhance', 1), ('represent', 1), ('institutional', 1), ('disciplinary', 1), ('ml', 1), ('dl', 1), ('research', 1), ('paradigm', 1), ('serving', 1), ('unique', 1), ('compendium', 1), ('existing', 1)]
[('brain', 3), ('interface', 2), ('human', 2), ('book', 1), ('aim', 1), ('bring', 1), ('reader', 1), ('overview', 1), ('different', 1), ('application', 1), ('computer', 1), ('bcis', 1), ('based', 1), ('year', 1), ('experience', 1), ('working', 1), ('author', 1), ('provides', 1), ('review', 1), ('eeg', 1), ('signal', 1), ('describing', 1), ('anatomically', 1), ('physiologically', 1), ('objective', 1), ('showing', 1)]
[('book', 1), ('present', 1), ('general', 1), ('computer', 1), ('definition', 1), ('abbreviation', 1), ('application', 1), ('specification', 1), ('terminology', 1), ('related', 1), ('world', 1), ('cad', 1), ('cam', 1), ('alphabetical', 1), ('order', 1)]
[('system', 2), ('smart', 2), ('today', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('ubiquitous', 1), ('applied', 1), ('practice', 1), ('everything', 1), ('industrial', 1), ('control', 1), ('ic', 1), ('health', 1), ('commerce', 1), ('cyber', 1), ('physical', 1), ('cps', 1), ('city', 1), ('parking', 1), ('healthcare', 1), ('supply', 1), ('chain', 1), ('management', 1), ('many', 1), ('numerous', 1), ('industry', 1), ('academic', 1), ('alliance', 1), ('standardization', 1), ('organization', 1), ('make', 1)]
[('game', 4), ('narrative', 3), ('create', 2), ('designer', 2), ('learn', 1), ('compelling', 1), ('storyline', 1), ('four', 1), ('experienced', 1), ('different', 1), ('genre', 1), ('development', 1), ('banded', 1), ('together', 1), ('inclusive', 1), ('guide', 1), ('work', 1), ('writer', 1), ('video', 1), ('industry', 1), ('concept', 1), ('final', 1), ('testing', 1), ('toolbox', 1), ('walk', 1)]
[('book', 2), ('artificial', 2), ('intelligence', 2), ('application', 2), ('different', 2), ('cover', 1), ('computational', 1), ('statistic', 1), ('based', 1), ('approach', 1), ('aim', 1), ('provide', 1), ('comprehensive', 1), ('coverage', 1), ('fundamental', 1), ('kind', 1), ('mathematical', 1), ('modelling', 1), ('statistical', 1), ('technique', 1), ('describing', 1), ('system', 1)]
[('analysis', 2), ('book', 1), ('present', 1), ('wide', 1), ('spectrum', 1), ('application', 1), ('image', 1), ('successfully', 1), ('employed', 1), ('providing', 1), ('reader', 1), ('insight', 1), ('merit', 1), ('demerit', 1), ('particular', 1), ('technique', 1), ('deal', 1), ('domain', 1), ('graphic', 1), ('recognition', 1), ('document', 1), ('map', 1), ('data', 1), ('interpretation', 1)]
[('fieldbus', 2), ('control', 2), ('time', 2), ('application', 2), ('last', 1), ('decade', 1), ('totally', 1), ('revolutionized', 1), ('way', 1), ('communication', 1), ('take', 1), ('place', 1), ('field', 1), ('process', 1), ('automation', 1), ('manufacturing', 1), ('industry', 1), ('recent', 1), ('introduction', 1), ('real', 1), ('fieldbuses', 1), ('opened', 1), ('multi', 1), ('axis', 1), ('motor', 1), ('critical', 1), ('designed', 1), ('ensure', 1)]
[('book', 2), ('soft', 2), ('computing', 2), ('recent', 2), ('development', 2), ('explores', 1), ('technique', 1), ('systematic', 1), ('manner', 1), ('starting', 1), ('initial', 1), ('stage', 1), ('area', 1), ('present', 1), ('survey', 1), ('existing', 1), ('knowledge', 1), ('current', 1), ('state', 1), ('art', 1), ('cutting', 1), ('edge', 1), ('original', 1), ('new', 1), ('contribution', 1), ('researcher', 1), ('advance', 1)]
[('learning', 3), ('data', 2), ('driven', 2), ('technique', 2), ('problem', 2), ('book', 1), ('highlight', 1), ('importance', 1), ('solve', 1), ('wireless', 1), ('communication', 1), ('present', 1), ('number', 1), ('related', 1), ('performance', 1), ('security', 1), ('social', 1), ('networking', 1), ('provides', 1), ('solution', 1), ('using', 1), ('various', 1), ('including', 1), ('machine', 1), ('deep', 1), ('federated', 1), ('artificial', 1)]
[('computing', 4), ('soft', 3), ('technique', 3), ('describes', 2), ('book', 1), ('different', 1), ('mathematical', 1), ('modeling', 1), ('used', 1), ('solve', 1), ('practical', 1), ('engineering', 1), ('problem', 1), ('give', 1), ('overview', 1), ('current', 1), ('state', 1), ('advantage', 1), ('disadvantage', 1), ('compared', 1), ('traditional', 1), ('hard', 1), ('example', 1), ('case', 1)]
[('brain', 2), ('computer', 2), ('glorified', 1), ('digital', 1), ('store', 1), ('information', 1), ('register', 1), ('mathematically', 1), ('transform', 1), ('mental', 1), ('representation', 1), ('establish', 1), ('perception', 1), ('behavior', 1), ('downloaded', 1), ('provide', 1), ('immortality', 1), ('destroy', 1), ('world', 1), ('emerged', 1), ('consciousness', 1), ('traveling', 1)]
[('healthcare', 3), ('application', 2), ('multi', 1), ('criterion', 1), ('decision', 1), ('making', 1), ('theory', 1), ('sustainable', 1), ('st', 1), ('edition', 1), ('excellent', 1), ('compilation', 1), ('current', 1), ('advanced', 1), ('ulti', 1), ('riteria', 1), ('ecision', 1), ('aking', 1), ('mcdm', 1), ('technique', 1), ('multiple', 1), ('recent', 1), ('innovative', 1), ('analytics', 1), ('problem', 1), ('business', 1), ('expanded', 1), ('rapidly', 1)]
[('book', 2), ('machine', 2), ('learning', 2), ('neuroscience', 2), ('working', 2), ('address', 1), ('growing', 1), ('need', 1), ('data', 1), ('mining', 1), ('offer', 1), ('basic', 1), ('overview', 1), ('required', 1), ('math', 1), ('programming', 1), ('necessary', 1), ('develop', 1), ('reliable', 1), ('model', 1), ('material', 1), ('presented', 1), ('easy', 1), ('follow', 1), ('user', 1), ('friendly', 1), ('manner', 1), ('replete', 1), ('fully', 1)]
[('analog', 4), ('text', 2), ('electronics', 2), ('approach', 2), ('comprehensive', 1), ('discus', 1), ('fundamental', 1), ('application', 1), ('design', 1), ('analysis', 1), ('unlike', 1), ('physic', 1), ('book', 1), ('focus', 1), ('engineering', 1), ('main', 1), ('component', 1), ('circuit', 1), ('general', 1), ('network', 1), ('concentrating', 1), ('development', 1), ('standard', 1), ('formula', 1)]
[('workstation', 3), ('environment', 2), ('networking', 1), ('personal', 1), ('computer', 1), ('becoming', 1), ('commonplace', 1), ('academic', 1), ('industrial', 1), ('cluster', 1), ('provides', 1), ('engineer', 1), ('familiar', 1), ('cost', 1), ('effective', 1), ('high', 1), ('performance', 1), ('computing', 1), ('often', 1), ('dedicated', 1), ('link', 1), ('communicate', 1), ('slowly', 1), ('local', 1), ('area', 1), ('network', 1), ('lan', 1)]
[('dream', 2), ('flow', 2), ('valuable', 1), ('consultant', 1), ('regulator', 1), ('useful', 1), ('tool', 1), ('basic', 1), ('field', 1), ('work', 1), ('including', 1), ('first', 1), ('cut', 1), ('evaluation', 1), ('remediation', 1), ('design', 1), ('ground', 1), ('water', 1), ('professional', 1), ('find', 1), ('ideal', 1), ('estimating', 1), ('actual', 1), ('condition', 1), ('information', 1), ('aquifer', 1), ('property', 1), ('limited', 1), ('net', 1), ('streamline', 1), ('plot', 1), ('capture', 1), ('zone', 1), ('map', 1)]
[('science', 4), ('soft', 2), ('computing', 2), ('engineering', 2), ('health', 2), ('social', 2), ('technique', 1), ('longer', 1), ('limited', 1), ('arena', 1), ('computer', 1), ('discipline', 1), ('exponentially', 1), ('growing', 1), ('demand', 1), ('branch', 1), ('even', 1), ('book', 1), ('contains', 1), ('theory', 1), ('application', 1), ('applied', 1), ('different', 1)]
[('robotics', 3), ('robot', 2), ('social', 2), ('human', 1), ('interaction', 1), ('explores', 1), ('important', 1), ('issue', 1), ('designing', 1), ('system', 1), ('work', 1), ('everyday', 1), ('environment', 1), ('edited', 1), ('leading', 1), ('figure', 1), ('field', 1), ('draw', 1), ('contribution', 1), ('researcher', 1), ('working', 1), ('robovie', 1), ('project', 1), ('atr', 1), ('intelligent', 1), ('communication', 1), ('laboratory', 1)]
[('self', 3), ('lightwave', 2), ('concept', 2), ('book', 1), ('give', 1), ('solution', 1), ('problem', 1), ('constructing', 1), ('path', 1), ('free', 1), ('space', 1), ('proposing', 1), ('organized', 1), ('network', 1), ('solnet', 1), ('enables', 1), ('form', 1), ('aligned', 1), ('coupling', 1), ('optical', 1), ('waveguide', 1), ('automatically', 1), ('solnets', 1), ('fabricated', 1), ('focusing', 1), ('lightwaves', 1), ('photosensitive', 1), ('medium', 1)]
[('coding', 4), ('theory', 3), ('optical', 3), ('book', 2), ('although', 1), ('several', 1), ('cover', 1), ('wireless', 1), ('communication', 1), ('hardware', 1), ('technology', 1), ('technique', 1), ('cdma', 1), ('specifically', 1), ('dedicated', 1), ('written', 1), ('renowned', 1), ('authority', 1), ('field', 1), ('prime', 1), ('gather', 1), ('together', 1), ('volume', 1), ('fundamental', 1)]
[('five', 1), ('decade', 1), ('field', 1), ('statistical', 1), ('hydrology', 1), ('continues', 1), ('evolve', 1), ('remains', 1), ('active', 1), ('area', 1), ('investigation', 1), ('researcher', 1), ('continue', 1), ('examine', 1), ('various', 1), ('distribution', 1), ('method', 1), ('estimation', 1), ('parameter', 1), ('problem', 1), ('related', 1), ('regionalization', 1), ('research', 1), ('appears', 1), ('journal', 1), ('report', 1), ('usually', 1), ('form', 1), ('easi', 1)]
[('electromagnetic', 2), ('compatibility', 2), ('edition', 2), ('provides', 2), ('revised', 1), ('updated', 1), ('expanded', 1), ('method', 1), ('analysis', 1), ('circuit', 1), ('measurement', 1), ('third', 1), ('comprehensive', 1), ('practical', 1), ('coverage', 1), ('design', 1), ('problem', 1), ('solving', 1), ('testing', 1), ('emc', 1), ('electrical', 1), ('electronic', 1), ('equipment', 1), ('system', 1), ('new', 1), ('novel', 1), ('information', 1)]
[('medical', 3), ('life', 2), ('learning', 2), ('goal', 1), ('informatics', 1), ('improve', 1), ('expectancy', 1), ('disease', 1), ('diagnosis', 1), ('quality', 1), ('device', 1), ('revolutionized', 1), ('healthcare', 1), ('led', 1), ('modern', 1), ('age', 1), ('machine', 1), ('deep', 1), ('internet', 1), ('thing', 1), ('iomt', 1), ('proliferation', 1), ('mobility', 1), ('agility', 1), ('book', 1), ('expose', 1), ('different', 1), ('dimension', 1)]
[('animation', 4), ('puppetry', 3), ('digital', 3), ('giesen', 2), ('age', 2), ('rolf', 1), ('puppet', 1), ('explores', 1), ('unique', 1), ('world', 1), ('application', 1), ('advent', 1), ('many', 1), ('individual', 1), ('see', 1), ('regulated', 1), ('niche', 1), ('market', 1), ('text', 1), ('argues', 1), ('viewpoint', 1), ('demonstrating', 1), ('pure', 1)]
[('achieving', 2), ('become', 2), ('electronic', 1), ('communication', 1), ('financial', 1), ('transaction', 1), ('assumed', 1), ('massive', 1), ('proportion', 1), ('today', 1), ('come', 1), ('high', 1), ('risk', 1), ('cyber', 1), ('security', 1), ('top', 1), ('priority', 1), ('crucial', 1), ('area', 1), ('study', 1), ('research', 1), ('book', 1), ('introduces', 1), ('reader', 1), ('perhaps', 1), ('effective', 1), ('tool', 1), ('secure', 1), ('environment', 1)]
[('web', 4), ('book', 2), ('intends', 1), ('expound', 1), ('complete', 1), ('concept', 1), ('theory', 1), ('research', 1), ('practice', 1), ('help', 1), ('worked', 1), ('example', 1), ('better', 1), ('understanding', 1), ('planned', 1), ('comprehensive', 1), ('reading', 1), ('beginner', 1), ('reference', 1), ('advanced', 1), ('learner', 1), ('includes', 1), ('latest', 1), ('development', 1), ('approach', 1), ('related', 1), ('world', 1), ('wide', 1)]
[('first', 1), ('thing', 1), ('find', 1), ('book', 1), ('fun', 1), ('meant', 1), ('browser', 1), ('student', 1), ('specialist', 1), ('wanting', 1), ('know', 1), ('area', 1), ('footnote', 1), ('give', 1), ('historical', 1), ('background', 1), ('text', 1), ('addition', 1), ('providing', 1), ('deeper', 1), ('application', 1), ('concept', 1), ('cited', 1), ('allows', 1)]
[('use', 2), ('volume', 1), ('present', 1), ('technical', 1), ('paper', 1), ('devoted', 1), ('development', 1), ('practical', 1), ('computer', 1), ('method', 1), ('geotechnical', 1), ('geoenviromental', 1), ('engineering', 1), ('cover', 1), ('issue', 1), ('space', 1), ('construction', 1), ('soil', 1), ('rock', 1), ('mechanic', 1), ('mining', 1), ('application', 1), ('amongst', 1), ('topic', 1)]
[('automaton', 2), ('computability', 1), ('class', 1), ('tested', 1), ('textbook', 1), ('provides', 1), ('comprehensive', 1), ('accessible', 1), ('introduction', 1), ('theory', 1), ('computation', 1), ('author', 1), ('us', 1), ('illustration', 1), ('engaging', 1), ('example', 1), ('historical', 1), ('remark', 1), ('make', 1), ('material', 1), ('interesting', 1), ('relevant', 1), ('student', 1), ('incorporates', 1), ('modern', 1), ('handy', 1), ('idea', 1)]
[('mathematical', 3), ('principle', 3), ('internet', 3), ('volume', 2), ('set', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('engineering', 1), ('book', 1), ('aim', 1), ('provide', 1), ('foundation', 1), ('upon', 1), ('based', 1), ('instead', 1), ('cover', 1), ('partial', 1), ('panorama', 1), ('key', 1), ('explores', 1)]
[('edition', 2), ('compact', 2), ('algorithm', 2), ('problem', 2), ('second', 1), ('numerical', 1), ('method', 1), ('computer', 1), ('present', 1), ('reliable', 1), ('yet', 1), ('computational', 1), ('previous', 1), ('author', 1), ('considers', 1), ('specific', 1), ('mathematical', 1), ('wide', 1), ('applicability', 1), ('develops', 1), ('approach', 1), ('solution', 1), ('consequent', 1), ('provides', 1), ('program', 1), ('step', 1), ('emphasizes', 1), ('usefu', 1)]
[('text', 1), ('third', 1), ('edition', 1), ('present', 1), ('common', 1), ('method', 1), ('computer', 1), ('automated', 1), ('graphical', 1), ('construction', 1), ('helpful', 1), ('engineering', 1), ('student', 1), ('draftsperson', 1), ('designer', 1), ('describing', 1), ('easy', 1), ('understand', 1), ('term', 1), ('wide', 1), ('range', 1), ('hardware', 1), ('platform', 1), ('run', 1), ('single', 1), ('set', 1), ('software', 1), ('option', 1), ('autodesk', 1), ('corporation', 1), ('rewritten', 1)]
[('modeling', 2), ('contribution', 1), ('renowned', 1), ('expert', 1), ('neuroscience', 1), ('ionic', 1), ('channel', 1), ('neural', 1), ('network', 1), ('essential', 1), ('interested', 1), ('neuronal', 1), ('quantitative', 1), ('neiroscience', 1), ('focusing', 1), ('new', 1), ('mathematical', 1), ('computer', 1), ('model', 1), ('technique', 1), ('method', 1), ('monograph', 1), ('represents', 1), ('cohesive', 1), ('comprehensive', 1), ('treatment', 1)]
[('pattern', 2), ('analysis', 2), ('hybrid', 1), ('intelligent', 1), ('technique', 1), ('understanding', 1), ('outline', 1), ('latest', 1), ('research', 1), ('development', 1), ('application', 1), ('synergistic', 1), ('approach', 1), ('real', 1), ('world', 1), ('scenario', 1), ('invaluable', 1), ('resource', 1), ('lecturer', 1), ('researcher', 1), ('graduate', 1), ('student', 1), ('computer', 1), ('science', 1), ('engineering', 1), ('book', 1), ('cover', 1), ('diverse', 1)]
[('bendazzi', 2), ('animation', 2), ('book', 2), ('quirino', 2), ('cristiani', 2), ('giannalberto', 1), ('brings', 1), ('light', 1), ('lost', 1), ('relic', 1), ('history', 1), ('new', 1), ('twice', 1), ('first', 1), ('animated', 1), ('feature', 1), ('film', 1), ('unlike', 1), ('work', 1), ('focus', 1), ('growth', 1), ('non', 1), ('western', 1), ('country', 1), ('particularly', 1), ('emphasizes', 1), ('contribution', 1)]
[('diagram', 5), ('present', 2), ('uml', 2), ('use', 2), ('book', 1), ('analysis', 1), ('design', 1), ('documentation', 1), ('quality', 1), ('software', 1), ('solution', 1), ('based', 1), ('omg', 1), ('notably', 1), ('cover', 1), ('different', 1), ('modelling', 1), ('construct', 1), ('including', 1), ('case', 1), ('activity', 1), ('business', 1), ('level', 1), ('class', 1), ('corresponding', 1), ('interaction', 1), ('state', 1), ('machine', 1)]
[('computer', 3), ('simulation', 2), ('programming', 2), ('approach', 2), ('effective', 1), ('popular', 1), ('universal', 1), ('tool', 1), ('applied', 1), ('almost', 1), ('discipline', 1), ('requiring', 1), ('basic', 1), ('knowledge', 1), ('mathematics', 1), ('probability', 1), ('theory', 1), ('foundational', 1), ('using', 1), ('python', 1), ('take', 1), ('hand', 1), ('introduce', 1), ('fundamental', 1)]
[('japanese', 2), ('analysis', 1), ('work', 1), ('main', 1), ('animator', 1), ('starting', 1), ('pioneer', 1), ('book', 1), ('overview', 1), ('whole', 1), ('history', 1), ('animated', 1), ('film', 1), ('including', 1), ('latest', 1), ('tendency', 1), ('experimental', 1), ('movie', 1), ('addition', 1), ('acclaimed', 1), ('director', 1), ('miyazaki', 1), ('hayao', 1), ('takahata', 1), ('isao', 1), ('shinkai', 1), ('makoto', 1), ('tezuka', 1), ('osamu', 1)]
[('stop', 3), ('motion', 3), ('animation', 2), ('skill', 2), ('craft', 2), ('step', 2), ('challenging', 1), ('time', 1), ('consuming', 1), ('requires', 1), ('patience', 1), ('adaptability', 1), ('close', 1), ('eye', 1), ('detail', 1), ('model', 1), ('rd', 1), ('edition', 1), ('essential', 1), ('guide', 1), ('help', 1), ('animator', 1), ('overcome', 1), ('challenge', 1), ('highly', 1), ('skilled', 1), ('author', 1), ('susannah', 1), ('shaw', 1), ('provides', 1)]
[('game', 3), ('medium', 2), ('movie', 1), ('television', 1), ('preceding', 1), ('form', 1), ('video', 1), ('undergoing', 1), ('dynamic', 1), ('shift', 1), ('content', 1), ('perception', 1), ('still', 1), ('considered', 1), ('infancy', 1), ('mark', 1), ('true', 1), ('artistry', 1), ('conceptual', 1), ('depth', 1), ('detectable', 1), ('evolving', 1), ('style', 1), ('various', 1), ('genre', 1), ('theme', 1), ('doris', 1), ('rusch', 1), ('making', 1), ('deep', 1)]
[('blender', 2), ('vast', 1), ('customizable', 1), ('modeling', 1), ('application', 1), ('used', 1), ('many', 1), ('artist', 1), ('across', 1), ('creative', 1), ('industry', 1), ('television', 1), ('game', 1), ('newest', 1), ('book', 1), ('alan', 1), ('thorn', 1), ('cheat', 1), ('series', 1), ('offer', 1), ('insightful', 1), ('bite', 1), ('sized', 1), ('power', 1), ('tip', 1), ('help', 1), ('develop', 1), ('mastery', 1), ('five', 1), ('hundred', 1), ('figure', 1), ('illustrate', 1), ('interesting', 1), ('shortcut', 1), ('clever', 1)]
[('design', 3), ('digital', 2), ('appealing', 2), ('aspect', 2), ('creating', 1), ('visually', 1), ('product', 1), ('promotion', 1), ('need', 1), ('posse', 1), ('practical', 1), ('addition', 1), ('aesthetically', 1), ('action', 1), ('explores', 1), ('pragmatic', 1), ('application', 1), ('creative', 1), ('various', 1), ('medium', 1), ('including', 1), ('web', 1), ('apps', 1), ('epub', 1), ('visual', 1), ('presentation', 1)]
[('game', 3), ('book', 2), ('artist', 2), ('production', 2), ('geared', 1), ('towards', 1), ('student', 1), ('professional', 1), ('looking', 1), ('enter', 1), ('mobile', 1), ('tablet', 1), ('smartphone', 1), ('pc', 1), ('personal', 1), ('computer', 1), ('industry', 1), ('concept', 1), ('pipeline', 1), ('ready', 1), ('asset', 1), ('specifically', 1), ('focused', 1), ('design', 1), ('development', 1)]
[('handbook', 2), ('approximation', 2), ('algorithm', 1), ('metaheuristics', 1), ('second', 1), ('edition', 1), ('reflects', 1), ('tremendous', 1), ('growth', 1), ('field', 1), ('past', 1), ('decade', 1), ('contribution', 1), ('leading', 1), ('expert', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('underlying', 1), ('theory', 1), ('methodology', 1), ('various', 1), ('application', 1)]
[('protocol', 2), ('application', 2), ('vehicular', 2), ('network', 2), ('four', 2), ('chapter', 2), ('book', 1), ('cover', 1), ('wide', 1), ('range', 1), ('topic', 1), ('smart', 1), ('transportation', 1), ('domain', 1), ('discus', 1), ('security', 1), ('concern', 1), ('various', 1), ('using', 1), ('example', 1), ('easy', 1), ('understand', 1), ('figure', 1), ('first', 1), ('focus', 1), ('remaining', 1), ('incorporate', 1)]
[('face', 2), ('interview', 2), ('fly', 1), ('wall', 1), ('industry', 1), ('leader', 1), ('bill', 1), ('kroyer', 1), ('tom', 1), ('sito', 1), ('take', 1), ('insightful', 1), ('revealing', 1), ('volume', 1), ('journey', 1), ('world', 1), ('class', 1), ('director', 1), ('candidly', 1), ('share', 1), ('experience', 1), ('personal', 1), ('view', 1), ('process', 1), ('making', 1), ('feature', 1), ('animated', 1), ('film', 1), ('produced', 1), ('edited', 1), ('ron', 1)]
[('telecommunication', 3), ('dividing', 1), ('line', 1), ('traditional', 1), ('computing', 1), ('science', 1), ('quickly', 1), ('becomes', 1), ('blurred', 1), ('disappears', 1), ('today', 1), ('rapidly', 1), ('changing', 1), ('environment', 1), ('increasing', 1), ('need', 1), ('computer', 1), ('professional', 1), ('posse', 1), ('knowledge', 1), ('principle', 1), ('networking', 1), ('present', 1), ('comprehensive', 1), ('overview', 1)]
[('protocol', 3), ('internet', 2), ('session', 1), ('initiation', 1), ('sip', 1), ('standardized', 1), ('engineering', 1), ('task', 1), ('force', 1), ('ietf', 1), ('emulated', 1), ('simplicity', 1), ('architecture', 1), ('hypertext', 1), ('transfer', 1), ('popularized', 1), ('voip', 1), ('ease', 1), ('meshed', 1), ('web', 1), ('service', 1), ('difficult', 1), ('know', 1)]
[('eo', 3), ('extremal', 2), ('optimization', 2), ('fundamental', 2), ('algorithm', 2), ('application', 2), ('introduces', 1), ('state', 1), ('art', 1), ('modified', 1), ('meo', 1), ('solution', 1), ('methodology', 1), ('based', 1), ('numerous', 1), ('classic', 1), ('publication', 1), ('author', 1), ('recent', 1), ('original', 1), ('research', 1), ('result', 1), ('promotes', 1), ('movement', 1)]
[('intellectual', 1), ('property', 1), ('owner', 1), ('continually', 1), ('exploit', 1), ('new', 1), ('way', 1), ('reproducing', 1), ('distributing', 1), ('marketing', 1), ('product', 1), ('threat', 1), ('piracy', 1), ('loom', 1), ('major', 1), ('problem', 1), ('digital', 1), ('distribution', 1), ('storage', 1), ('technology', 1), ('multimedia', 1), ('encryption', 1), ('authentication', 1), ('technique', 1), ('application', 1), ('cover', 1), ('current', 1), ('future', 1), ('trend', 1), ('de', 1)]
[('multimedia', 2), ('intellectual', 1), ('property', 1), ('owner', 1), ('exploit', 1), ('new', 1), ('way', 1), ('reproducing', 1), ('distributing', 1), ('marketing', 1), ('creation', 1), ('digitally', 1), ('protect', 1), ('piracy', 1), ('security', 1), ('handbook', 1), ('address', 1), ('multiple', 1), ('issue', 1), ('related', 1), ('protection', 1), ('digital', 1), ('medium', 1), ('including', 1), ('audio', 1), ('image', 1), ('video', 1), ('content', 1), ('volume', 1), ('examines', 1), ('leading', 1), ('edge', 1), ('securit', 1)]
[('control', 4), ('book', 2), ('important', 1), ('robust', 1), ('approach', 1), ('extends', 1), ('area', 1), ('nonlinear', 1), ('stochastic', 1), ('study', 1), ('complex', 1), ('practically', 1), ('useful', 1), ('mixed', 1), ('controller', 1), ('synthesis', 1), ('rather', 1), ('pure', 1), ('different', 1), ('commonly', 1), ('used', 1), ('convex', 1), ('optimization', 1), ('method', 1), ('applies', 1)]
[('tv', 3), ('wireless', 2), ('radio', 2), ('technology', 2), ('spectrum', 2), ('white', 2), ('space', 2), ('although', 1), ('sophisticated', 1), ('make', 1), ('possible', 1), ('unlicensed', 1), ('device', 1), ('take', 1), ('advantage', 1), ('un', 1), ('used', 1), ('broadcast', 1), ('looking', 1), ('advance', 1), ('field', 1), ('lacked', 1), ('book', 1), ('cover', 1), ('cognitive', 1), ('tvws', 1), ('filling', 1), ('need', 1), ('regulation', 1), ('standard', 1), ('applic', 1)]
[('delay', 2), ('tolerant', 2), ('network', 2), ('end', 2), ('class', 1), ('dtn', 1), ('violate', 1), ('assumption', 1), ('regarding', 1), ('overall', 1), ('performance', 1), ('characteristic', 1), ('underlying', 1), ('link', 1), ('order', 1), ('achieve', 1), ('smooth', 1), ('operation', 1), ('rapidly', 1), ('growing', 1), ('importance', 1), ('served', 1), ('current', 1), ('tcp', 1), ('ip', 1), ('model', 1), ('protocol', 1), ('applicat', 1)]
[('network', 5), ('wireless', 2), ('mobile', 2), ('authoritative', 1), ('collection', 1), ('research', 1), ('paper', 1), ('survey', 1), ('emerging', 1), ('concept', 1), ('technique', 1), ('application', 1), ('explores', 1), ('recent', 1), ('development', 1), ('next', 1), ('generation', 1), ('ngwns', 1), ('broadband', 1), ('technology', 1), ('including', 1), ('lte', 1), ('wimax', 1), ('umts', 1), ('hspa', 1), ('wifi', 1), ('ad', 1), ('hoc', 1), ('mesh', 1), ('wireles', 1)]
[('machine', 2), ('learning', 2), ('book', 2), ('subject', 2), ('approach', 2), ('top', 1), ('emerging', 1), ('science', 1), ('extremely', 1), ('broad', 1), ('range', 1), ('application', 1), ('many', 1), ('provide', 1), ('theoretical', 1), ('making', 1), ('difficult', 1), ('newcomer', 1), ('grasp', 1), ('material', 1), ('provides', 1), ('practical', 1), ('explaining', 1), ('concept', 1), ('algorithm', 1)]
[('device', 3), ('battery', 2), ('wireless', 2), ('recharge', 2), ('capacity', 1), ('often', 1), ('insufficient', 1), ('keep', 1), ('power', 1), ('demanding', 1), ('feature', 1), ('latest', 1), ('mobile', 1), ('powering', 1), ('functional', 1), ('advancement', 1), ('requires', 1), ('revolution', 1), ('concept', 1), ('life', 1), ('capability', 1), ('future', 1), ('handheld', 1), ('network', 1), ('able', 1), ('automaticall', 1)]
[('multimedia', 2), ('communication', 2), ('networking', 2), ('result', 1), ('decade', 1), ('research', 1), ('international', 1), ('project', 1), ('experience', 1), ('provides', 1), ('authoritative', 1), ('insight', 1), ('recent', 1), ('development', 1), ('digital', 1), ('service', 1), ('technology', 1), ('supplying', 1), ('required', 1), ('foundation', 1), ('area', 1), ('illustrates', 1), ('mean', 1), ('allow', 1)]
[('strategy', 2), ('strategic', 1), ('initiative', 1), ('constantly', 1), ('fire', 1), ('due', 1), ('evolving', 1), ('nature', 1), ('market', 1), ('technology', 1), ('law', 1), ('government', 1), ('ensure', 1), ('succeeds', 1), ('remain', 1), ('flexible', 1), ('confronting', 1), ('shifting', 1), ('challenge', 1), ('agile', 1), ('management', 1), ('technique', 1), ('continuous', 1), ('alignment', 1), ('improvement', 1), ('explains', 1), ('achieve', 1)]
[('question', 2), ('data', 2), ('design', 2), ('hpc', 1), ('used', 1), ('solve', 1), ('number', 1), ('complex', 1), ('computational', 1), ('intensive', 1), ('science', 1), ('include', 1), ('simulation', 1), ('modeling', 1), ('physical', 1), ('phenomenon', 1), ('climate', 1), ('change', 1), ('energy', 1), ('production', 1), ('drug', 1), ('global', 1), ('security', 1), ('material', 1), ('analysis', 1), ('large', 1), ('set', 1), ('genome', 1), ('sequencing', 1), ('astronomical', 1)]
[('digital', 2), ('logic', 2), ('computer', 2), ('modern', 1), ('design', 1), ('switching', 1), ('theory', 1), ('important', 1), ('text', 1), ('focus', 1), ('promoting', 1), ('understanding', 1), ('program', 1), ('used', 1), ('minimization', 1), ('expression', 1), ('several', 1), ('approach', 1), ('explained', 1), ('elementary', 1), ('level', 1), ('including', 1), ('quine', 1), ('mccluskey', 1), ('method', 1), ('applied', 1), ('single', 1), ('multiple', 1), ('output', 1)]
[('organization', 3), ('insider', 1), ('threat', 1), ('everywhere', 1), ('address', 1), ('reasonable', 1), ('manner', 1), ('disrupt', 1), ('entire', 1), ('create', 1), ('atmosphere', 1), ('paranoia', 1), ('requires', 1), ('dedication', 1), ('attention', 1), ('long', 1), ('term', 1), ('become', 1), ('secure', 1), ('stay', 1), ('way', 1), ('necessary', 1), ('develop', 1), ('culture', 1), ('security', 1), ('concern', 1)]
[('software', 3), ('research', 2), ('book', 1), ('active', 1), ('field', 1), ('engineering', 1), ('modern', 1), ('society', 1), ('fact', 1), ('world', 1), ('high', 1), ('reliance', 1), ('requires', 1), ('system', 1), ('robustness', 1), ('continual', 1), ('availability', 1), ('satisfactory', 1), ('service', 1), ('quality', 1), ('requirement', 1), ('give', 1), ('rise', 1), ('popularity', 1), ('self', 1), ('adaptive', 1), ('open', 1)]
[('research', 3), ('cyber', 2), ('extensive', 1), ('government', 1), ('security', 1), ('science', 1), ('technology', 1), ('application', 1), ('transferred', 1), ('private', 1), ('sector', 1), ('aid', 1), ('product', 1), ('development', 1), ('improvement', 1), ('protective', 1), ('measure', 1), ('warfare', 1), ('attack', 1), ('widely', 1), ('publicized', 1), ('initiative', 1), ('coordinate', 1)]
[('application', 2), ('book', 2), ('based', 1), ('proximity', 1), ('service', 1), ('hot', 1), ('topic', 1), ('commercial', 1), ('potential', 1), ('standpoint', 1), ('unlike', 1), ('existing', 1), ('focus', 1), ('communication', 1), ('technology', 1), ('fill', 1), ('gap', 1), ('summarizing', 1), ('analyzing', 1), ('latest', 1), ('research', 1), ('result', 1), ('academic', 1), ('industrial', 1), ('field', 1), ('standardization', 1), ('author', 1)]
[('cyberattacks', 2), ('government', 2), ('story', 1), ('dominate', 1), ('headline', 1), ('whether', 1), ('theft', 1), ('massive', 1), ('amount', 1), ('personally', 1), ('identifiable', 1), ('information', 1), ('latest', 1), ('intrusion', 1), ('foreign', 1), ('industrial', 1), ('site', 1), ('important', 1), ('professional', 1), ('public', 1), ('knowing', 1), ('attack', 1), ('launched', 1), ('succeed', 1), ('vital', 1)]
[('wireless', 2), ('network', 2), ('wsns', 2), ('advance', 1), ('low', 1), ('power', 1), ('electronic', 1), ('device', 1), ('integrated', 1), ('communication', 1), ('capability', 1), ('recent', 1), ('area', 1), ('research', 1), ('field', 1), ('sensor', 1), ('major', 1), ('challenge', 1), ('uniform', 1), ('least', 1), ('energy', 1), ('dissipation', 1), ('increasing', 1), ('lifetime', 1), ('first', 1), ('book', 1), ('introduces', 1)]
[('vehicle', 3), ('connected', 2), ('intelligent', 1), ('identified', 1), ('key', 1), ('technology', 1), ('increasing', 1), ('road', 1), ('safety', 1), ('transport', 1), ('efficiency', 1), ('book', 1), ('present', 1), ('discus', 1), ('recent', 1), ('advance', 1), ('theory', 1), ('practice', 1), ('system', 1), ('cover', 1), ('emerging', 1), ('research', 1), ('aim', 1), ('dealing', 1), ('challenge', 1), ('designing', 1), ('essential', 1)]
[('often', 2), ('subsystem', 2), ('practice', 1), ('actuator', 1), ('undergo', 1), ('failure', 1), ('various', 1), ('factor', 1), ('influence', 1), ('effectiveness', 1), ('due', 1), ('increasing', 1), ('complexity', 1), ('large', 1), ('scale', 1), ('system', 1), ('interconnected', 1), ('whereas', 1), ('interaction', 1), ('difficult', 1), ('deal', 1), ('book', 1), ('detail', 1), ('series', 1), ('new', 1), ('methodology', 1), ('designing', 1)]
[('international', 1), ('conference', 1), ('communication', 1), ('management', 1), ('information', 1), ('technology', 1), ('iccmit', 1), ('provides', 1), ('discussion', 1), ('forum', 1), ('scientist', 1), ('engineer', 1), ('educator', 1), ('student', 1), ('latest', 1), ('discovery', 1), ('realization', 1), ('foundation', 1), ('theory', 1), ('model', 1), ('application', 1), ('system', 1), ('inspired', 1), ('nature', 1), ('using', 1), ('computational', 1), ('intelligence', 1)]
[('internet', 2), ('thing', 2), ('iot', 2), ('although', 1), ('vast', 1), ('dynamic', 1), ('territory', 1), ('evolving', 1), ('rapidly', 1), ('need', 1), ('book', 1), ('offer', 1), ('holistic', 1), ('view', 1), ('technology', 1), ('application', 1), ('entire', 1), ('spectrum', 1), ('filling', 1), ('void', 1), ('cloud', 1), ('middleware', 1), ('perspective', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('io', 1)]
[('theory', 4), ('control', 2), ('game', 2), ('management', 2), ('introduction', 1), ('organization', 1), ('explains', 1), ('methodology', 1), ('system', 1), ('analysis', 1), ('including', 1), ('graph', 1), ('applied', 1), ('improve', 1), ('organizational', 1), ('presented', 1), ('extends', 1), ('traditional', 1), ('approach', 1), ('science', 1), ('introducing', 1), ('optimization', 1), ('theoretical', 1), ('tool', 1), ('required', 1)]
[('malware', 3), ('reactively', 2), ('adaptive', 2), ('defense', 2), ('algorithm', 2), ('antivirus', 2), ('today', 1), ('mutates', 1), ('randomly', 1), ('avoid', 1), ('detection', 1), ('intelligent', 1), ('learning', 1), ('adapting', 1), ('new', 1), ('computer', 1), ('fly', 1), ('using', 1), ('software', 1), ('us', 1), ('detect', 1), ('virus', 1), ('deploys', 1), ('outwit', 1), ('go', 1), ('undetected', 1)]
[('software', 2), ('method', 2), ('process', 2), ('knowledge', 2), ('data', 2), ('developing', 1), ('secure', 1), ('requires', 1), ('integration', 1), ('numerous', 1), ('tool', 1), ('development', 1), ('design', 1), ('based', 1), ('shared', 1), ('expert', 1), ('claim', 1), ('opinion', 1), ('empirical', 1), ('including', 1), ('analytics', 1), ('allow', 1), ('extracting', 1), ('insight', 1), ('organization', 1), ('collect', 1)]
[('able', 2), ('worm', 2), ('propagate', 1), ('quickly', 1), ('change', 1), ('payload', 1), ('infection', 1), ('polymorphic', 1), ('evade', 1), ('even', 1), ('advanced', 1), ('intrusion', 1), ('detection', 1), ('system', 1), ('id', 1), ('zero', 1), ('day', 1), ('require', 1), ('second', 1), ('launch', 1), ('flooding', 1), ('attack', 1), ('server', 1), ('using', 1), ('traditional', 1), ('method', 1), ('manually', 1), ('creating', 1), ('storing', 1), ('signature', 1), ('de', 1)]
[('device', 3), ('internet', 2), ('thing', 2), ('battery', 2), ('powered', 2), ('sensor', 1), ('operation', 1), ('done', 1), ('require', 1), ('minimum', 1), ('computation', 1), ('secure', 1), ('algorithm', 1), ('rsa', 1), ('become', 1), ('useless', 1), ('environment', 1), ('elliptic', 1), ('curve', 1), ('based', 1), ('cryptography', 1), ('emerges', 1), ('best', 1), ('solution', 1), ('problem', 1), ('provides', 1)]
[('service', 2), ('system', 2), ('nonlinear', 2), ('due', 1), ('ability', 1), ('support', 1), ('reliable', 1), ('high', 1), ('quality', 1), ('spectral', 1), ('power', 1), ('efficiency', 1), ('multicarrier', 1), ('modulation', 1), ('found', 1), ('increasing', 1), ('use', 1), ('modern', 1), ('communication', 1), ('main', 1), ('drawback', 1), ('vulnerability', 1), ('distortion', 1), ('effect', 1), ('analytical', 1), ('evaluation', 1), ('distort', 1)]
[('practical', 1), ('hand', 1), ('information', 1), ('need', 1), ('build', 1), ('manage', 1), ('maintain', 1), ('heterogeneous', 1), ('computing', 1), ('environment', 1), ('hardware', 1), ('software', 1), ('network', 1), ('equipment', 1), ('number', 1), ('different', 1), ('vendor', 1), ('packed', 1), ('real', 1), ('world', 1), ('case', 1), ('study', 1), ('proven', 1), ('technique', 1), ('integrating', 1), ('disparate', 1), ('platform', 1), ('operating', 1), ('system', 1), ('server', 1)]
[('wireless', 2), ('network', 2), ('including', 2), ('topology', 2), ('control', 2), ('algorithm', 2), ('construction', 2), ('first', 1), ('published', 1), ('book', 1), ('cover', 1), ('concept', 1), ('architecture', 1), ('application', 1), ('ad', 1), ('hoc', 1), ('sensor', 1), ('clustering', 1), ('virtual', 1), ('backbone', 1), ('focusing', 1), ('connected', 1), ('dominating', 1), ('set', 1), ('various', 1)]
[('inspired', 4), ('nature', 2), ('includes', 1), ('roughly', 1), ('speaking', 1), ('bio', 1), ('physical', 1), ('social', 1), ('book', 1), ('contains', 1), ('highly', 1), ('original', 1), ('contribution', 1), ('going', 1), ('shape', 1), ('networking', 1), ('system', 1), ('future', 1), ('focus', 1), ('rigorous', 1), ('approach', 1), ('cutting', 1), ('edge', 1), ('solution', 1), ('encompass', 1), ('three', 1), ('class', 1), ('major', 1), ('method', 1)]
[('image', 5), ('resolution', 4), ('book', 2), ('super', 2), ('need', 2), ('devoted', 1), ('issue', 1), ('obtaining', 1), ('high', 1), ('single', 1), ('multiple', 1), ('low', 1), ('although', 1), ('numerous', 1), ('algorithm', 1), ('available', 1), ('interpolation', 1), ('establishes', 1), ('common', 1), ('thread', 1), ('process', 1), ('filling', 1)]
[('modern', 2), ('cryptography', 2), ('new', 2), ('communication', 2), ('side', 2), ('user', 2), ('evolved', 1), ('dramatically', 1), ('rise', 1), ('network', 1), ('architecture', 1), ('service', 1), ('field', 1), ('encompasses', 1), ('traditional', 1), ('single', 1), ('cover', 1), ('emerging', 1), ('least', 1), ('multiple', 1), ('direction', 1), ('present', 1)]
[('service', 5), ('provider', 2), ('era', 1), ('data', 1), ('voice', 1), ('available', 1), ('push', 1), ('button', 1), ('virtually', 1), ('limitless', 1), ('option', 1), ('reaching', 1), ('customer', 1), ('value', 1), ('added', 1), ('change', 1), ('underlying', 1), ('network', 1), ('always', 1), ('culture', 1), ('creates', 1), ('make', 1), ('essential', 1), ('understand', 1), ('evolving', 1), ('business', 1), ('logi', 1)]
[('disruption', 2), ('call', 2), ('center', 2), ('cost', 2), ('show', 2), ('operation', 1), ('conceivably', 1), ('hundred', 1), ('thousand', 1), ('dollar', 1), ('multiple', 1), ('million', 1), ('continuity', 1), ('planning', 1), ('plan', 1), ('avoid', 1), ('service', 1), ('interruption', 1), ('disaster', 1), ('large', 1), ('small', 1), ('book', 1), ('deal', 1), ('everything', 1), ('power', 1), ('outag', 1)]
[('physical', 2), ('wireless', 2), ('communication', 2), ('second', 2), ('edition', 2), ('updated', 1), ('expanded', 1), ('principle', 1), ('illustrates', 1), ('relationship', 1), ('scientific', 1), ('discovery', 1), ('application', 1), ('invention', 1), ('engineering', 1), ('system', 1), ('popular', 1), ('textbook', 1), ('start', 1), ('review', 1), ('relevant', 1), ('law', 1), ('including', 1)]
[('level', 3), ('life', 2), ('hci', 2), ('although', 1), ('continues', 1), ('become', 1), ('increasingly', 1), ('embedded', 1), ('interactive', 1), ('computing', 1), ('service', 1), ('make', 1), ('easier', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('given', 1), ('attention', 1), ('deserves', 1), ('education', 1), ('software', 1), ('developer', 1), ('undergraduate', 1), ('entry', 1), ('textbook', 1), ('structured', 1), ('around', 1), ('high', 1), ('concept', 1)]
[('mobile', 4), ('attack', 3), ('solution', 3), ('security', 3), ('network', 2), ('book', 1), ('gather', 1), ('analyzes', 1), ('latest', 1), ('trend', 1), ('broad', 1), ('scope', 1), ('cover', 1), ('related', 1), ('phone', 1), ('wireless', 1), ('examines', 1), ('previous', 1), ('emerging', 1), ('networking', 1), ('world', 1), ('pertinent', 1)]
[('uncoded', 2), ('system', 2), ('coding', 2), ('binary', 2), ('symbol', 2), ('modulation', 2), ('multimedia', 1), ('transmission', 1), ('umt', 1), ('skip', 1), ('quantization', 1), ('entropy', 1), ('compression', 1), ('subsequent', 1), ('operation', 1), ('including', 1), ('channel', 1), ('bit', 1), ('mapping', 1), ('directly', 1), ('transmitting', 1), ('non', 1), ('amplitude', 1), ('avoids', 1), ('annoying', 1), ('cliff', 1), ('effect', 1)]
[('book', 2), ('intends', 1), ('develop', 1), ('cyber', 1), ('awareness', 1), ('technical', 1), ('knowledge', 1), ('anyone', 1), ('interested', 1), ('technology', 1), ('looking', 1), ('subject', 1), ('experience', 1), ('average', 1), ('person', 1), ('come', 1), ('contact', 1), ('life', 1), ('aim', 1), ('provide', 1), ('complete', 1), ('comprehensive', 1), ('analysis', 1), ('technological', 1), ('input', 1), ('case', 1), ('study', 1), ('reader', 1), ('build', 1)]
[('book', 2), ('detection', 2), ('highlight', 1), ('progress', 1), ('term', 1), ('virus', 1), ('biology', 1), ('infection', 1), ('prevention', 1), ('control', 1), ('along', 1), ('screening', 1), ('testing', 1), ('technique', 1), ('provide', 1), ('learner', 1), ('researcher', 1), ('basic', 1), ('advanced', 1), ('innovative', 1), ('computer', 1), ('driven', 1), ('methodology', 1), ('fight', 1), ('covid', 1), ('addition', 1)]
[('internet', 2), ('ubiquitous', 1), ('pervasive', 1), ('technology', 1), ('rfid', 1), ('smart', 1), ('computing', 1), ('promise', 1), ('world', 1), ('networked', 1), ('interconnected', 1), ('device', 1), ('everything', 1), ('tire', 1), ('toothbrush', 1), ('soon', 1), ('communication', 1), ('range', 1), ('heralding', 1), ('dawn', 1), ('era', 1), ('today', 1), ('give', 1), ('way', 1), ('tomorrow', 1), ('thing', 1), ('billion', 1), ('obje', 1)]
[('cloud', 4), ('iot', 4), ('enabled', 2), ('space', 2), ('based', 2), ('address', 1), ('major', 1), ('issue', 1), ('challenge', 1), ('solution', 1), ('proposed', 1), ('pave', 1), ('way', 1), ('next', 1), ('generation', 1), ('computing', 1), ('paradigm', 1), ('open', 1), ('door', 1), ('innovative', 1), ('idea', 1), ('topic', 1), ('include', 1), ('optimization', 1), ('era', 1), ('scheduling', 1), ('routing', 1), ('medium', 1)]
[('mobile', 2), ('service', 2), ('operator', 1), ('introducing', 1), ('television', 1), ('digital', 1), ('video', 1), ('content', 1), ('globally', 1), ('handbook', 1), ('broadcasting', 1), ('address', 1), ('aspect', 1), ('providing', 1), ('comprehensive', 1), ('reference', 1), ('dvb', 1), ('dmb', 1), ('isdb', 1), ('mediaflo', 1), ('featuring', 1), ('contribution', 1), ('expert', 1), ('field', 1), ('text', 1), ('present', 1), ('technical', 1), ('standard', 1), ('distribution', 1), ('proto', 1)]
[('management', 3), ('report', 3), ('save', 1), ('time', 1), ('money', 1), ('library', 1), ('current', 1), ('easy', 1), ('suggestion', 1), ('acquiring', 1), ('online', 1), ('offer', 1), ('state', 1), ('art', 1), ('information', 1), ('acquisition', 1), ('librarian', 1), ('involved', 1), ('selecting', 1), ('type', 1), ('fund', 1), ('accounting', 1), ('decision', 1), ('support', 1), ('system', 1), ('usage', 1), ('tracking', 1), ('compiling', 1), ('always', 1)]
[('data', 3), ('set', 2), ('every', 2), ('large', 1), ('arriving', 1), ('increasing', 1), ('speed', 1), ('require', 1), ('new', 1), ('efficient', 1), ('analysis', 1), ('technique', 1), ('analytics', 1), ('becoming', 1), ('essential', 1), ('component', 1), ('organization', 1), ('technology', 1), ('health', 1), ('care', 1), ('financial', 1), ('trading', 1), ('internet', 1), ('thing', 1), ('smart', 1), ('city', 1), ('cyber', 1), ('physical', 1), ('system', 1), ('diverse', 1), ('application', 1), ('domain', 1), ('give', 1)]
[('crowd', 4), ('web', 2), ('computing', 1), ('crowdsourcing', 1), ('associated', 1), ('network', 1), ('cran', 1), ('assisted', 1), ('sensing', 1), ('example', 1), ('based', 1), ('concept', 1), ('harness', 1), ('power', 1), ('connected', 1), ('via', 1), ('infrastructure', 1), ('task', 1), ('often', 1), ('difficult', 1), ('individual', 1), ('user', 1), ('computer', 1), ('alone', 1), ('creates', 1), ('many', 1), ('challenging', 1), ('issue', 1)]
[('advance', 2), ('grid', 2), ('intelligent', 2), ('energy', 2), ('day', 2), ('internet', 1), ('thing', 1), ('iot', 1), ('enabled', 1), ('space', 1), ('made', 1), ('revolutionary', 1), ('utility', 1), ('among', 1), ('efficient', 1), ('service', 1), ('gaining', 1), ('considerable', 1), ('interest', 1), ('use', 1), ('smart', 1), ('increasing', 1), ('around', 1), ('used', 1), ('saving', 1), ('daily', 1), ('life', 1), ('health', 1)]
[('enterprise', 2), ('level', 2), ('security', 2), ('advanced', 2), ('topic', 2), ('follows', 2), ('first', 2), ('book', 2), ('el', 2), ('uncertain', 1), ('world', 1), ('author', 1), ('covered', 1), ('basic', 1), ('concept', 1), ('discovery', 1), ('made', 1), ('eight', 1), ('year', 1), ('development', 1), ('give', 1), ('discussion', 1), ('solution', 1)]
[('resource', 5), ('electronic', 4), ('collection', 3), ('implication', 2), ('management', 2), ('librarian', 2), ('show', 1), ('strength', 1), ('weakness', 1), ('book', 1), ('help', 1), ('incorporate', 1), ('accordingly', 1), ('contributor', 1), ('provide', 1)]
[('cloud', 4), ('vr', 3), ('technical', 2), ('practice', 2), ('based', 1), ('accumulation', 1), ('huawei', 1), ('ilab', 1), ('field', 1), ('book', 1), ('systematically', 1), ('describes', 1), ('advantage', 1), ('technology', 1), ('requirement', 1), ('network', 1), ('terminal', 1), ('solution', 1), ('implementation', 1), ('experience', 1), ('evaluation', 1), ('baseline', 1), ('method', 1), ('current', 1), ('business', 1)]
[('complete', 2), ('cisa', 2), ('system', 2), ('exam', 2), ('guide', 1), ('examination', 1), ('preparation', 1), ('delivers', 1), ('coverage', 1), ('every', 1), ('topic', 1), ('latest', 1), ('release', 1), ('certified', 1), ('information', 1), ('auditor', 1), ('author', 1), ('security', 1), ('auditing', 1), ('expert', 1), ('book', 1), ('cover', 1), ('five', 1), ('domain', 1), ('effective', 1), ('self', 1), ('study', 1), ('feature', 1), ('chapter', 1), ('learning', 1), ('objective', 1), ('depth', 1)]
[('help', 1), ('lay', 1), ('foundation', 1), ('future', 1), ('scholarly', 1), ('communication', 1), ('informative', 1), ('chapter', 1), ('new', 1), ('information', 1), ('technology', 1), ('prediction', 1), ('development', 1), ('publishing', 1), ('industry', 1), ('build', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('conference', 1), ('north', 1), ('american', 1), ('serial', 1), ('interest', 1), ('group', 1), ('stress', 1), ('time', 1), ('prepare', 1)]
[('communication', 3), ('network', 3), ('handbook', 2), ('data', 2), ('manager', 2), ('essential', 1), ('planner', 1), ('cover', 1), ('variety', 1), ('topic', 1), ('address', 1), ('technical', 1), ('issue', 1), ('associated', 1), ('local', 1), ('wide', 1), ('area', 1), ('networking', 1), ('purchasing', 1), ('service', 1), ('supporting', 1), ('user', 1), ('understanding', 1), ('telecommunication', 1)]
[('online', 2), ('cyberspace', 2), ('alternative', 2), ('global', 1), ('lockdown', 1), ('became', 1), ('universal', 1), ('strategy', 1), ('control', 1), ('covid', 1), ('pandemic', 1), ('social', 1), ('distancing', 1), ('triggered', 1), ('massive', 1), ('reliance', 1), ('switched', 1), ('world', 1), ('digital', 1), ('economy', 1), ('despite', 1), ('effectiveness', 1), ('remote', 1), ('work', 1), ('interaction', 1), ('ignited', 1), ('several', 1), ('cybersecurity', 1)]
[('security', 3), ('without', 2), ('obscurity', 2), ('asked', 2), ('question', 2), ('information', 2), ('frequently', 1), ('faq', 1), ('complement', 1), ('jeff', 1), ('stapleton', 1), ('three', 1), ('book', 1), ('provide', 1), ('clear', 1), ('answer', 1), ('commonly', 1), ('solution', 1), ('use', 1), ('rely', 1), ('cryptography', 1), ('key', 1), ('management', 1), ('method', 1), ('good', 1), ('bad', 1)]
[('digital', 2), ('surveillance', 2), ('encryption', 2), ('crypto', 1), ('war', 1), ('raged', 1), ('half', 1), ('century', 1), ('privacy', 1), ('activist', 1), ('prophesied', 1), ('emergence', 1), ('orwellian', 1), ('state', 1), ('made', 1), ('possible', 1), ('computer', 1), ('mediated', 1), ('mass', 1), ('antidote', 1), ('government', 1), ('warned', 1), ('prevent', 1), ('law', 1), ('abiding', 1), ('citizen', 1), ('criminal', 1)]
[('book', 2), ('femtocells', 2), ('mobile', 2), ('service', 2), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('use', 1), ('smart', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('environment', 1), ('help', 1), ('operator', 1), ('provide', 1), ('basis', 1), ('next', 1), ('generation', 1), ('combination', 1), ('voice', 1), ('video', 1), ('data', 1), ('user', 1), ('discus', 1), ('modelling', 1), ('traffic', 1), ('deployment', 1)]
[('archivist', 2), ('united', 2), ('state', 2), ('book', 1), ('help', 1), ('reader', 1), ('understand', 1), ('current', 1), ('status', 1), ('address', 1), ('issue', 1), ('professionalization', 1), ('examining', 1), ('major', 1), ('aspect', 1), ('archival', 1), ('community', 1), ('institutional', 1), ('form', 1), ('structure', 1), ('basic', 1), ('educational', 1), ('foundation', 1), ('important', 1), ('profession', 1), ('seem', 1)]
[('scientific', 3), ('technical', 3), ('communication', 2), ('book', 1), ('focus', 1), ('current', 1), ('practice', 1), ('historical', 1), ('aspect', 1), ('characteristic', 1), ('biblio', 1), ('graphic', 1), ('control', 1), ('various', 1), ('form', 1), ('literature', 1), ('integrates', 1), ('inventory', 1), ('approach', 1)]
[('technology', 3), ('blockchain', 2), ('transaction', 2), ('defined', 1), ('decentralized', 1), ('system', 1), ('distributed', 1), ('register', 1), ('used', 1), ('record', 1), ('data', 1), ('multiple', 1), ('computer', 1), ('reason', 1), ('gained', 1), ('popularity', 1), ('put', 1), ('digital', 1), ('asset', 1), ('blocking', 1), ('chain', 1), ('industry', 1), ('matter', 1), ('infiltrated', 1)]
[('smart', 3), ('technology', 2), ('city', 2), ('present', 1), ('anti', 1), ('virus', 1), ('symmetrical', 1), ('weaponry', 1), ('defeat', 1), ('massive', 1), ('ddos', 1), ('attack', 1), ('require', 1), ('new', 1), ('set', 1), ('holistic', 1), ('ai', 1), ('centric', 1), ('cognitive', 1), ('autonomic', 1), ('component', 1), ('replicate', 1), ('human', 1), ('immune', 1), ('system', 1), ('grid', 1), ('connects', 1), ('iot', 1), ('device', 1), ('book', 1), ('introduces', 1), ('digital', 1)]
[('perception', 2), ('control', 2), ('dimensional', 2), ('information', 2), ('book', 1), ('describes', 1), ('visual', 1), ('method', 1), ('robotic', 1), ('system', 1), ('need', 1), ('interact', 1), ('environment', 1), ('multiple', 1), ('view', 1), ('geometry', 1), ('utilized', 1), ('extract', 1), ('low', 1), ('geometric', 1), ('abundant', 1), ('high', 1), ('image', 1), ('making', 1), ('convenient', 1), ('develop', 1), ('general', 1), ('solution', 1), ('robot', 1)]
[('internet', 2), ('architecture', 2), ('future', 1), ('security', 1), ('lie', 1), ('requires', 1), ('new', 1), ('mean', 1), ('securing', 1), ('trend', 1), ('come', 1), ('together', 1), ('make', 1), ('topic', 1), ('book', 1), ('vital', 1), ('interest', 1), ('first', 1), ('explosive', 1), ('growth', 1), ('connection', 1), ('exchange', 1), ('information', 1), ('via', 1), ('network', 1), ('increased', 1)]
[('volume', 3), ('quantitative', 2), ('investment', 2), ('area', 2), ('fundamental', 1), ('advanced', 1), ('technique', 1), ('focus', 1), ('application', 1), ('hot', 1), ('year', 1), ('startup', 1), ('working', 1), ('combined', 1), ('many', 1), ('internet', 1), ('community', 1), ('business', 1), ('model', 1), ('widely', 1), ('used', 1)]
[('cooperative', 4), ('security', 3), ('physical', 2), ('layer', 2), ('proposes', 2), ('scheme', 2), ('way', 2), ('network', 2), ('following', 1), ('detailed', 1), ('overview', 1), ('communication', 1), ('book', 1), ('relay', 1), ('jammer', 1), ('selection', 1), ('improve', 1), ('hybrid', 1), ('self', 1), ('healing', 1), ('enhance', 1)]
[('security', 4), ('hippie', 2), ('book', 2), ('barak', 1), ('engel', 1), ('second', 1), ('originator', 1), ('virtual', 1), ('ciso', 1), ('fractional', 1), ('chief', 1), ('concept', 1), ('served', 1), ('leader', 1), ('dozen', 1), ('notable', 1), ('organization', 1), ('mulesoft', 1), ('stubhub', 1), ('amplitude', 1), ('analytics', 1), ('many', 1), ('others', 1), ('follows', 1), ('previous', 1), ('cisos', 1), ('fail', 1), ('became', 1), ('sleeper', 1)]
[('application', 2), ('iot', 2), ('network', 2), ('communication', 2), ('device', 2), ('diverse', 1), ('achieved', 1), ('set', 1), ('complex', 1), ('inter', 1), ('related', 1), ('thing', 1), ('concerned', 1), ('array', 1), ('sensor', 1), ('mobile', 1), ('personal', 1), ('computer', 1), ('smart', 1), ('system', 1), ('alexa', 1), ('eco', 1), ('etc', 1), ('besides', 1), ('whole', 1), ('range', 1), ('binding', 1), ('together', 1)]
[('book', 1), ('discus', 1), ('development', 1), ('radio', 1), ('wave', 1), ('tomography', 1), ('method', 1), ('mean', 1), ('remote', 1), ('non', 1), ('destructive', 1), ('testing', 1), ('diagnostics', 1), ('internal', 1), ('structure', 1), ('semi', 1), ('transparent', 1), ('medium', 1), ('reconstruction', 1), ('shape', 1), ('opaque', 1), ('object', 1), ('based', 1), ('multi', 1), ('angle', 1), ('sounding', 1), ('describes', 1), ('physical', 1), ('mathematical', 1), ('model', 1), ('system', 1), ('designed', 1), ('reconstruct', 1), ('image', 1)]
[('verilog', 2), ('digital', 2), ('design', 2), ('covering', 1), ('fundamental', 1), ('depth', 1), ('topic', 1), ('related', 1), ('student', 1), ('expert', 1), ('benefit', 1), ('reading', 1), ('book', 1), ('gaining', 1), ('comprehensive', 1), ('understanding', 1), ('modern', 1), ('electronic', 1), ('product', 1), ('designed', 1), ('implemented', 1), ('principle', 1), ('contains', 1), ('many', 1), ('hand', 1), ('example', 1), ('accompanied', 1), ('rtl', 1)]
[('data', 4), ('science', 4), ('cyber', 3), ('security', 3), ('detection', 2), ('secure', 1), ('integrates', 1), ('becoming', 1), ('critical', 1), ('area', 1), ('novel', 1), ('technique', 1), ('developed', 1), ('application', 1), ('solving', 1), ('problem', 1), ('intrusion', 1), ('malware', 1), ('analysis', 1), ('insider', 1), ('threat', 1)]
[('project', 2), ('blockchain', 2), ('whether', 1), ('manager', 1), ('looking', 1), ('lead', 1), ('developer', 1), ('create', 1), ('based', 1), ('application', 1), ('student', 1), ('interest', 1), ('book', 1), ('provide', 1), ('foundational', 1), ('understanding', 1), ('need', 1), ('probably', 1), ('noticed', 1), ('blockchains', 1), ('growing', 1), ('popularity', 1), ('government', 1)]
[('network', 2), ('security', 2), ('interdisciplinary', 1), ('approach', 1), ('modern', 1), ('present', 1), ('latest', 1), ('methodology', 1), ('trend', 1), ('detecting', 1), ('preventing', 1), ('threat', 1), ('investigating', 1), ('potential', 1), ('current', 1), ('emerging', 1), ('technology', 1), ('publication', 1), ('inclusive', 1), ('reference', 1), ('source', 1), ('academician', 1), ('researcher', 1), ('student', 1), ('professional', 1), ('practitioner', 1)]
[('digital', 3), ('modern', 2), ('business', 2), ('peer', 2), ('book', 1), ('highlight', 1), ('essence', 1), ('information', 1), ('technology', 1), ('world', 1), ('relation', 1), ('improvement', 1), ('threat', 1), ('organisation', 1), ('era', 1), ('economy', 1), ('rapid', 1), ('development', 1), ('created', 1), ('proposal', 1), ('virtual', 1), ('currency', 1), ('crowdfunding', 1), ('lending', 1), ('mobile', 1), ('banking', 1)]
[('computer', 2), ('prevalence', 1), ('cyber', 1), ('dependent', 1), ('crime', 1), ('illegal', 1), ('activity', 1), ('performed', 1), ('using', 1), ('network', 1), ('form', 1), ('information', 1), ('communication', 1), ('technology', 1), ('significantly', 1), ('increased', 1), ('last', 1), ('decade', 1), ('usa', 1), ('worldwide', 1), ('result', 1), ('cybersecurity', 1), ('scholar', 1), ('practitioner', 1), ('developed', 1), ('various', 1), ('tool', 1)]
[('public', 2), ('information', 2), ('system', 2), ('many', 1), ('government', 1), ('parliament', 1), ('ministry', 1), ('worked', 1), ('diligently', 1), ('define', 1), ('effective', 1), ('guideline', 1), ('safeguard', 1), ('private', 1), ('sector', 1), ('asset', 1), ('unwanted', 1), ('cyberattacks', 1), ('unauthorized', 1), ('intrusion', 1), ('country', 1), ('manage', 1), ('successful', 1), ('cybersecurity', 1), ('policy', 1)]
[('technology', 2), ('aspect', 2), ('book', 1), ('explains', 1), ('iot', 1), ('potential', 1), ('application', 1), ('security', 1), ('privacy', 1), ('key', 1), ('necessity', 1), ('governance', 1), ('risk', 1), ('management', 1), ('regulatory', 1), ('compliance', 1), ('need', 1), ('philosophical', 1), ('necessary', 1), ('support', 1), ('ethical', 1), ('safe', 1), ('secure', 1), ('digitally', 1), ('enhanced', 1), ('environment', 1), ('live', 1), ('smarter', 1)]
[('network', 4), ('ultra', 2), ('dense', 2), ('heterogeneous', 2), ('driven', 1), ('increasing', 1), ('amount', 1), ('mobile', 1), ('data', 1), ('cellular', 1), ('evolve', 1), ('small', 1), ('cell', 1), ('provide', 1), ('high', 1), ('system', 1), ('capacity', 1), ('spectrum', 1), ('efficiency', 1), ('bringing', 1), ('base', 1), ('station', 1), ('bs', 1), ('approximate', 1), ('spatial', 1), ('scale', 1), ('number', 1), ('magnitude', 1), ('definitely', 1), ('bring', 1)]
[('need', 2), ('company', 2), ('hacked', 1), ('practitioner', 1), ('guide', 1), ('incident', 1), ('response', 1), ('st', 1), ('century', 1), ('teach', 1), ('everything', 1), ('know', 1), ('preparing', 1), ('potential', 1), ('data', 1), ('breach', 1), ('begin', 1), ('talking', 1), ('latest', 1), ('cybersecurity', 1), ('threat', 1), ('attack', 1), ('prepared', 1), ('establish', 1)]
[('battlefield', 3), ('five', 2), ('book', 1), ('explains', 1), ('pillar', 1), ('cybersecurity', 1), ('zero', 1), ('trust', 1), ('approach', 1), ('change', 1), ('advantage', 1), ('taken', 1), ('deep', 1), ('dive', 1), ('decided', 1), ('disadvantage', 1), ('due', 1), ('constitutional', 1), ('structure', 1), ('moral', 1), ('behavioral', 1), ('guideline', 1), ('provide', 1), ('example', 1)]
[('computing', 2), ('blockchain', 1), ('technology', 1), ('emerging', 1), ('distributed', 1), ('decentralized', 1), ('architecture', 1), ('paradigm', 1), ('accelerated', 1), ('development', 1), ('application', 1), ('cloud', 1), ('fog', 1), ('edge', 1), ('artificial', 1), ('intelligence', 1), ('cyber', 1), ('physical', 1), ('system', 1), ('social', 1), ('networking', 1), ('crowdsourcing', 1), ('crowdsensing', 1), ('trust', 1), ('management', 1), ('finance', 1), ('many', 1), ('useful', 1)]
[('ubiquitous', 2), ('hardware', 2), ('fueled', 1), ('computing', 1), ('ambition', 1), ('edge', 1), ('center', 1), ('confluence', 1), ('many', 1), ('emergent', 1), ('technological', 1), ('trend', 1), ('rooted', 1), ('trust', 1), ('code', 1), ('integrity', 1), ('data', 1), ('privacy', 1), ('sovereignty', 1), ('blockchains', 1), ('distributed', 1), ('ledger', 1), ('sensor', 1), ('drone', 1), ('autonomous', 1), ('system', 1), ('real', 1), ('time', 1), ('stream', 1), ('processing', 1), ('software', 1)]
[('digital', 3), ('twin', 2), ('business', 1), ('sector', 1), ('consider', 1), ('concept', 1), ('next', 1), ('big', 1), ('thing', 1), ('industry', 1), ('current', 1), ('state', 1), ('analysis', 1), ('counterpart', 1), ('help', 1), ('prediction', 1), ('future', 1), ('physical', 1), ('asset', 1), ('organization', 1), ('obtain', 1), ('better', 1), ('insight', 1), ('product', 1), ('performance', 1), ('implementation', 1), ('application', 1)]
[('platform', 2), ('social', 1), ('network', 1), ('usage', 1), ('increased', 1), ('exponentially', 1), ('recent', 1), ('year', 1), ('facebook', 1), ('twitter', 1), ('google', 1), ('linkedin', 1), ('instagram', 1), ('facilitate', 1), ('sharing', 1), ('personal', 1), ('data', 1), ('connect', 1), ('professionally', 1), ('development', 1), ('enhanced', 1), ('feature', 1), ('html', 1), ('cs', 1), ('xhtml', 1), ('java', 1), ('script', 1), ('expose', 1), ('site', 1)]
[('organization', 2), ('book', 1), ('tap', 1), ('inherent', 1), ('paradox', 1), ('ease', 1), ('reliance', 1), ('external', 1), ('cloud', 1), ('provider', 1), ('provide', 1), ('robust', 1), ('functionality', 1), ('regular', 1), ('enhancement', 1), ('come', 1), ('audited', 1), ('service', 1), ('control', 1), ('soc', 1), ('report', 1), ('quick', 1), ('point', 1), ('need', 1), ('client', 1), ('devise', 1), ('sustain', 1), ('system', 1), ('effective', 1), ('internal', 1)]
[('intelligence', 3), ('computational', 2), ('threat', 2), ('cyberattacks', 1), ('continue', 1), ('grow', 1), ('complexity', 1), ('number', 1), ('helping', 1), ('resourced', 1), ('security', 1), ('analyst', 1), ('stay', 1), ('step', 1), ('ahead', 1), ('drawing', 1), ('million', 1), ('study', 1), ('blog', 1), ('news', 1), ('article', 1), ('technique', 1), ('machine', 1), ('learning', 1), ('automatic', 1), ('natural', 1), ('language', 1)]
[('control', 7), ('system', 5), ('security', 3), ('optimal', 2), ('book', 1), ('adopts', 1), ('systematic', 1), ('view', 1), ('cyber', 1), ('physical', 1), ('including', 1), ('non', 1), ('cooperative', 1), ('game', 1), ('quantify', 1), ('impact', 1), ('denial', 1), ('service', 1), ('attack', 1), ('adaptive', 1), ('networked', 1)]
[('learning', 3), ('new', 3), ('ai', 2), ('machine', 2), ('data', 2), ('input', 2), ('use', 2), ('artificial', 1), ('intelligence', 1), ('advanced', 1), ('electronic', 1), ('circuit', 1), ('involve', 1), ('every', 1), ('using', 1), ('generate', 1), ('rule', 1), ('future', 1), ('business', 1), ('analytics', 1), ('giving', 1), ('opportunity', 1), ('big', 1), ('already', 1), ('unleash', 1), ('whole', 1), ('lot', 1), ('case', 1)]
[('security', 3), ('system', 2), ('usable', 2), ('usability', 2), ('requirement', 2), ('design', 2), ('intrinsic', 1), ('conflict', 1), ('creating', 1), ('secure', 1), ('made', 1), ('synergistic', 1), ('providing', 1), ('tool', 1), ('specific', 1), ('principle', 1), ('earlier', 1), ('phase', 1), ('certain', 1), ('situation', 1), ('possible', 1), ('increase', 1)]
[('analysis', 2), ('vulnerability', 2), ('learning', 2), ('book', 1), ('offer', 1), ('depth', 1), ('security', 1), ('different', 1), ('mobile', 1), ('operating', 1), ('system', 1), ('provides', 1), ('methodology', 1), ('solution', 1), ('handling', 1), ('android', 1), ('malware', 1), ('transfer', 1), ('latest', 1), ('knowledge', 1), ('machine', 1), ('deep', 1), ('model', 1), ('towards', 1), ('end', 1), ('present', 1), ('comprehensive', 1), ('software', 1)]
[('smart', 3), ('city', 3), ('intelligence', 3), ('among', 1), ('significant', 1), ('topic', 1), ('iot', 1), ('communication', 1), ('infrastructure', 1), ('implementation', 1), ('heart', 1), ('concept', 1), ('development', 1), ('key', 1), ('issue', 1), ('book', 1), ('address', 1), ('challenge', 1), ('realizing', 1), ('sensing', 1), ('platform', 1), ('era', 1), ('cloud', 1)]
[('smart', 3), ('space', 3), ('security', 2), ('iot', 2), ('among', 1), ('significant', 1), ('topic', 1), ('nowadays', 1), ('implementation', 1), ('secured', 1), ('heart', 1), ('concept', 1), ('development', 1), ('key', 1), ('issue', 1), ('next', 1), ('generation', 1), ('book', 1), ('address', 1), ('major', 1), ('aspect', 1), ('challenge', 1), ('realizing', 1), ('sensing', 1), ('platform', 1), ('critical', 1), ('cloud', 1)]
[('book', 2), ('provides', 2), ('cloud', 2), ('design', 2), ('comprehensive', 1), ('review', 1), ('philosophy', 1), ('principal', 1), ('development', 1), ('trend', 1), ('practical', 1), ('pattern', 1), ('guide', 1), ('reader', 1), ('understand', 1), ('implement', 1), ('successful', 1), ('based', 1), ('solution', 1), ('hows', 1), ('why', 1), ('peer', 1), ('behind', 1), ('buzz', 1), ('word', 1), ('machine', 1), ('learning', 1), ('container', 1), ('blockchains', 1)]
[('device', 2), ('drone', 2), ('network', 2), ('internet', 1), ('thing', 1), ('iot', 1), ('system', 1), ('inter', 1), ('connected', 1), ('object', 1), ('organism', 1), ('among', 1), ('gaining', 1), ('lot', 1), ('interest', 1), ('expected', 1), ('communicate', 1), ('cellular', 1), ('next', 1), ('generation', 1), ('beyond', 1), ('open', 1), ('door', 1), ('another', 1), ('exciting', 1), ('research', 1), ('area', 1), ('book', 1), ('considers', 1)]
[('botnet', 2), ('chapter', 2), ('book', 1), ('provides', 1), ('solid', 1), ('state', 1), ('art', 1), ('contribution', 1), ('scientist', 1), ('practitioner', 1), ('working', 1), ('detection', 1), ('analysis', 1), ('including', 1), ('economics', 1), ('present', 1), ('original', 1), ('theoretical', 1), ('empirical', 1), ('dealing', 1), ('offensive', 1), ('defensive', 1), ('aspect', 1), ('field', 1), ('address', 1), ('fundamental', 1), ('theory', 1), ('current', 1), ('trend', 1)]
[('started', 2), ('connecting', 2), ('computer', 2), ('everything', 2), ('iot', 1), ('next', 1), ('manifestation', 1), ('internet', 1), ('trend', 1), ('progressed', 1), ('moving', 1), ('connect', 1), ('movement', 1), ('race', 1), ('lot', 1), ('fanfare', 1), ('excitement', 1), ('cheering', 1), ('work', 1), ('phase', 1), ('figure', 1)]
[('classical', 2), ('animation', 2), ('finally', 1), ('bridge', 1), ('gap', 1), ('software', 1), ('specific', 1), ('instruction', 1), ('world', 1), ('easy', 1), ('utilize', 1), ('kind', 1), ('reference', 1), ('guide', 1), ('relevance', 1), ('today', 1), ('digital', 1), ('workflow', 1), ('richard', 1), ('lapidus', 1), ('present', 1), ('innovative', 1), ('d', 1), ('max', 1), ('control', 1), ('principle', 1), ('squash', 1), ('stretch', 1), ('anticipation', 1)]
[('technique', 2), ('certified', 1), ('autodesk', 1), ('darren', 1), ('brooker', 1), ('new', 1), ('edition', 1), ('teach', 1), ('production', 1), ('behind', 1), ('real', 1), ('world', 1), ('work', 1), ('tutorial', 1), ('take', 1), ('fundamental', 1), ('lighting', 1), ('right', 1), ('advanced', 1)]
[('private', 3), ('cloud', 3), ('security', 3), ('comprehensive', 1), ('handbook', 1), ('serf', 1), ('professional', 1), ('reference', 1), ('practitioner', 1), ('guide', 1), ('today', 1), ('complete', 1), ('concise', 1), ('view', 1), ('explores', 1), ('practical', 1), ('solution', 1), ('wide', 1), ('range', 1), ('computing', 1), ('issue', 1), ('knowledge', 1), ('imparted', 1), ('enable', 1), ('reader', 1), ('determine', 1), ('whether', 1)]
[('biometrics', 2), ('technique', 2), ('automatic', 1), ('recognition', 1), ('increasingly', 1), ('important', 1), ('corporate', 1), ('public', 1), ('security', 1), ('system', 1), ('increased', 1), ('method', 1), ('due', 1), ('rapid', 1), ('field', 1), ('development', 1), ('book', 1), ('discus', 1), ('classic', 1), ('behavioral', 1), ('collect', 1), ('latest', 1), ('advance', 1), ('theoretical', 1), ('approach', 1), ('dynamic', 1), ('application', 1)]
[('testing', 2), ('software', 1), ('important', 1), ('crossroad', 1), ('going', 1), ('back', 1), ('root', 1), ('certain', 1), ('front', 1), ('moving', 1), ('inexorably', 1), ('forward', 1), ('instance', 1), ('test', 1), ('automation', 1), ('growing', 1), ('prominence', 1), ('manual', 1), ('becoming', 1), ('niche', 1), ('increasingly', 1), ('collaborating', 1), ('developer', 1), ('breaking', 1), ('bound', 1), ('unrealistic', 1), ('independence', 1)]
[('nitride', 2), ('semiconductor', 2), ('material', 2), ('electronic', 2), ('device', 2), ('book', 1), ('systematically', 1), ('introduces', 1), ('physical', 1), ('characteristic', 1), ('implementation', 1), ('ii', 1), ('wide', 1), ('bandgap', 1), ('emphasis', 1), ('high', 1), ('electron', 1), ('mobility', 1), ('transistor', 1), ('hemts', 1), ('property', 1), ('make', 1), ('suitable', 1), ('used', 1), ('microwave', 1), ('power', 1)]
[('si', 2), ('technique', 2), ('routing', 2), ('manet', 2), ('recent', 1), ('year', 1), ('lot', 1), ('work', 1), ('done', 1), ('effort', 1), ('incorporate', 1), ('swarm', 1), ('intelligence', 1), ('building', 1), ('adaptive', 1), ('protocol', 1), ('mobile', 1), ('ad', 1), ('hoc', 1), ('network', 1), ('centralized', 1), ('approach', 1), ('generally', 1), ('lack', 1), ('scalability', 1), ('fault', 1), ('tolerance', 1), ('provide', 1), ('natural', 1), ('solution', 1)]
[('soft', 2), ('computing', 2), ('sensor', 2), ('application', 2), ('book', 1), ('us', 1), ('tutorial', 1), ('new', 1), ('material', 1), ('describe', 1), ('basic', 1), ('concept', 1), ('potentially', 1), ('used', 1), ('real', 1), ('life', 1), ('network', 1), ('organized', 1), ('manner', 1), ('exemplifies', 1), ('use', 1), ('assortment', 1), ('solving', 1), ('different', 1), ('problem', 1), ('networking', 1), ('written', 1), ('worldwide', 1), ('expert', 1)]
[('project', 3), ('seemed', 2), ('launch', 2), ('month', 2), ('seen', 1), ('promising', 1), ('abandoned', 1), ('right', 1), ('getting', 1), ('ready', 1), ('always', 1), ('going', 1), ('next', 1), ('took', 1), ('many', 1), ('even', 1), ('year', 1), ('actually', 1), ('launched', 1), ('scrum', 1), ('solution', 1), ('woe', 1), ('management', 1), ('methodology', 1), ('applied', 1)]
[('practical', 4), ('risk', 2), ('management', 2), ('book', 1), ('provides', 1), ('emergent', 1), ('knowledge', 1), ('relating', 1), ('physical', 1), ('cyber', 1), ('human', 1), ('mitigation', 1), ('readable', 1), ('approach', 1), ('corporate', 1), ('environment', 1), ('present', 1), ('discus', 1), ('application', 1), ('technique', 1), ('along', 1), ('useable', 1), ('policy', 1), ('change', 1), ('option', 1), ('organizational', 1), ('security', 1)]
[('programing', 5), ('book', 1), ('discus', 1), ('advanced', 1), ('topic', 1), ('core', 1), ('object', 1), ('oriented', 1), ('parallel', 1), ('computing', 1), ('spatial', 1), ('data', 1), ('type', 1), ('author', 1), ('lead', 1), ('reader', 1), ('merge', 1), ('mature', 1), ('effective', 1), ('methdologies', 1), ('traditional', 1), ('show', 1), ('interface', 1), ('java', 1), ('popular', 1), ('laguages', 1), ('platform', 1)]
[('geometric', 2), ('modeling', 2), ('mesh', 2), ('generation', 2), ('image', 2), ('cutting', 1), ('edge', 1), ('technique', 1), ('better', 1), ('analyze', 1), ('predict', 1), ('complex', 1), ('physical', 1), ('phenomenon', 1), ('scanned', 1), ('show', 1), ('integrate', 1), ('processing', 1), ('finite', 1), ('element', 1), ('method', 1), ('fem', 1), ('solve', 1), ('problem', 1), ('computational', 1), ('biology', 1), ('medicine', 1), ('material', 1), ('science', 1)]
[('era', 2), ('everything', 2), ('dawn', 1), ('networking', 1), ('potential', 1), ('define', 1), ('new', 1), ('phase', 1), ('human', 1), ('existence', 1), ('shaped', 1), ('digitization', 1), ('connection', 1), ('everyone', 1), ('goal', 1), ('automating', 1), ('life', 1), ('effectively', 1), ('creating', 1), ('time', 1), ('maximizing', 1), ('efficiency', 1), ('augmenting', 1), ('intelligence', 1)]
[('cybersecurity', 3), ('nice', 3), ('framework', 3), ('workforce', 2), ('guide', 1), ('national', 1), ('initiative', 1), ('education', 1), ('present', 1), ('comprehensive', 1), ('discussion', 1), ('task', 1), ('knowledge', 1), ('skill', 1), ('ability', 1), ('ksa', 1), ('requirement', 1), ('discus', 1), ('detail', 1), ('relationship', 1), ('nist', 1)]
[('book', 2), ('protocol', 2), ('ldap', 2), ('available', 2), ('explores', 1), ('use', 1), ('lightweight', 1), ('directory', 1), ('access', 1), ('efficient', 1), ('combine', 1), ('relevant', 1), ('information', 1), ('internet', 1), ('along', 1), ('number', 1), ('argument', 1), ('treated', 1), ('various', 1), ('provides', 1), ('many', 1), ('example', 1), ('code', 1)]
[('technique', 2), ('system', 2), ('volume', 1), ('present', 1), ('state', 1), ('art', 1), ('tool', 1), ('automatically', 1), ('detecting', 1), ('diagnosing', 1), ('predicting', 1), ('effect', 1), ('adverse', 1), ('event', 1), ('engineered', 1), ('emphasizes', 1), ('importance', 1), ('managing', 1), ('intricate', 1), ('interaction', 1), ('within', 1), ('engineering', 1), ('maintain', 1), ('high', 1), ('degree', 1), ('reliability', 1)]
[('safety', 5), ('highway', 4), ('provides', 2), ('ai', 2), ('artificial', 1), ('intelligence', 1), ('cutting', 1), ('edge', 1), ('advance', 1), ('using', 1), ('author', 1), ('expert', 1), ('pursues', 1), ('within', 1), ('context', 1), ('drawing', 1), ('attention', 1), ('predictive', 1), ('power', 1), ('technique', 1), ('solving', 1), ('complex', 1), ('problem', 1), ('improvement', 1), ('book', 1), ('theoretical', 1)]
[('step', 2), ('matchmoving', 1), ('become', 1), ('standard', 1), ('visual', 1), ('effect', 1), ('procedure', 1), ('almost', 1), ('every', 1), ('situation', 1), ('live', 1), ('action', 1), ('material', 1), ('cg', 1), ('combined', 1), ('allows', 1), ('virtual', 1), ('real', 1), ('scene', 1), ('composited', 1), ('together', 1), ('seamlessly', 1), ('appear', 1), ('though', 1), ('perspective', 1), ('authoritative', 1), ('guide', 1), ('best', 1), ('matchmovers', 1)]
[('team', 2), ('join', 1), ('videogame', 1), ('industry', 1), ('veteran', 1), ('michael', 1), ('thornton', 1), ('wyman', 1), ('series', 1), ('detailed', 1), ('behind', 1), ('scene', 1), ('tour', 1), ('made', 1), ('popular', 1), ('critically', 1), ('acclaimed', 1), ('videogames', 1), ('modern', 1), ('era', 1), ('drawing', 1), ('insider', 1), ('perspective', 1), ('wide', 1), ('variety', 1), ('learn', 1), ('creation', 1), ('tiny', 1), ('independent', 1), ('game', 1), ('project', 1), ('world', 1)]
[('photoshop', 5), ('animator', 2), ('model', 2), ('photographer', 1), ('anymore', 1), ('title', 1), ('available', 1), ('discus', 1), ('technique', 1), ('specifically', 1), ('adobe', 1), ('c', 1), ('digital', 1), ('artist', 1), ('integrate', 1), ('create', 1), ('high', 1), ('capability', 1), ('customize', 1), ('edit', 1), ('animate', 1)]
[('machine', 2), ('iot', 2), ('advancement', 2), ('including', 2), ('book', 1), ('focus', 1), ('learning', 1), ('internet', 1), ('thing', 1), ('empowered', 1), ('information', 1), ('driven', 1), ('arrangement', 1), ('key', 1), ('concept', 1), ('ontology', 1), ('used', 1), ('heterogeneous', 1), ('environment', 1), ('discussed', 1), ('interpretation', 1), ('context', 1), ('awareness', 1), ('analyzing', 1), ('various', 1), ('data', 1), ('source', 1)]
[('hybrid', 2), ('computational', 2), ('intelligent', 2), ('provide', 2), ('technique', 1), ('efficient', 1), ('dealing', 1), ('real', 1), ('world', 1), ('problem', 1), ('encountered', 1), ('engineering', 1), ('field', 1), ('primary', 1), ('objective', 1), ('book', 1), ('exhaustive', 1), ('introduction', 1), ('review', 1), ('paradigm', 1), ('supportive', 1), ('case', 1), ('study', 1), ('addition', 1), ('aim', 1)]
[('conference', 1), ('network', 1), ('security', 1), ('communication', 1), ('engineering', 1), ('meant', 1), ('serve', 1), ('forum', 1), ('exchanging', 1), ('new', 1), ('development', 1), ('research', 1), ('progress', 1), ('scholar', 1), ('scientist', 1), ('engineer', 1), ('world', 1), ('providing', 1), ('unique', 1), ('opportunity', 1), ('exchange', 1), ('information', 1), ('present', 1), ('latest', 1), ('result', 1), ('review', 1), ('relevant', 1), ('issue', 1)]
[('platform', 4), ('portal', 4), ('experience', 3), ('digital', 2), ('user', 2), ('build', 1), ('next', 1), ('generation', 1), ('enterprise', 1), ('uxpa', 1), ('complete', 1), ('guide', 1), ('provides', 1), ('depth', 1), ('coverage', 1), ('technology', 1), ('uxps', 1), ('form', 1), ('key', 1), ('pillar', 1), ('modern', 1), ('drawing', 1), ('various', 1), ('role', 1), ('numerous', 1), ('engagement', 1)]
[('summarization', 3), ('text', 2), ('approach', 2), ('cognitive', 2), ('book', 1), ('concerned', 1), ('contemporary', 1), ('methodology', 1), ('used', 1), ('automatic', 1), ('proposes', 1), ('interesting', 1), ('solve', 1), ('known', 1), ('problem', 1), ('using', 1), ('computational', 1), ('intelligence', 1), ('ci', 1), ('technique', 1), ('including', 1), ('better', 1), ('understanding', 1), ('basis', 1), ('task', 1), ('still', 1)]
[('data', 3), ('recent', 1), ('year', 1), ('medical', 1), ('internet', 1), ('thing', 1), ('miot', 1), ('emerged', 1), ('helpful', 1), ('technological', 1), ('gift', 1), ('mankind', 1), ('incredible', 1), ('development', 1), ('science', 1), ('big', 1), ('technology', 1), ('iot', 1), ('embedded', 1), ('system', 1), ('possible', 1), ('collect', 1), ('huge', 1), ('amount', 1), ('sensitive', 1), ('personal', 1), ('compile', 1), ('store', 1), ('cloud', 1), ('edge', 1)]
[('multimedia', 3), ('communication', 2), ('computing', 2), ('application', 2), ('international', 1), ('conference', 1), ('mcca', 1), ('xiamen', 1), ('china', 1), ('oct', 1), ('provided', 1), ('forum', 1), ('expert', 1), ('scholar', 1), ('excellence', 1), ('world', 1), ('present', 1), ('latest', 1), ('work', 1), ('area', 1), ('recent', 1), ('year', 1), ('techno', 1)]
[('power', 2), ('consumption', 2), ('network', 2), ('book', 1), ('introduces', 1), ('technical', 1), ('foundation', 1), ('tool', 1), ('estimating', 1), ('internet', 1), ('service', 1), ('including', 1), ('detailed', 1), ('description', 1), ('model', 1), ('constructed', 1), ('applied', 1), ('modeling', 1), ('energy', 1), ('efficiency', 1), ('telecommunication', 1), ('used', 1), ('gain', 1), ('insight', 1), ('construction', 1)]
[('engineer', 3), ('engineering', 2), ('manager', 2), ('iso', 2), ('executive', 1), ('project', 1), ('process', 1), ('improvement', 1), ('expert', 1), ('within', 1), ('organization', 1), ('need', 1), ('resource', 1), ('systematically', 1), ('translates', 1), ('requirement', 1), ('usable', 1), ('specification', 1), ('understanding', 1), ('perspective', 1), ('ensures', 1), ('software', 1), ('hardware', 1), ('sy', 1)]
[('database', 2), ('system', 2), ('dbms', 2), ('collection', 2), ('program', 2), ('data', 2), ('management', 1), ('enable', 1), ('user', 1), ('create', 1), ('maintain', 1), ('consists', 1), ('interrelated', 1), ('set', 1), ('access', 1), ('general', 1), ('purpose', 1), ('software', 1), ('facilitates', 1), ('process', 1), ('defining', 1), ('constructing', 1), ('manipulating', 1)]
[('informatics', 2), ('networking', 2), ('intelligent', 2), ('computing', 2), ('proceeding', 1), ('volume', 1), ('contains', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('international', 1), ('conference', 1), ('held', 1), ('shenzhen', 1), ('china', 1), ('contribution', 1), ('cover', 1), ('latest', 1), ('development', 1), ('advance', 1), ('field', 1)]
[('intellectual', 1), ('property', 1), ('owner', 1), ('continually', 1), ('exploit', 1), ('new', 1), ('way', 1), ('reproducing', 1), ('distributing', 1), ('marketing', 1), ('product', 1), ('threat', 1), ('piracy', 1), ('loom', 1), ('major', 1), ('problem', 1), ('digital', 1), ('distribution', 1), ('storage', 1), ('technology', 1), ('multimedia', 1), ('watermarking', 1), ('technique', 1), ('application', 1), ('cover', 1), ('current', 1), ('future', 1), ('trend', 1), ('design', 1), ('modern', 1)]
[('data', 4), ('processing', 3), ('remote', 3), ('sensing', 3), ('entire', 2), ('book', 1), ('provides', 1), ('user', 1), ('quick', 1), ('easy', 1), ('acquisition', 1), ('storage', 1), ('product', 1), ('generation', 1), ('service', 1), ('describes', 1), ('life', 1), ('cycle', 1), ('build', 1), ('high', 1), ('performance', 1), ('system', 1), ('framework', 1), ('develops', 1), ('series', 1), ('management', 1)]
[('learning', 2), ('interdisciplinary', 1), ('approach', 1), ('using', 1), ('machine', 1), ('deep', 1), ('technique', 1), ('smartly', 1), ('addressing', 1), ('real', 1), ('life', 1), ('challenge', 1), ('emerged', 1), ('inseparable', 1), ('element', 1), ('disruption', 1), ('current', 1), ('time', 1), ('application', 1), ('disruptive', 1), ('technology', 1), ('management', 1), ('practice', 1), ('interesting', 1), ('domain', 1), ('researcher', 1), ('professional', 1), ('volume', 1)]
[('operation', 2), ('microgrids', 2), ('smg', 2), ('demand', 2), ('book', 1), ('address', 1), ('need', 1), ('understand', 1), ('development', 1), ('use', 1), ('construction', 1), ('smart', 1), ('covering', 1), ('selected', 1), ('major', 1), ('dynamic', 1), ('energy', 1), ('management', 1), ('response', 1), ('dispatch', 1), ('describes', 1), ('design', 1), ('operational', 1), ('challenge', 1), ('different', 1), ('provides', 1), ('feasible', 1), ('solution', 1)]
[('blockchain', 3), ('data', 3), ('big', 2), ('machine', 2), ('learning', 2), ('security', 2), ('based', 2), ('present', 1), ('book', 1), ('cover', 1), ('new', 1), ('paradigm', 1), ('concept', 1), ('including', 1), ('application', 1), ('case', 1), ('study', 1), ('explains', 1), ('dead', 1), ('fusion', 1), ('realizing', 1), ('privacy', 1), ('analytic', 1), ('environment', 1), ('recent', 1), ('research', 1), ('explained', 1)]
[('swarm', 2), ('group', 2), ('colony', 2), ('notion', 1), ('intelligence', 1), ('introduced', 1), ('describing', 1), ('decentralized', 1), ('self', 1), ('organized', 1), ('behavior', 1), ('animal', 1), ('idea', 1), ('extrapolated', 1), ('design', 1), ('robot', 1), ('interact', 1), ('locally', 1), ('cumulate', 1), ('collective', 1), ('reaction', 1), ('natural', 1), ('example', 1), ('follows', 1), ('ant', 1), ('bee', 1), ('fish', 1), ('schooling', 1), ('bird', 1)]
[('electronics', 4), ('flexible', 2), ('remarkable', 1), ('progress', 1), ('achieved', 1), ('within', 1), ('recent', 1), ('year', 1), ('developing', 1), ('wearable', 1), ('stretchable', 1), ('fws', 1), ('play', 1), ('increasingly', 1), ('significant', 1), ('role', 1), ('future', 1), ('open', 1), ('new', 1), ('product', 1), ('paradigm', 1), ('conventional', 1), ('semiconductor', 1), ('capable', 1)]
[('business', 3), ('intelligence', 2), ('world', 2), ('bi', 2), ('create', 2), ('solution', 2), ('decision', 2), ('emergence', 1), ('artificial', 1), ('ai', 1), ('new', 1), ('era', 1), ('ushered', 1), ('real', 1), ('using', 1), ('analytics', 1), ('developer', 1), ('practitioner', 1), ('tool', 1), ('technology', 1), ('system', 1), ('guide', 1), ('effective', 1), ('making', 1), ('made', 1)]
[('electronic', 2), ('resource', 2), ('information', 2), ('universe', 1), ('indeed', 1), ('diverse', 1), ('expansive', 1), ('intimidating', 1), ('unstructured', 1), ('compared', 1), ('finite', 1), ('prepackaged', 1), ('print', 1), ('world', 1), ('upon', 1), ('delivery', 1), ('infrastructure', 1), ('constructed', 1), ('selection', 1), ('bibliographic', 1), ('control', 1), ('address', 1), ('resultant', 1), ('concern', 1), ('professional', 1)]
[('iot', 3), ('nb', 2), ('device', 2), ('better', 2), ('area', 2), ('internet', 1), ('thing', 1), ('technology', 1), ('used', 1), ('cellular', 1), ('communication', 1), ('deliver', 1), ('capability', 1), ('performance', 1), ('increased', 1), ('coverage', 1), ('kilometer', 1), ('massive', 1), ('number', 1), ('per', 1), ('single', 1), ('base', 1), ('station', 1), ('longer', 1), ('battery', 1), ('lifetime', 1), ('ten', 1), ('year', 1), ('indoor', 1), ('outdoor', 1)]
[('intelligent', 3), ('system', 3), ('hybrid', 2), ('architecture', 2), ('first', 2), ('book', 2), ('part', 2), ('new', 1), ('field', 1), ('artificial', 1), ('intelligence', 1), ('concerned', 1), ('development', 1), ('next', 1), ('generation', 1), ('volume', 1), ('delineate', 1), ('current', 1), ('research', 1), ('interest', 1), ('divided', 1), ('devoted', 1)]
[('career', 3), ('planning', 2), ('job', 2), ('searching', 2), ('information', 2), ('age', 1), ('answer', 1), ('key', 1), ('question', 1), ('today', 1), ('provider', 1), ('librarian', 1), ('development', 1), ('professional', 1), ('concern', 1), ('cost', 1), ('effective', 1), ('use', 1), ('internet', 1), ('reliability', 1), ('integrity', 1), ('electronic', 1), ('resource', 1), ('successful', 1), ('search', 1), ('strategy', 1)]
[('heart', 3), ('ischemic', 2), ('thiry', 1), ('five', 1), ('expert', 1), ('contribute', 1), ('publication', 1), ('various', 1), ('interaction', 1), ('interrelationship', 1), ('parameter', 1), ('affect', 1), ('normal', 1), ('mechanical', 1), ('aspect', 1), ('related', 1), ('global', 1), ('regional', 1), ('function', 1), ('discussed', 1), ('coronary', 1), ('perfusion', 1), ('considered', 1), ('emphasis', 1), ('effect', 1)]
[('database', 4), ('relational', 3), ('modeling', 2), ('step', 2), ('approach', 2), ('aim', 1), ('simplifying', 1), ('present', 1), ('standard', 1), ('normalization', 1), ('add', 1), ('simplistic', 1), ('intuitive', 1), ('way', 1), ('building', 1), ('model', 1), ('going', 1), ('basic', 1), ('contemporary', 1), ('topic', 1), ('book', 1), ('open', 1), ('data', 1)]
[('internet', 2), ('ubiquitous', 1), ('pervasive', 1), ('technology', 1), ('rfid', 1), ('smart', 1), ('computing', 1), ('promise', 1), ('world', 1), ('networked', 1), ('interconnected', 1), ('device', 1), ('everything', 1), ('tire', 1), ('toothbrush', 1), ('soon', 1), ('communication', 1), ('range', 1), ('heralding', 1), ('dawn', 1), ('era', 1), ('today', 1), ('give', 1), ('way', 1), ('tomorrow', 1), ('thing', 1), ('billion', 1), ('obje', 1)]
[('self', 3), ('wireless', 2), ('network', 2), ('wmn', 2), ('mesh', 1), ('encompass', 1), ('new', 1), ('area', 1), ('technology', 1), ('set', 1), ('play', 1), ('important', 1), ('role', 1), ('next', 1), ('generation', 1), ('mobile', 1), ('characterized', 1), ('dynamic', 1), ('organization', 1), ('configuration', 1), ('healing', 1), ('enable', 1), ('flexible', 1), ('integration', 1), ('quick', 1), ('deployment', 1), ('easy', 1), ('maintenance', 1), ('low', 1), ('cost', 1), ('high', 1), ('scalability', 1), ('reliable', 1), ('service', 1)]
[('javascript', 2), ('language', 2), ('data', 2), ('native', 1), ('internet', 1), ('originally', 1), ('created', 1), ('make', 1), ('web', 1), ('page', 1), ('dynamic', 1), ('used', 1), ('software', 1), ('project', 1), ('kind', 1), ('including', 1), ('scientific', 1), ('visualization', 1), ('service', 1), ('scientist', 1), ('little', 1), ('experience', 1), ('introduction', 1), ('written', 1)]
[('subdivision', 3), ('method', 2), ('scheme', 2), ('rendering', 2), ('curve', 2), ('surface', 2), ('gem', 2), ('prevalent', 1), ('animation', 1), ('movie', 1), ('interactive', 1), ('game', 1), ('allow', 1), ('user', 1), ('design', 1), ('implement', 1), ('simple', 1), ('efficient', 1), ('adding', 1), ('current', 1), ('toolbox', 1), ('wavelet', 1), ('introduces', 1), ('geometry', 1), ('editing', 1), ('manipulation', 1), ('co', 1)]
[('information', 2), ('communication', 2), ('technology', 2), ('strategy', 2), ('fourth', 1), ('international', 1), ('conference', 1), ('competitive', 1), ('target', 1), ('state', 1), ('art', 1), ('emerging', 1), ('topic', 1), ('pertaining', 1), ('icts', 1), ('effective', 1), ('implementation', 1), ('engineering', 1), ('intelligent', 1), ('application', 1)]
[('virtual', 2), ('life', 2), ('computer', 2), ('scenario', 2), ('reality', 1), ('real', 1), ('instead', 1), ('creation', 1), ('using', 1), ('generated', 1), ('human', 1), ('behavior', 1), ('replicated', 1), ('every', 1), ('detail', 1), ('controlled', 1), ('situation', 1), ('repeated', 1), ('condition', 1), ('based', 1), ('technology', 1), ('design', 1), ('user', 1), ('experience', 1), ('presence', 1)]
[('book', 2), ('based', 2), ('iee', 2), ('best', 1), ('paper', 1), ('iri', 1), ('fmi', 1), ('salt', 1), ('lake', 1), ('city', 1), ('july', 1), ('enhanced', 1), ('modified', 1), ('suitably', 1), ('publication', 1), ('comprises', 1), ('recent', 1), ('work', 1), ('covering', 1), ('several', 1), ('aspect', 1), ('reuse', 1), ('intelligent', 1), ('system', 1), ('including', 1), ('scientific', 1), ('theory', 1), ('technology', 1), ('application', 1), ('new', 1), ('data', 1), ('analytic', 1), ('algorithm', 1)]
[('bookauthority', 2), ('best', 2), ('book', 2), ('world', 2), ('winning', 2), ('spot', 2), ('featured', 1), ('cnn', 1), ('forbes', 1), ('inc', 1), ('identifies', 1), ('rate', 1), ('based', 1), ('recommendation', 1), ('successful', 1), ('business', 1), ('leader', 1), ('expert', 1), ('new', 1), ('industrial', 1), ('management', 1), ('time', 1)]
[('artificial', 2), ('intelligence', 2), ('technique', 2), ('iot', 2), ('sensor', 2), ('network', 2), ('book', 2), ('ai', 2), ('technical', 1), ('researcher', 1), ('academician', 1), ('student', 1), ('professional', 1), ('interested', 1), ('internet', 1), ('thing', 1), ('intended', 1), ('develop', 1), ('shared', 1), ('understanding', 1), ('application', 1), ('present', 1)]
[('teaching', 3), ('learning', 3), ('use', 2), ('multimedia', 2), ('strike', 1), ('heart', 1), ('traditional', 1), ('method', 1), ('changing', 1), ('way', 1), ('educator', 1), ('think', 1), ('whole', 1), ('process', 1), ('megachange', 1), ('spur', 1), ('idea', 1), ('interactive', 1), ('technology', 1), ('revolutionize', 1), ('describes', 1), ('analyzes', 1), ('issue', 1), ('trend', 1)]
[('book', 2), ('acquiring', 2), ('system', 2), ('manual', 2), ('standard', 2), ('delf', 1), ('essential', 1), ('concept', 1), ('technology', 1), ('fill', 1), ('gap', 1), ('left', 1), ('provides', 1), ('practical', 1), ('knowledge', 1), ('insight', 1), ('allow', 1), ('engineer', 1), ('navigate', 1), ('massive', 1), ('tome', 1), ('containing', 1), ('dedicated', 1), ('card', 1), ('exclusively', 1), ('cover', 1)]
[('intellectual', 1), ('property', 1), ('owner', 1), ('continually', 1), ('exploit', 1), ('new', 1), ('way', 1), ('reproducing', 1), ('distributing', 1), ('marketing', 1), ('product', 1), ('threat', 1), ('piracy', 1), ('loom', 1), ('major', 1), ('problem', 1), ('digital', 1), ('distribution', 1), ('storage', 1), ('technology', 1), ('multimedia', 1), ('watermarking', 1), ('technique', 1), ('application', 1), ('cover', 1), ('current', 1), ('future', 1), ('trend', 1), ('design', 1), ('modern', 1)]
[('increasing', 2), ('number', 2), ('optical', 2), ('wireless', 2), ('last', 1), ('three', 1), ('decade', 1), ('interest', 1), ('infrared', 1), ('ir', 1), ('technology', 1), ('medium', 1), ('convey', 1), ('information', 1), ('grown', 1), ('considerably', 1), ('reflected', 1), ('device', 1), ('laptop', 1), ('pda', 1), ('mobile', 1), ('phone', 1), ('incorporate', 1), ('transceivers', 1), ('link', 1), ('available', 1), ('indoor', 1)]
[('power', 2), ('utility', 2), ('infrastructure', 2), ('understanding', 1), ('broadband', 1), ('line', 1), ('explores', 1), ('aspect', 1), ('emerging', 1), ('technology', 1), ('enables', 1), ('electric', 1), ('provide', 1), ('support', 1), ('high', 1), ('speed', 1), ('data', 1), ('communication', 1), ('via', 1), ('book', 1), ('examines', 1), ('method', 1), ('used', 1), ('connect', 1), ('consumer', 1), ('business', 1), ('internet', 1), ('existing', 1), ('ele', 1)]
[('story', 3), ('digital', 3), ('bright', 2), ('boy', 2), ('time', 2), ('genesis', 2), ('untold', 1), ('everything', 1), ('revisited', 1), ('celebrates', 1), ('th', 1), ('anniversary', 1), ('world', 1), ('going', 1), ('first', 1), ('real', 1), ('computing', 1), ('taken', 1), ('edition', 1), ('making', 1), ('information', 1), ('technology', 1), ('substantially', 1)]
[('microcomputer', 4), ('encyclopedia', 2), ('reference', 2), ('technology', 2), ('serf', 1), ('ideal', 1), ('companion', 1), ('popular', 1), ('computer', 1), ('science', 1), ('th', 1), ('year', 1), ('publication', 1), ('timely', 1), ('work', 1), ('detail', 1), ('broad', 1), ('spectrum', 1), ('including', 1), ('history', 1), ('explains', 1), ('illustrates', 1), ('use', 1)]
[('ea', 2), ('popularity', 1), ('enterprise', 1), ('architecture', 1), ('increased', 1), ('last', 1), ('decade', 1), ('business', 1), ('academic', 1), ('domain', 1), ('despite', 1), ('cumulative', 1), ('interest', 1), ('sector', 1), ('implementation', 1), ('practice', 1), ('entangled', 1), ('numerous', 1), ('challenge', 1), ('complexity', 1), ('consequently', 1), ('organisation', 1), ('continue', 1), ('theorise', 1), ('concept', 1)]
[('drone', 5), ('aerial', 2), ('robot', 2), ('student', 2), ('stem', 2), ('study', 2), ('first', 1), ('course', 1), ('provides', 1), ('accessible', 1), ('friendly', 1), ('introduction', 1), ('figure', 1), ('prominently', 1), ('opportunity', 1), ('learn', 1), ('various', 1), ('aspect', 1), ('aerospace', 1), ('engineering', 1), ('design', 1), ('offer', 1), ('enticing', 1), ('entry', 1), ('point', 1), ('use', 1), ('grows', 1)]
[('edge', 2), ('computing', 2), ('new', 2), ('microservices', 2), ('book', 2), ('era', 1), ('ecosystem', 1), ('mobile', 1), ('enable', 1), ('business', 1), ('model', 1), ('strategy', 1), ('competitive', 1), ('advantage', 1), ('focusing', 1), ('introduces', 1), ('essential', 1), ('concept', 1), ('technology', 1), ('trade', 1), ('offs', 1), ('architectural', 1), ('stack', 1), ('providing', 1), ('widespread', 1), ('adoption', 1), ('dissemination', 1)]
[('fraud', 3), ('book', 2), ('forensic', 2), ('accounting', 2), ('investigation', 2), ('cover', 1), ('every', 1), ('aspect', 1), ('anti', 1), ('control', 1), ('system', 1), ('author', 1), ('us', 1), ('case', 1), ('experience', 1), ('guide', 1), ('reader', 1), ('phase', 1), ('assignment', 1), ('open', 1), ('explanation', 1), ('happened', 1), ('company', 1), ('ensnared', 1), ('huge', 1)]
[('cyber', 2), ('cybersecurity', 2), ('introduction', 1), ('range', 1), ('provides', 1), ('comprehensive', 1), ('integrative', 1), ('easy', 1), ('comprehend', 1), ('overview', 1), ('different', 1), ('aspect', 1), ('involved', 1), ('arena', 1), ('expands', 1), ('various', 1), ('concept', 1), ('situational', 1), ('awareness', 1), ('simulation', 1), ('emulation', 1), ('environment', 1), ('exercise', 1), ('focus', 1), ('detailed', 1), ('analysis', 1), ('comparison', 1)]
[('self', 3), ('wireless', 2), ('network', 2), ('wmn', 2), ('mesh', 1), ('encompass', 1), ('new', 1), ('area', 1), ('technology', 1), ('set', 1), ('play', 1), ('important', 1), ('role', 1), ('next', 1), ('generation', 1), ('mobile', 1), ('characterized', 1), ('dynamic', 1), ('organization', 1), ('configuration', 1), ('healing', 1), ('enable', 1), ('flexible', 1), ('integration', 1), ('quick', 1), ('deployment', 1), ('easy', 1), ('maintenance', 1), ('low', 1), ('cost', 1), ('high', 1), ('scalability', 1), ('reliable', 1), ('service', 1)]
[('analysis', 3), ('survival', 2), ('python', 2), ('subject', 2), ('us', 1), ('statistic', 1), ('calculate', 1), ('time', 1), ('failure', 1), ('take', 1), ('fresh', 1), ('look', 1), ('complex', 1), ('explaining', 1), ('use', 1), ('programming', 1), ('language', 1), ('perform', 1), ('type', 1), ('mathematical', 1), ('full', 1), ('expression', 1), ('formulation', 1), ('book', 1), ('provides', 1), ('detailed', 1)]
[('subdivision', 3), ('method', 2), ('scheme', 2), ('rendering', 2), ('curve', 2), ('surface', 2), ('gem', 2), ('prevalent', 1), ('animation', 1), ('movie', 1), ('interactive', 1), ('game', 1), ('allow', 1), ('user', 1), ('design', 1), ('implement', 1), ('simple', 1), ('efficient', 1), ('adding', 1), ('current', 1), ('toolbox', 1), ('wavelet', 1), ('introduces', 1), ('geometry', 1), ('editing', 1), ('manipulation', 1), ('co', 1)]
[('perspective', 2), ('began', 2), ('software', 2), ('security', 2), ('textbook', 1), ('written', 1), ('career', 1), ('long', 1), ('industry', 1), ('focusing', 1), ('excellent', 1), ('student', 1), ('want', 1), ('learn', 1), ('securing', 1), ('application', 1), ('development', 1), ('made', 1), ('rookie', 1), ('mistake', 1), ('author', 1), ('realized', 1)]
[('physical', 4), ('cyber', 3), ('cps', 2), ('component', 2), ('system', 1), ('integration', 1), ('counterpart', 1), ('unit', 1), ('either', 1), ('software', 1), ('hardware', 1), ('object', 1), ('governed', 1), ('law', 1), ('physic', 1), ('transformed', 1), ('interact', 1), ('world', 1), ('ranging', 1), ('sensing', 1), ('environmental', 1), ('parameter', 1)]
[('article', 2), ('comprehensive', 1), ('reference', 1), ('work', 1), ('provides', 1), ('immediate', 1), ('fingertip', 1), ('access', 1), ('state', 1), ('art', 1), ('technology', 1), ('nearly', 1), ('self', 1), ('contained', 1), ('written', 1), ('international', 1), ('authority', 1), ('encyclopedia', 1), ('feature', 1), ('current', 1), ('development', 1), ('trend', 1), ('computer', 1), ('software', 1), ('vendor', 1), ('application', 1), ('extensive', 1), ('bibliography', 1)]
[('wireless', 3), ('networking', 2), ('technology', 2), ('phenomenal', 1), ('uptake', 1), ('mobile', 1), ('past', 1), ('decade', 1), ('significant', 1), ('development', 1), ('taken', 1), ('place', 1), ('time', 1), ('making', 1), ('affordable', 1), ('effective', 1), ('reliable', 1), ('book', 1), ('explains', 1), ('fundamental', 1), ('principle', 1), ('protocol', 1), ('key', 1), ('existing', 1), ('emerging', 1)]
[('mathematical', 3), ('cryptography', 3), ('practical', 2), ('science', 2), ('computation', 2), ('provides', 1), ('clear', 1), ('accessible', 1), ('introduction', 1), ('practice', 1), ('lie', 1), ('intersection', 1), ('mathematics', 1), ('presentation', 1), ('emphasis', 1), ('essential', 1), ('nature', 1), ('argument', 1)]
[('tool', 2), ('social', 1), ('medium', 1), ('spread', 1), ('rapidly', 1), ('global', 1), ('stage', 1), ('driving', 1), ('consumer', 1), ('attention', 1), ('influence', 1), ('consciously', 1), ('subconsciously', 1), ('whilst', 1), ('type', 1), ('platform', 1), ('initially', 1), ('designed', 1), ('open', 1), ('communication', 1), ('expression', 1), ('utilized', 1), ('digital', 1), ('widescale', 1), ('use', 1), ('case', 1), ('intelligence', 1), ('explosion', 1)]
[('entropy', 3), ('machine', 3), ('learning', 3), ('randomization', 2), ('model', 2), ('present', 1), ('new', 1), ('approach', 1), ('obtain', 1), ('optimal', 1), ('solution', 1), ('uncertainty', 1), ('uncertain', 1), ('data', 1), ('object', 1), ('study', 1), ('randomized', 1), ('procedure', 1), ('involve', 1), ('random', 1), ('parameter', 1), ('maximum', 1), ('estimate', 1), ('probability', 1), ('density', 1)]
[('deep', 4), ('swarm', 3), ('intelligence', 2), ('evolutionary', 2), ('computation', 2), ('learning', 2), ('book', 1), ('provides', 1), ('theoretical', 1), ('practical', 1), ('knowledge', 1), ('describes', 1), ('emerging', 1), ('trend', 1), ('involve', 1), ('integration', 1), ('neuroevolution', 1), ('study', 1), ('review', 1), ('research', 1), ('network', 1)]
[('analytics', 3), ('analytical', 2), ('project', 2), ('initiative', 2), ('complex', 2), ('categorisation', 1), ('help', 1), ('simplify', 1), ('complexity', 1), ('reasonably', 1), ('time', 1), ('clarify', 1), ('critical', 1), ('aspect', 1), ('work', 1), ('categorized', 1), ('make', 1), ('data', 1), ('managing', 1), ('success', 1), ('emphasizes', 1)]
[('real', 3), ('virtual', 2), ('computer', 2), ('interact', 2), ('reality', 1), ('vr', 1), ('paradigm', 1), ('wherein', 1), ('use', 1), ('something', 1), ('provides', 1), ('life', 1), ('experience', 1), ('advanced', 1), ('interface', 1), ('user', 1), ('model', 1), ('time', 1), ('allowing', 1), ('visualize', 1), ('manipulate', 1), ('representation', 1)]
[('ic', 2), ('chip', 2), ('electronic', 2), ('component', 2), ('continuous', 1), ('miniaturization', 1), ('integrated', 1), ('circuit', 1), ('increase', 1), ('sleekness', 1), ('design', 1), ('led', 1), ('monumental', 1), ('rise', 1), ('volumetric', 1), ('heat', 1), ('generation', 1), ('hybrid', 1), ('genetic', 1), ('optimization', 1), ('thermal', 1), ('control', 1), ('matlab', 1), ('application', 1), ('focus', 1), ('detailed', 1)]
[('data', 3), ('revolutionized', 1), ('digital', 1), ('ecosystem', 1), ('readily', 1), ('available', 1), ('large', 1), ('datasets', 1), ('foster', 1), ('ai', 1), ('machine', 1), ('learning', 1), ('automated', 1), ('solution', 1), ('generated', 1), ('diverse', 1), ('varied', 1), ('source', 1), ('including', 1), ('iot', 1), ('social', 1), ('platform', 1), ('healthcare', 1), ('system', 1), ('log', 1), ('bio', 1), ('informatics', 1), ('etc', 1), ('contribute', 1), ('define', 1), ('ethos', 1), ('big', 1), ('volume', 1), ('velocity', 1)]
[('chip', 3), ('network', 3), ('fault', 3), ('asynchronous', 2), ('tolerant', 1), ('technique', 1), ('first', 1), ('comprehensive', 1), ('study', 1), ('tolerance', 1), ('caused', 1), ('deadlock', 1), ('effect', 1), ('aiming', 1), ('overcome', 1), ('drawback', 1), ('ensure', 1), ('greater', 1), ('reliability', 1), ('application', 1), ('promising', 1), ('alternative', 1), ('widely', 1), ('used', 1), ('synchronous', 1)]
[('model', 3), ('implementation', 2), ('conceptually', 1), ('practically', 1), ('digitalization', 1), ('similar', 1), ('modern', 1), ('computation', 1), ('centralized', 1), ('setup', 1), ('using', 1), ('mainframe', 1), ('extended', 1), ('tier', 1), ('architecture', 1), ('regardless', 1), ('specific', 1), ('conceptual', 1), ('data', 1), ('processing', 1), ('remains', 1)]
[('deep', 3), ('learning', 3), ('artificially', 1), ('intelligent', 1), ('entity', 1), ('teach', 1), ('utilized', 1), ('make', 1), ('prediction', 1), ('mimic', 1), ('human', 1), ('brain', 1), ('provides', 1), ('learned', 1), ('solution', 1), ('addressing', 1), ('many', 1), ('challenging', 1), ('problem', 1), ('area', 1), ('visual', 1), ('computing', 1), ('object', 1), ('recognition', 1), ('image', 1), ('classification', 1), ('diagnostics', 1), ('shown', 1)]
[('book', 2), ('brain', 2), ('control', 2), ('aim', 1), ('introduce', 1), ('state', 1), ('art', 1), ('technology', 1), ('field', 1), ('cognitive', 1), ('intelligence', 1), ('used', 1), ('robotics', 1), ('particularly', 1), ('studying', 1), ('learns', 1), ('complex', 1), ('motor', 1), ('skill', 1), ('replicate', 1), ('robot', 1), ('first', 1), ('systematically', 1), ('thoroughly', 1), ('deal', 1)]
[('computer', 3), ('aided', 3), ('competitive', 2), ('business', 1), ('arena', 1), ('company', 1), ('continually', 1), ('strive', 1), ('create', 1), ('new', 1), ('better', 1), ('product', 1), ('faster', 1), ('efficiently', 1), ('cost', 1), ('effectively', 1), ('competitor', 1), ('gain', 1), ('keep', 1), ('advantage', 1), ('design', 1), ('cad', 1), ('engineering', 1), ('cae', 1), ('manufacturing', 1), ('cam', 1), ('industry', 1), ('standa', 1)]
[('proof', 2), ('cryptography', 2), ('technique', 1), ('difficult', 1), ('understand', 1), ('even', 1), ('student', 1), ('researcher', 1), ('major', 1), ('addition', 1), ('contrast', 1), ('excessive', 1), ('emphasis', 1), ('security', 1), ('cryptographic', 1), ('scheme', 1), ('practical', 1), ('aspect', 1), ('received', 1), ('comparatively', 1), ('le', 1), ('attention', 1), ('book', 1), ('address', 1), ('issue', 1)]
[('data', 2), ('center', 2), ('network', 2), ('architecture', 2), ('technical', 2), ('cloud', 1), ('technology', 1), ('written', 1), ('support', 1), ('huawei', 1), ('vast', 1), ('knowledge', 1), ('experience', 1), ('dcn', 1), ('field', 1), ('understanding', 1), ('customer', 1), ('service', 1), ('requirement', 1), ('book', 1), ('describes', 1), ('detail', 1), ('design', 1), ('implementation', 1), ('planning', 1)]
[('author', 2), ('work', 2), ('book', 1), ('record', 1), ('year', 1), ('experience', 1), ('software', 1), ('industry', 1), ('practice', 1), ('found', 1), ('distributed', 1), ('pattern', 1), ('become', 1), ('increasingly', 1), ('popular', 1), ('environment', 1), ('either', 1), ('vendor', 1), ('customer', 1), ('different', 1), ('team', 1), ('inside', 1), ('company', 1), ('mean', 1), ('practitioner', 1)]
[('campus', 5), ('network', 4), ('architecture', 2), ('technology', 2), ('solution', 2), ('begin', 1), ('describing', 1), ('service', 1), ('challenge', 1), ('facing', 1), ('detail', 1), ('intent', 1), ('driven', 1), ('huawei', 1), ('cloud', 1), ('reading', 1), ('book', 1), ('comprehensive', 1), ('understanding', 1), ('next', 1), ('generation', 1)]
[('recommender', 2), ('system', 2), ('information', 2), ('use', 1), ('filtering', 1), ('predict', 1), ('user', 1), ('preference', 1), ('becoming', 1), ('vital', 1), ('part', 1), ('business', 1), ('used', 1), ('wide', 1), ('variety', 1), ('industry', 1), ('ranging', 1), ('entertainment', 1), ('social', 1), ('networking', 1), ('technology', 1), ('tourism', 1), ('education', 1), ('agriculture', 1), ('healthcare', 1), ('manufacturing', 1), ('retail', 1), ('algorithm', 1)]
[('gi', 3), ('data', 2), ('object', 2), ('oriented', 2), ('design', 2), ('increasing', 1), ('demand', 1), ('system', 1), ('support', 1), ('historical', 1), ('time', 1), ('series', 1), ('mobility', 1), ('information', 1), ('modelling', 1), ('perspective', 1), ('advantage', 1), ('integrating', 1), ('analysis', 1), ('database', 1), ('visualisation', 1), ('capability', 1), ('temporal', 1), ('explores', 1)]
[('study', 2), ('covering', 1), ('analysis', 1), ('field', 1), ('micro', 1), ('world', 1), ('training', 1), ('creation', 1), ('computer', 1), ('artefact', 1), ('co', 1), ('operative', 1), ('process', 1), ('management', 1), ('umbrella', 1)]
[('lisp', 4), ('technology', 3), ('advanced', 2), ('development', 1), ('accelerated', 1), ('number', 1), ('factor', 1), ('including', 1), ('increased', 1), ('interest', 1), ('artificial', 1), ('intelligence', 1), ('emergence', 1), ('common', 1), ('fourth', 1), ('volume', 1), ('information', 1), ('processing', 1), ('series', 1), ('brings', 1), ('together', 1), ('various', 1), ('japanese', 1), ('researcher', 1), ('working', 1), ('field', 1), ('te', 1)]
[('domain', 2), ('information', 2), ('processing', 2), ('japan', 2), ('oriented', 1), ('system', 1), ('development', 1), ('sixth', 1), ('volume', 1), ('advanced', 1), ('technology', 1), ('series', 1), ('society', 1), ('draw', 1), ('together', 1), ('collection', 1), ('research', 1), ('paper', 1), ('analysis', 1), ('modeling', 1), ('written', 1), ('group', 1), ('software', 1), ('engineer', 1), ('researcher', 1), ('korea', 1), ('canada', 1), ('austria', 1)]
[('design', 3), ('reverse', 2), ('series', 2), ('game', 2), ('half', 2), ('life', 2), ('look', 1), ('decision', 1), ('went', 1), ('classic', 1), ('video', 1), ('fourth', 1), ('installment', 1), ('looking', 1), ('written', 1), ('readable', 1), ('format', 1), ('broken', 1), ('six', 1), ('section', 1), ('examining', 1), ('important', 1), ('topic', 1), ('key', 1), ('step', 1)]
[('design', 4), ('reverse', 3), ('series', 2), ('game', 2), ('super', 2), ('mario', 2), ('world', 2), ('look', 1), ('decision', 1), ('went', 1), ('classic', 1), ('third', 1), ('installment', 1), ('looking', 1), ('written', 1), ('readable', 1), ('format', 1), ('break', 1), ('nicely', 1), ('relatively', 1), ('short', 1), ('separate', 1), ('section', 1), ('broken', 1), ('four', 1)]
[('design', 3), ('reverse', 2), ('series', 2), ('game', 2), ('look', 1), ('decision', 1), ('went', 1), ('classic', 1), ('video', 1), ('first', 1), ('installment', 1), ('looking', 1), ('final', 1), ('fantasy', 1), ('vi', 1), ('written', 1), ('readable', 1), ('format', 1), ('broken', 1), ('six', 1), ('section', 1), ('examining', 1), ('important', 1), ('topic', 1), ('narrative', 1), ('element', 1)]
[('principle', 3), ('ipv', 2), ('ospf', 2), ('technology', 2), ('book', 1), ('describes', 1), ('compare', 1), ('version', 1), ('explains', 1), ('grounding', 1), ('analysis', 1), ('link', 1), ('state', 1), ('routing', 1), ('lsr', 1), ('deliberately', 1), ('separate', 1), ('understanding', 1), ('behind', 1), ('make', 1), ('learning', 1), ('process', 1), ('easier', 1), ('solid', 1)]
[('iot', 2), ('big', 2), ('data', 2), ('resource', 2), ('multi', 1), ('contributed', 1), ('handbook', 1), ('focus', 1), ('latest', 1), ('working', 1), ('internet', 1), ('thing', 1), ('limited', 1), ('endeavor', 1), ('author', 1), ('support', 1), ('bring', 1), ('information', 1), ('book', 1), ('divided', 1), ('section', 1), ('cover', 1), ('technology', 1), ('future', 1), ('algorithm', 1), ('case', 1), ('study', 1)]
[('software', 2), ('development', 2), ('manual', 1), ('assume', 1), ('testing', 1), ('performed', 1), ('part', 1), ('defined', 1), ('structured', 1), ('cycle', 1), ('based', 1), ('clearly', 1), ('stated', 1), ('requirement', 1), ('standard', 1), ('unfortunately', 1), ('often', 1), ('case', 1), ('real', 1), ('world', 1), ('indeed', 1), ('true', 1), ('constant', 1), ('change', 1), ('pdca', 1), ('test', 1), ('present', 1), ('continuous', 1), ('quality', 1), ('framework', 1), ('ba', 1)]
[('computational', 2), ('intelligence', 2), ('cyber', 2), ('enabled', 2), ('book', 1), ('provides', 1), ('advanced', 1), ('vision', 1), ('trend', 1), ('cyberspace', 1), ('space', 1), ('review', 1), ('architecture', 1), ('model', 1), ('state', 1), ('art', 1), ('interpretation', 1), ('capability', 1), ('social', 1), ('industrial', 1), ('multimedia', 1), ('application', 1), ('involves', 1), ('design', 1), ('development', 1)]
[('parallel', 4), ('computing', 2), ('intended', 2), ('student', 2), ('programming', 1), ('co', 1), ('array', 1), ('describes', 1), ('basic', 1), ('technique', 1), ('used', 1), ('design', 1), ('algorithm', 1), ('high', 1), ('performance', 1), ('scientific', 1), ('upper', 1), ('level', 1), ('undergraduate', 1), ('graduate', 1), ('need', 1), ('develop', 1), ('code', 1), ('little', 1), ('previous', 1), ('introduction', 1)]
[('map', 1), ('beguilingly', 1), ('simple', 1), ('structure', 1), ('deep', 1), ('ubiquitous', 1), ('property', 1), ('arise', 1), ('essential', 1), ('way', 1), ('many', 1), ('area', 1), ('mathematics', 1), ('mathematical', 1), ('physic', 1), ('require', 1), ('considerable', 1), ('time', 1), ('computational', 1), ('effort', 1), ('generate', 1), ('collected', 1), ('drawing', 1), ('available', 1), ('reference', 1), ('little', 1), ('written', 1), ('book', 1), ('form', 1), ('enumerative', 1)]
[('network', 3), ('broadband', 2), ('technology', 2), ('service', 2), ('optical', 1), ('undersea', 1), ('gsm', 1), ('umts', 1), ('recent', 1), ('explosion', 1), ('communication', 1), ('opened', 1), ('new', 1), ('world', 1), ('fast', 1), ('flexible', 1), ('application', 1), ('successfully', 1), ('implement', 1), ('requires', 1), ('solid', 1), ('understanding', 1), ('concept', 1), ('capability', 1), ('building', 1), ('br', 1)]
[('basic', 2), ('web', 2), ('application', 2), ('book', 1), ('present', 1), ('knowledge', 1), ('illustrative', 1), ('example', 1), ('build', 1), ('dynamic', 1), ('robust', 1), ('using', 1), ('net', 1), ('framework', 1), ('technology', 1), ('stress', 1), ('use', 1), ('code', 1), ('behind', 1), ('procedural', 1), ('coding', 1), ('useful', 1), ('interested', 1), ('development', 1), ('visual', 1), ('programmer', 1)]
[('computer', 2), ('architecture', 2), ('new', 1), ('development', 1), ('fairly', 1), ('recent', 1), ('publication', 1), ('quickly', 1), ('become', 1), ('outdated', 1), ('software', 1), ('aspect', 1), ('coding', 1), ('hardware', 1), ('take', 1), ('modern', 1), ('approach', 1), ('comprehensive', 1), ('practical', 1), ('text', 1), ('provides', 1), ('critical', 1), ('understanding', 1), ('central', 1), ('processor', 1), ('clearly', 1), ('detailing', 1), ('fundamental', 1), ('cutting', 1), ('edge', 1)]
[('networking', 3), ('protocol', 2), ('standard', 2), ('complex', 2), ('internetworking', 2), ('numerous', 1), ('multivendor', 1), ('crucial', 1), ('present', 1), ('day', 1), ('user', 1), ('requires', 1), ('grasp', 1), ('data', 1), ('computer', 1), ('communication', 1), ('comprehensive', 1), ('text', 1), ('reference', 1), ('brings', 1), ('clarity', 1), ('issue', 1), ('involved', 1), ('activi', 1)]
[('lan', 3), ('guide', 1), ('design', 1), ('procurement', 1), ('installation', 1), ('testing', 1), ('procedure', 1), ('local', 1), ('area', 1), ('network', 1), ('using', 1), ('copper', 1), ('optical', 1), ('fibre', 1), ('cable', 1), ('technology', 1), ('describes', 1), ('theory', 1), ('practical', 1), ('issue', 1), ('involved', 1), ('complexity', 1), ('today', 1), ('office', 1), ('based', 1), ('compare', 1), ('international', 1), ('european', 1), ('premise', 1), ('cabling', 1), ('standard', 1)]
[('electronic', 3), ('thesis', 3), ('dissertation', 3), ('etd', 2), ('examines', 1), ('publication', 1), ('might', 1), ('enhance', 1), ('graduate', 1), ('education', 1), ('text', 1), ('clarifies', 1), ('composition', 1), ('evaluation', 1), ('dissemination', 1), ('preservation', 1), ('provides', 1), ('conceptual', 1), ('framework', 1), ('development', 1), ('effective', 1), ('program', 1), ('id', 1)]
[('network', 3), ('medium', 2), ('directional', 2), ('antenna', 2), ('large', 1), ('portion', 1), ('capacity', 1), ('ad', 1), ('hoc', 1), ('wasted', 1), ('access', 1), ('mechanism', 1), ('omni', 1), ('overcome', 1), ('problem', 1), ('researcher', 1), ('propose', 1), ('use', 1), ('adaptive', 1), ('largely', 1), ('reduce', 1), ('radio', 1), ('interference', 1), ('improving', 1), ('utilization', 1), ('wireless', 1), ('resulting', 1), ('throughput', 1)]
[('fuzzy', 4), ('automaton', 3), ('theory', 2), ('mathematics', 2), ('offer', 1), ('first', 1), ('depth', 1), ('treatment', 1), ('language', 1), ('effectively', 1), ('compare', 1), ('contrast', 1), ('different', 1), ('approach', 1), ('used', 1), ('includes', 1), ('complete', 1), ('proof', 1), ('theoretical', 1), ('result', 1), ('presented', 1), ('figure', 1), ('example', 1), ('illustrate', 1)]
[('fuzzy', 3), ('set', 2), ('theory', 2), ('underlying', 1), ('logic', 1), ('represents', 1), ('significant', 1), ('scientific', 1), ('cultural', 1), ('paradigm', 1), ('emerge', 1), ('last', 1), ('half', 1), ('century', 1), ('theoretical', 1), ('technological', 1), ('promise', 1), ('vast', 1), ('beginning', 1), ('experience', 1), ('potential', 1), ('clustering', 1), ('first', 1), ('basic', 1), ('application', 1), ('form', 1)]
[('operating', 2), ('practical', 1), ('hand', 1), ('information', 1), ('need', 1), ('build', 1), ('manage', 1), ('maintain', 1), ('heterogeneous', 1), ('computing', 1), ('environment', 1), ('hardware', 1), ('software', 1), ('network', 1), ('equipment', 1), ('number', 1), ('different', 1), ('vendor', 1), ('packed', 1), ('real', 1), ('world', 1), ('case', 1), ('study', 1), ('proven', 1), ('technique', 1), ('integrating', 1), ('disparate', 1), ('platform', 1), ('system', 1), ('server', 1), ('multi', 1)]
[('system', 3), ('information', 2), ('data', 2), ('effective', 1), ('decision', 1), ('support', 1), ('ds', 1), ('quickly', 1), ('becoming', 1), ('key', 1), ('business', 1), ('gaining', 1), ('competitive', 1), ('advantage', 1), ('effectiveness', 1), ('depends', 1), ('ability', 1), ('construct', 1), ('maintain', 1), ('extract', 1), ('warehouse', 1), ('many', 1), ('still', 1), ('perceive', 1), ('warehousing', 1), ('subdiscipline', 1), ('management', 1), ('mi', 1)]
[('quantum', 3), ('computer', 3), ('science', 2), ('mathematics', 2), ('among', 1), ('exciting', 1), ('development', 1), ('today', 1), ('design', 1), ('construction', 1), ('realization', 1), ('result', 1), ('multidisciplinary', 1), ('effort', 1), ('ultimately', 1), ('lie', 1), ('heart', 1), ('theoretical', 1), ('computation', 1), ('brings', 1), ('together', 1), ('leading', 1), ('sc', 1)]
[('paper', 3), ('communication', 2), ('network', 2), ('system', 2), ('volume', 1), ('comprises', 1), ('collection', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('networking', 1), ('icoin', 1), ('held', 1), ('tokyo', 1), ('technical', 1), ('distributed', 1), ('presented', 1), ('along', 1), ('side', 1), ('internet', 1), ('based', 1), ('electronic', 1), ('commerce', 1), ('academic', 1), ('research', 1), ('high', 1), ('speed', 1), ('atm', 1)]
[('machine', 2), ('intelligence', 1), ('truly', 1), ('intelligent', 1), ('practical', 1), ('reality', 1), ('work', 1), ('harmony', 1), ('human', 1), ('being', 1), ('improve', 1), ('quality', 1), ('life', 1), ('designed', 1), ('built', 1), ('controlled', 1), ('fact', 1), ('brain', 1), ('longer', 1), ('stuff', 1), ('science', 1), ('fiction', 1), ('research', 1), ('focused', 1), ('developing', 1), ('smarter', 1), ('flexible', 1)]
[('new', 2), ('technology', 2), ('powerful', 2), ('automation', 2), ('system', 2), ('fascination', 1), ('based', 1), ('assumption', 1), ('overcome', 1), ('human', 1), ('limitation', 1), ('make', 1), ('faster', 1), ('better', 1), ('cheaper', 1), ('resulting', 1), ('simple', 1), ('easy', 1), ('task', 1), ('change', 1), ('work', 1), ('research', 1), ('cognitive', 1), ('engineering', 1), ('cse', 1)]
[('system', 5), ('parallel', 2), ('computer', 2), ('engineer', 2), ('introduction', 1), ('networking', 1), ('large', 1), ('scale', 1), ('act', 1), ('primary', 1), ('resource', 1), ('wide', 1), ('readership', 1), ('including', 1), ('network', 1), ('electronics', 1), ('designer', 1), ('scientist', 1), ('involved', 1), ('design', 1), ('implementation', 1), ('algorithm', 1), ('development', 1), ('graduate', 1), ('student', 1), ('architecture', 1)]
[('pace', 2), ('performance', 2), ('computer', 1), ('microprocessor', 1), ('architecture', 1), ('advancing', 1), ('astounding', 1), ('increasing', 1), ('demand', 1), ('coupled', 1), ('wide', 1), ('variety', 1), ('specialized', 1), ('operating', 1), ('environment', 1), ('act', 1), ('slow', 1), ('complicating', 1), ('evaluation', 1), ('process', 1), ('carefully', 1), ('balancing', 1), ('efficiency', 1), ('accuracy', 1), ('key', 1), ('avoid', 1), ('slowdown', 1)]
[('edition', 3), ('development', 2), ('field', 2), ('genetic', 2), ('algorithm', 2), ('rapid', 1), ('along', 1), ('popularity', 1), ('first', 1), ('precipitated', 1), ('completely', 1), ('revised', 1), ('thoroughly', 1), ('updated', 1), ('second', 1), ('practical', 1), ('handbook', 1), ('predecessor', 1), ('help', 1), ('practitioner', 1), ('stay', 1), ('date', 1), ('recent', 1), ('provides', 1), ('material', 1)]
[('interaction', 2), ('knowledge', 2), ('internet', 1), ('intranet', 1), ('web', 1), ('chat', 1), ('room', 1), ('mail', 1), ('business', 1), ('advent', 1), ('widespread', 1), ('networking', 1), ('clear', 1), ('nature', 1), ('human', 1), ('changing', 1), ('community', 1), ('develop', 1), ('based', 1), ('common', 1), ('connection', 1), ('traditional', 1), ('social', 1), ('route', 1), ('de', 1), ('emphasized', 1), ('dynamic', 1), ('present', 1), ('groundbreaking', 1), ('inte', 1)]
[('evolutionary', 3), ('computation', 2), ('world', 2), ('application', 2), ('rapid', 1), ('advance', 1), ('opened', 1), ('rapidly', 1), ('growing', 1), ('evolving', 1), ('decision', 1), ('making', 1), ('neural', 1), ('network', 1), ('pattern', 1), ('recognition', 1), ('complex', 1), ('optimization', 1), ('search', 1), ('task', 1), ('scheduling', 1), ('control', 1), ('automated', 1), ('programming', 1), ('cellular', 1), ('automaton', 1), ('rely', 1)]
[('librarianship', 2), ('providing', 1), ('new', 1), ('insight', 1), ('role', 1), ('age', 1), ('socioeconomic', 1), ('environmental', 1), ('political', 1), ('transformation', 1), ('global', 1), ('illustrates', 1), ('globally', 1), ('networked', 1), ('environment', 1), ('promote', 1), ('increase', 1), ('sharing', 1), ('dissemination', 1), ('idea', 1), ('information', 1), ('solution', 1), ('obstacle', 1), ('affecting', 1), ('library', 1), ('reference', 1), ('showcase', 1), ('method', 1)]
[('graph', 2), ('algebra', 2), ('posse', 1), ('capacity', 1), ('relate', 1), ('fundamental', 1), ('concept', 1), ('computer', 1), ('science', 1), ('combinatorics', 1), ('theory', 1), ('operation', 1), ('research', 1), ('universal', 1), ('used', 1), ('identify', 1), ('nontrivial', 1), ('connection', 1), ('across', 1), ('notion', 1), ('expose', 1), ('conceptual', 1), ('property', 1), ('mediate', 1), ('application', 1), ('method', 1), ('area', 1), ('toward', 1), ('question', 1), ('four', 1)]
[('modern', 2), ('computational', 2), ('emerged', 2), ('technological', 1), ('improvement', 1), ('continue', 1), ('push', 1), ('back', 1), ('frontier', 1), ('processor', 1), ('speed', 1), ('computer', 1), ('unfortunately', 1), ('intensity', 1), ('demanded', 1), ('research', 1), ('problem', 1), ('grows', 1), ('even', 1), ('faster', 1), ('parallel', 1), ('computing', 1), ('successful', 1), ('bridge', 1), ('gap', 1), ('many', 1), ('popular', 1), ('solution', 1), ('based', 1), ('concept', 1)]
[('human', 4), ('engineering', 2), ('behavior', 2), ('action', 2), ('reaction', 2), ('bridging', 1), ('gap', 1), ('computer', 1), ('control', 1), ('learning', 1), ('transfer', 1), ('delineates', 1), ('abstract', 1), ('skill', 1), ('computational', 1), ('model', 1), ('author', 1), ('include', 1), ('method', 1), ('modeling', 1), ('variety', 1), ('explore', 1), ('process', 1), ('evaluating', 1), ('optimizing', 1), ('trans', 1)]
[('wireless', 2), ('mesh', 2), ('networking', 2), ('technology', 2), ('examines', 2), ('explores', 2), ('existing', 2), ('new', 1), ('potential', 1), ('revolutionize', 1), ('access', 1), ('internet', 1), ('communicate', 1), ('co', 1), ('worker', 1), ('friend', 1), ('network', 1), ('concept', 1), ('advantage', 1), ('book', 1), ('future', 1), ('application', 1)]
[('wireless', 4), ('security', 3), ('network', 2), ('handbook', 1), ('provides', 1), ('rounded', 1), ('overview', 1), ('examines', 1), ('multiple', 1), ('perspective', 1), ('including', 1), ('auditor', 1), ('architect', 1), ('hacker', 1), ('wide', 1), ('scope', 1), ('benefit', 1), ('anyone', 1), ('administer', 1), ('secure', 1), ('hack', 1), ('conduct', 1), ('business', 1), ('text', 1), ('tackle', 1), ('wirele', 1)]
[('tcp', 3), ('performance', 2), ('evolution', 1), ('mobile', 1), ('communication', 1), ('market', 1), ('causing', 1), ('major', 1), ('increase', 1), ('data', 1), ('traffic', 1), ('demand', 1), ('lead', 1), ('disrupted', 1), ('mobility', 1), ('intermittent', 1), ('degraded', 1), ('channel', 1), ('condition', 1), ('contribute', 1), ('poor', 1), ('transmission', 1), ('control', 1), ('protocol', 1), ('umts', 1), ('hsdpa', 1), ('system', 1), ('present', 1), ('comprehensive', 1), ('study', 1), ('effect', 1)]
[('interpolation', 3), ('mathematician', 2), ('approximation', 2), ('theory', 2), ('classical', 2), ('analysis', 2), ('dedicated', 1), ('respected', 1), ('research', 1), ('ambikeshwar', 1), ('sharma', 1), ('frontier', 1), ('explores', 1), ('written', 1), ('authoritative', 1), ('international', 1), ('book', 1), ('present', 1), ('many', 1), ('important', 1), ('result', 1), ('wavelet', 1)]
[('unitary', 2), ('algorithm', 2), ('transforms', 2), ('reference', 1), ('present', 1), ('efficient', 1), ('flexible', 1), ('manageable', 1), ('approach', 1), ('transform', 1), ('calculation', 1), ('examines', 1), ('novel', 1), ('concept', 1), ('design', 1), ('classification', 1), ('management', 1), ('fast', 1), ('different', 1), ('multidimensional', 1), ('case', 1), ('illustrating', 1), ('method', 1), ('construct', 1), ('new', 1), ('best', 1), ('sele', 1)]
[('data', 3), ('environmental', 2), ('management', 2), ('site', 2), ('project', 1), ('reach', 1), ('point', 1), ('amount', 1), ('seems', 1), ('overwhelming', 1), ('need', 1), ('robust', 1), ('tool', 1), ('help', 1), ('manage', 1), ('written', 1), ('recognized', 1), ('expert', 1), ('software', 1), ('author', 1), ('year', 1), ('industry', 1), ('experience', 1), ('relational', 1), ('display', 1), ('begin', 1), ('overview', 1)]
[('boundary', 3), ('layer', 3), ('numerical', 2), ('method', 2), ('solving', 2), ('problem', 2), ('involving', 2), ('current', 1), ('standard', 1), ('little', 1), ('use', 1), ('mathematical', 1), ('robust', 1), ('computational', 1), ('technique', 1), ('author', 1), ('construct', 1), ('differential', 1), ('equation', 1), ('non', 1), ('smooth', 1), ('solution', 1), ('singularity', 1), ('related', 1), ('pres', 1)]
[('ip', 2), ('network', 2), ('internet', 1), ('protocol', 1), ('increasingly', 1), ('mix', 1), ('traditional', 1), ('data', 1), ('asset', 1), ('traffic', 1), ('related', 1), ('voice', 1), ('entertainment', 1), ('industrial', 1), ('process', 1), ('control', 1), ('metering', 1), ('due', 1), ('convergence', 1), ('content', 1), ('emerging', 1), ('extremely', 1), ('vital', 1), ('infrastructure', 1), ('component', 1), ('requiring', 1), ('greater', 1), ('awareness', 1), ('better', 1), ('security', 1), ('management', 1)]
[('business', 2), ('today', 1), ('environment', 1), ('longer', 1), ('safe', 1), ('conduct', 1), ('internet', 1), ('without', 1), ('first', 1), ('protecting', 1), ('small', 1), ('medium', 1), ('large', 1), ('corporation', 1), ('require', 1), ('massive', 1), ('dose', 1), ('security', 1), ('protect', 1), ('digital', 1), ('asset', 1), ('unwanted', 1), ('intruder', 1), ('managerial', 1), ('guide', 1), ('practical', 1), ('technical', 1), ('tutorial', 1), ('securing', 1), ('window', 1), ('nt', 1)]
[('security', 3), ('statistical', 2), ('computer', 2), ('method', 1), ('summarizes', 1), ('discussion', 1), ('held', 1), ('recent', 1), ('joint', 1), ('meeting', 1), ('provide', 1), ('clear', 1), ('layout', 1), ('current', 1), ('application', 1), ('field', 1), ('blue', 1), ('ribbon', 1), ('reference', 1), ('discus', 1), ('influential', 1), ('advancement', 1), ('policy', 1), ('firewall', 1), ('issue', 1), ('related', 1), ('password', 1), ('address', 1), ('crime', 1)]
[('software', 5), ('business', 2), ('strategic', 2), ('engineering', 2), ('interdisciplinary', 2), ('pervasiveness', 1), ('make', 1), ('crucial', 1), ('engineer', 1), ('developer', 1), ('understand', 1), ('development', 1), ('impact', 1), ('entire', 1), ('organization', 1), ('approach', 1), ('present', 1), ('oriented', 1), ('endeavor', 1), ('rather', 1), ('simply', 1), ('technica', 1)]
[('performance', 2), ('computer', 2), ('throughout', 1), ('successive', 1), ('generation', 1), ('information', 1), ('technology', 1), ('importance', 1), ('evaluation', 1), ('software', 1), ('architecture', 1), ('network', 1), ('endures', 1), ('example', 1), ('issue', 1), ('transaction', 1), ('processing', 1), ('system', 1), ('redundant', 1), ('array', 1), ('independent', 1), ('disk', 1), ('replace', 1), ('virtual', 1), ('memory', 1), ('input', 1), ('output', 1), ('problem', 1)]
[('server', 2), ('scalable', 1), ('secure', 1), ('internet', 1), ('service', 1), ('architecture', 1), ('provides', 1), ('depth', 1), ('analysis', 1), ('many', 1), ('key', 1), ('scaling', 1), ('technology', 1), ('topic', 1), ('include', 1), ('cluster', 1), ('load', 1), ('balancing', 1), ('qos', 1), ('aware', 1), ('resource', 1), ('management', 1), ('capacity', 1), ('planning', 1), ('web', 1), ('caching', 1), ('prefetching', 1), ('overlay', 1), ('network', 1), ('mobile', 1), ('code', 1), ('security', 1), ('mobility', 1), ('support', 1), ('adaptive', 1), ('grid', 1), ('computi', 1)]
[('code', 3), ('solve', 2), ('equation', 2), ('using', 2), ('algorithm', 2), ('assured', 1), ('computer', 1), ('differential', 1), ('correct', 1), ('standard', 1), ('practice', 1), ('benchmark', 1), ('testing', 1), ('longer', 1), ('provides', 1), ('full', 1), ('coverage', 1), ('today', 1), ('production', 1), ('complex', 1), ('powerful', 1), ('verifying', 1), ('order', 1), ('accuracy', 1), ('numerical', 1), ('implemented', 1)]
[('increase', 2), ('skyrocketing', 1), ('cost', 1), ('due', 1), ('elderly', 1), ('population', 1), ('rapid', 1), ('lifestyle', 1), ('related', 1), ('chronic', 1), ('disease', 1), ('demand', 1), ('new', 1), ('medical', 1), ('treatment', 1), ('technology', 1), ('shortage', 1), ('number', 1), ('available', 1), ('clinician', 1), ('nurse', 1), ('caregiver', 1), ('challenge', 1), ('facing', 1), ('healthcare', 1), ('industry', 1), ('seem', 1), ('insurmountable', 1), ('tra', 1)]
[('wireless', 3), ('network', 2), ('hop', 2), ('organized', 1), ('three', 1), ('part', 1), ('resource', 1), ('mobility', 1), ('security', 1), ('management', 1), ('mobile', 1), ('communication', 1), ('examines', 1), ('inherent', 1), ('constraint', 1), ('limited', 1), ('bandwidth', 1), ('unreliable', 1), ('time', 1), ('varying', 1), ('physical', 1), ('link', 1), ('system', 1), ('discus', 1), ('demand', 1), ('realize', 1), ('service', 1), ('continuity', 1), ('single', 1), ('multi', 1), ('ex', 1)]
[('network', 2), ('new', 2), ('conventional', 1), ('passive', 1), ('basic', 1), ('traffic', 1), ('monitoring', 1), ('management', 1), ('routing', 1), ('congestion', 1), ('control', 1), ('best', 1), ('called', 1), ('reactive', 1), ('deploying', 1), ('function', 1), ('integrating', 1), ('standard', 1), ('architecture', 1), ('difficult', 1), ('due', 1), ('rigid', 1), ('embedding', 1), ('software', 1), ('hardware', 1), ('component', 1), ('active', 1), ('program', 1)]
[('core', 4), ('unit', 4), ('higher', 2), ('national', 2), ('computing', 2), ('new', 1), ('edition', 1), ('extremely', 1), ('successful', 1), ('course', 1), ('book', 1), ('updated', 1), ('specifically', 1), ('cover', 1), ('compulsory', 1), ('btec', 1), ('scheme', 1), ('full', 1), ('coverage', 1), ('given', 1), ('four', 1), ('hnc', 1), ('additional', 1), ('required', 1), ('hnd', 1), ('specialist', 1), ('quality', 1), ('system', 1)]
[('network', 3), ('sensor', 2), ('aspect', 2), ('security', 2), ('differ', 1), ('traditional', 1), ('many', 1), ('including', 1), ('limited', 1), ('energy', 1), ('memory', 1), ('space', 1), ('computational', 1), ('capability', 1), ('differentiator', 1), ('create', 1), ('unique', 1), ('vulnerability', 1), ('cover', 1), ('subject', 1), ('serving', 1), ('invaluable', 1), ('reference', 1), ('researcher', 1), ('educator', 1), ('practition', 1)]
[('internet', 6), ('executable', 2), ('new', 2), ('brings', 1), ('power', 1), ('sophistication', 1), ('delivering', 1), ('service', 1), ('capability', 1), ('user', 1), ('extended', 1), ('fundamentally', 1), ('alters', 1), ('desktop', 1), ('landscape', 1), ('blurring', 1), ('distinction', 1), ('online', 1), ('resulting', 1), ('era', 1), ('information', 1), ('technology', 1)]
[('internet', 3), ('end', 2), ('metaheuristics', 1), ('widely', 1), ('used', 1), ('solve', 1), ('important', 1), ('practical', 1), ('combinatorial', 1), ('optimization', 1), ('problem', 1), ('many', 1), ('new', 1), ('multicast', 1), ('application', 1), ('emerging', 1), ('tv', 1), ('radio', 1), ('multipoint', 1), ('video', 1), ('streaming', 1), ('require', 1), ('reduced', 1), ('bandwidth', 1), ('consumption', 1), ('delay', 1), ('packet', 1), ('loss', 1), ('ratio', 1), ('necessary', 1), ('design', 1)]
[('service', 5), ('network', 3), ('architecture', 2), ('oriented', 1), ('soa', 1), ('us', 1), ('baseline', 1), ('developing', 1), ('new', 1), ('application', 1), ('built', 1), ('specifically', 1), ('satisfy', 1), ('requirement', 1), ('currently', 1), ('handled', 1), ('different', 1), ('newer', 1), ('soon', 1), ('require', 1), ('cross', 1), ('support', 1), ('architecting', 1), ('telecommunication', 1), ('evolution', 1)]
[('choose', 2), ('right', 2), ('programmable', 2), ('logic', 2), ('device', 2), ('development', 1), ('tool', 1), ('understand', 1), ('design', 1), ('verification', 1), ('testing', 1), ('issue', 1), ('plan', 1), ('schedule', 1), ('allocate', 1), ('resource', 1), ('efficiently', 1), ('guide', 1), ('technolog', 1)]
[('microsoft', 3), ('partnering', 2), ('advance', 1), ('praise', 1), ('first', 1), ('book', 1), ('breathtaking', 1), ('culture', 1), ('opportunity', 1), ('roadmap', 1), ('joining', 1), ('partner', 1), ('cutting', 1), ('impressive', 1), ('swath', 1), ('marketpl', 1)]
[('real', 2), ('time', 2), ('embedded', 2), ('system', 2), ('essential', 1), ('life', 1), ('controlling', 1), ('car', 1), ('engine', 1), ('regulating', 1), ('traffic', 1), ('light', 1), ('monitoring', 1), ('plane', 1), ('takeoff', 1), ('landing', 1), ('providing', 1), ('minute', 1), ('stock', 1), ('quote', 1), ('bringing', 1), ('together', 1), ('researcher', 1), ('academia', 1), ('industry', 1), ('handbook', 1), ('provides', 1), ('comprehensive', 1), ('covera', 1)]
[('using', 2), ('purchase', 1), ('expensive', 1), ('add', 1), ('card', 1), ('bus', 1), ('interface', 1), ('develop', 1), ('effective', 1), ('economical', 1), ('data', 1), ('acquisition', 1), ('process', 1), ('control', 1), ('program', 1), ('employed', 1), ('printer', 1), ('adapter', 1), ('parallel', 1), ('port', 1), ('pc', 1), ('turn', 1), ('computer', 1), ('powerful', 1), ('tool', 1), ('developing', 1), ('microprocessor', 1), ('application', 1), ('learn', 1), ('build', 1)]
[('test', 3), ('exam', 2), ('prep', 2), ('book', 2), ('written', 1), ('team', 1), ('subject', 1), ('matter', 1), ('expert', 1), ('many', 1), ('cissp', 1), ('course', 1), ('instructor', 1), ('primarily', 1), ('study', 1), ('guide', 1), ('goal', 1), ('help', 1), ('pas', 1), ('discus', 1), ('successful', 1), ('approach', 1), ('provides', 1), ('sample', 1), ('question', 1), ('taking', 1), ('tip', 1), ('contains', 1), ('annotated', 1), ('bibliography', 1), ('section', 1)]
[('voice', 2), ('system', 2), ('ip', 2), ('based', 2), ('network', 2), ('switched', 2), ('publication', 1), ('first', 1), ('edition', 1), ('cti', 1), ('world', 1), ('changed', 1), ('significantly', 1), ('focused', 1), ('integration', 1), ('computer', 1), ('focus', 1), ('converged', 1), ('service', 1), ('today', 1), ('telco', 1), ('upgrading', 1), ('circuit', 1), ('packet', 1), ('company', 1)]
[('communication', 4), ('mobile', 2), ('distributed', 2), ('antenna', 2), ('system', 2), ('rapid', 1), ('growth', 1), ('led', 1), ('increasing', 1), ('demand', 1), ('wideband', 1), ('high', 1), ('data', 1), ('rate', 1), ('service', 1), ('recent', 1), ('year', 1), ('da', 1), ('emerged', 1), ('promising', 1), ('candidate', 1), ('beyond', 1), ('open', 1), ('architecture', 1), ('future', 1), ('wireless', 1)]
[('use', 3), ('common', 2), ('criterion', 2), ('product', 2), ('acquisition', 2), ('many', 1), ('organization', 1), ('government', 1), ('agency', 1), ('require', 1), ('certified', 1), ('system', 1), ('methodology', 1), ('process', 1), ('fact', 1), ('july', 1), ('national', 1), ('information', 1), ('assurance', 1), ('policy', 1), ('nstissp', 1), ('mandated', 1), ('cc', 1), ('evaluated', 1), ('security', 1), ('critical', 1), ('infrastruc', 1)]
[('application', 3), ('xml', 3), ('flash', 2), ('add', 1), ('seamless', 1), ('interactive', 1), ('user', 1), ('controlled', 1), ('delivery', 1), ('book', 1), ('build', 1), ('upon', 1), ('understanding', 1), ('basic', 1), ('actionscript', 1), ('syntax', 1), ('foundational', 1), ('skill', 1), ('need', 1), ('use', 1), ('migrate', 1), ('existing', 1), ('beginning', 1), ('introduction', 1), ('parsing', 1), ('method', 1)]
[('network', 3), ('international', 2), ('effective', 1), ('management', 1), ('communication', 1), ('difficult', 1), ('costly', 1), ('activity', 1), ('even', 1), ('cross', 1), ('border', 1), ('manager', 1), ('face', 1), ('number', 1), ('issue', 1), ('crucial', 1), ('strategic', 1), ('decision', 1), ('making', 1), ('including', 1), ('varying', 1), ('telecommunication', 1), ('regulation', 1), ('operator', 1), ('service', 1), ('found', 1), ('within', 1)]
[('application', 2), ('software', 1), ('requirement', 1), ('engineering', 1), ('scientific', 1), ('almost', 1), ('always', 1), ('computational', 1), ('posse', 1), ('advanced', 1), ('mathematical', 1), ('component', 1), ('call', 1), ('calculating', 1), ('statistical', 1), ('function', 1), ('performs', 1), ('basic', 1), ('differentiation', 1), ('integration', 1), ('easily', 1), ('developed', 1), ('programming', 1), ('language', 1)]
[('computing', 3), ('parallel', 2), ('ability', 1), ('process', 1), ('large', 1), ('data', 1), ('set', 1), ('handle', 1), ('time', 1), ('consuming', 1), ('operation', 1), ('resulted', 1), ('unprecedented', 1), ('advance', 1), ('biological', 1), ('scientific', 1), ('modeling', 1), ('simulation', 1), ('exploring', 1), ('recent', 1), ('development', 1), ('handbook', 1), ('model', 1), ('algorithm', 1), ('application', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1)]
[('expert', 3), ('system', 3), ('research', 2), ('scientific', 2), ('allow', 1), ('scientist', 1), ('access', 1), ('manage', 1), ('apply', 1), ('data', 1), ('specialized', 1), ('knowledge', 1), ('various', 1), ('discipline', 1), ('chemistry', 1), ('explains', 1), ('general', 1), ('basis', 1), ('computational', 1), ('principle', 1), ('behind', 1), ('demonstrates', 1), ('improve', 1), ('efficiency', 1), ('workflow', 1)]
[('web', 2), ('data', 2), ('semantic', 1), ('promise', 1), ('revolutionize', 1), ('way', 1), ('computer', 1), ('find', 1), ('integrate', 1), ('internet', 1), ('allow', 1), ('agent', 1), ('share', 1), ('reuse', 1), ('across', 1), ('application', 1), ('enterprise', 1), ('community', 1), ('boundary', 1), ('improved', 1), ('accessibility', 1), ('pose', 1), ('greater', 1), ('threat', 1), ('unauthorized', 1), ('access', 1), ('lead', 1), ('malicious', 1), ('corruption', 1), ('informa', 1)]
[('product', 3), ('cisco', 2), ('network', 2), ('high', 1), ('speed', 1), ('planning', 1), ('design', 1), ('implementation', 1), ('cover', 1), ('lan', 1), ('wan', 1), ('technology', 1), ('benefit', 1), ('book', 1), ('lay', 1), ('complete', 1), ('line', 1), ('describes', 1), ('feature', 1), ('best', 1), ('application', 1), ('provides', 1), ('critical', 1), ('detail', 1), ('router', 1), ('server', 1), ('switch', 1), ('hub', 1), ('security', 1), ('management', 1), ('tool', 1), ('atm', 1)]
[('multimedia', 3), ('wireless', 2), ('network', 2), ('service', 1), ('provisioning', 1), ('believed', 1), ('prerequisite', 1), ('guarantee', 1), ('success', 1), ('next', 1), ('generation', 1), ('examining', 1), ('role', 1), ('state', 1), ('art', 1), ('system', 1), ('broadband', 1), ('mobile', 1), ('technique', 1), ('application', 1), ('present', 1), ('collection', 1), ('introductory', 1), ('concept', 1), ('fundamental', 1), ('tech', 1)]
[('warehouse', 3), ('data', 2), ('building', 1), ('house', 1), ('work', 1), ('necessary', 1), ('build', 1), ('neither', 1), ('visible', 1), ('obvious', 1), ('looking', 1), ('completed', 1), ('product', 1), ('easy', 1), ('plan', 1), ('incorporates', 1), ('right', 1), ('concept', 1), ('taking', 1), ('step', 1), ('needed', 1), ('create', 1), ('functional', 1), ('user', 1), ('friendly', 1), ('theoreti', 1)]
[('data', 2), ('carrier', 2), ('ethernet', 2), ('network', 2), ('facilitating', 1), ('high', 1), ('transfer', 1), ('long', 1), ('distance', 1), ('reasonable', 1), ('cost', 1), ('solidifying', 1), ('fundamental', 1), ('position', 1), ('core', 1), ('next', 1), ('generation', 1), ('first', 1), ('dazzled', 1), ('world', 1), ('year', 1), ('ago', 1), ('ability', 1), ('move', 1), ('local', 1), ('dramatically', 1), ('evolved', 1), ('form', 1), ('function', 1)]
[('computer', 3), ('aided', 3), ('competitive', 2), ('business', 1), ('arena', 1), ('company', 1), ('continually', 1), ('strive', 1), ('create', 1), ('new', 1), ('better', 1), ('product', 1), ('faster', 1), ('efficiently', 1), ('cost', 1), ('effectively', 1), ('competitor', 1), ('gain', 1), ('keep', 1), ('advantage', 1), ('design', 1), ('cad', 1), ('engineering', 1), ('cae', 1), ('manufacturing', 1), ('cam', 1), ('industry', 1), ('standa', 1)]
[('network', 3), ('interconnection', 2), ('graph', 2), ('theory', 2), ('provides', 2), ('advancement', 1), ('large', 1), ('scale', 1), ('integrated', 1), ('circuit', 1), ('technology', 1), ('enabled', 1), ('construction', 1), ('complex', 1), ('fundamental', 1), ('tool', 1), ('designing', 1), ('analyzing', 1), ('thorough', 1), ('understanding', 1), ('interrelated', 1), ('topic', 1), ('brief', 1), ('introduction', 1), ('gra', 1)]
[('use', 2), ('data', 2), ('widespread', 1), ('image', 1), ('audio', 1), ('video', 1), ('make', 1), ('medium', 1), ('content', 1), ('protection', 1), ('increasingly', 1), ('necessary', 1), ('urgent', 1), ('maximum', 1), ('safety', 1), ('longer', 1), ('sufficient', 1), ('merely', 1), ('control', 1), ('access', 1), ('right', 1), ('order', 1), ('fully', 1), ('protect', 1), ('multimedia', 1), ('piracy', 1), ('unauthorized', 1), ('secured', 1), ('encryption', 1), ('prior', 1), ('transmission', 1), ('distributio', 1)]
[('data', 3), ('bioinformatics', 2), ('biological', 2), ('computational', 1), ('method', 1), ('used', 1), ('process', 1), ('large', 1), ('volume', 1), ('current', 1), ('promoting', 1), ('understanding', 1), ('underlying', 1), ('biology', 1), ('produce', 1), ('pattern', 1), ('discovery', 1), ('theory', 1), ('algorithm', 1), ('provides', 1), ('tool', 1), ('study', 1), ('regularity', 1), ('taking', 1), ('systema', 1)]
[('performance', 2), ('computer', 2), ('network', 2), ('analysis', 1), ('queuing', 1), ('develops', 1), ('simple', 1), ('model', 1), ('analytical', 1), ('method', 1), ('first', 1), ('principle', 1), ('evaluate', 1), ('metric', 1), ('various', 1), ('configuration', 1), ('system', 1), ('present', 1), ('many', 1), ('concept', 1), ('result', 1), ('probability', 1), ('theory', 1), ('stochastic', 1), ('process', 1), ('introduction', 1), ('queue', 1), ('compu', 1)]
[('dynamic', 4), ('geographic', 2), ('domain', 2), ('although', 1), ('aspect', 1), ('world', 1), ('widely', 1), ('recognized', 1), ('information', 1), ('system', 1), ('lagged', 1), ('ability', 1), ('represent', 1), ('provide', 1), ('support', 1), ('user', 1), ('analyst', 1), ('especially', 1), ('work', 1), ('collection', 1), ('peer', 1), ('reviewed', 1), ('article', 1), ('understanding', 1), ('showcase', 1), ('new', 1), ('research', 1)]
[('unlicensed', 3), ('mobile', 3), ('access', 3), ('technology', 2), ('goal', 1), ('uma', 1), ('provide', 1), ('seamless', 1), ('gsm', 1), ('gprs', 1), ('service', 1), ('network', 1), ('via', 1), ('spectrum', 1), ('including', 1), ('bluetooth', 1), ('wimax', 1), ('wi', 1), ('fi', 1), ('expanding', 1), ('level', 1), ('knowledge', 1), ('growing', 1), ('field', 1), ('protocol', 1), ('architecture', 1), ('security', 1), ('standard', 1), ('application', 1)]
[('wireless', 3), ('network', 2), ('quality', 2), ('service', 2), ('qos', 2), ('focusing', 1), ('important', 1), ('complicated', 1), ('topic', 1), ('design', 1), ('technique', 1), ('standard', 1), ('application', 1), ('systematically', 1), ('address', 1), ('issue', 1), ('found', 1), ('many', 1), ('type', 1), ('popular', 1), ('chapter', 1), ('book', 1), ('present', 1), ('numerous', 1), ('challenge', 1), ('encountered', 1), ('real', 1), ('world', 1)]
[('game', 5), ('industry', 2), ('including', 2), ('cinematography', 1), ('cover', 1), ('space', 1), ('film', 1), ('pointing', 1), ('relevant', 1), ('cinematic', 1), ('technique', 1), ('today', 1), ('hottest', 1), ('interview', 1), ('greatest', 1), ('luminary', 1), ('wright', 1), ('sims', 1), ('legend', 1), ('harvey', 1), ('smith', 1), ('legendary', 1), ('deus', 1), ('ex', 1), ('warren', 1), ('spector', 1), ('creator', 1)]
[('design', 4), ('process', 4), ('human', 2), ('system', 2), ('behavioral', 2), ('factor', 1), ('development', 1), ('testing', 1), ('describes', 1), ('engineering', 1), ('raise', 1), ('question', 1), ('designer', 1), ('answer', 1), ('focus', 1), ('concept', 1), ('underlying', 1), ('culminating', 1), ('theory', 1), ('special', 1), ('effort', 1), ('made', 1), ('depict', 1), ('facto', 1)]
[('grid', 4), ('technology', 2), ('service', 2), ('management', 2), ('offer', 1), ('potential', 1), ('providing', 1), ('secure', 1), ('access', 1), ('remote', 1), ('thereby', 1), ('promoting', 1), ('scientific', 1), ('collaboration', 1), ('unprecedented', 1), ('scale', 1), ('resource', 1), ('toward', 1), ('virtual', 1), ('compliant', 1), ('computing', 1), ('present', 1), ('comprehensive', 1), ('account', 1), ('architectural', 1), ('issue', 1), ('security', 1), ('data', 1)]
[('graph', 6), ('theory', 4), ('coloring', 3), ('topic', 2), ('beginning', 1), ('origin', 1), ('four', 1), ('color', 1), ('problem', 1), ('field', 1), ('developed', 1), ('popular', 1), ('area', 1), ('introducing', 1), ('theme', 1), ('chromatic', 1), ('explores', 1), ('connection', 1), ('major', 1), ('emerging', 1), ('self', 1), ('contain', 1)]
[('design', 5), ('physical', 2), ('flow', 2), ('technology', 2), ('change', 2), ('project', 1), ('depends', 1), ('upon', 1), ('size', 1), ('number', 1), ('designer', 1), ('clock', 1), ('frequency', 1), ('time', 1), ('advance', 1), ('style', 1), ('constantly', 1), ('reinvented', 1), ('traditional', 1), ('phase', 1), ('removed', 1), ('new', 1), ('one', 1), ('added', 1), ('accommodate', 1)]
[('data', 3), ('mining', 3), ('next', 2), ('generation', 2), ('drawn', 1), ('national', 1), ('science', 1), ('foundation', 1), ('symposium', 1), ('cyber', 1), ('enabled', 1), ('discovery', 1), ('innovation', 1), ('ngdm', 1), ('explores', 1), ('emerging', 1), ('technology', 1), ('application', 1), ('potential', 1), ('challenge', 1), ('faced', 1), ('field', 1), ('gathering', 1), ('perspective', 1), ('top', 1), ('expert', 1), ('across', 1), ('different', 1), ('di', 1)]
[('spectrum', 2), ('user', 2), ('fueled', 1), ('ongoing', 1), ('increasing', 1), ('consumer', 1), ('demand', 1), ('explosive', 1), ('growth', 1), ('based', 1), ('communication', 1), ('continues', 1), ('tax', 1), ('finite', 1), ('resource', 1), ('available', 1), ('possible', 1), ('solution', 1), ('cognitive', 1), ('radio', 1), ('network', 1), ('crn', 1), ('allows', 1), ('unlicensed', 1), ('opportunistic', 1), ('access', 1), ('licensed', 1), ('band', 1), ('without', 1), ('interfering', 1), ('existing', 1), ('although', 1), ('initial', 1)]
[('content', 4), ('emergence', 2), ('end', 2), ('context', 1), ('aware', 1), ('search', 1), ('engine', 1), ('personalize', 1), ('searching', 1), ('delivery', 1), ('caused', 1), ('new', 1), ('infrastructure', 1), ('capable', 1), ('ubiquitous', 1), ('transmission', 1), ('personalized', 1), ('multimedia', 1), ('device', 1), ('network', 1), ('time', 1), ('personalizing', 1), ('adapting', 1), ('requires', 1), ('pro', 1)]
[('vehicular', 3), ('network', 2), ('spite', 1), ('importance', 1), ('potential', 1), ('societal', 1), ('impact', 1), ('currently', 1), ('comprehensive', 1), ('source', 1), ('information', 1), ('ad', 1), ('hoc', 1), ('vanets', 1), ('cohesively', 1), ('integrating', 1), ('state', 1), ('art', 1), ('emerging', 1), ('field', 1), ('theory', 1), ('practice', 1), ('elucidates', 1), ('many', 1), ('issue', 1), ('involved', 1), ('networking', 1), ('including', 1), ('traffic', 1), ('eng', 1)]
[('pattern', 3), ('classic', 2), ('book', 1), ('yes', 1), ('software', 1), ('reuse', 1), ('representation', 1), ('knowledge', 1), ('reapplied', 1), ('similar', 1), ('situation', 1), ('follow', 1), ('alexandine', 1), ('convention', 1), ('community', 1), ('problem', 1), ('solution', 1), ('force', 1), ('context', 1), ('example', 1), ('etc', 1), ('chapter', 1), ('claim', 1), ('come', 1), ('close', 1)]
[('satellite', 2), ('communication', 2), ('capitalize', 1), ('expert', 1), ('foresight', 1), ('future', 1), ('technology', 1), ('maintain', 1), ('key', 1), ('role', 1), ('evolving', 1), ('need', 1), ('government', 1), ('military', 1), ('iptv', 1), ('mobile', 1), ('video', 1), ('industry', 1), ('intrinsic', 1), ('multicast', 1), ('broadcast', 1), ('capability', 1), ('mobility', 1), ('aspect', 1), ('global', 1), ('reach', 1), ('reliability', 1), ('ability', 1), ('quickly', 1), ('suppo', 1)]
[('medical', 3), ('technique', 2), ('imaging', 2), ('ci', 1), ('algorithm', 1), ('variety', 1), ('situationsdocuments', 1), ('recent', 1), ('advance', 1), ('stimulates', 1), ('researcha', 1), ('compilation', 1), ('latest', 1), ('trend', 1), ('field', 1), ('computational', 1), ('intelligence', 1), ('application', 1), ('explores', 1), ('intelligent', 1), ('computing', 1), ('bring', 1), ('enormous', 1), ('benefit', 1), ('existing', 1), ('technology', 1)]
[('network', 2), ('cooperative', 1), ('device', 1), ('mechanism', 1), ('increasingly', 1), ('important', 1), ('enhance', 1), ('performance', 1), ('wireless', 1), ('communication', 1), ('ability', 1), ('decrease', 1), ('power', 1), ('consumption', 1), ('packet', 1), ('loss', 1), ('rate', 1), ('increase', 1), ('system', 1), ('capacity', 1), ('computation', 1), ('resilience', 1), ('considering', 1), ('wide', 1), ('range', 1), ('application', 1), ('strategy', 1), ('benefit', 1), ('associated', 1), ('wit', 1)]
[('microcontrollers', 3), ('application', 2), ('fundamental', 2), ('exist', 1), ('wide', 1), ('variety', 1), ('model', 1), ('varying', 1), ('structure', 1), ('numerous', 1), ('opportunity', 1), ('despite', 1), ('diversity', 1), ('possible', 1), ('find', 1), ('consistency', 1), ('architecture', 1), ('pic', 1), ('focus', 1), ('common', 1), ('element', 1), ('describe', 1)]
[('btec', 3), ('national', 3), ('business', 3), ('unit', 2), ('pathway', 2), ('specification', 2), ('practitioner', 1), ('written', 1), ('specifically', 1), ('cover', 1), ('book', 1), ('caters', 1), ('popular', 1), ('bringing', 1), ('together', 1), ('key', 1), ('specialist', 1), ('student', 1), ('chosen', 1), ('route', 1)]
[('growing', 2), ('higher', 2), ('data', 2), ('mobile', 2), ('outstanding', 1), ('success', 1), ('demand', 1), ('rate', 1), ('quality', 1), ('communication', 1), ('service', 1), ('continues', 1), ('fuel', 1), ('conflict', 1), ('rapidly', 1), ('number', 1), ('user', 1), ('limited', 1), ('bandwidth', 1), ('resource', 1), ('future', 1), ('fold', 1), ('increase', 1), ('traffic', 1), ('expected', 1), ('necessitate', 1), ('improvem', 1)]
[('tony', 2), ('white', 2), ('animation', 2), ('studio', 2), ('become', 1), ('personal', 1), ('student', 1), ('experience', 1), ('many', 1), ('teaching', 1), ('technique', 1), ('golden', 1), ('era', 1), ('disney', 1), ('warner', 1), ('brother', 1), ('beyond', 1), ('comfort', 1), ('home', 1), ('master', 1), ('class', 1), ('uniquely', 1), ('designed', 1), ('cover', 1), ('core', 1), ('principle', 1), ('animated', 1), ('movement', 1), ('comprehensively', 1), ('make', 1)]
[('national', 5), ('unit', 3), ('btec', 2), ('core', 2), ('practitioner', 1), ('written', 1), ('specifically', 1), ('cover', 1), ('compulsory', 1), ('selected', 1), ('specialist', 1), ('specification', 1), ('book', 1), ('provides', 1), ('coverage', 1), ('student', 1), ('following', 1), ('course', 1), ('within', 1), ('new', 1), ('scheme', 1), ('award', 1), ('certificate', 1), ('diploma', 1), ('used', 1)]
[('core', 3), ('unit', 3), ('higher', 2), ('national', 2), ('computing', 2), ('used', 1), ('alongside', 1), ('student', 1), ('text', 1), ('nd', 1), ('edition', 1), ('pack', 1), ('offer', 1), ('complete', 1), ('suite', 1), ('lecturer', 1), ('resource', 1), ('material', 1), ('photocopiable', 1), ('handout', 1), ('compulsory', 1), ('new', 1), ('btec', 1), ('including', 1), ('four', 1), ('hnc', 1), ('additional', 1), ('required', 1), ('hnd', 1)]
[('situation', 3), ('awareness', 2), ('book', 2), ('comprehensive', 1), ('overview', 1), ('different', 1), ('approach', 1), ('measurement', 1), ('experimental', 1), ('applied', 1), ('setting', 1), ('directly', 1), ('tackle', 1), ('problem', 1), ('ensuring', 1), ('system', 1), ('design', 1), ('training', 1), ('program', 1), ('effective', 1), ('promoting', 1), ('first', 1), ('provide', 1), ('inclusive', 1), ('coverage', 1)]
[('game', 3), ('dollar', 2), ('video', 2), ('team', 2), ('computer', 1), ('big', 1), ('business', 1), ('ten', 1), ('billion', 1), ('spent', 1), ('annually', 1), ('worldwide', 1), ('market', 1), ('cost', 1), ('producing', 1), ('ballooned', 1), ('beyond', 1), ('million', 1), ('many', 1), ('case', 1), ('size', 1), ('quickly', 1), ('growing', 1), ('past', 1), ('member', 1), ('center', 1), ('storm', 1), ('producer', 1), ('person', 1), ('transforms', 1)]
[('unprecedented', 1), ('amount', 1), ('data', 1), ('produced', 1), ('high', 1), ('throughput', 1), ('experimentation', 1), ('force', 1), ('biologist', 1), ('employ', 1), ('mathematical', 1), ('representation', 1), ('computation', 1), ('glean', 1), ('meaningful', 1), ('information', 1), ('system', 1), ('level', 1), ('biology', 1), ('applying', 1), ('approach', 1), ('underlying', 1), ('molecular', 1), ('mechanism', 1), ('tumorgenesis', 1), ('cancer', 1), ('research', 1), ('enjoying', 1), ('series', 1), ('new', 1), ('discovery', 1)]
[('animation', 4), ('traditional', 3), ('artist', 1), ('imagination', 1), ('continue', 1), ('grow', 1), ('stretch', 1), ('boundary', 1), ('successful', 1), ('animator', 1), ('adept', 1), ('highly', 1), ('skilled', 1), ('medium', 1), ('branching', 1), ('beyond', 1), ('workflow', 1), ('often', 1), ('use', 1), ('multiple', 1), ('form', 1), ('single', 1), ('project', 1), ('knowledge', 1), ('asset', 1)]
[('system', 4), ('mega', 2), ('challenge', 2), ('ability', 1), ('cross', 1), ('traditional', 1), ('boundary', 1), ('achieve', 1), ('level', 1), ('functionality', 1), ('greater', 1), ('component', 1), ('element', 1), ('helped', 1), ('corporation', 1), ('government', 1), ('organization', 1), ('around', 1), ('world', 1), ('resolve', 1), ('complex', 1), ('address', 1), ('stand', 1), ('alone', 1), ('engineering', 1)]
[('cloud', 3), ('whether', 2), ('computing', 2), ('software', 2), ('service', 2), ('already', 1), ('determining', 1), ('make', 1), ('sense', 1), ('organization', 1), ('theory', 1), ('technique', 1), ('provides', 1), ('technical', 1), ('understanding', 1), ('needed', 1), ('develop', 1), ('maintain', 1), ('state', 1), ('art', 1), ('basic', 1), ('concept', 1), ('recent', 1), ('research', 1), ('finding', 1), ('fut', 1)]
[('algorithm', 3), ('chemoinformatics', 3), ('unlike', 1), ('related', 1), ('area', 1), ('bioinformatics', 1), ('book', 1), ('currently', 1), ('exist', 1), ('document', 1), ('technique', 1), ('tool', 1), ('bringing', 1), ('together', 1), ('worldwide', 1), ('expert', 1), ('field', 1), ('handbook', 1), ('provides', 1), ('overview', 1), ('common', 1), ('single', 1), ('source', 1), ('historical', 1), ('persp', 1)]
[('game', 6), ('development', 3), ('team', 2), ('distributed', 2), ('take', 1), ('control', 1), ('global', 1), ('make', 1), ('successful', 1), ('aa', 1), ('title', 1), ('using', 1), ('model', 1), ('industry', 1), ('veteran', 1), ('tim', 1), ('field', 1), ('teach', 1), ('evaluate', 1), ('deal', 1), ('staff', 1), ('highly', 1), ('maintain', 1), ('challenging', 1), ('relationship', 1), ('order', 1), ('market', 1)]
[('game', 3), ('artist', 3), ('chapter', 2), ('art', 2), ('compilation', 1), ('key', 1), ('top', 1), ('focal', 1), ('book', 1), ('available', 1), ('today', 1), ('area', 1), ('max', 1), ('maya', 1), ('photoshop', 1), ('zbrush', 1), ('provide', 1), ('cg', 1), ('excellent', 1), ('sampling', 1), ('essential', 1), ('technique', 1), ('every', 1), ('need', 1), ('create', 1), ('stunning', 1), ('able', 1), ('master', 1), ('modeling', 1), ('rendering', 1), ('rigging', 1)]
[('photography', 2), ('computer', 2), ('computational', 1), ('refers', 1), ('broadly', 1), ('imaging', 1), ('technique', 1), ('enhance', 1), ('extend', 1), ('capability', 1), ('digital', 1), ('new', 1), ('rapidly', 1), ('developing', 1), ('research', 1), ('field', 1), ('evolved', 1), ('vision', 1), ('image', 1), ('processing', 1), ('graphic', 1), ('applied', 1), ('optic', 1), ('numerous', 1), ('commercial', 1), ('product', 1), ('capitalizing', 1), ('principle', 1), ('already', 1)]
[('design', 2), ('master', 1), ('fundamental', 1), ('concept', 1), ('technique', 1), ('motion', 1), ('medium', 1), ('apply', 1), ('occasionally', 1), ('break', 1), ('rule', 1), ('achieve', 1), ('communication', 1), ('goal', 1), ('authoritative', 1), ('guide', 1), ('present', 1), ('essential', 1), ('engaging', 1), ('inspiring', 1), ('way', 1), ('principle', 1), ('explained', 1), ('text', 1), ('illustration', 1), ('photography', 1), ('necessary', 1)]
[('flash', 2), ('ad', 2), ('create', 1), ('awe', 1), ('inspiring', 1), ('mind', 1), ('blowing', 1), ('microsites', 1), ('advergames', 1), ('branded', 1), ('application', 1), ('engage', 1), ('consumer', 1), ('demonstrate', 1), ('worth', 1), ('client', 1), ('creating', 1), ('advertising', 1), ('delivers', 1), ('nut', 1), ('bolt', 1), ('development', 1), ('process', 1), ('initial', 1), ('design', 1), ('conception', 1), ('completion', 1), ('learn', 1), ('best', 1), ('practice', 1), ('mastering', 1), ('myriad', 1)]
[('flash', 3), ('effect', 2), ('toolset', 2), ('designer', 1), ('push', 1), ('next', 1), ('level', 1), ('robust', 1), ('c', 1), ('delivers', 1), ('complete', 1), ('integration', 1), ('powerhouse', 1), ('application', 1), ('expand', 1), ('multimedia', 1), ('horizon', 1), ('give', 1), ('working', 1), ('understanding', 1), ('ae', 1), ('professional', 1), ('technique', 1), ('raise', 1), ('design', 1), ('bar', 1), ('web', 1), ('hd', 1)]
[('safety', 2), ('system', 2), ('environment', 2), ('critical', 1), ('definition', 1), ('whose', 1), ('failure', 1), ('cause', 1), ('catastrophic', 1), ('result', 1), ('economy', 1), ('becoming', 1), ('increasingly', 1), ('complex', 1), ('functionality', 1), ('interaction', 1), ('unfortunately', 1), ('assessment', 1), ('still', 1), ('largely', 1), ('done', 1), ('manually', 1), ('time', 1), ('consuming', 1), ('error', 1), ('prone', 1)]
[('dimension', 2), ('geoinformation', 2), ('many', 1), ('challenge', 1), ('next', 1), ('century', 1), ('physical', 1), ('tsunami', 1), ('hurricane', 1), ('climate', 1), ('change', 1), ('human', 1), ('economic', 1), ('crisis', 1), ('epidemic', 1), ('emergency', 1), ('response', 1), ('pioneering', 1), ('editor', 1), ('expert', 1), ('contributor', 1), ('advanced', 1), ('science', 1), ('explores', 1), ('certain', 1), ('technical', 1), ('aspect', 1)]
[('isc', 2), ('security', 2), ('practitioner', 2), ('sscp', 2), ('certification', 2), ('system', 1), ('certified', 1), ('important', 1), ('credential', 1), ('information', 1), ('helped', 1), ('thousand', 1), ('around', 1), ('world', 1), ('obtain', 1), ('distinguished', 1), ('bestselling', 1), ('official', 1), ('guide', 1), ('cbk', 1), ('quickly', 1), ('become', 1), ('book', 1), ('many', 1)]
[('socio', 3), ('technical', 3), ('network', 3), ('need', 2), ('design', 2), ('engineering', 2), ('sporadic', 1), ('journal', 1), ('article', 1), ('long', 1), ('integrated', 1), ('resource', 1), ('address', 1), ('concrete', 1), ('stn', 1), ('issue', 1), ('algorithmic', 1), ('perspective', 1), ('filling', 1), ('science', 1), ('provides', 1), ('complete', 1), ('introduction', 1)]
[('application', 3), ('field', 2), ('programmable', 2), ('gate', 2), ('array', 2), ('focusing', 1), ('resource', 1), ('awareness', 1), ('fpga', 1), ('design', 1), ('scientific', 1), ('research', 1), ('cover', 1), ('principle', 1), ('fpgas', 1), ('functionality', 1), ('explores', 1), ('host', 1), ('ranging', 1), ('small', 1), ('chip', 1), ('laboratory', 1), ('system', 1), ('large', 1), ('scale', 1), ('big', 1), ('science', 1), ('book', 1), ('first', 1), ('de', 1)]
[('agent', 3), ('multiple', 2), ('behavior', 2), ('synchronization', 2), ('control', 2), ('intelligent', 1), ('system', 1), ('commonly', 1), ('used', 1), ('research', 1), ('requiring', 1), ('complex', 1), ('provides', 1), ('advantage', 1), ('solving', 1), ('problem', 1), ('multi', 1), ('coordination', 1), ('book', 1), ('focus', 1), ('use', 1), ('coordinate', 1), ('group', 1), ('author', 1), ('includes', 1), ('numerous', 1), ('real', 1), ('world', 1), ('applicatio', 1)]
[('design', 4), ('system', 3), ('power', 2), ('net', 2), ('first', 1), ('book', 1), ('harness', 1), ('level', 1), ('technology', 1), ('constitutes', 1), ('software', 1), ('based', 1), ('approach', 1), ('modeling', 1), ('verification', 1), ('simulation', 1), ('world', 1), ('class', 1), ('developer', 1), ('forefront', 1), ('decade', 1), ('explain', 1), ('tap', 1), ('dynamic', 1), ('programming', 1)]
[('challenge', 2), ('expanding', 1), ('emerging', 1), ('market', 1), ('brings', 1), ('specific', 1), ('set', 1), ('designing', 1), ('product', 1), ('service', 1), ('cultural', 1), ('difference', 1), ('play', 1), ('role', 1), ('customer', 1), ('behave', 1), ('way', 1), ('existing', 1), ('technology', 1), ('distribution', 1), ('channel', 1), ('want', 1), ('need', 1), ('consumer', 1), ('become', 1), ('additional', 1), ('establishing', 1)]
[('percent', 3), ('seventy', 2), ('management', 2), ('billion', 2), ('system', 2), ('past', 1), ('decade', 1), ('business', 1), ('volume', 1), ('hardware', 1), ('software', 1), ('decreased', 1), ('cost', 1), ('support', 1), ('grown', 1), ('close', 1), ('growing', 1), ('figure', 1), ('spent', 1), ('legacy', 1), ('thirty', 1), ('new', 1), ('impro', 1)]
[('implementation', 2), ('easy', 1), ('use', 1), ('research', 1), ('tool', 1), ('algorithm', 1), ('testing', 1), ('developmentbefore', 1), ('seqan', 1), ('project', 1), ('clearly', 1), ('lack', 1), ('available', 1), ('sequence', 1), ('analysis', 1), ('even', 1), ('standard', 1), ('task', 1), ('needed', 1), ('algorithmic', 1), ('component', 1), ('either', 1), ('unavailable', 1), ('hard', 1), ('access', 1), ('third', 1), ('party', 1), ('monolithic', 1), ('software', 1), ('product', 1), ('addressing', 1), ('conc', 1)]
[('research', 2), ('combinatorics', 2), ('composition', 2), ('word', 2), ('pattern', 2), ('stop', 1), ('source', 1), ('known', 1), ('result', 1), ('bibliography', 1), ('paper', 1), ('subject', 1), ('novel', 1), ('direction', 1), ('focusing', 1), ('active', 1), ('area', 1), ('last', 1), ('decade', 1), ('provides', 1), ('introduction', 1), ('method', 1), ('used', 1), ('avoidance', 1), ('enumeration', 1)]
[('real', 2), ('detail', 1), ('world', 1), ('product', 1), ('applies', 1), ('cutting', 1), ('edge', 1), ('multi', 1), ('core', 1), ('architecture', 1), ('increasingly', 1), ('demanding', 1), ('modern', 1), ('application', 1), ('used', 1), ('telecommunication', 1), ('networking', 1), ('time', 1), ('processing', 1), ('audio', 1), ('video', 1), ('multimedia', 1), ('stream', 1), ('require', 1), ('multiple', 1), ('processor', 1), ('achieve', 1), ('computational', 1), ('performance', 1), ('rate', 1), ('giga', 1), ('operation', 1)]
[('energy', 5), ('efficient', 2), ('efficiency', 2), ('rapid', 1), ('estimation', 1), ('application', 1), ('using', 1), ('field', 1), ('programmable', 1), ('gate', 1), ('array', 1), ('fpgas', 1), ('remains', 1), ('challenging', 1), ('research', 1), ('topic', 1), ('dissipation', 1), ('prevented', 1), ('widespread', 1), ('use', 1), ('fpga', 1), ('device', 1), ('embedded', 1), ('system', 1), ('key', 1), ('performance', 1), ('metric', 1), ('helping', 1), ('overcome', 1), ('challenge', 1)]
[('set', 5), ('image', 4), ('analysis', 4), ('fuzzy', 3), ('rough', 3), ('near', 2), ('useful', 1), ('important', 1), ('stepping', 1), ('stone', 1), ('variety', 1), ('approach', 1), ('three', 1), ('type', 1), ('various', 1), ('hybridization', 1), ('provide', 1), ('powerful', 1), ('framework', 1), ('emphasizing', 1), ('utility', 1), ('foundation', 1)]
[('web', 4), ('service', 2), ('recent', 1), ('advance', 1), ('radio', 1), ('frequency', 1), ('identification', 1), ('rfid', 1), ('technology', 1), ('sensor', 1), ('network', 1), ('enhanced', 1), ('original', 1), ('world', 1), ('wide', 1), ('continuing', 1), ('evolution', 1), ('called', 1), ('thing', 1), ('support', 1), ('ultimately', 1), ('interactive', 1), ('environment', 1), ('everyday', 1), ('physical', 1), ('object', 1), ('building', 1), ('sidew', 1)]
[('design', 3), ('used', 1), ('together', 1), ('effectively', 1), ('computer', 1), ('aided', 1), ('cad', 1), ('geospatial', 1), ('information', 1), ('system', 1), ('gi', 1), ('solid', 1), ('track', 1), ('record', 1), ('streamlining', 1), ('decision', 1), ('making', 1), ('reducing', 1), ('inefficiency', 1), ('planning', 1), ('execution', 1), ('critical', 1), ('operation', 1), ('project', 1), ('growing', 1), ('number', 1), ('engineering', 1), ('task', 1), ('numerous', 1), ('field', 1), ('including', 1), ('archite', 1)]
[('emergency', 2), ('community', 2), ('history', 1), ('identified', 1), ('need', 1), ('improved', 1), ('coordination', 1), ('demonstrated', 1), ('volunteer', 1), ('positively', 1), ('impact', 1), ('neighborhood', 1), ('time', 1), ('crisis', 1), ('laying', 1), ('rationale', 1), ('process', 1), ('manager', 1), ('leader', 1), ('non', 1), ('governmental', 1), ('aid', 1), ('organization', 1), ('effectively', 1), ('collaborate', 1)]
[('animation', 3), ('blender', 2), ('expand', 1), ('toolkit', 1), ('foundational', 1), ('technique', 1), ('software', 1), ('expertise', 1), ('professional', 1), ('best', 1), ('practice', 1), ('proven', 1), ('time', 1), ('tested', 1), ('work', 1), ('flow', 1), ('roland', 1), ('hess', 1), ('leading', 1), ('artist', 1), ('instructor', 1), ('expertly', 1), ('navigates', 1), ('character', 1), ('system', 1), ('control', 1), ('focus', 1), ('classical', 1), ('principle', 1)]
[('physical', 3), ('database', 2), ('tuning', 2), ('design', 2), ('due', 1), ('increasing', 1), ('complexity', 1), ('application', 1), ('workload', 1), ('query', 1), ('engine', 1), ('administrator', 1), ('turning', 1), ('automated', 1), ('tool', 1), ('systematically', 1), ('explore', 1), ('space', 1), ('alternative', 1), ('critical', 1), ('element', 1), ('choice', 1), ('structure', 1), ('significant', 1), ('impact', 1), ('perfor', 1)]
[('animation', 3), ('technique', 3), ('apprentice', 1), ('master', 1), ('classical', 1), ('beautiful', 1), ('handbook', 1), ('insider', 1), ('tip', 1), ('apply', 1), ('age', 1), ('old', 1), ('create', 1), ('flawless', 1), ('whether', 1), ('working', 1), ('pencil', 1), ('paper', 1), ('application', 1)]
[('communication', 2), ('architecture', 2), ('presentation', 1), ('state', 1), ('art', 1), ('approach', 1), ('industrial', 1), ('application', 1), ('perspective', 1), ('system', 1), ('chip', 1), ('show', 1), ('professional', 1), ('researcher', 1), ('student', 1), ('attack', 1), ('problem', 1), ('data', 1), ('manufacture', 1), ('soc', 1), ('lucid', 1), ('illustration', 1), ('current', 1), ('trend', 1), ('research', 1)]
[('style', 3), ('art', 3), ('new', 2), ('stylized', 2), ('comic', 2), ('max', 2), ('trend', 1), ('towards', 1), ('latest', 1), ('wave', 1), ('movie', 1), ('la', 1), ('pixar', 1), ('user', 1), ('kind', 1), ('thing', 1), ('want', 1), ('learn', 1), ('andy', 1), ('gahan', 1), ('building', 1), ('success', 1), ('focal', 1), ('book', 1), ('d', 1), ('modeling', 1), ('game', 1), ('cover', 1), ('realistic', 1), ('volume', 1), ('ii', 1), ('covering', 1)]
[('animation', 3), ('development', 1), ('accessibility', 1), ('tool', 1), ('technique', 1), ('filmmaker', 1), ('blurring', 1), ('boundary', 1), ('documentary', 1), ('filmmaking', 1), ('intimacy', 1), ('imperfection', 1), ('charm', 1), ('animated', 1), ('form', 1), ('providing', 1), ('live', 1), ('action', 1), ('director', 1), ('unique', 1), ('way', 1), ('tell', 1), ('story', 1), ('humanize', 1), ('event', 1), ('convey', 1), ('information', 1)]
[('particle', 3), ('quantum', 3), ('swarm', 2), ('optimisation', 2), ('algorithm', 2), ('although', 1), ('pso', 1), ('requires', 1), ('relatively', 1), ('parameter', 1), ('computationally', 1), ('simple', 1), ('easy', 1), ('implement', 1), ('globally', 1), ('convergent', 1), ('classical', 1), ('perspective', 1), ('author', 1), ('introduce', 1), ('concept', 1), ('behaved', 1), ('inspired', 1)]
[('business', 3), ('process', 2), ('pattern', 2), ('design', 2), ('driven', 1), ('soa', 1), ('aligning', 1), ('supply', 1), ('detailed', 1), ('guidance', 1), ('build', 1), ('software', 1), ('architecture', 1), ('follow', 1), ('principle', 1), ('alignment', 1), ('illustrates', 1), ('using', 1), ('proven', 1), ('address', 1), ('complex', 1), ('technical', 1), ('scenario', 1), ('integrated', 1), ('concept', 1), ('service', 1), ('oriented', 1)]
[('game', 3), ('theory', 3), ('wireless', 2), ('used', 1), ('explain', 1), ('complicated', 1), ('economic', 1), ('behavior', 1), ('decade', 1), ('quickly', 1), ('becoming', 1), ('tool', 1), ('choice', 1), ('serious', 1), ('optimizing', 1), ('next', 1), ('generation', 1), ('system', 1), ('illustrating', 1), ('effectively', 1), ('address', 1), ('wide', 1), ('range', 1), ('issue', 1), ('remained', 1), ('unresolved', 1), ('communication', 1), ('networking', 1), ('provid', 1)]
[('multicore', 4), ('software', 3), ('parallel', 2), ('programming', 2), ('processor', 1), ('every', 1), ('computer', 1), ('server', 1), ('embedded', 1), ('device', 1), ('need', 1), ('cost', 1), ('effective', 1), ('reliable', 1), ('never', 1), ('greater', 1), ('explaining', 1), ('key', 1), ('aspect', 1), ('fundamental', 1), ('development', 1), ('help', 1), ('engineer', 1), ('understand', 1), ('master', 1), ('challenge', 1)]
[('memory', 3), ('energy', 2), ('management', 2), ('computer', 2), ('aided', 2), ('design', 2), ('cad', 2), ('aware', 1), ('embedded', 1), ('multimedia', 1), ('system', 1), ('approach', 1), ('present', 1), ('recent', 1), ('idea', 1), ('address', 1), ('task', 1), ('particularly', 1), ('optimization', 1), ('consumption', 1), ('subsystem', 1), ('explains', 1), ('efficiently', 1), ('implement', 1), ('solution', 1), ('including', 1), ('theoretical', 1), ('method', 1)]
[('autonomic', 2), ('networking', 2), ('chip', 2), ('inspired', 2), ('despite', 1), ('growing', 1), ('mainstream', 1), ('importance', 1), ('unique', 1), ('advantage', 1), ('anoc', 1), ('technology', 1), ('bio', 1), ('specification', 1), ('development', 1), ('verification', 1), ('among', 1), ('first', 1), ('book', 1), ('evaluate', 1), ('research', 1), ('result', 1), ('formalizing', 1), ('emerging', 1), ('noc', 1), ('paradigm', 1), ('human', 1), ('nervous', 1)]
[('used', 1), ('corporation', 1), ('industry', 1), ('government', 1), ('inform', 1), ('fuel', 1), ('everything', 1), ('focused', 1), ('advertising', 1), ('homeland', 1), ('security', 1), ('data', 1), ('mining', 1), ('useful', 1), ('tool', 1), ('across', 1), ('wide', 1), ('range', 1), ('application', 1), ('unfortunately', 1), ('book', 1), ('subject', 1), ('designed', 1), ('computer', 1), ('scientist', 1), ('statistical', 1), ('illuminati', 1), ('leave', 1), ('reader', 1), ('largely', 1), ('adrift', 1), ('tech', 1)]
[('ip', 3), ('telephony', 3), ('interconnection', 3), ('model', 2), ('addressing', 1), ('growth', 1), ('service', 1), ('offering', 1), ('within', 1), ('corporate', 1), ('residential', 1), ('realm', 1), ('reference', 1), ('challenge', 1), ('engineering', 1), ('examines', 1), ('technical', 1), ('regulatory', 1), ('issue', 1), ('related', 1), ('large', 1), ('scale', 1), ('describes', 1), ('business', 1), ('review', 1), ('emerging', 1), ('ar', 1)]
[('gpu', 2), ('pro', 2), ('graphic', 2), ('third', 1), ('volume', 1), ('book', 1), ('series', 1), ('offer', 1), ('practical', 1), ('tip', 1), ('technique', 1), ('creating', 1), ('real', 1), ('time', 1), ('useful', 1), ('beginner', 1), ('seasoned', 1), ('game', 1), ('programmer', 1), ('alike', 1), ('section', 1), ('editor', 1), ('wolfgang', 1), ('engel', 1), ('christopher', 1), ('oat', 1), ('carsten', 1), ('dachsbacher', 1), ('wessam', 1), ('bahnassi', 1), ('sebastien', 1), ('st', 1), ('laurent', 1), ('brought', 1), ('together', 1)]
[('rapid', 1), ('advancement', 1), ('information', 1), ('discovery', 1), ('technique', 1), ('machine', 1), ('learning', 1), ('data', 1), ('mining', 1), ('continue', 1), ('play', 1), ('significant', 1), ('role', 1), ('cybersecurity', 1), ('although', 1), ('several', 1), ('conference', 1), ('workshop', 1), ('journal', 1), ('focus', 1), ('fragmented', 1), ('research', 1), ('topic', 1), ('area', 1), ('single', 1), ('interdisciplinary', 1), ('resource', 1), ('past', 1), ('current', 1), ('work', 1), ('possible', 1)]
[('autocad', 3), ('new', 2), ('book', 2), ('anyone', 2), ('using', 2), ('release', 2), ('feature', 1), ('covered', 1), ('making', 1), ('useful', 1), ('refresher', 1), ('course', 1), ('level', 1), ('upgrading', 1), ('software', 1), ('material', 1), ('relevant', 1), ('recent', 1), ('including', 1)]
[('multimedia', 3), ('security', 3), ('content', 2), ('watermarking', 1), ('steganography', 1), ('forensics', 1), ('outline', 1), ('essential', 1), ('principle', 1), ('technical', 1), ('information', 1), ('expert', 1), ('insight', 1), ('technology', 1), ('used', 1), ('prove', 1), ('authentic', 1), ('altered', 1), ('illustrating', 1), ('need', 1), ('improved', 1), ('internet', 1), ('digital', 1), ('application', 1)]
[('open', 3), ('source', 3), ('business', 3), ('cross', 3), ('data', 2), ('warehousing', 2), ('intelligence', 2), ('based', 2), ('dw', 2), ('reference', 1), ('developing', 1), ('bi', 1), ('solution', 1), ('centric', 1), ('customer', 1), ('viable', 1), ('functional', 1), ('technology', 1), ('enterprise', 1), ('wide', 1), ('considering', 1), ('entire', 1), ('lifecycle', 1)]
[('image', 2), ('restoration', 2), ('fundamental', 1), ('advance', 1), ('responds', 1), ('need', 1), ('update', 1), ('existing', 1), ('reference', 1), ('subject', 1), ('many', 1), ('published', 1), ('decade', 1), ('ago', 1), ('providing', 1), ('broad', 1), ('overview', 1), ('book', 1), ('explores', 1), ('breakthrough', 1), ('related', 1), ('algorithm', 1), ('development', 1), ('role', 1), ('supporting', 1), ('real', 1), ('world', 1), ('application', 1), ('associated', 1)]
[('digital', 4), ('multiplexing', 3), ('synchronous', 2), ('hierarchy', 2), ('book', 1), ('present', 1), ('current', 1), ('standard', 1), ('called', 1), ('including', 1), ('analog', 1), ('technology', 1), ('aimed', 1), ('telecommunication', 1), ('professional', 1), ('want', 1), ('develop', 1), ('understanding', 1), ('particular', 1), ('functioning', 1), ('practical', 1)]
[('rendering', 3), ('practical', 2), ('parallel', 2), ('meeting', 1), ('growing', 1), ('demand', 1), ('speed', 1), ('quality', 1), ('computer', 1), ('graphic', 1), ('image', 1), ('requires', 1), ('new', 1), ('technique', 1), ('provides', 1), ('solution', 1), ('book', 1), ('address', 1), ('basic', 1), ('issue', 1), ('within', 1), ('distributed', 1), ('computing', 1), ('environment', 1), ('considers', 1), ('strength', 1), ('weakness', 1)]
[('shading', 2), ('design', 2), ('development', 2), ('book', 1), ('cover', 1), ('real', 1), ('time', 1), ('system', 1), ('work', 1), ('procedural', 1), ('long', 1), ('valued', 1), ('line', 1), ('rendering', 1), ('production', 1), ('animation', 1), ('possible', 1), ('interactive', 1), ('graphic', 1), ('hardware', 1), ('important', 1), ('area', 1), ('game', 1), ('product', 1), ('scientific', 1), ('visualization', 1), ('among', 1), ('others', 1), ('author', 1), ('inc', 1)]
[('volume', 3), ('rendering', 3), ('production', 2), ('due', 1), ('limited', 1), ('publicly', 1), ('available', 1), ('software', 1), ('lack', 1), ('documentation', 1), ('involved', 1), ('often', 1), ('start', 1), ('scratch', 1), ('creating', 1), ('necessary', 1), ('element', 1), ('make', 1), ('system', 1), ('work', 1), ('design', 1), ('implementation', 1), ('provides', 1), ('first', 1), ('full', 1), ('account', 1), ('technique', 1), ('used', 1), ('feature', 1), ('anima', 1)]
[('autocad', 2), ('course', 2), ('learning', 2), ('drawing', 2), ('beginning', 1), ('based', 1), ('practising', 1), ('essential', 1), ('using', 1), ('bob', 1), ('mcfarlane', 1), ('hand', 1), ('approach', 1), ('uniquely', 1), ('suited', 1), ('independent', 1), ('use', 1), ('focus', 1), ('book', 1), ('ensures', 1), ('reader', 1), ('get', 1), ('thorough', 1), ('grounding', 1), ('subject', 1), ('greater', 1), ('depth', 1), ('coverage', 1)]
[('step', 2), ('instruction', 1), ('clear', 1), ('explanation', 1), ('make', 1), ('book', 1), ('ideal', 1), ('course', 1), ('limited', 1), ('contact', 1), ('time', 1), ('independent', 1), ('study', 1), ('numerous', 1), ('exercise', 1), ('throughout', 1), ('enable', 1), ('student', 1), ('develop', 1), ('cad', 1), ('skill', 1), ('reinforcing', 1), ('understanding', 1), ('autocad', 1), ('command', 1), ('ian', 1), ('mawdsley', 1), ('drawn', 1), ('extensive', 1), ('teaching', 1), ('experience', 1)]
[('computation', 2), ('introduction', 2), ('problem', 2), ('limit', 1), ('undecidable', 1), ('intractable', 1), ('offer', 1), ('gentle', 1), ('theory', 1), ('computational', 1), ('complexity', 1), ('explains', 1), ('difficulty', 1), ('addressing', 1), ('algorithm', 1), ('solved', 1), ('efficiently', 1), ('book', 1), ('enables', 1), ('reader', 1), ('understand', 1), ('mean', 1)]
[('finite', 5), ('state', 4), ('based', 2), ('model', 2), ('applicable', 1), ('problem', 1), ('requires', 1), ('number', 1), ('solution', 1), ('called', 1), ('machine', 1), ('automaton', 1), ('found', 1), ('wide', 1), ('use', 1), ('various', 1), ('area', 1), ('computer', 1), ('science', 1), ('engineering', 1), ('handbook', 1), ('application', 1), ('provides', 1), ('complete', 1), ('collection', 1), ('introductory', 1), ('material', 1), ('fini', 1)]
[('human', 2), ('modeling', 2), ('advent', 1), ('augmented', 1), ('reality', 1), ('technology', 1), ('used', 1), ('assist', 1), ('operator', 1), ('complex', 1), ('manipulative', 1), ('operation', 1), ('brought', 1), ('urgency', 1), ('research', 1), ('training', 1), ('skill', 1), ('virtual', 1), ('environment', 1), ('specific', 1), ('act', 1), ('still', 1), ('represents', 1), ('challenge', 1), ('cognitive', 1), ('science', 1), ('applies', 1), ('control', 1), ('humanoid', 1), ('rob', 1)]
[('space', 3), ('designing', 2), ('themed', 2), ('scott', 1), ('lukas', 1), ('famed', 1), ('industry', 1), ('expert', 1), ('brings', 1), ('book', 1), ('focus', 1), ('imaginative', 1), ('world', 1), ('immersive', 1), ('consumer', 1), ('whether', 1), ('involved', 1), ('theme', 1), ('park', 1), ('cultural', 1), ('museum', 1), ('shop', 1), ('entertainment', 1), ('benefit', 1), ('insider', 1), ('tip', 1), ('experience', 1), ('technique', 1)]
[('data', 5), ('mining', 4), ('bioinformatics', 3), ('application', 2), ('covering', 1), ('theory', 1), ('algorithm', 1), ('methodology', 1), ('technology', 1), ('provides', 1), ('comprehensive', 1), ('discussion', 1), ('intensive', 1), ('computation', 1), ('used', 1), ('supply', 1), ('broad', 1), ('yet', 1), ('depth', 1), ('overview', 1), ('domain', 1)]
[('wireless', 2), ('video', 2), ('communication', 2), ('technical', 2), ('recent', 2), ('encompass', 1), ('broad', 1), ('range', 1), ('issue', 1), ('opportunity', 1), ('serve', 1), ('catalyst', 1), ('innovation', 1), ('disseminate', 1), ('advance', 1), ('challenging', 1), ('yet', 1), ('exciting', 1), ('field', 1), ('advanced', 1), ('network', 1), ('provides', 1), ('depth', 1), ('look', 1), ('fundamental', 1)]
[('computer', 4), ('access', 4), ('disability', 2), ('incorporating', 1), ('compass', 1), ('assessment', 1), ('software', 1), ('human', 1), ('factor', 1), ('approach', 1), ('provides', 1), ('information', 1), ('clinician', 1), ('need', 1), ('know', 1), ('order', 1), ('provide', 1), ('effective', 1), ('alternative', 1), ('solution', 1), ('individual', 1), ('originally', 1), ('developed', 1), ('master', 1), ('level', 1), ('course', 1), ('fo', 1)]
[('expert', 2), ('step', 2), ('whether', 1), ('creating', 1), ('catchy', 1), ('fun', 1), ('cartoon', 1), ('designing', 1), ('print', 1), ('banner', 1), ('advertisement', 1), ('developing', 1), ('content', 1), ('mobile', 1), ('game', 1), ('save', 1), ('time', 1), ('money', 1), ('technique', 1), ('trip', 1), ('trick', 1), ('adobe', 1), ('certified', 1), ('rafiq', 1), ('elmansy', 1), ('illustrator', 1), ('foundation', 1), ('practical', 1), ('application', 1), ('tutorial', 1), ('solve', 1), ('problem', 1)]
[('product', 2), ('service', 2), ('country', 2), ('increase', 1), ('globalization', 1), ('business', 1), ('industry', 1), ('often', 1), ('produced', 1), ('marketed', 1), ('across', 1), ('geographical', 1), ('cultural', 1), ('boundary', 1), ('without', 1), ('adequate', 1), ('consideration', 1), ('culture', 1), ('high', 1), ('probability', 1), ('developed', 1), ('effectively', 1), ('used', 1), ('another', 1), ('hinder', 1)]
[('dram', 2), ('widespread', 1), ('use', 1), ('mainframe', 1), ('pc', 1), ('mobile', 1), ('audio', 1), ('video', 1), ('device', 1), ('manufactured', 1), ('increasing', 1), ('volume', 1), ('stand', 1), ('alone', 1), ('embedded', 1), ('form', 1), ('part', 1), ('system', 1), ('chip', 1), ('due', 1), ('optimum', 1), ('design', 1), ('component', 1), ('access', 1), ('transistor', 1), ('storage', 1), ('capacitor', 1), ('peripheral', 1), ('cheapest', 1)]
[('universal', 3), ('design', 3), ('user', 2), ('interface', 1), ('first', 1), ('book', 1), ('dedicated', 1), ('issue', 1), ('access', 1), ('field', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hci', 1), ('inclusive', 1), ('proactive', 1), ('approach', 1), ('seeking', 1), ('accommodate', 1), ('diversity', 1), ('usage', 1), ('context', 1), ('interactive', 1), ('product', 1), ('application', 1), ('se', 1)]
[('imagination', 2), ('first', 1), ('published', 1), ('enhance', 1), ('animated', 1), ('feature', 1), ('short', 1), ('polished', 1), ('guide', 1), ('channeling', 1), ('vision', 1), ('former', 1), ('disney', 1), ('animator', 1), ('director', 1), ('learn', 1), ('become', 1), ('strong', 1), ('visual', 1), ('storyteller', 1), ('better', 1), ('use', 1), ('color', 1), ('volume', 1), ('shape', 1), ('shadow', 1), ('light', 1), ('discover', 1), ('tap', 1)]
[('increase', 2), ('chip', 2), ('bandwidth', 2), ('dramatic', 1), ('processing', 1), ('power', 1), ('rapidly', 1), ('scaled', 1), ('aggregate', 1), ('tb', 1), ('range', 1), ('necessitates', 1), ('corresponding', 1), ('amount', 1), ('data', 1), ('communicated', 1), ('limit', 1), ('overall', 1), ('system', 1), ('performance', 1), ('meet', 1), ('increasing', 1), ('demand', 1), ('interchip', 1), ('communication', 1), ('researcher', 1), ('investigating', 1)]
[('system', 3), ('model', 2), ('engineering', 2), ('area', 1), ('military', 1), ('security', 1), ('aerospace', 1), ('disaster', 1), ('management', 1), ('need', 1), ('performance', 1), ('optimization', 1), ('interoperability', 1), ('among', 1), ('heterogeneous', 1), ('increasingly', 1), ('important', 1), ('driven', 1), ('paradigm', 1), ('becomes', 1), ('actual', 1), ('software', 1), ('offer', 1), ('promising', 1), ('approach', 1), ('toward', 1), ('so', 1)]
[('optimal', 2), ('monograph', 1), ('present', 1), ('state', 1), ('art', 1), ('development', 1), ('design', 1), ('behaviorally', 1), ('structurally', 1), ('livenessen', 1), ('forcing', 1), ('petri', 1), ('net', 1), ('supervisor', 1), ('computationally', 1), ('tractable', 1), ('approach', 1), ('detail', 1), ('supervisory', 1), ('control', 1), ('problem', 1), ('arising', 1), ('automated', 1), ('production', 1), ('system', 1), ('outline', 1), ('methodology', 1), ('achieve', 1), ('optimality', 1), ('purpose', 1)]
[('android', 4), ('security', 3), ('platform', 2), ('attack', 1), ('defense', 1), ('anyone', 1), ('interested', 1), ('learning', 1), ('strength', 1), ('weakness', 1), ('perspective', 1), ('starting', 1), ('introduction', 1), ('o', 1), ('architecture', 1), ('application', 1), ('programming', 1), ('help', 1), ('reader', 1), ('speed', 1), ('basic', 1), ('issue', 1)]
[('communication', 2), ('industry', 2), ('green', 1), ('networking', 1), ('introduces', 1), ('novel', 1), ('solution', 1), ('bring', 1), ('significant', 1), ('reduction', 1), ('energy', 1), ('consumption', 1), ('information', 1), ('technology', 1), ('ict', 1), ('including', 1), ('electric', 1), ('power', 1), ('containing', 1), ('contribution', 1), ('leading', 1), ('expert', 1), ('field', 1), ('examines', 1), ('latest', 1), ('research', 1), ('advance', 1)]
[('multihomed', 3), ('communication', 3), ('stream', 2), ('control', 2), ('transmission', 2), ('protocol', 2), ('sctp', 2), ('although', 1), ('rapidly', 1), ('emerging', 1), ('trend', 1), ('next', 1), ('generation', 1), ('network', 1), ('known', 1), ('book', 1), ('explores', 1), ('filling', 1), ('void', 1), ('explains', 1), ('innovative', 1), ('feature', 1), ('allows', 1), ('endpoint', 1), ('sim', 1)]
[('industrial', 2), ('iwsns', 2), ('collaborative', 1), ('nature', 1), ('wireless', 1), ('sensor', 1), ('network', 1), ('brings', 1), ('several', 1), ('advantage', 1), ('traditional', 1), ('wired', 1), ('monitoring', 1), ('control', 1), ('system', 1), ('including', 1), ('self', 1), ('organization', 1), ('rapid', 1), ('deployment', 1), ('flexibility', 1), ('inherent', 1), ('intelligent', 1), ('processing', 1), ('regard', 1), ('play', 1), ('vital', 1), ('role', 1), ('creating', 1), ('reliable', 1), ('efficient', 1)]
[('lyapunov', 2), ('control', 2), ('nonlinear', 2), ('design', 2), ('based', 1), ('robotic', 1), ('system', 1), ('describes', 1), ('solution', 1), ('problem', 1), ('arise', 1), ('robot', 1), ('required', 1), ('interact', 1), ('manipulate', 1), ('environment', 1), ('practical', 1), ('scenario', 1), ('require', 1), ('controller', 1), ('work', 1), ('around', 1), ('uncertainty', 1), ('measurement', 1), ('related', 1), ('issue', 1), ('author', 1), ('use', 1), ('direc', 1)]
[('data', 3), ('mining', 3), ('created', 1), ('input', 1), ('distinguished', 1), ('international', 1), ('board', 1), ('foremost', 1), ('authority', 1), ('academia', 1), ('industry', 1), ('handbook', 1), ('present', 1), ('comprehensive', 1), ('coverage', 1), ('concept', 1), ('technique', 1), ('algorithm', 1), ('methodology', 1), ('management', 1), ('issue', 1), ('tool', 1), ('illustrated', 1), ('engaging', 1), ('example', 1)]
[('text', 2), ('structure', 2), ('little', 2), ('although', 1), ('traditional', 1), ('present', 1), ('isolated', 1), ('algorithm', 1), ('data', 1), ('provide', 1), ('unifying', 1), ('offer', 1), ('guidance', 1), ('appropriately', 1), ('select', 1), ('among', 1), ('furthermore', 1), ('furnish', 1), ('source', 1), ('code', 1), ('leave', 1), ('many', 1), ('difficult', 1), ('aspect', 1), ('implementation', 1), ('exercise', 1), ('fresh', 1), ('alternative', 1)]
[('network', 4), ('intrusion', 2), ('detection', 2), ('rapid', 1), ('rise', 1), ('ubiquity', 1), ('sophistication', 1), ('internet', 1), ('technology', 1), ('accompanying', 1), ('growth', 1), ('number', 1), ('attack', 1), ('become', 1), ('increasingly', 1), ('important', 1), ('anomaly', 1), ('based', 1), ('refers', 1), ('finding', 1), ('exceptional', 1), ('nonconforming', 1), ('pattern', 1), ('traffic', 1), ('data', 1), ('compared', 1), ('normal', 1), ('behavi', 1)]
[('security', 2), ('application', 2), ('distributed', 2), ('many', 1), ('civilian', 1), ('military', 1), ('networked', 1), ('coordination', 1), ('offer', 1), ('promising', 1), ('alternative', 1), ('centralized', 1), ('command', 1), ('control', 1), ('term', 1), ('scalability', 1), ('flexibility', 1), ('robustness', 1), ('introduces', 1), ('challenge', 1), ('network', 1), ('intelligence', 1), ('brings', 1), ('together', 1)]
[('data', 4), ('python', 3), ('biological', 2), ('take', 1), ('control', 1), ('use', 1), ('confidencerequiring', 1), ('prior', 1), ('programming', 1), ('experience', 1), ('managing', 1), ('empowers', 1), ('biologist', 1), ('life', 1), ('scientist', 1), ('work', 1), ('using', 1), ('language', 1), ('book', 1), ('teach', 1), ('program', 1), ('manage', 1), ('show', 1)]
[('system', 2), ('security', 2), ('circuit', 1), ('privacy', 1), ('begin', 1), ('introducing', 1), ('basic', 1), ('theoretical', 1), ('concept', 1), ('arithmetic', 1), ('used', 1), ('algorithm', 1), ('cryptography', 1), ('reviewing', 1), ('fundamental', 1), ('building', 1), ('block', 1), ('cryptographic', 1), ('analyzes', 1), ('advantage', 1), ('disadvantage', 1), ('real', 1), ('world', 1), ('implementation', 1), ('optimize', 1)]
[('equalizer', 4), ('channel', 3), ('communication', 2), ('neuro', 2), ('fuzzy', 2), ('mobile', 2), ('present', 1), ('form', 1), ('system', 1), ('cellular', 1), ('detail', 1), ('modeling', 1), ('broadband', 1), ('designing', 1), ('adaptive', 1), ('book', 1), ('focus', 1), ('concept', 1), ('simulation', 1), ('wireless', 1), ('using', 1)]
[('plcs', 3), ('manufacturer', 2), ('programmable', 1), ('logic', 1), ('controller', 1), ('extensively', 1), ('used', 1), ('industry', 1), ('perform', 1), ('automation', 1), ('task', 1), ('offering', 1), ('variety', 1), ('differ', 1), ('function', 1), ('program', 1), ('memory', 1), ('number', 1), ('input', 1), ('output', 1), ('surprisingly', 1), ('design', 1), ('implementation', 1), ('long', 1), ('secret', 1), ('unveiling', 1)]
[('multimedia', 3), ('semantic', 2), ('analysis', 2), ('processing', 2), ('broad', 1), ('scope', 1), ('provides', 1), ('complete', 1), ('reference', 1), ('technique', 1), ('algorithm', 1), ('solution', 1), ('design', 1), ('implementation', 1), ('contemporary', 1), ('system', 1), ('offering', 1), ('balanced', 1), ('global', 1), ('look', 1), ('latest', 1), ('advance', 1), ('indexing', 1), ('retrieval', 1), ('book', 1)]
[('design', 2), ('multicore', 2), ('saturation', 1), ('complexity', 1), ('clock', 1), ('frequency', 1), ('single', 1), ('core', 1), ('processor', 1), ('resulted', 1), ('emergence', 1), ('architecture', 1), ('alternative', 1), ('paradigm', 1), ('nowadays', 1), ('multithreaded', 1), ('computing', 1), ('system', 1), ('de', 1), ('facto', 1), ('standard', 1), ('high', 1), ('end', 1), ('application', 1), ('gaining', 1), ('popularity', 1), ('field', 1), ('embedded', 1)]
[('high', 2), ('performance', 2), ('computing', 2), ('ecosystem', 2), ('contemporary', 1), ('petascale', 1), ('toward', 1), ('exascale', 1), ('focus', 1), ('surrounding', 1), ('world', 1), ('leading', 1), ('center', 1), ('hpc', 1), ('cover', 1), ('many', 1), ('important', 1), ('factor', 1), ('involved', 1), ('computer', 1), ('architecture', 1), ('software', 1), ('application', 1), ('facility', 1), ('sponsor', 1), ('first', 1), ('part', 1)]
[('chaos', 2), ('computer', 1), ('scientist', 1), ('especially', 1), ('security', 1), ('field', 1), ('use', 1), ('limited', 1), ('computation', 1), ('small', 1), ('collection', 1), ('famous', 1), ('unsuitable', 1), ('map', 1), ('offer', 1), ('explanation', 1), ('relevant', 1), ('considered', 1), ('context', 1), ('discrete', 1), ('dynamical', 1), ('system', 1), ('chaotic', 1), ('machine', 1), ('theory', 1), ('application', 1), ('show', 1), ('make', 1), ('finite', 1), ('mac', 1)]
[('data', 2), ('mining', 2), ('social', 2), ('witnessed', 1), ('substantial', 1), ('advance', 1), ('recent', 1), ('decade', 1), ('new', 1), ('research', 1), ('question', 1), ('practical', 1), ('challenge', 1), ('arisen', 1), ('emerging', 1), ('area', 1), ('application', 1), ('within', 1), ('various', 1), ('field', 1), ('closely', 1), ('related', 1), ('human', 1), ('daily', 1), ('life', 1), ('medium', 1), ('networking', 1), ('book', 1), ('aim', 1), ('bridge', 1), ('gap', 1), ('traditional', 1), ('latest', 1), ('adv', 1)]
[('field', 3), ('handbook', 2), ('finite', 2), ('poised', 1), ('become', 1), ('leading', 1), ('reference', 1), ('exclusively', 1), ('devoted', 1), ('theory', 1), ('application', 1), ('international', 1), ('contributor', 1), ('compile', 1), ('state', 1), ('art', 1), ('research', 1), ('definitive', 1), ('edited', 1), ('renowned', 1), ('researcher', 1), ('book', 1), ('us', 1), ('uniform', 1), ('style', 1), ('format', 1), ('throughout', 1)]
[('error', 2), ('editor', 1), ('note', 1), ('discovered', 1), ('table', 1), ('content', 1), ('currently', 1), ('working', 1), ('correcting', 1), ('find', 1), ('book', 1), ('please', 1), ('visit', 1), ('companion', 1), ('site', 1), ('correct', 1), ('version', 1), ('whether', 1), ('creating', 1), ('animated', 1), ('short', 1), ('catchy', 1), ('fun', 1), ('cartoon', 1)]
[('transnav', 1), ('symposium', 1), ('held', 1), ('gdynia', 1), ('maritime', 1), ('university', 1), ('poland', 1), ('june', 1), ('brought', 1), ('together', 1), ('wide', 1), ('range', 1), ('participant', 1), ('world', 1), ('program', 1), ('offered', 1), ('variety', 1), ('contribution', 1), ('allowing', 1), ('look', 1), ('many', 1), ('aspect', 1), ('navigational', 1), ('safety', 1), ('various', 1), ('different', 1), ('point', 1), ('view', 1), ('topic', 1), ('presente', 1)]
[('combinatorics', 1), ('text', 1), ('provides', 1), ('depth', 1), ('coverage', 1), ('recurrence', 1), ('generating', 1), ('function', 1), ('partition', 1), ('permutation', 1), ('along', 1), ('interesting', 1), ('graph', 1), ('network', 1), ('topic', 1), ('design', 1), ('construction', 1), ('finite', 1), ('geometry', 1), ('present', 1), ('computer', 1), ('software', 1), ('algorithm', 1), ('pseudo', 1), ('code', 1), ('incorporates', 1), ('definition', 1), ('theorem', 1), ('proof', 1)]
[('symbolic', 2), ('differentiation', 2), ('system', 2), ('physical', 2), ('book', 1), ('explains', 1), ('use', 1), ('application', 1), ('computer', 1), ('game', 1), ('engineering', 1), ('simulation', 1), ('author', 1), ('describe', 1), ('create', 1), ('procedural', 1), ('geometric', 1), ('model', 1), ('link', 1), ('together', 1), ('form', 1), ('multibody', 1), ('simulate', 1), ('display', 1), ('behavior', 1), ('real', 1), ('time', 1), ('capa', 1)]
[('fuzzy', 4), ('system', 3), ('introduction', 2), ('self', 2), ('provides', 1), ('student', 1), ('contained', 1), ('requires', 1), ('preliminary', 1), ('knowledge', 1), ('mathematics', 1), ('control', 1), ('theory', 1), ('simplified', 1), ('readily', 1), ('accessible', 1), ('encourages', 1), ('classroom', 1), ('directed', 1), ('learner', 1), ('build', 1), ('solid', 1), ('foundation', 1), ('introducing', 1), ('subjec', 1)]
[('sequential', 2), ('analysis', 2), ('synthesis', 2), ('single', 1), ('resource', 1), ('actual', 1), ('digital', 1), ('system', 1), ('design', 1), ('using', 1), ('basic', 1), ('advanced', 1), ('concept', 1), ('logic', 1), ('offer', 1), ('thorough', 1), ('exposition', 1), ('synchronous', 1), ('asynchronous', 1), ('machine', 1), ('year', 1), ('experience', 1), ('designing', 1), ('computing', 1), ('equipment', 1), ('author', 1)]
[('image', 4), ('recognition', 1), ('become', 1), ('increasingly', 1), ('dynamic', 1), ('field', 1), ('new', 1), ('emerging', 1), ('civil', 1), ('military', 1), ('application', 1), ('security', 1), ('exploration', 1), ('robotics', 1), ('written', 1), ('expert', 1), ('fractal', 1), ('based', 1), ('video', 1), ('compression', 1), ('concise', 1), ('introduction', 1), ('processing', 1), ('using', 1), ('strengthens', 1), ('knowledge', 1), ('fundamental', 1), ('principle', 1)]
[('broadband', 3), ('network', 2), ('asynchronous', 1), ('transfer', 1), ('mode', 1), ('atm', 1), ('frame', 1), ('relay', 1), ('leased', 1), ('line', 1), ('allow', 1), ('easily', 1), ('access', 1), ('multimedia', 1), ('service', 1), ('data', 1), ('voice', 1), ('video', 1), ('package', 1), ('exploring', 1), ('important', 1), ('modern', 1), ('day', 1), ('telecommunication', 1), ('introduction', 1), ('communication', 1), ('system', 1), ('cover', 1), ('concept', 1), ('component', 1), ('bot', 1)]
[('attack', 3), ('software', 2), ('mobile', 2), ('embedded', 2), ('device', 2), ('testing', 2), ('address', 1), ('error', 1), ('user', 1), ('find', 1), ('themusing', 1), ('mix', 1), ('match', 1), ('approach', 1), ('test', 1), ('break', 1), ('present', 1), ('basis', 1), ('system', 1), ('designed', 1), ('tester', 1), ('working', 1), ('expanding', 1), ('world', 1), ('smart', 1), ('driven', 1), ('book', 1), ('focus', 1), ('based', 1), ('used', 1)]
[('collada', 2), ('asset', 2), ('collaborative', 1), ('design', 1), ('activity', 1), ('establishing', 1), ('open', 1), ('standard', 1), ('digital', 1), ('schema', 1), ('interactive', 1), ('application', 1), ('book', 1), ('explains', 1), ('detail', 1), ('use', 1), ('technology', 1), ('project', 1), ('utilizing', 1), ('ultimately', 1), ('create', 1), ('effective', 1), ('content', 1), ('creation', 1), ('pipeline', 1), ('complex', 1), ('development', 1), ('erratum', 1), ('posted', 1)]
[('human', 3), ('machine', 3), ('interface', 2), ('embodied', 1), ('conversational', 1), ('agent', 1), ('eca', 1), ('speech', 1), ('based', 1), ('together', 1), ('represent', 1), ('advanced', 1), ('natural', 1), ('interaction', 1), ('fusion', 1), ('topic', 1), ('challenging', 1), ('agenda', 1), ('research', 1), ('production', 1), ('sphere', 1), ('important', 1), ('goal', 1), ('provide', 1), ('content', 1), ('functionality', 1), ('form', 1), ('dialo', 1)]
[('second', 1), ('volume', 1), ('popular', 1), ('handbook', 1), ('demonstrates', 1), ('richness', 1), ('breadth', 1), ('discipline', 1), ('book', 1), ('explores', 1), ('close', 1), ('link', 1), ('practice', 1), ('using', 1), ('managing', 1), ('developing', 1), ('based', 1), ('solution', 1), ('advance', 1), ('goal', 1), ('modern', 1), ('organizational', 1), ('environment', 1), ('established', 1), ('leading', 1), ('expert', 1), ('influential', 1), ('young', 1), ('researcher', 1), ('present', 1)]
[('question', 2), ('wireless', 2), ('multimedia', 2), ('communication', 2), ('system', 2), ('rapid', 1), ('progress', 1), ('software', 1), ('hardware', 1), ('mobile', 1), ('network', 1), ('potential', 1), ('interactive', 1), ('medium', 1), ('pose', 1), ('many', 1), ('researcher', 1), ('manufacturer', 1), ('operator', 1), ('design', 1), ('analysis', 1), ('implementation', 1), ('strives', 1), ('answer', 1), ('covering', 1)]
[('hybrid', 1), ('heterogeneous', 1), ('nature', 1), ('future', 1), ('microprocessor', 1), ('large', 1), ('high', 1), ('performance', 1), ('computing', 1), ('system', 1), ('result', 1), ('reliance', 1), ('major', 1), ('type', 1), ('component', 1), ('multicore', 1), ('manycore', 1), ('central', 1), ('processing', 1), ('unit', 1), ('special', 1), ('purpose', 1), ('hardware', 1), ('massively', 1), ('parallel', 1), ('accelerator', 1), ('technology', 1), ('numerous', 1), ('benefit', 1), ('pose', 1), ('substantial', 1), ('perfo', 1)]
[('planning', 5), ('robotics', 2), ('motion', 2), ('sensor', 2), ('based', 2), ('volume', 1), ('deal', 1), ('core', 1), ('problem', 1), ('manipulation', 1), ('assembly', 1), ('discus', 1), ('application', 1), ('algorithm', 1), ('domain', 1), ('molecular', 1), ('modeling', 1), ('computer', 1), ('graphic', 1), ('image', 1), ('analysis', 1), ('topic', 1), ('include', 1), ('control', 1), ('moti', 1)]
[('algorithm', 2), ('control', 2), ('robot', 2), ('computational', 1), ('process', 1), ('relating', 1), ('sensor', 1), ('actuator', 1), ('indispensable', 1), ('navigation', 1), ('perception', 1), ('world', 1), ('move', 1), ('deep', 1), ('understanding', 1), ('work', 1), ('achieve', 1), ('essential', 1), ('development', 1), ('efficient', 1), ('usable', 1), ('broad', 1), ('field', 1), ('application', 1)]
[('computational', 2), ('using', 2), ('tool', 2), ('model', 2), ('software', 2), ('introduction', 1), ('modeling', 1), ('open', 1), ('source', 1), ('present', 1), ('fundamental', 1), ('principle', 1), ('computer', 1), ('science', 1), ('perspective', 1), ('explains', 1), ('implement', 1), ('programming', 1), ('language', 1), ('used', 1), ('book', 1), ('include', 1), ('gnu', 1), ('scientific', 1), ('library', 1), ('gsl', 1), ('free', 1), ('libra', 1)]
[('computer', 5), ('introduction', 2), ('present', 1), ('fundamental', 1), ('idea', 1), ('principle', 1), ('modern', 1), ('built', 1), ('used', 1), ('text', 1), ('course', 1), ('appreciation', 1), ('science', 1), ('book', 1), ('found', 1), ('wide', 1), ('audience', 1), ('among', 1), ('user', 1), ('wish', 1), ('understand', 1), ('basis', 1), ('machine', 1), ('form', 1), ('transform', 1)]
[('comply', 2), ('payment', 2), ('card', 2), ('industry', 2), ('standard', 2), ('although', 1), ('organization', 1), ('store', 1), ('process', 1), ('transmit', 1), ('cardholder', 1), ('information', 1), ('required', 1), ('find', 1), ('extremely', 1), ('challenging', 1), ('meet', 1), ('requirement', 1), ('technically', 1), ('rigorous', 1), ('pci', 1), ('compliance', 1), ('definitive', 1), ('guide', 1), ('explains', 1), ('in', 1), ('out', 1)]
[('classical', 2), ('fortran', 2), ('edition', 2), ('original', 2), ('programming', 1), ('engineering', 1), ('scientific', 1), ('application', 1), ('second', 1), ('teach', 1), ('write', 1), ('program', 1), ('dialect', 1), ('still', 1), ('widely', 1), ('recognized', 1), ('language', 1), ('numerical', 1), ('computing', 1), ('retains', 1), ('conversational', 1), ('style', 1), ('along', 1), ('simple', 1), ('carefully', 1), ('chosen', 1), ('subset', 1), ('la', 1)]
[('graphic', 2), ('undergraduate', 1), ('level', 1), ('computer', 1), ('text', 1), ('provides', 1), ('reader', 1), ('conceptual', 1), ('practical', 1), ('insight', 1), ('approach', 1), ('building', 1), ('majority', 1), ('interactive', 1), ('application', 1), ('encounter', 1), ('daily', 1), ('topic', 1), ('introduced', 1), ('student', 1), ('guided', 1), ('developing', 1), ('software', 1), ('library', 1), ('support', 1), ('fast', 1), ('prototyping', 1), ('moderately', 1), ('complex', 1)]
[('power', 2), ('electricity', 2), ('product', 2), ('first', 1), ('plant', 1), ('history', 1), ('commissioned', 1), ('commercial', 1), ('operation', 1), ('thomas', 1), ('edison', 1), ('pearl', 1), ('street', 1), ('new', 1), ('york', 1), ('sold', 1), ('consumer', 1), ('market', 1), ('price', 1), ('period', 1), ('rapid', 1), ('development', 1), ('become', 1), ('fundamental', 1), ('regulation', 1), ('believed', 1), ('necessary', 1)]
[('human', 4), ('digital', 2), ('design', 2), ('volume', 1), ('concerned', 1), ('modeling', 1), ('utility', 1), ('area', 1), ('research', 1), ('aid', 1), ('system', 1), ('benefitted', 1), ('reducing', 1), ('need', 1), ('physical', 1), ('prototyping', 1), ('incorporating', 1), ('ergonomics', 1), ('factor', 1), ('earlier', 1), ('process', 1), ('model', 1), ('representation', 1), ('aspect', 1), ('in', 1)]
[('electronic', 3), ('system', 2), ('chart', 2), ('navigation', 1), ('although', 1), ('still', 1), ('relatively', 1), ('new', 1), ('becoming', 1), ('increasingly', 1), ('common', 1), ('particularly', 1), ('commercial', 1), ('vessel', 1), ('handbook', 1), ('offer', 1), ('wealth', 1), ('detailed', 1), ('information', 1), ('different', 1), ('charting', 1), ('operate', 1), ('answer', 1), ('commonly', 1), ('asked', 1), ('question', 1), ('regarding', 1), ('enc', 1), ('rnc', 1), ('dnc', 1), ('ecd', 1)]
[('engineer', 3), ('compiler', 2), ('software', 2), ('data', 1), ('flow', 1), ('analysis', 1), ('used', 1), ('discover', 1), ('information', 1), ('wide', 1), ('variety', 1), ('useful', 1), ('application', 1), ('ranging', 1), ('optimization', 1), ('engineering', 1), ('verification', 1), ('modern', 1), ('apply', 1), ('produce', 1), ('performance', 1), ('maximizing', 1), ('code', 1), ('use', 1), ('reverse', 1), ('program', 1), ('verify', 1), ('integrity', 1)]
[('software', 3), ('explains', 1), ('reliability', 1), ('applied', 1), ('program', 1), ('size', 1), ('function', 1), ('language', 1), ('business', 1), ('text', 1), ('provides', 1), ('real', 1), ('life', 1), ('example', 1), ('industry', 1), ('defence', 1), ('engineering', 1), ('finance', 1), ('aimed', 1), ('quality', 1), ('assurance', 1), ('engineer', 1), ('graduate', 1), ('student', 1)]
[('microcontroller', 3), ('programming', 1), ('introduction', 1), ('comprehensive', 1), ('stop', 1), ('resource', 1), ('cover', 1), ('concept', 1), ('principle', 1), ('solution', 1), ('development', 1), ('associated', 1), ('technique', 1), ('involved', 1), ('based', 1), ('system', 1), ('focusing', 1), ('element', 1), ('feature', 1), ('popular', 1), ('powerful', 1), ('motorola', 1), ('hc', 1), ('ic', 1), ('representative', 1), ('example', 1), ('book', 1)]
[('language', 4), ('programming', 2), ('used', 2), ('surveying', 1), ('major', 1), ('hallmarked', 1), ('evolution', 1), ('computing', 1), ('fundamental', 1), ('example', 1), ('provides', 1), ('understanding', 1), ('many', 1), ('notation', 1), ('computer', 1), ('science', 1), ('formal', 1), ('model', 1), ('design', 1), ('phase', 1), ('foundation', 1), ('including', 1), ('linguistics', 1), ('textbook', 1), ('guide', 1)]
[('data', 2), ('management', 2), ('day', 2), ('written', 1), ('leading', 1), ('industry', 1), ('expert', 1), ('handbook', 1), ('comprehensive', 1), ('single', 1), ('volume', 1), ('guide', 1), ('innovative', 1), ('idea', 1), ('plan', 1), ('develop', 1), ('run', 1), ('powerful', 1), ('function', 1), ('handle', 1), ('operation', 1), ('book', 1), ('provides', 1), ('practical', 1), ('hand', 1), ('guidance', 1), ('strategic', 1), ('tactical', 1), ('technical', 1), ('aspect', 1), ('dat', 1)]
[('signal', 2), ('processing', 2), ('technique', 1), ('optimizing', 1), ('multiprocessor', 1), ('implementation', 1), ('application', 1), ('indispensable', 1), ('component', 1), ('information', 1), ('age', 1), ('embedded', 1), ('variety', 1), ('consumer', 1), ('device', 1), ('including', 1), ('cell', 1), ('phone', 1), ('digital', 1), ('television', 1), ('communication', 1), ('infrastructure', 1), ('medium', 1), ('server', 1), ('cellular', 1), ('base', 1)]
[('honeypot', 2), ('book', 2), ('rounded', 1), ('accessible', 1), ('exposition', 1), ('wired', 1), ('wireless', 1), ('network', 1), ('address', 1), ('topic', 1), ('variety', 1), ('perspective', 1), ('following', 1), ('strong', 1), ('theoretical', 1), ('foundation', 1), ('case', 1), ('study', 1), ('enhance', 1), ('practical', 1), ('understanding', 1), ('subject', 1), ('cover', 1), ('latest', 1), ('technology', 1), ('information', 1), ('security', 1), ('including', 1), ('honeytoken', 1)]
[('wimax', 2), ('network', 2), ('book', 1), ('offer', 1), ('comprehensive', 1), ('explanation', 1), ('dimension', 1), ('plan', 1), ('optimize', 1), ('first', 1), ('part', 1), ('text', 1), ('introduces', 1), ('architecture', 1), ('physical', 1), ('layer', 1), ('standard', 1), ('protocol', 1), ('security', 1), ('mechanism', 1), ('highly', 1), ('related', 1), ('radio', 1), ('access', 1), ('technology', 1), ('cover', 1), ('system', 1), ('framework', 1), ('topology', 1), ('capacity', 1), ('mobility', 1), ('management', 1), ('handoff', 1)]
[('past', 1), ('several', 1), ('year', 1), ('increasing', 1), ('trend', 1), ('use', 1), ('radio', 1), ('frequency', 1), ('identification', 1), ('rfid', 1), ('wireless', 1), ('sensor', 1), ('network', 1), ('wsns', 1), ('integration', 1), ('system', 1), ('due', 1), ('complementary', 1), ('nature', 1), ('flexible', 1), ('combination', 1), ('demand', 1), ('ubiquitous', 1), ('computing', 1), ('always', 1), ('adequate', 1), ('security', 1), ('remains', 1), ('open', 1)]
[('book', 2), ('application', 2), ('student', 2), ('provides', 1), ('introduction', 1), ('optimization', 1), ('theory', 1), ('written', 1), ('senior', 1), ('undergraduate', 1), ('first', 1), ('year', 1), ('graduate', 1), ('telecommunication', 1), ('related', 1), ('field', 1), ('pertain', 1), ('communication', 1), ('network', 1), ('problem', 1), ('practical', 1), ('example', 1), ('accompany', 1), ('rigorous', 1), ('discussion', 1)]
[('time', 2), ('triggered', 2), ('communication', 2), ('help', 1), ('reader', 1), ('build', 1), ('understanding', 1), ('conceptual', 1), ('foundation', 1), ('operation', 1), ('application', 1), ('widely', 1), ('used', 1), ('embedded', 1), ('system', 1), ('diverse', 1), ('range', 1), ('industry', 1), ('book', 1), ('assembles', 1), ('contribution', 1), ('expert', 1), ('examine', 1), ('difference', 1), ('commonality', 1)]
[('genetic', 3), ('based', 2), ('optimization', 2), ('recent', 1), ('year', 1), ('new', 1), ('paradigm', 1), ('emerged', 1), ('replace', 1), ('augment', 1), ('traditional', 1), ('mathematically', 1), ('approach', 1), ('powerful', 1), ('algorithm', 1), ('ga', 1), ('inspired', 1), ('natural', 1), ('selection', 1), ('programming', 1), ('extension', 1), ('gas', 1), ('symbolic', 1), ('code', 1), ('robust', 1), ('control', 1), ('system', 1)]
[('computer', 3), ('aided', 3), ('competitive', 2), ('business', 1), ('arena', 1), ('company', 1), ('continually', 1), ('strive', 1), ('create', 1), ('new', 1), ('better', 1), ('product', 1), ('faster', 1), ('efficiently', 1), ('cost', 1), ('effectively', 1), ('competitor', 1), ('gain', 1), ('keep', 1), ('advantage', 1), ('design', 1), ('cad', 1), ('engineering', 1), ('cae', 1), ('manufacturing', 1), ('cam', 1), ('industry', 1), ('standa', 1)]
[('algorithm', 2), ('protocol', 2), ('implementation', 2), ('guide', 1), ('implementing', 1), ('addressing', 1), ('real', 1), ('world', 1), ('issue', 1), ('understanding', 1), ('applying', 1), ('cryptography', 1), ('data', 1), ('security', 1), ('emphasizes', 1), ('cryptographic', 1), ('hardware', 1), ('software', 1), ('embedded', 1), ('system', 1), ('derived', 1), ('author', 1), ('teaching', 1), ('note', 1), ('research', 1), ('publication', 1), ('text', 1)]
[('testing', 4), ('practical', 2), ('software', 2), ('guide', 1), ('written', 1), ('difficulty', 1), ('often', 1), ('lament', 1), ('accompanied', 1), ('cautionary', 1), ('word', 1), ('careful', 1), ('ensure', 1), ('done', 1), ('properly', 1), ('dearth', 1), ('resource', 1), ('give', 1), ('guidance', 1), ('nut', 1), ('bolt', 1), ('essential', 1)]
[('mechanism', 2), ('updated', 1), ('enlarged', 1), ('second', 1), ('edition', 1), ('provides', 1), ('depth', 1), ('progressive', 1), ('study', 1), ('kinematic', 1), ('offer', 1), ('novel', 1), ('simplified', 1), ('method', 1), ('solving', 1), ('typical', 1), ('problem', 1), ('arise', 1), ('synthesis', 1), ('analysis', 1), ('concentrating', 1), ('use', 1), ('algebra', 1), ('trigonometry', 1), ('minimizing', 1), ('need', 1), ('calculus', 1), ('continues', 1), ('furnish', 1), ('complete', 1), ('coverag', 1)]
[('information', 2), ('overlay', 2), ('ability', 1), ('solve', 1), ('problem', 1), ('massive', 1), ('distribution', 1), ('processing', 1), ('keeping', 1), ('scaling', 1), ('cost', 1), ('low', 1), ('system', 1), ('represent', 1), ('rapidly', 1), ('growing', 1), ('area', 1), ('important', 1), ('implication', 1), ('evolution', 1), ('internet', 1), ('architecture', 1), ('inspired', 1), ('author', 1), ('article', 1), ('content', 1), ('based', 1), ('routing', 1), ('network', 1), ('toward', 1)]
[('data', 2), ('mining', 2), ('tool', 2), ('focusing', 1), ('three', 1), ('application', 1), ('design', 1), ('implementation', 1), ('explains', 1), ('create', 1), ('employ', 1), ('system', 1), ('intrusion', 1), ('detection', 1), ('web', 1), ('page', 1), ('surfing', 1), ('prediction', 1), ('image', 1), ('classification', 1), ('mainly', 1), ('based', 1), ('author', 1), ('research', 1), ('work', 1), ('book', 1), ('take', 1), ('practical', 1), ('approach', 1), ('subject', 1), ('first', 1), ('part', 1), ('boo', 1)]
[('internet', 3), ('computer', 2), ('forensics', 1), ('evidence', 1), ('collection', 1), ('management', 1), ('examines', 1), ('cyber', 1), ('crime', 1), ('commerce', 1), ('activity', 1), ('used', 1), ('exploit', 1), ('electronic', 1), ('device', 1), ('book', 1), ('focus', 1), ('numerous', 1), ('vulnerability', 1), ('threat', 1), ('inherent', 1), ('networking', 1), ('environment', 1), ('present', 1), ('technique', 1)]
[('system', 5), ('modeling', 2), ('simulation', 2), ('help', 1), ('provide', 1), ('better', 1), ('understanding', 1), ('real', 1), ('world', 1), ('function', 1), ('enable', 1), ('predict', 1), ('behavior', 1), ('actually', 1), ('built', 1), ('analyze', 1), ('accurately', 1), ('varying', 1), ('operating', 1), ('condition', 1), ('using', 1), ('matlab', 1), ('simulink', 1), ('provides', 1)]
[('coding', 3), ('communication', 2), ('modern', 1), ('error', 1), ('control', 1), ('method', 1), ('based', 1), ('turbo', 1), ('essentially', 1), ('solved', 1), ('problem', 1), ('reliable', 1), ('data', 1), ('noisy', 1), ('channel', 1), ('contemporary', 1), ('technique', 1), ('application', 1), ('mobile', 1), ('provides', 1), ('clear', 1), ('comprehensive', 1), ('practical', 1), ('grounding', 1), ('subject', 1), ('matter', 1), ('examining', 1), ('fundamental', 1), ('theory', 1), ('ap', 1)]
[('theoretical', 2), ('compiler', 2), ('maintaining', 1), ('balance', 1), ('practical', 1), ('approach', 1), ('important', 1), ('subject', 1), ('element', 1), ('design', 1), ('serf', 1), ('introduction', 1), ('writing', 1), ('undergraduate', 1), ('student', 1), ('viewpoint', 1), ('introduces', 1), ('rudimental', 1), ('model', 1), ('automaton', 1), ('grammar', 1), ('underlie', 1), ('compilation', 1), ('essential', 1), ('phase', 1), ('based', 1)]
[('verilog', 4), ('design', 3), ('modeling', 2), ('emphasizing', 1), ('detailed', 1), ('various', 1), ('project', 1), ('hdl', 1), ('digital', 1), ('offer', 1), ('student', 1), ('firm', 1), ('foundation', 1), ('subject', 1), ('matter', 1), ('textbook', 1), ('present', 1), ('complete', 1), ('language', 1), ('describing', 1), ('different', 1), ('construct', 1), ('supported', 1), ('providing', 1), ('numerous', 1), ('example', 1), ('problem', 1), ('chapter', 1)]
[('data', 4), ('mining', 2), ('help', 2), ('hidden', 2), ('pinpoint', 1), ('information', 1), ('medical', 1), ('accurately', 1), ('differentiate', 1), ('pathological', 1), ('normal', 1), ('extract', 1), ('feature', 1), ('patient', 1), ('group', 1), ('disease', 1), ('state', 1), ('aid', 1), ('automated', 1), ('decision', 1), ('making', 1), ('biomedical', 1), ('imaging', 1), ('signaling', 1), ('system', 1), ('provides', 1), ('depth', 1), ('examination', 1), ('biomedi', 1)]
[('software', 2), ('testing', 2), ('last', 1), ('publication', 1), ('international', 1), ('bestseller', 1), ('seen', 1), ('renaissance', 1), ('renewed', 1), ('interest', 1), ('technology', 1), ('biggest', 1), ('change', 1), ('come', 1), ('growing', 1), ('prominence', 1), ('acceptance', 1), ('agile', 1), ('programming', 1), ('craftsman', 1), ('approach', 1), ('third', 1), ('edition', 1), ('extends', 1), ('combination', 1), ('theory', 1), ('practicality', 1), ('first', 1)]
[('security', 3), ('foundation', 2), ('keeping', 1), ('latest', 1), ('development', 1), ('cyber', 1), ('requires', 1), ('ongoing', 1), ('commitment', 1), ('without', 1), ('firm', 1), ('principle', 1), ('computer', 1), ('digital', 1), ('forensics', 1), ('tasked', 1), ('safeguarding', 1), ('private', 1), ('information', 1), ('lost', 1), ('turbulent', 1), ('shifting', 1), ('sea', 1), ('providing', 1), ('introduction', 1), ('network', 1)]
[('transmission', 3), ('wireless', 2), ('system', 2), ('technique', 2), ('emergent', 2), ('multicast', 2), ('broadcast', 2), ('describing', 1), ('efficient', 1), ('scheme', 1), ('broadband', 1), ('examines', 1), ('advance', 1), ('receiver', 1), ('design', 1), ('capable', 1), ('supporting', 1), ('need', 1), ('multimedia', 1), ('service', 1), ('mbms', 1), ('requirement', 1), ('summarizes', 1), ('resea', 1)]
[('reconfigurable', 3), ('system', 3), ('design', 2), ('verification', 2), ('technique', 2), ('pervaded', 1), ('nearly', 1), ('field', 1), ('computation', 1), ('continue', 1), ('foreseeable', 1), ('future', 1), ('provides', 1), ('compendium', 1), ('allowing', 1), ('quickly', 1), ('search', 1), ('determine', 1), ('appropriate', 1)]
[('system', 3), ('engineering', 2), ('complex', 2), ('se', 1), ('experiencing', 1), ('significant', 1), ('expansion', 1), ('encompasses', 1), ('increasingly', 1), ('common', 1), ('body', 1), ('knowledge', 1), ('apply', 1), ('cse', 1), ('yet', 1), ('developed', 1), ('combination', 1), ('autonomous', 1), ('agent', 1), ('crossing', 1), ('organization', 1), ('boundary', 1), ('continually', 1), ('changing', 1), ('hybrid', 1), ('sy', 1)]
[('learning', 2), ('algorithm', 2), ('practical', 2), ('application', 2), ('using', 1), ('real', 1), ('life', 1), ('example', 1), ('illustrate', 1), ('performance', 1), ('instructing', 1), ('reader', 1), ('apply', 1), ('work', 1), ('offer', 1), ('comprehensive', 1), ('treatment', 1), ('subspace', 1), ('neural', 1), ('network', 1), ('author', 1), ('summarize', 1), ('decade', 1), ('high', 1), ('quality', 1), ('research', 1), ('offering', 1), ('host', 1)]
[('research', 2), ('written', 1), ('award', 1), ('winning', 1), ('engineer', 1), ('whose', 1), ('sponsored', 1), ('national', 1), ('science', 1), ('foundation', 1), ('nsf', 1), ('ibm', 1), ('cisco', 1), ('university', 1), ('program', 1), ('wireless', 1), ('sensor', 1), ('network', 1), ('principle', 1), ('practice', 1), ('address', 1), ('everything', 1), ('product', 1), ('developer', 1), ('technician', 1), ('need', 1), ('know', 1), ('navigate', 1), ('field', 1), ('provides', 1), ('inclusive', 1), ('examina', 1)]
[('operating', 2), ('era', 1), ('intense', 1), ('competition', 1), ('plant', 1), ('efficiency', 1), ('maximized', 1), ('downtime', 1), ('due', 1), ('machinery', 1), ('failure', 1), ('become', 1), ('costly', 1), ('cut', 1), ('cost', 1), ('increase', 1), ('revenue', 1), ('industry', 1), ('urgent', 1), ('need', 1), ('predict', 1), ('fault', 1), ('progression', 1), ('remaining', 1), ('lifespan', 1), ('industrial', 1), ('machine', 1), ('process', 1), ('system', 1), ('engineer', 1), ('mount', 1)]
[('database', 5), ('system', 2), ('business', 2), ('application', 2), ('development', 2), ('management', 2), ('today', 1), ('professional', 1), ('understand', 1), ('apply', 1), ('process', 1), ('develop', 1), ('intelligence', 1), ('web', 1), ('based', 1), ('explains', 1), ('aspect', 1), ('design', 1), ('access', 1), ('implementation', 1)]
[('clustering', 2), ('variable', 2), ('selection', 2), ('remains', 1), ('vibrant', 1), ('area', 1), ('research', 1), ('statistic', 1), ('although', 1), ('many', 1), ('book', 1), ('topic', 1), ('relatively', 1), ('founded', 1), ('theoretical', 1), ('aspect', 1), ('robust', 1), ('cluster', 1), ('analysis', 1), ('gunter', 1), ('ritter', 1), ('present', 1), ('overview', 1), ('theory', 1), ('application', 1), ('probabilistic', 1)]
[('digital', 3), ('every', 1), ('day', 1), ('million', 1), ('capture', 1), ('store', 1), ('transmit', 1), ('manipulate', 1), ('data', 1), ('unfortunately', 1), ('free', 1), ('access', 1), ('multimedia', 1), ('communication', 1), ('provides', 1), ('virtually', 1), ('unprecedented', 1), ('opportunity', 1), ('pirate', 1), ('copyrighted', 1), ('material', 1), ('providing', 1), ('theoretical', 1), ('background', 1), ('needed', 1), ('develop', 1), ('implement', 1), ('advanced', 1), ('technique', 1), ('algorithm', 1)]
[('reader', 2), ('security', 2), ('engaging', 1), ('book', 1), ('empower', 1), ('large', 1), ('small', 1), ('software', 1), ('development', 1), ('engineering', 1), ('organization', 1), ('build', 1), ('product', 1), ('armed', 1), ('firm', 1), ('solution', 1), ('fight', 1), ('cyber', 1), ('threat', 1), ('dr', 1), ('dena', 1), ('haritos', 1), ('tsamitis', 1), ('carnegie', 1), ('mellon', 1), ('university', 1), ('specialist', 1)]
[('internet', 3), ('today', 1), ('interactive', 1), ('network', 1), ('environment', 1), ('various', 1), ('type', 1), ('organization', 1), ('eager', 1), ('monitor', 1), ('track', 1), ('use', 1), ('anonymity', 1), ('powerful', 1), ('resource', 1), ('available', 1), ('counterbalance', 1), ('threat', 1), ('unknown', 1), ('spectator', 1), ('ensure', 1), ('privacy', 1), ('addressing', 1), ('demand', 1), ('authoritative', 1), ('information', 1), ('anonymous', 1), ('usage', 1), ('ano', 1)]
[('guide', 3), ('reality', 3), ('virtual', 2), ('together', 2), ('cover', 2), ('hitchhiker', 1), ('brings', 1), ('aspect', 1), ('graphic', 1), ('video', 1), ('audio', 1), ('haptics', 1), ('work', 1), ('make', 1), ('good', 1), ('reveals', 1), ('practical', 1), ('thing', 1), ('need', 1), ('know', 1), ('viewpoint', 1), ('author', 1), ('part', 1)]
[('computer', 2), ('system', 2), ('information', 1), ('technology', 1), ('introduction', 1), ('today', 1), ('digital', 1), ('world', 1), ('introduces', 1), ('undergraduate', 1), ('student', 1), ('wide', 1), ('variety', 1), ('concept', 1), ('encounter', 1), ('throughout', 1), ('study', 1), ('career', 1), ('book', 1), ('cover', 1), ('organization', 1), ('hardware', 1), ('window', 1), ('linux', 1), ('operating', 1), ('administration', 1), ('duty', 1), ('scripting', 1), ('network', 1)]
[('information', 3), ('protection', 3), ('security', 2), ('program', 2), ('governance', 1), ('guidebook', 1), ('metric', 1), ('provides', 1), ('clear', 1), ('concise', 1), ('explanation', 1), ('key', 1), ('issue', 1), ('describing', 1), ('basic', 1), ('structure', 1), ('enterprise', 1), ('including', 1), ('graphic', 1), ('support', 1), ('text', 1), ('book', 1), ('includes', 1), ('overview', 1)]
[('mobile', 3), ('learn', 1), ('design', 1), ('implement', 1), ('har', 1), ('system', 1), ('pervasiveness', 1), ('range', 1), ('capability', 1), ('today', 1), ('device', 1), ('enabled', 1), ('wide', 1), ('spectrum', 1), ('application', 1), ('transforming', 1), ('daily', 1), ('life', 1), ('smartphones', 1), ('equipped', 1), ('gps', 1), ('integrated', 1), ('sensor', 1), ('acquire', 1), ('physiological', 1), ('data', 1), ('human', 1), ('activity', 1), ('recognition', 1), ('using', 1), ('wearable', 1), ('sen', 1)]
[('communication', 3), ('cooperative', 2), ('wireless', 2), ('network', 2), ('compared', 1), ('conventional', 1), ('allows', 1), ('multiple', 1), ('user', 1), ('coordinate', 1), ('packet', 1), ('transmission', 1), ('share', 1), ('resource', 1), ('thus', 1), ('achieving', 1), ('high', 1), ('performance', 1), ('gain', 1), ('better', 1), ('service', 1), ('coverage', 1), ('reliability', 1), ('energy', 1), ('efficient', 1), ('provides', 1), ('comp', 1)]
[('data', 2), ('due', 1), ('advance', 1), ('sensor', 1), ('storage', 1), ('networking', 1), ('technology', 1), ('generated', 1), ('daily', 1), ('basis', 1), ('increasing', 1), ('pace', 1), ('wide', 1), ('range', 1), ('application', 1), ('including', 1), ('cloud', 1), ('computing', 1), ('mobile', 1), ('internet', 1), ('medical', 1), ('imaging', 1), ('large', 1), ('multidimensional', 1), ('requires', 1), ('efficient', 1), ('dimensionality', 1), ('reduction', 1), ('scheme', 1), ('traditional', 1), ('techniqu', 1)]
[('linear', 2), ('parallel', 1), ('processing', 1), ('ideally', 1), ('suited', 1), ('solving', 1), ('complex', 1), ('problem', 1), ('statistical', 1), ('computing', 1), ('book', 1), ('discus', 1), ('code', 1), ('development', 1), ('going', 1), ('beyond', 1), ('look', 1), ('valuable', 1), ('use', 1), ('language', 1), ('unison', 1), ('cover', 1), ('equation', 1), ('solution', 1), ('regression', 1), ('model', 1), ('motivation', 1), ('optimization', 1)]
[('future', 1), ('cancer', 1), ('research', 1), ('development', 1), ('new', 1), ('therapeutic', 1), ('strategy', 1), ('rely', 1), ('ability', 1), ('convert', 1), ('biological', 1), ('clinical', 1), ('question', 1), ('mathematical', 1), ('model', 1), ('integrating', 1), ('knowledge', 1), ('tumour', 1), ('progression', 1), ('mechanism', 1), ('tsunami', 1), ('information', 1), ('brought', 1), ('high', 1), ('throughput', 1), ('technology', 1), ('microarrays', 1), ('next', 1), ('generation', 1), ('sequencin', 1)]
[('security', 4), ('system', 3), ('communication', 2), ('design', 2), ('helping', 1), ('current', 1), ('future', 1), ('designer', 1), ('take', 1), ('productive', 1), ('approach', 1), ('field', 1), ('show', 1), ('apply', 1), ('principle', 1), ('state', 1), ('art', 1), ('author', 1), ('use', 1), ('previous', 1), ('failure', 1), ('flaw', 1), ('explain', 1), ('common', 1), ('pitfall', 1), ('divided', 1), ('four', 1), ('part', 1), ('book', 1), ('begin', 1)]
[('software', 5), ('engineering', 2), ('development', 2), ('current', 1), ('practice', 1), ('teach', 1), ('student', 1), ('basic', 1), ('skill', 1), ('help', 1), ('practitioner', 1), ('refresh', 1), ('knowledge', 1), ('explore', 1), ('recent', 1), ('field', 1), ('including', 1), ('change', 1), ('iterative', 1), ('process', 1), ('historical', 1), ('overview', 1), ('introduction', 1), ('technology', 1), ('model', 1)]
[('practical', 2), ('gpgpu', 2), ('programming', 2), ('science', 2), ('depth', 1), ('guide', 1), ('using', 1), ('direct', 1), ('game', 1), ('demonstrates', 1), ('achieve', 1), ('following', 1), ('requirement', 1), ('tackle', 1), ('problem', 1), ('computer', 1), ('software', 1), ('engineering', 1), ('robustnessaccuracyspeedquality', 1), ('source', 1), ('code', 1), ('easily', 1), ('maintained', 1), ('reusable', 1), ('readablethe', 1), ('book', 1), ('primarily', 1), ('add', 1)]
[('information', 4), ('collected', 2), ('dissatisfaction', 2), ('book', 1), ('provides', 1), ('necessary', 1), ('element', 1), ('determine', 1), ('exactly', 1), ('make', 1), ('relevant', 1), ('policy', 1), ('maker', 1), ('highlight', 1), ('user', 1), ('reason', 1), ('discus', 1), ('general', 1), ('issue', 1), ('around', 1), ('role', 1), ('use', 1)]
[('distributed', 2), ('sensor', 2), ('network', 2), ('best', 1), ('selling', 1), ('became', 1), ('definitive', 1), ('guide', 1), ('understanding', 1), ('far', 1), ('reaching', 1), ('technology', 1), ('preserving', 1), ('excellence', 1), ('accessibility', 1), ('predecessor', 1), ('second', 1), ('edition', 1), ('provides', 1), ('fundamental', 1), ('application', 1), ('complete', 1), ('self', 1), ('contained', 1), ('source', 1), ('ideal', 1)]
[('mobile', 4), ('network', 3), ('opportunistic', 2), ('social', 2), ('widespread', 1), ('availability', 1), ('device', 1), ('along', 1), ('recent', 1), ('advancement', 1), ('networking', 1), ('capability', 1), ('make', 1), ('msns', 1), ('promising', 1), ('technology', 1), ('next', 1), ('generation', 1), ('application', 1), ('supply', 1), ('new', 1), ('perspective', 1), ('help', 1), ('enhance', 1), ('spontaneo', 1)]
[('game', 4), ('business', 2), ('service', 2), ('industry', 1), ('serious', 1), ('role', 1), ('designer', 1), ('dramatically', 1), ('changed', 1), ('last', 1), ('year', 1), ('developer', 1), ('rethink', 1), ('everything', 1), ('know', 1), ('creative', 1), ('technical', 1), ('challenge', 1), ('adapt', 1), ('transition', 1), ('free', 1), ('play', 1), ('design', 1), ('make', 1)]
[('development', 2), ('system', 2), ('book', 1), ('broad', 1), ('discussion', 1), ('covering', 1), ('entire', 1), ('software', 1), ('lifecycle', 1), ('us', 1), ('comprehensive', 1), ('case', 1), ('study', 1), ('address', 1), ('topic', 1), ('feature', 1), ('following', 1), ('description', 1), ('fictional', 1), ('company', 1), ('homeowner', 1), ('digitalhome', 1), ('dh', 1), ('smart', 1), ('device', 1), ('controlling', 1), ('home', 1), ('lighting', 1), ('temperature', 1)]
[('edition', 3), ('second', 2), ('bestselling', 1), ('textbook', 1), ('using', 1), ('introductory', 1), ('statistic', 1), ('guide', 1), ('student', 1), ('basic', 1), ('helping', 1), ('overcome', 1), ('sometimes', 1), ('steep', 1), ('learning', 1), ('curve', 1), ('author', 1), ('breaking', 1), ('material', 1), ('small', 1), ('task', 1), ('oriented', 1), ('step', 1), ('maintains', 1), ('feature', 1), ('made', 1), ('first', 1)]
[('communication', 3), ('bandwidth', 2), ('visual', 1), ('information', 1), ('richest', 1), ('consuming', 1), ('mode', 1), ('meet', 1), ('requirement', 1), ('emerging', 1), ('application', 1), ('powerful', 1), ('data', 1), ('compression', 1), ('transmission', 1), ('technique', 1), ('required', 1), ('achieve', 1), ('highly', 1), ('efficient', 1), ('even', 1), ('presence', 1), ('growing', 1), ('channel', 1), ('offer', 1), ('increased', 1), ('presentin', 1)]
[('group', 4), ('cryptography', 2), ('theory', 1), ('appears', 1), ('promising', 1), ('source', 1), ('hard', 1), ('computational', 1), ('problem', 1), ('deploying', 1), ('new', 1), ('cryptographic', 1), ('construction', 1), ('reference', 1), ('focus', 1), ('specific', 1), ('using', 1), ('including', 1), ('particular', 1), ('non', 1), ('abelian', 1), ('field', 1), ('provides', 1), ('introduction', 1), ('emphasis', 1), ('theoretic', 1)]
[('effect', 3), ('visual', 2), ('multithreading', 2), ('tackle', 1), ('challenge', 1), ('parallel', 1), ('programming', 1), ('industryin', 1), ('developer', 1), ('dreamworks', 1), ('animation', 1), ('pixar', 1), ('side', 1), ('intel', 1), ('amd', 1), ('share', 1), ('success', 1), ('failure', 1), ('messy', 1), ('real', 1), ('world', 1), ('application', 1), ('area', 1), ('production', 1), ('software', 1), ('provide', 1), ('practical', 1), ('advice', 1), ('technique', 1)]
[('model', 2), ('idea', 2), ('simulation', 1), ('kind', 1), ('tool', 1), ('dealing', 1), ('reality', 1), ('human', 1), ('always', 1), ('used', 1), ('mental', 1), ('better', 1), ('understand', 1), ('world', 1), ('around', 1), ('make', 1), ('plan', 1), ('consider', 1), ('different', 1), ('possibility', 1), ('share', 1), ('others', 1), ('test', 1), ('change', 1), ('determine', 1), ('whether', 1), ('development', 1), ('feasible', 1), ('book', 1), ('modeling', 1)]
[('augmented', 3), ('computer', 2), ('reality', 2), ('book', 1), ('present', 1), ('variety', 1), ('technique', 1), ('combine', 1), ('generated', 1), ('image', 1), ('object', 1), ('real', 1), ('scene', 1), ('creating', 1), ('work', 1), ('provides', 1), ('excellent', 1), ('snapshot', 1), ('current', 1), ('state', 1), ('research', 1), ('latest', 1), ('application', 1), ('industry', 1), ('using', 1), ('vision', 1), ('graphic', 1), ('signal', 1), ('processing', 1), ('reali', 1)]
[('image', 2), ('ubiquity', 1), ('computer', 1), ('generated', 1), ('imagery', 1), ('around', 1), ('movie', 1), ('advertising', 1), ('internet', 1), ('already', 1), ('taken', 1), ('granted', 1), ('impress', 1), ('photorealistic', 1), ('quality', 1), ('picture', 1), ('often', 1), ('told', 1), ('worth', 1), ('thousand', 1), ('word', 1), ('information', 1), ('transported', 1), ('take', 1), ('many', 1), ('different', 1), ('form', 1)]
[('parallel', 3), ('overview', 3), ('topic', 2), ('computer', 2), ('comprehensive', 1), ('work', 1), ('merges', 1), ('hottest', 1), ('science', 1), ('computing', 1), ('graphic', 1), ('selected', 1), ('table', 1), ('content', 1), ('accelerated', 1), ('rendering', 1), ('technique', 1), ('method', 1), ('image', 1), ('generation', 1), ('issue', 1), ('algorithm', 1), ('development', 1), ('base', 1), ('level', 1), ('implementation', 1), ('compari', 1)]
[('human', 2), ('artificial', 1), ('intelligence', 1), ('already', 1), ('pervaded', 1), ('life', 1), ('many', 1), ('subtle', 1), ('way', 1), ('react', 1), ('creation', 1), ('completely', 1), ('sentient', 1), ('super', 1), ('computer', 1), ('hyper', 1), ('intelligent', 1), ('brain', 1), ('without', 1), ('body', 1), ('omniscient', 1), ('omnipresent', 1), ('internet', 1), ('approach', 1), ('something', 1), ('distinguishable', 1), ('ap', 1)]
[('game', 2), ('explains', 2), ('npc', 2), ('capability', 2), ('learn', 1), ('make', 1), ('fun', 1), ('engaging', 1), ('building', 1), ('fundamental', 1), ('principle', 1), ('artificial', 1), ('intelligence', 1), ('funge', 1), ('create', 1), ('non', 1), ('player', 1), ('character', 1), ('progressively', 1), ('sophisticated', 1), ('starting', 1), ('basic', 1), ('acting', 1), ('world', 1), ('book', 1), ('develop', 1), ('perceive', 1), ('remem', 1)]
[('digital', 4), ('audio', 2), ('sound', 2), ('anecdote', 1), ('book', 1), ('discus', 1), ('analyzing', 1), ('processing', 1), ('creating', 1), ('recording', 1), ('many', 1), ('form', 1), ('music', 1), ('emphasizing', 1), ('opportunity', 1), ('presented', 1), ('medium', 1), ('made', 1), ('possible', 1), ('arrival', 1), ('inexpensive', 1), ('nearly', 1), ('ubiquitous', 1), ('computing', 1), ('equipment', 1), ('application', 1), ('technique', 1), ('indispensable', 1)]
[('ontology', 5), ('bio', 3), ('computational', 2), ('introduction', 1), ('explores', 1), ('background', 1), ('emphasizing', 1), ('algorithmic', 1), ('issue', 1), ('surrounding', 1), ('self', 1), ('contained', 1), ('text', 1), ('help', 1), ('reader', 1), ('understand', 1), ('ontological', 1), ('algorithm', 1), ('application', 1), ('first', 1), ('part', 1), ('book', 1), ('defines', 1), ('explains', 1), ('importan', 1)]
[('color', 5), ('paper', 2), ('image', 2), ('commentary', 1), ('editor', 1), ('comprehensive', 1), ('anthology', 1), ('area', 1), ('physic', 1), ('based', 1), ('vision', 1), ('put', 1), ('perspective', 1), ('guide', 1), ('reader', 1), ('thorough', 1), ('understanding', 1), ('basic', 1), ('field', 1), ('topic', 1), ('include', 1), ('formation', 1), ('reflection', 1), ('model', 1), ('segmentation', 1), ('constancy', 1), ('highlight', 1), ('analysis', 1)]
[('scientific', 3), ('mathematics', 2), ('non', 1), ('traditional', 1), ('introduction', 1), ('computation', 1), ('describes', 1), ('principle', 1), ('behind', 1), ('major', 1), ('method', 1), ('statistic', 1), ('applied', 1), ('visualization', 1), ('elsewhere', 1), ('way', 1), ('accessible', 1), ('large', 1), ('part', 1), ('community', 1), ('introductory', 1), ('material', 1), ('includes', 1), ('computational', 1), ('basic', 1), ('review', 1), ('coo', 1)]
[('security', 2), ('policy', 2), ('computing', 2), ('storage', 2), ('management', 2), ('driven', 1), ('cover', 1), ('recent', 1), ('advance', 1), ('parallelization', 1), ('application', 1), ('author', 1), ('incorporates', 1), ('wealth', 1), ('analysis', 1), ('including', 1), ('study', 1), ('intrusion', 1), ('detection', 1), ('key', 1), ('computer', 1), ('transactional', 1), ('book', 1), ('first', 1), ('describes', 1), ('multiple', 1), ('variable', 1), ('ind', 1)]
[('computer', 2), ('graphic', 2), ('theory', 2), ('practice', 1), ('provides', 1), ('complete', 1), ('integrated', 1), ('introduction', 1), ('area', 1), ('book', 1), ('requires', 1), ('basic', 1), ('knowledge', 1), ('calculus', 1), ('linear', 1), ('algebra', 1), ('making', 1), ('accessible', 1), ('introductory', 1), ('text', 1), ('student', 1), ('focus', 1), ('conceptual', 1), ('aspect', 1), ('covering', 1), ('fundamental', 1), ('mathematical', 1), ('model', 1), ('inher', 1)]
[('pattern', 2), ('analysis', 2), ('real', 2), ('signal', 2), ('model', 2), ('theory', 1), ('distinctive', 1), ('approach', 1), ('form', 1), ('world', 1), ('core', 1), ('design', 1), ('large', 1), ('variety', 1), ('probabilistic', 1), ('whose', 1), ('sample', 1), ('reproduce', 1), ('look', 1), ('feel', 1), ('variability', 1), ('bayesian', 1), ('statistical', 1), ('inference', 1), ('allows', 1), ('apply', 1)]
[('mathematical', 2), ('operation', 2), ('computer', 2), ('algebra', 2), ('expression', 2), ('book', 1), ('provides', 1), ('systematic', 1), ('approach', 1), ('algorithmic', 1), ('formulation', 1), ('implementation', 1), ('programming', 1), ('language', 1), ('viewpoint', 1), ('represented', 1), ('tree', 1), ('data', 1), ('object', 1), ('program', 1), ('using', 1), ('primitive', 1), ('analyze', 1)]
[('volume', 1), ('document', 1), ('result', 1), ('presentation', 1), ('related', 1), ('aspect', 1), ('geometric', 1), ('design', 1), ('second', 1), ('international', 1), ('conference', 1), ('curve', 1), ('surface', 1), ('held', 1), ('chamonix', 1), ('paper', 1), ('represent', 1), ('direction', 1), ('future', 1), ('research', 1), ('development', 1), ('many', 1), ('area', 1), ('application', 1), ('table', 1), ('content', 1), ('object', 1), ('oriented', 1), ('spline', 1), ('software', 1), ('int', 1)]
[('computer', 2), ('together', 1), ('compagnion', 1), ('volume', 1), ('book', 1), ('present', 1), ('practical', 1), ('introduction', 1), ('computing', 1), ('spline', 1), ('function', 1), ('fundamental', 1), ('tool', 1), ('fitting', 1), ('curve', 1), ('surface', 1), ('aided', 1), ('design', 1), ('cad', 1), ('graphic', 1)]
[('author', 1), ('present', 1), ('vision', 1), ('model', 1), ('us', 1), ('color', 1), ('information', 1), ('interpret', 1), ('effect', 1), ('shading', 1), ('highlight', 1), ('scene', 1), ('transcending', 1), ('traditional', 1), ('approach', 1), ('method', 1), ('lead', 1), ('reliable', 1), ('useful', 1), ('technique', 1), ('image', 1), ('understanding', 1)]
[('game', 2), ('physic', 2), ('practical', 2), ('implementing', 1), ('physical', 1), ('simulation', 1), ('real', 1), ('time', 1), ('complex', 1), ('task', 1), ('requires', 1), ('solid', 1), ('understanding', 1), ('wide', 1), ('range', 1), ('concept', 1), ('field', 1), ('mathematics', 1), ('software', 1), ('engineering', 1), ('book', 1), ('gem', 1), ('collection', 1), ('article', 1), ('area', 1), ('provides', 1), ('hand', 1), ('detail', 1), ('used', 1)]
[('surface', 2), ('volume', 1), ('document', 1), ('result', 1), ('presentation', 1), ('relating', 1), ('use', 1), ('wavelet', 1), ('theory', 1), ('method', 1), ('fitting', 1), ('image', 1), ('reconstruction', 1), ('second', 1), ('international', 1), ('conference', 1), ('curve', 1), ('held', 1), ('chamonix', 1), ('paper', 1), ('represent', 1), ('direction', 1), ('future', 1), ('research', 1), ('development', 1), ('many', 1), ('area', 1), ('application', 1)]
[('robot', 3), ('multi', 3), ('volume', 2), ('system', 2), ('comprehensive', 1), ('team', 1), ('standard', 1), ('reference', 1), ('provides', 1), ('essential', 1), ('agent', 1), ('robotics', 1), ('theory', 1), ('description', 1), ('exemplary', 1), ('implemented', 1), ('demonstrating', 1), ('key', 1), ('concept', 1), ('research', 1), ('information', 1), ('presented', 1), ('descriptive', 1), ('manner', 1), ('augme', 1)]
[('game', 3), ('engine', 3), ('torque', 2), ('use', 2), ('author', 1), ('take', 1), ('reader', 1), ('depth', 1), ('walkthrough', 1), ('popular', 1), ('powerful', 1), ('easy', 1), ('available', 1), ('today', 1), ('clear', 1), ('explanation', 1), ('create', 1), ('detailed', 1), ('discussion', 1), ('inner', 1), ('working', 1), ('book', 1), ('programmer', 1), ('interested', 1)]
[('book', 2), ('everyone', 1), ('interested', 1), ('computer', 1), ('graphic', 1), ('take', 1), ('exciting', 1), ('journey', 1), ('powered', 1), ('imagination', 1), ('love', 1), ('discovery', 1), ('invention', 1), ('chapter', 1), ('investigates', 1), ('unique', 1), ('topic', 1), ('give', 1), ('tool', 1), ('continue', 1), ('exploration', 1), ('examine', 1), ('possibility', 1), ('pop', 1), ('card', 1)]
[('game', 6), ('programming', 3), ('using', 2), ('first', 1), ('course', 1), ('programmingmost', 1), ('today', 1), ('commercial', 1), ('written', 1), ('created', 1), ('engine', 1), ('addressing', 1), ('key', 1), ('element', 1), ('provides', 1), ('complete', 1), ('date', 1), ('introduction', 1), ('code', 1), ('book', 1), ('carefully', 1), ('crafted', 1), ('technique', 1), ('intro', 1)]
[('fundamental', 2), ('research', 2), ('starting', 1), ('basic', 1), ('notion', 1), ('universal', 1), ('algebra', 1), ('selected', 1), ('topic', 1), ('introduces', 1), ('key', 1), ('element', 1), ('needed', 1), ('understand', 1), ('current', 1), ('field', 1), ('based', 1), ('author', 1), ('semester', 1), ('course', 1), ('text', 1), ('prepares', 1), ('student', 1), ('work', 1), ('providing', 1), ('solid', 1), ('grounding', 1), ('construction', 1), ('concept', 1)]
[('computer', 2), ('volume', 1), ('present', 1), ('practical', 1), ('introduction', 1), ('computing', 1), ('spline', 1), ('function', 1), ('fundamental', 1), ('tool', 1), ('fitting', 1), ('curve', 1), ('surface', 1), ('aided', 1), ('deisgn', 1), ('cad', 1), ('graphic', 1)]
[('character', 3), ('computer', 2), ('animation', 2), ('john', 1), ('funge', 1), ('introduces', 1), ('new', 1), ('approach', 1), ('creating', 1), ('autonomous', 1), ('cognitive', 1), ('modeling', 1), ('provides', 1), ('animated', 1), ('logic', 1), ('reasoning', 1), ('planning', 1), ('skill', 1), ('individual', 1), ('chapter', 1), ('book', 1), ('provide', 1), ('concrete', 1), ('example', 1), ('advanced', 1), ('automated', 1), ('cinematography', 1), ('real', 1), ('time', 1), ('game', 1), ('source', 1), ('code', 1), ('imag', 1)]
[('image', 2), ('processing', 2), ('matlab', 2), ('avoiding', 1), ('heavy', 1), ('mathematics', 1), ('lengthy', 1), ('programming', 1), ('detail', 1), ('digital', 1), ('algorithmic', 1), ('approach', 1), ('present', 1), ('easy', 1), ('methodology', 1), ('learning', 1), ('fundamental', 1), ('book', 1), ('applies', 1), ('algorithm', 1), ('using', 1), ('without', 1), ('bogging', 1), ('student', 1), ('syntactical', 1), ('debugging', 1), ('issue', 1), ('chapter', 1), ('typically', 1), ('compl', 1)]
[('algorithm', 3), ('algorithmic', 2), ('code', 2), ('illustrating', 1), ('power', 1), ('cryptanalysis', 1), ('describes', 1), ('method', 1), ('cryptographically', 1), ('relevant', 1), ('example', 1), ('focusing', 1), ('private', 1), ('public', 1), ('key', 1), ('cryptographic', 1), ('present', 1), ('either', 1), ('textual', 1), ('description', 1), ('pseudo', 1), ('program', 1), ('divided', 1), ('three', 1), ('part', 1), ('book', 1), ('begin', 1)]
[('color', 4), ('book', 1), ('provides', 1), ('reader', 1), ('understanding', 1), ('come', 1), ('used', 1), ('correctly', 1), ('many', 1), ('different', 1), ('application', 1), ('author', 1), ('first', 1), ('treat', 1), ('physic', 1), ('light', 1), ('interaction', 1), ('matter', 1), ('atomic', 1), ('level', 1), ('origin', 1), ('appreciated', 1), ('intimate', 1), ('relationship', 1), ('energy', 1)]
[('fuzzy', 2), ('computation', 2), ('use', 2), ('problem', 2), ('initially', 1), ('conceived', 1), ('methodology', 1), ('representation', 1), ('manipulation', 1), ('imprecise', 1), ('vague', 1), ('information', 1), ('found', 1), ('wide', 1), ('fall', 1), ('beyond', 1), ('originally', 1), ('intended', 1), ('scope', 1), ('application', 1), ('many', 1), ('scientist', 1), ('engineer', 1), ('paradigm', 1), ('tackle', 1), ('either', 1), ('intractable', 1)]
[('algorithm', 3), ('software', 2), ('program', 2), ('analysis', 2), ('book', 1), ('examined', 1), ('gap', 1), ('theory', 1), ('production', 1), ('focusing', 1), ('practical', 1), ('issue', 1), ('programmer', 1), ('companion', 1), ('carefully', 1), ('detail', 1), ('transition', 1), ('design', 1), ('resulting', 1), ('consisting', 1), ('main', 1), ('complementary', 1)]
[('book', 2), ('rendering', 2), ('technique', 2), ('run', 2), ('time', 2), ('focus', 1), ('advanced', 1), ('directx', 1), ('opengl', 1), ('shader', 1), ('language', 1), ('available', 1), ('includes', 1), ('article', 1), ('latest', 1), ('greatest', 1), ('real', 1), ('including', 1), ('mlaa', 1), ('adaptive', 1), ('volumetric', 1), ('shadow', 1), ('map', 1), ('light', 1), ('propagation', 1), ('volume', 1), ('wrinkle', 1), ('animation', 1), ('emphasizes', 1), ('te', 1)]
[('peer', 4), ('application', 2), ('using', 1), ('various', 1), ('process', 1), ('file', 1), ('sharing', 1), ('video', 1), ('streaming', 1), ('many', 1), ('research', 1), ('engineering', 1), ('issue', 1), ('still', 1), ('need', 1), ('tackled', 1), ('order', 1), ('advance', 1), ('technology', 1), ('computing', 1), ('architecture', 1), ('protocol', 1), ('challenge', 1), ('provides', 1), ('comprehensive', 1), ('theoretical', 1)]
[('console', 3), ('game', 3), ('anyone', 2), ('first', 1), ('time', 1), ('history', 1), ('microsoft', 1), ('opened', 1), ('exclusive', 1), ('gaming', 1), ('platform', 1), ('interested', 1), ('creating', 1), ('create', 1), ('xbox', 1), ('without', 1), ('publishing', 1), ('contract', 1), ('expensive', 1), ('hard', 1), ('developer', 1), ('version', 1), ('torque', 1), ('framework', 1), ('make', 1), ('development', 1), ('even', 1), ('easier', 1), ('wi', 1)]
[('bioinformatics', 2), ('hidden', 2), ('markov', 2), ('model', 2), ('method', 2), ('demonstrating', 1), ('many', 1), ('useful', 1), ('resource', 1), ('database', 1), ('benefit', 1), ('project', 1), ('handbook', 1), ('focus', 1), ('choose', 1), ('use', 1), ('various', 1), ('program', 1), ('available', 1), ('hmms', 1), ('book', 1), ('begin', 1), ('discussion', 1), ('key', 1), ('hmm', 1), ('related', 1), ('profile', 1), ('incl', 1)]
[('second', 2), ('edition', 2), ('topic', 2), ('technique', 2), ('algorithm', 1), ('theory', 1), ('computation', 1), ('handbook', 1), ('volume', 1), ('set', 1), ('provides', 1), ('date', 1), ('compendium', 1), ('fundamental', 1), ('computer', 1), ('science', 1), ('illustrates', 1), ('come', 1), ('together', 1), ('deliver', 1), ('efficient', 1), ('solution', 1), ('important', 1), ('practical', 1), ('problem', 1), ('new', 1), ('along', 1)]
[('modeling', 2), ('technique', 2), ('written', 1), ('researcher', 1), ('helped', 1), ('found', 1), ('shape', 1), ('field', 1), ('book', 1), ('definitive', 1), ('introduction', 1), ('geometric', 1), ('author', 1), ('present', 1), ('necessary', 1), ('curve', 1), ('surface', 1), ('representation', 1), ('computer', 1), ('aided', 1), ('focus', 1), ('used', 1), ('design', 1)]
[('technique', 4), ('cover', 2), ('book', 1), ('essential', 1), ('tool', 1), ('programming', 1), ('graphic', 1), ('processing', 1), ('unit', 1), ('brought', 1), ('wolfgang', 1), ('engel', 1), ('team', 1), ('editor', 1), ('made', 1), ('shaderx', 1), ('series', 1), ('success', 1), ('volume', 1), ('advanced', 1), ('rendering', 1), ('engine', 1), ('design', 1), ('gpgpu', 1), ('related', 1), ('mathematical', 1), ('game', 1), ('postmortem', 1), ('special', 1), ('emphasi', 1)]
[('c', 4), ('programming', 3), ('scala', 3), ('language', 2), ('using', 2), ('flexibility', 1), ('small', 1), ('large', 1), ('project', 1), ('ideal', 1), ('teaching', 1), ('beginning', 1), ('yet', 1), ('textbook', 1), ('currently', 1), ('available', 1), ('level', 1), ('introduction', 1), ('art', 1), ('present', 1), ('many', 1), ('concept', 1), ('modern', 1), ('jvm', 1), ('based', 1), ('work', 1)]
[('system', 5), ('reliable', 2), ('classic', 1), ('reference', 1), ('work', 1), ('comprehensive', 1), ('guide', 1), ('design', 1), ('evaluation', 1), ('use', 1), ('computer', 1), ('includes', 1), ('case', 1), ('study', 1), ('manufacturer', 1), ('tandem', 1), ('stratus', 1), ('ibm', 1), ('digital', 1), ('cover', 1), ('special', 1), ('galileo', 1), ('orbiter', 1), ('fault', 1), ('protection', 1), ('telephone', 1), ('switching', 1), ('processor', 1)]
[('plus', 2), ('new', 2), ('graphical', 2), ('first', 1), ('edition', 1), ('book', 1), ('published', 1), ('evolved', 1), ('markedly', 1), ('method', 1), ('analysis', 1), ('procedure', 1), ('convenient', 1), ('user', 1), ('interface', 1), ('gui', 1), ('today', 1), ('statistical', 1), ('software', 1), ('choice', 1), ('many', 1), ('applied', 1), ('researcher', 1), ('discipline', 1), ('ranging', 1), ('finance', 1), ('medicine', 1), ('combining', 1), ('command', 1), ('line', 1), ('languag', 1)]
[('book', 1), ('brings', 1), ('together', 1), ('number', 1), ('researcher', 1), ('developer', 1), ('industry', 1), ('academia', 1), ('report', 1), ('work', 1), ('interest', 1), ('language', 1), ('designer', 1), ('creator', 1), ('toolkits', 1), ('uimss', 1), ('user', 1), ('interface', 1), ('tool', 1)]
[('program', 2), ('comprehensive', 1), ('volume', 1), ('address', 1), ('global', 1), ('challenge', 1), ('recruiting', 1), ('girl', 1), ('woman', 1), ('major', 1), ('career', 1), ('information', 1), ('technology', 1), ('study', 1), ('illuminating', 1), ('prescriptive', 1), ('designing', 1), ('implementing', 1), ('intervention', 1), ('essential', 1), ('tool', 1), ('college', 1), ('faculty', 1), ('advisor', 1), ('implement', 1), ('activity', 1), ('designed', 1), ('promot', 1)]
[('design', 2), ('computer', 2), ('addressing', 1), ('issue', 1), ('engineering', 1), ('architecture', 1), ('book', 1), ('describes', 1), ('implementation', 1), ('micon', 1), ('system', 1), ('automating', 1), ('synthesis', 1), ('small', 1)]
[('computer', 3), ('book', 2), ('visual', 2), ('graphic', 2), ('comprehensive', 1), ('introduction', 1), ('computing', 1), ('dealing', 1), ('modeling', 1), ('synthesis', 1), ('data', 1), ('mean', 1), ('set', 1), ('apart', 1), ('text', 1), ('integrated', 1), ('coverage', 1), ('visualization', 1), ('topic', 1), ('including', 1), ('important', 1), ('technique', 1), ('subdivision', 1), ('multi', 1), ('resolution', 1), ('mo', 1)]
[('number', 3), ('book', 3), ('sum', 2), ('square', 2), ('integer', 2), ('theory', 2), ('first', 2), ('cover', 1), ('topic', 1), ('combinatorial', 1), ('relate', 1), ('counting', 1), ('representation', 1), ('certain', 1), ('introduces', 1), ('stimulating', 1), ('area', 1), ('research', 1), ('continues', 1), ('proliferate', 1), ('namely', 1), ('combine', 1), ('liouville', 1), ('element', 1)]
[('number', 3), ('theory', 3), ('exploring', 1), ('dynamic', 1), ('area', 1), ('mathematics', 1), ('advanced', 1), ('application', 1), ('cover', 1), ('wide', 1), ('range', 1), ('algebraic', 1), ('analytic', 1), ('combinatorial', 1), ('cryptographic', 1), ('geometric', 1), ('aspect', 1), ('written', 1), ('recognized', 1), ('leader', 1), ('algebra', 1), ('book', 1), ('includes', 1), ('page', 1), ('reference', 1), ('every', 1), ('citing', 1), ('bibliography', 1), ('mo', 1)]
[('spline', 3), ('smoothing', 3), ('application', 2), ('general', 1), ('class', 1), ('powerful', 1), ('flexible', 1), ('modeling', 1), ('technique', 1), ('attracted', 1), ('deal', 1), ('research', 1), ('attention', 1), ('recent', 1), ('year', 1), ('widely', 1), ('used', 1), ('many', 1), ('area', 1), ('medicine', 1), ('economics', 1), ('method', 1), ('cover', 1), ('basic', 1), ('model', 1), ('including', 1), ('polynomial', 1), ('periodic', 1), ('spherical', 1)]
[('ray', 2), ('process', 2), ('increase', 1), ('computing', 1), ('speed', 1), ('due', 1), ('high', 1), ('quality', 1), ('optical', 1), ('effect', 1), ('achieves', 1), ('tracing', 1), ('becoming', 1), ('popular', 1), ('choice', 1), ('interactive', 1), ('animated', 1), ('rendering', 1), ('book', 1), ('take', 1), ('reader', 1), ('whole', 1), ('building', 1), ('modern', 1), ('tracer', 1), ('scratch', 1), ('concept', 1), ('explained', 1), ('detail', 1), ('aid', 1)]
[('pattern', 3), ('combinatorial', 2), ('matching', 2), ('algorithm', 2), ('computational', 2), ('biology', 2), ('emphasizing', 1), ('search', 1), ('within', 1), ('biological', 1), ('sequence', 1), ('tree', 1), ('graph', 1), ('using', 1), ('perl', 1), ('show', 1), ('solve', 1), ('problem', 1), ('arise', 1), ('analysis', 1), ('genomic', 1), ('transcriptomic', 1), ('proteomic', 1), ('metabolomic', 1)]
[('based', 2), ('course', 2), ('real', 2), ('time', 2), ('rendering', 2), ('algorithm', 2), ('note', 1), ('siggraph', 1), ('teaching', 1), ('technique', 1), ('volumetric', 1), ('data', 1), ('effect', 1), ('cover', 1), ('application', 1), ('scientific', 1), ('visualization', 1), ('start', 1), ('basic', 1), ('texture', 1), ('ray', 1), ('casting', 1), ('improves', 1), ('expands', 1), ('incrementally', 1), ('book', 1), ('includes', 1), ('source', 1), ('code', 1), ('diagr', 1)]
[('interactive', 3), ('data', 2), ('analysis', 2), ('principle', 2), ('graphic', 1), ('example', 1), ('discus', 1), ('exploratory', 1), ('eda', 1), ('graphical', 1), ('method', 1), ('help', 1), ('gain', 1), ('insight', 1), ('generate', 1), ('new', 1), ('question', 1), ('hypothesis', 1), ('datasets', 1), ('fundamental', 1), ('statistical', 1), ('graphicsthe', 1), ('first', 1), ('part', 1), ('book', 1), ('summarizes', 1), ('methodology', 1), ('demon', 1)]
[('shape', 3), ('paper', 2), ('recovery', 2), ('commentary', 1), ('editor', 1), ('comprehensive', 1), ('anthology', 1), ('area', 1), ('physic', 1), ('based', 1), ('vision', 1), ('put', 1), ('perspective', 1), ('guide', 1), ('reader', 1), ('thorough', 1), ('understanding', 1), ('basic', 1), ('field', 1), ('topic', 1), ('include', 1), ('shading', 1), ('photometric', 1), ('stereo', 1), ('specular', 1), ('reflection', 1), ('interreflection', 1)]
[('data', 3), ('spatial', 2), ('geographic', 2), ('mining', 2), ('definitive', 1), ('volume', 1), ('cutting', 1), ('edge', 1), ('exploratory', 1), ('analysis', 1), ('massive', 1), ('spatiotemporal', 1), ('databasessince', 1), ('publication', 1), ('first', 1), ('edition', 1), ('knowledge', 1), ('discovery', 1), ('new', 1), ('technique', 1), ('warehousing', 1), ('gdw', 1), ('geovisualization', 1), ('gvis', 1), ('developed', 1), ('addition', 1), ('bee', 1)]
[('neural', 3), ('handbook', 2), ('network', 2), ('scientist', 2), ('engineer', 2), ('computation', 1), ('practical', 1), ('hand', 1), ('guide', 1), ('design', 1), ('implementation', 1), ('used', 1), ('tackle', 1), ('difficult', 1), ('time', 1), ('consuming', 1), ('problem', 1), ('bridge', 1), ('information', 1), ('pathway', 1), ('different', 1), ('discipline', 1), ('apply', 1), ('similar', 1), ('probl', 1)]
[('embedded', 2), ('system', 2), ('use', 2), ('ubiquitous', 1), ('today', 1), ('consumer', 1), ('driven', 1), ('society', 1), ('microprocessor', 1), ('hidden', 1), ('everyday', 1), ('product', 1), ('designed', 1), ('perform', 1), ('specific', 1), ('task', 1), ('effective', 1), ('requires', 1), ('engineer', 1), ('proficient', 1), ('phase', 1), ('effort', 1), ('planning', 1), ('design', 1), ('analysis', 1), ('manufacturing', 1), ('marketing', 1), ('taking', 1), ('sys', 1)]
[('operation', 3), ('arithmetic', 2), ('point', 2), ('text', 1), ('explains', 1), ('fundamental', 1), ('principle', 1), ('algorithm', 1), ('available', 1), ('performing', 1), ('digital', 1), ('computer', 1), ('include', 1), ('basic', 1), ('addition', 1), ('subtraction', 1), ('multiplication', 1), ('division', 1), ('fixed', 1), ('floating', 1), ('number', 1), ('system', 1), ('complex', 1), ('square', 1), ('root', 1), ('extraction', 1)]
[('level', 3), ('designer', 2), ('use', 2), ('good', 1), ('bad', 1), ('design', 1), ('make', 1), ('break', 1), ('game', 1), ('surprising', 1), ('little', 1), ('reference', 1), ('material', 1), ('exists', 1), ('beginning', 1), ('limited', 1), ('understanding', 1), ('tool', 1), ('technique', 1), ('achieve', 1), ('goal', 1), ('even', 1), ('define', 1), ('book', 1), ('first', 1), ('conceptual', 1), ('theoretical', 1), ('foundation', 1), ('build', 1)]
[('book', 2), ('indie', 2), ('em', 2), ('ups', 2), ('guide', 1), ('expanding', 1), ('world', 1), ('gaming', 1), ('help', 1), ('reader', 1), ('understand', 1), ('game', 1), ('important', 1), ('many', 1), ('entertainment', 1), ('industry', 1), ('cover', 1), ('puzzler', 1), ('platformers', 1), ('beat', 1), ('shoot', 1), ('role', 1), ('playing', 1), ('strategy', 1)]
[('machine', 3), ('learning', 2), ('algorithm', 2), ('book', 1), ('discus', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('different', 1), ('architecture', 1), ('statistical', 1), ('theory', 1), ('support', 1), ('vector', 1), ('used', 1), ('classification', 1), ('mapping', 1), ('spatially', 1), ('distributed', 1), ('data', 1), ('present', 1), ('basic', 1), ('geostatistical', 1), ('author', 1), ('describe', 1), ('new', 1), ('trend', 1), ('lea', 1)]
[('handbook', 3), ('information', 3), ('third', 2), ('edition', 2), ('computer', 2), ('science', 2), ('volume', 1), ('set', 1), ('computing', 1), ('previously', 1), ('provides', 1), ('date', 1), ('wide', 1), ('range', 1), ('topic', 1), ('system', 1), ('technology', 1), ('software', 1), ('engineering', 1), ('popular', 1), ('address', 1), ('dramatic', 1)]
[('paper', 2), ('commentary', 1), ('editor', 1), ('comprehensive', 1), ('anthology', 1), ('area', 1), ('physic', 1), ('based', 1), ('vision', 1), ('put', 1), ('perspective', 1), ('guide', 1), ('reader', 1), ('thorough', 1), ('understanding', 1), ('basic', 1), ('field', 1), ('topic', 1), ('include', 1), ('intensity', 1), ('reflection', 1), ('model', 1), ('polarization', 1), ('refraction', 1), ('camera', 1), ('calibration', 1), ('quantization', 1), ('sampling', 1), ('depth', 1), ('opt', 1)]
[('rsa', 3), ('attack', 2), ('variant', 2), ('thirty', 1), ('year', 1), ('first', 1), ('publicized', 1), ('remains', 1), ('active', 1), ('research', 1), ('area', 1), ('although', 1), ('several', 1), ('good', 1), ('survey', 1), ('exist', 1), ('either', 1), ('slightly', 1), ('outdated', 1), ('focus', 1), ('type', 1), ('offering', 1), ('updated', 1), ('look', 1), ('field', 1), ('cryptanalysis', 1), ('present', 1), ('best', 1), ('known', 1), ('mathematical', 1), ('main', 1), ('includin', 1)]
[('field', 3), ('article', 2), ('tool', 2), ('technique', 2), ('collection', 1), ('provides', 1), ('practical', 1), ('relevant', 1), ('tip', 1), ('working', 1), ('digital', 1), ('audio', 1), ('volume', 1), ('ii', 1), ('contribution', 1), ('expert', 1), ('includes', 1), ('recording', 1), ('synthesis', 1), ('signal', 1), ('processing', 1), ('spatialization', 1), ('computer', 1), ('music', 1), ('theory', 1), ('sound', 1), ('design', 1), ('sou', 1)]
[('programming', 3), ('logiql', 2), ('language', 2), ('build', 2), ('application', 2), ('new', 1), ('state', 1), ('art', 1), ('based', 1), ('datalog', 1), ('used', 1), ('combine', 1), ('transactional', 1), ('analytical', 1), ('graph', 1), ('probabilistic', 1), ('mathematical', 1), ('make', 1), ('possible', 1), ('hybrid', 1), ('previously', 1), ('required', 1), ('multiple', 1), ('database', 1), ('first', 1), ('book', 1), ('co', 1)]
[('computer', 3), ('human', 2), ('system', 2), ('interaction', 2), ('every', 1), ('complex', 1), ('machine', 1), ('includes', 1), ('critically', 1), ('important', 1), ('mean', 1), ('work', 1), ('operator', 1), ('computerized', 1), ('reduced', 1), ('performing', 1), ('based', 1), ('task', 1), ('today', 1), ('hci', 1), ('limited', 1), ('trained', 1), ('software', 1), ('user', 1), ('age', 1), ('use', 1), ('different', 1), ('kind', 1), ('gadget', 1)]
[('training', 4), ('autodesk', 2), ('welcome', 1), ('medium', 1), ('entertainment', 1), ('official', 1), ('courseware', 1), ('d', 1), ('max', 1), ('software', 1), ('consider', 1), ('book', 1), ('access', 1), ('pas', 1), ('production', 1), ('experience', 1), ('developer', 1), ('expert', 1), ('written', 1), ('self', 1), ('paced', 1), ('learning', 1), ('instructor', 1), ('led', 1), ('classroom', 1), ('manual', 1), ('teach', 1), ('fundamental', 1), ('using', 1)]
[('software', 3), ('engineering', 2), ('development', 2), ('approach', 2), ('playing', 1), ('increasingly', 1), ('significant', 1), ('role', 1), ('computing', 1), ('informatics', 1), ('necessitated', 1), ('complexity', 1), ('inherent', 1), ('large', 1), ('scale', 1), ('deal', 1), ('difficulty', 1), ('conventional', 1), ('life', 1), ('cycle', 1), ('giving', 1), ('way', 1), ('process', 1), ('system', 1), ('encompassing', 1)]
[('cognitive', 3), ('radio', 2), ('spectrum', 2), ('cooperative', 1), ('network', 1), ('complete', 1), ('cycle', 1), ('provides', 1), ('solid', 1), ('understanding', 1), ('foundation', 1), ('technology', 1), ('sensing', 1), ('access', 1), ('handoff', 1), ('routing', 1), ('trading', 1), ('security', 1), ('written', 1), ('tutorial', 1), ('style', 1), ('several', 1), ('illustrative', 1), ('example', 1), ('comprehensive', 1), ('book', 1), ('give', 1), ('overview', 1)]
[('arm', 3), ('cortex', 3), ('assembly', 2), ('language', 2), ('delivering', 1), ('solid', 1), ('introduction', 1), ('embedded', 1), ('system', 1), ('fundamental', 1), ('technique', 1), ('second', 1), ('edition', 1), ('continues', 1), ('support', 1), ('popular', 1), ('tdmi', 1), ('address', 1), ('latest', 1), ('architecture', 1), ('including', 1), ('processor', 1), ('slightly', 1), ('different', 1), ('instruction', 1), ('set', 1)]
[('tool', 2), ('applied', 2), ('geometry', 2), ('computer', 2), ('sampler', 1), ('useful', 1), ('computational', 1), ('graphic', 1), ('image', 1), ('processing', 1), ('show', 1), ('use', 1), ('collection', 1), ('mathematical', 1), ('technique', 1), ('solve', 1), ('important', 1), ('problem', 1), ('mathematics', 1), ('science', 1), ('area', 1), ('book', 1), ('discus', 1), ('fundamental', 1), ('analytical', 1), ('linear', 1), ('algebra', 1), ('cover', 1), ('wide', 1), ('range', 1), ('topic', 1)]
[('testing', 4), ('combinatorial', 3), ('advanced', 2), ('software', 1), ('analyzes', 1), ('interaction', 1), ('among', 1), ('variable', 1), ('using', 1), ('small', 1), ('number', 1), ('test', 1), ('approach', 1), ('demonstrated', 1), ('success', 1), ('providing', 1), ('strong', 1), ('low', 1), ('cost', 1), ('real', 1), ('world', 1), ('situation', 1), ('introduction', 1), ('present', 1), ('complete', 1), ('self', 1), ('contained', 1), ('tutorial', 1), ('method', 1)]
[('ed', 2), ('classification', 2), ('work', 1), ('revised', 1), ('updated', 1), ('include', 1), ('anglo', 1), ('american', 1), ('cataloguing', 1), ('rule', 1), ('nd', 1), ('dewey', 1), ('decimal', 1), ('system', 1), ('st', 1), ('library', 1), ('congress', 1), ('schedule', 1), ('text', 1), ('detail', 1), ('essential', 1), ('element', 1), ('international', 1), ('standard', 1), ('bibliographic', 1), ('description', 1), ('introduces', 1), ('associated', 1), ('oclc', 1), ('marc', 1)]
[('matlab', 4), ('programming', 1), ('environment', 1), ('often', 1), ('perceived', 1), ('platform', 1), ('suitable', 1), ('prototyping', 1), ('modeling', 1), ('serious', 1), ('application', 1), ('main', 1), ('complaint', 1), ('slow', 1), ('accelerating', 1), ('performance', 1), ('aim', 1), ('correct', 1), ('perception', 1), ('describing', 1), ('multiple', 1), ('way', 1), ('greatly', 1), ('improve', 1), ('program', 1), ('speed', 1), ('packed', 1), ('tho', 1)]
[('system', 2), ('user', 2), ('ubiquitous', 1), ('atmosphere', 1), ('intelligent', 1), ('adaptive', 1), ('ia', 1), ('surround', 1), ('daily', 1), ('life', 1), ('designed', 1), ('sense', 1), ('environment', 1), ('provide', 1), ('support', 1), ('manner', 1), ('responsive', 1), ('evolving', 1), ('situation', 1), ('unnoticed', 1), ('synthesis', 1), ('recent', 1), ('research', 1), ('development', 1)]
[('game', 4), ('guide', 2), ('audio', 2), ('sound', 2), ('essential', 1), ('theory', 1), ('practice', 1), ('first', 1), ('kind', 1), ('textbook', 1), ('reference', 1), ('everything', 1), ('wanted', 1), ('know', 1), ('book', 1), ('provides', 1), ('basic', 1), ('overview', 1), ('developed', 1), ('time', 1), ('make', 1), ('career', 1), ('industry', 1), ('chapter', 1)]
[('sport', 3), ('science', 3), ('engineering', 2), ('computer', 2), ('international', 2), ('conference', 2), ('held', 2), ('contains', 1), ('paper', 1), ('presented', 1), ('sscs', 1), ('september', 1), ('singapore', 1), ('biomechanics', 1), ('bse', 1), ('october', 1), ('riga', 1), ('latvia', 1), ('contribution', 1), ('hav', 1)]
[('color', 7), ('field', 2), ('digital', 2), ('computer', 2), ('graphic', 2), ('maureen', 1), ('stone', 1), ('guide', 1), ('present', 1), ('survey', 1), ('special', 1), ('emphasis', 1), ('important', 1), ('book', 1), ('provides', 1), ('foundation', 1), ('understanding', 1), ('application', 1), ('discus', 1), ('medium', 1), ('management', 1), ('use', 1), ('including', 1), ('design', 1), ('selecti', 1)]
[('algebra', 3), ('applied', 2), ('data', 2), ('using', 1), ('mathematical', 1), ('tool', 1), ('number', 1), ('theory', 1), ('finite', 1), ('field', 1), ('code', 1), ('cipher', 1), ('discrete', 1), ('algorithm', 1), ('second', 1), ('edition', 1), ('present', 1), ('practical', 1), ('method', 1), ('solving', 1), ('problem', 1), ('security', 1), ('integrity', 1), ('designed', 1), ('course', 1), ('student', 1), ('prior', 1), ('class', 1), ('abstract', 1), ('linear', 1)]
[('selection', 2), ('arrangement', 2), ('set', 2), ('property', 2), ('accessible', 1), ('undergraduate', 1), ('student', 1), ('introduction', 1), ('combinatorics', 1), ('present', 1), ('approach', 1), ('solving', 1), ('counting', 1), ('structural', 1), ('question', 1), ('look', 1), ('many', 1), ('way', 1), ('chosen', 1), ('specific', 1), ('determines', 1), ('object', 1), ('exists', 1), ('particular', 1)]
[('java', 4), ('student', 2), ('immersing', 1), ('virtual', 1), ('machine', 1), ('jvm', 1), ('introduction', 1), ('compiler', 1), ('construction', 1), ('world', 1), ('enables', 1), ('deep', 1), ('understanding', 1), ('programming', 1), ('language', 1), ('implementation', 1), ('text', 1), ('focus', 1), ('design', 1), ('organization', 1), ('testing', 1), ('helping', 1), ('learn', 1), ('good', 1), ('software', 1), ('engineering', 1), ('skill', 1), ('become', 1), ('better', 1), ('programmer', 1), ('bo', 1)]
[('network', 3), ('software', 2), ('defined', 2), ('networking', 2), ('sdn', 2), ('design', 1), ('deployment', 1), ('provides', 1), ('comprehensive', 1), ('treatment', 1), ('suitable', 1), ('new', 1), ('manager', 1), ('experienced', 1), ('professional', 1), ('presenting', 1), ('context', 1), ('familiar', 1), ('service', 1), ('challenge', 1), ('accessible', 1), ('text', 1), ('explains', 1), ('importance', 1), ('virtualization', 1), ('particularly', 1)]
[('power', 4), ('efficiency', 3), ('wireless', 2), ('communication', 2), ('device', 2), ('broadband', 1), ('focus', 1), ('improvement', 1), ('system', 1), ('especially', 1), ('mobile', 1), ('reviewing', 1), ('cutting', 1), ('edge', 1), ('technique', 1), ('conserving', 1), ('boosting', 1), ('book', 1), ('examines', 1), ('various', 1), ('technology', 1), ('impact', 1), ('consumer', 1), ('considers', 1), ('tec', 1)]
[('computing', 2), ('security', 2), ('case', 2), ('study', 2), ('today', 1), ('age', 1), ('wireless', 1), ('mobile', 1), ('network', 1), ('computer', 1), ('paramount', 1), ('secure', 1), ('achievement', 1), ('trend', 1), ('gather', 1), ('latest', 1), ('research', 1), ('researcher', 1), ('share', 1), ('insight', 1), ('best', 1), ('practice', 1), ('illustrative', 1), ('book', 1), ('examines', 1), ('growing', 1), ('attack', 1), ('countermeasure', 1)]
[('regularization', 2), ('optimization', 2), ('kernel', 2), ('support', 2), ('machine', 2), ('large', 2), ('scale', 2), ('vector', 1), ('offer', 1), ('snapshot', 1), ('current', 1), ('state', 1), ('art', 1), ('learning', 1), ('providing', 1), ('single', 1), ('multidisciplinary', 1), ('source', 1), ('latest', 1), ('research', 1), ('advance', 1), ('sparsity', 1), ('compressed', 1), ('sensing', 1), ('convex', 1), ('method', 1), ('vecto', 1)]
[('design', 2), ('computer', 2), ('book', 1), ('allows', 1), ('reader', 1), ('expand', 1), ('versatility', 1), ('autocad', 1), ('documentation', 1), ('software', 1), ('provides', 1), ('ready', 1), ('use', 1), ('procedure', 1), ('program', 1), ('solving', 1), ('problem', 1), ('variety', 1), ('application', 1), ('area', 1), ('including', 1), ('aided', 1), ('data', 1), ('visualization', 1), ('evolutionary', 1), ('computation', 1), ('numerical', 1), ('method', 1), ('single', 1), ('multicriteria', 1), ('optimization', 1), ('li', 1)]
[('manual', 1), ('developing', 1), ('policy', 1), ('procedure', 1), ('maintain', 1), ('security', 1), ('information', 1), ('system', 1), ('network', 1), ('workplace', 1), ('provides', 1), ('numerous', 1), ('checklist', 1), ('example', 1), ('existing', 1), ('program', 1), ('use', 1), ('guideline', 1), ('creating', 1), ('document', 1), ('learn', 1), ('identify', 1), ('company', 1), ('overall', 1)]
[('net', 3), ('framework', 2), ('packed', 1), ('code', 1), ('example', 1), ('screen', 1), ('shot', 1), ('programming', 1), ('visual', 1), ('explains', 1), ('managed', 1), ('extension', 1), ('provides', 1), ('complete', 1), ('reference', 1), ('basic', 1), ('advanced', 1), ('type', 1), ('contained', 1), ('system', 1), ('namesp', 1)]
[('information', 2), ('offering', 1), ('hundred', 1), ('tip', 1), ('template', 1), ('checklist', 1), ('pointer', 1), ('public', 1), ('domain', 1), ('business', 1), ('resumption', 1), ('planning', 1), ('second', 1), ('edition', 1), ('assist', 1), ('creating', 1), ('rock', 1), ('solid', 1), ('recovery', 1), ('plan', 1), ('size', 1), ('organization', 1), ('provides', 1), ('need', 1), ('order', 1), ('coordinate', 1), ('first', 1), ('responder', 1), ('meet', 1), ('disaster', 1), ('scenario', 1), ('head', 1), ('whether', 1), ('inv', 1)]
[('network', 3), ('installing', 2), ('wi', 2), ('fi', 2), ('wireless', 2), ('make', 1), ('informed', 1), ('decision', 1), ('planning', 1), ('book', 1), ('help', 1), ('tackle', 1), ('challenge', 1), ('whether', 1), ('within', 1), ('existing', 1), ('corporate', 1), ('setting', 1), ('scratch', 1), ('business', 1)]
[('want', 1), ('grasp', 1), ('full', 1), ('length', 1), ('breadth', 1), ('rapidly', 1), ('developing', 1), ('computer', 1), ('telephony', 1), ('field', 1), ('book', 1), ('place', 1), ('start', 1), ('author', 1), ('richard', 1), ('grigonis', 1), ('thoroughly', 1), ('explains', 1), ('even', 1), ('abstruse', 1), ('idea', 1), ('concise', 1), ('manner', 1), ('aimed', 1), ('kind', 1), ('reader', 1), ('student', 1), ('business', 1), ('executive', 1), ('telecom', 1), ('manager', 1), ('call', 1), ('center', 1), ('supervisor', 1), ('entrep', 1)]
[('describes', 1), ('quantitative', 1), ('research', 1), ('process', 1), ('framing', 1), ('analytical', 1), ('question', 1), ('developing', 1), ('comprehensive', 1), ('outline', 1), ('providing', 1), ('roadmap', 1), ('reader', 1), ('accessing', 1), ('indispensable', 1), ('computer', 1), ('program', 1), ('tool', 1), ('supply', 1), ('end', 1), ('chapter', 1), ('checklist', 1), ('extensive', 1), ('example', 1), ('biobliographies', 1)]
[('telephone', 5), ('book', 1), ('help', 1), ('professional', 1), ('reduce', 1), ('job', 1), ('stress', 1), ('enhance', 1), ('communication', 1), ('skill', 1), ('build', 1), ('stronger', 1), ('customer', 1), ('relationship', 1), ('learn', 1), ('practical', 1), ('common', 1), ('sense', 1), ('strategy', 1), ('really', 1), ('work', 1)]
[('control', 2), ('robot', 2), ('complete', 1), ('b', 1), ('command', 1), ('reference', 1), ('demo', 1), ('project', 1), ('include', 1), ('internet', 1), ('stamp', 1), ('gateway', 1), ('infrared', 1), ('remote', 1), ('test', 1), ('instrumentation', 1), ('motor', 1), ('want', 1), ('build', 1), ('electronic', 1), ('game', 1), ('automated', 1), ('manufacturing', 1), ('process', 1)]
[('ready', 2), ('successful', 2), ('anyone', 1), ('launch', 1), ('career', 1), ('sale', 1), ('telecom', 1), ('equipment', 1), ('service', 1), ('technology', 1), ('veteran', 1), ('break', 1), ('higher', 1), ('level', 1), ('book', 1), ('provides', 1), ('practical', 1), ('eight', 1), ('step', 1), ('program', 1), ('selling', 1)]
[('home', 3), ('reap', 1), ('benefit', 1), ('workplace', 1), ('revolution', 1), ('practical', 1), ('resource', 1), ('guide', 1), ('manager', 1), ('employee', 1), ('working', 1), ('either', 1), ('full', 1), ('part', 1), ('time', 1), ('charged', 1), ('establishing', 1), ('executing', 1), ('work', 1), ('policy', 1), ('business', 1)]
[('graduate', 2), ('number', 2), ('advanced', 2), ('developed', 1), ('author', 1), ('popular', 1), ('level', 1), ('course', 1), ('computational', 1), ('theory', 1), ('present', 1), ('complete', 1), ('treatment', 1), ('theoretic', 1), ('algorithm', 1), ('avoiding', 1), ('algebra', 1), ('self', 1), ('contained', 1), ('text', 1), ('designed', 1), ('undergraduate', 1), ('beginning', 1), ('student', 1), ('engineering', 1), ('suitable', 1), ('researcher', 1), ('new', 1), ('field', 1), ('pract', 1)]
[('security', 3), ('homeland', 1), ('massive', 1), ('enterprise', 1), ('get', 1), ('larger', 1), ('moment', 1), ('mostly', 1), ('tsa', 1), ('aviation', 1), ('concern', 1), ('evolved', 1), ('multidimensional', 1), ('operation', 1), ('covering', 1), ('broad', 1), ('array', 1), ('discipline', 1), ('include', 1), ('critical', 1), ('infrastructure', 1), ('protection', 1), ('border', 1), ('transportation', 1), ('intelligence', 1), ('counterterrorism', 1), ('emergency', 1)]
[('data', 5), ('mining', 4), ('social', 3), ('big', 2), ('hypothesis', 2), ('book', 1), ('focus', 1), ('basic', 1), ('concept', 1), ('related', 1), ('technology', 1), ('medial', 1), ('topic', 1), ('include', 1), ('making', 1), ('multivariate', 1), ('analysis', 1), ('verifying', 1), ('web', 1), ('medium', 1), ('natural', 1), ('language', 1), ('processing', 1), ('application', 1), ('scalability', 1), ('explains', 1)]
[('example', 2), ('application', 2), ('extend', 1), ('modify', 1), ('mfc', 1), ('code', 1), ('meet', 1), ('need', 1), ('author', 1), ('john', 1), ('swanke', 1), ('delivers', 1), ('studied', 1), ('give', 1), ('jump', 1), ('start', 1), ('creating', 1), ('sophisticated', 1), ('powerful', 1), ('fully', 1), ('annotated', 1), ('ready', 1), ('insert', 1)]
[('voice', 3), ('frame', 2), ('relay', 2), ('network', 2), ('saving', 2), ('next', 1), ('practical', 1), ('way', 1), ('reduce', 1), ('cost', 1), ('putting', 1), ('tie', 1), ('line', 1), ('data', 1), ('pay', 1), ('back', 1), ('additional', 1), ('investment', 1), ('equipment', 1), ('month', 1), ('international', 1), ('circuit', 1), ('large', 1), ('enough', 1), ('threaten', 1), ('present', 1), ('tariff', 1), ('structure', 1), ('help', 1), ('fcc', 1)]
[('today', 3), ('customer', 3), ('economy', 2), ('global', 1), ('better', 1), ('choice', 1), ('bringing', 1), ('biggest', 1), ('challenge', 1), ('business', 1), ('community', 1), ('face', 1), ('loyalty', 1), ('retention', 1), ('thrive', 1), ('driven', 1), ('company', 1), ('need', 1)]
[('cybernetics', 2), ('light', 1), ('enormous', 1), ('interest', 1), ('building', 1), ('intelligent', 1), ('system', 1), ('volume', 1), ('blend', 1), ('theory', 1), ('application', 1), ('methodology', 1), ('taking', 1), ('realm', 1), ('abstract', 1), ('explaining', 1), ('contribute', 1), ('improved', 1), ('understanding', 1), ('intelligence', 1), ('among', 1), ('topic', 1)]
[('business', 2), ('book', 2), ('content', 2), ('first', 1), ('come', 1), ('desk', 1), ('merit', 1), ('mention', 1), ('good', 1), ('liked', 1), ('fact', 1), ('gave', 1), ('overview', 1), ('perspective', 1), ('brings', 1), ('smart', 1), ('information', 1), ('uninformed', 1), ('manager', 1)]
[('groupware', 3), ('application', 2), ('domino', 2), ('harness', 1), ('power', 1), ('reshape', 1), ('business', 1), ('process', 1), ('customer', 1), ('interaction', 1), ('book', 1), ('permit', 1), ('implement', 1), ('web', 1), ('based', 1), ('workflow', 1), ('using', 1), ('industry', 1), ('standard', 1), ('environment', 1), ('work', 1), ('demonstrates', 1), ('lotus', 1), ('note', 1), ('used', 1), ('deliver', 1), ('intranet', 1), ('extranets', 1)]
[('multimedia', 3), ('application', 2), ('architecture', 2), ('address', 1), ('wide', 1), ('selection', 1), ('programmable', 1), ('custom', 1), ('implementation', 1), ('system', 1), ('arithmetic', 1), ('design', 1), ('methodology', 1), ('book', 1), ('cover', 1), ('recent', 1), ('digital', 1), ('signal', 1), ('processing', 1), ('algorithm', 1), ('present', 1), ('high', 1), ('speed', 1), ('low', 1), ('priority', 1), ('binary', 1), ('finite', 1), ('field', 1)]
[('call', 3), ('center', 3), ('book', 1), ('work', 1), ('common', 1), ('trait', 1), ('location', 1), ('offer', 1), ('contains', 1), ('practical', 1), ('observation', 1), ('use', 1), ('particular', 1), ('technology', 1), ('idea', 1), ('run', 1), ('become', 1), ('corporate', 1), ('discipline', 1)]
[('book', 1), ('contains', 1), ('product', 1), ('specific', 1), ('information', 1), ('based', 1), ('cisco', 1), ('router', 1), ('command', 1), ('line', 1), ('interface', 1), ('ibm', 1), ('net', 1), ('view', 1), ('designed', 1), ('help', 1), ('understand', 1), ('part', 1), ('piece', 1), ('communication', 1), ('determine', 1), ('component', 1), ('fit', 1), ('together', 1), ('look', 1), ('bill', 1)]
[('computer', 2), ('application', 2), ('proceeding', 1), ('volume', 1), ('brings', 1), ('together', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('presented', 1), ('international', 1), ('conference', 1), ('information', 1), ('technology', 1), ('engineering', 1), ('held', 1), ('december', 1), ('hong', 1), ('kong', 1), ('china', 1), ('specific', 1), ('topic', 1), ('consideration', 1), ('include', 1), ('computational', 1), ('intelligence', 1), ('science', 1), ('intelligent', 1)]
[('unified', 2), ('process', 2), ('present', 2), ('end', 1), ('standard', 1), ('developing', 1), ('object', 1), ('oriented', 1), ('component', 1), ('based', 1), ('software', 1), ('book', 1), ('third', 1), ('four', 1), ('volume', 1), ('series', 1), ('critical', 1), ('review', 1), ('author', 1), ('survey', 1), ('alte', 1)]
[('call', 4), ('center', 3), ('customer', 2), ('business', 2), ('technology', 1), ('three', 1), ('place', 1), ('arrive', 1), ('strategic', 1), ('asset', 1), ('core', 1), ('relationship', 1), ('strategy', 1), ('savvy', 1), ('exploration', 1), ('work', 1), ('fit', 1), ('big', 1), ('picture', 1)]
[('call', 4), ('center', 4), ('wish', 1), ('find', 1), ('north', 1), ('america', 1), ('biggest', 1), ('advanced', 1), ('really', 1), ('using', 1), ('technology', 1), ('want', 1), ('know', 1), ('successful', 1), ('solved', 1), ('problem', 1), ('behind', 1), ('basic', 1), ('function', 1), ('order', 1), ('handling', 1)]
[('unified', 2), ('process', 2), ('end', 1), ('standard', 1), ('developing', 1), ('object', 1), ('oriented', 1), ('component', 1), ('based', 1), ('software', 1), ('scott', 1), ('ambler', 1), ('think', 1), ('book', 1), ('four', 1), ('volume', 1), ('series', 1), ('present', 1), ('critical', 1), ('review', 1), ('designed', 1)]
[('guide', 2), ('often', 2), ('computer', 2), ('internet', 2), ('enough', 2), ('easy', 1), ('understand', 1), ('confusing', 1), ('jargon', 1), ('personal', 1), ('computing', 1), ('fad', 1), ('reference', 1), ('book', 1), ('written', 1), ('straightforward', 1), ('style', 1), ('informative', 1), ('library', 1), ('use', 1), ('informal', 1), ('general', 1), ('reading', 1), ('essential', 1), ('take', 1), ('practical', 1), ('look', 1), ('seen', 1)]
[('unified', 1), ('process', 1), ('end', 1), ('standard', 1), ('developing', 1), ('object', 1), ('oriented', 1), ('component', 1), ('based', 1), ('software', 1), ('book', 1), ('focus', 1), ('design', 1), ('implementation', 1), ('skeletal', 1), ('version', 1), ('system', 1), ('purpose', 1), ('testing', 1), ('early', 1), ('life', 1), ('cycle', 1), ('quality', 1), ('control', 1)]
[('today', 1), ('support', 1), ('operation', 1), ('face', 1), ('greater', 1), ('responsibility', 1), ('help', 1), ('desk', 1), ('customer', 1), ('expect', 1), ('assistance', 1), ('whatever', 1), ('channel', 1), ('choose', 1), ('matter', 1), ('type', 1), ('product', 1), ('service', 1), ('buy', 1), ('complete', 1), ('guide', 1)]
[('mfc', 2), ('programming', 2), ('jumpstart', 1), ('without', 1), ('tedious', 1), ('study', 1), ('learn', 1), ('together', 1), ('learning', 1), ('principle', 1), ('need', 1), ('know', 1), ('basis', 1), ('author', 1), ('richard', 1), ('raposa', 1), ('refined', 1), ('tutorial', 1), ('year', 1), ('teaching', 1), ('window', 1), ('quick', 1)]
[('system', 2), ('service', 2), ('anyone', 1), ('involved', 1), ('buying', 1), ('managing', 1), ('telephone', 1), ('book', 1), ('brings', 1), ('clarity', 1), ('confusing', 1), ('array', 1), ('product', 1), ('voicemail', 1), ('interactive', 1), ('voice', 1), ('response', 1), ('fax', 1), ('demand', 1), ('dsl', 1), ('etc', 1), ('author', 1), ('explains', 1), ('technology', 1), ('work', 1), ('practical', 1), ('application', 1), ('reader', 1), ('choose', 1), ('best', 1)]
[('new', 3), ('book', 2), ('provides', 1), ('vital', 1), ('information', 1), ('business', 1), ('technical', 1), ('legal', 1), ('practical', 1), ('consideration', 1), ('telecom', 1), ('world', 1), ('order', 1), ('offer', 1), ('complete', 1), ('overview', 1), ('technology', 1), ('marketing', 1), ('method', 1), ('competitor', 1), ('using', 1), ('around', 1)]
[('suggestion', 2), ('straightforward', 1), ('book', 1), ('provide', 1), ('insight', 1), ('necessary', 1), ('save', 1), ('organization', 1), ('revenue', 1), ('process', 1), ('bill', 1), ('auditing', 1), ('expense', 1), ('reduction', 1), ('savvy', 1), ('contract', 1), ('negotiation', 1), ('information', 1), ('technology', 1), ('professional', 1), ('find', 1), ('author', 1), ('useful', 1), ('yet', 1), ('uncomplicated', 1), ('implement', 1), ('used', 1)]
[('computing', 2), ('debut', 1), ('small', 1), ('inexpensive', 1), ('yet', 1), ('powerful', 1), ('portable', 1), ('computer', 1), ('coincided', 1), ('exponential', 1), ('growth', 1), ('internet', 1), ('making', 1), ('possible', 1), ('access', 1), ('resource', 1), ('information', 1), ('nearly', 1), ('location', 1), ('almost', 1), ('time', 1), ('new', 1), ('trend', 1), ('mobile', 1), ('poised', 1), ('become', 1), ('main', 1), ('technology', 1), ('driver', 1), ('decade', 1), ('come', 1), ('many', 1)]
[('security', 3), ('time', 2), ('today', 1), ('network', 1), ('administrator', 1), ('fully', 1), ('aware', 1), ('importance', 1), ('unfortunately', 1), ('neither', 1), ('resource', 1), ('full', 1), ('infosec', 1), ('expert', 1), ('oftentimes', 1), ('quick', 1), ('temporary', 1), ('fix', 1), ('expected', 1), ('majority', 1), ('book', 1), ('market', 1), ('little', 1), ('help', 1), ('either', 1), ('targeted', 1), ('toward', 1)]
[('transnav', 1), ('symposium', 1), ('held', 1), ('gdynia', 1), ('maritime', 1), ('university', 1), ('poland', 1), ('june', 1), ('brought', 1), ('together', 1), ('wide', 1), ('range', 1), ('participant', 1), ('world', 1), ('program', 1), ('offered', 1), ('variety', 1), ('contribution', 1), ('allowing', 1), ('look', 1), ('many', 1), ('aspect', 1), ('navigational', 1), ('safety', 1), ('various', 1), ('different', 1), ('point', 1), ('view', 1), ('topic', 1), ('presented', 1), ('discussed', 1), ('th', 1)]
[('wireless', 3), ('network', 3), ('machine', 2), ('sensor', 2), ('provide', 1), ('practical', 1), ('communication', 1), ('low', 1), ('cost', 1), ('popularity', 1), ('expected', 1), ('skyrocket', 1), ('next', 1), ('year', 1), ('duplicating', 1), ('recent', 1), ('explosion', 1), ('lan', 1), ('architecture', 1), ('protocol', 1), ('describes', 1), ('build', 1), ('layer', 1)]
[('system', 1), ('architect', 1), ('engineer', 1), ('field', 1), ('storage', 1), ('networking', 1), ('desktop', 1), ('computing', 1), ('electrical', 1), ('power', 1), ('distribution', 1), ('telecommunication', 1), ('need', 1), ('common', 1), ('flexible', 1), ('way', 1), ('managing', 1), ('heterogeneous', 1), ('device', 1), ('service', 1), ('web', 1), ('based', 1), ('enterprise', 1), ('management', 1), ('wbem', 1), ('component', 1), ('information', 1), ('model', 1), ('cim', 1), ('provide', 1), ('architecture', 1), ('language', 1), ('interface', 1)]
[('lan', 2), ('performance', 2), ('network', 2), ('enhancing', 1), ('fourth', 1), ('edition', 1), ('explains', 1), ('connect', 1), ('geographically', 1), ('separated', 1), ('appropriate', 1), ('bandwidth', 1), ('issue', 1), ('consider', 1), ('weighing', 1), ('use', 1), ('multiport', 1), ('dualport', 1), ('device', 1), ('estimate', 1), ('traffic', 1), ('new', 1), ('effect', 1), ('configuration', 1), ('change', 1), ('ethernet', 1), ('token', 1), ('ring', 1), ('design', 1)]
[('simulation', 3), ('step', 2), ('use', 1), ('modeling', 1), ('analysis', 1), ('becoming', 1), ('increasingly', 1), ('popular', 1), ('technique', 1), ('improving', 1), ('investigating', 1), ('process', 1), ('performance', 1), ('book', 1), ('practical', 1), ('easy', 1), ('follow', 1), ('reference', 1), ('offer', 1), ('date', 1), ('information', 1), ('procedure', 1), ('conducting', 1), ('study', 1), ('provides', 1), ('sample', 1), ('project', 1), ('support', 1), ('materi', 1)]
[('image', 2), ('acquisition', 2), ('processing', 2), ('labview', 2), ('labviewä', 1), ('combine', 1), ('general', 1), ('theory', 1), ('underpinnings', 1), ('ni', 1), ('vision', 1), ('toolkit', 1), ('example', 1), ('application', 1), ('real', 1), ('world', 1), ('case', 1), ('study', 1), ('clear', 1), ('systematic', 1), ('richly', 1), ('illustrated', 1), ('presentation', 1), ('designed', 1), ('programmer', 1), ('fill', 1), ('significant', 1)]
[('signature', 2), ('commerce', 2), ('act', 2), ('digital', 2), ('technology', 2), ('recent', 1), ('electronic', 1), ('global', 1), ('national', 1), ('public', 1), ('key', 1), ('cryptography', 1), ('certificate', 1), ('finally', 1), ('emerging', 1), ('ubiquitous', 1), ('part', 1), ('information', 1), ('landscape', 1), ('although', 1), ('around', 1), ('twenty', 1), ('year', 1), ('legislative', 1), ('move', 1), ('surely', 1), ('boost', 1)]
[('database', 3), ('oracle', 2), ('design', 2), ('way', 2), ('implement', 2), ('evolution', 1), ('led', 1), ('revolution', 1), ('practice', 1), ('physical', 1), ('structure', 1), ('become', 1), ('complex', 1), ('designer', 1), ('face', 1), ('multiple', 1), ('logical', 1), ('model', 1), ('student', 1), ('studying', 1), ('administration', 1), ('need', 1), ('able', 1), ('management', 1), ('system', 1)]
[('perspective', 2), ('artist', 2), ('master', 1), ('art', 1), ('linear', 1), ('animator', 1), ('illustrator', 1), ('comic', 1), ('book', 1), ('game', 1), ('anything', 1), ('need', 1), ('able', 1), ('create', 1), ('image', 1), ('accurately', 1), ('realistically', 1), ('show', 1), ('space', 1), ('dimension', 1), ('form', 1), ('simplifying', 1), ('guide', 1), ('thoughtfully', 1), ('clearly', 1), ('break', 1), ('principle', 1)]
[('game', 3), ('indie', 1), ('developer', 1), ('complete', 1), ('guide', 1), ('running', 1), ('studio', 1), ('climate', 1), ('industry', 1), ('never', 1), ('hotter', 1), ('set', 1), ('continue', 1), ('marketplace', 1), ('tablet', 1), ('console', 1), ('phone', 1), ('grow', 1), ('seemingly', 1), ('every', 1), ('day', 1), ('story', 1), ('successful', 1), ('app', 1), ('earned', 1), ('thousand', 1), ('downloads', 1), ('revenue', 1), ('market', 1), ('size', 1)]
[('software', 3), ('metric', 3), ('field', 2), ('modern', 1), ('emerged', 1), ('computer', 1), ('modeling', 1), ('statistical', 1), ('thinking', 1), ('service', 1), ('evolved', 1), ('program', 1), ('integrated', 1), ('project', 1), ('management', 1), ('grew', 1), ('major', 1), ('tool', 1), ('managerial', 1), ('decision', 1), ('making', 1), ('process', 1), ('company', 1), ('book', 1), ('simplifies', 1), ('measurement', 1)]
[('concurrency', 3), ('processing', 2), ('powerful', 1), ('technique', 1), ('developing', 1), ('efficient', 1), ('lightning', 1), ('fast', 1), ('software', 1), ('instance', 1), ('used', 1), ('common', 1), ('application', 1), ('online', 1), ('order', 1), ('speed', 1), ('ensure', 1), ('transaction', 1), ('reliability', 1), ('mastering', 1), ('greatest', 1), ('challenge', 1), ('new', 1), ('veteran', 1), ('programmer', 1), ('softwar', 1)]
[('framework', 3), ('process', 2), ('configuration', 2), ('management', 2), ('effective', 1), ('system', 1), ('development', 1), ('design', 1), ('far', 1), ('easier', 1), ('explain', 1), ('implement', 1), ('needed', 1), ('organizes', 1), ('life', 1), ('cycle', 1), ('activity', 1), ('form', 1), ('cm', 1), ('software', 1), ('discus', 1), ('standard', 1), ('viewpoint', 1), ('using', 1), ('original', 1)]
[('serial', 4), ('port', 3), ('interface', 2), ('popularity', 1), ('communication', 1), ('demand', 1), ('additional', 1), ('developed', 1), ('meet', 1), ('expanding', 1), ('requirement', 1), ('user', 1), ('window', 1), ('programming', 1), ('handbook', 1), ('illustrates', 1), ('principle', 1), ('method', 1), ('developing', 1), ('various', 1), ('using', 1), ('multiple', 1), ('language', 1), ('comprehensive', 1), ('hand', 1), ('practical', 1), ('guide', 1)]
[('digital', 4), ('video', 3), ('image', 1), ('sequence', 1), ('including', 1), ('increasingly', 1), ('common', 1), ('important', 1), ('component', 1), ('technical', 1), ('application', 1), ('ranging', 1), ('medical', 1), ('imaging', 1), ('multimedia', 1), ('communication', 1), ('autonomous', 1), ('vehicle', 1), ('navigation', 1), ('immense', 1), ('popularity', 1), ('dvd', 1), ('introduction', 1), ('television', 1), ('make', 1), ('ubiquitous', 1), ('consumer', 1), ('domain', 1)]
[('graphic', 6), ('pc', 2), ('handbook', 1), ('serf', 1), ('advanced', 1), ('programmer', 1), ('dealing', 1), ('specific', 1), ('hardware', 1), ('software', 1), ('discussion', 1), ('address', 1), ('programming', 1), ('window', 1), ('do', 1), ('device', 1), ('independent', 1), ('mathematics', 1), ('computer', 1), ('algorithm', 1), ('procedural', 1), ('oper', 1)]
[('internet', 5), ('business', 2), ('model', 2), ('making', 1), ('money', 1), ('function', 1), ('answer', 1), ('question', 1), ('determine', 1), ('shape', 1), ('near', 1), ('term', 1), ('continues', 1), ('evolve', 1), ('management', 1), ('demise', 1), ('greatly', 1), ('exaggerated', 1), ('continue', 1), ('driving', 1), ('forc', 1)]
[('transnav', 1), ('symposium', 1), ('held', 1), ('gdynia', 1), ('maritime', 1), ('university', 1), ('poland', 1), ('june', 1), ('brought', 1), ('together', 1), ('wide', 1), ('range', 1), ('participant', 1), ('world', 1), ('program', 1), ('offered', 1), ('variety', 1), ('contribution', 1), ('allowing', 1), ('look', 1), ('many', 1), ('aspect', 1), ('navigational', 1), ('safety', 1), ('various', 1), ('different', 1), ('point', 1), ('view', 1), ('topic', 1), ('presented', 1), ('discussed', 1), ('th', 1)]
[('software', 3), ('engineering', 2), ('rigor', 1), ('soon', 1), ('applied', 1), ('development', 1), ('process', 1), ('complexity', 1), ('new', 1), ('system', 1), ('initiate', 1), ('collapse', 1), ('company', 1), ('attempt', 1), ('produce', 1), ('specification', 1), ('design', 1), ('approach', 1), ('offer', 1), ('foundation', 1), ('rigorously', 1), ('engineered', 1), ('provides', 1), ('clear', 1), ('vision', 1), ('occurs', 1)]
[('network', 2), ('sensor', 2), ('field', 1), ('communication', 1), ('continues', 1), ('evolve', 1), ('challenging', 1), ('area', 1), ('wireless', 1), ('rapidly', 1), ('coming', 1), ('age', 1), ('recent', 1), ('advance', 1), ('made', 1), ('possible', 1), ('make', 1), ('component', 1), ('compact', 1), ('robust', 1), ('energy', 1), ('efficient', 1), ('earning', 1), ('idiosyncratic', 1), ('alias', 1), ('ofsmart', 1), ('dust', 1), ('production', 1), ('improved', 1), ('yielding', 1), ('larger', 1)]
[('integration', 3), ('solution', 2), ('distributed', 2), ('system', 2), ('service', 2), ('workflow', 2), ('application', 2), ('describing', 1), ('state', 1), ('art', 1), ('architecture', 1), ('present', 1), ('concise', 1), ('approach', 1), ('loosely', 1), ('coupled', 1), ('discus', 1), ('key', 1), ('challenge', 1), ('related', 1), ('proposes', 1), ('term', 1), ('th', 1)]
[('art', 5), ('pixel', 4), ('game', 2), ('create', 2), ('book', 2), ('video', 1), ('taking', 1), ('long', 1), ('learning', 1), ('answer', 1), ('development', 1), ('trouble', 1), ('uncover', 1), ('secret', 1), ('creating', 1), ('stunning', 1), ('graphic', 1), ('developer', 1), ('premier', 1), ('software', 1), ('focus', 1), ('universal', 1), ('principle', 1), ('craft', 1), ('provide', 1)]
[('touchless', 3), ('fingerprint', 2), ('offering', 1), ('first', 1), ('comprehensive', 1), ('analysis', 1), ('recognition', 1), ('technology', 1), ('biometrics', 1), ('give', 1), ('overview', 1), ('state', 1), ('art', 1), ('describes', 1), ('relevant', 1), ('industrial', 1), ('application', 1), ('present', 1), ('new', 1), ('technique', 1), ('efficiently', 1), ('effectively', 1), ('implement', 1), ('advanced', 1), ('solution', 1), ('based', 1), ('fingerprinting', 1)]
[('system', 4), ('software', 2), ('book', 1), ('describes', 1), ('fundamentally', 1), ('new', 1), ('approach', 1), ('dependability', 1), ('considering', 1), ('changing', 1), ('due', 1), ('change', 1), ('service', 1), ('objective', 1), ('user', 1), ('requirement', 1), ('standard', 1), ('regulation', 1), ('advance', 1), ('technology', 1), ('viewed', 1), ('open', 1), ('function', 1), ('structure', 1), ('boundary', 1), ('constan', 1)]
[('science', 3), ('computer', 2), ('application', 2), ('research', 2), ('asia', 1), ('pacific', 1), ('conference', 1), ('held', 1), ('shanghai', 1), ('december', 1), ('csac', 1), ('proceeding', 1), ('include', 1), ('selected', 1), ('paper', 1), ('focus', 1), ('technology', 1), ('aiming', 1), ('quick', 1), ('immediate', 1), ('effect', 1)]
[('technology', 4), ('information', 3), ('career', 2), ('education', 2), ('contains', 1), ('contribution', 1), ('presented', 1), ('international', 1), ('conference', 1), ('icitce', 1), ('hong', 1), ('kong', 1), ('china', 1), ('october', 1), ('book', 1), ('divided', 1), ('main', 1), ('topic', 1), ('vocational', 1), ('considerable', 1), ('attention', 1), ('paid', 1), ('el', 1)]
[('balancing', 2), ('creative', 2), ('struggle', 1), ('product', 1), ('innovative', 1), ('technically', 1), ('feasible', 1), ('financially', 1), ('sound', 1), ('designer', 1), ('web', 1), ('professional', 1), ('go', 1), ('every', 1), ('day', 1), ('design', 1), ('studio', 1), ('method', 1), ('problem', 1), ('solving', 1), ('process', 1), ('allows', 1), ('quickly', 1), ('generate', 1), ('idea', 1), ('evaluate', 1), ('reach', 1), ('consensus', 1), ('achieving', 1), ('act', 1)]
[('empirical', 4), ('research', 3), ('software', 3), ('engineering', 2), ('become', 1), ('essential', 1), ('component', 1), ('yet', 1), ('practitioner', 1), ('researcher', 1), ('often', 1), ('lack', 1), ('understanding', 1), ('procedure', 1), ('practice', 1), ('applied', 1), ('field', 1), ('concept', 1), ('analysis', 1), ('application', 1), ('show', 1), ('implement', 1), ('pro', 1)]
[('sequential', 2), ('verilog', 2), ('hdl', 2), ('machine', 2), ('logic', 1), ('fundamental', 1), ('discus', 1), ('analysis', 1), ('synthesis', 1), ('synchronous', 1), ('asynchronous', 1), ('implemented', 1), ('using', 1), ('hardware', 1), ('description', 1), ('language', 1), ('accordance', 1), ('institute', 1), ('electrical', 1), ('electronics', 1), ('engineer', 1), ('iee', 1), ('standard', 1), ('book', 1), ('concentrate', 1)]
[('game', 3), ('level', 2), ('reader', 2), ('quickly', 2), ('book', 1), ('teach', 1), ('student', 1), ('entry', 1), ('novice', 1), ('create', 1), ('using', 1), ('gamemaker', 1), ('engine', 1), ('hone', 1), ('design', 1), ('skill', 1), ('tutorial', 1), ('written', 1), ('beginner', 1), ('start', 1), ('building', 1), ('providing', 1), ('lesson', 1), ('designer', 1), ('add', 1), ('advanced', 1), ('option', 1)]
[('system', 4), ('cyber', 3), ('physical', 3), ('comprehensive', 2), ('need', 2), ('although', 1), ('knowledge', 1), ('cps', 1), ('becoming', 1), ('researcher', 1), ('practitioner', 1), ('designer', 1), ('policy', 1), ('maker', 1), ('manager', 1), ('administrator', 1), ('date', 1), ('source', 1), ('research', 1), ('information', 1), ('book', 1), ('fill', 1), ('syst', 1)]
[('sound', 3), ('virtual', 2), ('game', 2), ('real', 2), ('effect', 2), ('developer', 2), ('environment', 1), ('animated', 1), ('movie', 1), ('require', 1), ('realistic', 1), ('integrated', 1), ('computer', 1), ('synthesis', 1), ('book', 1), ('emphasizes', 1), ('physical', 1), ('modeling', 1), ('focus', 1), ('world', 1), ('interactive', 1), ('intended', 1), ('graphic', 1), ('programmer', 1), ('reality', 1), ('system', 1), ('traini', 1)]
[('animation', 3), ('bendazzi', 2), ('continuation', 1), ('groundbreaking', 1), ('cartoon', 1), ('giannalberto', 1), ('world', 1), ('history', 1), ('largest', 1), ('deepest', 1), ('comprehensive', 1), ('text', 1), ('kind', 1), ('based', 1), ('idea', 1), ('art', 1), ('form', 1), ('deserves', 1), ('place', 1), ('scholarship', 1), ('delf', 1), ('beyond', 1), ('disney', 1), ('offering', 1), ('reader', 1), ('glimpse', 1)]
[('animation', 3), ('bendazzi', 2), ('continuation', 1), ('groundbreaking', 1), ('cartoon', 1), ('giannalberto', 1), ('world', 1), ('history', 1), ('largest', 1), ('deepest', 1), ('comprehensive', 1), ('text', 1), ('kind', 1), ('based', 1), ('idea', 1), ('art', 1), ('form', 1), ('deserves', 1), ('place', 1), ('scholarship', 1), ('delf', 1), ('beyond', 1), ('disney', 1), ('offering', 1), ('reader', 1), ('glimpse', 1)]
[('software', 4), ('engineering', 4), ('evidence', 3), ('based', 3), ('decade', 1), ('idea', 1), ('adapting', 1), ('paradigm', 1), ('first', 1), ('proposed', 1), ('become', 1), ('major', 1), ('tool', 1), ('empirical', 1), ('systematic', 1), ('review', 1), ('provides', 1), ('clear', 1), ('introduction', 1), ('use', 1), ('model', 1), ('research', 1), ('practice', 1)]
[('animation', 3), ('bendazzi', 2), ('continuation', 1), ('groundbreaking', 1), ('cartoon', 1), ('giannalberto', 1), ('world', 1), ('history', 1), ('largest', 1), ('deepest', 1), ('comprehensive', 1), ('text', 1), ('kind', 1), ('based', 1), ('idea', 1), ('art', 1), ('form', 1), ('deserves', 1), ('place', 1), ('scholarship', 1), ('delf', 1), ('beyond', 1), ('disney', 1), ('offering', 1), ('reader', 1), ('glimpse', 1)]
[('system', 4), ('physical', 3), ('cyber', 2), ('cps', 2), ('sensor', 1), ('embedded', 1), ('networked', 1), ('together', 1), ('monitor', 1), ('manage', 1), ('range', 1), ('process', 1), ('continuous', 1), ('feedback', 1), ('allows', 1), ('distributed', 1), ('computing', 1), ('using', 1), ('wireless', 1), ('device', 1), ('computational', 1), ('perspective', 1), ('examines', 1), ('various', 1), ('development', 1), ('impacting', 1), ('daily', 1)]
[('network', 2), ('directional', 1), ('antenna', 1), ('technology', 1), ('made', 1), ('significant', 1), ('advancement', 1), ('last', 1), ('decade', 1), ('advance', 1), ('opened', 1), ('door', 1), ('many', 1), ('exciting', 1), ('new', 1), ('design', 1), ('opportunity', 1), ('wireless', 1), ('enhance', 1), ('quality', 1), ('service', 1), ('qos', 1), ('performance', 1), ('capacity', 1), ('book', 1), ('expert', 1), ('around', 1), ('world', 1), ('present', 1), ('latest', 1), ('research', 1), ('development', 1)]
[('game', 3), ('mathematics', 2), ('expert', 1), ('guidance', 1), ('math', 1), ('needed', 1), ('programmingdeveloped', 1), ('author', 1), ('popular', 1), ('developer', 1), ('conference', 1), ('gdc', 1), ('tutorial', 1), ('essential', 1), ('interactive', 1), ('application', 1), ('third', 1), ('edition', 1), ('illustrates', 1), ('importance', 1), ('programming', 1), ('show', 1), ('properly', 1), ('animate', 1), ('simulate', 1), ('render', 1), ('scene', 1), ('discus', 1)]
[('responsive', 4), ('website', 3), ('web', 2), ('design', 2), ('build', 2), ('debug', 2), ('use', 2), ('toolkit', 1), ('hammering', 1), ('shape', 1), ('focus', 1), ('nut', 1), ('bolt', 1), ('showing', 1), ('better', 1), ('technique', 1), ('book', 1), ('guide', 1), ('technology', 1), ('programmer', 1), ('test', 1), ('covering', 1), ('engineer', 1)]
[('highly', 1), ('recommend', 1), ('mr', 1), ('hobbs', 1), ('book', 1), ('stephen', 1), ('thomas', 1), ('pe', 1), ('founder', 1), ('editor', 1), ('functionalsafetyengineer', 1), ('safety', 1), ('critical', 1), ('device', 1), ('whether', 1), ('medical', 1), ('automotive', 1), ('industrial', 1), ('increasingly', 1), ('dependent', 1), ('correct', 1), ('operation', 1), ('sophisticated', 1), ('software', 1), ('many', 1), ('standard', 1), ('appeared', 1), ('last', 1), ('decade', 1), ('system', 1), ('designed', 1)]
[('communication', 3), ('limitation', 2), ('multi', 2), ('carrier', 2), ('system', 2), ('detailing', 1), ('advantage', 1), ('book', 1), ('proposes', 1), ('possible', 1), ('solution', 1), ('example', 1), ('matlab', 1), ('new', 1), ('perspective', 1), ('address', 1), ('primary', 1), ('drawback', 1), ('orthogonal', 1), ('frequency', 1), ('division', 1), ('multiplexing', 1), ('ofdm', 1), ('high', 1), ('sensitivity', 1)]
[('system', 3), ('real', 3), ('computer', 2), ('time', 2), ('communication', 2), ('digital', 1), ('revolutionized', 1), ('computation', 1), ('transformed', 1), ('used', 1), ('control', 1), ('life', 1), ('giving', 1), ('birth', 1), ('furthermore', 1), ('massive', 1), ('development', 1), ('domain', 1), ('made', 1), ('possible', 1), ('perform', 1), ('coordinated', 1), ('action', 1), ('interface', 1), ('resulting', 1), ('evoluti', 1)]
[('electronic', 3), ('commerce', 3), ('protocol', 2), ('edition', 2), ('business', 2), ('secure', 1), ('third', 1), ('present', 1), ('compendium', 1), ('securing', 1), ('consumer', 1), ('application', 1), ('attending', 1), ('variety', 1), ('payment', 1), ('system', 1), ('currently', 1), ('use', 1), ('around', 1), ('globe', 1), ('update', 1), ('chapter', 1), ('reflect', 1), ('latest', 1)]
[('design', 2), ('earth', 2), ('space', 2), ('accurate', 1), ('system', 1), ('requires', 1), ('comprehensive', 1), ('understanding', 1), ('various', 1), ('propagation', 1), ('medium', 1), ('phenomenon', 1), ('differ', 1), ('depending', 1), ('frequency', 1), ('type', 1), ('application', 1), ('choice', 1), ('relevant', 1), ('channel', 1), ('model', 1), ('crucial', 1), ('process', 1), ('constitutes', 1), ('key', 1), ('step', 1), ('performance', 1), ('evaluation', 1), ('testing', 1)]
[('research', 2), ('professional', 2), ('international', 1), ('conference', 1), ('applied', 1), ('system', 1), ('innovation', 1), ('icasi', 1), ('held', 1), ('osaka', 1), ('japan', 1), ('provided', 1), ('unified', 1), ('communication', 1), ('platform', 1), ('researcher', 1), ('active', 1), ('wide', 1), ('range', 1), ('field', 1), ('industry', 1), ('academia', 1), ('government', 1), ('encouraged', 1), ('discourse', 1), ('development', 1)]
[('virtual', 4), ('written', 2), ('world', 2), ('design', 2), ('creating', 2), ('environment', 2), ('successor', 1), ('immersive', 1), ('book', 1), ('carry', 1), ('idea', 1), ('brought', 1), ('forward', 1), ('predecessor', 1), ('new', 1), ('level', 1), ('exploration', 1), ('experimentation', 1), ('emmy', 1), ('award', 1), ('winning', 1), ('designer', 1), ('year', 1), ('experience', 1), ('television', 1)]
[('data', 4), ('stored', 2), ('although', 1), ('live', 1), ('era', 1), ('surrounded', 1), ('deepening', 1), ('fog', 1), ('truly', 1), ('understand', 1), ('created', 1), ('retrieve', 1), ('destroy', 1), ('indeed', 1), ('possible', 1), ('book', 1), ('whatever', 1), ('need', 1), ('interest', 1), ('electronically', 1), ('information', 1), ('complete', 1), ('guide', 1)]
[('visualization', 2), ('microsoft', 2), ('graph', 2), ('tool', 1), ('visual', 1), ('popular', 1), ('software', 1), ('standard', 1), ('combined', 1), ('foundation', 1), ('class', 1), ('mfc', 1), ('library', 1), ('window', 1), ('book', 1), ('explains', 1), ('create', 1), ('interactively', 1), ('solve', 1), ('problem', 1), ('theory', 1), ('minimum', 1), ('number', 1), ('code', 1), ('provide', 1), ('friendly', 1), ('interface', 1)]
[('computer', 2), ('network', 2), ('simulation', 1), ('using', 1), ('n', 1), ('provides', 1), ('solid', 1), ('foundation', 1), ('networking', 1), ('knowledge', 1), ('skill', 1), ('covering', 1), ('everything', 1), ('simple', 1), ('operating', 1), ('system', 1), ('command', 1), ('analysis', 1), ('complex', 1), ('performance', 1), ('metric', 1), ('book', 1), ('begin', 1), ('discussion', 1), ('evolution', 1), ('data', 1), ('communication', 1), ('technique', 1), ('fundamental', 1), ('issue', 1)]
[('web', 4), ('design', 3), ('typography', 2), ('create', 2), ('vast', 1), ('selection', 1), ('typeface', 1), ('available', 1), ('excuse', 1), ('using', 1), ('boring', 1), ('new', 1), ('visual', 1), ('hierarchy', 1), ('responsive', 1), ('show', 1), ('implement', 1), ('safe', 1), ('font', 1), ('visually', 1), ('appealing', 1), ('multi', 1), ('browser', 1), ('friendly', 1), ('website', 1), ('encouraging', 1), ('develop', 1)]
[('area', 4), ('software', 3), ('engineering', 3), ('core', 2), ('peripheral', 2), ('best', 1), ('way', 1), ('learn', 1), ('understanding', 1), ('foundation', 1), ('provides', 1), ('depth', 1), ('coverage', 1), ('essential', 1), ('becoming', 1), ('proficient', 1), ('field', 1), ('book', 1), ('devotes', 1), ('complete', 1), ('chapter', 1), ('several', 1)]
[('comedy', 2), ('animator', 2), ('make', 2), ('writer', 1), ('responsible', 1), ('creating', 1), ('clever', 1), ('script', 1), ('comedic', 1), ('complicated', 1), ('problem', 1), ('solve', 1), ('physical', 1), ('character', 1), ('funny', 1), ('break', 1), ('answer', 1), ('exploring', 1), ('technique', 1), ('used', 1), ('body', 1), ('others', 1), ('laugh', 1), ('drawing', 1), ('tradition', 1), ('commedia', 1)]
[('creative', 2), ('truth', 1), ('playbook', 1), ('starting', 1), ('building', 1), ('enjoying', 1), ('profitable', 1), ('design', 1), ('business', 1), ('whether', 1), ('solo', 1), ('freelancer', 1), ('working', 1), ('home', 1), ('small', 1), ('group', 1), ('entrepreneur', 1), ('ready', 1), ('next', 1), ('level', 1), ('roadmap', 1), ('success', 1), ('ceo', 1), ('cfo', 1), ('cto', 1), ('secretary', 1), ('janitor', 1), ('office', 1), ('manager', 1), ('everything', 1)]
[('game', 5), ('indie', 3), ('marketing', 2), ('learn', 1), ('market', 1), ('even', 1), ('small', 1), ('budget', 1), ('limited', 1), ('resource', 1), ('want', 1), ('earn', 1), ('regular', 1), ('income', 1), ('making', 1), ('nearly', 1), ('vital', 1), ('success', 1), ('practical', 1), ('guide', 1), ('provides', 1), ('tool', 1), ('needed', 1), ('build', 1), ('visibility', 1), ('sell', 1)]
[('physic', 2), ('law', 2), ('achieving', 1), ('believable', 1), ('motion', 1), ('animation', 1), ('requires', 1), ('understanding', 1), ('missed', 1), ('art', 1), ('school', 1), ('although', 1), ('animator', 1), ('often', 1), ('break', 1), ('comedic', 1), ('dramatic', 1), ('effect', 1), ('need', 1), ('know', 1), ('breaking', 1), ('order', 1), ('make', 1), ('work', 1), ('large', 1), ('studio', 1), ('might', 1), ('able', 1), ('spend', 1), ('lot', 1), ('time', 1), ('money', 1)]
[('data', 4), ('big', 3), ('biomedical', 2), ('biological', 2), ('discovery', 2), ('demystifies', 1), ('analysesbig', 1), ('analysis', 1), ('bioinformatics', 1), ('provides', 1), ('practical', 1), ('guide', 1), ('nut', 1), ('bolt', 1), ('enabling', 1), ('quickly', 1), ('effectively', 1), ('harness', 1), ('power', 1), ('make', 1), ('groundbreaking', 1), ('carry', 1), ('translational', 1), ('medical', 1), ('research', 1), ('implem', 1)]
[('software', 3), ('change', 2), ('practical', 1), ('guidance', 1), ('efficient', 1), ('development', 1), ('high', 1), ('quality', 1), ('introduction', 1), ('engineering', 1), ('second', 1), ('edition', 1), ('equips', 1), ('student', 1), ('fundamental', 1), ('prepare', 1), ('satisfying', 1), ('career', 1), ('engineer', 1), ('regardless', 1), ('future', 1), ('field', 1), ('even', 1), ('unpredictable', 1), ('disruptive', 1), ('nature', 1), ('retaining', 1)]
[('certificate', 5), ('policy', 2), ('book', 1), ('public', 1), ('key', 1), ('infrastructure', 1), ('pki', 1), ('seem', 1), ('focus', 1), ('asymmetric', 1), ('cryptography', 1), ('authority', 1), ('ca', 1), ('hierarchy', 1), ('cp', 1), ('practice', 1), ('statement', 1), ('algorithm', 1), ('theoretical', 1), ('excellent', 1), ('discussion', 1), ('real', 1), ('world', 1), ('issue', 1), ('operating', 1), ('commercial', 1)]
[('secure', 2), ('cyber', 1), ('security', 1), ('industrial', 1), ('control', 1), ('system', 1), ('viewpoint', 1), ('close', 1), ('loop', 1), ('provides', 1), ('comprehensive', 1), ('technical', 1), ('guide', 1), ('date', 1), ('new', 1), ('defending', 1), ('theory', 1), ('technology', 1), ('novel', 1), ('design', 1), ('systematic', 1), ('understanding', 1), ('architecture', 1), ('practical', 1), ('application', 1), ('book', 1), ('consists', 1), ('chapter', 1), ('divided', 1), ('three', 1), ('part', 1)]
[('surgical', 3), ('tracking', 2), ('conventional', 2), ('tool', 2), ('used', 2), ('visual', 1), ('minimally', 1), ('invasive', 1), ('surgery', 1), ('introduces', 1), ('various', 1), ('methodology', 1), ('enhance', 1), ('setup', 1), ('degree', 1), ('automation', 1), ('main', 1), ('focus', 1), ('book', 1), ('method', 1), ('assist', 1), ('surgeon', 1)]
[('game', 3), ('video', 2), ('industry', 1), ('continues', 1), ('grow', 1), ('evolve', 1), ('year', 1), ('pas', 1), ('despite', 1), ('growth', 1), ('competition', 1), ('obtaining', 1), ('career', 1), ('remains', 1), ('arduous', 1), ('becoming', 1), ('artist', 1), ('help', 1), ('guide', 1), ('reader', 1), ('first', 1), ('step', 1), ('making', 1), ('portfolio', 1), ('acing', 1), ('job', 1), ('interview', 1), ('beyond', 1), ('john', 1), ('pearl', 1), ('explores', 1), ('different', 1), ('art', 1)]
[('user', 5), ('concept', 2), ('engineering', 2), ('process', 2), ('experience', 2), ('book', 1), ('outline', 1), ('new', 1), ('cover', 1), ('diversity', 1), ('along', 1), ('business', 1), ('includes', 1), ('design', 1), ('although', 1), ('ux', 1), ('become', 1), ('popular', 1), ('definition', 1), ('methodology', 1), ('still', 1), ('ambiguous', 1), ('similar', 1)]
[('mobile', 3), ('crowdsensing', 2), ('smart', 2), ('technology', 1), ('allows', 1), ('large', 1), ('scale', 1), ('cost', 1), ('effective', 1), ('sensing', 1), ('physical', 1), ('world', 1), ('personal', 1), ('device', 1), ('phone', 1), ('watch', 1), ('come', 1), ('equipped', 1), ('variety', 1), ('sensor', 1), ('leveraged', 1), ('collect', 1), ('data', 1), ('related', 1), ('environment', 1), ('transportation', 1), ('healthcare', 1), ('safety', 1)]
[('biometrics', 4), ('data', 2), ('driven', 2), ('world', 1), ('trend', 1), ('technology', 1), ('challenge', 1), ('aim', 1), ('inform', 1), ('reader', 1), ('modern', 1), ('application', 1), ('context', 1), ('society', 1), ('familiarize', 1), ('rich', 1), ('history', 1), ('provide', 1), ('glimpse', 1), ('future', 1), ('first', 1), ('section', 1), ('book', 1), ('discus', 1)]
[('information', 3), ('science', 3), ('electronic', 3), ('engineering', 3), ('collection', 1), ('contribution', 1), ('drawn', 1), ('international', 1), ('conference', 1), ('iceeis', 1), ('held', 1), ('january', 1), ('harbin', 1), ('china', 1), ('paper', 1), ('proceeding', 1), ('volume', 1), ('cover', 1), ('various', 1), ('topic', 1), ('including', 1)]
[('signal', 2), ('optical', 2), ('integrated', 2), ('micro', 1), ('ring', 1), ('resonator', 1), ('mrrs', 1), ('employed', 1), ('generate', 1), ('used', 1), ('communication', 1), ('application', 1), ('single', 1), ('system', 1), ('structure', 1), ('ideal', 1), ('candidate', 1), ('large', 1), ('scale', 1), ('vlsi', 1), ('photonic', 1), ('circuit', 1), ('provide', 1), ('wide', 1), ('range', 1), ('processing', 1), ('function', 1)]
[('parallel', 3), ('computing', 3), ('view', 2), ('designed', 1), ('introductory', 1), ('course', 1), ('advanced', 1), ('undergraduate', 1), ('beginning', 1), ('graduate', 1), ('level', 1), ('element', 1), ('present', 1), ('fundamental', 1), ('concept', 1), ('point', 1), ('hardware', 1), ('abstract', 1), ('algorithmic', 1), ('implementation', 1), ('pattern', 1), ('aim', 1), ('facilitate', 1)]
[('graphic', 2), ('design', 2), ('inspiration', 1), ('everywhere', 1), ('stop', 1), ('smell', 1), ('watch', 1), ('rose', 1), ('mother', 1), ('nature', 1), ('interwoven', 1), ('relationship', 1), ('life', 1), ('serve', 1), ('powerful', 1), ('model', 1), ('designer', 1), ('create', 1), ('sustainable', 1), ('print', 1), ('digital', 1), ('work', 1), ('renourish', 1), ('book', 1), ('professional', 1), ('help', 1), ('integrate', 1), ('sustainability', 1)]
[('data', 3), ('molecular', 2), ('biologist', 2), ('analysis', 2), ('performing', 1), ('increasingly', 1), ('large', 1), ('complicated', 1), ('experiment', 1), ('often', 1), ('little', 1), ('background', 1), ('book', 1), ('devoted', 1), ('teaching', 1), ('statistical', 1), ('computational', 1), ('technique', 1), ('need', 1), ('analyze', 1), ('explains', 1), ('big', 1), ('picture', 1), ('concept', 1), ('using', 1), ('wide', 1), ('variety', 1)]
[('pairing', 2), ('based', 2), ('book', 1), ('devoted', 1), ('efficient', 1), ('computation', 1), ('implementation', 1), ('useful', 1), ('tool', 1), ('cryptographer', 1), ('working', 1), ('topic', 1), ('identity', 1), ('cryptography', 1), ('simplification', 1), ('existing', 1), ('protocol', 1), ('signature', 1), ('scheme', 1), ('exploring', 1), ('basic', 1), ('mathematical', 1), ('background', 1), ('finite', 1), ('field', 1), ('elliptic', 1), ('curve', 1), ('guide', 1)]
[('praise', 1), ('first', 1), ('edition', 1), ('written', 1), ('comprehensive', 1), ('book', 1), ('aiming', 1), ('become', 1), ('de', 1), ('facto', 1), ('reference', 1), ('language', 1), ('feature', 1), ('capability', 1), ('pace', 1), ('appropriate', 1), ('beginner', 1), ('programming', 1), ('concept', 1), ('introduced', 1), ('progressively', 1), ('range', 1), ('example', 1), ('used', 1), ('tool', 1), ('building', 1), ('application', 1), ('various', 1)]
[('object', 3), ('character', 3), ('scene', 2), ('book', 1), ('introduce', 1), ('control', 1), ('steer', 1), ('towards', 1), ('understanding', 1), ('blender', 1), ('program', 1), ('create', 1), ('model', 1), ('placed', 1), ('captured', 1), ('camera', 1), ('rendered', 1), ('digital', 1), ('image', 1), ('animated', 1)]
[('computational', 2), ('science', 2), ('engineering', 2), ('contains', 1), ('peer', 1), ('reviewed', 1), ('research', 1), ('presented', 1), ('international', 1), ('conference', 1), ('rcc', 1), ('institute', 1), ('information', 1), ('technology', 1), ('kolkata', 1), ('india', 1), ('october', 1), ('contribution', 1), ('cover', 1), ('wide', 1), ('range', 1), ('topic', 1), ('electronic', 1), ('device', 1), ('photonics', 1), ('electromagnetics', 1), ('soft', 1)]
[('game', 6), ('j', 4), ('html', 3), ('phaser', 3), ('engine', 2), ('experience', 1), ('thrill', 1), ('crafting', 1), ('modern', 1), ('javascript', 1), ('helped', 1), ('revolutionized', 1), ('web', 1), ('based', 1), ('chapter', 1), ('introduction', 1), ('development', 1), ('showcase', 1), ('sample', 1), ('illustrates', 1), ('aspect', 1), ('lazer', 1), ('used', 1)]
[('information', 3), ('larger', 2), ('past', 1), ('decade', 1), ('seen', 1), ('dramatic', 1), ('increase', 1), ('amount', 1), ('variety', 1), ('generated', 1), ('stored', 1), ('electronically', 1), ('business', 1), ('enterprise', 1), ('storing', 1), ('increased', 1), ('volume', 1), ('problem', 1), ('date', 1), ('store', 1), ('grow', 1), ('multiple', 1), ('challenge', 1), ('arise', 1), ('senior', 1), ('management', 1), ('namely', 1)]
[('costume', 3), ('design', 2), ('video', 2), ('game', 2), ('exploration', 1), ('historical', 1), ('fantastical', 1), ('skin', 1), ('explores', 1), ('rich', 1), ('colorful', 1), ('history', 1), ('fashion', 1), ('throughout', 1), ('age', 1), ('page', 1), ('go', 1), ('detail', 1), ('concerning', 1), ('social', 1), ('significance', 1), ('iconic', 1), ('period', 1), ('piece', 1), ('real', 1), ('imagined', 1), ('highlight', 1), ('development', 1)]
[('game', 3), ('interactive', 2), ('success', 1), ('storytelling', 1), ('depends', 1), ('entire', 1), ('development', 1), ('team', 1), ('designer', 1), ('artist', 1), ('writer', 1), ('programmer', 1), ('musician', 1), ('etc', 1), ('working', 1), ('harmoniously', 1), ('together', 1), ('towards', 1), ('singular', 1), ('artistic', 1), ('vision', 1), ('story', 1), ('video', 1), ('art', 1), ('first', 1), ('define', 1), ('common', 1), ('design', 1), ('language', 1), ('understanding', 1), ('orchestrating', 1)]
[('book', 2), ('system', 2), ('life', 2), ('building', 2), ('block', 2), ('present', 1), ('use', 1), ('microprocessor', 1), ('based', 1), ('digital', 1), ('daily', 1), ('bottom', 1), ('approach', 1), ('ensures', 1), ('basic', 1), ('covered', 1), ('development', 1), ('real', 1), ('ultimate', 1), ('goal', 1), ('equip', 1), ('student', 1), ('fundamental', 1), ('integration', 1), ('allowing', 1)]
[('transit', 3), ('network', 2), ('growing', 1), ('mobility', 1), ('need', 1), ('traveller', 1), ('led', 1), ('development', 1), ('increasingly', 1), ('complex', 1), ('integrated', 1), ('multi', 1), ('modal', 1), ('transport', 1), ('agency', 1), ('operator', 1), ('urgently', 1), ('required', 1), ('assist', 1), ('challenging', 1), ('task', 1), ('effectively', 1), ('efficiently', 1), ('planning', 1), ('managing', 1), ('governing', 1)]
[('cognitive', 2), ('radio', 2), ('wireless', 2), ('network', 2), ('technology', 1), ('come', 1), ('iee', 1), ('wran', 1), ('regional', 1), ('area', 1), ('standard', 1), ('currently', 1), ('experiencing', 1), ('rapid', 1), ('growth', 1), ('due', 1), ('potential', 1), ('solve', 1), ('many', 1), ('problem', 1), ('affecting', 1), ('present', 1), ('day', 1), ('system', 1), ('foremost', 1), ('objective', 1), ('introduction', 1), ('application', 1), ('educate', 1)]
[('data', 6), ('privacy', 2), ('principle', 2), ('book', 1), ('cover', 1), ('depth', 1), ('respect', 1), ('mining', 1), ('test', 1), ('management', 1), ('synthetic', 1), ('generation', 1), ('etc', 1), ('formalizes', 1), ('essential', 1), ('good', 1), ('anonymization', 1), ('design', 1), ('based', 1), ('format', 1), ('discipline', 1), ('outline', 1), ('best', 1), ('practice', 1), ('reflect', 1), ('conflicting', 1), ('relationship', 1)]
[('unity', 2), ('reader', 2), ('concept', 2), ('allow', 2), ('book', 1), ('provides', 1), ('date', 1), ('introduction', 1), ('latest', 1), ('version', 1), ('workflow', 1), ('guiding', 1), ('various', 1), ('prototype', 1), ('range', 1), ('game', 1), ('pc', 1), ('mobile', 1), ('acquainted', 1), ('several', 1), ('important', 1), ('become', 1), ('competent', 1), ('developer', 1), ('able', 1), ('learn', 1)]
[('enterprise', 2), ('risk', 2), ('management', 2), ('many', 1), ('moving', 1), ('application', 1), ('service', 1), ('cloud', 1), ('better', 1), ('result', 1), ('fewer', 1), ('operational', 1), ('surprise', 1), ('failure', 1), ('greater', 1), ('stakeholder', 1), ('confidence', 1), ('reduced', 1), ('regulatory', 1), ('concern', 1), ('proactive', 1), ('maximizes', 1), ('likelihood', 1), ('objective', 1), ('achieved', 1), ('thereby', 1), ('enabling', 1)]
[('information', 2), ('led', 2), ('age', 1), ('explosion', 1), ('amount', 1), ('available', 1), ('individual', 1), ('mean', 1), ('accessed', 1), ('stored', 1), ('viewed', 1), ('transferred', 1), ('particular', 1), ('growth', 1), ('internet', 1), ('creation', 1), ('huge', 1), ('repository', 1), ('multimedia', 1), ('document', 1), ('diverse', 1), ('range', 1), ('scientific', 1), ('professional', 1), ('field', 1)]
[('ask', 2), ('compiler', 2), ('node', 2), ('john', 1), ('levesque', 1), ('director', 1), ('cray', 1), ('supercomputing', 1), ('center', 1), ('excellence', 1), ('next', 1), ('decade', 1), ('computationally', 1), ('intense', 1), ('computing', 1), ('lie', 1), ('powerful', 1), ('multi', 1), ('manycore', 1), ('processor', 1), ('share', 1), ('large', 1), ('memory', 1), ('space', 1), ('building', 1), ('block', 1)]
[('technology', 3), ('interaction', 2), ('understanding', 1), ('book', 1), ('explores', 1), ('broader', 1), ('context', 1), ('relation', 1), ('human', 1), ('made', 1), ('natural', 1), ('environment', 1), ('digital', 1), ('computer', 1), ('smart', 1), ('phone', 1), ('internet', 1), ('mechanical', 1), ('electrical', 1)]
[('mobile', 4), ('cloud', 3), ('computing', 3), ('model', 2), ('concept', 2), ('book', 2), ('implementation', 1), ('security', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('including', 1), ('key', 1), ('relevant', 1), ('application', 1), ('focus', 1), ('novel', 1), ('advanced', 1), ('algorithm', 1), ('app', 1), ('development', 1), ('begin', 1), ('overview', 1)]
[('analytics', 5), ('book', 2), ('using', 2), ('process', 1), ('capability', 1), ('today', 1), ('organization', 1), ('cutting', 1), ('buzz', 1), ('surrounding', 1), ('term', 1), ('overloaded', 1), ('expectation', 1), ('demystifies', 1), ('depth', 1), ('examination', 1), ('concept', 1), ('grounded', 1), ('operation', 1), ('research', 1), ('management', 1)]
[('social', 3), ('medium', 3), ('warfare', 2), ('application', 1), ('weaponized', 1), ('little', 1), ('skill', 1), ('become', 1), ('burden', 1), ('nation', 1), ('state', 1), ('government', 1), ('agency', 1), ('corporation', 1), ('need', 1), ('face', 1), ('address', 1), ('threat', 1), ('reasonable', 1), ('manner', 1), ('reduces', 1), ('uncertainty', 1), ('requires', 1), ('dedication', 1), ('attention', 1), ('long', 1), ('term', 1), ('stay', 1), ('secure', 1)]
[('game', 3), ('experience', 2), ('sexuality', 2), ('romance', 2), ('various', 2), ('scholar', 1), ('professional', 1), ('world', 1), ('across', 1), ('level', 1), ('gender', 1), ('spectrum', 1), ('share', 1), ('analysis', 1), ('video', 1), ('whether', 1), ('discussing', 1), ('casual', 1), ('sex', 1), ('war', 1), ('universe', 1), ('analyzing', 1), ('otome', 1), ('examining', 1), ('gaze', 1), ('player', 1), ('behavior', 1)]
[('film', 3), ('single', 2), ('frame', 2), ('making', 2), ('animation', 2), ('stop', 2), ('motion', 2), ('around', 1), ('long', 1), ('ancestor', 1), ('modern', 1), ('day', 1), ('special', 1), ('effect', 1), ('despite', 1), ('age', 1), ('old', 1), ('practice', 1), ('continues', 1), ('influence', 1), ('medium', 1), ('culture', 1), ('magic', 1), ('current', 1), ('advance', 1), ('technology', 1), ('classic', 1), ('technique', 1)]
[('game', 2), ('create', 2), ('variety', 2), ('steamy', 1), ('jungle', 1), ('modern', 1), ('city', 1), ('even', 1), ('sci', 1), ('fi', 1), ('space', 1), ('station', 1), ('environment', 1), ('ultimate', 1), ('resource', 1), ('help', 1), ('aa', 1), ('quality', 1), ('art', 1), ('world', 1), ('primarily', 1), ('using', 1), ('photoshop', 1), ('d', 1), ('max', 1), ('student', 1), ('learn', 1), ('realistic', 1), ('texture', 1), ('photo', 1), ('source', 1), ('technique', 1), ('portray', 1), ('dynamic', 1)]
[('game', 3), ('history', 2), ('growth', 1), ('videogame', 1), ('design', 1), ('program', 1), ('higher', 1), ('education', 1), ('explosion', 1), ('amateur', 1), ('development', 1), ('created', 1), ('need', 1), ('deeper', 1), ('understanding', 1), ('address', 1), ('andrew', 1), ('williams', 1), ('take', 1), ('first', 1), ('step', 1), ('creating', 1), ('comprehensive', 1), ('survey', 1), ('digital', 1), ('commercial', 1), ('product', 1)]
[('science', 2), ('book', 1), ('address', 1), ('issue', 1), ('interdisciplinary', 1), ('understanding', 1), ('collaboration', 1), ('topic', 1), ('social', 1), ('network', 1), ('study', 1), ('researcher', 1), ('practitioner', 1), ('various', 1), ('discipline', 1), ('including', 1), ('sociology', 1), ('computer', 1), ('socio', 1), ('psychology', 1), ('public', 1), ('health', 1), ('complex', 1), ('system', 1), ('management', 1), ('worked', 1), ('largely', 1), ('independently', 1), ('quite', 1)]
[('level', 6), ('game', 2), ('process', 2), ('book', 1), ('veteran', 1), ('developer', 1), ('academic', 1), ('journalist', 1), ('others', 1), ('provide', 1), ('experience', 1), ('design', 1), ('provides', 1), ('unique', 1), ('perspective', 1), ('representing', 1), ('multiple', 1), ('step', 1), ('interacting', 1), ('creating', 1), ('experiencing', 1), ('designing', 1), ('constructing', 1), ('testing', 1)]
[('ci', 3), ('book', 2), ('number', 1), ('computational', 1), ('intelligence', 1), ('tend', 1), ('cover', 1), ('broad', 1), ('range', 1), ('paradigm', 1), ('algorithm', 1), ('rather', 1), ('provide', 1), ('depth', 1), ('exploration', 1), ('learning', 1), ('adaptive', 1), ('mechanism', 1), ('set', 1), ('focus', 1), ('based', 1), ('architecture', 1), ('modeling', 1), ('case', 1), ('study', 1), ('application', 1), ('big', 1), ('data', 1), ('analytics', 1), ('business', 1)]
[('technology', 3), ('wireless', 2), ('ubiquitous', 1), ('diffusion', 1), ('iot', 1), ('cloud', 1), ('computing', 1), ('evolved', 1), ('daily', 1), ('life', 1), ('world', 1), ('see', 1), ('internet', 1), ('future', 1), ('expand', 1), ('quickly', 1), ('driving', 1), ('progress', 1), ('communication', 1), ('connectivity', 1), ('mobile', 1), ('including', 1), ('traditional', 1), ('wlan', 1), ('low', 1)]
[('computer', 3), ('coverage', 2), ('encyclopedia', 2), ('science', 2), ('technology', 2), ('breadth', 1), ('depth', 1), ('second', 1), ('edition', 1), ('multi', 1), ('disciplinary', 1), ('scope', 1), ('drawing', 1), ('together', 1), ('comprehensive', 1), ('inter', 1), ('related', 1), ('aspect', 1), ('topic', 1), ('covered', 1), ('include', 1), ('general', 1), ('reference', 1), ('hardware', 1), ('system', 1)]
[('providing', 1), ('comprehensive', 1), ('coverage', 1), ('cyberspace', 1), ('cybersecurity', 1), ('textbook', 1), ('focus', 1), ('technology', 1), ('explores', 1), ('human', 1), ('factor', 1), ('organizational', 1), ('perspective', 1), ('emphasizes', 1), ('asset', 1), ('identification', 1), ('cornerstone', 1), ('information', 1), ('security', 1), ('strategy', 1), ('topic', 1), ('include', 1), ('addressing', 1), ('vulnerability', 1), ('building', 1), ('secure', 1)]
[('generalized', 2), ('barycentric', 2), ('coordinate', 2), ('computer', 2), ('graphic', 2), ('computational', 2), ('mechanic', 2), ('mesh', 2), ('eminent', 1), ('researcher', 1), ('provide', 1), ('state', 1), ('art', 1), ('overview', 1), ('commonly', 1), ('used', 1), ('cutting', 1), ('edge', 1), ('application', 1), ('parametrization', 1), ('image', 1), ('warping', 1), ('deformation', 1)]
[('various', 2), ('proposed', 1), ('book', 1), ('discus', 1), ('aspect', 1), ('big', 1), ('data', 1), ('analytics', 1), ('deliberate', 1), ('upon', 1), ('tool', 1), ('technology', 1), ('application', 1), ('use', 1), ('case', 1), ('research', 1), ('direction', 1), ('field', 1), ('chapter', 1), ('contributed', 1), ('researcher', 1), ('scientist', 1), ('practitioner', 1), ('reputed', 1), ('university', 1), ('organization', 1), ('benefit', 1), ('reader', 1)]
[('punk', 2), ('game', 2), ('step', 2), ('plaything', 1), ('provocation', 1), ('st', 1), ('century', 1), ('maker', 1), ('attitude', 1), ('never', 1), ('mohican', 1), ('haircut', 1), ('wearing', 1), ('ripped', 1), ('shirt', 1), ('destruction', 1), ('creative', 1), ('potential', 1), ('within', 1), ('malcolm', 1), ('mclaren', 1), ('warning', 1), ('want', 1), ('silver', 1), ('bullet', 1), ('solution', 1), ('efficient', 1), ('making', 1), ('guide', 1)]
[('design', 3), ('vehicle', 3), ('book', 2), ('environment', 2), ('specific', 2), ('cover', 1), ('problem', 1), ('fidelity', 1), ('virtual', 1), ('reference', 1), ('simulator', 1), ('default', 1), ('goal', 1), ('physical', 1), ('replication', 1), ('given', 1), ('real', 1), ('world', 1), ('case', 1), ('appearance', 1), ('function', 1), ('component', 1), ('discus', 1)]
[('book', 2), ('topic', 2), ('software', 2), ('design', 2), ('perhaps', 1), ('first', 1), ('attempt', 1), ('give', 1), ('full', 1), ('treatment', 1), ('facilitate', 1), ('academia', 1), ('industry', 1), ('cover', 1), ('including', 1), ('ancillary', 1), ('one', 1)]
[('robotics', 2), ('ai', 1), ('mobile', 1), ('social', 1), ('sentient', 1), ('robot', 1), ('journey', 1), ('world', 1), ('agent', 1), ('based', 1), ('cover', 1), ('number', 1), ('interesting', 1), ('topic', 1), ('theory', 1), ('practice', 1), ('discipline', 1), ('book', 1), ('trace', 1), ('earliest', 1), ('idea', 1), ('autonomous', 1), ('machine', 1), ('mythical', 1), ('lore', 1), ('ancient', 1), ('greece', 1), ('end', 1), ('last', 1), ('chapter', 1), ('debate', 1)]
[('discrete', 2), ('computational', 2), ('geometry', 2), ('book', 2), ('handbook', 1), ('intended', 1), ('reference', 1), ('fully', 1), ('accessible', 1), ('nonspecialists', 1), ('specialist', 1), ('covering', 1), ('major', 1), ('aspect', 1), ('field', 1), ('offer', 1), ('important', 1), ('result', 1), ('method', 1), ('use', 1), ('work', 1), ('academic', 1)]
[('gps', 2), ('book', 1), ('show', 1), ('build', 1), ('infelecphy', 1), ('unit', 1), ('iep', 1), ('tracking', 1), ('system', 1), ('fleet', 1), ('management', 1), ('based', 1), ('gprs', 1), ('module', 1), ('model', 1), ('provide', 1), ('reliability', 1), ('deal', 1), ('several', 1), ('protocol', 1), ('http', 1), ('navigate', 1), ('download', 1), ('upload', 1), ('real', 1), ('time', 1), ('information', 1), ('web', 1), ('server', 1), ('fttp', 1), ('fttps', 1), ('handle', 1)]
[('book', 2), ('describes', 2), ('method', 2), ('image', 2), ('algorithm', 1), ('pre', 1), ('processing', 1), ('recognition', 1), ('based', 1), ('parallel', 1), ('shift', 1), ('technology', 1), ('imaging', 1), ('copy', 1), ('simple', 1), ('mathematical', 1), ('operation', 1), ('allow', 1), ('generation', 1), ('minimum', 1), ('set', 1), ('feature', 1), ('describe', 1), ('recognize', 1), ('theoretical', 1)]
[('area', 2), ('communication', 2), ('network', 2), ('lan', 2), ('fast', 1), ('growing', 1), ('industry', 1), ('internetworking', 1), ('increasing', 1), ('proliferation', 1), ('computer', 1), ('particularly', 1), ('via', 1), ('local', 1), ('resource', 1), ('sharing', 1), ('data', 1), ('used', 1), ('many', 1), ('office', 1), ('interchange', 1), ('information', 1), ('electronic', 1), ('mail', 1), ('word', 1), ('processing', 1), ('file', 1), ('among', 1)]
[('insurance', 2), ('system', 2), ('desk', 1), ('reference', 1), ('professional', 1), ('industry', 1), ('provides', 1), ('information', 1), ('latest', 1), ('technology', 1), ('improve', 1), ('efficiency', 1), ('prediction', 1), ('topic', 1), ('include', 1), ('imaging', 1), ('modeling', 1), ('management', 1), ('customer', 1), ('internet', 1), ('commerce', 1), ('issue', 1), ('affecting', 1), ('financial', 1), ('service', 1), ('sector', 1), ('year', 1), ('problem', 1)]
[('resource', 2), ('best', 2), ('manager', 1), ('know', 1), ('department', 1), ('continue', 1), ('meet', 1), ('increasingly', 1), ('sophisticated', 1), ('end', 1), ('user', 1), ('need', 1), ('despite', 1), ('highly', 1), ('limited', 1), ('learn', 1), ('farm', 1), ('work', 1), ('consultant', 1), ('reserve', 1), ('internal', 1), ('task', 1), ('use', 1), ('house', 1), ('staff', 1), ('coverage', 1), ('unlike', 1)]
[('computer', 2), ('system', 1), ('engineering', 1), ('management', 1), ('provides', 1), ('superb', 1), ('guide', 1), ('overall', 1), ('effort', 1), ('systemsbridge', 1), ('building', 1), ('explains', 1), ('river', 1), ('organise', 1), ('work', 1), ('force', 1), ('manage', 1), ('construction', 1), ('finally', 1), ('reach', 1), ('opposite', 1), ('shore', 1), ('delineates', 1), ('practical', 1), ('approach', 1), ('real', 1), ('world', 1)]
[('automation', 5), ('industrial', 3), ('knowledge', 2), ('concept', 2), ('book', 1), ('provides', 1), ('extended', 1), ('overview', 1), ('fundamental', 1), ('building', 1), ('necessary', 1), ('level', 1), ('specialization', 1), ('advanced', 1), ('cover', 1), ('number', 1), ('central', 1), ('basic', 1), ('element', 1), ('hardware', 1), ('component', 1)]
[('reader', 2), ('book', 1), ('aim', 1), ('enable', 1), ('master', 1), ('engineering', 1), ('communication', 1), ('protocol', 1), ('amply', 1), ('present', 1), ('nowadays', 1), ('mobile', 1), ('phone', 1), ('tablet', 1), ('laptop', 1), ('smart', 1), ('appliance', 1), ('service', 1), ('provider', 1), ('datacenters', 1), ('cloud', 1), ('acquire', 1), ('theoretical', 1), ('knowledge', 1), ('practical', 1), ('skill', 1), ('successfully', 1), ('design', 1), ('implement', 1), ('test', 1), ('verify', 1)]
[('technology', 3), ('development', 1), ('sensor', 1), ('wireless', 1), ('communication', 1), ('big', 1), ('data', 1), ('machine', 1), ('learning', 1), ('increasing', 1), ('interest', 1), ('solution', 1), ('ass', 1), ('predict', 1), ('state', 1), ('equipment', 1), ('asset', 1), ('within', 1), ('various', 1), ('industrial', 1), ('setting', 1), ('aim', 1), ('collect', 1), ('information', 1), ('multiple', 1), ('source', 1), ('infrastructure', 1)]
[('game', 5), ('expect', 2), ('book', 2), ('surviving', 1), ('school', 1), ('speaks', 1), ('top', 1), ('design', 1), ('development', 1), ('college', 1), ('program', 1), ('student', 1), ('making', 1), ('playing', 1), ('uncommonly', 1), ('blunt', 1), ('reveals', 1), ('rigor', 1), ('joy', 1), ('working', 1), ('industry', 1), ('along', 1), ('way', 1), ('touch', 1), ('theme', 1), ('time', 1)]
[('location', 3), ('indoor', 2), ('important', 1), ('context', 1), ('time', 1), ('becoming', 1), ('key', 1), ('entry', 1), ('mobile', 1), ('internet', 1), ('book', 1), ('envisions', 1), ('potential', 1), ('application', 1), ('overview', 1), ('related', 1), ('state', 1), ('art', 1), ('technology', 1), ('present', 1), ('original', 1), ('patented', 1), ('technique', 1), ('open', 1), ('source', 1), ('prototype', 1), ('system', 1), ('tutorial', 1), ('sample', 1), ('code', 1)]
[('computing', 4), ('distributed', 2), ('future', 1), ('requirement', 1), ('speed', 1), ('system', 1), ('reliability', 1), ('cost', 1), ('effectiveness', 1), ('entail', 1), ('development', 1), ('alternative', 1), ('computer', 1), ('replace', 1), ('traditional', 1), ('von', 1), ('neumann', 1), ('organization', 1), ('network', 1), ('come', 1), ('latest', 1), ('dream', 1), ('possible', 1), ('brings', 1), ('transparent', 1), ('access', 1)]
[('competitive', 2), ('advantage', 2), ('expert', 1), ('andersen', 1), ('consulting', 1), ('show', 1), ('combine', 1), ('computing', 1), ('communication', 1), ('knowledge', 1), ('deliver', 1), ('uniquely', 1), ('new', 1), ('entirely', 1), ('indispensable', 1), ('lead', 1), ('follow', 1), ('way', 1), ('company', 1), ('ability', 1), ('sustain', 1), ('jeopardy', 1), ('competitor', 1), ('imitate', 1), ('improve', 1), ('faster', 1)]
[('animation', 3), ('production', 2), ('book', 1), ('explains', 1), ('creation', 1), ('concept', 1), ('instead', 1), ('focusing', 1), ('singular', 1), ('aspect', 1), ('talented', 1), ('animator', 1), ('learn', 1), ('make', 1), ('better', 1), ('film', 1), ('understanding', 1), ('process', 1), ('whole', 1), ('veteran', 1), ('independent', 1), ('filmmaker', 1), ('hannes', 1), ('rall', 1), ('teach', 1), ('develop', 1), ('project', 1), ('start', 1)]
[('problem', 4), ('algorithm', 3), ('includes', 2), ('introduction', 2), ('book', 1), ('several', 1), ('exclusively', 1), ('graph', 1), ('based', 1), ('namely', 1), ('combinatorial', 1), ('optimization', 1), ('path', 1), ('formation', 1), ('etc', 1), ('chapter', 1), ('basic', 1), ('traditional', 1), ('nature', 1), ('inspired', 1), ('discussion', 1), ('modified', 1), ('version', 1), ('discrete', 1), ('including', 1)]
[('branch', 2), ('called', 2), ('machine', 2), ('learning', 2), ('science', 1), ('ai', 1), ('born', 1), ('little', 1), ('year', 1), ('ago', 1), ('time', 1), ('achievement', 1), ('modest', 1), ('experienced', 1), ('big', 1), ('bang', 1), ('statistic', 1), ('sub', 1), ('deep', 1), ('applied', 1), ('surpassed', 1), ('human', 1), ('image', 1), ('recognition', 1), ('catching', 1)]
[('others', 2), ('tell', 2), ('story', 2), ('life', 2), ('game', 1), ('devs', 1), ('tale', 1), ('margin', 1), ('true', 1), ('industry', 1), ('color', 1), ('lgbtqia', 1), ('marginalized', 1), ('identity', 1), ('collection', 1), ('essay', 1), ('give', 1), ('chance', 1), ('know', 1), ('side', 1), ('screen', 1), ('part', 1), ('supposed', 1), ('majority', 1)]
[('computing', 3), ('networking', 2), ('caching', 2), ('network', 2), ('book', 1), ('feature', 1), ('major', 1), ('research', 1), ('advance', 1), ('integrated', 1), ('information', 1), ('centric', 1), ('based', 1), ('promising', 1), ('technique', 1), ('future', 1), ('cloud', 1), ('paradigm', 1), ('widely', 1), ('adopted', 1), ('enable', 1), ('convenient', 1), ('demand', 1), ('access', 1), ('shared', 1), ('pool', 1), ('configurable', 1)]
[('upa', 2), ('animation', 1), ('studio', 1), ('united', 1), ('production', 1), ('america', 1), ('able', 1), ('challenge', 1), ('disney', 1), ('supremacy', 1), ('entertainment', 1), ('market', 1), ('creating', 1), ('cutting', 1), ('edge', 1), ('animated', 1), ('cartoon', 1), ('film', 1), ('express', 1), ('simplified', 1), ('audiovisual', 1), ('language', 1), ('consisting', 1), ('stylized', 1), ('layout', 1), ('design', 1), ('asymmetrical', 1), ('composition', 1), ('color', 1), ('applied', 1), ('flatly', 1), ('contrast', 1)]
[('conference', 3), ('science', 2), ('china', 2), ('th', 1), ('international', 1), ('electronic', 1), ('engineering', 1), ('information', 1), ('iceeis', 1), ('held', 1), ('january', 1), ('haikou', 1), ('sponsored', 1), ('harbin', 1), ('university', 1), ('technology', 1), ('continued', 1), ('tradition', 1), ('gathering', 1), ('world', 1), ('class', 1), ('researcher', 1), ('engineer', 1), ('educator', 1)]
[('book', 3), ('watermarking', 3), ('section', 3), ('image', 2), ('visual', 2), ('cryptography', 2), ('focus', 1), ('based', 1), ('security', 1), ('technique', 1), ('namely', 1), ('steganography', 1), ('divided', 1), ('four', 1), ('first', 1), ('explores', 1), ('basic', 1), ('advanced', 1), ('concept', 1), ('second', 1), ('cover', 1), ('digital', 1), ('including', 1), ('algorithm', 1), ('framework', 1)]
[('limited', 2), ('neural', 1), ('network', 1), ('represent', 1), ('new', 1), ('generation', 1), ('information', 1), ('processing', 1), ('paradigm', 1), ('designed', 1), ('mimic', 1), ('sense', 1), ('human', 1), ('brain', 1), ('learn', 1), ('recall', 1), ('generalize', 1), ('training', 1), ('data', 1), ('potential', 1), ('application', 1), ('imagination', 1), ('scientist', 1), ('engineer', 1), ('commanding', 1), ('tremendous', 1), ('popularity', 1)]
[('window', 3), ('guide', 2), ('programming', 2), ('step', 2), ('practical', 1), ('basic', 1), ('take', 1), ('reader', 1), ('developing', 1), ('application', 1), ('using', 1), ('book', 1), ('cover', 1), ('xt', 1), ('intrinsics', 1), ('portion', 1), ('system', 1), ('detail', 1), ('discus', 1), ('mit', 1), ('athena', 1), ('osf', 1), ('motif', 1), ('widget', 1), ('set', 1), ('used', 1), ('many', 1), ('example', 1), ('topic', 1), ('covered', 1), ('include', 1)]
[('car', 3), ('challenge', 2), ('self', 2), ('driving', 2), ('data', 2), ('gps', 1), ('tracking', 1), ('java', 1), ('ee', 1), ('component', 1), ('connected', 1), ('highlight', 1), ('actually', 1), ('changing', 1), ('automotive', 1), ('industry', 1), ('programing', 1), ('embedded', 1), ('software', 1), ('hosting', 1), ('service', 1), ('crunching', 1), ('real', 1), ('time', 1), ('really', 1), ('big', 1), ('book', 1), ('analyzes', 1), ('sdc', 1), ('exceed', 1), ('limit', 1)]
[('hull', 2), ('euclidean', 2), ('graph', 2), ('implementation', 2), ('boundary', 1), ('theory', 1), ('practice', 1), ('present', 1), ('concept', 1), ('algorithm', 1), ('finding', 1), ('convex', 1), ('concave', 1), ('polygon', 1), ('includes', 1), ('determining', 1), ('comparing', 1), ('complexity', 1), ('application', 1), ('dependent', 1), ('either', 1), ('centralized', 1), ('distributed', 1)]
[('cover', 1), ('area', 1), ('computer', 1), ('based', 1), ('data', 1), ('acquisition', 1), ('basic', 1), ('concept', 1), ('recent', 1), ('technical', 1), ('development', 1), ('without', 1), ('burden', 1), ('long', 1), ('theoretical', 1), ('derivation', 1), ('proof', 1), ('offer', 1), ('practical', 1), ('solution', 1), ('oriented', 1), ('design', 1), ('example', 1), ('real', 1), ('life', 1), ('case', 1), ('study', 1), ('chapter', 1), ('furnishes', 1), ('valuable', 1), ('selection', 1), ('guide', 1), ('specific', 1), ('type', 1), ('hardware', 1)]
[('bio', 2), ('inspired', 2), ('recent', 1), ('year', 1), ('computational', 1), ('theory', 1), ('tool', 1), ('developed', 1), ('assist', 1), ('extracting', 1), ('knowledge', 1), ('high', 1), ('dimensional', 1), ('data', 1), ('differ', 1), ('take', 1), ('evolutionary', 1), ('approach', 1), ('learning', 1), ('opposed', 1), ('traditional', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('described', 1), ('creationist', 1), ('method', 1), ('instead', 1)]
[('parallel', 2), ('supercomputing', 2), ('mimd', 2), ('multiple', 2), ('concept', 2), ('architecture', 1), ('devoted', 1), ('wide', 1), ('variety', 1), ('instruction', 1), ('data', 1), ('class', 1), ('machine', 1), ('book', 1), ('describes', 1), ('architectural', 1), ('commercial', 1), ('research', 1), ('hardware', 1), ('implementation', 1), ('major', 1), ('programming', 1), ('algorithmic', 1), ('method', 1), ('representative', 1), ('application', 1), ('benefit', 1)]
[('book', 3), ('field', 2), ('analytics', 2), ('manager', 1), ('receives', 1), ('result', 1), ('data', 1), ('analyst', 1), ('work', 1), ('help', 1), ('decision', 1), ('making', 1), ('anyone', 1), ('playing', 1), ('role', 1), ('benefit', 1), ('decade', 1), ('editor', 1), ('spent', 1), ('teaching', 1), ('consulting', 1), ('noticed', 1), ('critical', 1)]
[('processor', 3), ('computer', 2), ('book', 2), ('organization', 1), ('basic', 1), ('structure', 1), ('class', 1), ('tested', 1), ('textbook', 1), ('based', 1), ('author', 1), ('decade', 1), ('teaching', 1), ('topic', 1), ('undergraduate', 1), ('beginning', 1), ('graduate', 1), ('student', 1), ('main', 1), ('question', 1), ('try', 1), ('answer', 1), ('structured', 1), ('function', 1), ('general', 1), ('purpose', 1), ('begin', 1)]
[('edition', 2), ('database', 2), ('design', 2), ('data', 2), ('fully', 1), ('updated', 1), ('expanded', 1), ('previous', 1), ('practical', 1), ('guide', 1), ('second', 1), ('intended', 1), ('involved', 1), ('development', 1), ('system', 1), ('application', 1), ('begin', 1), ('illustrating', 1), ('develop', 1), ('third', 1), ('normal', 1), ('form', 1), ('model', 1), ('placed', 1), ('belongs', 1), ('reader', 1), ('taken', 1)]
[('computational', 4), ('intelligence', 2), ('technology', 2), ('assisted', 1), ('design', 1), ('framework', 1), ('mobilises', 1), ('resource', 1), ('make', 1), ('use', 1), ('multiple', 1), ('ci', 1), ('algorithm', 1), ('reduces', 1), ('cost', 1), ('book', 1), ('provides', 1), ('example', 1), ('real', 1), ('world', 1), ('application', 1), ('case', 1), ('study', 1), ('used', 1), ('show', 1), ('integration', 1), ('service', 1), ('cloud', 1), ('big', 1), ('data', 1)]
[('learning', 3), ('learn', 2), ('play', 2), ('educational', 2), ('game', 2), ('really', 1), ('course', 1), ('educate', 1), ('others', 1), ('unique', 1), ('way', 1), ('successful', 1), ('adapt', 1), ('particular', 1), ('need', 1), ('player', 1), ('facilitate', 1), ('objective', 1), ('designer', 1), ('design', 1), ('fundamental', 1), ('embarks', 1), ('journey', 1)]
[('sdp', 5), ('book', 1), ('first', 1), ('kind', 1), ('attempt', 1), ('put', 1), ('related', 1), ('rfcs', 1), ('together', 1), ('mandatory', 1), ('optional', 1), ('text', 1), ('chronological', 1), ('systematic', 1), ('way', 1), ('use', 1), ('single', 1), ('super', 1), ('rfc', 1), ('almost', 1), ('integrity', 1), ('beginning', 1), ('end', 1), ('see', 1), ('big', 1), ('picture', 1), ('addition', 1), ('base', 1), ('functionality', 1)]
[('cryptography', 2), ('cryptographic', 2), ('typically', 2), ('information', 1), ('security', 1), ('major', 1), ('gap', 1), ('implemented', 1), ('algorithm', 1), ('defined', 1), ('key', 1), ('management', 1), ('scheme', 1), ('known', 1), ('actual', 1), ('deployment', 1), ('overlooked', 1), ('ignored', 1), ('unknown', 1), ('everywhere', 1), ('application', 1), ('network', 1), ('architecture', 1), ('documented', 1)]
[('organization', 2), ('valuable', 2), ('data', 2), ('attacked', 1), ('probably', 1), ('successfully', 1), ('point', 1), ('damage', 1), ('digitally', 1), ('connected', 1), ('least', 1), ('considered', 1), ('cyber', 1), ('security', 1), ('big', 1), ('messy', 1), ('multivariate', 1), ('multidimensional', 1), ('arena', 1), ('reasonable', 1), ('defense', 1), ('depth', 1), ('requires', 1)]
[('mobile', 2), ('social', 2), ('narrative', 2), ('despite', 1), ('significant', 1), ('growth', 1), ('past', 1), ('five', 1), ('year', 1), ('videogame', 1), ('industry', 1), ('still', 1), ('maturing', 1), ('rapid', 1), ('rate', 1), ('due', 1), ('various', 1), ('storage', 1), ('visual', 1), ('sound', 1), ('asset', 1), ('restriction', 1), ('gaming', 1), ('innovative', 1), ('storytelling', 1), ('technique', 1), ('tactic', 1), ('grant', 1), ('reader', 1), ('practical', 1), ('advice', 1), ('improving', 1)]
[('field', 2), ('illustration', 2), ('approach', 2), ('step', 2), ('book', 1), ('help', 1), ('reader', 1), ('develop', 1), ('fundamental', 1), ('skill', 1), ('biomedical', 1), ('training', 1), ('based', 1), ('tutorial', 1), ('practical', 1), ('medical', 1), ('scientific', 1), ('mainly', 1), ('belongs', 1), ('professional', 1), ('art', 1), ('scientist', 1), ('trying', 1), ('create', 1), ('artistic', 1), ('visualization', 1), ('merging', 1)]
[('game', 3), ('audio', 3), ('volume', 2), ('programming', 2), ('welcome', 1), ('second', 1), ('principle', 1), ('practice', 1), ('first', 1), ('series', 1), ('kind', 1), ('dedicated', 1), ('art', 1), ('feature', 1), ('chapter', 1), ('containing', 1), ('advanced', 1), ('technique', 1), ('top', 1), ('programmer', 1), ('sound', 1), ('designer', 1), ('industry', 1), ('book', 1), ('continues', 1)]
[('design', 3), ('reverse', 2), ('series', 2), ('game', 2), ('look', 1), ('decision', 1), ('went', 1), ('classic', 1), ('video', 1), ('second', 1), ('installment', 1), ('looking', 1), ('chrono', 1), ('trigger', 1), ('written', 1), ('readable', 1), ('format', 1), ('broken', 1), ('four', 1), ('section', 1), ('examining', 1), ('important', 1), ('topic', 1), ('analyzes', 1), ('designer', 1)]
[('story', 4), ('game', 2), ('xbox', 2), ('lead', 1), ('do', 1), ('microsoft', 1), ('culture', 1), ('crazy', 1), ('around', 1), ('development', 1), ('promotion', 1), ('directx', 1), ('graphic', 1), ('standard', 1), ('required', 1), ('happen', 1), ('based', 1), ('dozen', 1), ('interview', 1), ('include', 1), ('colorful', 1), ('cast', 1), ('character', 1), ('solid', 1), ('technical', 1), ('background', 1)]
[('wireless', 2), ('communication', 2), ('part', 2), ('book', 2), ('become', 1), ('indispensable', 1), ('life', 1), ('deal', 1), ('security', 1), ('technological', 1), ('background', 1), ('application', 1), ('presented', 1), ('detail', 1), ('special', 1), ('emphasis', 1), ('laid', 1), ('iee', 1), ('standard', 1), ('developed', 1), ('technology', 1), ('major', 1)]
[('information', 2), ('charged', 1), ('ensuring', 1), ('confidentiality', 1), ('integrity', 1), ('availability', 1), ('delivery', 1), ('form', 1), ('entity', 1), ('assurance', 1), ('ia', 1), ('professional', 1), ('require', 1), ('fundamental', 1), ('understanding', 1), ('wide', 1), ('range', 1), ('specialization', 1), ('including', 1), ('digital', 1), ('forensics', 1), ('fraud', 1), ('examination', 1), ('system', 1), ('engineering', 1), ('security', 1), ('risk', 1), ('management', 1), ('privacy', 1)]
[('interface', 4), ('indesign', 4), ('prototyping', 2), ('guide', 2), ('book', 2), ('rapidly', 1), ('reader', 1), ('learn', 1), ('create', 1), ('wide', 1), ('range', 1), ('mobile', 1), ('desktop', 1), ('take', 1), ('minute', 1), ('instead', 1), ('day', 1), ('code', 1), ('free', 1), ('entirely', 1), ('hand', 1), ('tool', 1), ('act', 1), ('prototype', 1), ('user', 1)]
[('technology', 3), ('new', 2), ('driver', 2), ('acceptance', 1), ('system', 1), ('important', 1), ('area', 1), ('concern', 1), ('government', 1), ('automotive', 1), ('manufacturer', 1), ('equipment', 1), ('supplier', 1), ('especially', 1), ('significant', 1), ('potential', 1), ('enhance', 1), ('safety', 1), ('acceptable', 1), ('useful', 1), ('satisfying', 1), ('use', 1), ('want', 1)]
[('control', 4), ('system', 4), ('nonlinear', 3), ('development', 2), ('software', 2), ('computer', 1), ('provided', 1), ('many', 1), ('benefit', 1), ('teaching', 1), ('research', 1), ('design', 1), ('matlab', 1), ('considered', 1), ('dominant', 1), ('platform', 1), ('linear', 1), ('analysis', 1), ('book', 1), ('provides', 1), ('easy', 1), ('way', 1), ('learn', 1)]
[('share', 2), ('design', 2), ('usability', 2), ('top', 1), ('performing', 1), ('dotcoms', 1), ('common', 1), ('feature', 1), ('new', 1), ('software', 1), ('plug', 1), ('gadget', 1), ('piece', 1), ('technology', 1), ('site', 1), ('passionate', 1), ('focus', 1), ('book', 1), ('written', 1), ('international', 1), ('consultant', 1), ('writer', 1), ('trainer', 1), ('specializes', 1), ('evaluation', 1), ('web', 1), ('based', 1), ('wireless', 1), ('application', 1)]
[('wireless', 2), ('network', 2), ('system', 2), ('sensor', 2), ('book', 1), ('focus', 1), ('suitable', 1), ('method', 1), ('solve', 1), ('optimization', 1), ('problem', 1), ('utilizing', 1), ('digital', 1), ('kind', 1), ('emerging', 1), ('cornerstone', 1), ('technology', 1), ('new', 1), ('smart', 1), ('device', 1), ('direct', 1), ('application', 1), ('many', 1), ('field', 1), ('life', 1)]
[('gpu', 3), ('pro', 2), ('volume', 2), ('wolfgang', 1), ('engel', 1), ('guide', 1), ('gpgpu', 1), ('gather', 1), ('cutting', 1), ('edge', 1), ('information', 1), ('previous', 1), ('seven', 1), ('convenient', 1), ('single', 1), ('source', 1), ('anthology', 1), ('cover', 1), ('general', 1), ('purpose', 1), ('complete', 1), ('article', 1), ('leading', 1), ('programmer', 1), ('focus', 1), ('technique', 1), ('go', 1), ('beyond', 1), ('normal', 1), ('pixel', 1), ('triangle', 1), ('scope', 1)]
[('tracking', 2), ('system', 2), ('physical', 2), ('trackability', 1), ('general', 1), ('linear', 1), ('deal', 1), ('five', 1), ('class', 1), ('three', 1), ('new', 1), ('begin', 1), ('definition', 1), ('time', 1), ('together', 1), ('brief', 1), ('description', 1), ('crucial', 1), ('property', 1), ('principle', 1), ('uniqueness', 1), ('continuity', 1), ('variable', 1), ('essential', 1), ('natural', 1)]
[('matrix', 3), ('linear', 2), ('system', 2), ('new', 2), ('polynomial', 2), ('observability', 1), ('controllability', 1), ('general', 1), ('treat', 1), ('five', 1), ('different', 1), ('family', 1), ('three', 1), ('book', 1), ('begin', 1), ('definition', 1), ('time', 1), ('together', 1), ('brief', 1), ('description', 1), ('crucial', 1), ('property', 1), ('present', 1), ('result', 1), ('rational', 1)]
[('drawing', 3), ('force', 3), ('hundred', 2), ('swendly', 1), ('benilia', 1), ('share', 1), ('simple', 1), ('tangible', 1), ('tip', 1), ('trick', 1), ('understanding', 1), ('across', 1), ('full', 1), ('dunamism', 1), ('energy', 1), ('book', 1), ('expellant', 1), ('companion', 1), ('brand', 1), ('delivers', 1), ('succinct', 1), ('notation', 1), ('filtered', 1), ('approved', 1), ('mike', 1), ('mattesi', 1), ('improve', 1)]
[('government', 3), ('policy', 3), ('technology', 3), ('process', 2), ('book', 1), ('focus', 1), ('three', 1), ('inevitable', 1), ('facet', 1), ('namely', 1), ('discus', 1), ('genesis', 1), ('revitalization', 1), ('talk', 1), ('ongoing', 1), ('practice', 1), ('across', 1), ('developing', 1), ('country', 1), ('reveals', 1), ('inclusion', 1), ('novel', 1)]
[('watermarking', 4), ('domain', 2), ('digital', 2), ('book', 1), ('present', 1), ('overview', 1), ('newly', 1), ('developed', 1), ('technique', 1), ('various', 1), ('independent', 1), ('hybrid', 1), ('cover', 1), ('basic', 1), ('type', 1), ('implemented', 1), ('application', 1), ('machine', 1), ('learning', 1), ('algorithm', 1), ('onto', 1), ('review', 1), ('hardware', 1), ('implementation', 1), ('discus', 1)]
[('method', 3), ('quality', 2), ('mesh', 2), ('high', 1), ('play', 1), ('key', 1), ('role', 1), ('many', 1), ('application', 1), ('based', 1), ('digital', 1), ('modeling', 1), ('simulation', 1), ('finite', 1), ('element', 1), ('paragon', 1), ('approach', 1), ('known', 1), ('significantly', 1), ('improve', 1), ('computational', 1), ('efficiency', 1), ('solution', 1), ('accuracy', 1), ('lot', 1), ('effort', 1), ('put', 1)]
[('linux', 3), ('bookauthority', 2), ('system', 2), ('choosen', 1), ('best', 1), ('mint', 1), ('book', 1), ('time', 1), ('textbook', 1), ('second', 1), ('edition', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('contemporary', 1), ('use', 1), ('operating', 1), ('every', 1), ('level', 1), ('student', 1), ('practitioner', 1), ('beginner', 1), ('advanced', 1), ('user', 1), ('text', 1), ('clearly', 1), ('illustrates', 1), ('specific', 1), ('command', 1)]
[('network', 3), ('opportunistic', 2), ('allow', 1), ('mobile', 1), ('user', 1), ('share', 1), ('information', 1), ('without', 1), ('infrastructure', 1), ('book', 1), ('suitable', 1), ('undergraduate', 1), ('postgraduate', 1), ('discus', 1), ('various', 1), ('aspect', 1), ('networking', 1), ('including', 1), ('foundation', 1), ('ad', 1), ('hoc', 1), ('taxonomy', 1), ('mobility', 1), ('model', 1), ('etc', 1)]
[('design', 3), ('reverse', 2), ('series', 2), ('game', 2), ('look', 1), ('decision', 1), ('went', 1), ('classic', 1), ('video', 1), ('fifth', 1), ('installment', 1), ('looking', 1), ('final', 1), ('fantasy', 1), ('vii', 1), ('written', 1), ('readable', 1), ('format', 1), ('broken', 1), ('eight', 1), ('section', 1), ('examining', 1), ('important', 1), ('topic', 1), ('latter', 1), ('day', 1), ('critic', 1)]
[('design', 3), ('reverse', 2), ('series', 2), ('game', 2), ('diablo', 2), ('ii', 2), ('three', 2), ('look', 1), ('decision', 1), ('went', 1), ('classic', 1), ('video', 1), ('sixth', 1), ('installment', 1), ('looking', 1), ('written', 1), ('readable', 1), ('format', 1), ('broken', 1), ('section', 1), ('examining', 1), ('topic', 1), ('important', 1), ('borrow', 1), ('different', 1)]
[('every', 2), ('world', 2), ('ready', 1), ('master', 1), ('life', 1), ('craft', 1), ('creator', 1), ('thought', 1), ('word', 1), ('action', 1), ('impact', 1), ('whole', 1), ('manifest', 1), ('new', 1), ('reality', 1), ('bring', 1), ('directly', 1), ('reflect', 1), ('awareness', 1), ('personal', 1), ('development', 1), ('compassion', 1), ('value', 1), ('commitment', 1), ('worthwhile', 1), ('endeavor', 1), ('book', 1), ('field', 1), ('guide', 1)]
[('comprehensive', 2), ('book', 1), ('provides', 1), ('detail', 1), ('swarm', 1), ('intelligence', 1), ('based', 1), ('technique', 1), ('available', 1), ('till', 1), ('date', 1), ('manner', 1), ('along', 1), ('mathematical', 1), ('proof', 1), ('act', 1), ('foundation', 1), ('author', 1), ('researcher', 1), ('industry', 1), ('professional', 1), ('monograph', 1), ('present', 1), ('latest', 1), ('state', 1), ('art', 1), ('research', 1), ('done', 1), ('varied', 1), ('intelligent', 1)]
[('network', 3), ('international', 2), ('effective', 1), ('management', 1), ('communication', 1), ('difficult', 1), ('costly', 1), ('activity', 1), ('even', 1), ('cross', 1), ('border', 1), ('manager', 1), ('face', 1), ('number', 1), ('issue', 1), ('crucial', 1), ('strategic', 1), ('decision', 1), ('making', 1), ('including', 1), ('varying', 1), ('telecommunication', 1), ('regulation', 1), ('operator', 1), ('service', 1), ('found', 1), ('within', 1)]
[('gpu', 2), ('pro', 2), ('image', 2), ('space', 2), ('volume', 2), ('wolfgang', 1), ('engel', 1), ('guide', 1), ('gather', 1), ('cutting', 1), ('edge', 1), ('information', 1), ('previous', 1), ('seven', 1), ('convenient', 1), ('single', 1), ('source', 1), ('anthology', 1), ('cover', 1), ('various', 1), ('algorithm', 1), ('operate', 1), ('primarily', 1), ('complete', 1), ('article', 1), ('leading', 1), ('programmer', 1), ('speaks', 1), ('power', 1), ('convenience', 1)]
[('university', 3), ('volume', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('th', 1), ('workshop', 1), ('computing', 1), ('theory', 1), ('practice', 1), ('wctp', 1), ('devoted', 1), ('theoretical', 1), ('practical', 1), ('approach', 1), ('computation', 1), ('conference', 1), ('organized', 1), ('four', 1), ('top', 1), ('japan', 1), ('philippine', 1), ('tokyo', 1), ('institute', 1), ('technology', 1), ('osaka', 1)]
[('learning', 4), ('reinforcement', 2), ('cyber', 2), ('physical', 2), ('system', 2), ('rl', 2), ('machine', 2), ('cybersecurity', 1), ('case', 1), ('study', 1), ('inspired', 1), ('recent', 1), ('development', 1), ('field', 1), ('cps', 1), ('rooted', 1), ('behavioral', 1), ('psychology', 1), ('primary', 1), ('strand', 1), ('different', 1), ('algorithm', 1)]
[('based', 3), ('machine', 2), ('translation', 2), ('polish', 2), ('language', 2), ('book', 1), ('review', 1), ('way', 1), ('improve', 1), ('statistical', 1), ('speech', 1), ('english', 1), ('research', 1), ('conducted', 1), ('mostly', 1), ('dictionary', 1), ('rule', 1), ('syntax', 1), ('technique', 1), ('popular', 1), ('methodology', 1), ('tool', 1), ('suited', 1), ('require', 1), ('adaptation', 1)]
[('animation', 3), ('game', 2), ('make', 1), ('difference', 1), ('video', 1), ('purely', 1), ('functional', 1), ('relatively', 1), ('new', 1), ('medium', 1), ('non', 1), ('linear', 1), ('creation', 1), ('differ', 1), ('traditional', 1), ('field', 1), ('film', 1), ('television', 1), ('book', 1), ('de', 1), ('mystifies', 1), ('side', 1), ('development', 1), ('explaining', 1), ('every', 1), ('step', 1), ('process', 1), ('providing', 1)]
[('book', 2), ('challenge', 2), ('variability', 2), ('intensive', 2), ('system', 2), ('different', 2), ('feature', 2), ('address', 1), ('software', 1), ('engineering', 1), ('support', 1), ('usage', 1), ('scenario', 1), ('accommodating', 1), ('unforeseen', 1), ('quality', 1), ('academic', 1), ('industrial', 1), ('contribution', 1), ('discus', 1), ('developing', 1), ('maintaining', 1)]
[('book', 2), ('internet', 2), ('technology', 2), ('author', 1), ('identified', 1), ('seven', 1), ('key', 1), ('emerging', 1), ('related', 1), ('thing', 1), ('smart', 1), ('everything', 1), ('big', 1), ('data', 1), ('cloud', 1), ('computing', 1), ('cybersecurity', 1), ('software', 1), ('defined', 1), ('networking', 1), ('online', 1), ('education', 1), ('together', 1), ('transformational', 1), ('disruptive', 1), ('provides', 1), ('researcher', 1), ('student', 1)]
[('demand', 1), ('chip', 1), ('functionality', 1), ('requirement', 1), ('low', 1), ('power', 1), ('operation', 1), ('continue', 1), ('increase', 1), ('result', 1), ('emergence', 1), ('mobile', 1), ('wearable', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('product', 1), ('identified', 1), ('inevitable', 1), ('path', 1), ('moving', 1), ('forward', 1), ('circuit', 1), ('become', 1), ('complex', 1), ('especially', 1), ('three', 1), ('dimensional', 1), ('one', 1), ('new', 1), ('insight', 1)]
[('emergent', 2), ('book', 2), ('modern', 1), ('computing', 1), ('relies', 1), ('future', 1), ('technology', 1), ('conceived', 1), ('via', 1), ('interaction', 1), ('computer', 1), ('science', 1), ('engineering', 1), ('chemistry', 1), ('physic', 1), ('biology', 1), ('highly', 1), ('interdisciplinary', 1), ('present', 1), ('advance', 1), ('field', 1), ('parallel', 1), ('distributed', 1), ('information', 1), ('processing', 1), ('computation', 1), ('represents', 1), ('major', 1)]
[('gpu', 2), ('pro', 2), ('shadow', 2), ('volume', 2), ('wolfgang', 1), ('engel', 1), ('guide', 1), ('gather', 1), ('cutting', 1), ('edge', 1), ('information', 1), ('previous', 1), ('seven', 1), ('convenient', 1), ('single', 1), ('source', 1), ('anthology', 1), ('cover', 1), ('various', 1), ('algorithm', 1), ('used', 1), ('generate', 1), ('data', 1), ('complete', 1), ('article', 1), ('leading', 1), ('programmer', 1), ('focus', 1), ('achieving', 1), ('good', 1), ('visual', 1)]
[('security', 2), ('data', 2), ('first', 1), ('published', 1), ('volume', 1), ('emerged', 1), ('response', 1), ('genesis', 1), ('internet', 1), ('provides', 1), ('early', 1), ('consideration', 1), ('issue', 1), ('including', 1), ('computer', 1), ('virus', 1), ('cyber', 1), ('network', 1), ('encryption', 1), ('management', 1), ('particular', 1), ('focus', 1), ('applying', 1), ('risk', 1), ('analysis', 1), ('financial', 1), ('institution', 1), ('stage', 1), ('set', 1), ('uk', 1)]
[('electrical', 5), ('machine', 3), ('modeling', 2), ('control', 2), ('engineering', 2), ('student', 2), ('book', 1), ('introduces', 1), ('science', 1), ('graduate', 1), ('undergraduate', 1), ('researcher', 1), ('working', 1), ('target', 1), ('time', 1), ('derive', 1), ('mathematical', 1), ('equation', 1)]
[('part', 2), ('designer', 2), ('typographic', 2), ('technical', 1), ('theoretical', 1), ('practical', 1), ('guide', 1), ('web', 1), ('typography', 1), ('help', 1), ('understand', 1), ('choice', 1), ('make', 1), ('layout', 1), ('prototyping', 1), ('program', 1), ('behave', 1), ('turned', 1), ('live', 1), ('code', 1), ('series', 1), ('demo', 1), ('book', 1), ('teach', 1), ('create', 1), ('specific', 1), ('webpage', 1), ('learning', 1), ('enough', 1), ('html', 1)]
[('spatial', 3), ('statistic', 2), ('requires', 2), ('tool', 2), ('data', 2), ('understanding', 1), ('applied', 1), ('mathematical', 1), ('linear', 1), ('model', 1), ('theory', 1), ('regression', 1), ('time', 1), ('series', 1), ('stochastic', 1), ('process', 1), ('mindset', 1), ('focus', 1), ('unique', 1), ('characteristic', 1), ('development', 1), ('specialized', 1), ('analytical', 1), ('designed', 1), ('explicitly', 1), ('analysis', 1)]
[('character', 4), ('animation', 2), ('design', 2), ('composition', 1), ('st', 1), ('½', 1), ('century', 1), ('focus', 1), ('application', 1), ('illustration', 1), ('game', 1), ('film', 1), ('cover', 1), ('various', 1), ('technical', 1), ('aspect', 1), ('artistic', 1), ('applicability', 1), ('book', 1), ('analyzes', 1), ('detail', 1), ('purpose', 1), ('feature', 1), ('provides', 1), ('example', 1)]
[('composition', 2), ('image', 2), ('animation', 2), ('artistic', 2), ('aspect', 2), ('st', 1), ('½', 1), ('century', 1), ('making', 1), ('focus', 1), ('technical', 1), ('application', 1), ('illustration', 1), ('game', 1), ('film', 1), ('cover', 1), ('design', 1), ('discus', 1), ('detail', 1), ('applicability', 1), ('impact', 1), ('narrative', 1), ('emphasis', 1), ('placed', 1), ('ability', 1)]
[('frame', 4), ('animator', 2), ('realm', 1), ('stalwart', 1), ('artist', 1), ('animating', 1), ('sand', 1), ('clay', 1), ('wet', 1), ('paint', 1), ('accessible', 1), ('filmmaker', 1), ('experimental', 1), ('mind', 1), ('created', 1), ('directly', 1), ('camera', 1), ('stopmotion', 1), ('fluid', 1), ('animation', 1), ('provides', 1), ('completely', 1), ('unique', 1), ('visual', 1), ('world', 1), ('pioneering', 1)]
[('dsl', 4), ('arena', 1), ('expanding', 1), ('rapidly', 1), ('making', 1), ('highly', 1), ('unlikely', 1), ('single', 1), ('author', 1), ('adequately', 1), ('address', 1), ('breadth', 1), ('depth', 1), ('subject', 1), ('responding', 1), ('demand', 1), ('designer', 1), ('worldwide', 1), ('fundamental', 1), ('technology', 1), ('combine', 1), ('strength', 1), ('field', 1), ('renowned', 1), ('expert', 1), ('providing', 1), ('foundation', 1), ('aspect', 1), ('system', 1), ('design', 1)]
[('security', 4), ('network', 2), ('technology', 2), ('second', 1), ('edition', 1), ('present', 1), ('key', 1), ('diverse', 1), ('field', 1), ('using', 1), ('hierarchical', 1), ('framework', 1), ('enables', 1), ('understanding', 1), ('component', 1), ('relate', 1), ('another', 1), ('interwork', 1), ('author', 1), ('delivers', 1), ('unique', 1), ('presentation', 1), ('major', 1), ('legacy', 1), ('state', 1), ('art', 1), ('emerging', 1), ('tec', 1)]
[('modeling', 4), ('skill', 3), ('step', 2), ('reader', 2), ('textbook', 1), ('learning', 1), ('fundamental', 1), ('lesson', 1), ('book', 1), ('develops', 1), ('series', 1), ('exercise', 1), ('creating', 1), ('module', 1), ('medieval', 1), ('castle', 1), ('environment', 1), ('text', 1), ('introduces', 1), ('new', 1), ('additionally', 1), ('call', 1), ('perform', 1), ('repetitive', 1), ('task', 1), ('reinforcing', 1), ('learned', 1)]
[('model', 2), ('idea', 2), ('simulation', 1), ('kind', 1), ('tool', 1), ('dealing', 1), ('reality', 1), ('human', 1), ('always', 1), ('used', 1), ('mental', 1), ('better', 1), ('understand', 1), ('world', 1), ('around', 1), ('make', 1), ('plan', 1), ('consider', 1), ('different', 1), ('possibility', 1), ('share', 1), ('others', 1), ('test', 1), ('change', 1), ('determine', 1), ('whether', 1), ('development', 1), ('feasible', 1), ('book', 1), ('modeling', 1)]
[('book', 2), ('creature', 2), ('rigging', 2), ('setup', 2), ('d', 2), ('max', 2), ('advanced', 2), ('follow', 1), ('iterates', 1), ('principle', 1), ('digital', 1), ('art', 1), ('science', 1), ('cg', 1), ('enhances', 1), ('relativity', 1), ('wing', 1), ('tail', 1), ('tentacle', 1), ('discus', 1), ('technique', 1), ('reader', 1), ('create', 1), ('fish', 1), ('octopus', 1), ('game', 1), ('throne', 1), ('style', 1), ('dragon', 1)]
[('book', 3), ('medical', 2), ('provides', 1), ('detail', 1), ('applying', 1), ('intelligent', 1), ('mining', 1), ('technique', 1), ('extracting', 1), ('pre', 1), ('processing', 1), ('data', 1), ('various', 1), ('source', 1), ('application', 1), ('based', 1), ('healthcare', 1), ('research', 1), ('moreover', 1), ('different', 1), ('datasets', 1), ('used', 1), ('thereby', 1), ('exploring', 1), ('real', 1), ('world', 1), ('case', 1), ('study', 1), ('related', 1), ('informatics', 1), ('provide', 1), ('insight', 1)]
[('conference', 2), ('computational', 2), ('science', 2), ('engineering', 2), ('international', 1), ('method', 1), ('iccmse', 1), ('unique', 1), ('kind', 1), ('regroups', 1), ('original', 1), ('contribution', 1), ('field', 1), ('traditional', 1), ('mathematics', 1), ('physic', 1), ('chemistry', 1), ('biology', 1), ('medicine', 1), ('branch', 1), ('aim', 1), ('bring', 1), ('together', 1)]
[('design', 4), ('level', 3), ('architecture', 2), ('architectural', 2), ('written', 1), ('game', 1), ('developer', 1), ('professor', 1), ('trained', 1), ('approach', 1), ('first', 1), ('book', 1), ('integrate', 1), ('spatial', 1), ('theory', 1), ('field', 1), ('explores', 1), ('principle', 1), ('context', 1), ('history', 1), ('second', 1), ('edition', 1)]
[('science', 3), ('mathematics', 3), ('proceeding', 2), ('conference', 1), ('focus', 1), ('enabling', 1), ('practitioner', 1), ('citizen', 1), ('respond', 1), ('pressing', 1), ('challenge', 1), ('global', 1), ('competitiveness', 1), ('sustainable', 1), ('development', 1), ('transforming', 1), ('research', 1), ('teaching', 1), ('consist', 1), ('paper', 1), ('presented', 1)]
[('system', 3), ('theory', 2), ('autonomous', 2), ('book', 1), ('examines', 1), ('recent', 1), ('advance', 1), ('model', 1), ('method', 1), ('relevant', 1), ('automated', 1), ('following', 1), ('chapter', 1), ('provide', 1), ('perspective', 1), ('modern', 1), ('self', 1), ('driving', 1), ('car', 1), ('unmanned', 1), ('aerial', 1), ('directly', 1), ('professional', 1), ('working', 1), ('studying', 1), ('current', 1), ('surrounding', 1), ('topic', 1)]
[('copyright', 2), ('protection', 2), ('book', 1), ('describes', 1), ('need', 1), ('multimedia', 1), ('object', 1), ('develops', 1), ('invisible', 1), ('image', 1), ('watermarking', 1), ('scheme', 1), ('serve', 1), ('purpose', 1), ('intelligent', 1), ('system', 1), ('introduced', 1), ('generate', 1), ('better', 1), ('visual', 1), ('transparency', 1), ('increased', 1), ('payload', 1)]
[('recipient', 1), ('sjsu', 1), ('san', 1), ('jose', 1), ('state', 1), ('university', 1), ('annual', 1), ('author', 1), ('artist', 1), ('award', 1), ('modern', 1), ('time', 1), ('individual', 1), ('need', 1), ('knowledgeable', 1), ('cybersecurity', 1), ('practical', 1), ('skill', 1), ('ability', 1), ('protect', 1), ('cyberspace', 1), ('level', 1), ('awareness', 1), ('among', 1), ('college', 1), ('student', 1), ('faculty', 1), ('represent', 1)]
[('videogame', 2), ('development', 1), ('usually', 1), ('seen', 1), ('male', 1), ('dominated', 1), ('field', 1), ('even', 1), ('playing', 1), ('videogames', 1), ('often', 1), ('wrongly', 1), ('viewed', 1), ('pastime', 1), ('men', 1), ('behind', 1), ('curtain', 1), ('woman', 1), ('always', 1), ('played', 1), ('myriad', 1), ('important', 1), ('role', 1), ('gaming', 1), ('programmer', 1), ('artist', 1), ('designer', 1), ('producer', 1), ('female', 1), ('developer', 1), ('endure', 1), ('pressure', 1), ('job', 1)]
[('communication', 3), ('conference', 2), ('volume', 1), ('represents', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('innovation', 1), ('engineering', 1), ('icice', 1), ('held', 1), ('china', 1), ('november', 1), ('aimed', 1), ('provide', 1), ('integrated', 1), ('platform', 1), ('researcher', 1), ('wide', 1), ('range', 1), ('field', 1), ('including', 1), ('information', 1), ('technology', 1)]
[('data', 3), ('major', 1), ('challenge', 1), ('migrate', 1), ('large', 1), ('database', 1), ('system', 1), ('say', 1), ('example', 1), ('transfer', 1), ('critical', 1), ('oracle', 1), ('sql', 1), ('server', 1), ('consider', 1), ('several', 1), ('issue', 1), ('loss', 1), ('transferred', 1), ('security', 1), ('cost', 1), ('effort', 1), ('technical', 1), ('aspect', 1), ('software', 1), ('involved', 1), ('etc', 1), ('book', 1)]
[('web', 4), ('semantic', 2), ('service', 2), ('owl', 2), ('developing', 1), ('informed', 1), ('work', 1), ('w', 1), ('semweb', 1), ('particular', 1), ('understand', 1), ('book', 1), ('fill', 1), ('need', 1), ('knowledge', 1), ('met', 1), ('david', 1), ('martin', 1), ('editor', 1), ('coalition', 1), ('inventor', 1), ('world', 1), ('wide', 1), ('tim', 1)]
[('game', 2), ('examines', 2), ('mechanic', 2), ('history', 2), ('industry', 2), ('design', 1), ('deep', 1), ('dive', 1), ('series', 1), ('specific', 1), ('system', 1), ('course', 1), ('book', 1), ('jumping', 1), ('oldest', 1), ('evolved', 1), ('changed', 1), ('year', 1), ('author', 1), ('look', 1), ('transition', 1), ('multiple', 1), ('element', 1), ('make', 1)]
[('game', 3), ('video', 2), ('industry', 2), ('every', 2), ('super', 1), ('mario', 1), ('bros', 1), ('doom', 1), ('minecraft', 1), ('hard', 1), ('imagine', 1), ('life', 1), ('today', 1), ('without', 1), ('creative', 1), ('tower', 1), ('hollywood', 1), ('term', 1), ('financial', 1), ('cultural', 1), ('impact', 1), ('caters', 1), ('everyone', 1), ('genre', 1), ('conceivable', 1), ('electronic', 1), ('device', 1), ('dedicated', 1), ('pc', 1), ('gaming', 1), ('rig', 1)]
[('game', 4), ('video', 3), ('development', 2), ('cycle', 2), ('concept', 2), ('deserve', 1), ('better', 1), ('villain', 1), ('highly', 1), ('accessible', 1), ('guide', 1), ('designer', 1), ('matter', 1), ('level', 1), ('experience', 1), ('understand', 1), ('needed', 1), ('successful', 1), ('supporting', 1), ('live', 1), ('chapter', 1), ('outline', 1), ('period', 1), ('key', 1), ('need', 1)]
[('data', 2), ('player', 2), ('last', 1), ('decade', 1), ('witnessed', 1), ('rise', 1), ('big', 1), ('game', 1), ('development', 1), ('increasing', 1), ('proliferation', 1), ('internet', 1), ('enabled', 1), ('gaming', 1), ('device', 1), ('made', 1), ('easier', 1), ('collect', 1), ('large', 1), ('amount', 1), ('related', 1), ('time', 1), ('emergence', 1), ('new', 1), ('business', 1), ('model', 1), ('diversification', 1), ('base', 1), ('exposed', 1), ('broader', 1)]
[('android', 4), ('plug', 3), ('technology', 3), ('used', 3), ('book', 2), ('widely', 2), ('present', 1), ('development', 1), ('majority', 1), ('chinese', 1), ('internet', 1), ('company', 1), ('becoming', 1), ('worldwide', 1), ('fully', 1), ('describes', 1), ('history', 1), ('installation', 1), ('startup', 1), ('process', 1), ('new', 1), ('feature', 1)]
[('computer', 3), ('science', 3), ('course', 2), ('engineering', 2), ('first', 2), ('advanced', 1), ('data', 1), ('structure', 1), ('core', 1), ('graduate', 1), ('program', 1), ('allied', 1), ('discipline', 1), ('offer', 1), ('year', 1), ('semester', 1), ('curriculum', 1), ('objective', 1), ('enable', 1), ('student', 1), ('needed', 1), ('foundation', 1)]
[('gameguru', 2), ('user', 2), ('entry', 1), ('level', 1), ('engine', 1), ('designed', 1), ('easy', 1), ('use', 1), ('extremely', 1), ('accessible', 1), ('book', 1), ('give', 1), ('information', 1), ('needed', 1), ('access', 1), ('full', 1), ('depth', 1), ('feature', 1), ('available', 1), ('program', 1), ('detail', 1), ('perform', 1), ('complex', 1), ('task', 1), ('found', 1), ('easily', 1), ('anywhere', 1), ('documentation', 1)]
[('internet', 3), ('practical', 1), ('handbook', 1), ('computing', 1), ('analyzes', 1), ('broad', 1), ('array', 1), ('technology', 1), ('concern', 1), ('related', 1), ('including', 1), ('corporate', 1), ('intranet', 1), ('fresh', 1), ('insightful', 1), ('article', 1), ('recognized', 1), ('expert', 1), ('address', 1), ('key', 1), ('challenge', 1), ('facing', 1), ('user', 1), ('designer', 1), ('integrator', 1), ('policymakers', 1), ('addition', 1), ('discussing', 1), ('major', 1), ('application', 1)]
[('network', 4), ('peer', 2), ('availability', 1), ('cheaper', 1), ('faster', 1), ('reliable', 1), ('electronic', 1), ('component', 1), ('stimulated', 1), ('important', 1), ('advance', 1), ('computing', 1), ('communication', 1), ('technology', 1), ('theoretical', 1), ('algorithmic', 1), ('approach', 1), ('address', 1), ('key', 1), ('issue', 1), ('sensor', 1), ('ad', 1), ('hoc', 1), ('wireless', 1), ('play', 1), ('central', 1), ('role', 1), ('development', 1), ('emerging', 1)]
[('technology', 2), ('protocol', 2), ('level', 2), ('hundred', 1), ('used', 1), ('telecommunication', 1), ('run', 1), ('full', 1), ('gamut', 1), ('application', 1), ('physical', 1), ('overwhelming', 1), ('try', 1), ('keep', 1), ('track', 1), ('network', 1), ('design', 1), ('second', 1), ('edition', 1), ('management', 1), ('technical', 1), ('perspective', 1), ('broad', 1), ('survey', 1), ('major', 1), ('networking', 1), ('interr', 1)]
[('choice', 3), ('academic', 2), ('title', 2), ('recognition', 2), ('oat', 2), ('award', 2), ('winner', 1), ('outstanding', 1), ('represents', 1), ('highest', 1), ('caliber', 1), ('scholarly', 1), ('reviewed', 1), ('conveys', 1), ('extraordinary', 1), ('community', 1), ('book', 1), ('discus', 1), ('varied', 1), ('topic', 1), ('pertaining', 1), ('advanced', 1), ('date', 1)]
[('neural', 3), ('network', 2), ('cognition', 2), ('adaptive', 2), ('using', 2), ('featuring', 1), ('international', 1), ('team', 1), ('author', 1), ('perspective', 1), ('robotics', 1), ('present', 1), ('several', 1), ('approach', 1), ('modeling', 1), ('human', 1), ('language', 1), ('computing', 1), ('technique', 1), ('describes', 1), ('robotic', 1), ('system', 1), ('produced', 1), ('architecture', 1), ('covering', 1), ('wide', 1), ('range', 1)]
[('need', 3), ('analytics', 2), ('growth', 2), ('program', 2), ('skill', 1), ('source', 1), ('burgeoning', 1), ('number', 1), ('decision', 1), ('science', 1), ('higher', 1), ('education', 1), ('developed', 1), ('feed', 1), ('capable', 1), ('employee', 1), ('area', 1), ('size', 1), ('continuing', 1), ('mean', 1), ('still', 1), ('space', 1), ('new', 1), ('development', 1), ('school', 1), ('wishing', 1), ('pursue', 1)]
[('handbook', 2), ('data', 2), ('management', 2), ('edition', 2), ('high', 2), ('packed', 1), ('dozen', 1), ('nonsense', 1), ('chapter', 1), ('written', 1), ('leading', 1), ('professional', 1), ('show', 1), ('student', 1), ('design', 1), ('build', 1), ('maintain', 1), ('performance', 1), ('availability', 1), ('database', 1), ('multiple', 1), ('environment', 1), ('comprehensive', 1), ('single', 1), ('volume', 1), ('guide', 1), ('kind', 1)]
[('name', 2), ('primary', 1), ('aim', 1), ('catalog', 1), ('offer', 1), ('accounting', 1), ('specie', 1), ('originally', 1), ('proposed', 1), ('first', 1), ('usage', 1), ('combination', 1), ('including', 1), ('valid', 1), ('synonymy', 1), ('misspelling', 1), ('published', 1), ('area', 1), ('follow', 1), ('policy', 1), ('outlined', 1), ('code', 1), ('zoological', 1), ('nomenclature', 1), ('nonmenclatorial', 1)]
[('server', 4), ('heart', 1), ('network', 1), ('handbook', 1), ('management', 1), ('administration', 1), ('keep', 1), ('date', 1), ('latest', 1), ('technology', 1), ('give', 1), ('tool', 1), ('need', 1), ('choose', 1), ('configure', 1), ('maintain', 1), ('serve', 1), ('user', 1), ('data', 1), ('stream', 1), ('corporate', 1), ('goal', 1), ('equal', 1), ('efficiency', 1), ('practical', 1), ('tip', 1), ('case', 1), ('study', 1)]
[('algorithm', 4), ('learning', 2), ('complex', 2), ('system', 2), ('modeling', 2), ('type', 2), ('inductive', 1), ('professional', 1), ('monograph', 1), ('survey', 1), ('new', 1), ('scientific', 1), ('science', 1), ('engineering', 1), ('book', 1), ('feature', 1), ('discussion', 1), ('development', 1), ('structure', 1), ('behavior', 1), ('comprehensive', 1), ('coverage', 1), ('useful', 1)]
[('ai', 2), ('system', 2), ('current', 2), ('field', 1), ('artificial', 1), ('intelligence', 1), ('grown', 1), ('dramatically', 1), ('recent', 1), ('decade', 1), ('niche', 1), ('expert', 1), ('myriad', 1), ('deep', 1), ('machine', 1), ('learning', 1), ('application', 1), ('include', 1), ('personal', 1), ('assistant', 1), ('natural', 1), ('language', 1), ('interface', 1), ('medical', 1), ('financial', 1), ('traffic', 1), ('management', 1), ('boom', 1), ('engineering', 1), ('mask', 1), ('fact', 1)]
[('isc', 2), ('security', 2), ('practitioner', 2), ('sscp', 2), ('certification', 2), ('system', 1), ('certified', 1), ('important', 1), ('credential', 1), ('information', 1), ('helped', 1), ('thousand', 1), ('around', 1), ('world', 1), ('obtain', 1), ('distinguished', 1), ('bestselling', 1), ('official', 1), ('guide', 1), ('cbk', 1), ('quickly', 1), ('become', 1), ('book', 1), ('many', 1)]
[('computing', 3), ('international', 2), ('conference', 2), ('communication', 1), ('system', 1), ('icc', 1), ('provides', 1), ('high', 1), ('level', 1), ('forum', 1), ('researcher', 1), ('recent', 1), ('advance', 1), ('field', 1), ('electronic', 1), ('device', 1), ('big', 1), ('data', 1), ('analytics', 1), ('cyber', 1), ('security', 1), ('quantum', 1), ('biocomputing', 1), ('telecommunication', 1), ('etc', 1), ('aim', 1), ('bridge', 1), ('gap', 1)]
[('biometric', 2), ('computing', 2), ('recognition', 2), ('analysis', 2), ('registration', 1), ('present', 1), ('introduction', 1), ('biometrics', 1), ('along', 1), ('detailed', 1), ('identification', 1), ('method', 1), ('book', 1), ('form', 1), ('required', 1), ('platform', 1), ('understanding', 1), ('implementation', 1), ('securing', 1), ('target', 1), ('system', 1), ('provides', 1), ('comprehensive', 1)]
[('design', 5), ('physical', 2), ('flow', 2), ('technology', 2), ('change', 2), ('project', 1), ('depends', 1), ('upon', 1), ('size', 1), ('number', 1), ('designer', 1), ('clock', 1), ('frequency', 1), ('time', 1), ('advance', 1), ('style', 1), ('constantly', 1), ('reinvented', 1), ('traditional', 1), ('phase', 1), ('removed', 1), ('new', 1), ('one', 1), ('added', 1), ('accommodate', 1)]
[('clinical', 2), ('medical', 2), ('imaging', 2), ('advance', 1), ('computerized', 1), ('analysis', 1), ('book', 1), ('devoted', 1), ('spreading', 1), ('knowledge', 1), ('publication', 1), ('scholarly', 1), ('research', 1), ('primarily', 1), ('field', 1), ('type', 1), ('chapter', 1), ('consented', 1), ('include', 1), ('cover', 1), ('development', 1), ('implementation', 1), ('algorithm', 1), ('strategy', 1), ('based', 1)]
[('book', 2), ('everyone', 1), ('interested', 1), ('computer', 1), ('graphic', 1), ('take', 1), ('exciting', 1), ('journey', 1), ('powered', 1), ('imagination', 1), ('love', 1), ('discovery', 1), ('invention', 1), ('chapter', 1), ('investigates', 1), ('unique', 1), ('topic', 1), ('give', 1), ('tool', 1), ('continue', 1), ('exploration', 1), ('examine', 1), ('possibility', 1), ('pop', 1), ('card', 1)]
[('internet', 3), ('end', 2), ('metaheuristics', 1), ('widely', 1), ('used', 1), ('solve', 1), ('important', 1), ('practical', 1), ('combinatorial', 1), ('optimization', 1), ('problem', 1), ('many', 1), ('new', 1), ('multicast', 1), ('application', 1), ('emerging', 1), ('tv', 1), ('radio', 1), ('multipoint', 1), ('video', 1), ('streaming', 1), ('require', 1), ('reduced', 1), ('bandwidth', 1), ('consumption', 1), ('delay', 1), ('packet', 1), ('loss', 1), ('ratio', 1), ('necessary', 1), ('design', 1)]
[('lyapunov', 2), ('control', 2), ('nonlinear', 2), ('design', 2), ('based', 1), ('robotic', 1), ('system', 1), ('describes', 1), ('solution', 1), ('problem', 1), ('arise', 1), ('robot', 1), ('required', 1), ('interact', 1), ('manipulate', 1), ('environment', 1), ('practical', 1), ('scenario', 1), ('require', 1), ('controller', 1), ('work', 1), ('around', 1), ('uncertainty', 1), ('measurement', 1), ('related', 1), ('issue', 1), ('author', 1), ('use', 1), ('direc', 1)]
[('robot', 2), ('peer', 2), ('interaction', 2), ('sharing', 2), ('book', 1), ('set', 1), ('unified', 1), ('analytical', 1), ('framework', 1), ('various', 1), ('human', 1), ('system', 1), ('involve', 1), ('either', 1), ('space', 1), ('time', 1), ('hierarchical', 1), ('methodology', 1), ('designing', 1), ('behavior', 1), ('control', 1), ('planning', 1), ('decision', 1), ('learning', 1), ('proposed', 1), ('particular', 1), ('following', 1), ('topic', 1)]
[('technology', 2), ('physical', 1), ('behavioral', 1), ('biometric', 1), ('fingerprinting', 1), ('facial', 1), ('recognition', 1), ('voice', 1), ('identification', 1), ('etc', 1), ('enhanced', 1), ('level', 1), ('security', 1), ('substantially', 1), ('recent', 1), ('year', 1), ('government', 1), ('corporates', 1), ('employed', 1), ('achieve', 1), ('better', 1), ('customer', 1), ('satisfaction', 1), ('biometrics', 1), ('face', 1), ('major', 1), ('challenge', 1), ('reducing', 1)]
[('sh', 2), ('language', 2), ('book', 1), ('high', 1), ('level', 1), ('overview', 1), ('relationship', 1), ('realtime', 1), ('shading', 1), ('graphic', 1), ('processing', 1), ('unit', 1), ('programming', 1), ('reference', 1), ('manual', 1), ('specification', 1), ('methodically', 1), ('exhaustively', 1), ('present', 1), ('detail', 1), ('various', 1), ('feature', 1)]
[('beyond', 2), ('edition', 2), ('first', 2), ('go', 1), ('gamification', 1), ('badge', 1), ('leaderboards', 1), ('new', 1), ('book', 1), ('published', 1), ('helped', 1), ('transform', 1), ('education', 1), ('going', 1), ('far', 1), ('multiplayer', 1), ('classroom', 1), ('forthrightly', 1), ('examining', 1), ('worked', 1), ('year', 1), ('development', 1), ('tool', 1), ('design', 1), ('structured', 1), ('learning', 1)]
[('software', 3), ('security', 2), ('practical', 2), ('collection', 1), ('best', 1), ('practice', 1), ('effective', 1), ('implementation', 1), ('recommendation', 1), ('proven', 1), ('work', 1), ('secure', 1), ('resilient', 1), ('agile', 1), ('development', 1), ('leaf', 1), ('boring', 1), ('detail', 1), ('theory', 1), ('discussion', 1), ('possible', 1), ('concentrate', 1), ('applied', 1), ('written', 1), ('aid', 1)]
[('complex', 2), ('number', 2), ('parallel', 1), ('computing', 1), ('architecture', 1), ('apis', 1), ('iot', 1), ('big', 1), ('data', 1), ('stream', 1), ('processing', 1), ('commences', 1), ('point', 1), ('high', 1), ('performance', 1), ('uniprocessors', 1), ('becoming', 1), ('increasingly', 1), ('expensive', 1), ('power', 1), ('hungry', 1), ('basic', 1), ('trade', 1), ('exists', 1), ('use', 1), ('small', 1), ('processor', 1), ('extreme', 1), ('moderate', 1), ('large', 1)]
[('book', 2), ('technique', 2), ('cover', 1), ('heuristic', 1), ('optimization', 1), ('application', 1), ('engineering', 1), ('problem', 1), ('divided', 1), ('three', 1), ('section', 1), ('provide', 1), ('coverage', 1), ('employed', 1), ('engineer', 1), ('researcher', 1), ('manufacturing', 1), ('industry', 1), ('improve', 1), ('productivity', 1), ('sole', 1), ('motive', 1), ('socio', 1), ('economic', 1)]
[('computer', 3), ('dimensional', 2), ('performance', 2), ('becoming', 1), ('increasingly', 1), ('clear', 1), ('layout', 1), ('device', 1), ('chip', 1), ('hinders', 1), ('development', 1), ('high', 1), ('system', 1), ('three', 1), ('structure', 1), ('needed', 1), ('provide', 1), ('required', 1), ('implement', 1), ('computationally', 1), ('intensive', 1), ('task', 1), ('nanoelectronic', 1), ('architecture', 1), ('implementation', 1)]
[('iot', 3), ('internet', 2), ('idea', 2), ('thing', 1), ('technological', 1), ('advancement', 1), ('massive', 1), ('innovation', 1), ('building', 1), ('inter', 1), ('connectivity', 1), ('among', 1), ('everyday', 1), ('life', 1), ('object', 1), ('explosive', 1), ('growth', 1), ('number', 1), ('connected', 1), ('device', 1), ('implication', 1), ('enterprise', 1), ('individual', 1), ('society', 1), ('huge', 1), ('getting', 1), ('attention', 1)]
[('stem', 2), ('education', 2), ('new', 2), ('course', 2), ('undergraduate', 2), ('called', 2), ('problem', 1), ('introduces', 1), ('emerging', 1), ('program', 1), ('physical', 1), ('mathematical', 1), ('informatics', 1), ('corresponds', 1), ('direction', 1), ('ste', 1), ('science', 1), ('technology', 1), ('engineering', 1), ('art', 1), ('mathematics', 1), ('book', 1), ('focus', 1), ('university', 1), ('student', 1), ('high', 1)]
[('deep', 2), ('learning', 2), ('chapter', 2), ('algorithm', 1), ('brought', 1), ('revolution', 1), ('computer', 1), ('vision', 1), ('community', 1), ('introducing', 1), ('non', 1), ('traditional', 1), ('efficient', 1), ('solution', 1), ('several', 1), ('image', 1), ('related', 1), ('problem', 1), ('long', 1), ('remained', 1), ('unsolved', 1), ('partially', 1), ('addressed', 1), ('book', 1), ('present', 1), ('collection', 1), ('eleven', 1), ('individual', 1), ('explains', 1), ('principle', 1)]
[('wavelet', 3), ('transforms', 2), ('subject', 2), ('textbook', 1), ('introduction', 1), ('provides', 1), ('basic', 1), ('self', 1), ('contained', 1), ('manner', 1), ('application', 1), ('transform', 1), ('theory', 1), ('permeate', 1), ('daily', 1), ('life', 1), ('imperative', 1), ('strong', 1), ('foundation', 1), ('feature', 1), ('prior', 1), ('knowledge', 1), ('assumed', 1), ('sufficient', 1), ('mathematical', 1)]
[('private', 4), ('cloud', 4), ('database', 3), ('oracle', 2), ('allow', 1), ('managing', 1), ('multiple', 1), ('roof', 1), ('avoiding', 1), ('unnecessary', 1), ('resource', 1), ('management', 1), ('solution', 1), ('applied', 1), ('sector', 1), ('healthcare', 1), ('retail', 1), ('software', 1), ('introduction', 1), ('using', 1), ('exadata', 1), ('explore', 1), ('general', 1), ('architecture', 1)]
[('autocad', 3), ('master', 1), ('complexity', 1), ('world', 1), ('bestselling', 1), ('software', 1), ('introduction', 1), ('ideally', 1), ('suited', 1), ('new', 1), ('user', 1), ('relevant', 1), ('book', 1), ('useful', 1), ('resource', 1), ('drawing', 1), ('module', 1), ('vocational', 1), ('introductory', 1), ('undergraduate', 1), ('course', 1), ('engineering', 1), ('construction', 1), ('experienced', 1)]
[('microcontroller', 3), ('programming', 1), ('introduction', 1), ('comprehensive', 1), ('stop', 1), ('resource', 1), ('cover', 1), ('concept', 1), ('principle', 1), ('solution', 1), ('development', 1), ('associated', 1), ('technique', 1), ('involved', 1), ('based', 1), ('system', 1), ('focusing', 1), ('element', 1), ('feature', 1), ('popular', 1), ('powerful', 1), ('motorola', 1), ('hc', 1), ('ic', 1), ('representative', 1), ('example', 1), ('book', 1)]
[('intelligence', 3), ('human', 2), ('radical', 1), ('challenging', 1), ('book', 1), ('argues', 1), ('artificial', 1), ('need', 1), ('completely', 1), ('different', 1), ('set', 1), ('foundation', 1), ('based', 1), ('ecological', 1), ('rather', 1), ('deliver', 1), ('promise', 1), ('better', 1), ('world', 1), ('usher', 1), ('greatest', 1), ('transformation', 1), ('history', 1), ('age', 1), ('integration', 1)]
[('plasma', 3), ('wave', 2), ('central', 2), ('issue', 2), ('modern', 2), ('science', 2), ('oscillation', 1), ('address', 1), ('within', 1), ('context', 1), ('general', 1), ('classical', 1), ('physic', 1), ('book', 1), ('working', 1), ('gradually', 1), ('introductory', 1), ('advanced', 1), ('level', 1), ('addressing', 1), ('including', 1), ('linear', 1), ('nonlinear', 1), ('phenomenon', 1), ('second', 1), ('edition', 1), ('fully', 1)]
[('enterprise', 3), ('today', 2), ('change', 2), ('proud', 1), ('unchanged', 1), ('stability', 1), ('understood', 1), ('sign', 1), ('stagnation', 1), ('reliability', 1), ('evolve', 1), ('commonly', 1), ('regarded', 1), ('fossilized', 1), ('increasing', 1), ('globalization', 1), ('process', 1), ('often', 1), ('force', 1), ('make', 1), ('organizational', 1), ('effectiveness', 1)]
[('resource', 2), ('collection', 2), ('library', 2), ('access', 1), ('sharing', 1), ('development', 1), ('explores', 1), ('role', 1), ('acquiring', 1), ('storing', 1), ('disseminating', 1), ('information', 1), ('different', 1), ('format', 1), ('help', 1), ('better', 1), ('use', 1), ('technology', 1), ('share', 1), ('scarce', 1), ('connect', 1), ('user', 1), ('expressed', 1), ('goal', 1), ('encouraging', 1), ('continued', 1), ('debate', 1), ('investigation', 1)]
[('engaging', 1), ('introduction', 1), ('exciting', 1), ('multidisciplinary', 1), ('field', 1), ('positive', 1), ('impact', 1), ('depends', 1), ('le', 1), ('technology', 1), ('understanding', 1), ('responding', 1), ('human', 1), ('motivation', 1), ('specific', 1), ('information', 1), ('need', 1), ('life', 1), ('constraint', 1), ('betsy', 1), ('humphreys', 1), ('former', 1), ('deputy', 1), ('director', 1), ('national', 1), ('library', 1), ('medicine', 1), ('book', 1), ('want', 1)]
[('innovation', 2), ('data', 2), ('analytics', 2), ('marketing', 2), ('based', 1), ('contemporary', 1), ('approach', 1), ('developing', 1), ('empirically', 1), ('supported', 1), ('advance', 1), ('encourage', 1), ('entrepreneurial', 1), ('activity', 1), ('inspired', 1), ('novel', 1), ('inference', 1), ('entrepreneurship', 1), ('cover', 1), ('technique', 1), ('process', 1), ('model', 1), ('tool', 1), ('practice', 1), ('creating', 1), ('business', 1), ('opportunity', 1)]
[('background', 2), ('book', 1), ('aimed', 1), ('conservation', 1), ('development', 1), ('practitioner', 1), ('need', 1), ('learn', 1), ('use', 1), ('part', 1), ('time', 1), ('professional', 1), ('context', 1), ('give', 1), ('non', 1), ('technical', 1), ('set', 1), ('skill', 1), ('graph', 1), ('map', 1), ('model', 1), ('provides', 1), ('data', 1), ('integration', 1), ('project', 1), ('management', 1), ('cover', 1), ('fundamental', 1), ('statistical', 1), ('concept', 1)]
[('mathematics', 3), ('student', 3), ('college', 2), ('help', 2), ('image', 1), ('processing', 1), ('tour', 1), ('aim', 1), ('provide', 1), ('meaningful', 1), ('context', 1), ('reviewing', 1), ('key', 1), ('topic', 1), ('curriculum', 1), ('gain', 1), ('confidence', 1), ('using', 1), ('concept', 1), ('technique', 1), ('applied', 1), ('increase', 1), ('awareness', 1), ('recent', 1), ('development', 1), ('mathematical', 1), ('science', 1), ('prepare', 1)]
[('security', 2), ('cyber', 2), ('data', 2), ('privacy', 1), ('trust', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('cps', 1), ('physical', 1), ('system', 1), ('different', 1), ('conventional', 1), ('concern', 1), ('revolve', 1), ('around', 1), ('collection', 1), ('aggregation', 1), ('transmission', 1), ('network', 1), ('analysis', 1), ('attack', 1), ('vector', 1), ('provision', 1), ('appropriate', 1), ('mitigation', 1), ('technique', 1), ('essential', 1)]
[('data', 2), ('world', 1), ('soaring', 1), ('digitization', 1), ('social', 1), ('medium', 1), ('financial', 1), ('transaction', 1), ('production', 1), ('logistics', 1), ('process', 1), ('constantly', 1), ('produce', 1), ('massive', 1), ('employing', 1), ('analytical', 1), ('tool', 1), ('extract', 1), ('insight', 1), ('foresight', 1), ('improves', 1), ('quality', 1), ('speed', 1), ('reliability', 1), ('solution', 1), ('highly', 1), ('intertwined', 1), ('issue', 1), ('faced', 1), ('supply', 1), ('chain', 1), ('operation', 1)]
[('cyber', 3), ('physical', 3), ('system', 3), ('new', 2), ('smart', 1), ('advance', 1), ('challenge', 1), ('opportunity', 1), ('isbn', 1), ('cps', 1), ('generation', 1), ('collaborative', 1), ('computational', 1), ('entity', 1), ('prime', 1), ('focus', 1), ('integration', 1), ('world', 1), ('space', 1), ('feedback', 1), ('mechanism', 1), ('adapts', 1), ('condition', 1), ('real', 1)]
[('book', 2), ('advertising', 2), ('internet', 2), ('monetization', 2), ('product', 2), ('part', 2), ('introduces', 1), ('computational', 1), ('provides', 1), ('macroscopic', 1), ('understanding', 1), ('consumer', 1), ('era', 1), ('push', 1), ('user', 1), ('experience', 1), ('limit', 1), ('focus', 1), ('basic', 1), ('problem', 1), ('background', 1), ('knowledge', 1), ('online', 1), ('target', 1)]
[('human', 2), ('factor', 2), ('automated', 2), ('connected', 2), ('intelligent', 2), ('vehicle', 2), ('crash', 2), ('death', 2), ('handbook', 1), ('subject', 1), ('guide', 1), ('ergonomics', 1), ('automobile', 1), ('seventh', 1), ('leading', 1), ('cause', 1), ('worldwide', 1), ('resulting', 1), ('million', 1), ('yearly', 1), ('potential', 1), ('reduce', 1), ('significantly', 1)]
[('optimization', 4), ('nature', 3), ('algorithm', 3), ('inspired', 2), ('comprehensive', 1), ('work', 1), ('popular', 1), ('based', 1), ('start', 1), ('overview', 1), ('going', 1), ('classical', 1), ('latest', 1), ('swarm', 1), ('intelligence', 1), ('rich', 1), ('abundance', 1), ('flora', 1), ('fauna', 1), ('development', 1), ('technique', 1), ('providing', 1)]
[('cybernetics', 3), ('personal', 3), ('collection', 2), ('love', 1), ('narrative', 1), ('cyberneticians', 1), ('account', 1), ('offer', 1), ('unique', 1), ('insight', 1), ('via', 1), ('journey', 1), ('nine', 1), ('individual', 1), ('author', 1), ('area', 1), ('interest', 1), ('think', 1), ('practice', 1)]
[('data', 2), ('second', 1), ('edition', 1), ('protection', 1), ('go', 1), ('beyond', 1), ('traditional', 1), ('topic', 1), ('including', 1), ('deduplication', 1), ('continuous', 1), ('availability', 1), ('snapshot', 1), ('replication', 1), ('backup', 1), ('recovery', 1), ('explores', 1), ('additional', 1), ('consideration', 1), ('legal', 1), ('privacy', 1), ('ethical', 1), ('issue', 1), ('new', 1), ('model', 1), ('presented', 1), ('understanding', 1), ('planning', 1), ('various', 1), ('aspect', 1)]
[('book', 2), ('user', 2), ('older', 2), ('aging', 2), ('decline', 2), ('focus', 1), ('design', 1), ('display', 1), ('interface', 1), ('related', 1), ('complex', 1), ('mental', 1), ('physical', 1), ('social', 1), ('change', 1), ('conventional', 1), ('wisdom', 1), ('say', 1), ('getting', 1), ('lead', 1), ('reality', 1), ('capability', 1), ('age', 1), ('others', 1), ('remain', 1), ('stable', 1), ('increase', 1), ('distills', 1), ('decade', 1)]
[('short', 1), ('sims', 1), ('game', 1), ('changer', 1), ('explores', 1), ('design', 1), ('concept', 1), ('dialogue', 1), ('formatting', 1), ('interactive', 1), ('simulation', 1), ('interactivity', 1), ('key', 1), ('effective', 1), ('educational', 1), ('medium', 1), ('school', 1), ('corporation', 1), ('military', 1), ('government', 1), ('challenge', 1), ('ineffective', 1), ('linear', 1), ('content', 1), ('expense', 1), ('derail', 1), ('product', 1), ('book', 1), ('provides', 1), ('proven', 1)]
[('sensor', 2), ('system', 2), ('emergence', 1), ('affordable', 1), ('micro', 1), ('mem', 1), ('inertial', 1), ('measurement', 1), ('applied', 1), ('embedded', 1), ('internet', 1), ('thing', 1), ('device', 1), ('brought', 1), ('technique', 1), ('kalman', 1), ('filtering', 1), ('capable', 1), ('combining', 1), ('information', 1), ('multiple', 1), ('source', 1), ('interest', 1), ('student', 1), ('hobbyist', 1), ('book', 1)]
[('cyber', 4), ('arm', 3), ('weapon', 2), ('analysis', 2), ('book', 1), ('raise', 1), ('awareness', 1), ('emerging', 1), ('challenge', 1), ('aiempowered', 1), ('used', 1), ('system', 1), ('stockpiled', 1), ('global', 1), ('race', 1), ('based', 1), ('real', 1), ('life', 1), ('event', 1), ('provides', 1), ('comprehensive', 1), ('offensive', 1), ('defensive', 1), ('landscape', 1), ('evolution', 1), ('prank', 1), ('malicious', 1), ('code', 1), ('lethal', 1), ('mass', 1)]
[('multiagent', 1), ('system', 1), ('ma', 1), ('exciting', 1), ('fastest', 1), ('growing', 1), ('domain', 1), ('intelligent', 1), ('resource', 1), ('management', 1), ('agent', 1), ('oriented', 1), ('technology', 1), ('deal', 1), ('modeling', 1), ('autonomous', 1), ('decision', 1), ('making', 1), ('entity', 1), ('recent', 1), ('development', 1), ('produced', 1), ('encouraging', 1), ('result', 1), ('novel', 1), ('approach', 1), ('handling', 1), ('multiplayer', 1), ('interactive', 1)]
[('day', 2), ('book', 1), ('provides', 1), ('straightforward', 1), ('manual', 1), ('review', 1), ('handbook', 1), ('accessing', 1), ('using', 1), ('resource', 1), ('internet', 1), ('labour', 1), ('working', 1), ('scientist', 1), ('address', 1), ('problem', 1), ('cope', 1), ('army', 1), ('discovered', 1), ('whole', 1), ('new', 1), ('toy', 1), ('shop', 1), ('full', 1), ('goody', 1)]
[('machine', 3), ('learning', 2), ('python', 2), ('iot', 2), ('branch', 1), ('artificial', 1), ('intelligence', 1), ('influencing', 1), ('society', 1), ('industry', 1), ('academia', 1), ('large', 1), ('adaptability', 1), ('programming', 1), ('language', 1), ('increased', 1), ('popularity', 1), ('another', 1), ('technology', 1), ('horizon', 1), ('internet', 1), ('thing', 1), ('present', 1), ('book', 1), ('try', 1), ('address', 1)]
[('robot', 2), ('system', 2), ('multi', 1), ('major', 1), ('research', 1), ('topic', 1), ('robotics', 1), ('designing', 1), ('testing', 1), ('deploying', 1), ('aerial', 1), ('real', 1), ('world', 1), ('possibility', 1), ('due', 1), ('recent', 1), ('technological', 1), ('advance', 1), ('book', 1), ('explores', 1), ('different', 1), ('aspect', 1), ('cooperation', 1), ('multiagent', 1), ('cover', 1), ('team', 1), ('approach', 1), ('deterministic', 1), ('decision', 1), ('making', 1), ('present', 1)]
[('book', 2), ('security', 2), ('issue', 2), ('solution', 2), ('discus', 1), ('evolution', 1), ('privacy', 1), ('brings', 1), ('related', 1), ('technological', 1), ('tool', 1), ('technique', 1), ('single', 1), ('source', 1), ('take', 1), ('reader', 1), ('journey', 1), ('understanding', 1), ('possible', 1), ('involving', 1), ('various', 1), ('threat', 1), ('attack', 1), ('defense', 1), ('mechanism', 1), ('include', 1), ('iot', 1), ('cloud', 1)]
[('paper', 2), ('second', 1), ('international', 1), ('symposium', 1), ('continous', 1), ('surface', 1), ('mining', 1), ('held', 1), ('austin', 1), ('tx', 1), ('oct', 1), ('printed', 1), ('netherlands', 1), ('acidic', 1), ('index', 1), ('annotation', 1), ('copyright', 1), ('book', 1), ('news', 1), ('inc', 1), ('portland', 1)]
[('business', 4), ('technology', 2), ('blockchain', 1), ('emerging', 1), ('powerful', 1), ('attracted', 1), ('wider', 1), ('attention', 1), ('across', 1), ('globe', 1), ('addition', 1), ('financial', 1), ('company', 1), ('organization', 1), ('keenly', 1), ('analyzing', 1), ('adapting', 1), ('improving', 1), ('process', 1), ('security', 1), ('primary', 1), ('enterprise', 1), ('application', 1)]
[('first', 2), ('volume', 2), ('new', 1), ('series', 1), ('companion', 1), ('unseen', 1), ('parallel', 1), ('processing', 1), ('computational', 1), ('mechanic', 1), ('six', 1), ('contribution', 1), ('present', 1), ('general', 1), ('aspect', 1), ('supercomputing', 1), ('hardware', 1), ('software', 1), ('engineering', 1), ('point', 1), ('view', 1), ('subsequent', 1), ('chapter', 1), ('discus', 1), ('homotopy', 1), ('algorithm', 1)]
[('data', 2), ('analytics', 2), ('covid', 2), ('epidemic', 1), ('trend', 1), ('analysis', 1), ('timeline', 1), ('progression', 1), ('prediction', 1), ('recommendation', 1), ('critical', 1), ('initiating', 1), ('effective', 1), ('public', 1), ('health', 1), ('control', 1), ('strategy', 1), ('ai', 1), ('play', 1), ('important', 1), ('role', 1), ('epidemiology', 1), ('diagnostic', 1), ('clinical', 1), ('front', 1), ('focus', 1), ('book', 1), ('includes', 1), ('overview', 1)]
[('computer', 2), ('first', 1), ('conference', 1), ('organized', 1), ('school', 1), ('science', 1), ('engineering', 1), ('vit', 1), ('ap', 1), ('university', 1), ('campus', 1), ('cumulative', 1), ('effort', 1), ('faculty', 1), ('member', 1), ('proceeding', 1), ('discus', 1), ('recent', 1), ('advancement', 1), ('novel', 1), ('idea', 1), ('area', 1), ('interest', 1), ('cover', 1), ('topic', 1), ('advance', 1), ('based', 1), ('system', 1), ('process', 1), ('application', 1)]
[('optical', 4), ('written', 1), ('ten', 1), ('leading', 1), ('expert', 1), ('field', 1), ('computing', 1), ('cover', 1), ('topic', 1), ('bistability', 1), ('interconnects', 1), ('circuit', 1), ('photorefractive', 1), ('device', 1), ('spatial', 1), ('light', 1), ('modulators', 1), ('associative', 1), ('memory', 1), ('computer', 1), ('architecture', 1)]
[('software', 3), ('computational', 2), ('intelligence', 2), ('engineering', 2), ('prediction', 2), ('technique', 1), ('application', 1), ('problem', 1), ('focus', 1), ('approach', 1), ('applicable', 1), ('varied', 1), ('area', 1), ('requirement', 1), ('prioritization', 1), ('cost', 1), ('estimation', 1), ('reliability', 1), ('assessment', 1), ('defect', 1), ('maintainability', 1), ('quality', 1), ('size', 1)]
[('ai', 2), ('framework', 2), ('optimal', 2), ('intended', 1), ('solve', 1), ('problem', 1), ('bias', 1), ('variance', 1), ('tradeoff', 1), ('supervised', 1), ('learning', 1), ('method', 1), ('real', 1), ('life', 1), ('application', 1), ('comprises', 1), ('bootstrapping', 1), ('create', 1), ('multiple', 1), ('training', 1), ('testing', 1), ('data', 1), ('set', 1), ('various', 1), ('characteristic', 1), ('design', 1), ('analysis', 1), ('statistical', 1), ('experiment', 1), ('identify', 1), ('feature', 1), ('subset', 1)]
[('software', 4), ('book', 2), ('engineering', 2), ('important', 1), ('used', 1), ('many', 1), ('company', 1), ('institution', 1), ('present', 1), ('method', 1), ('designing', 1), ('building', 1), ('based', 1), ('author', 1), ('experience', 1), ('programmer', 1), ('defense', 1), ('aerospace', 1), ('industry', 1), ('explains', 1), ('ensure', 1), ('programmed', 1)]
[('need', 2), ('growing', 2), ('medical', 2), ('qualified', 1), ('specialist', 1), ('work', 1), ('apply', 1), ('sophisticated', 1), ('technology', 1), ('contemporary', 1), ('medicine', 1), ('rapidly', 1), ('professional', 1), ('body', 1), ('predict', 1), ('meeting', 1), ('healthcare', 1), ('globally', 1), ('require', 1), ('almost', 1), ('tripling', 1), ('number', 1), ('physicist', 1), ('similar', 1), ('challenge', 1), ('exist', 1), ('constantly', 1), ('profession', 1)]
[('know', 2), ('understand', 2), ('audit', 1), ('function', 1), ('faced', 1), ('qa', 1), ('software', 1), ('auditing', 1), ('probably', 1), ('difficult', 1), ('need', 1), ('intricacy', 1), ('process', 1), ('audited', 1), ('addition', 1), ('auditor', 1), ('familiar', 1), ('implication', 1), ('international', 1), ('national', 1), ('standard', 1), ('proceed', 1), ('deficiency', 1)]
[('visualization', 4), ('data', 4), ('major', 2), ('topic', 2), ('system', 2), ('derive', 1), ('meaning', 1), ('focus', 1), ('analytics', 1), ('computer', 1), ('graphic', 1), ('book', 1), ('discussed', 1), ('organized', 1), ('anyone', 1), ('analysis', 1), ('shown', 1), ('use', 1), ('generate', 1), ('basic', 1)]
[('software', 3), ('engineering', 3), ('component', 3), ('based', 2), ('book', 1), ('focus', 1), ('specialized', 1), ('branch', 1), ('vast', 1), ('domain', 1), ('cbse', 1), ('method', 1), ('metric', 1), ('enhances', 1), ('basic', 1), ('understanding', 1), ('defining', 1), ('category', 1), ('characteristic', 1), ('repository', 1), ('interaction', 1), ('complexity', 1), ('composition', 1), ('divide', 1)]
[('information', 1), ('security', 1), ('optimization', 1), ('maintains', 1), ('practical', 1), ('perspective', 1), ('offering', 1), ('theoretical', 1), ('explanation', 1), ('book', 1), ('explores', 1), ('concept', 1), ('essential', 1), ('academic', 1), ('organization', 1), ('discus', 1), ('aspect', 1), ('technique', 1), ('tool', 1), ('definition', 1), ('usage', 1), ('analysis', 1), ('invaluable', 1), ('scholar', 1), ('ranging', 1), ('beginning', 1)]
[('team', 3), ('cognition', 3), ('theoretical', 3), ('distributed', 2), ('background', 1), ('interwoven', 1), ('stream', 1), ('fermenting', 1), ('together', 1), ('wielded', 1), ('new', 1), ('nuance', 1), ('exploration', 1), ('continue', 1), ('relevant', 1), ('understanding', 1), ('phenomenon', 1), ('foundation', 1), ('perspective', 1), ('look', 1), ('fundamental', 1), ('concept', 1)]
[('communication', 3), ('conference', 2), ('volume', 1), ('represents', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('innovation', 1), ('engineering', 1), ('acice', 1), ('held', 1), ('china', 1), ('october', 1), ('aimed', 1), ('provide', 1), ('integrated', 1), ('platform', 1), ('researcher', 1), ('wide', 1), ('range', 1), ('field', 1), ('including', 1), ('information', 1), ('technology', 1), ('science', 1)]
[('biology', 3), ('genomics', 2), ('phylogenomics', 1), ('primer', 1), ('second', 1), ('edition', 1), ('advanced', 1), ('undergraduate', 1), ('graduate', 1), ('student', 1), ('studying', 1), ('molecular', 1), ('comparative', 1), ('evolution', 1), ('biodiversity', 1), ('book', 1), ('explains', 1), ('essential', 1), ('concept', 1), ('underlying', 1), ('storage', 1), ('manipulation', 1), ('level', 1), ('data', 1), ('construction', 1), ('phylogenetic', 1), ('tree', 1), ('population', 1)]
[('sa', 3), ('provide', 2), ('programmer', 2), ('path', 2), ('although', 1), ('web', 1), ('online', 1), ('community', 1), ('volume', 1), ('information', 1), ('resource', 1), ('often', 1), ('overwhelming', 1), ('lack', 1), ('simple', 1), ('guide', 1), ('coding', 1), ('reference', 1), ('data', 1), ('user', 1), ('standpoint', 1), ('v', 1), ('seeing', 1), ('thing', 1), ('code', 1), ('writer', 1), ('written', 1), ('experienced', 1)]
[('safety', 4), ('personal', 2), ('computer', 2), ('book', 1), ('describes', 1), ('professional', 1), ('use', 1), ('database', 1), ('software', 1), ('manage', 1), ('health', 1), ('program', 1), ('emphasizes', 1), ('tech', 1), ('niques', 1), ('feature', 1), ('necessary', 1), ('develop', 1), ('computerized', 1), ('data', 1), ('system', 1)]
[('control', 2), ('system', 2), ('design', 2), ('simulation', 2), ('comprehensive', 1), ('collection', 1), ('brings', 1), ('together', 1), ('current', 1), ('information', 1), ('cad', 1), ('including', 1), ('present', 1), ('future', 1), ('trend', 1), ('computer', 1), ('aided', 1), ('exploring', 1), ('area', 1), ('modeling', 1), ('language', 1), ('environment', 1), ('technique', 1), ('presenting', 1), ('approach', 1)]
[('biomedical', 3), ('signal', 3), ('image', 3), ('processing', 3), ('book', 2), ('technique', 2), ('written', 1), ('senior', 1), ('level', 1), ('first', 1), ('year', 1), ('graduate', 1), ('student', 1), ('describes', 1), ('fundamental', 1), ('used', 1), ('process', 1), ('information', 1), ('discus', 1), ('application', 1), ('main', 1)]
[('timely', 1), ('book', 1), ('expertly', 1), ('address', 1), ('current', 1), ('impact', 1), ('automation', 1), ('profession', 1), ('librarianship', 1), ('term', 1), ('practitioner', 1), ('standard', 1), ('underlying', 1), ('philosophy', 1), ('clear', 1), ('understandable', 1), ('language', 1), ('author', 1), ('webb', 1), ('focus', 1), ('discussion', 1), ('practical', 1), ('example', 1), ('important', 1), ('decision', 1), ('location', 1)]
[('different', 2), ('internet', 2), ('machine', 2), ('learning', 2), ('book', 1), ('cover', 1), ('technology', 1), ('capability', 1), ('involved', 1), ('cognitive', 1), ('thing', 1), ('ciot', 1), ('explored', 1), ('covering', 1), ('technical', 1), ('issue', 1), ('various', 1), ('model', 1), ('used', 1), ('data', 1), ('analytics', 1), ('decision', 1), ('making', 1), ('step', 1), ('initiate', 1), ('iot', 1), ('basic', 1), ('history', 1), ('architecture', 1)]
[('multimedia', 2), ('communication', 2), ('bringing', 1), ('reader', 1), ('book', 1), ('technology', 1), ('multiservices', 1), ('deployment', 1), ('aim', 1), ('present', 1), ('current', 1), ('work', 1), ('direction', 1), ('challenging', 1), ('subject', 1), ('theoretical', 1), ('practical', 1), ('root', 1), ('past', 1), ('decade', 1), ('witnessed', 1), ('extremely', 1), ('fast', 1), ('evolution', 1), ('mobile', 1), ('cellular', 1), ('network', 1)]
[('unique', 1), ('survey', 1), ('career', 1), ('michael', 1), ('dudok', 1), ('de', 1), ('wit', 1), ('discus', 1), ('work', 1), ('offer', 1), ('glimpse', 1), ('private', 1), ('life', 1), ('biography', 1), ('european', 1), ('master', 1), ('animation', 1), ('born', 1), ('netherlands', 1), ('based', 1), ('london', 1), ('first', 1), ('complete', 1), ('overview', 1), ('defined', 1), ('canonic', 1), ('opus', 1), ('humble', 1), ('genius', 1), ('visually', 1), ('thematically', 1)]
[('machine', 2), ('learning', 2), ('algorithm', 2), ('based', 1), ('author', 1), ('experience', 1), ('teaching', 1), ('data', 1), ('science', 1), ('year', 1), ('mathematics', 1), ('programming', 1), ('ground', 1), ('reveals', 1), ('magic', 1), ('explains', 1), ('implemented', 1), ('code', 1), ('designed', 1), ('provide', 1), ('reader', 1), ('understanding', 1)]
[('coordination', 3), ('paper', 2), ('collected', 1), ('december', 1), ('workshop', 1), ('held', 1), ('university', 1), ('central', 1), ('florida', 1), ('examine', 1), ('topic', 1), ('related', 1), ('process', 1), ('ubiquitous', 1), ('computing', 1), ('model', 1), ('discus', 1), ('area', 1), ('space', 1), ('based', 1), ('open', 1), ('distributed', 1), ('system', 1), ('global', 1), ('virtual', 1), ('data', 1), ('stru', 1)]
[('science', 2), ('use', 2), ('model', 2), ('computational', 1), ('rapidly', 1), ('growing', 1), ('multidisciplinary', 1), ('field', 1), ('concerned', 1), ('design', 1), ('implementation', 1), ('mathematical', 1), ('analyze', 1), ('solve', 1), ('real', 1), ('world', 1), ('problem', 1), ('area', 1), ('span', 1), ('many', 1), ('discipline', 1), ('involves', 1), ('development', 1), ('allows', 1), ('computer', 1), ('perform', 1), ('simulation', 1)]
[('challenge', 3), ('internet', 2), ('everything', 2), ('big', 2), ('data', 2), ('smart', 2), ('city', 2), ('currently', 1), ('depth', 1), ('book', 1), ('dedicated', 1), ('technology', 1), ('humankind', 1), ('today', 1), ('confronting', 1), ('critical', 1), ('worldwide', 1), ('portability', 1), ('framework', 1), ('move', 1), ('keep', 1), ('pace', 1), ('innovation', 1), ('major', 1)]
[('level', 3), ('diabetes', 2), ('blood', 2), ('sugar', 2), ('mellitus', 1), ('dm', 1), ('commonly', 1), ('referred', 1), ('metabolic', 1), ('disorder', 1), ('high', 1), ('prolonged', 1), ('period', 1), ('lack', 1), ('sufficient', 1), ('insulin', 1), ('cause', 1), ('presence', 1), ('excess', 1), ('result', 1), ('glucose', 1), ('diabetic', 1), ('patient', 1), ('normal', 1), ('one', 1), ('symptom', 1), ('frequent', 1)]
[('ddos', 2), ('attack', 2), ('day', 2), ('complexity', 1), ('severity', 1), ('distributed', 1), ('denial', 1), ('service', 1), ('increasing', 1), ('internet', 1), ('highly', 1), ('inconsistent', 1), ('structure', 1), ('term', 1), ('resource', 1), ('distribution', 1), ('numerous', 1), ('technical', 1), ('solution', 1), ('available', 1), ('involving', 1), ('economic', 1), ('aspect', 1), ('given', 1), ('consideration', 1), ('book', 1)]
[('theory', 3), ('coding', 2), ('mathematical', 2), ('expert', 1), ('date', 1), ('origin', 1), ('subject', 1), ('publication', 1), ('communication', 1), ('claude', 1), ('shannon', 1), ('grown', 1), ('discipline', 1), ('many', 1), ('practical', 1), ('application', 1), ('antenna', 1), ('network', 1), ('memory', 1), ('requiring', 1), ('various', 1), ('technique', 1), ('commutative', 1), ('algebra', 1)]
[('blockchain', 2), ('technology', 2), ('internet', 1), ('thing', 1), ('artificial', 1), ('intelligence', 1), ('provides', 1), ('integrated', 1), ('overview', 1), ('technical', 1), ('description', 1), ('fundamental', 1), ('concept', 1), ('iot', 1), ('ai', 1), ('state', 1), ('art', 1), ('technique', 1), ('explored', 1), ('depth', 1), ('discus', 1), ('challenge', 1), ('domain', 1), ('convergence', 1), ('revolutionized', 1), ('leveraged', 1)]
[('social', 2), ('information', 2), ('rise', 1), ('network', 1), ('medium', 1), ('led', 1), ('massive', 1), ('shift', 1), ('way', 1), ('dispersed', 1), ('platform', 1), ('twitter', 1), ('facebook', 1), ('allow', 1), ('easily', 1), ('connect', 1), ('community', 1), ('avenue', 1), ('misinformation', 1), ('fake', 1), ('news', 1), ('polarization', 1), ('need', 1), ('examine', 1), ('model', 1), ('analyze', 1), ('trajectory', 1)]
[('review', 1), ('first', 1), ('edition', 1), ('author', 1), ('strive', 1), ('reduce', 1), ('theory', 1), ('minimum', 1), ('make', 1), ('self', 1), ('learning', 1), ('text', 1), ('comprehensible', 1), ('biologist', 1), ('physician', 1), ('etc', 1), ('lack', 1), ('advanced', 1), ('mathematics', 1), ('background', 1), ('unlike', 1), ('many', 1), ('textbook', 1), ('introduced', 1), ('meaningless', 1), ('toy', 1), ('example', 1), ('instead', 1), ('reader', 1), ('taken', 1), ('hand', 1)]
[('intelligence', 3), ('human', 2), ('machine', 2), ('constant', 1), ('battle', 1), ('close', 1), ('surpassing', 1), ('unrestrained', 1), ('use', 1), ('digital', 1), ('technology', 1), ('automating', 1), ('process', 1), ('prime', 1), ('advantage', 1), ('third', 1), ('industrial', 1), ('revolution', 1), ('result', 1), ('developed', 1), ('developing', 1), ('nation', 1), ('started', 1), ('digitalize', 1)]
[('game', 4), ('social', 2), ('text', 1), ('provides', 1), ('overview', 1), ('practical', 1), ('step', 1), ('analysing', 1), ('term', 1), ('representation', 1), ('structure', 1), ('class', 1), ('power', 1), ('race', 1), ('sexuality', 1), ('gender', 1), ('animal', 1), ('nature', 1), ('ability', 1), ('chapter', 1), ('applies', 1), ('traditional', 1), ('literary', 1), ('theory', 1), ('narrative', 1), ('mechanic', 1), ('explores', 1), ('commentary', 1), ('encourage', 1)]
[('cloud', 3), ('computing', 2), ('indispensable', 1), ('part', 1), ('modern', 1), ('information', 1), ('communication', 1), ('technology', 1), ('ict', 1), ('system', 1), ('service', 1), ('proven', 1), ('significant', 1), ('importance', 1), ('promote', 1), ('quickly', 1), ('deployable', 1), ('scalable', 1), ('solution', 1), ('reduced', 1), ('infrastructure', 1), ('cost', 1), ('utilization', 1), ('raise', 1), ('concern', 1), ('security', 1)]
[('cognitive', 4), ('building', 3), ('smart', 3), ('reality', 2), ('book', 1), ('provides', 1), ('knowledge', 1), ('information', 1), ('model', 1), ('bim', 1), ('enabled', 1), ('computing', 1), ('method', 1), ('built', 1), ('environment', 1), ('involving', 1), ('network', 1), ('capability', 1), ('integrating', 1), ('augmented', 1), ('mixed', 1), ('concept', 1), ('internet', 1), ('thing', 1), ('ciot', 1), ('city', 1), ('artificial', 1), ('intelligence', 1)]
[('help', 2), ('social', 2), ('osns', 2), ('user', 2), ('recent', 1), ('year', 1), ('virtual', 1), ('meeting', 1), ('technology', 1), ('become', 1), ('part', 1), ('everyday', 1), ('life', 1), ('often', 1), ('global', 1), ('online', 1), ('network', 1), ('build', 1), ('professional', 1), ('link', 1), ('worldwide', 1), ('scale', 1), ('sharing', 1), ('information', 1), ('opinion', 1), ('important', 1), ('feature', 1), ('describe', 1)]
[('integration', 3), ('system', 2), ('present', 1), ('approach', 1), ('complex', 1), ('problem', 1), ('solving', 1), ('provides', 1), ('powerful', 1), ('base', 1), ('product', 1), ('process', 1), ('unique', 1), ('reference', 1), ('describes', 1), ('kind', 1), ('work', 1), ('primarily', 1), ('obtained', 1), ('human', 1), ('communication', 1), ('simple', 1), ('computer', 1), ('application', 1), ('already', 1), ('place', 1), ('company', 1), ('resource', 1)]
[('game', 3), ('design', 2), ('chris', 1), ('barney', 1), ('pattern', 1), ('language', 1), ('build', 1), ('revolutionary', 1), ('work', 1), ('architect', 1), ('christopher', 1), ('alexander', 1), ('show', 1), ('student', 1), ('teacher', 1), ('development', 1), ('professional', 1), ('derive', 1), ('best', 1), ('practice', 1), ('aspect', 1), ('using', 1), ('series', 1), ('practical', 1), ('rigorous', 1), ('exercise', 1), ('designer', 1), ('observe', 1), ('analyze', 1), ('failure', 1)]
[('design', 2), ('study', 2), ('application', 2), ('book', 1), ('focus', 1), ('domain', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('including', 1), ('broad', 1), ('sampling', 1), ('case', 1), ('narrower', 1), ('theoretical', 1), ('empirical', 1), ('includes', 1), ('consideration', 1), ('educational', 1), ('us', 1), ('rationale', 1), ('method', 1), ('teaching', 1), ('industry', 1), ('variety', 1), ('software', 1), ('user', 1), ('interface', 1)]
[('logical', 2), ('programming', 2), ('concept', 2), ('anyone', 1), ('code', 1), ('art', 1), ('science', 1), ('creativity', 1), ('introduces', 1), ('computer', 1), ('way', 1), ('problem', 1), ('solving', 1), ('thinking', 1), ('us', 1), ('notion', 1), ('modularization', 1), ('central', 1), ('lens', 1), ('make', 1), ('sense', 1), ('many', 1), ('software', 1), ('book', 1), ('take', 1), ('reader', 1), ('fundamental', 1), ('illustrating', 1)]
[('internet', 2), ('thing', 2), ('esp', 2), ('iot', 2), ('device', 2), ('provides', 1), ('platform', 1), ('started', 1), ('book', 1), ('describes', 1), ('programming', 1), ('basic', 1), ('interface', 1), ('within', 1), ('designed', 1), ('system', 1), ('present', 1), ('unique', 1), ('combination', 1), ('application', 1), ('supported', 1), ('case', 1), ('study', 1), ('provide', 1)]
[('smart', 2), ('city', 2), ('iot', 2), ('towards', 1), ('world', 1), ('home', 1), ('using', 1), ('internet', 1), ('thing', 1), ('provides', 1), ('overview', 1), ('basic', 1), ('concept', 1), ('rising', 1), ('machine', 1), ('communication', 1), ('making', 1), ('real', 1), ('time', 1), ('application', 1), ('domain', 1), ('related', 1), ('technology', 1), ('possible', 1), ('solution', 1), ('handling', 1), ('relevant', 1), ('challenge', 1), ('book', 1), ('highlight', 1), ('utilization', 1)]
[('integration', 2), ('iot', 2), ('data', 2), ('challenge', 2), ('internet', 1), ('thing', 1), ('big', 1), ('cloud', 1), ('computing', 1), ('brought', 1), ('forward', 1), ('numerous', 1), ('advantage', 1), ('analytics', 1), ('storage', 1), ('book', 1), ('highlight', 1), ('provides', 1), ('integrating', 1), ('framework', 1), ('technology', 1), ('illustrating', 1), ('role', 1), ('blockchain', 1), ('possible', 1), ('facet', 1)]
[('computer', 2), ('simulation', 2), ('main', 2), ('structural', 2), ('biology', 2), ('free', 2), ('energy', 2), ('become', 1), ('engine', 1), ('development', 1), ('statistical', 1), ('mechanic', 1), ('constitutes', 1), ('theoretical', 1), ('tool', 1), ('structure', 1), ('determination', 1), ('protein', 1), ('calculation', 1), ('binding', 1), ('important', 1), ('drug', 1), ('design', 1), ('entropy', 1), ('lead', 1)]
[('image', 5), ('level', 3), ('thresholding', 3), ('multi', 2), ('beginner', 1), ('guide', 1), ('emphasizes', 1), ('various', 1), ('method', 1), ('necessary', 1), ('pre', 1), ('processing', 1), ('initial', 1), ('enhancement', 1), ('explains', 1), ('basic', 1), ('concept', 1), ('implementation', 1), ('grayscale', 1), ('rgb', 1), ('present', 1), ('detailed', 1), ('evaluation', 1), ('real', 1), ('time', 1)]
[('technology', 2), ('insightful', 1), ('volume', 1), ('explores', 1), ('example', 1), ('use', 1), ('teach', 1), ('social', 1), ('work', 1), ('knowledge', 1), ('value', 1), ('skill', 1), ('across', 1), ('curriculum', 1), ('chapter', 1), ('cover', 1), ('wide', 1), ('range', 1), ('perspective', 1), ('including', 1), ('international', 1), ('view', 1), ('role', 1), ('information', 1), ('britain', 1), ('malaysia', 1), ('training', 1), ('approach', 1), ('faculty', 1), ('development', 1)]
[('cybercrime', 3), ('working', 2), ('continues', 1), ('skyrocket', 1), ('combatting', 1), ('effectively', 1), ('yet', 1), ('need', 1), ('investigator', 1), ('background', 1), ('every', 1), ('sector', 1), ('conduct', 1), ('effective', 1), ('investigation', 1), ('book', 1), ('comprehensive', 1), ('resource', 1), ('everyone', 1), ('encounter', 1), ('investigates', 1), ('matter', 1), ('title', 1), ('including', 1)]
[('vehicular', 3), ('discus', 2), ('intelligent', 2), ('system', 2), ('application', 2), ('date', 1), ('reference', 1), ('important', 1), ('concept', 1), ('communication', 1), ('transportation', 1), ('augmented', 1), ('intelligence', 1), ('toward', 1), ('smart', 1), ('begin', 1), ('discussing', 1), ('key', 1), ('objective', 1), ('transport', 1), ('ad', 1), ('hoc', 1), ('network', 1), ('vanets', 1), ('go', 1), ('challenge', 1)]
[('life', 3), ('cyberspace', 2), ('part', 2), ('critical', 1), ('although', 1), ('use', 1), ('work', 1), ('entertainment', 1), ('social', 1), ('infrastructure', 1), ('operation', 1), ('invisible', 1), ('spend', 1), ('big', 1), ('environment', 1), ('almost', 1), ('essential', 1), ('service', 1), ('full', 1), ('potential', 1), ('danger', 1), ('place', 1), ('criminal', 1), ('commit', 1), ('new', 1), ('kind', 1)]
[('data', 3), ('science', 3), ('cover', 3), ('programming', 2), ('tour', 1), ('learn', 1), ('python', 1), ('parallel', 1), ('fundamental', 1), ('including', 1), ('statistic', 1), ('optimization', 1), ('machine', 1), ('learning', 1), ('single', 1), ('short', 1), ('book', 1), ('everything', 1), ('rather', 1), ('teach', 1), ('key', 1), ('concept', 1), ('topic', 1), ('popular', 1), ('language', 1)]
[('reade', 3), ('life', 2), ('animation', 2), ('book', 1), ('examines', 1), ('australian', 1), ('artist', 1), ('harry', 1), ('largely', 1), ('overlooked', 1), ('contribution', 1), ('constitutes', 1), ('biography', 1), ('tracing', 1), ('birth', 1), ('period', 1), ('involvement', 1), ('explores', 1), ('force', 1), ('shaped', 1), ('chronicle', 1), ('experience', 1)]
[('iot', 5), ('interoperability', 2), ('system', 2), ('issue', 2), ('device', 2), ('solution', 2), ('plug', 2), ('play', 2), ('smart', 1), ('discus', 1), ('different', 1), ('facet', 1), ('among', 1), ('scalability', 1), ('network', 1), ('provides', 1), ('new', 1), ('existing', 1), ('address', 1), ('possible', 1), ('usage', 1), ('interoperable', 1)]
[('text', 2), ('system', 2), ('discus', 1), ('emerging', 1), ('trend', 1), ('product', 1), ('development', 1), ('research', 1), ('focus', 1), ('increasingly', 1), ('important', 1), ('relationship', 1), ('computer', 1), ('social', 1), ('emphasizes', 1), ('significance', 1), ('building', 1), ('tool', 1), ('help', 1), ('work', 1), ('together', 1), ('need', 1), ('identification', 1), ('key', 1), ('factor', 1), ('within', 1), ('organization', 1), ('create', 1)]
[('structural', 2), ('dynamic', 2), ('paper', 1), ('volume', 1), ('deal', 1), ('demonstration', 1), ('possibility', 1), ('offered', 1), ('computational', 1), ('technology', 1), ('finding', 1), ('better', 1), ('solution', 1), ('problem', 1), ('different', 1), ('field', 1), ('special', 1), ('emphasis', 1), ('earthquake', 1)]
[('enterprise', 2), ('operation', 2), ('management', 2), ('provides', 2), ('handbook', 1), ('expert', 1), ('advice', 1), ('guidance', 1), ('hundred', 1), ('leading', 1), ('computing', 1), ('practitioner', 1), ('consultant', 1), ('covering', 1), ('major', 1), ('area', 1), ('edition', 1), ('essential', 1), ('information', 1), ('managing', 1), ('modern', 1), ('evolving', 1), ('data', 1), ('center', 1), ('topic', 1), ('include', 1), ('business', 1), ('issue', 1), ('technology', 1)]
[('step', 2), ('tutorial', 2), ('scene', 2), ('increase', 1), ('photorealism', 1), ('visualization', 1), ('enhanced', 1), ('toolsets', 1), ('ray', 1), ('d', 1), ('max', 1), ('book', 1), ('filled', 1), ('colorful', 1), ('illustration', 1), ('depicting', 1), ('process', 1), ('creating', 1), ('photorealistic', 1), ('day', 1), ('night', 1), ('exterior', 1), ('includes', 1), ('project', 1), ('guide', 1), ('user', 1), ('production', 1)]
[('game', 2), ('roguelike', 2), ('genre', 2), ('design', 1), ('deep', 1), ('dive', 1), ('roguelikes', 1), ('examines', 1), ('history', 1), ('rise', 1), ('often', 1), ('confusing', 1), ('despite', 1), ('year', 1), ('old', 1), ('remains', 1), ('mystery', 1), ('lot', 1), ('consumer', 1), ('developer', 1), ('procedural', 1), ('generation', 1), ('generate', 1), ('content', 1), ('cornerstone', 1), ('point', 1), ('complexity', 1), ('inception', 1)]
[('university', 3), ('philippine', 2), ('book', 1), ('provides', 1), ('collection', 1), ('paper', 1), ('ninth', 1), ('workshop', 1), ('computing', 1), ('theory', 1), ('practice', 1), ('wctp', 1), ('devoted', 1), ('theoretical', 1), ('practical', 1), ('approach', 1), ('computation', 1), ('organized', 1), ('four', 1), ('top', 1), ('japan', 1), ('tokyo', 1), ('institute', 1), ('technology', 1), ('osaka', 1), ('diliman', 1)]
[('system', 3), ('shs', 2), ('improve', 2), ('life', 2), ('science', 2), ('advance', 1), ('smart', 1), ('healthcare', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('domain', 1), ('highlight', 1), ('need', 1), ('ict', 1), ('aim', 1), ('human', 1), ('quality', 1), ('safety', 1), ('bring', 1), ('together', 1), ('concept', 1), ('methodology', 1), ('various', 1), ('field', 1), ('communication', 1), ('network', 1), ('computer', 1)]
[('problem', 2), ('equipment', 2), ('driving', 1), ('automation', 1), ('autonomy', 1), ('already', 1), ('upon', 1), ('predicted', 1), ('twenty', 1), ('year', 1), ('ago', 1), ('beginning', 1), ('appear', 1), ('include', 1), ('shortfall', 1), ('expected', 1), ('benefit', 1), ('unreliability', 1), ('driver', 1), ('skill', 1), ('fade', 1), ('error', 1), ('inducing', 1), ('design', 1), ('designing', 1), ('interaction', 1), ('interface', 1), ('automated', 1), ('vehicle', 1), ('user', 1), ('centred', 1)]
[('ai', 3), ('cyber', 2), ('book', 1), ('aim', 1), ('provide', 1), ('latest', 1), ('research', 1), ('development', 1), ('result', 1), ('domain', 1), ('technique', 1), ('smart', 1), ('ecosystem', 1), ('present', 1), ('holistic', 1), ('insight', 1), ('enabled', 1), ('theoretic', 1), ('approach', 1), ('methodology', 1), ('iot', 1), ('networking', 1), ('security', 1), ('analytics', 1), ('using', 1), ('tool', 1), ('network', 1), ('automation', 1), ('ultimately', 1), ('enable', 1), ('intelligent', 1), ('space', 1)]
[('image', 5), ('examination', 2), ('medical', 2), ('hybrid', 2), ('thresholding', 2), ('segmentation', 2), ('method', 2), ('view', 1), ('better', 1), ('result', 1), ('expected', 1), ('datasets', 1), ('integration', 1), ('processing', 1), ('work', 1), ('focus', 1), ('implementation', 1), ('possible', 1), ('technique', 1), ('describes', 1), ('various', 1)]
[('computing', 2), ('mathematical', 2), ('although', 1), ('facility', 1), ('available', 1), ('scientist', 1), ('becoming', 1), ('powerful', 1), ('problem', 1), ('addressing', 1), ('increasingly', 1), ('complex', 1), ('method', 1), ('simplifying', 1), ('procedure', 1), ('important', 1), ('microcomputer', 1), ('algorithm', 1), ('action', 1), ('algebra', 1), ('stress', 1), ('basis', 1), ('behind', 1), ('use', 1), ('many', 1)]
[('pd', 4), ('bc', 3), ('book', 1), ('cover', 1), ('theory', 1), ('practical', 1), ('knowledge', 1), ('probabilistic', 1), ('data', 1), ('structure', 1), ('blockchain', 1), ('concept', 1), ('introduces', 1), ('applicability', 1), ('technology', 1), ('practitioner', 1), ('explains', 1), ('code', 1), ('snippet', 1), ('illustrative', 1), ('example', 1), ('provides', 1), ('reference', 1), ('application', 1), ('along', 1)]
[('thread', 3), ('among', 2), ('open', 2), ('source', 2), ('release', 1), ('present', 1), ('version', 1), ('developed', 1), ('reputation', 1), ('developer', 1), ('strategy', 1), ('gained', 1), ('large', 1), ('following', 1), ('member', 1), ('embedded', 1), ('community', 1), ('china', 1), ('hundred', 1), ('thousand', 1), ('enthusiast', 1), ('widely', 1), ('used', 1), ('energy', 1), ('automotive', 1)]
[('data', 2), ('era', 1), ('internet', 1), ('thing', 1), ('explosive', 1), ('worldwide', 1), ('growth', 1), ('electronic', 1), ('volume', 1), ('associated', 1), ('need', 1), ('processing', 1), ('analysis', 1), ('storage', 1), ('humongous', 1), ('amount', 1), ('become', 1), ('mandatory', 1), ('exploit', 1), ('power', 1), ('massively', 1), ('parallel', 1), ('architecture', 1), ('fast', 1), ('computation', 1), ('cloud', 1), ('computing', 1), ('provides', 1), ('cheap', 1), ('source', 1)]
[('management', 2), ('using', 2), ('artificial', 2), ('intelligence', 2), ('transforming', 1), ('technique', 1), ('redefines', 1), ('practice', 1), ('ai', 1), ('providing', 1), ('new', 1), ('approach', 1), ('offer', 1), ('detailed', 1), ('illustrated', 1), ('treatment', 1), ('topic', 1), ('example', 1), ('case', 1), ('study', 1), ('brings', 1), ('exciting', 1), ('field', 1), ('life', 1), ('presenting', 1), ('substantial', 1), ('robust', 1), ('introduction', 1)]
[('behavior', 3), ('algorithm', 2), ('swarm', 1), ('intelligence', 1), ('form', 1), ('nature', 1), ('based', 1), ('optimization', 1), ('main', 1), ('inspiration', 1), ('cooperative', 1), ('animal', 1), ('within', 1), ('specific', 1), ('community', 1), ('described', 1), ('simple', 1), ('individual', 1), ('along', 1), ('mechanism', 1), ('sharing', 1), ('knowledge', 1), ('resulting', 1), ('complex', 1), ('entire', 1)]
[('work', 2), ('within', 2), ('contemporary', 1), ('society', 1), ('held', 1), ('together', 1), ('interactive', 1), ('group', 1), ('team', 1), ('carrying', 1), ('accomplish', 1), ('various', 1), ('intention', 1), ('purpose', 1), ('often', 1), ('challenging', 1), ('ill', 1), ('defined', 1), ('environment', 1), ('cooperative', 1), ('accomplished', 1), ('synergy', 1), ('human', 1), ('teamwork', 1), ('technological', 1), ('innovation', 1), ('domain', 1), ('health', 1), ('medicine', 1), ('cyber', 1)]
[('data', 2), ('mining', 2), ('industry', 2), ('analytics', 1), ('applied', 1), ('describes', 1), ('key', 1), ('challenge', 1), ('facing', 1), ('sector', 1), ('transforms', 1), ('digital', 1), ('able', 1), ('fully', 1), ('exploit', 1), ('process', 1), ('automation', 1), ('remote', 1), ('operation', 1), ('center', 1), ('autonomous', 1), ('equipment', 1), ('opportunity', 1), ('offered', 1), ('industrial', 1), ('internet', 1), ('thing', 1), ('provides', 1), ('guideline', 1), ('need', 1)]
[('tidy', 3), ('approach', 3), ('social', 2), ('programming', 2), ('introduction', 1), ('scientist', 1), ('introduces', 1), ('science', 1), ('research', 1), ('help', 1), ('quantitative', 1), ('researcher', 1), ('develop', 1), ('modern', 1), ('technical', 1), ('toolbox', 1), ('built', 1), ('around', 1), ('consistent', 1), ('syntax', 1), ('common', 1), ('grammar', 1), ('stacked', 1), ('code', 1), ('contribute', 1), ('clear', 1), ('efficient', 1)]
[('new', 3), ('antenna', 3), ('book', 2), ('method', 2), ('equation', 2), ('comprises', 1), ('solving', 1), ('integral', 1), ('leontovich', 1), ('rigorous', 1), ('effective', 1), ('current', 1), ('thin', 1), ('linear', 1), ('describes', 1), ('feature', 1), ('application', 1), ('various', 1), ('type', 1), ('considers', 1), ('way', 1), ('analyzing', 1), ('particular', 1), ('calculation', 1)]
[('edition', 2), ('game', 2), ('unity', 2), ('step', 2), ('second', 1), ('programming', 1), ('cookbook', 1), ('expounds', 1), ('upon', 1), ('first', 1), ('detail', 1), ('technique', 1), ('fresh', 1), ('array', 1), ('chapter', 1), ('updated', 1), ('code', 1), ('example', 1), ('jeff', 1), ('murray', 1), ('book', 1), ('help', 1), ('reader', 1), ('understand', 1), ('structured', 1), ('development', 1), ('unlike', 1), ('new', 1), ('tutorial', 1)]
[('catia', 3), ('book', 2), ('step', 2), ('design', 2), ('provides', 1), ('key', 1), ('understanding', 1), ('solid', 1), ('modeling', 1), ('software', 1), ('using', 1), ('screen', 1), ('shot', 1), ('training', 1), ('reader', 1), ('obtain', 1), ('comprehensive', 1), ('knowledge', 1), ('tool', 1), ('provided', 1), ('use', 1), ('variety', 1), ('engineering', 1), ('field', 1), ('introduces', 1), ('basic', 1), ('cover', 1), ('part', 1), ('discus', 1), ('sheet', 1), ('metal', 1), ('talk', 1)]
[('linux', 4), ('numerous', 1), ('still', 1), ('believe', 1), ('learning', 1), ('acquiring', 1), ('expertise', 1), ('easy', 1), ('professional', 1), ('understand', 1), ('system', 1), ('work', 1), ('nowadays', 1), ('gained', 1), ('popularity', 1), ('home', 1), ('workplace', 1), ('concept', 1), ('programming', 1), ('aim', 1), ('help', 1), ('guide', 1), ('age', 1), ('offering', 1), ('deep', 1), ('insight', 1)]
[('chapter', 4), ('cryptographic', 2), ('blockchain', 2), ('discus', 2), ('book', 1), ('seek', 1), ('generalize', 1), ('technique', 1), ('experience', 1), ('designing', 1), ('analyzing', 1), ('scheme', 1), ('devotes', 1), ('three', 1), ('review', 1), ('background', 1), ('basic', 1), ('knowledge', 1), ('four', 1), ('specific', 1), ('type', 1), ('primitive', 1), ('design', 1), ('optimization', 1), ('tool', 1), ('another', 1)]
[('machine', 2), ('learning', 2), ('several', 2), ('diagnosis', 2), ('medicine', 1), ('cover', 1), ('state', 1), ('art', 1), ('technique', 1), ('application', 1), ('medical', 1), ('field', 1), ('present', 1), ('computer', 1), ('aided', 1), ('cad', 1), ('system', 1), ('played', 1), ('important', 1), ('role', 1), ('disease', 1), ('past', 1), ('decade', 1), ('cancer', 1), ('detection', 1), ('resulting', 1), ('development', 1)]
[('technology', 3), ('blockchain', 2), ('attention', 2), ('type', 2), ('attracted', 1), ('business', 1), ('cryptocurrency', 1), ('bitcoin', 1), ('gained', 1), ('company', 1), ('applying', 1), ('develop', 1), ('solution', 1), ('improving', 1), ('traditional', 1), ('application', 1), ('securing', 1), ('transaction', 1), ('robust', 1), ('innovative', 1)]
[('security', 3), ('crisis', 2), ('specific', 2), ('using', 1), ('sars', 1), ('cov', 1), ('covid', 1), ('pandemic', 1), ('giant', 1), ('case', 1), ('study', 1), ('following', 1), ('structure', 1), ('domain', 1), ('information', 1), ('book', 1), ('look', 1), ('teach', 1), ('point', 1), ('fundamental', 1), ('social', 1), ('medical', 1), ('business', 1), ('response', 1), ('failed', 1), ('needed', 1), ('make', 1), ('use', 1)]
[('cybersecurity', 3), ('behavioral', 2), ('book', 1), ('discus', 1), ('role', 1), ('human', 1), ('personality', 1), ('study', 1), ('non', 1), ('specialist', 1), ('introduction', 1), ('proliferation', 1), ('internet', 1), ('maintenance', 1), ('issue', 1), ('grown', 1), ('exponentially', 1), ('importance', 1), ('recently', 1), ('amplified', 1), ('current', 1), ('event', 1), ('misinformation', 1)]
[('internet', 3), ('thing', 3), ('security', 2), ('node', 2), ('cover', 2), ('research', 2), ('book', 1), ('challenge', 1), ('attack', 1), ('countermeasure', 1), ('wide', 1), ('range', 1), ('topic', 1), ('along', 1), ('latest', 1), ('development', 1), ('domain', 1), ('various', 1), ('algorithm', 1), ('technique', 1), ('scheme', 1), ('field', 1), ('computer', 1)]
[('data', 2), ('study', 1), ('consideration', 1), ('temporal', 1), ('dimension', 1), ('computerized', 1), ('spatial', 1), ('handling', 1), ('using', 1), ('gi', 1), ('book', 1), ('describes', 1), ('use', 1), ('historical', 1), ('time', 1), ('variable', 1), ('explicit', 1), ('component', 1), ('modelling', 1), ('process', 1)]
[('warfare', 3), ('artificial', 2), ('intelligence', 2), ('ai', 1), ('digital', 1), ('explores', 1), ('weaponising', 1), ('change', 1), ('conducted', 1), ('impact', 1), ('corporate', 1), ('world', 1), ('tool', 1), ('becoming', 1), ('increasingly', 1), ('advanced', 1), ('many', 1), ('case', 1), ('humanlike', 1), ('potential', 1), ('psychological', 1)]
[('data', 2), ('high', 2), ('wireless', 2), ('link', 2), ('ultra', 2), ('rapid', 1), ('growth', 1), ('traffic', 1), ('demand', 1), ('new', 1), ('way', 1), ('achieve', 1), ('speed', 1), ('backbone', 1), ('network', 1), ('center', 1), ('mission', 1), ('critical', 1), ('application', 1), ('end', 1), ('user', 1), ('sitting', 1), ('office', 1), ('home', 1), ('require', 1), ('throughput', 1), ('low', 1), ('latency', 1), ('sophisticated', 1), ('technological', 1), ('advancement', 1), ('huge', 1), ('bandwidth', 1)]
[('high', 2), ('throughput', 2), ('technology', 2), ('data', 2), ('development', 1), ('molecular', 1), ('biology', 1), ('last', 1), ('decade', 1), ('contributed', 1), ('production', 1), ('tremendous', 1), ('amount', 1), ('microarray', 1), ('rna', 1), ('sequencing', 1), ('widely', 1), ('used', 1), ('simultaneously', 1), ('monitoring', 1), ('expression', 1), ('pattern', 1), ('thousand', 1), ('gene', 1), ('produced', 1)]
[('computer', 2), ('instrument', 1), ('science', 1), ('mathematics', 1), ('military', 1), ('secret', 1), ('academia', 1), ('stern', 1), ('administrator', 1), ('lorded', 1), ('sterile', 1), ('university', 1), ('laboratory', 1), ('stressed', 1), ('point', 1), ('wide', 1), ('eyed', 1), ('student', 1), ('privileged', 1), ('enough', 1), ('set', 1), ('foot', 1), ('within', 1), ('toy', 1), ('defying', 1), ('authority', 1), ('hacker', 1), ('seized', 1), ('control', 1), ('monolithic', 1), ('mainframe', 1)]
[('paper', 3), ('interface', 2), ('artificial', 2), ('intelligence', 2), ('different', 2), ('book', 1), ('present', 1), ('summary', 1), ('recent', 1), ('work', 1), ('statistic', 1), ('series', 1), ('author', 1), ('working', 1), ('area', 1), ('selected', 1), ('referenced', 1), ('subset', 1), ('presented', 1), ('rd', 1), ('interntional', 1), ('workshop', 1)]
[('review', 2), ('entertaining', 1), ('race', 1), ('time', 1), ('narrative', 1), ('kobo', 1), ('fast', 1), ('paced', 1), ('look', 1), ('seven', 1), ('day', 1), ('roguelikes', 1), ('something', 1), ('niche', 1), ('heard', 1), ('book', 1), ('written', 1), ('show', 1), ('important', 1), ('thought', 1), ('sort', 1), ('idea', 1), ('goodreads', 1), ('eleven', 1), ('game', 1), ('designer', 1), ('eight', 1)]
[('software', 1), ('development', 1), ('troubling', 1), ('first', 1), ('started', 1), ('seven', 1), ('chronic', 1), ('problem', 1), ('plagued', 1), ('beginning', 1), ('incomplete', 1), ('ambiguous', 1), ('user', 1), ('requirement', 1), ('grow', 1), ('per', 1), ('month', 1), ('major', 1), ('cost', 1), ('schedule', 1), ('overrun', 1), ('large', 1), ('application', 1), ('higher', 1), ('planned', 1), ('low', 1), ('defect', 1), ('removal', 1), ('efficiency', 1), ('dre', 1), ('cancelled', 1)]
[('ai', 4), ('car', 2), ('many', 2), ('artificial', 1), ('intelligence', 1), ('undoubtedly', 1), ('playing', 1), ('increasingly', 1), ('significant', 1), ('role', 1), ('automobile', 1), ('technology', 1), ('fact', 1), ('inhabit', 1), ('domain', 1), ('find', 1), ('innovation', 1), ('packed', 1), ('single', 1), ('product', 1), ('provides', 1), ('brief', 1), ('guided', 1), ('tour', 1), ('different', 1), ('landscape', 1), ('including', 1), ('robotics', 1), ('image', 1), ('speech', 1)]
[('data', 3), ('science', 3), ('learning', 3), ('machine', 2), ('aim', 1), ('book', 1), ('provide', 1), ('insight', 1), ('artificial', 1), ('technique', 1), ('based', 1), ('industry', 1), ('conveys', 1), ('becoming', 1), ('essential', 1), ('part', 1), ('industrial', 1), ('academic', 1), ('research', 1), ('varying', 1), ('healthcare', 1), ('social', 1), ('networking', 1), ('everywhere', 1), ('hybrid', 1), ('model', 1), ('al', 1)]
[('computer', 3), ('aided', 3), ('diagnosis', 2), ('technique', 2), ('domain', 2), ('learning', 2), ('disruptive', 1), ('trend', 1), ('collates', 1), ('novel', 1), ('methodology', 1), ('content', 1), ('based', 1), ('image', 1), ('classification', 1), ('deep', 1), ('machine', 1), ('design', 1), ('efficient', 1), ('architecture', 1), ('aimed', 1), ('highlight', 1), ('new', 1), ('challenge', 1), ('probable', 1), ('solution', 1)]
[('writing', 1), ('running', 1), ('software', 1), ('part', 1), ('science', 1), ('telescope', 1), ('test', 1), ('tube', 1), ('researcher', 1), ('never', 1), ('taught', 1), ('either', 1), ('result', 1), ('take', 1), ('longer', 1), ('accomplish', 1), ('simple', 1), ('task', 1), ('harder', 1), ('share', 1), ('work', 1), ('others', 1), ('need', 1), ('book', 1), ('introduces', 1), ('concept', 1)]
[('process', 2), ('control', 2), ('system', 2), ('purpose', 1), ('volume', 1), ('describe', 1), ('component', 1), ('assembly', 1), ('implementation', 1), ('computer', 1), ('based', 1), ('presented', 1), ('section', 1), ('illustrates', 1), ('used', 1), ('monitor', 1), ('industrial', 1), ('fermentation', 1), ('mean', 1), ('improve', 1), ('understanding', 1), ('product', 1), ('biosynthesis', 1), ('book', 1), ('cover', 1)]
[('iot', 3), ('book', 2), ('showcase', 2), ('blockchain', 2), ('purpose', 1), ('edited', 1), ('present', 1), ('basic', 1), ('fundamental', 1), ('application', 1), ('integration', 1), ('trend', 1), ('applying', 1), ('rapidly', 1), ('growing', 1), ('help', 1), ('overcome', 1), ('various', 1), ('challenge', 1), ('faced', 1), ('smart', 1), ('manufacturing', 1), ('unmanned', 1), ('aerial', 1), ('vehicle', 1), ('thise', 1), ('aim', 1)]
[('method', 5), ('molecular', 2), ('spectroscopy', 2), ('spectral', 2), ('analysis', 2), ('application', 1), ('numerical', 1), ('provides', 1), ('mathematical', 1), ('background', 1), ('theoretical', 1), ('perspective', 1), ('review', 1), ('data', 1), ('processing', 1), ('book', 1), ('discus', 1), ('complex', 1), ('profile', 1), ('separation', 1), ('band', 1), ('factor', 1), ('quantitative', 1), ('reflectance', 1)]
[('book', 3), ('iot', 3), ('comprehensive', 2), ('discussion', 2), ('vulnerable', 2), ('feature', 2), ('provides', 1), ('study', 1), ('security', 1), ('privacy', 1), ('research', 1), ('advancement', 1), ('internet', 1), ('thing', 1), ('lay', 1), ('context', 1), ('introducing', 1), ('intrinsic', 1), ('providing', 1), ('highlight', 1), ('problem', 1), ('area', 1), ('related', 1)]
[('encryption', 3), ('hybrid', 2), ('algorithm', 2), ('different', 2), ('wireless', 2), ('communication', 2), ('book', 1), ('present', 1), ('novel', 1), ('posse', 1), ('many', 1), ('characteristic', 1), ('particular', 1), ('channel', 1), ('examines', 1), ('encrypted', 1), ('image', 1), ('video', 1), ('data', 1), ('purpose', 1), ('secure', 1), ('study', 1), ('family', 1), ('scheme', 1), ('introduced', 1)]
[('use', 2), ('computer', 2), ('text', 1), ('cover', 1), ('application', 1), ('mineral', 1), ('industry', 1), ('encompassing', 1), ('topic', 1), ('visualization', 1), ('mining', 1), ('system', 1), ('aspect', 1), ('ventilation', 1), ('safety', 1)]
[('power', 2), ('big', 2), ('data', 2), ('concept', 2), ('book', 1), ('introduces', 1), ('principle', 1), ('carrying', 1), ('medium', 1), ('term', 1), ('load', 1), ('forecast', 1), ('mtlf', 1), ('system', 1), ('level', 1), ('based', 1), ('convolutionary', 1), ('neural', 1), ('network', 1), ('cnns', 1), ('present', 1), ('research', 1), ('direction', 1), ('field', 1), ('deep', 1), ('learning', 1), ('technique', 1), ('used', 1), ('engineering', 1)]
[('book', 3), ('technology', 2), ('blockchain', 2), ('purpose', 1), ('edited', 1), ('provide', 1), ('relevant', 1), ('case', 1), ('study', 1), ('concise', 1), ('format', 1), ('simplify', 1), ('streamline', 1), ('processing', 1), ('goal', 1), ('content', 1), ('change', 1), ('way', 1), ('business', 1), ('transformation', 1), ('conducting', 1), ('economic', 1), ('social', 1), ('system', 1), ('examines', 1)]
[('various', 3), ('healthcare', 2), ('medical', 2), ('modality', 2), ('design', 2), ('modern', 1), ('play', 1), ('important', 1), ('role', 1), ('improving', 1), ('diagnostic', 1), ('performance', 1), ('system', 1), ('application', 1), ('prosthesis', 1), ('surgical', 1), ('implant', 1), ('diagnosis', 1), ('prognosis', 1), ('detection', 1), ('abnormality', 1), ('treatment', 1), ('disease', 1), ('analysis', 1)]
[('rdr', 2), ('machine', 1), ('learning', 1), ('algorithm', 1), ('hold', 1), ('extraordinary', 1), ('promise', 1), ('reality', 1), ('success', 1), ('depends', 1), ('entirely', 1), ('suitability', 1), ('data', 1), ('available', 1), ('book', 1), ('ripple', 1), ('rule', 1), ('alternative', 1), ('manual', 1), ('technique', 1), ('rapidly', 1), ('building', 1), ('ai', 1), ('system', 1), ('human', 1), ('loop', 1), ('better', 1), ('able', 1), ('deal', 1), ('limitation', 1)]
[('industry', 3), ('industrial', 2), ('domain', 2), ('iot', 1), ('iiot', 1), ('newly', 1), ('developing', 1), ('fast', 1), ('emerging', 1), ('interest', 1), ('among', 1), ('student', 1), ('researcher', 1), ('professional', 1), ('academia', 1), ('due', 1), ('popular', 1), ('demand', 1), ('topic', 1), ('introduction', 1), ('internet', 1), ('thing', 1), ('written', 1), ('serve', 1), ('diverse', 1), ('readership', 1), ('computer', 1)]
[('cad', 3), ('cam', 3), ('describes', 2), ('different', 2), ('book', 1), ('present', 1), ('basic', 1), ('information', 1), ('select', 1), ('implement', 1), ('run', 1), ('system', 1), ('mechanical', 1), ('engineering', 1), ('environment', 1), ('overall', 1), ('state', 1), ('today', 1), ('industrial', 1), ('sector', 1), ('manufacturing', 1), ('technology', 1)]
[('brain', 3), ('behavior', 2), ('computing', 2), ('processing', 2), ('offer', 1), ('insight', 1), ('function', 1), ('human', 1), ('book', 1), ('provides', 1), ('emphasis', 1), ('different', 1), ('modality', 1), ('available', 1), ('signal', 1), ('image', 1), ('data', 1), ('science', 1), ('statistic', 1), ('includes', 1), ('fundamental', 1), ('mathematical', 1), ('model', 1), ('algorithm', 1), ('case', 1), ('study', 1), ('future', 1)]
[('ai', 3), ('human', 2), ('recent', 1), ('progress', 1), ('artificial', 1), ('intelligence', 1), ('revolutionized', 1), ('everyday', 1), ('life', 1), ('many', 1), ('algorithm', 1), ('reached', 1), ('level', 1), ('performance', 1), ('agent', 1), ('replacing', 1), ('profession', 1), ('predicted', 1), ('trend', 1), ('continue', 1), ('work', 1), ('activity', 1), ('current', 1), ('occupation', 1), ('automated', 1), ('success', 1)]
[('tech', 2), ('remote', 2), ('team', 2), ('better', 2), ('leader', 1), ('member', 1), ('awakened', 1), ('fantastic', 1), ('hand', 1), ('hint', 1), ('best', 1), ('practice', 1), ('guiding', 1), ('principle', 1), ('based', 1), ('solid', 1), ('ground', 1), ('hubbert', 1), ('provides', 1), ('inspiring', 1), ('prepared', 1), ('equipped', 1), ('contribute', 1), ('lead', 1), ('efficiently', 1), ('digital', 1)]
[('detection', 2), ('book', 1), ('provides', 1), ('depth', 1), ('overview', 1), ('artificial', 1), ('intelligence', 1), ('deep', 1), ('learning', 1), ('approach', 1), ('case', 1), ('study', 1), ('solve', 1), ('problem', 1), ('associated', 1), ('biometric', 1), ('security', 1), ('authentication', 1), ('indexing', 1), ('template', 1), ('protection', 1), ('spoofing', 1), ('attack', 1), ('roi', 1), ('gender', 1), ('classification', 1), ('etc', 1), ('text', 1), ('highlight', 1), ('showcase', 1), ('cutting', 1), ('edge', 1)]
[('hm', 2), ('guide', 2), ('developer', 2), ('book', 2), ('ecosystem', 2), ('kit', 2), ('partnering', 1), ('app', 1), ('first', 1), ('introduce', 1), ('reader', 1), ('huawei', 1), ('mobile', 1), ('service', 1), ('give', 1), ('fundamental', 1), ('understanding', 1), ('leverage', 1), ('tool', 1), ('capability', 1), ('make', 1), ('apps', 1), ('better', 1), ('quick', 1), ('start', 1), ('integration', 1), ('practical', 1)]
[('aircraft', 2), ('event', 2), ('flight', 2), ('recorder', 2), ('book', 1), ('focus', 1), ('way', 1), ('better', 1), ('manage', 1), ('prevent', 1), ('based', 1), ('homicide', 1), ('using', 1), ('alternate', 1), ('technology', 1), ('replace', 1), ('cockpit', 1), ('voice', 1), ('cvr', 1), ('digital', 1), ('data', 1), ('dfdr', 1), ('function', 1), ('infrequent', 1), ('implementation', 1), ('real', 1), ('time', 1), ('predictive', 1), ('maintenance', 1), ('allows', 1), ('operator', 1)]
[('device', 2), ('technology', 1), ('continues', 1), ('advance', 1), ('interconnection', 1), ('various', 1), ('make', 1), ('life', 1), ('easier', 1), ('put', 1), ('risk', 1), ('privacy', 1), ('security', 1), ('threat', 1), ('phone', 1), ('connect', 1), ('household', 1), ('help', 1), ('set', 1), ('alarm', 1), ('turn', 1), ('light', 1), ('even', 1), ('preheat', 1), ('oven', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('symbiotic', 1), ('interplay', 1), ('smart', 1)]
[('ai', 4), ('death', 4), ('digital', 3), ('dying', 2), ('artificial', 1), ('intelligence', 1), ('affect', 1), ('matter', 1), ('beyond', 1), ('handled', 1), ('age', 1), ('cover', 1), ('broad', 1), ('range', 1), ('literature', 1), ('research', 1), ('challenge', 1), ('around', 1), ('topic', 1), ('explores', 1), ('ethical', 1), ('memorisation', 1), ('legacy', 1), ('bereavement', 1), ('post', 1), ('avatar', 1)]
[('cyber', 2), ('attack', 2), ('forensics', 2), ('threat', 1), ('actor', 1), ('criminal', 1), ('terrorist', 1), ('hacktivists', 1), ('disgruntled', 1), ('employee', 1), ('employing', 1), ('sophisticated', 1), ('technique', 1), ('anti', 1), ('tool', 1), ('cover', 1), ('breach', 1), ('attempt', 1), ('emerging', 1), ('hybrid', 1), ('technology', 1), ('continue', 1), ('influence', 1), ('daily', 1), ('business', 1), ('decision', 1), ('proactive', 1), ('use', 1), ('better', 1), ('ass', 1)]
[('srv', 2), ('network', 2), ('ipv', 2), ('development', 2), ('programming', 1), ('beginning', 1), ('challenge', 1), ('internet', 1), ('protocol', 1), ('version', 1), ('describes', 1), ('background', 1), ('roadmap', 1), ('design', 1), ('implementation', 1), ('segment', 1), ('routing', 1), ('application', 1), ('technology', 1), ('traditional', 1), ('emerging', 1), ('service', 1), ('book', 1), ('begin', 1), ('ip', 1)]
[('iot', 2), ('application', 2), ('book', 1), ('explores', 1), ('modern', 1), ('sensor', 1), ('technology', 1), ('discussing', 1), ('security', 1), ('issue', 1), ('dominant', 1), ('factor', 1), ('many', 1), ('type', 1), ('internet', 1), ('thing', 1), ('cover', 1), ('recent', 1), ('markovian', 1), ('arrival', 1), ('process', 1), ('fog', 1), ('computing', 1), ('real', 1), ('time', 1), ('solar', 1), ('energy', 1), ('monitoring', 1), ('healthcare', 1), ('agriculture', 1), ('fundamental', 1)]
[('research', 5), ('selected', 1), ('paper', 1), ('international', 1), ('conference', 1), ('new', 1), ('computational', 1), ('social', 1), ('science', 1), ('focusing', 1), ('following', 1), ('five', 1), ('aspect', 1), ('big', 1), ('data', 1), ('acquisition', 1), ('analysis', 1), ('integration', 1), ('qualitative', 1), ('quantitative', 1), ('sociological', 1), ('internet', 1), ('experiment', 1), ('application', 1), ('abm', 1), ('simulation', 1), ('method', 1), ('sociology', 1)]
[('smart', 3), ('book', 1), ('contains', 1), ('collection', 1), ('high', 1), ('quality', 1), ('paper', 1), ('describing', 1), ('result', 1), ('relevant', 1), ('investigation', 1), ('cutting', 1), ('edge', 1), ('technology', 1), ('aimed', 1), ('improving', 1), ('key', 1), ('aspect', 1), ('real', 1), ('life', 1), ('including', 1), ('major', 1), ('challenge', 1), ('development', 1), ('city', 1), ('building', 1), ('grid', 1), ('reduction', 1), ('impact', 1), ('human', 1), ('activity', 1)]
[('network', 3), ('management', 3), ('problem', 2), ('article', 1), ('review', 1), ('technology', 1), ('standard', 1), ('outlining', 1), ('challenge', 1), ('field', 1), ('overview', 1), ('function', 1), ('architecture', 1), ('various', 1), ('component', 1), ('system', 1), ('nm', 1), ('describing', 1), ('key', 1), ('application', 1), ('area', 1)]
[('application', 2), ('deep', 2), ('learning', 2), ('method', 2), ('natural', 2), ('language', 2), ('processing', 2), ('approach', 2), ('problem', 1), ('generated', 1), ('significant', 1), ('progress', 1), ('across', 1), ('wide', 1), ('range', 1), ('task', 1), ('model', 1), ('surpass', 1), ('human', 1), ('performance', 1), ('success', 1), ('transformed', 1), ('engineering', 1)]
[('field', 2), ('smart', 2), ('technology', 1), ('interdependent', 1), ('discipline', 1), ('involves', 1), ('latest', 1), ('burning', 1), ('issue', 1), ('ranging', 1), ('machine', 1), ('learning', 1), ('cloud', 1), ('computing', 1), ('optimisation', 1), ('modelling', 1), ('technique', 1), ('internet', 1), ('thing', 1), ('data', 1), ('analytics', 1), ('grid', 1), ('among', 1), ('others', 1), ('new', 1), ('applied', 1), ('multi', 1), ('disciplinary', 1), ('subject', 1), ('focus', 1)]
[('introduction', 1), ('computer', 1), ('networking', 1), ('method', 1), ('usability', 1), ('engineering', 1), ('equipment', 1), ('design', 1)]
[('source', 2), ('telecommunication', 2), ('continuing', 1), ('help', 1), ('user', 1), ('analyze', 1), ('plan', 1), ('design', 1), ('evaluate', 1), ('manage', 1), ('integrated', 1), ('network', 1), ('system', 1), ('service', 1), ('froehlich', 1), ('kent', 1), ('encyclopedia', 1), ('present', 1), ('basic', 1), ('technologically', 1), ('advanced', 1), ('knowledge', 1), ('field', 1), ('ideal', 1), ('reference', 1), ('newcomer', 1), ('seasoned', 1)]
[('organization', 3), ('security', 2), ('role', 2), ('information', 2), ('book', 1), ('written', 1), ('first', 1), ('hire', 1), ('either', 1), ('individual', 1), ('moving', 1), ('within', 1), ('hired', 1), ('realizing', 1), ('requires', 1), ('dedicated', 1), ('team', 1), ('leadership', 1), ('distinct', 1), ('technology', 1), ('often', 1)]
[('robotics', 2), ('pandemic', 2), ('various', 2), ('robot', 2), ('explores', 1), ('application', 1), ('current', 1), ('global', 1), ('issue', 1), ('robotic', 1), ('solution', 1), ('combat', 1), ('virus', 1), ('key', 1), ('feature', 1), ('proposes', 1), ('employ', 1), ('improve', 1), ('treatment', 1), ('patient', 1), ('leverage', 1), ('load', 1), ('medical', 1), ('system', 1), ('demonstrates', 1), ('concept', 1)]
[('ai', 2), ('seems', 1), ('artificial', 1), ('intelligence', 1), ('always', 1), ('five', 1), ('year', 1), ('away', 1), ('never', 1), ('arrives', 1), ('recently', 1), ('development', 1), ('made', 1), ('practical', 1), ('utility', 1), ('game', 1), ('theory', 1), ('genuine', 1), ('reality', 1), ('sport', 1), ('provide', 1), ('petri', 1), ('dish', 1), ('prove', 1), ('domain', 1), ('specialist', 1), ('manager', 1), ('coach', 1), ('want', 1), ('know', 1)]
[('language', 2), ('ansi', 2), ('standard', 2), ('new', 2), ('feature', 2), ('programming', 1), ('popular', 1), ('industry', 1), ('academic', 1), ('invention', 1), ('standardized', 1), ('several', 1), ('known', 1), ('published', 1), ('subsequent', 1), ('year', 1), ('book', 1), ('cover', 1), ('trait', 1), ('includes', 1), ('present', 1), ('content', 1)]
[('cloud', 2), ('computing', 2), ('paradigm', 2), ('gained', 1), ('paramount', 1), ('attention', 1), ('company', 1), ('adopting', 1), ('new', 1), ('gaining', 1), ('significant', 1), ('benefit', 1), ('number', 1), ('application', 1), ('business', 1), ('operation', 1), ('facilitated', 1), ('become', 1), ('potential', 1), ('target', 1), ('attacker', 1), ('importance', 1), ('organized', 1), ('architecture', 1)]
[('algorithm', 3), ('design', 3), ('book', 2), ('art', 1), ('complementary', 1), ('perception', 1), ('roadmap', 1), ('level', 1), ('learner', 1), ('professional', 1), ('dealing', 1), ('algorithmic', 1), ('problem', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('cover', 1), ('considerable', 1), ('depth', 1), ('yet', 1), ('make', 1), ('analysis', 1)]
[('computing', 3), ('geometric', 2), ('algebra', 2), ('powerful', 1), ('mathematical', 1), ('system', 1), ('easy', 1), ('intuitive', 1), ('treatment', 1), ('geometry', 1), ('community', 1), ('working', 1), ('still', 1), ('small', 1), ('main', 1), ('goal', 1), ('book', 1), ('close', 1), ('gap', 1), ('perspective', 1), ('presenting', 1), ('power', 1), ('engineering', 1), ('application', 1), ('quantum', 1)]
[('game', 4), ('artificial', 2), ('intelligence', 2), ('development', 2), ('used', 1), ('life', 1), ('technical', 1), ('world', 1), ('idiom', 1), ('skill', 1), ('challenge', 1), ('reason', 1), ('fun', 1), ('work', 1), ('rule', 1), ('aesthetic', 1), ('trade', 1), ('offs', 1), ('hardware', 1)]
[('real', 3), ('machine', 2), ('learning', 2), ('time', 2), ('data', 2), ('book', 1), ('vividly', 1), ('illustrates', 1), ('promising', 1), ('potential', 1), ('ml', 1), ('deep', 1), ('dl', 1), ('algorithm', 1), ('host', 1), ('world', 1), ('business', 1), ('use', 1), ('case', 1), ('device', 1), ('empowered', 1), ('self', 1), ('learn', 1), ('exhibit', 1), ('intelligent', 1), ('behavior', 1), ('big', 1), ('combined', 1), ('runtime', 1), ('lead', 1)]
[('microcomputer', 4), ('encyclopedia', 2), ('reference', 2), ('technology', 2), ('serf', 1), ('ideal', 1), ('companion', 1), ('popular', 1), ('computer', 1), ('science', 1), ('th', 1), ('year', 1), ('publication', 1), ('timely', 1), ('work', 1), ('detail', 1), ('broad', 1), ('spectrum', 1), ('including', 1), ('history', 1), ('explains', 1), ('illustrates', 1), ('use', 1)]
[('microcomputer', 4), ('encyclopedia', 2), ('reference', 2), ('technology', 2), ('serf', 1), ('ideal', 1), ('companion', 1), ('popular', 1), ('computer', 1), ('science', 1), ('th', 1), ('year', 1), ('publication', 1), ('timely', 1), ('work', 1), ('detail', 1), ('broad', 1), ('spectrum', 1), ('including', 1), ('history', 1), ('explains', 1), ('illustrates', 1), ('use', 1)]
[('article', 2), ('comprehensive', 1), ('reference', 1), ('work', 1), ('provides', 1), ('immediate', 1), ('fingertip', 1), ('access', 1), ('state', 1), ('art', 1), ('technology', 1), ('nearly', 1), ('self', 1), ('contained', 1), ('written', 1), ('international', 1), ('authority', 1), ('encyclopedia', 1), ('feature', 1), ('current', 1), ('development', 1), ('trend', 1), ('computer', 1), ('software', 1), ('vendor', 1), ('application', 1), ('extensive', 1), ('bibliography', 1)]
[('telecommunication', 2), ('volume', 1), ('wireless', 1), ('multiple', 1), ('access', 1), ('adaptive', 1), ('communication', 1), ('technique', 1), ('zworykin', 1), ('vladimir', 1), ('kosma', 1), ('continuing', 1), ('source', 1), ('help', 1), ('user', 1), ('analyze', 1), ('plan', 1), ('design', 1), ('evaluate', 1), ('manage', 1), ('integrated', 1), ('network', 1), ('system', 1), ('service', 1), ('froehlich', 1), ('kent', 1), ('encyclopedia', 1), ('present', 1), ('basic', 1), ('technologically', 1)]
[('social', 4), ('care', 3), ('making', 1), ('use', 1), ('digital', 1), ('technology', 1), ('major', 1), ('responsibility', 1), ('computing', 1), ('domain', 1), ('service', 1), ('require', 1), ('attention', 1), ('ease', 1), ('system', 1), ('farming', 1), ('automation', 1), ('etc', 1), ('thus', 1), ('book', 1), ('focus', 1), ('suggesting', 1), ('software', 1), ('solution', 1), ('supporting', 1), ('issue', 1), ('health', 1), ('learning', 1), ('monitoring', 1)]
[('iot', 2), ('every', 2), ('internet', 1), ('thing', 1), ('product', 1), ('cyber', 1), ('physical', 1), ('system', 1), ('cps', 1), ('utilized', 1), ('almost', 1), ('discipline', 1), ('continues', 1), ('significant', 1), ('increase', 1), ('spending', 1), ('design', 1), ('development', 1), ('deployment', 1), ('application', 1), ('analytics', 1), ('within', 1), ('domain', 1), ('home', 1), ('school', 1), ('government', 1), ('industry', 1), ('practical', 1), ('text', 1), ('provides', 1)]
[('environment', 3), ('book', 2), ('artist', 2), ('explains', 1), ('fundamental', 1), ('talented', 1), ('game', 1), ('outlining', 1), ('key', 1), ('consideration', 1), ('tend', 1), ('forget', 1), ('focusing', 1), ('use', 1), ('substance', 1), ('designer', 1), ('create', 1), ('rich', 1), ('colourful', 1), ('realistic', 1), ('show', 1), ('improve', 1), ('storytelling', 1), ('think', 1), ('outside', 1), ('box', 1), ('following', 1)]
[('game', 4), ('design', 2), ('history', 2), ('horror', 2), ('video', 2), ('deep', 1), ('dive', 1), ('series', 1), ('examines', 1), ('specific', 1), ('system', 1), ('mechanic', 1), ('course', 1), ('industry', 1), ('entry', 1), ('examine', 1), ('genre', 1), ('element', 1), ('author', 1), ('analyzes', 1), ('early', 1), ('example', 1), ('including', 1), ('difference', 1), ('survival', 1), ('action', 1), ('psychological', 1)]
[('digital', 2), ('human', 2), ('culture', 2), ('transformed', 2), ('th', 1), ('bandung', 1), ('creative', 1), ('movement', 1), ('conference', 1), ('presented', 1), ('theme', 1), ('dynamic', 1), ('industrial', 1), ('revolution', 1), ('discussed', 1), ('world', 1), ('connectivity', 1), ('changed', 1), ('various', 1), ('aspect', 1), ('life', 1), ('accordance', 1), ('need', 1), ('social', 1), ('technology', 1), ('society', 1), ('serve', 1)]
[('emerging', 3), ('technology', 3), ('practice', 2), ('advance', 2), ('computing', 1), ('theory', 1), ('review', 1), ('past', 1), ('current', 1), ('future', 1), ('need', 1), ('computer', 1), ('science', 1), ('field', 1), ('discus', 1), ('importance', 1), ('appropriate', 1), ('impact', 1), ('outline', 1), ('principle', 1), ('challenge', 1), ('application', 1)]
[('cyberattacks', 2), ('company', 2), ('solution', 2), ('enterprise', 1), ('government', 1), ('institution', 1), ('individual', 1), ('exponentially', 1), ('growing', 1), ('time', 1), ('number', 1), ('small', 1), ('large', 1), ('offering', 1), ('type', 1), ('increasing', 1), ('rely', 1), ('technological', 1), ('protect', 1), ('understanding', 1), ('selecting', 1)]
[('concept', 2), ('book', 1), ('aim', 1), ('explain', 1), ('data', 1), ('analytics', 1), ('towards', 1), ('decision', 1), ('making', 1), ('term', 1), ('model', 1), ('algorithm', 1), ('theoretical', 1), ('application', 1), ('experiment', 1), ('relevant', 1), ('domain', 1), ('focused', 1), ('specific', 1), ('issue', 1), ('explores', 1), ('database', 1), ('technology', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('based', 1), ('system', 1), ('high', 1), ('performance', 1), ('computing', 1), ('information', 1), ('retrieval', 1)]
[('data', 4), ('science', 3), ('physic', 2), ('machine', 2), ('learning', 2), ('physicist', 2), ('link', 1), ('fundamental', 1), ('concept', 1), ('artificial', 1), ('intelligence', 1), ('looking', 1), ('integrate', 1), ('technique', 1), ('work', 1), ('book', 1), ('written', 1), ('explicitly', 1), ('marrying', 1), ('quantum', 1), ('statistical', 1), ('mechanic', 1), ('modern', 1), ('mining', 1)]
[('data', 3), ('analysis', 2), ('object', 1), ('oriented', 1), ('framework', 1), ('facilitates', 1), ('inter', 1), ('disciplinary', 1), ('research', 1), ('new', 1), ('terminology', 1), ('discussing', 1), ('often', 1), ('many', 1), ('possible', 1), ('approach', 1), ('complex', 1), ('naturally', 1), ('arising', 1), ('wide', 1), ('variety', 1), ('area', 1), ('book', 1), ('aim', 1), ('provide', 1), ('way', 1), ('thinking', 1), ('enable', 1), ('making', 1), ('sensible', 1), ('choice', 1)]
[('iot', 2), ('autonomous', 2), ('application', 2), ('fusion', 1), ('ai', 1), ('enables', 1), ('system', 1), ('predictive', 1), ('prescriptive', 1), ('convergence', 1), ('evolved', 1), ('nature', 1), ('emerging', 1), ('assisted', 1), ('augmented', 1), ('ultimately', 1), ('intelligence', 1), ('book', 1), ('discus', 1), ('algorithmic', 1), ('field', 1), ('machine', 1), ('learning', 1), ('pertinent', 1)]
[('computing', 3), ('emerging', 2), ('smart', 2), ('learning', 2), ('book', 1), ('intends', 1), ('cover', 1), ('various', 1), ('problematic', 1), ('aspect', 1), ('self', 1), ('adapting', 1), ('technology', 1), ('comprising', 1), ('machine', 1), ('artificial', 1), ('intelligence', 1), ('deep', 1), ('robotics', 1), ('cloud', 1), ('fog', 1), ('data', 1), ('mining', 1), ('algorithm', 1), ('including', 1), ('intelligent', 1), ('application', 1), ('related', 1), ('research', 1), ('area', 1)]
[('data', 4), ('big', 3), ('computing', 2), ('book', 1), ('focus', 1), ('business', 1), ('intelligence', 1), ('management', 1), ('machine', 1), ('learning', 1), ('cloud', 1), ('smart', 1), ('city', 1), ('provides', 1), ('interdisciplinary', 1), ('platform', 1), ('present', 1), ('discus', 1), ('recent', 1), ('innovation', 1), ('trend', 1), ('concern', 1), ('field', 1), ('analytics', 1), ('analysis', 1), ('green', 1), ('concept', 1), ('application', 1)]
[('language', 3), ('dynamic', 2), ('web', 2), ('javascript', 1), ('easy', 1), ('use', 1), ('flexible', 1), ('prototype', 1), ('based', 1), ('programming', 1), ('predominantly', 1), ('used', 1), ('although', 1), ('initial', 1), ('focus', 1), ('assist', 1), ('generation', 1), ('content', 1), ('soon', 1), ('found', 1), ('way', 1), ('numerous', 1), ('application', 1), ('book', 1), ('aim', 1), ('cover', 1), ('fundamental', 1), ('providing', 1)]
[('religious', 2), ('digital', 2), ('leader', 1), ('examined', 1), ('potential', 1), ('positive', 1), ('impact', 1), ('medium', 1), ('immortality', 1), ('creation', 1), ('context', 1), ('evident', 1), ('recent', 1), ('move', 1), ('away', 1), ('traditional', 1), ('funeral', 1), ('service', 1), ('focusing', 1), ('transition', 1), ('deceased', 1), ('future', 1), ('world', 1), ('beyond', 1), ('towards', 1), ('rise', 1), ('memorial', 1), ('content', 1)]
[('ar', 2), ('augmented', 1), ('reality', 1), ('many', 1), ('advantage', 1), ('include', 1), ('increased', 1), ('engagement', 1), ('interaction', 1), ('enhanced', 1), ('innovation', 1), ('responsiveness', 1), ('technology', 1), ('application', 1), ('almost', 1), ('domain', 1), ('medical', 1), ('training', 1), ('retail', 1), ('repair', 1), ('maintenance', 1), ('complex', 1), ('equipment', 1), ('interior', 1), ('design', 1), ('architecture', 1), ('construction', 1), ('business', 1), ('logistics', 1)]
[('technology', 3), ('interaction', 2), ('understanding', 1), ('explores', 1), ('broader', 1), ('context', 1), ('relation', 1), ('human', 1), ('made', 1), ('natural', 1), ('environment', 1), ('digital', 1), ('computer', 1), ('smartphones', 1), ('internet', 1), ('mechanical', 1), ('electrical', 1), ('electronic', 1)]
[('type', 2), ('internet', 1), ('thing', 1), ('iot', 1), ('concept', 1), ('defined', 1), ('flexible', 1), ('futuristic', 1), ('network', 1), ('different', 1), ('device', 1), ('smart', 1), ('object', 1), ('become', 1), ('seamlessly', 1), ('connected', 1), ('actively', 1), ('participate', 1), ('process', 1), ('happening', 1), ('around', 1), ('grand', 1), ('objective', 1), ('making', 1), ('physical', 1), ('mechanical', 1), ('electrical', 1)]
[('course', 4), ('system', 3), ('linux', 3), ('textbook', 2), ('operating', 2), ('unix', 2), ('true', 1), ('introductory', 1), ('administration', 1), ('combination', 1), ('concept', 1), ('second', 1), ('edition', 1), ('merges', 1), ('conceptual', 1), ('o', 1), ('topic', 1), ('cohesive', 1), ('undergraduate', 1), ('student', 1), ('book', 1), ('used', 1), ('semester', 1)]
[('data', 6), ('structure', 2), ('element', 2), ('amount', 2), ('set', 1), ('specially', 1), ('organized', 1), ('function', 1), ('defined', 1), ('store', 1), ('retrieve', 1), ('remove', 1), ('search', 1), ('individual', 1), ('using', 1), ('practical', 1), ('approach', 1), ('beginner', 1), ('cover', 1), ('issue', 1), ('related', 1), ('storage', 1), ('needed', 1), ('time', 1), ('required', 1), ('process', 1)]
[('office', 3), ('many', 2), ('consequence', 2), ('work', 2), ('covid', 1), ('pandemic', 1), ('unprecedented', 1), ('global', 1), ('shift', 1), ('remote', 1), ('information', 1), ('security', 1), ('professional', 1), ('struggling', 1), ('worker', 1), ('hastily', 1), ('given', 1), ('equipment', 1), ('properly', 1), ('secured', 1), ('use', 1), ('personal', 1), ('device', 1), ('perform', 1)]
[('text', 3), ('data', 2), ('machine', 2), ('learning', 2), ('model', 2), ('important', 1), ('many', 1), ('domain', 1), ('healthcare', 1), ('marketing', 1), ('digital', 1), ('humanity', 1), ('specialized', 1), ('approach', 1), ('necessary', 1), ('create', 1), ('feature', 1), ('language', 1), ('supervised', 1), ('analysis', 1), ('explains', 1), ('preprocess', 1), ('modeling', 1), ('train', 1), ('evaluate', 1), ('performance', 1), ('using', 1)]
[('higher', 2), ('cloud', 2), ('computing', 2), ('technology', 2), ('digitalization', 1), ('education', 1), ('using', 1), ('implication', 1), ('risk', 1), ('challenge', 1), ('provides', 1), ('insight', 1), ('latest', 1), ('tool', 1), ('used', 1), ('explore', 1), ('learning', 1), ('educational', 1), ('institution', 1), ('heis', 1), ('coming', 1), ('integrates', 1), ('academia', 1), ('industry', 1), ('thereby', 1), ('enhancing', 1), ('quality', 1)]
[('long', 1), ('easy', 1), ('book', 1), ('author', 1), ('celia', 1), ('hodent', 1), ('present', 1), ('clear', 1), ('overview', 1), ('challenge', 1), ('demand', 1), ('reward', 1), ('becoming', 1), ('user', 1), ('experience', 1), ('professional', 1), ('field', 1), ('interest', 1), ('better', 1), ('place', 1), ('start', 1), ('volume', 1), ('hold', 1), ('hand', 1), ('alan', 1), ('cooper', 1), ('ancestry', 1), ('thinker', 1), ('software', 1), ('alchemist', 1)]
[('graphic', 2), ('modeling', 2), ('animation', 2), ('industry', 2), ('cornerstone', 1), ('video', 1), ('game', 1), ('motion', 1), ('picture', 1), ('digital', 1), ('lighting', 1), ('many', 1), ('profession', 1), ('subject', 1), ('intertwine', 1), ('even', 1), ('require', 1), ('sufficient', 1), ('understanding', 1), ('mathematics', 1), ('physic', 1)]
[('disability', 3), ('technology', 2), ('various', 2), ('assistive', 1), ('intervention', 1), ('healthcare', 1), ('focus', 1), ('application', 1), ('intelligent', 1), ('technique', 1), ('biomedical', 1), ('engineering', 1), ('health', 1), ('informatics', 1), ('aim', 1), ('create', 1), ('awareness', 1), ('reduction', 1), ('recovery', 1), ('accidental', 1), ('help', 1), ('rehabilitative', 1), ('system', 1), ('novel', 1), ('treatment', 1)]
[('industry', 2), ('fast', 1), ('paced', 1), ('global', 1), ('economy', 1), ('academia', 1), ('innovate', 1), ('evolve', 1), ('succeed', 1), ('today', 1), ('researcher', 1), ('expert', 1), ('seeking', 1), ('transformative', 1), ('technology', 1), ('meet', 1), ('challenge', 1), ('tomorrow', 1), ('cutting', 1), ('edge', 1), ('technological', 1), ('advance', 1), ('cybersecurity', 1), ('solution', 1), ('aid', 1), ('enabling', 1), ('security', 1), ('complex', 1), ('heterogeneous', 1), ('high', 1), ('performance', 1)]
[('healthcare', 4), ('knowledge', 2), ('data', 2), ('application', 2), ('modelling', 1), ('big', 1), ('analytics', 1), ('advance', 1), ('focus', 1), ('automated', 1), ('analytical', 1), ('technique', 1), ('used', 1), ('extract', 1), ('vast', 1), ('amount', 1), ('brings', 1), ('together', 1), ('variety', 1), ('different', 1), ('aspect', 1), ('system', 1), ('aid', 1), ('decision', 1), ('making', 1), ('process', 1)]
[('peer', 2), ('security', 2), ('iot', 2), ('distributed', 1), ('application', 1), ('increasing', 1), ('daily', 1), ('cyberattacks', 1), ('constantly', 1), ('adopting', 1), ('new', 1), ('mechanism', 1), ('threaten', 1), ('privacy', 1), ('user', 1), ('internet', 1), ('thing', 1), ('environment', 1), ('blockchain', 1), ('decentralized', 1), ('cryptographic', 1), ('based', 1), ('technology', 1), ('promising', 1), ('element', 1), ('manufacturing', 1), ('finance', 1)]
[('industry', 1), ('latest', 1), ('technological', 1), ('innovation', 1), ('manufacturing', 1), ('goal', 1), ('increase', 1), ('productivity', 1), ('flexible', 1), ('efficient', 1), ('manner', 1), ('changing', 1), ('way', 1), ('manufacturer', 1), ('operate', 1), ('revolutionary', 1), ('transformation', 1), ('powered', 1), ('various', 1), ('technology', 1), ('advance', 1), ('including', 1), ('big', 1), ('data', 1), ('analytics', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('artificial', 1)]
[('application', 3), ('computer', 2), ('vision', 2), ('internet', 2), ('thing', 2), ('technology', 2), ('explores', 1), ('utilization', 1), ('iot', 1), ('underlying', 1), ('different', 1), ('area', 1), ('using', 1), ('series', 1), ('present', 1), ('future', 1), ('including', 1), ('business', 1), ('insight', 1), ('indoor', 1), ('outdoor', 1), ('security', 1), ('smart', 1), ('grid', 1), ('human', 1), ('detection', 1)]
[('ai', 3), ('business', 2), ('artificial', 1), ('intelligence', 1), ('headline', 1), ('surprise', 1), ('scrambling', 1), ('exploit', 1), ('exciting', 1), ('transformative', 1), ('technology', 1), ('clearly', 1), ('first', 1), ('deliver', 1), ('relevant', 1), ('gain', 1), ('significant', 1), ('advantage', 1), ('problem', 1), ('perception', 1), ('success', 1), ('society', 1), ('primarily', 1)]
[('digital', 3), ('every', 2), ('digitally', 2), ('transformation', 1), ('dt', 1), ('become', 1), ('buzzword', 1), ('industry', 1), ('segment', 1), ('across', 1), ('globe', 1), ('consciously', 1), ('jumping', 1), ('toward', 1), ('innovation', 1), ('disruption', 1), ('ahead', 1), ('competitor', 1), ('word', 1), ('aspect', 1), ('running', 1), ('business', 1), ('empowered', 1), ('reap', 1), ('benefit', 1), ('paradigm', 1), ('kind', 1)]
[('handbook', 2), ('knowledge', 2), ('information', 2), ('security', 2), ('provides', 1), ('comprehensive', 1), ('collection', 1), ('emerging', 1), ('multidisciplinary', 1), ('research', 1), ('area', 1), ('cybersecurity', 1), ('iot', 1), ('blockchain', 1), ('machine', 1), ('learning', 1), ('data', 1), ('science', 1), ('ai', 1), ('book', 1), ('brings', 1), ('together', 1), ('resource', 1), ('across', 1), ('multiple', 1), ('domain', 1), ('address', 1)]
[('agile', 2), ('transformation', 2), ('act', 1), ('transforming', 1), ('organization', 1), ('form', 1), ('nature', 1), ('gradually', 1), ('embrace', 1), ('thrive', 1), ('flexible', 1), ('collaborative', 1), ('self', 1), ('organizing', 1), ('fast', 1), ('changing', 1), ('environment', 1), ('seems', 1), ('company', 1), ('starting', 1), ('never', 1), ('reach', 1), ('goal', 1), ('agility', 1), ('truly', 1)]
[('florida', 2), ('university', 2), ('know', 1), ('smart', 1), ('intelligent', 1), ('system', 1), ('use', 1), ('productive', 1), ('organization', 1), ('become', 1), ('quality', 1), ('life', 1), ('improve', 1), ('gavriel', 1), ('salvendy', 1), ('president', 1), ('academy', 1), ('science', 1), ('engineering', 1), ('medicine', 1), ('distinguished', 1), ('professor', 1), ('central', 1), ('robot', 1), ('drone', 1), ('self', 1), ('driving', 1)]
[('solution', 2), ('stochastic', 2), ('programming', 2), ('computationally', 1), ('oriented', 1), ('comparison', 1), ('algorithm', 1), ('stage', 1), ('jointly', 1), ('chance', 1), ('constrained', 1), ('linear', 1), ('problem', 1), ('first', 1), ('book', 1), ('present', 1), ('comparative', 1), ('computational', 1), ('result', 1), ('several', 1), ('major', 1), ('approach', 1), ('following', 1), ('method', 1), ('considered', 1), ('regularized', 1), ('decomposition', 1)]
[('cloud', 5), ('computing', 2), ('based', 2), ('rapid', 1), ('development', 1), ('digital', 1), ('transformation', 1), ('designed', 1), ('architecture', 1), ('always', 1), ('urgent', 1), ('need', 1), ('illustrated', 1), ('project', 1), ('case', 1), ('chinese', 1), ('technology', 1), ('company', 1), ('alibaba', 1), ('book', 1), ('elaborates', 1), ('design', 1), ('application', 1), ('system', 1), ('build', 1), ('far', 1)]
[('cloud', 3), ('high', 2), ('service', 2), ('increase', 2), ('machine', 1), ('learning', 1), ('model', 1), ('optimization', 1), ('main', 1), ('aim', 1), ('meet', 1), ('user', 1), ('requirement', 1), ('quality', 1), ('least', 1), ('time', 1), ('computation', 1), ('reliability', 1), ('migrating', 1), ('provider', 1), ('load', 1), ('resulting', 1), ('fault', 1), ('various', 1), ('security', 1), ('failure', 1), ('system', 1), ('result', 1)]
[('strategically', 1), ('sound', 1), ('combination', 1), ('edge', 1), ('computing', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('result', 1), ('series', 1), ('distinct', 1), ('innovation', 1), ('disruption', 1), ('enabling', 1), ('worldwide', 1), ('enterprise', 1), ('visualize', 1), ('realize', 1), ('next', 1), ('generation', 1), ('software', 1), ('product', 1), ('solution', 1), ('service', 1), ('business', 1), ('individual', 1), ('innovator', 1), ('set', 1), ('embrace', 1), ('experience', 1)]
[('vulnerability', 2), ('web', 2), ('book', 1), ('give', 1), ('comprehensive', 1), ('overview', 1), ('security', 1), ('issue', 1), ('cyber', 1), ('physical', 1), ('system', 1), ('examining', 1), ('analyzing', 1), ('brings', 1), ('current', 1), ('understanding', 1), ('common', 1), ('analysis', 1), ('maintaining', 1), ('awareness', 1), ('knowledge', 1), ('contemporary', 1), ('standard', 1), ('practice', 1), ('procedure', 1), ('method', 1), ('open', 1), ('application', 1)]
[('ai', 2), ('ml', 2), ('several', 2), ('artificial', 1), ('intelligence', 1), ('machine', 1), ('learning', 1), ('technique', 1), ('play', 1), ('important', 1), ('role', 1), ('daily', 1), ('life', 1), ('enhancing', 1), ('prediction', 1), ('decision', 1), ('making', 1), ('public', 1), ('field', 1), ('financial', 1), ('service', 1), ('real', 1), ('estate', 1), ('business', 1), ('consumer', 1), ('good', 1), ('social', 1), ('medium', 1), ('etc', 1), ('despite', 1), ('study', 1), ('proved', 1), ('efficacy', 1), ('tool', 1)]
[('blockchain', 2), ('data', 2), ('healthcare', 2), ('series', 1), ('transaction', 1), ('recorded', 1), ('block', 1), ('secured', 1), ('cryptographically', 1), ('immutable', 1), ('decentralized', 1), ('transparent', 1), ('proved', 1), ('beneficial', 1), ('across', 1), ('domain', 1), ('protect', 1), ('store', 1), ('maintaining', 1), ('privacy', 1), ('integrity', 1), ('security', 1), ('particularly', 1), ('valuable', 1), ('industry', 1)]
[('smart', 4), ('internet', 2), ('thing', 1), ('iot', 1), ('seen', 1), ('eventual', 1), ('shift', 1), ('everything', 1), ('recent', 1), ('year', 1), ('unveiling', 1), ('ubiquitous', 1), ('presence', 1), ('spanning', 1), ('transport', 1), ('healthcare', 1), ('education', 1), ('shopping', 1), ('rollouts', 1), ('across', 1), ('different', 1), ('country', 1), ('world', 1), ('raise', 1), ('newer', 1), ('perspective', 1), ('toward', 1)]
[('ai', 3), ('robotics', 3), ('healthcare', 2), ('artificial', 1), ('intelligence', 1), ('assist', 1), ('contemporary', 1), ('medicine', 1), ('offer', 1), ('society', 1), ('unimaginable', 1), ('benefit', 1), ('enabling', 1), ('wheelchair', 1), ('user', 1), ('walk', 1), ('performing', 1), ('surgery', 1), ('highly', 1), ('automated', 1), ('minimally', 1), ('invasive', 1), ('way', 1), ('delivering', 1), ('care', 1)]
[('ulf', 2), ('mattsson', 2), ('data', 2), ('leverage', 1), ('decade', 1), ('experience', 1), ('cto', 1), ('security', 1), ('expert', 1), ('show', 1), ('company', 1), ('achieve', 1), ('compliance', 1), ('without', 1), ('sacrificing', 1), ('operability', 1), ('jim', 1), ('ambrosini', 1), ('cissp', 1), ('crisc', 1), ('cybersecurity', 1), ('consultant', 1), ('virtual', 1), ('ciso', 1), ('lay', 1), ('rationale', 1), ('accountable', 1), ('governance', 1), ('provides', 1), ('clear', 1)]
[('machine', 3), ('learning', 3), ('data', 2), ('regression', 2), ('book', 1), ('provides', 1), ('detailed', 1), ('description', 1), ('algorithm', 1), ('analytics', 1), ('science', 1), ('life', 1), ('cycle', 1), ('python', 1), ('linear', 1), ('logistic', 1), ('forth', 1), ('address', 1), ('concept', 1), ('practical', 1), ('sense', 1), ('providing', 1), ('complete', 1), ('code', 1), ('implementation', 1), ('real', 1), ('world', 1), ('example', 1)]
[('information', 3), ('sensitive', 2), ('working', 1), ('cyber', 1), ('world', 1), ('access', 1), ('wide', 1), ('range', 1), ('including', 1), ('personal', 1), ('corporate', 1), ('increase', 1), ('risk', 1), ('aspect', 1), ('protection', 1), ('data', 1), ('train', 1), ('user', 1), ('behave', 1), ('securely', 1), ('mean', 1), ('every', 1), ('person', 1), ('handle', 1)]
[('cyberspace', 3), ('widespread', 2), ('space', 2), ('become', 2), ('growth', 1), ('internet', 1), ('new', 1), ('appeared', 1), ('rapidly', 1), ('integrated', 1), ('every', 1), ('facet', 1), ('life', 1), ('work', 1), ('effectively', 1), ('fourth', 1), ('basic', 1), ('living', 1), ('human', 1), ('being', 1), ('although', 1), ('topic', 1), ('increasing', 1), ('concern', 1), ('still', 1), ('difficult', 1), ('understand', 1)]
[('george', 2), ('design', 2), ('knowing', 1), ('various', 1), ('framework', 1), ('methodology', 1), ('crucial', 1), ('book', 1), ('take', 1), ('step', 1), ('transforming', 1), ('individual', 1), ('team', 1), ('adaptable', 1), ('problem', 1), ('solving', 1), ('powerhouse', 1), ('ketsiakidis', 1), ('researcher', 1), ('shanghai', 1), ('jiao', 1), ('tong', 1), ('university', 1), ('master', 1), ('process', 1), ('thinking', 1), ('come', 1), ('every', 1), ('word', 1)]
[('pascal', 3), ('toolkit', 2), ('turbo', 2), ('software', 2), ('scientific', 1), ('programmer', 1), ('edition', 1), ('present', 1), ('complete', 1), ('environment', 1), ('anyone', 1), ('writing', 1), ('program', 1), ('mathematical', 1), ('engineering', 1), ('science', 1), ('area', 1), ('package', 1), ('designed', 1), ('use', 1), ('de', 1), ('facto', 1), ('standard', 1), ('system', 1), ('pc', 1), ('compatible', 1), ('machine', 1), ('book', 1), ('provides', 1)]
[('animation', 3), ('writer', 2), ('stylistically', 1), ('original', 1), ('provocative', 1), ('return', 1), ('informal', 1), ('sequel', 1), ('previous', 1), ('book', 1), ('indie', 1), ('unsung', 1), ('hero', 1), ('animator', 1), ('unearthed', 1), ('collection', 1), ('award', 1), ('winning', 1), ('chris', 1), ('robinson', 1), ('look', 1), ('wide', 1), ('range', 1), ('film', 1), ('filmmaker', 1), ('including', 1), ('cult', 1), ('favourite', 1)]
[('access', 3), ('authorization', 2), ('book', 1), ('focus', 1), ('various', 1), ('control', 1), ('technique', 1), ('threat', 1), ('attack', 1), ('modeling', 1), ('including', 1), ('overview', 1), ('open', 1), ('oauth', 1), ('framework', 1), ('along', 1), ('user', 1), ('managed', 1), ('uma', 1), ('security', 1), ('analysis', 1), ('important', 1), ('key', 1), ('concept', 1), ('discussed', 1), ('regarding', 1), ('login', 1), ('credential', 1), ('restricted', 1), ('third', 1), ('party', 1)]
[('pandemic', 2), ('way', 2), ('covid', 1), ('novel', 1), ('coronavirus', 1), ('disrupted', 1), ('society', 1), ('many', 1), ('digital', 1), ('healthcare', 1), ('innovation', 1), ('required', 1), ('come', 1), ('across', 1), ('myriad', 1), ('challenge', 1), ('scientist', 1), ('developer', 1), ('learning', 1), ('fi', 1), ('nding', 1), ('use', 1), ('artifi', 1), ('cial', 1), ('intelligence', 1), ('application', 1), ('natural', 1), ('language', 1), ('processing', 1)]
[('metadata', 3), ('matter', 2), ('certain', 1), ('seminal', 1), ('work', 1), ('john', 1), ('horodyski', 1), ('masterfully', 1), ('affirms', 1), ('value', 1), ('providing', 1), ('practical', 1), ('example', 1), ('role', 1), ('personal', 1), ('professional', 1), ('life', 1), ('tell', 1), ('vividly', 1), ('illustrates', 1), ('patricia', 1), ('frank', 1), ('phd', 1), ('ca', 1), ('crm', 1), ('igp', 1), ('cigo', 1), ('fai', 1)]
[('artificial', 2), ('intelligence', 2), ('sustainable', 2), ('development', 2), ('goal', 2), ('sdgs', 2), ('impact', 2), ('ai', 1), ('affect', 1), ('real', 1), ('life', 1), ('environment', 1), ('enable', 1), ('evaluate', 1), ('systematic', 1), ('manner', 1), ('book', 1), ('show', 1), ('requires', 1), ('understand', 1)]
[('university', 2), ('project', 2), ('ai', 1), ('knowledge', 1), ('transfer', 1), ('society', 1), ('application', 1), ('high', 1), ('impact', 1), ('sector', 1), ('brings', 1), ('together', 1), ('example', 1), ('innovative', 1), ('ecosystem', 1), ('artificial', 1), ('intelligence', 1), ('andalusia', 1), ('seville', 1), ('series', 1), ('sub', 1), ('composed', 1), ('research', 1), ('group', 1), ('different', 1), ('institution', 1), ('company', 1), ('explore', 1), ('use', 1)]
[('internet', 3), ('enterprise', 3), ('digital', 2), ('making', 1), ('daily', 1), ('life', 1), ('possible', 1), ('new', 1), ('era', 1), ('called', 1), ('everything', 1), ('ioe', 1), ('key', 1), ('force', 1), ('behind', 1), ('rapid', 1), ('growth', 1), ('technological', 1), ('advancement', 1), ('world', 1), ('live', 1), ('facilitated', 1), ('advance', 1), ('business', 1), ('intelligence', 1)]
[('death', 2), ('word', 1), ('resonant', 1), ('emotion', 1), ('imagery', 1), ('meaning', 1), ('ultimate', 1), ('life', 1), ('event', 1), ('living', 1), ('thing', 1), ('eventually', 1), ('experience', 1), ('come', 1), ('surprise', 1), ('often', 1), ('popular', 1), ('theme', 1), ('literature', 1), ('art', 1), ('game', 1), ('cinema', 1), ('music', 1), ('even', 1), ('animation', 1), ('dennis', 1), ('tupicoff', 1), ('world', 1), ('renowned', 1), ('animator', 1), ('writer', 1), ('producer', 1)]
[('book', 2), ('processing', 2), ('using', 2), ('discounted', 1), ('set', 1), ('contains', 1), ('fundamental', 1), ('image', 1), ('audio', 1), ('video', 1), ('matlab', 1), ('introduces', 1), ('concept', 1), ('principle', 1), ('medium', 1), ('application', 1), ('pattern', 1), ('recognition', 1), ('adopting', 1), ('hand', 1), ('approach', 1), ('program', 1), ('implementation', 1), ('cover', 1), ('tool', 1), ('technique', 1), ('reading', 1), ('modifying', 1)]
[('artificial', 2), ('intelligence', 2), ('significant', 2), ('ai', 2), ('issue', 2), ('global', 2), ('politics', 2), ('technology', 1), ('led', 1), ('advance', 1), ('science', 1), ('medicine', 1), ('facilitated', 1), ('new', 1), ('form', 1), ('repression', 1), ('policing', 1), ('surveillance', 1), ('policy', 1), ('become', 1), ('without', 1), ('doubt', 1), ('tackle', 1), ('linked', 1)]
[('quantum', 3), ('field', 2), ('cryptography', 2), ('technique', 2), ('new', 1), ('book', 1), ('discus', 1), ('concept', 1), ('highlighting', 1), ('challenge', 1), ('covering', 1), ('cryptographic', 1), ('cyber', 1), ('security', 1), ('single', 1), ('volume', 1), ('comprehensively', 1), ('cover', 1), ('important', 1), ('topic', 1), ('application', 1), ('including', 1), ('key', 1), ('distribution', 1)]
[('disability', 2), ('many', 2), ('digital', 2), ('accessibility', 2), ('leader', 2), ('approximately', 1), ('global', 1), ('population', 1), ('affected', 1), ('sort', 1), ('according', 1), ('world', 1), ('report', 1), ('suite', 1), ('executive', 1), ('perceive', 1), ('da', 1), ('endless', 1), ('task', 1), ('among', 1), ('engineering', 1), ('four', 1), ('reliant', 1), ('limited', 1), ('knowledge', 1), ('country', 1)]
[('conference', 2), ('technology', 2), ('special', 1), ('issue', 1), ('dedicated', 1), ('national', 1), ('communication', 1), ('computational', 1), ('intelligence', 1), ('learning', 1), ('nccil', 1), ('sponsored', 1), ('aicte', 1), ('organized', 1), ('department', 1), ('information', 1), ('army', 1), ('institute', 1), ('january', 1), ('gave', 1), ('collaborative', 1), ('forum', 1), ('academic', 1), ('expert', 1), ('researcher', 1), ('corporate', 1)]
[('approach', 2), ('machine', 2), ('learning', 2), ('system', 2), ('model', 2), ('number', 1), ('defined', 1), ('statistic', 1), ('used', 1), ('identification', 1), ('process', 1), ('created', 1), ('perceived', 1), ('data', 1), ('assisting', 1), ('scientist', 1), ('generation', 1), ('refinement', 1), ('current', 1), ('studied', 1), ('extensively', 1), ('science', 1)]
[('iot', 5), ('strategy', 2), ('book', 1), ('provides', 1), ('knowledge', 1), ('skill', 1), ('engineer', 1), ('requires', 1), ('effectively', 1), ('integrate', 1), ('internet', 1), ('thing', 1), ('field', 1), ('mechanical', 1), ('engineering', 1), ('divided', 1), ('three', 1), ('section', 1), ('named', 1), ('foundation', 1), ('topic', 1), ('system', 1), ('development', 1), ('volume', 1), ('cover', 1), ('introduction', 1), ('framework', 1), ('component', 1), ('advantage', 1)]
[('transformation', 3), ('industry', 3), ('digital', 2), ('smart', 2), ('manufacturing', 2), ('new', 2), ('known', 1), ('top', 1), ('leader', 1), ('agenda', 1), ('stimulates', 1), ('innovation', 1), ('product', 1), ('service', 1), ('process', 1), ('creation', 1), ('business', 1), ('model', 1), ('ecosystem', 1), ('world', 1)]
[('cyber', 2), ('security', 2), ('threat', 2), ('challenge', 2), ('facing', 1), ('human', 1), ('life', 1), ('provides', 1), ('comprehensive', 1), ('view', 1), ('issue', 1), ('faced', 1), ('domain', 1), ('book', 1), ('offer', 1), ('detailed', 1), ('analysis', 1), ('effective', 1), ('countermeasure', 1), ('mitigation', 1), ('financial', 1), ('sector', 1), ('healthcare', 1), ('digital', 1), ('manufacturing', 1), ('social', 1), ('medium', 1)]
[('iot', 3), ('industry', 3), ('telecom', 2), ('critical', 1), ('forward', 1), ('looking', 1), ('book', 1), ('feature', 1), ('assessment', 1), ('impact', 1), ('internet', 1), ('thing', 1), ('revenue', 1), ('stream', 1), ('based', 1), ('business', 1), ('model', 1), ('pestle', 1), ('political', 1), ('economic', 1), ('socio', 1), ('cultural', 1), ('technological', 1), ('legal', 1), ('environmental', 1), ('analysis', 1), ('relation', 1), ('key', 1)]
[('learn', 3), ('javascript', 3), ('audio', 3), ('application', 2), ('program', 1), ('creating', 1), ('interactive', 1), ('sound', 1), ('artist', 1), ('code', 1), ('web', 1), ('api', 1), ('william', 1), ('turner', 1), ('steve', 1), ('leonard', 1), ('showcase', 1), ('basic', 1), ('language', 1), ('programing', 1), ('reader', 1), ('build', 1), ('browser', 1), ('based', 1), ('music', 1), ('synthesizer', 1)]
[('analysis', 2), ('deploying', 1), ('time', 1), ('series', 1), ('fourier', 1), ('transform', 1), ('functional', 1), ('min', 1), ('plus', 1), ('convolution', 1), ('fractional', 1), ('order', 1), ('system', 1), ('noise', 1), ('book', 1), ('proposes', 1), ('fractal', 1), ('traffic', 1), ('modeling', 1), ('computation', 1), ('delay', 1), ('bound', 1), ('aiming', 1), ('improve', 1), ('quality', 1), ('service', 1), ('computer', 1), ('communication', 1), ('network', 1), ('opposed', 1), ('traditional', 1), ('study', 1), ('teletraffic', 1)]
[('forensic', 2), ('examination', 2), ('unleashing', 1), ('art', 1), ('digital', 1), ('forensics', 1), ('intended', 1), ('describe', 1), ('explain', 1), ('step', 1), ('taken', 1), ('intent', 1), ('making', 1), ('reader', 1), ('aware', 1), ('constraint', 1), ('consideration', 1), ('apply', 1), ('law', 1), ('enforcement', 1), ('private', 1), ('sector', 1), ('key', 1), ('feature', 1), ('discus', 1), ('recent', 1)]
[('book', 2), ('application', 2), ('implementation', 2), ('big', 2), ('data', 2), ('aim', 1), ('provide', 1), ('comprehensive', 1), ('knowledge', 1), ('information', 1), ('pertaining', 1), ('petroleum', 1), ('industry', 1), ('operation', 1), ('exploration', 1), ('production', 1), ('refining', 1), ('finance', 1), ('cover', 1), ('intricate', 1), ('aspect', 1), ('v', 1), ('benefit', 1), ('research', 1), ('work', 1)]
[('dread', 2), ('writing', 2), ('report', 2), ('technique', 2), ('make', 2), ('reading', 1), ('realize', 1), ('readable', 1), ('powerful', 1), ('especially', 1), ('relevant', 1), ('professional', 1), ('area', 1), ('audit', 1), ('risk', 1), ('compliance', 1), ('information', 1), ('security', 1), ('small', 1), ('volume', 1), ('provides', 1), ('tool', 1), ('needed', 1)]
[('model', 3), ('book', 2), ('predictive', 2), ('emphasizes', 1), ('big', 1), ('data', 1), ('genetic', 1), ('algorithm', 1), ('iot', 1), ('case', 1), ('study', 1), ('illustrates', 1), ('integrated', 1), ('fuel', 1), ('consumption', 1), ('smart', 1), ('safe', 1), ('traveling', 1), ('text', 1), ('coordinated', 1), ('amalgamation', 1), ('research', 1), ('contribution', 1), ('industrial', 1), ('application', 1), ('field', 1), ('intelligent', 1)]
[('artificial', 3), ('technological', 2), ('intelligence', 2), ('future', 1), ('mind', 1), ('social', 1), ('challenge', 1), ('posed', 1), ('new', 1), ('wave', 1), ('technical', 1), ('cognitive', 1), ('perspective', 1), ('deep', 1), ('neural', 1), ('network', 1), ('brought', 1), ('tremendous', 1), ('improvement', 1), ('renaissance', 1), ('decade', 1), ('stagnation', 1)]
[('healthcare', 3), ('technology', 3), ('book', 1), ('transformation', 1), ('emerging', 1), ('present', 1), ('industrial', 1), ('revolution', 1), ('based', 1), ('service', 1), ('aggregation', 1), ('virtualisation', 1), ('transform', 1), ('sector', 1), ('aid', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('bigdata', 1), ('blockchain', 1), ('offer', 1), ('fast', 1)]
[('pdes', 2), ('pde', 2), ('matlab', 2), ('partial', 1), ('differential', 1), ('equation', 1), ('describe', 1), ('technological', 1), ('phenomenon', 1), ('process', 1), ('used', 1), ('analysis', 1), ('design', 1), ('modeling', 1), ('technical', 1), ('product', 1), ('solution', 1), ('spatial', 1), ('transient', 1), ('realized', 1), ('using', 1), ('toolbox', 1), ('included', 1), ('software', 1), ('introduced', 1), ('essential', 1), ('foundation', 1), ('modeler', 1)]
[('intelligence', 3), ('field', 2), ('transhumanism', 1), ('artificial', 1), ('cloud', 1), ('robotics', 1), ('electromagnetic', 1), ('community', 1), ('rail', 1), ('transportation', 1), ('open', 1), ('source', 1), ('osint', 1), ('discussed', 1), ('cyber', 1), ('crime', 1), ('investigator', 1), ('guide', 1), ('third', 1), ('edition', 1), ('many', 1), ('excellent', 1), ('hardware', 1), ('software', 1), ('product', 1), ('exist', 1), ('protect', 1), ('data', 1), ('communication', 1)]
[('smart', 3), ('building', 3), ('improvement', 2), ('state', 1), ('art', 1), ('feature', 1), ('facilitates', 1), ('informed', 1), ('decision', 1), ('making', 1), ('based', 1), ('available', 1), ('data', 1), ('metering', 1), ('iot', 1), ('sensor', 1), ('set', 1), ('provides', 1), ('useful', 1), ('information', 1), ('developing', 1), ('including', 1), ('significant', 1), ('energy', 1), ('efficiency', 1), ('implementation', 1), ('operational', 1)]
[('polynomial', 4), ('tutte', 3), ('handbook', 2), ('touch', 1), ('nearly', 1), ('every', 1), ('area', 1), ('combinatorics', 1), ('many', 1), ('field', 1), ('including', 1), ('statistical', 1), ('mechanic', 1), ('coding', 1), ('theory', 1), ('dna', 1), ('sequencing', 1), ('studied', 1), ('graph', 1), ('related', 1), ('topic', 1), ('first', 1), ('published', 1), ('consists', 1)]
[('digital', 3), ('learning', 2), ('forensics', 1), ('play', 1), ('crucial', 1), ('role', 1), ('identifying', 1), ('analysing', 1), ('presenting', 1), ('cyber', 1), ('threat', 1), ('evidence', 1), ('court', 1), ('law', 1), ('artificial', 1), ('intelligence', 1), ('particularly', 1), ('machine', 1), ('deep', 1), ('enables', 1), ('automation', 1), ('investigation', 1), ('process', 1), ('book', 1), ('provides', 1), ('depth', 1), ('look', 1), ('fundamental', 1), ('advanced', 1), ('method', 1)]
[('mathematical', 2), ('modeling', 2), ('intelligent', 2), ('technique', 2), ('industry', 2), ('system', 1), ('theory', 1), ('method', 1), ('simulation', 1), ('aim', 1), ('provide', 1), ('reference', 1), ('application', 1), ('using', 1), ('various', 1), ('unique', 1), ('problem', 1), ('era', 1), ('providing', 1), ('thorough', 1), ('introduction', 1), ('field', 1), ('soft', 1), ('computing', 1), ('book', 1), ('cover', 1), ('every', 1)]
[('network', 5), ('recurrent', 4), ('neural', 3), ('discus', 2), ('text', 1), ('prediction', 1), ('offer', 1), ('new', 1), ('insight', 1), ('learning', 1), ('algorithm', 1), ('architecture', 1), ('stability', 1), ('important', 1), ('topic', 1), ('including', 1), ('folding', 1), ('long', 1), ('short', 1), ('term', 1), ('memory', 1), ('lstm', 1), ('gated', 1), ('unit', 1), ('language', 1), ('modeling', 1)]
[('use', 3), ('data', 3), ('urban', 3), ('analytics', 3), ('book', 2), ('social', 2), ('medium', 2), ('science', 1), ('become', 1), ('defining', 1), ('feature', 1), ('smart', 1), ('city', 1), ('timely', 1), ('clear', 1), ('guide', 1), ('present', 1), ('foundation', 1), ('along', 1), ('real', 1), ('world', 1), ('application', 1), ('insight', 1), ('platform', 1), ('today', 1), ('look', 1)]
[('write', 2), ('interactive', 2), ('want', 1), ('know', 1), ('theme', 1), ('park', 1), ('attraction', 1), ('toy', 1), ('virtual', 1), ('reality', 1), ('game', 1), ('wait', 1), ('tell', 1), ('story', 1), ('job', 1), ('thanks', 1), ('technology', 1), ('product', 1), ('live', 1), ('experience', 1), ('engage', 1), ('memorable', 1), ('character', 1), ('exciting', 1), ('adventure', 1), ('destined', 1)]
[('book', 1), ('present', 1), ('futuristic', 1), ('trend', 1), ('computational', 1), ('intelligence', 1), ('including', 1), ('algorithm', 1), ('applicable', 1), ('different', 1), ('application', 1), ('domain', 1), ('health', 1), ('informatics', 1), ('covering', 1), ('bio', 1), ('medical', 1), ('bioinformatics', 1), ('biological', 1), ('science', 1), ('latest', 1), ('evolutionary', 1), ('approach', 1), ('solve', 1), ('optimization', 1), ('problem', 1), ('biomedical', 1), ('engineering', 1), ('field', 1), ('discussed', 1), ('provides', 1)]
[('software', 3), ('modeling', 2), ('language', 2), ('uml', 2), ('analysis', 2), ('art', 2), ('science', 2), ('unified', 1), ('better', 1), ('known', 1), ('become', 1), ('de', 1), ('facto', 1), ('standard', 1), ('analyzing', 1), ('designing', 1), ('application', 1), ('system', 1), ('design', 1), ('diagramming', 1), ('catalog', 1), ('case', 1), ('show', 1), ('behind', 1), ('successful', 1)]
[('industrial', 2), ('revolution', 2), ('world', 1), ('verge', 1), ('fully', 1), ('ushering', 1), ('fourth', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('important', 1), ('new', 1), ('general', 1), ('purpose', 1), ('technology', 1), ('steam', 1), ('engine', 1), ('led', 1), ('widespread', 1), ('commercial', 1), ('use', 1), ('driving', 1), ('machinery', 1), ('industry', 1), ('first', 1), ('internal', 1), ('combustion', 1)]
[('database', 4), ('life', 2), ('society', 2), ('information', 2), ('become', 1), ('integral', 1), ('part', 1), ('modern', 1), ('today', 1), ('driven', 1), ('technology', 1), ('direct', 1), ('impact', 1), ('aspect', 1), ('daily', 1), ('decision', 1), ('routinely', 1), ('made', 1), ('organization', 1), ('based', 1), ('collected', 1), ('stored', 1), ('management', 1), ('system', 1), ('oracle', 1), ('crucial', 1)]
[('sensor', 4), ('computational', 3), ('intelligence', 3), ('wireless', 3), ('network', 3), ('enabled', 2), ('principle', 1), ('application', 1), ('provides', 1), ('integrative', 1), ('overview', 1), ('ci', 1), ('technology', 1), ('aim', 1), ('demonstrate', 1), ('paradigm', 1), ('benefit', 1), ('wsns', 1)]
[('security', 3), ('system', 3), ('become', 1), ('integral', 1), ('part', 1), ('building', 1), ('large', 1), ('complex', 1), ('setup', 1), ('intervention', 1), ('computational', 1), ('intelligence', 1), ('ci', 1), ('paradigm', 1), ('play', 1), ('important', 1), ('role', 1), ('architecture', 1), ('book', 1), ('cover', 1), ('theoretical', 1), ('contribution', 1), ('practical', 1), ('application', 1), ('design', 1), ('applying', 1), ('internet', 1), ('thing', 1)]
[('technology', 3), ('blockchain', 2), ('penetrating', 1), ('every', 1), ('aspect', 1), ('information', 1), ('communication', 1), ('ict', 1), ('use', 1), ('growing', 1), ('rapidly', 1), ('recent', 1), ('year', 1), ('interest', 1), ('development', 1), ('primarily', 1), ('driven', 1), ('enormous', 1), ('value', 1), ('growth', 1), ('cryptocurrencies', 1), ('large', 1), ('investment', 1), ('venture', 1), ('capital', 1)]
[('software', 5), ('security', 3), ('process', 2), ('approach', 2), ('long', 1), ('human', 1), ('write', 1), ('key', 1), ('successful', 1), ('making', 1), ('development', 1), ('program', 1), ('efficient', 1), ('effective', 1), ('although', 1), ('textbook', 1), ('includes', 1), ('technology', 1), ('practical', 1), ('core', 1), ('reference', 1), ('framework', 1), ('stress', 1)]
[('data', 2), ('database', 2), ('extracting', 2), ('information', 2), ('bioinformatics', 2), ('tool', 2), ('nowadays', 1), ('raw', 1), ('biological', 1), ('easily', 1), ('stored', 1), ('computer', 1), ('required', 1), ('real', 1), ('challenge', 1), ('researcher', 1), ('reason', 1), ('perform', 1), ('vital', 1), ('role', 1), ('analyzing', 1), ('big', 1), ('analytics', 1), ('patient', 1), ('describes', 1)]
[('technique', 2), ('decision', 2), ('learning', 2), ('book', 1), ('present', 1), ('recent', 1), ('advancement', 1), ('research', 1), ('review', 1), ('new', 1), ('method', 1), ('application', 1), ('support', 1), ('system', 1), ('ds', 1), ('machine', 1), ('probabilistic', 1), ('graphical', 1), ('model', 1), ('effective', 1), ('gaining', 1), ('knowledge', 1), ('big', 1), ('data', 1), ('interpreting', 1), ('explores', 1), ('bayesian', 1), ('network', 1)]
[('book', 2), ('ethic', 2), ('developing', 2), ('important', 1), ('easy', 1), ('topic', 1), ('arguably', 1), ('le', 1), ('leastdue', 1), ('potential', 1), ('evolving', 1), ('way', 1), ('either', 1), ('unforeseen', 1), ('unimaginable', 1), ('use', 1), ('practical', 1), ('resource', 1), ('informative', 1), ('educational', 1), ('source', 1), ('material', 1), ('expertise', 1)]
[('engineering', 3), ('book', 1), ('focus', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('data', 1), ('mining', 1), ('modern', 1), ('healthcare', 1), ('application', 1), ('recent', 1), ('technological', 1), ('advancement', 1), ('microwave', 1), ('communication', 1), ('applicability', 1), ('newly', 1), ('developed', 1), ('solid', 1), ('state', 1), ('technology', 1), ('bio', 1), ('medical', 1), ('health', 1), ('care', 1), ('reader', 1), ('able', 1), ('know', 1)]
[('game', 4), ('dev', 2), ('story', 2), ('interview', 2), ('author', 2), ('corner', 2), ('industry', 2), ('development', 1), ('culture', 1), ('volume', 1), ('collection', 1), ('renowned', 1), ('david', 1), ('craddock', 1), ('explores', 1), ('video', 1), ('collected', 1), ('archive', 1), ('gather', 1), ('conversation', 1), ('individual', 1)]
[('data', 3), ('visualization', 3), ('tremendous', 1), ('growth', 1), ('availability', 1), ('book', 1), ('cover', 1), ('understanding', 1), ('telling', 1), ('story', 1), ('including', 1), ('basic', 1), ('concept', 1), ('relationship', 1), ('technical', 1), ('detail', 1), ('include', 1), ('installation', 1), ('building', 1), ('different', 1), ('explained', 1), ('clear', 1)]
[('deepfakes', 2), ('synthetic', 1), ('medium', 1), ('leverage', 1), ('powerful', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('machine', 1), ('learning', 1), ('ml', 1), ('technique', 1), ('generate', 1), ('fake', 1), ('visual', 1), ('audio', 1), ('content', 1), ('extremely', 1), ('realistic', 1), ('thus', 1), ('making', 1), ('hard', 1), ('human', 1), ('distinguish', 1), ('original', 1), ('one', 1), ('apart', 1), ('technological', 1), ('introduction', 1), ('concept', 1), ('book', 1)]
[('stem', 2), ('calculation', 2), ('problem', 1), ('mathcad', 1), ('python', 1), ('seek', 1), ('remove', 1), ('fear', 1), ('tackling', 1), ('difficult', 1), ('scientific', 1), ('technical', 1), ('future', 1), ('mathematician', 1), ('engineer', 1), ('scientist', 1), ('researcher', 1), ('author', 1), ('hope', 1), ('show', 1), ('useful', 1), ('process', 1), ('learning', 1), ('enjoyable', 1)]
[('database', 4), ('design', 3), ('entity', 2), ('relationship', 2), ('diagram', 2), ('known', 2), ('essential', 1), ('er', 1), ('usefulness', 1), ('data', 1), ('modeling', 1), ('mapping', 1), ('clear', 1), ('difficult', 1), ('master', 1), ('using', 1), ('third', 1), ('edition', 1), ('designer', 1), ('developer', 1), ('student', 1), ('preparing', 1), ('enter', 1)]
[('book', 3), ('want', 2), ('javascript', 2), ('html', 2), ('dom', 2), ('experienced', 1), ('programmer', 1), ('started', 1), ('quickly', 1), ('need', 1), ('encyclopedic', 1), ('knowledge', 1), ('novice', 1), ('learn', 1), ('program', 1), ('fact', 1), ('language', 1), ('good', 1)]
[('design', 1), ('construction', 1), ('upkeep', 1), ('infrastructure', 1), ('comprised', 1), ('multitude', 1), ('dimension', 1), ('spanning', 1), ('highly', 1), ('complex', 1), ('paradigm', 1), ('interconnected', 1), ('opportunity', 1), ('challenge', 1), ('traditional', 1), ('method', 1), ('fall', 1), ('short', 1), ('adequately', 1), ('accounting', 1), ('complexity', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('present', 1), ('novel', 1), ('box', 1), ('solution', 1)]
[('ml', 2), ('model', 2), ('machine', 1), ('learning', 1), ('sub', 1), ('field', 1), ('artificial', 1), ('intelligence', 1), ('us', 1), ('soft', 1), ('computing', 1), ('algorithm', 1), ('enable', 1), ('computer', 1), ('learn', 1), ('identify', 1), ('pattern', 1), ('observed', 1), ('data', 1), ('build', 1), ('explain', 1), ('world', 1), ('predict', 1), ('thing', 1), ('without', 1), ('explicit', 1), ('pre', 1), ('programmed', 1), ('rule', 1), ('book', 1), ('discus', 1), ('various', 1), ('application', 1)]
[('database', 2), ('design', 2), ('book', 1), ('provides', 1), ('concise', 1), ('comprehensive', 1), ('guide', 1), ('discipline', 1), ('construction', 1), ('implementation', 1), ('management', 1), ('based', 1), ('author', 1), ('professional', 1), ('experience', 1), ('software', 1), ('engineering', 1), ('industry', 1), ('making', 1), ('career', 1), ('switch', 1), ('academia', 1), ('text', 1), ('stress', 1), ('sound', 1), ('necessary', 1), ('precursor', 1)]
[('present', 2), ('intelligence', 2), ('book', 1), ('fundamental', 1), ('swarm', 1), ('classic', 1), ('algorithm', 1), ('emerging', 1), ('technique', 1), ('comprehensive', 1), ('theoretical', 1), ('foundation', 1), ('example', 1), ('using', 1), ('main', 1), ('computational', 1), ('method', 1), ('programming', 1), ('language', 1), ('python', 1), ('java', 1), ('matlab', 1), ('real', 1), ('world', 1), ('application', 1), ('presented', 1), ('area', 1), ('diverse', 1)]
[('business', 3), ('pandemic', 2), ('bring', 1), ('health', 1), ('concern', 1), ('society', 1), ('significantly', 1), ('affect', 1), ('individual', 1), ('government', 1), ('operation', 1), ('recently', 1), ('covid', 1), ('substantially', 1), ('hampered', 1), ('conventional', 1), ('organization', 1), ('worldwide', 1), ('digital', 1), ('technology', 1), ('help', 1), ('achieve', 1), ('continuity', 1), ('overcome', 1), ('challenge', 1), ('caused', 1)]
[('critical', 2), ('infrastructure', 2), ('administration', 2), ('securing', 1), ('nation', 1), ('guide', 1), ('intended', 1), ('help', 1), ('united', 1), ('state', 1), ('executive', 1), ('legislator', 1), ('decision', 1), ('maker', 1), ('prioritize', 1), ('cybersecurity', 1), ('combat', 1), ('emerging', 1), ('threat', 1), ('craft', 1), ('meaningful', 1), ('policy', 1), ('embrace', 1), ('modernization', 1), ('critically', 1), ('evaluate', 1), ('nascent', 1)]
[('legal', 4), ('analytics', 2), ('future', 1), ('law', 1), ('navigates', 1), ('crisscrossing', 1), ('intelligent', 1), ('technology', 1), ('field', 1), ('building', 1), ('new', 1), ('landscape', 1), ('transformation', 1), ('automation', 1), ('navigation', 1), ('multidimensional', 1), ('wherein', 1), ('intends', 1), ('construct', 1), ('streamline', 1), ('communication', 1), ('approval', 1), ('management', 1), ('task', 1), ('evolving', 1), ('environment', 1)]
[('book', 2), ('examines', 1), ('animated', 1), ('propaganda', 1), ('produced', 1), ('mainland', 1), ('china', 1), ('analysis', 1), ('four', 1), ('puppet', 1), ('film', 1), ('demonstrate', 1), ('animation', 1), ('maoist', 1), ('doctrine', 1), ('became', 1), ('tightly', 1), ('dynamically', 1), ('entangled', 1), ('firstly', 1), ('contextualizes', 1), ('production', 1), ('condition', 1), ('ideological', 1), ('content', 1), ('emperor', 1), ('dream', 1), ('first', 1)]
[('exercise', 2), ('animated', 2), ('film', 2), ('introductory', 1), ('textbook', 1), ('provides', 1), ('practical', 1), ('help', 1), ('student', 1), ('beginner', 1), ('animator', 1), ('grip', 1), ('basic', 1), ('creating', 1), ('cover', 1), ('traditional', 1), ('experimental', 1), ('computer', 1), ('animation', 1), ('first', 1), ('part', 1), ('book', 1), ('includes', 1), ('colour', 1), ('coded', 1), ('difficult', 1), ('guide', 1), ('reader', 1)]
[('volume', 3), ('performance', 2), ('system', 2), ('chapter', 2), ('textbook', 1), ('intends', 1), ('comprehensive', 1), ('substantially', 1), ('self', 1), ('contained', 1), ('book', 1), ('covering', 1), ('reliability', 1), ('availability', 1), ('evaluation', 1), ('subject', 1), ('focus', 1), ('computing', 1), ('although', 1), ('method', 1), ('applied', 1), ('first', 1), ('cover', 1), ('whose', 1), ('subtitle', 1)]
[('volume', 3), ('performance', 2), ('system', 2), ('chapter', 2), ('textbook', 1), ('intends', 1), ('comprehensive', 1), ('substantially', 1), ('self', 1), ('contained', 1), ('book', 1), ('covering', 1), ('reliability', 1), ('availability', 1), ('evaluation', 1), ('subject', 1), ('focus', 1), ('computing', 1), ('although', 1), ('method', 1), ('applied', 1), ('first', 1), ('cover', 1), ('whose', 1), ('subtitle', 1)]
[('book', 2), ('animation', 2), ('industry', 2), ('nordic', 2), ('examines', 1), ('state', 1), ('within', 1), ('country', 1), ('look', 1), ('success', 1), ('popular', 1), ('brand', 1), ('moomins', 1), ('angry', 1), ('bird', 1), ('studio', 1), ('anima', 1), ('vitae', 1), ('qvisten', 1), ('individual', 1), ('made', 1), ('mark', 1), ('global', 1), ('begin', 1), ('historical', 1), ('finding', 1)]
[('image', 3), ('technique', 3), ('selected', 2), ('segmentation', 2), ('book', 1), ('focus', 1), ('seven', 1), ('commonly', 1), ('used', 1), ('analysis', 1), ('cover', 1), ('aspect', 1), ('basic', 1), ('principle', 1), ('practical', 1), ('method', 1), ('new', 1), ('advancement', 1), ('help', 1), ('reader', 1), ('solve', 1), ('processing', 1), ('related', 1), ('problem', 1), ('real', 1), ('life', 1), ('situation', 1), ('include', 1), ('evaluation', 1)]
[('mind', 3), ('concerning', 2), ('brain', 2), ('multiverse', 2), ('long', 1), ('lasting', 1), ('controversy', 1), ('consciousness', 1), ('ind', 1), ('quantum', 1), ('ai', 1), ('proposes', 1), ('connection', 1), ('author', 1), ('introduces', 1), ('main', 1), ('philosophical', 1), ('idea', 1), ('freedom', 1), ('explains', 1), ('basic', 1), ('principle', 1), ('computer', 1), ('science', 1), ('artificial', 1)]
[('cognitive', 3), ('iot', 3), ('application', 3), ('deal', 2), ('book', 1), ('different', 1), ('research', 1), ('area', 1), ('explains', 1), ('machine', 1), ('learning', 1), ('algorithm', 1), ('applied', 1), ('pandemic', 1), ('covid', 1), ('student', 1), ('performance', 1), ('evaluation', 1), ('human', 1), ('healthcare', 1), ('chronic', 1), ('disease', 1), ('prediction', 1), ('use', 1), ('wearable', 1)]
[('computational', 2), ('handbook', 1), ('provides', 1), ('hand', 1), ('experience', 1), ('based', 1), ('underlying', 1), ('topic', 1), ('assist', 1), ('student', 1), ('faculty', 1), ('member', 1), ('developing', 1), ('algorithmic', 1), ('thought', 1), ('process', 1), ('program', 1), ('given', 1), ('problem', 1), ('used', 1), ('professional', 1), ('posse', 1), ('necessary', 1), ('theoretical', 1), ('thinking', 1), ('background', 1), ('presently', 1)]
[('cybersecurity', 2), ('team', 2), ('different', 2), ('goal', 2), ('long', 1), ('standing', 1), ('battle', 1), ('functionality', 1), ('security', 1), ('understand', 1), ('problem', 1), ('lie', 1), ('book', 1), ('explore', 1), ('job', 1), ('function', 1), ('relationship', 1), ('factor', 1), ('impact', 1), ('interact', 1), ('level', 1), ('budget', 1), ('competing', 1)]
[('deep', 3), ('learning', 3), ('object', 2), ('detection', 2), ('model', 1), ('discus', 1), ('recent', 1), ('advance', 1), ('recognition', 1), ('using', 1), ('method', 1), ('achieved', 1), ('success', 1), ('field', 1), ('computer', 1), ('vision', 1), ('image', 1), ('processing', 1), ('provides', 1), ('systematic', 1), ('methodical', 1), ('overview', 1), ('latest', 1), ('development', 1), ('theory', 1), ('application', 1)]
[('system', 3), ('book', 2), ('engineering', 2), ('look', 1), ('comment', 1), ('future', 1), ('note', 1), ('sign', 1), ('deepening', 1), ('understanding', 1), ('field', 1), ('includes', 1), ('digital', 1), ('interactive', 1), ('model', 1), ('based', 1), ('decision', 1), ('support', 1), ('framework', 1), ('point', 1), ('grand', 1), ('unified', 1), ('theory', 1), ('suggests', 1), ('engineer', 1), ('better', 1), ('designer', 1)]
[('book', 2), ('behavioural', 2), ('concise', 1), ('introduction', 1), ('emerging', 1), ('concept', 1), ('idea', 1), ('found', 1), ('intersection', 1), ('contemporary', 1), ('science', 1), ('artificial', 1), ('intelligence', 1), ('explores', 1), ('discipline', 1), ('interact', 1), ('change', 1), ('adapt', 1), ('another', 1), ('implication', 1), ('interaction', 1), ('practice', 1), ('society', 1), ('ai', 1)]
[('beyond', 1), ('trite', 1), ('say', 1), ('technology', 1), ('prevalent', 1), ('daily', 1), ('life', 1), ('many', 1), ('remain', 1), ('clueless', 1), ('work', 1), ('unfortunately', 1), ('even', 1), ('curious', 1), ('among', 1), ('web', 1), ('always', 1), ('best', 1), ('vehicle', 1), ('acquire', 1), ('knowledge', 1), ('information', 1), ('appears', 1), ('fragment', 1), ('incorrect', 1), ('dated', 1), ('serf', 1)]
[('iomt', 3), ('cognitive', 1), ('computing', 1), ('internet', 1), ('medical', 1), ('thing', 1), ('offer', 1), ('complete', 1), ('assessment', 1), ('present', 1), ('scenario', 1), ('role', 1), ('challenge', 1), ('technology', 1), ('impact', 1), ('enabled', 1), ('smart', 1), ('healthcare', 1), ('system', 1), ('contains', 1), ('chapter', 1), ('discussing', 1), ('various', 1), ('biomedical', 1), ('application', 1), ('umbrella', 1), ('key', 1), ('feature', 1), ('exploit', 1), ('different', 1), ('prospect', 1)]
[('game', 3), ('transformative', 2), ('experience', 2), ('engage', 2), ('player', 2), ('potentially', 1), ('dynamic', 1), ('action', 1), ('repurposed', 1), ('educational', 1), ('context', 1), ('even', 1), ('highly', 1), ('popular', 1), ('casual', 1), ('played', 1), ('online', 1), ('pas', 1), ('time', 1), ('way', 1), ('deepens', 1), ('learning', 1), ('critical', 1), ('thinking', 1), ('cultural', 1), ('awareness', 1)]
[('payment', 2), ('card', 2), ('data', 2), ('security', 2), ('industry', 1), ('standard', 1), ('pci', 1), ('ds', 1), ('th', 1), ('year', 1), ('continuing', 1), ('dominate', 1), ('corporate', 1), ('budget', 1), ('resource', 1), ('accept', 1), ('process', 1), ('transmit', 1), ('store', 1), ('branded', 1), ('visa', 1), ('mastercard', 1), ('american', 1), ('express', 1), ('discover', 1), ('jcb', 1), ('affiliate', 1), ('partner', 1), ('comply', 1)]
[('data', 5), ('physical', 2), ('experience', 2), ('give', 1), ('form', 1), ('might', 1), ('creation', 1), ('change', 1), ('way', 1), ('story', 1), ('tell', 1), ('making', 1), ('design', 1), ('craft', 1), ('driven', 1), ('world', 1), ('provides', 1), ('snapshot', 1), ('diverse', 1), ('practice', 1), ('contemporary', 1), ('creator', 1), ('using', 1), ('produce', 1), ('object', 1), ('space', 1), ('imbued', 1)]
[('python', 3), ('text', 2), ('fundamental', 2), ('focus', 1), ('basic', 1), ('programming', 1), ('introduction', 1), ('present', 1), ('day', 1), ('application', 1), ('technology', 1), ('upcoming', 1), ('state', 1), ('art', 1), ('trend', 1), ('comprehensive', 1), ('manner', 1), ('based', 1), ('cover', 1), ('object', 1), ('oriented', 1), ('concept', 1), ('numerous', 1), ('worked', 1), ('example', 1), ('provides', 1)]
[('technique', 3), ('book', 1), ('offer', 1), ('comprehensive', 1), ('introduction', 1), ('seven', 1), ('commonly', 1), ('used', 1), ('image', 1), ('understanding', 1), ('modern', 1), ('information', 1), ('technology', 1), ('reader', 1), ('various', 1), ('level', 1), ('find', 1), ('suitable', 1), ('solve', 1), ('practical', 1), ('problem', 1), ('discover', 1), ('latest', 1), ('development', 1), ('specific', 1), ('domain', 1), ('covered', 1), ('include', 1), ('camera', 1), ('model', 1), ('calibration', 1)]
[('ai', 4), ('artificial', 1), ('intelligence', 1), ('increasingly', 1), ('impacting', 1), ('many', 1), ('aspect', 1), ('life', 1), ('across', 1), ('globe', 1), ('relatively', 1), ('mundane', 1), ('technology', 1), ('advanced', 1), ('digital', 1), ('system', 1), ('make', 1), ('decision', 1), ('potential', 1), ('hold', 1), ('peril', 1), ('depending', 1), ('designed', 1), ('used', 1), ('diversity', 1), ('question', 1)]
[('artificial', 2), ('intelligence', 2), ('communication', 2), ('ahead', 2), ('ai', 2), ('information', 1), ('technology', 1), ('healthcare', 1), ('education', 1), ('roadmap', 1), ('designed', 1), ('reference', 1), ('text', 1), ('discus', 1), ('inter', 1), ('dependability', 1), ('effective', 1), ('control', 1), ('betterment', 1), ('service', 1), ('challenge', 1), ('path', 1), ('computing', 1)]
[('traffic', 6), ('book', 1), ('provides', 1), ('comprehensive', 1), ('theory', 1), ('mono', 1), ('multi', 1), ('fractal', 1), ('including', 1), ('basic', 1), ('long', 1), ('range', 1), ('dependent', 1), ('time', 1), ('series', 1), ('noise', 1), ('ergodicity', 1), ('predictability', 1), ('modeling', 1), ('simulation', 1), ('stationarity', 1), ('test', 1), ('measurement', 1), ('anomaly', 1), ('detection', 1), ('communication', 1), ('network', 1)]
[('complexity', 3), ('science', 2), ('nature', 2), ('principle', 2), ('new', 1), ('era', 1), ('emerging', 1), ('bio', 1), ('inspired', 1), ('applied', 1), ('provide', 1), ('solution', 1), ('time', 1), ('system', 1), ('increasing', 1), ('due', 1), ('model', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('fog', 1), ('computing', 1), ('applying', 1), ('able', 1), ('tackle', 1)]
[('comprehensive', 2), ('computer', 2), ('graphic', 2), ('coverage', 1), ('shaders', 1), ('programmable', 1), ('pipeline', 1), ('webgl', 1), ('geometric', 1), ('primitive', 1), ('animation', 1), ('modeling', 1), ('lighting', 1), ('shading', 1), ('texturing', 1), ('opengl', 1), ('theory', 1), ('experiment', 1), ('introduction', 1), ('us', 1), ('active', 1), ('learning', 1), ('style', 1), ('teach', 1), ('key', 1), ('concept', 1), ('equally', 1)]
[('book', 1), ('timely', 1), ('critical', 1), ('introduction', 1), ('interested', 1), ('data', 1), ('science', 1), ('applied', 1), ('language', 1), ('conversational', 1), ('content', 1), ('accessible', 1), ('reader', 1), ('without', 1), ('quantitative', 1), ('computational', 1), ('background', 1), ('time', 1), ('practical', 1), ('overview', 1), ('field', 1)]
[('pki', 3), ('time', 3), ('within', 2), ('consuming', 2), ('difficult', 2), ('concept', 1), ('public', 1), ('key', 1), ('infrastructure', 1), ('around', 1), ('decade', 1), ('strand', 1), ('taken', 1), ('extraordinarily', 1), ('long', 1), ('come', 1), ('fruition', 1), ('mainstream', 1), ('mostly', 1), ('implementing', 1), ('maintaining', 1), ('equally', 1), ('even', 1)]
[('differential', 2), ('geometry', 2), ('book', 1), ('introduces', 1), ('cutting', 1), ('edge', 1), ('finding', 1), ('discipline', 1), ('incorporating', 1), ('classical', 1), ('approach', 1), ('modern', 1), ('discrete', 1), ('across', 1), ('facet', 1), ('application', 1), ('including', 1), ('graphic', 1), ('imaging', 1), ('physic', 1), ('network', 1), ('curvature', 1), ('centerpiece', 1), ('author', 1), ('present', 1), ('development', 1)]
[('ai', 3), ('healthcare', 3), ('application', 2), ('smart', 2), ('book', 1), ('cover', 1), ('fundamental', 1), ('algorithm', 1), ('protocol', 1), ('emerging', 1), ('trend', 1), ('problem', 1), ('research', 1), ('finding', 1), ('field', 1), ('iot', 1), ('includes', 1), ('case', 1), ('study', 1), ('implementation', 1), ('management', 1), ('system', 1), ('using', 1), ('chapter', 1), ('focus', 1), ('internet', 1), ('thing', 1), ('provide', 1), ('working', 1)]
[('french', 2), ('chapter', 2), ('bestseller', 1), ('edition', 1), ('book', 1), ('original', 1), ('construction', 1), ('success', 1), ('market', 1), ('demonstrates', 1), ('appeal', 1), ('based', 1), ('three', 1), ('principle', 1), ('negetiveemoji', 1), ('organization', 1), ('family', 1), ('algorithm', 1), ('exhaustive', 1), ('search', 1), ('divide', 1), ('conquer', 1), ('etc', 1), ('contrary', 1), ('devoted', 1), ('systematic', 1)]
[('blockchain', 3), ('technology', 3), ('sustainable', 2), ('application', 2), ('latest', 2), ('book', 1), ('concentrate', 1), ('across', 1), ('multiple', 1), ('computational', 1), ('knowledge', 1), ('domain', 1), ('cover', 1), ('feasible', 1), ('practical', 1), ('collaboration', 1), ('smart', 1), ('computing', 1), ('target', 1), ('vast', 1), ('field', 1), ('internet', 1)]
[('security', 4), ('software', 3), ('concept', 1), ('practice', 1), ('designed', 1), ('textbook', 1), ('explores', 1), ('fundamental', 1), ('theory', 1), ('govern', 1), ('common', 1), ('technical', 1), ('issue', 1), ('focus', 1), ('practical', 1), ('programming', 1), ('material', 1), ('teach', 1), ('reader', 1), ('implement', 1), ('solution', 1), ('using', 1), ('popular', 1), ('package', 1), ('limited', 1)]
[('text', 2), ('recent', 2), ('reference', 1), ('offer', 1), ('reader', 1), ('comprehensive', 1), ('insight', 1), ('research', 1), ('breakthrough', 1), ('blockchain', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('artificial', 1), ('intelligence', 1), ('material', 1), ('structure', 1), ('hybrid', 1), ('technology', 1), ('integrated', 1), ('platform', 1), ('emphasizing', 1), ('sustainability', 1), ('aspect', 1), ('begin', 1), ('discussing', 1), ('advance', 1)]
[('theoretical', 2), ('chapter', 2), ('aim', 1), ('book', 1), ('present', 1), ('analyse', 1), ('advance', 1), ('emerging', 1), ('practical', 1), ('application', 1), ('swarm', 1), ('evolutionary', 1), ('intelligence', 1), ('comprises', 1), ('nine', 1), ('provides', 1), ('introduction', 1), ('computational', 1), ('optimization', 1), ('technique', 1), ('regarding', 1), ('gradient', 1), ('based', 1), ('method', 1), ('steepest', 1), ('descent', 1), ('conjugate', 1)]
[('high', 2), ('erp', 2), ('project', 2), ('failure', 1), ('rate', 1), ('enterprise', 1), ('resource', 1), ('planning', 1), ('pressing', 1), ('concern', 1), ('academic', 1), ('researcher', 1), ('industrial', 1), ('practitioner', 1), ('challenge', 1), ('implementation', 1), ('particularly', 1), ('involves', 1), ('designing', 1), ('developing', 1), ('system', 1), ('scratch', 1), ('organization', 1), ('often', 1), ('turn', 1), ('vendor', 1), ('consultant', 1)]
[('numerical', 2), ('simulation', 2), ('model', 2), ('phenomenon', 2), ('used', 1), ('engineering', 1), ('discipline', 1), ('modeling', 1), ('physical', 1), ('learn', 1), ('work', 1), ('identify', 1), ('problem', 1), ('optimize', 1), ('behavior', 1), ('smart', 1), ('proxy', 1), ('provide', 1), ('opportunity', 1), ('replicate', 1), ('high', 1), ('accuracy', 1), ('run', 1), ('laptop', 1), ('within', 1), ('minute', 1), ('thereby', 1)]
[('software', 3), ('book', 2), ('engineer', 2), ('offer', 1), ('practical', 1), ('approach', 1), ('understanding', 1), ('designing', 1), ('building', 1), ('sound', 1), ('based', 1), ('solid', 1), ('principle', 1), ('using', 1), ('unique', 1), ('format', 1), ('address', 1), ('issue', 1), ('need', 1), ('understand', 1), ('order', 1), ('successfully', 1), ('work', 1), ('develop', 1), ('specification', 1), ('quality', 1), ('learn', 1), ('basic', 1)]
[('book', 3), ('programmer', 2), ('want', 2), ('language', 2), ('python', 2), ('started', 1), ('quickly', 1), ('new', 1), ('novice', 1), ('learn', 1), ('program', 1), ('need', 1), ('encyclopaedic', 1), ('information', 1), ('mainstream', 1), ('loop', 1), ('statement', 1), ('assignment', 1)]
[('analytics', 4), ('marketing', 3), ('data', 2), ('decision', 2), ('making', 2), ('resource', 2), ('process', 2), ('big', 1), ('digital', 1), ('cover', 1), ('advance', 1), ('related', 1), ('business', 1), ('investment', 1), ('create', 1), ('value', 1), ('proper', 1), ('allocation', 1), ('orchestration', 1), ('use', 1), ('tool', 1), ('used', 1), ('improve', 1), ('speed', 1)]
[('computer', 2), ('software', 2), ('engineering', 2), ('paper', 1), ('october', 1), ('symposium', 1), ('describe', 1), ('research', 1), ('area', 1), ('including', 1), ('algorithm', 1), ('artificial', 1), ('intelligence', 1), ('graphic', 1), ('network', 1), ('database', 1), ('evolutionary', 1), ('computation', 1), ('graph', 1), ('theory', 1), ('image', 1), ('processing', 1), ('multimedia', 1), ('technology', 1), ('performance', 1)]
[('software', 3), ('animator', 3), ('yet', 2), ('pencil', 2), ('today', 1), ('commonly', 1), ('believed', 1), ('learn', 1), ('become', 1), ('nothing', 1), ('truth', 1), ('master', 1), ('trained', 1), ('born', 1), ('humble', 1), ('merely', 1), ('another', 1), ('tool', 1), ('apply', 1), ('knowledge', 1), ('neither', 1), ('give', 1)]
[('provides', 2), ('technology', 2), ('networking', 2), ('network', 1), ('evolution', 1), ('application', 1), ('comprehensive', 1), ('integrative', 1), ('easy', 1), ('approach', 1), ('understanding', 1), ('concept', 1), ('milestone', 1), ('history', 1), ('overview', 1), ('different', 1), ('aspect', 1), ('involved', 1), ('arena', 1), ('includes', 1), ('core', 1), ('essential', 1), ('communication', 1), ('important', 1)]
[('based', 3), ('cloud', 2), ('information', 2), ('intelligent', 1), ('informative', 1), ('engineering', 1), ('society', 1), ('model', 1), ('dissemination', 1), ('cutting', 1), ('edge', 1), ('technological', 1), ('innovation', 1), ('assistive', 1), ('device', 1), ('physical', 1), ('impairment', 1), ('book', 1), ('showcase', 1), ('high', 1), ('performance', 1), ('system', 1), ('informatics', 1), ('solution', 1), ('verification', 1), ('support', 1)]
[('game', 2), ('income', 2), ('tax', 2), ('business', 2), ('indie', 1), ('developer', 1), ('work', 1), ('living', 1), ('face', 1), ('kind', 1), ('interesting', 1), ('small', 1), ('formation', 1), ('issue', 1), ('traditional', 1), ('simply', 1), ('geographically', 1), ('bound', 1), ('relying', 1), ('alternative', 1), ('funding', 1), ('long', 1), ('period', 1), ('time', 1), ('multiple', 1), ('option', 1), ('treatment', 1)]
[('python', 2), ('programming', 2), ('learning', 2), ('amazing', 1), ('language', 1), ('applied', 1), ('almost', 1), ('task', 1), ('allows', 1), ('rapid', 1), ('development', 1), ('debugging', 1), ('getting', 1), ('started', 1), ('new', 1), ('skill', 1), ('important', 1), ('find', 1), ('resource', 1), ('connect', 1), ('guide', 1), ('luckily', 1), ('shortage', 1), ('excellent', 1), ('book', 1), ('help', 1), ('learn', 1)]
[('internet', 2), ('thing', 2), ('device', 2), ('data', 2), ('text', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('design', 1), ('aspect', 1), ('cover', 1), ('fundamental', 1), ('big', 1), ('science', 1), ('explores', 1), ('various', 1), ('scenario', 1), ('middleware', 1), ('framework', 1), ('available', 1), ('build', 1), ('stable', 1), ('standard', 1), ('based', 1), ('secure', 1), ('discus', 1)]
[('artificial', 2), ('intelligence', 2), ('model', 2), ('discovery', 2), ('book', 2), ('leveraging', 1), ('ai', 1), ('dynamical', 1), ('system', 1), ('cross', 1), ('fertilizing', 1), ('revolutionizing', 1), ('discipline', 1), ('heralding', 1), ('new', 1), ('era', 1), ('data', 1), ('driven', 1), ('science', 1), ('placed', 1), ('forefront', 1), ('endeavor', 1), ('taking', 1), ('next', 1), ('level', 1), ('dealing', 1), ('delineates', 1)]
[('every', 2), ('data', 2), ('analytics', 2), ('engineer', 1), ('know', 1), ('driven', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('theoretical', 1), ('concept', 1), ('approach', 1), ('machine', 1), ('learning', 1), ('used', 1), ('predictive', 1), ('introducing', 1), ('theory', 1), ('providing', 1), ('practical', 1), ('application', 1), ('text', 1), ('understood', 1), ('engineering', 1), ('discipline', 1), ('offer', 1)]
[('security', 3), ('organization', 2), ('every', 2), ('engineer', 2), ('place', 1), ('high', 1), ('priority', 1), ('keeping', 1), ('data', 1), ('secure', 1), ('invests', 1), ('training', 1), ('employee', 1), ('understanding', 1), ('risk', 1), ('involved', 1), ('using', 1), ('developing', 1), ('technology', 1), ('designed', 1), ('non', 1), ('professional', 1), ('know', 1), ('cyber', 1), ('digital', 1), ('forensics', 1)]
[('distance', 4), ('learning', 3), ('time', 2), ('issue', 2), ('challenge', 2), ('book', 1), ('advance', 1), ('pandemic', 1), ('devoted', 1), ('faced', 1), ('university', 1), ('field', 1), ('covid', 1), ('cover', 1), ('theoretical', 1), ('practical', 1), ('aspect', 1), ('connected', 1), ('education', 1), ('elaborates', 1), ('regarding', 1), ('assessment', 1)]
[('health', 2), ('advance', 2), ('healthcare', 2), ('covid', 1), ('pandemic', 1), ('upended', 1), ('life', 1), ('many', 1), ('taught', 1), ('critical', 1), ('importance', 1), ('taking', 1), ('care', 1), ('wellness', 1), ('technological', 1), ('coupled', 1), ('enabled', 1), ('widespread', 1), ('growth', 1), ('new', 1), ('area', 1), ('called', 1), ('mobile', 1), ('mhealth', 1), ('completely', 1), ('revolutionized', 1), ('envision', 1)]
[('nine', 3), ('cover', 2), ('vns', 2), ('book', 1), ('distinguishing', 1), ('characteristic', 1), ('trope', 1), ('visual', 1), ('novel', 1), ('choice', 1), ('based', 1), ('game', 1), ('analyzes', 1), ('hour', 1), ('person', 1), ('door', 1), ('hatoful', 1), ('boyfriend', 1), ('monster', 1), ('prom', 1), ('best', 1), ('example', 1), ('genre', 1), ('illustration', 1), ('author', 1), ('structuring', 1), ('branching', 1), ('narrative', 1), ('plot', 1), ('designing', 1)]
[('counteract', 2), ('effect', 2), ('misinformation', 1), ('matter', 1), ('spread', 1), ('internet', 1), ('especially', 1), ('social', 1), ('medium', 1), ('platform', 1), ('worst', 1), ('ubiquitous', 1), ('question', 1), ('answer', 1), ('book', 1), ('living', 1), ('information', 1), ('age', 1), ('specifically', 1), ('algorithmic', 1)]
[('software', 3), ('many', 2), ('covid', 1), ('pandemic', 1), ('forced', 1), ('business', 1), ('accelerate', 1), ('digital', 1), ('transformation', 1), ('strategy', 1), ('continue', 1), ('meet', 1), ('changing', 1), ('need', 1), ('customer', 1), ('resulted', 1), ('significant', 1), ('growth', 1), ('global', 1), ('market', 1), ('decade', 1), ('managing', 1), ('product', 1), ('quality', 1), ('major', 1), ('challenge', 1), ('development', 1)]
[('book', 2), ('digital', 2), ('technology', 2), ('life', 2), ('find', 1), ('fascinating', 1), ('critical', 1), ('analysis', 1), ('humanistic', 1), ('perspective', 1), ('enjoy', 1), ('picture', 1), ('poem', 1), ('story', 1), ('quotation', 1), ('encourage', 1), ('self', 1), ('reflection', 1), ('community', 1), ('discussion', 1), ('real', 1), ('role', 1), ('society', 1), ('oriented', 1)]
[('book', 2), ('ng', 2), ('contains', 1), ('latest', 1), ('material', 1), ('subject', 1), ('covering', 1), ('next', 1), ('generation', 1), ('sequencing', 1), ('application', 1), ('meeting', 1), ('requirement', 1), ('complete', 1), ('semester', 1), ('course', 1), ('dig', 1), ('deep', 1), ('analysis', 1), ('providing', 1), ('concept', 1), ('practice', 1), ('satisfy', 1), ('exact', 1), ('need', 1), ('researcher', 1), ('seeking', 1), ('understand', 1), ('use', 1), ('data', 1), ('reprocessing', 1), ('genome', 1)]
[('comprehensive', 2), ('sql', 2), ('query', 2), ('language', 2), ('data', 2), ('study', 1), ('practice', 1), ('implementation', 1), ('designed', 1), ('textbook', 1), ('provides', 1), ('approach', 1), ('structured', 1), ('standard', 1), ('programming', 1), ('defining', 1), ('organizing', 1), ('exploring', 1), ('relational', 1), ('database', 1), ('demonstrates', 1), ('leverage', 1), ('vital', 1), ('tool', 1)]
[('ai', 4), ('impact', 2), ('research', 2), ('human', 1), ('society', 1), ('drastic', 1), ('many', 1), ('way', 1), ('adopted', 1), ('implemented', 1), ('around', 1), ('world', 1), ('government', 1), ('university', 1), ('investing', 1), ('study', 1), ('development', 1), ('little', 1), ('exists', 1), ('life', 1), ('book', 1), ('address', 1), ('gap', 1), ('gather', 1), ('reflection', 1)]
[('present', 2), ('artificial', 2), ('intelligence', 2), ('healthcare', 2), ('reference', 1), ('text', 1), ('usage', 1), ('discus', 1), ('challenge', 1), ('solution', 1), ('using', 1), ('advanced', 1), ('technique', 1), ('wearable', 1), ('technology', 1), ('image', 1), ('processing', 1), ('sector', 1), ('feature', 1), ('focus', 1), ('use', 1), ('ai', 1), ('issue', 1), ('application', 1), ('prospect', 1)]
[('machine', 5), ('learning', 4), ('go', 2), ('concept', 1), ('technique', 1), ('application', 1), ('start', 1), ('basic', 1), ('conceptual', 1), ('level', 1), ('explaining', 1), ('explain', 1), ('basis', 1), ('algorithm', 1), ('mathematical', 1), ('foundation', 1), ('required', 1), ('outlined', 1), ('along', 1), ('association', 1), ('book', 1), ('describe', 1), ('important', 1)]
[('capital', 2), ('market', 2), ('ai', 2), ('ml', 2), ('technique', 2), ('artificial', 1), ('intelligence', 1), ('throw', 1), ('light', 1), ('application', 1), ('financial', 1), ('book', 1), ('discus', 1), ('challenge', 1), ('posed', 1), ('prone', 1), ('black', 1), ('box', 1), ('syndrome', 1), ('complexity', 1), ('understanding', 1), ('underlying', 1), ('dynamic', 1), ('result', 1), ('generated', 1), ('method', 1)]
[('problem', 2), ('civil', 2), ('engineering', 2), ('book', 1), ('explains', 1), ('use', 1), ('data', 1), ('science', 1), ('based', 1), ('technique', 1), ('modeling', 1), ('providing', 1), ('optimal', 1), ('solution', 1), ('complex', 1), ('discus', 1), ('air', 1), ('water', 1), ('land', 1), ('pollution', 1), ('climate', 1), ('crisis', 1), ('transportation', 1), ('infrastructure', 1), ('traffic', 1), ('travel', 1), ('mode', 1), ('mobility', 1), ('service', 1), ('forth', 1), ('divided', 1)]
[('risk', 3), ('leader', 2), ('world', 1), ('economic', 1), ('forum', 1), ('surveyed', 1), ('expert', 1), ('indicated', 1), ('perception', 1), ('earth', 1), ('condition', 1), ('human', 1), ('main', 1), ('concern', 1), ('next', 1), ('year', 1), ('mean', 1), ('environmental', 1), ('priority', 1), ('study', 1), ('formal', 1), ('way', 1), ('time', 1), ('innovation', 1), ('present', 1), ('theminds', 1), ('newknowledge', 1), ('brings', 1), ('new', 1)]
[('finance', 4), ('student', 2), ('practitioner', 2), ('ask', 2), ('ai', 2), ('machine', 1), ('learn', 1), ('everything', 1), ('help', 1), ('computing', 1), ('skill', 1), ('contribute', 1), ('pay', 1), ('attention', 1), ('book', 1), ('aim', 1), ('answer', 1), ('question', 1), ('prior', 1), ('knowledge', 1), ('expected', 1), ('including', 1), ('original', 1), ('research', 1)]
[('data', 2), ('video', 1), ('rich', 1), ('information', 1), ('including', 1), ('meta', 1), ('visual', 1), ('audio', 1), ('spatial', 1), ('temporal', 1), ('analysed', 1), ('extract', 1), ('variety', 1), ('low', 1), ('high', 1), ('level', 1), ('feature', 1), ('build', 1), ('predictive', 1), ('computational', 1), ('model', 1), ('using', 1), ('machine', 1), ('learning', 1), ('algorithm', 1), ('discover', 1), ('interesting', 1), ('pattern', 1), ('concept', 1), ('relation', 1), ('association', 1), ('book', 1), ('includes', 1), ('review', 1)]
[('machine', 2), ('learning', 2), ('automated', 2), ('decision', 2), ('government', 1), ('around', 1), ('world', 1), ('use', 1), ('making', 1), ('system', 1), ('broad', 1), ('range', 1), ('function', 1), ('algorithmic', 1), ('bias', 1), ('result', 1), ('produce', 1), ('disparate', 1), ('impact', 1), ('compromise', 1), ('charter', 1), ('guarantee', 1), ('substantive', 1), ('equality', 1), ('book', 1), ('seek', 1), ('answer', 1), ('question', 1)]
[('smart', 2), ('environment', 2), ('book', 1), ('applies', 1), ('industrial', 1), ('engineering', 1), ('computational', 1), ('intelligence', 1), ('demonstrate', 1), ('intelligent', 1), ('machine', 1), ('solve', 1), ('real', 1), ('world', 1), ('problem', 1), ('various', 1), ('present', 1), ('fundamental', 1), ('concept', 1), ('latest', 1), ('advance', 1), ('multi', 1), ('criterion', 1), ('decision', 1), ('making', 1), ('mcdm', 1), ('technique', 1), ('application', 1), ('though', 1), ('manager', 1)]
[('learning', 2), ('machine', 2), ('ml', 2), ('data', 2), ('automated', 1), ('characterizes', 1), ('focus', 1), ('making', 1), ('driven', 1), ('prediction', 1), ('using', 1), ('programmed', 1), ('algorithm', 1), ('several', 1), ('application', 1), ('including', 1), ('bioinformatics', 1), ('discipline', 1), ('study', 1), ('practice', 1), ('deal', 1), ('applying', 1), ('computational', 1), ('derivation', 1), ('obtain', 1), ('biological', 1), ('involves', 1)]
[('collage', 2), ('th', 2), ('century', 2), ('art', 1), ('film', 1), ('date', 1), ('back', 1), ('early', 1), ('earliest', 1), ('root', 1), ('japan', 1), ('rooted', 1), ('age', 1), ('consumerism', 1), ('artist', 1), ('addressed', 1), ('array', 1), ('political', 1), ('social', 1), ('issue', 1), ('creating', 1), ('carefully', 1), ('crafted', 1), ('collision', 1), ('pre', 1), ('existing', 1), ('image', 1), ('sound', 1), ('generate', 1), ('new', 1), ('meaning', 1), ('commentary', 1)]
[('programming', 4), ('functional', 3), ('haskell', 2), ('learn', 1), ('complicated', 1), ('ivory', 1), ('tower', 1), ('technique', 1), ('used', 1), ('obscure', 1), ('language', 1), ('fact', 1), ('actually', 1), ('simple', 1), ('powerful', 1), ('demonstrates', 1), ('throwing', 1), ('away', 1), ('conventional', 1), ('tool', 1), ('using', 1), ('feature', 1)]
[('natural', 2), ('language', 2), ('processing', 2), ('real', 2), ('world', 2), ('data', 2), ('nlp', 2), ('solution', 2), ('practical', 1), ('guide', 1), ('applying', 1), ('science', 1), ('machine', 1), ('learning', 1), ('build', 1), ('traditional', 1), ('academic', 1), ('taught', 1), ('often', 1), ('accompanied', 1), ('source', 1), ('dataset', 1), ('aid', 1), ('building', 1), ('book', 1), ('situated', 1)]
[('walt', 3), ('disney', 2), ('animator', 2), ('drawn', 1), ('life', 1), ('volume', 1), ('collection', 1), ('legendary', 1), ('lecture', 1), ('long', 1), ('time', 1), ('stanchfield', 1), ('year', 1), ('mentored', 1), ('new', 1), ('generation', 1), ('studio', 1), ('influenced', 1), ('talented', 1), ('artist', 1), ('tim', 1), ('burton', 1), ('brad', 1), ('bird', 1), ('glen', 1), ('keane', 1), ('andreas', 1), ('deja', 1), ('writing', 1), ('drawing', 1), ('become', 1)]
[('social', 4), ('platform', 2), ('reference', 1), ('text', 1), ('present', 1), ('important', 1), ('component', 1), ('grasping', 1), ('potential', 1), ('computing', 1), ('emphasis', 1), ('concern', 1), ('challenge', 1), ('benefit', 1), ('depth', 1), ('feature', 1), ('detailed', 1), ('discussion', 1), ('cyber', 1), ('issue', 1), ('including', 1), ('hate', 1), ('speech', 1), ('cyberbullying', 1), ('others', 1), ('discus', 1), ('usefulness', 1)]
[('learning', 2), ('digital', 2), ('technology', 2), ('healthcare', 2), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('general', 1), ('machine', 1), ('ml', 1), ('deep', 1), ('dl', 1), ('particular', 1), ('related', 1), ('couple', 1), ('fledging', 1), ('paradigm', 1), ('next', 1), ('generation', 1), ('service', 1), ('sprinting', 1), ('towards', 1), ('transform', 1), ('various', 1), ('aspect', 1), ('leveraging', 1), ('advance', 1), ('computing', 1)]
[('ux', 4), ('think', 2), ('research', 2), ('take', 2), ('researcher', 1), ('challenge', 1), ('preconception', 1), ('user', 1), ('experience', 1), ('encourage', 1), ('beyond', 1), ('obvious', 1), ('discover', 1), ('plan', 1), ('conduct', 1), ('analyze', 1), ('data', 1), ('persuade', 1), ('team', 1), ('action', 1), ('result', 1), ('build', 1), ('career', 1), ('book', 1), ('help', 1), ('strategic', 1), ('view', 1), ('product', 1)]
[('book', 1), ('cover', 1), ('recent', 1), ('advance', 1), ('artificial', 1), ('intelligence', 1), ('smart', 1), ('computing', 1), ('application', 1), ('augmenting', 1), ('medical', 1), ('health', 1), ('care', 1), ('system', 1), ('serve', 1), ('ideal', 1), ('reference', 1), ('text', 1), ('graduate', 1), ('student', 1), ('academic', 1), ('researcher', 1), ('diverse', 1), ('engineering', 1), ('field', 1), ('including', 1), ('electrical', 1), ('electronics', 1), ('communication', 1), ('computer', 1), ('biomedical', 1)]
[('large', 4), ('system', 3), ('electrical', 2), ('data', 2), ('set', 2), ('power', 1), ('consists', 1), ('number', 1), ('generation', 1), ('transmission', 1), ('distribution', 1), ('subsystem', 1), ('complex', 1), ('installation', 1), ('management', 1), ('difficult', 1), ('task', 1), ('essentially', 1), ('network', 1), ('handling', 1), ('require', 1), ('time', 1)]
[('image', 2), ('book', 1), ('shed', 1), ('light', 1), ('medical', 1), ('cyber', 1), ('physical', 1), ('system', 1), ('addressing', 1), ('processing', 1), ('microscopy', 1), ('security', 1), ('biomedical', 1), ('imaging', 1), ('automation', 1), ('robotics', 1), ('network', 1), ('layer', 1), ('issue', 1), ('software', 1), ('design', 1), ('biometrics', 1), ('among', 1), ('area', 1), ('solving', 1), ('dimensionality', 1), ('conundrum', 1), ('caused', 1), ('necessity', 1), ('balance', 1), ('data', 1), ('acquisition', 1), ('modality', 1)]
[('oct', 3), ('method', 2), ('material', 2), ('optical', 1), ('coherence', 1), ('tomography', 1), ('see', 1), ('inside', 1), ('thing', 1), ('without', 1), ('destroying', 1), ('applied', 1), ('subject', 1), ('ranging', 1), ('science', 1), ('medicine', 1), ('book', 1), ('focus', 1), ('biomedical', 1), ('application', 1), ('dentistry', 1), ('covering', 1), ('topic', 1), ('dental', 1), ('clinical', 1), ('practice', 1), ('introduction', 1)]
[('management', 2), ('decision', 1), ('support', 1), ('system', 1), ('developed', 1), ('integrated', 1), ('pest', 1), ('disease', 1), ('nutrition', 1), ('using', 1), ('open', 1), ('source', 1), ('technology', 1), ('java', 1), ('android', 1), ('low', 1), ('cost', 1), ('hardware', 1), ('device', 1), ('arduino', 1), ('micro', 1), ('controller', 1), ('text', 1), ('discus', 1), ('technique', 1), ('convert', 1), ('agricultural', 1), ('knowledge', 1), ('context', 1), ('ontology', 1), ('assist', 1), ('grape', 1), ('grower', 1)]
[('intelligence', 2), ('ai', 2), ('philosopher', 1), ('spinoza', 1), ('asserted', 1), ('know', 1), ('body', 1), ('conceiving', 1), ('intrinsic', 1), ('bodily', 1), ('power', 1), ('unknown', 1), ('limit', 1), ('similarly', 1), ('ask', 1), ('artificial', 1), ('negetiveemoji', 1), ('extent', 1), ('development', 1), ('limited', 1), ('technical', 1), ('material', 1), ('substrate', 1), ('word', 1), ('answer', 1)]
[('conference', 2), ('research', 2), ('article', 2), ('proceeding', 1), ('international', 1), ('automation', 1), ('computation', 1), ('autocom', 1), ('consist', 1), ('complete', 1), ('presented', 1), ('double', 1), ('blind', 1), ('reviewed', 1), ('expert', 1), ('corresponding', 1), ('domain', 1), ('book', 1), ('contains', 1), ('blend', 1), ('problem', 1), ('respective', 1), ('solution', 1), ('related', 1)]
[('computer', 3), ('volume', 2), ('advance', 1), ('present', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('updated', 1), ('including', 1), ('new', 1), ('chapter', 1), ('oncontains', 1), ('novel', 1), ('subject', 1), ('matter', 1), ('relevant', 1), ('scienceincludes', 1)]
[('digital', 2), ('technological', 1), ('interoperability', 1), ('library', 1), ('rethought', 1), ('order', 1), ('adapt', 1), ('new', 1), ('us', 1), ('network', 1), ('informative', 1), ('environment', 1), ('aimed', 1), ('responding', 1), ('heritage', 1), ('cultural', 1), ('scientific', 1), ('commercial', 1), ('demand', 1), ('taken', 1)]
[('computer', 3), ('volume', 2), ('advance', 1), ('present', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('updated', 1), ('including', 1), ('new', 1), ('chapter', 1), ('oncontains', 1), ('novel', 1), ('subject', 1), ('matter', 1), ('relevant', 1), ('scienceincludes', 1)]
[('learning', 4), ('federated', 3), ('theory', 1), ('practice', 1), ('provides', 1), ('holistic', 1), ('treatment', 1), ('starting', 1), ('broad', 1), ('overview', 1), ('distributed', 1), ('system', 1), ('various', 1), ('form', 1), ('decentralized', 1), ('data', 1), ('feature', 1), ('detailed', 1)]
[('animation', 2), ('artist', 2), ('book', 1), ('first', 1), ('long', 1), ('awaited', 1), ('study', 1), ('directorial', 1), ('work', 1), ('master', 1), ('fëdor', 1), ('khitruk', 1), ('formed', 1), ('tradition', 1), ('classical', 1), ('cel', 1), ('break', 1), ('convention', 1), ('turned', 1), ('director', 1), ('liaison', 1), ('authority', 1), ('personality', 1), ('promoted', 1), ('daring', 1), ('film', 1), ('created', 1)]
[('crack', 3), ('object', 2), ('computer', 1), ('vision', 1), ('based', 1), ('detection', 1), ('many', 1), ('useful', 1), ('application', 1), ('inspecting', 1), ('monitoring', 1), ('pavement', 1), ('surface', 1), ('underground', 1), ('pipeline', 1), ('bridge', 1), ('railway', 1), ('track', 1), ('etc', 1), ('context', 1), ('appear', 1), ('thin', 1), ('irregular', 1), ('long', 1), ('narrow', 1), ('often', 1), ('buried', 1), ('complex', 1), ('textured', 1), ('background', 1), ('high', 1), ('diversity', 1)]
[('become', 2), ('cybersecurity', 1), ('landscape', 1), ('daunting', 1), ('today', 1), ('nothing', 1), ('year', 1), ('ago', 1), ('complex', 1), ('covert', 1), ('dynamic', 1), ('stealthy', 1), ('literally', 1), ('cat', 1), ('mouse', 1), ('game', 1), ('cyberattacker', 1), ('still', 1), ('step', 1), ('ahead', 1), ('despite', 1), ('technology', 1), ('available', 1), ('society', 1), ('includes', 1)]
[('cloud', 4), ('computing', 4), ('book', 2), ('main', 1), ('aim', 1), ('familiarize', 1), ('reader', 1), ('concept', 1), ('convergence', 1), ('different', 1), ('connected', 1), ('smart', 1), ('domain', 1), ('assisted', 1), ('core', 1), ('technology', 1), ('behind', 1), ('driving', 1), ('factor', 1), ('towards', 1), ('security', 1), ('challenge', 1), ('proposed', 1), ('solution', 1), ('cover', 1)]
[('machine', 3), ('learning', 3), ('ai', 2), ('pioneering', 1), ('book', 1), ('explores', 1), ('technique', 1), ('impact', 1), ('million', 1), ('cancer', 1), ('patient', 1), ('benefit', 1), ('ionizing', 1), ('radiation', 1), ('feature', 1), ('contribution', 1), ('global', 1), ('researcher', 1), ('clinician', 1), ('focusing', 1), ('clinical', 1), ('application', 1), ('medical', 1), ('physic', 1), ('attracted', 1), ('recent', 1)]
[('iot', 3), ('cloud', 3), ('computing', 3), ('smart', 2), ('application', 2), ('thing', 2), ('integration', 1), ('provides', 1), ('integrative', 1), ('overview', 1), ('internet', 1), ('used', 1), ('various', 1), ('futuristic', 1), ('intelligent', 1), ('aim', 1), ('book', 1), ('integrate', 1), ('translate', 1), ('ordinary', 1), ('resource', 1), ('discussion', 1)]
[('book', 1), ('aimed', 1), ('managerial', 1), ('decision', 1), ('maker', 1), ('practitioner', 1), ('field', 1), ('academic', 1), ('community', 1), ('chapter', 1), ('author', 1), ('integrated', 1), ('theory', 1), ('evidence', 1), ('based', 1), ('practice', 1), ('go', 1), ('beyond', 1), ('merely', 1), ('explaining', 1), ('cybersecurity', 1), ('topic', 1), ('accomplish', 1), ('editor', 1), ('drew', 1), ('upon', 1), ('combined', 1), ('cognitive', 1), ('intelligence', 1), ('scholar', 1), ('country', 1)]
[('cognitive', 2), ('challenge', 2), ('opportunity', 2), ('data', 2), ('book', 1), ('provides', 1), ('knowledge', 1), ('digital', 1), ('twin', 1), ('smart', 1), ('lifecycle', 1), ('management', 1), ('built', 1), ('environment', 1), ('infrastructure', 1), ('focusing', 1), ('focus', 1), ('driven', 1), ('system', 1), ('integrating', 1), ('heterogeneous', 1), ('multiple', 1), ('resource', 1), ('easily', 1), ('used', 1)]
[('book', 2), ('go', 1), ('long', 1), ('way', 1), ('toward', 1), ('raising', 1), ('profile', 1), ('invaluable', 1), ('role', 1), ('enterprise', 1), ('architect', 1), ('play', 1), ('major', 1), ('software', 1), ('initiative', 1), ('reason', 1), ('confidence', 1), ('organization', 1), ('take', 1), ('insight', 1), ('heart', 1), ('leverage', 1), ('effectively', 1), ('begin', 1), ('deliver', 1), ('consistent', 1), ('real', 1), ('return', 1), ('investment', 1)]
[('cyber', 4), ('security', 2), ('graph', 2), ('frequent', 1), ('complex', 1), ('threat', 1), ('require', 1), ('robust', 1), ('automated', 1), ('rapid', 1), ('response', 1), ('specialist', 1), ('book', 1), ('offer', 1), ('complete', 1), ('study', 1), ('area', 1), ('learning', 1), ('emphasizing', 1), ('neural', 1), ('network', 1), ('gnns', 1), ('application', 1), ('three', 1), ('part', 1), ('examine', 1), ('basic', 1), ('method', 1), ('practice', 1), ('advanced', 1)]
[('artificial', 1), ('intelligence', 1), ('engineering', 1), ('global', 1), ('public', 1), ('health', 1), ('ecosystem', 1), ('humanity', 1), ('worth', 1), ('saving', 1), ('provides', 1), ('unifying', 1), ('strategic', 1), ('vision', 1), ('principle', 1), ('example', 1), ('operationalizing', 1), ('ai', 1), ('accelerated', 1), ('effective', 1), ('efficient', 1), ('equitable', 1)]
[('iris', 3), ('recognition', 3), ('using', 2), ('deep', 2), ('learning', 2), ('technique', 2), ('book', 2), ('periocular', 1), ('investigates', 1), ('advanced', 1), ('ocular', 1), ('first', 1), ('devoted', 1), ('detail', 1), ('cutting', 1), ('edge', 1)]
[('robotic', 3), ('surgery', 3), ('handbook', 1), ('serf', 1), ('primer', 1), ('covering', 1), ('main', 1), ('area', 1), ('knowledge', 1), ('comprehensive', 1), ('book', 1), ('provides', 1), ('essential', 1), ('information', 1), ('aspect', 1), ('related', 1), ('present', 1), ('future', 1), ('section', 1)]
[('disaster', 2), ('healthcare', 2), ('global', 2), ('human', 1), ('living', 1), ('organism', 1), ('affected', 1), ('natural', 1), ('made', 1), ('recently', 1), ('covid', 1), ('pandemic', 1), ('caused', 1), ('worldwide', 1), ('resulting', 1), ('unprecedented', 1), ('change', 1), ('economy', 1)]
[('machine', 2), ('learning', 2), ('lower', 2), ('recently', 1), ('tiny', 1), ('tinyml', 1), ('gained', 1), ('incredible', 1), ('importance', 1), ('due', 1), ('capability', 1), ('creating', 1), ('lightweight', 1), ('ml', 1), ('framework', 1), ('aiming', 1), ('low', 1), ('latency', 1), ('energy', 1), ('consumption', 1), ('bandwidth', 1), ('requirement', 1), ('improved', 1), ('data', 1)]
[('artificial', 3), ('intelligence', 3), ('application', 2), ('healthcare', 1), ('biomedicine', 1), ('provides', 1), ('updated', 1), ('knowledge', 1), ('medical', 1), ('image', 1), ('analysis', 1), ('book', 1), ('start', 1), ('introduction', 1)]
[('therapeutic', 2), ('application', 2), ('nitric', 2), ('oxide', 2), ('cancer', 2), ('inflammatory', 2), ('disease', 1), ('third', 1), ('international', 1), ('conference', 1), ('disorder', 1), ('present', 1), ('updated', 1), ('information', 1), ('chemistry', 1), ('signaling', 1)]
[('neuromorphic', 3), ('computing', 3), ('research', 2), ('primer', 1), ('highlight', 1), ('critical', 1), ('ongoing', 1), ('diverse', 1), ('application', 1), ('includes', 1), ('overview', 1), ('primary', 1), ('scientific', 1), ('concept', 1), ('topic', 1)]
[('challenge', 3), ('machine', 2), ('learning', 2), ('woman', 2), ('health', 2), ('solution', 2), ('artificial', 1), ('intelligence', 1), ('issue', 1), ('impact', 1), ('discus', 1), ('application', 1), ('bring', 1), ('book', 1), ('illustrates', 1)]
[('quantum', 3), ('computer', 2), ('promise', 2), ('computing', 2), ('dramatic', 1), ('advantage', 1), ('processing', 1), ('speed', 1), ('currently', 1), ('available', 1), ('system', 1), ('offer', 1), ('wide', 1), ('variety', 1), ('scientific', 1), ('research', 1), ('including', 1), ('cryptography', 1), ('machine', 1)]
[('genome', 3), ('analysis', 2), ('book', 1), ('provides', 1), ('recent', 1), ('advanced', 1), ('information', 1), ('approach', 1), ('technique', 1), ('study', 1), ('annotate', 1), ('structure', 1), ('function', 1), ('compendium', 1), ('important', 1), ('topic', 1), ('ng', 1), ('fragmentation', 1)]
[('fortran', 3), ('cuda', 2), ('scientist', 1), ('engineer', 1), ('best', 1), ('practice', 1), ('efficient', 1), ('programming', 1), ('show', 1), ('high', 1), ('performance', 1), ('application', 1), ('developer', 1), ('leverage', 1), ('power', 1), ('gpus', 1), ('using', 1), ('familiar', 1), ('language', 1), ('scientific', 1), ('computing', 1)]
[('tactile', 3), ('robotics', 1), ('structure', 1), ('unifies', 1), ('information', 1), ('processing', 1), ('data', 1), ('extracting', 1), ('object', 1), ('property', 1), ('controller', 1), ('computation', 1), ('book', 1), ('systematically', 1), ('introduces', 1), ('sensor', 1), ('perception', 1), ('control', 1)]
[('graph', 2), ('video', 2), ('data', 2), ('captured', 2), ('based', 1), ('multimedia', 1), ('analysis', 1), ('applies', 1), ('theory', 1), ('problem', 1), ('analyzing', 1), ('abundance', 1), ('diverse', 1), ('exocentric', 1), ('standard', 1), ('camera', 1), ('egocentric', 1), ('wearable', 1), ('device', 1), ('google', 1), ('glass', 1)]
[('intelligent', 2), ('biomedical', 2), ('healthcare', 2), ('health', 2), ('technology', 1), ('application', 1), ('volume', 1), ('seventeen', 1), ('cover', 1), ('artificial', 1), ('intelligence', 1), ('image', 1), ('analysis', 1), ('internet', 1), ('medical', 1), ('thing', 1), ('system', 1), ('extended', 1)]
[('engineering', 2), ('simulation', 2), ('method', 2), ('application', 1), ('algorithm', 1), ('numerical', 1), ('cover', 1), ('essential', 1), ('quantitative', 1), ('needed', 1), ('introducing', 1), ('optimization', 1), ('technique', 1), ('used', 1), ('design', 1), ('system', 1), ('minimize', 1)]
[('clinical', 2), ('cancer', 2), ('genomic', 2), ('medicine', 1), ('translational', 1), ('applied', 1), ('cover', 1), ('major', 1), ('aspect', 1), ('genetics', 1), ('development', 1), ('diagnosis', 1), ('management', 1), ('use', 1), ('setting', 1), ('aim', 1), ('provide', 1), ('reader', 1)]
[('tractography', 3), ('diffusion', 2), ('handbook', 1), ('present', 1), ('method', 1), ('application', 1), ('mr', 1), ('providing', 1), ('deep', 1), ('insight', 1), ('theory', 1), ('implementation', 1), ('existing', 1), ('technique', 1), ('offering', 1), ('practical', 1), ('advice', 1), ('apply', 1)]
[('system', 2), ('arm', 2), ('embedded', 1), ('programming', 1), ('optimization', 1), ('second', 1), ('edition', 1), ('combine', 1), ('exploration', 1), ('architecture', 1), ('examination', 1), ('facility', 1), ('offered', 1), ('linux', 1), ('operating', 1), ('explain', 1), ('various', 1), ('feature', 1), ('program', 1), ('design', 1)]
[('energy', 2), ('information', 2), ('technology', 2), ('making', 1), ('sustainable', 1), ('technique', 1), ('application', 1), ('delf', 1), ('efficiency', 1), ('improvement', 1), ('renewable', 1), ('use', 1), ('broader', 1), ('communication', 1), ('ict', 1), ('contribute', 1), ('goal', 1)]
[('gesture', 3), ('recognition', 2), ('computer', 2), ('topic', 1), ('science', 1), ('language', 1), ('technology', 1), ('goal', 1), ('interpreting', 1), ('human', 1), ('via', 1), ('mathematical', 1), ('algorithm', 1), ('book', 1), ('begin', 1), ('examining', 1), ('vision', 1), ('based', 1), ('method', 1), ('focusing', 1)]
[('core', 2), ('network', 2), ('gpp', 2), ('advanced', 1), ('provides', 1), ('overview', 1), ('architecture', 1), ('giving', 1), ('description', 1), ('cloud', 1), ('technology', 1), ('key', 1), ('concept', 1), ('specification', 1), ('book', 1), ('cover', 1), ('including', 1), ('release', 1)]
[('mammogram', 2), ('computational', 1), ('intelligence', 1), ('modelling', 1), ('technique', 1), ('disease', 1), ('detection', 1), ('image', 1), ('comprehensively', 1), ('examines', 1), ('wide', 1), ('range', 1), ('ai', 1), ('based', 1), ('analysis', 1), ('method', 1), ('medical', 1), ('application', 1), ('beginning', 1), ('introductory', 1), ('overview', 1)]
[('big', 3), ('data', 3), ('empowering', 2), ('iot', 2), ('analytics', 2), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('major', 1), ('topic', 1), ('tool', 1), ('technique', 1), ('related', 1), ('technology', 1), ('solution', 1), ('thus', 1), ('allowing', 1), ('better', 1), ('processing', 1), ('analysis', 1)]
[('autocad', 2), ('step', 2), ('running', 1), ('drawing', 1), ('design', 1), ('modeling', 1), ('present', 1), ('combination', 1), ('instruction', 1), ('example', 1), ('insightful', 1), ('explanation', 1), ('book', 1), ('emphasizes', 1), ('core', 1), ('concept', 1), ('practical', 1), ('application', 1)]
[('testing', 3), ('penetration', 2), ('professional', 1), ('walk', 1), ('entire', 1), ('process', 1), ('setting', 1), ('running', 1), ('pen', 1), ('test', 1), ('lab', 1), ('act', 1), ('computer', 1), ('network', 1), ('find', 1), ('security', 1), ('vulnerability', 1), ('maliciously', 1), ('exploited', 1)]
[('ux', 2), ('edition', 2), ('discipline', 1), ('user', 1), ('experience', 1), ('design', 1), ('matured', 1), ('confident', 1), ('practice', 1), ('reflects', 1), ('area', 1), ('accelerates', 1), ('evolution', 1), ('technically', 1), ('second', 1), ('book', 1), ('new', 1)]
[('high', 2), ('performance', 2), ('computing', 2), ('modern', 1), ('system', 1), ('practice', 1), ('fully', 1), ('comprehensive', 1), ('easily', 1), ('accessible', 1), ('treatment', 1), ('covering', 1), ('fundamental', 1), ('concept', 1), ('essential', 1), ('knowledge', 1), ('providing', 1), ('key', 1), ('skill', 1), ('training', 1)]
[('manufacturing', 3), ('computational', 2), ('intelligence', 1), ('address', 1), ('application', 1), ('ai', 1), ('machine', 1), ('learning', 1), ('innovative', 1), ('technique', 1), ('across', 1), ('supply', 1), ('chain', 1), ('rapid', 1), ('development', 1), ('smart', 1), ('digital', 1), ('known', 1)]
[('reverse', 2), ('vaccinology', 2), ('development', 2), ('vaccine', 2), ('concept', 1), ('method', 1), ('advancement', 1), ('present', 1), ('strategy', 1), ('new', 1), ('genome', 1), ('sequencing', 1), ('bioinformatics', 1), ('analysis', 1), ('promise', 1), ('revolutionize', 1), ('especially', 1), ('pathogen', 1)]
[('colorectal', 3), ('cancer', 3), ('disease', 1), ('advanced', 1), ('drug', 1), ('delivery', 1), ('strategy', 1), ('examines', 1), ('combined', 1), ('impact', 1), ('basic', 1), ('clinical', 1), ('medical', 1), ('treatment', 1), ('recent', 1), ('advance', 1), ('field', 1), ('strong', 1), ('focus', 1), ('towards', 1)]
[('cancer', 2), ('natural', 2), ('product', 2), ('treatment', 2), ('disease', 2), ('phytochemical', 1), ('therapy', 1), ('beyond', 1), ('examines', 1), ('role', 1), ('especially', 1), ('strong', 1), ('focus', 1), ('demonstrates', 1), ('mechanism', 1), ('follow', 1)]
[('urban', 3), ('computing', 1), ('artificial', 1), ('intelligence', 1), ('data', 1), ('driven', 1), ('tool', 1), ('heat', 1), ('mitigation', 1), ('first', 1), ('full', 1), ('synthesis', 1), ('modern', 1), ('scientific', 1), ('applied', 1), ('research', 1), ('climate', 1), ('change', 1), ('warming', 1), ('future', 1), ('resilient', 1), ('city', 1), ('book', 1), ('help', 1)]
[('climate', 3), ('computational', 2), ('modeling', 2), ('application', 2), ('change', 2), ('crisis', 1), ('provides', 1), ('reader', 1), ('innovative', 1), ('research', 1), ('moderate', 1), ('book', 1), ('begin', 1), ('overview', 1), ('history', 1), ('followed', 1)]
[('sentiment', 2), ('analysis', 2), ('intelligence', 2), ('become', 1), ('increasingly', 1), ('important', 1), ('recent', 1), ('year', 1), ('nearly', 1), ('online', 1), ('application', 1), ('depends', 1), ('heavily', 1), ('artificial', 1), ('ai', 1), ('technology', 1), ('wherein', 1), ('computational', 1), ('approach', 1), ('aid', 1), ('deriving', 1)]
[('ux', 2), ('design', 2), ('book', 1), ('agile', 1), ('quality', 1), ('user', 1), ('experience', 1), ('third', 1), ('edition', 1), ('take', 1), ('practical', 1), ('applied', 1), ('hand', 1), ('approach', 1), ('based', 1), ('application', 1), ('established', 1), ('emerging', 1), ('best', 1), ('practice', 1), ('principle', 1), ('proven', 1), ('method', 1), ('ensure', 1)]
[('vr', 2), ('student', 2), ('fundamental', 1), ('development', 1), ('written', 1), ('undergraduate', 1), ('computer', 1), ('science', 1), ('taking', 1), ('course', 1), ('virtual', 1), ('reality', 1), ('tutorial', 1), ('based', 1), ('text', 1), ('organized', 1), ('end', 1), ('semester', 1), ('created', 1), ('first', 1), ('game', 1)]
[('covid', 2), ('model', 2), ('epidemiological', 1), ('modeling', 1), ('application', 1), ('present', 1), ('information', 1), ('statistical', 1), ('numerical', 1), ('stability', 1), ('theoretical', 1), ('analysis', 1), ('nine', 1), ('different', 1), ('considered', 1), ('classical', 1), ('fractional', 1), ('derivative', 1)]
[('modeling', 2), ('nanomechanics', 1), ('structure', 1), ('material', 1), ('analysis', 1), ('highlight', 1), ('compare', 1), ('advantage', 1), ('disadvantage', 1), ('varied', 1), ('analyzation', 1), ('method', 1), ('broad', 1), ('array', 1), ('different', 1), ('nanostructures', 1), ('nanomaterials', 1), ('focus', 1)]
[('deep', 4), ('learning', 3), ('based', 2), ('provides', 1), ('detailed', 1), ('discussion', 1), ('robust', 1), ('speech', 1), ('processing', 1), ('application', 1), ('begin', 1), ('looking', 1), ('basic', 1), ('common', 1), ('network', 1), ('model', 1), ('followed', 1), ('front', 1), ('end', 1), ('algorithm', 1)]
[('testing', 3), ('penetration', 2), ('professional', 1), ('third', 1), ('edition', 1), ('walk', 1), ('reader', 1), ('entire', 1), ('process', 1), ('setting', 1), ('running', 1), ('pen', 1), ('test', 1), ('lab', 1), ('act', 1), ('computer', 1), ('network', 1), ('find', 1), ('security', 1), ('vulnerability', 1)]
[('ph', 3), ('deregulation', 2), ('eleventh', 1), ('hallmark', 1), ('cancer', 1), ('present', 1), ('key', 1), ('concept', 1), ('concise', 1), ('straight', 1), ('forward', 1), ('manner', 1), ('book', 1), ('discus', 1), ('topic', 1), ('regulation', 1), ('metabolism', 1), ('sodium', 1), ('hydrogen', 1), ('exchanger', 1), ('monocarboxylate', 1)]
[('ai', 3), ('prolific', 1), ('deployment', 1), ('artificial', 1), ('intelligence', 1), ('across', 1), ('different', 1), ('field', 1), ('introduced', 1), ('novel', 1), ('challenge', 1), ('developer', 1), ('researcher', 1), ('permeating', 1), ('decision', 1), ('making', 1), ('mass', 1), ('application', 1), ('range', 1), ('self', 1), ('driving', 1)]
[('data', 2), ('analytics', 2), ('solar', 2), ('intelligent', 1), ('energy', 1), ('prediction', 1), ('forecasting', 1), ('advance', 1), ('resource', 1), ('assessment', 1), ('pv', 1), ('system', 1), ('optimization', 1), ('explores', 1), ('utilization', 1), ('advanced', 1), ('neural', 1), ('network', 1), ('machine', 1), ('learning', 1), ('technique', 1)]
[('opencl', 2), ('heterogeneous', 1), ('computing', 1), ('teach', 1), ('parallel', 1), ('programming', 1), ('complex', 1), ('system', 1), ('include', 1), ('variety', 1), ('device', 1), ('architecture', 1), ('multi', 1), ('core', 1), ('cpu', 1), ('gpus', 1), ('fully', 1), ('integrated', 1), ('accelerated', 1), ('processing', 1), ('unit', 1), ('apus', 1), ('amd', 1), ('fusion', 1)]
[('block', 2), ('traditionally', 1), ('network', 1), ('security', 1), ('firewall', 1), ('unauthorized', 1), ('user', 1), ('intrusion', 1), ('prevention', 1), ('system', 1), ('ip', 1), ('keep', 1), ('attacker', 1), ('web', 1), ('filter', 1), ('avoid', 1), ('misuse', 1), ('internet', 1), ('browsing', 1), ('antivirus', 1), ('software', 1), ('malicious', 1), ('program', 1), ('required', 1)]
[('vendor', 2), ('assessing', 1), ('tricky', 1), ('process', 1), ('large', 1), ('regulated', 1), ('organization', 1), ('forced', 1), ('demonstrate', 1), ('due', 1), ('diligence', 1), ('assessment', 1), ('often', 1), ('know', 1), ('result', 1), ('deal', 1), ('busywork', 1), ('required', 1)]
[('crisis', 1), ('management', 1), ('speed', 1), ('internet', 1), ('provides', 1), ('security', 1), ('executive', 1), ('practitioner', 1), ('overview', 1), ('potentially', 1), ('harmful', 1), ('impact', 1), ('social', 1), ('medium', 1), ('communication', 1), ('corporate', 1), ('reputation', 1), ('within', 1), ('minute', 1), ('online', 1), ('consumer', 1), ('community', 1)]
[('avr', 1), ('risc', 1), ('microcontroller', 1), ('handbook', 1), ('comprehensive', 1), ('guide', 1), ('designing', 1), ('atmel', 1), ('new', 1), ('controller', 1), ('family', 1), ('designed', 1), ('offer', 1), ('high', 1), ('speed', 1), ('low', 1), ('power', 1), ('consumption', 1), ('lower', 1), ('cost', 1), ('main', 1), ('text', 1), ('divided', 1), ('three', 1), ('section', 1)]
[('algorithm', 5), ('swarm', 2), ('bio', 2), ('inspired', 2), ('intelligence', 1), ('computation', 1), ('become', 1), ('increasing', 1), ('popular', 1), ('last', 1), ('decade', 1), ('ant', 1), ('colony', 1), ('bat', 1), ('bee', 1), ('firefly', 1), ('cuckoo', 1), ('search', 1), ('particle', 1)]
[('data', 3), ('big', 2), ('looking', 2), ('today', 1), ('world', 1), ('trying', 1), ('create', 1), ('educate', 1), ('scientist', 1), ('phenomenon', 1), ('everyone', 1), ('deeply', 1), ('technology', 1), ('larger', 1), ('architectural', 1), ('picture', 1), ('need', 1), ('fit', 1)]
[('medical', 2), ('modelling', 1), ('principle', 1), ('imaging', 1), ('computer', 1), ('aided', 1), ('design', 1), ('cad', 1), ('rapid', 1), ('prototyping', 1), ('known', 1), ('additive', 1), ('manufacturing', 1), ('printing', 1), ('important', 1), ('technique', 1), ('relating', 1), ('various', 1), ('discipline', 1), ('biomaterials', 1)]
[('big', 2), ('data', 2), ('living', 1), ('era', 1), ('computing', 1), ('power', 1), ('required', 1), ('deal', 1), ('term', 1), ('energy', 1), ('consumption', 1), ('technical', 1), ('complexity', 1), ('key', 1), ('area', 1), ('research', 1), ('development', 1), ('environmental', 1), ('protection', 1)]
[('data', 4), ('big', 3), ('entity', 2), ('information', 2), ('mdm', 2), ('life', 1), ('cycle', 1), ('walk', 1), ('in', 1), ('out', 1), ('managing', 1), ('successfully', 1), ('achieve', 1), ('master', 1), ('management', 1), ('era', 1), ('book', 1), ('explains', 1), ('impact', 1)]
[('digital', 3), ('accessibility', 2), ('policy', 2), ('ensuring', 1), ('process', 1), ('provides', 1), ('reader', 1), ('resource', 1), ('technical', 1), ('perspective', 1), ('inaccessible', 1), ('interface', 1), ('content', 1), ('often', 1), ('lead', 1), ('form', 1), ('societal', 1)]
[('open', 3), ('source', 3), ('tool', 2), ('continuing', 1), ('tradition', 1), ('excellent', 1), ('training', 1), ('penetration', 1), ('tester', 1), ('toolkit', 1), ('fourth', 1), ('edition', 1), ('reference', 1), ('available', 1), ('today', 1), ('teach', 1), ('use', 1), ('demonstrating', 1)]
[('ux', 2), ('multicultural', 2), ('universal', 1), ('design', 1), ('building', 1), ('user', 1), ('experience', 1), ('provides', 1), ('ideal', 1), ('guide', 1), ('continues', 1), ('emerge', 1), ('transdisciplinary', 1), ('field', 1), ('addition', 1), ('traditional', 1), ('ui', 1), ('corporate', 1), ('strategy', 1), ('concern', 1), ('includes', 1)]
[('energy', 2), ('real', 2), ('time', 2), ('system', 2), ('autonomy', 1), ('address', 1), ('foundation', 1), ('finding', 1), ('scheduling', 1), ('processor', 1), ('activity', 1), ('management', 1), ('harvesting', 1), ('embedded', 1), ('serving', 1), ('textbook', 1), ('course', 1), ('topic', 1), ('master', 1), ('program', 1)]
[('software', 3), ('big', 3), ('data', 3), ('architecture', 2), ('challenge', 2), ('cloud', 1), ('designed', 1), ('single', 1), ('resource', 1), ('brings', 1), ('together', 1), ('research', 1), ('solve', 1), ('imposed', 1), ('building', 1), ('system', 1)]
[('embedded', 2), ('high', 2), ('system', 2), ('computing', 1), ('performance', 1), ('design', 1), ('exploration', 1), ('customization', 1), ('using', 1), ('level', 1), ('compilation', 1), ('synthesis', 1), ('tool', 1), ('provides', 1), ('set', 1), ('real', 1), ('life', 1), ('example', 1), ('implementation', 1), ('migrate', 1), ('traditional', 1), ('desktop', 1)]
[('system', 3), ('embedded', 2), ('interfacing', 1), ('design', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('cyber', 1), ('physical', 1), ('cps', 1), ('take', 1), ('comprehensive', 1), ('approach', 1), ('interface', 1), ('software', 1), ('provides', 1), ('principle', 1), ('needed', 1), ('understand', 1)]
[('uncertainty', 3), ('numerical', 2), ('weather', 1), ('prediction', 1), ('comprehensive', 1), ('work', 1), ('current', 1), ('understanding', 1), ('predictability', 1), ('simulation', 1), ('atmosphere', 1), ('provides', 1), ('general', 1), ('knowledge', 1), ('aspect', 1)]
[('artificial', 2), ('intelligence', 2), ('data', 1), ('science', 1), ('environmental', 1), ('sensing', 1), ('provides', 1), ('state', 1), ('art', 1), ('information', 1), ('inexpensive', 1), ('mass', 1), ('produced', 1), ('sensor', 1), ('used', 1), ('input', 1), ('system', 1), ('book', 1), ('discus', 1), ('advance', 1), ('ai', 1)]
[('drug', 4), ('artificial', 3), ('intelligence', 3), ('delivery', 2), ('ai', 2), ('handbook', 1), ('explores', 1), ('use', 1), ('strategy', 1), ('book', 1), ('cover', 1), ('pharmaceutical', 1), ('discovery', 1), ('challenge', 1), ('tool', 1), ('research', 1)]
[('image', 2), ('registration', 2), ('algorithm', 2), ('high', 1), ('performance', 1), ('deformable', 1), ('manycore', 1), ('processor', 1), ('develops', 1), ('highly', 1), ('data', 1), ('parallel', 1), ('suitable', 1), ('use', 1), ('modern', 1), ('multi', 1), ('core', 1), ('architecture', 1), ('including', 1), ('graphic', 1), ('processing', 1), ('unit', 1), ('gpus', 1), ('focusing', 1)]
[('informatics', 2), ('although', 1), ('trainee', 1), ('practitioner', 1), ('assume', 1), ('operational', 1), ('computing', 1), ('role', 1), ('organization', 1), ('reasonably', 1), ('advanced', 1), ('understanding', 1), ('theoretical', 1), ('many', 1), ('unfamiliar', 1), ('practical', 1), ('topic', 1), ('downtime', 1)]
[('middleware', 2), ('different', 2), ('bridge', 1), ('connects', 1), ('distributed', 1), ('application', 1), ('across', 1), ('physical', 1), ('location', 1), ('hardware', 1), ('platform', 1), ('network', 1), ('technology', 1), ('operating', 1), ('system', 1), ('programming', 1), ('language', 1), ('book', 1), ('describes', 1)]
[('volume', 1), ('modern', 1), ('information', 1), ('processing', 1), ('theory', 1), ('application', 1), ('edited', 1), ('bernadette', 1), ('bouchon', 1), ('meunier', 1), ('giulianella', 1), ('coletti', 1), ('ronald', 1), ('yager', 1), ('collection', 1), ('carefully', 1), ('selected', 1), ('paper', 1), ('drawn', 1), ('program', 1), ('ipmu', 1), ('held', 1)]
[('probability', 1), ('random', 1), ('process', 1), ('provides', 1), ('clear', 1), ('presentation', 1), ('foundational', 1), ('concept', 1), ('specific', 1), ('application', 1), ('signal', 1), ('processing', 1), ('communication', 1), ('clearly', 1), ('area', 1), ('interest', 1), ('student', 1), ('instructor', 1), ('course', 1)]
[('computer', 2), ('basic', 2), ('laboratory', 1), ('practical', 1), ('guide', 1), ('physiologist', 1), ('neuroscientist', 1), ('introduces', 1), ('reader', 1), ('principle', 1), ('actual', 1), ('practice', 1), ('recording', 1), ('physiological', 1), ('signal', 1), ('using', 1), ('describes', 1), ('operation', 1)]
[('upper', 2), ('limb', 2), ('represent', 2), ('industrialised', 1), ('country', 1), ('musculo', 1), ('skeletrical', 1), ('disorder', 1), ('commonest', 1), ('work', 1), ('related', 1), ('disease', 1), ('working', 1), ('activity', 1), ('habitually', 1), ('requiring', 1), ('repetitive', 1), ('movement', 1), ('exertion', 1), ('potential', 1)]
[('window', 3), ('enterprise', 2), ('server', 2), ('release', 2), ('product', 2), ('exchange', 1), ('sql', 1), ('ii', 1), ('core', 1), ('microsoft', 1), ('along', 1), ('vista', 1), ('represents', 1), ('biggest', 1), ('overhaul', 1)]
[('cognition', 2), ('relying', 2), ('handbook', 1), ('cognitive', 1), ('science', 1), ('provides', 1), ('overview', 1), ('recent', 1), ('development', 1), ('research', 1), ('upon', 1), ('non', 1), ('classical', 1), ('approach', 1), ('explained', 1), ('continuous', 1), ('interplay', 1), ('brain', 1), ('body', 1), ('environment', 1), ('without', 1)]
[('deep', 5), ('network', 4), ('neural', 3), ('learning', 2), ('trend', 1), ('methodology', 1), ('algorithm', 1), ('application', 1), ('system', 1), ('cover', 1), ('approach', 1), ('belief', 1), ('recurrent', 1), ('convolutional', 1), ('auto', 1), ('encoder', 1)]
[('graphic', 3), ('game', 2), ('networked', 1), ('equips', 1), ('programmer', 1), ('designer', 1), ('thorough', 1), ('grounding', 1), ('technique', 1), ('used', 1), ('create', 1), ('truly', 1), ('network', 1), ('enabled', 1), ('computer', 1), ('written', 1), ('developer', 1), ('student', 1), ('assumes', 1), ('prior', 1), ('knowledge', 1)]
[('cloud', 4), ('platform', 2), ('moving', 1), ('provides', 1), ('depth', 1), ('introduction', 1), ('computing', 1), ('model', 1), ('application', 1), ('development', 1), ('paradigm', 1), ('concept', 1), ('technology', 1), ('author', 1), ('particularly', 1), ('examine', 1), ('use', 1), ('today', 1)]
[('semantic', 2), ('ehealth', 2), ('explores', 2), ('model', 1), ('iot', 1), ('application', 1), ('key', 1), ('role', 1), ('web', 1), ('modeling', 1), ('technology', 1), ('including', 1), ('remote', 1), ('monitoring', 1), ('mobile', 1), ('health', 1), ('cloud', 1), ('data', 1), ('biomedical', 1), ('ontology', 1), ('book', 1), ('different', 1), ('challenge', 1)]
[('technique', 2), ('medical', 1), ('modelling', 1), ('application', 1), ('advanced', 1), ('design', 1), ('additive', 1), ('manufacturing', 1), ('medicine', 1), ('third', 1), ('edition', 1), ('provides', 1), ('reader', 1), ('thorough', 1), ('update', 1), ('core', 1), ('content', 1), ('along', 1), ('key', 1), ('information', 1), ('innovative', 1), ('imaging', 1)]
[('penetration', 2), ('tool', 2), ('coding', 1), ('tester', 1), ('building', 1), ('better', 1), ('second', 1), ('edition', 1), ('provides', 1), ('reader', 1), ('understanding', 1), ('scripting', 1), ('language', 1), ('commonly', 1), ('used', 1), ('developing', 1), ('testing', 1), ('guiding', 1), ('user', 1), ('specific', 1)]
[('everything', 1), ('online', 1), ('increasingly', 1), ('real', 1), ('world', 1), ('tracked', 1), ('logged', 1), ('analyzed', 1), ('often', 1), ('packaged', 1), ('sold', 1), ('highest', 1), ('bidder', 1), ('every', 1), ('time', 1), ('visit', 1), ('website', 1), ('use', 1), ('credit', 1), ('card', 1), ('drive', 1), ('freeway', 1), ('go', 1), ('past', 1), ('cctv', 1), ('camera', 1)]
[('system', 2), ('arm', 2), ('embedded', 1), ('programming', 1), ('optimization', 1), ('combine', 1), ('exploration', 1), ('architecture', 1), ('examination', 1), ('facility', 1), ('offered', 1), ('linux', 1), ('operating', 1), ('explain', 1), ('various', 1), ('feature', 1), ('program', 1), ('design', 1), ('influence', 1)]
[('cloud', 5), ('federal', 4), ('computing', 3), ('definitive', 1), ('guide', 1), ('service', 1), ('provider', 1), ('second', 1), ('edition', 1), ('offer', 1), ('depth', 1), ('look', 1), ('topic', 1), ('surrounding', 1), ('within', 1), ('government', 1), ('including', 1), ('strategy', 1)]
[('approach', 2), ('cognitive', 1), ('information', 1), ('system', 1), ('management', 1), ('science', 1), ('summarizes', 1), ('body', 1), ('work', 1), ('area', 1), ('taking', 1), ('analytical', 1), ('interpreting', 1), ('data', 1), ('providing', 1), ('used', 1), ('practical', 1), ('implementation', 1), ('field', 1)]
[('connectomics', 2), ('application', 2), ('brain', 2), ('technique', 2), ('neuroimaging', 1), ('unique', 1), ('presenting', 1), ('frontier', 1), ('neuro', 1), ('using', 1), ('book', 1), ('describes', 1), ('state', 1), ('art', 1), ('research', 1), ('applies', 1), ('connectivity', 1), ('analysis', 1), ('broad', 1)]
[('secure', 2), ('iot', 2), ('device', 2), ('cortex', 2), ('designing', 1), ('arm', 1), ('platform', 1), ('security', 1), ('architecture', 1), ('explains', 1), ('design', 1), ('deploy', 1), ('based', 1), ('processor', 1), ('book', 1), ('split', 1), ('three', 1), ('part', 1), ('first', 1), ('introduces', 1)]
[('imaging', 3), ('cardiovascular', 1), ('coronary', 1), ('artery', 1), ('volume', 1), ('present', 1), ('basic', 1), ('echocardiography', 1), ('nuclear', 1), ('magnetic', 1), ('resonance', 1), ('mri', 1), ('provides', 1), ('insight', 1), ('appropriate', 1), ('use', 1), ('book', 1), ('cover', 1), ('state', 1), ('art', 1), ('approach', 1)]
[('blockchain', 2), ('iot', 2), ('healthcare', 2), ('system', 2), ('technology', 1), ('solution', 1), ('security', 1), ('based', 1), ('explores', 1), ('various', 1), ('benefit', 1), ('challenge', 1), ('associated', 1), ('integration', 1), ('focusing', 1), ('designing', 1), ('cognitive', 1), ('embedded', 1), ('data', 1)]
[('digital', 3), ('field', 2), ('geometry', 1), ('deriving', 1), ('geometric', 1), ('information', 1), ('picture', 1), ('emerged', 1), ('mathematical', 1), ('root', 1), ('forty', 1), ('year', 1), ('ago', 1), ('work', 1), ('computer', 1), ('based', 1), ('imaging', 1), ('used', 1), ('today', 1), ('many', 1), ('image', 1)]
[('advance', 2), ('computer', 2), ('remains', 1), ('forefront', 1), ('presenting', 1), ('new', 1), ('development', 1), ('changing', 1), ('field', 1), ('information', 1), ('technology', 1), ('chronicled', 1), ('constantly', 1), ('shifting', 1), ('theory', 1), ('method', 1)]
[('new', 2), ('today', 1), ('company', 1), ('federal', 1), ('agency', 1), ('non', 1), ('profit', 1), ('organization', 1), ('valuable', 1), ('data', 1), ('server', 1), ('need', 1), ('secured', 1), ('challenge', 1), ('expert', 1), ('learning', 1), ('use', 1), ('product', 1), ('time', 1), ('efficient', 1), ('manner', 1)]
[('window', 3), ('network', 2), ('provides', 2), ('server', 1), ('security', 1), ('depth', 1), ('guide', 1), ('deploying', 1), ('maintaining', 1), ('secure', 1), ('book', 1), ('drill', 1), ('new', 1), ('feature', 1), ('practical', 1), ('hand', 1), ('method', 1), ('securing', 1)]
[('computer', 2), ('first', 1), ('volume', 1), ('advance', 1), ('presented', 1), ('detailed', 1), ('coverage', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('provided', 1), ('contributor', 1), ('medium', 1), ('explore', 1)]
[('data', 2), ('software', 2), ('biostatistics', 1), ('computer', 1), ('based', 1), ('analysis', 1), ('health', 1), ('using', 1), ('address', 1), ('concept', 1), ('many', 1), ('action', 1), ('performed', 1), ('statistical', 1), ('come', 1), ('back', 1), ('handling', 1), ('manipulation', 1), ('even', 1), ('transformation', 1), ('digital', 1)]
[('picture', 2), ('fuzzy', 2), ('application', 2), ('research', 2), ('logic', 1), ('decision', 1), ('making', 1), ('problem', 1), ('provides', 1), ('methodological', 1), ('framework', 1), ('latest', 1), ('empirical', 1), ('finding', 1), ('field', 1), ('operator', 1), ('scientific', 1)]
[('video', 2), ('order', 1), ('wireless', 1), ('device', 1), ('function', 1), ('signal', 1), ('coded', 1), ('standard', 1), ('way', 1), ('sender', 1), ('receiver', 1), ('communicate', 1), ('area', 1), ('source', 1), ('coding', 1), ('key', 1), ('challenge', 1), ('worldwide', 1), ('push', 1), ('deliver', 1), ('full', 1)]
[('principle', 2), ('data', 2), ('integration', 2), ('first', 1), ('comprehensive', 1), ('textbook', 1), ('covering', 1), ('theoretical', 1), ('implementation', 1), ('issue', 1), ('current', 1), ('challenge', 1), ('raised', 1), ('semantic', 1), ('web', 1), ('cloud', 1), ('computing', 1), ('book', 1), ('offer', 1), ('range', 1)]
[('cloud', 5), ('federal', 4), ('computing', 4), ('definitive', 1), ('guide', 1), ('service', 1), ('provider', 1), ('offer', 1), ('depth', 1), ('look', 1), ('topic', 1), ('surrounding', 1), ('within', 1), ('government', 1), ('including', 1), ('strategy', 1)]
[('case', 3), ('investigative', 2), ('management', 2), ('first', 1), ('look', 1), ('excerpted', 1), ('brett', 1), ('shaver', 1), ('new', 1), ('syngress', 1), ('book', 1), ('placing', 1), ('suspect', 1), ('behind', 1), ('keyboard', 1), ('organizing', 1), ('file', 1), ('includes', 1), ('analysis', 1)]
[('based', 2), ('method', 2), ('technique', 2), ('introductory', 1), ('text', 1), ('provide', 1), ('technology', 1), ('survey', 1), ('leaf', 1), ('reader', 1), ('without', 1), ('clear', 1), ('understanding', 1), ('interrelationship', 1), ('providing', 1), ('strategy', 1), ('introduction', 1)]
[('surveillance', 2), ('time', 1), ('online', 1), ('cybercrime', 1), ('technique', 1), ('widespread', 1), ('used', 1), ('government', 1), ('corporation', 1), ('individual', 1), ('cyber', 1), ('reconnaissance', 1), ('defense', 1), ('give', 1), ('practical', 1), ('resource', 1), ('explains', 1)]
[('design', 3), ('principle', 2), ('awareness', 1), ('smell', 1), ('indicator', 1), ('common', 1), ('problem', 1), ('help', 1), ('developer', 1), ('software', 1), ('engineer', 1), ('understand', 1), ('mistake', 1), ('made', 1), ('designing', 1), ('overlooked', 1), ('misapplied', 1), ('need', 1), ('applied', 1)]
[('book', 1), ('first', 1), ('cover', 1), ('recently', 1), ('developed', 1), ('mpeg', 1), ('standard', 1), ('explaining', 1), ('fundamental', 1), ('part', 1), ('technology', 1), ('exploring', 1), ('potential', 1), ('application', 1), ('written', 1), ('expert', 1), ('field', 1), ('instrumental', 1), ('development', 1)]
[('information', 2), ('security', 2), ('job', 2), ('whether', 1), ('want', 1), ('break', 1), ('move', 1), ('another', 1), ('transition', 1), ('management', 1), ('breaking', 1), ('help', 1), ('book', 1), ('survey', 1), ('different', 1), ('available', 1), ('industry', 1), ('frankly', 1)]
[('dns', 4), ('domain', 2), ('name', 2), ('system', 2), ('security', 1), ('defending', 1), ('provides', 1), ('tactic', 1), ('protect', 1), ('framework', 1), ('exploring', 1), ('common', 1), ('vulnerability', 1), ('studying', 1), ('different', 1), ('attack', 1), ('vector', 1), ('providing', 1), ('necessary', 1), ('information', 1), ('securing', 1)]
[('mobile', 3), ('processing', 2), ('data', 2), ('set', 2), ('adaptive', 1), ('computing', 1), ('advance', 1), ('explores', 1), ('latest', 1), ('advancement', 1), ('producing', 1), ('securing', 1), ('book', 1), ('provides', 1), ('element', 1), ('needed', 1), ('deepen', 1), ('understanding', 1), ('trend', 1)]
[('volume', 3), ('advance', 2), ('computer', 2), ('latest', 1), ('series', 1), ('published', 1), ('present', 1), ('detailed', 1), ('coverage', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('chapter', 1), ('updated', 1), ('include', 1)]
[('uml', 3), ('certified', 2), ('language', 2), ('ocup', 1), ('certification', 1), ('guide', 1), ('preparing', 1), ('omg', 1), ('professional', 1), ('foundation', 1), ('exam', 1), ('teach', 1), ('prepares', 1), ('candidate', 1), ('become', 1), ('unified', 1), ('modeling', 1), ('popular', 1), ('graphical', 1), ('used', 1)]
[('electron', 4), ('advance', 3), ('physic', 3), ('imaging', 1), ('volume', 1), ('merges', 1), ('long', 1), ('running', 1), ('serial', 1), ('electronics', 1), ('optical', 1), ('microscopy', 1), ('series', 1), ('feature', 1), ('extended', 1), ('article', 1)]
[('fundamental', 2), ('digital', 1), ('signal', 1), ('processing', 1), ('application', 1), ('third', 1), ('edition', 1), ('introduces', 1), ('student', 1), ('principle', 1), ('dsp', 1), ('provides', 1), ('working', 1), ('knowledge', 1), ('take', 1), ('engineering', 1), ('career', 1), ('many', 1)]
[('debugging', 2), ('thinking', 1), ('multi', 1), ('disciplinary', 1), ('approach', 1), ('first', 1), ('book', 1), ('apply', 1), ('wisdom', 1), ('six', 1), ('discipline', 1), ('logic', 1), ('mathematics', 1), ('psychology', 1), ('safety', 1), ('analysis', 1), ('computer', 1), ('science', 1), ('engineering', 1), ('problem', 1), ('us', 1), ('method', 1)]
[('book', 2), ('control', 2), ('praise', 1), ('series', 1), ('useful', 1), ('reference', 1), ('engineer', 1), ('researcher', 1), ('paper', 1), ('contained', 1), ('cover', 1), ('recent', 1), ('advance', 1), ('field', 1), ('modern', 1), ('theory', 1), ('iee', 1), ('group', 1), ('correspondence', 1), ('help', 1)]
[('peer', 2), ('user', 2), ('network', 1), ('enable', 1), ('directly', 1), ('share', 1), ('digital', 1), ('content', 1), ('audio', 1), ('video', 1), ('text', 1), ('file', 1), ('real', 1), ('time', 1), ('data', 1), ('telephony', 1), ('traffic', 1), ('without', 1), ('depending', 1), ('central', 1), ('server', 1), ('although', 1), ('originally', 1)]
[('xbox', 3), ('game', 2), ('console', 2), ('forensics', 1), ('complete', 1), ('investigation', 1), ('guide', 1), ('longer', 1), ('video', 1), ('stream', 1), ('movie', 1), ('connects', 1), ('social', 1), ('networking', 1), ('site', 1), ('chatroom', 1), ('transfer', 1), ('file', 1)]
[('volume', 3), ('series', 2), ('chapter', 2), ('first', 1), ('oldest', 1), ('still', 1), ('published', 1), ('cover', 1), ('new', 1), ('development', 1), ('computer', 1), ('technology', 1), ('contains', 1), ('produced', 1), ('annually', 1), ('present', 1)]
[('image', 2), ('video', 2), ('processing', 2), ('give', 2), ('introduction', 2), ('multidimensional', 1), ('signal', 1), ('coding', 1), ('concise', 1), ('providing', 1), ('balanced', 1), ('coverage', 1), ('theory', 1), ('application', 1), ('standard', 1)]
[('review', 2), ('volume', 2), ('issue', 1), ('international', 1), ('neurobiology', 1), ('split', 1), ('bringing', 1), ('together', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('bioinformatics', 1), ('behavior', 1), ('current', 1), ('knowledge', 1), ('understanding', 1), ('provide', 1), ('starting', 1), ('point', 1), ('researcher', 1)]
[('library', 2), ('new', 1), ('technology', 1), ('underpin', 1), ('future', 1), ('generation', 1), ('catalogue', 1), ('facilitate', 1), ('role', 1), ('providing', 1), ('information', 1), ('serving', 1), ('user', 1), ('fulfilling', 1), ('mission', 1), ('cultural', 1), ('heritage', 1), ('memory', 1), ('institution', 1), ('take', 1)]
[('full', 1), ('text', 1), ('article', 1), ('database', 1), ('digitized', 1), ('collection', 1), ('primary', 1), ('source', 1), ('material', 1), ('newly', 1), ('emerging', 1), ('electronic', 1), ('resource', 1), ('radically', 1), ('impacted', 1), ('research', 1), ('humanity', 1), ('conducted', 1), ('discovered', 1), ('book', 1), ('covering', 1), ('high', 1), ('quality', 1)]
[('information', 2), ('organization', 2), ('governance', 1), ('security', 1), ('show', 1), ('manager', 1), ('size', 1), ('create', 1), ('implement', 1), ('policy', 1), ('procedure', 1), ('training', 1), ('necessary', 1), ('keep', 1), ('important', 1), ('asset', 1), ('proprietary', 1), ('safe', 1), ('cyber', 1)]
[('speech', 2), ('analytics', 2), ('several', 2), ('intelligent', 1), ('signal', 1), ('processing', 1), ('investigates', 1), ('utilization', 1), ('across', 1), ('system', 1), ('real', 1), ('world', 1), ('activity', 1), ('including', 1), ('sharing', 1), ('data', 1), ('creating', 1), ('collaboration', 1), ('network', 1), ('participant', 1)]
[('cortex', 4), ('processor', 2), ('definitive', 1), ('guide', 1), ('arm', 1), ('focus', 1), ('armv', 1), ('architecture', 1), ('feature', 1), ('available', 1), ('book', 1), ('cover', 1), ('range', 1), ('topic', 1), ('including', 1), ('instruction', 1)]
[('user', 3), ('gap', 2), ('designer', 1), ('developer', 1), ('imagine', 1), ('really', 1), ('biggest', 1), ('problem', 1), ('product', 1), ('development', 1), ('observing', 1), ('experience', 1), ('rd', 1), ('edition', 1), ('help', 1), ('reader', 1), ('bridge', 1), ('understand', 1)]
[('neural', 2), ('network', 2), ('artificial', 1), ('intelligence', 1), ('age', 1), ('brain', 1), ('computing', 1), ('second', 1), ('edition', 1), ('demonstrates', 1), ('present', 1), ('disruptive', 1), ('implication', 1), ('application', 1), ('ai', 1), ('development', 1), ('unique', 1), ('attribute', 1), ('mainly', 1), ('machine', 1)]
[('method', 2), ('xai', 2), ('area', 2), ('explainable', 1), ('deep', 1), ('learning', 1), ('ai', 1), ('challenge', 1), ('present', 1), ('latest', 1), ('work', 1), ('leading', 1), ('researcher', 1), ('offering', 1), ('overview', 1), ('along', 1), ('several', 1), ('novel', 1), ('technical', 1), ('application', 1), ('address', 1), ('explainability', 1)]
[('healthcare', 3), ('blockchain', 2), ('industry', 2), ('data', 2), ('unleashing', 1), ('potential', 1), ('technology', 1), ('discus', 1), ('adaptation', 1), ('provide', 1), ('secured', 1), ('framework', 1), ('safeguard', 1), ('patient', 1), ('hospital', 1), ('book', 1)]
[('multifunctional', 2), ('nanocomposites', 2), ('drug', 2), ('delivery', 2), ('cancer', 2), ('targeted', 1), ('therapy', 1), ('explores', 1), ('design', 1), ('synthesis', 1), ('application', 1), ('different', 1), ('system', 1), ('treatment', 1), ('encompasses', 1), ('initial', 1), ('chapter', 1)]
[('formal', 2), ('design', 2), ('verification', 1), ('essential', 1), ('toolkit', 1), ('modern', 1), ('vlsi', 1), ('second', 1), ('edition', 1), ('present', 1), ('practical', 1), ('approach', 1), ('validation', 1), ('hand', 1), ('advice', 1), ('help', 1), ('working', 1), ('engineer', 1), ('integrate', 1), ('technique', 1), ('work', 1)]
[('digital', 3), ('forensic', 2), ('investigation', 2), ('cloud', 2), ('mobile', 2), ('application', 2), ('contemporary', 1), ('comprehensively', 1), ('discus', 1), ('implication', 1), ('storage', 1), ('service', 1), ('book', 1), ('provides', 1)]
[('hacking', 2), ('wireless', 1), ('access', 1), ('point', 1), ('cracking', 1), ('tracking', 1), ('signal', 1), ('jacking', 1), ('provides', 1), ('reader', 1), ('deeper', 1), ('understanding', 1), ('threat', 1), ('exist', 1), ('mobile', 1), ('phone', 1), ('laptop', 1), ('router', 1), ('navigation', 1), ('system', 1), ('addition', 1), ('application', 1)]
[('neural', 2), ('neuro', 2), ('fuzzy', 2), ('network', 2), ('chapter', 2), ('diffuse', 1), ('algorithm', 1), ('application', 1), ('control', 1), ('engineering', 1), ('signal', 1), ('processing', 1), ('present', 1), ('new', 1), ('approach', 1), ('training', 1), ('book', 1), ('divided', 1), ('six', 1), ('consists', 1)]
[('research', 2), ('method', 2), ('cyber', 2), ('security', 2), ('teach', 1), ('scientific', 1), ('generating', 1), ('impactful', 1), ('knowledge', 1), ('validating', 1), ('theory', 1), ('adding', 1), ('critical', 1), ('rigor', 1), ('field', 1), ('book', 1), ('show', 1), ('develop', 1), ('plan', 1), ('beginning', 1), ('starting', 1)]
[('pattern', 3), ('data', 3), ('analysis', 2), ('meta', 1), ('analytics', 1), ('consensus', 1), ('approach', 1), ('system', 1), ('present', 1), ('exhaustive', 1), ('set', 1), ('science', 1), ('use', 1), ('machine', 1), ('learning', 1), ('based', 1), ('task', 1), ('book', 1), ('virtually', 1), ('ensures', 1), ('least', 1)]
[('internet', 2), ('multimedia', 1), ('technology', 1), ('becoming', 1), ('sophisticated', 1), ('enabling', 1), ('accommodate', 1), ('rapidly', 1), ('growing', 1), ('audience', 1), ('full', 1), ('range', 1), ('service', 1), ('efficient', 1), ('delivery', 1), ('method', 1), ('although', 1), ('put', 1), ('communication', 1), ('education', 1)]
[('sniffer', 3), ('network', 2), ('optimization', 1), ('troubleshooting', 1), ('handbook', 1), ('introduces', 1), ('reader', 1), ('vast', 1), ('functionality', 1), ('suite', 1), ('solution', 1), ('associate', 1), ('ultimately', 1), ('focus', 1), ('affordable', 1), ('widely', 1), ('used', 1), ('product', 1)]
[('digital', 2), ('twin', 2), ('cloud', 2), ('model', 2), ('development', 1), ('deployment', 1), ('developing', 1), ('friendly', 1), ('dynamic', 1), ('using', 1), ('simulink', 1), ('simscapetm', 1), ('amazon', 1), ('aws', 1), ('promotes', 1), ('physic', 1), ('based', 1), ('approach', 1), ('field', 1), ('use', 1), ('multiphysics', 1)]
[('soft', 2), ('computing', 2), ('field', 1), ('emerging', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('last', 1), ('ten', 1), ('year', 1), ('devoted', 1), ('fuzzy', 1), ('engineering', 1), ('genetic', 1), ('algorithm', 1), ('subject', 1), ('called', 1), ('computational', 1), ('intelligence', 1), ('acceptance', 1)]
[('web', 3), ('knowledge', 2), ('data', 2), ('mining', 1), ('discovering', 1), ('hypertext', 1), ('first', 1), ('book', 1), ('devoted', 1), ('entirely', 1), ('technique', 1), ('producing', 1), ('vast', 1), ('body', 1), ('unstructured', 1), ('building', 1), ('initial', 1), ('survey', 1), ('infrastructural', 1), ('issue', 1), ('including', 1)]
[('ip', 3), ('smart', 2), ('object', 2), ('internet', 2), ('protocol', 2), ('interconnecting', 1), ('next', 1), ('explains', 1), ('become', 1), ('choice', 1), ('network', 1), ('successfully', 1), ('demonstrated', 1), ('ability', 1), ('interconnect', 1), ('billion', 1), ('digital', 1), ('system', 1)]
[('multicast', 5), ('next', 2), ('generation', 2), ('standard', 2), ('deploying', 1), ('enabled', 1), ('application', 1), ('label', 1), ('switched', 1), ('mpls', 1), ('vpns', 1), ('vpls', 1), ('wholesale', 1), ('ethernet', 1), ('provides', 1), ('comprehensive', 1), ('discussion', 1), ('mvpn', 1), ('based', 1)]
[('design', 4), ('research', 4), ('lab', 2), ('field', 2), ('showroom', 2), ('constructive', 2), ('practice', 1), ('focus', 1), ('type', 1), ('contemporary', 1), ('known', 1), ('look', 1), ('three', 1), ('approach', 1)]
[('case', 2), ('study', 2), ('method', 2), ('cybercrime', 1), ('investigation', 1), ('first', 1), ('look', 1), ('excerpt', 1), ('brett', 1), ('shaver', 1), ('new', 1), ('syngress', 1), ('book', 1), ('placing', 1), ('suspect', 1), ('behind', 1), ('keyboard', 1), ('effective', 1), ('learning', 1), ('process', 1), ('successful', 1)]
[('expert', 2), ('give', 2), ('guide', 1), ('technique', 1), ('technology', 1), ('software', 1), ('engineering', 1), ('optimally', 1), ('design', 1), ('implement', 1), ('embedded', 1), ('system', 1), ('written', 1), ('solution', 1), ('focus', 1), ('encyclopedic', 1), ('reference', 1), ('indispensable', 1), ('aid', 1)]
[('interfacing', 4), ('analog', 2), ('digital', 2), ('conversion', 2), ('personal', 1), ('computer', 1), ('using', 1), ('anyone', 1), ('interested', 1), ('port', 1), ('transducer', 1), ('convolution', 1), ('filter', 1), ('benefit', 1), ('reading', 1)]
[('cyber', 2), ('physical', 2), ('system', 2), ('modeling', 2), ('multi', 1), ('paradigm', 1), ('modelling', 1), ('explores', 1), ('analysis', 1), ('crucial', 1), ('activity', 1), ('development', 1), ('inherently', 1), ('cross', 1), ('disciplinary', 1), ('nature', 1), ('require', 1), ('distinct', 1), ('technique', 1)]
[('social', 2), ('medium', 2), ('health', 2), ('care', 2), ('blog', 1), ('tweet', 1), ('texting', 1), ('friending', 1), ('online', 1), ('professionalism', 1), ('summarizes', 1), ('common', 1), ('mistake', 1), ('legal', 1), ('ethical', 1), ('ramification', 1), ('made', 1), ('busy', 1), ('professional', 1), ('give', 1), ('best', 1)]
[('computer', 2), ('network', 2), ('using', 2), ('example', 2), ('system', 1), ('approach', 1), ('sixth', 1), ('edition', 1), ('explores', 1), ('key', 1), ('principle', 1), ('networking', 1), ('real', 1), ('world', 1), ('protocol', 1), ('design', 1), ('internet', 1), ('primary', 1), ('best', 1), ('selling', 1), ('classic', 1), ('textbook', 1)]
[('web', 2), ('science', 1), ('us', 1), ('resource', 1), ('communicate', 1), ('scientist', 1), ('general', 1), ('public', 1), ('turn', 1), ('brought', 1), ('disruptive', 1), ('technology', 1), ('semantic', 1), ('search', 1), ('cloud', 1), ('computing', 1), ('mobile', 1), ('application', 1), ('play', 1), ('term', 1)]
[('internet', 2), ('british', 2), ('weblogging', 1), ('blogging', 1), ('joined', 1), ('mail', 1), ('home', 1), ('page', 1), ('popular', 1), ('us', 1), ('book', 1), ('focus', 1), ('blogosphere', 1), ('comparing', 1), ('blogger', 1), ('researched', 1), ('motivation', 1), ('covered', 1), ('include', 1)]
[('welding', 4), ('process', 2), ('computational', 1), ('mechanic', 1), ('cwm', 1), ('provides', 1), ('important', 1), ('technique', 1), ('modelling', 1), ('simulation', 1), ('key', 1), ('tool', 1), ('improving', 1), ('design', 1), ('control', 1), ('performance', 1), ('welded', 1), ('component', 1)]
[('healthcare', 3), ('application', 3), ('management', 2), ('ai', 2), ('artificial', 1), ('intelligence', 1), ('introduces', 1), ('domain', 1), ('various', 1), ('algorithm', 1), ('across', 1), ('instead', 1), ('discussing', 1), ('first', 1), ('exploring', 1), ('afterward', 1)]
[('knowledge', 2), ('based', 1), ('configuration', 1), ('incorporates', 1), ('representation', 1), ('formalism', 1), ('capture', 1), ('complex', 1), ('product', 1), ('model', 1), ('reasoning', 1), ('method', 1), ('provide', 1), ('intelligent', 1), ('interactive', 1), ('behavior', 1), ('user', 1), ('book', 1), ('represents', 1), ('first', 1), ('time', 1), ('corporate', 1)]
[('sdn', 3), ('software', 1), ('defined', 1), ('network', 1), ('discus', 1), ('historical', 1), ('networking', 1), ('environment', 1), ('gave', 1), ('rise', 1), ('latest', 1), ('advance', 1), ('technology', 1), ('book', 1), ('give', 1), ('state', 1), ('art', 1), ('knowledge', 1), ('needed', 1), ('successful', 1), ('deployment', 1)]
[('device', 3), ('penetration', 2), ('low', 2), ('show', 2), ('powered', 2), ('hacking', 1), ('testing', 1), ('power', 1), ('perform', 1), ('test', 1), ('using', 1), ('small', 1), ('easily', 1), ('hidden', 1), ('battery', 1), ('use', 1), ('army', 1), ('costing', 1), ('le', 1)]
[('blockchain', 2), ('application', 2), ('healthcare', 2), ('technology', 2), ('informatics', 1), ('beyond', 1), ('offer', 1), ('comprehensive', 1), ('survey', 1), ('enabled', 1), ('book', 1), ('investigates', 1), ('latest', 1), ('research', 1), ('seek', 1), ('answer', 1)]
[('security', 2), ('analytics', 2), ('identify', 2), ('information', 1), ('give', 1), ('insight', 1), ('practice', 1), ('importantly', 1), ('utilize', 1), ('analytic', 1), ('technique', 1), ('trend', 1), ('outlier', 1), ('possible', 1), ('using', 1), ('traditional', 1)]
[('computer', 3), ('trend', 2), ('image', 2), ('processing', 2), ('vision', 2), ('science', 2), ('emerging', 1), ('pattern', 1), ('recognition', 1), ('discus', 1), ('latest', 1), ('imaging', 1), ('core', 1), ('consists', 1), ('three', 1), ('intertwined', 1), ('field', 1), ('namely', 1)]
[('data', 2), ('nearly', 1), ('every', 1), ('large', 1), ('corporation', 1), ('governmental', 1), ('agency', 1), ('taking', 1), ('fresh', 1), ('look', 1), ('current', 1), ('enterprise', 1), ('scale', 1), ('business', 1), ('intelligence', 1), ('bi', 1), ('warehousing', 1), ('implementation', 1), ('dawn', 1), ('big', 1), ('era', 1), ('see', 1), ('critical', 1), ('need', 1)]
[('autocad', 2), ('step', 2), ('running', 1), ('using', 1), ('gindis', 1), ('combination', 1), ('instruction', 1), ('example', 1), ('insightful', 1), ('explanation', 1), ('emphasis', 1), ('beginning', 1), ('core', 1), ('concept', 1), ('practical', 1), ('application', 1), ('engineering', 1), ('architecture', 1)]
[('traffic', 2), ('anomaly', 2), ('detection', 2), ('analysis', 2), ('present', 1), ('overview', 1), ('allowing', 1), ('monitor', 1), ('security', 1), ('aspect', 1), ('multimedia', 1), ('service', 1), ('author', 1), ('approach', 1), ('based', 1), ('time', 1), ('aggregation', 1), ('adjacent', 1), ('period', 1)]
[('hacker', 3), ('skill', 2), ('tcp', 2), ('ip', 2), ('essential', 1), ('need', 1), ('elite', 1), ('family', 1), ('book', 1), ('mainly', 1), ('thing', 1), ('protocol', 1), ('analysis', 1), ('better', 1), ('able', 1), ('master', 1)]
[('social', 1), ('medium', 1), ('provided', 1), ('endless', 1), ('opportunity', 1), ('marketer', 1), ('fuelling', 1), ('desire', 1), ('learn', 1), ('consumer', 1), ('dynamic', 1), ('online', 1), ('environment', 1), ('yet', 1), ('many', 1), ('organisation', 1), ('finding', 1), ('difficult', 1), ('create', 1), ('effective', 1), ('marketing', 1)]
[('text', 2), ('summarization', 2), ('studied', 1), ('half', 1), ('century', 1), ('traditional', 1), ('method', 1), ('process', 1), ('empirically', 1), ('neglect', 1), ('fundamental', 1), ('characteristic', 1), ('principle', 1), ('language', 1), ('use', 1), ('understanding', 1), ('automatic', 1), ('desirable', 1)]
[('differential', 2), ('method', 2), ('mechanical', 2), ('engineering', 2), ('dtm', 2), ('transformation', 1), ('problem', 1), ('focus', 1), ('applying', 1), ('range', 1), ('application', 1), ('author', 1), ('modify', 1), ('traditional', 1), ('produce', 1), ('additional', 1), ('multi', 1), ('step', 1)]
[('machine', 3), ('learning', 2), ('constraint', 1), ('based', 1), ('approach', 1), ('provides', 1), ('reader', 1), ('refreshing', 1), ('look', 1), ('basic', 1), ('model', 1), ('algorithm', 1), ('emphasis', 1), ('current', 1), ('topic', 1), ('interest', 1), ('includes', 1), ('neural', 1), ('network', 1), ('kernel', 1)]
[('medical', 2), ('image', 2), ('computing', 2), ('computer', 2), ('assisted', 2), ('intervention', 2), ('handbook', 1), ('present', 1), ('important', 1), ('advanced', 1), ('method', 1), ('state', 1), ('art', 1), ('research', 1), ('providing', 1), ('comprehensive', 1), ('reference', 1), ('current', 1)]
[('debugging', 3), ('real', 3), ('time', 3), ('system', 3), ('embedded', 2), ('art', 1), ('science', 1), ('technology', 1), ('tool', 1), ('give', 1), ('unique', 1), ('introduction', 1), ('skill', 1), ('strategy', 1), ('practically', 1), ('focused', 1), ('draw', 1)]
[('blockchain', 1), ('technology', 1), ('secure', 1), ('smart', 1), ('application', 1), ('across', 1), ('industry', 1), ('vertical', 1), ('volume', 1), ('present', 1), ('latest', 1), ('information', 1), ('type', 1), ('distributed', 1), ('ledger', 1), ('used', 1), ('maintaining', 1), ('permanent', 1), ('tamper', 1), ('proof', 1), ('record', 1), ('transactional', 1), ('data', 1)]
[('system', 2), ('unix', 2), ('book', 1), ('address', 1), ('topic', 1), ('area', 1), ('forensic', 1), ('analysis', 1), ('running', 1), ('variant', 1), ('operating', 1), ('choice', 1), ('hacker', 1), ('attack', 1), ('platform', 1), ('according', 1), ('idc', 1), ('report', 1), ('server', 1), ('account', 1)]
[('usability', 2), ('product', 2), ('measuring', 1), ('user', 1), ('experience', 1), ('provides', 1), ('first', 1), ('single', 1), ('source', 1), ('practical', 1), ('information', 1), ('enable', 1), ('professional', 1), ('developer', 1), ('effectively', 1), ('measure', 1), ('choosing', 1), ('right', 1), ('metric', 1), ('applying', 1)]
[('server', 2), ('remote', 2), ('user', 2), ('citrix', 1), ('presentation', 1), ('allows', 1), ('work', 1), ('network', 1), ('mean', 1), ('incredibly', 1), ('fast', 1), ('access', 1), ('data', 1), ('application', 1), ('third', 1), ('party', 1), ('vpn', 1), ('connection', 1), ('latency', 1), ('issue', 1)]
[('whale', 2), ('optimization', 2), ('algorithm', 2), ('handbook', 1), ('variant', 1), ('hybrid', 1), ('improvement', 1), ('application', 1), ('provides', 1), ('depth', 1), ('look', 1), ('emerging', 1), ('meta', 1), ('heuristic', 1), ('widely', 1), ('used', 1), ('science', 1), ('industry', 1)]
[('volume', 2), ('advance', 1), ('computer', 1), ('series', 1), ('began', 1), ('publication', 1), ('oldest', 1), ('continuously', 1), ('published', 1), ('anthology', 1), ('chronicle', 1), ('changing', 1), ('information', 1), ('technology', 1), ('field', 1), ('publish', 1)]
[('system', 3), ('embedded', 2), ('internet', 1), ('thing', 1), ('current', 1), ('major', 1), ('effort', 1), ('industry', 1), ('continue', 1), ('mainstream', 1), ('commercial', 1), ('activity', 1), ('foreseeable', 1), ('future', 1), ('design', 1), ('present', 1), ('methodology', 1), ('designing', 1)]
[('term', 3), ('energy', 2), ('management', 2), ('home', 2), ('short', 2), ('long', 2), ('residential', 1), ('microgrids', 1), ('scheduling', 1), ('planning', 1), ('provides', 1), ('depth', 1), ('exploration', 1), ('system', 1), ('hem', 1), ('focus', 1), ('practical', 1), ('application', 1)]
[('migrating', 2), ('cloud', 2), ('oracle', 2), ('client', 2), ('server', 2), ('modernization', 1), ('reference', 1), ('guide', 1), ('application', 1), ('organized', 1), ('chapter', 1), ('book', 1), ('offer', 1), ('tip', 1), ('planning', 1), ('determining', 1), ('effort', 1), ('budget', 1), ('designing', 1)]
[('pci', 2), ('data', 2), ('standard', 2), ('credit', 1), ('card', 1), ('industry', 1), ('established', 1), ('security', 1), ('provide', 1), ('minimum', 1), ('vendor', 1), ('protect', 1), ('ensure', 1), ('stolen', 1), ('fraudsters', 1), ('compliance', 1), ('provides', 1), ('information', 1), ('reader', 1), ('need', 1)]
[('asset', 2), ('record', 2), ('need', 2), ('order', 1), ('protect', 1), ('company', 1), ('information', 1), ('sensitive', 1), ('customer', 1), ('health', 1), ('care', 1), ('etc', 1), ('security', 1), ('practitioner', 1), ('first', 1), ('find', 1), ('protected', 1), ('risk', 1), ('exposed', 1), ('control', 1)]
[('intelligent', 2), ('system', 2), ('series', 1), ('comprises', 1), ('title', 1), ('present', 1), ('state', 1), ('art', 1), ('knowledge', 1), ('latest', 1), ('advance', 1), ('scope', 1), ('includes', 1), ('theoretical', 1), ('study', 1), ('design', 1), ('method', 1), ('real', 1), ('world', 1), ('implementation', 1), ('application', 1)]
[('writing', 1), ('interaction', 1), ('focus', 1), ('art', 1), ('creating', 1), ('information', 1), ('experience', 1), ('appears', 1), ('within', 1), ('software', 1), ('web', 1), ('application', 1), ('specifically', 1), ('form', 1), ('user', 1), ('interface', 1), ('text', 1), ('provides', 1), ('strategy', 1), ('ensuring', 1), ('consistent', 1), ('positive', 1)]
[('computational', 2), ('toxicology', 2), ('risk', 2), ('assessment', 2), ('method', 1), ('application', 1), ('essential', 1), ('reference', 1), ('translation', 1), ('data', 1), ('information', 1), ('used', 1), ('informed', 1), ('decision', 1), ('making', 1), ('book', 1)]
[('ethernet', 2), ('application', 2), ('network', 1), ('convergence', 1), ('next', 1), ('generation', 1), ('packet', 1), ('transport', 1), ('architecture', 1), ('provides', 1), ('guidance', 1), ('solution', 1), ('need', 1), ('understand', 1), ('emerging', 1), ('cloud', 1), ('computing', 1), ('mobile', 1), ('apps', 1)]
[('video', 2), ('new', 1), ('edition', 1), ('cctv', 1), ('high', 1), ('level', 1), ('professional', 1), ('reference', 1), ('expanded', 1), ('cover', 1), ('compression', 1), ('technique', 1), ('used', 1), ('increasing', 1), ('assortment', 1), ('digital', 1), ('recorder', 1), ('dvrs', 1), ('available', 1), ('market', 1), ('today', 1), ('addition', 1), ('demystifying', 1)]
[('enterprise', 2), ('application', 2), ('administration', 2), ('prepares', 1), ('full', 1), ('breadth', 1), ('work', 1), ('associated', 1), ('administering', 1), ('large', 1), ('book', 1), ('provides', 1), ('essential', 1), ('information', 1), ('task', 1), ('operating', 1), ('system', 1), ('network', 1)]
[('fundamental', 1), ('analytical', 1), ('application', 1), ('multi', 1), ('way', 1), ('calibration', 1), ('present', 1), ('researcher', 1), ('set', 1), ('effective', 1), ('tool', 1), ('use', 1), ('obtain', 1), ('maximum', 1), ('information', 1), ('instrumental', 1), ('data', 1), ('includes', 1), ('advanced', 1), ('technique', 1), ('method', 1)]
[('guerilla', 2), ('warfare', 2), ('define', 2), ('new', 2), ('type', 2), ('che', 1), ('guevara', 1), ('book', 1), ('helped', 1), ('delineate', 1), ('wake', 1), ('cuban', 1), ('revolution', 1), ('cyber', 1), ('help', 1), ('threat', 1), ('fighter', 1), ('appearing', 1), ('digital', 1)]
[('system', 4), ('self', 3), ('complex', 2), ('cloud', 1), ('organization', 1), ('management', 1), ('perspective', 1), ('provides', 1), ('insight', 1), ('intricate', 1), ('world', 1), ('organizing', 1), ('large', 1), ('scale', 1), ('distributed', 1), ('computer', 1), ('evolved', 1)]
[('discrete', 2), ('time', 2), ('neural', 2), ('observer', 1), ('analysis', 1), ('application', 1), ('present', 1), ('recent', 1), ('advance', 1), ('theory', 1), ('state', 1), ('estimation', 1), ('unknown', 1), ('nonlinear', 1), ('system', 1), ('multiple', 1), ('input', 1), ('output', 1), ('book', 1), ('includes', 1), ('rigorous', 1), ('mathematical', 1)]
[('method', 2), ('arcadia', 1), ('system', 1), ('engineering', 1), ('based', 1), ('use', 1), ('model', 1), ('focus', 1), ('collaborative', 1), ('definition', 1), ('evaluation', 1), ('exploitation', 1), ('architecture', 1), ('book', 1), ('describes', 1), ('fundamental', 1), ('contribution', 1)]
[('arm', 3), ('based', 3), ('project', 2), ('using', 2), ('mbed', 2), ('microcontroller', 1), ('give', 1), ('reader', 1), ('good', 1), ('understanding', 1), ('basic', 1), ('architecture', 1), ('programming', 1), ('microcontrollers', 1), ('software', 1), ('book', 1), ('present', 1), ('technology', 1), ('approach', 1)]
[('control', 3), ('engineering', 3), ('application', 2), ('biomedical', 2), ('system', 1), ('present', 1), ('different', 1), ('modeling', 1), ('field', 1), ('intended', 1), ('senior', 1), ('undergraduate', 1), ('graduate', 1), ('student', 1)]
[('best', 1), ('selling', 1), ('stealing', 1), ('network', 1), ('series', 1), ('reach', 1), ('climactic', 1), ('conclusion', 1), ('law', 1), ('enforcement', 1), ('organized', 1), ('crime', 1), ('form', 1), ('high', 1), ('tech', 1), ('web', 1), ('attempt', 1), ('bring', 1), ('shadowy', 1), ('hacker', 1), ('villain', 1), ('known', 1), ('knuth', 1), ('technically', 1), ('sophisticated', 1)]
[('present', 2), ('book', 1), ('opinion', 1), ('constitutes', 1), ('basis', 1), ('theory', 1), ('mu', 1), ('calculus', 1), ('considered', 1), ('algebraic', 1), ('system', 1), ('rather', 1), ('logic', 1), ('wished', 1), ('subject', 1), ('unified', 1), ('way', 1), ('form', 1), ('general', 1), ('possible', 1)]
[('moderator', 1), ('survival', 1), ('guide', 1), ('indispensable', 1), ('resource', 1), ('navigating', 1), ('rocky', 1), ('shoal', 1), ('user', 1), ('research', 1), ('session', 1), ('inside', 1), ('find', 1), ('guidance', 1), ('nearly', 1), ('diverse', 1), ('situation', 1), ('ranging', 1), ('business', 1), ('usual', 1), ('tricky', 1)]
[('data', 2), ('mining', 2), ('currently', 1), ('major', 1), ('challenge', 1), ('application', 1), ('geosciences', 1), ('due', 1), ('primarily', 1), ('fact', 1), ('wealth', 1), ('available', 1), ('amid', 1), ('absence', 1), ('knowledge', 1), ('expertise', 1), ('necessary', 1), ('analyze', 1)]
[('news', 3), ('monitoring', 3), ('search', 2), ('need', 2), ('book', 1), ('aimed', 1), ('professional', 1), ('strategic', 1), ('surrounding', 1), ('world', 1), ('user', 1), ('find', 1), ('best', 1), ('source', 1), ('service', 1), ('strategy', 1), ('technique', 1)]
[('cyber', 4), ('crime', 2), ('terrorism', 2), ('investigator', 2), ('computer', 2), ('handbook', 1), ('vital', 1), ('tool', 1), ('arsenal', 1), ('today', 1), ('programmer', 1), ('student', 1), ('network', 1), ('become', 1), ('ubiquitous', 1), ('throughout', 1), ('world', 1)]
[('computer', 2), ('first', 1), ('volume', 1), ('advance', 1), ('presented', 1), ('detailed', 1), ('coverage', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('provided', 1), ('contributor', 1), ('medium', 1), ('explore', 1)]
[('covert', 2), ('communication', 2), ('method', 2), ('hiding', 1), ('behind', 1), ('keyboard', 1), ('uncovering', 1), ('forensic', 1), ('analysis', 1), ('expose', 1), ('latest', 1), ('electronic', 1), ('technique', 1), ('used', 1), ('cybercriminals', 1), ('along', 1), ('needed', 1), ('investigative', 1), ('identifying', 1)]
[('application', 3), ('trend', 2), ('biology', 2), ('system', 2), ('cover', 2), ('emerging', 1), ('infrastructure', 1), ('computational', 1), ('bioinformatics', 1), ('latest', 1), ('field', 1), ('special', 1), ('emphasis', 1), ('first', 1), ('part', 1)]
[('big', 2), ('data', 2), ('technology', 2), ('principle', 1), ('paradigm', 1), ('capture', 1), ('state', 1), ('art', 1), ('research', 1), ('architectural', 1), ('aspect', 1), ('application', 1), ('book', 1), ('identifies', 1), ('potential', 1), ('future', 1), ('direction', 1), ('facilitate', 1), ('insight', 1)]
[('bioinformatics', 2), ('method', 2), ('sequence', 2), ('statistic', 1), ('multiple', 1), ('alignment', 1), ('provides', 1), ('depth', 1), ('introduction', 1), ('widely', 1), ('used', 1), ('software', 1), ('field', 1), ('increasing', 1), ('flood', 1), ('information', 1), ('genome', 1)]
[('recognition', 2), ('human', 1), ('unconstrained', 1), ('environment', 1), ('provides', 1), ('unique', 1), ('picture', 1), ('complete', 1), ('wild', 1), ('biometric', 1), ('processing', 1), ('chain', 1), ('data', 1), ('acquisition', 1), ('detection', 1), ('segmentation', 1), ('encoding', 1), ('matching', 1), ('reaction', 1)]
[('network', 2), ('software', 1), ('networking', 1), ('industry', 1), ('experiencing', 1), ('rapid', 1), ('development', 1), ('deployment', 1), ('function', 1), ('visualization', 1), ('nfv', 1), ('technology', 1), ('enterprise', 1), ('cloud', 1), ('data', 1), ('center', 1), ('primary', 1), ('reason', 1), ('technological', 1), ('trend', 1)]
[('smart', 3), ('city', 3), ('cybersecurity', 1), ('privacy', 1), ('examines', 1), ('latest', 1), ('research', 1), ('development', 1), ('outcome', 1), ('safe', 1), ('secure', 1), ('trusting', 1), ('resident', 1), ('improve', 1), ('quality', 1), ('life', 1), ('citizen', 1), ('energy', 1), ('water', 1), ('usage', 1)]
[('handbook', 2), ('probabilistic', 2), ('model', 2), ('carefully', 1), ('examines', 1), ('application', 1), ('advanced', 1), ('conventional', 1), ('engineering', 1), ('field', 1), ('comprehensive', 1), ('practitioner', 1), ('researcher', 1), ('scientist', 1), ('find', 1), ('detailed', 1), ('explanation', 1)]
[('delay', 2), ('tolerant', 2), ('network', 2), ('advance', 1), ('architecture', 1), ('enhanced', 1), ('performance', 1), ('second', 1), ('edition', 1), ('provides', 1), ('important', 1), ('overview', 1), ('dtns', 1), ('researcher', 1), ('electronics', 1), ('computer', 1), ('engineering', 1), ('telecommunication', 1), ('networking', 1)]
[('medical', 3), ('informatics', 3), ('machine', 2), ('learning', 2), ('big', 2), ('data', 2), ('iot', 2), ('technique', 2), ('focus', 1), ('latest', 1), ('adopted', 1), ('field', 1), ('based', 1), ('play', 1), ('significant', 1), ('role', 1)]
[('automated', 3), ('diagnosis', 2), ('cardiac', 2), ('disease', 2), ('image', 1), ('processing', 1), ('highlight', 1), ('current', 1), ('emerging', 1), ('technology', 1), ('present', 1), ('concept', 1), ('practical', 1), ('algorithm', 1), ('including', 1), ('technique', 1)]
[('image', 4), ('processing', 2), ('microscope', 1), ('second', 1), ('edition', 1), ('introduces', 1), ('basic', 1), ('fundamental', 1), ('formation', 1), ('microscopy', 1), ('including', 1), ('importance', 1), ('digitization', 1), ('display', 1), ('key', 1), ('quality', 1), ('visualization', 1), ('analysis', 1)]
[('deep', 2), ('design', 2), ('principle', 2), ('task', 2), ('network', 1), ('medical', 1), ('image', 1), ('computing', 1), ('application', 1), ('cover', 1), ('range', 1), ('mic', 1), ('discus', 1), ('learning', 1), ('approach', 1), ('medicine', 1), ('include', 1), ('skin', 1), ('disease', 1), ('classification', 1), ('vertebra', 1)]
[('testing', 2), ('artificial', 1), ('intelligence', 1), ('method', 1), ('optimization', 1), ('software', 1), ('process', 1), ('practical', 1), ('example', 1), ('exercise', 1), ('present', 1), ('different', 1), ('ai', 1), ('based', 1), ('solution', 1), ('overcoming', 1), ('uncertainty', 1), ('found', 1), ('many', 1), ('initial', 1), ('problem', 1), ('concept', 1)]
[('learning', 4), ('meta', 2), ('learn', 1), ('become', 1), ('increasingly', 1), ('popular', 1), ('recent', 1), ('year', 1), ('instead', 1), ('building', 1), ('ai', 1), ('system', 1), ('scratch', 1), ('machine', 1), ('task', 1), ('construct', 1), ('computational', 1), ('mechanism', 1), ('systematically', 1), ('efficiently', 1)]
[('metaheuristics', 2), ('algorithm', 2), ('application', 2), ('comprehensive', 1), ('present', 1), ('foundational', 1), ('underpinnings', 1), ('broad', 1), ('scope', 1), ('real', 1), ('world', 1), ('across', 1), ('variety', 1), ('research', 1), ('field', 1), ('book', 1), ('start', 1), ('fundamental', 1)]
[('multifunction', 1), ('device', 1), ('combine', 1), ('essential', 1), ('fax', 1), ('machine', 1), ('printer', 1), ('scanner', 1), ('copier', 1), ('peripheral', 1), ('small', 1), ('home', 1), ('office', 1), ('market', 1), ('equipment', 1), ('grows', 1), ('need', 1), ('skilled', 1), ('repair', 1), ('maintenance', 1), ('increase', 1)]
[('computer', 2), ('first', 1), ('volume', 1), ('advance', 1), ('presented', 1), ('detailed', 1), ('coverage', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('provided', 1), ('contributor', 1), ('medium', 1), ('explore', 1)]
[('marte', 2), ('modeling', 1), ('analysis', 1), ('real', 1), ('time', 1), ('embedded', 1), ('system', 1), ('uml', 1), ('explains', 1), ('apply', 1), ('complex', 1), ('standard', 1), ('practical', 1), ('situation', 1), ('approachable', 1), ('reference', 1), ('provides', 1), ('handy', 1), ('user', 1), ('guide', 1), ('illustrating', 1), ('numerous', 1), ('example', 1)]
[('computer', 2), ('first', 1), ('volume', 1), ('advance', 1), ('presented', 1), ('detailed', 1), ('coverage', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('provided', 1), ('contributor', 1), ('medium', 1), ('explore', 1)]
[('security', 2), ('seems', 1), ('every', 1), ('day', 1), ('new', 1), ('story', 1), ('lapse', 1), ('emergency', 1), ('lock', 1), ('violent', 1), ('act', 1), ('taking', 1), ('place', 1), ('school', 1), ('somewhere', 1), ('united', 1), ('state', 1), ('today', 1), ('simply', 1), ('inexcusable', 1), ('adequate', 1), ('measure', 1)]
[('problem', 2), ('solving', 2), ('computing', 2), ('system', 2), ('high', 1), ('performance', 1), ('situational', 1), ('awareness', 1), ('approach', 1), ('linux', 1), ('focus', 1), ('understanding', 1), ('giant', 1), ('grid', 1), ('cohesive', 1), ('unlike', 1), ('title', 1), ('general', 1), ('administration', 1), ('book', 1)]
[('information', 3), ('data', 2), ('use', 2), ('reveal', 1), ('correct', 1), ('make', 1), ('best', 1), ('widespread', 1), ('computer', 1), ('reliance', 1), ('generated', 1), ('made', 1), ('question', 1), ('increasingly', 1), ('common', 1)]
[('computer', 2), ('advance', 1), ('carry', 1), ('tradition', 1), ('excellence', 1), ('presenting', 1), ('detailed', 1), ('coverage', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('book', 1), ('provides', 1), ('contributor', 1), ('medium', 1), ('explore', 1)]
[('assembly', 3), ('language', 3), ('programming', 3), ('arm', 2), ('processor', 2), ('modern', 1), ('tutorial', 1), ('based', 1), ('book', 1), ('using', 1), ('present', 1), ('concept', 1), ('different', 1), ('way', 1), ('slowly', 1), ('building', 1), ('simple', 1)]
[('cyber', 2), ('physical', 2), ('system', 2), ('smart', 2), ('grid', 2), ('communication', 1), ('control', 1), ('theory', 1), ('design', 1), ('application', 1), ('provides', 1), ('reader', 1), ('need', 1), ('know', 1), ('cps', 1), ('attracted', 1), ('intensive', 1), ('study', 1)]
[('system', 2), ('architecture', 2), ('arcadia', 2), ('method', 2), ('modeling', 1), ('illustrative', 1), ('guide', 1), ('understanding', 1), ('implementation', 1), ('model', 1), ('based', 1), ('engineering', 1), ('using', 1), ('capella', 1), ('new', 1), ('open', 1), ('source', 1), ('solution', 1)]
[('mrc', 2), ('machine', 1), ('reading', 1), ('comprehension', 1), ('cutting', 1), ('edge', 1), ('technology', 1), ('natural', 1), ('language', 1), ('processing', 1), ('nlp', 1), ('recently', 1), ('advanced', 1), ('significantly', 1), ('surpassing', 1), ('human', 1), ('parity', 1), ('several', 1), ('public', 1), ('datasets', 1), ('widely', 1), ('deployed', 1), ('industry', 1)]
[('omics', 2), ('analysis', 2), ('deep', 2), ('learning', 2), ('network', 2), ('mining', 2), ('artificial', 1), ('intelligence', 1), ('bioinformatics', 1), ('review', 1), ('main', 1), ('application', 1), ('topic', 1), ('book', 1), ('includes', 1), ('rigorous', 1), ('introduction', 1)]
[('camd', 3), ('design', 2), ('molecule', 2), ('property', 2), ('computer', 1), ('aided', 1), ('molecular', 1), ('refers', 1), ('desirable', 1), ('determines', 1), ('match', 1), ('specified', 1), ('set', 1), ('target', 1), ('technique', 1), ('large', 1), ('potential', 1)]
[('objective', 1), ('publication', 1), ('comprehensively', 1), ('discus', 1), ('possibility', 1), ('producing', 1), ('steel', 1), ('pre', 1), ('determined', 1), ('attribute', 1), ('demanded', 1), ('customer', 1), ('fit', 1), ('exacting', 1), ('specification', 1), ('information', 1), ('presented', 1), ('book', 1), ('designed', 1)]
[('degree', 3), ('imprecise', 2), ('membership', 2), ('fuzzy', 1), ('set', 1), ('logic', 1), ('theory', 1), ('suggest', 1), ('natural', 1), ('language', 1), ('linguistic', 1), ('expression', 1), ('assessed', 1), ('matter', 1), ('general', 1), ('notion', 1), ('requires', 1), ('type', 1)]
[('unix', 3), ('openvms', 3), ('user', 1), ('make', 1), ('easy', 1), ('see', 1), ('common', 1), ('transfer', 1), ('knowledge', 1), ('experience', 1), ('world', 1), ('shop', 1), ('rely', 1), ('operating', 1), ('system', 1), ('critical', 1)]
[('area', 2), ('temporal', 2), ('reasoning', 2), ('artificial', 2), ('intelligence', 2), ('collection', 1), ('represents', 1), ('primary', 1), ('reference', 1), ('work', 1), ('researcher', 1), ('student', 1), ('vital', 1), ('role', 1), ('play', 1), ('many', 1), ('particularly', 1), ('yet', 1)]
[('security', 2), ('strategy', 2), ('internet', 1), ('incorporates', 1), ('technology', 1), ('needed', 1), ('support', 1), ('solid', 1), ('policy', 1), ('process', 1), ('incorporated', 1), ('order', 1), ('work', 1), ('new', 1), ('method', 1), ('breaking', 1), ('corporate', 1), ('network', 1)]
[('problem', 2), ('book', 1), ('designed', 1), ('researcher', 1), ('student', 1), ('practitioner', 1), ('interested', 1), ('using', 1), ('fast', 1), ('efficient', 1), ('iterative', 1), ('method', 1), ('approximate', 1), ('solution', 1), ('nonlinear', 1), ('equation', 1), ('following', 1), ('four', 1), ('major', 1), ('addressed', 1), ('show', 1)]
[('hardware', 2), ('firmware', 2), ('care', 1), ('interaction', 1), ('interface', 1), ('critical', 1), ('solid', 1), ('design', 1), ('married', 1), ('adaptive', 1), ('access', 1), ('capability', 1), ('application', 1), ('overcome', 1), ('limitation', 1), ('caused', 1), ('poor', 1), ('communication', 1)]
[('skin', 2), ('appearance', 2), ('light', 1), ('interaction', 1), ('immerses', 1), ('fascinating', 1), ('application', 1), ('area', 1), ('computer', 1), ('graphic', 1), ('simulation', 1), ('book', 1), ('first', 1), ('illuminates', 1), ('fundamental', 1), ('biophysical', 1), ('process', 1), ('affect', 1), ('review', 1)]
[('system', 4), ('automation', 1), ('often', 1), ('referred', 1), ('scada', 1), ('involve', 1), ('programming', 1), ('several', 1), ('level', 1), ('include', 1), ('computer', 1), ('type', 1), ('field', 1), ('controller', 1), ('monitor', 1), ('control', 1), ('plant', 1), ('equipment', 1), ('conveyor', 1), ('pump', 1), ('user', 1), ('workstation', 1)]
[('software', 3), ('development', 3), ('agile', 2), ('approach', 1), ('significant', 1), ('impact', 1), ('industrial', 1), ('practice', 1), ('today', 1), ('penetrated', 1), ('company', 1), ('across', 1), ('globe', 1), ('intention', 1), ('increase', 1), ('quality', 1)]
[('digital', 2), ('community', 2), ('dialogue', 1), ('avatar', 1), ('troll', 1), ('puppet', 1), ('explores', 1), ('use', 1), ('platform', 1), ('portal', 1), ('application', 1), ('daily', 1), ('life', 1), ('build', 1), ('relationship', 1), ('beyond', 1), ('geographical', 1), ('locality', 1), ('family', 1), ('link', 1), ('book', 1)]
[('atila', 1), ('finite', 1), ('element', 1), ('method', 1), ('fem', 1), ('software', 1), ('facilitates', 1), ('modelling', 1), ('analysis', 1), ('application', 1), ('using', 1), ('piezoelectric', 1), ('magnetostrictor', 1), ('shape', 1), ('memory', 1), ('material', 1), ('allows', 1), ('entire', 1), ('design', 1), ('constructed', 1), ('refined', 1), ('optimized', 1), ('production', 1)]
[('data', 2), ('mining', 2), ('whether', 1), ('brand', 1), ('new', 1), ('working', 1), ('tenth', 1), ('predictive', 1), ('analytics', 1), ('project', 1), ('commercial', 1), ('accessible', 1), ('reference', 1), ('outlining', 1), ('entire', 1), ('process', 1), ('related', 1), ('theme', 1), ('book', 1), ('learn', 1)]
[('algorithm', 3), ('nature', 2), ('inspired', 2), ('optimization', 2), ('introduction', 2), ('provides', 1), ('systematic', 1), ('major', 1), ('book', 1), ('unified', 1), ('approach', 1), ('balancing', 1), ('theoretical', 1), ('background', 1), ('practical', 1)]
[('recognition', 3), ('user', 2), ('plan', 1), ('activity', 1), ('intent', 1), ('together', 1), ('combine', 1), ('unify', 1), ('technique', 1), ('modeling', 1), ('machine', 1), ('vision', 1), ('intelligent', 1), ('interface', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('autonomous', 1), ('multi', 1), ('agent', 1), ('system', 1), ('natural', 1), ('language', 1)]
[('method', 3), ('engineering', 2), ('computational', 1), ('brings', 1), ('light', 1), ('numerous', 1), ('us', 1), ('numerical', 1), ('clearly', 1), ('explains', 1), ('application', 1), ('mathematically', 1), ('practically', 1), ('emphasizing', 1), ('programming', 1), ('aspect', 1), ('appropriate', 1)]
[('reference', 2), ('pic', 2), ('first', 1), ('time', 1), ('single', 1), ('book', 1), ('provides', 1), ('beginner', 1), ('coherent', 1), ('logical', 1), ('introduction', 1), ('hardware', 1), ('software', 1), ('bringing', 1), ('together', 1), ('key', 1), ('material', 1), ('manual', 1), ('data', 1), ('sheet', 1), ('xc', 1)]
[('board', 3), ('cyber', 2), ('director', 2), ('member', 2), ('security', 1), ('awareness', 1), ('corporate', 1), ('concise', 1), ('overview', 1), ('threat', 1), ('business', 1), ('livelihood', 1), ('need', 1), ('especially', 1), ('lower', 1), ('risk', 1)]
[('quantum', 7), ('communication', 2), ('network', 2), ('sensing', 2), ('represents', 1), ('self', 1), ('contained', 1), ('introduction', 1), ('error', 1), ('correction', 1), ('start', 1), ('basic', 1), ('concept', 1), ('classical', 1), ('detection', 1)]
[('audio', 3), ('attack', 2), ('watermarking', 2), ('content', 1), ('security', 1), ('analysis', 1), ('describes', 1), ('research', 1), ('using', 1), ('common', 1), ('method', 1), ('four', 1), ('different', 1), ('genre', 1), ('music', 1), ('providing', 1), ('result', 1), ('many', 1), ('test', 1), ('determine', 1), ('robustness', 1)]
[('certifiable', 2), ('software', 2), ('application', 2), ('assurance', 2), ('main', 1), ('process', 1), ('dedicated', 1), ('establishment', 1), ('quality', 1), ('safety', 1), ('establishes', 1), ('context', 1), ('achieving', 1), ('author', 1), ('cover', 1), ('recent', 1)]
[('cissp', 2), ('edition', 2), ('study', 1), ('guide', 1), ('fourth', 1), ('provides', 1), ('latest', 1), ('update', 1), ('certification', 1), ('prestigious', 1), ('globally', 1), ('recognized', 1), ('vendor', 1), ('neutral', 1), ('exam', 1), ('information', 1), ('security', 1), ('professional', 1), ('new', 1), ('reader', 1), ('learn', 1)]
[('anti', 3), ('cd', 3), ('antibody', 3), ('resistance', 2), ('approach', 2), ('reversal', 2), ('present', 1), ('depth', 1), ('content', 1), ('written', 1), ('international', 1), ('expert', 1), ('study', 1), ('used', 1)]
[('advance', 1), ('genomic', 1), ('technology', 1), ('microarrays', 1), ('high', 1), ('throughput', 1), ('sequencing', 1), ('expanded', 1), ('realm', 1), ('possibility', 1), ('capturing', 1), ('data', 1), ('analyzing', 1), ('using', 1), ('automatedcomputer', 1), ('driven', 1), ('bioinformatics', 1), ('tool', 1), ('completion', 1)]
[('window', 2), ('reference', 2), ('system', 2), ('microsoft', 1), ('administrator', 1), ('cover', 1), ('various', 1), ('aspect', 1), ('including', 1), ('general', 1), ('information', 1), ('installation', 1), ('upgrade', 1), ('explains', 1), ('deploy', 1), ('use', 1), ('manage', 1), ('operating', 1)]
[('volume', 2), ('advance', 1), ('computer', 1), ('series', 1), ('began', 1), ('publication', 1), ('oldest', 1), ('continuously', 1), ('published', 1), ('anthology', 1), ('chronicle', 1), ('changing', 1), ('information', 1), ('technology', 1), ('field', 1), ('publish', 1)]
[('volume', 3), ('series', 2), ('chapter', 2), ('first', 1), ('oldest', 1), ('still', 1), ('published', 1), ('cover', 1), ('new', 1), ('development', 1), ('computer', 1), ('technology', 1), ('contains', 1), ('produced', 1), ('annually', 1), ('present', 1)]
[('cloud', 2), ('computing', 2), ('provide', 1), ('virtually', 1), ('unlimited', 1), ('scalable', 1), ('high', 1), ('performance', 1), ('resource', 1), ('workflow', 1), ('often', 1), ('underlie', 1), ('many', 1), ('large', 1), ('scale', 1), ('data', 1), ('computation', 1), ('intensive', 1), ('science', 1), ('application', 1), ('earthquake', 1), ('modelling', 1), ('weather', 1), ('forecasting', 1)]
[('expert', 2), ('give', 2), ('embedded', 2), ('guide', 1), ('technique', 1), ('technology', 1), ('multicore', 1), ('optimally', 1), ('design', 1), ('implement', 1), ('system', 1), ('written', 1), ('solution', 1), ('focus', 1), ('encyclopedic', 1), ('reference', 1), ('indispensable', 1), ('aid', 1)]
[('differential', 2), ('equation', 2), ('mathematica', 1), ('fourth', 1), ('edition', 1), ('supplementing', 1), ('reference', 1), ('us', 1), ('fundamental', 1), ('concept', 1), ('popular', 1), ('platform', 1), ('solve', 1), ('analytically', 1), ('numerically', 1), ('graphically', 1), ('interest', 1)]
[('fundraising', 2), ('successful', 1), ('academic', 1), ('library', 1), ('philanthropy', 1), ('higher', 1), ('education', 1), ('cover', 1), ('task', 1), ('often', 1), ('grouped', 1), ('combination', 1), ('role', 1), ('include', 1), ('example', 1), ('university', 1), ('museum', 1), ('performance', 1), ('venue', 1), ('thus', 1), ('diluting', 1)]
[('zettabyte', 3), ('data', 3), ('billion', 1), ('terabyte', 1), ('generated', 1), ('predicted', 1), ('figure', 1), ('staggering', 1), ('perfectly', 1), ('illustrate', 1), ('new', 1), ('era', 1), ('deluge', 1), ('become', 1), ('major', 1), ('economic', 1)]
[('computational', 1), ('framework', 1), ('system', 1), ('model', 1), ('application', 1), ('provides', 1), ('overview', 1), ('advanced', 1), ('perspective', 1), ('bridge', 1), ('gap', 1), ('frontline', 1), ('research', 1), ('practical', 1), ('effort', 1), ('unique', 1), ('showing', 1), ('interdisciplinary', 1), ('nature', 1), ('area', 1)]
[('cybercrime', 2), ('corporate', 2), ('security', 2), ('business', 1), ('strategy', 1), ('global', 1), ('examines', 1), ('three', 1), ('prevalent', 1), ('afflicting', 1), ('today', 1), ('professional', 1), ('piracy', 1), ('espionage', 1), ('computer', 1), ('hacking', 1), ('demonstrating', 1)]
[('model', 3), ('low', 2), ('rank', 2), ('visual', 2), ('analysis', 2), ('algorithm', 2), ('application', 2), ('theory', 1), ('present', 1), ('state', 1), ('art', 1), ('provides', 1), ('insight', 1), ('idea', 1), ('behind', 1), ('giving', 1)]
[('retinal', 2), ('image', 2), ('analysis', 2), ('computational', 1), ('tool', 1), ('application', 1), ('perspective', 1), ('give', 1), ('overview', 1), ('contemporary', 1), ('ria', 1), ('context', 1), ('healthcare', 1), ('informatics', 1), ('artificial', 1), ('intelligence', 1), ('specifically', 1), ('provides', 1), ('history', 1)]
[('ascend', 2), ('ai', 2), ('processor', 2), ('application', 2), ('architecture', 1), ('programming', 1), ('principle', 1), ('cann', 1), ('offer', 1), ('depth', 1), ('using', 1), ('huawei', 1), ('chip', 1), ('presenting', 1), ('analyzing', 1), ('unique', 1), ('performance', 1), ('attribute', 1), ('title', 1)]
[('volume', 2), ('advance', 2), ('new', 2), ('principle', 1), ('big', 1), ('graph', 1), ('depth', 1), ('insight', 1), ('computer', 1), ('series', 1), ('highlight', 1), ('field', 1), ('presenting', 1), ('interesting', 1), ('chapter', 1), ('variety', 1), ('topic', 1), ('including', 1), ('cesdam', 1), ('centered', 1), ('subgraph', 1), ('data', 1)]
[('control', 3), ('system', 2), ('neural', 2), ('problem', 1), ('offer', 1), ('industrially', 1), ('important', 1), ('application', 1), ('guide', 1), ('understanding', 1), ('working', 1), ('network', 1), ('represents', 1), ('date', 1), ('development', 1), ('rapidly', 1), ('growing', 1)]
[('mobile', 3), ('sensor', 2), ('context', 2), ('aware', 2), ('computing', 2), ('guide', 2), ('useful', 1), ('explains', 1), ('hardware', 1), ('software', 1), ('operating', 1), ('system', 1), ('converge', 1), ('create', 1), ('new', 1), ('generation', 1), ('application', 1), ('cohesive', 1)]
[('supply', 2), ('chain', 2), ('sustainable', 1), ('management', 1), ('involves', 1), ('integrating', 1), ('environmentally', 1), ('financially', 1), ('viable', 1), ('practice', 1), ('complete', 1), ('lifecycle', 1), ('product', 1), ('design', 1), ('development', 1), ('material', 1), ('selection', 1), ('sourcing', 1), ('manufacturing', 1), ('packaging', 1)]
[('stochastic', 1), ('local', 1), ('search', 1), ('sl', 1), ('algorithm', 1), ('among', 1), ('prominent', 1), ('successful', 1), ('technique', 1), ('solving', 1), ('computationally', 1), ('difficult', 1), ('problem', 1), ('many', 1), ('area', 1), ('computer', 1), ('science', 1), ('operation', 1), ('research', 1), ('including', 1), ('propositional', 1), ('satisfiability', 1)]
[('multifunctional', 2), ('nanoparticles', 2), ('cancer', 2), ('therapeutic', 1), ('application', 1), ('design', 1), ('challenge', 1), ('describes', 1), ('use', 1), ('treatment', 1), ('highlighting', 1), ('toxicological', 1), ('evaluation', 1), ('opportunity', 1), ('prospective', 1)]
[('cyber', 3), ('security', 2), ('overview', 2), ('threat', 2), ('awareness', 1), ('accountant', 1), ('cpa', 1), ('concise', 1), ('posed', 1), ('company', 1), ('organization', 1), ('book', 1), ('provide', 1), ('business', 1), ('livelihood', 1), ('discus', 1)]
[('last', 2), ('book', 2), ('sold', 2), ('unit', 2), ('information', 2), ('johnny', 1), ('long', 1), ('worldwide', 1), ('kevin', 1), ('mitnick', 1), ('north', 1), ('america', 1), ('cliché', 1), ('go', 1), ('power', 1), ('age', 1), ('technology', 1), ('increasing', 1), ('majority', 1), ('world', 1), ('stored', 1)]
[('data', 2), ('amount', 1), ('business', 1), ('accumulates', 1), ('doubling', 1), ('every', 1), ('month', 1), ('professional', 1), ('need', 1), ('know', 1), ('develop', 1), ('system', 1), ('archiving', 1), ('important', 1), ('database', 1), ('way', 1), ('satisfies', 1), ('regulatory', 1), ('requirement', 1), ('durable', 1)]
[('perfect', 2), ('sql', 2), ('server', 2), ('product', 2), ('book', 1), ('multi', 1), ('tasked', 1), ('manager', 1), ('responsible', 1), ('securing', 1), ('latest', 1), ('version', 1), ('cheat', 1), ('series', 1), ('ambitious', 1), ('average', 1), ('sysadmin', 1), ('present', 1)]
[('network', 2), ('science', 2), ('mined', 1), ('individual', 1), ('large', 1), ('present', 1), ('overview', 1), ('century', 1), ('research', 1), ('analyzing', 1), ('growth', 1), ('individualist', 1), ('society', 1), ('including', 1), ('method', 1), ('computer', 1), ('address', 1), ('question', 1), ('within', 1), ('social', 1), ('book', 1)]
[('video', 2), ('intelligent', 1), ('image', 1), ('compression', 1), ('communicating', 1), ('picture', 1), ('second', 1), ('edition', 1), ('explains', 1), ('requirement', 1), ('analysis', 1), ('design', 1), ('application', 1), ('modern', 1), ('coding', 1), ('system', 1), ('draw', 1), ('author', 1), ('extensive', 1), ('academic', 1), ('professional', 1), ('experience', 1)]
[('computer', 2), ('volume', 2), ('advance', 1), ('present', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('updated', 1), ('including', 1), ('new', 1), ('chapter', 1), ('downlink', 1), ('resource', 1), ('allocation', 1), ('satellite', 1), ('airborne', 1), ('terrestrial', 1), ('network', 1)]
[('many', 2), ('field', 1), ('statistic', 1), ('affect', 1), ('area', 1), ('scientific', 1), ('activity', 1), ('matter', 1), ('public', 1), ('policy', 1), ('branching', 1), ('rapidly', 1), ('different', 1), ('subject', 1), ('series', 1), ('handbook', 1), ('way', 1), ('comprehensively', 1)]
[('system', 2), ('study', 1), ('application', 1), ('spatial', 1), ('information', 1), ('developed', 1), ('primarily', 1), ('use', 1), ('computer', 1), ('geosciences', 1), ('principle', 1), ('function', 1), ('capturing', 1), ('storing', 1), ('representing', 1), ('manipulating', 1), ('displaying', 1), ('data', 1)]
[('network', 3), ('intrusion', 2), ('nearly', 1), ('every', 1), ('business', 1), ('depends', 1), ('provide', 1), ('information', 1), ('service', 1), ('carry', 1), ('essential', 1), ('activity', 1), ('attack', 1), ('growing', 1), ('increasingly', 1), ('frequent', 1), ('severe', 1), ('occur', 1), ('imperative', 1)]
[('computing', 2), ('robot', 2), ('cognitive', 1), ('human', 1), ('interaction', 1), ('principle', 1), ('practice', 1), ('explores', 1), ('effort', 1), ('ultimately', 1), ('enable', 1), ('society', 1), ('take', 1), ('advantage', 1), ('often', 1), ('heralded', 1), ('potential', 1), ('provide', 1), ('economical', 1), ('sustainable', 1)]
[('data', 4), ('management', 3), ('challenge', 2), ('quality', 2), ('meeting', 1), ('outline', 1), ('foundational', 1), ('concept', 1), ('book', 1), ('enables', 1), ('professional', 1), ('help', 1), ('organization', 1), ('value', 1), ('addressing', 1)]
[('ecosystem', 3), ('platform', 2), ('software', 2), ('hand', 1), ('guide', 1), ('offer', 1), ('complete', 1), ('roadmap', 1), ('designing', 1), ('orchestrating', 1), ('vibrant', 1), ('unlike', 1), ('product', 1), ('managed', 1), ('evolution', 1), ('myriad', 1), ('participant', 1)]
[('information', 3), ('business', 2), ('competitive', 2), ('social', 2), ('available', 1), ('traditional', 1), ('resource', 1), ('complimented', 1), ('gained', 1), ('medium', 1), ('tool', 1), ('book', 1), ('researcher', 1), ('discipline', 1)]
[('object', 3), ('oriented', 2), ('explains', 2), ('real', 2), ('analysis', 1), ('design', 1), ('information', 1), ('system', 1), ('clearly', 1), ('programming', 1), ('practice', 1), ('expert', 1), ('author', 1), ('raul', 1), ('sidnei', 1), ('wazlawick', 1), ('concept', 1), ('responsibility', 1), ('visibility', 1), ('need', 1)]
[('transmission', 2), ('data', 2), ('common', 1), ('use', 1), ('internet', 1), ('cloud', 1), ('service', 1), ('large', 1), ('amount', 1), ('open', 1), ('network', 1), ('insecure', 1), ('channel', 1), ('expose', 1), ('private', 1), ('secret', 1), ('serious', 1), ('situation', 1), ('ensuring', 1), ('information', 1)]
[('cloud', 2), ('resource', 2), ('management', 2), ('scheduling', 2), ('optimized', 1), ('identifies', 1), ('research', 1), ('direction', 1), ('technology', 1), ('facilitate', 1), ('efficient', 1), ('computing', 1), ('data', 1), ('center', 1), ('supporting', 1), ('scientific', 1), ('industrial', 1), ('business', 1)]
[('engineering', 2), ('system', 2), ('complex', 2), ('aircraft', 1), ('frigate', 1), ('highly', 1), ('specifically', 1), ('designed', 1), ('meet', 1), ('customer', 1), ('requirement', 1), ('important', 1), ('book', 1), ('provides', 1), ('information', 1), ('necessary', 1), ('acquire', 1), ('support', 1), ('expected', 1)]
[('differential', 2), ('quadrature', 2), ('method', 2), ('application', 2), ('based', 1), ('element', 1), ('theory', 1), ('comprehensive', 1), ('guide', 1), ('various', 1), ('recent', 1), ('year', 1), ('due', 1), ('attractive', 1), ('feature', 1), ('rapid', 1), ('convergence', 1), ('high', 1)]
[('book', 1), ('provides', 1), ('authoritative', 1), ('guide', 1), ('postgraduate', 1), ('student', 1), ('academic', 1), ('researcher', 1), ('electronics', 1), ('computer', 1), ('network', 1), ('engineering', 1), ('telecommunication', 1), ('energy', 1), ('technology', 1), ('home', 1), ('automation', 1), ('manager', 1), ('industrial', 1), ('sector', 1)]
[('textile', 2), ('integration', 1), ('electronics', 1), ('clothing', 1), ('opened', 1), ('array', 1), ('function', 1), ('beyond', 1), ('conventional', 1), ('novel', 1), ('material', 1), ('beginning', 1), ('find', 1), ('application', 1), ('commercial', 1), ('product', 1), ('field', 1), ('communication', 1)]
[('risk', 2), ('internet', 2), ('thing', 2), ('iot', 2), ('riot', 1), ('control', 1), ('understanding', 1), ('managing', 1), ('explains', 1), ('term', 1), ('project', 1), ('requirement', 1), ('business', 1), ('need', 1), ('system', 1), ('design', 1), ('learn', 1), ('different', 1), ('regular', 1), ('enterprise', 1)]
[('lossless', 2), ('hiding', 2), ('information', 1), ('image', 1), ('introduces', 1), ('many', 1), ('state', 1), ('art', 1), ('scheme', 1), ('come', 1), ('author', 1), ('publication', 1), ('past', 1), ('five', 1), ('year', 1), ('reading', 1), ('book', 1), ('reader', 1), ('able', 1), ('immediately', 1), ('grasp', 1)]
[('publishing', 3), ('past', 2), ('industry', 2), ('inventing', 1), ('book', 1), ('challenge', 1), ('chronicle', 1), ('significant', 1), ('change', 1), ('taken', 1), ('place', 1), ('decade', 1), ('altered', 1), ('value', 1), ('chain', 1)]
[('hazard', 3), ('computer', 1), ('earth', 1), ('environmental', 1), ('science', 1), ('artificial', 1), ('intelligence', 1), ('advanced', 1), ('technology', 1), ('risk', 1), ('management', 1), ('address', 1), ('need', 1), ('comprehensive', 1), ('book', 1), ('focus', 1), ('multi', 1), ('assessment', 1), ('natural', 1), ('manmade', 1)]
[('adversarial', 3), ('attack', 2), ('defense', 2), ('veri', 2), ('cation', 2), ('robustness', 1), ('machine', 1), ('learning', 1), ('summarizes', 1), ('recent', 1), ('progress', 1), ('topic', 1), ('introduces', 1), ('popular', 1), ('algorithm', 1), ('section', 1), ('cover', 1), ('mainly', 1), ('focusing', 1)]
[('water', 2), ('resource', 2), ('computational', 2), ('modeling', 1), ('technology', 1), ('seventh', 1), ('edition', 1), ('provides', 1), ('reader', 1), ('comprehensive', 1), ('overview', 1), ('application', 1), ('technique', 1), ('various', 1), ('sector', 1), ('engineering', 1), ('book', 1), ('explores', 1)]
[('alarm', 2), ('system', 2), ('alert', 1), ('detection', 1), ('remains', 1), ('issue', 1), ('various', 1), ('area', 1), ('nature', 1), ('flooding', 1), ('animal', 1), ('earthquake', 1), ('software', 1), ('liveness', 1), ('dynamicity', 1), ('reactivity', 1), ('ensure', 1), ('warning', 1), ('information', 1), ('reach', 1), ('right', 1), ('destination', 1)]
[('intelligent', 2), ('system', 2), ('series', 1), ('comprises', 1), ('title', 1), ('present', 1), ('state', 1), ('art', 1), ('knowledge', 1), ('latest', 1), ('advance', 1), ('scope', 1), ('includes', 1), ('theoretical', 1), ('study', 1), ('design', 1), ('method', 1), ('real', 1), ('world', 1), ('implementation', 1), ('application', 1)]
[('sql', 2), ('server', 2), ('database', 2), ('widely', 1), ('used', 1), ('platform', 1), ('world', 1), ('large', 1), ('percentage', 1), ('properly', 1), ('secured', 1), ('exposing', 1), ('sensitive', 1), ('customer', 1), ('business', 1), ('data', 1), ('attack', 1), ('securing', 1), ('reader', 1), ('learn', 1)]
[('digital', 2), ('artificial', 1), ('intelligence', 1), ('big', 1), ('data', 1), ('blockchain', 1), ('transformation', 1), ('healthcare', 1), ('industry', 1), ('provides', 1), ('insight', 1), ('success', 1), ('failure', 1), ('field', 1), ('health', 1), ('pandemic', 1), ('analyzes', 1), ('lesson', 1)]
[('agile', 2), ('able', 1), ('fit', 1), ('design', 1), ('software', 1), ('development', 1), ('process', 1), ('important', 1), ('skill', 1), ('today', 1), ('market', 1), ('many', 1), ('way', 1), ('ux', 1), ('team', 1), ('succeed', 1), ('fail', 1), ('book', 1), ('provides', 1), ('tool', 1), ('need', 1), ('determine', 1)]
[('threat', 2), ('security', 2), ('apt', 2), ('newest', 1), ('categorized', 1), ('advanced', 1), ('persistent', 1), ('bypass', 1), ('organization', 1), ('current', 1), ('device', 1), ('typically', 1), ('carried', 1), ('organized', 1), ('group', 1), ('foreign', 1), ('nation', 1), ('state', 1)]
[('omics', 2), ('system', 2), ('biology', 2), ('concept', 1), ('technique', 1), ('provides', 1), ('concise', 1), ('lucid', 1), ('account', 1), ('technical', 1), ('aspect', 1), ('application', 1), ('field', 1), ('different', 1), ('life', 1), ('science', 1), ('strong', 1), ('focus', 1), ('fundamental', 1)]
[('smart', 3), ('grid', 2), ('many', 1), ('think', 1), ('power', 1), ('distribution', 1), ('group', 1), ('built', 1), ('advanced', 1), ('metering', 1), ('aspect', 1), ('larger', 1), ('complex', 1), ('system', 1), ('requires', 1), ('new', 1), ('technology', 1), ('throughout', 1), ('energy', 1), ('generation', 1)]
[('exchange', 2), ('server', 2), ('sp', 2), ('necessary', 1), ('support', 1), ('outlook', 1), ('sharepoint', 1), ('enterprise', 1), ('messaging', 1), ('virtually', 1), ('fortune', 1), ('firm', 1), ('microsoft', 1), ('deployment', 1), ('migration', 1), ('describes', 1), ('everything', 1), ('need', 1), ('know', 1)]
[('service', 3), ('digital', 2), ('twin', 2), ('driven', 1), ('smart', 1), ('draw', 1), ('latest', 1), ('industry', 1), ('practice', 1), ('research', 1), ('explain', 1), ('implement', 1), ('range', 1), ('scenario', 1), ('address', 1), ('relevant', 1), ('theory', 1), ('methodology', 1), ('including', 1), ('product', 1), ('prognostic', 1)]
[('genetic', 3), ('algorithm', 3), ('foundation', 2), ('volume', 1), ('latest', 1), ('series', 1), ('book', 1), ('record', 1), ('prestigious', 1), ('workshop', 1), ('sponsored', 1), ('organised', 1), ('international', 1), ('society', 1), ('specifically', 1)]
[('deep', 2), ('learning', 2), ('method', 2), ('providing', 1), ('exciting', 1), ('solution', 1), ('medical', 1), ('image', 1), ('analysis', 1), ('problem', 1), ('seen', 1), ('key', 1), ('future', 1), ('application', 1), ('book', 1), ('give', 1), ('clear', 1), ('understanding', 1), ('principle', 1), ('neural', 1), ('network', 1)]
[('sdl', 3), ('th', 2), ('forum', 2), ('book', 1), ('represents', 1), ('proceeding', 1), ('held', 1), ('montreal', 1), ('quebec', 1), ('canada', 1), ('week', 1), ('june', 1), ('present', 1), ('paper', 1), ('past', 1), ('future', 1), ('development', 1), ('msc', 1), ('language', 1), ('volume', 1)]
[('database', 2), ('practical', 1), ('hand', 1), ('guide', 1), ('available', 1), ('administrator', 1), ('secure', 1), ('oracle', 1), ('book', 1), ('help', 1), ('dba', 1), ('ass', 1), ('current', 1), ('level', 1), ('risk', 1), ('existing', 1), ('security', 1), ('posture', 1), ('provide', 1)]
[('fortran', 4), ('first', 2), ('introduction', 1), ('standard', 1), ('significant', 1), ('change', 1), ('language', 1), ('year', 1), ('book', 1), ('designed', 1), ('anyone', 1), ('wanting', 1), ('learn', 1), ('time', 1), ('programmer', 1), ('need', 1), ('upgrade', 1)]
[('csa', 3), ('cloud', 3), ('security', 2), ('guide', 1), ('computing', 1), ('brings', 1), ('current', 1), ('comprehensive', 1), ('understanding', 1), ('issue', 1), ('deployment', 1), ('technique', 1), ('industry', 1), ('thought', 1), ('leader', 1), ('alliance', 1), ('many', 1), ('year', 1)]
[('domestic', 2), ('conducting', 1), ('research', 1), ('technology', 1), ('design', 1), ('life', 1), ('mean', 1), ('easy', 1), ('method', 1), ('commonly', 1), ('used', 1), ('field', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('setting', 1), ('workplace', 1), ('easily', 1), ('translate', 1), ('richness', 1), ('complexity', 1)]
[('book', 1), ('describes', 1), ('technical', 1), ('problem', 1), ('solution', 1), ('automatically', 1), ('recognizing', 1), ('parsing', 1), ('medical', 1), ('image', 1), ('multiple', 1), ('object', 1), ('structure', 1), ('anatomy', 1), ('give', 1), ('key', 1), ('method', 1), ('including', 1), ('state', 1), ('art', 1), ('approach', 1), ('based', 1)]
[('medicine', 2), ('connectomic', 1), ('guide', 1), ('brain', 1), ('ai', 1), ('treatment', 1), ('decision', 1), ('planning', 1), ('examines', 1), ('apply', 1), ('connectomics', 1), ('clinical', 1), ('including', 1), ('discussion', 1), ('technique', 1), ('application', 1), ('novel', 1), ('idea', 1), ('case', 1), ('example', 1), ('highlight', 1)]
[('data', 3), ('science', 2), ('potential', 2), ('healthcare', 2), ('influence', 1), ('improve', 1), ('fundamental', 1), ('service', 1), ('sector', 1), ('book', 1), ('recognizes', 1), ('fact', 1), ('analyzing', 1), ('us', 1), ('every', 1), ('human', 1), ('body', 1), ('produce', 1), ('terabyte', 1)]
[('programming', 3), ('parallel', 2), ('concept', 2), ('practice', 1), ('provides', 1), ('upper', 1), ('level', 1), ('introduction', 1), ('addition', 1), ('covering', 1), ('general', 1), ('parallelism', 1), ('text', 1), ('teach', 1), ('practical', 1), ('skill', 1), ('shared', 1), ('memory', 1), ('distributed', 1)]
[('video', 4), ('broad', 1), ('overview', 1), ('different', 1), ('modality', 1), ('immersive', 1), ('technology', 1), ('omnidirectional', 1), ('light', 1), ('field', 1), ('volumetric', 1), ('multimedia', 1), ('processing', 1), ('perspective', 1), ('capture', 1), ('representation', 1), ('coding', 1), ('display', 1)]
[('autocad', 2), ('step', 2), ('running', 1), ('drawing', 1), ('design', 1), ('modeling', 1), ('present', 1), ('combination', 1), ('instruction', 1), ('example', 1), ('insightful', 1), ('explanation', 1), ('book', 1), ('emphasizes', 1), ('core', 1), ('concept', 1), ('practical', 1), ('application', 1)]
[('intelligent', 2), ('communication', 2), ('system', 2), ('book', 1), ('offer', 1), ('thorough', 1), ('review', 1), ('research', 1), ('focusing', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('telecommunication', 1), ('help', 1), ('realize', 1), ('user', 1), ('friendly', 1), ('interface', 1)]
[('software', 3), ('testing', 2), ('development', 2), ('indispensable', 1), ('discussed', 1), ('topic', 1), ('today', 1), ('many', 1), ('company', 1), ('address', 1), ('issue', 1), ('assigning', 1), ('dedicated', 1), ('phase', 1), ('towards', 1), ('end', 1), ('cycle', 1), ('quality', 1)]
[('network', 2), ('past', 1), ('decade', 1), ('world', 1), ('witnessed', 1), ('explosion', 1), ('development', 1), ('deployment', 1), ('new', 1), ('wireless', 1), ('technology', 1), ('cellular', 1), ('mobile', 1), ('telephony', 1), ('ubiquitous', 1), ('wifi', 1), ('coffee', 1), ('shop', 1), ('airport', 1), ('emerging', 1), ('wimax', 1)]
[('computer', 2), ('first', 1), ('volume', 1), ('advance', 1), ('presented', 1), ('detailed', 1), ('coverage', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('provided', 1), ('contributor', 1), ('medium', 1)]
[('photorealistic', 2), ('even', 1), ('development', 1), ('computer', 1), ('graphic', 1), ('continue', 1), ('affect', 1), ('work', 1), ('leisure', 1), ('activity', 1), ('practitioner', 1), ('researcher', 1), ('devoting', 1), ('attention', 1), ('non', 1), ('npr', 1), ('technique', 1), ('generating', 1), ('image', 1)]
[('advanced', 1), ('next', 1), ('generation', 1), ('wireless', 1), ('access', 1), ('technology', 1), ('third', 1), ('edition', 1), ('follows', 1), ('author', 1), ('highly', 1), ('celebrated', 1), ('book', 1), ('providing', 1), ('new', 1), ('level', 1), ('insight', 1), ('nr', 1), ('initial', 1), ('discussion', 1), ('background', 1), ('including', 1)]
[('process', 3), ('agile', 2), ('development', 2), ('business', 1), ('goal', 1), ('six', 1), ('week', 1), ('solution', 1), ('guide', 1), ('software', 1), ('challenging', 1), ('difficult', 1), ('time', 1), ('consuming', 1), ('called', 1), ('unique', 1), ('feature', 1), ('several', 1)]
[('penetration', 3), ('tester', 2), ('open', 2), ('source', 2), ('tool', 2), ('toolkit', 1), ('third', 1), ('edition', 1), ('discus', 1), ('available', 1), ('way', 1), ('use', 1), ('situation', 1), ('apply', 1), ('commercial', 1), ('testing', 1)]
[('cloud', 2), ('private', 1), ('computing', 1), ('enables', 1), ('consolidate', 1), ('diverse', 1), ('enterprise', 1), ('system', 1), ('based', 1), ('accessed', 1), ('end', 1), ('user', 1), ('seamlessly', 1), ('regardless', 1), ('location', 1), ('change', 1), ('overall', 1), ('demand', 1), ('expert', 1), ('author', 1), ('steve', 1), ('smoot', 1), ('nam', 1)]
[('o', 2), ('securely', 2), ('microsoft', 2), ('mac', 2), ('thor', 1), ('xodus', 1), ('migrating', 1), ('window', 1), ('provides', 1), ('reader', 1), ('everything', 1), ('need', 1), ('successfully', 1), ('migrate', 1), ('includes', 1), ('information', 1), ('found', 1), ('nowhere', 1), ('enabling', 1), ('user', 1)]
[('web', 2), ('technology', 1), ('hot', 1), ('topic', 1), ('moment', 1), ('public', 1), ('librarian', 1), ('particular', 1), ('beginning', 1), ('feel', 1), ('pressure', 1), ('apply', 1), ('tool', 1), ('indeed', 1), ('potential', 1), ('transform', 1), ('library', 1), ('service', 1), ('policy', 1), ('strategy', 1)]
[('ux', 2), ('web', 2), ('development', 2), ('divide', 1), ('stifling', 1), ('bridging', 1), ('prepares', 1), ('break', 1), ('wall', 1), ('teaching', 1), ('integrate', 1), ('team', 1), ('developer', 1), ('examine', 1), ('process', 1), ('perspective', 1)]
[('ica', 2), ('honour', 1), ('professor', 1), ('erkki', 1), ('oja', 1), ('pioneer', 1), ('independent', 1), ('component', 1), ('analysis', 1), ('book', 1), ('review', 1), ('key', 1), ('advance', 1), ('theory', 1), ('application', 1), ('influence', 1), ('signal', 1), ('processing', 1), ('pattern', 1), ('recognition', 1), ('machine', 1)]
[('matlab', 2), ('third', 1), ('edition', 1), ('book', 1), ('give', 1), ('full', 1), ('introduction', 1), ('programming', 1), ('combined', 1), ('explanation', 1), ('software', 1), ('powerful', 1), ('function', 1), ('enabling', 1), ('engineer', 1), ('fully', 1), ('exploit', 1), ('extensive', 1), ('capability', 1), ('solving', 1), ('engineering', 1)]
[('management', 2), ('infosec', 1), ('fundamental', 1), ('concise', 1), ('overview', 1), ('information', 1), ('security', 1), ('concept', 1), ('technique', 1), ('providing', 1), ('foundational', 1), ('template', 1), ('experienced', 1), ('professional', 1), ('new', 1), ('industry', 1), ('brief', 1), ('volume', 1)]
[('computing', 2), ('topic', 1), ('parallel', 1), ('distributed', 1), ('provides', 1), ('resource', 1), ('guidance', 1), ('learning', 1), ('pdc', 1), ('teaching', 1), ('student', 1), ('new', 1), ('discipline', 1), ('pervasiveness', 1), ('device', 1), ('containing', 1), ('multicore', 1), ('cpu', 1), ('gpus', 1), ('including', 1)]
[('computer', 2), ('image', 2), ('vision', 1), ('machine', 1), ('intelligence', 1), ('paradigm', 1), ('prominent', 1), ('domain', 1), ('medical', 1), ('application', 1), ('including', 1), ('assisted', 1), ('diagnosis', 1), ('guided', 1), ('radiation', 1), ('therapy', 1), ('landmark', 1), ('detection', 1), ('imaging', 1), ('genomics', 1), ('brain', 1), ('connectomics', 1)]
[('way', 2), ('medicine', 2), ('health', 1), ('industrialization', 1), ('discus', 1), ('healthcare', 1), ('professional', 1), ('distinguish', 1), ('surgery', 1), ('diet', 1), ('lifestyle', 1), ('guideline', 1), ('word', 1), ('aim', 1), ('provide', 1), ('quantity', 1), ('life', 1), ('men', 1), ('woman', 1), ('rather', 1)]
[('continuous', 2), ('architectural', 2), ('architecture', 1), ('provides', 1), ('broad', 1), ('perspective', 1), ('delivery', 1), ('describes', 1), ('new', 1), ('approach', 1), ('support', 1), ('enables', 1), ('pace', 1), ('innovation', 1), ('software', 1), ('release', 1), ('increase', 1), ('department', 1)]
[('quantum', 2), ('programming', 2), ('computer', 2), ('foundation', 1), ('discus', 1), ('new', 1), ('methodology', 1), ('technology', 1), ('developed', 1), ('current', 1), ('extended', 1), ('exploit', 1), ('unique', 1), ('power', 1), ('promise', 1), ('dramatic', 1), ('advantage', 1), ('processing', 1), ('speed', 1)]
[('quantum', 2), ('computational', 2), ('intelligence', 2), ('application', 2), ('explores', 2), ('inspired', 1), ('research', 1), ('latest', 1), ('approach', 1), ('initiative', 1), ('computing', 1), ('engineering', 1), ('science', 1), ('business', 1), ('book', 1)]
[('python', 3), ('integrating', 1), ('leading', 1), ('computer', 1), ('forensic', 1), ('platform', 1), ('take', 1), ('definitive', 1), ('look', 1), ('integration', 1), ('advance', 1), ('field', 1), ('digital', 1), ('forensics', 1), ('addition', 1), ('book', 1), ('includes', 1), ('practical', 1), ('never', 1), ('seen', 1), ('example', 1)]
[('embedded', 2), ('system', 2), ('energy', 1), ('autonomy', 1), ('batteryless', 1), ('wireless', 1), ('cover', 1), ('numerous', 1), ('new', 1), ('application', 1), ('envisioned', 1), ('context', 1), ('aeronautics', 1), ('sensor', 1), ('deployment', 1), ('flight', 1), ('test', 1), ('structural', 1), ('health', 1)]
[('museum', 2), ('inside', 1), ('world', 1), ('major', 1), ('east', 1), ('asian', 1), ('collection', 1), ('examines', 1), ('rise', 1), ('lam', 1), ('acronym', 1), ('stand', 1), ('library', 1), ('archive', 1), ('book', 1), ('profile', 1), ('leading', 1), ('expert', 1), ('librarian', 1), ('archivist', 1), ('curator', 1), ('specialise', 1)]
[('signal', 3), ('processing', 3), ('graph', 2), ('cooperative', 1), ('principle', 1), ('application', 1), ('present', 1), ('fundamental', 1), ('network', 1), ('latest', 1), ('advance', 1), ('range', 1), ('key', 1), ('concept', 1), ('clearly', 1), ('explained', 1), ('including', 1)]
[('network', 2), ('design', 2), ('gap', 1), ('theory', 1), ('practice', 1), ('woefully', 1), ('broad', 1), ('book', 1), ('narrow', 1), ('comprehensively', 1), ('critically', 1), ('examining', 1), ('current', 1), ('model', 1), ('method', 1), ('learn', 1), ('mathematical', 1), ('modeling', 1), ('algorithmic', 1)]
[('computer', 2), ('aided', 2), ('diagnostic', 2), ('system', 2), ('recent', 1), ('trend', 1), ('skin', 1), ('disease', 1), ('theory', 1), ('implementation', 1), ('analysis', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('development', 1), ('cad', 1), ('employing', 1), ('image', 1), ('processing', 1), ('machine', 1)]
[('application', 2), ('optimum', 1), ('path', 1), ('forest', 1), ('opf', 1), ('classifier', 1), ('first', 1), ('published', 1), ('supervised', 1), ('unsupervised', 1), ('version', 1), ('medicine', 1), ('image', 1), ('classification', 1), ('expanded', 1), ('variety', 1), ('remote', 1)]
[('computer', 2), ('first', 1), ('volume', 1), ('advance', 1), ('presented', 1), ('detailed', 1), ('coverage', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('provided', 1), ('contributor', 1), ('medium', 1), ('explore', 1)]
[('design', 5), ('fourth', 1), ('book', 1), ('four', 1), ('part', 1), ('series', 1), ('theory', 1), ('method', 1), ('using', 1), ('cad', 1), ('cae', 1), ('integrates', 1), ('discussion', 1), ('modern', 1), ('engineering', 1), ('principle', 1), ('advanced', 1), ('tool', 1), ('industrial', 1), ('practice', 1), ('throughout', 1), ('process', 1), ('first', 1)]
[('arab', 2), ('country', 2), ('role', 1), ('social', 1), ('medium', 1), ('fundamental', 1), ('change', 1), ('middle', 1), ('east', 1), ('north', 1), ('africa', 1), ('online', 1), ('spring', 1), ('responds', 1), ('question', 1), ('considering', 1), ('five', 1), ('egypt', 1), ('libya', 1), ('jordan', 1), ('yemen', 1), ('tunisia', 1), ('along', 1), ('additional', 1)]
[('defeat', 1), ('advanced', 1), ('malware', 1), ('concise', 1), ('introduction', 1), ('concept', 1), ('micro', 1), ('virtualization', 1), ('book', 1), ('provides', 1), ('current', 1), ('fact', 1), ('figure', 1), ('prove', 1), ('detection', 1), ('based', 1), ('security', 1), ('product', 1), ('become', 1), ('ineffective', 1), ('simple', 1), ('strategy', 1), ('presented', 1)]
[('agent', 2), ('offer', 2), ('industrial', 1), ('explains', 1), ('multi', 1), ('system', 1), ('improve', 1), ('collaborative', 1), ('network', 1), ('dynamic', 1), ('service', 1), ('change', 1), ('customization', 1), ('improved', 1), ('quality', 1), ('reliability', 1), ('flexible', 1), ('infrastructure', 1), ('learn', 1), ('platform', 1), ('distributed', 1)]
[('agent', 2), ('based', 1), ('modeling', 1), ('flexible', 1), ('intuitive', 1), ('approach', 1), ('close', 1), ('data', 1), ('theory', 1), ('give', 1), ('special', 1), ('position', 1), ('majority', 1), ('scientific', 1), ('community', 1), ('model', 1), ('tool', 1), ('understanding', 1), ('exploration', 1)]
[('software', 3), ('quality', 3), ('system', 3), ('architecture', 2), ('assurance', 1), ('large', 1), ('scale', 1), ('complex', 1), ('intensive', 1), ('present', 1), ('novel', 1), ('high', 1), ('research', 1), ('related', 1), ('approach', 1), ('relate', 1), ('requirement', 1)]
[('microprocessor', 2), ('system', 2), ('author', 1), ('taught', 1), ('design', 1), ('use', 1), ('undergraduate', 1), ('technician', 1), ('level', 1), ('student', 1), ('year', 1), ('core', 1), ('text', 1), ('academic', 1), ('module', 1), ('embedded', 1), ('computer', 1), ('architecture', 1), ('practical', 1)]
[('edition', 2), ('hack', 2), ('proofing', 2), ('secure', 2), ('network', 2), ('new', 1), ('popular', 1), ('book', 1), ('around', 1), ('professional', 1), ('want', 1), ('run', 1), ('build', 1), ('software', 1), ('need', 1), ('know', 1), ('method', 1), ('hacker', 1), ('second', 1), ('best', 1), ('seller', 1)]
[('first', 2), ('clustered', 1), ('configuration', 1), ('hit', 1), ('scene', 1), ('nearly', 1), ('year', 1), ('ago', 1), ('digital', 1), ('equipment', 1), ('corporation', 1), ('dec', 1), ('introduced', 1), ('vaxcluster', 1), ('topic', 1), ('real', 1), ('application', 1), ('cluster', 1), ('rac', 1), ('implementation', 1), ('never', 1), ('fully', 1), ('explored', 1)]
[('industrial', 2), ('tony', 1), ('fischer', 1), ('cripps', 1), ('project', 1), ('leader', 1), ('division', 1), ('telecommunication', 1), ('physic', 1), ('csiro', 1), ('commonwealth', 1), ('scientific', 1), ('research', 1), ('organisation', 1), ('australia', 1), ('previously', 1), ('lecturer', 1), ('university', 1), ('technology', 1), ('sydney', 1)]
[('machine', 3), ('learning', 3), ('concept', 2), ('basic', 2), ('statistical', 1), ('modeling', 1), ('application', 1), ('present', 1), ('role', 1), ('statistic', 1), ('exploratory', 1), ('data', 1), ('analysis', 1), ('various', 1), ('aspect', 1), ('discussed', 1), ('along', 1)]
[('article', 2), ('proof', 2), ('theory', 2), ('volume', 1), ('contains', 1), ('covering', 1), ('broad', 1), ('spectrum', 1), ('emphasis', 1), ('mathematical', 1), ('aspect', 1), ('interesting', 1), ('specialist', 1), ('accessible', 1), ('diverse', 1), ('audience', 1)]
[('research', 2), ('method', 2), ('human', 1), ('computer', 1), ('interaction', 1), ('comprehensive', 1), ('guide', 1), ('performing', 1), ('essential', 1), ('reading', 1), ('quantitative', 1), ('qualitative', 1), ('first', 1), ('edition', 1), ('published', 1), ('book', 1), ('adopted', 1), ('use', 1)]
[('molecular', 2), ('target', 2), ('cancer', 2), ('current', 1), ('heterocyclic', 1), ('compound', 1), ('therapy', 1), ('discus', 1), ('recently', 1), ('developed', 1), ('treatment', 1), ('based', 1), ('genetically', 1), ('altered', 1), ('cell', 1), ('essential', 1), ('tumor', 1), ('development', 1), ('survival', 1)]
[('nitric', 2), ('oxide', 2), ('therapeutic', 2), ('health', 1), ('disease', 1), ('application', 1), ('cancer', 1), ('inflammatory', 1), ('disorder', 1), ('present', 1), ('updated', 1), ('information', 1), ('chemistry', 1), ('signaling', 1), ('newly', 1), ('derived', 1), ('donor', 1), ('inhibitor', 1), ('complex', 1)]
[('metaheuristic', 2), ('algorithm', 2), ('advanced', 2), ('handbook', 1), ('fundamental', 1), ('theory', 1), ('application', 1), ('provides', 1), ('brief', 1), ('introduction', 1), ('ground', 1), ('including', 1), ('basic', 1), ('idea', 1), ('solution', 1), ('although', 1), ('reader', 1), ('able', 1)]
[('water', 2), ('data', 2), ('handbook', 1), ('hydroinformatics', 1), ('volume', 1), ('ii', 1), ('management', 1), ('best', 1), ('practice', 1), ('present', 1), ('latest', 1), ('updated', 1), ('processing', 1), ('technique', 1), ('fundamental', 1), ('science', 1), ('engineering', 1), ('discipline', 1), ('include', 1), ('wide', 1), ('range', 1), ('new', 1)]
[('artificial', 1), ('intelligence', 1), ('healthcare', 1), ('covid', 1), ('showcase', 1), ('theoretical', 1), ('concept', 1), ('implementational', 1), ('research', 1), ('perspective', 1), ('surrounding', 1), ('ai', 1), ('book', 1), ('address', 1), ('medical', 1), ('technological', 1), ('vision', 1), ('making', 1), ('even', 1), ('applied', 1)]
[('computer', 2), ('deep', 1), ('dive', 1), ('nosql', 1), ('database', 1), ('use', 1), ('case', 1), ('application', 1), ('volume', 1), ('latest', 1), ('release', 1), ('advance', 1), ('series', 1), ('first', 1), ('published', 1), ('present', 1), ('detailed', 1), ('coverage', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1)]
[('computer', 2), ('series', 2), ('volume', 1), ('advance', 1), ('number', 1), ('began', 1), ('back', 1), ('present', 1), ('changing', 1), ('landscape', 1), ('continuing', 1), ('evolution', 1), ('development', 1), ('field', 1), ('information', 1), ('processing', 1)]
[('pyramid', 1), ('algorithm', 1), ('present', 1), ('unique', 1), ('approach', 1), ('understanding', 1), ('analyzing', 1), ('computing', 1), ('common', 1), ('polynomial', 1), ('spline', 1), ('curve', 1), ('surface', 1), ('scheme', 1), ('used', 1), ('computer', 1), ('aided', 1), ('geometric', 1), ('design', 1), ('employing', 1), ('dynamic', 1), ('programming', 1), ('method', 1), ('based', 1)]
[('theory', 2), ('monograph', 1), ('present', 1), ('mathematical', 1), ('statistical', 1), ('model', 1), ('described', 1), ('essentially', 1), ('large', 1), ('number', 1), ('unknown', 1), ('parameter', 1), ('comparable', 1), ('sample', 1), ('size', 1), ('larger', 1), ('meaning', 1), ('proposed', 1), ('called', 1)]
[('clinical', 3), ('engineering', 2), ('handbook', 1), ('biomedical', 1), ('engineer', 1), ('second', 1), ('edition', 1), ('help', 1), ('professional', 1), ('student', 1), ('successfully', 1), ('deploy', 1), ('medical', 1), ('technology', 1), ('book', 1), ('provides', 1), ('broad', 1), ('reference', 1), ('core', 1), ('element', 1)]
[('digital', 2), ('controller', 1), ('part', 1), ('nearly', 1), ('modern', 1), ('personal', 1), ('industrial', 1), ('transportation', 1), ('system', 1), ('every', 1), ('senior', 1), ('graduate', 1), ('student', 1), ('electrical', 1), ('chemical', 1), ('mechanical', 1), ('engineering', 1), ('familiar', 1), ('basic', 1), ('theory', 1)]
[('bus', 3), ('use', 2), ('equipment', 1), ('interface', 1), ('driven', 1), ('either', 1), ('controller', 1), ('directly', 1), ('pc', 1), ('question', 1), ('becoming', 1), ('increasingly', 1), ('important', 1), ('industry', 1), ('office', 1), ('computer', 1)]
[('attack', 3), ('client', 2), ('side', 2), ('defense', 1), ('offer', 1), ('background', 1), ('network', 1), ('attacker', 1), ('book', 1), ('examines', 1), ('form', 1), ('discus', 1), ('different', 1), ('kind', 1), ('along', 1), ('delivery', 1), ('method', 1), ('including', 1), ('limited', 1), ('browser', 1)]
[('economic', 2), ('blackhatonomics', 1), ('explains', 1), ('basic', 1), ('truth', 1), ('underworld', 1), ('hacking', 1), ('around', 1), ('world', 1), ('devote', 1), ('tremendous', 1), ('resource', 1), ('developing', 1), ('implementing', 1), ('malware', 1), ('book', 1), ('provides', 1), ('view', 1), ('evolving', 1), ('business', 1)]
[('deception', 2), ('digital', 1), ('age', 1), ('exploiting', 1), ('defending', 1), ('human', 1), ('target', 1), ('computer', 1), ('mediated', 1), ('communication', 1), ('guide', 1), ('reader', 1), ('fascinating', 1), ('history', 1), ('principle', 1), ('technique', 1), ('stratagem', 1)]
[('data', 4), ('steward', 1), ('business', 1), ('backbone', 1), ('successful', 1), ('governance', 1), ('implementation', 1), ('work', 1), ('make', 1), ('company', 1), ('trusted', 1), ('dependable', 1), ('high', 1), ('quality', 1), ('stewardship', 1), ('explains', 1), ('everything', 1), ('need', 1), ('know', 1)]
[('information', 2), ('medium', 2), ('present', 1), ('broad', 1), ('examination', 1), ('nature', 1), ('virtual', 1), ('world', 1), ('potential', 1), ('provide', 1), ('managing', 1), ('expressing', 1), ('practice', 1), ('grounding', 1), ('professional', 1), ('student', 1), ('new', 1), ('fundamental', 1)]
[('five', 2), ('second', 2), ('method', 2), ('test', 1), ('convenient', 1), ('rapid', 1), ('ux', 1), ('testing', 1), ('available', 1), ('although', 1), ('value', 1), ('compromised', 1), ('ignoring', 1), ('restriction', 1), ('rule', 1), ('us', 1), ('detailed', 1), ('example', 1), ('collection', 1)]
[('targeted', 2), ('attack', 2), ('cyber', 1), ('crime', 1), ('increasingly', 1), ('impact', 1), ('online', 1), ('offline', 1), ('world', 1), ('play', 1), ('significant', 1), ('role', 1), ('disrupting', 1), ('service', 1), ('aimed', 1), ('particular', 1), ('individual', 1), ('group', 1), ('type', 1), ('site', 1)]
[('prediction', 2), ('application', 2), ('conformal', 1), ('framework', 1), ('recent', 1), ('development', 1), ('machine', 1), ('learning', 1), ('associate', 1), ('reliable', 1), ('measure', 1), ('confidence', 1), ('real', 1), ('world', 1), ('pattern', 1), ('recognition', 1), ('including', 1), ('risk', 1), ('sensitive', 1)]
[('brain', 2), ('computer', 1), ('interface', 1), ('bci', 1), ('technology', 1), ('provides', 1), ('mean', 1), ('communication', 1), ('allows', 1), ('individual', 1), ('severely', 1), ('impaired', 1), ('movement', 1), ('communicate', 1), ('assistive', 1), ('device', 1), ('using', 1), ('electroencephalogram', 1), ('eeg', 1), ('signal', 1), ('practicality', 1)]
[('malicious', 4), ('email', 3), ('purpose', 2), ('simply', 1), ('put', 1), ('fraud', 1), ('theft', 1), ('espionage', 1), ('malware', 1), ('injection', 1), ('process', 1), ('execute', 1), ('activity', 1), ('vary', 1), ('widely', 1), ('fully', 1), ('manual', 1)]
[('security', 3), ('window', 2), ('server', 2), ('technology', 2), ('end', 1), ('edge', 1), ('beyond', 1), ('show', 1), ('architect', 1), ('design', 1), ('plan', 1), ('deploy', 1), ('microsoft', 1), ('enterprise', 1), ('book', 1), ('cover', 1), ('apply', 1)]
[('political', 2), ('legitimate', 1), ('reason', 1), ('use', 1), ('internet', 1), ('anonymously', 1), ('diplomat', 1), ('military', 1), ('government', 1), ('agency', 1), ('journalist', 1), ('activist', 1), ('professional', 1), ('law', 1), ('enforcement', 1), ('personnel', 1), ('refugee', 1), ('others', 1), ('anonymous', 1), ('networking', 1)]
[('tele', 4), ('improve', 2), ('health', 1), ('application', 1), ('medicine', 1), ('radiology', 1), ('ophthalmology', 1), ('diagnosis', 1), ('promising', 1), ('immense', 1), ('potential', 1), ('global', 1), ('healthcare', 1), ('access', 1), ('equity', 1), ('quality', 1), ('connection', 1)]
[('cloud', 4), ('data', 3), ('rapid', 1), ('growth', 1), ('computing', 1), ('size', 1), ('expanding', 1), ('dramatic', 1), ('speed', 1), ('huge', 1), ('amount', 1), ('generated', 1), ('processed', 1), ('application', 1), ('putting', 1), ('higher', 1), ('demand', 1), ('storage', 1), ('reliability', 1)]
[('quantitative', 2), ('magnetic', 2), ('resonance', 2), ('imaging', 2), ('section', 2), ('go', 1), ('reference', 1), ('method', 1), ('application', 1), ('specific', 1), ('relaxometry', 1), ('perfusion', 1), ('diffusion', 1), ('start', 1), ('explanation', 1)]
[('image', 3), ('computer', 2), ('analysis', 2), ('microscopy', 2), ('scientist', 1), ('working', 1), ('biologist', 1), ('seeking', 1), ('tool', 1), ('process', 1), ('data', 1), ('based', 1), ('experiment', 1), ('vision', 1), ('provides', 1), ('comprehensive', 1), ('depth', 1), ('discussion', 1)]
[('computer', 2), ('first', 1), ('volume', 1), ('advance', 1), ('presented', 1), ('detailed', 1), ('coverage', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('provided', 1), ('contributor', 1), ('medium', 1), ('explore', 1)]
[('language', 2), ('human', 2), ('dynamic', 2), ('natural', 1), ('artificial', 1), ('intelligence', 1), ('present', 1), ('biological', 1), ('logical', 1), ('structure', 1), ('typical', 1), ('mediating', 1), ('process', 1), ('reality', 1), ('mind', 1), ('book', 1), ('explains', 1), ('linguistic', 1), ('functioning', 1)]
[('user', 2), ('experience', 2), ('strategy', 2), ('successful', 1), ('roadmaps', 1), ('provides', 1), ('hand', 1), ('guide', 1), ('pulling', 1), ('ux', 1), ('piece', 1), ('together', 1), ('create', 1), ('includes', 1), ('tactic', 1), ('tool', 1), ('methodology', 1), ('leveraging', 1), ('material', 1), ('honed', 1)]
[('healthcare', 2), ('practical', 1), ('data', 1), ('analytics', 1), ('innovation', 1), ('medicine', 1), ('building', 1), ('real', 1), ('predictive', 1), ('prescriptive', 1), ('model', 1), ('personalized', 1), ('medical', 1), ('research', 1), ('using', 1), ('ai', 1), ('ml', 1), ('related', 1), ('technology', 1), ('second', 1), ('edition', 1), ('discus', 1), ('need', 1)]
[('smart', 2), ('grid', 2), ('security', 2), ('ecosystem', 1), ('complex', 1), ('multi', 1), ('disciplinary', 1), ('relatively', 1), ('researched', 1), ('compared', 1), ('traditional', 1), ('information', 1), ('network', 1), ('discipline', 1), ('provided', 1), ('increased', 1), ('efficiency', 1), ('monitoring', 1)]
[('cell', 3), ('robotics', 2), ('manipulation', 2), ('characterization', 2), ('provides', 1), ('fundamental', 1), ('principle', 1), ('underpinning', 1), ('robotic', 1), ('state', 1), ('art', 1), ('technical', 1), ('advance', 1), ('micro', 1), ('nano', 1), ('new', 1), ('discovery', 1), ('biology', 1), ('enabled', 1)]
[('applied', 2), ('computing', 2), ('medicine', 1), ('health', 1), ('comprehensive', 1), ('presentation', 1), ('going', 1), ('investigation', 1), ('current', 1), ('challenge', 1), ('advance', 1), ('focus', 1), ('particular', 1), ('class', 1), ('application', 1), ('primarily', 1), ('artificial', 1), ('intelligence', 1)]
[('fashion', 3), ('information', 2), ('system', 2), ('apparel', 2), ('industry', 2), ('brings', 1), ('together', 1), ('trend', 1), ('development', 1), ('industrial', 1), ('case', 1), ('study', 1), ('insight', 1), ('international', 1), ('team', 1), ('author', 1)]
[('time', 1), ('rapid', 1), ('technological', 1), ('progress', 1), ('uptake', 1), ('high', 1), ('dynamic', 1), ('range', 1), ('hdr', 1), ('video', 1), ('content', 1), ('numerous', 1), ('sector', 1), ('book', 1), ('provides', 1), ('overview', 1), ('key', 1), ('supporting', 1), ('technology', 1), ('discus', 1), ('effectiveness', 1), ('various', 1), ('technique', 1), ('review', 1)]
[('digital', 2), ('terrain', 2), ('analysis', 2), ('soil', 2), ('science', 2), ('geology', 2), ('second', 1), ('edition', 1), ('synthesizes', 1), ('knowledge', 1), ('method', 1), ('application', 1), ('geomorphometry', 1), ('context', 1), ('multi', 1), ('scale', 1), ('problem', 1), ('divided', 1)]
[('learning', 4), ('deep', 2), ('medical', 2), ('image', 2), ('analysis', 1), ('second', 1), ('edition', 1), ('resource', 1), ('academic', 1), ('industry', 1), ('researcher', 1), ('graduate', 1), ('student', 1), ('taking', 1), ('course', 1), ('machine', 1), ('computer', 1), ('vision', 1), ('computing', 1)]
[('technique', 2), ('application', 2), ('visualization', 1), ('visual', 1), ('analytics', 1), ('virtual', 1), ('reality', 1), ('medicine', 1), ('state', 1), ('art', 1), ('describes', 1), ('important', 1), ('show', 1), ('understanding', 1), ('actual', 1), ('user', 1), ('need', 1), ('technological', 1), ('possibility', 1)]
[('justice', 2), ('reality', 2), ('virtual', 2), ('real', 1), ('constructing', 1), ('ethical', 1), ('digital', 1), ('environment', 1), ('examines', 1), ('framework', 1), ('concept', 1), ('evolve', 1), ('world', 1), ('directed', 1), ('researcher', 1), ('working', 1), ('interest', 1)]
[('tissue', 2), ('engineering', 2), ('regenerative', 2), ('medicine', 2), ('computer', 2), ('pde', 1), ('modeling', 1), ('analysis', 1), ('present', 1), ('formulation', 1), ('implementation', 1), ('mathematical', 1), ('model', 1), ('forefront', 1), ('research', 1), ('area', 1)]
[('web', 2), ('service', 2), ('written', 1), ('industry', 1), ('thought', 1), ('leader', 1), ('java', 1), ('architecture', 1), ('nonsense', 1), ('guide', 1), ('technology', 1), ('including', 1), ('soap', 1), ('wsdl', 1), ('uddi', 1), ('jax', 1), ('apis', 1), ('book', 1), ('useful', 1), ('system', 1), ('architect', 1), ('provides', 1), ('many', 1), ('practical', 1)]
[('design', 3), ('chip', 2), ('advance', 1), ('technology', 1), ('circuit', 1), ('boost', 1), ('operating', 1), ('frequency', 1), ('microprocessor', 1), ('dsps', 1), ('fast', 1), ('new', 1), ('challenge', 1), ('continue', 1), ('emerge', 1), ('major', 1), ('performance', 1), ('limitation', 1), ('today', 1), ('clock', 1), ('skew', 1)]
[('system', 2), ('sophistication', 1), ('cyber', 1), ('attack', 1), ('increase', 1), ('understanding', 1), ('defend', 1), ('critical', 1), ('infrastructure', 1), ('energy', 1), ('production', 1), ('water', 1), ('gas', 1), ('vital', 1), ('becomes', 1), ('important', 1), ('heavily', 1), ('mandated', 1), ('industrial', 1), ('network', 1), ('security', 1), ('third', 1)]
[('sensor', 2), ('image', 2), ('growth', 1), ('use', 1), ('technology', 1), ('led', 1), ('demand', 1), ('fusion', 1), ('signal', 1), ('processing', 1), ('technique', 1), ('combine', 1), ('information', 1), ('received', 1), ('different', 1), ('single', 1), ('composite', 1), ('efficient', 1), ('reliable', 1), ('manner', 1)]
[('informatics', 2), ('biomedical', 2), ('principle', 1), ('biomedial', 1), ('provides', 1), ('foundation', 1), ('understanding', 1), ('fundamental', 1), ('deal', 1), ('storage', 1), ('retrieval', 1), ('use', 1), ('data', 1), ('biological', 1), ('problem', 1), ('solving', 1), ('medical', 1), ('decision', 1), ('making', 1)]
[('bayesian', 1), ('network', 1), ('important', 1), ('architecture', 1), ('representing', 1), ('reasoning', 1), ('multivariate', 1), ('probability', 1), ('distribution', 1), ('used', 1), ('conjunction', 1), ('specialized', 1), ('informatics', 1), ('possibility', 1), ('real', 1), ('world', 1), ('application', 1)]
[('linux', 2), ('certification', 2), ('guide', 2), ('exam', 2), ('comptia', 1), ('study', 1), ('offer', 1), ('practical', 1), ('interested', 1), ('pursuing', 1), ('cover', 1), ('required', 1), ('content', 1), ('specified', 1), ('comptias', 1), ('objective', 1), ('shaped', 1), ('according', 1)]
[('information', 3), ('management', 2), ('eim', 2), ('asset', 2), ('making', 1), ('enterprise', 1), ('work', 1), ('business', 1), ('guide', 1), ('understanding', 1), ('provides', 1), ('comprehensive', 1), ('discussion', 1), ('endeavor', 1), ('explain', 1), ('place', 1), ('pragmatic', 1)]
[('exponential', 1), ('explosion', 1), ('image', 1), ('video', 1), ('concern', 1), ('everybody', 1), ('common', 1), ('life', 1), ('medium', 1), ('present', 1), ('everywhere', 1), ('human', 1), ('activity', 1), ('scientist', 1), ('artist', 1), ('engineer', 1), ('field', 1), ('need', 1), ('aware', 1), ('basic', 1), ('mechanism', 1)]
[('flow', 3), ('network', 3), ('research', 2), ('repairable', 1), ('new', 1), ('area', 1), ('analyzes', 1), ('repair', 1), ('disruption', 1), ('caused', 1), ('failure', 1), ('component', 1), ('static', 1), ('book', 1), ('address', 1), ('gap', 1), ('current', 1), ('developing', 1), ('theory', 1), ('algorithm', 1)]
[('motion', 3), ('human', 2), ('approach', 2), ('simulate', 1), ('realistic', 1), ('virtual', 1), ('world', 1), ('optimization', 1), ('based', 1), ('prediction', 1), ('governed', 1), ('performance', 1), ('measure', 1), ('speed', 1), ('energy', 1), ('act', 1), ('objective', 1), ('function', 1)]
[('development', 2), ('process', 2), ('research', 1), ('pharmaceutical', 1), ('industry', 1), ('time', 1), ('consuming', 1), ('expensive', 1), ('making', 1), ('difficult', 1), ('newly', 1), ('developed', 1), ('drug', 1), ('formulated', 1), ('commercially', 1), ('available', 1), ('product', 1), ('formulation', 1)]
[('library', 2), ('many', 1), ('professional', 1), ('information', 1), ('service', 1), ('li', 1), ('area', 1), ('using', 1), ('web', 1), ('deliver', 1), ('content', 1), ('reaching', 1), ('connect', 1), ('user', 1), ('book', 1), ('applies', 1), ('technology', 1), ('help', 1), ('shape', 1), ('career', 1), ('development', 1), ('plan', 1)]
[('perception', 2), ('vehicle', 2), ('book', 1), ('provides', 1), ('overview', 1), ('constructing', 1), ('advanced', 1), ('autonomous', 1), ('driving', 1), ('map', 1), ('includes', 1), ('coverage', 1), ('method', 1), ('fusion', 1), ('target', 1), ('based', 1), ('vision', 1), ('millimeter', 1), ('wave', 1), ('radar', 1), ('cross', 1), ('field', 1), ('view', 1), ('object', 1)]
[('whilst', 1), ('enterprise', 1), ('technology', 1), ('department', 1), ('steadily', 1), ('building', 1), ('information', 1), ('knowledge', 1), ('management', 1), ('portfolio', 1), ('internet', 1), ('generated', 1), ('new', 1), ('set', 1), ('tool', 1), ('capability', 1), ('provide', 1), ('opportunity', 1), ('challenge', 1), ('improving', 1)]
[('social', 2), ('network', 2), ('site', 2), ('scientist', 1), ('quantitative', 1), ('survey', 1), ('explores', 1), ('newest', 1), ('example', 1), ('researchgate', 1), ('academia', 1), ('edu', 1), ('web', 1), ('bibliographic', 1), ('platform', 1), ('mendeley', 1), ('zotero', 1), ('recently', 1), ('emerged', 1), ('scholarly', 1)]
[('computer', 2), ('advance', 1), ('latest', 1), ('volume', 1), ('series', 1), ('published', 1), ('present', 1), ('detailed', 1), ('coverage', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('addition', 1), ('provides', 1), ('contributor', 1), ('medium', 1)]
[('actuator', 2), ('cellular', 1), ('modularity', 1), ('variability', 1), ('muscle', 1), ('inspired', 1), ('actuation', 1), ('describes', 1), ('role', 1), ('play', 1), ('robotics', 1), ('insufficiency', 1), ('emerging', 1), ('new', 1), ('robotic', 1), ('application', 1), ('wearable', 1), ('device', 1), ('human', 1), ('co', 1), ('working', 1), ('robot', 1)]
[('classification', 3), ('information', 2), ('record', 1), ('concept', 1), ('principle', 1), ('method', 1), ('system', 1), ('context', 1), ('introduces', 1), ('early', 1), ('part', 1), ('research', 1), ('lifecycle', 1), ('ensures', 1), ('systematic', 1), ('organization', 1), ('document', 1), ('facilitates', 1)]
[('computer', 2), ('volume', 2), ('advance', 1), ('latest', 1), ('series', 1), ('published', 1), ('present', 1), ('detailed', 1), ('coverage', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('book', 1), ('provides', 1), ('contributor', 1), ('medium', 1)]
[('smart', 2), ('city', 2), ('untangling', 1), ('utopian', 1), ('dream', 1), ('innovation', 1), ('system', 1), ('technology', 1), ('enabled', 1), ('urban', 1), ('sustainability', 1), ('help', 1), ('key', 1), ('stakeholder', 1), ('understand', 1), ('complex', 1), ('often', 1), ('conflicting', 1), ('nature', 1), ('research', 1), ('offering', 1), ('valuable', 1), ('insight', 1)]
[('fmri', 3), ('neurofeedback', 3), ('provides', 1), ('perspective', 1), ('field', 1), ('functional', 1), ('magnetic', 1), ('resonance', 1), ('imaging', 1), ('evolved', 1), ('introduction', 1), ('state', 1), ('art', 1), ('method', 1), ('used', 1), ('review', 1), ('published', 1), ('neuroscientific', 1)]
[('image', 3), ('enhancement', 2), ('reconstruction', 2), ('technique', 2), ('application', 2), ('quality', 2), ('digital', 1), ('explores', 1), ('different', 1), ('concept', 1), ('used', 1), ('low', 1), ('real', 1), ('life', 1), ('require', 1), ('good', 1)]
[('network', 3), ('coding', 2), ('information', 2), ('field', 1), ('theory', 1), ('method', 1), ('attaining', 1), ('maximum', 1), ('flow', 1), ('book', 1), ('ideal', 1), ('introduction', 1), ('communication', 1), ('engineer', 1), ('working', 1), ('research', 1), ('development', 1)]
[('key', 3), ('many', 2), ('lockpicking', 1), ('become', 1), ('popular', 1), ('topic', 1), ('security', 1), ('community', 1), ('chosen', 1), ('learn', 1), ('fine', 1), ('art', 1), ('opening', 1), ('lock', 1), ('without', 1), ('explore', 1), ('fascinating', 1), ('method', 1), ('attack', 1), ('possible', 1)]
[('organization', 3), ('rmf', 2), ('allows', 1), ('develop', 1), ('wide', 1), ('risk', 1), ('framework', 1), ('reduces', 1), ('resource', 1), ('required', 1), ('authorize', 1), ('system', 1), ('operation', 1), ('use', 1), ('help', 1), ('maintain', 1), ('compliance', 1), ('fisma', 1), ('omb', 1), ('requirement', 1)]
[('device', 3), ('byod', 3), ('bring', 2), ('work', 2), ('examines', 1), ('emerging', 1), ('trend', 1), ('corporate', 1), ('practice', 1), ('employee', 1), ('bringing', 1), ('personally', 1), ('owned', 1), ('mobile', 1), ('smartphones', 1), ('tablet', 1), ('laptop', 1)]
[('chest', 2), ('radiograph', 2), ('classification', 2), ('deep', 1), ('learning', 1), ('enumerates', 1), ('different', 1), ('strategy', 1), ('implemented', 1), ('author', 1), ('designing', 1), ('efficient', 1), ('convolution', 1), ('neural', 1), ('network', 1), ('based', 1), ('computer', 1), ('aided', 1), ('cac', 1), ('system', 1), ('binary', 1)]
[('risk', 2), ('information', 2), ('organization', 1), ('manage', 1), ('associated', 1), ('quality', 1), ('managing', 1), ('becoming', 1), ('top', 1), ('priority', 1), ('organizational', 1), ('agenda', 1), ('increasing', 1), ('sophistication', 1), ('capability', 1), ('along', 1), ('constantly', 1)]
[('social', 3), ('network', 2), ('navigating', 2), ('digital', 2), ('book', 1), ('tackle', 1), ('online', 1), ('system', 1), ('birth', 1), ('death', 1), ('presence', 1), ('within', 1), ('contentious', 1), ('undertaking', 1), ('confuse', 1), ('boundary', 1)]
[('deep', 3), ('learning', 2), ('edge', 2), ('architecture', 2), ('computing', 1), ('device', 1), ('design', 1), ('challenge', 1), ('algorithm', 1), ('focus', 1), ('hardware', 1), ('embedded', 1), ('including', 1), ('neural', 1), ('network', 1), ('title', 1), ('help', 1), ('researcher', 1), ('maximize', 1), ('performance', 1)]
[('efficient', 2), ('computation', 2), ('argumentation', 2), ('semantics', 2), ('system', 2), ('address', 1), ('introducing', 1), ('reader', 1), ('cutting', 1), ('edge', 1), ('decomposition', 1), ('method', 1), ('drive', 1), ('increasingly', 1), ('logic', 1), ('ai', 1), ('intelligent', 1)]
[('problem', 2), ('solving', 2), ('quotient', 1), ('space', 1), ('based', 1), ('provides', 1), ('depth', 1), ('treatment', 1), ('hierarchical', 1), ('computational', 1), ('complexity', 1), ('principle', 1), ('application', 1), ('multi', 1), ('granular', 1), ('computing', 1), ('including', 1), ('inference', 1), ('information', 1), ('fusing', 1), ('planning', 1)]
[('network', 2), ('interdisciplinary', 2), ('approach', 2), ('device', 2), ('algorithmics', 1), ('designing', 1), ('fast', 1), ('networked', 1), ('second', 1), ('edition', 1), ('take', 1), ('applying', 1), ('principle', 1), ('efficient', 1), ('implementation', 1), ('offering', 1), ('solution', 1), ('problem', 1)]
[('subsurface', 2), ('advance', 1), ('data', 1), ('analytics', 1), ('traditional', 1), ('physic', 1), ('based', 1), ('approach', 1), ('brings', 1), ('together', 1), ('fundamental', 1), ('popular', 1), ('emerging', 1), ('machine', 1), ('learning', 1), ('ml', 1), ('algorithm', 1), ('application', 1), ('analysis', 1), ('including', 1), ('geology', 1)]
[('digital', 3), ('healthcare', 2), ('asia', 1), ('gulf', 1), ('region', 1), ('healthy', 1), ('aging', 1), ('inclusive', 1), ('society', 1), ('shaping', 1), ('future', 1), ('provides', 1), ('insight', 1), ('recent', 1), ('innovation', 1), ('tool', 1), ('technique', 1), ('field', 1), ('special', 1), ('geographic', 1), ('coverage', 1)]
[('handbook', 2), ('medical', 2), ('image', 2), ('processing', 2), ('analysis', 1), ('comprehensive', 1), ('compilation', 1), ('concept', 1), ('technique', 1), ('used', 1), ('analyzing', 1), ('generated', 1), ('digitized', 1), ('organized', 1), ('six', 1)]
[('virtual', 1), ('reality', 1), ('system', 1), ('enable', 1), ('organization', 1), ('cut', 1), ('cost', 1), ('time', 1), ('maintain', 1), ('financial', 1), ('organizational', 1), ('control', 1), ('development', 1), ('process', 1), ('digitally', 1), ('evaluate', 1), ('product', 1), ('created', 1), ('allow', 1), ('greater', 1), ('creative', 1), ('exploration', 1)]
[('volume', 2), ('advance', 1), ('computer', 1), ('series', 1), ('began', 1), ('publication', 1), ('oldest', 1), ('continuously', 1), ('published', 1), ('anthology', 1), ('chronicle', 1), ('changing', 1), ('information', 1), ('technology', 1), ('field', 1), ('publish', 1)]
[('electron', 4), ('advance', 3), ('physic', 3), ('imaging', 1), ('volume', 1), ('merges', 1), ('long', 1), ('running', 1), ('serial', 1), ('electronics', 1), ('optical', 1), ('microscopy', 1), ('series', 1), ('feature', 1), ('extended', 1), ('article', 1)]
[('approx', 1), ('pagesapprox', 1), ('page', 1)]
[('deep', 2), ('learning', 2), ('parallel', 2), ('computing', 2), ('environment', 2), ('bioengineering', 1), ('system', 1), ('delivers', 1), ('significant', 1), ('forum', 1), ('technical', 1), ('advancement', 1), ('across', 1), ('bio', 1), ('engineering', 1), ('diversified', 1), ('domain', 1)]
[('process', 3), ('modeling', 2), ('focus', 2), ('notation', 2), ('important', 2), ('style', 1), ('aspect', 1), ('beyond', 1), ('practitioner', 1), ('many', 1), ('model', 1), ('specific', 1), ('used', 1), ('create', 1), ('drawing', 1)]
[('advance', 3), ('applied', 3), ('mechanic', 3), ('topic', 2), ('draw', 1), ('together', 1), ('recent', 1), ('significant', 1), ('various', 1), ('published', 1), ('aim', 1), ('provide', 1), ('authoritative', 1), ('review', 1), ('article', 1), ('mechanical', 1)]
[('data', 3), ('model', 2), ('science', 1), ('software', 1), ('engineering', 1), ('sharing', 1), ('present', 1), ('guidance', 1), ('procedure', 1), ('reusing', 1), ('project', 1), ('produce', 1), ('result', 1), ('useful', 1), ('relevant', 1), ('starting', 1), ('background', 1), ('section', 1), ('practical', 1), ('lesson', 1)]
[('virtual', 3), ('reality', 3), ('understanding', 1), ('arrives', 1), ('time', 1), ('technology', 1), ('behind', 1), ('advanced', 1), ('point', 1), ('possible', 1), ('develop', 1), ('deploy', 1), ('meaningful', 1), ('productive', 1), ('application', 1), ('aim', 1), ('thorough', 1)]
[('volume', 3), ('computer', 2), ('advance', 1), ('annual', 1), ('produced', 1), ('containing', 1), ('chapter', 1), ('leading', 1), ('expert', 1), ('field', 1), ('today', 1), ('almost', 1), ('year', 1), ('present', 1), ('idea', 1), ('development', 1)]
[('rootkits', 2), ('book', 2), ('application', 2), ('managed', 1), ('code', 1), ('first', 1), ('cover', 1), ('level', 1), ('type', 1), ('malware', 1), ('inside', 1), ('vm', 1), ('run', 1), ('platform', 1), ('independent', 1), ('programming', 1), ('environment', 1), ('process', 1), ('divided', 1), ('four', 1), ('part', 1), ('point', 1)]
[('server', 3), ('window', 2), ('microsoft', 1), ('administrator', 1), ('essential', 1), ('reference', 1), ('introduces', 1), ('microsofts', 1), ('flagship', 1), ('operating', 1), ('system', 1), ('latest', 1), ('release', 1), ('book', 1), ('explores', 1), ('feature', 1), ('describes', 1), ('difference', 1)]
[('high', 1), ('dynamic', 1), ('range', 1), ('imaging', 1), ('second', 1), ('edition', 1), ('essential', 1), ('resource', 1), ('anyone', 1), ('working', 1), ('image', 1), ('whether', 1), ('computer', 1), ('graphic', 1), ('film', 1), ('video', 1), ('photography', 1), ('lighting', 1), ('design', 1), ('describes', 1), ('hdri', 1), ('technology', 1), ('entirety', 1), ('cover', 1)]
[('gpu', 2), ('computing', 1), ('gem', 1), ('jade', 1), ('edition', 1), ('offer', 1), ('hand', 1), ('proven', 1), ('technique', 1), ('general', 1), ('purpose', 1), ('programming', 1), ('based', 1), ('successful', 1), ('application', 1), ('experience', 1), ('leading', 1), ('researcher', 1), ('developer', 1), ('resource', 1), ('available', 1), ('distills', 1), ('best', 1)]
[('service', 3), ('web', 1), ('oriented', 1), ('architecture', 1), ('cloud', 1), ('computing', 1), ('jargon', 1), ('free', 1), ('highly', 1), ('illustrated', 1), ('explanation', 1), ('leverage', 1), ('rapidly', 1), ('multiplying', 1), ('available', 1), ('internet', 1), ('future', 1), ('business', 1), ('depend', 1), ('software', 1)]
[('uc', 2), ('attack', 2), ('unified', 1), ('communication', 1), ('forensics', 1), ('anatomy', 1), ('common', 1), ('first', 1), ('book', 1), ('explain', 1), ('issue', 1), ('vulnerability', 1), ('demonstrate', 1), ('forensic', 1), ('artifact', 1), ('countermeasure', 1), ('required', 1), ('establish', 1), ('secure', 1), ('environment', 1)]
[('driven', 2), ('force', 2), ('textbook', 1), ('offer', 1), ('insightful', 1), ('study', 1), ('intelligent', 1), ('internet', 1), ('revolutionary', 1), ('fundamental', 1), ('work', 1), ('society', 1), ('reader', 1), ('access', 1), ('tool', 1), ('technique', 1), ('mentor', 1), ('monitor', 1), ('rather', 1)]
[('image', 2), ('processing', 2), ('new', 1), ('approach', 1), ('based', 1), ('failure', 1), ('analysis', 1), ('nano', 1), ('scale', 1), ('ulsi', 1), ('device', 1), ('introduces', 1), ('reader', 1), ('transmission', 1), ('scanning', 1), ('microscope', 1), ('metal', 1), ('non', 1), ('metallic', 1), ('microstructures', 1), ('engineer', 1), ('scientist', 1), ('face', 1)]
[('intelligent', 4), ('system', 2), ('series', 1), ('publishes', 1), ('reference', 1), ('work', 1), ('handbook', 1), ('three', 1), ('core', 1), ('sub', 1), ('topic', 1), ('area', 1), ('automation', 1), ('transportation', 1), ('computing', 1), ('include', 1), ('theoretical', 1), ('study', 1), ('design', 1), ('method', 1)]
[('tv', 2), ('book', 1), ('explore', 1), ('question', 1), ('raised', 1), ('technological', 1), ('development', 1), ('encouraged', 1), ('multiplication', 1), ('channel', 1), ('moving', 1), ('period', 1), ('rapid', 1), ('change', 1), ('government', 1), ('around', 1), ('world', 1), ('switching', 1), ('analogue', 1)]
[('soft', 2), ('computing', 2), ('technique', 2), ('complex', 2), ('refers', 1), ('collection', 1), ('computational', 1), ('study', 1), ('model', 1), ('analyse', 1), ('phenomenon', 1), ('many', 1), ('textile', 1), ('engineering', 1), ('problem', 1), ('inherently', 1), ('nature', 1), ('often', 1), ('provided', 1), ('optimum', 1)]
[('parallelism', 2), ('high', 1), ('performance', 1), ('pearl', 1), ('show', 1), ('leverage', 1), ('processor', 1), ('coprocessors', 1), ('programming', 1), ('illustrating', 1), ('effective', 1), ('way', 1), ('better', 1), ('tap', 1), ('computational', 1), ('potential', 1), ('system', 1), ('intel', 1), ('xeon', 1), ('phi', 1)]
[('application', 2), ('big', 2), ('data', 2), ('national', 1), ('security', 1), ('provides', 1), ('user', 1), ('state', 1), ('art', 1), ('concept', 1), ('method', 1), ('technology', 1), ('analytics', 1), ('fight', 1), ('terrorism', 1), ('crime', 1), ('including', 1), ('wide', 1), ('range', 1), ('case', 1), ('study', 1)]
[('information', 2), ('software', 2), ('building', 1), ('intelligent', 1), ('system', 1), ('show', 1), ('scientist', 1), ('engineer', 1), ('build', 1), ('application', 1), ('model', 1), ('complex', 1), ('data', 1), ('knowledge', 1), ('without', 1), ('need', 1), ('coding', 1), ('traditional', 1), ('development', 1), ('take', 1), ('time', 1), ('lead', 1)]
[('o', 2), ('analyst', 2), ('incident', 1), ('response', 1), ('scripting', 1), ('analysis', 1), ('written', 1), ('looking', 1), ('expand', 1), ('understanding', 1), ('lesser', 1), ('known', 1), ('operating', 1), ('system', 1), ('mastering', 1), ('forensic', 1), ('artifact', 1), ('set', 1), ('apart', 1), ('acquiring', 1)]
[('matlab', 2), ('practical', 1), ('introduction', 1), ('programming', 1), ('problem', 1), ('solving', 1), ('fourth', 1), ('edition', 1), ('winner', 1), ('textbook', 1), ('excellence', 1), ('award', 1), ('texty', 1), ('updated', 1), ('reflect', 1), ('functionality', 1), ('current', 1), ('version', 1), ('including', 1), ('new', 1), ('graphic', 1)]
[('example', 2), ('based', 2), ('super', 2), ('resolution', 2), ('provides', 1), ('thorough', 1), ('introduction', 1), ('overview', 1), ('covering', 1), ('successful', 1), ('algorithmic', 1), ('approach', 1), ('theory', 1), ('behind', 1), ('implementation', 1), ('insight', 1), ('describes', 1), ('current', 1)]
[('fttx', 4), ('technology', 3), ('network', 2), ('implementation', 2), ('provides', 2), ('operation', 1), ('depth', 1), ('treatment', 1), ('discus', 1), ('environment', 1), ('gave', 1), ('rise', 1), ('survey', 1), ('available', 1)]
[('web', 3), ('thing', 2), ('managing', 1), ('linking', 1), ('real', 1), ('world', 1), ('present', 1), ('consolidated', 1), ('holistic', 1), ('coverage', 1), ('engineering', 1), ('management', 1), ('analytics', 1), ('internet', 1), ('gone', 1), ('many', 1), ('transformation', 1), ('traditional', 1)]
[('computing', 4), ('mobile', 3), ('cloud', 3), ('foundation', 1), ('service', 1), ('model', 1), ('combine', 1), ('wireless', 1), ('networking', 1), ('bring', 1), ('new', 1), ('computational', 1), ('resource', 1), ('user', 1), ('network', 1), ('operator', 1), ('provider', 1), ('book', 1), ('provides', 1)]
[('imaging', 3), ('genetics', 2), ('present', 1), ('latest', 1), ('research', 1), ('methodology', 1), ('discovering', 1), ('new', 1), ('association', 1), ('genetic', 1), ('variable', 1), ('providing', 1), ('overview', 1), ('state', 1), ('art', 1), ('field', 1), ('edited', 1), ('written', 1), ('leading', 1)]
[('data', 3), ('compression', 3), ('introduction', 2), ('fifth', 1), ('edition', 1), ('build', 1), ('success', 1), ('widely', 1), ('considered', 1), ('best', 1), ('reference', 1), ('text', 1), ('art', 1), ('science', 1), ('technique', 1), ('technology', 1), ('evolving', 1)]
[('social', 2), ('network', 2), ('nodexl', 2), ('analyzing', 1), ('medium', 1), ('insight', 1), ('connected', 1), ('world', 1), ('second', 1), ('edition', 1), ('provides', 1), ('reader', 1), ('thorough', 1), ('practical', 1), ('updated', 1), ('guide', 1), ('open', 1), ('source', 1), ('analysis', 1), ('sna', 1), ('plug', 1), ('use', 1), ('excel', 1)]
[('intelligence', 4), ('science', 2), ('leading', 1), ('age', 1), ('cover', 1), ('emerging', 1), ('scientific', 1), ('research', 1), ('theory', 1), ('technology', 1), ('bringing', 1), ('together', 1), ('discipline', 1), ('neuroscience', 1), ('cognitive', 1), ('artificial', 1), ('study', 1)]
[('embedded', 2), ('system', 2), ('design', 2), ('content', 2), ('computer', 1), ('component', 1), ('principle', 1), ('computing', 1), ('fifth', 1), ('edition', 1), ('continues', 1), ('focus', 1), ('foundational', 1), ('technology', 1), ('updating', 1), ('material', 1), ('throughout', 1), ('book', 1), ('introducing', 1), ('new', 1)]
[('healthcare', 2), ('edge', 1), ('thing', 1), ('personalized', 1), ('support', 1), ('system', 1), ('discus', 1), ('explores', 1), ('state', 1), ('art', 1), ('technology', 1), ('development', 1), ('storage', 1), ('sharing', 1), ('personal', 1), ('record', 1), ('secure', 1), ('manner', 1), ('globally', 1), ('distributed', 1), ('incorporate', 1), ('best', 1)]
[('system', 3), ('data', 2), ('input', 2), ('output', 2), ('classical', 1), ('envelopment', 1), ('analysis', 1), ('dea', 1), ('model', 1), ('use', 1), ('crisp', 1), ('measure', 1), ('given', 1), ('case', 1), ('manufacturing', 1), ('production', 1), ('process', 1), ('service', 1), ('etc', 1), ('complex', 1)]
[('role', 2), ('tumor', 2), ('microenvironment', 2), ('breast', 2), ('cancer', 2), ('targeted', 1), ('therapy', 1), ('discus', 1), ('current', 1), ('understanding', 1), ('component', 1), ('tumorigenicity', 1), ('development', 1), ('therapeutic', 1), ('resistance', 1), ('along', 1)]
[('pervasive', 2), ('data', 2), ('collection', 2), ('computing', 1), ('next', 1), ('generation', 1), ('platform', 1), ('intelligent', 1), ('present', 1), ('current', 1), ('advance', 1), ('state', 1), ('art', 1), ('work', 1), ('method', 1), ('technique', 1), ('algorithm', 1), ('designed', 1), ('support', 1), ('ubiquitous', 1), ('network', 1)]
[('insider', 2), ('threat', 2), ('detection', 1), ('mitigation', 1), ('deterrence', 1), ('prevention', 1), ('present', 1), ('set', 1), ('solution', 1), ('address', 1), ('increase', 1), ('case', 1), ('includes', 1), ('espionage', 1), ('embezzlement', 1), ('sabotage', 1), ('fraud', 1), ('intellectual', 1), ('property', 1), ('theft', 1), ('research', 1)]
[('level', 2), ('network', 1), ('function', 1), ('virtualization', 1), ('provides', 1), ('architectural', 1), ('vendor', 1), ('neutral', 1), ('overview', 1), ('issue', 1), ('surrounding', 1), ('large', 1), ('data', 1), ('storage', 1), ('transmission', 1), ('requirement', 1), ('needed', 1), ('today', 1), ('company', 1), ('enumerating', 1), ('benefit', 1), ('nfv', 1)]
[('data', 2), ('software', 2), ('engineering', 2), ('perspective', 1), ('science', 1), ('present', 1), ('best', 1), ('practice', 1), ('seasoned', 1), ('miner', 1), ('idea', 1), ('book', 1), ('created', 1), ('conference', 1), ('dagstuhl', 1), ('invitation', 1), ('gathering', 1), ('leading', 1)]
[('machine', 3), ('learning', 3), ('medical', 3), ('imaging', 2), ('present', 1), ('state', 1), ('art', 1), ('method', 1), ('image', 1), ('analysis', 1), ('first', 1), ('summarizes', 1), ('cutting', 1), ('edge', 1), ('algorithm', 1), ('including', 1), ('classical', 1), ('probabilistic', 1)]
[('data', 3), ('analytics', 2), ('intelligent', 2), ('transportation', 2), ('system', 2), ('method', 2), ('provides', 1), ('depth', 1), ('coverage', 1), ('enabled', 1), ('analyzing', 1), ('including', 1), ('tool', 1), ('needed', 1), ('implement', 1), ('using', 1), ('big', 1)]
[('intelligent', 2), ('machine', 2), ('evolution', 1), ('knowledge', 1), ('science', 1), ('myth', 1), ('medicine', 1), ('internet', 1), ('based', 1), ('humanist', 1), ('explains', 1), ('design', 1), ('build', 1), ('next', 1), ('generation', 1), ('solve', 1), ('social', 1), ('environmental', 1), ('problem', 1), ('systematic', 1), ('coherent', 1)]
[('drug', 2), ('individualized', 1), ('therapy', 1), ('patient', 1), ('basic', 1), ('foundation', 1), ('relevant', 1), ('software', 1), ('clinical', 1), ('application', 1), ('focus', 1), ('quantitative', 1), ('approach', 1), ('maximize', 1), ('precision', 1), ('dosage', 1), ('regimen', 1), ('potentially', 1), ('toxic', 1), ('hit', 1), ('desired', 1)]
[('sequence', 3), ('graph', 2), ('de', 1), ('bruijn', 1), ('defined', 1), ('enumerate', 1), ('number', 1), ('closed', 1), ('tuple', 1), ('appears', 1), ('exactly', 1), ('window', 1), ('year', 1), ('found', 1), ('numerous', 1), ('application', 1), ('space', 1)]
[('ai', 2), ('strategy', 1), ('leadership', 1), ('cyber', 1), ('ecosystem', 1), ('investigates', 1), ('restructuring', 1), ('way', 1), ('cybersecurity', 1), ('business', 1), ('leader', 1), ('engage', 1), ('emerging', 1), ('digital', 1), ('revolution', 1), ('towards', 1), ('development', 1), ('strategic', 1), ('management', 1), ('aid', 1)]
[('exchange', 2), ('microsoft', 1), ('server', 1), ('deployment', 1), ('migration', 1), ('describes', 1), ('everything', 1), ('need', 1), ('know', 1), ('designing', 1), ('planning', 1), ('implementing', 1), ('environment', 1), ('book', 1), ('discus', 1), ('requisite', 1), ('infrastructure', 1), ('requirement', 1), ('window', 1)]
[('computer', 2), ('architecture', 1), ('quantitative', 1), ('approach', 1), ('considered', 1), ('essential', 1), ('reading', 1), ('instructor', 1), ('student', 1), ('practitioner', 1), ('design', 1), ('nearly', 1), ('year', 1), ('seventh', 1), ('edition', 1), ('classic', 1), ('textbook', 1), ('john', 1), ('hennessy', 1), ('david', 1)]
[('snort', 3), ('incredible', 1), ('low', 1), ('maintenance', 1), ('cost', 1), ('combined', 1), ('powerful', 1), ('security', 1), ('feature', 1), ('make', 1), ('fastest', 1), ('growing', 1), ('id', 1), ('within', 1), ('corporate', 1), ('department', 1), ('intrusion', 1), ('detection', 1), ('written', 1), ('member', 1), ('org', 1), ('book', 1)]
[('computer', 2), ('volume', 2), ('advance', 1), ('latest', 1), ('innovative', 1), ('series', 1), ('published', 1), ('present', 1), ('detailed', 1), ('coverage', 1), ('new', 1), ('advancement', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('chapter', 1), ('updated', 1), ('release', 1)]
[('managing', 1), ('system', 1), ('migration', 1), ('upgrade', 1), ('perfect', 1), ('book', 1), ('technology', 1), ('manager', 1), ('want', 1), ('rational', 1), ('guide', 1), ('evaluating', 1), ('business', 1), ('aspect', 1), ('various', 1), ('possible', 1), ('technical', 1), ('solution', 1), ('enterprise', 1), ('today', 1), ('middle', 1), ('race', 1)]
[('environmental', 2), ('science', 2), ('statistical', 2), ('technique', 2), ('applied', 1), ('statistic', 1), ('present', 1), ('theory', 1), ('application', 1), ('aid', 1), ('researcher', 1), ('choosing', 1), ('appropriate', 1), ('analyzing', 1), ('data', 1), ('focusing', 1)]
[('nagios', 4), ('enterprise', 2), ('future', 1), ('certainly', 1), ('bright', 1), ('network', 1), ('monitoring', 1), ('help', 1), ('harness', 1), ('full', 1), ('power', 1), ('organization', 1), ('contains', 1), ('many', 1), ('significant', 1), ('new', 1), ('feature', 1), ('update', 1), ('book', 1)]
[('intelligence', 2), ('nature', 1), ('inspired', 1), ('computation', 1), ('swarm', 1), ('become', 1), ('popular', 1), ('effective', 1), ('tool', 1), ('solving', 1), ('problem', 1), ('optimization', 1), ('computational', 1), ('soft', 1), ('computing', 1), ('data', 1), ('science', 1), ('recently', 1), ('literature', 1), ('field', 1), ('expanded', 1)]
[('acquisition', 2), ('analysis', 2), ('image', 2), ('intravascular', 1), ('ultrasound', 1), ('advanced', 1), ('quantitative', 1), ('cover', 1), ('topic', 1), ('whole', 1), ('imaging', 1), ('pipeline', 1), ('ranging', 1), ('definition', 1), ('clinical', 1), ('problem', 1), ('system', 1), ('processing', 1), ('including', 1)]
[('system', 2), ('superlubricity', 1), ('state', 1), ('sliding', 1), ('friction', 1), ('reduced', 1), ('almost', 1), ('immeasurable', 1), ('amount', 1), ('hold', 1), ('potential', 1), ('improving', 1), ('economic', 1), ('environmental', 1), ('credential', 1), ('moving', 1), ('mechanical', 1), ('research', 1), ('field', 1)]
[('global', 2), ('ux', 2), ('world', 2), ('user', 2), ('experience', 2), ('design', 1), ('research', 1), ('connected', 1), ('discus', 1), ('practice', 1), ('changing', 1), ('practitioner', 1), ('team', 1), ('around', 1), ('creating', 1), ('context', 1), ('book', 1), ('based', 1), ('interview', 1)]
[('rule', 3), ('business', 2), ('writing', 1), ('effective', 1), ('move', 1), ('beyond', 1), ('fundamental', 1), ('dilemma', 1), ('system', 1), ('design', 1), ('defining', 1), ('either', 1), ('natural', 1), ('language', 1), ('intelligible', 1), ('often', 1), ('ambiguous', 1), ('program', 1), ('code', 1), ('engine', 1), ('instruction', 1), ('unambiguous', 1)]
[('logic', 2), ('application', 2), ('precharge', 1), ('used', 1), ('variety', 1), ('industry', 1), ('processor', 1), ('speed', 1), ('primary', 1), ('goal', 1), ('vlsi', 1), ('large', 1), ('system', 1), ('integration', 1), ('called', 1), ('dynamic', 1), ('type', 1), ('design', 1), ('us', 1), ('clock', 1), ('synchronize', 1)]
[('image', 2), ('processing', 2), ('computer', 2), ('vision', 2), ('feature', 1), ('extraction', 1), ('essential', 1), ('guide', 1), ('implementation', 1), ('technique', 1), ('tutorial', 1), ('introduction', 1), ('sample', 1), ('code', 1), ('matlab', 1), ('algorithm', 1), ('presented', 1), ('fully', 1)]
[('computer', 2), ('first', 1), ('volume', 1), ('advance', 1), ('presented', 1), ('detailed', 1), ('coverage', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('provided', 1), ('contributor', 1), ('medium', 1), ('explore', 1)]
[('cognitive', 2), ('review', 2), ('model', 1), ('sustainable', 1), ('environment', 1), ('fundamental', 1), ('concept', 1), ('gathering', 1), ('processing', 1), ('analyzing', 1), ('data', 1), ('batch', 1), ('process', 1), ('along', 1), ('intelligent', 1), ('tool', 1), ('used', 1), ('book', 1), ('centered', 1)]
[('computer', 2), ('first', 1), ('volume', 1), ('advance', 1), ('presented', 1), ('detailed', 1), ('coverage', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('provided', 1), ('contributor', 1), ('medium', 1), ('explore', 1)]
[('due', 2), ('blind', 1), ('person', 1), ('try', 1), ('make', 1), ('online', 1), ('purchase', 1), ('young', 1), ('girl', 1), ('speak', 1), ('cognitive', 1), ('disability', 1), ('confined', 1), ('home', 1), ('permanent', 1), ('injury', 1), ('single', 1), ('mother', 1), ('long', 1), ('term', 1), ('illness', 1), ('struggle', 1), ('feed', 1)]
[('augmented', 3), ('reality', 3), ('understanding', 1), ('address', 1), ('element', 1), ('required', 1), ('create', 1), ('experience', 1), ('technology', 1), ('support', 1), ('come', 1), ('go', 1), ('evolve', 1), ('change', 1), ('underlying', 1), ('principle', 1), ('creating', 1), ('exciting', 1)]
[('pacific', 2), ('congress', 2), ('computational', 2), ('mechanic', 2), ('proceeding', 1), ('contain', 1), ('paper', 1), ('presented', 1), ('stasian', 1), ('held', 1), ('sydney', 1), ('november', 1), ('theme', 1), ('first', 1), ('asian', 1), ('association', 1)]
[('data', 4), ('big', 2), ('reader', 2), ('principle', 1), ('help', 1), ('avoid', 1), ('common', 1), ('mistake', 1), ('endanger', 1), ('project', 1), ('stressing', 1), ('simple', 1), ('fundamental', 1), ('concept', 1), ('book', 1), ('teach', 1), ('organize', 1), ('large', 1), ('volume', 1), ('complex', 1), ('achieve', 1)]
[('security', 2), ('web', 2), ('based', 2), ('application', 2), ('trend', 1), ('report', 1), ('provides', 1), ('executive', 1), ('practitioner', 1), ('overview', 1), ('benefit', 1), ('using', 1), ('tool', 1), ('workplace', 1), ('risk', 1), ('used', 1), ('business', 1)]
[('information', 3), ('protection', 2), ('ip', 2), ('primary', 1), ('goal', 1), ('playbook', 1), ('serve', 1), ('comprehensive', 1), ('resource', 1), ('professional', 1), ('provide', 1), ('adequate', 1), ('security', 1), ('reasonable', 1), ('cost', 1), ('emphasizes', 1), ('holistic', 1), ('view', 1)]
[('library', 3), ('social', 2), ('medium', 2), ('stay', 1), ('robust', 1), ('campaign', 1), ('provide', 1), ('academic', 1), ('mean', 1), ('showcase', 1), ('resource', 1), ('highlight', 1), ('content', 1), ('event', 1), ('attract', 1), ('student', 1), ('sample', 1), ('offer', 1), ('building', 1)]
[('machine', 2), ('learning', 2), ('constraint', 1), ('based', 1), ('approach', 1), ('second', 1), ('edition', 1), ('provides', 1), ('reader', 1), ('refreshing', 1), ('look', 1), ('basic', 1), ('model', 1), ('algorithm', 1), ('emphasis', 1), ('current', 1), ('topic', 1), ('interest', 1), ('include', 1), ('neural', 1), ('network', 1), ('kernel', 1)]
[('design', 2), ('communication', 2), ('network', 2), ('theory', 2), ('modern', 1), ('focus', 1), ('method', 1), ('algorithm', 1), ('related', 1), ('using', 1), ('optimization', 1), ('graph', 1), ('probability', 1), ('simulation', 1), ('technique', 1), ('book', 1), ('discus', 1), ('nature', 1), ('complexity', 1)]
[('eye', 3), ('tracking', 3), ('user', 2), ('experience', 1), ('design', 1), ('explores', 1), ('many', 1), ('application', 1), ('better', 1), ('understand', 1), ('view', 1), ('interact', 1), ('technology', 1), ('ten', 1), ('leading', 1), ('expert', 1), ('discus', 1), ('taken', 1), ('advantage', 1), ('new', 1)]
[('digital', 2), ('hiding', 2), ('information', 2), ('world', 1), ('need', 1), ('protect', 1), ('communication', 1), ('increase', 1), ('every', 1), ('day', 1), ('traditional', 1), ('encryption', 1), ('method', 1), ('useful', 1), ('many', 1), ('option', 1), ('speech', 1), ('signal', 1), ('secure', 1)]
[('data', 3), ('science', 1), ('difficult', 1), ('project', 1), ('typically', 1), ('dynamic', 1), ('requirement', 1), ('change', 1), ('understanding', 1), ('grows', 1), ('arrives', 1), ('piecemeal', 1), ('added', 1), ('replaced', 1), ('contains', 1), ('undiscovered', 1), ('flaw', 1), ('come', 1), ('variety', 1)]
[('social', 2), ('engineering', 2), ('attack', 2), ('everyone', 2), ('know', 2), ('target', 1), ('weakest', 1), ('link', 1), ('organization', 1), ('security', 1), ('human', 1), ('being', 1), ('effective', 1), ('rise', 1), ('penetration', 1), ('testing', 1), ('give', 1), ('practical', 1)]
[('app', 1), ('make', 1), ('work', 1), ('stand', 1), ('crowd', 1), ('walk', 1), ('mobile', 1), ('experience', 1), ('teach', 1), ('evaluate', 1), ('current', 1), ('ux', 1), ('approach', 1), ('enabling', 1), ('think', 1), ('outside', 1), ('screen', 1), ('beyond', 1), ('conventional', 1)]
[('implementation', 2), ('network', 1), ('chip', 1), ('programming', 1), ('paradigm', 1), ('provides', 1), ('thorough', 1), ('bottom', 1), ('exploration', 1), ('whole', 1), ('noc', 1), ('design', 1), ('space', 1), ('coherent', 1), ('uniform', 1), ('fashion', 1), ('low', 1), ('level', 1), ('router', 1), ('buffer', 1), ('topology', 1), ('routing', 1)]
[('intelligent', 2), ('system', 2), ('series', 1), ('comprises', 1), ('title', 1), ('present', 1), ('state', 1), ('art', 1), ('knowledge', 1), ('latest', 1), ('advance', 1), ('scope', 1), ('includes', 1), ('theoretical', 1), ('study', 1), ('design', 1), ('method', 1), ('real', 1), ('world', 1), ('implementation', 1), ('application', 1)]
[('intelligent', 2), ('system', 2), ('series', 1), ('comprises', 1), ('title', 1), ('present', 1), ('state', 1), ('art', 1), ('knowledge', 1), ('latest', 1), ('advance', 1), ('scope', 1), ('includes', 1), ('theoretical', 1), ('study', 1), ('design', 1), ('method', 1), ('real', 1), ('world', 1), ('implementation', 1), ('application', 1)]
[('hacking', 2), ('low', 1), ('tech', 1), ('teach', 1), ('student', 1), ('avoid', 1), ('defend', 1), ('simplest', 1), ('common', 1), ('hack', 1), ('criminal', 1), ('using', 1), ('technique', 1), ('cost', 1), ('corporation', 1), ('government', 1), ('individual', 1), ('million', 1), ('dollar', 1), ('year', 1)]
[('modern', 2), ('embedded', 2), ('computing', 2), ('system', 2), ('designing', 1), ('connected', 1), ('pervasive', 1), ('medium', 1), ('rich', 1), ('provides', 1), ('thorough', 1), ('understanding', 1), ('platform', 1), ('architecture', 1), ('drive', 1), ('mobile', 1), ('device', 1), ('book', 1), ('offer', 1), ('comprehensive', 1), ('view', 1)]
[('technology', 2), ('decade', 2), ('explosive', 1), ('growth', 1), ('mobile', 1), ('phone', 1), ('usage', 1), ('rapid', 1), ('rise', 1), ('search', 1), ('engine', 1), ('last', 1), ('augmented', 1), ('reality', 1), ('ar', 1), ('poised', 1), ('disruptive', 1), ('information', 1), ('constantly', 1)]
[('exchange', 2), ('anyone', 1), ('reading', 1), ('business', 1), ('section', 1), ('newspaper', 1), ('lately', 1), ('know', 1), ('financial', 1), ('stock', 1), ('bond', 1), ('fx', 1), ('commodity', 1), ('forth', 1), ('undergoing', 1), ('tremendous', 1), ('transformation', 1), ('fund', 1), ('manager', 1), ('market', 1), ('maker', 1), ('trader', 1), ('professional', 1)]
[('analysis', 4), ('window', 3), ('forensic', 1), ('toolkit', 1), ('advanced', 1), ('technique', 1), ('provides', 1), ('overview', 1), ('live', 1), ('postmortem', 1), ('response', 1), ('collection', 1), ('methodology', 1), ('considers', 1), ('core', 1), ('investigative', 1), ('concept', 1)]
[('computational', 2), ('finance', 2), ('mathematical', 2), ('present', 1), ('modern', 1), ('approach', 1), ('within', 1), ('window', 1), ('environment', 1), ('contains', 1), ('financial', 1), ('algorithm', 1), ('proof', 1), ('computer', 1), ('code', 1), ('author', 1), ('illustrates', 1), ('numeric', 1), ('component', 1)]
[('social', 3), ('medium', 3), ('career', 2), ('librarian', 2), ('growing', 1), ('present', 1), ('tool', 1), ('current', 1), ('trend', 1), ('professional', 1), ('development', 1), ('strategy', 1), ('help', 1), ('busy', 1), ('remain', 1), ('date', 1), ('title', 1), ('offer', 1), ('advice', 1), ('use', 1)]
[('book', 2), ('security', 2), ('network', 2), ('clearly', 1), ('demonstrate', 1), ('big', 1), ('dollar', 1), ('using', 1), ('freely', 1), ('available', 1), ('tool', 1), ('company', 1), ('person', 1), ('limited', 1), ('budget', 1), ('constant', 1), ('struggle', 1)]
[('pattern', 2), ('recognition', 2), ('problem', 2), ('completely', 1), ('revised', 1), ('second', 1), ('edition', 1), ('present', 1), ('introduction', 1), ('statistical', 1), ('general', 1), ('cover', 1), ('wide', 1), ('range', 1), ('applied', 1), ('engineering', 1), ('character', 1), ('reader', 1), ('wave', 1), ('form', 1)]
[('electron', 4), ('advance', 3), ('physic', 3), ('imaging', 1), ('volume', 1), ('merges', 1), ('long', 1), ('running', 1), ('serial', 1), ('electronics', 1), ('optical', 1), ('microscopy', 1), ('series', 1), ('feature', 1), ('extended', 1), ('article', 1)]
[('modal', 1), ('logic', 1), ('originally', 1), ('conceived', 1), ('philosophy', 1), ('recently', 1), ('found', 1), ('many', 1), ('application', 1), ('computer', 1), ('science', 1), ('artificial', 1), ('intelligence', 1), ('foundation', 1), ('mathematics', 1), ('linguistics', 1), ('discipline', 1), ('celebrated', 1), ('good', 1), ('computational', 1)]
[('many', 2), ('information', 2), ('google', 2), ('free', 2), ('library', 1), ('museum', 1), ('adapted', 1), ('current', 1), ('climate', 1), ('working', 1), ('facebook', 1), ('twitter', 1), ('itunes', 1), ('deliver', 1), ('user', 1), ('describes', 1), ('variety', 1), ('nearly', 1), ('option', 1)]
[('law', 3), ('china', 2), ('comprehensive', 1), ('structured', 1), ('date', 1), ('introduction', 1), ('governing', 1), ('dissemination', 1), ('information', 1), ('computer', 1), ('mediated', 1), ('world', 1), ('internet', 1), ('stress', 1), ('practical', 1), ('application', 1), ('encountered', 1)]
[('model', 3), ('book', 1), ('place', 1), ('particular', 1), ('emphasis', 1), ('issue', 1), ('quality', 1), ('idea', 1), ('testing', 1), ('validation', 1), ('mathematical', 1), ('computer', 1), ('based', 1), ('provide', 1), ('foundation', 1), ('explaining', 1), ('complex', 1), ('behaviour', 1), ('decision', 1), ('making', 1), ('engineering', 1), ('design', 1)]
[('image', 3), ('authoritative', 1), ('text', 1), ('second', 1), ('part', 1), ('complete', 1), ('msc', 1), ('course', 1), ('provides', 1), ('mathematical', 1), ('method', 1), ('required', 1), ('describe', 1), ('formation', 1), ('different', 1), ('imaging', 1), ('system', 1), ('coupled', 1), ('principle', 1), ('technique', 1), ('used', 1), ('processing', 1), ('digital', 1)]
[('numerical', 3), ('enriched', 2), ('technique', 2), ('extended', 2), ('method', 2), ('implementation', 1), ('application', 1), ('explores', 1), ('recent', 1), ('advance', 1), ('including', 1), ('finite', 1), ('element', 1), ('meshfree', 1), ('isogeometric', 1), ('analysis', 1), ('coupled', 1)]
[('data', 3), ('user', 2), ('ux', 2), ('improving', 1), ('experience', 1), ('practical', 1), ('analytics', 1), ('show', 1), ('make', 1), ('design', 1), ('decision', 1), ('based', 1), ('hunch', 1), ('author', 1), ('fritz', 1), ('berger', 1), ('help', 1), ('professional', 1), ('recognize', 1), ('enormous', 1), ('potential', 1), ('collected', 1)]
[('electron', 4), ('advance', 3), ('physic', 3), ('imaging', 1), ('volume', 1), ('merges', 1), ('long', 1), ('running', 1), ('serial', 1), ('electronics', 1), ('optical', 1), ('microscopy', 1), ('feature', 1), ('extended', 1), ('article', 1), ('device', 1)]
[('security', 2), ('technology', 2), ('convergence', 1), ('refers', 1), ('incorporation', 1), ('computing', 1), ('networking', 1), ('communication', 1), ('electronic', 1), ('physical', 1), ('system', 1), ('first', 1), ('introduced', 1), ('advent', 1), ('computer', 1), ('based', 1), ('access', 1)]
[('computer', 3), ('vision', 3), ('principle', 1), ('algorithm', 1), ('application', 1), ('learning', 1), ('previously', 1), ('entitled', 1), ('machine', 1), ('clearly', 1), ('systematically', 1), ('present', 1), ('basic', 1), ('methodology', 1), ('covering', 1), ('essential', 1), ('element', 1), ('theory', 1)]
[('water', 2), ('energy', 2), ('food', 2), ('resource', 2), ('nexus', 1), ('optimization', 1), ('model', 1), ('decision', 1), ('making', 1), ('cover', 1), ('discussion', 1), ('crucial', 1), ('human', 1), ('sustainable', 1), ('development', 1), ('inextricable', 1), ('interrelated', 1)]
[('social', 3), ('analysis', 2), ('public', 2), ('data', 2), ('analyzing', 1), ('web', 1), ('provides', 1), ('framework', 1), ('currently', 1), ('available', 1), ('generated', 1), ('network', 1), ('medium', 1), ('facebook', 1), ('twitter', 1), ('foursquare', 1), ('access', 1)]
[('data', 6), ('big', 2), ('warehousing', 1), ('age', 1), ('help', 1), ('organization', 1), ('make', 1), ('unstructured', 1), ('existing', 1), ('warehouse', 1), ('continues', 1), ('revolutionize', 1), ('use', 1), ('create', 1)]
[('clinical', 2), ('engineering', 2), ('handbook', 1), ('second', 1), ('edition', 1), ('cover', 1), ('modern', 1), ('topic', 1), ('giving', 1), ('experienced', 1), ('professional', 1), ('necessary', 1), ('skill', 1), ('knowledge', 1), ('fast', 1), ('evolving', 1), ('field', 1), ('featuring', 1), ('insight', 1), ('leading', 1), ('international', 1), ('expert', 1)]
[('social', 2), ('medium', 2), ('public', 2), ('private', 2), ('increasing', 1), ('role', 1), ('world', 1), ('raise', 1), ('socio', 1), ('political', 1), ('legal', 1), ('issue', 1), ('corporate', 1), ('academic', 1), ('sphere', 1), ('interest', 1), ('right', 1), ('provides', 1), ('insight', 1), ('use', 1), ('impact', 1)]
[('free', 1), ('open', 1), ('source', 1), ('approach', 1), ('grown', 1), ('minor', 1), ('activity', 1), ('become', 1), ('significant', 1), ('producer', 1), ('robust', 1), ('task', 1), ('orientated', 1), ('software', 1), ('wide', 1), ('variety', 1), ('situation', 1), ('application', 1), ('life', 1), ('science', 1), ('informatics', 1), ('group', 1), ('system', 1), ('present', 1)]
[('pic', 2), ('application', 2), ('project', 1), ('using', 1), ('detail', 1), ('program', 1), ('microcontroller', 1), ('language', 1), ('book', 1), ('take', 1), ('learn', 1), ('approach', 1), ('covering', 1), ('topic', 1), ('input', 1), ('output', 1), ('keypad', 1), ('alphanumeric', 1), ('display', 1)]
[('design', 2), ('intelligent', 1), ('vibration', 1), ('control', 1), ('civil', 1), ('engineering', 1), ('structure', 1), ('provides', 1), ('reader', 1), ('encompassing', 1), ('view', 1), ('theoretical', 1), ('study', 1), ('method', 1), ('real', 1), ('world', 1), ('implementation', 1), ('application', 1), ('relevant', 1), ('topic', 1), ('book', 1), ('focus', 1)]
[('cloud', 2), ('computing', 2), ('theory', 1), ('practice', 1), ('provides', 1), ('student', 1), ('professional', 1), ('depth', 1), ('analysis', 1), ('ground', 1), ('beginning', 1), ('discussion', 1), ('parallel', 1), ('architecture', 1), ('distributed', 1), ('system', 1), ('book', 1), ('turn', 1)]
[('smart', 4), ('data', 3), ('service', 3), ('big', 2), ('system', 2), ('present', 1), ('theory', 1), ('application', 1), ('regarding', 1), ('acquisition', 1), ('city', 1), ('business', 1), ('decision', 1), ('making', 1), ('support', 1), ('design', 1), ('rapid', 1), ('development', 1), ('computer', 1)]
[('child', 1), ('largest', 1), ('new', 1), ('user', 1), ('group', 1), ('mobile', 1), ('technology', 1), ('phone', 1), ('micro', 1), ('laptop', 1), ('electronic', 1), ('toy', 1), ('product', 1), ('lauded', 1), ('criticized', 1), ('especially', 1), ('come', 1), ('role', 1), ('education', 1), ('learning', 1), ('need', 1)]
[('programming', 2), ('specialisation', 1), ('software', 1), ('become', 1), ('thing', 1), ('past', 1), ('move', 1), ('towards', 1), ('graphical', 1), ('user', 1), ('interface', 1), ('engineer', 1), ('sound', 1), ('knowledge', 1), ('several', 1), ('language', 1), ('first', 1), ('time', 1), ('main', 1), ('technical', 1)]
[('information', 3), ('recently', 1), ('criterion', 1), ('function', 1), ('based', 1), ('theoretic', 1), ('measure', 1), ('entropy', 1), ('mutual', 1), ('divergence', 1), ('attracted', 1), ('attention', 1), ('become', 1), ('emerging', 1), ('area', 1), ('study', 1), ('signal', 1), ('processing', 1), ('system', 1), ('identification', 1), ('domain', 1)]
[('survey', 2), ('data', 2), ('beginning', 1), ('fundamental', 1), ('concept', 1), ('associated', 1), ('integration', 1), ('knowledge', 1), ('representation', 1), ('hypothesis', 1), ('generation', 1), ('heterogeneous', 1), ('set', 1), ('method', 1), ('biomedical', 1), ('informatics', 1), ('provides', 1), ('practical', 1), ('methodology', 1), ('used', 1)]
[('image', 2), ('analysis', 2), ('advance', 1), ('computational', 1), ('technique', 1), ('biomedical', 1), ('method', 1), ('application', 1), ('focus', 1), ('post', 1), ('acquisition', 1), ('challenge', 1), ('enhancement', 1), ('detection', 1), ('edge', 1), ('object', 1), ('shape', 1), ('quantification', 1), ('texture', 1)]
[('computer', 2), ('modelling', 2), ('modern', 1), ('development', 1), ('science', 1), ('technology', 1), ('based', 1), ('large', 1), ('degree', 1), ('understand', 1), ('principle', 1), ('technique', 1), ('student', 1), ('first', 1), ('strong', 1), ('background', 1), ('classical', 1), ('numerical', 1), ('method', 1)]
[('affect', 2), ('human', 2), ('emotion', 1), ('factor', 1), ('computer', 1), ('interaction', 1), ('complete', 1), ('guide', 1), ('conducting', 1), ('related', 1), ('research', 1), ('design', 1), ('project', 1), ('hci', 1), ('domain', 1), ('introducing', 1), ('necessary', 1), ('concept', 1), ('method', 1), ('approach', 1), ('application', 1)]
[('application', 2), ('safety', 1), ('web', 1), ('risk', 1), ('encryption', 1), ('handling', 1), ('vulnerability', 1), ('php', 1), ('explores', 1), ('many', 1), ('area', 1), ('help', 1), ('computer', 1), ('science', 1), ('student', 1), ('developer', 1), ('integrate', 1), ('security', 1), ('internet', 1), ('secure', 1)]
[('python', 1), ('forensics', 1), ('provides', 1), ('many', 1), ('never', 1), ('published', 1), ('proven', 1), ('forensic', 1), ('module', 1), ('library', 1), ('solution', 1), ('used', 1), ('right', 1), ('box', 1), ('addition', 1), ('detailed', 1), ('instruction', 1), ('documentation', 1), ('provided', 1), ('code', 1), ('sample', 1), ('allow', 1), ('even', 1)]
[('model', 3), ('business', 2), ('barrier', 2), ('health', 1), ('side', 1), ('market', 1), ('implementation', 1), ('present', 1), ('empirical', 1), ('suggestion', 1), ('focus', 1), ('remove', 1), ('deliver', 1), ('online', 1), ('service', 1), ('across', 1), ('border', 1), ('actual', 1), ('affect', 1), ('sided', 1)]
[('approx', 1), ('pagesapprox', 1), ('page', 1)]
[('network', 5), ('access', 2), ('broadband', 2), ('advanced', 1), ('fiber', 1), ('take', 1), ('holistic', 1), ('view', 1), ('architecture', 1), ('technology', 1), ('economy', 1), ('book', 1), ('review', 1), ('pain', 1), ('point', 1), ('challenge', 1), ('service', 1), ('provider', 1), ('face', 1)]
[('formal', 2), ('verification', 2), ('design', 2), ('essential', 1), ('toolkit', 1), ('modern', 1), ('vlsi', 1), ('present', 1), ('practical', 1), ('approach', 1), ('validation', 1), ('hand', 1), ('advice', 1), ('help', 1), ('working', 1), ('engineer', 1), ('integrate', 1), ('technique', 1), ('work', 1), ('fv', 1), ('enables', 1)]
[('interaction', 2), ('innovation', 1), ('artificial', 1), ('intelligence', 1), ('human', 1), ('computer', 1), ('digital', 1), ('era', 1), ('investigates', 1), ('growing', 1), ('interdependency', 1), ('hci', 1), ('ai', 1), ('field', 1), ('usually', 1), ('addressed', 1), ('traditional', 1), ('approach', 1), ('chapter', 1), ('explore', 1)]
[('method', 3), ('hmc', 2), ('hamiltonian', 1), ('monte', 1), ('carlo', 1), ('machine', 1), ('learning', 1), ('introduces', 1), ('optimal', 1), ('tuning', 1), ('parameter', 1), ('along', 1), ('introduction', 1), ('shadow', 1), ('non', 1), ('canonical', 1), ('improvement', 1), ('speedup', 1), ('lastly', 1), ('author', 1), ('address', 1), ('critical', 1)]
[('healthcare', 2), ('accelerating', 1), ('strategic', 1), ('change', 1), ('digital', 1), ('transformation', 1), ('industry', 1), ('discus', 1), ('innovative', 1), ('conceptual', 1), ('framework', 1), ('tool', 1), ('solution', 1), ('tackle', 1), ('challenge', 1), ('mitigating', 1), ('major', 1), ('disruption', 1), ('caused', 1), ('covid', 1)]
[('computational', 2), ('next', 1), ('generation', 1), ('ehealth', 1), ('applied', 1), ('data', 1), ('science', 1), ('machine', 1), ('learning', 1), ('extreme', 1), ('intelligence', 1), ('discus', 1), ('emergence', 1), ('impact', 1), ('potential', 1), ('sophisticated', 1), ('capability', 1), ('healthcare', 1), ('title', 1), ('provides', 1), ('useful', 1)]
[('optimization', 3), ('metaheuristic', 2), ('algorithm', 2), ('application', 2), ('optimizers', 1), ('analysis', 1), ('present', 1), ('recent', 1), ('across', 1), ('wide', 1), ('range', 1), ('scientific', 1), ('engineering', 1), ('research', 1), ('field', 1)]
[('computer', 2), ('volume', 2), ('advance', 1), ('present', 1), ('update', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('updated', 1), ('including', 1), ('new', 1), ('chapter', 1), ('traffic', 1), ('load', 1), ('aware', 1), ('virtual', 1), ('channel', 1), ('power', 1), ('gating', 1)]
[('deep', 2), ('learning', 2), ('robot', 2), ('perception', 2), ('cognition', 2), ('end', 2), ('introduces', 1), ('broad', 1), ('range', 1), ('topic', 1), ('method', 1), ('together', 1), ('methodology', 1), ('book', 1), ('provides', 1), ('conceptual', 1), ('mathematical', 1)]
[('new', 2), ('mathematical', 1), ('computer', 1), ('science', 1), ('computational', 1), ('modeling', 1), ('community', 1), ('striving', 1), ('develop', 1), ('tool', 1), ('provide', 1), ('better', 1), ('analysis', 1), ('complex', 1), ('phenomenon', 1), ('piecewise', 1), ('defined', 1), ('fractional', 1), ('operator', 1), ('volume', 1), ('application', 1), ('introduces', 1)]
[('bio', 2), ('inspired', 2), ('diabetes', 2), ('mellitus', 2), ('treatment', 2), ('strategy', 1), ('modeling', 1), ('detection', 1), ('focus', 1), ('technique', 1), ('modelling', 1), ('generate', 1), ('control', 1), ('algorithm', 1), ('book', 1), ('address', 1), ('identification', 1)]
[('busy', 1), ('security', 1), ('executive', 1), ('manager', 1), ('stay', 1), ('current', 1), ('evolving', 1), ('issue', 1), ('familiarize', 1), ('successful', 1), ('practice', 1), ('peer', 1), ('transfer', 1), ('information', 1), ('build', 1), ('knowledgeable', 1), ('skilled', 1), ('workforce', 1), ('time', 1)]
[('book', 3), ('ethereal', 2), ('provides', 1), ('system', 1), ('administrator', 1), ('information', 1), ('software', 1), ('need', 1), ('run', 1), ('protocol', 1), ('analyzer', 1), ('network', 1), ('currently', 1), ('published', 1), ('begin', 1), ('chapter', 1)]
[('dyeing', 2), ('way', 2), ('increased', 1), ('environmental', 1), ('awareness', 1), ('rising', 1), ('cost', 1), ('manufacturer', 1), ('investing', 1), ('real', 1), ('time', 1), ('monitoring', 1), ('control', 1), ('increase', 1), ('efficiency', 1), ('quality', 1), ('book', 1), ('review', 1), ('automating', 1), ('process', 1)]
[('forensic', 2), ('book', 1), ('provides', 1), ('digital', 1), ('investigator', 1), ('security', 1), ('professional', 1), ('law', 1), ('enforcement', 1), ('information', 1), ('tool', 1), ('utility', 1), ('required', 1), ('conduct', 1), ('investigation', 1), ('computer', 1), ('running', 1), ('variant', 1), ('macintosh', 1), ('o', 1)]
[('manager', 2), ('handbook', 1), ('business', 1), ('edition', 1), ('guide', 1), ('advancing', 1), ('technology', 1), ('professional', 1), ('looking', 1), ('move', 1), ('supervisory', 1), ('role', 1), ('ideal', 1), ('newly', 1), ('promoted', 1), ('need', 1), ('quickly', 1), ('understand', 1)]
[('parallelism', 2), ('volume', 2), ('high', 1), ('performance', 1), ('pearl', 1), ('offer', 1), ('another', 1), ('set', 1), ('example', 1), ('demonstrate', 1), ('leverage', 1), ('similar', 1), ('technique', 1), ('included', 1), ('explain', 1), ('use', 1), ('processor', 1), ('coprocessors', 1), ('programming', 1)]
[('data', 4), ('mapping', 2), ('stage', 2), ('warehouse', 1), ('process', 1), ('creating', 1), ('link', 1), ('distinct', 1), ('model', 1), ('source', 1), ('target', 1), ('table', 1), ('attribute', 1), ('required', 1), ('many', 1), ('dw', 1), ('life', 1), ('cycle', 1), ('help', 1), ('save', 1), ('processor', 1), ('overhead', 1), ('every', 1)]
[('digital', 2), ('forensics', 1), ('threatscape', 1), ('best', 1), ('practice', 1), ('survey', 1), ('problem', 1), ('challenge', 1), ('confronting', 1), ('forensic', 1), ('professional', 1), ('today', 1), ('including', 1), ('massive', 1), ('data', 1), ('set', 1), ('everchanging', 1), ('technology', 1), ('book', 1), ('provides', 1), ('coherent', 1), ('overview', 1)]
[('patient', 2), ('information', 2), ('risk', 2), ('protecting', 1), ('decision', 1), ('maker', 1), ('guide', 1), ('prevention', 1), ('damage', 1), ('control', 1), ('provides', 1), ('concrete', 1), ('step', 1), ('needed', 1), ('tighten', 1), ('security', 1), ('healthcare', 1), ('system', 1), ('reduce', 1), ('exposing', 1), ('health', 1)]
[('data', 3), ('software', 2), ('art', 1), ('science', 1), ('analyzing', 1), ('provides', 1), ('valuable', 1), ('information', 1), ('analysis', 1), ('technique', 1), ('often', 1), ('used', 1), ('derive', 1), ('insight', 1), ('book', 1), ('share', 1), ('best', 1), ('practice', 1), ('field', 1), ('generated', 1), ('leading', 1), ('scientist', 1), ('collected', 1)]
[('autocad', 2), ('concept', 2), ('running', 1), ('drawing', 1), ('modeling', 1), ('provides', 1), ('introduction', 1), ('fundamental', 1), ('distilled', 1), ('basic', 1), ('easy', 1), ('understand', 1), ('explanation', 1), ('benefit', 1), ('beginner', 1)]
[('user', 3), ('design', 3), ('provides', 2), ('centered', 2), ('interface', 1), ('evaluation', 1), ('overview', 1), ('field', 1), ('illustrates', 1), ('benefit', 1), ('approach', 1), ('software', 1), ('computer', 1), ('system', 1), ('website', 1), ('book', 1), ('clear', 1), ('practical', 1)]
[('biomedical', 2), ('analysis', 2), ('combination', 1), ('faster', 1), ('advanced', 1), ('computer', 1), ('quantitatively', 1), ('oriented', 1), ('researcher', 1), ('recently', 1), ('yielded', 1), ('new', 1), ('precise', 1), ('method', 1), ('data', 1), ('better', 1), ('enhanced', 1), ('conclusion', 1)]
[('increasingly', 1), ('human', 1), ('being', 1), ('sensor', 1), ('engaging', 1), ('directly', 1), ('mobile', 1), ('internet', 1), ('individual', 1), ('share', 1), ('real', 1), ('time', 1), ('experience', 1), ('unprecedented', 1), ('scale', 1), ('social', 1), ('sensing', 1), ('building', 1), ('reliable', 1), ('system', 1), ('unreliable', 1), ('data', 1), ('look', 1), ('recent', 1), ('advance', 1)]
[('modeling', 2), ('simulation', 2), ('computer', 2), ('network', 2), ('system', 2), ('application', 2), ('methodology', 1), ('introduces', 1), ('broad', 1), ('array', 1), ('issue', 1), ('related', 1), ('focus', 1), ('theory', 1), ('tool', 1)]
[('growing', 2), ('cyber', 1), ('physical', 1), ('attack', 1), ('invisible', 1), ('threat', 1), ('present', 1), ('list', 1), ('harmful', 1), ('us', 1), ('computer', 1), ('ability', 1), ('disable', 1), ('camera', 1), ('turn', 1), ('building', 1), ('light', 1), ('make', 1), ('car', 1), ('veer', 1), ('road', 1), ('drone', 1), ('land', 1), ('enemy', 1), ('hand', 1)]
[('digital', 2), ('trace', 1), ('algorithmic', 1), ('projection', 1), ('describes', 1), ('individual', 1), ('fingerprint', 1), ('interaction', 1), ('different', 1), ('algorithm', 1), ('encounter', 1), ('throughout', 1), ('life', 1), ('centered', 1), ('human', 1), ('user', 1), ('formalism', 1), ('make', 1), ('possible', 1), ('distinguish', 1)]
[('physical', 3), ('layer', 3), ('model', 3), ('radio', 3), ('principle', 2), ('technology', 2), ('component', 2), ('new', 2), ('explains', 1), ('fundamental', 1), ('design', 1), ('access', 1), ('nr', 1), ('include', 1), ('wave', 1)]
[('metastatic', 2), ('colorectal', 2), ('cancer', 2), ('contemporary', 1), ('management', 1), ('precision', 1), ('medicine', 1), ('approach', 1), ('summarizes', 1), ('current', 1), ('knowledge', 1), ('provides', 1), ('evidenced', 1), ('based', 1), ('practice', 1), ('recommendation', 1), ('treat', 1), ('patient', 1), ('book', 1), ('present', 1)]
[('topological', 3), ('uml', 2), ('modeling', 2), ('improved', 1), ('approach', 1), ('domain', 1), ('software', 1), ('development', 1), ('present', 1), ('specification', 1), ('combine', 1), ('formalism', 1), ('functioning', 1), ('model', 1), ('tfm', 1), ('mathematical', 1), ('topology', 1), ('specified', 1)]
[('schema', 2), ('new', 2), ('xml', 1), ('language', 1), ('standard', 1), ('foundation', 1), ('defining', 1), ('data', 1), ('web', 1), ('based', 1), ('system', 1), ('wealth', 1), ('information', 1), ('available', 1), ('little', 1), ('understanding', 1), ('use', 1), ('highly', 1), ('formal', 1)]
[('theft', 2), ('identity', 1), ('confidential', 1), ('information', 1), ('topped', 1), ('chart', 1), ('leading', 1), ('cybercrime', 1), ('particular', 1), ('credit', 1), ('card', 1), ('data', 1), ('preferred', 1), ('cybercriminals', 1), ('payment', 1), ('processing', 1), ('secure', 1), ('compliant', 1), ('new', 1), ('fourth', 1), ('edition', 1)]
[('recently', 1), ('five', 1), ('year', 1), ('ago', 1), ('securing', 1), ('network', 1), ('meant', 1), ('putting', 1), ('firewall', 1), ('intrusion', 1), ('detection', 1), ('system', 1), ('installing', 1), ('antivirus', 1), ('software', 1), ('desktop', 1), ('unfortunately', 1), ('attacker', 1), ('grown', 1), ('nimble', 1), ('effective', 1), ('meaning', 1), ('traditional', 1)]
[('content', 1), ('based', 1), ('object', 1), ('retrieval', 1), ('attracted', 1), ('extensive', 1), ('attention', 1), ('recently', 1), ('application', 1), ('variety', 1), ('field', 1), ('computer', 1), ('aided', 1), ('design', 1), ('tele', 1), ('medicine', 1), ('mobile', 1), ('multimedia', 1), ('virtual', 1), ('reality', 1), ('entertainment', 1), ('development', 1)]
[('vista', 3), ('microsoft', 2), ('security', 2), ('professional', 2), ('designed', 1), ('system', 1), ('administrator', 1), ('need', 1), ('securely', 1), ('deploy', 1), ('network', 1), ('reader', 1), ('learn', 1), ('new', 1), ('feature', 1)]
[('new', 2), ('mathematical', 1), ('computer', 1), ('science', 1), ('computational', 1), ('modeling', 1), ('community', 1), ('striving', 1), ('develop', 1), ('tool', 1), ('provide', 1), ('better', 1), ('analysis', 1), ('complex', 1), ('phenomenon', 1), ('piecewise', 1), ('defined', 1), ('fractional', 1), ('operator', 1), ('volume', 1), ('theory', 1), ('method', 1), ('introduces', 1)]
[('computing', 2), ('cloud', 1), ('ocean', 1), ('atmospheric', 1), ('science', 1), ('provides', 1), ('latest', 1), ('information', 1), ('relatively', 1), ('new', 1), ('platform', 1), ('scientific', 1), ('possibility', 1), ('challenge', 1), ('including', 1), ('pricing', 1), ('deployment', 1), ('cost', 1), ('application', 1)]
[('approach', 1), ('st', 1), ('century', 1), ('advance', 1), ('computer', 1), ('serial', 1), ('remains', 1), ('oldes', 1), ('continuously', 1), ('published', 1), ('anthology', 1), ('chronicling', 1), ('evolution', 1), ('information', 1), ('technology', 1), ('field', 1), ('series', 1), ('described', 1), ('changing', 1), ('nature', 1)]
[('volume', 2), ('advance', 1), ('computer', 1), ('series', 1), ('began', 1), ('publication', 1), ('oldest', 1), ('continuously', 1), ('published', 1), ('anthology', 1), ('chronicle', 1), ('changing', 1), ('information', 1), ('technology', 1), ('field', 1), ('publish', 1)]
[('increasing', 1), ('interest', 1), ('holography', 1), ('imaging', 1), ('application', 1), ('need', 1), ('develop', 1), ('use', 1), ('hologram', 1), ('compression', 1), ('technique', 1), ('efficient', 1), ('storage', 1), ('transmission', 1), ('holographic', 1), ('data', 1), ('book', 1), ('give', 1), ('broad', 1), ('overview', 1)]
[('control', 2), ('bio', 2), ('robotics', 2), ('advanced', 2), ('application', 2), ('system', 1), ('design', 1), ('mechatronics', 1), ('delivers', 1), ('essential', 1), ('bioengineering', 1), ('information', 1), ('technology', 1), ('life', 1), ('science', 1), ('judging', 1)]
[('constraint', 2), ('programming', 2), ('powerful', 1), ('paradigm', 1), ('solving', 1), ('combinatorial', 1), ('search', 1), ('problem', 1), ('draw', 1), ('wide', 1), ('range', 1), ('technique', 1), ('artificial', 1), ('intelligence', 1), ('computer', 1), ('science', 1), ('database', 1), ('language', 1), ('operation', 1), ('research', 1)]
[('section', 2), ('cancer', 2), ('book', 1), ('organized', 1), ('looking', 1), ('question', 1), ('outcome', 1), ('prediction', 1), ('different', 1), ('angle', 1), ('first', 1), ('describes', 1), ('clinical', 1), ('problem', 1), ('predicament', 1), ('clinician', 1), ('face', 1), ('dealing', 1)]
[('application', 2), ('multitasking', 2), ('microcontroller', 1), ('based', 1), ('nowadays', 1), ('large', 1), ('complex', 1), ('require', 1), ('several', 1), ('task', 1), ('share', 1), ('mcu', 1), ('modern', 1), ('high', 1), ('speed', 1), ('microcontrollers', 1), ('support', 1), ('kernel', 1), ('sophisticated', 1), ('scheduling', 1)]
[('human', 4), ('machine', 3), ('system', 2), ('shared', 1), ('context', 1), ('considers', 1), ('foundation', 1), ('metric', 1), ('application', 1), ('editor', 1), ('author', 1), ('debate', 1), ('whether', 1), ('speak', 1)]
[('object', 3), ('oriented', 3), ('development', 2), ('student', 1), ('guide', 1), ('introductory', 1), ('text', 1), ('follows', 1), ('software', 1), ('process', 1), ('requirement', 1), ('capture', 1), ('implementation', 1), ('using', 1), ('approach', 1), ('book', 1), ('us', 1), ('technique', 1)]
[('computer', 2), ('first', 1), ('volume', 1), ('advance', 1), ('presented', 1), ('detailed', 1), ('coverage', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('provided', 1), ('contributor', 1), ('medium', 1), ('explore', 1)]
[('system', 2), ('design', 2), ('device', 1), ('imaging', 1), ('functionality', 1), ('requires', 1), ('digital', 1), ('video', 1), ('processing', 1), ('solution', 1), ('part', 1), ('embedded', 1), ('engineer', 1), ('need', 1), ('practical', 1), ('guide', 1), ('technology', 1), ('basic', 1), ('fundamental', 1), ('enables', 1), ('deliver', 1)]
[('past', 1), ('year', 1), ('growing', 1), ('need', 1), ('medical', 1), ('image', 1), ('computing', 1), ('community', 1), ('principled', 1), ('method', 1), ('process', 1), ('nonlinear', 1), ('geometric', 1), ('data', 1), ('riemannian', 1), ('geometry', 1), ('emerged', 1), ('powerful', 1), ('mathematical', 1), ('computational', 1)]
[('radio', 3), ('wireless', 3), ('used', 2), ('many', 1), ('penetration', 1), ('test', 1), ('lot', 1), ('useful', 1), ('information', 1), ('gathered', 1), ('organization', 1), ('include', 1), ('way', 1), ('guard', 1), ('headset', 1), ('cordless', 1), ('phone', 1), ('camera', 1)]
[('edition', 2), ('pascal', 2), ('third', 1), ('best', 1), ('selling', 1), ('text', 1), ('revised', 1), ('present', 1), ('problem', 1), ('oriented', 1), ('approach', 1), ('learning', 1), ('without', 1), ('substantially', 1), ('changing', 1), ('original', 1), ('popular', 1), ('style', 1), ('previous', 1), ('additional', 1), ('material', 1), ('turbo', 1)]
[('data', 3), ('analysis', 2), ('intelligent', 1), ('biomedical', 1), ('application', 1), ('challenge', 1), ('solution', 1), ('present', 1), ('specialized', 1), ('statistical', 1), ('pattern', 1), ('recognition', 1), ('machine', 1), ('learning', 1), ('abstraction', 1), ('visualization', 1), ('tool', 1), ('discovery', 1), ('mechanism', 1)]
[('career', 3), ('managing', 1), ('brand', 1), ('management', 1), ('personal', 1), ('pr', 1), ('librarian', 1), ('set', 1), ('guideline', 1), ('developing', 1), ('pathway', 1), ('including', 1), ('option', 1), ('change', 1), ('exploration', 1), ('community', 1), ('service', 1), ('avenue', 1), ('provide', 1), ('new', 1)]
[('embedded', 2), ('computing', 2), ('high', 1), ('performance', 1), ('second', 1), ('edition', 1), ('combine', 1), ('leading', 1), ('edge', 1), ('research', 1), ('practical', 1), ('guidance', 1), ('variety', 1), ('topic', 1), ('including', 1), ('real', 1), ('time', 1), ('system', 1), ('computer', 1), ('architecture', 1), ('low', 1), ('power', 1), ('design', 1), ('author', 1), ('marilyn', 1), ('wolf', 1)]
[('online', 2), ('hybrid', 2), ('development', 1), ('testing', 1), ('theory', 1), ('application', 1), ('structural', 1), ('engineering', 1), ('provides', 1), ('comprehensive', 1), ('treatment', 1), ('several', 1), ('topic', 1), ('pertinent', 1), ('substructure', 1), ('test', 1), ('emphasis', 1), ('placed', 1), ('explaining', 1), ('three', 1), ('framework', 1)]
[('cyber', 3), ('warfare', 2), ('introduction', 1), ('multidisciplinary', 1), ('approach', 1), ('written', 1), ('expert', 1), ('front', 1), ('line', 1), ('give', 1), ('insider', 1), ('look', 1), ('world', 1), ('use', 1), ('recent', 1), ('case', 1), ('study', 1), ('book', 1), ('examines', 1), ('issue', 1), ('related', 1)]
[('book', 2), ('digital', 2), ('placing', 1), ('suspect', 1), ('behind', 1), ('keyboard', 1), ('definitive', 1), ('conducting', 1), ('complete', 1), ('investigation', 1), ('cybercrime', 1), ('using', 1), ('forensics', 1), ('technique', 1), ('physical', 1), ('investigative', 1), ('procedure', 1), ('merges', 1), ('analysis', 1), ('examiner', 1)]
[('underwater', 3), ('acoustic', 3), ('channel', 3), ('digital', 2), ('communication', 2), ('focus', 1), ('describing', 1), ('difference', 1), ('radio', 1), ('discus', 1), ('loss', 1), ('transmitted', 1), ('sound', 1), ('describes', 1)]
[('cloud', 2), ('computing', 2), ('network', 2), ('centric', 2), ('theory', 1), ('practice', 1), ('third', 1), ('edition', 1), ('provides', 1), ('student', 1), ('professional', 1), ('depth', 1), ('analysis', 1), ('ground', 1), ('introduction', 1), ('content', 1), ('book', 1), ('review', 1)]
[('application', 2), ('visual', 1), ('computing', 1), ('medicine', 1), ('second', 1), ('edition', 1), ('offer', 1), ('cutting', 1), ('edge', 1), ('visualization', 1), ('technique', 1), ('medical', 1), ('diagnosis', 1), ('education', 1), ('treatment', 1), ('book', 1), ('includes', 1), ('algorithm', 1), ('idea', 1), ('achieving', 1), ('reliability', 1)]
[('clinical', 2), ('decision', 2), ('support', 2), ('beyond', 1), ('progress', 1), ('opportunity', 1), ('knowledge', 1), ('enhanced', 1), ('health', 1), ('healthcare', 1), ('third', 1), ('edition', 1), ('discus', 1), ('underpinnings', 1), ('effective', 1), ('reliable', 1), ('easy', 1), ('use', 1), ('system', 1)]
[('dna', 3), ('computing', 2), ('genetic', 2), ('information', 2), ('deoxyribonucleic', 1), ('acid', 1), ('emerging', 1), ('branch', 1), ('us', 1), ('sequence', 1), ('biochemistry', 1), ('hardware', 1), ('encoding', 1), ('computer', 1), ('represented', 1), ('using', 1), ('four', 1), ('alphabet', 1)]
[('social', 3), ('medium', 3), ('marketing', 2), ('quickly', 1), ('becoming', 1), ('important', 1), ('business', 1), ('many', 1), ('manager', 1), ('professional', 1), ('expert', 1), ('unsure', 1), ('practicality', 1), ('measure', 1), ('success', 1), ('audit', 1), ('give', 1)]
[('cyber', 3), ('security', 2), ('overview', 2), ('threat', 2), ('awareness', 1), ('lawyer', 1), ('concise', 1), ('posed', 1), ('company', 1), ('organization', 1), ('book', 1), ('provide', 1), ('business', 1), ('livelihood', 1), ('discus', 1), ('need', 1)]
[('electron', 4), ('advance', 3), ('physic', 3), ('imaging', 1), ('volume', 1), ('merges', 1), ('long', 1), ('running', 1), ('serial', 1), ('electronics', 1), ('optical', 1), ('microscopy', 1), ('series', 1), ('feature', 1), ('extended', 1), ('article', 1)]
[('web', 2), ('attack', 1), ('defend', 1), ('website', 1), ('concise', 1), ('introduction', 1), ('security', 1), ('includes', 1), ('hand', 1), ('hacking', 1), ('tutorial', 1), ('book', 1), ('three', 1), ('primary', 1), ('objective', 1), ('help', 1), ('reader', 1), ('develop', 1), ('deep', 1), ('understanding', 1), ('happening', 1), ('behind', 1)]
[('web', 2), ('analytics', 2), ('practical', 1), ('user', 1), ('experience', 1), ('teach', 1), ('use', 1), ('help', 1), ('answer', 1), ('complicated', 1), ('question', 1), ('facing', 1), ('ux', 1), ('professional', 1), ('within', 1), ('book', 1), ('find', 1), ('quantitative', 1), ('approach', 1), ('measuring', 1), ('website', 1), ('effectiveness', 1)]
[('commerce', 2), ('microsoft', 1), ('net', 1), ('initiative', 1), ('future', 1), ('making', 1), ('possible', 1), ('organisation', 1), ('build', 1), ('secure', 1), ('reliable', 1), ('infrastructure', 1), ('first', 1), ('book', 1), ('outline', 1), ('capability', 1), ('sql', 1), ('server', 1), ('key', 1)]
[('face', 2), ('major', 1), ('stride', 1), ('made', 1), ('processing', 1), ('last', 1), ('ten', 1), ('year', 1), ('due', 1), ('fast', 1), ('growing', 1), ('need', 1), ('security', 1), ('various', 1), ('location', 1), ('around', 1), ('globe', 1), ('human', 1), ('eye', 1), ('discern', 1), ('detail', 1), ('specific', 1), ('relative', 1), ('ease', 1), ('level', 1)]
[('comptia', 1), ('high', 1), ('profile', 1), ('computer', 1), ('technology', 1), ('industry', 1), ('association', 1), ('behind', 1), ('wildly', 1), ('popular', 1), ('network', 1), ('certification', 1), ('targeted', 1), ('security', 1), ('latest', 1), ('credential', 1), ('thanks', 1), ('soaring', 1), ('business', 1), ('initiative', 1), ('worldwide', 1), ('internet', 1)]
[('exchanger', 3), ('guide', 3), ('heat', 2), ('design', 2), ('step', 2), ('practical', 1), ('planning', 1), ('selecting', 1), ('designing', 1), ('shell', 1), ('tube', 1), ('take', 1), ('user', 1), ('daily', 1), ('practice', 1), ('showing', 1), ('determine', 1), ('effective', 1)]
[('programming', 3), ('application', 2), ('shared', 1), ('memory', 1), ('present', 1), ('key', 1), ('concept', 1), ('parallel', 1), ('accessible', 1), ('engaging', 1), ('style', 1), ('applicable', 1), ('developer', 1), ('across', 1), ('many', 1), ('domain', 1), ('multithreaded', 1), ('today', 1), ('core', 1), ('technology', 1)]
[('computer', 2), ('first', 1), ('volume', 1), ('advance', 1), ('presented', 1), ('detailed', 1), ('coverage', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('provided', 1), ('contributorswith', 1), ('medium', 1)]
[('cardiovascular', 2), ('imaging', 2), ('coronary', 1), ('artery', 1), ('volume', 1), ('cover', 1), ('state', 1), ('art', 1), ('approach', 1), ('automated', 1), ('non', 1), ('invasive', 1), ('system', 1), ('early', 1), ('disease', 1), ('diagnosis', 1), ('book', 1), ('includes', 1), ('several', 1), ('prominent', 1), ('modality', 1), ('mri', 1), ('ct', 1), ('pet', 1)]
[('electron', 4), ('advance', 3), ('physic', 3), ('imaging', 1), ('merges', 1), ('long', 1), ('running', 1), ('serial', 1), ('electronics', 1), ('optical', 1), ('microscopy', 1), ('series', 1), ('feature', 1), ('extended', 1), ('article', 1), ('device', 1)]
[('exchange', 3), ('designing', 2), ('storage', 2), ('sp', 2), ('microsoft', 2), ('server', 2), ('help', 1), ('understand', 1), ('new', 1), ('choice', 1), ('possibility', 1), ('available', 1), ('environment', 1), ('move', 1), ('bit', 1)]
[('government', 2), ('asia', 2), ('internet', 2), ('interaction', 2), ('offer', 1), ('thorough', 1), ('examination', 1), ('governance', 1), ('including', 1), ('us', 1), ('mediate', 1), ('asian', 1), ('citizen', 1), ('book', 1), ('examines', 1), ('reshaping', 1)]
[('embedded', 2), ('system', 2), ('debugging', 1), ('microprocessor', 1), ('provides', 1), ('technique', 1), ('engineer', 1), ('technician', 1), ('student', 1), ('need', 1), ('correct', 1), ('design', 1), ('fault', 1), ('using', 1), ('real', 1), ('world', 1), ('scenario', 1), ('designer', 1), ('learn', 1), ('practical', 1), ('time', 1), ('saving', 1), ('way', 1), ('avoid', 1)]
[('technology', 2), ('radiomics', 2), ('imaging', 2), ('rapid', 1), ('development', 1), ('artificial', 1), ('intelligence', 1), ('medical', 1), ('data', 1), ('analysis', 1), ('led', 1), ('concept', 1), ('book', 1), ('introduces', 1), ('essential', 1), ('latest', 1), ('segmentation', 1), ('quantitative', 1)]
[('electron', 4), ('advance', 3), ('physic', 3), ('imaging', 1), ('merges', 1), ('long', 1), ('running', 1), ('serial', 1), ('electronics', 1), ('optical', 1), ('microscopy', 1), ('series', 1), ('feature', 1), ('extended', 1), ('article', 1), ('device', 1)]
[('data', 2), ('powerful', 1), ('separate', 1), ('leader', 1), ('laggard', 1), ('drive', 1), ('business', 1), ('disruption', 1), ('transformation', 1), ('reinvention', 1), ('today', 1), ('progressive', 1), ('company', 1), ('using', 1), ('power', 1), ('propel', 1), ('industry', 1), ('new', 1), ('area', 1), ('innovation', 1)]
[('qos', 2), ('technical', 1), ('commerical', 1), ('regulatory', 1), ('challenge', 1), ('provides', 1), ('comprehensive', 1), ('examination', 1), ('internet', 1), ('theory', 1), ('standard', 1), ('vendor', 1), ('implementation', 1), ('network', 1), ('deployment', 1), ('practitioner', 1), ('point', 1), ('view', 1), ('including', 1), ('extensive', 1), ('discussion', 1)]
[('swarm', 2), ('gpu', 1), ('based', 1), ('parallel', 1), ('implementation', 1), ('intelligence', 1), ('algorithm', 1), ('combine', 1), ('cover', 1), ('emerging', 1), ('area', 1), ('attracting', 1), ('increased', 1), ('attention', 1), ('application', 1), ('graphic', 1), ('processing', 1), ('unit', 1), ('gpus', 1), ('general', 1), ('purpose', 1), ('computing', 1), ('gpgpu', 1)]
[('handbook', 1), ('automated', 1), ('reasoning', 1)]
[('design', 3), ('world', 1), ('smart', 1), ('shoe', 1), ('appliance', 1), ('phone', 1), ('already', 1), ('practice', 1), ('user', 1), ('experience', 1), ('ux', 1), ('ubiquitous', 1), ('computing', 1), ('still', 1), ('relatively', 1), ('new', 1), ('company', 1), ('ideo', 1), ('frogdesign', 1), ('regularly', 1), ('asked', 1), ('product', 1)]
[('biomedical', 2), ('analysis', 2), ('combination', 1), ('faster', 1), ('advanced', 1), ('computer', 1), ('quantitatively', 1), ('oriented', 1), ('researcher', 1), ('recently', 1), ('yielded', 1), ('new', 1), ('precise', 1), ('method', 1), ('data', 1), ('better', 1), ('enhanced', 1), ('conclusion', 1)]
[('new', 2), ('human', 2), ('book', 1), ('debate', 1), ('universe', 1), ('development', 1), ('technology', 1), ('st', 1), ('century', 1), ('future', 1), ('race', 1), ('dr', 1), ('bolonkin', 1), ('show', 1), ('soul', 1), ('information', 1), ('person', 1), ('head', 1), ('offer', 1), ('unique', 1), ('method', 1), ('writing', 1)]
[('security', 2), ('control', 2), ('handbook', 2), ('evaluation', 1), ('testing', 1), ('assessment', 1), ('second', 1), ('edition', 1), ('provides', 1), ('current', 1), ('developed', 1), ('approach', 1), ('evaluate', 1), ('test', 1), ('prove', 1), ('functioning', 1), ('correctly', 1), ('discus', 1), ('world', 1)]
[('network', 4), ('communication', 3), ('part', 1), ('look', 1), ('delay', 1), ('tolerant', 1), ('architecture', 1), ('platform', 1), ('including', 1), ('dtn', 1), ('satellite', 1), ('deep', 1), ('space', 1), ('underwater', 1), ('developing', 1), ('country', 1), ('vehicular', 1), ('emergency', 1)]
[('social', 4), ('medium', 3), ('interested', 1), ('using', 1), ('investigative', 1), ('tool', 1), ('introduction', 1), ('investigation', 1), ('show', 1), ('network', 1), ('facebook', 1), ('twitter', 1), ('foursquare', 1), ('popular', 1), ('service', 1)]
[('rdf', 2), ('database', 2), ('system', 1), ('cutting', 1), ('edge', 1), ('guide', 1), ('distills', 1), ('everything', 1), ('need', 1), ('know', 1), ('effectively', 1), ('use', 1), ('design', 1), ('book', 1), ('start', 1), ('basic', 1), ('linked', 1), ('open', 1), ('data', 1), ('cover', 1), ('recent', 1), ('research', 1), ('practice', 1)]
[('hcispp', 2), ('certification', 2), ('information', 2), ('security', 2), ('globally', 1), ('recognized', 1), ('vendor', 1), ('neutral', 1), ('exam', 1), ('healthcare', 1), ('privacy', 1), ('professional', 1), ('created', 1), ('administered', 1), ('isc²', 1), ('new', 1), ('focused', 1), ('health', 1), ('care', 1)]
[('application', 3), ('administrator', 1), ('installs', 1), ('update', 1), ('optimizes', 1), ('debugs', 1), ('maintains', 1), ('computer', 1), ('organization', 1), ('case', 1), ('licensed', 1), ('third', 1), ('party', 1), ('developed', 1)]
[('knowledge', 2), ('book', 1), ('delivers', 1), ('scientific', 1), ('mathematical', 1), ('basis', 1), ('treat', 1), ('process', 1), ('quantifiable', 1), ('dimensioned', 1), ('entity', 1), ('provides', 1), ('unit', 1), ('measure', 1), ('value', 1), ('information', 1), ('contained', 1), ('body', 1)]
[('inspection', 4), ('user', 2), ('interface', 2), ('method', 2), ('heuristic', 2), ('walkthrough', 2), ('succinctly', 1), ('cover', 1), ('five', 1), ('evaluation', 1), ('perspective', 1), ('based', 1), ('cognitive', 1), ('pluralistic', 1), ('formal', 1), ('usability', 1)]
[('distributed', 2), ('combinatorial', 2), ('topology', 2), ('computing', 1), ('describes', 1), ('technique', 1), ('analyzing', 1), ('algorithm', 1), ('based', 1), ('award', 1), ('winning', 1), ('research', 1), ('author', 1), ('present', 1), ('solid', 1), ('theoretical', 1), ('foundation', 1), ('relevant', 1), ('many', 1), ('real', 1), ('system', 1)]
[('repository', 2), ('whether', 1), ('starting', 1), ('create', 1), ('digital', 1), ('institution', 1), ('already', 1), ('fully', 1), ('developed', 1), ('program', 1), ('book', 1), ('provides', 1), ('strategy', 1), ('building', 1), ('maintaining', 1), ('high', 1), ('use', 1), ('cohesive', 1), ('fiscally', 1), ('responsible', 1)]
[('data', 3), ('advent', 1), ('electronic', 1), ('medical', 1), ('record', 1), ('year', 1), ('ago', 1), ('increasing', 1), ('capability', 1), ('computer', 1), ('healthcare', 1), ('system', 1), ('sitting', 1), ('growing', 1), ('mountain', 1), ('grow', 1), ('patient', 1), ('volume', 1), ('type', 1), ('store', 1)]
[('network', 3), ('qos', 2), ('various', 2), ('deploying', 1), ('ip', 1), ('next', 1), ('generation', 1), ('definitive', 1), ('guide', 1), ('provides', 1), ('architect', 1), ('planner', 1), ('insight', 1), ('aspect', 1), ('drive', 1), ('deployment', 1), ('type', 1), ('serf', 1), ('single', 1), ('source', 1), ('reference', 1)]
[('image', 2), ('processing', 2), ('computer', 2), ('vision', 2), ('feature', 1), ('extraction', 1), ('essential', 1), ('guide', 1), ('implementation', 1), ('technique', 1), ('tutorial', 1), ('introduction', 1), ('sample', 1), ('code', 1), ('matlab', 1), ('python', 1), ('algorithm', 1), ('presented', 1)]
[('programming', 2), ('comprehensive', 2), ('guide', 2), ('abc', 2), ('mumps', 2), ('complete', 1), ('update', 1), ('introduction', 1), ('novice', 1), ('intermediate', 1), ('programmer', 1), ('new', 1), ('section', 1), ('containing', 1), ('advanced', 1), ('material', 1)]
[('information', 3), ('science', 1), ('study', 1), ('phenomenon', 1), ('including', 1), ('acquisition', 1), ('storage', 1), ('manipulation', 1), ('data', 1), ('knowledge', 1), ('nature', 1), ('interdisciplinary', 1), ('field', 1), ('researcher', 1), ('manager', 1), ('system', 1), ('user', 1), ('student', 1), ('need', 1)]
[('cloud', 2), ('computing', 2), ('network', 2), ('centric', 2), ('theory', 1), ('practice', 1), ('second', 1), ('edition', 1), ('provides', 1), ('student', 1), ('professional', 1), ('depth', 1), ('analysis', 1), ('ground', 1), ('introduction', 1), ('content', 1), ('chapter', 1)]
[('quality', 3), ('software', 3), ('architecture', 3), ('system', 2), ('collect', 1), ('state', 1), ('art', 1), ('knowledge', 1), ('intertwine', 1), ('requirement', 1), ('attribute', 1), ('exhibited', 1), ('contribution', 1)]
[('voip', 2), ('securing', 1), ('keeping', 1), ('network', 1), ('safe', 1), ('show', 1), ('take', 1), ('initiative', 1), ('prevent', 1), ('hacker', 1), ('recording', 1), ('exploiting', 1), ('company', 1), ('secret', 1), ('drawing', 1), ('upon', 1), ('year', 1), ('practical', 1), ('experience', 1), ('using', 1), ('numerous', 1), ('example', 1), ('case', 1)]
[('multicore', 2), ('programming', 2), ('parallel', 2), ('computing', 2), ('gpu', 1), ('offer', 1), ('broad', 1), ('coverage', 1), ('key', 1), ('skillsets', 1), ('cpu', 1), ('manycore', 1), ('massively', 1), ('using', 1), ('thread', 1), ('openmp', 1), ('mpi', 1), ('cuda', 1), ('teach', 1), ('design', 1), ('development', 1)]
[('cognitive', 2), ('big', 2), ('data', 2), ('intelligence', 1), ('metaheuristic', 1), ('approach', 1), ('present', 1), ('exact', 1), ('compact', 1), ('organization', 1), ('content', 1), ('relating', 1), ('latest', 1), ('metaheuristics', 1), ('methodology', 1), ('based', 1), ('new', 1), ('challenging', 1), ('application', 1), ('domain', 1), ('computing', 1)]
[('application', 3), ('ims', 2), ('developer', 2), ('handbook', 1), ('give', 1), ('hand', 1), ('view', 1), ('exactly', 1), ('need', 1), ('done', 1), ('develop', 1), ('take', 1), ('live', 1), ('operator', 1), ('network', 1), ('offer', 1), ('practical', 1), ('guidance', 1), ('building', 1), ('innovative', 1)]
[('step', 2), ('running', 1), ('autocad', 1), ('drawing', 1), ('modeling', 1), ('present', 1), ('gindis', 1), ('combination', 1), ('instruction', 1), ('example', 1), ('insightful', 1), ('explanation', 1), ('emphasis', 1), ('beginning', 1), ('core', 1), ('concept', 1), ('practical', 1), ('application', 1)]
[('reality', 2), ('technology', 1), ('continues', 1), ('rapidly', 1), ('advance', 1), ('individual', 1), ('society', 1), ('profoundly', 1), ('changed', 1), ('tool', 1), ('used', 1), ('measure', 1), ('universe', 1), ('understanding', 1), ('improves', 1), ('boundary', 1), ('self', 1), ('online', 1), ('examines', 1)]
[('full', 2), ('stack', 2), ('development', 2), ('ground', 1), ('principle', 1), ('practice', 1), ('technology', 1), ('address', 1), ('growing', 1), ('need', 1), ('comprehensive', 1), ('upper', 1), ('division', 1), ('computer', 1), ('science', 1), ('textbook', 1), ('provides', 1), ('depth', 1), ('treatment', 1), ('web', 1), ('using', 1)]
[('data', 2), ('analysis', 1), ('social', 1), ('microblogging', 1), ('platform', 1), ('explores', 1), ('nature', 1), ('microblog', 1), ('datasets', 1), ('covering', 1), ('larger', 1), ('field', 1), ('focus', 1), ('information', 1), ('knowledge', 1), ('context', 1), ('natural', 1), ('language', 1), ('processing', 1), ('book', 1), ('investigates', 1)]
[('user', 3), ('practical', 2), ('statistic', 2), ('research', 2), ('quantifying', 1), ('experience', 1), ('offer', 1), ('guide', 1), ('using', 1), ('solve', 1), ('quantitative', 1), ('problem', 1), ('many', 1), ('designer', 1), ('researcher', 1), ('view', 1), ('usability', 1), ('design', 1), ('qualitative', 1)]
[('exam', 2), ('syngress', 1), ('study', 1), ('guide', 1), ('guarantee', 1), ('comprehensive', 1), ('coverage', 1), ('objective', 1), ('longer', 1), ('short', 1), ('cut', 1), ('gimmick', 1), ('allow', 1), ('candidate', 1), ('pas', 1), ('microsoft', 1), ('new', 1), ('rigorous', 1), ('day', 1), ('cramming', 1), ('become', 1), ('paper', 1), ('mcse', 1)]
[('parallel', 2), ('cfd', 2), ('proceeding', 1), ('cover', 1), ('aspect', 1), ('computing', 1), ('application', 1), ('although', 1), ('basic', 1), ('tool', 1), ('design', 1), ('procedure', 1), ('produce', 1), ('machinery', 1), ('automobile', 1), ('ship', 1), ('aircraft', 1), ('etc', 1), ('large', 1), ('scale', 1)]
[('temporal', 3), ('data', 3), ('mining', 2), ('unsupervised', 2), ('ensemble', 2), ('learning', 2), ('via', 1), ('provides', 1), ('principle', 1), ('knowledge', 1), ('association', 1), ('fundamental', 1), ('problem', 1), ('clustering', 1), ('different', 1)]
[('wearable', 2), ('sensing', 2), ('intelligent', 2), ('data', 2), ('analysis', 2), ('respiratory', 2), ('management', 2), ('highlight', 1), ('use', 1), ('algorithm', 1), ('function', 1), ('offering', 1), ('several', 1), ('potential', 1), ('substantial', 1), ('clinical', 1)]
[('apps', 4), ('top', 2), ('io', 2), ('android', 2), ('risky', 1), ('behaviour', 1), ('concise', 1), ('overview', 1), ('security', 1), ('threat', 1), ('posed', 1), ('ubiquitous', 1), ('phone', 1), ('mobile', 1), ('device', 1), ('vulnerable', 1), ('wide', 1), ('range', 1)]
[('computer', 2), ('incident', 2), ('response', 2), ('forensics', 2), ('team', 2), ('management', 2), ('provides', 1), ('security', 1), ('professional', 1), ('complete', 1), ('handbook', 1), ('perspective', 1), ('unique', 1), ('approach', 1), ('teach', 1), ('reader', 1), ('concept', 1)]
[('electron', 4), ('advance', 3), ('physic', 3), ('imaging', 1), ('volume', 1), ('merges', 1), ('long', 1), ('running', 1), ('serial', 1), ('electronics', 1), ('optical', 1), ('microscopy', 1), ('series', 1), ('feature', 1), ('extended', 1), ('article', 1)]
[('artificial', 2), ('intelligence', 2), ('machine', 2), ('learning', 2), ('era', 1), ('data', 1), ('science', 1), ('pharmaceutical', 1), ('industry', 1), ('examines', 1), ('drug', 1), ('discovery', 1), ('process', 1), ('assessing', 1), ('new', 1), ('technology', 1), ('improved', 1), ('effectiveness', 1)]
[('computerization', 2), ('social', 2), ('second', 1), ('edition', 1), ('controversy', 1), ('value', 1), ('conflict', 1), ('choice', 1), ('collection', 1), ('article', 1), ('examine', 1), ('aspect', 1), ('variety', 1), ('perspective', 1), ('many', 1), ('presenting', 1), ('important', 1), ('viewpoint', 1)]
[('cape', 2), ('idea', 1), ('editing', 1), ('book', 1), ('modern', 1), ('software', 1), ('architecture', 1), ('tool', 1), ('computer', 1), ('aided', 1), ('process', 1), ('engineering', 1), ('came', 1), ('editor', 1), ('volume', 1), ('realized', 1), ('existing', 1), ('title', 1), ('relating', 1), ('include', 1), ('reference', 1), ('design', 1)]
[('visual', 2), ('artificial', 1), ('vision', 1), ('rapidly', 1), ('growing', 1), ('discipline', 1), ('aiming', 1), ('build', 1), ('computational', 1), ('model', 1), ('functionality', 1), ('human', 1), ('machine', 1), ('emulate', 1), ('communication', 1), ('involves', 1), ('numberof', 1), ('challenging', 1), ('topic', 1)]
[('soft', 2), ('computing', 2), ('technique', 2), ('data', 2), ('cognitive', 1), ('analysis', 1), ('healthcare', 1), ('discus', 1), ('insight', 1), ('processing', 1), ('application', 1), ('various', 1), ('domain', 1), ('enormous', 1), ('advancement', 1), ('field', 1), ('book', 1), ('focus', 1)]
[('business', 2), ('user', 1), ('experience', 1), ('age', 1), ('sustainability', 1), ('focus', 1), ('economic', 1), ('sociological', 1), ('environmental', 1), ('movement', 1), ('make', 1), ('product', 1), ('including', 1), ('digital', 1), ('one', 1), ('sustainable', 1), ('finding', 1), ('significant', 1), ('roi', 1)]
[('government', 2), ('usability', 1), ('specialist', 1), ('interaction', 1), ('designer', 1), ('working', 1), ('contractor', 1), ('professional', 1), ('involved', 1), ('specifying', 1), ('procuring', 1), ('managing', 1), ('system', 1), ('development', 1), ('need', 1), ('book', 1), ('editor', 1), ('elizabeth', 1), ('buie', 1), ('dianne', 1)]
[('computational', 2), ('infectious', 2), ('disease', 2), ('modeling', 1), ('application', 1), ('python', 1), ('provides', 1), ('illustrated', 1), ('compendium', 1), ('tool', 1), ('tactic', 1), ('analyzing', 1), ('using', 1), ('cutting', 1), ('edge', 1), ('method', 1), ('simple', 1), ('ir', 1), ('model', 1)]
[('fisma', 2), ('risk', 2), ('management', 2), ('framework', 2), ('federal', 2), ('security', 2), ('information', 2), ('new', 1), ('practice', 1), ('cyber', 1), ('deal', 1), ('act', 1), ('law', 1), ('provides', 1), ('securing', 1), ('system', 1), ('managing', 1), ('associated', 1)]
[('embedded', 3), ('system', 3), ('fast', 2), ('design', 2), ('effective', 1), ('moving', 1), ('introduction', 1), ('applying', 1), ('innovative', 1), ('arm', 1), ('mbed', 1), ('web', 1), ('based', 1), ('development', 1), ('environment', 1), ('chapter', 1), ('introduces', 1), ('major', 1), ('topic', 1)]
[('system', 2), ('assurance', 2), ('modeling', 2), ('management', 1), ('update', 1), ('performance', 1), ('method', 1), ('using', 1), ('advanced', 1), ('analytics', 1), ('understanding', 1), ('software', 1), ('reliability', 1), ('growth', 1), ('today', 1), ('debugging', 1), ('team', 1), ('point', 1), ('view', 1), ('along', 1), ('information', 1)]
[('mobile', 3), ('handover', 2), ('ipv', 1), ('become', 1), ('key', 1), ('enabling', 1), ('technology', 1), ('data', 1), ('multimedia', 1), ('service', 1), ('device', 1), ('worldwide', 1), ('cellular', 1), ('system', 1), ('voip', 1), ('lan', 1), ('multi', 1), ('access', 1), ('network', 1), ('location', 1), ('privacy', 1), ('enterprise', 1), ('networking', 1)]
[('clinical', 2), ('theranostics', 1), ('precision', 1), ('medicine', 1), ('management', 1), ('hepatocellular', 1), ('carcinoma', 1), ('translational', 1), ('outcome', 1), ('volume', 1), ('three', 1), ('provides', 1), ('comprehensive', 1), ('information', 1), ('ongoing', 1), ('research', 1), ('data', 1), ('liver', 1), ('cancer', 1), ('book', 1), ('present', 1)]
[('security', 3), ('comptia', 2), ('certification', 2), ('guide', 2), ('part', 2), ('study', 1), ('exam', 1), ('syo', 1), ('third', 1), ('edition', 1), ('offer', 1), ('practical', 1), ('interested', 1), ('pursuing', 1), ('book', 1), ('organized', 1), ('six', 1), ('deal', 1), ('general', 1), ('issue', 1)]
[('present', 2), ('user', 2), ('code', 1), ('required', 1), ('various', 1), ('design', 1), ('system', 1), ('architecture', 1), ('research', 1), ('methodology', 1), ('evaluation', 1), ('strategy', 1), ('used', 1), ('end', 1), ('programming', 1), ('web', 1), ('tool', 1), ('allow', 1), ('participate', 1)]
[('programming', 2), ('parallel', 2), ('massively', 1), ('processor', 1), ('hand', 1), ('approach', 1), ('show', 1), ('student', 1), ('professional', 1), ('alike', 1), ('basic', 1), ('concept', 1), ('gpu', 1), ('architecture', 1), ('concise', 1), ('intuitive', 1), ('practical', 1), ('based', 1), ('year', 1), ('road', 1), ('testing', 1)]
[('biostatistics', 3), ('health', 2), ('guide', 2), ('data', 2), ('manual', 1), ('research', 1), ('practical', 1), ('analysis', 1), ('researcher', 1), ('apply', 1), ('different', 1), ('type', 1), ('book', 1), ('approach', 1), ('application', 1), ('medical', 1)]
[('software', 2), ('application', 2), ('phase', 2), ('certifiable', 1), ('downward', 1), ('cycle', 1), ('describes', 1), ('descending', 1), ('creation', 1), ('detailing', 1), ('specification', 1), ('architecture', 1), ('design', 1), ('coding', 1), ('important', 1), ('concept', 1), ('modeling', 1), ('implementation', 1)]
[('linux', 3), ('malware', 2), ('incident', 2), ('first', 2), ('forensics', 2), ('field', 2), ('guide', 2), ('response', 1), ('look', 1), ('system', 1), ('exhibiting', 1), ('step', 1), ('investigating', 1), ('based', 1), ('syngress', 1), ('digital', 1), ('series', 1), ('includes', 1), ('companion', 1)]
[('volume', 3), ('computer', 2), ('advance', 1), ('latest', 1), ('series', 1), ('published', 1), ('present', 1), ('detailed', 1), ('coverage', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('chapter', 1), ('updated', 1), ('include', 1), ('mobile', 1)]
[('exam', 2), ('validate', 2), ('skill', 2), ('designed', 1), ('window', 1), ('server', 1), ('microsoft', 1), ('certified', 1), ('system', 1), ('administrator', 1), ('mcsas', 1), ('ad', 1), ('application', 1), ('platform', 1), ('technical', 1), ('specialist', 1), ('object', 1), ('different', 1)]
[('wmi', 4), ('scripting', 3), ('book', 2), ('leveraging', 1), ('second', 1), ('series', 1), ('dedicated', 1), ('understanding', 1), ('isbn', 1), ('lissoir', 1), ('first', 1), ('explained', 1), ('window', 1), ('administrator', 1), ('various', 1), ('technique', 1), ('manageability', 1)]
[('pc', 1), ('user', 1), ('entered', 1), ('realm', 1), ('programmable', 1), ('hardware', 1), ('graphic', 1), ('programmer', 1), ('create', 1), ('image', 1), ('animation', 1), ('comparable', 1), ('produced', 1), ('renderman', 1), ('procedural', 1), ('program', 1), ('real', 1), ('time', 1), ('book', 1), ('bring', 1)]
[('digital', 2), ('forensic', 2), ('environment', 2), ('virtualization', 1), ('forensics', 1), ('investigator', 1), ('guide', 1), ('virtual', 1), ('offer', 1), ('depth', 1), ('view', 1), ('world', 1), ('virtualized', 1), ('implication', 1), ('investigation', 1), ('named', 1), ('best', 1)]
[('electron', 4), ('advance', 3), ('physic', 3), ('imaging', 1), ('merges', 1), ('long', 1), ('running', 1), ('serial', 1), ('electronics', 1), ('optical', 1), ('microscopy', 1), ('series', 1), ('feature', 1), ('extended', 1), ('article', 1), ('device', 1)]
[('soil', 2), ('anchor', 2), ('plate', 2), ('reinforcement', 1), ('uplift', 1), ('response', 1), ('present', 1), ('comprehensive', 1), ('rigorous', 1), ('review', 1), ('current', 1), ('knowledge', 1), ('improvement', 1), ('based', 1), ('original', 1), ('research', 1), ('includes', 1), ('experimental', 1), ('data', 1)]
[('machine', 2), ('dreaming', 2), ('consciousness', 2), ('first', 1), ('book', 1), ('discus', 1), ('question', 1), ('raised', 1), ('advent', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('system', 1), ('meeting', 1), ('criterion', 1), ('primary', 1), ('self', 1), ('reflexive', 1), ('often', 1), ('utilized', 1), ('extend', 1)]
[('data', 3), ('federal', 2), ('government', 2), ('science', 1), ('serf', 1), ('guide', 1), ('software', 1), ('engineer', 1), ('analyst', 1), ('economist', 1), ('researcher', 1), ('scientist', 1), ('engineering', 1), ('manager', 1), ('deploying', 1), ('analytics', 1), ('method', 1), ('governmental', 1), ('process', 1), ('driven', 1), ('open', 1)]
[('third', 1), ('entry', 1), ('jim', 1), ('blinn', 1), ('corner', 1), ('series', 1), ('others', 1), ('handy', 1), ('compilation', 1), ('selected', 1), ('installment', 1), ('influential', 1), ('column', 1), ('first', 1), ('time', 1), ('director', 1), ('cut', 1), ('article', 1), ('revised', 1), ('expanded', 1)]
[('medical', 2), ('image', 2), ('give', 2), ('n', 2), ('neutrosophic', 1), ('set', 1), ('analysis', 1), ('understanding', 1), ('concept', 1), ('along', 1), ('knowledge', 1), ('gather', 1), ('interpret', 1), ('analyze', 1), ('handle', 1), ('using', 1), ('method', 1), ('present', 1), ('latest', 1), ('cutting', 1), ('edge', 1), ('research', 1)]
[('domain', 2), ('adaptation', 2), ('advance', 1), ('theory', 1), ('give', 1), ('current', 1), ('state', 1), ('art', 1), ('result', 1), ('transfer', 1), ('learning', 1), ('particular', 1), ('focus', 1), ('placed', 1), ('theoretical', 1), ('point', 1), ('view', 1), ('book', 1), ('begin', 1), ('brief', 1), ('overview', 1), ('popular', 1)]
[('trend', 2), ('ict', 2), ('security', 2), ('emerging', 1), ('edited', 1), ('volume', 1), ('discus', 1), ('foundation', 1), ('theoretical', 1), ('aspect', 1), ('cover', 1), ('analytics', 1), ('assessment', 1), ('framework', 1), ('necessary', 1), ('performance', 1), ('analysis', 1), ('evaluation', 1), ('give', 1)]
[('indexing', 3), ('technique', 3), ('consists', 1), ('novel', 1), ('traditional', 1), ('cutting', 1), ('edge', 1), ('automatic', 1), ('ontology', 1), ('topic', 1), ('map', 1), ('developed', 1), ('independently', 1), ('older', 1), ('thesaurus', 1), ('recognized', 1)]
[('information', 3), ('management', 1), ('gaining', 1), ('competitive', 1), ('advantage', 1), ('data', 1), ('making', 1), ('smart', 1), ('decision', 1), ('make', 1), ('company', 1), ('expert', 1), ('author', 1), ('william', 1), ('mcknight', 1), ('develops', 1), ('value', 1), ('proposition', 1), ('enterprise', 1)]
[('microcontroller', 2), ('cookbook', 2), ('guide', 1), ('programming', 1), ('interfacing', 1), ('development', 1), ('work', 1), ('circuit', 1), ('design', 1), ('using', 1), ('popular', 1), ('family', 1), ('approach', 1), ('make', 1), ('ideal', 1), ('book', 1), ('anyone', 1)]
[('network', 3), ('system', 3), ('security', 3), ('provides', 1), ('focused', 1), ('coverage', 1), ('technology', 1), ('explores', 1), ('practical', 1), ('solution', 1), ('wide', 1), ('range', 1), ('issue', 1), ('chapter', 1), ('authored', 1), ('leading', 1), ('expert', 1), ('field', 1)]
[('skill', 3), ('job', 2), ('considerably', 1), ('security', 1), ('community', 1), ('reflected', 1), ('able', 1), ('attain', 1), ('limiting', 1), ('factor', 1), ('ability', 1), ('better', 1), ('technical', 1), ('even', 1), ('soft', 1)]
[('contemporary', 1), ('development', 1), ('book', 1), ('publishing', 1), ('industry', 1), ('changing', 1), ('system', 1), ('know', 1), ('change', 1), ('established', 1), ('understanding', 1), ('authorship', 1), ('readership', 1), ('leading', 1), ('new', 1), ('business', 1), ('model', 1), ('line', 1), ('postulate', 1), ('web', 1), ('socially', 1)]
[('ranking', 3), ('algorithm', 2), ('vertical', 2), ('search', 2), ('plain', 1), ('uncomplicated', 1), ('language', 1), ('using', 1), ('detailed', 1), ('example', 1), ('explain', 1), ('key', 1), ('concept', 1), ('model', 1), ('relevance', 1), ('engine', 1), ('teach', 1), ('reader', 1), ('manipulate', 1)]
[('design', 4), ('part', 2), ('book', 2), ('product', 1), ('modeling', 1), ('using', 1), ('cad', 1), ('cae', 1), ('third', 1), ('four', 1), ('series', 1), ('first', 1), ('integrate', 1), ('discussion', 1), ('computer', 1), ('tool', 1), ('throughout', 1), ('process', 1), ('understand', 1), ('basic', 1), ('principle', 1)]
[('social', 2), ('data', 2), ('analytics', 2), ('first', 1), ('practical', 1), ('guide', 1), ('professional', 1), ('want', 1), ('employ', 1), ('business', 1), ('intelligence', 1), ('bi', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('technology', 1), ('platform', 1), ('show', 1)]
[('decade', 2), ('wireless', 2), ('device', 2), ('system', 2), ('past', 1), ('number', 1), ('grown', 1), ('exponentially', 1), ('ago', 1), ('wired', 1), ('computer', 1), ('technology', 1), ('accessible', 1), ('mobile', 1), ('portable', 1), ('recent', 1), ('year', 1), ('followed', 1)]
[('power', 2), ('performance', 2), ('software', 2), ('chip', 2), ('analysis', 1), ('optimization', 1), ('guide', 1), ('solving', 1), ('problem', 1), ('modern', 1), ('linux', 1), ('system', 1), ('efficient', 1), ('help', 1), ('run', 1), ('inefficient', 1), ('starting', 1), ('necessary', 1)]
[('bad', 2), ('news', 2), ('common', 1), ('perception', 1), ('computational', 1), ('complexity', 1), ('theory', 1), ('typical', 1), ('result', 1), ('assert', 1), ('various', 1), ('real', 1), ('world', 1), ('innocent', 1), ('looking', 1), ('task', 1), ('infeasible', 1), ('fact', 1), ('relative', 1), ('term', 1)]
[('data', 3), ('analysis', 3), ('numerical', 2), ('method', 2), ('environmental', 2), ('introduces', 1), ('scientist', 1), ('available', 1), ('help', 1), ('answer', 1), ('research', 1), ('question', 1), ('challenge', 1), ('misrepresentation', 1), ('datasets', 1)]
[('reality', 2), ('digital', 2), ('promise', 1), ('innovation', 1), ('come', 1), ('suffuse', 1), ('everything', 1), ('city', 1), ('region', 1), ('astronomy', 1), ('government', 1), ('finance', 1), ('art', 1), ('medicine', 1), ('politics', 1), ('warfare', 1), ('genetics', 1), ('system', 1), ('augmenting', 1), ('physical', 1)]
[('biological', 2), ('system', 2), ('investigating', 1), ('using', 1), ('modeling', 1), ('describes', 1), ('apply', 1), ('software', 1), ('analyze', 1), ('interpret', 1), ('data', 1), ('written', 1), ('student', 1), ('investigator', 1), ('lay', 1), ('person', 1), ('term', 1), ('useful', 1), ('reference', 1), ('book', 1)]
[('problem', 2), ('constraint', 1), ('programming', 1), ('aim', 1), ('solving', 1), ('hard', 1), ('combinatorial', 1), ('computation', 1), ('time', 1), ('increasing', 1), ('practice', 1), ('exponentially', 1), ('method', 1), ('today', 1), ('efficient', 1), ('enough', 1), ('solve', 1), ('large', 1), ('industrial', 1), ('generic', 1), ('framework', 1), ('solver', 1)]
[('social', 3), ('medium', 3), ('enterprise', 3), ('site', 2), ('apps', 2), ('securing', 1), ('concise', 1), ('overview', 1), ('security', 1), ('threat', 1), ('posed', 1), ('use', 1), ('network', 1), ('environment', 1), ('ubiquitous', 1), ('presence', 1), ('within', 1)]
[('cognitive', 2), ('neutrosophic', 2), ('statistic', 2), ('bioinformatics', 2), ('intelligence', 1), ('investigates', 1), ('present', 1), ('many', 1), ('application', 1), ('arisen', 1), ('last', 1), ('ten', 1), ('year', 1), ('using', 1), ('medicine', 1), ('agriculture', 1)]
[('artificial', 2), ('neural', 2), ('network', 2), ('drug', 1), ('design', 1), ('delivery', 1), ('disposition', 1), ('provides', 1), ('depth', 1), ('look', 1), ('use', 1), ('ann', 1), ('pharmaceutical', 1), ('research', 1), ('ability', 1), ('learn', 1), ('self', 1), ('correct', 1), ('highly', 1), ('complex', 1), ('environment', 1)]
[('computer', 3), ('volume', 2), ('advance', 1), ('eclectic', 1), ('inspired', 1), ('recent', 1), ('issue', 1), ('interest', 1), ('research', 1), ('development', 1), ('science', 1), ('engineering', 1), ('chapter', 1), ('new', 1), ('release', 1), ('include', 1), ('ehealth', 1), ('enabling', 1), ('technology', 1)]
[('computation', 2), ('time', 2), ('analysis', 2), ('intelligent', 2), ('algorithm', 2), ('book', 1), ('latest', 1), ('achievement', 1), ('theory', 1), ('practical', 1), ('application', 1), ('set', 1), ('five', 1), ('chapter', 1), ('negetiveemoji', 1), ('new', 1), ('method', 1)]
[('technology', 2), ('building', 1), ('agile', 1), ('enterprise', 1), ('capability', 1), ('collaboration', 1), ('value', 1), ('second', 1), ('edition', 1), ('cover', 1), ('advance', 1), ('make', 1), ('powerful', 1), ('pervasive', 1), ('time', 1), ('improving', 1), ('alignment', 1), ('business', 1), ('using', 1), ('numerous', 1)]
[('programming', 2), ('language', 2), ('page', 2), ('pragmatic', 1), ('comprehensive', 1), ('textbook', 1), ('available', 1), ('today', 1), ('nearly', 1), ('content', 1), ('book', 1), ('plus', 1), ('hundred', 1), ('reference', 1), ('material', 1), ('ancillaries', 1), ('online', 1), ('michael', 1), ('scott', 1), ('take', 1)]
[('computer', 2), ('method', 2), ('researcher', 2), ('aim', 1), ('numerical', 1), ('part', 1), ('brief', 1), ('importance', 1), ('data', 1), ('analysis', 1), ('enzymology', 1), ('modern', 1), ('developed', 1), ('concomitantly', 1), ('hardware', 1), ('validate', 1)]
[('cissp', 2), ('study', 2), ('guide', 2), ('eleventh', 1), ('hour', 1), ('fourth', 1), ('edition', 1), ('provides', 1), ('keyed', 1), ('directly', 1), ('current', 1), ('version', 1), ('exam', 1), ('streamlined', 1), ('book', 1), ('includes', 1), ('core', 1), ('certification', 1), ('information', 1), ('making', 1), ('ideal', 1), ('last', 1), ('minute', 1), ('studying', 1)]
[('granular', 2), ('filtration', 1), ('technique', 1), ('used', 1), ('extensively', 1), ('water', 1), ('sewage', 1), ('industry', 1), ('quickly', 1), ('aware', 1), ('work', 1), ('properly', 1), ('designing', 1), ('building', 1), ('effective', 1), ('filter', 1), ('science', 1), ('art', 1), ('book', 1), ('cover', 1)]
[('written', 1), ('europe', 1), ('leading', 1), ('robotics', 1), ('expert', 1), ('book', 1), ('provides', 1), ('tool', 1), ('unified', 1), ('approach', 1), ('modelling', 1), ('robotic', 1), ('manipulator', 1), ('whatever', 1), ('mechanical', 1), ('structure', 1), ('publication', 1), ('cover', 1), ('three', 1), ('fundamental', 1), ('issue', 1)]
[('market', 2), ('nokia', 1), ('perhaps', 1), ('recognized', 1), ('leadership', 1), ('mobile', 1), ('phone', 1), ('successfully', 1), ('demonstrated', 1), ('knowledge', 1), ('internet', 1), ('security', 1), ('appliance', 1), ('customer', 1), ('requirement', 1), ('chris', 1), ('christiansen', 1), ('vice', 1)]
[('voice', 2), ('mobility', 2), ('provides', 1), ('practical', 1), ('advice', 1), ('breaking', 1), ('implementation', 1), ('deployment', 1), ('network', 1), ('within', 1), ('office', 1), ('across', 1), ('campus', 1), ('road', 1), ('offer', 1), ('complete', 1), ('primer', 1), ('enterprise', 1), ('grade', 1), ('wi', 1), ('fi', 1), ('networking', 1)]
[('testing', 2), ('user', 2), ('experience', 2), ('usability', 1), ('research', 1), ('typically', 1), ('take', 1), ('place', 1), ('controlled', 1), ('lab', 1), ('small', 1), ('group', 1), ('type', 1), ('essential', 1), ('design', 1), ('company', 1), ('looking', 1), ('test', 1), ('large', 1), ('sample', 1), ('size', 1), ('able', 1)]
[('advent', 1), ('data', 1), ('intensive', 1), ('application', 1), ('elimination', 1), ('redundancy', 1), ('disseminated', 1), ('information', 1), ('become', 1), ('serious', 1), ('challenge', 1), ('researcher', 1), ('lookout', 1), ('evolving', 1), ('metaheuristic', 1), ('algorithm', 1), ('explore', 1), ('exploit', 1)]
[('multivariate', 2), ('applied', 1), ('statistical', 1), ('analysis', 1), ('medicine', 1), ('provides', 1), ('conceptual', 1), ('framework', 1), ('allows', 1), ('reader', 1), ('understand', 1), ('interconnectivity', 1), ('interrelation', 1), ('among', 1), ('variable', 1), ('strong', 1), ('focus', 1), ('fundamental', 1), ('concept', 1)]
[('security', 2), ('problem', 2), ('evolved', 1), ('corporate', 1), ('world', 1), ('technological', 1), ('change', 1), ('using', 1), ('internet', 1), ('mean', 1), ('communication', 1), ('creation', 1), ('transmission', 1), ('storage', 1), ('information', 1), ('represent', 1)]
[('assurance', 3), ('system', 2), ('omg', 2), ('teach', 1), ('student', 1), ('use', 1), ('object', 1), ('management', 1), ('group', 1), ('expertise', 1), ('unique', 1), ('standard', 1), ('obtain', 1), ('accurate', 1), ('knowledge', 1), ('existing', 1), ('software', 1), ('compose', 1), ('objective', 1), ('metric', 1), ('ecosystem', 1)]
[('search', 2), ('vital', 1), ('artificial', 1), ('intelligence', 1), ('beginning', 1), ('core', 1), ('technique', 1), ('problem', 1), ('solving', 1), ('author', 1), ('present', 1), ('thorough', 1), ('overview', 1), ('heuristic', 1), ('balance', 1), ('discussion', 1), ('theoretical', 1), ('analysis', 1), ('efficient', 1)]
[('sql', 2), ('information', 2), ('need', 2), ('database', 2), ('demand', 1), ('training', 1), ('continues', 1), ('grow', 1), ('behind', 1), ('every', 1), ('website', 1), ('capable', 1), ('offering', 1), ('web', 1), ('based', 1), ('query', 1), ('de', 1), ('facto', 1), ('standard', 1), ('retrieval', 1), ('access', 1)]
[('data', 2), ('cloud', 2), ('analysis', 1), ('introduces', 1), ('discus', 1), ('model', 1), ('method', 1), ('technique', 1), ('system', 1), ('analyze', 1), ('large', 1), ('number', 1), ('digital', 1), ('source', 1), ('available', 1), ('internet', 1), ('using', 1), ('computing', 1), ('storage', 1), ('facility', 1), ('coverage', 1), ('includes', 1)]
[('breach', 4), ('data', 3), ('impact', 2), ('preparation', 1), ('response', 1), ('certain', 1), ('first', 1), ('book', 1), ('provide', 1), ('degree', 1), ('visibility', 1), ('guidance', 1), ('proactively', 1), ('prepare', 1), ('manage', 1), ('limit', 1), ('inevitable', 1)]
[('silicon', 1), ('photonics', 1), ('us', 1), ('chip', 1), ('making', 1), ('technique', 1), ('fabricate', 1), ('photonic', 1), ('circuit', 1), ('emerging', 1), ('technology', 1), ('coming', 1), ('market', 1), ('time', 1), ('momentous', 1), ('change', 1), ('need', 1), ('internet', 1), ('content', 1), ('provider', 1), ('keep', 1), ('scaling', 1), ('data', 1), ('center', 1), ('becoming', 1)]
[('mobile', 3), ('evidence', 2), ('seeking', 1), ('truth', 1), ('basic', 1), ('fundamental', 1), ('intermediate', 1), ('advanced', 1), ('overview', 1), ('current', 1), ('forensic', 1), ('investigation', 1), ('assist', 1), ('never', 1), ('collected', 1), ('augment', 1), ('work', 1), ('professional', 1)]
[('predictive', 2), ('modeling', 2), ('personalized', 1), ('diabetes', 1), ('feature', 1), ('state', 1), ('art', 1), ('methodology', 1), ('algorithmic', 1), ('approach', 1), ('applied', 1), ('glucose', 1), ('concentration', 1), ('ranging', 1), ('simple', 1), ('autoregressive', 1), ('model', 1), ('cgm', 1), ('time', 1)]
[('requirement', 2), ('engineering', 2), ('software', 2), ('intensive', 2), ('system', 2), ('promising', 2), ('approach', 2), ('environment', 1), ('modeling', 1), ('based', 1), ('provides', 1), ('new', 1), ('presenting', 1), ('systematic', 1), ('identifying', 1)]
[('healthcare', 2), ('data', 2), ('modern', 1), ('system', 1), ('facilitate', 1), ('collection', 1), ('critical', 1), ('medical', 1), ('statistical', 1), ('evaluation', 1), ('inference', 1), ('using', 1), ('machine', 1), ('learning', 1), ('application', 1), ('ml', 1), ('analytics', 1), ('fully', 1), ('exploited', 1), ('due', 1)]
[('computer', 2), ('first', 1), ('volume', 1), ('advance', 1), ('presented', 1), ('detailed', 1), ('coverage', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('provided', 1), ('contributor', 1), ('medium', 1), ('explore', 1)]
[('sql', 2), ('injection', 2), ('book', 2), ('bejtlich', 2), ('attack', 1), ('defense', 1), ('first', 1), ('edition', 1), ('winner', 1), ('best', 1), ('award', 1), ('probably', 1), ('number', 1), ('problem', 1), ('server', 1), ('side', 1), ('application', 1), ('unequaled', 1), ('coverage', 1), ('richard', 1), ('tao', 1)]
[('written', 1), ('experienced', 1), ('penetration', 1), ('tester', 1), ('material', 1), ('presented', 1), ('discus', 1), ('basic', 1), ('o', 1), ('environment', 1), ('vulnerability', 1), ('including', 1), ('limited', 1), ('application', 1), ('porting', 1), ('virtualization', 1), ('utilization', 1), ('offensive', 1), ('tactic', 1)]
[('matlab', 2), ('example', 2), ('reader', 2), ('guide', 1), ('step', 1), ('writing', 1), ('program', 1), ('book', 1), ('assumes', 1), ('previous', 1), ('programming', 1), ('experience', 1), ('part', 1), ('us', 1), ('multiple', 1), ('clear', 1), ('language', 1), ('introduce', 1), ('concept', 1), ('practical', 1)]
[('design', 4), ('series', 2), ('book', 1), ('four', 1), ('part', 1), ('aim', 1), ('integrate', 1), ('discussion', 1), ('modern', 1), ('engineering', 1), ('principle', 1), ('advanced', 1), ('tool', 1), ('industrial', 1), ('practice', 1), ('throughout', 1), ('process', 1), ('reader', 1)]
[('recent', 1), ('advance', 1), ('chaotic', 1), ('system', 1), ('synchronization', 1), ('theory', 1), ('real', 1), ('world', 1), ('application', 1), ('major', 1), ('reference', 1), ('scientist', 1), ('engineer', 1), ('interested', 1), ('applying', 1), ('new', 1), ('computational', 1), ('mathematical', 1), ('tool', 1), ('solving', 1), ('complex', 1), ('problem', 1), ('related', 1)]
[('social', 2), ('network', 2), ('research', 2), ('analytics', 1), ('computational', 1), ('method', 1), ('technique', 1), ('focus', 1), ('various', 1), ('technical', 1), ('concept', 1), ('aspect', 1), ('analysis', 1), ('book', 1), ('feature', 1), ('latest', 1), ('development', 1), ('finding', 1), ('emerging', 1), ('area', 1)]
[('date', 2), ('international', 2), ('volume', 1), ('comprehensive', 1), ('reference', 1), ('work', 1), ('visual', 1), ('communication', 1), ('group', 1), ('known', 1), ('expert', 1), ('field', 1), ('provide', 1), ('depth', 1), ('contribution', 1), ('topic', 1), ('fundamental', 1), ('theory', 1)]
[('artificial', 2), ('intelligence', 2), ('design', 2), ('field', 2), ('engineering', 1), ('three', 1), ('volume', 1), ('edited', 1), ('collection', 1), ('key', 1), ('paper', 1), ('aimed', 1), ('providing', 1), ('description', 1), ('focusing', 1), ('idea', 1), ('method', 1)]
[('statistical', 1), ('learning', 1), ('analysis', 1), ('technique', 1), ('become', 1), ('extremely', 1), ('important', 1), ('today', 1), ('given', 1), ('tremendous', 1), ('growth', 1), ('size', 1), ('heterogeneous', 1), ('data', 1), ('collection', 1), ('ability', 1), ('process', 1), ('even', 1), ('physically', 1), ('distant', 1), ('location', 1), ('recent', 1), ('advance', 1)]
[('learning', 3), ('machine', 2), ('biometrics', 2), ('concept', 2), ('algorithm', 1), ('application', 1), ('highlight', 1), ('fundamental', 1), ('processing', 1), ('analyzing', 1), ('data', 1), ('provides', 1), ('review', 1), ('intelligent', 1), ('cognitive', 1), ('tool', 1)]
[('mobile', 4), ('security', 3), ('research', 2), ('leading', 2), ('dr', 2), ('privacy', 1), ('advance', 1), ('challenge', 1), ('future', 1), ('direction', 1), ('provides', 1), ('first', 1), ('truly', 1), ('holistic', 1), ('view', 1), ('edge', 1), ('ho', 1), ('au', 1), ('raymond', 1), ('choo', 1), ('researcher', 1)]
[('pic', 2), ('month', 1), ('introduction', 1), ('new', 1), ('generation', 1), ('bit', 1), ('microcontrollers', 1), ('microchip', 1), ('insider', 1), ('acclaimed', 1), ('author', 1), ('take', 1), ('hand', 1), ('exploration', 1), ('includes', 1), ('handy', 1), ('checklist', 1), ('help', 1), ('reader', 1), ('perform', 1), ('common', 1)]
[('openacc', 2), ('parallel', 1), ('programming', 1), ('modern', 1), ('practical', 1), ('guide', 1), ('implementing', 1), ('dependable', 1), ('computing', 1), ('system', 1), ('book', 1), ('explains', 1), ('anyone', 1), ('use', 1), ('quickly', 1), ('ramp', 1), ('application', 1), ('performance', 1), ('using', 1), ('high', 1), ('level', 1), ('code', 1), ('directive', 1), ('called', 1), ('pragmas', 1)]
[('manufacturing', 3), ('cloud', 2), ('customized', 1), ('production', 1), ('printing', 1), ('explains', 1), ('combine', 1), ('latest', 1), ('additive', 1), ('technology', 1), ('find', 1), ('innovative', 1), ('solution', 1), ('important', 1), ('problem', 1), ('research', 1), ('industry', 1)]
[('healthcare', 2), ('digital', 1), ('transformation', 1), ('post', 1), ('covid', 1), ('time', 1), ('discus', 1), ('recent', 1), ('advance', 1), ('patient', 1), ('care', 1), ('offer', 1), ('critical', 1), ('comparative', 1), ('insight', 1), ('application', 1), ('across', 1), ('multiple', 1), ('domain', 1), ('showcasing', 1), ('key', 1), ('problem', 1), ('best', 1), ('practice', 1)]
[('network', 2), ('advanced', 1), ('persistent', 1), ('security', 1), ('cover', 1), ('secure', 1), ('design', 1), ('implementation', 1), ('including', 1), ('authentication', 1), ('authorization', 1), ('data', 1), ('access', 1), ('integrity', 1), ('monitoring', 1), ('risk', 1), ('assessment', 1), ('using', 1), ('recent', 1), ('high', 1), ('profile', 1), ('case', 1), ('target', 1), ('sony', 1)]
[('classification', 4), ('ontology', 2), ('made', 1), ('relevant', 1), ('scientist', 1), ('build', 1), ('use', 1), ('explains', 1), ('designed', 1), ('used', 1), ('analyze', 1), ('scientific', 1), ('information', 1), ('book', 1), ('present', 1), ('fundamental', 1)]
[('network', 2), ('current', 1), ('data', 1), ('centre', 1), ('based', 1), ('electronic', 1), ('packet', 1), ('switch', 1), ('experiencing', 1), ('exponential', 1), ('increase', 1), ('traffic', 1), ('due', 1), ('development', 1), ('cloud', 1), ('computing', 1), ('optical', 1), ('interconnects', 1), ('emerged', 1), ('promising', 1), ('alternative', 1), ('offering', 1), ('high', 1)]
[('software', 3), ('certifiable', 2), ('application', 2), ('process', 2), ('management', 2), ('support', 1), ('explains', 1), ('achieve', 1), ('concern', 1), ('several', 1), ('major', 1), ('topic', 1), ('skill', 1), ('data', 1), ('preparation', 1), ('requirement', 1), ('verification', 1)]
[('embedded', 2), ('system', 2), ('harsh', 2), ('environment', 2), ('rugged', 1), ('computing', 1), ('describes', 1), ('design', 1), ('reliable', 1), ('including', 1), ('architectural', 1), ('approach', 1), ('cross', 1), ('stack', 1), ('hardware', 1), ('software', 1), ('technique', 1), ('emerging', 1), ('challenge', 1)]
[('ninja', 2), ('hacking', 1), ('offer', 1), ('insight', 1), ('conduct', 1), ('unorthodox', 1), ('attack', 1), ('computing', 1), ('network', 1), ('using', 1), ('disguise', 1), ('espionage', 1), ('stealth', 1), ('concealment', 1), ('book', 1), ('blend', 1), ('ancient', 1), ('practice', 1), ('japanese', 1), ('particular', 1), ('historical', 1), ('ninjutsu', 1)]
[('smart', 4), ('grid', 4), ('securing', 1), ('discus', 1), ('feature', 1), ('particularly', 1), ('strength', 1), ('weakness', 1), ('better', 1), ('understand', 1), ('threat', 1), ('attack', 1), ('prevent', 1), ('insecure', 1), ('deployment', 1), ('technology', 1), ('modernized', 1)]
[('entity', 2), ('resolution', 2), ('information', 2), ('quality', 2), ('present', 1), ('topic', 1), ('definition', 1), ('clarifies', 1), ('confusing', 1), ('terminology', 1), ('regarding', 1), ('take', 1), ('wide', 1), ('view', 1), ('iq', 1), ('including', 1), ('six', 1), ('domain', 1), ('framework', 1)]
[('industrial', 2), ('network', 2), ('security', 2), ('critical', 2), ('infrastructure', 2), ('securing', 1), ('smart', 1), ('grid', 1), ('scada', 1), ('control', 1), ('system', 1), ('cover', 1), ('implementation', 1), ('guideline', 1), ('measure', 1), ('book', 1), ('describes', 1), ('approach', 1)]
[('cancer', 2), ('oncology', 1), ('informatics', 1), ('using', 1), ('health', 1), ('information', 1), ('technology', 1), ('improve', 1), ('process', 1), ('outcome', 1), ('care', 1), ('encapsulates', 1), ('national', 1), ('institute', 1), ('collected', 1), ('evidence', 1), ('format', 1), ('optimally', 1), ('useful', 1), ('hospital', 1), ('planner', 1), ('physician', 1)]
[('computer', 2), ('volume', 2), ('advance', 1), ('latest', 1), ('innovative', 1), ('series', 1), ('published', 1), ('present', 1), ('detailed', 1), ('coverage', 1), ('new', 1), ('advancement', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('chapter', 1), ('updated', 1), ('release', 1)]
[('technology', 2), ('widening', 1), ('gap', 1), ('exists', 1), ('student', 1), ('school', 1), ('use', 1), ('communication', 1), ('using', 1), ('network', 1), ('mobile', 1), ('bridge', 1), ('formal', 1), ('informal', 1), ('learning', 1), ('introduces', 1), ('new', 1), ('method', 1), ('inspired', 1), ('pedagogy', 1), ('harnessing', 1), ('potential', 1)]
[('model', 3), ('system', 2), ('management', 1), ('analytics', 1), ('large', 1), ('scale', 1), ('cover', 1), ('use', 1), ('related', 1), ('artefact', 1), ('metamodels', 1), ('transformation', 1), ('central', 1), ('element', 1), ('tackling', 1), ('complexity', 1), ('building', 1), ('managing', 1), ('data', 1)]
[('uml', 2), ('written', 1), ('workbook', 1), ('set', 1), ('guided', 1), ('exercise', 1), ('teach', 1), ('example', 1), ('book', 1), ('give', 1), ('practical', 1), ('hand', 1), ('guide', 1), ('using', 1), ('design', 1), ('implement', 1), ('embedded', 1), ('real', 1), ('time', 1), ('system', 1), ('review', 1), ('basic', 1), ('harmony', 1), ('process', 1)]
[('openvx', 2), ('computer', 1), ('vision', 1), ('api', 1), ('adopted', 1), ('many', 1), ('high', 1), ('performance', 1), ('processor', 1), ('vendor', 1), ('quickly', 1), ('becoming', 1), ('preferred', 1), ('way', 1), ('write', 1), ('fast', 1), ('power', 1), ('efficient', 1), ('code', 1), ('embedded', 1), ('system', 1), ('programming', 1), ('guidebook', 1), ('present', 1), ('definitive', 1), ('information', 1)]
[('nr', 2), ('next', 1), ('generation', 1), ('wireless', 1), ('access', 1), ('technology', 1), ('second', 1), ('edition', 1), ('follows', 1), ('author', 1), ('highly', 1), ('celebrated', 1), ('book', 1), ('provides', 1), ('new', 1), ('level', 1), ('insight', 1), ('background', 1), ('discussion', 1), ('including', 1), ('requirement', 1), ('spectrum', 1)]
[('cloud', 2), ('data', 2), ('center', 2), ('cost', 2), ('modeling', 1), ('establishes', 1), ('framework', 1), ('strategic', 1), ('decision', 1), ('maker', 1), ('facilitate', 1), ('development', 1), ('building', 1), ('house', 1), ('requires', 1), ('clear', 1), ('understanding', 1), ('blueprint', 1), ('architecture', 1)]
[('computer', 2), ('advance', 1), ('carry', 1), ('tradition', 1), ('excellence', 1), ('presenting', 1), ('detailed', 1), ('coverage', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1), ('book', 1), ('provides', 1), ('contributor', 1), ('medium', 1), ('explore', 1)]
[('nature', 1), ('inspired', 1), ('computing', 1), ('paradigm', 1), ('system', 1), ('reliability', 1), ('availability', 1), ('maintainability', 1), ('safety', 1), ('cost', 1), ('ram', 1), ('prognostic', 1), ('health', 1), ('management', 1), ('phm', 1), ('cover', 1), ('several', 1), ('area', 1), ('include', 1), ('bioinspired', 1), ('technique', 1), ('optimization', 1), ('approach', 1)]
[('practical', 2), ('day', 2), ('book', 1), ('provides', 1), ('set', 1), ('process', 1), ('technique', 1), ('used', 1), ('multicore', 1), ('software', 1), ('development', 1), ('written', 1), ('focus', 1), ('solving', 1), ('problem', 1), ('using', 1), ('tip', 1), ('trick', 1), ('industry', 1), ('case', 1), ('study', 1), ('reinforce', 1), ('key', 1)]
[('finned', 2), ('tube', 2), ('heat', 2), ('exchanger', 2), ('design', 2), ('handbook', 1), ('transversely', 1), ('contains', 1), ('detailed', 1), ('experimental', 1), ('data', 1), ('correlation', 1), ('method', 1), ('designing', 1), ('improving', 1), ('performance', 1), ('cover', 1), ('three', 1), ('main', 1), ('type', 1)]
[('network', 2), ('depth', 1), ('knowledge', 1), ('configure', 1), ('cisco', 1), ('ip', 1), ('security', 1), ('anyone', 1), ('working', 1), ('today', 1), ('internetworked', 1), ('world', 1), ('question', 1), ('attack', 1), ('enterprise', 1), ('increasing', 1), ('frequency', 1), ('sophistication', 1), ('mike', 1)]
[('objective', 1), ('series', 1), ('always', 1), ('provide', 1), ('forum', 1), ('leading', 1), ('contributor', 1), ('area', 1), ('write', 1), ('significant', 1), ('body', 1), ('research', 1), ('involved', 1), ('operating', 1), ('procedure', 1), ('invite', 1), ('contribution', 1)]
[('computational', 2), ('drug', 2), ('discovery', 2), ('repurposing', 2), ('cancer', 2), ('therapy', 2), ('provides', 2), ('method', 1), ('knowledge', 1), ('ongoing', 1), ('research', 1), ('approach', 1), ('book', 1), ('detailed', 1)]
[('sensor', 4), ('network', 2), ('application', 2), ('smart', 1), ('communication', 1), ('technology', 1), ('intelligent', 1), ('explores', 1), ('latest', 1), ('technique', 1), ('showing', 1), ('networked', 1), ('wireless', 1), ('used', 1), ('monitor', 1), ('gather', 1), ('intelligence', 1)]
[('nan', 1)]
[('parallel', 3), ('programming', 2), ('massively', 1), ('processor', 1), ('discus', 1), ('basic', 1), ('concept', 1), ('gpu', 1), ('architecture', 1), ('various', 1), ('technique', 1), ('constructing', 1), ('program', 1), ('explored', 1), ('detail', 1), ('case', 1), ('study', 1), ('demonstrate', 1), ('development', 1), ('process', 1)]
[('digital', 3), ('forensics', 3), ('legal', 2), ('professional', 2), ('complete', 1), ('non', 1), ('technical', 1), ('guide', 1), ('student', 1), ('understand', 1), ('author', 1), ('year', 1), ('experience', 1), ('working', 1), ('attorney', 1), ('expert', 1), ('common', 1)]
[('simulation', 2), ('experiment', 2), ('professional', 2), ('networking', 2), ('network', 1), ('manual', 1), ('third', 1), ('edition', 1), ('practical', 1), ('tool', 1), ('containing', 1), ('detailed', 1), ('based', 1), ('help', 1), ('student', 1), ('learn', 1), ('key', 1), ('concept', 1), ('computer', 1), ('allows', 1)]
[('practical', 1), ('machine', 1), ('learning', 1), ('data', 1), ('analysis', 1), ('using', 1), ('python', 1), ('problem', 1), ('solver', 1), ('guide', 1), ('creating', 1), ('real', 1), ('world', 1), ('intelligent', 1), ('system', 1), ('provides', 1), ('comprehensive', 1), ('approach', 1), ('concept', 1), ('practice', 1), ('hand', 1), ('example', 1), ('sample', 1), ('code', 1), ('book', 1), ('teach', 1)]
[('health', 3), ('social', 2), ('innovation', 2), ('resilient', 1), ('leveraging', 1), ('technology', 1), ('transform', 1), ('healthcare', 1), ('covid', 1), ('recovery', 1), ('beyond', 1), ('present', 1), ('game', 1), ('changing', 1), ('disruptive', 1), ('technological', 1), ('application', 1), ('mental', 1), ('care', 1), ('around', 1)]
[('cancer', 2), ('nanocurcumin', 2), ('application', 2), ('curcumin', 1), ('based', 1), ('nanomedicines', 1), ('therapeutic', 1), ('present', 1), ('consistent', 1), ('thorough', 1), ('overview', 1), ('treatment', 1), ('brings', 1), ('together', 1), ('novel', 1), ('biological', 1), ('milieu', 1), ('help', 1)]
[('learning', 2), ('modern', 1), ('machine', 1), ('model', 1), ('based', 1), ('deep', 1), ('technique', 1), ('depend', 1), ('carefully', 1), ('curated', 1), ('cleanly', 1), ('labelled', 1), ('training', 1), ('set', 1), ('reliably', 1), ('trained', 1), ('deployed', 1), ('expensive', 1), ('labelling', 1), ('process', 1), ('involved', 1), ('acquisition', 1)]
[('player', 2), ('cancer', 1), ('epigenetics', 1), ('gun', 1), ('trigger', 1), ('targeting', 1), ('right', 1), ('via', 1), ('nanotechnology', 1), ('approach', 1), ('complete', 1), ('package', 1), ('provides', 1), ('comprehensive', 1), ('thorough', 1), ('understanding', 1), ('key', 1), ('modulate', 1), ('various', 1), ('step', 1), ('carcinogenesis', 1)]
[('cancer', 2), ('reason', 2), ('field', 1), ('therapy', 1), ('evolving', 1), ('recent', 1), ('year', 1), ('researcher', 1), ('focused', 1), ('new', 1), ('therapeutic', 1), ('modality', 1), ('malignant', 1), ('disease', 1), ('due', 1), ('several', 1), ('first', 1), ('high', 1), ('mortality', 1), ('morbidity', 1), ('around', 1), ('world', 1)]
[('recent', 2), ('pancreatic', 2), ('cancer', 2), ('therapy', 2), ('advance', 1), ('nanocarriers', 1), ('review', 1), ('thriving', 1), ('strategy', 1), ('concerning', 1), ('thoroughly', 1), ('describing', 1), ('development', 1), ('emerging', 1), ('modern', 1), ('drug', 1), ('delivery', 1), ('system', 1), ('focused', 1), ('derived', 1)]
[('targeting', 2), ('angiogenesis', 2), ('inflammation', 2), ('oxidative', 2), ('stress', 2), ('chronic', 2), ('disease', 1), ('present', 1), ('recent', 1), ('advance', 1), ('vivid', 1), ('molecular', 1), ('pathway', 1), ('contribute', 1), ('widely', 1), ('genesis', 1)]
[('medicine', 3), ('application', 2), ('artificial', 1), ('intelligence', 1), ('applied', 1), ('reference', 1), ('method', 1), ('introduces', 1), ('reader', 1), ('methodology', 1), ('ai', 1), ('ml', 1), ('algorithm', 1), ('cutting', 1), ('edge', 1), ('cancer', 1), ('precision', 1), ('critical', 1), ('care', 1)]
[('introduction', 2), ('cybersecurity', 2), ('career', 2), ('opportunity', 2), ('concise', 1), ('world', 1), ('therein', 1), ('book', 1), ('provides', 1), ('basic', 1), ('rundown', 1), ('industry', 1), ('sector', 1), ('role', 1), ('place', 1), ('search', 1), ('job', 1), ('within', 1)]
[('online', 2), ('recent', 1), ('year', 1), ('building', 1), ('corporate', 1), ('presence', 1), ('become', 1), ('nonnegotiable', 1), ('business', 1), ('consumer', 1), ('expect', 1), ('connect', 1), ('many', 1), ('way', 1), ('possible', 1), ('benefit', 1), ('company', 1), ('use', 1), ('technology', 1), ('risk', 1)]
[('security', 2), ('corporate', 1), ('today', 1), ('topic', 1), ('information', 1), ('technology', 1), ('metric', 1), ('extensively', 1), ('covered', 1), ('knowledgeable', 1), ('contribution', 1), ('significantly', 1), ('larger', 1), ('field', 1), ('global', 1), ('enterprise', 1), ('protection', 1), ('measuring', 1)]
[('future', 2), ('robotics', 2), ('artificial', 1), ('intelligence', 1), ('generation', 1), ('offer', 1), ('vision', 1), ('potential', 1), ('application', 1), ('ai', 1), ('technology', 1), ('chapter', 1), ('includes', 1), ('theory', 1), ('mathematics', 1), ('stimulate', 1), ('novel', 1), ('research', 1), ('direction', 1), ('based', 1)]
[('pediatric', 2), ('brain', 2), ('imaging', 2), ('handbook', 1), ('method', 1), ('application', 1), ('present', 1), ('state', 1), ('art', 1), ('research', 1), ('image', 1), ('acquisition', 1), ('analysis', 1), ('broad', 1), ('range', 1), ('modality', 1), ('including', 1), ('mri', 1), ('eeg', 1), ('meg', 1), ('rapidly', 1), ('developing', 1)]
[('system', 2), ('comprehensively', 1), ('revised', 1), ('second', 1), ('edition', 1), ('computational', 1), ('biology', 1), ('discus', 1), ('experimental', 1), ('theoretical', 1), ('foundation', 1), ('function', 1), ('biological', 1), ('molecular', 1), ('cellular', 1), ('organismal', 1), ('level', 1), ('temporal', 1), ('spatial', 1)]
[('deep', 2), ('learning', 2), ('sparse', 2), ('low', 2), ('rank', 2), ('model', 2), ('representation', 1), ('modeling', 1), ('bridge', 1), ('classical', 1), ('emphasize', 1), ('problem', 1), ('specific', 1), ('interpretability', 1), ('recent', 1), ('network', 1), ('enabled', 1), ('larger', 1), ('capacity', 1)]
[('source', 2), ('proliferation', 1), ('online', 1), ('access', 1), ('social', 1), ('science', 1), ('statistical', 1), ('numeric', 1), ('data', 1), ('census', 1), ('bureau', 1), ('american', 1), ('fact', 1), ('finder', 1), ('lead', 1), ('increased', 1), ('interest', 1), ('supporting', 1), ('academic', 1), ('library', 1), ('many', 1), ('large', 1)]
[('imaging', 3), ('assisted', 2), ('stenting', 2), ('technique', 2), ('computing', 1), ('visualization', 1), ('intravascular', 1), ('computer', 1), ('present', 1), ('treatment', 1), ('computed', 1), ('technological', 1), ('diagnostic', 1), ('intraoperative', 1), ('vascular', 1)]
[('computer', 2), ('creativity', 1), ('computing', 1), ('dataflow', 1), ('supercomputing', 1), ('latest', 1), ('release', 1), ('advance', 1), ('series', 1), ('published', 1), ('present', 1), ('detailed', 1), ('coverage', 1), ('innovation', 1), ('hardware', 1), ('software', 1), ('theory', 1), ('design', 1), ('application', 1)]
[('group', 2), ('crowd', 2), ('computer', 2), ('vision', 2), ('behavior', 1), ('provides', 1), ('multidisciplinary', 1), ('perspective', 1), ('solve', 1), ('problem', 1), ('analysis', 1), ('modeling', 1), ('combining', 1), ('insight', 1), ('social', 1), ('science', 1), ('technological', 1), ('idea', 1)]
[('decision', 2), ('making', 1), ('model', 1), ('perspective', 1), ('fuzzy', 1), ('logic', 1), ('machine', 1), ('learning', 1), ('present', 1), ('latest', 1), ('development', 1), ('field', 1), ('uncertain', 1), ('mathematics', 1), ('science', 1), ('book', 1), ('aim', 1), ('deliver', 1), ('systematic', 1), ('exposure', 1), ('soft', 1), ('computing', 1), ('technique', 1)]
[('synthetic', 2), ('data', 2), ('generative', 1), ('ai', 1), ('cover', 1), ('foundation', 1), ('machine', 1), ('learning', 1), ('modern', 1), ('approach', 1), ('solving', 1), ('complex', 1), ('problem', 1), ('systematic', 1), ('generation', 1), ('use', 1), ('emphasis', 1), ('scalability', 1), ('automation', 1), ('testing', 1), ('optimizing', 1)]
[('processing', 3), ('signal', 2), ('machine', 2), ('learning', 2), ('cardiovascular', 2), ('data', 2), ('driven', 1), ('technique', 1), ('feature', 1), ('recent', 1), ('advance', 1), ('coupled', 1), ('new', 1), ('based', 1), ('method', 1), ('analysis', 1), ('topic', 1), ('book', 1), ('include', 1)]
[('knowledge', 3), ('visual', 3), ('computational', 2), ('vision', 2), ('advanced', 2), ('model', 2), ('first', 1), ('footprint', 1), ('present', 1), ('novel', 1), ('framework', 1), ('combine', 1), ('structuralized', 1), ('image', 1), ('perception', 1), ('study', 1)]
[('iot', 2), ('accelerating', 1), ('digital', 1), ('transformation', 1), ('cloud', 1), ('internet', 1), ('thing', 1), ('reference', 1), ('engineer', 1), ('decision', 1), ('maker', 1), ('engage', 1), ('platform', 1), ('pilot', 1), ('project', 1), ('resource', 1), ('covered', 1), ('book', 1), ('help', 1), ('establish', 1), ('plan', 1)]
[('fractional', 2), ('year', 2), ('field', 1), ('calculus', 1), ('fc', 1), ('old', 1), ('presumably', 1), ('stemmed', 1), ('question', 1), ('order', 1), ('derivative', 1), ('raised', 1), ('communication', 1), ('hopital', 1), ('leibniz', 1), ('branch', 1), ('mathematical', 1)]
[('synthetic', 2), ('medium', 2), ('cyber', 2), ('analysis', 2), ('help', 2), ('deepfakes', 1), ('deception', 1), ('attack', 1), ('defense', 1), ('introduces', 1), ('analytical', 1), ('framework', 1), ('smaf', 1), ('describe', 1), ('threat', 1), ('security', 1), ('professional', 1), ('anticipate', 1), ('analyze', 1)]
[('artificial', 3), ('intelligence', 3), ('life', 2), ('science', 2), ('biologist', 1), ('guide', 1), ('building', 1), ('foundation', 1), ('machine', 1), ('learning', 1), ('achieving', 1), ('advancement', 1), ('provides', 1), ('overview', 1), ('basic', 1)]
[('human', 2), ('metaverse', 2), ('centered', 1), ('valuable', 1), ('resource', 1), ('understanding', 1), ('factor', 1), ('influence', 1), ('ai', 1), ('interaction', 1), ('provides', 1), ('date', 1), ('repository', 1), ('theory', 1), ('fundamental', 1), ('technique', 1), ('diverse', 1), ('application', 1)]
[('passivity', 4), ('based', 4), ('cooperative', 2), ('control', 2), ('nonlinear', 2), ('multiagent', 2), ('system', 2), ('non', 2), ('consensus', 2), ('approach', 1), ('focus', 1), ('containing', 1), ('lag', 1)]
[('energy', 4), ('harvesting', 3), ('computational', 2), ('tool', 2), ('application', 2), ('present', 1), ('latest', 1), ('method', 1), ('renewable', 1), ('system', 1), ('book', 1), ('provides', 1), ('reader', 1), ('algorithm', 1)]
[('professor', 2), ('analysis', 1), ('turbulent', 1), ('flow', 1), ('written', 1), ('prolific', 1), ('author', 1), ('field', 1), ('cfd', 1), ('aerodynamics', 1), ('supaero', 1), ('director', 1), ('dmae', 1), ('onera', 1), ('tuncer', 1), ('cebeci', 1), ('call', 1), ('academic', 1), ('industrial', 1), ('experience', 1)]
[('deep', 2), ('learning', 2), ('quantum', 2), ('probability', 1), ('provides', 1), ('reader', 1), ('first', 1), ('book', 1), ('address', 1), ('probabilistic', 1), ('method', 1), ('environment', 1), ('technological', 1), ('area', 1), ('simultaneously', 1), ('using', 1), ('common', 1), ('platform', 1), ('many', 1), ('sorted', 1), ('algebra', 1)]
[('ai', 3), ('security', 3), ('aspect', 2), ('book', 1), ('begin', 1), ('brief', 1), ('review', 1), ('history', 1), ('introduces', 1), ('fundamental', 1), ('machine', 1), ('learning', 1), ('key', 1), ('covered', 1), ('data', 1), ('modelling', 1), ('provides', 1), ('detailed', 1), ('explanation', 1)]
[('data', 2), ('learning', 2), ('computational', 1), ('intelligence', 1), ('genomics', 1), ('present', 1), ('comprehensive', 1), ('overview', 1), ('machine', 1), ('deep', 1), ('technique', 1), ('developed', 1), ('analysis', 1), ('genomic', 1), ('development', 1), ('disease', 1), ('prediction', 1), ('model', 1), ('book', 1), ('focus', 1)]
[('uncertainty', 2), ('intelligence', 2), ('decision', 2), ('making', 2), ('computational', 1), ('based', 1), ('focus', 1), ('technique', 1), ('reasoning', 1), ('used', 1), ('solve', 1), ('issue', 1), ('artificial', 1), ('ai', 1), ('cover', 1), ('wide', 1), ('range', 1), ('subject', 1), ('including', 1)]
[('computational', 2), ('intelligence', 2), ('application', 2), ('sustainable', 1), ('computing', 1), ('optimization', 1), ('trend', 1), ('focus', 1), ('developing', 1), ('evolving', 1), ('advanced', 1), ('algorithm', 1), ('analysis', 1), ('data', 1), ('involved', 1), ('agriculture', 1)]
[('real', 2), ('time', 2), ('embedded', 2), ('system', 2), ('life', 2), ('cycle', 2), ('ecosystem', 2), ('trend', 2), ('scheduling', 1), ('establishes', 1), ('highlighting', 1), ('design', 1), ('implementation', 1), ('test', 1), ('objective', 1), ('challenge', 1), ('approach', 1)]
[('human', 2), ('machine', 2), ('autonomy', 2), ('system', 2), ('trust', 2), ('user', 2), ('interdependent', 1), ('team', 1), ('path', 1), ('examines', 1), ('foundation', 1), ('metric', 1), ('application', 1), ('legal', 1), ('ramification', 1), ('public', 1), ('ai', 1)]
[('potential', 2), ('first', 1), ('successful', 1), ('international', 1), ('cognitive', 1), ('technology', 1), ('ct', 1), ('conference', 1), ('hong', 1), ('kong', 1), ('august', 1), ('growing', 1), ('concern', 1), ('dehumanising', 1), ('machine', 1), ('machining', 1), ('human', 1), ('mind', 1), ('pervaded', 1)]
[('computational', 2), ('biology', 1), ('rapidly', 1), ('expanding', 1), ('field', 1), ('number', 1), ('variety', 1), ('method', 1), ('used', 1), ('dna', 1), ('protein', 1), ('sequence', 1), ('analysis', 1), ('growing', 1), ('every', 1), ('day', 1), ('algorithm', 1), ('extremely', 1), ('valuable', 1), ('biotechnology', 1), ('company', 1)]
[('internetworking', 1), ('protocol', 1), ('ip', 1), ('address', 1), ('unique', 1), ('numeric', 1), ('identifier', 1), ('required', 1), ('every', 1), ('device', 1), ('connected', 1), ('internet', 1), ('allow', 1), ('precise', 1), ('routing', 1), ('data', 1), ('across', 1), ('complex', 1), ('worldwide', 1), ('internetworks', 1), ('rule', 1), ('format', 1)]
[('fundamental', 2), ('digital', 1), ('signal', 1), ('processing', 1), ('application', 1), ('deep', 1), ('learning', 1), ('fourth', 1), ('edition', 1), ('introduces', 1), ('student', 1), ('principle', 1), ('dsp', 1), ('providing', 1), ('working', 1), ('knowledge', 1), ('take', 1), ('engineering', 1), ('career', 1)]
[('decision', 2), ('support', 2), ('system', 2), ('sustainable', 1), ('computing', 1), ('investigates', 1), ('recent', 1), ('technological', 1), ('advance', 1), ('model', 1), ('designed', 1), ('solve', 1), ('real', 1), ('world', 1), ('application', 1), ('book', 1), ('provides', 1), ('broad', 1), ('overview', 1), ('digital', 1), ('technology', 1), ('transformation', 1)]
[('chinese', 2), ('number', 1), ('indicator', 1), ('point', 1), ('rapid', 1), ('extraordinary', 1), ('shift', 1), ('high', 1), ('technology', 1), ('landscape', 1), ('book', 1), ('place', 1), ('special', 1), ('emphasis', 1), ('ulta', 1), ('modern', 1), ('crucial', 1), ('ict', 1), ('industry', 1), ('player', 1), ('posse', 1), ('competitive', 1), ('advantage', 1)]
[('practice', 3), ('telehealth', 2), ('best', 2), ('implementation', 2), ('emerging', 1), ('rapidly', 1), ('changing', 1), ('field', 1), ('introduction', 1), ('basic', 1), ('method', 1), ('book', 1), ('guide', 1), ('reader', 1), ('start', 1), ('finish', 1), ('workflow', 1)]
[('machine', 2), ('learning', 2), ('building', 2), ('transportation', 2), ('energy', 2), ('system', 2), ('advance', 1), ('digitalization', 1), ('integrated', 1), ('examines', 1), ('combined', 1), ('impact', 1), ('demand', 1), ('use', 1), ('strong', 1), ('focus', 1), ('ai', 1)]
[('parallel', 3), ('volume', 1), ('give', 1), ('overview', 1), ('state', 1), ('art', 1), ('respect', 1), ('development', 1), ('type', 1), ('computer', 1), ('application', 1), ('wide', 1), ('range', 1), ('problem', 1), ('area', 1), ('international', 1), ('conference', 1), ('computing', 1), ('parco', 1)]
[('recent', 2), ('second', 1), ('sino', 1), ('symposium', 1), ('workshop', 1), ('advancement', 1), ('computational', 1), ('mechanic', 1), ('structural', 1), ('engineering', 1), ('held', 1), ('dalian', 1), ('china', 1), ('objective', 1), ('share', 1), ('insight', 1), ('experience', 1), ('gained', 1)]
[('web', 3), ('asp', 2), ('net', 2), ('development', 2), ('developer', 1), ('guide', 1), ('provides', 1), ('information', 1), ('make', 1), ('use', 1), ('microsoft', 1), ('newest', 1), ('platform', 1), ('revolutionary', 1), ('programming', 1), ('framework', 1), ('enables', 1), ('rapid', 1), ('powerful', 1), ('application', 1), ('service', 1), ('part', 1)]
[('reading', 1), ('multimedia', 1), ('computing', 1), ('networking', 1), ('capture', 1), ('broad', 1), ('area', 1), ('research', 1), ('development', 1), ('burgeoning', 1), ('field', 1), ('distills', 1), ('key', 1), ('finding', 1), ('make', 1), ('accessible', 1), ('professional', 1), ('researcher', 1), ('student', 1), ('alike', 1), ('first', 1)]
[('graphic', 4), ('gem', 4), ('academic', 2), ('press', 2), ('ii', 2), ('sequel', 1), ('practical', 1), ('collection', 1), ('computer', 1), ('programming', 1), ('tool', 1), ('technique', 1), ('contains', 1), ('larger', 1), ('percentage', 1), ('related', 1)]
[('network', 2), ('book', 1), ('proposes', 1), ('usage', 1), ('based', 1), ('charging', 1), ('scheme', 1), ('essential', 1), ('generate', 1), ('incentive', 1), ('necessary', 1), ('efficient', 1), ('operation', 1), ('multiservice', 1), ('rapid', 1), ('development', 1), ('technology', 1), ('enabling', 1), ('sophisticated', 1), ('new', 1), ('service', 1)]
[('error', 3), ('control', 3), ('coding', 3), ('technique', 2), ('essential', 1), ('present', 1), ('emphasis', 1), ('recent', 1), ('application', 1), ('written', 1), ('engineer', 1), ('use', 1), ('build', 1), ('equipment', 1), ('many', 1), ('example', 1), ('practical', 1)]
[('artificial', 3), ('intelligence', 3), ('software', 3), ('engineering', 3), ('reading', 1), ('cover', 1), ('main', 1), ('technique', 1), ('application', 1), ('ultimate', 1), ('goal', 1), ('applied', 1), ('automatic', 1)]
[('introduction', 2), ('computer', 2), ('book', 2), ('information', 1), ('processing', 1), ('provides', 1), ('informal', 1), ('field', 1), ('introduces', 1), ('hardware', 1), ('actual', 1), ('computing', 1), ('equipment', 1), ('organized', 1), ('three', 1), ('part', 1), ('encompassing', 1), ('chapter', 1)]
[('optimization', 3), ('pentium', 2), ('tool', 2), ('processor', 1), ('cover', 1), ('advanced', 1), ('program', 1), ('technique', 1), ('intel', 1), ('family', 1), ('chip', 1), ('including', 1), ('book', 1), ('start', 1), ('providing', 1), ('review', 1), ('history', 1), ('text', 1), ('discus', 1)]
[('computer', 2), ('new', 1), ('arm', 1), ('edition', 1), ('organization', 1), ('design', 1), ('feature', 1), ('subset', 1), ('armv', 1), ('architecture', 1), ('used', 1), ('present', 1), ('fundamental', 1), ('hardware', 1), ('technology', 1), ('assembly', 1), ('language', 1), ('arithmetic', 1), ('pipelining', 1), ('memory', 1), ('hierarchy', 1)]
[('artificial', 2), ('intelligence', 2), ('thing', 2), ('future', 2), ('synergy', 1), ('ai', 1), ('internet', 1), ('iot', 1), ('shaping', 1), ('technology', 1), ('opening', 1), ('world', 1), ('unprecedented', 1), ('possibility', 1), ('aiot', 1), ('negetiveemoji', 1), ('current', 1), ('trend', 1), ('brings', 1)]
[('cognitive', 2), ('assistant', 2), ('supported', 1), ('human', 1), ('robot', 1), ('collaboration', 1), ('cover', 1), ('design', 1), ('development', 1), ('smart', 1), ('factory', 1), ('era', 1), ('application', 1), ('domain', 1), ('challenge', 1), ('current', 1), ('state', 1), ('art', 1), ('assistance', 1), ('system', 1), ('collaborative', 1)]
[('se', 2), ('community', 2), ('system', 1), ('engineering', 1), ('using', 1), ('model', 1), ('mbse', 1), ('currently', 1), ('vogue', 1), ('practitioner', 1), ('whether', 1), ('analyst', 1), ('architect', 1), ('developer', 1), ('tester', 1), ('incose', 1), ('contributed', 1), ('greatly', 1), ('definition', 1), ('language', 1)]
[('biomedical', 2), ('image', 2), ('synthesis', 2), ('simulation', 2), ('application', 2), ('method', 1), ('present', 1), ('basic', 1), ('concept', 1), ('based', 1), ('used', 1), ('medical', 1), ('imaging', 1), ('first', 1), ('part', 1), ('book', 1), ('introduces', 1), ('describes', 1)]
[('glaucoma', 2), ('using', 2), ('machine', 2), ('learning', 2), ('computer', 1), ('aided', 1), ('diagnosis', 1), ('morphological', 1), ('filter', 1), ('provides', 1), ('focused', 1), ('research', 1), ('based', 1), ('case', 1), ('study', 1), ('cad', 1), ('advanced', 1), ('image', 1), ('processing', 1), ('algorithm', 1), ('book', 1), ('discus', 1), ('relevant', 1)]
[('method', 4), ('numerical', 2), ('first', 1), ('graduate', 1), ('level', 1), ('textbook', 1), ('focus', 1), ('fundamental', 1), ('aspect', 1), ('stochastic', 1), ('computation', 1), ('book', 1), ('describes', 1), ('class', 1), ('based', 1), ('generalized', 1), ('polynomial', 1), ('chaos', 1), ('gpc', 1), ('fast', 1), ('efficient', 1), ('accurate', 1), ('extension', 1), ('classical', 1), ('spectral', 1), ('high', 1), ('dimensional', 1), ('random', 1), ('space', 1)]
[('thought', 2), ('action', 2), ('online', 2), ('suspenseful', 1), ('story', 1), ('danger', 1), ('unknowingly', 1), ('revealing', 1), ('intimate', 1), ('happens', 1), ('naive', 1), ('intern', 1), ('granted', 1), ('unfettered', 1), ('access', 1), ('private', 1), ('stephen', 1), ('thorpe', 1), ('land', 1), ('coveted', 1), ('internship', 1), ('ubatoo', 1), ('internet', 1), ('empire', 1), ('provides', 1), ('user', 1), ('popular', 1), ('service', 1)]
[('rating', 3), ('ranking', 2), ('mathematics', 1), ('behind', 1), ('today', 1), ('widely', 1), ('used', 1), ('method', 1), ('website', 1), ('google', 1), ('spell', 1), ('difference', 1), ('success', 1), ('failure', 1), ('new', 1), ('business', 1), ('ncaa', 1), ('football', 1), ('determine', 1), ('school', 1), ('play', 1), ('big', 1), ('money', 1), ('postseason', 1), ('bowl', 1), ('game', 1), ('product', 1), ('influence', 1), ('everything', 1), ('clothes', 1), ('wear', 1)]
[('zodiac', 2), ('killer', 2), ('watch', 1), ('craig', 1), ('bauer', 1), ('discus', 1), ('cipher', 1), ('history', 1), ('new', 1), ('miniseries', 1), ('hunt', 1), ('found', 1), ('dead', 1), ('cyanide', 1), ('poisoning', 1), ('near', 1), ('philadelphia', 1), ('airport', 1), ('picture', 1), ('nazi', 1), ('aircraft', 1), ('wallet', 1), ('taped', 1), ('abdomen', 1), ('enciphered', 1), ('message', 1), ('book', 1), ('dealer', 1), ('named', 1), ('wilfrid', 1), ('voynich', 1), ('came', 1)]
[('billion', 2), ('web', 2), ('genome', 2), ('google', 1), ('management', 1), ('page', 1), ('common', 1), ('analysis', 1), ('nucleotide', 1), ('apply', 1), ('method', 1), ('coordinate', 1), ('many', 1), ('processor', 1), ('accomplish', 1), ('single', 1), ('task', 1), ('mining', 1), ('world', 1), ('wide', 1), ('modeling', 1), ('financial', 1), ('market', 1), ('global', 1), ('weather', 1), ('pattern', 1), ('parallel', 1), ('computing', 1), ('enables', 1)]
[('dynamic', 2), ('programming', 2), ('theory', 2), ('classic', 1), ('book', 1), ('introduction', 1), ('presented', 1), ('scientist', 1), ('coined', 1), ('term', 1), ('developed', 1), ('early', 1), ('stage', 1), ('richard', 1), ('bellman', 1), ('introduces', 1), ('groundbreaking', 1), ('furnishes', 1), ('new', 1), ('versatile', 1), ('mathematical', 1), ('tool', 1), ('treatment', 1), ('many', 1), ('complex', 1), ('problem', 1), ('within', 1)]
[('alan', 2), ('turing', 2), ('princeton', 2), ('computer', 2), ('facsimile', 1), ('edition', 1), ('influential', 1), ('thesis', 1), ('inventing', 1), ('concept', 1), ('universal', 1), ('breaking', 1), ('german', 1), ('enigma', 1), ('code', 1), ('world', 1), ('war', 1), ('ii', 1), ('british', 1), ('founder', 1), ('science', 1), ('artificial', 1), ('intelligence', 1), ('came', 1), ('university', 1), ('study', 1), ('mathematical', 1), ('logic', 1)]
[('work', 2), ('information', 2), ('drawing', 1), ('rich', 1), ('body', 1), ('empirical', 1), ('text', 1), ('explores', 1), ('core', 1), ('theme', 1), ('society', 1), ('debate', 1), ('transformation', 1), ('culture', 1), ('revolution', 1), ('changing', 1), ('pattern', 1), ('reconfiguration', 1), ('time', 1), ('space', 1)]
[('file', 2), ('sharing', 2), ('issue', 2), ('peer', 2), ('book', 1), ('provides', 1), ('critical', 1), ('perspective', 1), ('internet', 1), ('exploring', 1), ('related', 1), ('downloading', 1), ('network', 1), ('piracy', 1), ('least', 1), ('policy', 1), ('regarding', 1), ('practice', 1)]
[('drm', 2), ('developed', 2), ('distribution', 2), ('digital', 1), ('right', 1), ('management', 1), ('type', 1), ('server', 1), ('software', 1), ('enable', 1), ('secure', 1), ('perhaps', 1), ('importantly', 1), ('disable', 1), ('illegal', 1), ('paid', 1), ('content', 1), ('web', 1), ('technology', 1), ('mean', 1), ('protection', 1), ('online', 1), ('piracy', 1), ('commercially', 1), ('marketed', 1), ('material', 1), ('proliferated', 1)]
[('transportation', 2), ('intelligent', 1), ('system', 1), ('program', 1), ('cooperative', 1), ('effort', 1), ('government', 1), ('private', 1), ('industry', 1), ('academia', 1), ('apply', 1), ('advanced', 1), ('technology', 1), ('task', 1), ('resolving', 1), ('problem', 1), ('surface', 1), ('objective', 1), ('improve', 1), ('travel', 1), ('efficiency', 1), ('mobility', 1), ('enhance', 1), ('safety', 1), ('conserve', 1), ('energy', 1), ('provide', 1), ('economic', 1), ('benefit', 1), ('protect', 1)]
[('digital', 2), ('copyright', 2), ('law', 2), ('network', 1), ('power', 1), ('policy', 1), ('considers', 1), ('challenge', 1), ('creating', 1), ('harmonised', 1), ('international', 1), ('market', 1), ('service', 1), ('pursuing', 1), ('interdisciplinary', 1), ('perspective', 1), ('question', 1), ('remains', 1), ('restrictive', 1), ('book', 1), ('address', 1), ('role', 1), ('industry', 1), ('representative', 1), ('collecting', 1), ('society', 1)]
[('political', 2), ('volume', 1), ('examines', 1), ('impact', 1), ('new', 1), ('digital', 1), ('technology', 1), ('organizing', 1), ('protest', 1), ('across', 1), ('spectrum', 1), ('arab', 1), ('spring', 1), ('artist', 1), ('far', 1), ('right', 1), ('group', 1)]
[('distributed', 2), ('model', 2), ('predictive', 2), ('control', 2), ('industrial', 1), ('application', 1), ('provides', 1), ('overview', 1), ('latest', 1), ('advance', 1), ('controller', 1), ('special', 1), ('emphasis', 1), ('data', 1), ('iterative', 1), ('learning', 1), ('ilc', 1), ('emerging', 1)]
[('cloud', 2), ('computing', 2), ('field', 2), ('foundation', 1), ('provides', 1), ('reader', 1), ('guidebook', 1), ('navigating', 1), ('including', 1), ('guiding', 1), ('principle', 1), ('key', 1), ('concept', 1), ('history', 1), ('terminology', 1), ('state', 1), ('art', 1), ('research', 1), ('roadmap', 1)]
[('biomedical', 2), ('healthcare', 2), ('challenge', 2), ('robot', 1), ('device', 1), ('opportunity', 1), ('future', 1), ('application', 1), ('explores', 1), ('recent', 1), ('advance', 1), ('involved', 1), ('using', 1), ('technique', 1), ('engineering', 1), ('offering', 1), ('insight', 1), ('guidance', 1)]
[('computer', 2), ('trek', 2), ('depiction', 1), ('various', 1), ('series', 1), ('ranged', 1), ('lame', 1), ('breathtakingly', 1), ('imaginative', 1), ('book', 1), ('cover', 1), ('gamut', 1), ('make', 1), ('lucid', 1), ('entertaining', 1), ('comparison', 1), ('fictional', 1), ('exist', 1), ('likely', 1), ('inhabit', 1), ('future', 1), ('throughout', 1), ('history', 1), ('accurate', 1), ('reflection', 1)]
[('machine', 2), ('human', 2), ('day', 1), ('come', 1), ('intelligent', 1), ('make', 1), ('computation', 1), ('think', 1), ('experience', 1), ('emotion', 1), ('distinguish', 1), ('introduction', 1), ('artificial', 1), ('intelligence', 1), ('potentially', 1), ('profound', 1), ('social', 1), ('moral', 1), ('ethical', 1), ('implication', 1), ('designed', 1), ('reader', 1), ('little', 1)]
[('architecture', 3), ('internet', 2), ('new', 1), ('way', 1), ('understand', 1), ('today', 1), ('based', 1), ('innovative', 1), ('general', 1), ('model', 1), ('network', 1), ('rigorous', 1), ('realistic', 1), ('modular', 1), ('book', 1), ('meet', 1), ('long', 1), ('standing', 1), ('need', 1), ('explanation', 1), ('evolved', 1), ('creation', 1), ('support', 1), ('broader', 1), ('range', 1), ('world', 1)]
[('ai', 4), ('technology', 2), ('need', 2), ('humanist', 1), ('manifesto', 1), ('age', 1), ('artificial', 1), ('intelligence', 1), ('transformative', 1), ('time', 1), ('power', 1), ('grows', 1), ('figure', 1), ('really', 1), ('argues', 1), ('critical', 1), ('society', 1), ('take', 1), ('lead', 1), ('answering', 1), ('urgent', 1), ('question', 1), ('ensuring', 1)]
[('study', 3), ('annals', 2), ('mathematics', 2), ('series', 2), ('classic', 1), ('contribution', 1), ('automaton', 1), ('acclaimed', 1), ('princeton', 1), ('university', 1), ('press', 1), ('proud', 1), ('published', 1), ('oldest', 1), ('respected', 1), ('science', 1), ('publishing', 1), ('included', 1), ('many', 1), ('important', 1), ('influential', 1), ('mathematical', 1), ('work', 1)]
[('effect', 2), ('step', 2), ('trish', 1), ('chris', 1), ('meyer', 1), ('share', 1), ('fifteen', 1), ('year', 1), ('real', 1), ('world', 1), ('film', 1), ('video', 1), ('production', 1), ('experience', 1), ('inside', 1), ('critically', 1), ('acclaimed', 1), ('creating', 1), ('motion', 1), ('graphic', 1), ('review', 1), ('feature', 1), ('learn', 1), ('program', 1), ('think', 1), ('realize', 1), ('vision', 1), ('quickly', 1), ('efficiently', 1)]
[('medium', 4), ('production', 2), ('basic', 2), ('making', 1), ('take', 1), ('process', 1), ('deconstructs', 1), ('component', 1), ('student', 1), ('learn', 1), ('concept', 1), ('frame', 1), ('sound', 1), ('light', 1), ('time', 1), ('motion', 1), ('sequencing', 1), ('etc', 1), ('able', 1), ('apply', 1), ('choose', 1), ('become', 1), ('grounded', 1), ('digital', 1), ('work', 1), ('environment', 1)]
[('creative', 3), ('learn', 1), ('integrate', 1), ('new', 1), ('version', 1), ('feature', 1), ('design', 1), ('program', 1), ('within', 1), ('suite', 1), ('definitive', 1), ('guide', 1), ('improve', 1), ('productively', 1), ('achieving', 1), ('professional', 1), ('result', 1), ('faster', 1), ('collaboratively', 1), ('simplify', 1), ('production', 1), ('task', 1), ('move', 1), ('element', 1), ('freely', 1), ('application', 1)]
[('game', 5), ('book', 3), ('next', 2), ('texture', 2), ('latest', 2), ('photoshop', 2), ('finally', 1), ('eagerly', 1), ('awaited', 1), ('edition', 1), ('luke', 1), ('ahearn', 1), ('cornerstone', 1), ('art', 1), ('way', 1), ('refreshed', 1), ('per', 1), ('rev', 1), ('industry', 1), ('trend', 1), ('development', 1), ('allows', 1), ('gen', 1), ('artist', 1), ('learn', 1), ('create', 1), ('everything', 1), ('brick', 1)]
[('demonstrating', 1), ('efficient', 1), ('effective', 1), ('way', 1), ('using', 1), ('premiere', 1), ('book', 1), ('go', 1), ('far', 1), ('beyond', 1), ('basic', 1), ('simply', 1), ('operating', 1), ('software', 1), ('reader', 1), ('develop', 1), ('working', 1), ('knowledge', 1), ('application', 1), ('lesson', 1), ('tutorial', 1), ('cover', 1), ('every', 1), ('essential', 1), ('method', 1), ('technique', 1), ('including', 1), ('importing', 1), ('exporting', 1), ('effect', 1), ('transition', 1), ('system', 1), ('requirement', 1)]
[('compression', 3), ('digital', 3), ('video', 3), ('essential', 1), ('reference', 1), ('encoding', 1), ('audio', 1), ('web', 1), ('cdrom', 1), ('dvd', 1), ('medium', 1), ('professional', 1), ('achieve', 1), ('better', 1), ('faster', 1), ('result', 1), ('learning', 1), ('everything', 1), ('happens', 1), ('shooting', 1), ('editing', 1), ('capturing', 1), ('getting', 1), ('file', 1), ('server', 1)]
[('motion', 3), ('graphic', 3), ('effect', 3), ('creating', 2), ('step', 2), ('reveals', 1), ('expert', 1), ('technique', 1), ('producing', 1), ('compelling', 1), ('adobe', 1), ('software', 1), ('application', 1), ('used', 1), ('making', 1), ('ranging', 1), ('animating', 1), ('digital', 1), ('image', 1), ('film', 1), ('style', 1), ('title', 1), ('sequence', 1), ('sophisticated', 1), ('special', 1), ('network', 1), ('logo', 1), ('tutorial', 1)]
[('audio', 3), ('first', 1), ('recording', 1), ('final', 1), ('mix', 1), ('editor', 1), ('find', 1), ('book', 1), ('invaluable', 1), ('guide', 1), ('producing', 1), ('best', 1), ('sounding', 1), ('track', 1), ('besides', 1), ('covering', 1), ('fundamental', 1), ('installation', 1), ('optimization', 1), ('basic', 1), ('concept', 1), ('major', 1), ('feature', 1), ('application', 1), ('using', 1), ('audition', 1), ('present', 1), ('specific', 1), ('function', 1), ('screen', 1), ('shot', 1)]
[('effect', 3), ('animating', 2), ('image', 2), ('motion', 1), ('graphic', 1), ('digital', 1), ('create', 1), ('new', 1), ('look', 1), ('sophisticated', 1), ('special', 1), ('network', 1), ('logo', 1), ('adobe', 1), ('dual', 1), ('platform', 1), ('program', 1), ('used', 1), ('major', 1), ('production', 1), ('department', 1), ('art', 1), ('house', 1), ('background', 1), ('creating', 1), ('film', 1), ('style', 1), ('title', 1), ('sequence', 1), ('part', 1), ('thedv', 1), ('expert', 1)]
[('landscape', 2), ('always', 2), ('compact', 2), ('perhaps', 1), ('enduring', 1), ('photographic', 1), ('genre', 1), ('travel', 1), ('encountering', 1), ('new', 1), ('exciting', 1), ('scene', 1), ('love', 1), ('capture', 1), ('photographer', 1), ('field', 1), ('guide', 1), ('provides', 1), ('complete', 1), ('pro', 1), ('reference', 1), ('book', 1), ('carried', 1), ('even', 1), ('camera', 1), ('bag', 1), ('hand', 1), ('extensive', 1), ('experience', 1)]
[('nbsp', 2), ('short', 1), ('ebook', 1), ('see', 1), ('take', 1), ('knowledge', 1), ('html', 1), ('mobile', 1), ('device', 1), ('convert', 1), ('optimized', 1), ('web', 1), ('site', 1), ('native', 1), ('application', 1), ('run', 1), ('android', 1), ('iphones', 1), ('blackberry', 1), ('phonegap', 1), ('integrates', 1), ('tightly', 1), ('development', 1), ('environment', 1), ('working', 1), ('benefit', 1), ('bring', 1), ('extend', 1)]
[('support', 3), ('tablet', 3), ('nbsp', 3), ('clear', 2), ('crystal', 1), ('essential', 1), ('web', 1), ('site', 1), ('design', 1), ('le', 1), ('approach', 1), ('take', 1), ('framework', 1), ('sencha', 1), ('touch', 1), ('jquery', 1), ('mobile', 1), ('maturing', 1), ('add', 1), ('find', 1), ('short', 1), ('ebook', 1), ('provide', 1), ('forward', 1), ('thinking', 1), ('solution', 1)]
[('earliest', 1), ('day', 1), ('art', 1), ('photographer', 1), ('made', 1), ('earth', 1), ('element', 1), ('rewarding', 1), ('subject', 1), ('ansel', 1), ('adam', 1), ('contrasted', 1), ('cloud', 1), ('rock', 1), ('epochal', 1), ('image', 1), ('america', 1), ('wild', 1), ('space', 1), ('muybridge', 1), ('sought', 1), ('volcano', 1), ('guatemala', 1), ('today', 1), ('shot', 1), ('sunset', 1), ('ocean', 1), ('spectacular', 1), ('cloudscapes', 1), ('come', 1), ('dangerously', 1), ('close', 1)]
[('knowledge', 3), ('international', 2), ('information', 2), ('organization', 1), ('classification', 1), ('retrieval', 1), ('examines', 1), ('current', 1), ('effort', 1), ('deal', 1), ('increasing', 1), ('globalization', 1), ('array', 1), ('author', 1), ('take', 1), ('theoretical', 1), ('foundation', 1), ('conceptual', 1), ('element', 1), ('behind', 1), ('management', 1), ('addressing', 1), ('area', 1)]
[('tutorial', 2), ('step', 2), ('creating', 2), ('sequence', 2), ('book', 1), ('feature', 1), ('genre', 1), ('based', 1), ('section', 1), ('instruction', 1), ('effective', 1), ('horror', 1), ('comedy', 1), ('drama', 1), ('suspense', 1), ('titling', 1), ('popular', 1), ('title', 1), ('blockbuster', 1), ('movie', 1), ('included', 1), ('se', 1), ('en', 1), ('soprano', 1), ('matrix', 1)]
[('surveillance', 2), ('life', 2), ('high', 1), ('profile', 1), ('security', 1), ('context', 1), ('increasingly', 1), ('central', 1), ('organizational', 1), ('personal', 1), ('information', 1), ('valued', 1), ('commercially', 1), ('policing', 1), ('international', 1), ('comparison', 1), ('date', 1), ('expert', 1), ('analysis', 1), ('handbook', 1), ('show', 1), ('operates', 1), ('today', 1), ('touching', 1), ('everyday', 1), ('unprecedented', 1)]
[('payment', 6), ('system', 5), ('based', 5), ('cost', 2), ('charge', 2), ('fourth', 1), ('book', 1), ('healthcare', 1), ('series', 1), ('contractual', 1), ('compare', 1), ('approach', 1), ('contractually', 1), ('process', 1), ('fee', 1), ('schedule', 1), ('prospective', 1)]
[('experimentation', 2), ('european', 2), ('user', 1), ('guide', 1), ('ecohydraulic', 1), ('modelling', 1), ('compiled', 1), ('interdisciplinary', 1), ('team', 1), ('expert', 1), ('ecologist', 1), ('geomorphologists', 1), ('sedimentologists', 1), ('hydraulicists', 1), ('engineer', 1), ('involved', 1), ('hydralab', 1), ('iv', 1), ('integrated', 1), ('infrastructure', 1), ('initiative', 1), ('hydraulic', 1), ('form', 1), ('part', 1), ('community', 1)]
[('issue', 2), ('system', 2), ('written', 1), ('simple', 1), ('concise', 1), ('style', 1), ('enhanced', 1), ('discussion', 1), ('question', 1), ('list', 1), ('key', 1), ('term', 1), ('chapter', 1), ('volume', 1), ('examines', 1), ('predominant', 1), ('related', 1), ('administering', 1), ('offender', 1), ('united', 1), ('state', 1), ('begin', 1), ('overview', 1), ('historical', 1), ('review', 1), ('focus', 1), ('select', 1), ('including', 1)]
[('interview', 2), ('suspect', 2), ('witness', 2), ('police', 1), ('provide', 1), ('significant', 1), ('evidence', 1), ('criminal', 1), ('investigation', 1), ('interaction', 1), ('process', 1), ('complicated', 1), ('speak', 1), ('language', 1), ('interviewer', 1), ('book', 1), ('provides', 1), ('solution', 1), ('range', 1), ('challenge', 1), ('found', 1), ('today', 1), ('multilingual', 1)]
[('mhealth', 3), ('technology', 2), ('care', 2), ('connecting', 1), ('million', 1), ('patient', 1), ('caregiver', 1), ('never', 1), ('mobile', 1), ('health', 1), ('changing', 1), ('healthcare', 1), ('good', 1), ('book', 1), ('provides', 1), ('detailed', 1), ('description', 1), ('latest', 1), ('outline', 1), ('role', 1), ('self', 1), ('remote', 1), ('describes', 1), ('difference', 1), ('telemedicine', 1), ('telehealth', 1)]
[('computer', 3), ('human', 3), ('written', 1), ('panel', 1), ('expert', 1), ('edited', 1), ('collection', 1), ('explores', 1), ('wide', 1), ('range', 1), ('issue', 1), ('pertaining', 1), ('evoke', 1), ('social', 1), ('expectation', 1), ('book', 1), ('illustrates', 1), ('socially', 1), ('acceptable', 1), ('convention', 1), ('strongly', 1), ('impact', 1), ('effectiveness', 1), ('interaction', 1), ('consider', 1), ('norm', 1), ('design', 1), ('interface', 1)]
[('intelligence', 2), ('internet', 2), ('snowden', 1), ('leak', 1), ('recent', 1), ('navy', 1), ('yard', 1), ('shooting', 1), ('cast', 1), ('bright', 1), ('light', 1), ('employer', 1), ('background', 1), ('company', 1), ('vet', 1), ('employee', 1), ('edition', 1), ('includes', 1), ('new', 1), ('information', 1), ('providing', 1), ('latest', 1), ('tactic', 1), ('guideline', 1), ('proper', 1), ('use', 1), ('vetting', 1), ('investigation', 1), ('open', 1), ('source', 1)]
[('police', 2), ('academic', 2), ('closer', 2), ('collection', 1), ('chapter', 1), ('authored', 1), ('internationally', 1), ('known', 1), ('leader', 1), ('researcher', 1), ('professional', 1), ('book', 1), ('focus', 1), ('fact', 1), ('world', 1), ('practice', 1), ('research', 1), ('moving', 1), ('using', 1), ('depth', 1), ('interview', 1), ('case', 1), ('study', 1), ('demonstrating', 1), ('fruitful', 1), ('collaboration', 1), ('explores', 1), ('method', 1)]
[('transportation', 2), ('highlighting', 1), ('aspect', 1), ('security', 1), ('comprehensive', 1), ('text', 1), ('present', 1), ('strategic', 1), ('practical', 1), ('operational', 1), ('application', 1), ('physical', 1), ('procedural', 1), ('psychological', 1), ('safeguard', 1), ('required', 1), ('keep', 1), ('mode', 1), ('running', 1), ('topic', 1), ('include', 1), ('system', 1), ('layout', 1), ('core', 1), ('performance', 1), ('issue', 1), ('risk', 1), ('assessment', 1), ('predicting', 1)]
[('counterterrorism', 2), ('threat', 2), ('reassessing', 1), ('policy', 1), ('response', 1), ('promotes', 1), ('nuanced', 1), ('understanding', 1), ('effectiveness', 1), ('current', 1), ('practice', 1), ('need', 1), ('reform', 1), ('challenge', 1), ('government', 1), ('medium', 1), ('academic', 1), ('account', 1), ('exaggerate', 1), ('terrorist', 1), ('particularly', 1), ('comparison', 1), ('organized', 1), ('crime', 1), ('author', 1)]
[('operating', 2), ('mobile', 2), ('step', 2), ('manual', 1), ('hottest', 1), ('system', 1), ('complete', 1), ('idiot', 1), ('guide', 1), ('android', 1), ('app', 1), ('development', 1), ('get', 1), ('novice', 1), ('developer', 1), ('running', 1), ('quickly', 1), ('creating', 1), ('application', 1), ('instruction', 1)]
[('printing', 2), ('nothing', 1), ('short', 1), ('revolutionary', 1), ('technology', 1), ('enables', 1), ('home', 1), ('inventor', 1), ('artist', 1), ('design', 1), ('create', 1), ('print', 1), ('part', 1), ('artwork', 1), ('whatever', 1), ('imagined', 1), ('idiot', 1), ('guide', 1)]
[('apple', 3), ('watch', 3), ('combining', 1), ('depth', 1), ('information', 1), ('easy', 1), ('understand', 1), ('full', 1), ('color', 1), ('instruction', 1), ('idiot', 1), ('guide', 1), ('integral', 1), ('user', 1), ('experience', 1), ('iphone', 1), ('used', 1), ('conjunction', 1), ('helpful', 1)]
[('computer', 2), ('pc', 2), ('dirty', 1), ('basic', 1), ('newbie', 1), ('blank', 1), ('slate', 1), ('come', 1), ('know', 1), ('guide', 1), ('teach', 1), ('reader', 1), ('started', 1), ('including', 1), ('easy', 1), ('instruction', 1), ('starting', 1), ('setting', 1), ('organizing', 1)]
[('provides', 1), ('practical', 1), ('overview', 1), ('common', 1), ('database', 1), ('management', 1), ('task', 1), ('need', 1), ('manage', 1), ('data', 1)]
[('computer', 2), ('place', 2), ('reader', 2), ('rather', 2), ('fifth', 1), ('edition', 1), ('complete', 1), ('idiot', 1), ('guide', 1), ('basic', 1), ('charge', 1), ('way', 1), ('round', 1), ('focus', 1), ('software', 1), ('troubleshooting', 1), ('hardware', 1), ('techno', 1), ('babble', 1), ('want', 1)]
[('raspberry', 2), ('pi', 2), ('simple', 2), ('computer', 2), ('input', 2), ('inexpensive', 1), ('size', 1), ('credit', 1), ('card', 1), ('first', 1), ('glance', 1), ('look', 1), ('circuit', 1), ('board', 1), ('output', 1), ('actually', 1), ('multiple', 1)]
[('blog', 3), ('wordpress', 2), ('guide', 2), ('step', 2), ('learn', 1), ('create', 1), ('helpful', 1), ('complete', 1), ('idiot', 1), ('mini', 1), ('creating', 1), ('give', 1), ('user', 1), ('friendly', 1), ('direction', 1), ('building', 1), ('successful', 1), ('topic', 1), ('covered', 1)]
[('creating', 2), ('connected', 1), ('complete', 1), ('idiot', 1), ('guide', 1), ('social', 1), ('network', 1), ('take', 1), ('reader', 1), ('technical', 1), ('aspect', 1), ('successful', 1), ('site', 1), ('address', 1), ('responsibility', 1), ('involved', 1), ('running', 1), ('cover', 1), ('build', 1), ('maintain', 1)]
[('theory', 4), ('social', 3), ('change', 2), ('book', 1), ('explores', 1), ('robot', 1), ('synthetic', 1), ('agent', 1), ('system', 1), ('intersubjective', 1), ('relationship', 1), ('employ', 1), ('resource', 1), ('continental', 1), ('philosophy', 1), ('actor', 1), ('network', 1), ('psychoanalysis', 1), ('systemic', 1), ('constructivist', 1), ('cognitive', 1), ('develop', 1), ('socio', 1), ('technical', 1)]
[('teacher', 3), ('support', 2), ('casebook', 1), ('intended', 1), ('professional', 1), ('working', 1), ('variety', 1), ('context', 1), ('use', 1), ('classroom', 1), ('based', 1), ('assessment', 1), ('effectively', 1), ('learning', 1), ('teaching', 1), ('change', 1), ('enhance', 1), ('opportunity', 1), ('student', 1), ('develop', 1), ('mathematical', 1), ('power', 1), ('grows', 1), ('collaboration', 1), ('mathematics', 1)]
[('health', 1), ('safety', 1), ('important', 1), ('everyone', 1), ('nowadays', 1), ('especially', 1), ('burgeoning', 1), ('extent', 1), ('legislation', 1), ('regulation', 1), ('area', 1), ('uk', 1), ('term', 1), ('perhaps', 1), ('importantly', 1), ('within', 1), ('across', 1), ('european', 1), ('community', 1), ('industry', 1), ('affected', 1), ('building', 1), ('construction', 1), ('sector', 1), ('traditionally', 1), ('poor', 1)]
[('state', 2), ('highlighting', 1), ('critical', 1), ('yet', 1), ('often', 1), ('overlooked', 1), ('aspect', 1), ('lean', 1), ('implementation', 1), ('book', 1), ('discus', 1), ('transform', 1), ('organization', 1), ('current', 1), ('desired', 1), ('following', 1), ('popular', 1), ('organizational', 1), ('approach', 1), ('prequel', 1), ('tale', 1), ('system', 1), ('present', 1), ('contrasting', 1), ('transformation', 1), ('based', 1), ('polar', 1), ('opposite', 1)]
[('investigator', 2), ('cell', 1), ('phone', 1), ('camera', 1), ('pda', 1), ('gps', 1), ('device', 1), ('digital', 1), ('item', 1), ('treasure', 1), ('trove', 1), ('frequently', 1), ('holding', 1), ('evidence', 1), ('containing', 1), ('log', 1), ('communication', 1), ('concerning', 1), ('crime', 1), ('designed', 1), ('prepare', 1), ('public', 1), ('private', 1), ('sector', 1), ('book', 1), ('cover', 1), ('theoretical', 1), ('practical', 1), ('aspect', 1), ('investigating', 1), ('handheld', 1)]
[('management', 2), ('book', 1), ('make', 1), ('significant', 1), ('contribution', 1), ('development', 1), ('science', 1), ('term', 1), ('strategic', 1), ('strictly', 1), ('resource', 1), ('approach', 1), ('company', 1), ('structural', 1), ('definition', 1), ('knowledge', 1)]
[('internet', 2), ('new', 2), ('public', 2), ('sector', 2), ('given', 1), ('rise', 1), ('opportunity', 1), ('improve', 1), ('efficiency', 1), ('better', 1), ('serve', 1), ('constituent', 1), ('increasing', 1), ('reliance', 1), ('digital', 1), ('tool', 1), ('exposing', 1), ('risk', 1)]
[('book', 2), ('police', 2), ('policing', 2), ('explores', 1), ('algorithmic', 1), ('prediction', 1), ('tool', 1), ('transform', 1), ('work', 1), ('building', 1), ('growing', 1), ('literature', 1), ('intersection', 1), ('technology', 1), ('study', 1), ('examines', 1), ('impact', 1), ('predictive', 1), ('organizational', 1), ('structure', 1), ('way', 1), ('criminal', 1), ('future', 1), ('constructed', 1)]
[('book', 2), ('police', 2), ('policing', 2), ('explores', 1), ('algorithmic', 1), ('prediction', 1), ('tool', 1), ('transform', 1), ('work', 1), ('building', 1), ('growing', 1), ('literature', 1), ('intersection', 1), ('technology', 1), ('study', 1), ('examines', 1), ('impact', 1), ('predictive', 1), ('organizational', 1), ('structure', 1), ('way', 1), ('criminal', 1), ('future', 1), ('constructed', 1)]
[('world', 2), ('seminal', 1), ('study', 1), ('explores', 1), ('significant', 1), ('change', 1), ('global', 1), ('industry', 1), ('production', 1), ('shifted', 1), ('developed', 1), ('massive', 1), ('site', 1), ('developing', 1), ('house', 1), ('hundred', 1), ('thousand', 1), ('worker', 1), ('appalling', 1), ('low', 1), ('wage', 1), ('condition', 1), ('minimize', 1), ('labor', 1), ('cost', 1), ('author', 1), ('trace', 1), ('development', 1), ('new', 1), ('network', 1), ('globalized', 1), ('mass', 1)]
[('life', 2), ('work', 2), ('computer', 1), ('technology', 1), ('reached', 1), ('level', 1), ('invisibility', 1), ('equal', 1), ('indoor', 1), ('plumbing', 1), ('electricity', 1), ('think', 1), ('mechanic', 1), ('system', 1), ('break', 1), ('massive', 1), ('disruption', 1), ('understand', 1), ('basic', 1), ('fuse', 1), ('box', 1), ('plunge', 1), ('toilet', 1)]
[('technology', 2), ('life', 2), ('hate', 1), ('fear', 1), ('neither', 1), ('friend', 1), ('foe', 1), ('understanding', 1), ('impact', 1), ('daily', 1), ('paramount', 1), ('cultivating', 1), ('healthier', 1), ('relationship', 1), ('digital', 1), ('real', 1), ('lived', 1), ('one', 1), ('loretta', 1), ('brady', 1), ('show', 1), ('touchpoints', 1)]
[('career', 3), ('cybersecurity', 2), ('exploring', 1), ('digital', 1), ('forensics', 1), ('serf', 1), ('guide', 1), ('providing', 1), ('information', 1), ('education', 1), ('certification', 1), ('tool', 1), ('help', 1), ('making', 1), ('decision', 1), ('within', 1), ('field', 1)]
[('data', 3), ('commonly', 1), ('deceived', 1), ('number', 1), ('everyday', 1), ('life', 1), ('lottery', 1), ('product', 1), ('warranty', 1), ('weight', 1), ('loss', 1), ('fad', 1), ('misleading', 1), ('headline', 1), ('social', 1), ('medium', 1), ('post', 1), ('duped', 1), ('help', 1), ('avoid', 1), ('common', 1), ('pitfall', 1), ('develop', 1), ('sense', 1), ('defense', 1), ('discern', 1), ('fact', 1), ('fiction', 1)]
[('computer', 2), ('whether', 1), ('responding', 1), ('cnn', 1), ('survey', 1), ('voting', 1), ('nfl', 1), ('pro', 1), ('team', 1), ('user', 1), ('becoming', 1), ('comfortable', 1), ('internet', 1), ('poll', 1), ('use', 1), ('united', 1), ('state', 1), ('continues', 1), ('growmore', 1), ('half', 1), ('american', 1), ('household', 1)]
[('jeffrey', 1), ('lee', 1), ('teach', 1), ('parent', 1), ('stakeholder', 1), ('use', 1), ('tech', 1), ('protect', 1), ('child', 1)]
[('revolution', 3), ('life', 2), ('network', 2), ('former', 1), ('fcc', 1), ('chairman', 1), ('wheeler', 1), ('brings', 1), ('invention', 1), ('movable', 1), ('type', 1), ('printing', 1), ('press', 1), ('telegraph', 1), ('put', 1), ('past', 1), ('perspective', 1), ('today', 1), ('rapid', 1), ('change', 1), ('networking', 1), ('upending', 1), ('nearly', 1), ('every', 1), ('aspect', 1), ('modern', 1), ('laying', 1), ('foundation', 1), ('third', 1)]
[('electronic', 1), ('information', 1), ('network', 1), ('offer', 1), ('extraordinary', 1), ('advantage', 1), ('business', 1), ('government', 1), ('individual', 1), ('term', 1), ('power', 1), ('capacity', 1), ('speed', 1), ('accessibility', 1), ('cost', 1), ('capability', 1), ('present', 1), ('substantial', 1), ('privacy', 1), ('issue', 1), ('unprecedented', 1), ('amount', 1), ('data', 1), ('available', 1), ('digital', 1), ('format', 1), ('easier', 1), ('le', 1), ('expensive', 1), ('access', 1)]
[('internet', 2), ('crime', 2), ('child', 1), ('vulnerable', 1), ('perfect', 1), ('target', 1), ('new', 1), ('technology', 1), ('present', 1), ('complex', 1), ('challenge', 1), ('law', 1), ('enforcement', 1), ('agency', 1), ('victim', 1), ('service', 1), ('provider', 1), ('bookprovides', 1), ('parent', 1), ('practical', 1), ('advice', 1), ('combat', 1), ('identifying', 1), ('type', 1), ('risk', 1), ('factor', 1), ('explanation', 1)]
[('serial', 2), ('information', 2), ('head', 1), ('cloud', 1), ('foot', 1), ('ground', 1), ('vision', 1), ('common', 1), ('sense', 1), ('collection', 1), ('article', 1), ('presented', 1), ('june', 1), ('north', 1), ('american', 1), ('interest', 1), ('group', 1), ('nasig', 1), ('conference', 1), ('librarian', 1), ('gain', 1), ('insight', 1), ('current', 1), ('concerning', 1), ('internet', 1), ('publishing', 1), ('property', 1), ('right', 1), ('delivery', 1), ('future', 1), ('trend', 1), ('higher', 1), ('education', 1)]
[('mental', 1), ('health', 1), ('gifted', 1), ('intelligent', 1), ('machine', 1), ('explores', 1), ('increasingly', 1), ('sophisticated', 1), ('behaviour', 1), ('developing', 1), ('ai', 1), ('ensure', 1), ('emotional', 1), ('resilience', 1), ('ethical', 1), ('strength', 1), ('ability', 1), ('think', 1), ('enhanced', 1), ('way', 1)]
[('book', 2), ('executive', 2), ('unique', 1), ('sense', 1), ('take', 1), ('fresh', 1), ('look', 1), ('topic', 1), ('based', 1), ('experience', 1), ('includes', 1), ('interview', 1), ('industry', 1), ('leader', 1), ('short', 1), ('written', 1), ('exclusively', 1), ('explains', 1), ('start', 1)]
[('case', 2), ('drawn', 1), ('example', 1), ('spanning', 1), ('last', 1), ('year', 1), ('book', 1), ('examines', 1), ('incident', 1), ('targeted', 1), ('violence', 1), ('including', 1), ('contract', 1), ('killing', 1), ('assassination', 1), ('planned', 1), ('kidnapping', 1), ('complete', 1), ('study', 1), ('text', 1), ('explores', 1), ('numerous', 1), ('attack', 1), ('methodology', 1), ('employed', 1), ('around', 1), ('world', 1), ('regionally', 1), ('author', 1), ('former', 1), ('swat', 1), ('jttf', 1), ('team', 1), ('member', 1)]
[('crisis', 2), ('human', 2), ('factor', 2), ('responding', 2), ('organizational', 1), ('management', 1), ('offer', 1), ('theoretical', 1), ('background', 1), ('practical', 1), ('strategy', 1), ('workplace', 1), ('paradigm', 1), ('focus', 1), ('operational', 1), ('aspect', 1), ('continuity', 1), ('detriment', 1), ('volume', 1), ('provides', 1), ('comprehensive', 1), ('understanding', 1), ('unavoidable', 1), ('yet', 1), ('often', 1), ('complex', 1)]
[('grid', 2), ('smart', 1), ('potential', 1), ('revolutionize', 1), ('electricity', 1), ('delivery', 1), ('system', 1), ('security', 1), ('infrastructure', 1), ('vital', 1), ('concern', 1), ('volume', 1), ('explores', 1), ('important', 1), ('technique', 1), ('challenge', 1), ('force', 1), ('shape', 1), ('achieve', 1), ('secure', 1), ('st', 1), ('century', 1), ('electric', 1), ('author', 1), ('discus', 1), ('technical', 1), ('detail', 1), ('metering', 1)]
[('new', 2), ('digital', 2), ('cybercrime', 1), ('evolved', 1), ('last', 1), ('edition', 1), ('book', 1), ('published', 1), ('decade', 1), ('ago', 1), ('motif', 1), ('changed', 1), ('mean', 1), ('opportunity', 1), ('arisen', 1), ('advancement', 1), ('age', 1), ('volume', 1), ('incorporates', 1), ('result', 1), ('research', 1), ('practice', 1), ('growth', 1), ('field', 1), ('technology', 1), ('offer', 1), ('fresh', 1), ('look', 1), ('topic', 1)]
[('human', 2), ('working', 2), ('inspired', 1), ('need', 1), ('offer', 1), ('relevant', 1), ('approach', 1), ('interrogation', 1), ('suited', 1), ('contemporary', 1), ('time', 1), ('increasing', 1), ('demand', 1), ('transparency', 1), ('call', 1), ('fundamental', 1), ('respect', 1), ('right', 1), ('dignity', 1), ('primer', 1), ('serf', 1), ('timely', 1), ('handy', 1), ('reference', 1), ('thinking', 1), ('interrogator', 1), ('law', 1), ('enforcement', 1)]
[('ai', 2), ('balanced', 1), ('thought', 1), ('provoking', 1), ('guide', 1), ('big', 1), ('question', 1), ('ethic', 1), ('computer', 1), ('understand', 1), ('morality', 1), ('respect', 1), ('privacy', 1), ('make', 1), ('safe', 1), ('fair', 1), ('artificial', 1), ('intelligence', 1), ('revolution', 1), ('begun', 1), ('today', 1)]
[('propose', 1), ('consider', 1), ('question', 1), ('machine', 1), ('think', 1), ('alan', 1), ('turing', 1), ('part', 1), ('new', 1), ('ladybird', 1), ('expert', 1), ('series', 1), ('book', 1), ('everyone', 1), ('living', 1), ('age', 1), ('artificial', 1), ('intelligence', 1), ('accessible', 1), ('authoritative', 1)]
[('governance', 2), ('information', 2), ('brookings', 1), ('institution', 1), ('press', 1), ('vision', 1), ('st', 1), ('century', 1), ('publicationadvances', 1), ('technology', 1), ('transforming', 1), ('democratic', 1), ('power', 1), ('become', 1), ('decentralized', 1), ('fostering', 1), ('new', 1), ('type', 1), ('community', 1)]
[('identity', 2), ('online', 2), ('reputation', 2), ('way', 2), ('protecting', 1), ('internet', 1), ('illustrates', 1), ('depth', 1), ('importance', 1), ('person', 1), ('persona', 1), ('updated', 1), ('edition', 1), ('address', 1), ('live', 1), ('life', 1), ('legal', 1), ('change', 1), ('need', 1), ('know', 1), ('cutting', 1), ('edge', 1), ('technical', 1), ('development', 1), ('new', 1), ('protect', 1), ('enhance', 1)]
[('human', 2), ('right', 2), ('cybersecurity', 1), ('age', 1), ('cyberveillance', 1), ('collection', 1), ('article', 1), ('distinguished', 1), ('author', 1), ('europe', 1), ('present', 1), ('contemporary', 1), ('perspective', 1), ('limit', 1), ('international', 1), ('internet', 1), ('community', 1)]
[('social', 2), ('medium', 2), ('book', 1), ('help', 1), ('want', 1), ('use', 1), ('necessarily', 1), ('web', 1), ('savvy', 1), ('navigate', 1), ('popular', 1), ('networking', 1), ('site', 1), ('available', 1), ('privacy', 1), ('technical', 1), ('information', 1), ('platform', 1), ('function', 1), ('explained', 1), ('everyone', 1), ('make', 1), ('informed', 1), ('decision', 1), ('connect', 1), ('online', 1)]
[('scholar', 2), ('le', 1), ('month', 1), ('september', 1), ('tragedy', 1), ('group', 1), ('gathered', 1), ('washington', 1), ('lee', 1), ('university', 1), ('advance', 1), ('idea', 1), ('whether', 1), ('universal', 1), ('set', 1), ('moral', 1), ('value', 1), ('toward', 1), ('medium', 1), ('professional', 1), ('look', 1), ('guidance', 1), ('conference', 1), ('whose', 1), ('work', 1), ('appear', 1), ('special', 1), ('issue', 1), ('challenge', 1), ('reinforce', 1)]
[('using', 1), ('assemblage', 1), ('approach', 1), ('study', 1), ('muslim', 1), ('woman', 1), ('norrebro', 1), ('denmark', 1), ('use', 1), ('phone', 1), ('karen', 1), ('waltorp', 1), ('examines', 1), ('social', 1), ('medium', 1), ('complicates', 1), ('divide', 1), ('public', 1), ('private', 1), ('relation', 1), ('group', 1), ('find', 1), ('distinction', 1), ('utmost', 1), ('significance', 1)]
[('data', 3), ('health', 2), ('big', 2), ('gdpr', 2), ('book', 1), ('examines', 1), ('question', 1), ('light', 1), ('eu', 1), ('general', 1), ('privacy', 1), ('legal', 1), ('framework', 1), ('address', 1), ('opportunity', 1), ('challenge', 1), ('considers', 1), ('response', 1), ('variety', 1), ('discipline', 1), ('perspective', 1)]
[('deep', 2), ('learning', 2), ('examine', 1), ('role', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('playing', 1), ('around', 1), ('ehr', 1), ('technology', 1), ('address', 1), ('advance', 1), ('analytics', 1), ('known', 1), ('structured', 1), ('hierarchical', 1), ('explain', 1), ('topic', 1), ('practical', 1), ('way', 1), ('even', 1), ('novice', 1), ('reader', 1), ('comprehend', 1), ('apply', 1)]
[('journalism', 3), ('book', 2), ('examines', 1), ('ability', 1), ('promote', 1), ('foster', 1), ('cohesive', 1), ('collective', 1), ('action', 1), ('critically', 1), ('examining', 1), ('place', 1), ('intensifying', 1), ('battle', 1), ('maintain', 1), ('society', 1), ('social', 1), ('order', 1), ('first', 1), ('published', 1), ('special', 1), ('issue', 1), ('study', 1), ('practice', 1)]
[('social', 2), ('book', 1), ('investigates', 1), ('dynamic', 1), ('mobilization', 1), ('demobilization', 1), ('network', 1), ('episode', 1), ('political', 1), ('turbulence', 1), ('middle', 1), ('east', 1), ('focusing', 1), ('arab', 1), ('uprising', 1), ('originally', 1), ('published', 1), ('special', 1), ('issue', 1), ('journal', 1), ('movement', 1), ('study', 1)]
[('music', 8), ('apps', 2), ('intended', 1), ('guide', 1), ('musician', 1), ('teacher', 1), ('list', 1), ('hundred', 1), ('related', 1), ('organized', 1), ('category', 1), ('including', 1), ('singing', 1), ('musical', 1), ('instrument', 1), ('theory', 1), ('composition', 1), ('songwriting', 1), ('improvisation', 1), ('recording', 1), ('evaluating', 1), ('performance', 1), ('listening', 1), ('history', 1), ('literature', 1), ('appreciation', 1)]
[('computer', 2), ('lively', 1), ('innovative', 1), ('book', 1), ('code', 1), ('legal', 1), ('control', 1), ('restriction', 1), ('write', 1), ('widespread', 1), ('use', 1), ('personal', 1), ('internet', 1), ('made', 1), ('possible', 1), ('release', 1), ('new', 1), ('data', 1), ('tool', 1), ('instantaneously', 1)]
[('government', 2), ('benefit', 1), ('using', 1), ('technology', 1), ('remake', 1), ('seem', 1), ('almost', 1), ('infinite', 1), ('promise', 1), ('program', 1), ('user', 1), ('friendly', 1), ('virtual', 1), ('agency', 1), ('portal', 1), ('citizen', 1), ('access', 1), ('section', 1), ('single', 1), ('website', 1), ('excited', 1)]
[('cyber', 2), ('facing', 1), ('threat', 1), ('head', 1), ('explains', 1), ('battle', 1), ('hacker', 1), ('fight', 1), ('technology', 1), ('brian', 1), ('minick', 1), ('offer', 1), ('new', 1), ('approach', 1), ('defending', 1), ('attack', 1), ('balance', 1), ('business', 1), ('risk', 1), ('cost', 1), ('creating', 1), ('defense', 1), ('change', 1), ('quickly', 1), ('often', 1), ('attacker', 1)]
[('surround', 2), ('life', 2), ('digital', 1), ('better', 1), ('worse', 1), ('changed', 1), ('forever', 1), ('book', 1), ('take', 1), ('look', 1), ('change', 1), ('undermined', 1), ('area', 1), ('good', 1), ('bad', 1), ('andrew', 1), ('edward', 1), ('show', 1), ('happened', 1), ('thoughtful', 1), ('effect', 1), ('technology', 1), ('continues', 1), ('proliferate', 1)]
[('ai', 2), ('self', 1), ('learning', 1), ('machine', 1), ('called', 1), ('popping', 1), ('around', 1), ('alter', 1), ('life', 1), ('worker', 1), ('consumer', 1), ('investor', 1), ('citizen', 1), ('patient', 1), ('student', 1), ('need', 1), ('smart', 1), ('charles', 1), ('jennings', 1), ('message', 1), ('provocative', 1), ('new', 1), ('book', 1), ('artificial', 1), ('intelligence', 1), ('rise', 1), ('lightspeed', 1), ('learner', 1)]
[('guide', 2), ('reader', 2), ('book', 1), ('easy', 1), ('comprehensive', 1), ('understanding', 1), ('dark', 1), ('web', 1), ('work', 1), ('using', 1), ('led', 1), ('tour', 1), ('download', 1), ('platform', 1), ('personal', 1), ('public', 1), ('use', 1), ('best', 1), ('utilized', 1), ('finding', 1), ('information', 1), ('bust', 1), ('myth', 1), ('informs', 1), ('remaining', 1), ('jargon', 1), ('free', 1)]
[('transportation', 3), ('providing', 1), ('manager', 1), ('knowledge', 1), ('skill', 1), ('ability', 1), ('effectively', 1), ('manage', 1), ('security', 1), ('asset', 1), ('volume', 1), ('discus', 1), ('integrated', 1), ('nature', 1), ('nation', 1), ('critical', 1), ('infrastructure', 1), ('threat', 1), ('surface', 1), ('mode', 1), ('author', 1), ('explore', 1), ('federal', 1), ('agency', 1), ('working', 1), ('emergency', 1), ('management', 1)]
[('book', 1), ('outcome', 1), ('th', 1), ('congress', 1), ('world', 1), ('organization', 1), ('system', 1), ('cybernetics', 1), ('took', 1), ('place', 1), ('rome', 1), ('january', 1), ('provides', 1), ('variety', 1), ('conceptual', 1), ('framework', 1), ('example', 1), ('multi', 1), ('trans', 1), ('disciplinary', 1), ('approach', 1), ('deal', 1), ('wicked', 1), ('social', 1), ('problem', 1), ('st', 1), ('century', 1)]
[('disability', 2), ('society', 2), ('technology', 2), ('collection', 1), ('provides', 1), ('exploration', 1), ('place', 1), ('disabled', 1), ('life', 1), ('documenting', 1), ('analysing', 1), ('growing', 1), ('impact', 1), ('recent', 1), ('decade', 1), ('author', 1), ('explore', 1), ('theoretical', 1), ('empirical', 1), ('moral', 1), ('dilemma', 1), ('arise', 1), ('changing', 1), ('relationship', 1)]
[('book', 1), ('study', 1), ('resurgence', 1), ('imagination', 1), ('feminist', 1), ('discourse', 1), ('gender', 1), ('sexuality', 1), ('south', 1), ('asia', 1), ('told', 1), ('cinematic', 1), ('literary', 1), ('social', 1), ('medium', 1), ('narrative', 1)]
[('work', 2), ('medium', 2), ('system', 2), ('book', 1), ('examines', 1), ('semiotic', 1), ('effect', 1), ('protocol', 1), ('algorithm', 1), ('popular', 1), ('social', 1), ('bridging', 1), ('philosophical', 1), ('conversation', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hci', 1), ('information', 1), ('design', 1), ('contemporary', 1), ('critical', 1), ('technology', 1), ('software', 1), ('study', 1)]
[('policy', 2), ('book', 1), ('supply', 1), ('blueprint', 1), ('develop', 1), ('effective', 1), ('information', 1), ('security', 1), ('procedure', 1), ('us', 1), ('standard', 1), ('nist', 1), ('iso', 1), ('cobit', 1), ('regulation', 1), ('hipaa', 1), ('pci', 1), ('ds', 1), ('foundation', 1), ('content', 1), ('highlighting', 1), ('key', 1), ('terminology', 1), ('development', 1), ('concept', 1), ('method', 1), ('suggested', 1), ('document', 1)]
[('book', 1), ('leading', 1), ('expert', 1), ('address', 1), ('major', 1), ('aspect', 1), ('contemporary', 1), ('rail', 1), ('safety', 1), ('security', 1), ('issue', 1), ('case', 1), ('study', 1), ('transit', 1), ('disaster', 1), ('illustrate', 1), ('lesson', 1), ('learned', 1), ('provide', 1), ('critical', 1), ('insight', 1), ('preventative', 1), ('measure', 1)]
[('computational', 2), ('intelligence', 2), ('sub', 1), ('branch', 1), ('artificial', 1), ('field', 1), ('draw', 1), ('natural', 1), ('world', 1), ('adaptive', 1), ('mechanism', 1), ('order', 1), ('study', 1), ('behaviour', 1), ('changing', 1), ('complex', 1), ('environment', 1), ('book', 1), ('provides', 1), ('interdisciplinary', 1), ('view', 1), ('current', 1), ('technological', 1), ('advance', 1), ('challenge', 1), ('concerning', 1), ('application', 1)]
[('volume', 1), ('examines', 1), ('digital', 1), ('phenomenon', 1), ('impact', 1), ('asia', 1), ('drawing', 1), ('specifically', 1), ('asian', 1), ('perspective', 1)]
[('online', 2), ('powerful', 1), ('comprehensive', 1), ('guide', 1), ('spotting', 1), ('responding', 1), ('proactively', 1), ('defending', 1), ('abuse', 1), ('learning', 1), ('good', 1), ('ally', 1), ('experiencing', 1), ('need', 1), ('know', 1), ('barrier', 1), ('breaking', 1), ('book', 1), ('fighting', 1)]
[('data', 2), ('analytics', 1), ('football', 1), ('provides', 1), ('student', 1), ('researcher', 1), ('coach', 1), ('firm', 1), ('grounding', 1), ('principle', 1), ('modern', 1), ('performance', 1), ('analysis', 1), ('offer', 1), ('insight', 1), ('use', 1), ('positional', 1), ('exploring', 1), ('collected', 1), ('modelled', 1), ('analysed', 1), ('interpreted', 1)]
[('introducing', 1), ('reader', 1), ('grounded', 1), ('methodology', 1), ('ethical', 1), ('approach', 1), ('book', 1), ('explores', 1), ('theory', 1), ('behind', 1), ('method', 1), ('use', 1), ('develop', 1), ('evaluate', 1), ('learning', 1), ('education', 1), ('project', 1)]
[('digital', 2), ('humanity', 2), ('multilingual', 1), ('explores', 1), ('impact', 1), ('monolingualism', 1), ('especially', 1), ('anglocentrism', 1), ('practice', 1), ('social', 1), ('science', 1)]
[('news', 2), ('rise', 1), ('smartphone', 1), ('shifted', 1), ('fixed', 1), ('publication', 1), ('flow', 1), ('updateable', 1), ('information', 1), ('chapter', 1), ('book', 1), ('investigate', 1), ('implication', 1), ('audience', 1), ('industry', 1), ('society', 1), ('becomes', 1), ('mobile', 1)]
[('communication', 2), ('core', 1), ('textbook', 1), ('course', 1), ('technical', 1), ('professional', 1), ('emphasizes', 1), ('design', 1), ('thinking', 1), ('collaboration', 1), ('global', 1), ('perspective', 1), ('inclusivity', 1), ('rhetorical', 1), ('approach', 1), ('creating', 1), ('product', 1), ('diverse', 1), ('flexible', 1), ('mobile', 1), ('workplace', 1), ('st', 1), ('century', 1)]
[('book', 1), ('explores', 1), ('diffusion', 1), ('protest', 1), ('austerity', 1), ('free', 1), ('trade', 1), ('agreement', 1), ('wave', 1), ('contention', 1), ('shook', 1), ('eu', 1), ('following', 1), ('economic', 1), ('crisis', 1)]
[('procedure', 2), ('offering', 1), ('template', 1), ('prepare', 1), ('implement', 1), ('coordinated', 1), ('response', 1), ('high', 1), ('alert', 1), ('situation', 1), ('reference', 1), ('elucidates', 1), ('efficient', 1), ('method', 1), ('identify', 1), ('manage', 1), ('control', 1), ('transformation', 1), ('provision', 1), ('health', 1), ('service', 1), ('elevated', 1), ('level', 1), ('bioterrorist', 1), ('threat', 1), ('author', 1), ('outline', 1), ('training', 1), ('personnel', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('feature', 2), ('chromeos', 2), ('tool', 2), ('explore', 1), ('sysadmin', 1), ('architecture', 1), ('master', 1), ('local', 1), ('cloud', 1), ('based', 1), ('administrative', 1), ('capability', 1), ('key', 1), ('complete', 1), ('overview', 1), ('using', 1), ('powerful', 1), ('system', 1), ('admin', 1), ('hand', 1), ('experience', 1), ('working', 1), ('google', 1), ('administration', 1), ('platform', 1), ('learn', 1), ('centralized', 1), ('management', 1), ('resource', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('developer', 4), ('advocate', 2), ('reveal', 2), ('tech', 2), ('collection', 1), ('depth', 1), ('conversation', 1), ('leading', 1), ('world', 1), ('relation', 1), ('today', 1), ('key', 1), ('feature', 1), ('top', 1), ('work', 1), ('center', 1), ('community', 1), ('impact', 1), ('advocacy', 1), ('industry', 1), ('whole', 1), ('discover', 1), ('best', 1), ('practice', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('documentum', 3), ('book', 2), ('concise', 1), ('information', 1), ('various', 1), ('web', 1), ('content', 1), ('management', 1), ('product', 1), ('packed', 1), ('practical', 1), ('example', 1), ('targeted', 1), ('professional', 1), ('beginner', 1), ('intermediate', 1), ('depth', 1), ('coverage', 1), ('mean', 1), ('experienced', 1), ('developer', 1), ('benefit', 1), ('learn', 1), ('new', 1), ('trick', 1), ('although', 1)]
[('book', 3), ('outlook', 3), ('take', 1), ('practical', 1), ('hand', 1), ('approach', 1), ('working', 1), ('microsoft', 1), ('carefully', 1), ('structured', 1), ('lead', 1), ('step', 1), ('example', 1), ('help', 1), ('use', 1), ('way', 1), ('never', 1), ('imagined', 1), ('possible', 1), ('user', 1), ('comfortable', 1), ('basic', 1), ('function', 1), ('want', 1), ('inspiration', 1)]
[('cloud', 3), ('automate', 2), ('based', 2), ('service', 2), ('exploit', 1), ('power', 1), ('dynamic', 1), ('formation', 1), ('auto', 1), ('scaling', 1), ('feature', 1), ('fully', 1), ('implement', 1), ('openstack', 1), ('orchestrationabout', 1), ('book', 1), ('set', 1), ('manage', 1), ('troubleshoot', 1), ('heat', 1), ('effectively', 1), ('datacenter', 1), ('achieve', 1), ('high', 1), ('availability', 1), ('minimize', 1), ('time', 1), ('deployment', 1), ('resource', 1)]
[('book', 3), ('phpbb', 2), ('ideal', 2), ('take', 1), ('practical', 1), ('hand', 1), ('approach', 1), ('packed', 1), ('section', 1), ('stepping', 1), ('task', 1), ('guide', 1), ('learning', 1), ('starting', 1), ('online', 1), ('community', 1), ('want', 1), ('powerful', 1), ('free', 1), ('tool', 1), ('experience', 1), ('web', 1), ('programming', 1), ('required', 1)]
[('book', 2), ('topic', 2), ('wf', 2), ('fast', 1), ('paced', 1), ('point', 1), ('take', 1), ('important', 1), ('window', 1), ('development', 1), ('clear', 1), ('explanation', 1), ('practical', 1), ('example', 1), ('code', 1), ('selection', 1), ('driven', 1), ('working', 1), ('developer', 1), ('need', 1), ('know', 1), ('neither', 1), ('comprehensive', 1), ('reference', 1), ('whole', 1), ('architecture', 1), ('strategy', 1), ('guide', 1)]
[('clear', 2), ('book', 2), ('step', 2), ('typo', 2), ('development', 2), ('end', 2), ('written', 1), ('easy', 1), ('style', 1), ('provides', 1), ('instruction', 1), ('using', 1), ('typoscript', 1), ('website', 1), ('template', 1), ('extension', 1), ('back', 1), ('front', 1), ('administration', 1), ('topic', 1), ('tackled', 1), ('practical', 1), ('way', 1), ('many', 1), ('example', 1), ('develop', 1), ('skill', 1), ('suitable', 1)]
[('book', 2), ('help', 2), ('administer', 2), ('dotnetnuke', 2), ('portal', 2), ('use', 1), ('set', 1), ('even', 1), ('limited', 1), ('knowledge', 1), ('asp', 1), ('net', 1), ('learn', 1), ('setup', 1), ('example', 1), ('site', 1), ('stepping', 1), ('task', 1), ('ease', 1), ('learning', 1), ('developer', 1), ('extend', 1), ('first', 1), ('helping', 1)]
[('asp', 3), ('net', 3), ('book', 2), ('developer', 2), ('written', 1), ('work', 1), ('microsoft', 1), ('content', 1), ('management', 1), ('server', 1), ('want', 1), ('update', 1), ('skill', 1), ('take', 1), ('advantage', 1), ('latest', 1), ('offering', 1), ('mcms', 1), ('yet', 1), ('ideal', 1), ('introduction', 1), ('exciting', 1), ('feature', 1), ('make', 1)]
[('vpns', 2), ('basic', 2), ('knowledge', 2), ('network', 1), ('administrator', 1), ('interested', 1), ('building', 1), ('secure', 1), ('using', 1), ('openvpn', 1), ('presumes', 1), ('linux', 1), ('required', 1), ('vpn', 1), ('relevant', 1), ('security', 1), ('concept', 1), ('covered', 1)]
[('web', 2), ('step', 2), ('easy', 1), ('follow', 1), ('practical', 1), ('guide', 1), ('abundant', 1), ('screenshots', 1), ('along', 1), ('clear', 1), ('instruction', 1), ('explanation', 1), ('cover', 1), ('use', 1), ('cpanel', 1), ('offer', 1), ('crucial', 1), ('advice', 1), ('making', 1), ('application', 1), ('avoiding', 1), ('common', 1), ('master', 1), ('pitfall', 1), ('carefully', 1), ('arranged', 1), ('act', 1), ('tutorial', 1), ('handy', 1), ('desktop', 1), ('reference', 1), ('anybody', 1)]
[('book', 2), ('existing', 2), ('oscommerce', 2), ('aimed', 1), ('online', 1), ('store', 1), ('built', 1), ('using', 1), ('follows', 1), ('systematic', 1), ('approach', 1), ('whereby', 1), ('user', 1), ('modify', 1), ('extend', 1), ('feature', 1), ('already', 1), ('site', 1), ('chapter', 1), ('deal', 1), ('different', 1), ('aspect', 1), ('provides', 1), ('ready', 1), ('made', 1), ('recipe', 1), ('modifying', 1), ('code', 1), ('requirement', 1), ('author', 1), ('start', 1)]
[('ipcop', 3), ('networking', 2), ('anyone', 1), ('interested', 1), ('securing', 1), ('network', 1), ('new', 1), ('firewall', 1), ('professional', 1), ('previous', 1), ('experience', 1), ('knowledge', 1), ('linux', 1), ('required', 1)]
[('want', 3), ('book', 2), ('quickly', 2), ('java', 2), ('jasperreports', 2), ('concise', 1), ('practical', 1), ('guide', 1), ('aimed', 1), ('getting', 1), ('result', 1), ('possible', 1), ('developer', 1), ('create', 1), ('rich', 1), ('report', 1), ('either', 1), ('web', 1), ('print', 1), ('started', 1), ('knowledge', 1), ('presumed', 1), ('although', 1), ('obviously', 1), ('familiarity', 1)]
[('vbulletin', 3), ('using', 1), ('highly', 1), ('graphical', 1), ('practical', 1), ('style', 1), ('experienced', 1), ('author', 1), ('show', 1), ('book', 1), ('written', 1), ('new', 1), ('intermediate', 1), ('user', 1), ('want', 1), ('manage', 1), ('maintain', 1), ('discussion', 1), ('forum', 1), ('easily', 1), ('possible', 1), ('experience', 1), ('web', 1), ('programming', 1), ('required', 1)]
[('oscommerce', 2), ('website', 2), ('book', 1), ('written', 1), ('first', 1), ('time', 1), ('user', 1), ('current', 1), ('customize', 1), ('anyone', 1), ('quickly', 1), ('build', 1), ('online', 1), ('business', 1)]
[('configuration', 3), ('troubleshoot', 2), ('manager', 2), ('issue', 2), ('aspect', 1), ('installation', 1), ('basic', 1), ('easy', 1), ('check', 1), ('advanced', 1), ('log', 1), ('file', 1), ('serious', 1), ('book', 1), ('learn', 1), ('based', 1), ('version', 1), ('microsoft', 1), ('system', 1), ('center', 1), ('understand', 1), ('usability', 1), ('tool', 1), ('find', 1), ('resolution', 1)]
[('book', 3), ('website', 2), ('example', 2), ('written', 1), ('clear', 1), ('easy', 1), ('style', 1), ('provides', 1), ('tutorial', 1), ('setting', 1), ('mambo', 1), ('topic', 1), ('tackled', 1), ('practical', 1), ('way', 1), ('many', 1), ('task', 1), ('develop', 1), ('skill', 1), ('realistic', 1), ('developed', 1), ('incrementally', 1), ('showing', 1), ('step', 1), ('detail', 1), ('suitable', 1), ('web', 1), ('developer', 1)]
[('mysql', 2), ('database', 2), ('book', 1), ('take', 1), ('practical', 1), ('approach', 1), ('implementing', 1), ('theoretical', 1), ('concept', 1), ('example', 1), ('fast', 1), ('paced', 1), ('tutorial', 1), ('focus', 1), ('critical', 1), ('decision', 1), ('need', 1), ('make', 1), ('every', 1), ('time', 1), ('build', 1), ('rich', 1), ('tip', 1), ('advice', 1), ('experienced', 1), ('practitioner', 1), ('anyone', 1), ('working', 1), ('application', 1), ('use', 1), ('backend', 1)]
[('book', 2), ('community', 2), ('server', 2), ('gallery', 2), ('r', 2), ('step', 2), ('hand', 1), ('able', 1), ('set', 1), ('manage', 1), ('solution', 1), ('learn', 1), ('create', 1), ('blog', 1), ('forum', 1), ('photo', 1), ('file', 1), ('use', 1), ('tool', 1), ('built', 1), ('reader', 1), ('roller', 1), ('manner', 1), ('provide', 1), ('clear', 1), ('concise', 1), ('overview', 1)]
[('study', 2), ('book', 1), ('provides', 1), ('nuanced', 1), ('exploration', 1), ('digital', 1), ('data', 1), ('governance', 1), ('highlighting', 1), ('importance', 1), ('cooperation', 1), ('across', 1), ('sector', 1), ('adapt', 1), ('evolving', 1), ('technological', 1), ('landscape', 1), ('interest', 1), ('student', 1), ('scholar', 1), ('development', 1), ('political', 1), ('science', 1), ('international', 1), ('relation', 1), ('sociology', 1), ('communication', 1)]
[('critical', 3), ('infrastructure', 3), ('edition', 2), ('protection', 2), ('risk', 2), ('management', 2), ('second', 1), ('resilience', 1), ('continues', 1), ('essential', 1), ('resource', 1), ('understanding', 1), ('protecting', 1), ('across', 1), ('book', 1), ('address', 1), ('change', 1), ('occurred', 1), ('first', 1)]
[('audio', 3), ('ai', 2), ('enhanced', 2), ('technology', 2), ('tool', 2), ('professional', 2), ('build', 1), ('plugins', 1), ('explains', 1), ('embed', 1), ('artificial', 1), ('intelligence', 1), ('inside', 1), ('used', 1), ('music', 1), ('worked', 1), ('example', 1), ('using', 1), ('python', 1), ('plug', 1), ('apis', 1), ('demonstrate', 1), ('combine', 1), ('produce', 1), ('creative', 1)]
[('book', 1), ('aim', 1), ('design', 1), ('construct', 1), ('early', 1), ('warming', 1), ('mechanism', 1), ('based', 1), ('dynamic', 1), ('temporal', 1), ('tracking', 1), ('technology', 1), ('online', 1), ('learning', 1), ('behavior', 1), ('driven', 1), ('educational', 1), ('big', 1), ('data', 1)]
[('book', 1), ('develops', 1), ('comprehensive', 1), ('measured', 1), ('case', 1), ('bitcoin', 1), ('net', 1), ('benefit', 1), ('world', 1), ('despite', 1), ('imperfection', 1), ('resistance', 1), ('money', 1), ('intended', 1), ('clueless', 1), ('specialist', 1), ('proponent', 1), ('die', 1), ('hard', 1), ('skeptic', 1), ('everyone', 1)]
[('ai', 2), ('based', 2), ('meta', 2), ('heuristic', 2), ('book', 1), ('emphasizes', 1), ('theory', 1), ('practice', 1), ('providing', 1), ('methodological', 1), ('theoretical', 1), ('basis', 1), ('case', 1), ('reference', 1), ('sustainable', 1), ('logistics', 1), ('system', 1), ('using', 1), ('encompasses', 1), ('frequently', 1), ('employed', 1), ('approach', 1)]
[('counterspeech', 2), ('speech', 2), ('volume', 1), ('look', 1), ('form', 1), ('function', 1), ('determines', 1), ('effectiveness', 1), ('success', 1), ('multidisciplinary', 1), ('perspective', 1), ('line', 1), ('international', 1), ('human', 1), ('right', 1), ('freedom', 1), ('powerful', 1), ('tool', 1), ('dangerous', 1), ('toxic', 1), ('blocking', 1), ('censorship', 1)]
[('risk', 2), ('textbook', 1), ('analysis', 1), ('origin', 1), ('effect', 1), ('insider', 1), ('using', 1), ('multiple', 1), ('real', 1), ('life', 1), ('case', 1), ('history', 1), ('illustrate', 1), ('principle', 1), ('explains', 1), ('protect', 1), ('organisation', 1)]
[('audio', 2), ('book', 1), ('provides', 1), ('unique', 1), ('identity', 1), ('centered', 1), ('approach', 1), ('radio', 1), ('podcast', 1), ('production', 1), ('encourages', 1), ('reader', 1), ('build', 1), ('confidence', 1), ('create', 1), ('content', 1), ('matter', 1)]
[('cyber', 2), ('security', 2), ('book', 1), ('provides', 1), ('practical', 1), ('managerial', 1), ('implication', 1), ('support', 1), ('business', 1), ('intelligence', 1), ('discus', 1), ('latest', 1), ('innovation', 1)]
[('web', 2), ('book', 1), ('developer', 1), ('willing', 1), ('build', 1), ('better', 1), ('application', 1), ('basic', 1), ('knowledge', 1), ('php', 1), ('xml', 1), ('javascript', 1), ('mysql', 1), ('strong', 1), ('learn', 1), ('type', 1), ('assumed', 1)]
[('book', 2), ('business', 2), ('web', 2), ('aimed', 1), ('architect', 1), ('developer', 1), ('design', 1), ('implementation', 1), ('integration', 1), ('phase', 1), ('advanced', 1), ('information', 1), ('system', 1), ('solution', 1), ('developing', 1), ('process', 1), ('dealing', 1), ('issue', 1), ('composition', 1), ('orchestration', 1), ('transaction', 1), ('coordination', 1), ('security', 1), ('presumes', 1), ('knowledge', 1), ('xml', 1), ('service', 1)]
[('pear', 3), ('installer', 3), ('book', 2), ('comprehensive', 1), ('structured', 1), ('tutorial', 1), ('using', 1), ('creator', 1), ('latest', 1), ('version', 1), ('author', 1), ('passionate', 1), ('benefit', 1), ('managed', 1), ('development', 1), ('deployment', 1), ('process', 1), ('show', 1), ('work', 1), ('detail', 1)]
[('development', 3), ('written', 2), ('book', 2), ('php', 2), ('application', 2), ('concise', 1), ('friendly', 1), ('style', 1), ('packed', 1), ('tip', 1), ('practical', 1), ('project', 1), ('instruct', 1), ('using', 1), ('phpeclipse', 1), ('make', 1), ('efficient', 1), ('cut', 1), ('time', 1), ('developer', 1), ('want', 1), ('open', 1), ('source', 1), ('environment', 1), ('creating', 1), ('web', 1)]
[('computer', 2), ('vision', 2), ('application', 2), ('book', 2), ('feature', 2), ('important', 2), ('build', 1), ('create', 1), ('deploy', 1), ('power', 1), ('opencv', 1), ('provides', 1), ('hand', 1), ('example', 1), ('cover', 1), ('major', 1), ('part', 1), ('explores', 1), ('algorithm', 1), ('allow', 1), ('recognize', 1), ('face', 1), ('identify', 1), ('object', 1), ('extract', 1)]
[('enterprise', 2), ('book', 1), ('focus', 1), ('topic', 1), ('business', 1), ('manager', 1), ('project', 1), ('team', 1), ('global', 1), ('need', 1), ('understand', 1), ('follow', 1), ('successfully', 1), ('deploy', 1), ('system', 1), ('e', 1), ('organization', 1)]
[('corpus', 4), ('metaphor', 3), ('building', 3), ('linguistics', 1), ('investigating', 1), ('english', 1), ('medium', 1), ('instruction', 1), ('offer', 1), ('model', 1), ('oral', 1), ('emi', 1), ('seminar', 1), ('demonstrates', 1), ('incorporating', 1), ('process', 1), ('affords', 1), ('comprehensive', 1), ('description', 1), ('role', 1), ('discourse', 1)]
[('study', 2), ('book', 1), ('provides', 1), ('nuanced', 1), ('exploration', 1), ('digital', 1), ('data', 1), ('governance', 1), ('highlighting', 1), ('importance', 1), ('cooperation', 1), ('across', 1), ('sector', 1), ('adapt', 1), ('evolving', 1), ('technological', 1), ('landscape', 1), ('interest', 1), ('student', 1), ('scholar', 1), ('development', 1), ('political', 1), ('science', 1), ('international', 1), ('relation', 1), ('sociology', 1), ('communication', 1)]
[('ethereum', 2), ('class', 2), ('absolute', 1), ('essential', 1), ('concise', 1), ('textbook', 1), ('guide', 1), ('reader', 1), ('fascinating', 1), ('world', 1), ('emerging', 1), ('ecosystem', 1), ('basic', 1), ('blockchain', 1), ('work', 1), ('cutting', 1), ('edge', 1), ('application', 1), ('written', 1), ('experienced', 1), ('educator', 1), ('chapter', 1), ('designed', 1), ('progress', 1), ('potential', 1), ('student', 1)]
[('vr', 2), ('ai', 2), ('coaching', 2), ('training', 2), ('book', 1), ('aim', 1), ('explore', 1), ('risk', 1), ('opportunity', 1), ('eye', 1), ('toward', 1), ('emerging', 1), ('trend', 1), ('web', 1), ('metaverse', 1), ('become', 1), ('increasingly', 1), ('important', 1), ('company', 1), ('seeking', 1), ('develop', 1), ('retain', 1), ('talent', 1), ('advent', 1), ('technology', 1)]
[('israeli', 2), ('police', 2), ('book', 1), ('present', 1), ('important', 1), ('advance', 1), ('science', 1), ('based', 1), ('empirical', 1), ('data', 1), ('past', 1), ('decade', 1), ('making', 1), ('significant', 1), ('contribution', 1), ('broader', 1), ('aspect', 1), ('policing', 1), ('literature', 1), ('address', 1), ('major', 1), ('issue', 1), ('contemporary', 1), ('interest', 1), ('beyond', 1), ('border', 1), ('including', 1), ('crime', 1), ('control', 1), ('community', 1), ('relationship', 1)]
[('economy', 3), ('shadow', 2), ('fueled', 1), ('corruption', 1), ('fraud', 1), ('organized', 1), ('crime', 1), ('known', 1), ('informal', 1), ('black', 1), ('market', 1), ('illegal', 1), ('underground', 1), ('currently', 1), ('rise', 1), ('worldwide', 1), ('book', 1), ('address', 1), ('player', 1), ('involved', 1), ('examining', 1), ('various', 1), ('aspect', 1), ('criminal', 1), ('law', 1), ('prosecution', 1), ('featuring', 1), ('contribution', 1), ('world', 1), ('renowned', 1)]
[('control', 2), ('industrial', 2), ('six', 2), ('chapter', 2), ('comprehensive', 1), ('handbook', 1), ('cover', 1), ('fundamental', 1), ('security', 1), ('concept', 1), ('methodology', 1), ('relevant', 1), ('information', 1), ('pertaining', 1), ('supervisory', 1), ('data', 1), ('acquisition', 1), ('scada', 1), ('system', 1), ('used', 1), ('utility', 1), ('facility', 1), ('worldwide', 1), ('including', 1), ('new', 1), ('revised', 1), ('numerous', 1), ('additional', 1), ('figure', 1)]
[('communication', 2), ('today', 1), ('world', 1), ('characterised', 1), ('condition', 1), ('persistent', 1), ('semi', 1), ('permanent', 1), ('connectivity', 1), ('seems', 1), ('connect', 1), ('alienate', 1), ('death', 1), ('web', 1), ('greg', 1), ('singh', 1), ('draw', 1), ('range', 1), ('approach', 1), ('intellectual', 1), ('tradition', 1), ('scholarly', 1), ('discipline', 1), ('engage', 1), ('key', 1), ('question', 1), ('underpinning', 1), ('medium', 1), ('ecosystem', 1)]
[('maritime', 4), ('community', 2), ('book', 1), ('provides', 1), ('single', 1), ('comprehensive', 1), ('source', 1), ('necessary', 1), ('information', 1), ('understanding', 1), ('preventing', 1), ('reducing', 1), ('threat', 1), ('defines', 1), ('comprises', 1), ('approach', 1), ('security', 1), ('perspective', 1), ('protecting', 1), ('infrastructure', 1), ('order', 1), ('protect', 1), ('cargo', 1), ('includes', 1), ('discussion', 1)]
[('murder', 2), ('body', 2), ('case', 2), ('step', 2), ('prove', 1), ('guilty', 1), ('practical', 1), ('guide', 1), ('police', 1), ('prosecutor', 1), ('provides', 1), ('expansive', 1), ('look', 1), ('history', 1), ('best', 1), ('method', 1), ('solve', 1), ('present', 1), ('court', 1), ('author', 1), ('take', 1), ('reader', 1), ('first', 1), ('day', 1), ('homicide', 1), ('investigation', 1)]
[('edition', 2), ('new', 2), ('national', 2), ('addressing', 1), ('mandate', 1), ('legislation', 1), ('introduced', 1), ('first', 1), ('essential', 1), ('text', 1), ('identifies', 1), ('role', 1), ('private', 1), ('sector', 1), ('play', 1), ('securing', 1), ('homeland', 1), ('offer', 1), ('strategy', 1), ('aid', 1), ('fight', 1), ('international', 1), ('threat', 1), ('includes', 1), ('update', 1), ('nipp', 1), ('infrastructure', 1), ('protection', 1), ('plan', 1)]
[('book', 2), ('law', 2), ('enforcement', 2), ('attack', 2), ('ground', 1), ('breaking', 1), ('first', 1), ('defensive', 1), ('tactic', 1), ('publication', 1), ('realistically', 1), ('address', 1), ('limited', 1), ('training', 1), ('officer', 1), ('currently', 1), ('receive', 1), ('concentrate', 1), ('avoiding', 1), ('initial', 1), ('moving', 1), ('safety', 1), ('deploying', 1), ('secondary', 1), ('weapon', 1), ('surviving', 1), ('concept', 1), ('based', 1), ('upon', 1), ('extensive', 1)]
[('cyber', 3), ('attack', 2), ('cogent', 1), ('overview', 1), ('threat', 1), ('spectrum', 1), ('cyberspace', 1), ('weapon', 1), ('book', 1), ('introduces', 1), ('arsenal', 1), ('tool', 1), ('sophisticated', 1), ('targeting', 1), ('national', 1), ('security', 1), ('critical', 1), ('infrastructure', 1), ('sector', 1), ('topic', 1), ('include', 1), ('history', 1), ('cybersecurity', 1), ('computer', 1), ('industry', 1), ('intelligence', 1), ('recent', 1), ('conflict', 1)]
[('system', 2), ('open', 2), ('learning', 2), ('author', 1), ('text', 1), ('concentrate', 1), ('management', 1), ('support', 1), ('needed', 1), ('distance', 1), ('help', 1), ('reader', 1), ('decide', 1), ('whether', 1), ('appropriate', 1), ('given', 1), ('situation', 1)]
[('transportation', 3), ('security', 2), ('book', 1), ('provides', 1), ('thorough', 1), ('coverage', 1), ('examining', 1), ('sea', 1), ('land', 1), ('air', 1), ('system', 1), ('linkage', 1), ('topic', 1), ('include', 1), ('hazardous', 1), ('material', 1), ('handling', 1), ('securing', 1), ('network', 1), ('logistics', 1), ('essential', 1), ('supply', 1), ('chain', 1), ('risk', 1), ('assessment', 1), ('regulatory', 1), ('framework', 1), ('strategic', 1), ('planning', 1), ('innovation', 1)]
[('academy', 2), ('place', 2), ('urbanism', 1), ('founded', 1), ('mission', 1), ('recognise', 1), ('encourage', 1), ('celebrate', 1), ('across', 1), ('uk', 1), ('europe', 1), ('beyond', 1), ('organisation', 1), ('create', 1), ('sustain', 1), ('book', 1), ('compendium', 1), ('seventy', 1), ('five', 1), ('shortlisted', 1), ('part', 1), ('annual', 1), ('award', 1), ('scheme', 1), ('cover', 1)]
[('marketing', 3), ('planning', 2), ('market', 2), ('making', 1), ('happen', 1), ('prompted', 1), ('need', 1), ('practising', 1), ('manager', 1), ('found', 1), ('traditional', 1), ('text', 1), ('fine', 1), ('theory', 1), ('hard', 1), ('apply', 1), ('special', 1), ('short', 1), ('hold', 1), ('fails', 1), ('company', 1), ('either', 1), ('fit', 1), ('organizational', 1), ('culture', 1), ('condition', 1)]
[('crime', 3), ('criminal', 3), ('behavior', 2), ('student', 1), ('friendly', 1), ('textbook', 1), ('defines', 1), ('explains', 1), ('concept', 1), ('law', 1), ('criminology', 1), ('book', 1), ('compare', 1), ('contrast', 1), ('early', 1), ('today', 1), ('modern', 1), ('form', 1), ('explores', 1), ('society', 1), ('response', 1), ('past', 1), ('present', 1), ('day', 1), ('cover', 1), ('major', 1), ('lesser', 1), ('known', 1), ('causation', 1)]
[('law', 3), ('enforcement', 3), ('information', 2), ('technology', 2), ('soon', 2), ('considered', 2), ('play', 1), ('increasingly', 1), ('integral', 1), ('role', 1), ('delivery', 1), ('agency', 1), ('lag', 1), ('mismanaged', 1), ('similarly', 1), ('leader', 1), ('without', 1), ('basic', 1), ('knowledge', 1), ('lacking', 1), ('managerial', 1), ('competency', 1), ('provides', 1)]
[('weapon', 2), ('proliferation', 2), ('book', 2), ('continued', 2), ('nonproliferation', 1), ('issue', 1), ('mass', 1), ('destruction', 1), ('provides', 1), ('understanding', 1), ('risk', 1), ('recommends', 1), ('path', 1), ('limit', 1), ('addressing', 1), ('underlying', 1), ('reason', 1), ('threat', 1), ('present', 1), ('introduces', 1), ('factor', 1), ('fuel', 1), ('development', 1), ('defines', 1), ('term', 1), ('wmd', 1)]
[('commit', 2), ('criminal', 2), ('felonious', 1), ('activity', 1), ('prisoner', 1), ('reach', 1), ('society', 1), ('every', 1), ('day', 1), ('inmate', 1), ('run', 1), ('lucrative', 1), ('drug', 1), ('operation', 1), ('fraud', 1), ('hire', 1), ('contract', 1), ('murder', 1), ('multitude', 1), ('offense', 1), ('inside', 1), ('wall', 1), ('prison', 1), ('practical', 1), ('investigation', 1), ('correctional', 1), ('facility', 1), ('give', 1), ('sound', 1), ('advice', 1), ('handle', 1), ('crime', 1)]
[('solution', 2), ('software', 2), ('demand', 1), ('integrated', 1), ('constructed', 1), ('combination', 1), ('existing', 1), ('newly', 1), ('developed', 1), ('increase', 1), ('daily', 1), ('virtual', 1), ('project', 1), ('management', 1), ('today', 1), ('future', 1), ('focus', 1), ('critical', 1), ('characteristic', 1), ('underlying', 1), ('work', 1), ('actually', 1), ('get', 1), ('done', 1), ('traditional', 1), ('collocated', 1), ('engineering', 1), ('environment', 1), ('examines', 1), ('change', 1)]
[('interview', 2), ('legal', 2), ('seventh', 1), ('publication', 1), ('global', 1), ('leader', 1), ('policing', 1), ('court', 1), ('prison', 1), ('series', 1), ('book', 1), ('gather', 1), ('empirical', 1), ('data', 1), ('judge', 1), ('justice', 1), ('different', 1), ('system', 1), ('cover', 1), ('practitioner', 1), ('experience', 1), ('interpretation', 1), ('current', 1), ('development', 1), ('judicial', 1), ('issue', 1), ('criminal', 1), ('law', 1)]
[('biometric', 2), ('book', 2), ('technical', 2), ('either', 1), ('extraordinarily', 1), ('technophile', 1), ('extremely', 1), ('elementary', 1), ('lay', 1), ('person', 1), ('striking', 1), ('balance', 1), ('geared', 1), ('toward', 1), ('business', 1), ('security', 1), ('manager', 1), ('required', 1), ('make', 1), ('purchasing', 1), ('migration', 1), ('adoption', 1), ('decision', 1), ('presenting', 1), ('background', 1), ('various', 1), ('technology', 1)]
[('book', 1), ('introduces', 1), ('field', 1), ('artificial', 1), ('intelligence', 1), ('medicine', 1), ('new', 1), ('research', 1), ('area', 1), ('combine', 1), ('sophisticated', 1), ('representational', 1), ('computing', 1), ('technique', 1), ('insight', 1), ('expert', 1), ('physician', 1), ('produce', 1), ('tool', 1), ('improving', 1), ('health', 1), ('care', 1)]
[('society', 3), ('computer', 2), ('information', 2), ('book', 1), ('examines', 1), ('unfolding', 1), ('cultural', 1), ('organizational', 1), ('impact', 1), ('human', 1), ('analysis', 1), ('discus', 1), ('role', 1), ('technology', 1), ('life', 1), ('interdependence', 1), ('creation', 1), ('expectation', 1)]
[('privacy', 2), ('book', 1), ('offer', 1), ('analysis', 1), ('impact', 1), ('resulting', 1), ('reinforced', 1), ('technology', 1), ('discus', 1), ('fundamental', 1), ('risk', 1), ('challenge', 1), ('protecting', 1), ('digital', 1), ('age', 1)]
[('international', 2), ('executive', 2), ('law', 2), ('enforcement', 2), ('police', 1), ('symposium', 1), ('coordinate', 1), ('annual', 1), ('conference', 1), ('evaluate', 1), ('critical', 1), ('issue', 1), ('policing', 1), ('recommend', 1), ('practical', 1), ('solution', 1), ('deployed', 1), ('across', 1), ('globe', 1), ('drawn', 1), ('proceeding', 1), ('volume', 1), ('contains', 1), ('contribution', 1), ('renowned', 1), ('criminal', 1), ('justice', 1)]
[('individual', 2), ('protective', 2), ('reference', 1), ('law', 1), ('enforcement', 1), ('security', 1), ('organization', 1), ('tasked', 1), ('protecting', 1), ('welfare', 1), ('group', 1), ('volume', 1), ('offer', 1), ('suggestion', 1), ('guidance', 1), ('confronting', 1), ('high', 1), ('threat', 1), ('scenario', 1), ('mundane', 1), ('detail', 1), ('detailing', 1), ('essence', 1), ('operation', 1), ('run', 1), ('large', 1), ('part', 1)]
[('criminology', 3), ('international', 2), ('global', 1), ('emerging', 1), ('field', 1), ('covering', 1), ('transnational', 1), ('crime', 1), ('traditionally', 1), ('focus', 1), ('mainstream', 1), ('criminal', 1), ('justice', 1), ('volume', 1), ('collection', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('presented', 1), ('first', 1), ('conference', 1), ('south', 1), ('asian', 1), ('society', 1), ('victimology', 1), ('sascv', 1)]
[('archaeology', 3), ('british', 3), ('isle', 3), ('guide', 1), ('ice', 1), ('age', 1), ('medieval', 1), ('period', 1), ('beginning', 1), ('introduction', 1), ('method', 1), ('technique', 1), ('modern', 1), ('author', 1), ('move', 1), ('cover', 1), ('dealing', 1), ('question', 1), ('first', 1), ('inhabited', 1)]
[('gang', 2), ('civil', 1), ('injunction', 1), ('become', 1), ('growing', 1), ('feature', 1), ('crime', 1), ('control', 1), ('program', 1), ('several', 1), ('state', 1), ('across', 1), ('nation', 1), ('volume', 1), ('examines', 1), ('effectiveness', 1), ('strategy', 1), ('explores', 1), ('accompanying', 1), ('constitutional', 1), ('controversy', 1), ('related', 1), ('freedom', 1), ('speech', 1), ('assembly', 1), ('right', 1), ('book', 1), ('discus', 1), ('cost', 1), ('violence', 1), ('society', 1)]
[('explains', 2), ('exploring', 1), ('concept', 1), ('methodology', 1), ('implement', 1), ('enterprise', 1), ('wide', 1), ('organizational', 1), ('resilience', 1), ('management', 1), ('book', 1), ('necessary', 1), ('step', 1), ('effective', 1), ('disaster', 1), ('preparedness', 1), ('identifies', 1), ('principle', 1), ('technique', 1), ('associated', 1), ('threat', 1), ('assessment', 1), ('business', 1), ('impact', 1), ('analysis', 1), ('cost', 1), ('advantage', 1), ('implementing', 1)]
[('problem', 2), ('revised', 1), ('include', 1), ('information', 1), ('analytical', 1), ('model', 1), ('wavelength', 1), ('independence', 1), ('radiation', 1), ('heat', 1), ('transfer', 1), ('augmented', 1), ('edition', 1), ('rearranged', 1), ('providing', 1), ('within', 1), ('chapter', 1), ('rather', 1), ('end', 1), ('book', 1), ('written', 1), ('ephraim', 1), ('sparrow', 1), ('generalist', 1), ('work', 1), ('broad', 1), ('range', 1), ('encompasses', 1), ('almost', 1)]
[('police', 3), ('drawn', 1), ('recent', 1), ('proceeding', 1), ('international', 1), ('executive', 1), ('symposium', 1), ('ipes', 1), ('volume', 1), ('explores', 1), ('major', 1), ('policing', 1), ('initiative', 1), ('evolution', 1), ('across', 1), ('globe', 1), ('present', 1), ('practical', 1), ('insight', 1), ('retooling', 1), ('profession', 1), ('book', 1), ('discus', 1), ('trend', 1), ('evolving', 1), ('role', 1), ('among', 1), ('democratic', 1), ('democratizing', 1), ('state', 1)]
[('interview', 2), ('presenting', 1), ('transcribed', 1), ('correction', 1), ('leader', 1), ('book', 1), ('offer', 1), ('comprehensive', 1), ('survey', 1), ('correctional', 1), ('programming', 1), ('management', 1), ('style', 1), ('used', 1), ('across', 1), ('nation', 1), ('volume', 1), ('series', 1), ('extends', 1), ('reach', 1), ('several', 1), ('new', 1), ('country', 1), ('including', 1), ('slovenia', 1), ('slovakia', 1), ('northern', 1), ('ireland', 1), ('conducted', 1), ('scholar', 1)]
[('crime', 3), ('white', 2), ('collar', 2), ('many', 1), ('approach', 1), ('understanding', 1), ('volume', 1), ('highlight', 1), ('importance', 1), ('police', 1), ('intelligence', 1), ('confronting', 1), ('criminal', 1), ('focus', 1), ('identification', 1), ('retrieval', 1), ('storage', 1), ('application', 1), ('information', 1), ('resource', 1), ('discus', 1), ('typology', 1), ('role', 1), ('structure', 1)]
[('computer', 2), ('forensic', 2), ('document', 2), ('design', 2), ('project', 2), ('field', 2), ('volume', 1), ('introduces', 1), ('scientist', 1), ('examiner', 1), ('expertise', 1), ('assist', 1), ('research', 1), ('interdisciplinary', 1), ('examining', 1), ('done', 1), ('far', 1), ('future', 1), ('look', 1), ('book', 1), ('guide', 1), ('anthropological', 1)]
[('politics', 2), ('united', 1), ('nation', 1), ('take', 1), ('unique', 1), ('approach', 1), ('focus', 1), ('persistent', 1), ('mostly', 1), ('singular', 1), ('emphasis', 1), ('member', 1), ('state', 1), ('place', 1), ('pursuit', 1), ('national', 1), ('political', 1), ('economic', 1), ('cultural', 1), ('ideological', 1), ('interest', 1), ('un', 1), ('affair', 1), ('project', 1), ('began', 1), ('effort', 1), ('research', 1), ('write', 1), ('ten', 1), ('year', 1), ('later', 1), ('sequel', 1)]
[('financial', 2), ('understanding', 1), ('motivation', 1), ('behind', 1), ('white', 1), ('collar', 1), ('crime', 1), ('often', 1), ('key', 1), ('apprehension', 1), ('successful', 1), ('prosecution', 1), ('individual', 1), ('second', 1), ('edition', 1), ('volume', 1), ('provides', 1), ('direct', 1), ('instruction', 1), ('aspect', 1), ('criminal', 1), ('investigation', 1), ('taking', 1), ('reader', 1), ('different', 1), ('approach', 1), ('used', 1), ('gathering', 1)]
[('cybercrime', 2), ('computer', 2), ('presenting', 1), ('broad', 1), ('based', 1), ('analysis', 1), ('volume', 1), ('explores', 1), ('many', 1), ('aspect', 1), ('investigation', 1), ('prosecution', 1), ('begin', 1), ('overview', 1), ('use', 1), ('digital', 1), ('device', 1), ('commit', 1), ('traditional', 1), ('crime', 1), ('next', 1), ('examines', 1), ('individual', 1), ('including', 1), ('involving', 1), ('obscenity', 1), ('child', 1)]
[('analysis', 3), ('effectiveness', 2), ('rate', 2), ('failure', 2), ('breaking', 1), ('oee', 1), ('methodology', 1), ('historical', 1), ('perspective', 1), ('book', 1), ('explores', 1), ('overall', 1), ('machine', 1), ('unveils', 1), ('novel', 1), ('design', 1), ('improvement', 1), ('method', 1), ('including', 1), ('hazard', 1), ('change', 1), ('finite', 1), ('element', 1), ('theory', 1), ('inventive', 1), ('problem', 1), ('solving', 1), ('cover', 1), ('loss', 1), ('new', 1)]
[('police', 3), ('drawn', 1), ('international', 1), ('executive', 1), ('symposium', 1), ('volume', 1), ('present', 1), ('insight', 1), ('leader', 1), ('researcher', 1), ('provide', 1), ('worldwide', 1), ('perspective', 1), ('case', 1), ('study', 1), ('complex', 1), ('interrelation', 1), ('socioeconomics', 1), ('crime', 1), ('policing', 1), ('influence', 1), ('issue', 1), ('practice', 1), ('developed', 1), ('developing', 1)]
[('nation', 3), ('book', 1), ('provides', 1), ('overview', 1), ('economic', 1), ('espionage', 1), ('practiced', 1), ('range', 1), ('around', 1), ('world', 1), ('focusing', 1), ('mass', 1), ('scale', 1), ('information', 1), ('taken', 1), ('china', 1), ('growth', 1), ('development', 1), ('supply', 1), ('understanding', 1), ('economy', 1), ('prosper', 1), ('suffer', 1), ('depending', 1), ('whether', 1), ('protecting', 1)]
[('attempt', 1), ('identify', 1), ('empirically', 1), ('supported', 1), ('psychosocial', 1), ('intervention', 1), ('child', 1), ('specific', 1), ('disorder', 1), ('commentary', 1), ('state', 1), ('research', 1), ('literature', 1), ('area', 1)]
[('weapon', 2), ('security', 2), ('transnational', 2), ('disaster', 2), ('globalization', 1), ('easy', 1), ('movement', 1), ('toxin', 1), ('across', 1), ('border', 1), ('transformed', 1), ('phenomenon', 1), ('book', 1), ('analyzes', 1), ('pressing', 1), ('current', 1), ('threat', 1), ('including', 1), ('mass', 1), ('destruction', 1), ('terrorism', 1), ('organized', 1), ('crime', 1), ('cybercrime', 1), ('natural', 1), ('human', 1), ('made', 1)]
[('book', 2), ('collection', 1), ('work', 1), ('previously', 1), ('published', 1), ('article', 1), ('journal', 1), ('police', 1), ('practice', 1), ('research', 1), ('provides', 1), ('conceptual', 1), ('analysis', 1), ('case', 1), ('study', 1), ('exploring', 1), ('historical', 1), ('sociopolitical', 1), ('context', 1), ('conflict', 1), ('order', 1), ('help', 1), ('reader', 1), ('better', 1), ('understand', 1), ('theme', 1), ('defines', 1), ('concept', 1), ('terrorism', 1)]
[('step', 2), ('process', 2), ('find', 2), ('investigative', 2), ('prove', 2), ('disprove', 2), ('volume', 1), ('present', 1), ('legal', 1), ('investigator', 1), ('reveals', 1), ('methodically', 1), ('report', 1), ('evidence', 1), ('every', 1), ('aspect', 1), ('similar', 1), ('scientific', 1), ('principle', 1), ('using', 1), ('research', 1), ('theory', 1), ('author', 1), ('protocol', 1), ('designed', 1), ('fact', 1)]
[('law', 2), ('enforcement', 2), ('agency', 2), ('force', 1), ('used', 1), ('quell', 1), ('control', 1), ('demonstration', 1), ('detain', 1), ('unruly', 1), ('individual', 1), ('result', 1), ('litigation', 1), ('bad', 1), ('press', 1), ('injury', 1), ('loss', 1), ('life', 1), ('best', 1), ('avoided', 1), ('accurate', 1), ('knowledge', 1), ('proper', 1), ('training', 1), ('le', 1), ('lethal', 1), ('option', 1), ('volume', 1), ('discus', 1), ('range', 1), ('choice', 1), ('available', 1)]
[('system', 4), ('security', 2), ('privacy', 2), ('cyber', 2), ('physical', 2), ('practical', 1), ('guide', 1), ('offer', 1), ('depth', 1), ('look', 1), ('recent', 1), ('challenge', 1), ('cps', 1), ('multiple', 1), ('application', 1), ('domain', 1), ('provides', 1), ('reader', 1), ('comprehensive', 1), ('view', 1), ('architecture', 1), ('cybersecurity', 1), ('actual', 1), ('implementation', 1), ('book', 1), ('first', 1)]
[('digital', 2), ('humanity', 2), ('collaboration', 1), ('within', 1), ('pertinent', 1), ('pressing', 1), ('topic', 1), ('traditional', 1), ('mode', 1), ('humanist', 1), ('working', 1), ('alone', 1), ('study', 1), ('supplemented', 1), ('explicitly', 1), ('co', 1), ('operative', 1), ('interdependent', 1), ('collaborative', 1), ('research', 1), ('particularly', 1), ('true', 1), ('computational', 1), ('method', 1), ('employed', 1), ('large', 1), ('scale', 1)]
[('management', 3), ('police', 2), ('book', 1), ('address', 1), ('various', 1), ('strategy', 1), ('available', 1), ('consolidation', 1), ('regionalization', 1), ('amalgamation', 1), ('agency', 1), ('new', 1), ('public', 1), ('npm', 1), ('enhanced', 1), ('performance', 1), ('civilianization', 1), ('organizational', 1), ('restructuring', 1)]
[('military', 2), ('conflict', 2), ('combat', 2), ('particularly', 1), ('land', 1), ('posse', 1), ('characteristic', 1), ('complex', 1), ('adaptive', 1), ('system', 1), ('force', 1), ('composed', 1), ('large', 1), ('number', 1), ('nonlinearly', 1), ('interacting', 1), ('part', 1), ('organized', 1), ('dynamic', 1), ('command', 1), ('control', 1), ('network', 1), ('local', 1), ('action', 1), ('often', 1), ('appears', 1), ('disordered', 1), ('self', 1), ('organizes', 1), ('long', 1), ('range', 1), ('order', 1)]
[('flins', 3), ('nuclear', 2), ('science', 2), ('research', 2), ('acronym', 1), ('fuzzy', 1), ('logic', 1), ('intelligent', 1), ('technology', 1), ('fifth', 1), ('series', 1), ('conference', 1), ('cover', 1), ('state', 1), ('art', 1), ('development', 1), ('computational', 1), ('intelligence', 1), ('applied', 1), ('general', 1), ('engineering', 1), ('particular', 1), ('book', 1), ('outline', 1), ('trend', 1)]
[('based', 3), ('technology', 2), ('multi', 2), ('system', 2), ('spatial', 2), ('cooperative', 2), ('transmission', 2), ('book', 1), ('introduces', 1), ('basic', 1), ('theory', 1), ('key', 1), ('mimo', 1), ('antenna', 1), ('characteristic', 1), ('application', 1), ('dimensional', 1), ('ground', 1), ('air', 1), ('space', 1), ('communication', 1), ('several', 1), ('advanced', 1), ('multidimensional', 1)]
[('world', 1), ('live', 1), ('present', 1), ('plenty', 1), ('tricky', 1), ('impactful', 1), ('hard', 1), ('tomake', 1), ('decision', 1), ('taken', 1), ('sometimes', 1), ('available', 1), ('option', 1), ('ample', 1), ('time', 1), ('apparently', 1), ('binary', 1), ('either', 1), ('way', 1), ('often', 1), ('confront', 1), ('dilemma', 1), ('paradox', 1), ('even', 1), ('denial', 1), ('value', 1), ('dawn', 1), ('age', 1), ('intelligence', 1), ('robot', 1), ('gradually', 1), ('taking', 1)]
[('video', 2), ('mpeg', 2), ('standard', 2), ('multimedia', 2), ('book', 1), ('present', 1), ('comprehensive', 1), ('coverage', 1), ('transition', 1), ('analysis', 1), ('detection', 1), ('critical', 1), ('technology', 1), ('indexing', 1), ('embodied', 1), ('recent', 1), ('defining', 1), ('description', 1), ('interface', 1), ('content', 1), ('timely', 1), ('publication', 1), ('driving', 1), ('explosion', 1), ('application', 1)]
[('communication', 3), ('wireless', 2), ('technical', 2), ('iot', 2), ('textbook', 1), ('clearly', 1), ('valuable', 1), ('resource', 1), ('engineering', 1), ('student', 1), ('anyone', 1), ('want', 1), ('learn', 1), ('provides', 1), ('fundamental', 1), ('key', 1), ('theory', 1), ('method', 1), ('used', 1), ('interested', 1), ('learning', 1), ('detail', 1)]
[('engineering', 4), ('software', 2), ('knowledge', 2), ('first', 1), ('handbook', 1), ('cover', 1), ('comprehensively', 1), ('important', 1), ('field', 1), ('become', 1), ('interwoven', 1), ('recent', 1), ('year', 1), ('international', 1), ('expert', 1), ('contributed', 1), ('book', 1), ('chapter', 1), ('written', 1), ('way', 1), ('practitioner', 1)]
[('intelligence', 4), ('human', 3), ('unique', 2), ('artificial', 2), ('renowned', 1), ('computer', 1), ('scientist', 1), ('seek', 1), ('quality', 1), ('prevail', 1), ('greatest', 1), ('fear', 1), ('ai', 1), ('rule', 1), ('digital', 1), ('life', 1), ('displaces', 1), ('entirely', 1), ('take', 1), ('decision', 1), ('making', 1), ('irreplaceable', 1)]
[('digital', 3), ('sharing', 3), ('medium', 1), ('everyday', 1), ('life', 1), ('provides', 1), ('nuanced', 1), ('account', 1), ('process', 1), ('culture', 1), ('complexity', 1), ('arise', 1), ('book', 1), ('explores', 1), ('definition', 1), ('role', 1), ('device', 1), ('platform', 1), ('use', 1), ('play', 1), ('practice', 1)]
[('addressing', 1), ('problem', 1), ('surrounding', 1), ('cybersecurity', 1), ('cyberspace', 1), ('book', 1), ('bridge', 1), ('gap', 1), ('technical', 1), ('political', 1), ('world', 1), ('increase', 1), ('understanding', 1), ('major', 1), ('security', 1), ('concern', 1), ('dependent', 1), ('society', 1), ('risk', 1), ('present', 1)]
[('digital', 3), ('forensics', 2), ('enterprise', 2), ('professional', 2), ('investigation', 1), ('process', 1), ('technology', 1), ('defend', 1), ('written', 1), ('forensic', 1), ('information', 1), ('security', 1), ('post', 1), ('secondary', 1), ('graduate', 1), ('looking', 1), ('knowledge', 1), ('infused', 1), ('utilized', 1), ('used', 1), ('throughout', 1)]
[('music', 2), ('meet', 1), ('design', 1), ('algorithm', 1), ('capture', 1), ('musical', 1), ('taste', 1), ('nbsp', 1), ('make', 1), ('recommender', 1), ('system', 1), ('lofty', 1), ('goal', 1), ('want', 1), ('broaden', 1), ('listener', 1), ('horizon', 1), ('help', 1), ('obscure', 1), ('musician', 1), ('find', 1), ('audience', 1), ('taking', 1), ('advantage', 1), ('enormous', 1), ('catalog', 1), ('offered', 1), ('company', 1), ('spotify', 1), ('apple', 1), ('pandora', 1)]
[('iran', 2), ('internet', 2), ('revolution', 1), ('twittered', 1), ('declared', 1), ('journalist', 1), ('andrew', 1), ('sullivan', 1), ('protest', 1), ('erupted', 1), ('june', 1), ('yet', 1), ('talk', 1), ('democratizing', 1), ('power', 1), ('regime', 1), ('china', 1), ('stable', 1), ('repressive', 1), ('fact', 1), ('authoritarian', 1), ('government', 1), ('effectively', 1), ('using', 1), ('suppress', 1), ('free', 1), ('speech', 1)]
[('fake', 1), ('news', 1), ('post', 1), ('twitter', 1), ('troll', 1), ('beginning', 1), ('happen', 1), ('misinformation', 1), ('move', 1), ('social', 1), ('medium', 1), ('feed', 1), ('everyday', 1), ('life', 1), ('online', 1), ('disinformation', 1), ('stormed', 1), ('political', 1), ('process', 1), ('worsened', 1), ('yet', 1), ('samuel', 1), ('woolley', 1), ('show', 1), ('urgent', 1), ('book', 1), ('pale', 1), ('comparison', 1), ('come', 1)]
[('police', 3), ('investigation', 1), ('legal', 1), ('political', 1), ('moral', 1), ('issue', 1), ('surrounding', 1), ('justice', 1), ('system', 1), ('use', 1), ('surveillance', 1), ('technology', 1), ('asks', 1), ('question', 1), ('citizen', 1), ('free', 1), ('country', 1), ('willing', 1), ('tolerate', 1), ('name', 1), ('public', 1), ('safety', 1), ('rethink', 1), ('scope', 1), ('power', 1), ('jon', 1), ('fasman', 1), ('rsquo', 1), ('chilling', 1), ('examination', 1)]
[('book', 1), ('offer', 1), ('critical', 1), ('reassessment', 1), ('embodiment', 1), ('materiality', 1), ('rhetorical', 1), ('consideration', 1), ('videogames', 1)]
[('social', 2), ('medium', 2), ('adolescent', 1), ('narrative', 1), ('walsh', 1), ('specifically', 1), ('explores', 1), ('impact', 1), ('teenager', 1), ('personal', 1), ('development', 1)]
[('model', 2), ('view', 2), ('pair', 2), ('book', 1), ('address', 1), ('range', 1), ('image', 1), ('registration', 1), ('problem', 1), ('automatic', 1), ('construction', 1), ('focus', 1), ('obtaining', 1), ('highly', 1), ('precise', 1), ('alignment', 1), ('different', 1), ('object', 1), ('avoid', 1), ('distortion', 1), ('contrast', 1), ('prior', 1), ('work', 1), ('exhibit', 1), ('relatively', 1), ('little', 1), ('overlap', 1), ('need', 1), ('prealigned', 1)]
[('software', 5), ('cbd', 2), ('engineering', 2), ('component', 1), ('based', 1), ('development', 1), ('emerging', 1), ('discipline', 1), ('promise', 1), ('take', 1), ('new', 1), ('era', 1), ('building', 1), ('achievement', 1), ('object', 1), ('oriented', 1), ('construction', 1), ('aim', 1), ('deliver', 1), ('cottage', 1), ('industry', 1), ('industrial', 1), ('age', 1), ('information', 1), ('technology', 1), ('wherein', 1)]
[('web', 5), ('intelligence', 4), ('computational', 3), ('based', 2), ('technology', 2), ('review', 1), ('volume', 1), ('introduces', 1), ('novel', 1), ('intelligent', 1), ('theory', 1), ('called', 1), ('cwi', 1), ('ci', 1), ('wt', 1), ('take', 1), ('depth', 1), ('look', 1), ('hybrid', 1), ('hwi', 1), ('artificial', 1), ('biological', 1), ('used', 1), ('build', 1)]
[('quality', 4), ('key', 2), ('software', 2), ('system', 2), ('conceptual', 2), ('idea', 1), ('measuring', 1), ('developing', 1), ('high', 1), ('gaining', 1), ('relevance', 1), ('moreover', 1), ('widely', 1), ('recognised', 1), ('obtaining', 1), ('better', 1), ('measure', 1), ('characteristic', 1), ('early', 1), ('artefact', 1), ('produced', 1), ('modelling', 1), ('phase', 1), ('improving', 1)]
[('approach', 2), ('nonmonotonic', 2), ('reasoning', 2), ('basic', 2), ('many', 1), ('field', 1), ('commonsense', 1), ('actually', 1), ('different', 1), ('representation', 1), ('idea', 1), ('construction', 1), ('book', 1), ('give', 1), ('logical', 1), ('formalization', 1), ('original', 1), ('explanatory', 1), ('us', 1), ('formalism', 1), ('biconsequence', 1), ('relation', 1), ('derived', 1), ('system', 1)]
[('multi', 2), ('objective', 2), ('solution', 2), ('moeas', 2), ('book', 1), ('present', 1), ('extensive', 1), ('variety', 1), ('problem', 1), ('across', 1), ('diverse', 1), ('discipline', 1), ('along', 1), ('statistical', 1), ('using', 1), ('evolutionary', 1), ('algorithm', 1), ('topic', 1), ('discussed', 1), ('serve', 1), ('promote', 1), ('wider', 1), ('understanding', 1), ('use', 1), ('aim', 1), ('find', 1), ('good', 1), ('high', 1), ('dimensional', 1), ('real', 1), ('world', 1)]
[('information', 3), ('technique', 2), ('watermarking', 1), ('involve', 1), ('concealment', 1), ('within', 1), ('text', 1), ('image', 1), ('transmission', 1), ('receiver', 1), ('minimum', 1), ('distortion', 1), ('new', 1), ('area', 1), ('research', 1), ('significant', 1), ('effect', 1), ('defence', 1), ('business', 1), ('copyright', 1), ('protection', 1), ('field', 1), ('need', 1)]
[('recent', 2), ('way', 2), ('year', 1), ('witnessed', 1), ('explosive', 1), ('growth', 1), ('multimedia', 1), ('computing', 1), ('communication', 1), ('application', 1), ('revolution', 1), ('transforming', 1), ('live', 1), ('work', 1), ('interact', 1), ('impacting', 1), ('business', 1), ('government', 1), ('service', 1), ('education', 1), ('entertainment', 1), ('health', 1), ('care', 1), ('operate', 1), ('important', 1), ('book', 1), ('summarizes', 1)]
[('machine', 2), ('learning', 2), ('deal', 1), ('issue', 1), ('build', 1), ('computer', 1), ('program', 1), ('improve', 1), ('performance', 1), ('task', 1), ('experience', 1), ('algorithm', 1), ('proven', 1), ('practical', 1), ('value', 1), ('variety', 1), ('application', 1), ('domain', 1), ('surprisingly', 1), ('field', 1), ('software', 1), ('engineering', 1), ('turn', 1), ('fertile', 1), ('ground', 1), ('many', 1)]
[('flins', 2), ('intelligent', 2), ('computational', 2), ('applied', 2), ('research', 2), ('originally', 1), ('acronym', 1), ('fuzzy', 1), ('logic', 1), ('technology', 1), ('nuclear', 1), ('science', 1), ('extended', 1), ('include', 1), ('system', 1), ('sixth', 1), ('series', 1), ('international', 1), ('conference', 1), ('cover', 1), ('state', 1), ('art', 1), ('development', 1), ('intelligence', 1)]
[('became', 1), ('apparent', 1), ('tragic', 1), ('event', 1), ('september', 1), ('terrorist', 1), ('group', 1), ('increasingly', 1), ('using', 1), ('internet', 1), ('communication', 1), ('propaganda', 1), ('tool', 1), ('safely', 1), ('communicate', 1), ('affiliate', 1), ('coordinate', 1), ('action', 1), ('plan', 1), ('raise', 1), ('fund', 1), ('introduce', 1), ('new', 1), ('supporter', 1), ('network', 1), ('evident', 1), ('large', 1), ('number', 1), ('web', 1)]
[('fuzzy', 4), ('relational', 2), ('calculus', 2), ('application', 2), ('engineering', 2), ('linear', 2), ('book', 1), ('examines', 1), ('theory', 1), ('various', 1), ('subject', 1), ('scope', 1), ('text', 1), ('cover', 1), ('unified', 1), ('exact', 1), ('method', 1), ('algorithm', 1), ('direct', 1), ('inverse', 1), ('problem', 1), ('resolution', 1), ('extensive', 1), ('relation', 1), ('composition', 1), ('system', 1)]
[('volume', 1), ('collect', 1), ('refereed', 1), ('contribution', 1), ('based', 1), ('presentation', 1), ('made', 1), ('sixth', 1), ('workshop', 1), ('advanced', 1), ('mathematical', 1), ('computational', 1), ('tool', 1), ('metrology', 1), ('held', 1), ('istituto', 1), ('di', 1), ('metrologia', 1), ('colonnetti', 1), ('imgc', 1), ('torino', 1), ('italy', 1), ('september', 1), ('provides', 1), ('forum', 1), ('metrologists', 1), ('mathematician', 1), ('software', 1), ('engineer', 1)]
[('asian', 2), ('reliability', 2), ('state', 2), ('research', 2), ('international', 1), ('workshop', 1), ('advanced', 1), ('modeling', 1), ('symposium', 1), ('dissemination', 1), ('art', 1), ('presentation', 1), ('practice', 1), ('engineering', 1), ('related', 1), ('issue', 1), ('asia', 1), ('brings', 1), ('together', 1), ('researcher', 1), ('scientist', 1), ('practitioner', 1), ('country', 1), ('discus', 1)]
[('data', 3), ('mining', 2), ('practitioner', 2), ('modeling', 1), ('hot', 1), ('topic', 1), ('fast', 1), ('development', 1), ('wide', 1), ('application', 1), ('rich', 1), ('research', 1), ('content', 1), ('many', 1), ('academic', 1), ('attracted', 1), ('work', 1), ('area', 1), ('view', 1), ('promoting', 1), ('communication', 1), ('collaboration', 1), ('among', 1), ('researcher', 1), ('hong', 1), ('kong', 1), ('workshop', 1)]
[('software', 5), ('system', 2), ('critical', 2), ('quality', 2), ('surround', 1), ('component', 1), ('everything', 1), ('family', 1), ('car', 1), ('electrical', 1), ('power', 1), ('military', 1), ('equipment', 1), ('play', 1), ('increasing', 1), ('role', 1), ('life', 1), ('livelihood', 1), ('becomes', 1), ('ability', 1), ('deliver', 1), ('high', 1)]
[('together', 2), ('psychology', 2), ('workshop', 2), ('ncpw', 2), ('science', 2), ('book', 1), ('collect', 1), ('refereed', 1), ('version', 1), ('paper', 1), ('presented', 1), ('eighth', 1), ('neural', 1), ('computation', 1), ('established', 1), ('series', 1), ('brings', 1), ('researcher', 1), ('different', 1), ('discipline', 1), ('artificial', 1), ('intelligence', 1), ('cognitive', 1), ('computer', 1), ('neurobiology', 1), ('philosophy', 1)]
[('approach', 2), ('pattern', 2), ('recognition', 2), ('object', 2), ('book', 1), ('provides', 1), ('fundamentally', 1), ('new', 1), ('characterized', 1), ('relation', 1), ('instead', 1), ('using', 1), ('feature', 1), ('model', 1), ('dissimilarity', 1), ('representation', 1), ('bridge', 1), ('gap', 1), ('traditionally', 1), ('opposing', 1), ('statistical', 1), ('structural', 1), ('physical', 1), ('phenomenon', 1)]
[('production', 4), ('complex', 2), ('system', 2), ('biological', 2), ('cell', 2), ('review', 1), ('volume', 1), ('devoted', 1), ('discussion', 1), ('analogy', 1), ('difference', 1), ('natural', 1), ('made', 1), ('economic', 1), ('industrial', 1), ('taking', 1), ('unified', 1), ('look', 1), ('based', 1), ('observation', 1), ('many', 1), ('network', 1), ('unit', 1)]
[('paper', 2), ('computer', 2), ('network', 2), ('book', 1), ('present', 1), ('selective', 1), ('collection', 1), ('th', 1), ('international', 1), ('symposium', 1), ('information', 1), ('science', 1), ('held', 1), ('istanbul', 1), ('turkey', 1), ('selected', 1), ('span', 1), ('wide', 1), ('spectrum', 1), ('topic', 1), ('including', 1), ('internet', 1), ('multimedia', 1), ('security', 1), ('cryptography', 1), ('wireless', 1), ('parallel', 1), ('distributed', 1), ('computing', 1)]
[('weather', 2), ('computer', 2), ('geosciences', 1), ('particular', 1), ('numerical', 1), ('prediction', 1), ('demanding', 1), ('highest', 1), ('level', 1), ('available', 1), ('power', 1), ('european', 1), ('centre', 1), ('medium', 1), ('range', 1), ('forecast', 1), ('experience', 1), ('using', 1), ('supercomputer', 1), ('field', 1), ('organizes', 1), ('every', 1), ('year', 1), ('workshop', 1), ('bringing', 1), ('together', 1), ('manufacturer', 1), ('scientist', 1), ('researcher', 1)]
[('ictca', 1), ('conference', 1), ('provides', 1), ('interdisciplinary', 1), ('forum', 1), ('active', 1), ('researcher', 1), ('academia', 1), ('industry', 1), ('varying', 1), ('background', 1), ('discus', 1), ('state', 1), ('art', 1), ('development', 1), ('result', 1), ('theoretical', 1), ('computational', 1), ('acoustic', 1), ('related', 1), ('topic', 1), ('paper', 1), ('presented', 1), ('meeting', 1), ('cover', 1), ('acoustical', 1), ('problem', 1), ('common', 1), ('interest', 1), ('across', 1)]
[('weather', 2), ('computer', 2), ('geosciences', 1), ('particular', 1), ('numerical', 1), ('prediction', 1), ('demanding', 1), ('highest', 1), ('level', 1), ('available', 1), ('power', 1), ('european', 1), ('centre', 1), ('medium', 1), ('range', 1), ('forecast', 1), ('experience', 1), ('using', 1), ('supercomputer', 1), ('field', 1), ('organizes', 1), ('every', 1), ('year', 1), ('workshop', 1), ('bringing', 1), ('together', 1), ('manufacturer', 1), ('scientist', 1), ('researcher', 1)]
[('web', 2), ('learning', 2), ('technology', 2), ('based', 1), ('involves', 1), ('use', 1), ('appropriate', 1), ('corresponding', 1), ('pedagogical', 1), ('approach', 1), ('managed', 1), ('context', 1), ('today', 1), ('educational', 1), ('setting', 1), ('book', 1), ('feature', 1), ('interesting', 1), ('range', 1), ('leading', 1), ('edge', 1), ('work', 1), ('researcher', 1), ('practitioner', 1), ('applied', 1), ('current', 1), ('various', 1), ('endeavour', 1), ('volume', 1)]
[('theory', 4), ('language', 2), ('automaton', 2), ('research', 1), ('result', 1), ('published', 1), ('book', 1), ('range', 1), ('pure', 1), ('mathematical', 1), ('semigroup', 1), ('discrete', 1), ('mathematics', 1), ('etc', 1), ('theoretical', 1), ('computer', 1), ('science', 1), ('particular', 1), ('formal', 1), ('paper', 1), ('address', 1), ('issue', 1), ('algebraic', 1), ('combinatorial', 1), ('semigroups', 1), ('word', 1), ('structure', 1)]
[('theory', 4), ('formal', 2), ('system', 2), ('volume', 1), ('present', 1), ('research', 1), ('result', 1), ('ranging', 1), ('pure', 1), ('mathematical', 1), ('semigroup', 1), ('graph', 1), ('etc', 1), ('theoretical', 1), ('applied', 1), ('computer', 1), ('science', 1), ('language', 1), ('automaton', 1), ('code', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('knowledge', 1), ('database', 1)]
[('wireless', 4), ('network', 2), ('th', 1), ('ifip', 1), ('international', 1), ('conference', 1), ('personal', 1), ('communication', 1), ('cover', 1), ('wide', 1), ('spectrum', 1), ('sensor', 1), ('signalization', 1), ('traffic', 1), ('qoa', 1), ('ad', 1), ('hoc', 1), ('iee', 1), ('cellular', 1), ('mobile', 1), ('volume', 1), ('offer', 1), ('large', 1), ('range', 1), ('solution', 1), ('key', 1), ('problem', 1), ('networking', 1), ('explores', 1), ('challenging', 1), ('avenue', 1)]
[('book', 2), ('computer', 2), ('present', 1), ('latest', 1), ('technique', 1), ('algorithm', 1), ('research', 1), ('accomplishment', 1), ('trend', 1), ('science', 1), ('engineering', 1), ('collect', 1), ('together', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('presented', 1), ('th', 1), ('joint', 1), ('international', 1), ('conference', 1), ('theme', 1), ('year', 1), ('intellectual', 1), ('capital', 1), ('betterment', 1), ('human', 1), ('life', 1), ('article', 1)]
[('biometrics', 2), ('characteristic', 2), ('human', 2), ('field', 1), ('utilizes', 1), ('computer', 1), ('model', 1), ('physical', 1), ('behavioral', 1), ('being', 1), ('view', 1), ('reliable', 1), ('personal', 1), ('identification', 1), ('interest', 1), ('include', 1), ('visual', 1), ('image', 1), ('speech', 1), ('indeed', 1), ('anything', 1), ('might', 1), ('help', 1), ('uniquely', 1), ('identify', 1), ('individual', 1), ('side', 1), ('coin', 1)]
[('scientist', 2), ('book', 1), ('culmination', 1), ('three', 1), ('year', 1), ('research', 1), ('effort', 1), ('multidisciplinary', 1), ('project', 1), ('physicist', 1), ('mathematician', 1), ('computer', 1), ('social', 1), ('worked', 1), ('together', 1), ('arrive', 1), ('unifying', 1), ('picture', 1), ('complex', 1), ('network', 1), ('contributed', 1), ('chapter', 1), ('form', 1), ('reference', 1), ('various', 1), ('problem', 1), ('data', 1), ('analysis', 1), ('visualization', 1)]
[('miniaturization', 2), ('explosive', 1), ('increase', 1), ('information', 1), ('electronic', 1), ('device', 1), ('demand', 1), ('new', 1), ('recording', 1), ('technology', 1), ('material', 1), ('combine', 1), ('high', 1), ('density', 1), ('fast', 1), ('response', 1), ('long', 1), ('retention', 1), ('time', 1), ('rewriting', 1), ('capability', 1), ('predicted', 1), ('current', 1), ('silicon', 1), ('based', 1), ('computer', 1), ('circuit', 1), ('reaching', 1), ('physical', 1), ('limit', 1)]
[('bioinformatics', 3), ('book', 2), ('machine', 2), ('learning', 2), ('approach', 2), ('used', 2), ('cover', 1), ('wide', 1), ('range', 1), ('subject', 1), ('applying', 1), ('project', 1), ('succeeds', 1), ('key', 1), ('unique', 1), ('feature', 1), ('first', 1), ('introduces', 1), ('widely', 1), ('discus', 1), ('evaluation', 1), ('real', 1), ('case', 1), ('study', 1), ('individual', 1)]
[('computer', 2), ('computability', 1), ('played', 1), ('crucial', 1), ('role', 1), ('mathematics', 1), ('science', 1), ('leading', 1), ('discovery', 1), ('understanding', 1), ('classification', 1), ('decidable', 1), ('undecidable', 1), ('problem', 1), ('paving', 1), ('way', 1), ('modern', 1), ('era', 1), ('affecting', 1), ('deeply', 1), ('view', 1), ('world', 1), ('recent', 1), ('new', 1), ('paradigm', 1), ('computation', 1), ('based', 1), ('biological', 1), ('physical', 1), ('model', 1), ('address', 1)]
[('intrusion', 4), ('detection', 4), ('id', 2), ('important', 1), ('book', 1), ('introduces', 1), ('concept', 1), ('discus', 1), ('various', 1), ('approach', 1), ('system', 1), ('present', 1), ('architecture', 1), ('implementation', 1), ('emphasizes', 1), ('prediction', 1), ('learning', 1), ('algorithm', 1), ('highlight', 1), ('technique', 1), ('wired', 1), ('computer', 1)]
[('randomized', 2), ('search', 2), ('heuristic', 2), ('algorithm', 2), ('optimization', 2), ('evolutionary', 1), ('genetic', 1), ('evolution', 1), ('strategy', 1), ('ant', 1), ('colony', 1), ('particle', 1), ('swarm', 1), ('turn', 1), ('highly', 1), ('successful', 1), ('practice', 1), ('theory', 1), ('growing', 1), ('rapidly', 1), ('last', 1), ('five', 1), ('year', 1), ('attempt', 1), ('explain', 1), ('success', 1)]
[('area', 2), ('theory', 2), ('review', 1), ('volume', 1), ('consists', 1), ('set', 1), ('chapter', 1), ('written', 1), ('leading', 1), ('scholar', 1), ('founder', 1), ('field', 1), ('explores', 1), ('connection', 1), ('randomness', 1), ('scientific', 1), ('knowledge', 1), ('especially', 1), ('fruitful', 1), ('relationship', 1), ('computability', 1), ('complexity', 1), ('probability', 1), ('statistic', 1), ('information', 1)]
[('review', 2), ('pattern', 2), ('image', 2), ('machine', 2), ('data', 2), ('mining', 2), ('volume', 1), ('provides', 1), ('theoretical', 1), ('application', 1), ('point', 1), ('view', 1), ('recent', 1), ('development', 1), ('state', 1), ('art', 1), ('various', 1), ('area', 1), ('recognition', 1), ('processing', 1), ('learning', 1), ('soft', 1), ('computing', 1), ('web', 1), ('intelligence', 1), ('interpretation', 1), ('analysis', 1), ('essential', 1)]
[('sensor', 3), ('network', 3), ('many', 3), ('interesting', 1), ('application', 1), ('utility', 1), ('actually', 1), ('deployment', 1), ('realization', 1), ('rely', 1), ('continuous', 1), ('innovation', 1), ('solution', 1), ('challenging', 1), ('problem', 1), ('thus', 1), ('recently', 1), ('attracted', 1), ('attention', 1), ('researcher', 1), ('practitioner', 1), ('compilation', 1), ('handbook', 1)]
[('information', 2), ('coding', 2), ('theory', 2), ('topic', 2), ('last', 1), ('year', 1), ('witnessed', 1), ('rapid', 1), ('advancement', 1), ('research', 1), ('application', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('guide', 1), ('selected', 1), ('ongoing', 1), ('emerging', 1), ('consisting', 1), ('contribution', 1), ('known', 1), ('high', 1), ('profile', 1), ('researcher', 1), ('respective', 1), ('specialty', 1)]
[('graph', 3), ('based', 2), ('vector', 2), ('space', 2), ('book', 1), ('concerned', 1), ('fundamentally', 1), ('novel', 1), ('approach', 1), ('pattern', 1), ('recognition', 1), ('embedding', 1), ('aim', 1), ('condensing', 1), ('high', 1), ('representational', 1), ('power', 1), ('computationally', 1), ('efficient', 1), ('mathematically', 1), ('convenient', 1), ('feature', 1), ('volume', 1), ('utilizes', 1), ('dissimilarity', 1), ('representation', 1)]
[('business', 3), ('information', 3), ('technology', 2), ('study', 2), ('structure', 2), ('sector', 2), ('bit', 1), ('document', 1), ('driven', 1), ('change', 1), ('occur', 1), ('practice', 1), ('conducted', 1), ('participating', 1), ('country', 1), ('appropriate', 1), ('time', 1), ('interval', 1), ('encompassing', 1), ('wide', 1), ('spectrum', 1), ('industry', 1), ('provides', 1), ('hard', 1)]
[('work', 2), ('part', 2), ('book', 1), ('collect', 1), ('research', 1), ('leading', 1), ('edge', 1), ('researcher', 1), ('practitioner', 1), ('area', 1), ('analysis', 1), ('synthesis', 1), ('design', 1), ('implementation', 1), ('real', 1), ('time', 1), ('system', 1), ('application', 1), ('various', 1), ('industrial', 1), ('field', 1), ('grouped', 1), ('six', 1), ('together', 1), ('encompassing', 1), ('twenty', 1), ('chapter', 1), ('devoted', 1), ('mainstream', 1), ('subject', 1)]
[('technique', 2), ('truly', 1), ('interdisciplinary', 1), ('book', 1), ('knowledge', 1), ('worker', 1), ('business', 1), ('finance', 1), ('management', 1), ('socio', 1), ('economic', 1), ('science', 1), ('based', 1), ('fuzzy', 1), ('logic', 1), ('serf', 1), ('guide', 1), ('forecasting', 1), ('decision', 1), ('making', 1), ('evaluation', 1), ('environment', 1), ('involving', 1), ('uncertainty', 1), ('vagueness', 1), ('impression', 1), ('subjectivity', 1), ('traditional', 1), ('modeling', 1)]
[('computing', 2), ('sharing', 2), ('distributed', 2), ('resource', 2), ('last', 1), ('decade', 1), ('seen', 1), ('substantial', 1), ('increase', 1), ('commodity', 1), ('computer', 1), ('network', 1), ('performance', 1), ('increasingly', 1), ('address', 1), ('collaboration', 1), ('cycle', 1), ('data', 1), ('mode', 1), ('interaction', 1), ('involving', 1), ('grid', 1), ('emerging', 1), ('technology', 1), ('enables', 1), ('large', 1), ('scale', 1), ('widely', 1)]
[('online', 2), ('acceptance', 2), ('application', 1), ('gaining', 1), ('wide', 1), ('among', 1), ('general', 1), ('public', 1), ('company', 1), ('amazon', 1), ('google', 1), ('yahoo', 1), ('netflicks', 1), ('extremely', 1), ('last', 1), ('year', 1), ('largely', 1), ('becoming', 1), ('comfortable', 1), ('trusting', 1), ('internet', 1), ('increasing', 1), ('product', 1), ('make', 1), ('increasingly', 1), ('important', 1)]
[('labelled', 2), ('continuous', 2), ('state', 2), ('space', 2), ('theory', 2), ('bisimulation', 2), ('markov', 1), ('process', 1), ('probabilistic', 1), ('version', 1), ('transition', 1), ('system', 1), ('book', 1), ('cover', 1), ('basic', 1), ('probability', 1), ('measure', 1), ('develops', 1), ('lmps', 1), ('main', 1), ('topic', 1), ('covered', 1), ('logical', 1), ('characterization', 1), ('metric', 1), ('approximation', 1)]
[('algorithm', 2), ('volume', 1), ('contains', 1), ('article', 1), ('written', 1), ('leading', 1), ('researcher', 1), ('field', 1), ('architecture', 1), ('information', 1), ('system', 1), ('security', 1), ('first', 1), ('five', 1), ('chapter', 1), ('address', 1), ('several', 1), ('challenging', 1), ('geometric', 1), ('problem', 1), ('related', 1), ('topic', 1), ('major', 1), ('application', 1), ('pattern', 1), ('recognition', 1), ('image', 1), ('analysis', 1), ('digital', 1), ('geometry', 1), ('surface', 1)]
[('data', 5), ('quality', 3), ('volume', 2), ('poor', 1), ('known', 1), ('compromise', 1), ('credibility', 1), ('efficiency', 1), ('commercial', 1), ('public', 1), ('endeavour', 1), ('importance', 1), ('managing', 1), ('increased', 1), ('manifold', 1), ('diversity', 1), ('source', 1), ('format', 1), ('grows', 1), ('target', 1), ('light', 1), ('collaborative', 1), ('information', 1), ('system', 1), ('creation', 1)]
[('computer', 3), ('science', 3), ('book', 2), ('contribution', 2), ('present', 1), ('fundamental', 1), ('written', 1), ('recounted', 1), ('made', 1), ('highly', 1), ('original', 1), ('approach', 1), ('living', 1), ('history', 1), ('field', 1), ('scope', 1), ('broad', 1), ('cover', 1), ('aspect', 1), ('going', 1), ('theory', 1)]
[('service', 4), ('science', 2), ('emerging', 1), ('field', 1), ('many', 1), ('still', 1), ('consider', 1), ('lacking', 1), ('substance', 1), ('book', 1), ('aim', 1), ('change', 1), ('situation', 1), ('addressing', 1), ('following', 1), ('question', 1), ('big', 1), ('story', 1), ('main', 1), ('research', 1), ('problem', 1), ('connected', 1), ('world', 1), ('mean', 1), ('require', 1), ('different', 1), ('kind', 1), ('design', 1)]
[('international', 2), ('conference', 2), ('evolution', 2), ('evolang', 2), ('volume', 1), ('comprises', 1), ('refereed', 1), ('paper', 1), ('abstract', 1), ('th', 1), ('language', 1), ('held', 1), ('utrecht', 1), ('april', 1), ('leading', 1), ('field', 1), ('biennial', 1), ('meeting', 1), ('characterized', 1), ('invigorating', 1), ('multidisciplinary', 1), ('approach', 1), ('origin', 1)]
[('database', 3), ('specdb', 2), ('intelligent', 2), ('book', 1), ('introduces', 1), ('created', 1), ('represent', 1), ('host', 1), ('software', 1), ('specification', 1), ('machine', 1), ('readable', 1), ('format', 1), ('based', 1), ('principle', 1), ('artificial', 1), ('intelligence', 1), ('unit', 1), ('testing', 1), ('operation', 1), ('demonstrated', 1), ('via', 1), ('automated', 1), ('tool', 1), ('first', 1), ('automatically', 1), ('generates', 1), ('constraint', 1)]
[('fuzzy', 3), ('temporal', 3), ('spatial', 3), ('information', 3), ('study', 2), ('reasoning', 2), ('book', 1), ('comprehensively', 1), ('starting', 1), ('basic', 1), ('set', 1), ('theory', 1), ('development', 1), ('new', 1), ('model', 1), ('represent', 1), ('efficient', 1), ('complete', 1), ('algorithm', 1), ('application', 1), ('retrieval', 1), ('context', 1)]
[('created', 2), ('widespread', 1), ('use', 1), ('information', 1), ('communication', 1), ('technology', 1), ('ict', 1), ('global', 1), ('platform', 1), ('exchange', 1), ('idea', 1), ('good', 1), ('service', 1), ('benefit', 1), ('enormous', 1), ('boundless', 1), ('opportunity', 1), ('fraud', 1), ('deception', 1), ('cybercrime', 1), ('biggest', 1), ('growth', 1), ('industry', 1), ('around', 1), ('globe', 1), ('whether', 1)]
[('give', 2), ('vision', 2), ('book', 1), ('comprehensive', 1), ('overview', 1), ('advanced', 1), ('theory', 1), ('methodology', 1), ('application', 1), ('computer', 1), ('particularly', 1), ('extensive', 1), ('coverage', 1), ('robotic', 1), ('problem', 1), ('example', 1), ('chapter', 1), ('featured', 1), ('fourier', 1), ('method', 1), ('surface', 1), ('modeling', 1), ('analysis', 1), ('use', 1), ('constraint', 1), ('calibration', 1), ('free', 1), ('euclidean', 1)]
[('conference', 2), ('volume', 1), ('collect', 1), ('together', 1), ('paper', 1), ('presented', 1), ('twelfth', 1), ('neural', 1), ('computation', 1), ('psychology', 1), ('workshop', 1), ('ncpw', 1), ('held', 1), ('birkbeck', 1), ('college', 1), ('england', 1), ('invited', 1), ('submission', 1), ('neurocomputational', 1), ('model', 1), ('cognitive', 1), ('psychological', 1), ('process', 1), ('special', 1), ('theme', 1), ('theory', 1)]
[('library', 4), ('professional', 2), ('unique', 1), ('volume', 1), ('present', 1), ('latest', 1), ('scientific', 1), ('achievement', 1), ('researcher', 1), ('qualitative', 1), ('quantitative', 1), ('method', 1), ('scholar', 1), ('information', 1), ('resource', 1), ('methodological', 1), ('tool', 1), ('service', 1), ('except', 1), ('new', 1), ('technology', 1), ('facilitate', 1), ('innovation', 1)]
[('calculus', 4), ('logical', 3), ('comprehensive', 1), ('book', 1), ('provides', 1), ('adequate', 1), ('framework', 1), ('establish', 1), ('various', 1), ('inference', 1), ('enriched', 1), ('system', 1), ('natural', 1), ('deduction', 1), ('help', 1), ('formulate', 1), ('operational', 1), ('manner', 1), ('uncovering', 1), ('certain', 1), ('harmony', 1), ('functional', 1), ('label', 1), ('formula', 1), ('allows', 1)]
[('intelligence', 4), ('artificial', 3), ('intelligent', 3), ('machine', 2), ('branch', 1), ('computer', 1), ('science', 1), ('discipline', 1), ('study', 1), ('developing', 1), ('system', 1), ('imitating', 1), ('extending', 1), ('augmenting', 1), ('human', 1), ('mean', 1), ('technique', 1), ('realize', 1), ('behavior', 1), ('advanced', 1), ('consists', 1)]
[('access', 4), ('object', 2), ('policy', 2), ('control', 2), ('continuous', 1), ('growth', 1), ('number', 1), ('information', 1), ('user', 1), ('ensuring', 1), ('compliant', 1), ('company', 1), ('become', 1), ('big', 1), ('challenge', 1), ('role', 1), ('based', 1), ('rbac', 1), ('neutral', 1), ('model', 1), ('serf', 1), ('bridge', 1), ('academia', 1), ('industry', 1), ('probably', 1), ('suitable', 1)]
[('database', 2), ('information', 2), ('query', 2), ('manipulation', 1), ('integral', 1), ('part', 1), ('world', 1), ('becoming', 1), ('increasingly', 1), ('pervasively', 1), ('focused', 1), ('book', 1), ('put', 1), ('forward', 1), ('suggestion', 1), ('advocate', 1), ('preference', 1), ('fuzzy', 1), ('set', 1), ('central', 1), ('concern', 1), ('offer', 1), ('important', 1), ('contribution', 1), ('design', 1), ('intelligent', 1), ('system', 1)]
[('component', 3), ('property', 2), ('based', 1), ('approach', 1), ('system', 1), ('design', 1), ('challenging', 1), ('problem', 1), ('way', 1), ('prove', 1), ('correctness', 1), ('created', 1), ('usually', 1), ('constituent', 1), ('supposed', 1), ('correct', 1), ('possessing', 1), ('desirable', 1), ('free', 1), ('undesirable', 1), ('one', 1), ('operator', 1), ('destroy', 1), ('create', 1), ('new', 1)]
[('representation', 3), ('powerful', 2), ('multiscale', 2), ('signal', 2), ('many', 1), ('phenomenon', 1), ('around', 1), ('research', 1), ('document', 1), ('analysis', 1), ('understanding', 1), ('better', 1), ('described', 1), ('traditional', 1), ('way', 1), ('perspective', 1), ('recent', 1), ('emergence', 1), ('general', 1), ('fractal', 1), ('wavelet', 1), ('basis', 1), ('particular', 1)]
[('data', 3), ('mining', 3), ('linear', 2), ('algebra', 2), ('comprehensive', 1), ('volume', 1), ('present', 1), ('foundation', 1), ('idea', 1), ('technique', 1), ('applied', 1), ('related', 1), ('field', 1), ('gained', 1), ('increasing', 1), ('importance', 1), ('pattern', 1), ('recognition', 1), ('shown', 1), ('many', 1), ('current', 1), ('publication', 1), ('strong', 1), ('impact', 1), ('discipline', 1), ('psychology', 1)]
[('conference', 3), ('proceeding', 2), ('evolang', 2), ('international', 2), ('evolution', 2), ('language', 2), ('ix', 1), ('th', 1), ('leading', 1), ('new', 1), ('finding', 1), ('study', 1), ('origin', 1), ('attract', 1), ('multidisciplinary', 1), ('audience', 1), ('important', 1), ('resource', 1), ('researcher', 1), ('field', 1)]
[('intelligence', 4), ('science', 4), ('brain', 3), ('research', 2), ('interdisciplinary', 1), ('subject', 1), ('dedicated', 1), ('joint', 1), ('basic', 1), ('theory', 1), ('technology', 1), ('cognitive', 1), ('artificial', 1), ('others', 1), ('explores', 1), ('essence', 1), ('principle', 1), ('model', 1), ('natural', 1), ('molecular', 1), ('cell', 1), ('behavior', 1), ('level', 1)]
[('suppose', 4), ('cloud', 2), ('tell', 2), ('imagine', 1), ('world', 1), ('clothes', 1), ('sense', 1), ('blood', 1), ('pressure', 1), ('heart', 1), ('rate', 1), ('body', 1), ('temperature', 1), ('sensor', 1), ('transmit', 1), ('information', 1), ('continuously', 1), ('unobtrusively', 1), ('artificial', 1), ('intelligence', 1), ('detects', 1), ('anomaly', 1), ('doctor', 1), ('sigh', 1), ('relief', 1), ('round', 1)]
[('book', 2), ('technique', 2), ('contains', 1), ('selection', 1), ('paper', 1), ('presented', 1), ('xvii', 1), ('sigef', 1), ('congress', 1), ('present', 1), ('fuzzy', 1), ('logic', 1), ('neural', 1), ('network', 1), ('intelligent', 1), ('applied', 1), ('economic', 1), ('business', 1), ('problem', 1), ('useful', 1), ('researcher', 1), ('graduate', 1), ('student', 1), ('aiming', 1), ('introduce', 1), ('field', 1), ('quantitative', 1)]
[('approach', 2), ('transcription', 2), ('handwritten', 2), ('text', 2), ('recognition', 2), ('book', 1), ('present', 1), ('interactive', 1), ('multimodal', 1), ('efficient', 1), ('image', 1), ('rather', 1), ('full', 1), ('automation', 1), ('assist', 1), ('expert', 1), ('process', 1), ('htr', 1), ('system', 1), ('far', 1), ('perfect', 1), ('heavy', 1), ('human', 1), ('intervention', 1), ('often', 1), ('required', 1)]
[('automaton', 1), ('theory', 1), ('come', 1), ('prominence', 1), ('recent', 1), ('year', 1), ('plethora', 1), ('application', 1), ('field', 1), ('ranging', 1), ('verification', 1), ('xml', 1), ('processing', 1), ('file', 1), ('compression', 1), ('fact', 1), ('turing', 1), ('award', 1), ('awarded', 1), ('clarke', 1), ('emerson', 1), ('sifakis', 1), ('pioneering', 1), ('work', 1), ('model', 1), ('checking', 1), ('technique', 1), ('best', 1), ('knowledge', 1), ('single', 1)]
[('intelligence', 2), ('research', 2), ('book', 1), ('focus', 1), ('computational', 1), ('technique', 1), ('application', 1), ('fast', 1), ('growing', 1), ('promising', 1), ('topic', 1), ('drawn', 1), ('deal', 1), ('attention', 1), ('researcher', 1), ('year', 1), ('brings', 1), ('together', 1), ('many', 1), ('different', 1), ('aspect', 1), ('current', 1), ('technology', 1), ('neural', 1), ('network', 1), ('support', 1), ('vector', 1), ('machine', 1)]
[('sensory', 2), ('system', 2), ('image', 2), ('approach', 2), ('development', 1), ('autonomous', 1), ('controlled', 1), ('understanding', 1), ('data', 1), ('difficult', 1), ('important', 1), ('topic', 1), ('due', 1), ('unpredictable', 1), ('uncertain', 1), ('nature', 1), ('environment', 1), ('current', 1), ('processing', 1), ('computer', 1), ('vision', 1), ('adequate', 1), ('provide', 1), ('capability', 1), ('needed', 1), ('thus', 1), ('new', 1)]
[('book', 2), ('give', 1), ('complete', 1), ('systematic', 1), ('account', 1), ('software', 1), ('system', 1), ('minicomputer', 1), ('writing', 1), ('new', 1), ('driver', 1), ('privileged', 1), ('process', 1), ('perform', 1), ('operation', 1), ('ideal', 1), ('researcher', 1), ('professional', 1), ('general', 1), ('understanding', 1), ('nature', 1), ('programming', 1), ('assembly', 1), ('language', 1), ('enables', 1), ('reader', 1)]
[('introduction', 2), ('development', 2), ('book', 1), ('give', 1), ('practical', 1), ('specification', 1), ('language', 1), ('method', 1), ('approach', 1), ('high', 1), ('quality', 1), ('software', 1), ('using', 1), ('rigorous', 1), ('case', 1), ('technique', 1), ('suitable', 1), ('undergraduate', 1), ('postgraduate', 1), ('course', 1), ('addition', 1), ('industrial', 1), ('practitioner', 1), ('extensive', 1), ('example', 1)]
[('workshop', 3), ('book', 1), ('outgrowth', 1), ('neural', 1), ('adaptive', 1), ('control', 1), ('technology', 1), ('nact', 1), ('held', 1), ('glasgow', 1), ('selected', 1), ('participant', 1), ('asked', 1), ('substantially', 1), ('expand', 1), ('revise', 1), ('contribution', 1), ('make', 1), ('full', 1), ('paper', 1), ('organised', 1), ('connection', 1), ('three', 1), ('year', 1), ('european', 1), ('union', 1), ('funded', 1), ('basic', 1), ('research', 1), ('project', 1)]
[('informatics', 2), ('volume', 1), ('address', 1), ('state', 1), ('art', 1), ('future', 1), ('direction', 1), ('several', 1), ('senior', 1), ('researcher', 1), ('graduate', 1), ('student', 1), ('present', 1), ('research', 1), ('work', 1), ('purpose', 1), ('book', 1), ('disseminate', 1), ('latest', 1), ('scientific', 1), ('engineering', 1), ('technical', 1), ('information', 1), ('various', 1), ('field', 1), ('cover', 1), ('wide', 1), ('range', 1), ('subject', 1)]
[('individual', 2), ('semantic', 2), ('mechanism', 2), ('knowledge', 1), ('grid', 1), ('intelligent', 1), ('sustainable', 1), ('interaction', 1), ('environment', 1), ('consists', 1), ('autonomous', 1), ('self', 1), ('organized', 1), ('community', 1), ('adaptive', 1), ('networking', 1), ('evolving', 1), ('link', 1), ('network', 1), ('keeping', 1), ('meaningful', 1), ('connection', 1), ('flow', 1), ('dynamic', 1), ('resource', 1), ('sharing', 1), ('supporting', 1), ('effective', 1)]
[('scientific', 2), ('aristotle', 1), ('convincing', 1), ('philosophy', 1), ('likely', 1), ('shaped', 1), ('even', 1), ('indirectly', 1), ('many', 1), ('current', 1), ('belief', 1), ('prejudice', 1), ('attitude', 1), ('life', 1), ('includes', 1), ('way', 1), ('mind', 1), ('capacity', 1), ('private', 1), ('thought', 1), ('appears', 1), ('elude', 1), ('description', 1), ('book', 1), ('ingredient', 1), ('available', 1)]
[('discus', 2), ('computation', 2), ('world', 2), ('volume', 1), ('foreword', 1), ('sir', 1), ('roger', 1), ('penrose', 1), ('foundation', 1), ('relation', 1), ('nature', 1), ('focus', 1), ('main', 1), ('question', 1), ('contributor', 1), ('renowned', 1), ('expert', 1), ('helped', 1), ('shape', 1), ('cutting', 1), ('edge', 1), ('computational', 1), ('understanding', 1), ('universe', 1), ('variety', 1), ('perspective', 1)]
[('field', 3), ('book', 2), ('article', 2), ('computer', 1), ('used', 1), ('today', 1), ('technological', 1), ('world', 1), ('powerful', 1), ('tool', 1), ('simulate', 1), ('many', 1), ('complex', 1), ('phenomenon', 1), ('various', 1), ('introduction', 1), ('exciting', 1), ('development', 1), ('written', 1), ('expert', 1), ('respective', 1), ('teach', 1), ('example', 1), ('contains', 1), ('case', 1), ('study', 1), ('diverse', 1)]
[('fuzzy', 2), ('logic', 2), ('control', 2), ('product', 2), ('number', 1), ('application', 1), ('large', 1), ('book', 1), ('tell', 1), ('reader', 1), ('use', 1), ('find', 1), ('solution', 1), ('area', 1), ('system', 1), ('factory', 1), ('automation', 1), ('quality', 1), ('inspection', 1), ('instrumentation', 1), ('pattern', 1), ('recognition', 1), ('image', 1), ('analysis', 1), ('database', 1), ('query', 1), ('processing', 1), ('decision', 1), ('support', 1), ('data', 1), ('mining', 1), ('time', 1), ('series', 1)]
[('brain', 2), ('computational', 1), ('neuroanatomy', 1), ('emerging', 1), ('field', 1), ('utilizes', 1), ('various', 1), ('non', 1), ('invasive', 1), ('imaging', 1), ('modality', 1), ('mri', 1), ('dti', 1), ('quantifying', 1), ('spatiotemporal', 1), ('dynamic', 1), ('human', 1), ('structure', 1), ('normal', 1), ('clinical', 1), ('population', 1), ('discipline', 1), ('emerged', 1), ('twenty', 1), ('year', 1), ('ago', 1), ('made', 1), ('substantial', 1), ('progress', 1), ('past', 1), ('decade', 1)]
[('parametron', 3), ('josephson', 2), ('junction', 2), ('technology', 2), ('computer', 2), ('direct', 1), ('current', 1), ('flux', 1), ('using', 1), ('based', 1), ('principle', 1), ('seems', 1), ('answer', 1), ('search', 1), ('new', 1), ('future', 1), ('need', 1), ('power', 1), ('combination', 1), ('high', 1), ('switching', 1), ('speed', 1), ('highly', 1), ('integrable', 1), ('established', 1), ('account', 1)]
[('intelligent', 3), ('system', 3), ('book', 1), ('consists', 1), ('various', 1), ('contribution', 1), ('conjunction', 1), ('keywords', 1), ('reasoning', 1), ('widely', 1), ('cover', 1), ('theoretical', 1), ('practical', 1), ('aspect', 1), ('suitable', 1), ('researcher', 1), ('graduate', 1), ('student', 1), ('want', 1), ('study', 1), ('generally', 1)]
[('pattern', 3), ('recognition', 3), ('neural', 2), ('network', 2), ('research', 2), ('revitalization', 1), ('past', 1), ('year', 1), ('already', 1), ('impact', 1), ('development', 1), ('artificial', 1), ('intelligence', 1), ('although', 1), ('function', 1), ('limited', 1), ('doubt', 1), ('renewed', 1), ('progress', 1), ('application', 1)]
[('software', 3), ('reliability', 2), ('model', 2), ('book', 1), ('summarizes', 1), ('recent', 1), ('advance', 1), ('modelling', 1), ('almost', 1), ('existing', 1), ('classified', 1), ('interesting', 1), ('described', 1), ('detail', 1), ('application', 1), ('many', 1), ('industrial', 1), ('military', 1), ('commercial', 1), ('system', 1), ('become', 1), ('important', 1), ('research', 1), ('area', 1), ('although', 1)]
[('model', 3), ('book', 2), ('computer', 2), ('many', 1), ('deal', 1), ('technique', 1), ('designing', 1), ('building', 1), ('testing', 1), ('simulation', 1), ('seriously', 1), ('examined', 1), ('based', 1), ('inherent', 1), ('limitation', 1), ('essential', 1), ('role', 1), ('extending', 1), ('human', 1), ('knowledge', 1), ('fill', 1), ('need', 1), ('focus', 1), ('throughout', 1), ('yet', 1), ('exposition', 1), ('nature', 1)]
[('intelligent', 2), ('system', 2), ('information', 2), ('necessary', 1), ('handle', 1), ('modern', 1), ('computer', 1), ('based', 1), ('technology', 1), ('managing', 1), ('knowledge', 1), ('book', 1), ('discus', 1), ('theory', 1), ('required', 1), ('help', 1), ('provide', 1), ('solution', 1), ('difficult', 1), ('problem', 1), ('construction', 1), ('particular', 1), ('attention', 1), ('paid', 1), ('situation', 1), ('available', 1), ('data', 1)]
[('layout', 3), ('circuit', 3), ('area', 2), ('past', 1), ('decade', 1), ('research', 1), ('vlsi', 1), ('physical', 1), ('design', 1), ('directed', 1), ('toward', 1), ('automation', 1), ('process', 1), ('cost', 1), ('fabricating', 1), ('fast', 1), ('growing', 1), ('function', 1), ('technique', 1), ('developed', 1), ('aim', 1), ('produce', 1), ('small', 1), ('criterion', 1), ('optimality', 1), ('delay', 1), ('via', 1)]
[('intelligence', 2), ('book', 1), ('explores', 1), ('new', 1), ('rapidly', 1), ('developing', 1), ('area', 1), ('robotics', 1), ('describes', 1), ('state', 1), ('art', 1), ('control', 1), ('applied', 1), ('machine', 1), ('research', 1), ('initial', 1), ('stage', 1), ('manufacturing', 1), ('autonomous', 1), ('mobile', 1), ('robot', 1), ('complete', 1), ('account', 1), ('theoretical', 1), ('experimental', 1), ('result', 1), ('obtained', 1), ('last', 1), ('decade', 1), ('together', 1)]
[('china', 2), ('computer', 2), ('scientist', 2), ('significant', 1), ('progress', 1), ('certain', 1), ('area', 1), ('software', 1), ('engineering', 1), ('past', 1), ('five', 1), ('year', 1), ('volume', 1), ('first', 1), ('series', 1), ('report', 1), ('outstanding', 1), ('result', 1), ('chinese', 1), ('consists', 1), ('twelve', 1), ('paper', 1), ('contributed', 1), ('leading', 1), ('book', 1), ('professional', 1)]
[('information', 1), ('communication', 1), ('technology', 1), ('ict', 1), ('become', 1), ('generic', 1), ('indispensable', 1), ('tool', 1), ('addressing', 1), ('solving', 1), ('problem', 1), ('diverse', 1), ('area', 1), ('management', 1), ('social', 1), ('health', 1), ('service', 1), ('transportation', 1), ('security', 1), ('education', 1), ('cost', 1), ('equipment', 1), ('drop', 1), ('dramatically', 1), ('becomes', 1), ('widely', 1), ('accessible', 1), ('developing', 1), ('country', 1)]
[('system', 4), ('security', 3), ('issue', 2), ('book', 2), ('peer', 2), ('distributed', 1), ('network', 1), ('extremely', 1), ('important', 1), ('edited', 1), ('provides', 1), ('comprehensive', 1), ('treatment', 1), ('ranging', 1), ('attack', 1), ('kind', 1), ('solution', 1), ('prevention', 1), ('detection', 1), ('approach', 1), ('includes', 1), ('study', 1), ('range', 1), ('including', 1)]
[('process', 3), ('learning', 2), ('planning', 2), ('deal', 2), ('make', 2), ('machine', 2), ('important', 1), ('topic', 1), ('artificial', 1), ('intelligence', 1), ('algorithmic', 1), ('computing', 1), ('able', 1), ('learn', 1), ('improve', 1), ('performance', 1), ('complex', 1), ('task', 1), ('hand', 1), ('decision', 1), ('construction', 1), ('capable', 1)]
[('thinking', 2), ('book', 1), ('go', 1), ('right', 1), ('cause', 1), ('reason', 1), ('diversity', 1), ('way', 1), ('trick', 1), ('work', 1), ('effort', 1), ('failure', 1), ('artificial', 1), ('intelligence', 1), ('discus', 1), ('expected', 1), ('intelligent', 1), ('computer', 1), ('provides', 1), ('insight', 1), ('deeper', 1), ('layer', 1), ('mechanism', 1)]
[('physic', 2), ('nature', 2), ('dynamic', 2), ('computation', 2), ('law', 1), ('methodology', 1), ('starting', 1), ('provide', 1), ('powerful', 1), ('insight', 1), ('book', 1), ('contains', 1), ('number', 1), ('article', 1), ('illustrate', 1), ('field', 1), ('ranging', 1), ('quantum', 1), ('mechanic', 1), ('statistical', 1), ('nonlinear', 1), ('help', 1), ('elucidate', 1)]
[('cellular', 4), ('psa', 3), ('computation', 3), ('parallel', 2), ('substitution', 2), ('distributed', 2), ('array', 2), ('algorithm', 1), ('new', 1), ('model', 1), ('provides', 1), ('concise', 1), ('mapping', 1), ('process', 1), ('specified', 1), ('set', 1), ('operating', 1), ('concept', 1), ('make', 1), ('powerful', 1), ('tool', 1), ('modelling', 1)]
[('system', 3), ('network', 2), ('review', 1), ('volume', 1), ('represents', 1), ('first', 1), ('attempt', 1), ('provide', 1), ('comprehensive', 1), ('overview', 1), ('exciting', 1), ('rapidly', 1), ('evolving', 1), ('development', 1), ('book', 1), ('comprises', 1), ('specially', 1), ('commissioned', 1), ('article', 1), ('leading', 1), ('researcher', 1), ('area', 1), ('neural', 1), ('connectionist', 1), ('classifier', 1), ('adaptive', 1), ('genetic', 1), ('algorithm', 1), ('cellular', 1)]
[('basic', 2), ('pattern', 1), ('recognition', 1), ('computer', 1), ('vision', 1), ('application', 1), ('experienced', 1), ('enormous', 1), ('progress', 1), ('research', 1), ('development', 1), ('last', 1), ('decade', 1), ('comprehensive', 1), ('handbook', 1), ('chapter', 1), ('leading', 1), ('expert', 1), ('field', 1), ('document', 1), ('new', 1), ('advanced', 1), ('result', 1), ('book', 1), ('give', 1), ('total', 1), ('treatment', 1), ('method', 1)]
[('texture', 3), ('vision', 3), ('analysis', 2), ('surface', 2), ('object', 2), ('computer', 2), ('fundamental', 1), ('aspect', 1), ('human', 1), ('discriminate', 1), ('similar', 1), ('manner', 1), ('take', 1), ('advantage', 1), ('cue', 1), ('provided', 1), ('distinguish', 1), ('recognize', 1), ('used', 1), ('alone', 1), ('combination', 1), ('sensed', 1)]
[('mobile', 4), ('need', 3), ('wireless', 1), ('network', 1), ('undergone', 1), ('tremendous', 1), ('evolution', 1), ('start', 1), ('mainly', 1), ('motivated', 1), ('connectivity', 1), ('everywhere', 1), ('exemplified', 1), ('philosophy', 1), ('always', 1), ('access', 1), ('telephony', 1), ('first', 1), ('felt', 1), ('user', 1), ('followed', 1), ('internet', 1), ('application', 1), ('telecommunication', 1)]
[('system', 2), ('programming', 2), ('content', 1), ('axiom', 1), ('acg', 1), ('proof', 1), ('consistency', 1), ('qm', 1), ('zf', 1), ('zhang', 1), ('log', 1), ('language', 1), ('environment', 1), ('ai', 1), ('feng', 1), ('xu', 1), ('et', 1), ('al', 1), ('weak', 1), ('mutation', 1), ('method', 1), ('software', 1), ('testing', 1), ('relational', 1), ('test', 1), ('data', 1), ('zheng', 1), ('jiang', 1), ('logic', 1), ('liberated', 1), ('fol', 1), ('foundation', 1)]
[('mathematical', 2), ('biology', 2), ('present', 1), ('volume', 1), ('contains', 1), ('selected', 1), ('contributed', 1), ('paper', 1), ('biomat', 1), ('symposium', 1), ('lecture', 1), ('delivered', 1), ('keynote', 1), ('speaker', 1), ('plenary', 1), ('session', 1), ('chapter', 1), ('centered', 1), ('fundamental', 1), ('interdisciplinary', 1), ('area', 1), ('modeling', 1), ('biosystems', 1), ('biological', 1), ('physic', 1), ('evolution', 1)]
[('research', 3), ('neural', 2), ('network', 2), ('operation', 2), ('past', 1), ('year', 1), ('surge', 1), ('activity', 1), ('artificial', 1), ('although', 1), ('thrust', 1), ('originally', 1), ('came', 1), ('computer', 1), ('scientist', 1), ('electrical', 1), ('engineer', 1), ('recently', 1), ('attracted', 1), ('researcher', 1), ('field', 1), ('management', 1), ('industrial', 1), ('engineering', 1), ('despite', 1)]
[('head', 4), ('eye', 3), ('binocular', 2), ('series', 1), ('machine', 1), ('perception', 1), ('artificial', 1), ('intelligence', 1), ('book', 1), ('cover', 1), ('subject', 1), ('including', 1), ('harvard', 1), ('system', 1), ('robot', 1), ('torsional', 1), ('movement', 1), ('escape', 1), ('dodging', 1), ('behaviour', 1), ('reactive', 1), ('control', 1)]
[('book', 3), ('task', 2), ('new', 2), ('meeting', 2), ('address', 1), ('processing', 1), ('online', 1), ('handwritten', 1), ('note', 1), ('acquired', 1), ('electronic', 1), ('whiteboard', 1), ('modality', 1), ('handwriting', 1), ('recognition', 1), ('research', 1), ('main', 1), ('motivation', 1), ('smart', 1), ('room', 1), ('aim', 1), ('automate', 1), ('standard', 1), ('usually', 1), ('performed', 1), ('human', 1), ('summarized', 1), ('follows', 1)]
[('paper', 2), ('book', 1), ('contains', 1), ('carefully', 1), ('selected', 1), ('among', 1), ('presented', 1), ('th', 1), ('scandinavian', 1), ('conference', 1), ('image', 1), ('analysis', 1), ('author', 1), ('extended', 1), ('give', 1), ('depth', 1), ('discussion', 1), ('theory', 1), ('experimental', 1), ('validation', 1), ('method', 1), ('proposed', 1), ('topic', 1), ('covered', 1), ('current', 1), ('wide', 1), ('ranging', 1), ('include', 1)]
[('graph', 7), ('pattern', 3), ('recognition', 2), ('matching', 2), ('based', 1), ('structural', 1), ('idea', 1), ('transform', 1), ('perform', 1), ('analysis', 1), ('domain', 1), ('commonly', 1), ('referred', 1), ('large', 1), ('number', 1), ('method', 1), ('proposed', 1), ('edit', 1), ('distance', 1), ('instance', 1), ('defines', 1), ('dissimilarity', 1)]
[('method', 3), ('facility', 2), ('allow', 2), ('experimental', 2), ('fully', 1), ('appreciate', 1), ('new', 1), ('developed', 1), ('area', 1), ('machine', 1), ('vision', 1), ('necessary', 1), ('verification', 1), ('research', 1), ('typically', 1), ('expensive', 1), ('task', 1), ('term', 1), ('manpower', 1), ('consequently', 1), ('desirable', 1), ('adopt', 1), ('standard', 1), ('efficient', 1)]
[('learning', 3), ('kernel', 3), ('method', 3), ('book', 1), ('provides', 1), ('unique', 1), ('treatment', 1), ('important', 1), ('area', 1), ('machine', 1), ('answer', 1), ('question', 1), ('applied', 1), ('structured', 1), ('data', 1), ('class', 1), ('state', 1), ('art', 1), ('algorithm', 1), ('exhibit', 1), ('excellent', 1), ('result', 1), ('several', 1), ('application', 1), ('domain', 1), ('originally', 1), ('developed', 1)]
[('dimensional', 3), ('grammar', 3), ('array', 2), ('image', 2), ('present', 1), ('essay', 1), ('topic', 1), ('three', 1), ('object', 1), ('representation', 1), ('stochastic', 1), ('puzzle', 1), ('parallel', 1), ('recognition', 1), ('high', 1), ('uniquely', 1), ('parsable', 1), ('isometric', 1), ('replicated', 1), ('algorithm', 1), ('analysis', 1), ('simd', 1), ('machine', 1)]
[('signature', 2), ('first', 2), ('volume', 1), ('highlight', 1), ('multidisciplinary', 1), ('aspect', 1), ('automatic', 1), ('verification', 1), ('chapter', 1), ('serve', 1), ('introduction', 1), ('constitutes', 1), ('review', 1), ('literature', 1), ('past', 1), ('five', 1), ('year', 1), ('second', 1), ('address', 1), ('problem', 1), ('parallel', 1), ('strategy', 1), ('construct', 1), ('optimize', 1), ('feature', 1), ('vector', 1), ('describe', 1)]
[('image', 3), ('mammogram', 2), ('book', 1), ('provides', 1), ('detailed', 1), ('assessment', 1), ('state', 1), ('art', 1), ('automated', 1), ('technique', 1), ('analysis', 1), ('digital', 1), ('topic', 1), ('covered', 1), ('include', 1), ('variety', 1), ('approach', 1), ('processing', 1), ('pattern', 1), ('recognition', 1), ('aimed', 1), ('assisting', 1), ('physician', 1), ('task', 1), ('detecting', 1), ('tumor', 1), ('evidence', 1), ('chapter', 1)]
[('stage', 2), ('pattern', 2), ('thinning', 1), ('technique', 1), ('widely', 1), ('used', 1), ('pre', 1), ('processing', 1), ('recognition', 1), ('system', 1), ('compress', 1), ('data', 1), ('enhance', 1), ('feature', 1), ('extraction', 1), ('subsequent', 1), ('reduces', 1), ('digitized', 1), ('skeleton', 1), ('resulting', 1), ('branch', 1), ('pixel', 1), ('thick', 1), ('method', 1), ('seems', 1), ('easy', 1), ('first', 1), ('many', 1), ('advantage', 1)]
[('control', 4), ('increasing', 1), ('demand', 1), ('high', 1), ('precision', 1), ('autonomous', 1), ('wide', 1), ('operating', 1), ('envelope', 1), ('conventional', 1), ('engineering', 1), ('approach', 1), ('unable', 1), ('adequately', 1), ('deal', 1), ('system', 1), ('complexity', 1), ('nonlinearities', 1), ('spatial', 1), ('temporal', 1), ('parameter', 1), ('variation', 1), ('uncertainty', 1), ('intelligent', 1), ('self', 1), ('organising', 1), ('learning', 1), ('new', 1), ('emerging', 1)]
[('book', 2), ('editor', 2), ('engineering', 2), ('paper', 1), ('collected', 1), ('invited', 1), ('tutorial', 1), ('course', 1), ('keynote', 1), ('speech', 1), ('fourth', 1), ('international', 1), ('conference', 1), ('software', 1), ('knowledge', 1), ('intention', 1), ('offer', 1), ('wide', 1), ('coverage', 1), ('main', 1), ('topic', 1), ('involved', 1), ('specification', 1), ('prototyping', 1), ('development', 1)]
[('system', 2), ('architecting', 1), ('dependable', 1), ('required', 1), ('improve', 1), ('overall', 1), ('robustness', 1), ('fault', 1), ('tolerance', 1), ('many', 1), ('method', 1), ('proposed', 1), ('end', 1), ('solution', 1), ('usually', 1), ('considered', 1), ('late', 1), ('design', 1), ('implementation', 1), ('phase', 1), ('software', 1), ('life', 1), ('cycle', 1), ('java', 1), ('window', 1), ('nt', 1), ('exception', 1), ('handling', 1), ('thus', 1), ('reducing', 1)]
[('technology', 3), ('article', 2), ('case', 2), ('software', 2), ('review', 1), ('volume', 1), ('consists', 1), ('concerning', 1), ('research', 1), ('discussed', 1), ('perspective', 1), ('part', 1), ('available', 1), ('intended', 1), ('automate', 1), ('certain', 1), ('phase', 1), ('development', 1), ('life', 1), ('cycle', 1), ('book', 1), ('contains', 1), ('focus', 1), ('current', 1), ('alters', 1), ('nature', 1)]
[('processing', 3), ('system', 2), ('image', 2), ('book', 1), ('deal', 1), ('several', 1), ('key', 1), ('aspect', 1), ('developing', 1), ('technology', 1), ('information', 1), ('explains', 1), ('various', 1), ('problem', 1), ('related', 1), ('advanced', 1), ('describes', 1), ('latest', 1), ('state', 1), ('art', 1), ('technique', 1), ('solving', 1), ('particularly', 1), ('recent', 1), ('advance', 1), ('video', 1), ('covered', 1), ('thoroughly', 1)]
[('device', 4), ('book', 3), ('josephson', 2), ('time', 2), ('le', 2), ('flux', 2), ('concern', 1), ('supercomputer', 1), ('extremely', 1), ('low', 1), ('heat', 1), ('dissipation', 1), ('semiconductor', 1), ('voltage', 1), ('based', 1), ('previous', 1), ('quantum', 1), ('parametrons', 1), ('qfps', 1), ('dc', 1), ('parametron', 1), ('basic', 1), ('operation', 1), ('described', 1), ('deal', 1)]
[('mobile', 3), ('robot', 3), ('environment', 2), ('book', 1), ('present', 1), ('recent', 1), ('trend', 1), ('field', 1), ('perceived', 1), ('global', 1), ('selection', 1), ('researcher', 1), ('expert', 1), ('subject', 1), ('covered', 1), ('include', 1), ('motion', 1), ('planning', 1), ('unknown', 1), ('coordination', 1), ('mobility', 1), ('manipulability', 1), ('computation', 1), ('nonlinear', 1), ('control', 1), ('environmental', 1), ('modeling', 1)]
[('network', 2), ('specialist', 1), ('layman', 1), ('enjoy', 1), ('reading', 1), ('book', 1), ('using', 1), ('lively', 1), ('non', 1), ('technical', 1), ('style', 1), ('image', 1), ('everyday', 1), ('life', 1), ('author', 1), ('present', 1), ('basic', 1), ('principle', 1), ('behind', 1), ('computing', 1), ('computer', 1), ('focus', 1), ('aspect', 1), ('computation', 1), ('concern', 1), ('numerous', 1), ('small', 1), ('computational', 1), ('unit', 1), ('whether', 1), ('biological', 1), ('neural', 1)]
[('flins', 2), ('technology', 2), ('computational', 2), ('intelligence', 2), ('research', 2), ('originally', 1), ('acronym', 1), ('fuzzy', 1), ('logic', 1), ('intelligent', 1), ('nuclear', 1), ('science', 1), ('extended', 1), ('applied', 1), ('contribution', 1), ('eighth', 1), ('edition', 1), ('series', 1), ('conference', 1), ('cover', 1), ('state', 1), ('art', 1), ('development', 1), ('system', 1)]
[('area', 3), ('system', 3), ('paper', 2), ('volume', 1), ('consists', 1), ('invited', 1), ('written', 1), ('eminent', 1), ('researcher', 1), ('working', 1), ('theoretical', 1), ('computer', 1), ('science', 1), ('content', 1), ('reflect', 1), ('current', 1), ('trend', 1), ('research', 1), ('carried', 1), ('featured', 1), ('petri', 1), ('net', 1), ('distributed', 1), ('map', 1), ('generating', 1), ('lindenmayer', 1), ('logic', 1)]
[('vision', 2), ('book', 1), ('contains', 1), ('selection', 1), ('paper', 1), ('presented', 1), ('interface', 1), ('conference', 1), ('includes', 1), ('several', 1), ('invited', 1), ('article', 1), ('prominent', 1), ('researcher', 1), ('field', 1), ('suggesting', 1), ('future', 1), ('direction', 1), ('computer', 1)]
[('book', 1), ('currently', 1), ('subject', 1), ('containing', 1), ('introductory', 1), ('material', 1), ('advanced', 1), ('recent', 1), ('research', 1), ('result', 1), ('present', 1), ('end', 1), ('fundamental', 1), ('concept', 1), ('notation', 1), ('developed', 1), ('syntactic', 1), ('structural', 1), ('pattern', 1), ('recognition', 1), ('report', 1), ('current', 1), ('state', 1), ('art', 1), ('respect', 1), ('methodology', 1)]
[('simple', 2), ('parallel', 2), ('digital', 2), ('optical', 2), ('image', 2), ('processing', 2), ('research', 1), ('detailed', 1), ('book', 1), ('motivated', 1), ('search', 1), ('architecture', 1), ('development', 1), ('unified', 1), ('consistent', 1), ('theory', 1), ('binary', 1), ('described', 1), ('implementation', 1), ('processor', 1), ('considered', 1), ('theoretical', 1), ('experimental', 1)]
[('first', 2), ('bud', 2), ('book', 1), ('describes', 1), ('study', 1), ('question', 1), ('sort', 1), ('innate', 1), ('knowledge', 1), ('enables', 1), ('child', 1), ('acquire', 1), ('language', 1), ('author', 1), ('using', 1), ('computational', 1), ('approach', 1), ('build', 1), ('model', 1), ('named', 1), ('bring', 1), ('daughter', 1), ('basis', 1), ('data', 1), ('linguist', 1), ('psychologist', 1), ('collected', 1), ('based', 1), ('empirists', 1), ('view', 1)]
[('pattern', 2), ('analysis', 2), ('research', 1), ('development', 1), ('multi', 1), ('dimensional', 1), ('recognition', 1), ('scene', 1), ('computer', 1), ('vision', 1), ('image', 1), ('processing', 1), ('progressed', 1), ('rapidly', 1), ('recent', 1), ('year', 1), ('among', 1), ('various', 1), ('model', 1), ('employed', 1), ('representation', 1), ('array', 1), ('grammar', 1), ('attracted', 1), ('attention', 1), ('several', 1), ('advantage', 1), ('others', 1)]
[('transformation', 3), ('linear', 2), ('nonlinear', 2), ('model', 2), ('book', 1), ('concerned', 1), ('digitized', 1), ('image', 1), ('pattern', 1), ('include', 1), ('quadratic', 1), ('cubic', 1), ('bilinear', 1), ('biquadratic', 1), ('bicubic', 1), ('coon', 1), ('form', 1), ('harmonic', 1), ('projective', 1), ('perspective', 1), ('discrete', 1), ('technique', 1), ('developed', 1), ('realize', 1)]
[('computer', 2), ('book', 1), ('give', 1), ('overview', 1), ('work', 1), ('performed', 1), ('automation', 1), ('institute', 1), ('hungarian', 1), ('academy', 1), ('science', 1), ('late', 1), ('need', 1), ('recognition', 1), ('fundamental', 1), ('role', 1), ('adequate', 1), ('abstraction', 1), ('higher', 1), ('level', 1), ('conceptual', 1), ('model', 1), ('field', 1), ('application', 1), ('approach', 1), ('presented', 1), ('explores', 1)]
[('system', 2), ('automated', 1), ('manufacturing', 1), ('topic', 1), ('day', 1), ('industry', 1), ('thus', 1), ('investigation', 1), ('industrial', 1), ('laboratory', 1), ('academia', 1), ('core', 1), ('study', 1), ('lie', 1), ('robotic', 1), ('manipulator', 1), ('control', 1), ('stability', 1), ('effective', 1), ('goal', 1), ('reaching', 1), ('coordination', 1), ('timing', 1), ('avoidance', 1), ('collision', 1), ('essential', 1)]
[('artificial', 2), ('intelligence', 2), ('dai', 2), ('knowledge', 2), ('distributed', 1), ('vibrant', 1), ('sub', 1), ('field', 1), ('concerned', 1), ('coordinating', 1), ('action', 1), ('multiple', 1), ('interacting', 1), ('agent', 1), ('although', 1), ('potential', 1), ('overcome', 1), ('many', 1), ('problem', 1), ('currently', 1), ('associated', 1), ('constructing', 1), ('software', 1), ('system', 1), ('large', 1), ('complex', 1), ('rich', 1)]
[('book', 2), ('content', 1), ('self', 1), ('sufficient', 1), ('sense', 1), ('preliminary', 1), ('knowledge', 1), ('elementary', 1), ('set', 1), ('theory', 1), ('needed', 1), ('complicated', 1), ('mathematical', 1), ('theorem', 1), ('entering', 1), ('field', 1)]
[('feature', 2), ('vision', 2), ('low', 2), ('level', 2), ('text', 1), ('broad', 1), ('array', 1), ('research', 1), ('effort', 1), ('computer', 1), ('including', 1), ('processing', 1), ('perceptual', 1), ('organization', 1), ('object', 1), ('recognition', 1), ('active', 1), ('volume', 1), ('nine', 1), ('paper', 1), ('specifically', 1), ('report', 1), ('topic', 1), ('sensor', 1), ('confidence', 1), ('extraction', 1), ('scheme', 1), ('non', 1), ('parametric', 1), ('multi', 1), ('scale', 1), ('curve', 1), ('smoothing', 1), ('integration', 1)]
[('neural', 2), ('book', 2), ('present', 2), ('study', 2), ('network', 2), ('hardware', 1), ('inaccuracy', 1), ('imprecision', 1), ('important', 1), ('consideration', 1), ('implementing', 1), ('algorithm', 1), ('synaptic', 1), ('weight', 1), ('noise', 1), ('typical', 1), ('fault', 1), ('model', 1), ('analogue', 1), ('vlsi', 1), ('realisation', 1), ('mlp', 1), ('examines', 1), ('implication', 1), ('learning', 1), ('performance', 1), ('aim', 1)]
[('book', 2), ('project', 2), ('part', 2), ('first', 1), ('series', 1), ('technical', 1), ('report', 1), ('key', 1), ('research', 1), ('real', 1), ('world', 1), ('computing', 1), ('program', 1), ('supported', 1), ('miti', 1), ('japan', 1), ('main', 1), ('goal', 1), ('model', 1), ('human', 1), ('intelligence', 1), ('special', 1), ('class', 1), ('mathematical', 1), ('system', 1), ('called', 1), ('neural', 1), ('logic', 1), ('network', 1), ('consists', 1), ('three', 1), ('describes', 1), ('general', 1)]
[('systematic', 2), ('parallel', 2), ('implementation', 2), ('model', 2), ('book', 1), ('present', 1), ('approach', 1), ('feedforward', 1), ('neural', 1), ('network', 1), ('array', 1), ('transputers', 1), ('emphasis', 1), ('backpropagation', 1), ('learning', 1), ('training', 1), ('set', 1), ('parallelism', 1), ('using', 1), ('analysis', 1), ('theoretical', 1), ('developed', 1), ('used', 1), ('find', 1), ('optimal', 1), ('mapping', 1)]
[('program', 2), ('book', 1), ('give', 1), ('thorough', 1), ('introduction', 1), ('object', 1), ('orientated', 1), ('design', 1), ('programming', 1), ('using', 1), ('time', 1), ('used', 1), ('library', 1), ('useful', 1), ('chosen', 1), ('field', 1), ('finance', 1), ('adminstration', 1), ('statistic', 1), ('include', 1), ('calculating', 1), ('loan', 1), ('period', 1), ('amortization', 1), ('least', 1), ('square', 1), ('fitting', 1), ('spelling', 1), ('checker', 1)]
[('kb', 2), ('technique', 2), ('tool', 2), ('field', 1), ('knowledge', 1), ('based', 1), ('system', 1), ('expanded', 1), ('enormously', 1), ('last', 1), ('year', 1), ('many', 1), ('important', 1), ('currently', 1), ('available', 1), ('application', 1), ('range', 1), ('medicine', 1), ('engineering', 1), ('aerospace', 1), ('book', 1), ('provides', 1), ('selected', 1), ('set', 1), ('state', 1), ('art', 1), ('contribution', 1), ('present', 1), ('advanced', 1)]
[('language', 4), ('prototyping', 2), ('volume', 2), ('provides', 1), ('mean', 1), ('generate', 1), ('implementation', 1), ('automatically', 1), ('high', 1), ('level', 1), ('definition', 1), ('present', 1), ('algebraic', 1), ('specification', 1), ('approach', 1), ('centered', 1), ('around', 1), ('asf', 1), ('sdf', 1), ('formalism', 1), ('meta', 1), ('environment', 1), ('integrated', 1), ('collection', 1), ('article', 1), ('covering', 1), ('number', 1)]
[('system', 5), ('software', 4), ('concept', 2), ('methodology', 2), ('intended', 1), ('offer', 1), ('systematic', 1), ('treatment', 1), ('theory', 1), ('practice', 1), ('designing', 1), ('implementing', 1), ('volume', 1), ('systematically', 1), ('develop', 1), ('apply', 1), ('development', 1), ('analysed', 1), ('various', 1), ('type', 1)]
[('workshop', 2), ('common', 2), ('book', 1), ('result', 1), ('special', 1), ('spatial', 1), ('computing', 1), ('brought', 1), ('together', 1), ('expert', 1), ('computer', 1), ('vision', 1), ('visualization', 1), ('multimedia', 1), ('geographic', 1), ('information', 1), ('system', 1), ('discus', 1), ('problem', 1), ('application', 1), ('theme', 1), ('need', 1), ('integrate', 1), ('human', 1), ('perception', 1), ('domain', 1), ('knowledge', 1), ('developing', 1)]
[('coordinate', 3), ('access', 2), ('coordination', 1), ('considered', 1), ('abstractly', 1), ('ubiquitous', 1), ('notion', 1), ('computer', 1), ('science', 1), ('example', 1), ('programming', 1), ('language', 1), ('elementary', 1), ('instruction', 1), ('operating', 1), ('system', 1), ('hardware', 1), ('resource', 1), ('database', 1), ('transaction', 1), ('scheduler', 1), ('shared', 1), ('data', 1), ('etc', 1), ('situation', 1), ('common', 1), ('feature', 1)]
[('consciousness', 3), ('neuron', 2), ('impossible', 1), ('mind', 1), ('written', 1), ('satisfy', 1), ('curiosity', 1), ('every', 1), ('take', 1), ('view', 1), ('head', 1), ('source', 1), ('attempt', 1), ('explain', 1), ('happens', 1), ('although', 1), ('talk', 1), ('neural', 1), ('network', 1), ('explains', 1)]
[('engineering', 4), ('book', 2), ('software', 2), ('knowledge', 2), ('cover', 1), ('recent', 1), ('new', 1), ('advance', 1), ('intended', 1), ('supplement', 1), ('volume', 1), ('handbook', 1), ('editor', 1), ('author', 1), ('known', 1), ('international', 1), ('expert', 1), ('respective', 1), ('field', 1), ('expertise', 1), ('chapter', 1), ('entirely', 1)]
[('machine', 2), ('lecture', 2), ('theme', 1), ('book', 1), ('human', 1), ('perception', 1), ('communication', 1), ('interaction', 1), ('integration', 1), ('basic', 1), ('topic', 1), ('invited', 1), ('corresponding', 1), ('approach', 1), ('nature', 1), ('panel', 1), ('discussion', 1), ('present', 1), ('state', 1), ('art', 1), ('outlining', 1), ('open', 1), ('question', 1), ('stressing', 1), ('synergy', 1), ('among', 1), ('discipline', 1)]
[('system', 4), ('expertmedia', 2), ('expert', 2), ('hypermedia', 2), ('growing', 1), ('popularity', 1), ('brings', 1), ('together', 1), ('established', 1), ('discipline', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('artificial', 1), ('intelligence', 1), ('neologism', 1), ('intended', 1), ('synergistically', 1), ('combine', 1), ('advantage', 1), ('component', 1)]
[('fuzzy', 4), ('paper', 2), ('founder', 2), ('set', 2), ('theory', 2), ('zadeh', 2), ('book', 1), ('consists', 1), ('selected', 1), ('written', 1), ('lotfi', 1), ('field', 1), ('principal', 1), ('contributor', 1), ('development', 1), ('last', 1), ('year', 1), ('contain', 1), ('virtually', 1), ('major', 1), ('idea', 1), ('logic', 1), ('system', 1)]
[('robot', 2), ('rapid', 1), ('advance', 1), ('sensor', 1), ('computer', 1), ('algorithm', 1), ('continue', 1), ('fuel', 1), ('dramatic', 1), ('improvement', 1), ('intelligent', 1), ('addition', 1), ('vehicle', 1), ('starting', 1), ('appear', 1), ('number', 1), ('application', 1), ('example', 1), ('installed', 1), ('public', 1), ('setting', 1), ('perform', 1), ('task', 1), ('delivering', 1), ('item', 1), ('hospital', 1), ('cleaning', 1), ('floor', 1), ('supermarket', 1)]
[('method', 3), ('software', 2), ('stage', 2), ('importance', 1), ('formal', 1), ('engineering', 1), ('receiving', 1), ('greater', 1), ('acknowledgement', 1), ('used', 1), ('several', 1), ('development', 1), ('process', 1), ('book', 1), ('focus', 1), ('concerning', 1), ('early', 1), ('design', 1), ('namely', 1), ('modeling', 1), ('system', 1), ('conceptual', 1), ('level', 1), ('verification', 1), ('validation', 1)]
[('understanding', 2), ('real', 2), ('time', 2), ('system', 2), ('rapidly', 1), ('approaching', 1), ('level', 1), ('maturity', 1), ('call', 1), ('consolidation', 1), ('present', 1), ('knowledge', 1), ('experience', 1), ('particularly', 1), ('effective', 1), ('influencing', 1), ('conjoining', 1), ('universal', 1), ('algebra', 1), ('theory', 1), ('practice', 1), ('development', 1), ('interplay', 1)]
[('process', 2), ('problem', 2), ('objective', 2), ('book', 1), ('look', 1), ('human', 1), ('cognition', 1), ('way', 1), ('complex', 1), ('solved', 1), ('decomposing', 1), ('list', 1), ('strategic', 1), ('focusing', 1), ('individually', 1), ('plan', 1), ('tactical', 1), ('solution', 1), ('formulated', 1), ('military', 1), ('planner', 1), ('form', 1), ('standard', 1), ('operating', 1), ('procedure', 1)]
[('soft', 2), ('computing', 2), ('new', 1), ('emerging', 1), ('discipline', 1), ('rooted', 1), ('group', 1), ('technology', 1), ('aim', 1), ('exploit', 1), ('tolerance', 1), ('imprecision', 1), ('uncertainty', 1), ('achieving', 1), ('solution', 1), ('complex', 1), ('problem', 1), ('principal', 1), ('component', 1), ('fuzzy', 1), ('logic', 1), ('neurocomputing', 1), ('genetic', 1), ('algorithm', 1), ('probabilistic', 1), ('reasoning', 1), ('volume', 1), ('collection', 1)]
[('application', 2), ('fuzzy', 2), ('japan', 2), ('saw', 1), ('whole', 1), ('wave', 1), ('practical', 1), ('theory', 1), ('mainly', 1), ('field', 1), ('process', 1), ('control', 1), ('pioneer', 1), ('flood', 1), ('household', 1), ('electrical', 1), ('appliance', 1), ('become', 1), ('high', 1), ('tech', 1), ('buzz', 1), ('word', 1), ('many', 1), ('country', 1), ('followed', 1), ('suit', 1), ('developed', 1)]
[('clustering', 3), ('network', 2), ('model', 2), ('moderately', 1), ('advanced', 1), ('level', 1), ('book', 1), ('seek', 1), ('cover', 1), ('area', 1), ('related', 1), ('method', 1), ('data', 1), ('analysis', 1), ('major', 1), ('advance', 1), ('made', 1), ('topic', 1), ('include', 1), ('hierarchical', 1), ('variable', 1), ('selection', 1), ('weighting', 1), ('additive', 1), ('tree', 1), ('relevance', 1), ('neural', 1), ('role', 1), ('computational', 1)]
[('paper', 2), ('image', 2), ('analysis', 2), ('book', 1), ('contains', 1), ('selected', 1), ('accepted', 1), ('th', 1), ('scandinavian', 1), ('conference', 1), ('held', 1), ('uppsala', 1), ('sweden', 1), ('june', 1), ('represent', 1), ('best', 1), ('currently', 1), ('done', 1), ('world', 1), ('wide', 1), ('describing', 1), ('recent', 1), ('work', 1), ('considerably', 1), ('expanded', 1), ('updated', 1), ('compared', 1)]
[('parallel', 4), ('image', 3), ('processing', 2), ('algorithm', 2), ('volume', 1), ('deal', 1), ('following', 1), ('topic', 1), ('automaton', 1), ('grammar', 1), ('architecture', 1), ('digital', 1), ('geometry', 1), ('data', 1), ('allocation', 1), ('strategy', 1), ('complexity', 1), ('analysis', 1), ('operator', 1), ('contribution', 1), ('written', 1), ('leading', 1), ('expert', 1), ('field', 1)]
[('workshop', 2), ('parallel', 2), ('image', 2), ('analysis', 2), ('de', 2), ('book', 1), ('contains', 1), ('selection', 1), ('paper', 1), ('presented', 1), ('fourth', 1), ('international', 1), ('held', 1), ('laboratoire', 1), ('informatique', 1), ('du', 1), ('parallélisme', 1), ('ecole', 1), ('normale', 1), ('supérieure', 1), ('lyon', 1), ('france', 1), ('representative', 1), ('traditional', 1), ('topic', 1), ('theoretical', 1), ('model', 1), ('real', 1)]
[('fuzzy', 4), ('subject', 2), ('classifier', 2), ('text', 1), ('deal', 1), ('algorithm', 1), ('application', 1), ('image', 1), ('processing', 1), ('pattern', 1), ('recognition', 1), ('covered', 1), ('include', 1), ('membership', 1), ('function', 1), ('clustering', 1), ('ruler', 1), ('defuzzification', 1), ('combined', 1)]
[('processing', 4), ('analysis', 2), ('document', 2), ('image', 2), ('interest', 1), ('automatic', 1), ('rapidly', 1), ('increasing', 1), ('past', 1), ('year', 1), ('book', 1), ('address', 1), ('different', 1), ('subfields', 1), ('including', 1), ('preprocessing', 1), ('segmentation', 1), ('form', 1), ('handwriting', 1), ('recognition', 1), ('line', 1), ('drawing', 1), ('map', 1), ('contextual', 1)]
[('research', 2), ('computer', 2), ('robot', 2), ('vision', 2), ('image', 2), ('directed', 1), ('toward', 1), ('researcher', 1), ('graduate', 1), ('student', 1), ('field', 1), ('broad', 1), ('spectrum', 1), ('recent', 1), ('presented', 1), ('including', 1), ('sensing', 1), ('navigation', 1), ('mobile', 1), ('extraction', 1), ('line', 1), ('curve', 1), ('surface', 1), ('skeleton', 1), ('intensity', 1), ('range', 1), ('human', 1), ('motion', 1), ('feature', 1)]
[('theory', 5), ('trace', 2), ('problem', 2), ('area', 2), ('employ', 1), ('technique', 1), ('tackle', 1), ('quite', 1), ('diverse', 1), ('include', 1), ('formal', 1), ('language', 1), ('combinatorics', 1), ('graph', 1), ('algebra', 1), ('logic', 1), ('concurrent', 1), ('system', 1), ('led', 1), ('interesting', 1), ('significant', 1), ('result', 1), ('made', 1), ('especially', 1), ('big', 1), ('impact', 1)]
[('image', 3), ('transforms', 3), ('problem', 2), ('processing', 2), ('vision', 2), ('book', 1), ('cover', 1), ('parallel', 1), ('algorithm', 1), ('architecture', 1), ('vlsi', 1), ('chip', 1), ('range', 1), ('computer', 1), ('pattern', 1), ('recognition', 1), ('artificial', 1), ('intelligence', 1), ('specific', 1), ('addressed', 1), ('include', 1), ('task', 1), ('fast', 1), ('fourier', 1), ('hough', 1), ('discrete', 1), ('cosine', 1), ('compression', 1)]
[('sensor', 2), ('edited', 1), ('reviewed', 1), ('volume', 1), ('consists', 1), ('paper', 1), ('originally', 1), ('presented', 1), ('workshop', 1), ('scientific', 1), ('center', 1), ('schloss', 1), ('dagstuhl', 1), ('germany', 1), ('give', 1), ('overview', 1), ('field', 1), ('present', 1), ('latest', 1), ('development', 1), ('area', 1), ('modeling', 1), ('planning', 1), ('based', 1), ('robot', 1), ('particular', 1), ('topic', 1), ('addressed', 1), ('include', 1), ('active', 1), ('vision', 1)]
[('assembly', 2), ('book', 1), ('deal', 1), ('key', 1), ('area', 1), ('industrial', 1), ('robotics', 1), ('automation', 1), ('small', 1), ('batch', 1), ('imparts', 1), ('enormous', 1), ('added', 1), ('value', 1), ('turn', 1), ('extraordinarily', 1), ('difficult', 1), ('automate', 1), ('work', 1), ('presented', 1), ('centre', 1), ('intelligent', 1), ('system', 1), ('university', 1), ('wale', 1), ('aberystwyth', 1), ('address', 1), ('issue', 1), ('show', 1), ('way', 1)]
[('workshop', 2), ('nact', 2), ('book', 1), ('present', 1), ('result', 1), ('second', 1), ('neural', 1), ('adaptive', 1), ('control', 1), ('technology', 1), ('ii', 1), ('held', 1), ('september', 1), ('berlin', 1), ('organised', 1), ('connection', 1), ('three', 1), ('year', 1), ('european', 1), ('union', 1), ('funded', 1), ('basic', 1), ('research', 1), ('project', 1), ('esprit', 1), ('framework', 1), ('called', 1), ('collaboration', 1), ('daimler', 1), ('benz', 1), ('germany', 1)]
[('motor', 4), ('monitoring', 2), ('fault', 2), ('detection', 2), ('topic', 2), ('used', 2), ('incipient', 1), ('diagnosis', 1), ('important', 1), ('difficult', 1), ('engineering', 1), ('field', 1), ('deal', 1), ('ranging', 1), ('small', 1), ('dc', 1), ('intensive', 1), ('care', 1), ('unit', 1), ('huge', 1), ('nuclear', 1), ('power', 1), ('plant', 1), ('proper', 1), ('machine', 1), ('scheme', 1), ('improved', 1), ('safety', 1)]
[('web', 2), ('future', 2), ('incredibly', 2), ('world', 1), ('wide', 1), ('internet', 1), ('sign', 1), ('thing', 1), ('different', 1), ('striking', 1), ('computer', 1), ('age', 1), ('come', 1), ('fast', 1), ('overwhelming', 1), ('anyone', 1), ('surfed', 1), ('exclaimed', 1), ('point', 1), ('another', 1), ('information', 1), ('available', 1), ('search', 1)]
[('network', 3), ('ram', 2), ('based', 2), ('method', 2), ('class', 1), ('building', 1), ('pattern', 1), ('recognition', 1), ('system', 1), ('unlike', 1), ('neural', 1), ('train', 1), ('rapidly', 1), ('implemented', 1), ('simple', 1), ('hardware', 1), ('important', 1), ('book', 1), ('present', 1), ('overview', 1), ('subject', 1), ('latest', 1), ('work', 1), ('number', 1), ('researcher', 1), ('field', 1)]
[('image', 3), ('system', 2), ('document', 2), ('book', 1), ('provides', 1), ('overview', 1), ('state', 1), ('art', 1), ('research', 1), ('development', 1), ('analysis', 1), ('topic', 1), ('covered', 1), ('include', 1), ('variety', 1), ('architecture', 1), ('processing', 1), ('method', 1), ('converting', 1), ('format', 1), ('manipulated', 1), ('computer', 1), ('chapter', 1), ('written', 1)]
[('system', 4), ('agent', 3), ('self', 1), ('contained', 1), ('unified', 1), ('presentation', 1), ('invaluable', 1), ('book', 1), ('provides', 1), ('broad', 1), ('introduction', 1), ('fascinating', 1), ('subject', 1), ('many', 1), ('body', 1), ('collective', 1), ('adapting', 1), ('evolving', 1), ('coverage', 1), ('includes', 1), ('game', 1), ('theoretic', 1), ('multi', 1), ('large', 1), ('scale', 1), ('socio', 1), ('economic', 1), ('individual', 1), ('optimizing', 1), ('diversity', 1)]
[('research', 2), ('cslp', 2), ('decade', 1), ('activity', 1), ('chinese', 1), ('spoken', 1), ('language', 1), ('processing', 1), ('advanced', 1), ('considerably', 1), ('practical', 1), ('technology', 1), ('theoretical', 1), ('discovery', 1), ('book', 1), ('editor', 1), ('provide', 1), ('introduction', 1), ('field', 1), ('unique', 1), ('problem', 1), ('solution', 1), ('various', 1), ('area', 1), ('contribution', 1), ('represent', 1)]
[('task', 3), ('planning', 2), ('system', 2), ('book', 1), ('describes', 1), ('approach', 1), ('intelligent', 1), ('robotic', 1), ('petri', 1), ('net', 1), ('fuzzy', 1), ('logic', 1), ('integrated', 1), ('used', 1), ('represent', 1), ('sequence', 1), ('error', 1), ('recovery', 1), ('generation', 1), ('execution', 1), ('plan', 1), ('different', 1), ('kind', 1), ('uncertainty', 1), ('need', 1), ('handled', 1), ('ensure', 1), ('efficiency', 1), ('reliability', 1)]
[('automatic', 2), ('high', 2), ('generation', 1), ('parallel', 1), ('code', 1), ('level', 1), ('sequential', 1), ('description', 1), ('key', 1), ('importance', 1), ('wide', 1), ('spread', 1), ('use', 1), ('performance', 1), ('machine', 1), ('architecture', 1), ('text', 1), ('considers', 1), ('detail', 1), ('theory', 1), ('practical', 1), ('realization', 1), ('mapping', 1), ('algorithm', 1), ('generated', 1), ('system', 1), ('uniform', 1), ('recurrence', 1), ('equation', 1), ('lccps', 1), ('onto', 1)]
[('optical', 1), ('character', 1), ('recognition', 1), ('document', 1), ('image', 1), ('analysis', 1), ('become', 1), ('important', 1), ('area', 1), ('fast', 1), ('growing', 1), ('number', 1), ('researcher', 1), ('field', 1), ('comprehensive', 1), ('handbook', 1), ('contribution', 1), ('eminent', 1), ('expert', 1), ('present', 1), ('theoretical', 1), ('practical', 1), ('aspect', 1), ('introductory', 1), ('level', 1), ('wherever', 1), ('possible', 1)]
[('neural', 3), ('network', 3), ('architecture', 3), ('book', 1), ('describes', 1), ('application', 1), ('evolutionary', 1), ('computation', 1), ('automatic', 1), ('generation', 1), ('significant', 1), ('influence', 1), ('performance', 1), ('usual', 1), ('practice', 1), ('use', 1), ('trial', 1), ('error', 1), ('find', 1), ('suitable', 1), ('given', 1), ('problem', 1), ('process', 1)]
[('widespread', 1), ('use', 1), ('bankchecks', 1), ('daily', 1), ('life', 1), ('make', 1), ('development', 1), ('check', 1), ('reading', 1), ('system', 1), ('fundamental', 1), ('relevance', 1), ('bank', 1), ('financial', 1), ('institution', 1), ('improve', 1), ('productivity', 1), ('allow', 1), ('advanced', 1), ('customer', 1), ('service', 1), ('many', 1), ('industrial', 1), ('company', 1), ('academic', 1), ('research', 1), ('laboratory', 1), ('recently', 1), ('attracted', 1), ('field', 1)]
[('information', 3), ('organisation', 2), ('book', 1), ('provides', 1), ('date', 1), ('study', 1), ('fundamental', 1), ('facet', 1), ('supporting', 1), ('technology', 1), ('data', 1), ('presentation', 1), ('process', 1), ('improve', 1), ('effective', 1), ('use', 1), ('human', 1), ('resource', 1), ('necessary', 1), ('capture', 1), ('structure', 1), ('knowledge', 1), ('within', 1)]
[('programming', 3), ('evolutionary', 2), ('traditional', 2), ('software', 2), ('engineering', 2), ('first', 1), ('book', 1), ('attempt', 1), ('provide', 1), ('framework', 1), ('embed', 1), ('automatic', 1), ('system', 1), ('based', 1), ('learning', 1), ('genetic', 1), ('environment', 1), ('look', 1), ('knowledge', 1), ('integrated', 1), ('process', 1)]
[('software', 2), ('engineering', 2), ('ci', 2), ('set', 2), ('unique', 1), ('volume', 1), ('first', 1), ('publication', 1), ('computational', 1), ('intelligence', 1), ('viewed', 1), ('synergistic', 1), ('interplay', 1), ('neurocomputing', 1), ('granular', 1), ('computation', 1), ('including', 1), ('fuzzy', 1), ('rough', 1), ('evolutionary', 1), ('method', 1), ('present', 1), ('unified', 1), ('view', 1), ('context', 1), ('book', 1), ('address', 1), ('number', 1)]
[('hmms', 2), ('computer', 2), ('vision', 2), ('hidden', 1), ('markov', 1), ('model', 1), ('originally', 1), ('emerged', 1), ('domain', 1), ('speech', 1), ('recognition', 1), ('recent', 1), ('year', 1), ('attracted', 1), ('growing', 1), ('interest', 1), ('area', 1), ('book', 1), ('collection', 1), ('article', 1), ('new', 1), ('development', 1), ('theory', 1), ('application', 1), ('address', 1), ('topic', 1), ('handwriting', 1)]
[('graph', 2), ('grammar', 2), ('area', 2), ('development', 2), ('originated', 1), ('late', 1), ('motivated', 1), ('consideration', 1), ('pattern', 1), ('recognition', 1), ('compiler', 1), ('construction', 1), ('list', 1), ('interacted', 1), ('grown', 1), ('quite', 1), ('impressively', 1), ('besides', 1), ('aforementioned', 1), ('includes', 1), ('software', 1), ('specification', 1), ('vlsi', 1), ('layout', 1)]
[('technique', 2), ('concurrent', 1), ('distributed', 1), ('process', 1), ('occur', 1), ('everywhere', 1), ('embedded', 1), ('system', 1), ('information', 1), ('network', 1), ('database', 1), ('form', 1), ('applet', 1), ('roaming', 1), ('around', 1), ('world', 1), ('wide', 1), ('web', 1), ('book', 1), ('present', 1), ('develops', 1), ('state', 1), ('art', 1), ('validation', 1), ('detecting', 1), ('safety', 1), ('violation', 1), ('focus', 1), ('correctness', 1), ('suffice', 1)]
[('graph', 2), ('grammar', 2), ('area', 2), ('development', 2), ('originated', 1), ('late', 1), ('motivated', 1), ('consideration', 1), ('pattern', 1), ('recognition', 1), ('compiler', 1), ('construction', 1), ('list', 1), ('interacted', 1), ('grown', 1), ('quite', 1), ('impressively', 1), ('besides', 1), ('aforementioned', 1), ('includes', 1), ('software', 1), ('specification', 1), ('vlsi', 1), ('layout', 1)]
[('image', 4), ('language', 3), ('written', 2), ('volume', 1), ('emphasizes', 1), ('primary', 1), ('role', 1), ('played', 1), ('computer', 1), ('science', 1), ('last', 1), ('decade', 1), ('replaced', 1), ('text', 1), ('enormous', 1), ('possibility', 1), ('overcome', 1), ('restricted', 1), ('ambit', 1), ('better', 1), ('thousand', 1), ('word', 1), ('straightforward', 1), ('apply', 1), ('visual', 1)]
[('system', 4), ('sensory', 2), ('neuromorphic', 1), ('implementation', 1), ('silicon', 1), ('neural', 1), ('whose', 1), ('architecture', 1), ('design', 1), ('based', 1), ('neurobiology', 1), ('growing', 1), ('area', 1), ('offer', 1), ('exciting', 1), ('possibility', 1), ('compete', 1), ('human', 1), ('sens', 1), ('pattern', 1), ('recognition', 1), ('run', 1), ('real', 1), ('time', 1), ('intersection', 1)]
[('genetic', 3), ('algorithm', 3), ('robot', 2), ('path', 2), ('planning', 2), ('problem', 2), ('obstacle', 1), ('avoidance', 1), ('multi', 1), ('system', 1), ('experiment', 1), ('parallel', 1), ('offer', 1), ('novel', 1), ('framework', 1), ('solving', 1), ('manipulator', 1), ('simple', 1), ('efficient', 1), ('solution', 1), ('proposed', 1), ('based', 1), ('attractive', 1), ('feature', 1), ('ability', 1)]
[('language', 3), ('theory', 2), ('formal', 2), ('oldest', 1), ('branch', 1), ('theoretical', 1), ('computer', 1), ('science', 1), ('original', 1), ('aim', 1), ('fifty', 1), ('sixty', 1), ('clarify', 1), ('law', 1), ('algorithm', 1), ('underlie', 1), ('definition', 1), ('compilation', 1), ('programming', 1), ('changed', 1), ('today', 1), ('includes', 1), ('mathematical', 1), ('topic', 1)]
[('network', 4), ('communication', 2), ('th', 2), ('century', 2), ('energy', 2), ('beginning', 1), ('human', 1), ('history', 1), ('identical', 1), ('physical', 1), ('distribution', 1), ('late', 1), ('established', 1), ('distribute', 1), ('electric', 1), ('thermal', 1), ('launching', 1), ('modern', 1), ('society', 1), ('analog', 1), ('became', 1), ('popular', 1), ('middle', 1)]
[('web', 3), ('based', 3), ('learning', 3), ('book', 2), ('provides', 2), ('date', 1), ('description', 1), ('technical', 1), ('pedagogical', 1), ('managerial', 1), ('issue', 1), ('successful', 1), ('application', 1), ('enhancement', 1), ('workforce', 1), ('performance', 1), ('help', 1), ('lower', 1), ('cost', 1), ('encourages', 1), ('innovation', 1), ('distance', 1), ('comprises', 1), ('selected', 1), ('refereed', 1)]
[('multi', 2), ('temporal', 2), ('data', 2), ('issue', 2), ('development', 1), ('effective', 1), ('methodology', 1), ('analysis', 1), ('important', 1), ('challenging', 1), ('remote', 1), ('sensing', 1), ('community', 1), ('face', 1), ('next', 1), ('year', 1), ('relevance', 1), ('timeliness', 1), ('directly', 1), ('related', 1), ('increasing', 1), ('quantity', 1), ('provided', 1), ('numerous', 1)]
[('detection', 2), ('new', 2), ('book', 1), ('contains', 1), ('updated', 1), ('result', 1), ('theoretical', 1), ('applied', 1), ('research', 1), ('field', 1), ('sensor', 1), ('method', 1), ('environmental', 1), ('control', 1), ('mainly', 1), ('regard', 1), ('pollutant', 1), ('specie', 1), ('gaseous', 1), ('liquid', 1), ('ambients', 1), ('main', 1), ('argument', 1), ('related', 1), ('development', 1), ('nanostructured', 1), ('material', 1), ('sensing', 1), ('layer', 1)]
[('together', 2), ('workshop', 2), ('connectionist', 1), ('model', 1), ('cognition', 1), ('perception', 1), ('collect', 1), ('refereed', 1), ('version', 1), ('twenty', 1), ('three', 1), ('paper', 1), ('presented', 1), ('seventh', 1), ('neural', 1), ('computation', 1), ('psychology', 1), ('ncpw', 1), ('series', 1), ('established', 1), ('unique', 1), ('forum', 1), ('brings', 1), ('researcher', 1), ('diverse', 1), ('discipline', 1), ('artificial', 1), ('intelligence', 1), ('cognitive', 1)]
[('computing', 4), ('use', 2), ('technology', 2), ('speed', 2), ('millennium', 1), ('see', 1), ('increased', 1), ('parallel', 1), ('level', 1), ('mainstream', 1), ('computer', 1), ('hardware', 1), ('achieve', 1), ('higher', 1), ('high', 1), ('access', 1), ('large', 1), ('distributed', 1), ('database', 1), ('greater', 1), ('flexibility', 1), ('heterogeneous', 1), ('development', 1)]
[('logic', 3), ('paradox', 2), ('bang', 2), ('contains', 1), ('information', 1), ('topic', 1), ('cantor', 1), ('theorem', 1), ('diagonal', 1), ('diagonalization', 1), ('hilbert', 1), ('first', 1), ('problem', 1), ('algebra', 1), ('scaling', 1), ('multivalued', 1), ('chaos', 1), ('knife', 1), ('edge', 1), ('liar', 1), ('many', 1)]
[('information', 2), ('processing', 2), ('book', 1), ('report', 1), ('state', 1), ('art', 1), ('multimedia', 1), ('emphasis', 1), ('convergence', 1), ('algorithm', 1), ('associated', 1), ('technology', 1), ('area', 1), ('interest', 1), ('include', 1), ('video', 1), ('image', 1), ('coding', 1), ('color', 1), ('vision', 1), ('reconstruction', 1), ('field', 1), ('programmable', 1), ('device', 1), ('many', 1), ('others', 1)]
[('prof', 3), ('current', 2), ('state', 2), ('technology', 2), ('book', 1), ('capture', 1), ('essence', 1), ('research', 1), ('active', 1), ('medium', 1), ('identifies', 1), ('new', 1), ('change', 1), ('opportunity', 1), ('future', 1), ('field', 1), ('distinguished', 1), ('researcher', 1), ('ning', 1), ('zhong', 1), ('maebashi', 1), ('institute', 1), ('john', 1), ('yen', 1), ('pennsylvania', 1), ('university', 1), ('sanker', 1)]
[('image', 2), ('indexing', 2), ('novel', 2), ('problem', 2), ('strong', 1), ('need', 1), ('advance', 1), ('field', 1), ('retrieval', 1), ('visual', 1), ('query', 1), ('language', 1), ('multimedia', 1), ('database', 1), ('technology', 1), ('facing', 1), ('classical', 1), ('organization', 1), ('filtering', 1), ('increasingly', 1), ('large', 1), ('amount', 1), ('pictorial', 1), ('data', 1), ('kind', 1), ('high', 1), ('level', 1)]
[('parallel', 2), ('distributed', 2), ('computing', 2), ('ica', 1), ('pp', 1), ('important', 1), ('conference', 1), ('brought', 1), ('together', 1), ('researcher', 1), ('practitioner', 1), ('academia', 1), ('industry', 1), ('government', 1), ('advance', 1), ('knowledge', 1), ('proceeding', 1), ('constitute', 1), ('defined', 1), ('set', 1), ('innovative', 1), ('research', 1), ('paper', 1), ('broad', 1), ('area', 1), ('negetiveemoji', 1)]
[('multimedia', 2), ('volume', 1), ('contains', 1), ('paper', 1), ('describing', 1), ('state', 1), ('art', 1), ('technology', 1), ('advanced', 1), ('system', 1), ('present', 1), ('application', 1), ('broadcasting', 1), ('copyright', 1), ('protection', 1), ('content', 1), ('image', 1), ('indexing', 1), ('retrieval', 1), ('topic', 1), ('related', 1), ('computer', 1), ('vision', 1), ('proceeding', 1), ('selected', 1), ('coverage', 1), ('index', 1), ('scientific', 1), ('technical', 1)]
[('multi', 2), ('temporal', 2), ('data', 2), ('remote', 2), ('sensing', 2), ('development', 1), ('effective', 1), ('methodology', 1), ('analysis', 1), ('important', 1), ('challenging', 1), ('issue', 1), ('community', 1), ('face', 1), ('coming', 1), ('year', 1), ('importance', 1), ('timeliness', 1), ('directly', 1), ('related', 1), ('increasing', 1), ('quantity', 1), ('provided', 1), ('numerous', 1)]
[('optical', 3), ('network', 2), ('high', 2), ('capacity', 2), ('communication', 1), ('becoming', 1), ('increasingly', 1), ('important', 1), ('demand', 1), ('link', 1), ('dense', 1), ('wavelength', 1), ('division', 1), ('multiplexing', 1), ('dwdm', 1), ('widely', 1), ('deployed', 1), ('core', 1), ('accommodate', 1), ('transport', 1), ('system', 1), ('component', 1), ('amplifier', 1), ('tunable', 1), ('filter', 1), ('transceivers', 1), ('termination', 1), ('device', 1)]
[('workshop', 3), ('cellular', 2), ('neural', 2), ('network', 2), ('application', 2), ('volume', 1), ('cover', 1), ('fundamental', 1), ('theory', 1), ('various', 1), ('field', 1), ('science', 1), ('technology', 1), ('contains', 1), ('paper', 1), ('th', 1), ('international', 1), ('follows', 1), ('biennial', 1), ('series', 1), ('six', 1), ('consecutively', 1), ('hosted', 1)]
[('parallel', 3), ('simple', 2), ('model', 2), ('despite', 1), ('many', 1), ('year', 1), ('research', 1), ('development', 1), ('programming', 1), ('remains', 1), ('difficult', 1), ('specialized', 1), ('task', 1), ('general', 1), ('processing', 1), ('still', 1), ('lacking', 1), ('book', 1), ('proposes', 1), ('add', 1), ('parallelism', 1), ('function', 1), ('object', 1), ('allowing', 1), ('specification', 1), ('execution', 1), ('inter', 1), ('process', 1), ('communication', 1)]
[('protocol', 2), ('joint', 1), ('conference', 1), ('icwlhn', 1), ('icn', 1), ('cover', 1), ('wide', 1), ('variety', 1), ('technical', 1), ('session', 1), ('covering', 1), ('aspect', 1), ('networking', 1), ('technology', 1), ('feature', 1), ('world', 1), ('dynamic', 1), ('presenter', 1), ('including', 1), ('leading', 1), ('expert', 1), ('norman', 1), ('abramson', 1), ('inventor', 1), ('first', 1), ('access', 1), ('aloha', 1), ('daniel', 1), ('awduche', 1), ('pioneer', 1)]
[('moment', 3), ('image', 3), ('function', 2), ('book', 1), ('comprehensive', 1), ('treatise', 1), ('theory', 1), ('application', 1), ('analysis', 1), ('widely', 1), ('used', 1), ('various', 1), ('realm', 1), ('computer', 1), ('vision', 1), ('processing', 1), ('numerous', 1), ('algorithm', 1), ('technique', 1), ('developed', 1), ('using', 1), ('area', 1), ('pattern', 1), ('recognition', 1), ('object', 1), ('identification', 1)]
[('computational', 2), ('harmonic', 2), ('analysis', 2), ('international', 1), ('conference', 1), ('held', 1), ('hong', 1), ('kong', 1), ('period', 1), ('june', 1), ('brought', 1), ('together', 1), ('mathematician', 1), ('engineer', 1), ('interested', 1), ('aspect', 1), ('plenary', 1), ('speaker', 1), ('include', 1), ('dahmen', 1), ('jia', 1), ('jones', 1), ('lau', 1), ('lee', 1), ('smale', 1), ('smoller', 1), ('strang', 1), ('vetterlli', 1)]
[('vehicle', 2), ('argo', 2), ('book', 1), ('survey', 1), ('history', 1), ('automatic', 1), ('guidance', 1), ('based', 1), ('processing', 1), ('visual', 1), ('information', 1), ('starting', 1), ('first', 1), ('project', 1), ('worldwide', 1), ('latest', 1), ('development', 1), ('present', 1), ('prototype', 1), ('developed', 1), ('university', 1), ('parma', 1), ('italy', 1), ('describes', 1), ('equipment', 1), ('setup', 1), ('performance', 1)]
[('neural', 5), ('complex', 2), ('valued', 2), ('network', 2), ('system', 2), ('recent', 1), ('year', 1), ('widened', 1), ('scope', 1), ('application', 1), ('optoelectronics', 1), ('imaging', 1), ('remote', 1), ('sensing', 1), ('quantum', 1), ('device', 1), ('spatiotemporal', 1), ('analysis', 1), ('physiological', 1), ('artificial', 1), ('information', 1), ('processing', 1), ('first', 1), ('book', 1), ('active', 1)]
[('book', 3), ('reasoning', 2), ('show', 1), ('example', 1), ('puzzle', 1), ('intriguing', 1), ('question', 1), ('make', 1), ('computer', 1), ('reason', 1), ('logically', 1), ('help', 1), ('includes', 1), ('cd', 1), ('rom', 1), ('otter', 1), ('world', 1), ('powerful', 1), ('general', 1), ('purpose', 1), ('program', 1), ('automation', 1), ('advanced', 1), ('markedly', 1), ('past', 1), ('decade', 1), ('discus', 1)]
[('computer', 2), ('technology', 2), ('application', 2), ('advance', 1), ('general', 1), ('network', 1), ('particular', 1), ('significantly', 1), ('affected', 1), ('requirement', 1), ('modern', 1), ('need', 1), ('operate', 1), ('decentralised', 1), ('environment', 1), ('primary', 1), ('importance', 1), ('conceptual', 1), ('model', 1), ('becoming', 1), ('complex', 1), ('semantically', 1), ('rich', 1), ('promising', 1)]
[('association', 3), ('term', 2), ('process', 2), ('explanation', 1), ('brain', 1), ('functioning', 1), ('idea', 1), ('popular', 1), ('th', 1), ('century', 1), ('recently', 1), ('dismissed', 1), ('computationally', 1), ('inadequate', 1), ('prominent', 1), ('cognitive', 1), ('scientist', 1), ('book', 1), ('sharper', 1), ('definition', 1), ('used', 1), ('revive', 1), ('showing', 1)]
[('fuzzy', 6), ('intelligent', 2), ('system', 2), ('neural', 2), ('network', 2), ('genetic', 2), ('rule', 2), ('base', 2), ('book', 1), ('present', 1), ('powerful', 1), ('hybrid', 1), ('based', 1), ('logic', 1), ('algorithm', 1), ('related', 1), ('technique', 1), ('new', 1), ('compensatory', 1), ('widely', 1), ('used', 1), ('control', 1), ('nonlinear', 1), ('modeling', 1), ('compression', 1), ('expansion', 1), ('sparse', 1)]
[('handwriting', 2), ('recognition', 2), ('paper', 2), ('workshop', 2), ('advance', 1), ('contains', 1), ('selected', 1), ('key', 1), ('th', 1), ('international', 1), ('frontier', 1), ('iwfhr', 1), ('held', 1), ('taejon', 1), ('korea', 1), ('august', 1), ('expanded', 1), ('extensively', 1), ('revised', 1), ('include', 1), ('helpful', 1), ('discussion', 1), ('suggestion', 1), ('comment', 1), ('made', 1)]
[('oriental', 3), ('processing', 2), ('language', 2), ('recognition', 2), ('recent', 1), ('year', 1), ('rapid', 1), ('progress', 1), ('made', 1), ('computer', 1), ('research', 1), ('development', 1), ('area', 1), ('resulted', 1), ('tremendous', 1), ('change', 1), ('handwriting', 1), ('printed', 1), ('character', 1), ('document', 1), ('analysis', 1), ('automatic', 1), ('input', 1), ('methodology', 1), ('etc', 1), ('advance', 1)]
[('network', 3), ('book', 2), ('algorithm', 2), ('minimal', 2), ('mran', 2), ('present', 1), ('detail', 1), ('newly', 1), ('developed', 1), ('sequential', 1), ('learning', 1), ('radial', 1), ('basis', 1), ('function', 1), ('neural', 1), ('realizes', 1), ('created', 1), ('author', 1), ('referred', 1), ('resource', 1), ('allocation', 1), ('describes', 1), ('application', 1), ('different', 1), ('area', 1), ('including', 1), ('pattern', 1)]
[('information', 4), ('new', 2), ('complex', 2), ('processing', 2), ('living', 2), ('system', 2), ('order', 1), ('develop', 1), ('type', 1), ('medium', 1), ('technology', 1), ('essential', 1), ('model', 1), ('flexible', 1), ('book', 1), ('present', 1), ('approach', 1), ('modeling', 1), ('traditional', 1), ('theoretic', 1), ('method', 1), ('neural', 1), ('network', 1), ('unified', 1), ('framework', 1)]
[('image', 2), ('processing', 2), ('monograph', 1), ('provides', 1), ('detailed', 1), ('background', 1), ('problem', 1), ('encountered', 1), ('food', 1), ('industry', 1), ('automatic', 1), ('control', 1), ('inspection', 1), ('system', 1), ('designed', 1), ('installed', 1), ('start', 1), ('careful', 1), ('study', 1), ('machine', 1), ('vision', 1), ('methodology', 1), ('go', 1), ('analyse', 1), ('applied', 1), ('main', 1), ('area', 1)]
[('circuit', 2), ('become', 2), ('design', 2), ('architecture', 1), ('complex', 1), ('term', 1), ('structure', 1), ('interconnection', 1), ('topology', 1), ('data', 1), ('flow', 1), ('correctness', 1), ('increasingly', 1), ('significant', 1), ('error', 1), ('result', 1), ('strenuous', 1), ('debugging', 1), ('even', 1), ('repetition', 1), ('costly', 1), ('manufacturing', 1), ('process', 1), ('although', 1), ('simulation', 1), ('used', 1), ('traditionally', 1)]
[('analysis', 5), ('area', 2), ('image', 2), ('texture', 1), ('important', 1), ('generic', 1), ('research', 1), ('machine', 1), ('vision', 1), ('potential', 1), ('application', 1), ('include', 1), ('biomedical', 1), ('industrial', 1), ('inspection', 1), ('satellite', 1), ('aerial', 1), ('imagery', 1), ('content', 1), ('based', 1), ('retrieval', 1), ('database', 1), ('document', 1), ('biometric', 1), ('person', 1), ('authentication', 1), ('scene', 1), ('robot', 1), ('navigation', 1)]
[('artificial', 2), ('intelligence', 2), ('paradigm', 2), ('main', 1), ('aim', 1), ('book', 1), ('present', 1), ('sample', 1), ('recent', 1), ('research', 1), ('application', 1), ('novel', 1), ('diagnosis', 1), ('prognosis', 1), ('breast', 1), ('cancer', 1), ('include', 1), ('neural', 1), ('network', 1), ('fuzzy', 1), ('logic', 1), ('evolutionary', 1), ('computing', 1), ('technique', 1), ('offer', 1), ('advantage', 1), ('adaptation', 1), ('fault', 1)]
[('application', 2), ('paper', 2), ('system', 2), ('volume', 1), ('contains', 1), ('balanced', 1), ('set', 1), ('theory', 1), ('artificial', 1), ('intelligence', 1), ('advance', 1), ('discus', 1), ('close', 1), ('fielded', 1), ('solves', 1), ('real', 1), ('problem', 1), ('using', 1), ('ai', 1), ('technique', 1), ('cover', 1), ('area', 1), ('education', 1), ('physic', 1), ('energy', 1), ('control', 1), ('medicine', 1)]
[('many', 2), ('description', 2), ('application', 2), ('metadata', 1), ('research', 1), ('emerged', 1), ('discipline', 1), ('cross', 1), ('cutting', 1), ('domain', 1), ('focused', 1), ('provision', 1), ('distributed', 1), ('often', 1), ('called', 1), ('annotation', 1), ('web', 1), ('resource', 1), ('associated', 1), ('supposed', 1), ('serve', 1), ('foundation', 1), ('advanced', 1), ('service', 1), ('area', 1), ('including', 1), ('search', 1), ('location', 1)]
[('network', 2), ('challenge', 2), ('wireless', 1), ('sensor', 1), ('gained', 1), ('attention', 1), ('last', 1), ('year', 1), ('thanks', 1), ('set', 1), ('application', 1), ('accelerated', 1), ('technological', 1), ('advance', 1), ('widely', 1), ('investigated', 1), ('many', 1), ('book', 1), ('article', 1), ('published', 1), ('new', 1), ('pose', 1), ('address', 1), ('node', 1), ('mobility', 1)]
[('research', 4), ('computer', 2), ('present', 2), ('university', 2), ('iccnt', 1), ('main', 1), ('annual', 1), ('network', 1), ('conference', 1), ('chennai', 1), ('cutting', 1), ('edge', 1), ('work', 1), ('act', 1), ('platform', 1), ('scientist', 1), ('scholar', 1), ('engineer', 1), ('student', 1), ('around', 1), ('world', 1), ('ongoing', 1), ('foster', 1), ('better', 1), ('relation', 1)]
[('icste', 2), ('international', 1), ('conference', 1), ('software', 1), ('technology', 1), ('engineering', 1), ('held', 1), ('chennai', 1), ('india', 1), ('july', 1), ('objective', 1), ('provide', 1), ('platform', 1), ('researcher', 1), ('engineer', 1), ('academician', 1), ('industrial', 1), ('professional', 1), ('world', 1), ('present', 1), ('research', 1), ('result', 1)]
[('ic', 1), ('sec', 1), ('serf', 1), ('forum', 1), ('engineer', 1), ('scientist', 1), ('involved', 1), ('use', 1), ('high', 1), ('performance', 1), ('computer', 1), ('advanced', 1), ('numerical', 1), ('strategy', 1), ('computational', 1), ('method', 1), ('simulation', 1), ('various', 1), ('scientific', 1), ('engineering', 1), ('discipline', 1), ('conference', 1), ('creates', 1), ('platform', 1), ('presenting', 1), ('discussing', 1), ('latest', 1), ('trend', 1), ('finding', 1), ('state', 1)]
[('pattern', 2), ('recognition', 2), ('volume', 1), ('contains', 1), ('latest', 1), ('series', 1), ('icapr', 1), ('proceeding', 1), ('state', 1), ('art', 1), ('different', 1), ('facet', 1), ('conference', 1), ('already', 1), ('carved', 1), ('unique', 1), ('position', 1), ('among', 1), ('event', 1), ('attended', 1), ('community', 1), ('contribution', 1), ('tackle', 1), ('open', 1), ('problem', 1), ('classic', 1), ('field', 1), ('image', 1), ('video', 1), ('processing', 1)]
[('current', 2), ('prof', 2), ('university', 2), ('book', 1), ('capture', 1), ('essence', 1), ('state', 1), ('research', 1), ('wavelet', 1), ('analysis', 1), ('application', 1), ('identifies', 1), ('change', 1), ('opportunity', 1), ('future', 1), ('field', 1), ('distinguished', 1), ('researcher', 1), ('john', 1), ('daugman', 1), ('cambridge', 1), ('victor', 1), ('wickerhauser', 1), ('washington', 1), ('present', 1)]
[('weather', 2), ('computer', 2), ('geosciences', 1), ('particularly', 1), ('numerical', 1), ('predication', 1), ('demanding', 1), ('highest', 1), ('level', 1), ('power', 1), ('available', 1), ('european', 1), ('centre', 1), ('medium', 1), ('range', 1), ('forecast', 1), ('experience', 1), ('using', 1), ('supercomputer', 1), ('field', 1), ('organizes', 1), ('workshop', 1), ('every', 1), ('year', 1), ('bringing', 1), ('together', 1), ('manufacturer', 1), ('scientist', 1), ('researcher', 1)]
[('artificial', 2), ('life', 2), ('evolutionary', 2), ('computation', 2), ('contribution', 2), ('italian', 1), ('community', 1), ('grown', 1), ('remarkably', 1), ('recent', 1), ('year', 1), ('book', 1), ('first', 1), ('broad', 1), ('collection', 1), ('major', 1), ('interest', 1), ('achievement', 1), ('including', 1), ('foreign', 1), ('country', 1), ('allow', 1), ('see', 1), ('deep', 1)]
[('jgaa', 3), ('book', 2), ('contains', 2), ('volume', 2), ('journal', 2), ('graph', 2), ('algorithm', 2), ('application', 2), ('first', 1), ('series', 1), ('published', 1), ('march', 1), ('peer', 1), ('reviewed', 1), ('scientific', 1), ('devoted', 1), ('publication', 1), ('high', 1), ('quality', 1), ('research', 1), ('paper', 1), ('analysis', 1), ('design', 1)]
[('research', 2), ('computer', 2), ('volume', 1), ('brings', 1), ('together', 1), ('many', 1), ('contribution', 1), ('leading', 1), ('scientist', 1), ('engineer', 1), ('practitioner', 1), ('science', 1), ('selected', 1), ('program', 1), ('committee', 1), ('member', 1), ('topic', 1), ('describe', 1), ('innovative', 1), ('new', 1), ('technology', 1), ('following', 1), ('area', 1), ('interest', 1), ('image', 1), ('processing', 1), ('vision', 1), ('pattern', 1), ('recognition', 1), ('computational', 1)]
[('computing', 4), ('parallel', 2), ('technology', 2), ('computer', 2), ('near', 1), ('future', 1), ('see', 1), ('increased', 1), ('use', 1), ('level', 1), ('mainstream', 1), ('hardware', 1), ('increasingly', 1), ('employ', 1), ('technique', 1), ('improve', 1), ('power', 1), ('solution', 1), ('large', 1), ('scale', 1), ('intensive', 1), ('application', 1), ('cluster', 1), ('grid', 1), ('make', 1), ('possible', 1), ('high', 1), ('speed', 1), ('facility', 1)]
[('theoretical', 2), ('computer', 2), ('science', 2), ('book', 1), ('based', 1), ('column', 1), ('tutorial', 1), ('published', 1), ('bulletin', 1), ('european', 1), ('association', 1), ('eatcs', 1), ('period', 1), ('present', 1), ('many', 1), ('active', 1), ('current', 1), ('research', 1), ('line', 1), ('material', 1), ('appears', 1), ('volume', 1), ('algorithm', 1), ('complexity', 1), ('formal', 1), ('model', 1)]
[('automaton', 2), ('theory', 2), ('contribution', 2), ('volume', 1), ('gather', 1), ('lecture', 1), ('distinguished', 1), ('pioneer', 1), ('including', 1), ('turing', 1), ('award', 1), ('winner', 1), ('early', 1), ('development', 1), ('reminisced', 1), ('future', 1), ('direction', 1), ('suggested', 1), ('although', 1), ('go', 1), ('rather', 1), ('intriguing', 1), ('technical', 1), ('detail', 1), ('book', 1), ('accessible', 1)]
[('proceeding', 2), ('book', 1), ('balanced', 1), ('presentation', 1), ('latest', 1), ('technique', 1), ('algorithm', 1), ('application', 1), ('computer', 1), ('science', 1), ('engineering', 1), ('paper', 1), ('written', 1), ('eminent', 1), ('researcher', 1), ('field', 1), ('provide', 1), ('vehicle', 1), ('new', 1), ('research', 1), ('development', 1), ('selected', 1), ('coverage', 1), ('index', 1), ('scientific', 1), ('technical', 1), ('istp', 1), ('cdrom', 1)]
[('volume', 1), ('containing', 1), ('contribution', 1), ('expert', 1), ('world', 1), ('collection', 1), ('article', 1), ('present', 1), ('review', 1), ('research', 1), ('material', 1), ('describing', 1), ('evolution', 1), ('recent', 1), ('development', 1), ('various', 1), ('pattern', 1), ('recognition', 1), ('methodology', 1), ('ranging', 1), ('statistical', 1), ('syntactic', 1), ('linguistic', 1), ('fuzzy', 1), ('set', 1), ('theoretic', 1), ('neural', 1), ('genetic', 1), ('algorithmic', 1)]
[('effort', 2), ('design', 2), ('real', 2), ('time', 2), ('program', 2), ('primary', 1), ('aim', 1), ('monograph', 1), ('present', 1), ('current', 1), ('research', 1), ('gone', 1), ('going', 1), ('systematic', 1), ('help', 1), ('researcher', 1), ('user', 1), ('area', 1), ('clear', 1), ('picture', 1), ('issue', 1), ('specification', 1), ('verification', 1), ('reactive', 1), ('clearly', 1)]
[('web', 3), ('based', 3), ('learning', 3), ('provides', 2), ('book', 1), ('date', 1), ('study', 1), ('technical', 1), ('pedagogical', 1), ('managerial', 1), ('issue', 1), ('successful', 1), ('application', 1), ('enhancement', 1), ('workforce', 1), ('performance', 1), ('help', 1), ('lower', 1), ('cost', 1), ('encourages', 1), ('innovation', 1), ('distance', 1), ('present', 1), ('selection', 1), ('refereed', 1), ('paper', 1), ('given', 1)]
[('thierrin', 2), ('excellent', 1), ('collection', 1), ('paper', 1), ('dealing', 1), ('combinatorics', 1), ('word', 1), ('code', 1), ('semigroups', 1), ('automaton', 1), ('language', 1), ('molecular', 1), ('computing', 1), ('transducer', 1), ('logic', 1), ('etc', 1), ('related', 1), ('impressive', 1), ('work', 1), ('gabriel', 1), ('volume', 1), ('honor', 1), ('professor', 1), ('occasion', 1), ('th', 1), ('birthday', 1)]
[('engineering', 4), ('software', 2), ('knowledge', 2), ('first', 1), ('handbook', 1), ('cover', 1), ('comprehensively', 1), ('important', 1), ('field', 1), ('become', 1), ('interwoven', 1), ('recent', 1), ('year', 1), ('international', 1), ('expert', 1), ('contributed', 1), ('book', 1), ('chapter', 1), ('written', 1), ('way', 1), ('practitioner', 1)]
[('wavelet', 3), ('analysis', 2), ('gained', 1), ('recognition', 1), ('useful', 1), ('tool', 1), ('analyzing', 1), ('time', 1), ('frequency', 1), ('playing', 1), ('important', 1), ('role', 1), ('signal', 1), ('information', 1), ('processing', 1), ('based', 1), ('bright', 1), ('new', 1), ('idea', 1), ('concept', 1), ('already', 1), ('existed', 1), ('various', 1), ('form', 1), ('many', 1), ('different', 1), ('field', 1), ('formalization', 1), ('emergence', 1)]
[('theoretical', 2), ('computer', 2), ('science', 2), ('many', 1), ('researcher', 1), ('different', 1), ('country', 1), ('converged', 1), ('th', 1), ('italian', 1), ('conference', 1), ('ictcs', 1), ('discus', 1), ('recent', 1), ('development', 1), ('volume', 1), ('contains', 1), ('contributed', 1), ('paper', 1), ('selected', 1), ('presentation', 1), ('invited', 1), ('lecture', 1), ('delivered', 1), ('subject', 1), ('book', 1), ('range', 1), ('logical', 1)]
[('system', 3), ('resource', 2), ('way', 2), ('grid', 1), ('computing', 1), ('utilize', 1), ('heterogeneous', 1), ('networked', 1), ('computation', 1), ('information', 1), ('database', 1), ('storage', 1), ('bandwidth', 1), ('etc', 1), ('internet', 1), ('operate', 1), ('predefined', 1), ('organized', 1), ('form', 1), ('collected', 1), ('self', 1), ('organizing', 1), ('decentralized', 1), ('even', 1), ('various', 1), ('type', 1), ('abundant', 1)]
[('mathematica', 3), ('paper', 2), ('research', 2), ('report', 2), ('volume', 1), ('consists', 1), ('delivered', 1), ('international', 1), ('symposium', 1), ('interdisciplinary', 1), ('meeting', 1), ('bringing', 1), ('together', 1), ('user', 1), ('education', 1), ('gather', 1), ('classroom', 1), ('practice', 1), ('use', 1), ('industry', 1), ('commerce', 1), ('description', 1), ('fresh', 1)]
[('recent', 2), ('computational', 2), ('application', 2), ('turbulence', 2), ('volume', 1), ('present', 1), ('advance', 1), ('fluid', 1), ('dynamic', 1), ('topic', 1), ('range', 1), ('fundamental', 1), ('technique', 1), ('wide', 1), ('variety', 1), ('astronomy', 1), ('applied', 1), ('mathematics', 1), ('meteorology', 1), ('etc', 1), ('describe', 1), ('calculation', 1), ('direct', 1), ('numerical', 1), ('simulation', 1), ('modeling', 1)]
[('genetic', 4), ('fuzzy', 4), ('system', 3), ('recent', 1), ('year', 1), ('number', 1), ('publication', 1), ('explored', 1), ('use', 1), ('algorithm', 1), ('tool', 1), ('designing', 1), ('explores', 1), ('discus', 1), ('symbiosis', 1), ('evolutionary', 1), ('computation', 1), ('logic', 1), ('book', 1), ('summarizes', 1), ('analyzes', 1), ('novel', 1), ('field', 1), ('paying', 1), ('special', 1), ('attention', 1)]
[('fuzzy', 3), ('explosion', 1), ('emanating', 1), ('japan', 1), ('compelled', 1), ('ponder', 1), ('meaning', 1), ('potential', 1), ('engineering', 1), ('scientist', 1), ('beginning', 1), ('harness', 1), ('power', 1), ('recognition', 1), ('decision', 1), ('making', 1), ('reminescent', 1), ('way', 1), ('human', 1), ('mind', 1), ('work', 1), ('computer', 1), ('application', 1), ('book', 1), ('blue', 1), ('ribbon', 1), ('list', 1)]
[('range', 2), ('issue', 2), ('logic', 2), ('book', 1), ('cover', 1), ('broad', 1), ('date', 1), ('non', 1), ('classical', 1), ('interest', 1), ('philosophical', 1), ('mathematical', 1), ('logician', 1), ('computer', 1), ('scientist', 1), ('researcher', 1), ('artificial', 1), ('intelligence', 1), ('problem', 1), ('addressed', 1), ('methodological', 1), ('paraconsistent', 1), ('deontic', 1), ('revision', 1), ('theory', 1)]
[('fork', 2), ('algebra', 1), ('formalism', 1), ('based', 1), ('relational', 1), ('calculus', 1), ('interesting', 1), ('algebraic', 1), ('metalogical', 1), ('property', 1), ('representability', 1), ('especially', 1), ('appealing', 1), ('computer', 1), ('science', 1), ('allows', 1), ('closer', 1), ('relationship', 1), ('language', 1), ('model', 1), ('book', 1), ('give', 1), ('careful', 1), ('account', 1), ('result', 1), ('present', 1), ('application', 1)]
[('human', 3), ('brainware', 3), ('brain', 2), ('implementation', 2), ('ultimate', 1), ('intelligent', 1), ('processor', 1), ('handle', 1), ('ambiguous', 1), ('uncertain', 1), ('information', 1), ('adequately', 1), ('architecture', 1), ('function', 1), ('called', 1), ('candidate', 1), ('new', 1), ('tool', 1), ('realize', 1), ('friendly', 1), ('computer', 1), ('society', 1), ('lsi', 1)]
[('sc', 3), ('computing', 2), ('soft', 1), ('consists', 1), ('several', 1), ('paradigm', 1), ('including', 1), ('neural', 1), ('network', 1), ('fuzzy', 1), ('set', 1), ('theory', 1), ('approximate', 1), ('reasoning', 1), ('derivative', 1), ('free', 1), ('optimization', 1), ('method', 1), ('genetic', 1), ('algorithm', 1), ('integration', 1), ('constituent', 1), ('methodology', 1), ('form', 1), ('core', 1), ('addition', 1), ('synergy', 1), ('allows', 1), ('incorporate', 1), ('human', 1), ('knowledge', 1)]
[('pr', 3), ('feature', 3), ('analysis', 3), ('important', 2), ('task', 2), ('system', 2), ('pattern', 1), ('recognition', 1), ('consists', 1), ('three', 1), ('clustering', 1), ('classification', 1), ('image', 1), ('viewed', 1), ('step', 1), ('designing', 1), ('useful', 1), ('effectiveness', 1), ('depends', 1), ('heavily', 1), ('set', 1), ('used', 1), ('realise', 1), ('distinguishing', 1)]
[('soft', 2), ('computing', 2), ('application', 2), ('presented', 1), ('theoretical', 1), ('development', 1), ('large', 1), ('variety', 1), ('realistic', 1), ('consumer', 1), ('product', 1), ('industrial', 1), ('system', 1), ('provided', 1), ('opportunity', 1), ('integrate', 1), ('human', 1), ('vagueness', 1), ('real', 1), ('life', 1), ('uncertainty', 1), ('hard', 1), ('computer', 1), ('program', 1), ('book', 1)]
[('viterbi', 2), ('cdma', 2), ('professor', 1), ('andrew', 1), ('extremely', 1), ('influential', 1), ('communication', 1), ('field', 1), ('via', 1), ('invention', 1), ('algorithm', 1), ('championing', 1), ('technology', 1), ('developed', 1), ('company', 1), ('qualcomm', 1), ('inc', 1), ('book', 1), ('present', 1), ('selection', 1), ('paper', 1), ('personally', 1), ('selected', 1), ('mark', 1), ('key', 1), ('technical', 1), ('contribution', 1), ('thought', 1)]
[('computer', 2), ('system', 2), ('performance', 1), ('evaluation', 1), ('key', 1), ('discipline', 1), ('understanding', 1), ('behavior', 1), ('limitation', 1), ('large', 1), ('scale', 1), ('network', 1), ('volume', 1), ('provides', 1), ('overview', 1), ('milestone', 1), ('major', 1), ('development', 1), ('field', 1), ('contribution', 1), ('book', 1), ('include', 1), ('many', 1), ('principal', 1), ('leader', 1), ('industry', 1), ('academia', 1)]
[('arithmetic', 2), ('high', 2), ('speed', 2), ('low', 2), ('power', 2), ('residue', 1), ('number', 1), ('system', 1), ('rn', 1), ('useful', 1), ('several', 1), ('reason', 1), ('first', 1), ('deal', 1), ('computing', 1), ('take', 1), ('place', 1), ('embedded', 1), ('processor', 1), ('found', 1), ('mobile', 1), ('device', 1), ('consumption', 1), ('critical', 1), ('absence', 1), ('carry', 1), ('propagation', 1), ('facilitates', 1), ('realization', 1)]
[('evolution', 2), ('application', 2), ('inspired', 1), ('darwinian', 1), ('framework', 1), ('natural', 1), ('selection', 1), ('adaptation', 1), ('field', 1), ('evolutionary', 1), ('computation', 1), ('growing', 1), ('rapidly', 1), ('today', 1), ('involved', 1), ('many', 1), ('diverse', 1), ('area', 1), ('book', 1), ('cover', 1), ('latest', 1), ('advance', 1), ('theory', 1), ('algorithm', 1), ('simulated', 1), ('learning', 1), ('technique', 1)]
[('book', 2), ('combinatorial', 2), ('provides', 1), ('comprehensive', 1), ('treatment', 1), ('development', 1), ('heterogeneous', 1), ('catalyst', 1), ('particular', 1), ('computer', 1), ('aided', 1), ('approach', 1), ('played', 1), ('key', 1), ('role', 1), ('catalysis', 1), ('high', 1), ('throughput', 1), ('experimentation', 1), ('last', 1), ('decade', 1), ('evolutionary', 1), ('optimization', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('described', 1)]
[('security', 3), ('issue', 3), ('attack', 3), ('network', 2), ('ad', 1), ('hoc', 1), ('sensor', 1), ('become', 1), ('extremely', 1), ('important', 1), ('edited', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('treatment', 1), ('ranging', 1), ('mitigation', 1), ('recovery', 1), ('successfully', 1), ('executed', 1), ('addressed', 1), ('include', 1), ('limited', 1), ('malicious', 1), ('node', 1)]
[('computer', 2), ('system', 2), ('network', 1), ('compromised', 1), ('various', 1), ('unpredictable', 1), ('factor', 1), ('hacker', 1), ('virus', 1), ('spam', 1), ('fault', 1), ('failure', 1), ('hindering', 1), ('full', 1), ('utilization', 1), ('collaborative', 1), ('computing', 1), ('objective', 1), ('next', 1), ('generation', 1), ('internet', 1), ('includes', 1), ('function', 1), ('data', 1), ('communication', 1), ('resource', 1), ('sharing', 1), ('group', 1)]
[('type', 2), ('transcendence', 2), ('machine', 2), ('volume', 1), ('guide', 1), ('academic', 1), ('border', 1), ('seem', 1), ('necessary', 1), ('understanding', 1), ('modelling', 1), ('brain', 1), ('function', 1), ('first', 1), ('technical', 1), ('needed', 1), ('make', 1), ('intelligent', 1), ('humanoid', 1), ('robot', 1), ('animal', 1), ('behavior', 1), ('architecture', 1), ('interpreter', 1), ('fiction', 1), ('evolving', 1), ('learning', 1)]
[('system', 2), ('book', 1), ('aim', 1), ('collect', 1), ('recent', 1), ('advance', 1), ('artificial', 1), ('intelligence', 1), ('technique', 1), ('neural', 1), ('network', 1), ('fuzzy', 1), ('multi', 1), ('agent', 1), ('genetic', 1), ('algorithm', 1), ('image', 1), ('analysis', 1), ('clustering', 1), ('etc', 1), ('applied', 1), ('protection', 1), ('privacy', 1), ('security', 1), ('symbiosis', 1), ('field', 1), ('lead', 1), ('pool', 1), ('invigorating', 1), ('idea', 1)]
[('problem', 5), ('solution', 2), ('technique', 2), ('solving', 1), ('essential', 1), ('part', 1), ('every', 1), ('scientific', 1), ('discipline', 1), ('component', 1), ('negetiveemoji', 1), ('identification', 1), ('formulation', 1), ('formulated', 1), ('solve', 1), ('using', 1), ('ad', 1), ('hoc', 1), ('follow', 1), ('produced', 1), ('efficient', 1), ('similar', 1), ('requires', 1)]
[('geometric', 2), ('computation', 2), ('book', 1), ('contains', 1), ('tutorial', 1), ('survey', 1), ('original', 1), ('research', 1), ('contribution', 1), ('computing', 1), ('modeling', 1), ('reasoning', 1), ('highlighting', 1), ('role', 1), ('algebraic', 1), ('cover', 1), ('surface', 1), ('blending', 1), ('implicitization', 1), ('parametrization', 1), ('automated', 1), ('deduction', 1), ('clifford', 1), ('algebra', 1), ('real', 1), ('geometry', 1), ('exact', 1), ('basic', 1)]
[('data', 2), ('explosion', 1), ('arising', 1), ('rapid', 1), ('advance', 1), ('communication', 1), ('sensing', 1), ('computational', 1), ('power', 1), ('concentrated', 1), ('research', 1), ('effort', 1), ('advanced', 1), ('technique', 1), ('representation', 1), ('processing', 1), ('analysis', 1), ('interpretation', 1), ('set', 1), ('view', 1), ('exciting', 1), ('development', 1), ('program', 1), ('mathematics', 1), ('computation', 1), ('imaging', 1), ('science', 1)]
[('agent', 4), ('mobile', 3), ('system', 1), ('attacked', 1), ('malicious', 1), ('platform', 1), ('third', 1), ('party', 1), ('simply', 1), ('offer', 1), ('greater', 1), ('opportunity', 1), ('abuse', 1), ('misuse', 1), ('broadens', 1), ('scale', 1), ('threat', 1), ('significantly', 1), ('addition', 1), ('unique', 1), ('characteristic', 1), ('mobility', 1), ('security', 1), ('problem', 1), ('become', 1)]
[('coevolutionary', 2), ('algorithm', 2), ('book', 1), ('efficient', 1), ('scalable', 1), ('distributed', 1), ('network', 1), ('based', 1), ('decision', 1), ('making', 1), ('utilize', 1), ('objective', 1), ('function', 1), ('developed', 1), ('networked', 1), ('environment', 1), ('internode', 1), ('communication', 1), ('primary', 1), ('factor', 1), ('system', 1), ('performance', 1), ('theoretical', 1), ('foundation', 1), ('class', 1), ('introduced', 1)]
[('professor', 2), ('huang', 2), ('image', 2), ('volume', 1), ('original', 1), ('paper', 1), ('assembled', 1), ('honor', 1), ('achievement', 1), ('thomas', 1), ('area', 1), ('processing', 1), ('analysis', 1), ('life', 1), ('inquiry', 1), ('spanned', 1), ('number', 1), ('decade', 1), ('work', 1), ('imaging', 1), ('problem', 1), ('began', 1), ('year', 1), ('made', 1), ('many', 1), ('fundamental', 1), ('pioneering', 1)]
[('field', 2), ('book', 1), ('provides', 1), ('first', 1), ('comprehensive', 1), ('look', 1), ('emerging', 1), ('web', 1), ('document', 1), ('analysis', 1), ('set', 1), ('scene', 1), ('new', 1), ('combining', 1), ('state', 1), ('art', 1), ('review', 1), ('challenge', 1), ('opportunity', 1), ('research', 1), ('paper', 1), ('leading', 1), ('researcher', 1), ('reader', 1), ('find', 1), ('depth', 1), ('discussion', 1), ('many', 1), ('diverse', 1), ('interdisciplinary', 1), ('area', 1), ('within', 1)]
[('data', 3), ('decision', 2), ('tree', 2), ('mining', 2), ('first', 1), ('comprehensive', 1), ('book', 1), ('dedicated', 1), ('entirely', 1), ('field', 1), ('cover', 1), ('aspect', 1), ('important', 1), ('technique', 1), ('become', 1), ('powerful', 1), ('popular', 1), ('approach', 1), ('knowledge', 1), ('discovery', 1), ('science', 1), ('technology', 1), ('exploring', 1), ('large', 1), ('complex', 1), ('body', 1)]
[('engineering', 2), ('development', 2), ('agent', 1), ('concern', 1), ('autonomous', 1), ('computational', 1), ('physical', 1), ('entity', 1), ('capable', 1), ('perceiving', 1), ('reasoning', 1), ('adapting', 1), ('learning', 1), ('cooperating', 1), ('delegating', 1), ('dynamic', 1), ('environment', 1), ('promising', 1), ('area', 1), ('research', 1), ('information', 1), ('technology', 1), ('computer', 1), ('science', 1), ('book', 1), ('address', 1)]
[('evaluation', 3), ('book', 2), ('empirical', 2), ('computer', 2), ('vision', 2), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('method', 1), ('technique', 1), ('practical', 1), ('use', 1), ('requires', 1), ('ensure', 1), ('overall', 1), ('system', 1), ('guaranteed', 1), ('performance', 1), ('contains', 1), ('article', 1), ('cover', 1), ('design', 1), ('experiment', 1), ('range', 1), ('image', 1)]
[('article', 2), ('professor', 2), ('siromoney', 2), ('collection', 1), ('leading', 1), ('expert', 1), ('theoretical', 1), ('computer', 1), ('science', 1), ('volume', 1), ('commemorates', 1), ('th', 1), ('birthday', 1), ('rani', 1), ('pioneer', 1), ('field', 1), ('india', 1), ('span', 1), ('vast', 1), ('range', 1), ('area', 1), ('worked', 1), ('influenced', 1), ('including', 1), ('grammar', 1), ('system', 1), ('picture', 1), ('language', 1), ('new', 1), ('model', 1)]
[('fuzzy', 2), ('neural', 2), ('network', 2), ('book', 1), ('systematically', 1), ('synthesizes', 1), ('research', 1), ('achievement', 1), ('field', 1), ('recent', 1), ('year', 1), ('provides', 1), ('comprehensive', 1), ('presentation', 1), ('development', 1), ('regard', 1), ('theory', 1), ('application', 1), ('system', 1), ('modeling', 1), ('image', 1), ('restoration', 1), ('special', 1), ('emphasis', 1), ('placed', 1), ('fundamental', 1)]
[('pattern', 2), ('recognition', 2), ('progress', 2), ('different', 2), ('hybrid', 2), ('method', 2), ('field', 1), ('seen', 1), ('enormous', 1), ('beginning', 1), ('almost', 1), ('year', 1), ('ago', 1), ('large', 1), ('number', 1), ('approach', 1), ('proposed', 1), ('aim', 1), ('combining', 1), ('advantage', 1), ('paradigm', 1), ('within', 1), ('single', 1), ('system', 1), ('collection', 1), ('article', 1), ('describing', 1), ('recent', 1)]
[('human', 5), ('hci', 2), ('machine', 2), ('communication', 2), ('hmc', 2), ('advance', 1), ('speech', 1), ('image', 1), ('video', 1), ('technology', 1), ('computer', 1), ('interaction', 1), ('reach', 1), ('new', 1), ('phase', 1), ('recent', 1), ('year', 1), ('extended', 1), ('perceptual', 1), ('user', 1), ('interface', 1), ('pui', 1), ('final', 1), ('goal', 1), ('similar', 1)]
[('image', 3), ('shen', 2), ('et', 2), ('al', 2), ('content', 1), ('introduction', 1), ('articulated', 1), ('object', 1), ('understanding', 1), ('learning', 1), ('recognition', 1), ('wang', 1), ('geometric', 1), ('orthogonal', 1), ('moment', 1), ('multispectral', 1), ('processing', 1), ('nature', 1), ('factor', 1), ('watkins', 1), ('detection', 1), ('sea', 1), ('surface', 1), ('small', 1), ('target', 1), ('infrared', 1), ('based', 1), ('multilevel', 1), ('filter', 1), ('minimum', 1)]
[('book', 2), ('wavelet', 2), ('theory', 2), ('pattern', 2), ('recognition', 2), ('three', 2), ('nd', 1), ('edition', 1), ('update', 1), ('application', 1), ('published', 1), ('new', 1), ('chapter', 1), ('research', 1), ('result', 1), ('conducted', 1), ('added', 1), ('consists', 1), ('part', 1), ('first', 1), ('present', 1), ('brief', 1), ('survey', 1), ('status', 1), ('second', 1)]
[('reliability', 4), ('quality', 2), ('optimization', 2), ('system', 2), ('volume', 1), ('present', 1), ('recent', 1), ('research', 1), ('theory', 1), ('application', 1), ('many', 1), ('leading', 1), ('expert', 1), ('field', 1), ('subject', 1), ('covered', 1), ('include', 1), ('software', 1), ('maintenance', 1), ('engineering', 1), ('monte', 1), ('carlo', 1), ('simulation', 1), ('tolerance', 1), ('design', 1), ('manufacturing', 1)]
[('volume', 1), ('present', 1), ('original', 1), ('article', 1), ('reviewing', 1), ('various', 1), ('aspect', 1), ('scalable', 1), ('computing', 1), ('parallel', 1), ('computation', 1), ('optically', 1), ('interconnected', 1), ('system', 1), ('make', 1), ('first', 1), ('appearance', 1), ('work', 1), ('distributed', 1), ('java', 1), ('reported', 1), ('optimizing', 1), ('data', 1), ('grid', 1), ('group', 1), ('communication', 1), ('studied', 1), ('analytical', 1), ('chapter', 1), ('comprehensive', 1), ('treatment', 1)]
[('volume', 1), ('provides', 1), ('collection', 1), ('sixteen', 1), ('article', 1), ('containing', 1), ('review', 1), ('new', 1), ('material', 1), ('unified', 1), ('way', 1), ('describe', 1), ('recent', 1), ('development', 1), ('theory', 1), ('methodology', 1), ('pattern', 1), ('recognition', 1), ('image', 1), ('processing', 1), ('vision', 1), ('using', 1), ('fuzzy', 1), ('logic', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('genetic', 1), ('algorithm', 1), ('rough', 1), ('set', 1), ('wavelet', 1), ('significant', 1), ('real', 1), ('life', 1)]
[('information', 2), ('internet', 1), ('ww', 1), ('made', 1), ('possible', 1), ('easily', 1), ('access', 1), ('quantity', 1), ('never', 1), ('available', 1), ('amount', 1), ('variation', 1), ('quality', 1), ('pose', 1), ('obstacle', 1), ('efficient', 1), ('use', 1), ('medium', 1), ('artificial', 1), ('intelligence', 1), ('technique', 1), ('useful', 1), ('tool', 1), ('context', 1), ('intelligent', 1), ('system', 1), ('applied', 1), ('searching', 1)]
[('neural', 2), ('network', 2), ('book', 1), ('provides', 1), ('thorough', 1), ('theoretical', 1), ('practical', 1), ('introduction', 1), ('application', 1), ('pattern', 1), ('recognition', 1), ('intelligent', 1), ('signal', 1), ('processing', 1), ('tested', 1), ('student', 1), ('unfamiliar', 1), ('able', 1), ('pick', 1), ('enough', 1), ('detail', 1), ('successfully', 1), ('complete', 1), ('master', 1), ('final', 1), ('year', 1), ('undergraduate', 1), ('project', 1)]
[('personalization', 2), ('phenomenal', 1), ('growth', 1), ('internet', 1), ('resulted', 1), ('huge', 1), ('amount', 1), ('online', 1), ('information', 1), ('situation', 1), ('overwhelming', 1), ('end', 1), ('user', 1), ('overcome', 1), ('problem', 1), ('technology', 1), ('extensively', 1), ('employed', 1), ('book', 1), ('first', 1), ('kind', 1), ('representing', 1), ('research', 1), ('effort', 1), ('diversity', 1), ('recommendation', 1)]
[('book', 2), ('collection', 1), ('scientific', 1), ('paper', 1), ('published', 1), ('last', 1), ('five', 1), ('year', 1), ('showing', 1), ('broad', 1), ('spectrum', 1), ('actual', 1), ('research', 1), ('topic', 1), ('technique', 1), ('used', 1), ('solve', 1), ('challenging', 1), ('problem', 1), ('area', 1), ('computer', 1), ('vision', 1), ('image', 1), ('analysis', 1), ('appeal', 1), ('researcher', 1), ('technician', 1), ('graduate', 1), ('student', 1)]
[('seismic', 3), ('pattern', 2), ('data', 2), ('seismogram', 2), ('structural', 2), ('use', 1), ('recognition', 1), ('become', 1), ('important', 1), ('oil', 1), ('exploration', 1), ('interpreting', 1), ('large', 1), ('volume', 1), ('challenging', 1), ('problem', 1), ('reflection', 1), ('shot', 1), ('stacked', 1), ('contain', 1), ('information', 1), ('response', 1), ('subsurface', 1), ('syntactic', 1)]
[('technology', 2), ('range', 1), ('component', 1), ('wide', 1), ('diverse', 1), ('common', 1), ('understanding', 1), ('emerging', 1), ('idea', 1), ('model', 1), ('based', 1), ('development', 1), ('include', 1), ('notion', 1), ('interface', 1), ('contract', 1), ('service', 1), ('connector', 1), ('architecture', 1), ('key', 1), ('issue', 1), ('application', 1), ('becoming', 1), ('clearer', 1), ('including', 1), ('consistent', 1), ('integration', 1)]
[('data', 3), ('datasets', 3), ('main', 1), ('goal', 1), ('new', 1), ('field', 1), ('mining', 1), ('analysis', 1), ('large', 1), ('complex', 1), ('important', 1), ('derived', 1), ('business', 1), ('industrial', 1), ('activity', 1), ('kind', 1), ('known', 1), ('enterprise', 1), ('common', 1), ('characteristic', 1), ('analyst', 1), ('wish', 1), ('analyze', 1), ('purpose', 1), ('designing', 1)]
[('cooperative', 2), ('past', 1), ('several', 1), ('year', 1), ('control', 1), ('optimization', 1), ('increasingly', 1), ('played', 1), ('larger', 1), ('important', 1), ('role', 1), ('many', 1), ('aspect', 1), ('military', 1), ('science', 1), ('biology', 1), ('communication', 1), ('robotics', 1), ('decision', 1), ('making', 1), ('time', 1), ('system', 1), ('notoriously', 1), ('difficult', 1), ('model', 1), ('analyze', 1), ('solve', 1), ('intuitively', 1), ('understood', 1)]
[('intelligent', 2), ('information', 2), ('system', 2), ('technology', 2), ('modern', 1), ('defence', 1), ('force', 1), ('rely', 1), ('mainly', 1), ('high', 1), ('armour', 1), ('volume', 1), ('reflects', 1), ('latest', 1), ('trend', 1), ('military', 1), ('research', 1), ('bringing', 1), ('together', 1), ('international', 1), ('contribution', 1), ('span', 1), ('communication', 1), ('agent', 1), ('large', 1), ('scale', 1), ('modeling', 1), ('simulation', 1)]
[('virtual', 4), ('course', 2), ('trend', 1), ('offer', 1), ('mean', 1), ('approach', 1), ('definite', 1), ('advantage', 1), ('example', 1), ('program', 1), ('target', 1), ('professional', 1), ('leave', 1), ('job', 1), ('pursue', 1), ('degree', 1), ('enormous', 1), ('proportion', 1), ('university', 1), ('process', 1), ('developing', 1), ('environment', 1), ('book', 1), ('deal', 1)]
[('technique', 3), ('author', 2), ('distance', 2), ('estimation', 2), ('set', 2), ('book', 1), ('based', 1), ('research', 1), ('rendering', 1), ('image', 1), ('higher', 1), ('dimensional', 1), ('fractal', 1), ('self', 1), ('contained', 1), ('giving', 1), ('careful', 1), ('treatment', 1), ('known', 1), ('new', 1), ('method', 1), ('originally', 1), ('applied', 1), ('julia', 1), ('mandelbrot', 1), ('complex', 1)]
[('book', 2), ('computer', 2), ('science', 2), ('describes', 1), ('aspect', 1), ('mathematical', 1), ('logic', 1), ('related', 1), ('material', 1), ('adopted', 1), ('intended', 1), ('attend', 1), ('peculiarity', 1), ('logical', 1), ('system', 1), ('requirement', 1)]
[('information', 4), ('theory', 3), ('direction', 2), ('unique', 1), ('volume', 1), ('present', 1), ('new', 1), ('approach', 1), ('general', 1), ('scientific', 1), ('understanding', 1), ('phenomenon', 1), ('based', 1), ('thorough', 1), ('analysis', 1), ('process', 1), ('nature', 1), ('technology', 1), ('society', 1), ('main', 1), ('synthesizes', 1), ('existing', 1), ('unified', 1)]
[('intelligent', 3), ('system', 3), ('iske', 2), ('knowledge', 2), ('engineering', 2), ('fourth', 1), ('series', 1), ('conference', 1), ('proceeding', 1), ('cover', 1), ('state', 1), ('art', 1), ('research', 1), ('development', 1), ('various', 1), ('area', 1), ('particularly', 1), ('decision', 1), ('making', 1)]
[('flins', 2), ('technology', 2), ('computational', 2), ('intelligence', 2), ('research', 2), ('originally', 1), ('acronym', 1), ('fuzzy', 1), ('logic', 1), ('intelligent', 1), ('nuclear', 1), ('science', 1), ('extended', 1), ('applied', 1), ('contribution', 1), ('th', 1), ('conference', 1), ('cover', 1), ('state', 1), ('art', 1), ('development', 1), ('system', 1), ('foundation', 1)]
[('wavelet', 4), ('book', 2), ('analysis', 2), ('fuzzy', 2), ('present', 1), ('state', 1), ('integration', 1), ('theory', 1), ('multiresolution', 1), ('soft', 1), ('computing', 1), ('first', 1), ('hybrid', 1), ('method', 1), ('combining', 1), ('logic', 1), ('neural', 1), ('network', 1), ('genetic', 1), ('algorithm', 1), ('attention', 1), ('given', 1), ('new', 1), ('approach', 1), ('permit', 1), ('develop', 1), ('using', 1), ('technique', 1)]
[('volume', 2), ('yet', 2), ('ii', 1), ('continues', 1), ('author', 1), ('quest', 1), ('developing', 1), ('pedagogical', 1), ('self', 1), ('contained', 1), ('rigorous', 1), ('analytical', 1), ('theory', 1), ('cellular', 1), ('automaton', 1), ('via', 1), ('nonlinear', 1), ('dynamic', 1), ('perspective', 1), ('using', 1), ('carefully', 1), ('conceived', 1), ('illuminating', 1), ('color', 1), ('graphic', 1), ('global', 1), ('dynamical', 1), ('behavior', 1), ('local', 1), ('rule', 1), ('covered', 1)]
[('third', 1), ('volume', 1), ('series', 1), ('scalable', 1), ('computing', 1), ('book', 1), ('contains', 1), ('five', 1), ('new', 1), ('article', 1), ('describing', 1), ('significant', 1), ('development', 1), ('field', 1), ('included', 1), ('current', 1), ('topic', 1), ('cluster', 1), ('parallel', 1), ('tool', 1), ('load', 1), ('balancing', 1), ('mobile', 1), ('system', 1), ('architecture', 1), ('independence', 1)]
[('collection', 1), ('seven', 1), ('long', 1), ('article', 1), ('book', 1), ('comprehensively', 1), ('discus', 1), ('significant', 1), ('project', 1), ('scalable', 1), ('computing', 1), ('various', 1), ('research', 1), ('organization', 1), ('around', 1), ('world', 1), ('represents', 1), ('quantitative', 1), ('qualitative', 1), ('growth', 1), ('work', 1), ('area', 1)]
[('graph', 2), ('field', 2), ('drawing', 2), ('book', 1), ('useful', 1), ('reader', 1), ('want', 1), ('visualize', 1), ('representing', 1), ('structural', 1), ('knowledge', 1), ('variety', 1), ('give', 1), ('outline', 1), ('whole', 1), ('describes', 1), ('detail', 1), ('representative', 1), ('method', 1), ('explains', 1), ('extension', 1), ('fisheye', 1), ('dynamic', 1), ('present', 1), ('many', 1), ('practical', 1), ('application', 1), ('discus', 1), ('way', 1)]
[('technique', 3), ('parallel', 2), ('important', 2), ('software', 2), ('processing', 1), ('improving', 1), ('performance', 1), ('various', 1), ('development', 1), ('maintenance', 1), ('activity', 1), ('purpose', 1), ('book', 1), ('introduce', 1), ('executation', 1), ('high', 1), ('level', 1), ('specification', 1), ('system', 1), ('useful', 1), ('construction', 1), ('analysis', 1)]
[('software', 2), ('interplay', 1), ('artificial', 1), ('intelligence', 1), ('engineering', 1), ('interesting', 1), ('active', 1), ('area', 1), ('research', 1), ('institution', 1), ('industry', 1), ('book', 1), ('cover', 1), ('state', 1), ('art', 1), ('use', 1), ('knowledge', 1), ('based', 1), ('approach', 1), ('specification', 1), ('design', 1), ('implementation', 1), ('testing', 1), ('debugging', 1), ('starting', 1), ('introduction', 1), ('various', 1)]
[('knowledge', 3), ('empirical', 2), ('verification', 1), ('foundation', 1), ('developing', 1), ('discipline', 1), ('far', 1), ('software', 1), ('construction', 1), ('concerned', 1), ('empirically', 1), ('verified', 1), ('sparse', 1), ('widely', 1), ('disseminated', 1), ('among', 1), ('developer', 1), ('researcher', 1), ('book', 1), ('aim', 1), ('spread', 1), ('idea', 1), ('importance', 1)]
[('software', 5), ('process', 3), ('new', 2), ('year', 1), ('variety', 1), ('model', 1), ('designed', 1), ('structure', 1), ('describe', 1), ('prescribe', 1), ('system', 1), ('construction', 1), ('recently', 1), ('modelling', 1), ('increasingly', 1), ('dealing', 1), ('challenge', 1), ('raised', 1), ('test', 1), ('industry', 1), ('face', 1), ('book', 1), ('address', 1), ('trend', 1)]
[('approach', 2), ('agent', 2), ('decision', 2), ('making', 2), ('self', 1), ('contained', 1), ('book', 1), ('provides', 1), ('three', 1), ('fundamental', 1), ('generic', 1), ('logical', 1), ('probabilistic', 1), ('modal', 1), ('representing', 1), ('reasoning', 1), ('epistemic', 1), ('state', 1), ('specifically', 1), ('context', 1), ('applied', 1), ('construction', 1), ('intelligent', 1), ('software', 1), ('thereby', 1), ('creating', 1)]
[('automated', 2), ('reasoning', 2), ('program', 2), ('successfully', 1), ('tackling', 1), ('challenging', 1), ('problem', 1), ('mathematics', 1), ('logic', 1), ('verification', 1), ('circuit', 1), ('design', 1), ('volume', 1), ('book', 1), ('includes', 1), ('published', 1), ('paper', 1), ('dr', 1), ('larry', 1), ('wos', 1), ('world', 1), ('pioneer', 1), ('provides', 1), ('wealth', 1), ('information', 1), ('student', 1), ('teacher', 1), ('researcher', 1)]
[('book', 2), ('collection', 2), ('first', 1), ('render', 1), ('thorough', 1), ('discussion', 1), ('system', 1), ('science', 1), ('draw', 1), ('material', 1), ('extensive', 1), ('external', 1), ('source', 1), ('including', 1), ('several', 1), ('special', 1), ('library', 1), ('complete', 1), ('videotape', 1), ('empirical', 1), ('evidence', 1), ('applicability', 1), ('theory', 1), ('wide', 1), ('variety', 1), ('circumstance', 1), ('essential', 1)]
[('book', 2), ('symposium', 2), ('follow', 1), ('icheme', 1), ('neural', 1), ('network', 1), ('learning', 1), ('technology', 1), ('held', 1), ('imperial', 1), ('college', 1), ('uk', 1), ('interest', 1), ('shown', 1), ('participant', 1), ('especially', 1), ('industry', 1), ('instrumental', 1), ('producing', 1), ('paper', 1), ('written', 1), ('contributor', 1), ('expert', 1)]
[('remote', 3), ('image', 3), ('sensing', 2), ('processing', 2), ('sensor', 2), ('data', 2), ('written', 1), ('leader', 1), ('field', 1), ('information', 1), ('book', 1), ('cover', 1), ('frontier', 1), ('especially', 1), ('effective', 1), ('algorithm', 1), ('signal', 1), ('pattern', 1), ('recognition', 1), ('fusion', 1), ('issue', 1), ('sar', 1), ('hyperspectral', 1), ('related', 1), ('special', 1), ('topic', 1)]
[('technology', 2), ('antiquity', 1), ('tried', 1), ('either', 1), ('control', 1), ('imitate', 1), ('nature', 1), ('tradition', 1), ('take', 1), ('advantage', 1), ('progress', 1), ('science', 1), ('teleology', 1), ('typical', 1), ('design', 1), ('problem', 1), ('remain', 1), ('basically', 1), ('different', 1), ('artificial', 1), ('defined', 1), ('effort', 1), ('reproduce', 1), ('natural', 1), ('object', 1), ('process', 1), ('mean', 1), ('current', 1)]
[('system', 2), ('common', 2), ('concept', 2), ('theorist', 1), ('see', 1), ('principle', 1), ('structure', 1), ('operation', 1), ('kind', 1), ('size', 1), ('promote', 1), ('interdisciplinary', 1), ('science', 1), ('adapted', 1), ('universal', 1), ('application', 1), ('language', 1), ('area', 1), ('order', 1), ('solve', 1), ('problem', 1), ('make', 1), ('recommendation', 1), ('predict', 1), ('future', 1), ('use', 1), ('theory', 1), ('model', 1)]
[('wavelet', 2), ('application', 2), ('area', 2), ('analysis', 1), ('become', 1), ('fastest', 1), ('growing', 1), ('research', 1), ('past', 1), ('several', 1), ('year', 1), ('theory', 1), ('employed', 1), ('many', 1), ('field', 1), ('signal', 1), ('image', 1), ('processing', 1), ('communication', 1), ('system', 1), ('biomedical', 1), ('imaging', 1), ('radar', 1), ('air', 1), ('acoustic', 1), ('endless', 1), ('active', 1), ('medium', 1), ('technology', 1)]
[('volume', 2), ('technology', 2), ('attempt', 1), ('capture', 1), ('essence', 1), ('state', 1), ('art', 1), ('intelligent', 1), ('agent', 1), ('identify', 1), ('new', 1), ('challenge', 1), ('opportunity', 1), ('facing', 1), ('important', 1), ('feature', 1), ('emphasizes', 1), ('multi', 1), ('faceted', 1), ('holistic', 1), ('view', 1), ('emerging', 1), ('computational', 1), ('foundation', 1)]
[('section', 2), ('handwriting', 2), ('computer', 2), ('recognition', 2), ('line', 2), ('book', 1), ('contains', 1), ('representative', 1), ('cross', 1), ('critically', 1), ('reviewed', 1), ('paper', 1), ('third', 1), ('international', 1), ('symposium', 1), ('application', 1), ('montreal', 1), ('first', 1), ('focus', 1), ('different', 1), ('aspect', 1), ('signature', 1), ('analysis', 1), ('verification', 1)]
[('graph', 4), ('algorithm', 4), ('application', 2), ('jgaa', 2), ('book', 1), ('contains', 1), ('volume', 1), ('journal', 1), ('topic', 1), ('interest', 1), ('include', 1), ('design', 1), ('analysis', 1), ('experience', 1), ('supported', 1), ('distinguished', 1), ('advisory', 1), ('editorial', 1), ('board', 1), ('high', 1), ('scientific', 1), ('standard', 1), ('take', 1)]
[('journal', 2), ('graph', 2), ('algorithm', 2), ('application', 2), ('jgaa', 2), ('computational', 2), ('book', 1), ('contains', 1), ('volume', 1), ('peer', 1), ('reviewed', 1), ('scientific', 1), ('devoted', 1), ('publication', 1), ('high', 1), ('quality', 1), ('research', 1), ('paper', 1), ('analysis', 1), ('design', 1), ('implementation', 1), ('area', 1), ('interest', 1), ('include', 1), ('biology', 1), ('geometry', 1)]
[('book', 1), ('present', 1), ('result', 1), ('year', 1), ('work', 1), ('original', 1), ('material', 1), ('related', 1), ('thinking', 1), ('machine', 1), ('subject', 1), ('initiated', 1), ('author', 1), ('colleague', 1), ('based', 1), ('ability', 1), ('computer', 1), ('represent', 1), ('hierarchical', 1), ('procedure', 1), ('task', 1), ('conception', 1), ('execution', 1), ('found', 1), ('human', 1), ('being', 1), ('arranged', 1), ('three', 1), ('level', 1), ('representing', 1)]
[('knowledge', 3), ('natural', 2), ('language', 2), ('processing', 2), ('linguistic', 2), ('widely', 1), ('acknowledged', 1), ('indispensable', 1), ('mean', 1), ('information', 1), ('technology', 1), ('requires', 1), ('strong', 1), ('support', 1), ('world', 1), ('book', 1), ('theoretical', 1), ('exploration', 1), ('extra', 1), ('needed', 1), ('panoramic', 1), ('description', 1), ('hownet', 1)]
[('information', 3), ('processing', 2), ('book', 1), ('present', 1), ('state', 1), ('art', 1), ('cross', 1), ('layer', 1), ('optimization', 1), ('technique', 1), ('energy', 1), ('efficient', 1), ('routing', 1), ('wireless', 1), ('sensor', 1), ('network', 1), ('besides', 1), ('providing', 1), ('survey', 1), ('important', 1), ('research', 1), ('area', 1), ('three', 1), ('specific', 1), ('topic', 1), ('discussed', 1), ('detail', 1), ('collocated', 1), ('cluster', 1), ('transport', 1), ('tree', 1)]
[('l', 3), ('svms', 3), ('book', 1), ('focus', 1), ('least', 1), ('square', 1), ('support', 1), ('vector', 1), ('machine', 1), ('reformulations', 1), ('standard', 1), ('closely', 1), ('related', 1), ('regularization', 1), ('network', 1), ('gaussian', 1), ('process', 1), ('additionally', 1), ('emphasize', 1), ('exploit', 1), ('primal', 1), ('dual', 1), ('interpretation', 1), ('optimization', 1), ('theory', 1), ('author', 1), ('explain', 1), ('natural', 1), ('link', 1), ('svm', 1), ('classifier', 1)]
[('data', 3), ('mining', 2), ('book', 2), ('continual', 1), ('explosion', 1), ('information', 1), ('technology', 1), ('need', 1), ('better', 1), ('collection', 1), ('management', 1), ('method', 1), ('made', 1), ('even', 1), ('relevant', 1), ('topic', 1), ('study', 1), ('tend', 1), ('either', 1), ('broad', 1), ('introductory', 1), ('focus', 1), ('specific', 1), ('technical', 1), ('aspect', 1), ('field', 1), ('series', 1), ('seventeen', 1), ('edited', 1)]
[('object', 2), ('researcher', 2), ('software', 2), ('orientation', 1), ('become', 1), ('know', 1), ('subject', 1), ('manager', 1), ('practitioner', 1), ('interested', 1), ('design', 1), ('evolution', 1), ('reuse', 1), ('management', 1), ('efficient', 1), ('component', 1), ('book', 1), ('contains', 1), ('technical', 1), ('paper', 1), ('reflecting', 1), ('theoretical', 1), ('practical', 1), ('contribution', 1), ('field', 1), ('oriented', 1), ('oo', 1)]
[('matlab', 2), ('script', 2), ('book', 1), ('provides', 1), ('visualization', 1), ('many', 1), ('topic', 1), ('general', 1), ('physic', 1), ('aim', 1), ('interactive', 1), ('wherein', 1), ('user', 1), ('vary', 1), ('parameter', 1), ('specific', 1), ('problem', 1), ('immediately', 1), ('see', 1), ('outcome', 1), ('way', 1), ('dynamic', 1), ('movie', 1), ('response', 1), ('system', 1), ('question', 1), ('tool', 1), ('used', 1), ('throughout', 1), ('software', 1)]
[('database', 3), ('system', 3), ('multimedia', 2), ('relational', 2), ('address', 1), ('growing', 1), ('number', 1), ('commercially', 1), ('important', 1), ('application', 1), ('medium', 1), ('demand', 1), ('surveillance', 1), ('medical', 1), ('book', 1), ('present', 1), ('essential', 1), ('relevant', 1), ('technique', 1), ('algorithm', 1), ('develop', 1), ('implement', 1), ('large', 1), ('traditional', 1), ('model', 1), ('based', 1)]
[('grid', 3), ('technology', 2), ('smart', 2), ('book', 1), ('considers', 1), ('emerging', 1), ('methodology', 1), ('application', 1), ('computational', 1), ('intelligence', 1), ('conceptual', 1), ('point', 1), ('view', 1), ('convergence', 1), ('information', 1), ('operational', 1), ('applied', 1), ('electric', 1), ('allowing', 1), ('sustainable', 1), ('option', 1), ('customer', 1), ('improved', 1), ('level', 1), ('security', 1)]
[('logic', 2), ('ilp', 2), ('workshop', 2), ('book', 1), ('represents', 1), ('selection', 1), ('paper', 1), ('presented', 1), ('inductive', 1), ('programming', 1), ('held', 1), ('cumberland', 1), ('lodge', 1), ('windsor', 1), ('park', 1), ('collection', 1), ('mark', 1), ('decade', 1), ('first', 1), ('period', 1), ('area', 1), ('developed', 1), ('main', 1), ('forum', 1), ('work', 1), ('based', 1), ('machine', 1), ('learning', 1), ('chapter', 1), ('cover', 1)]
[('modeling', 3), ('method', 2), ('data', 2), ('inductive', 2), ('system', 2), ('group', 1), ('handling', 1), ('gmdh', 1), ('typical', 1), ('built', 1), ('principle', 1), ('self', 1), ('organization', 1), ('introduction', 1), ('developed', 1), ('applied', 1), ('complex', 1), ('area', 1), ('prediction', 1), ('clusterization', 1), ('identification', 1), ('mining', 1), ('knowledge', 1), ('extraction', 1)]
[('consciousness', 3), ('neuron', 2), ('impossible', 1), ('mind', 1), ('written', 1), ('satisfy', 1), ('curiosity', 1), ('every', 1), ('take', 1), ('view', 1), ('head', 1), ('source', 1), ('attempt', 1), ('explain', 1), ('happens', 1), ('although', 1), ('talk', 1), ('neural', 1), ('network', 1), ('explains', 1)]
[('information', 3), ('real', 2), ('world', 2), ('nl', 2), ('concept', 2), ('imperfect', 1), ('usually', 1), ('described', 1), ('natural', 1), ('language', 1), ('moreover', 1), ('often', 1), ('partially', 1), ('reliable', 1), ('degree', 1), ('reliability', 1), ('expressed', 1), ('view', 1), ('number', 1), ('adequate', 1), ('description', 1), ('main', 1), ('critical', 1), ('problem', 1)]
[('high', 2), ('circuit', 2), ('signal', 2), ('last', 1), ('three', 1), ('decade', 1), ('professor', 1), ('peter', 1), ('cheung', 1), ('made', 1), ('significant', 1), ('contribution', 1), ('variety', 1), ('area', 1), ('analogue', 1), ('digital', 1), ('computer', 1), ('aided', 1), ('design', 1), ('tool', 1), ('level', 1), ('synthesis', 1), ('hardware', 1), ('software', 1), ('codesign', 1), ('low', 1), ('power', 1), ('performance', 1), ('architecture', 1), ('image', 1), ('processing', 1), ('mixed', 1), ('integrated', 1)]
[('problem', 5), ('solution', 2), ('technique', 2), ('solving', 1), ('essential', 1), ('part', 1), ('every', 1), ('scientific', 1), ('discipline', 1), ('component', 1), ('negetiveemoji', 1), ('identification', 1), ('formulation', 1), ('formulated', 1), ('solve', 1), ('using', 1), ('ad', 1), ('hoc', 1), ('following', 1), ('produced', 1), ('efficient', 1), ('similar', 1), ('requires', 1)]
[('science', 2), ('book', 1), ('collection', 1), ('invited', 1), ('chapter', 1), ('renowned', 1), ('expert', 1), ('part', 1), ('series', 1), ('language', 1), ('processing', 1), ('pattern', 1), ('recognition', 1), ('intelligent', 1), ('system', 1), ('content', 1), ('wide', 1), ('ranging', 1), ('encompassing', 1), ('perspective', 1), ('computer', 1), ('social', 1), ('design', 1), ('reflecting', 1), ('considerable', 1), ('experience', 1), ('researcher', 1), ('teacher', 1)]
[('data', 2), ('studied', 1), ('area', 1), ('academic', 1), ('research', 1), ('analysis', 1), ('computer', 1), ('network', 1), ('traffic', 1), ('still', 1), ('infancy', 1), ('challenge', 1), ('detecting', 1), ('mitigating', 1), ('malicious', 1), ('unauthorised', 1), ('behaviour', 1), ('lens', 1), ('becoming', 1), ('increasingly', 1), ('prominent', 1), ('issue', 1), ('collection', 1), ('paper', 1), ('leading', 1), ('researcher', 1), ('practitioner', 1)]
[('simulation', 4), ('technique', 2), ('craft', 1), ('program', 1), ('collection', 1), ('tool', 1), ('theory', 1), ('required', 1), ('develop', 1), ('implement', 1), ('model', 1), ('computer', 1), ('timely', 1), ('book', 1), ('provides', 1), ('various', 1), ('skill', 1), ('needed', 1), ('programming', 1), ('general', 1), ('purpose', 1), ('language', 1), ('topic', 1), ('range', 1), ('difficulty', 1), ('several', 1), ('latest', 1), ('field', 1)]
[('sparse', 3), ('coding', 3), ('application', 2), ('research', 2), ('book', 1), ('provides', 1), ('broader', 1), ('introduction', 1), ('theory', 1), ('technique', 1), ('computer', 1), ('vision', 1), ('introduces', 1), ('context', 1), ('representation', 1), ('learning', 1), ('illustrates', 1), ('fundamental', 1), ('concept', 1), ('summarizes', 1), ('active', 1), ('direction', 1), ('variety', 1)]
[('function', 4), ('computer', 2), ('hardware', 2), ('evaluation', 2), ('mathematical', 2), ('method', 2), ('provides', 1), ('thorough', 1), ('date', 1), ('understanding', 1), ('used', 1), ('reciprocal', 1), ('square', 1), ('root', 1), ('exponential', 1), ('logarithm', 1), ('trigonometric', 1), ('hyperbolic', 1), ('etc', 1), ('discus', 1), ('derived', 1)]
[('conference', 4), ('joint', 2), ('international', 2), ('science', 2), ('engineering', 2), ('book', 1), ('brings', 1), ('together', 1), ('paper', 1), ('presented', 1), ('computer', 1), ('technology', 1), ('cset', 1), ('medical', 1), ('biological', 1), ('msbe', 1), ('held', 1), ('hong', 1), ('kong', 1), ('covered', 1), ('wide', 1), ('range', 1)]
[('pattern', 2), ('recognition', 2), ('computer', 2), ('vision', 2), ('image', 1), ('processing', 1), ('closely', 1), ('linked', 1), ('area', 1), ('seen', 1), ('enormous', 1), ('progress', 1), ('last', 1), ('fifty', 1), ('year', 1), ('application', 1), ('daily', 1), ('life', 1), ('commerce', 1), ('industry', 1), ('growing', 1), ('even', 1), ('rapidly', 1), ('theoretical', 1), ('advance', 1), ('need', 1), ('new', 1), ('handbook', 1), ('every', 1), ('five', 1)]
[('ugc', 2), ('customer', 2), ('object', 2), ('book', 1), ('present', 1), ('recent', 1), ('achievement', 1), ('processing', 1), ('representative', 1), ('user', 1), ('generated', 1), ('content', 1), ('commerce', 1), ('website', 1), ('large', 1), ('size', 1), ('valuable', 1), ('information', 1), ('data', 1), ('mining', 1), ('help', 1), ('profiling', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('concept', 1), ('credibility', 1), ('oriented', 1), ('review', 1), ('summarization', 1)]
[('research', 2), ('volume', 2), ('business', 2), ('information', 2), ('technology', 2), ('network', 2), ('fourth', 1), ('series', 1), ('paper', 1), ('global', 1), ('bit', 1), ('comprises', 1), ('partner', 1), ('country', 1), ('conduct', 1), ('study', 1), ('impact', 1), ('new', 1), ('communication', 1), ('practice', 1), ('industry', 1), ('structure', 1), ('economic', 1), ('change', 1)]
[('seit', 2), ('book', 1), ('consists', 1), ('sixty', 1), ('seven', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('international', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('information', 1), ('technology', 1), ('held', 1), ('guilin', 1), ('guangxi', 1), ('china', 1), ('june', 1), ('important', 1), ('event', 1), ('attracted', 1), ('many', 1), ('scientist', 1), ('engineer', 1), ('researcher', 1), ('academia', 1)]
[('selected', 2), ('paper', 2), ('book', 1), ('consists', 1), ('presented', 1), ('international', 1), ('conference', 1), ('mechanical', 1), ('engineering', 1), ('control', 1), ('system', 1), ('mecs', 1), ('held', 1), ('wuhan', 1), ('china', 1), ('january', 1), ('accepted', 1), ('subjected', 1), ('strict', 1), ('peer', 1), ('review', 1), ('four', 1), ('expert', 1), ('referee', 1), ('based', 1), ('originality', 1), ('ability', 1)]
[('method', 2), ('data', 2), ('inductive', 2), ('system', 2), ('group', 1), ('handling', 1), ('gmdh', 1), ('typical', 1), ('modeling', 1), ('built', 1), ('principle', 1), ('self', 1), ('organization', 1), ('introduction', 1), ('modelling', 1), ('developed', 1), ('support', 1), ('complex', 1), ('prediction', 1), ('clusterization', 1), ('identification', 1), ('mining', 1), ('knowledge', 1), ('extraction', 1), ('technology', 1), ('social', 1), ('science', 1)]
[('pattern', 2), ('topic', 2), ('book', 1), ('adopts', 1), ('detailed', 1), ('methodological', 1), ('algorithmic', 1), ('approach', 1), ('explain', 1), ('concept', 1), ('recognition', 1), ('text', 1), ('provides', 1), ('systematic', 1), ('account', 1), ('major', 1), ('representation', 1), ('nearest', 1), ('neighbour', 1), ('based', 1), ('classifier', 1), ('current', 1), ('neural', 1), ('network', 1), ('support', 1), ('vector', 1), ('machine', 1), ('decision', 1), ('tree', 1), ('attributed', 1)]
[('erps', 2), ('eeg', 2), ('book', 1), ('devoted', 1), ('application', 1), ('advanced', 1), ('signal', 1), ('processing', 1), ('event', 1), ('related', 1), ('potential', 1), ('context', 1), ('electroencephalography', 1), ('cognitive', 1), ('neuroscience', 1), ('usually', 1), ('produced', 1), ('averaging', 1), ('single', 1), ('trial', 1), ('preprocessed', 1), ('interpretation', 1), ('underlying', 1), ('brain', 1), ('activity', 1), ('based', 1)]
[('beamforming', 2), ('sensor', 2), ('signal', 2), ('processing', 2), ('defence', 2), ('application', 2), ('space', 2), ('present', 1), ('range', 1), ('important', 1), ('research', 1), ('contribution', 1), ('concerned', 1), ('array', 1), ('particular', 1), ('superresolution', 1), ('beamformers', 1), ('fundamental', 1), ('many', 1), ('civilian', 1), ('time', 1), ('stap', 1), ('algorithm', 1)]
[('opinion', 2), ('sentiment', 2), ('classification', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('analysis', 1), ('online', 1), ('review', 1), ('offer', 1), ('newest', 1), ('research', 1), ('mining', 1), ('including', 1), ('theory', 1), ('algorithm', 1), ('datasets', 1), ('new', 1), ('feature', 1), ('presentation', 1), ('method', 1), ('highlighted', 1), ('three', 1), ('phase', 1), ('framework', 1), ('proposed', 1), ('set', 1)]
[('internet', 1), ('proliferation', 1), ('big', 1), ('data', 1), ('autonomous', 1), ('system', 1), ('mankind', 1), ('entered', 1), ('era', 1), ('digital', 1), ('obesity', 1), ('century', 1), ('computational', 1), ('intelligence', 1), ('thinking', 1), ('machine', 1), ('brought', 1), ('forth', 1), ('process', 1), ('complex', 1), ('human', 1), ('problem', 1), ('wide', 1), ('scope', 1), ('area', 1), ('social', 1), ('science', 1), ('economics', 1), ('biology', 1), ('medicine', 1)]
[('conference', 2), ('computer', 2), ('science', 2), ('international', 1), ('technology', 1), ('application', 1), ('csta', 1), ('held', 1), ('changsha', 1), ('china', 1), ('march', 1), ('main', 1), ('objective', 1), ('joint', 1), ('provide', 1), ('platform', 1), ('researcher', 1), ('academic', 1), ('industrial', 1), ('professional', 1), ('present', 1), ('research', 1), ('finding', 1), ('field', 1)]
[('italian', 3), ('field', 2), ('high', 2), ('performance', 2), ('computing', 2), ('hpc', 2), ('book', 1), ('aim', 1), ('provide', 1), ('deep', 1), ('look', 1), ('action', 1), ('taken', 1), ('science', 1), ('effort', 1), ('bridge', 1), ('gap', 1), ('respect', 1), ('europe', 1), ('pon', 1), ('recas', 1), ('project', 1), ('written', 1), ('graduate', 1), ('reader', 1), ('professional', 1), ('present', 1), ('discus', 1)]
[('information', 4), ('complexity', 4), ('theory', 2), ('book', 1), ('collection', 1), ('paper', 1), ('expert', 1), ('field', 1), ('basic', 1), ('structure', 1), ('world', 1), ('fundamental', 1), ('property', 1), ('system', 1), ('process', 1), ('intrinsic', 1), ('relation', 1), ('research', 1)]
[('key', 2), ('kish', 2), ('designed', 1), ('offer', 1), ('thorough', 1), ('account', 1), ('kljn', 1), ('exchange', 1), ('system', 1), ('known', 1), ('cypher', 1), ('distribution', 1), ('etc', 1), ('unconditional', 1), ('security', 1), ('book', 1), ('explains', 1), ('scheme', 1), ('foundation', 1), ('classical', 1), ('statistical', 1), ('physic', 1), ('superiority', 1), ('quantum', 1), ('based', 1), ('competitor', 1), ('particular', 1), ('application', 1), ('perspective', 1)]
[('computer', 2), ('cst', 2), ('proceeding', 1), ('consists', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('international', 1), ('conference', 1), ('science', 1), ('technology', 1), ('successfully', 1), ('held', 1), ('shenzhen', 1), ('china', 1), ('january', 1), ('covered', 1), ('wide', 1), ('range', 1), ('fundamental', 1), ('study', 1), ('technical', 1), ('innovation', 1), ('industrial', 1), ('application', 1), ('area', 1), ('namely', 1), ('system', 1)]
[('intelligence', 3), ('mind', 2), ('brain', 2), ('computation', 1), ('hot', 1), ('topic', 1), ('science', 1), ('explored', 1), ('computing', 1), ('explain', 1), ('theoretical', 1), ('basis', 1), ('human', 1), ('long', 1), ('term', 1), ('research', 1), ('model', 1), ('cam', 1), ('consciousness', 1), ('memory', 1), ('proposed', 1), ('provides', 1), ('general', 1), ('framework', 1), ('intelligent', 1), ('system', 1), ('novel', 1), ('book', 1), ('center', 1)]
[('component', 3), ('desideratum', 2), ('based', 2), ('software', 2), ('development', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('widely', 1), ('accepted', 1), ('foundation', 1), ('necessitate', 1), ('unique', 1), ('focus', 1), ('model', 1), ('cornerstone', 1), ('addition', 1), ('present', 1), ('analysis', 1), ('existing', 1), ('approach', 1), ('according', 1)]
[('reliability', 3), ('maintenance', 2), ('application', 2), ('system', 2), ('development', 1), ('theory', 1), ('become', 1), ('major', 1), ('concern', 1), ('engineer', 1), ('manager', 1), ('engaged', 1), ('order', 1), ('design', 1), ('product', 1), ('highly', 1), ('reliable', 1), ('book', 1), ('aim', 1), ('cover', 1), ('ongoing', 1), ('research', 1), ('topic', 1), ('computer', 1), ('analysis', 1), ('policy', 1)]
[('mathematical', 2), ('within', 2), ('book', 1), ('demonstrates', 1), ('power', 1), ('thinking', 1), ('understanding', 1), ('biological', 1), ('complexity', 1), ('exists', 1), ('brain', 1), ('look', 1), ('latest', 1), ('research', 1), ('modelling', 1), ('biochemical', 1), ('pathway', 1), ('synapsis', 1), ('provides', 1), ('clear', 1), ('background', 1), ('study', 1), ('model', 1), ('related', 1), ('system', 1), ('biology', 1), ('discussion', 1), ('focus', 1)]
[('increasingly', 2), ('sequencing', 2), ('rapid', 1), ('technological', 1), ('development', 1), ('led', 1), ('efficient', 1), ('approach', 1), ('next', 1), ('generation', 1), ('ng', 1), ('common', 1), ('become', 1), ('cost', 1), ('effective', 1), ('generating', 1), ('explosion', 1), ('sequenced', 1), ('data', 1), ('need', 1), ('analyzed', 1), ('skill', 1), ('required', 1), ('apply', 1), ('computational', 1), ('analysis', 1), ('target', 1), ('research', 1), ('wide', 1), ('range', 1)]
[('artificial', 3), ('aist', 3), ('intelligence', 2), ('science', 2), ('technology', 2), ('th', 2), ('international', 1), ('conference', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('july', 1), ('aim', 1), ('bring', 1), ('together', 1), ('researcher', 1), ('engineer', 1), ('student', 1), ('area', 1), ('feature', 1), ('unique', 1), ('mixed', 1), ('topic', 1)]
[('system', 3), ('imperfect', 2), ('control', 2), ('strategy', 2), ('book', 1), ('focus', 1), ('class', 1), ('uncertain', 1), ('called', 1), ('show', 1), ('regularly', 1), ('work', 1), ('appropriate', 1), ('adopted', 1), ('along', 1), ('practical', 1), ('studied', 1), ('example', 1), ('formalization', 1), ('model', 1), ('considered', 1), ('proposed', 1), ('experimental', 1), ('case', 1), ('study', 1)]
[('university', 3), ('workshop', 2), ('philippine', 2), ('proceeding', 1), ('fourth', 1), ('computing', 1), ('theory', 1), ('practice', 1), ('wctp', 1), ('devoted', 1), ('theoretical', 1), ('practical', 1), ('approach', 1), ('computation', 1), ('organized', 1), ('four', 1), ('top', 1), ('japan', 1), ('tokyo', 1), ('institute', 1), ('technology', 1), ('osaka', 1), ('diliman', 1), ('de', 1), ('la', 1), ('salle', 1)]
[('language', 2), ('formal', 2), ('volume', 1), ('brings', 1), ('together', 1), ('work', 1), ('several', 1), ('prominent', 1), ('researcher', 1), ('collaborated', 1), ('janusz', 1), ('brzozowski', 1), ('worked', 1), ('topic', 1), ('developed', 1), ('area', 1), ('regular', 1), ('syntactic', 1), ('semigroups', 1), ('dot', 1), ('depth', 1), ('hierarchy', 1), ('modeling', 1), ('circuit', 1), ('testing', 1), ('software', 1), ('specification', 1), ('using', 1), ('automaton', 1), ('theory', 1)]
[('modeling', 2), ('information', 2), ('nature', 2), ('science', 1), ('made', 1), ('stride', 1), ('space', 1), ('time', 1), ('mass', 1), ('energy', 1), ('yet', 1), ('little', 1), ('attention', 1), ('paid', 1), ('precise', 1), ('representation', 1), ('ubiquitous', 1), ('introduction', 1), ('evolutionary', 1), ('informatics', 1), ('fuse', 1), ('result', 1), ('complexity', 1), ('theory', 1), ('allow', 1), ('meaning', 1), ('design', 1), ('difficulty', 1)]
[('analysis', 2), ('compendium', 1), ('contains', 1), ('chapter', 1), ('written', 1), ('world', 1), ('renowned', 1), ('researcher', 1), ('expertise', 1), ('semantic', 1), ('computing', 1), ('genome', 1), ('sequence', 1), ('biomolecular', 1), ('interaction', 1), ('time', 1), ('series', 1), ('microarray', 1), ('machine', 1), ('learning', 1), ('algorithm', 1), ('salient', 1), ('feature', 1), ('book', 1), ('highlight', 1), ('eight', 1), ('type', 1), ('computational', 1), ('technique', 1), ('tackle', 1), ('different', 1)]
[('intelligent', 2), ('agent', 2), ('book', 1), ('collection', 1), ('high', 1), ('quality', 1), ('technical', 1), ('paper', 1), ('contributed', 1), ('active', 1), ('researcher', 1), ('leading', 1), ('practitioner', 1), ('technology', 1), ('offer', 1), ('closer', 1), ('look', 1), ('state', 1), ('art', 1), ('development', 1), ('examines', 1), ('depth', 1), ('underlying', 1), ('logical', 1), ('cognitive', 1), ('physical', 1), ('biological', 1), ('foundation', 1)]
[('set', 2), ('theoretic', 2), ('containing', 1), ('twenty', 1), ('six', 1), ('contribution', 1), ('expert', 1), ('world', 1), ('book', 1), ('present', 1), ('research', 1), ('review', 1), ('material', 1), ('describing', 1), ('evolution', 1), ('recent', 1), ('development', 1), ('various', 1), ('pattern', 1), ('recognition', 1), ('methodology', 1), ('ranging', 1), ('statistical', 1), ('linguistic', 1), ('fuzzy', 1), ('neural', 1), ('evolutionary', 1), ('computing', 1), ('rough', 1), ('hybrid', 1)]
[('chapter', 2), ('chinese', 2), ('document', 2), ('text', 2), ('processing', 2), ('recognition', 2), ('analysis', 2), ('book', 1), ('collection', 1), ('invited', 1), ('expert', 1), ('part', 1), ('series', 1), ('language', 1), ('pattern', 1), ('intelligent', 1), ('system', 1), ('introduce', 1), ('latest', 1), ('advance', 1), ('state', 1), ('art', 1), ('method', 1), ('image', 1), ('font', 1), ('design', 1)]
[('theoretical', 2), ('computer', 2), ('science', 2), ('logic', 2), ('fifth', 1), ('italian', 1), ('conference', 1), ('cover', 1), ('aspect', 1), ('among', 1), ('topic', 1), ('addressed', 1), ('volume', 1), ('algorithm', 1), ('concurrency', 1), ('automaton', 1), ('formal', 1), ('language', 1), ('computational', 1), ('complexity', 1), ('temporal', 1), ('model', 1), ('programming', 1), ('λ', 1), ('calculus', 1), ('proceeding', 1), ('include', 1), ('selected', 1), ('paper', 1)]
[('information', 3), ('book', 2), ('volume', 2), ('society', 2), ('summit', 2), ('first', 1), ('edition', 1), ('based', 1), ('international', 1), ('study', 1), ('vienna', 1), ('crossroad', 1), ('response', 1), ('responsibility', 1), ('science', 1), ('see', 1), ('org', 1), ('represents', 1), ('trans', 1), ('disciplinary', 1), ('endeavor', 1), ('leading', 1), ('expert', 1), ('field', 1)]
[('information', 3), ('book', 2), ('volume', 2), ('society', 2), ('study', 2), ('summit', 2), ('second', 1), ('edition', 1), ('based', 1), ('international', 1), ('vienna', 1), ('crossroad', 1), ('response', 1), ('responsibility', 1), ('science', 1), ('see', 1), ('org', 1), ('give', 1), ('date', 1), ('multiaspect', 1), ('exposition', 1), ('contemporary', 1)]
[('international', 2), ('conference', 2), ('research', 2), ('held', 1), ('guilin', 1), ('china', 1), ('august', 1), ('computer', 1), ('science', 1), ('artificial', 1), ('intelligence', 1), ('csai', 1), ('provides', 1), ('excellent', 1), ('platform', 1), ('invited', 1), ('speaker', 1), ('author', 1), ('participant', 1), ('share', 1), ('result', 1), ('establish', 1), ('collaboration', 1), ('future', 1), ('enjoys', 1), ('wide', 1)]
[('human', 3), ('computer', 2), ('using', 2), ('book', 1), ('deal', 1), ('creation', 1), ('algorithmic', 1), ('backbone', 1), ('enables', 1), ('perceive', 1), ('monitored', 1), ('space', 1), ('performed', 1), ('signal', 1), ('process', 1), ('audio', 1), ('video', 1), ('reproduce', 1), ('type', 1), ('perception', 1), ('sensor', 1), ('algorithm', 1), ('order', 1), ('detect', 1), ('track', 1), ('multiple', 1), ('interacting', 1)]
[('theory', 2), ('problem', 1), ('solving', 1), ('computing', 1), ('referred', 1), ('computational', 1), ('thinking', 1), ('behind', 1), ('concept', 1), ('challenging', 1), ('technicality', 1), ('yet', 1), ('simple', 1), ('idea', 1), ('book', 1), ('introduces', 1), ('computation', 1), ('inception', 1), ('current', 1), ('form', 1), ('complexity', 1), ('explanation', 1), ('field', 1), ('computer', 1), ('science', 1), ('formed', 1), ('using', 1), ('classical', 1)]
[('optimization', 4), ('approach', 3), ('classical', 1), ('methodology', 1), ('fall', 1), ('short', 1), ('large', 1), ('complex', 1), ('domain', 1), ('book', 1), ('suggested', 1), ('different', 1), ('based', 1), ('blind', 1), ('heuristic', 1), ('mechanism', 1), ('evolution', 1), ('population', 1), ('genetics', 1), ('genetic', 1), ('introduces', 1), ('new', 1), ('philosophy', 1), ('general', 1)]
[('robot', 3), ('parallel', 2), ('book', 1), ('aim', 1), ('describe', 1), ('computer', 1), ('architecture', 1), ('used', 1), ('enhance', 1), ('performance', 1), ('impact', 1), ('future', 1), ('generation', 1), ('provides', 1), ('depth', 1), ('consistent', 1), ('rigorous', 1), ('treatment', 1), ('topic', 1), ('clear', 1), ('definition', 1), ('tool', 1), ('result', 1), ('given', 1), ('applied', 1), ('processing', 1)]
[('concept', 2), ('method', 2), ('tackle', 1), ('complex', 1), ('problem', 1), ('life', 1), ('today', 1), ('need', 1), ('coordinate', 1), ('wide', 1), ('range', 1), ('expertise', 1), ('system', 1), ('offer', 1), ('mean', 1), ('integrating', 1), ('contribution', 1), ('specialist', 1), ('including', 1), ('manager', 1), ('scientist', 1), ('engineer', 1), ('book', 1), ('introduces', 1), ('simple', 1), ('yet', 1), ('sound', 1), ('language', 1), ('understandable', 1), ('concerned', 1)]
[('book', 1), ('introduces', 1), ('new', 1), ('explanatory', 1), ('cross', 1), ('layer', 1), ('model', 1), ('specifically', 1), ('designed', 1), ('understand', 1), ('aspect', 1), ('ad', 1), ('hoc', 1), ('sensor', 1), ('networking', 1), ('design', 1), ('performance', 1), ('issue', 1), ('application', 1), ('requirement', 1), ('future', 1), ('direction', 1), ('challenge', 1), ('potential', 1), ('simulation', 1), ('project', 1), ('discussed', 1), ('topic', 1), ('included', 1), ('represent', 1), ('significant', 1), ('portion', 1)]
[('data', 3), ('mining', 2), ('science', 1), ('technology', 1), ('exploring', 1), ('order', 1), ('discover', 1), ('previously', 1), ('unknown', 1), ('pattern', 1), ('part', 1), ('overall', 1), ('process', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('kdd', 1), ('accessibility', 1), ('abundance', 1), ('information', 1), ('today', 1), ('make', 1), ('matter', 1), ('considerable', 1), ('importance', 1), ('necessity', 1), ('book', 1), ('provides', 1), ('introduction', 1)]
[('network', 3), ('book', 1), ('provides', 1), ('comprehensive', 1), ('yet', 1), ('easy', 1), ('coverage', 1), ('ad', 1), ('hoc', 1), ('sensor', 1), ('fill', 1), ('gap', 1), ('existing', 1), ('literature', 1), ('growing', 1), ('field', 1), ('emphasizes', 1), ('major', 1), ('interdependence', 1), ('among', 1), ('various', 1), ('layer', 1), ('protocol', 1), ('stack', 1), ('contrary', 1), ('wired', 1), ('even', 1), ('hop', 1), ('cellular', 1), ('lack', 1), ('fixed', 1), ('infrastructure', 1)]
[('computer', 3), ('statistic', 2), ('textbook', 1), ('provides', 1), ('introduction', 1), ('user', 1), ('science', 1), ('undergraduate', 1), ('main', 1), ('emphasis', 1), ('use', 1), ('understand', 1), ('facilitate', 1), ('statistical', 1), ('computation', 1), ('stress', 1), ('basic', 1), ('concept', 1), ('mathematics', 1), ('kept', 1), ('simple', 1), ('possible', 1), ('programming', 1), ('exercise', 1)]
[('graph', 3), ('algorithm', 2), ('drawing', 2), ('book', 1), ('present', 1), ('important', 1), ('fundamental', 1), ('theorem', 1), ('planar', 1), ('easy', 1), ('understand', 1), ('constructive', 1), ('proof', 1), ('extensively', 1), ('illustrated', 1), ('exercise', 1), ('included', 1), ('end', 1), ('chapter', 1), ('suitable', 1), ('use', 1), ('advanced', 1), ('undergraduate', 1), ('graduate', 1), ('level', 1), ('course', 1), ('theory', 1)]
[('book', 2), ('theory', 2), ('nonblocking', 2), ('switching', 2), ('network', 2), ('first', 1), ('cover', 1), ('comprehensively', 1), ('mathematical', 1), ('beneš', 1), ('published', 1), ('year', 1), ('ago', 1), ('material', 1), ('classical', 1), ('rearrangeable', 1), ('updated', 1), ('modern', 1), ('topic', 1), ('multicast', 1), ('multirate', 1), ('surveyed', 1), ('author', 1), ('spent', 1)]
[('invaluable', 1), ('book', 1), ('designed', 1), ('useful', 1), ('practising', 1), ('scientist', 1), ('engineer', 1), ('whatever', 1), ('field', 1), ('rusty', 1), ('mathematics', 1), ('programming', 1), ('might', 1), ('approach', 1), ('taken', 1), ('largely', 1), ('practical', 1), ('algorithm', 1), ('presented', 1), ('full', 1), ('working', 1), ('code', 1), ('basic', 1), ('fortran', 1), ('pascal', 1), ('included', 1), ('floppy', 1), ('disk', 1), ('help', 1)]
[('language', 2), ('study', 2), ('formal', 1), ('provide', 1), ('theoretical', 1), ('underpinnings', 1), ('programming', 1), ('foundation', 1), ('compiler', 1), ('design', 1), ('important', 1), ('area', 1), ('biological', 1), ('system', 1), ('data', 1), ('transmission', 1), ('compression', 1), ('computer', 1), ('network', 1), ('etc', 1), ('book', 1), ('combine', 1), ('algebraic', 1), ('approach', 1), ('algorithmic', 1), ('aspect', 1)]
[('book', 2), ('cover', 1), ('substantially', 1), ('central', 1), ('idea', 1), ('semester', 1), ('course', 1), ('automaton', 1), ('theory', 1), ('oriented', 1), ('towards', 1), ('mathematical', 1), ('perspective', 1), ('understandable', 1), ('non', 1), ('mathematician', 1), ('comprehension', 1), ('greatly', 1), ('aided', 1), ('many', 1), ('example', 1), ('especially', 1), ('chomsky', 1), ('schützenberger', 1), ('theorem', 1), ('found', 1), ('field', 1), ('special', 1)]
[('domain', 3), ('textbook', 1), ('provides', 1), ('basis', 1), ('phd', 1), ('course', 1), ('theoretic', 1), ('semantics', 1), ('functional', 1), ('programming', 1), ('language', 1), ('meta', 1), ('mathematical', 1), ('property', 1), ('introduces', 1), ('basic', 1), ('theory', 1), ('technique', 1), ('logical', 1), ('relation', 1), ('developed', 1), ('scott', 1), ('plotkin', 1), ('solution', 1), ('recursive', 1), ('equation', 1), ('explained', 1), ('detail', 1), ('complete', 1)]
[('algorithm', 2), ('textbook', 1), ('cover', 1), ('mathematical', 1), ('foundation', 1), ('analysis', 1), ('gist', 1), ('book', 1), ('argue', 1), ('without', 1), ('burden', 1), ('excessive', 1), ('formalism', 1), ('given', 1), ('supposed', 1), ('key', 1), ('idea', 1), ('proof', 1), ('correctness', 1), ('induction', 1), ('invariance', 1), ('employed', 1), ('framework', 1), ('pre', 1), ('post', 1), ('condition', 1)]
[('formal', 2), ('text', 1), ('present', 1), ('concept', 1), ('underlying', 1), ('computer', 1), ('science', 1), ('start', 1), ('wide', 1), ('introduction', 1), ('logic', 1), ('emphasis', 1), ('reasoning', 1), ('proof', 1), ('chapter', 1), ('program', 1), ('verification', 1), ('prolog', 1), ('treatment', 1), ('computability', 1), ('automaton', 1), ('language', 1), ('stand', 1), ('several', 1), ('way', 1), ('style', 1), ('appropriate', 1), ('undergraduate', 1)]
[('signal', 3), ('processing', 3), ('recent', 1), ('decade', 1), ('study', 1), ('become', 1), ('increasingly', 1), ('complex', 1), ('new', 1), ('technique', 1), ('application', 1), ('constantly', 1), ('developed', 1), ('transformation', 1), ('interpretation', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('traditional', 1), ('modern', 1), ('method', 1), ('used', 1), ('designed', 1)]
[('object', 3), ('oriented', 3), ('programming', 2), ('dramatic', 1), ('innovation', 1), ('software', 1), ('development', 1), ('last', 1), ('decade', 1), ('offer', 1), ('powerful', 1), ('way', 1), ('cope', 1), ('complexity', 1), ('program', 1), ('far', 1), ('popular', 1), ('language', 1), ('book', 1), ('give', 1), ('complete', 1), ('introduction', 1), ('additionally', 1), ('provides', 1), ('large', 1)]
[('simulation', 2), ('computer', 2), ('book', 1), ('teach', 1), ('necessary', 1), ('problem', 1), ('independent', 1), ('tool', 1), ('technique', 1), ('needed', 1), ('implement', 1), ('perform', 1), ('sophisticated', 1), ('scientific', 1), ('numerical', 1), ('thus', 1), ('suited', 1), ('undergraduate', 1), ('graduate', 1), ('student', 1), ('want', 1), ('become', 1), ('expert', 1), ('physic', 1), ('chemistry', 1), ('biology', 1), ('engineering', 1), ('science', 1), ('field', 1)]
[('influence', 2), ('voronoi', 1), ('diagram', 1), ('partition', 1), ('space', 1), ('according', 1), ('certain', 1), ('site', 1), ('exert', 1), ('environment', 1), ('th', 1), ('century', 1), ('structure', 1), ('play', 1), ('important', 1), ('role', 1), ('many', 1), ('area', 1), ('astronomy', 1), ('physic', 1), ('chemistry', 1), ('biology', 1), ('ecology', 1), ('economics', 1), ('mathematics', 1), ('computer', 1), ('science', 1), ('help', 1), ('describe', 1), ('zone', 1), ('political', 1), ('determine', 1)]
[('book', 2), ('present', 1), ('computational', 1), ('technique', 1), ('tool', 1), ('needed', 1), ('start', 1), ('scientific', 1), ('research', 1), ('using', 1), ('computer', 1), ('simulation', 1), ('working', 1), ('reader', 1), ('posse', 1), ('necessary', 1), ('basic', 1), ('background', 1), ('knowledge', 1), ('program', 1), ('design', 1), ('programming', 1), ('fundamental', 1), ('algorithm', 1), ('data', 1), ('structure', 1), ('random', 1), ('number', 1), ('debugging', 1)]
[('system', 4), ('simulation', 3), ('distributed', 3), ('book', 2), ('computer', 2), ('modeling', 2), ('cd', 1), ('rom', 1), ('numerous', 1), ('solved', 1), ('model', 1), ('attached', 1), ('continuously', 1), ('expanding', 1), ('area', 1), ('science', 1), ('engineering', 1), ('address', 1), ('need', 1), ('literature', 1), ('technique', 1)]
[('use', 2), ('matlab', 2), ('package', 2), ('problem', 2), ('solution', 2), ('text', 1), ('continues', 1), ('exploration', 1), ('tool', 1), ('feature', 1), ('visualizing', 1), ('physical', 1), ('process', 1), ('symbolic', 1), ('math', 1), ('important', 1), ('solving', 1), ('amenable', 1), ('closed', 1), ('form', 1), ('numerical', 1), ('used', 1), ('remaining', 1), ('result', 1), ('graphic', 1)]
[('introduction', 2), ('window', 2), ('programming', 2), ('visual', 2), ('companion', 1), ('medium', 1), ('pack', 1), ('available', 1), ('graphic', 1), ('nd', 1), ('edition', 1), ('provides', 1), ('accessible', 1), ('approach', 1), ('study', 1), ('intended', 1), ('technical', 1), ('including', 1), ('practicing', 1), ('engineer', 1), ('engineering', 1), ('student', 1), ('others', 1), ('interested', 1)]
[('book', 3), ('recent', 2), ('language', 2), ('present', 2), ('encompasses', 1), ('collection', 1), ('topic', 1), ('covering', 1), ('advance', 1), ('important', 1), ('arabic', 1), ('area', 1), ('natural', 1), ('processing', 1), ('speech', 1), ('image', 1), ('analysis', 1), ('state', 1), ('art', 1), ('review', 1), ('fundamental', 1), ('application', 1), ('innovation', 1), ('chapter', 1), ('top', 1), ('researcher', 1), ('basic', 1), ('concept', 1)]
[('data', 2), ('biologist', 1), ('find', 1), ('computing', 1), ('bewildering', 1), ('yet', 1), ('expected', 1), ('able', 1), ('process', 1), ('voluminous', 1), ('available', 1), ('machine', 1), ('buy', 1), ('datasets', 1), ('accumulated', 1), ('genomic', 1), ('databanks', 1), ('worldwide', 1), ('increasingly', 1), ('difficult', 1), ('avoid', 1), ('dealing', 1), ('large', 1), ('volume', 1), ('go', 1), ('beyond', 1), ('manual', 1)]
[('hybrid', 2), ('metaheuristic', 1), ('higher', 1), ('level', 1), ('procedure', 1), ('designed', 1), ('select', 1), ('partial', 1), ('search', 1), ('algorithm', 1), ('lead', 1), ('good', 1), ('solution', 1), ('optimization', 1), ('problem', 1), ('especially', 1), ('incomplete', 1), ('imperfect', 1), ('information', 1), ('unique', 1), ('compendium', 1), ('focus', 1), ('insight', 1), ('metaheuristics', 1), ('illustrates', 1), ('recent', 1), ('research', 1), ('evolving', 1), ('novel', 1)]
[('design', 4), ('linear', 4), ('code', 4), ('monograph', 2), ('chapter', 2), ('aim', 1), ('provide', 1), ('rounded', 1), ('detailed', 1), ('account', 1), ('using', 1), ('cover', 1), ('deal', 1), ('obtained', 1), ('way', 1), ('connection', 1), ('among', 1), ('oval', 1), ('hyperovals', 1), ('maximal', 1), ('arc', 1), ('ovoid', 1)]
[('site', 3), ('social', 2), ('data', 2), ('online', 1), ('networking', 1), ('facebook', 1), ('linkedin', 1), ('twitter', 1), ('offer', 1), ('million', 1), ('member', 1), ('opportunity', 1), ('befriend', 1), ('another', 1), ('send', 1), ('message', 1), ('post', 1), ('content', 1), ('action', 1), ('generate', 1), ('mind', 1), ('boggling', 1), ('amount', 1), ('every', 1), ('day', 1), ('make', 1), ('sense', 1), ('massive', 1), ('resort', 1), ('medium', 1), ('mining', 1)]
[('cover', 2), ('topic', 2), ('related', 2), ('system', 2), ('interaction', 2), ('compendium', 1), ('several', 1), ('important', 1), ('multiagent', 1), ('learning', 1), ('game', 1), ('theoretic', 1), ('analysis', 1), ('automated', 1), ('negotiation', 1), ('human', 1), ('agent', 1), ('chapter', 1), ('written', 1), ('experienced', 1), ('researcher', 1), ('working', 1), ('specific', 1), ('mutliagent', 1), ('state', 1), ('art', 1), ('research', 1), ('result', 1)]
[('flins', 2), ('technology', 2), ('computational', 2), ('intelligence', 2), ('research', 2), ('originally', 1), ('acronym', 1), ('fuzzy', 1), ('logic', 1), ('intelligent', 1), ('nuclear', 1), ('science', 1), ('extended', 1), ('include', 1), ('applied', 1), ('contribution', 1), ('conference', 1), ('cover', 1), ('state', 1), ('art', 1), ('development', 1), ('system', 1), ('special', 1), ('focus', 1), ('data', 1)]
[('computer', 2), ('architecture', 2), ('introductory', 1), ('text', 1), ('comprehensive', 1), ('volume', 1), ('cover', 1), ('concept', 1), ('logic', 1), ('gate', 1), ('advanced', 1), ('come', 1), ('full', 1), ('spectrum', 1), ('exercise', 1), ('web', 1), ('downloadable', 1), ('support', 1), ('material', 1), ('including', 1), ('assembler', 1), ('simulator', 1), ('used', 1), ('context', 1), ('different', 1), ('course', 1), ('author', 1), ('make', 1)]
[('data', 2), ('handbook', 1), ('method', 1), ('protocol', 1), ('biologist', 1), ('aimed', 1), ('undergraduate', 1), ('graduate', 1), ('student', 1), ('researcher', 1), ('originally', 1), ('trained', 1), ('biological', 1), ('medical', 1), ('science', 1), ('need', 1), ('know', 1), ('access', 1), ('archive', 1), ('genome', 1), ('protein', 1), ('metabolite', 1), ('gene', 1), ('expression', 1), ('profile', 1), ('question', 1), ('tool', 1), ('answer', 1)]
[('fuzzy', 3), ('logic', 3), ('separate', 2), ('nowadays', 1), ('voluminous', 1), ('textbook', 1), ('monograph', 1), ('devoted', 1), ('combination', 1), ('facet', 1), ('lack', 1), ('single', 1), ('book', 1), ('present', 1), ('comprehensive', 1), ('self', 1), ('contained', 1), ('theory', 1), ('application', 1), ('written', 1), ('world', 1), ('renowned', 1), ('author', 1), ('lofti', 1), ('zadeh', 1), ('known', 1), ('father', 1)]
[('mathematical', 3), ('analysis', 2), ('compendium', 1), ('provides', 1), ('self', 1), ('contained', 1), ('introduction', 1), ('field', 1), ('machine', 1), ('learning', 1), ('data', 1), ('mining', 1), ('component', 1), ('typical', 1), ('curriculum', 1), ('computer', 1), ('science', 1), ('student', 1), ('omits', 1), ('important', 1), ('idea', 1), ('technique', 1), ('indispensable', 1), ('approaching', 1), ('specialized', 1), ('area', 1)]
[('mathematics', 2), ('type', 2), ('book', 1), ('graduate', 1), ('student', 1), ('researcher', 1), ('introducing', 1), ('modern', 1), ('foundational', 1), ('research', 1), ('computer', 1), ('science', 1), ('philosophy', 1), ('interdisciplinary', 1), ('point', 1), ('view', 1), ('scope', 1), ('includes', 1), ('predicative', 1), ('foundation', 1), ('constructive', 1), ('theory', 1), ('computation', 1), ('higher', 1), ('extraction', 1), ('program', 1), ('proof', 1)]
[('hand', 2), ('compendium', 1), ('present', 1), ('latest', 1), ('result', 1), ('prominent', 1), ('competition', 1), ('held', 1), ('field', 1), ('document', 1), ('analysis', 1), ('text', 1), ('recognition', 1), ('includes', 1), ('description', 1), ('participating', 1), ('system', 1), ('underlying', 1), ('method', 1), ('datasets', 1), ('used', 1), ('together', 1), ('evaluation', 1), ('metric', 1), ('volume', 1), ('demonstrates', 1)]
[('practical', 2), ('ga', 2), ('strategy', 2), ('artificial', 2), ('intelligence', 2), ('book', 1), ('delivers', 1), ('theoretical', 1), ('knowledge', 1), ('genetic', 1), ('algorithm', 1), ('purpose', 1), ('application', 1), ('provides', 1), ('methodology', 1), ('based', 1), ('search', 1), ('integration', 1), ('several', 1), ('life', 1), ('technique', 1), ('memetic', 1), ('concept', 1), ('swarm', 1), ('foraging', 1)]
[('book', 2), ('function', 2), ('written', 1), ('introduce', 1), ('computer', 1), ('simulation', 1), ('undergraduate', 1), ('college', 1), ('student', 1), ('freshman', 1), ('senior', 1), ('stem', 1), ('field', 1), ('start', 1), ('concept', 1), ('basic', 1), ('mathematics', 1), ('geometry', 1), ('algebra', 1), ('calculus', 1), ('property', 1), ('elementary', 1), ('polynomial', 1), ('exponential', 1), ('hyperbolic', 1), ('trigonometric', 1), ('studied', 1), ('simple', 1)]
[('artificial', 2), ('intelligence', 2), ('ai', 2), ('intelligent', 2), ('joint', 1), ('breakthrough', 1), ('big', 1), ('data', 1), ('cloud', 1), ('computing', 1), ('deep', 1), ('learning', 1), ('made', 1), ('new', 1), ('focus', 1), ('international', 1), ('arena', 1), ('branch', 1), ('computer', 1), ('science', 1), ('developing', 1), ('machine', 1), ('imitating', 1), ('extending', 1), ('augmenting', 1), ('human', 1), ('mean', 1), ('technique', 1), ('realize', 1)]
[('social', 2), ('network', 2), ('osns', 2), ('use', 1), ('online', 1), ('grown', 1), ('exponentially', 1), ('recent', 1), ('year', 1), ('continue', 1), ('increasing', 1), ('impact', 1), ('human', 1), ('life', 1), ('many', 1), ('concern', 1), ('regarding', 1), ('privacy', 1), ('user', 1), ('environment', 1), ('trustworthy', 1), ('operator', 1), ('snos', 1), ('book', 1), ('present', 1), ('way', 1), ('tackle', 1), ('security', 1)]
[('industrial', 3), ('digitalization', 2), ('changing', 1), ('nearly', 1), ('everything', 1), ('compendium', 1), ('highlight', 1), ('comprehensive', 1), ('understanding', 1), ('concept', 1), ('technology', 1), ('environment', 1), ('using', 1), ('internet', 1), ('thing', 1), ('digital', 1), ('twin', 1), ('data', 1), ('driven', 1), ('decision', 1), ('making', 1), ('approach', 1), ('including', 1), ('artificial', 1), ('intelligence', 1), ('overview', 1)]
[('information', 5), ('system', 4), ('comprehensive', 1), ('compendium', 1), ('managing', 1), ('focus', 1), ('relationship', 1), ('business', 1), ('impact', 1), ('role', 1), ('risk', 1), ('challenge', 1), ('emerging', 1), ('trend', 1), ('important', 1), ('element', 1), ('book', 1), ('essential', 1), ('critical', 1), ('management', 1), ('skill', 1)]
[('book', 3), ('screen', 1), ('obsessed', 1), ('parenting', 1), ('digital', 1), ('age', 1), ('first', 1), ('solely', 1), ('focusing', 1), ('parental', 1), ('supervision', 1), ('child', 1), ('medium', 1), ('use', 1), ('distills', 1), ('important', 1), ('information', 1), ('regarding', 1), ('parent', 1), ('effectively', 1), ('guide', 1), ('offspring', 1), ('living', 1), ('multimedia', 1), ('environment', 1), ('discus', 1), ('extensive', 1), ('range', 1), ('theory', 1), ('issue', 1), ('subject', 1)]
[('new', 2), ('mechanical', 2), ('passive', 2), ('network', 2), ('synthesis', 2), ('invention', 1), ('element', 1), ('called', 1), ('inerter', 1), ('research', 1), ('interest', 1), ('revived', 1), ('field', 1), ('become', 1), ('active', 1), ('essential', 1), ('unique', 1), ('compendium', 1), ('highlight', 1), ('electrical', 1), ('motivated', 1), ('vibration', 1), ('control', 1), ('based', 1), ('type', 1)]
[('information', 2), ('book', 1), ('give', 1), ('date', 1), ('multi', 1), ('aspect', 1), ('exposition', 1), ('philosophy', 1), ('methodology', 1), ('related', 1), ('area', 1), ('within', 1), ('nascent', 1), ('field', 1), ('study', 1), ('present', 1), ('recent', 1), ('achievement', 1), ('idea', 1), ('opinion', 1), ('leading', 1), ('researcher', 1), ('domain', 1), ('physicist', 1), ('biologist', 1), ('social', 1), ('scientist', 1)]
[('book', 2), ('application', 2), ('describes', 2), ('comprehensive', 1), ('theory', 1), ('artificial', 1), ('intelligence', 1), ('emphasis', 1), ('combine', 1), ('fuzzy', 1), ('logic', 1), ('neural', 1), ('network', 1), ('hidden', 1), ('markov', 1), ('model', 1), ('genetic', 1), ('algorithm', 1), ('advancement', 1), ('machine', 1), ('learning', 1), ('technique', 1), ('problem', 1), ('causality', 1)]
[('method', 2), ('recognition', 2), ('unique', 1), ('compendium', 1), ('present', 1), ('major', 1), ('learning', 1), ('used', 1), ('syntactic', 1), ('pattern', 1), ('till', 1), ('introduced', 1), ('firstly', 1), ('formal', 1), ('way', 1), ('explained', 1), ('help', 1), ('example', 1), ('algorithm', 1), ('described', 1), ('pseudocode', 1), ('survey', 1), ('application', 1), ('contains', 1)]
[('chapter', 2), ('section', 2), ('point', 1), ('question', 1), ('story', 1), ('occasional', 1), ('rant', 1), ('introduce', 1), ('engaging', 1), ('volume', 1), ('focus', 1), ('mathematics', 1), ('peppered', 1), ('scattering', 1), ('computer', 1), ('science', 1), ('setting', 1), ('entry', 1), ('range', 1), ('lightly', 1), ('humorous', 1), ('curiously', 1), ('thought', 1), ('provoking', 1), ('includes', 1), ('sub', 1), ('illustrate', 1), ('supplement', 1)]
[('knowledge', 2), ('book', 2), ('text', 1), ('analytics', 1), ('ta', 1), ('cover', 1), ('wide', 1), ('research', 1), ('area', 1), ('overarching', 1), ('goal', 1), ('discover', 1), ('present', 1), ('fact', 1), ('rule', 1), ('relationship', 1), ('hidden', 1), ('textual', 1), ('content', 1), ('author', 1), ('guide', 1), ('quest', 1), ('attain', 1), ('automatically', 1), ('applying', 1), ('various', 1), ('machine', 1), ('learning', 1), ('technique', 1)]
[('university', 3), ('workshop', 2), ('philippine', 2), ('proceeding', 1), ('seventh', 1), ('computing', 1), ('theory', 1), ('practice', 1), ('wctp', 1), ('devoted', 1), ('theoretical', 1), ('practical', 1), ('approach', 1), ('computation', 1), ('organized', 1), ('four', 1), ('top', 1), ('japan', 1), ('tokyo', 1), ('institute', 1), ('technology', 1), ('osaka', 1), ('diliman', 1), ('de', 1), ('la', 1), ('salle', 1)]
[('transaction', 4), ('processing', 2), ('application', 2), ('fundamental', 1), ('many', 1), ('modern', 1), ('require', 1), ('backend', 1), ('engine', 1), ('available', 1), ('time', 1), ('provide', 1), ('massive', 1), ('horizontal', 1), ('scale', 1), ('intensive', 1), ('request', 1), ('concurrency', 1), ('control', 1), ('recovery', 1), ('feature', 1), ('recent', 1), ('progress', 1), ('research', 1), ('online', 1)]
[('computer', 2), ('bio', 1), ('inspired', 1), ('computing', 1), ('bic', 1), ('focus', 1), ('design', 1), ('development', 1), ('algorithm', 1), ('model', 1), ('based', 1), ('biological', 1), ('mechanism', 1), ('living', 1), ('phenomenon', 1), ('major', 1), ('subfield', 1), ('natural', 1), ('computation', 1), ('leverage', 1), ('recent', 1), ('advance', 1), ('science', 1), ('biology', 1), ('mathematics', 1), ('idea', 1), ('provide', 1), ('abundant', 1), ('inspiration', 1), ('construct', 1)]
[('nonlinear', 3), ('edition', 2), ('new', 1), ('workbook', 1), ('th', 1), ('study', 1), ('dynamical', 1), ('system', 1), ('advanced', 1), ('tremendously', 1), ('last', 1), ('year', 1), ('making', 1), ('big', 1), ('impact', 1), ('science', 1), ('technology', 1), ('book', 1), ('provides', 1), ('technique', 1), ('method', 1), ('used', 1), ('dynamic', 1), ('concept', 1), ('underlying', 1), ('mathematics', 1), ('discussed', 1), ('detail', 1), ('numerical', 1)]
[('micro', 3), ('learning', 3), ('oers', 2), ('compendium', 1), ('introduces', 1), ('artificial', 1), ('intelligence', 1), ('supported', 1), ('solution', 1), ('realize', 1), ('adaptive', 1), ('open', 1), ('education', 1), ('resource', 1), ('oer', 1), ('advantage', 1), ('cloud', 1), ('computing', 1), ('big', 1), ('data', 1), ('leveraged', 1), ('promote', 1), ('categorization', 1), ('customization', 1), ('context', 1), ('service', 1), ('tailored', 1)]
[('social', 3), ('medium', 3), ('analysis', 2), ('data', 2), ('unique', 1), ('compendium', 1), ('focus', 1), ('acquisition', 1), ('approach', 1), ('concern', 1), ('intensive', 1), ('characteristic', 1), ('graphical', 1), ('structure', 1), ('book', 1), ('address', 1), ('critical', 1), ('problem', 1), ('representatively', 1), ('cover', 1), ('lifecycle', 1), ('volume', 1), ('excellent', 1), ('reference', 1)]
[('field', 2), ('revolution', 1), ('gregory', 1), ('chaitin', 1), ('brought', 1), ('within', 1), ('science', 1), ('known', 1), ('discovery', 1), ('algorithmic', 1), ('information', 1), ('complexity', 1), ('work', 1), ('gödel', 1), ('theorem', 1), ('contributed', 1), ('deeply', 1), ('expansively', 1), ('diverse', 1), ('book', 1), ('attempt', 1), ('bring', 1), ('together', 1), ('collection', 1), ('article', 1), ('written', 1), ('colleague', 1), ('collaborator', 1)]
[('data', 2), ('digital', 2), ('algorithm', 1), ('changing', 1), ('life', 1), ('awareness', 1), ('importance', 1), ('pervasiveness', 1), ('revolution', 1), ('primary', 1), ('element', 1), ('start', 1), ('path', 1), ('knowledge', 1), ('grasp', 1), ('happening', 1), ('world', 1), ('big', 1), ('innovation', 1), ('understand', 1), ('impact', 1), ('mind', 1), ('relationship', 1), ('traceability', 1)]
[('fuzzy', 6), ('system', 4), ('important', 3), ('unique', 1), ('compendium', 1), ('represents', 1), ('action', 1), ('quantum', 1), ('mechanic', 1), ('set', 1), ('give', 1), ('clear', 1), ('description', 1), ('development', 1), ('logic', 1), ('result', 1), ('probability', 1), ('presentation', 1), ('conclusion', 1), ('used', 1), ('study', 1)]
[('human', 4), ('transhuman', 2), ('ability', 2), ('trans', 1), ('concept', 1), ('intermediary', 1), ('form', 1), ('posthuman', 1), ('word', 1), ('resembles', 1), ('respect', 1), ('power', 1), ('beyond', 1), ('standard', 1), ('might', 1), ('include', 1), ('improved', 1), ('intelligence', 1), ('awareness', 1), ('strength', 1), ('durability', 1), ('transhumans', 1)]
[('volume', 2), ('linear', 2), ('optimization', 2), ('technique', 2), ('applies', 1), ('algebra', 1), ('concept', 1), ('presented', 1), ('problem', 1), ('frequently', 1), ('occur', 1), ('throughout', 1), ('machine', 1), ('learning', 1), ('book', 1), ('blend', 1), ('theory', 1), ('practice', 1), ('carefully', 1), ('discussing', 1), ('mathematical', 1), ('pinning', 1), ('applying', 1), ('programming', 1), ('support', 1)]
[('information', 3), ('first', 1), ('attempt', 1), ('delineate', 1), ('synthetic', 1), ('field', 1), ('theoretical', 1), ('study', 1), ('treating', 1), ('basic', 1), ('phenomenon', 1), ('fundamental', 1), ('level', 1), ('world', 1), ('encompassing', 1), ('nature', 1), ('technology', 1), ('individual', 1), ('society', 1), ('exploration', 1), ('done', 1), ('within', 1), ('info', 1), ('computational', 1), ('approach', 1), ('natural', 1), ('social', 1)]
[('part', 2), ('mobile', 1), ('device', 1), ('continue', 1), ('becoming', 1), ('larger', 1), ('life', 1), ('development', 1), ('location', 1), ('acquisition', 1), ('technology', 1), ('track', 1), ('moving', 1), ('object', 1), ('focused', 1), ('mind', 1), ('researcher', 1), ('issue', 1), ('ranging', 1), ('longitude', 1), ('latitude', 1), ('coordinate', 1), ('speed', 1), ('direction', 1), ('timestamping', 1), ('parameter', 1), ('needed', 1), ('calculate', 1), ('positional', 1), ('information', 1)]
[('private', 2), ('cryptology', 1), ('increasingly', 1), ('becoming', 1), ('essential', 1), ('topic', 1), ('interest', 1), ('everyday', 1), ('life', 1), ('digital', 1), ('communication', 1), ('happens', 1), ('transferring', 1), ('data', 1), ('least', 1), ('participant', 1), ('want', 1), ('disclose', 1), ('information', 1), ('executing', 1), ('sensitive', 1), ('bank', 1), ('transfer', 1), ('allowing', 1), ('third', 1), ('party', 1), ('entity', 1), ('eavesdrop', 1), ('call', 1)]
[('firm', 2), ('understanding', 1), ('key', 1), ('issue', 1), ('facing', 1), ('within', 1), ('surrounding', 1), ('context', 1), ('critical', 1), ('government', 1), ('international', 1), ('counterpart', 1), ('response', 1), ('dominant', 1), ('pervasive', 1), ('bias', 1), ('information', 1), ('system', 1), ('research', 1), ('towards', 1), ('american', 1), ('western', 1), ('view', 1), ('world', 1), ('project', 1), ('launched', 1), ('largest', 1), ('study', 1), ('kind', 1)]
[('prcv', 2), ('written', 1), ('world', 1), ('renowned', 1), ('author', 1), ('unique', 1), ('compendium', 1), ('present', 1), ('updated', 1), ('progress', 1), ('pattern', 1), ('recognition', 1), ('computer', 1), ('vision', 1), ('fully', 1), ('reflecting', 1), ('strong', 1), ('international', 1), ('research', 1), ('interest', 1), ('artificial', 1), ('intelligence', 1), ('arena', 1), ('machine', 1), ('learning', 1), ('key', 1), ('current', 1), ('development', 1), ('useful', 1), ('comprehensive', 1), ('volume', 1)]
[('volume', 2), ('optimization', 2), ('provides', 2), ('building', 1), ('decision', 1), ('making', 1), ('cover', 1), ('range', 1), ('algorithm', 1), ('application', 1), ('first', 1), ('starting', 1), ('point', 1), ('machine', 1), ('learning', 1), ('enthusiast', 1), ('comprehensive', 1), ('guide', 1), ('classical', 1), ('method', 1), ('depth', 1), ('overview', 1), ('artificial', 1), ('intelligence', 1), ('used', 1)]
[('data', 3), ('discipline', 2), ('science', 2), ('different', 2), ('established', 2), ('emerging', 1), ('broadly', 1), ('mean', 1), ('thing', 1), ('across', 1), ('area', 1), ('exploring', 1), ('relationship', 1), ('statistic', 1), ('principled', 1), ('analytic', 1), ('book', 1), ('provides', 1), ('insight', 1), ('commonality', 1), ('approach', 1), ('difference', 1), ('emphasis', 1), ('featuring', 1), ('chapter', 1), ('author', 1)]
[('balancing', 2), ('processing', 2), ('based', 2), ('illustrative', 1), ('compendium', 1), ('analyzes', 1), ('load', 1), ('problem', 1), ('distributed', 1), ('stream', 1), ('system', 1), ('explores', 1), ('set', 1), ('high', 1), ('performance', 1), ('real', 1), ('time', 1), ('scheme', 1), ('key', 1), ('strategy', 1), ('join', 1), ('matrix', 1), ('model', 1), ('fault', 1), ('tolerance', 1), ('mechanism', 1), ('volume', 1), ('succinctly', 1), ('provides', 1), ('theoretical', 1), ('support', 1), ('proposed', 1), ('technique', 1)]
[('volume', 4), ('semantic', 3), ('computing', 2), ('robotic', 2), ('intelligence', 2), ('first', 1), ('world', 1), ('scientific', 1), ('encyclopedia', 1), ('designed', 1), ('lay', 1), ('foundation', 1), ('understanding', 1), ('sc', 1), ('core', 1), ('concept', 1), ('study', 1), ('subsequent', 1), ('aim', 1), ('provide', 1), ('reference', 1), ('development', 1)]
[('intelligence', 3), ('question', 2), ('order', 1), ('bridge', 1), ('gap', 1), ('artificial', 1), ('synthetic', 1), ('first', 1), ('understand', 1), ('might', 1), ('appear', 1), ('simple', 1), ('many', 1), ('mind', 1), ('agreed', 1), ('singular', 1), ('answer', 1), ('unlocking', 1), ('consciousness', 1), ('attempt', 1), ('examine', 1), ('central', 1), ('exploring', 1), ('convergence', 1)]
[('presentation', 2), ('pacific', 1), ('symposium', 1), ('biocomputing', 1), ('psb', 1), ('international', 1), ('multidisciplinary', 1), ('conference', 1), ('discussion', 1), ('current', 1), ('research', 1), ('theory', 1), ('application', 1), ('computational', 1), ('method', 1), ('problem', 1), ('biological', 1), ('significance', 1), ('rigorously', 1), ('peer', 1), ('reviewed', 1), ('published', 1), ('archival', 1), ('proceeding', 1), ('volume', 1)]
[('presentation', 2), ('pacific', 1), ('symposium', 1), ('biocomputing', 1), ('psb', 1), ('international', 1), ('multidisciplinary', 1), ('conference', 1), ('discussion', 1), ('current', 1), ('research', 1), ('theory', 1), ('application', 1), ('computational', 1), ('method', 1), ('problem', 1), ('biological', 1), ('significance', 1), ('rigorously', 1), ('peer', 1), ('reviewed', 1), ('published', 1), ('archival', 1), ('proceeding', 1), ('volume', 1)]
[('highway', 2), ('location', 2), ('level', 2), ('monograph', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('method', 1), ('searching', 1), ('evaluating', 1), ('optimizing', 1), ('alignment', 1), ('using', 1), ('genetic', 1), ('algorithm', 1), ('gas', 1), ('powerful', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('technique', 1), ('present', 1), ('programming', 1), ('structure', 1), ('deal', 1), ('effect', 1), ('varying', 1), ('traffic', 1), ('change', 1)]
[('cyber', 2), ('created', 2), ('era', 1), ('unprecedented', 1), ('volatile', 1), ('political', 1), ('economic', 1), ('environment', 1), ('across', 1), ('world', 1), ('computer', 1), ('based', 1), ('security', 1), ('system', 1), ('face', 1), ('growing', 1), ('challenge', 1), ('internet', 1), ('global', 1), ('platform', 1), ('exchange', 1), ('idea', 1), ('good', 1), ('service', 1), ('boundless', 1), ('opportunity', 1), ('crime', 1), ('debate', 1), ('plan', 1)]
[('technology', 2), ('perspective', 2), ('selecting', 1), ('right', 1), ('critical', 1), ('decision', 1), ('driven', 1), ('enterprise', 1), ('selection', 1), ('complete', 1), ('without', 1), ('thorough', 1), ('informed', 1), ('evaluation', 1), ('book', 1), ('explores', 1), ('digital', 1), ('transformation', 1), ('movement', 1), ('three', 1), ('technological', 1), ('personal', 1), ('organizational', 1), ('technical', 1), ('analysis', 1)]
[('research', 2), ('compendium', 1), ('provides', 1), ('comprehensive', 1), ('collection', 1), ('emergent', 1), ('application', 1), ('big', 1), ('data', 1), ('machine', 1), ('learning', 1), ('artificial', 1), ('intelligence', 1), ('technology', 1), ('present', 1), ('day', 1), ('physical', 1), ('science', 1), ('ranging', 1), ('material', 1), ('theory', 1), ('imaging', 1), ('predictive', 1), ('synthesis', 1), ('automated', 1), ('area', 1), ('among', 1), ('rapidly', 1), ('developing', 1), ('last', 1)]
[('modelling', 2), ('creo', 2), ('lesson', 2), ('purpose', 1), ('book', 1), ('introduce', 1), ('reader', 1), ('cad', 1), ('cam', 1), ('using', 1), ('parametric', 1), ('software', 1), ('concise', 1), ('textbook', 1), ('consists', 1), ('ten', 1), ('covering', 1), ('basic', 1), ('part', 1), ('assembly', 1), ('mould', 1), ('design', 1), ('nc', 1), ('simulation', 1), ('engineering', 1), ('drawing', 1), ('provides', 1), ('essential', 1), ('knowledge', 1), ('guide', 1), ('user', 1)]
[('intelligence', 5), ('book', 2), ('machine', 2), ('human', 2), ('perspective', 2), ('present', 1), ('novel', 1), ('view', 1), ('relationship', 1), ('being', 1), ('viewed', 1), ('artificial', 1), ('aid', 1), ('seen', 1), ('form', 1), ('seamless', 1), ('web', 1), ('established', 1), ('new', 1), ('highlight', 1)]
[('modeling', 4), ('coding', 3), ('tool', 2), ('requirement', 1), ('attempt', 1), ('bridge', 1), ('gap', 1), ('serf', 1), ('growing', 1), ('trend', 1), ('agile', 1), ('development', 1), ('better', 1), ('existing', 1), ('textbook', 1), ('area', 1), ('instead', 1), ('using', 1), ('toy', 1), ('create', 1), ('example', 1), ('author', 1), ('teach', 1), ('ibm', 1), ('rational', 1), ('rhapsody', 1), ('microsoft', 1), ('visual', 1)]
[('behavior', 2), ('compendium', 1), ('provides', 1), ('detailed', 1), ('account', 1), ('lognormality', 1), ('principle', 1), ('characterizing', 1), ('human', 1), ('motor', 1), ('summarizing', 1), ('sound', 1), ('theoretical', 1), ('framework', 1), ('modeling', 1), ('introducing', 1), ('recent', 1), ('algorithm', 1), ('extracting', 1), ('lognormal', 1), ('component', 1), ('complex', 1), ('movement', 1), ('dimension', 1), ('vividly', 1), ('report', 1)]
[('private', 2), ('digital', 2), ('currency', 2), ('whether', 2), ('monetary', 2), ('recent', 1), ('technological', 1), ('advancement', 1), ('particularly', 1), ('advent', 1), ('distributed', 1), ('ledger', 1), ('made', 1), ('development', 1), ('possible', 1), ('raise', 1), ('important', 1), ('question', 1), ('considered', 1), ('money', 1), ('impact', 1), ('policy', 1), ('international', 1), ('system', 1), ('central', 1), ('bank', 1)]
[('presentation', 2), ('pacific', 1), ('symposium', 1), ('biocomputing', 1), ('psb', 1), ('international', 1), ('multidisciplinary', 1), ('conference', 1), ('discussion', 1), ('current', 1), ('research', 1), ('theory', 1), ('application', 1), ('computational', 1), ('method', 1), ('problem', 1), ('biological', 1), ('significance', 1), ('rigorously', 1), ('peer', 1), ('reviewed', 1), ('published', 1), ('archival', 1), ('proceeding', 1), ('volume', 1)]
[('follow', 1), ('brain', 1), ('v', 1), ('computer', 1), ('challenge', 1), ('century', 1), ('jean', 1), ('pierre', 1), ('fillard', 1), ('brings', 1), ('together', 1), ('diverse', 1), ('perspective', 1), ('address', 1), ('recurring', 1), ('theme', 1), ('rivalry', 1), ('machine', 1), ('accelerated', 1), ('recent', 1), ('event', 1), ('covid', 1), ('pandemic', 1), ('caught', 1), ('world', 1), ('surprise', 1), ('brought', 1), ('standstill', 1), ('use', 1), ('technology', 1)]
[('software', 2), ('aging', 2), ('rejuvenation', 2), ('handbook', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('subject', 1), ('making', 1), ('indispensable', 1), ('graduate', 1), ('student', 1), ('professional', 1), ('field', 1), ('begin', 1), ('introducing', 1), ('fundamental', 1), ('concept', 1), ('definition', 1), ('history', 1), ('research', 1), ('followed', 1), ('method', 1), ('tool', 1), ('strategy', 1)]
[('library', 2), ('manuscript', 2), ('recent', 1), ('year', 1), ('archive', 1), ('around', 1), ('world', 1), ('increased', 1), ('effort', 1), ('digitize', 1), ('historical', 1), ('integrate', 1), ('digital', 1), ('pattern', 1), ('recognition', 1), ('machine', 1), ('learning', 1), ('method', 1), ('needed', 1), ('extract', 1), ('index', 1), ('content', 1), ('scanned', 1), ('image', 1), ('unique', 1), ('compendium', 1), ('describes', 1), ('outcome', 1)]
[('artificial', 2), ('intelligence', 2), ('ai', 2), ('english', 1), ('edition', 1), ('monograph', 1), ('developed', 1), ('updated', 1), ('china', 1), ('best', 1), ('selling', 1), ('award', 1), ('winning', 1), ('book', 1), ('cover', 1), ('foundation', 1), ('latest', 1), ('development', 1), ('comprehensive', 1), ('systematic', 1), ('manner', 1), ('valuable', 1), ('guide', 1), ('student', 1), ('researcher', 1), ('wide', 1), ('range', 1)]
[('define', 2), ('hundred', 1), ('year', 1), ('brain', 1), ('research', 1), ('revealed', 1), ('secret', 1), ('book', 1), ('motivated', 1), ('realization', 1), ('cortical', 1), ('structure', 1), ('behavior', 1), ('explained', 1), ('synergy', 1), ('seemingly', 1), ('different', 1), ('mathematical', 1), ('notion', 1), ('global', 1), ('attractor', 1), ('non', 1), ('invertible', 1), ('neural', 1), ('firing', 1), ('rate', 1), ('dynamic', 1), ('random', 1), ('graph', 1), ('connectivity', 1)]
[('blockchain', 3), ('innovative', 1), ('technology', 1), ('getting', 1), ('attention', 1), ('increasing', 1), ('number', 1), ('application', 1), ('emerged', 1), ('book', 1), ('elaborates', 1), ('design', 1), ('thinking', 1), ('idea', 1), ('technical', 1), ('detail', 1), ('smart', 1), ('contract', 1), ('help', 1), ('reader', 1), ('delve', 1), ('conceptual', 1), ('framework', 1), ('understand', 1), ('designed', 1)]
[('cipher', 2), ('textbook', 1), ('describes', 1), ('main', 1), ('technique', 1), ('feature', 1), ('contemporary', 1), ('cryptography', 1), ('using', 1), ('secondary', 1), ('school', 1), ('mathematics', 1), ('concept', 1), ('discussed', 1), ('understood', 1), ('non', 1), ('mathematician', 1), ('topic', 1), ('addressed', 1), ('include', 1), ('block', 1), ('stream', 1), ('public', 1), ('key', 1), ('encryption', 1), ('digital', 1), ('signature', 1), ('cryptographic', 1), ('protocol', 1), ('elliptic', 1)]
[('cyberspace', 1), ('become', 1), ('critical', 1), ('part', 1), ('life', 1), ('result', 1), ('important', 1), ('academic', 1), ('research', 1), ('topic', 1), ('multifaceted', 1), ('dynamic', 1), ('domain', 1), ('largely', 1), ('driven', 1), ('business', 1), ('civilian', 1), ('sector', 1), ('influential', 1), ('impact', 1), ('national', 1), ('security', 1), ('book', 1), ('present', 1), ('current', 1), ('diverse', 1), ('matter', 1), ('related', 1), ('regulation', 1), ('jurisdictive', 1), ('activity', 1)]
[('software', 3), ('se', 2), ('ai', 2), ('integral', 1), ('part', 1), ('life', 1), ('today', 1), ('modern', 1), ('system', 1), ('highly', 1), ('complex', 1), ('often', 1), ('pose', 1), ('new', 1), ('challenge', 1), ('different', 1), ('aspect', 1), ('engineering', 1), ('artificial', 1), ('intelligence', 1), ('growing', 1), ('field', 1), ('computer', 1), ('science', 1), ('proven', 1), ('effective', 1), ('applying', 1), ('developing', 1), ('technique', 1), ('address', 1), ('various', 1)]
[('conference', 3), ('theoretical', 3), ('computer', 3), ('italian', 2), ('science', 2), ('ictcs', 1), ('annual', 1), ('chapter', 1), ('european', 1), ('association', 1), ('aim', 1), ('enabling', 1), ('scientist', 1), ('especially', 1), ('young', 1), ('researcher', 1), ('enter', 1), ('community', 1), ('exchange', 1), ('idea', 1), ('result', 1)]
[('healthcare', 2), ('interest', 1), ('medical', 1), ('expert', 1), ('system', 1), ('neural', 1), ('network', 1), ('artificial', 1), ('intelligence', 1), ('technique', 1), ('increase', 1), ('provider', 1), ('realise', 1), ('potential', 1), ('engineer', 1), ('scientist', 1), ('discovering', 1), ('medicine', 1), ('fertile', 1), ('area', 1), ('developing', 1), ('new', 1), ('applying', 1), ('existing', 1), ('intelligent', 1), ('algorithm', 1), ('real', 1)]
[('gi', 3), ('paper', 2), ('past', 1), ('decade', 1), ('witnessed', 1), ('sharp', 1), ('increase', 1), ('use', 1), ('geographic', 1), ('information', 1), ('system', 1), ('spatial', 1), ('data', 1), ('analysis', 1), ('particularly', 1), ('far', 1), ('east', 1), ('proceeding', 1), ('compilation', 1), ('range', 1), ('advanced', 1), ('application', 1), ('development', 1), ('present', 1), ('new', 1), ('research', 1), ('problem', 1), ('result', 1)]
[('neural', 4), ('net', 4), ('cellular', 2), ('automaton', 2), ('proceeding', 1), ('cover', 1), ('wide', 1), ('range', 1), ('topic', 1), ('theoretical', 1), ('foundation', 1), ('novel', 1), ('architecture', 1), ('biological', 1), ('information', 1), ('processing', 1), ('discrete', 1), ('fluid', 1), ('model', 1), ('learning', 1), ('electronic', 1), ('optoelectronic', 1), ('implementation', 1), ('application', 1), ('pattern', 1), ('speech', 1)]
[('big', 2), ('data', 2), ('national', 2), ('strategy', 2), ('upgraded', 1), ('become', 1), ('catalyst', 1), ('local', 1), ('economic', 1), ('development', 1), ('promotion', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('new', 1), ('business', 1), ('model', 1), ('need', 1), ('optimize', 1), ('upgrade', 1), ('integration', 1), ('blockchain', 1), ('industry', 1), ('fully', 1), ('implement', 1), ('digital', 1), ('china', 1)]
[('basic', 3), ('data', 2), ('structure', 2), ('algorithm', 2), ('programming', 2), ('book', 1), ('result', 1), ('several', 1), ('decade', 1), ('teaching', 1), ('experience', 1), ('self', 1), ('contained', 1), ('assume', 1), ('prior', 1), ('knowledge', 1), ('grasp', 1), ('mathematics', 1), ('tool', 1), ('concept', 1), ('focus', 1), ('advanced', 1), ('paradigm', 1), ('method', 1), ('combining', 1)]
[('learning', 3), ('perspective', 3), ('machine', 2), ('unique', 1), ('compendium', 1), ('discus', 1), ('core', 1), ('idea', 1), ('development', 1), ('implementation', 1), ('three', 1), ('different', 1), ('statistical', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('deep', 1), ('methodology', 1), ('useful', 1), ('reference', 1), ('text', 1), ('represents', 1), ('solid', 1), ('foundation', 1), ('prepare', 1)]
[('video', 3), ('granular', 2), ('computing', 2), ('object', 2), ('tracking', 2), ('volume', 1), ('link', 1), ('concept', 1), ('using', 1), ('deep', 1), ('learning', 1), ('internet', 1), ('thing', 1), ('analysis', 1), ('describes', 1), ('uncertainty', 1), ('involved', 1), ('task', 1), ('processing', 1), ('handled', 1), ('rough', 1), ('set', 1), ('theoretic', 1), ('framework', 1), ('issue', 1), ('constrained', 1)]
[('different', 3), ('ann', 3), ('book', 2), ('algebraic', 2), ('equation', 2), ('aim', 1), ('handle', 1), ('application', 1), ('problem', 1), ('science', 1), ('engineering', 1), ('using', 1), ('expert', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('start', 1), ('basic', 1), ('along', 1), ('mathematical', 1), ('preliminary', 1), ('respect', 1), ('address', 1), ('based', 1), ('method', 1), ('solving', 1)]
[('challenge', 2), ('business', 2), ('organization', 2), ('world', 1), ('internet', 1), ('wide', 1), ('adoption', 1), ('computing', 1), ('device', 1), ('dramatically', 1), ('reduces', 1), ('storage', 1), ('cost', 1), ('easy', 1), ('access', 1), ('huge', 1), ('amount', 1), ('data', 1), ('thus', 1), ('posing', 1), ('benefit', 1), ('amongst', 1), ('unique', 1), ('compendium', 1), ('cover', 1), ('current', 1), ('status', 1), ('practice', 1), ('among', 1), ('future', 1), ('direction', 1)]
[('machine', 2), ('learning', 2), ('set', 1), ('lecture', 1), ('note', 1), ('written', 1), ('unfamiliar', 1), ('mathematics', 1), ('programming', 1), ('introduces', 1), ('reader', 1), ('important', 1), ('concept', 1), ('field', 1), ('consists', 1), ('three', 1), ('part', 1), ('first', 1), ('overview', 1), ('history', 1), ('artificial', 1), ('intelligence', 1), ('data', 1), ('science', 1), ('includes', 1), ('case', 1), ('study', 1)]
[('clustering', 4), ('presentation', 2), ('unique', 1), ('compendium', 1), ('give', 1), ('updated', 1), ('challenging', 1), ('task', 1), ('machine', 1), ('learning', 1), ('book', 1), ('provides', 1), ('unitary', 1), ('classical', 1), ('contemporary', 1), ('algorithm', 1), ('ranging', 1), ('partitional', 1), ('hierarchical', 1), ('density', 1), ('based', 1), ('categorical', 1), ('data', 1), ('spectral', 1)]
[('human', 3), ('examines', 2), ('book', 1), ('demystifies', 1), ('artificial', 1), ('intelligence', 1), ('strength', 1), ('limitation', 1), ('comparison', 1), ('capable', 1), ('investigates', 1), ('nature', 1), ('adaptive', 1), ('expertise', 1), ('across', 1), ('concept', 1), ('mètis', 1), ('particular', 1), ('family', 1), ('mindset', 1), ('adopted', 1), ('age', 1), ('namely', 1), ('epistemology', 1)]
[('deep', 3), ('learning', 3), ('good', 2), ('achieved', 1), ('success', 1), ('many', 1), ('challenging', 1), ('research', 1), ('area', 1), ('image', 1), ('recognition', 1), ('natural', 1), ('language', 1), ('processing', 1), ('key', 1), ('merit', 1), ('automatically', 1), ('learn', 1), ('feature', 1), ('representation', 1), ('massive', 1), ('data', 1), ('conceptually', 1), ('book', 1), ('show', 1), ('technology', 1), ('candidate', 1)]
[('judge', 2), ('fair', 1), ('increase', 1), ('defendant', 1), ('prison', 1), ('time', 1), ('basis', 1), ('algorithmic', 1), ('score', 1), ('predicts', 1), ('likelihood', 1), ('commit', 1), ('future', 1), ('crime', 1), ('many', 1), ('state', 1), ('say', 1), ('yes', 1), ('even', 1), ('algorithm', 1), ('use', 1), ('purpose', 1), ('high', 1), ('error', 1), ('rate', 1), ('secret', 1), ('design', 1), ('demonstratable', 1), ('racial', 1), ('bias', 1), ('former', 1), ('federal', 1)]
[('iee', 4), ('international', 2), ('conference', 2), ('knowledge', 2), ('innovation', 2), ('invention', 2), ('volume', 1), ('proceeding', 1), ('rd', 1), ('ickii', 1), ('organized', 1), ('tainan', 1), ('section', 1), ('sensor', 1), ('council', 1), ('tssc', 1), ('institute', 1), ('iikii', 1), ('national', 1), ('university', 1), ('kaohsiung', 1), ('taiwan', 1)]
[('technology', 3), ('international', 2), ('relation', 2), ('artificial', 1), ('intelligence', 1), ('emerging', 1), ('explores', 1), ('geopolitics', 1), ('focus', 1), ('war', 1), ('trade', 1), ('investment', 1), ('flow', 1), ('diplomacy', 1), ('regional', 1), ('integration', 1), ('development', 1), ('cooperation', 1), ('book', 1), ('take', 1), ('holistic', 1), ('perspective', 1), ('examine', 1), ('origin', 1), ('analysing', 1)]
[('book', 2), ('defense', 2), ('technology', 2), ('system', 2), ('information', 2), ('put', 1), ('forward', 1), ('dynamically', 1), ('enabled', 1), ('cyber', 1), ('solution', 1), ('homogenization', 1), ('problem', 1), ('based', 1), ('hierarchy', 1), ('protected', 1), ('entity', 1), ('elaborates', 1), ('current', 1), ('mainstream', 1), ('dynamic', 1), ('four', 1), ('aspect', 1), ('internal', 1), ('hardware', 1), ('platform', 1), ('software', 1), ('service', 1), ('data', 1)]
[('edition', 2), ('linear', 2), ('code', 2), ('publication', 1), ('first', 1), ('monograph', 1), ('generalisation', 1), ('assmus', 1), ('mattson', 1), ('theorem', 1), ('finite', 1), ('field', 1), ('developed', 1), ('year', 1), ('breakthrough', 1), ('considerable', 1), ('amount', 1), ('progress', 1), ('design', 1), ('made', 1), ('second', 1), ('substantial', 1), ('revision', 1), ('expansion', 1)]
[('data', 3), ('literature', 2), ('society', 2), ('intersection', 2), ('term', 2), ('think', 1), ('relationship', 1), ('additive', 1), ('meaning', 1), ('seen', 1), ('separate', 1), ('set', 1), ('thing', 1), ('overlap', 1), ('form', 1), ('go', 1), ('unpack', 1), ('circle', 1), ('partner', 1), ('manner', 1), ('descriptive', 1), ('domain', 1)]
[('brain', 3), ('deep', 2), ('learning', 2), ('computer', 2), ('interface', 2), ('bci', 2), ('world', 2), ('eeg', 1), ('based', 1), ('exciting', 1), ('book', 1), ('describes', 1), ('emerging', 1), ('improves', 1), ('future', 1), ('development', 1), ('term', 1), ('representation', 1), ('algorithm', 1), ('application', 1), ('bridge', 1), ('humanity', 1), ('neural', 1), ('physical', 1), ('decoding', 1), ('individual', 1), ('signal', 1)]
[('self', 2), ('organisation', 2), ('science', 2), ('rule', 2), ('paradigm', 1), ('fundamental', 1), ('theory', 1), ('collective', 1), ('action', 1), ('economic', 1), ('democratic', 1), ('governance', 1), ('political', 1), ('social', 1), ('system', 1), ('critically', 1), ('depends', 1), ('voluntary', 1), ('compliance', 1), ('conventional', 1), ('made', 1), ('mutually', 1), ('agreed', 1), ('modifiable', 1), ('fly', 1)]
[('digital', 1), ('era', 1), ('emerging', 1), ('technology', 1), ('artificial', 1), ('intelligence', 1), ('big', 1), ('data', 1), ('blockchain', 1), ('revolutionized', 1), ('various', 1), ('way', 1), ('daily', 1), ('life', 1), ('brought', 1), ('many', 1), ('opportunity', 1), ('challenge', 1), ('industry', 1), ('increasing', 1), ('demand', 1), ('talent', 1), ('fintech', 1), ('realm', 1), ('book', 1), ('serf', 1), ('good', 1), ('guide', 1), ('practitioner', 1)]
[('matlab', 2), ('book', 1), ('present', 1), ('introduction', 1), ('student', 1), ('professional', 1), ('working', 1), ('field', 1), ('engineering', 1), ('scientific', 1), ('technical', 1), ('sector', 1), ('interest', 1), ('need', 1), ('apply', 1), ('tool', 1), ('undertaking', 1), ('simulation', 1), ('formulating', 1), ('solution', 1), ('problem', 1), ('concerned', 1), ('presentation', 1), ('highly', 1), ('accessible', 1), ('employing', 1)]
[('deep', 2), ('brain', 2), ('stimulation', 2), ('machine', 2), ('learning', 2), ('book', 1), ('present', 1), ('confluence', 1), ('wearable', 1), ('wireless', 1), ('inertial', 1), ('sensor', 1), ('system', 1), ('smartphone', 1), ('treating', 1), ('movement', 1), ('disorder', 1), ('essential', 1), ('tremor', 1), ('distinguishes', 1), ('distinct', 1), ('setting', 1), ('status', 1), ('achievement', 1)]
[('problem', 5), ('solution', 2), ('technique', 2), ('solving', 1), ('essential', 1), ('part', 1), ('every', 1), ('scientific', 1), ('discipline', 1), ('component', 1), ('negetiveemoji', 1), ('identification', 1), ('formulation', 1), ('formulated', 1), ('solve', 1), ('using', 1), ('ad', 1), ('hoc', 1), ('following', 1), ('produced', 1), ('efficient', 1), ('similar', 1), ('required', 1)]
[('finance', 3), ('professional', 2), ('topic', 2), ('module', 1), ('provides', 1), ('significant', 1), ('underpinning', 1), ('chartered', 1), ('fintech', 1), ('cftp', 1), ('qualification', 1), ('familiar', 1), ('traditionally', 1), ('trained', 1), ('required', 1), ('appreciate', 1), ('financial', 1), ('problem', 1), ('technology', 1), ('help', 1), ('solve', 1), ('without', 1), ('clear', 1), ('appreciation', 1), ('concept', 1)]
[('data', 2), ('new', 2), ('every', 1), ('day', 1), ('kind', 1), ('historical', 1), ('become', 1), ('available', 1), ('opening', 1), ('exciting', 1), ('avenue', 1), ('inquiry', 1), ('challenge', 1), ('updated', 1), ('expanded', 1), ('book', 1), ('describes', 1), ('demonstrates', 1), ('way', 1), ('explored', 1), ('construct', 1), ('cultural', 1), ('heritage', 1), ('knowledge', 1), ('research', 1), ('teaching', 1), ('learning', 1), ('help', 1), ('humanity', 1), ('scholar', 1)]
[('analysis', 2), ('application', 2), ('book', 1), ('present', 1), ('report', 1), ('known', 1), ('expert', 1), ('recent', 1), ('research', 1), ('result', 1), ('image', 1), ('coding', 1), ('understanding', 1), ('promising', 1), ('solving', 1), ('real', 1), ('problem', 1), ('manufacturing', 1), ('remote', 1), ('sensing', 1), ('biomedicine', 1), ('topic', 1), ('covered', 1), ('include', 1), ('shape', 1), ('computer', 1), ('vision', 1), ('pattern', 1), ('recognition', 1), ('method', 1)]
[('book', 2), ('paper', 2), ('international', 2), ('pattern', 2), ('recognition', 2), ('artificial', 2), ('includes', 1), ('reviewed', 1), ('scholar', 1), ('conference', 1), ('intelligence', 1), ('held', 1), ('online', 1), ('expanded', 1), ('provide', 1), ('detail', 1), ('specifically', 1), ('geared', 1), ('promote', 1), ('ongoing', 1), ('interest', 1), ('understanding', 1)]
[('finance', 4), ('technology', 2), ('professional', 2), ('knowledge', 2), ('artificial', 1), ('intelligence', 1), ('big', 1), ('data', 1), ('cloud', 1), ('computing', 1), ('blockchain', 1), ('applied', 1), ('various', 1), ('area', 1), ('increasing', 1), ('demand', 1), ('skill', 1), ('related', 1), ('fintech', 1), ('involved', 1), ('concept', 1), ('crucial', 1)]
[('nan', 1)]
[('know', 2), ('computation', 2), ('implemented', 1), ('cytoskeleton', 1), ('network', 1), ('chemical', 1), ('reaction', 1), ('liquid', 1), ('marble', 1), ('plant', 1), ('polymer', 1), ('dozen', 1), ('living', 1), ('inanimate', 1), ('substrate', 1), ('reversible', 1), ('computing', 1), ('dna', 1), ('microscopy', 1), ('aware', 1), ('randomness', 1), ('aid', 1), ('make', 1), ('logical', 1), ('circuit', 1), ('enzymatic', 1)]
[('testbed', 2), ('book', 1), ('stem', 1), ('unique', 1), ('highly', 1), ('effective', 1), ('approach', 1), ('introducing', 1), ('signal', 1), ('processing', 1), ('instrumentation', 1), ('diagnostics', 1), ('filtering', 1), ('control', 1), ('system', 1), ('integration', 1), ('machine', 1), ('learning', 1), ('present', 1), ('interactive', 1), ('industrial', 1), ('grade', 1), ('software', 1), ('mold', 1), ('oscillator', 1), ('capture', 1), ('distortion', 1), ('induced', 1), ('beam', 1), ('resonance', 1), ('us', 1)]
[('computer', 2), ('vision', 2), ('special', 1), ('compendium', 1), ('introduces', 1), ('basic', 1), ('principle', 1), ('typical', 1), ('method', 1), ('practical', 1), ('technique', 1), ('volume', 1), ('comprehensively', 1), ('cover', 1), ('introductory', 1), ('content', 1), ('material', 1), ('selected', 1), ('based', 1), ('course', 1), ('conducted', 1), ('past', 1), ('year', 1), ('useful', 1), ('textbook', 1), ('provides', 1), ('numerous', 1), ('example', 1), ('self', 1), ('test', 1)]
[('magic', 3), ('computer', 2), ('science', 2), ('trick', 2), ('step', 2), ('team', 1), ('behind', 1), ('fun', 1), ('c', 1), ('fn', 1), ('brings', 1), ('conjuring', 1), ('computation', 1), ('manual', 1), ('computing', 1), ('beginner', 1), ('develop', 1), ('skill', 1), ('magician', 1), ('learning', 1), ('basic', 1), ('exploring', 1), ('link', 1), ('chapter', 1), ('explains', 1), ('simple', 1), ('us', 1)]
[('fundus', 3), ('analysis', 2), ('retinopathy', 2), ('image', 2), ('comprehensive', 1), ('compendium', 1), ('design', 1), ('deep', 1), ('neural', 1), ('network', 1), ('model', 1), ('system', 1), ('intelligent', 1), ('imaging', 1), ('response', 1), ('several', 1), ('blinding', 1), ('disease', 1), ('prematurity', 1), ('rop', 1), ('diabetic', 1), ('dr', 1), ('macular', 1), ('edema', 1), ('different', 1), ('acquisition', 1), ('device', 1), ('task', 1)]
[('feature', 2), ('compendium', 1), ('focus', 1), ('self', 1), ('contained', 1), ('presentation', 1), ('various', 1), ('development', 1), ('mathematical', 1), ('analysis', 1), ('cryptography', 1), ('information', 1), ('science', 1), ('volume', 1), ('original', 1), ('research', 1), ('survey', 1), ('paper', 1), ('contributed', 1), ('expert', 1), ('international', 1), ('community', 1), ('book', 1), ('strong', 1), ('interdisciplinary', 1), ('flavor', 1), ('recent', 1)]
[('linear', 2), ('algebra', 2), ('updated', 1), ('compendium', 1), ('provides', 1), ('background', 1), ('necessary', 1), ('understand', 1), ('develop', 1), ('application', 1), ('data', 1), ('mining', 1), ('machine', 1), ('learning', 1), ('basic', 1), ('knowledge', 1), ('advanced', 1), ('new', 1), ('topic', 1), ('spectral', 1), ('theory', 1), ('singular', 1), ('value', 1), ('decomposition', 1), ('technique', 1), ('matrix', 1), ('tensor', 1), ('multidimensional', 1), ('array', 1), ('presented', 1), ('together', 1)]
[('juxtaposition', 1), ('machine', 1), ('learning', 1), ('pure', 1), ('mathematics', 1), ('theoretical', 1), ('physic', 1), ('first', 1), ('appear', 1), ('contradictory', 1), ('term', 1), ('rigour', 1), ('proof', 1), ('derivation', 1), ('latter', 1), ('seem', 1), ('reside', 1), ('different', 1), ('world', 1), ('randomness', 1), ('data', 1), ('statistic', 1), ('former', 1), ('yet', 1), ('often', 1), ('appreciated', 1), ('component', 1), ('mathematical', 1), ('discovery', 1)]
[('data', 4), ('simulation', 4), ('dd', 2), ('comprehensive', 1), ('book', 1), ('systematically', 1), ('introduces', 1), ('dynamic', 1), ('driven', 1), ('new', 1), ('paradigm', 1), ('make', 1), ('real', 1), ('time', 1), ('model', 1), ('work', 1), ('together', 1), ('enable', 1), ('based', 1), ('prediction', 1), ('analysis', 1), ('text', 1), ('significantly', 1), ('dedicated', 1), ('introducing', 1), ('assimilation', 1), ('enabling', 1), ('technique', 1)]
[('deep', 2), ('learning', 2), ('real', 2), ('book', 1), ('proposes', 1), ('various', 1), ('model', 1), ('featuring', 1), ('algorithm', 1), ('applied', 1), ('used', 1), ('life', 1), ('setting', 1), ('complexity', 1), ('world', 1), ('scenario', 1), ('constraint', 1), ('imposed', 1), ('environment', 1), ('together', 1), ('budgetary', 1), ('resource', 1), ('limitation', 1), ('posed', 1), ('challenge', 1), ('engineer', 1), ('developer', 1), ('alike', 1), ('come', 1)]
[('point', 2), ('volume', 1), ('feature', 1), ('extensive', 1), ('account', 1), ('research', 1), ('expository', 1), ('paper', 1), ('wide', 1), ('area', 1), ('engineering', 1), ('mathematics', 1), ('various', 1), ('application', 1), ('topic', 1), ('treated', 1), ('within', 1), ('book', 1), ('include', 1), ('optimization', 1), ('control', 1), ('game', 1), ('theory', 1), ('equilibrium', 1), ('algorithm', 1), ('cartan', 1), ('matrix', 1), ('integral', 1), ('inequality', 1), ('volterra', 1), ('integro', 1), ('differential', 1)]
[('experimental', 2), ('unique', 1), ('collection', 1), ('introduces', 1), ('ai', 1), ('machine', 1), ('learning', 1), ('ml', 1), ('deep', 1), ('neural', 1), ('network', 1), ('technology', 1), ('leading', 1), ('scientific', 1), ('discovery', 1), ('datasets', 1), ('generated', 1), ('supercomputer', 1), ('simulation', 1), ('modern', 1), ('facility', 1), ('huge', 1), ('quantity', 1), ('data', 1), ('come', 1), ('many', 1), ('source', 1), ('telescope', 1), ('satellite', 1), ('gene', 1), ('sequencer', 1)]
[('quantum', 3), ('computing', 3), ('machine', 2), ('learning', 2), ('neuromorphic', 2), ('compendium', 1), ('brings', 1), ('together', 1), ('field', 1), ('provides', 1), ('elementary', 1), ('introduction', 1), ('student', 1), ('researcher', 1), ('interested', 1), ('basic', 1), ('possibility', 1), ('using', 1), ('device', 1), ('pattern', 1), ('recognition', 1), ('bayesian', 1)]
[('ai', 2), ('current', 1), ('era', 1), ('society', 1), ('grown', 1), ('increasingly', 1), ('reliant', 1), ('artificial', 1), ('intelligence', 1), ('technology', 1), ('potential', 1), ('drive', 1), ('towards', 1), ('future', 1), ('humanity', 1), ('flourish', 1), ('come', 1), ('substantial', 1), ('risk', 1), ('oppression', 1), ('calamity', 1), ('response', 1), ('researcher', 1), ('organization', 1), ('working', 1), ('publish', 1)]
[('system', 2), ('msbse', 2), ('mbse', 2), ('modeling', 1), ('simulation', 1), ('based', 1), ('engineering', 1), ('extension', 1), ('enhances', 1), ('value', 1), ('ability', 1), ('digitally', 1), ('evaluating', 1), ('optimizing', 1), ('whole', 1), ('comprehensive', 1), ('application', 1), ('technology', 1), ('book', 1), ('put', 1), ('together', 1), ('recent', 1), ('research', 1), ('hopefully', 1), ('provide', 1)]
[('fibonacci', 3), ('cube', 3), ('research', 2), ('extremely', 1), ('popular', 1), ('area', 1), ('unique', 1), ('compendium', 1), ('feature', 1), ('state', 1), ('expands', 1), ('knowledge', 1), ('graph', 1), ('theoretic', 1), ('combinatorial', 1), ('property', 1), ('variant', 1), ('highlighting', 1), ('various', 1), ('approach', 1), ('numerous', 1), ('example', 1), ('provides', 1)]
[('fintech', 3), ('book', 2), ('aim', 1), ('provide', 1), ('insight', 1), ('latest', 1), ('development', 1), ('financial', 1), ('technology', 1), ('collection', 1), ('scientific', 1), ('article', 1), ('covering', 1), ('primary', 1), ('area', 1), ('finance', 1), ('following', 1), ('key', 1), ('theme', 1), ('covered', 1), ('machine', 1), ('learning', 1), ('artificial', 1), ('intelligence', 1), ('regulation', 1), ('smart', 1), ('contract', 1), ('cryptocurrencies', 1)]
[('big', 4), ('data', 4), ('everyone', 1), ('already', 1), ('era', 1), ('gradually', 1), ('changing', 1), ('lifestyle', 1), ('necessary', 1), ('explore', 1), ('development', 1), ('path', 1), ('balance', 1), ('relationship', 1), ('technology', 1), ('policy', 1), ('market', 1), ('better', 1), ('serve', 1), ('human', 1), ('society', 1), ('comprehensive', 1), ('book', 1), ('introduces', 1), ('processing', 1)]
[('decision', 3), ('intelligence', 2), ('good', 1), ('smart', 1), ('distinguished', 1), ('wise', 1), ('making', 1), ('especially', 1), ('age', 1), ('artificial', 1), ('ai', 1), ('algorithm', 1), ('increasingly', 1), ('used', 1), ('automate', 1), ('business', 1), ('process', 1), ('augment', 1), ('accuracy', 1), ('speed', 1), ('book', 1), ('argues', 1), ('specific', 1), ('form', 1), ('consciousness', 1), ('enhanced', 1)]
[('digital', 3), ('forensics', 2), ('computing', 2), ('deal', 1), ('investigation', 1), ('cybercrime', 1), ('growing', 1), ('deployment', 1), ('cloud', 1), ('mobile', 1), ('banking', 1), ('internet', 1), ('nature', 1), ('evolved', 1), ('recent', 1), ('year', 1), ('continue', 1), ('near', 1), ('future', 1), ('book', 1), ('present', 1), ('state', 1), ('art', 1), ('technique', 1), ('address', 1), ('imminent', 1)]
[('artificial', 1), ('intelligence', 1), ('ai', 1), ('seen', 1), ('rapid', 1), ('advancement', 1), ('recent', 1), ('year', 1), ('particularly', 1), ('area', 1), ('deep', 1), ('learning', 1), ('ability', 1), ('generalize', 1), ('concrete', 1), ('object', 1), ('abstract', 1), ('concept', 1), ('meanwhile', 1), ('study', 1), ('machine', 1), ('consciousness', 1), ('universally', 1), ('agreed', 1), ('definition', 1), ('among', 1), ('scientist', 1), ('philosopher', 1), ('still', 1), ('lacking', 1), ('book', 1), ('raise', 1)]
[('financial', 2), ('recent', 1), ('year', 1), ('information', 1), ('technology', 1), ('mobile', 1), ('payment', 1), ('search', 1), ('engine', 1), ('cloud', 1), ('computing', 1), ('internet', 1), ('finance', 1), ('developed', 1), ('rapidly', 1), ('greatly', 1), ('impacted', 1), ('structure', 1), ('market', 1), ('set', 1), ('bring', 1), ('deep', 1), ('change', 1), ('global', 1), ('industry', 1), ('time', 1), ('advent', 1), ('digital', 1), ('economy', 1), ('brought', 1)]
[('gaming', 2), ('social', 2), ('volume', 1), ('offer', 1), ('latest', 1), ('research', 1), ('finding', 1), ('online', 1), ('form', 1), ('identification', 1), ('gender', 1), ('issue', 1), ('game', 1), ('change', 1), ('primarily', 1), ('applying', 1), ('scientific', 1), ('approach', 1)]
[('audience', 2), ('comedy', 2), ('book', 1), ('examines', 1), ('response', 1), ('tv', 1), ('film', 1), ('web', 1), ('posted', 1), ('online', 1), ('facility', 1), ('twitter', 1), ('facebook', 1), ('review', 1), ('site', 1), ('blog', 1), ('message', 1), ('board', 1), ('bore', 1), ('demonstrates', 1), ('way', 1), ('adapt', 1), ('theory', 1), ('humour', 1), ('examine', 1), ('practice', 1), ('contemporary', 1), ('screen', 1), ('offering', 1), ('new', 1), ('insight', 1)]
[('empirical', 1), ('study', 1), ('book', 1), ('explore', 1), ('implication', 1), ('new', 1), ('digital', 1), ('condition', 1), ('way', 1), ('digitally', 1), ('mediated', 1), ('social', 1), ('interaction', 1), ('practice', 1), ('environment', 1), ('shape', 1), ('everyday', 1), ('participation', 1), ('engagement', 1), ('protest', 1), ('subjective', 1), ('societal', 1), ('meaning', 1)]
[('feminist', 2), ('book', 1), ('explores', 1), ('practice', 1), ('teenage', 1), ('girl', 1), ('actively', 1), ('maintain', 1), ('blog', 1), ('participate', 1), ('blogosphere', 1), ('reader', 1), ('writer', 1), ('commenters', 1), ('variety', 1), ('platform', 1), ('including', 1), ('blogspot', 1), ('facebook', 1), ('twitter', 1), ('tumblr', 1)]
[('website', 2), ('improve', 2), ('speed', 2), ('faster', 1), ('offer', 1), ('better', 1), ('user', 1), ('experience', 1), ('typically', 1), ('higher', 1), ('conversion', 1), ('rate', 1), ('challenging', 1), ('know', 1), ('invest', 1), ('meaningfully', 1), ('investing', 1), ('correctly', 1), ('start', 1), ('understanding', 1)]
[('organization', 2), ('value', 2), ('book', 1), ('help', 1), ('learn', 1), ('importance', 1), ('treating', 1), ('enterprise', 1), ('cyber', 1), ('risk', 1), ('management', 1), ('ecrm', 1), ('creator', 1), ('business', 1), ('enabler', 1), ('mechanism', 1), ('create', 1), ('competitive', 1), ('advantage', 1), ('began', 1), ('see', 1), ('real', 1)]
[('game', 4), ('video', 2), ('godot', 2), ('engine', 2), ('programming', 2), ('create', 1), ('element', 1), ('using', 1), ('gaining', 1), ('practical', 1), ('experience', 1), ('development', 1), ('us', 1), ('simplified', 1), ('language', 1), ('called', 1), ('gdscript', 1), ('closely', 1), ('resembles', 1), ('python', 1)]
[('database', 2), ('task', 2), ('lt', 1), ('div', 1), ('gt', 1), ('master', 1), ('oracle', 1), ('administration', 1), ('premise', 1), ('cloud', 1), ('environment', 1), ('new', 1), ('edition', 1), ('cover', 1), ('need', 1), ('perform', 1), ('keep', 1), ('stable', 1), ('tuned', 1), ('running', 1), ('book', 1), ('includes', 1), ('administrative', 1)]
[('blackberry', 2), ('skill', 2), ('set', 2), ('device', 1), ('application', 1), ('selling', 1), ('million', 1), ('developer', 1), ('need', 1), ('advanced', 1), ('successfully', 1), ('exploit', 1), ('compelling', 1), ('feature', 1), ('platform', 1), ('book', 1), ('help', 1), ('develop', 1)]
[('flash', 3), ('platform', 1), ('changing', 1), ('builder', 1), ('catalyst', 1), ('brought', 1), ('new', 1), ('separation', 1), ('design', 1), ('coding', 1), ('web', 1), ('development', 1), ('enables', 1), ('efficient', 1), ('streamlined', 1), ('workflow', 1), ('designer', 1), ('developer', 1), ('used', 1), ('close', 1)]
[('catalyst', 2), ('book', 1), ('offer', 1), ('introduction', 1), ('flash', 1), ('designer', 1), ('intermediate', 1), ('advanced', 1), ('skill', 1), ('discus', 1), ('sits', 1), ('within', 1), ('production', 1), ('process', 1), ('communicates', 1), ('program', 1), ('cover', 1), ('feature', 1)]
[('book', 1), ('help', 1), ('quickly', 1), ('learn', 1), ('program', 1), ('microcontrollers', 1), ('iot', 1), ('device', 1), ('without', 1), ('lot', 1), ('study', 1), ('expense', 1), ('nbsp', 1), ('micropython', 1), ('controller', 1), ('support', 1), ('eliminate', 1), ('need', 1), ('programming', 1), ('language', 1), ('making', 1), ('creation', 1)]
[('spring', 2), ('application', 2), ('book', 1), ('teach', 1), ('use', 1), ('framework', 1), ('build', 1), ('java', 1), ('based', 1), ('web', 1), ('microservices', 1), ('aimed', 1), ('beginner', 1), ('revised', 1), ('expanded', 1), ('reflect', 1), ('latest', 1), ('feature', 1), ('best', 1), ('practice', 1)]
[('percent', 2), ('everyone', 1), ('deserves', 1), ('use', 1), ('internet', 1), ('estimated', 1), ('billion', 1), ('experience', 1), ('significant', 1), ('disability', 1), ('world', 1), ('population', 1), ('six', 1), ('time', 1), ('million', 1), ('popular', 1), ('website', 1)]
[('microsoft', 2), ('learn', 1), ('explore', 1), ('capability', 1), ('fabric', 1), ('latest', 1), ('evolution', 1), ('cloud', 1), ('analytics', 1), ('suite', 1), ('book', 1), ('help', 1), ('understand', 1), ('user', 1), ('leverage', 1), ('office', 1), ('equivalent', 1), ('experience', 1), ('performing', 1), ('data', 1), ('management', 1), ('advanced', 1)]
[('embark', 1), ('comprehensive', 1), ('journey', 1), ('intricate', 1), ('world', 1), ('infrastructure', 1), ('depth', 1), ('look', 1), ('transformational', 1), ('role', 1), ('secure', 1), ('private', 1), ('data', 1), ('center', 1), ('today', 1), ('digital', 1), ('era', 1), ('exploration', 1), ('uncovers', 1), ('multi', 1), ('faceted', 1), ('domain', 1)]
[('software', 2), ('creating', 1), ('inclusive', 1), ('environment', 1), ('different', 1), ('developer', 1), ('feel', 1), ('welcome', 1), ('leverage', 1), ('talent', 1), ('ethical', 1), ('imperative', 1), ('company', 1), ('ignore', 1), ('indeed', 1), ('organization', 1), ('last', 1), ('decade', 1), ('trying', 1), ('make', 1), ('change', 1)]
[('selenium', 2), ('webdriver', 2), ('problem', 2), ('solve', 1), ('quick', 1), ('guide', 1), ('automated', 1), ('testing', 1), ('web', 1), ('application', 1), ('third', 1), ('edition', 1), ('contains', 1), ('hundred', 1), ('solution', 1), ('real', 1), ('world', 1), ('clear', 1), ('explanation', 1), ('ready', 1), ('run', 1)]
[('book', 2), ('social', 2), ('networking', 2), ('heck', 1), ('facebook', 1), ('twitter', 1), ('blogging', 1), ('answer', 1), ('question', 1), ('explains', 1), ('use', 1), ('variety', 1), ('site', 1), ('keep', 1), ('touch', 1), ('stay', 1), ('business', 1), ('fun', 1), ('cover', 1), ('main', 1), ('space', 1)]
[('looking', 1), ('extend', 1), ('io', 1), ('programming', 1), ('skill', 1), ('beyond', 1), ('basic', 1), ('iphone', 1), ('development', 1), ('objective', 1), ('author', 1), ('dave', 1), ('mark', 1), ('jayant', 1), ('varma', 1), ('jeff', 1), ('lamarche', 1), ('alex', 1), ('horovitz', 1), ('kevin', 1), ('kim', 1), ('explain', 1), ('concept', 1)]
[('solution', 2), ('problem', 2), ('quickly', 1), ('discover', 1), ('common', 1), ('best', 1), ('practice', 1), ('follow', 1), ('everything', 1), ('javascript', 1), ('offer', 1), ('using', 1), ('approach', 1), ('book', 1), ('take', 1), ('language', 1), ('basic', 1), ('built', 1), ('object', 1), ('flow', 1), ('control', 1), ('way', 1)]
[('robot', 2), ('lego', 2), ('building', 1), ('snap', 1), ('technic', 1), ('robotics', 1), ('book', 1), ('show', 1), ('use', 1), ('brick', 1), ('power', 1), ('function', 1), ('component', 1), ('motor', 1), ('remote', 1), ('control', 1), ('create', 1), ('kind', 1), ('best', 1), ('rsquo', 1), ('learn', 1)]
[('ejb', 2), ('develop', 1), ('powerful', 1), ('standard', 1), ('based', 1), ('back', 1), ('end', 1), ('business', 1), ('logic', 1), ('beginning', 1), ('java', 1), ('ee', 1), ('edition', 1), ('led', 1), ('author', 1), ('team', 1), ('year', 1), ('combined', 1), ('enterprise', 1), ('javabeans', 1), ('experience', 1), ('learn', 1), ('use', 1), ('new', 1), ('apis', 1), ('gain', 1)]
[('corona', 3), ('game', 3), ('sdk', 2), ('app', 2), ('development', 2), ('learn', 2), ('popular', 1), ('mobile', 1), ('platform', 1), ('world', 1), ('walk', 1), ('creating', 1), ('full', 1), ('featured', 1), ('scratch', 1), ('store', 1), ('lua', 1), ('basic', 1)]
[('nuget', 2), ('pro', 1), ('give', 1), ('solid', 1), ('practical', 1), ('understanding', 1), ('keep', 1), ('software', 1), ('dependency', 1), ('control', 1), ('best', 1), ('practice', 1), ('developed', 1), ('within', 1), ('community', 1), ('ensure', 1), ('long', 1), ('term', 1), ('reliability', 1), ('whether', 1), ('working', 1)]
[('android', 3), ('mobile', 2), ('development', 2), ('continues', 1), ('leading', 1), ('o', 1), ('platform', 1), ('driving', 1), ('today', 1), ('innovation', 1), ('apps', 1), ('ecosystem', 1), ('appears', 1), ('complex', 1), ('offer', 1), ('variety', 1), ('organized', 1), ('kit', 1), ('coming', 1)]
[('friend', 1), ('ed', 1)]
[('step', 2), ('common', 1), ('popular', 1), ('us', 1), ('adobe', 1), ('photoshop', 1), ('element', 1), ('brought', 1), ('together', 1), ('volume', 1), ('section', 1), ('provides', 1), ('useful', 1), ('guide', 1), ('technique', 1), ('summary', 1), ('tool', 1), ('used', 1), ('several', 1), ('project', 1), ('clearly', 1), ('demonstrate', 1)]
[('oracle', 2), ('database', 2), ('security', 2), ('protecting', 1), ('help', 1), ('solve', 1), ('problem', 1), ('maximizing', 1), ('safety', 1), ('resilience', 1), ('whilst', 1), ('preserving', 1), ('performance', 1), ('availability', 1), ('integration', 1), ('despite', 1), ('ongoing', 1), ('new', 1), ('issue', 1)]
[('web', 2), ('developer', 1), ('designer', 1), ('wish', 1), ('reference', 1), ('information', 1), ('need', 1), ('job', 1), ('handy', 1), ('sized', 1), ('book', 1), ('rather', 1), ('carry', 1), ('around', 1), ('several', 1), ('large', 1), ('tome', 1), ('browse', 1), ('countless', 1), ('site', 1), ('look', 1)]
[('friend', 1), ('ed', 1)]
[('android', 3), ('started', 1), ('creating', 1), ('marketable', 1), ('apps', 1), ('burgeoning', 1), ('market', 1), ('begin', 1), ('journey', 1), ('learning', 1), ('essential', 1), ('programming', 1), ('phone', 1), ('table', 1), ('built', 1), ('around', 1), ('google', 1), ('wildly', 1), ('successful', 1), ('platform', 1), ('beginning', 1)]
[('step', 4), ('using', 3), ('window', 2), ('essential', 1), ('guide', 1), ('computer', 1), ('running', 1), ('providing', 1), ('complete', 1), ('resource', 1), ('beginner', 1), ('enthusiast', 1), ('technique', 1), ('illustrated', 1), ('photography', 1), ('screen', 1), ('print', 1)]
[('pi', 3), ('raspberry', 2), ('linux', 2), ('lt', 2), ('em', 2), ('gt', 2), ('boot', 2), ('unique', 1), ('flavor', 1), ('specifically', 1), ('arm', 1), ('based', 1), ('software', 1), ('reference', 1), ('guide', 1), ('process', 1), ('including', 1), ('option', 1), ('tweaking', 1), ('hdmi', 1), ('memory', 1)]
[('lt', 4), ('gt', 4), ('matlab', 2), ('high', 1), ('level', 1), ('language', 1), ('environment', 1), ('numerical', 1), ('computation', 1), ('visualization', 1), ('programming', 1), ('using', 1), ('analyze', 1), ('data', 1), ('develop', 1), ('algorithm', 1), ('create', 1), ('model', 1), ('application', 1)]
[('node', 2), ('j', 2), ('step', 2), ('web', 2), ('practical', 1), ('guide', 1), ('learning', 1), ('build', 1), ('wide', 1), ('range', 1), ('scalable', 1), ('real', 1), ('world', 1), ('application', 1), ('using', 1), ('professional', 1), ('development', 1), ('toolkit', 1), ('innovative', 1), ('highly', 1), ('efficient', 1), ('platform', 1), ('creating', 1), ('service', 1)]
[('android', 3), ('studio', 3), ('cover', 2), ('tool', 2), ('git', 2), ('gradle', 2), ('book', 2), ('learn', 1), ('rich', 1), ('ecosystem', 1), ('including', 1), ('work', 1), ('seamlessly', 1), ('source', 1), ('control', 1), ('build', 1), ('test', 1), ('addition', 1)]
[('office', 3), ('step', 2), ('learn', 1), ('easy', 1), ('way', 1), ('jargon', 1), ('clear', 1), ('concise', 1), ('point', 1), ('using', 1), ('essential', 1), ('guide', 1), ('getting', 1), ('microsoft', 1), ('traditional', 1), ('application', 1), ('sharepoint', 1), ('providing', 1), ('resource', 1)]
[('net', 3), ('advanced', 1), ('il', 1), ('assembler', 1), ('acomprehensive', 1), ('drill', 1), ('inner', 1), ('working', 1), ('framework', 1), ('acknowledged', 1), ('runtime', 1), ('expert', 1), ('microsoft', 1), ('insider', 1), ('serge', 1), ('lidin', 1), ('step', 1), ('theinternal', 1), ('structure', 1), ('operation', 1), ('take', 1), ('place', 1)]
[('unity', 3), ('game', 2), ('absolute', 1), ('beginner', 1), ('walk', 1), ('fundamental', 1), ('creating', 1), ('small', 1), ('third', 1), ('person', 1), ('shooter', 1), ('using', 1), ('free', 1), ('version', 1), ('begin', 1), ('development', 1), ('career', 1), ('learn', 1), ('import', 1), ('evaluate', 1), ('manage', 1)]
[('fedora', 3), ('desktop', 3), ('beginning', 1), ('edition', 1), ('complete', 1), ('guide', 1), ('using', 1), ('linux', 1), ('release', 1), ('daily', 1), ('driver', 1), ('multimedia', 1), ('productivity', 1), ('social', 1), ('networking', 1), ('gnome', 1), ('administrative', 1), ('task', 1), ('author', 1)]
[('window', 3), ('development', 2), ('emphasizing', 1), ('xaml', 1), ('book', 1), ('provides', 1), ('reader', 1), ('tool', 1), ('idea', 1), ('inspiration', 1), ('begin', 1), ('universal', 1), ('app', 1), ('real', 1), ('world', 1), ('address', 1), ('developer', 1), ('want', 1), ('break', 1)]
[('database', 3), ('pragmatic', 2), ('approach', 2), ('system', 2), ('nbsp', 2), ('learn', 1), ('concept', 1), ('principle', 1), ('design', 1), ('implementation', 1), ('management', 1), ('issue', 1), ('adopt', 1), ('methodical', 1), ('solving', 1), ('problem', 1), ('provides', 1)]
[('container', 2), ('sql', 2), ('server', 2), ('introduced', 1), ('world', 1), ('docker', 1), ('dba', 1), ('perspective', 1), ('book', 1), ('explains', 1), ('technology', 1), ('improve', 1), ('deployment', 1), ('database', 1), ('without', 1), ('infrastructure', 1), ('lock', 1), ('equipped', 1)]
[('lt', 2), ('gt', 2), ('data', 2), ('div', 1), ('learn', 1), ('use', 1), ('technology', 1), ('undertake', 1), ('science', 1), ('leverage', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('experimentation', 1), ('designed', 1), ('take', 1), ('fascinating', 1), ('journey', 1), ('book', 1), ('introduces', 1), ('core', 1), ('concept', 1), ('modern', 1)]
[('digital', 2), ('use', 1), ('hand', 1), ('guide', 1), ('understand', 1), ('growing', 1), ('complex', 1), ('world', 1), ('security', 1), ('learn', 1), ('protect', 1), ('crime', 1), ('secure', 1), ('communication', 1), ('become', 1), ('anonymous', 1), ('online', 1), ('using', 1), ('sophisticated', 1), ('yet', 1), ('practical', 1), ('tool', 1)]
[('time', 2), ('series', 2), ('nbsp', 2), ('learn', 1), ('concept', 1), ('traditional', 1), ('bleeding', 1), ('edge', 1), ('technique', 1), ('book', 1), ('us', 1), ('comprehensive', 1), ('example', 1), ('clearly', 1), ('illustrate', 1), ('statistical', 1), ('approach', 1), ('method', 1), ('analyzing', 1), ('data', 1), ('utilization', 1), ('real', 1)]
[('office', 2), ('bring', 1), ('mixed', 1), ('reality', 1), ('workplace', 1), ('building', 1), ('immersive', 1), ('experience', 1), ('using', 1), ('data', 1), ('content', 1), ('platform', 1), ('imagine', 1), ('able', 1), ('sit', 1), ('desk', 1), ('surround', 1), ('chart', 1), ('showing', 1), ('work', 1), ('relationship', 1)]
[('command', 2), ('line', 2), ('client', 2), ('step', 2), ('learn', 1), ('everything', 1), ('make', 1), ('git', 1), ('npm', 1), ('successful', 1), ('compose', 1), ('best', 1), ('book', 1), ('concise', 1), ('guide', 1), ('writing', 1), ('node', 1), ('j', 1), ('amp', 1), ('nbsp', 1), ('lt', 1), ('gt', 1), ('start', 1)]
[('lt', 7), ('gt', 7), ('div', 5), ('arduino', 2), ('raspberry', 2), ('pi', 2), ('br', 2), ('leverage', 1), ('skill', 1), ('world', 1), ('see', 1), ('cross', 1), ('platform', 1), ('sophisticated', 1), ('program', 1), ('community', 1), ('overlap', 1)]
[('understand', 1), ('fundamental', 1), ('factor', 1), ('data', 1), ('storage', 1), ('system', 1), ('performance', 1), ('master', 1), ('essential', 1), ('analytical', 1), ('skill', 1), ('using', 1), ('block', 1), ('trace', 1), ('via', 1), ('application', 1), ('matlab', 1), ('python', 1), ('tool', 1), ('increase', 1), ('productivity', 1), ('learn', 1), ('best', 1), ('technique', 1)]
[('linux', 3), ('availability', 3), ('high', 2), ('clustering', 2), ('pro', 1), ('teach', 1), ('implement', 1), ('fundamental', 1), ('add', 1), ('business', 1), ('needed', 1), ('ensure', 1), ('mission', 1), ('critical', 1), ('resource', 1), ('technique', 1), ('applied', 1)]
[('book', 2), ('framework', 2), ('page', 1), ('find', 1), ('stripe', 1), ('provides', 1), ('simple', 1), ('learning', 1), ('path', 1), ('need', 1), ('understand', 1), ('entire', 1), ('order', 1), ('use', 1), ('concept', 1), ('exactly', 1), ('ndash', 1), ('using', 1)]
[('data', 3), ('database', 2), ('book', 1), ('cover', 1), ('practical', 1), ('aspect', 1), ('design', 1), ('cleansing', 1), ('analysis', 1), ('protection', 1), ('among', 1), ('others', 1), ('focus', 1), ('really', 1), ('need', 1), ('know', 1), ('create', 1), ('right', 1), ('small', 1), ('business', 1), ('leverage', 1)]
[('lt', 3), ('gt', 3), ('scribus', 3), ('designer', 2), ('beginning', 1), ('book', 1), ('wish', 1), ('downloaded', 1), ('first', 1), ('time', 1), ('award', 1), ('winning', 1), ('page', 1), ('layout', 1), ('program', 1), ('used', 1), ('newspaper', 1), ('magazine', 1), ('want', 1)]
[('user', 2), ('group', 2), ('book', 1), ('starting', 1), ('sustaining', 1), ('technology', 1), ('wonderful', 1), ('way', 1), ('connect', 1), ('local', 1), ('minded', 1), ('professional', 1), ('networking', 1), ('learning', 1), ('forum', 1), ('social', 1), ('medium', 1), ('internet', 1), ('replace', 1)]
[('python', 2), ('data', 2), ('analytics', 1), ('help', 1), ('tackle', 1), ('world', 1), ('acquisition', 1), ('analysis', 1), ('using', 1), ('power', 1), ('language', 1), ('heart', 1), ('book', 1), ('lie', 1), ('coverage', 1), ('panda', 1), ('open', 1), ('source', 1), ('bsd', 1), ('licensed', 1), ('library', 1), ('providing', 1), ('high', 1), ('performance', 1)]
[('new', 3), ('window', 2), ('beginning', 1), ('take', 1), ('feature', 1), ('amazing', 1), ('operating', 1), ('system', 1), ('revealing', 1), ('surprising', 1), ('capability', 1), ('helping', 1), ('customize', 1), ('suit', 1), ('whether', 1), ('want', 1), ('speed', 1)]
[('lt', 5), ('gt', 5), ('window', 3), ('development', 2), ('em', 2), ('emphasizing', 1), ('xaml', 1), ('book', 1), ('provides', 1), ('reader', 1), ('tool', 1), ('idea', 1), ('inspiration', 1), ('begin', 1), ('universal', 1), ('app', 1), ('real', 1), ('world', 1)]
[('oracle', 2), ('apex', 2), ('whether', 1), ('new', 1), ('old', 1), ('hand', 1), ('yet', 1), ('test', 1), ('water', 1), ('beginning', 1), ('application', 1), ('express', 1), ('introduces', 1), ('process', 1), ('best', 1), ('practice', 1), ('need', 1), ('become', 1), ('proficient', 1), ('book', 1), ('show', 1), ('programming', 1)]
[('checkout', 2), ('payment', 2), ('request', 2), ('api', 2), ('lt', 1), ('gt', 1), ('quickly', 1), ('create', 1), ('consistent', 1), ('use', 1), ('within', 1), ('website', 1), ('using', 1), ('power', 1), ('html', 1), ('project', 1), ('oriented', 1), ('book', 1), ('simplifies', 1), ('process', 1), ('creating', 1), ('manipulating', 1)]
[('enrich', 1), ('software', 1), ('design', 1), ('skill', 1), ('take', 1), ('guided', 1), ('tour', 1), ('wild', 1), ('vast', 1), ('untamed', 1), ('frontier', 1), ('javascript', 1), ('development', 1), ('especially', 1), ('useful', 1), ('frontend', 1), ('developer', 1), ('revision', 1), ('includes', 1), ('specific', 1), ('chapter', 1), ('react', 1), ('vuejs', 1)]
[('lt', 3), ('gt', 3), ('upon', 2), ('virtual', 2), ('manage', 1), ('complex', 1), ('system', 1), ('ease', 1), ('equip', 1), ('new', 1), ('career', 1), ('book', 1), ('build', 1), ('skill', 1), ('learned', 1), ('volume', 1), ('course', 1), ('depends', 1), ('network', 1), ('machine', 1)]
[('become', 1), ('better', 1), ('productive', 1), ('programmer', 1), ('series', 1), ('project', 1), ('help', 1), ('deeply', 1), ('understand', 1), ('master', 1), ('design', 1), ('pattern', 1), ('covered', 1), ('book', 1), ('learn', 1), ('write', 1), ('elegant', 1), ('pythonic', 1), ('code', 1), ('solve', 1), ('common', 1), ('programming', 1)]
[('designing', 3), ('sketch', 3), ('io', 2), ('take', 1), ('process', 1), ('app', 1), ('using', 1), ('bohemian', 1), ('code', 1), ('powerful', 1), ('new', 1), ('design', 1), ('program', 1), ('quickly', 1), ('replacing', 1), ('adobe', 1), ('photoshop', 1), ('many', 1), ('designer', 1), ('mobile', 1), ('apps', 1)]
[('lt', 4), ('div', 4), ('gt', 4), ('data', 3), ('science', 2), ('look', 1), ('python', 1), ('point', 1), ('view', 1), ('learn', 1), ('proven', 1), ('technique', 1), ('visualization', 1), ('used', 1), ('making', 1), ('critical', 1), ('business', 1), ('decision', 1), ('starting', 1), ('introduction', 1)]
[('object', 2), ('show', 2), ('lt', 1), ('div', 1), ('gt', 1), ('brief', 1), ('amp', 1), ('nbsp', 1), ('book', 1), ('explains', 1), ('advantage', 1), ('model', 1), ('inheritance', 1), ('classical', 1), ('prototypical', 1), ('concept', 1), ('implemented', 1), ('javascript', 1), ('programming', 1), ('op', 1), ('open', 1), ('new', 1)]
[('sql', 3), ('query', 2), ('database', 2), ('lt', 1), ('gt', 1), ('beginning', 1), ('friendly', 1), ('easily', 1), ('guide', 1), ('writing', 1), ('important', 1), ('world', 1), ('language', 1), ('anyone', 1), ('work', 1), ('need', 1), ('know', 1), ('something', 1)]
[('lt', 1), ('div', 1), ('gt', 1), ('asyncio', 1), ('find', 1), ('solution', 1), ('troubling', 1), ('python', 1), ('programming', 1), ('problem', 1), ('book', 1), ('offer', 1), ('pragmatic', 1), ('collection', 1), ('recipe', 1), ('going', 1), ('beyond', 1), ('online', 1), ('resource', 1), ('doc', 1), ('provide', 1), ('guidance', 1), ('using', 1), ('complex', 1)]
[('user', 2), ('window', 2), ('find', 1), ('isolate', 1), ('understand', 1), ('solve', 1), ('problem', 1), ('encountered', 1), ('managing', 1), ('pc', 1), ('learn', 1), ('microsoft', 1), ('mvp', 1), ('many', 1), ('year', 1), ('experience', 1), ('supporting', 1), ('group', 1), ('policy', 1), ('issue', 1), ('book', 1), ('help', 1), ('face', 1)]
[('make', 1), ('website', 1), ('dynamic', 1), ('adding', 1), ('feedback', 1), ('form', 1), ('creating', 1), ('private', 1), ('area', 1), ('member', 1), ('upload', 1), ('image', 1), ('automatically', 1), ('resized', 1), ('storing', 1), ('content', 1), ('database', 1), ('david', 1), ('power', 1), ('updated', 1), ('definitive', 1), ('book', 1)]
[('jooq', 2), ('learn', 1), ('use', 1), ('library', 1), ('manage', 1), ('sql', 1), ('database', 1), ('operation', 1), ('java', 1), ('jvm', 1), ('application', 1), ('book', 1), ('walk', 1), ('install', 1), ('started', 1), ('get', 1), ('working', 1), ('practical', 1), ('example', 1), ('case', 1), ('study', 1)]
[('application', 3), ('apex', 2), ('learn', 1), ('many', 1), ('design', 1), ('decision', 1), ('made', 1), ('starting', 1), ('build', 1), ('large', 1), ('oracle', 1), ('express', 1), ('cloud', 1), ('enterprise', 1), ('key', 1), ('strength', 1), ('fact', 1), ('rapid', 1), ('development', 1), ('rad', 1)]
[('jakarta', 2), ('learn', 1), ('use', 1), ('persistence', 1), ('api', 1), ('related', 1), ('apis', 1), ('found', 1), ('ee', 1), ('platform', 1), ('perspective', 1), ('specification', 1), ('creator', 1), ('kind', 1), ('resource', 1), ('depth', 1), ('book', 1), ('provides', 1), ('theoretical', 1), ('practical', 1)]
[('devops', 2), ('application', 2), ('build', 2), ('chapter', 2), ('complete', 2), ('use', 1), ('principle', 1), ('google', 1), ('cloud', 1), ('platform', 1), ('gcp', 1), ('develop', 1), ('service', 1), ('book', 1), ('real', 1), ('life', 1), ('scenario', 1), ('explaining', 1), ('monitor', 1), ('maintain', 1), ('using', 1)]
[('design', 2), ('java', 2), ('grounding', 1), ('polymorphism', 1), ('fundamental', 1), ('aspect', 1), ('object', 1), ('oriented', 1), ('program', 1), ('implementation', 1), ('learn', 1), ('subset', 1), ('pattern', 1), ('practicing', 1), ('professional', 1), ('simply', 1), ('know', 1), ('today', 1), ('job', 1), ('climate', 1), ('nbsp', 1)]
[('understand', 1), ('separation', 1), ('layer', 1), ('tier', 1), ('service', 1), ('oriented', 1), ('architecture', 1), ('hold', 1), ('software', 1), ('developer', 1), ('back', 1), ('truly', 1), ('productive', 1), ('remedy', 1), ('problem', 1), ('nbsp', 1), ('strong', 1), ('process', 1), ('development', 1), ('tool', 1), ('help', 1)]
[('oracle', 2), ('write', 1), ('query', 1), ('using', 1), ('little', 1), ('known', 1), ('powerful', 1), ('sql', 1), ('feature', 1), ('implemented', 1), ('database', 1), ('engine', 1), ('able', 1), ('take', 1), ('advantage', 1), ('power', 1), ('implementing', 1), ('business', 1), ('logic', 1), ('thereby', 1), ('maximizing', 1), ('return', 1), ('company', 1), ('investment', 1)]
[('pulsar', 2), ('apply', 1), ('different', 1), ('enterprise', 1), ('integration', 1), ('processing', 1), ('strategy', 1), ('available', 1), ('apache', 1), ('multi', 1), ('tenant', 1), ('high', 1), ('performance', 1), ('cloud', 1), ('native', 1), ('messaging', 1), ('streaming', 1), ('platform', 1), ('book', 1), ('comprehensive', 1), ('guide', 1), ('examines', 1), ('using', 1), ('java', 1)]
[('net', 3), ('framework', 3), ('microsoft', 2), ('welcome', 1), ('unified', 1), ('converges', 1), ('best', 1), ('modern', 1), ('traditional', 1), ('book', 1), ('introduce', 1), ('new', 1), ('aspect', 1), ('fully', 1), ('supported', 1), ('teach', 1)]
[('lt', 3), ('gt', 3), ('machine', 2), ('learning', 2), ('examine', 1), ('latest', 1), ('technological', 1), ('advancement', 1), ('building', 1), ('scalable', 1), ('model', 1), ('big', 1), ('data', 1), ('using', 1), ('second', 1), ('edition', 1), ('show', 1), ('work', 1), ('algorithm', 1), ('use', 1), ('build', 1), ('ml', 1)]
[('stored', 3), ('sa', 2), ('process', 2), ('application', 2), ('customize', 1), ('web', 1), ('create', 1), ('amazing', 1), ('tool', 1), ('end', 1), ('user', 1), ('book', 1), ('show', 1), ('use', 1), ('program', 1), ('server', 1), ('executed', 1), ('required', 1), ('requesting', 1), ('never', 1)]
[('database', 2), ('administration', 2), ('right', 2), ('lt', 1), ('gt', 1), ('passing', 1), ('certified', 1), ('exam', 1), ('pointing', 1), ('clicking', 1), ('way', 1), ('crisis', 1), ('applying', 1), ('solution', 1), ('time', 1), ('avoiding', 1), ('risk', 1), ('making', 1), ('robust', 1)]
[('lt', 3), ('div', 3), ('gt', 3), ('woman', 3), ('conscious', 1), ('unconscious', 1), ('bias', 1), ('societal', 1), ('pressure', 1), ('discomfort', 1), ('ambition', 1), ('issue', 1), ('confronted', 1), ('male', 1), ('dominated', 1), ('setting', 1), ('tech', 1), ('exception', 1), ('statistically', 1)]
[('project', 2), ('lt', 1), ('div', 1), ('gt', 1), ('create', 1), ('car', 1), ('amp', 1), ('nbsp', 1), ('engine', 1), ('control', 1), ('unit', 1), ('ecu', 1), ('simple', 1), ('raspberry', 1), ('pi', 1), ('building', 1), ('necessary', 1), ('skill', 1), ('produce', 1), ('future', 1), ('advanced', 1), ('worked', 1), ('book', 1), ('smart', 1)]
[('sa', 2), ('programming', 2), ('learn', 2), ('python', 2), ('example', 2), ('business', 1), ('user', 1), ('familiar', 1), ('base', 1), ('via', 1), ('map', 1), ('construct', 1), ('coding', 1), ('pattern', 1), ('equivalent', 1), ('primary', 1), ('focus', 1), ('panda', 1), ('data', 1)]
[('lt', 4), ('gt', 4), ('java', 3), ('mvc', 2), ('started', 1), ('using', 1), ('new', 1), ('framework', 1), ('model', 1), ('view', 1), ('controller', 1), ('development', 1), ('building', 1), ('modern', 1), ('based', 1), ('web', 1), ('native', 1), ('microservices', 1), ('application', 1), ('amp', 1), ('nbsp', 1), ('beginning', 1)]
[('ai', 3), ('project', 2), ('lt', 1), ('div', 1), ('gt', 1), ('fastest', 1), ('growing', 1), ('corner', 1), ('tech', 1), ('world', 1), ('remains', 1), ('big', 1), ('problem', 1), ('many', 1), ('fail', 1), ('fact', 1), ('unique', 1), ('among', 1), ('technology', 1), ('requires', 1), ('different', 1), ('mindset', 1), ('term', 1)]
[('pi', 2), ('working', 2), ('gain', 1), ('skill', 1), ('required', 1), ('dive', 1), ('fundamental', 1), ('raspberry', 1), ('hardware', 1), ('architecture', 1), ('data', 1), ('stored', 1), ('memory', 1), ('book', 1), ('provides', 1), ('starting', 1), ('point', 1), ('project', 1), ('develop', 1)]
[('lt', 6), ('gt', 6), ('building', 2), ('using', 2), ('roll', 1), ('sleeve', 1), ('jump', 1), ('web', 1), ('application', 1), ('net', 1), ('core', 1), ('popular', 1), ('javascript', 1), ('framework', 1), ('br', 1), ('start', 1), ('data', 1), ('access', 1), ('layer', 1), ('entity', 1)]
[('microsoft', 2), ('pointer', 2), ('explore', 1), ('learn', 1), ('introductory', 1), ('topic', 1), ('programming', 1), ('mechanism', 1), ('memory', 1), ('management', 1), ('available', 1), ('window', 1), ('book', 1), ('us', 1), ('specialized', 1), ('apis', 1), ('smart', 1), ('standard', 1), ('library', 1), ('ucrt', 1)]
[('lt', 2), ('gt', 2), ('code', 2), ('hard', 2), ('div', 1), ('learn', 1), ('make', 1), ('better', 1), ('decision', 1), ('write', 1), ('cleaner', 1), ('ruby', 1), ('book', 1), ('show', 1), ('avoid', 1), ('messy', 1), ('test', 1), ('cripple', 1), ('productivity', 1), ('amp', 1), ('nbsp', 1), ('author', 1), ('carleton', 1), ('dileo', 1), ('share', 1), ('learned', 1), ('lesson', 1), ('gained', 1)]
[('pi', 2), ('ml', 2), ('lt', 1), ('gt', 1), ('using', 1), ('camera', 1), ('raspberry', 1), ('board', 1), ('expand', 1), ('replicate', 1), ('interesting', 1), ('machine', 1), ('learning', 1), ('experiment', 1), ('amp', 1), ('nbsp', 1), ('book', 1), ('provides', 1), ('solid', 1), ('overview', 1), ('myriad', 1), ('underlying', 1), ('topic', 1), ('explore', 1), ('non', 1), ('technical', 1)]
[('jakarta', 2), ('lt', 1), ('div', 1), ('gt', 1), ('learn', 1), ('use', 1), ('persistence', 1), ('api', 1), ('related', 1), ('apis', 1), ('found', 1), ('ee', 1), ('platform', 1), ('perspective', 1), ('specification', 1), ('creator', 1), ('kind', 1), ('resource', 1), ('depth', 1), ('book', 1), ('provides', 1), ('theoretical', 1)]
[('understanding', 2), ('radio', 2), ('communication', 1), ('system', 1), ('unlocks', 1), ('new', 1), ('way', 1), ('look', 1), ('world', 1), ('wave', 1), ('connect', 1), ('easy', 1), ('understand', 1), ('instruction', 1), ('variety', 1), ('hand', 1), ('project', 1), ('book', 1), ('give', 1), ('reader', 1), ('intuitive', 1)]
[('visual', 2), ('studio', 2), ('development', 2), ('discover', 1), ('improve', 1), ('process', 1), ('nbsp', 1), ('integral', 1), ('part', 1), ('daily', 1), ('life', 1), ('million', 1), ('developer', 1), ('worldwide', 1), ('even', 1), ('rich', 1), ('integrated', 1), ('environment', 1), ('approach', 1), ('decade', 1)]
[('asp', 2), ('net', 2), ('core', 2), ('api', 2), ('step', 2), ('nbsp', 2), ('use', 1), ('tutorial', 1), ('straightforward', 1), ('guide', 1), ('build', 1), ('test', 1), ('deploy', 1), ('azure', 1), ('help', 1), ('code', 1), ('confidently', 1), ('efficiently', 1), ('provides', 1), ('need', 1), ('context', 1), ('book', 1)]
[('sql', 5), ('performance', 1), ('oriented', 1), ('introduction', 1), ('language', 1), ('underlying', 1), ('microsoft', 1), ('server', 1), ('azure', 1), ('database', 1), ('engine', 1), ('fourth', 1), ('edition', 1), ('updated', 1), ('include', 1), ('notebook', 1), ('date', 1), ('syntax', 1), ('feature', 1)]
[('operation', 2), ('frontlines', 1), ('cybersecurity', 1), ('include', 1), ('many', 1), ('unfilled', 1), ('job', 1), ('exciting', 1), ('career', 1), ('opportunity', 1), ('transition', 1), ('security', 1), ('center', 1), ('soc', 1), ('analyst', 1), ('position', 1), ('start', 1), ('new', 1), ('path', 1), ('learn', 1), ('actively', 1), ('analyze', 1)]
[('window', 3), ('internet', 2), ('raspberry', 2), ('pi', 2), ('application', 2), ('manage', 1), ('control', 1), ('connected', 1), ('device', 1), ('master', 1), ('iot', 1), ('core', 1), ('programming', 1), ('interface', 1), ('feature', 1), ('set', 1), ('develop', 1), ('thing', 1), ('using', 1)]
[('react', 3), ('create', 2), ('chart', 2), ('show', 2), ('integrate', 1), ('j', 1), ('typescript', 1), ('project', 1), ('component', 1), ('working', 1), ('harmony', 1), ('nbsp', 1), ('book', 1), ('utilize', 1), ('bring', 1), ('life', 1), ('seasoned', 1), ('author', 1), ('elad', 1), ('elrom', 1)]
[('book', 2), ('succeed', 1), ('managing', 1), ('oracle', 1), ('application', 1), ('express', 1), ('apex', 1), ('environment', 1), ('focus', 1), ('creating', 1), ('right', 1), ('combination', 1), ('scalability', 1), ('high', 1), ('availability', 1), ('backup', 1), ('recovery', 1), ('integrity', 1), ('resource', 1), ('control', 1), ('cover', 1), ('everything', 1), ('simple', 1)]
[('healthcare', 2), ('learn', 1), ('ai', 1), ('impact', 1), ('ecosystem', 1), ('real', 1), ('life', 1), ('case', 1), ('study', 1), ('tensorflow', 1), ('machine', 1), ('learning', 1), ('ml', 1), ('library', 1), ('book', 1), ('begin', 1), ('explaining', 1), ('dynamic', 1), ('market', 1), ('including', 1), ('role', 1), ('stakeholder', 1)]
[('development', 2), ('automated', 2), ('apply', 1), ('principle', 1), ('devops', 1), ('software', 1), ('build', 1), ('test', 1), ('continuous', 1), ('deployment', 1), ('delivery', 1), ('io', 1), ('application', 1), ('amazon', 1), ('web', 1), ('service', 1), ('aws', 1), ('cloud', 1), ('book', 1), ('provides', 1), ('detailed', 1), ('walkthroughs', 1)]
[('firmware', 4), ('system', 3), ('book', 2), ('build', 1), ('help', 1), ('understand', 1), ('architecture', 1), ('minimalistic', 1), ('design', 1), ('provides', 1), ('specialized', 1), ('knowledge', 1), ('development', 1), ('includes', 1), ('guidance', 1), ('understanding', 1)]
[('technology', 3), ('making', 1), ('fast', 1), ('accurate', 1), ('decision', 1), ('critical', 1), ('staying', 1), ('relevant', 1), ('customer', 1), ('need', 1), ('add', 1), ('value', 1), ('back', 1), ('organization', 1), ('quicker', 1), ('google', 1), ('cloud', 1), ('offer', 1), ('leader', 1), ('answer', 1), ('today', 1)]
[('spring', 3), ('code', 2), ('depth', 1), ('based', 1), ('java', 1), ('developer', 1), ('reference', 1), ('updated', 1), ('solves', 1), ('many', 1), ('framework', 1), ('problem', 1), ('using', 1), ('reusable', 1), ('complete', 1), ('real', 1), ('world', 1), ('working', 1), ('example', 1), ('recipe', 1), ('nbsp', 1), ('th', 1), ('edition', 1), ('includes', 1)]
[('nonprofit', 4), ('salesforce', 2), ('conduct', 1), ('impact', 1), ('measurement', 1), ('outcome', 1), ('evaluation', 1), ('specific', 1), ('focus', 1), ('using', 1), ('cloud', 1), ('aka', 1), ('funding', 1), ('grows', 1), ('challenging', 1), ('robust', 1), ('technology', 1), ('system', 1), ('place', 1)]
[('flybase', 2), ('real', 2), ('time', 2), ('solution', 2), ('use', 1), ('twilio', 1), ('node', 1), ('j', 1), ('build', 1), ('understand', 1), ('web', 1), ('technology', 1), ('work', 1), ('written', 1), ('founder', 1), ('book', 1), ('offer', 1), ('practical', 1), ('communicating', 1), ('effectively', 1), ('user', 1), ('modern', 1)]
[('cisco', 1), ('unified', 1), ('computing', 1), ('system', 1), ('ucs', 1), ('found', 1), ('majority', 1), ('data', 1), ('center', 1), ('across', 1), ('world', 1), ('getting', 1), ('hand', 1), ('practice', 1), ('learn', 1), ('infrastructure', 1), ('difficult', 1), ('many', 1), ('company', 1), ('push', 1), ('production', 1), ('ready', 1)]
[('pytorch', 3), ('model', 2), ('learn', 1), ('use', 1), ('build', 1), ('neural', 1), ('network', 1), ('using', 1), ('code', 1), ('snippet', 1), ('updated', 1), ('second', 1), ('edition', 1), ('book', 1), ('includes', 1), ('new', 1), ('chapter', 1), ('covering', 1), ('topic', 1), ('distributed', 1), ('modeling', 1), ('deploying', 1), ('production', 1)]
[('control', 2), ('includes', 1), ('program', 1), ('covering', 1), ('wide', 1), ('range', 1), ('situation', 1), ('provides', 1), ('working', 1), ('coded', 1), ('solution', 1), ('problem', 1), ('thinking', 1), ('behind', 1), ('cut', 1), ('pasted', 1), ('used', 1), ('template', 1), ('reader', 1), ('build', 1)]
[('autocad', 2), ('second', 1), ('edition', 1), ('comprehensive', 1), ('highly', 1), ('respected', 1), ('guide', 1), ('vba', 1), ('language', 1), ('suitable', 1), ('skill', 1), ('level', 1), ('novice', 1), ('advanced', 1), ('power', 1), ('user', 1), ('complete', 1), ('reference', 1), ('object', 1), ('model', 1), ('show', 1)]
[('asp', 2), ('net', 2), ('developer', 2), ('steer', 1), ('reader', 1), ('spectrum', 1), ('web', 1), ('programming', 1), ('concept', 1), ('programmer', 1), ('learn', 1), ('language', 1), ('theory', 1), ('simultaneously', 1), ('professional', 1), ('wannabe', 1), ('master', 1), ('core', 1), ('technique', 1), ('develop', 1), ('good', 1)]
[('rockford', 1), ('lhotka', 1), ('influential', 1), ('speaker', 1), ('author', 1), ('arealhotka', 1), ('previous', 1), ('edition', 1), ('established', 1), ('market', 1), ('positionlhotka', 1), ('continues', 1), ('present', 1), ('book', 1), ('flagship', 1), ('ip', 1), ('speaking', 1), ('career', 1)]
[('application', 2), ('nbsp', 2), ('web', 2), ('popular', 1), ('conference', 1), ('speaker', 1), ('rocky', 1), ('lhotka', 1), ('show', 1), ('use', 1), ('framework', 1), ('create', 1), ('sample', 1), ('demonstrates', 1), ('easy', 1), ('write', 1), ('window', 1), ('service', 1), ('interface', 1), ('based', 1)]
[('actionscript', 2), ('definitive', 1), ('authoritative', 1), ('book', 1), ('available', 1), ('animation', 1), ('provides', 1), ('thorough', 1), ('understanding', 1), ('complex', 1), ('principle', 1), ('along', 1), ('practical', 1), ('example', 1), ('expert', 1)]
[('window', 3), ('service', 2), ('pack', 2), ('server', 2), ('new', 2), ('security', 2), ('cover', 1), ('xp', 1), ('configuration', 1), ('wizard', 1), ('branch', 1), ('office', 1), ('feature', 1), ('setup', 1), ('option', 1), ('chapter', 1), ('end', 1), ('checkpoint', 1), ('ensure', 1)]
[('clearly', 1), ('explains', 1), ('programming', 1), ('methodology', 1), ('come', 1), ('together', 1), ('individual', 1), ('situation', 1), ('cross', 1), ('application', 1), ('system', 1), ('concise', 1), ('broad', 1), ('specifically', 1), ('facilitate', 1), ('reader', 1), ('strengthening', 1), ('object', 1), ('oriented', 1), ('mentality', 1)]
[('real', 2), ('world', 2), ('step', 2), ('configuration', 1), ('supporting', 1), ('material', 1), ('enable', 1), ('deploy', 1), ('nagios', 1), ('integrate', 1), ('tool', 1), ('basis', 1), ('simplifies', 1), ('deployment', 1), ('installation', 1), ('providing', 1), ('example', 1), ('monitoring', 1), ('situation', 1), ('explains', 1)]
[('security', 2), ('first', 1), ('book', 1), ('devoted', 1), ('solely', 1), ('php', 1), ('cover', 1), ('wide', 1), ('swath', 1), ('defensive', 1), ('proactive', 1), ('measure', 1), ('showing', 1), ('reader', 1), ('create', 1), ('captchas', 1), ('validate', 1), ('email', 1), ('fend', 1), ('sql', 1), ('injection', 1), ('attack', 1), ('method', 1), ('discussed', 1)]
[('wireless', 3), ('java', 3), ('thought', 1), ('building', 1), ('game', 1), ('cell', 1), ('phone', 1), ('device', 1), ('whether', 1), ('first', 1), ('time', 1), ('developer', 1), ('experienced', 1), ('professional', 1), ('beginning', 1), ('platform', 1), ('brings', 1), ('exciting', 1), ('mobile', 1)]
[('company', 1), ('size', 1), ('worldwide', 1), ('looking', 1), ('virtualization', 1), ('change', 1), ('way', 1), ('data', 1), ('center', 1), ('operate', 1), ('server', 1), ('consolidation', 1), ('energy', 1), ('efficiency', 1), ('simpler', 1), ('management', 1), ('deployment', 1), ('increased', 1), ('capacity', 1), ('tangible', 1), ('benefit', 1), ('gained', 1)]
[('fedora', 2), ('guide', 2), ('step', 2), ('beginning', 1), ('novice', 1), ('professional', 1), ('task', 1), ('new', 1), ('linux', 1), ('user', 1), ('desire', 1), ('perform', 1), ('explaining', 1), ('potentially', 1), ('confusing', 1), ('concept', 1), ('along', 1), ('way', 1), ('provides', 1), ('illustrated', 1), ('installation', 1)]
[('game', 3), ('flash', 2), ('sneaked', 1), ('odd', 1), ('five', 1), ('minute', 1), ('playing', 1), ('latest', 1), ('sent', 1), ('round', 1), ('office', 1), ('creating', 1), ('trickier', 1), ('look', 1), ('aim', 1), ('foundation', 1), ('design', 1), ('take', 1), ('even', 1)]
[('tool', 2), ('developer', 2), ('agile', 1), ('development', 1), ('movement', 1), ('represents', 1), ('latest', 1), ('advance', 1), ('technique', 1), ('intended', 1), ('boost', 1), ('productivity', 1), ('first', 1), ('book', 1), ('apply', 1), ('sought', 1), ('principle', 1), ('python', 1), ('introducing', 1)]
[('faced', 1), ('new', 1), ('type', 1), ('query', 1), ('write', 1), ('asked', 1), ('create', 1), ('unfamiliar', 1), ('database', 1), ('object', 1), ('situation', 1), ('probably', 1), ('wanted', 1), ('good', 1), ('solid', 1), ('example', 1), ('upon', 1), ('build', 1), ('instead', 1), ('forced', 1)]
[('flash', 2), ('advanced', 1), ('device', 1), ('begin', 1), ('discussion', 1), ('mobile', 1), ('development', 1), ('landscape', 1), ('different', 1), ('player', 1), ('tool', 1), ('hardware', 1), ('platform', 1), ('operating', 1), ('system', 1), ('second', 1), ('part', 1), ('book', 1), ('cover', 1), ('lite', 1), ('take', 1), ('advantage', 1), ('newer', 1), ('feature', 1)]
[('sql', 2), ('server', 2), ('dashboard', 2), ('pro', 1), ('analytics', 1), ('provides', 1), ('everything', 1), ('need', 1), ('know', 1), ('develop', 1), ('sophisticated', 1), ('visually', 1), ('appealing', 1), ('sale', 1), ('marketing', 1), ('using', 1), ('integrate', 1), ('sharepoint', 1), ('performancepoint', 1)]
[('sql', 3), ('server', 3), ('database', 2), ('introduction', 1), ('began', 1), ('process', 1), ('seen', 1), ('net', 1), ('become', 1), ('integral', 1), ('part', 1), ('technology', 1), ('next', 1), ('evolutionary', 1), ('step', 1), ('story', 1), ('alongside', 1), ('traditional', 1)]
[('book', 1), ('comprehensive', 1), ('easy', 1), ('understand', 1), ('guide', 1), ('using', 1), ('oracle', 1), ('data', 1), ('provider', 1), ('odp', 1), ('version', 1), ('net', 1), ('framework', 1), ('outline', 1), ('core', 1), ('gof', 1), ('gang', 1), ('four', 1), ('design', 1), ('pattern', 1), ('coding', 1), ('technique', 1), ('employed', 1), ('build', 1), ('deploy', 1)]
[('method', 2), ('software', 2), ('project', 2), ('best', 2), ('practice', 2), ('writer', 1), ('popular', 1), ('topic', 1), ('agile', 1), ('development', 1), ('identified', 1), ('management', 1), ('cause', 1), ('failure', 1), ('analysis', 1), ('clearly', 1), ('show', 1), ('create', 1)]
[('programming', 3), ('oriented', 2), ('fun', 1), ('easy', 1), ('grasp', 1), ('yet', 1), ('based', 1), ('solid', 1), ('principle', 1), ('object', 1), ('visually', 1), ('teach', 1), ('commanding', 1), ('turtle', 1), ('move', 1), ('loop', 1), ('variable', 1), ('procedure', 1), ('ai', 1), ('suitable', 1), ('reader', 1)]
[('practical', 1), ('non', 1), ('theoretical', 1), ('content', 1), ('author', 1), ('recognized', 1), ('authority', 1), ('window', 1), ('network', 1), ('administration', 1), ('approach', 1), ('product', 1), ('objectively', 1), ('without', 1), ('evangelizing', 1)]
[('window', 2), ('server', 2), ('networking', 2), ('recipe', 1), ('offer', 1), ('comprehensive', 1), ('task', 1), ('based', 1), ('guide', 1), ('installing', 1), ('deploying', 1), ('configuring', 1), ('various', 1), ('protocol', 1), ('service', 1), ('supported', 1), ('currently', 1), ('little', 1), ('printed', 1)]
[('web', 4), ('net', 3), ('create', 1), ('dynamic', 1), ('page', 1), ('asp', 1), ('form', 1), ('server', 1), ('control', 1), ('display', 1), ('manipulate', 1), ('data', 1), ('using', 1), ('ado', 1), ('visual', 1), ('studio', 1), ('component', 1), ('persist', 1), ('state', 1), ('different', 1), ('way', 1), ('within', 1), ('stateless', 1)]
[('expression', 2), ('suite', 2), ('web', 2), ('microsoft', 1), ('promise', 1), ('new', 1), ('level', 1), ('power', 1), ('creating', 1), ('rich', 1), ('dynamic', 1), ('user', 1), ('experience', 1), ('designer', 1), ('program', 1), ('within', 1), ('first', 1), ('book', 1), ('available', 1), ('subject', 1), ('author', 1)]
[('dreamweaver', 3), ('selling', 2), ('new', 2), ('huge', 1), ('product', 1), ('million', 1), ('user', 1), ('worldwide', 1), ('version', 1), ('c', 1), ('promise', 1), ('popular', 1), ('feature', 1), ('ajax', 1), ('support', 1), ('book', 1), ('written', 1), ('best', 1), ('author', 1), ('david', 1)]
[('internet', 2), ('way', 1), ('web', 1), ('secret', 1), ('history', 1), ('founder', 1), ('absorbing', 1), ('chronicle', 1), ('inventive', 1), ('individualistic', 1), ('often', 1), ('cantankerous', 1), ('individual', 1), ('set', 1), ('free', 1), ('michael', 1), ('bank', 1), ('describes', 1), ('online', 1)]
[('popularity', 1), ('nxt', 1), ('success', 1), ('da', 1), ('vinci', 1), ('code', 1), ('combined', 1), ('fascinating', 1), ('book', 1), ('project', 1), ('building', 1), ('programming', 1), ('five', 1), ('leonardo', 1), ('famous', 1), ('invention', 1), ('covered', 1), ('detail', 1), ('tank', 1), ('helicopter', 1), ('catapult', 1)]
[('vba', 2), ('used', 2), ('book', 1), ('michael', 1), ('kofler', 1), ('provides', 1), ('definitive', 1), ('coverage', 1), ('visual', 1), ('basic', 1), ('application', 1), ('nbsp', 1), ('excel', 1), ('showing', 1), ('implement', 1), ('real', 1), ('world', 1), ('business', 1), ('solution', 1), ('designed', 1), ('useful', 1), ('programmer', 1), ('never', 1)]
[('book', 1), ('th', 1), ('edition', 1), ('proven', 1), ('bestselling', 1), ('title', 1), ('nbsp', 1), ('provides', 1), ('reference', 1), ('ee', 1), ('apis', 1), ('plus', 1), ('best', 1), ('practice', 1), ('design', 1), ('guideline', 1), ('using', 1), ('appropriately', 1), ('take', 1), ('approach', 1), ('overarching', 1)]
[('blackberry', 2), ('skill', 2), ('set', 2), ('device', 1), ('application', 1), ('selling', 1), ('million', 1), ('developer', 1), ('need', 1), ('advanced', 1), ('successfully', 1), ('exploit', 1), ('compelling', 1), ('feature', 1), ('platform', 1), ('book', 1), ('help', 1), ('develop', 1)]
[('power', 2), ('wpf', 1), ('silverlight', 1), ('unlike', 1), ('user', 1), ('interface', 1), ('ui', 1), ('technology', 1), ('built', 1), ('new', 1), ('paradigm', 1), ('harnessed', 1), ('correctly', 1), ('yield', 1), ('unprecedented', 1), ('performance', 1), ('book', 1), ('show', 1), ('control', 1), ('produce', 1)]
[('ilife', 3), ('new', 1), ('macintosh', 1), ('experience', 1), ('want', 1), ('know', 1), ('in', 1), ('out', 1), ('apple', 1), ('powerful', 1), ('medium', 1), ('creation', 1), ('tool', 1), ('either', 1), ('way', 1), ('come', 1), ('right', 1), ('place', 1), ('made', 1), ('simple', 1), ('guide', 1)]
[('growing', 1), ('popularity', 1), ('web', 1), ('application', 1), ('increasing', 1), ('user', 1), ('expectation', 1), ('high', 1), ('quality', 1), ('website', 1), ('design', 1), ('presentation', 1), ('functionality', 1), ('climate', 1), ('microsoft', 1), ('releasing', 1), ('silverlight', 1), ('latest', 1), ('iteration', 1)]
[('web', 2), ('development', 2), ('subject', 2), ('teach', 1), ('using', 1), ('real', 1), ('world', 1), ('tutorial', 1), ('approach', 1), ('nonsense', 1), ('waste', 1), ('little', 1), ('time', 1), ('history', 1), ('unnecessary', 1), ('information', 1), ('concise', 1), ('result', 1), ('driven', 1), ('cover', 1), ('vital', 1)]
[('microsoft', 2), ('game', 2), ('adapted', 1), ('key', 1), ('insider', 1), ('previous', 1), ('bestseller', 1), ('lead', 1), ('author', 1), ('net', 1), ('evangelist', 1), ('easy', 1), ('soup', 1), ('nut', 1), ('guide', 1), ('help', 1), ('start', 1), ('programming', 1), ('fast', 1), ('packed', 1), ('code', 1), ('example', 1)]
[('autocad', 3), ('new', 2), ('major', 1), ('update', 1), ('sutphin', 1), ('successful', 1), ('programmer', 1), ('reference', 1), ('introduction', 1), ('visual', 1), ('basic', 1), ('allows', 1), ('use', 1), ('experienced', 1), ('developer', 1), ('programming', 1), ('comprehensive', 1), ('coverage', 1), ('object', 1), ('model', 1)]
[('holub', 2), ('berkeley', 2), ('allen', 1), ('highly', 1), ('regarded', 1), ('instructor', 1), ('university', 1), ('california', 1), ('extension', 1), ('taught', 1), ('various', 1), ('topic', 1), ('including', 1), ('object', 1), ('oriented', 1), ('analysis', 1), ('design', 1), ('java', 1), ('use', 1), ('book', 1)]
[('cloud', 3), ('based', 2), ('rsquo', 1), ('secret', 1), ('computing', 1), ('next', 1), ('big', 1), ('movement', 1), ('microsoft', 1), ('right', 1), ('market', 1), ('office', 1), ('mdash', 1), ('productivity', 1), ('suite', 1), ('includes', 1), ('hosted', 1), ('focused', 1), ('version', 1), ('sharepoint', 1)]
[('net', 2), ('describes', 1), ('architecture', 1), ('scalable', 1), ('application', 1), ('using', 1), ('various', 1), ('microsoft', 1), ('technology', 1), ('sql', 1), ('server', 1), ('focus', 1), ('importance', 1), ('correct', 1), ('design', 1), ('avoid', 1), ('scalability', 1), ('problem', 1), ('production', 1), ('give', 1), ('thorough', 1)]
[('apache', 2), ('thorough', 1), ('coverage', 1), ('security', 1), ('accessible', 1), ('junior', 1), ('senior', 1), ('level', 1), ('system', 1), ('administrator', 1), ('date', 1), ('book', 1), ('foreword', 1), ('tech', 1), ('review', 1), ('ken', 1), ('coar', 1), ('respected', 1), ('industry', 1)]
[('apps', 3), ('new', 3), ('game', 2), ('iphone', 2), ('ipad', 2), ('remain', 1), ('popular', 1), ('type', 1), ('apple', 1), ('itunes', 1), ('app', 1), ('store', 1), ('angry', 1), ('bird', 1), ('ring', 1), ('bell', 1), ('learn', 1), ('build', 1), ('using', 1), ('io', 1), ('sdk', 1)]
[('window', 3), ('application', 2), ('paradigm', 2), ('beginning', 1), ('development', 1), ('ndash', 1), ('xaml', 1), ('edition', 1), ('introduces', 1), ('modern', 1), ('app', 1), ('design', 1), ('new', 1), ('programming', 1), ('model', 1), ('developed', 1), ('around', 1), ('learn', 1), ('build', 1), ('rich', 1), ('immersive', 1)]
[('data', 4), ('sql', 3), ('server', 3), ('integration', 2), ('need', 2), ('recipe', 1), ('provides', 1), ('focused', 1), ('practical', 1), ('solution', 1), ('real', 1), ('world', 1), ('problem', 1), ('import', 1), ('outside', 1), ('source', 1), ('export', 1), ('send', 1), ('another', 1), ('system', 1)]
[('application', 2), ('learn', 1), ('take', 1), ('build', 1), ('large', 1), ('scale', 1), ('mission', 1), ('critical', 1), ('hardened', 1), ('azure', 1), ('cloud', 1), ('platform', 1), ('page', 1), ('book', 1), ('cover', 1), ('technique', 1), ('engineering', 1), ('principle', 1), ('every', 1), ('architect', 1), ('developer', 1), ('need', 1), ('know', 1)]
[('oracle', 3), ('exadata', 2), ('database', 2), ('recipe', 1), ('take', 1), ('example', 1), ('based', 1), ('problem', 1), ('solution', 1), ('approach', 1), ('showing', 1), ('size', 1), ('install', 1), ('configure', 1), ('manage', 1), ('monitor', 1), ('optimize', 1), ('migrate', 1), ('workload', 1), ('machine', 1), ('whether', 1)]
[('window', 3), ('app', 3), ('project', 2), ('xaml', 2), ('edition', 2), ('become', 1), ('leading', 1), ('developer', 1), ('using', 1), ('learn', 1), ('technique', 1), ('tool', 1), ('idea', 1), ('create', 1), ('successful', 1), ('apps', 1), ('show', 1), ('nut', 1), ('bolt', 1)]
[('sa', 1), ('programming', 1), ('data', 1), ('visualization', 1), ('technique', 1), ('power', 1), ('user', 1), ('guide', 1), ('brings', 1), ('together', 1), ('wealth', 1), ('idea', 1), ('strategic', 1), ('tactical', 1), ('solution', 1), ('everyday', 1), ('situation', 1), ('experienced', 1), ('transferring', 1), ('extracting', 1), ('processing', 1), ('analyzing', 1), ('reporting', 1)]
[('javascript', 3), ('reference', 3), ('syntax', 2), ('quick', 1), ('condensed', 1), ('language', 1), ('present', 1), ('essential', 1), ('organized', 1), ('format', 1), ('used', 1), ('handy', 1), ('includes', 1), ('latest', 1), ('ecmascript', 1), ('json', 1)]
[('powershell', 2), ('world', 2), ('pro', 1), ('database', 1), ('developer', 1), ('help', 1), ('master', 1), ('application', 1), ('development', 1), ('continuing', 1), ('book', 1), ('leave', 1), ('hello', 1), ('function', 1), ('real', 1), ('example', 1), ('business', 1), ('develop', 1), ('deploy', 1)]
[('business', 2), ('intelligence', 2), ('reporting', 2), ('service', 2), ('sql', 1), ('server', 1), ('help', 1), ('deliver', 1), ('panache', 1), ('harness', 1), ('power', 1), ('toolkit', 1), ('combine', 1), ('chart', 1), ('gauge', 1), ('sparklines', 1), ('indicator', 1), ('map', 1), ('compelling', 1)]
[('net', 2), ('book', 2), ('truly', 1), ('applying', 1), ('development', 1), ('language', 1), ('another', 1), ('syntax', 1), ('happens', 1), ('cover', 1)]
[('anyone', 1), ('contemplating', 1), ('actively', 1), ('engaged', 1), ('implementing', 1), ('managing', 1), ('microsoft', 1), ('project', 1), ('server', 1), ('book', 1), ('take', 1), ('structured', 1), ('approach', 1), ('implementation', 1), ('conveys', 1), ('best', 1), ('practice', 1), ('using', 1), ('software', 1)]
[('expert', 1), ('author', 1), ('john', 1), ('mueller', 1), ('provides', 1), ('complete', 1), ('view', 1), ('microsoft', 1), ('free', 1), ('web', 1), ('site', 1), ('creation', 1), ('program', 1)]
[('v', 2), ('net', 2)]
[('database', 2), ('solution', 2), ('provides', 1), ('excellent', 1), ('tutelage', 1), ('novice', 1), ('programmer', 1), ('migrating', 1), ('desktop', 1), ('access', 1), ('interested', 1), ('developing', 1), ('sql', 1), ('server', 1), ('show', 1), ('create', 1), ('delete', 1), ('table', 1), ('relationship', 1)]
[('peer', 2), ('author', 1), ('explores', 1), ('nbsp', 1), ('design', 1), ('idea', 1), ('integrated', 1), ('existing', 1), ('net', 1), ('application', 1)]
[('show', 1), ('write', 1), ('effective', 1), ('stored', 1), ('procedure', 1), ('function', 1), ('concise', 1), ('detailed', 1), ('advice', 1), ('sql', 1), ('server', 1), ('expert', 1), ('tackle', 1), ('issue', 1), ('barely', 1), ('covered', 1), ('existing', 1), ('book', 1), ('optimizing', 1), ('debugging', 1), ('concurrency', 1), ('transaction', 1)]
[('glasshaus', 1)]
[('learn', 2), ('stored', 2), ('procedure', 2), ('trigger', 2), ('sql', 2), ('want', 1), ('write', 1), ('microsoft', 1), ('server', 1), ('code', 1), ('centric', 1), ('programming', 1), ('book', 1), ('youll', 1), ('real', 1), ('world', 1), ('coding', 1), ('build', 1), ('non', 1), ('trivial', 1)]
[('language', 2), ('programmer', 2), ('key', 1), ('microsoft', 1), ('next', 1), ('generation', 1), ('window', 1), ('service', 1), ('net', 1), ('platform', 1), ('new', 1), ('programming', 1), ('fast', 1), ('modern', 1), ('designed', 1), ('increase', 1), ('productivity', 1), ('enables', 1), ('quickly', 1), ('build', 1), ('wide', 1)]
[('comprehensive', 1), ('reference', 1), ('language', 1), ('designed', 1), ('help', 1), ('speed', 1), ('author', 1), ('eric', 1), ('gunnerson', 1), ('developer', 1), ('microsoft', 1), ('design', 1), ('team', 1), ('logged', 1), ('many', 1), ('hour', 1), ('writing', 1), ('testing', 1), ('code', 1), ('thus', 1), ('uniquely', 1), ('poised', 1)]
[('covering', 1), ('award', 1), ('winning', 1), ('software', 1), ('first', 1), ('start', 1), ('finish', 1), ('guide', 1), ('developing', 1), ('portal', 1), ('application', 1), ('weblogic', 1), ('includes', 1), ('proven', 1), ('strategy', 1), ('advanced', 1), ('technique', 1)]
[('visual', 1), ('studio', 1)]
[('class', 2), ('give', 1), ('deep', 1), ('understanding', 1), ('implication', 1), ('every', 1), ('decision', 1), ('make', 1), ('designing', 1), ('better', 1), ('equipped', 1), ('take', 1), ('full', 1), ('advantage', 1), ('power', 1), ('create', 1), ('robust', 1), ('flexible', 1), ('reusable', 1), ('lift', 1), ('lid', 1), ('simple', 1)]
[('new', 1), ('io', 1), ('driven', 1), ('ipod', 1), ('touch', 1), ('device', 1), ('music', 1), ('feature', 1), ('pda', 1), ('including', 1), ('email', 1), ('calendar', 1), ('google', 1), ('map', 1), ('app', 1), ('store', 1), ('even', 1), ('phone', 1), ('capability', 1), ('ability', 1), ('watch', 1), ('movie', 1), ('play', 1)]
[('best', 2), ('practice', 2), ('pro', 1), ('html', 1), ('performance', 1), ('provides', 1), ('practical', 1), ('guide', 1), ('building', 1), ('extremely', 1), ('fast', 1), ('light', 1), ('weight', 1), ('scalable', 1), ('website', 1), ('using', 1), ('fully', 1), ('standard', 1), ('compliant', 1), ('technique', 1), ('strike', 1), ('balance', 1), ('imparting', 1), ('information', 1)]
[('mac', 4), ('learn', 2), ('o', 2), ('io', 2), ('considered', 1), ('classic', 1), ('entire', 1), ('generation', 1), ('programmer', 1), ('dave', 1), ('mark', 1), ('updated', 1), ('include', 1), ('mountain', 1), ('lion', 1), ('latest', 1), ('consideration', 1), ('second', 1)]
[('application', 3), ('oracle', 2), ('express', 2), ('development', 2), ('platform', 2), ('beginning', 1), ('introduces', 1), ('version', 1), ('popular', 1), ('productive', 1), ('called', 1), ('apex', 1), ('short', 1), ('enables', 1), ('rapid', 1), ('easy', 1), ('web', 1), ('based', 1)]
[('android', 3), ('graphic', 2), ('application', 2), ('pro', 1), ('comprehensive', 1), ('goldmine', 1), ('knowledge', 1), ('technique', 1), ('help', 1), ('design', 1), ('create', 1), ('optimize', 1), ('use', 1), ('jelly', 1), ('bean', 1), ('developer', 1), ('expert', 1), ('multimedia', 1), ('producer', 1)]
[('game', 3), ('tool', 3), ('pipeline', 2), ('development', 1), ('essential', 1), ('provides', 1), ('tip', 1), ('trick', 1), ('industry', 1), ('professional', 1), ('strengthening', 1), ('streamlining', 1), ('everyone', 1), ('know', 1), ('important', 1), ('current', 1), ('environment', 1)]
[('framework', 3), ('entity', 2), ('net', 2), ('recipe', 1), ('provides', 1), ('exhaustive', 1), ('collection', 1), ('ready', 1), ('use', 1), ('code', 1), ('solution', 1), ('microsoft', 1), ('model', 1), ('centric', 1), ('data', 1), ('access', 1), ('platform', 1), ('asp', 1), ('development', 1), ('book', 1), ('learn', 1)]
[('scripting', 4), ('php', 3), ('reference', 2), ('language', 2), ('quick', 1), ('condensed', 1), ('code', 1), ('syntax', 1), ('popular', 1), ('web', 1), ('use', 1), ('today', 1), ('present', 1), ('essential', 1), ('script', 1), ('organized', 1), ('format', 1)]
[('java', 3), ('syntax', 3), ('reference', 3), ('quick', 1), ('condensed', 1), ('code', 1), ('programming', 1), ('language', 1), ('present', 1), ('essential', 1), ('organized', 1), ('format', 1), ('used', 1), ('handy', 1), ('find', 1), ('technical', 1)]
[('iphone', 3), ('beginning', 2), ('development', 2), ('swift', 2), ('team', 1), ('brought', 1), ('bestselling', 1), ('book', 1), ('taught', 1), ('world', 1), ('program', 1), ('back', 1), ('definitive', 1), ('guide', 1), ('programming', 1), ('language', 1)]
[('database', 3), ('system', 2), ('pragmatic', 1), ('approach', 1), ('classroom', 1), ('textbook', 1), ('use', 1), ('student', 1), ('learning', 1), ('relational', 1), ('professor', 1), ('teach', 1), ('discus', 1), ('essential', 1), ('component', 1), ('software', 1)]
[('matlab', 2), ('language', 2), ('high', 1), ('level', 1), ('environment', 1), ('numerical', 1), ('computation', 1), ('visualization', 1), ('programming', 1), ('using', 1), ('analyze', 1), ('data', 1), ('develop', 1), ('algorithm', 1), ('create', 1), ('model', 1), ('application', 1), ('tool', 1), ('built', 1), ('math', 1), ('function', 1)]
[('capability', 2), ('support', 2), ('actionscript', 1), ('full', 1), ('fledged', 1), ('programming', 1), ('language', 1), ('complete', 1), ('object', 1), ('oriented', 1), ('event', 1), ('handling', 1), ('sound', 1), ('video', 1), ('drawing', 1), ('regular', 1), ('expression', 1), ('whether', 1), ('starting', 1)]
[('book', 2), ('index', 2), ('deep', 1), ('dive', 1), ('perhaps', 1), ('single', 1), ('important', 1), ('facet', 1), ('good', 1), ('performance', 1), ('best', 1), ('use', 1), ('begin', 1), ('shallow', 1), ('water', 1), ('explanation', 1), ('type', 1), ('stored', 1), ('database', 1)]
[('linux', 2), ('solaris', 2), ('oracle', 2), ('book', 2), ('database', 2), ('recipe', 1), ('dba', 1), ('nd', 1), ('edition', 1), ('example', 1), ('based', 1), ('managing', 1), ('written', 1), ('administrator', 1), ('need', 1), ('work', 1), ('done', 1), ('lack', 1), ('luxury', 1), ('curling', 1)]
[('strategy', 6), ('information', 3), ('data', 3), ('learn', 1), ('form', 1), ('execute', 1), ('enterprise', 1), ('topic', 1), ('include', 1), ('governance', 1), ('architecture', 1), ('security', 1), ('big', 1), ('cloud', 1), ('manage', 1), ('pro', 1), ('achieve', 1)]
[('real', 3), ('streaming', 2), ('time', 2), ('application', 2), ('end', 2), ('learn', 1), ('right', 1), ('cutting', 1), ('edge', 1), ('skill', 1), ('knowledge', 1), ('leverage', 1), ('spark', 1), ('implement', 1), ('wide', 1), ('array', 1), ('book', 1), ('nbsp', 1), ('walk', 1), ('development', 1), ('using', 1), ('world', 1)]
[('find', 2), ('printer', 2), ('wondering', 1), ('fuss', 1), ('delta', 1), ('perhaps', 1), ('rsquo', 1), ('decided', 1), ('buy', 1), ('printing', 1), ('friend', 1), ('busily', 1), ('perfecting', 1), ('cartesian', 1), ('maybe', 1), ('stymied', 1), ('fact', 1)]
[('apple', 3), ('watch', 3), ('book', 2), ('health', 2), ('fit', 1), ('concise', 1), ('introduction', 1), ('amazing', 1), ('new', 1), ('first', 1), ('specifically', 1), ('focused', 1), ('important', 1), ('function', 1), ('fitness', 1), ('interested', 1)]
[('window', 2), ('wpf', 2), ('book', 2), ('use', 1), ('presentation', 1), ('foundation', 1), ('technology', 1), ('develop', 1), ('application', 1), ('using', 1), ('xaml', 1), ('design', 1), ('basic', 1), ('advanced', 1), ('concept', 1), ('net', 1), ('nbsp', 1)]
[('learn', 1), ('blockchain', 1), ('application', 1), ('cryptocurrency', 1), ('healthcare', 1), ('internet', 1), ('thing', 1), ('finance', 1), ('decentralized', 1), ('organization', 1), ('featuring', 1), ('case', 1), ('study', 1), ('practical', 1), ('insight', 1), ('book', 1), ('cover', 1), ('unique', 1), ('mix', 1), ('topic', 1), ('offer', 1)]
[('linux', 3), ('raspberry', 2), ('pi', 2), ('quickly', 1), ('start', 1), ('programming', 1), ('learning', 1), ('o', 1), ('distribution', 1), ('designed', 1), ('specifically', 1), ('low', 1), ('cost', 1), ('short', 1), ('guide', 1), ('review', 1), ('command', 1), ('gui', 1), ('shell', 1), ('scripting', 1), ('holistic', 1), ('manner', 1), ('diving', 1)]
[('arduino', 2), ('device', 2), ('started', 1), ('extremely', 1), ('versatile', 1), ('powerful', 1), ('nano', 1), ('ble', 1), ('sense', 1), ('smart', 1), ('based', 1), ('nrf', 1), ('nordic', 1), ('semiconductor', 1), ('book', 1), ('introduces', 1), ('developing', 1), ('learn', 1), ('access', 1)]
[('python', 3), ('quick', 1), ('syntax', 1), ('reference', 1), ('go', 1), ('book', 1), ('contains', 1), ('easy', 1), ('useguide', 1), ('programming', 1), ('development', 1), ('condensed', 1), ('code', 1), ('syntaxreference', 1), ('present', 1), ('language', 1), ('organized', 1), ('format', 1), ('designed', 1)]
[('hibernate', 2), ('database', 2), ('beginning', 1), ('third', 1), ('edition', 1), ('ideal', 1), ('rsquo', 1), ('experienced', 1), ('java', 1), ('traditional', 1), ('connected', 1), ('approach', 1), ('new', 1), ('open', 1), ('source', 1), ('lightweight', 1), ('leading', 1), ('object', 1), ('relational', 1), ('mapping', 1), ('oriented', 1)]
[('sql', 5), ('oracle', 3), ('tool', 3), ('database', 2), ('plus', 2), ('developer', 2), ('beginning', 1), ('introduction', 1), ('interactive', 1), ('query', 1), ('specific', 1), ('dialect', 1), ('used', 1), ('include', 1), ('administrator', 1)]
[('edi', 3), ('biztalk', 1), ('healthcare', 1), ('ndash', 1), ('enrollment', 1), ('solution', 1), ('eliminates', 1), ('complexity', 1), ('anddemonstrates', 1), ('build', 1), ('inbound', 1), ('outbound', 1), ('process', 1), ('inbiztalk', 1), ('server', 1), ('follow', 1), ('required', 1), ('pattern', 1), ('integration', 1)]
[('game', 3), ('rsquo', 2), ('learn', 2), ('development', 2), ('new', 1), ('understand', 1), ('basic', 1), ('programming', 1), ('lay', 1), ('foundation', 1), ('language', 1), ('api', 1), ('need', 1), ('build', 1), ('apps', 1), ('application', 1)]
[('android', 3), ('game', 2), ('combining', 1), ('actionable', 1), ('real', 1), ('world', 1), ('source', 1), ('code', 1), ('graphic', 1), ('pro', 1), ('third', 1), ('edition', 1), ('show', 1), ('build', 1), ('sophisticated', 1), ('addictive', 1), ('apps', 1), ('minimum', 1), ('effort', 1), ('harness', 1), ('power', 1), ('latest', 1), ('sdk', 1), ('bring', 1)]
[('play', 2), ('enter', 1), ('world', 1), ('rapid', 1), ('web', 1), ('application', 1), ('development', 1), ('gentle', 1), ('introduction', 1), ('cover', 1), ('need', 1), ('know', 1), ('carefully', 1), ('introduces', 1), ('background', 1), ('concept', 1), ('diving', 1), ('example', 1), ('making', 1), ('learning', 1), ('enjoyable', 1), ('includes', 1)]
[('code', 2), ('discover', 1), ('newest', 1), ('major', 1), ('feature', 1), ('including', 1), ('module', 1), ('concept', 1), ('spaceship', 1), ('operator', 1), ('smart', 1), ('pointer', 1), ('nbsp', 1), ('book', 1), ('handy', 1), ('cookbook', 1), ('reference', 1), ('guide', 1), ('cover', 1), ('core', 1), ('language', 1), ('standard', 1)]
[('build', 2), ('application', 2), ('design', 1), ('architect', 1), ('blockchain', 1), ('azure', 1), ('industrial', 1), ('scenario', 1), ('revolutionize', 1), ('conventional', 1), ('process', 1), ('data', 1), ('security', 1), ('book', 1), ('empower', 1), ('better', 1), ('decentralized', 1), ('stronger', 1), ('encryption', 1)]
[('web', 2), ('emerging', 1), ('technology', 1), ('offer', 1), ('plethora', 1), ('unprecedented', 1), ('opportunity', 1), ('entrepreneur', 1), ('digital', 1), ('space', 1), ('understanding', 1), ('evolution', 1), ('essential', 1), ('based', 1), ('business', 1), ('model', 1), ('succeed', 1), ('economy', 1), ('book', 1)]
[('book', 1), ('introduces', 1), ('new', 1), ('approach', 1), ('embedded', 1), ('development', 1), ('grounded', 1), ('modern', 1), ('industry', 1), ('standard', 1), ('javascript', 1), ('using', 1), ('language', 1), ('power', 1), ('web', 1), ('browser', 1), ('node', 1), ('j', 1), ('moddable', 1), ('sdk', 1), ('empowers', 1), ('iot', 1), ('developer', 1), ('apply', 1), ('many', 1), ('tool', 1)]
[('delphi', 3), ('syntax', 2), ('reference', 2), ('quick', 1), ('nbsp', 1), ('succinct', 1), ('code', 1), ('guide', 1), ('present', 1), ('fundamental', 1), ('knowledge', 1), ('newcomer', 1), ('started', 1), ('language', 1), ('provides', 1), ('refresher', 1), ('seasoned', 1), ('returning', 1), ('developer', 1)]
[('textile', 4), ('technology', 2), ('electronic', 1), ('involves', 1), ('combination', 1), ('electronics', 1), ('form', 1), ('smart', 1), ('product', 1), ('emerging', 1), ('immense', 1), ('opportunity', 1), ('field', 1), ('wearable', 1), ('fashion', 1), ('many', 1)]
[('tuning', 2), ('hyperparameters', 2), ('step', 2), ('dive', 1), ('hyperparameter', 1), ('machine', 1), ('learning', 1), ('model', 1), ('focus', 1), ('work', 1), ('book', 1), ('discus', 1), ('different', 1), ('technique', 1), ('basic', 1), ('advanced', 1), ('method', 1)]
[('natural', 2), ('language', 2), ('problem', 2), ('work', 1), ('tool', 1), ('technique', 1), ('solve', 1), ('real', 1), ('world', 1), ('book', 1), ('focus', 1), ('processing', 1), ('nlp', 1), ('used', 1), ('various', 1), ('industry', 1), ('chapter', 1), ('describes', 1), ('solution', 1), ('strategy', 1), ('provides', 1)]
[('framework', 2), ('design', 2), ('think', 1), ('perspective', 1), ('move', 1), ('beyond', 1), ('straightforward', 1), ('coding', 1), ('skill', 1), ('enterprise', 1), ('level', 1), ('test', 1), ('capable', 1), ('supporting', 1), ('tdd', 1), ('bdd', 1), ('time', 1), ('using', 1), ('latest', 1), ('open', 1), ('source', 1), ('tool', 1)]
[('product', 2), ('team', 2), ('nature', 1), ('development', 1), ('changing', 1), ('successful', 1), ('innovation', 1), ('come', 1), ('exploring', 1), ('problem', 1), ('together', 1), ('build', 1), ('meaningful', 1), ('release', 1), ('iteratively', 1), ('incrementally', 1)]
[('gatsby', 2), ('expand', 1), ('development', 1), ('skill', 1), ('building', 1), ('production', 1), ('ready', 1), ('blog', 1), ('website', 1), ('book', 1), ('teach', 1), ('use', 1), ('alongside', 1), ('latest', 1), ('technology', 1), ('including', 1), ('mdx', 1), ('cdn', 1), ('netlify', 1), ('nbsp', 1), ('project', 1), ('create', 1), ('complex', 1)]
[('macos', 2), ('build', 1), ('highly', 1), ('modular', 1), ('software', 1), ('interacts', 1), ('deeply', 1), ('intuitively', 1), ('program', 1), ('book', 1), ('explores', 1), ('technique', 1), ('available', 1), ('inter', 1), ('process', 1), ('communication', 1), ('nbsp', 1), ('ipc', 1), ('high', 1), ('level', 1), ('layer', 1), ('deep', 1), ('kernel', 1), ('option', 1)]
[('joy', 1), ('book', 1), ('mathematician', 1), ('know', 1), ('write', 1), ('nbsp', 1), ('better', 1), ('guide', 1), ('strategy', 1), ('stake', 1), ('battle', 1), ('future', 1), ('paul', 1), ('romer', 1), ('nobel', 1), ('laureate', 1), ('university', 1), ('professor', 1), ('economics', 1), ('nyu', 1)]
[('algorithm', 2), ('learn', 1), ('approach', 1), ('computational', 1), ('thinking', 1), ('art', 1), ('designing', 1), ('see', 1), ('book', 1), ('used', 1), ('almost', 1), ('software', 1), ('run', 1), ('computer', 1), ('learning', 1), ('program', 1), ('rewarding', 1)]
[('end', 2), ('focus', 1), ('implementing', 1), ('project', 1), ('using', 1), ('python', 1), ('leverage', 1), ('state', 1), ('art', 1), ('algorithm', 1), ('book', 1), ('teach', 1), ('efficiently', 1), ('use', 1), ('wide', 1), ('range', 1), ('natural', 1), ('language', 1), ('processing', 1), ('nlp', 1), ('package', 1), ('implement', 1), ('text', 1), ('classification', 1), ('identify', 1), ('part', 1)]
[('cloud', 2), ('know', 1), ('common', 1), ('security', 1), ('threat', 1), ('happen', 1), ('service', 1), ('misconfigurations', 1), ('outside', 1), ('attack', 1), ('alone', 1), ('premise', 1), ('world', 1), ('cybersecurity', 1), ('risk', 1), ('limited', 1), ('organization', 1)]
[('security', 3), ('control', 2), ('book', 1), ('complete', 1), ('guide', 1), ('snowflake', 1), ('covering', 1), ('account', 1), ('authentication', 1), ('data', 1), ('access', 1), ('logging', 1), ('monitoring', 1), ('help', 1), ('make', 1), ('sure', 1), ('using', 1), ('right', 1), ('way', 1)]
[('nature', 2), ('inspired', 2), ('optimization', 2), ('technique', 2), ('gain', 1), ('insight', 1), ('world', 1), ('algorithm', 1), ('book', 1), ('prepare', 1), ('apply', 1), ('different', 1), ('solve', 1), ('problem', 1), ('using', 1), ('java', 1), ('start', 1), ('introduction', 1)]
[('azure', 2), ('service', 2), ('cloud', 2), ('welcome', 1), ('introductory', 1), ('guide', 1), ('using', 1), ('microsoft', 1), ('arc', 1), ('new', 1), ('multi', 1), ('management', 1), ('platform', 1), ('belongs', 1), ('every', 1), ('devops', 1), ('estate', 1), ('many', 1), ('pro', 1), ('know', 1), ('server', 1), ('kubernetes', 1), ('drive', 1), ('huge', 1), ('amount', 1)]
[('azure', 2), ('arm', 2), ('learn', 1), ('leverage', 1), ('infrastructure', 1), ('code', 1), ('resource', 1), ('manager', 1), ('best', 1), ('practice', 1), ('build', 1), ('test', 1), ('debug', 1), ('deploy', 1), ('application', 1), ('microsoft', 1), ('using', 1), ('template', 1), ('new', 1), ('domain', 1), ('specific', 1), ('language', 1), ('bicep', 1)]
[('start', 2), ('unique', 1), ('depth', 1), ('tutorial', 1), ('show', 1), ('developing', 1), ('rich', 1), ('client', 1), ('desktop', 1), ('application', 1), ('using', 1), ('java', 1), ('skill', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('javafx', 1), ('feature', 1), ('chapter', 1), ('introduction', 1), ('topic', 1), ('hand', 1)]
[('learn', 2), ('become', 1), ('part', 1), ('solution', 1), ('climate', 1), ('change', 1), ('reduce', 1), ('carbon', 1), ('footprint', 1), ('increase', 1), ('sustainability', 1), ('system', 1), ('ensure', 1), ('new', 1), ('equipment', 1), ('power', 1), ('efficient', 1), ('sustainable', 1), ('repairable', 1), ('possible', 1)]
[('motion', 2), ('know', 1), ('program', 1), ('microsoft', 1), ('kinect', 1), ('use', 1), ('device', 1), ('application', 1), ('interact', 1), ('directly', 1), ('human', 1), ('gesture', 1), ('book', 1), ('cover', 1), ('mathematics', 1), ('theoretical', 1), ('background', 1), ('needed', 1), ('depth', 1), ('sensing', 1), ('tracking', 1)]
[('includes', 2), ('programming', 1), ('permeates', 1), ('almost', 1), ('aspect', 1), ('life', 1), ('active', 1), ('social', 1), ('medium', 1), ('shopping', 1), ('online', 1), ('participating', 1), ('virtual', 1), ('course', 1), ('driving', 1), ('car', 1), ('using', 1), ('many', 1), ('device', 1), ('nbsp', 1), ('book', 1), ('teach', 1)]
[('program', 2), ('packetc', 2), ('network', 2), ('book', 1), ('introduces', 1), ('tool', 1), ('need', 1), ('language', 1), ('speed', 1), ('development', 1), ('application', 1), ('live', 1), ('within', 1), ('computer', 1), ('kind', 1), ('provide', 1), ('functionality', 1), ('connecting', 1), ('client', 1)]
[('sql', 3), ('server', 3), ('administration', 2), ('pro', 1), ('stop', 1), ('source', 1), ('knowledge', 1), ('need', 1), ('professionally', 1), ('manage', 1), ('database', 1), ('microsoft', 1), ('complex', 1), ('field', 1), ('requiring', 1), ('unusually', 1), ('broad', 1)]
[('electronic', 3), ('device', 2), ('wondered', 1), ('gadget', 1), ('created', 1), ('idea', 1), ('new', 1), ('proof', 1), ('concept', 1), ('tech', 1), ('toy', 1), ('way', 1), ('testing', 1), ('feasibility', 1), ('accumulated', 1), ('junk', 1), ('box', 1), ('part', 1)]
[('window', 4), ('apps', 1), ('heart', 1), ('bringing', 1), ('rich', 1), ('engaging', 1), ('experience', 1), ('tablet', 1), ('desktop', 1), ('user', 1), ('us', 1), ('runtime', 1), ('winrt', 1), ('complete', 1), ('reimagining', 1), ('development', 1), ('support', 1), ('multiple', 1), ('programming', 1), ('language', 1)]
[('java', 6), ('ee', 4), ('book', 2), ('step', 2), ('enterprise', 1), ('edition', 1), ('continues', 1), ('leading', 1), ('technology', 1), ('platform', 1), ('beginning', 1), ('first', 1), ('tutorial', 1), ('easy', 1), ('follow', 1), ('describes', 1), ('many', 1)]
[('net', 2), ('augmented', 2), ('reality', 2), ('io', 2), ('attention', 1), ('developer', 1), ('starting', 1), ('point', 1), ('learning', 1), ('create', 1), ('publish', 1), ('ar', 1), ('apps', 1), ('device', 1), ('book', 1), ('introduces', 1), ('explores', 1), ('mobile', 1), ('app', 1), ('development', 1), ('specifically', 1)]
[('movie', 2), ('size', 2), ('poured', 1), ('creativity', 1), ('flash', 1), ('found', 1), ('friend', 1), ('grumbling', 1), ('download', 1), ('tried', 1), ('use', 1), ('tiny', 1), ('picture', 1), ('seen', 1), ('file', 1), ('go', 1), ('roof', 1), ('possible', 1)]
[('friend', 1), ('ed', 1)]
[('friend', 1), ('ed', 1)]
[('friend', 1), ('ed', 1)]
[('friend', 1), ('ed', 1)]
[('friend', 1), ('ed', 1)]
[('android', 3), ('apps', 2), ('anybody', 1), ('start', 1), ('building', 1), ('simple', 1), ('platform', 1), ('book', 1), ('show', 1), ('recently', 1), ('updated', 1), ('include', 1), ('jelly', 1), ('bean', 1), ('absolute', 1), ('beginner', 1), ('second', 1), ('edition', 1), ('take', 1), ('process', 1), ('getting', 1)]
[('beginning', 2), ('development', 2), ('io', 2), ('latest', 2), ('team', 1), ('brought', 1), ('bestselling', 1), ('iphone', 1), ('back', 1), ('bringing', 1), ('definitive', 1), ('guide', 1), ('date', 1), ('apple', 1), ('greatest', 1), ('sdk', 1), ('version', 1)]
[('cobol', 2), ('programmer', 2), ('beginning', 1), ('comprehensive', 1), ('sophisticated', 1), ('tutorial', 1), ('modular', 1), ('skill', 1), ('reference', 1), ('programming', 1), ('language', 1), ('established', 1), ('book', 1), ('developer', 1), ('mdash', 1)]
[('rac', 3), ('tuning', 2), ('database', 2), ('expert', 1), ('oracle', 1), ('performance', 1), ('diagnostics', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('feature', 1), ('technology', 1), ('principle', 1), ('testing', 1), ('book', 1), ('take', 1), ('deep', 1), ('look', 1), ('optimizing', 1), ('following', 1), ('methodical', 1)]
[('unity', 2), ('programming', 2), ('unityscript', 2), ('step', 2), ('learn', 1), ('guide', 1), ('learning', 1), ('make', 1), ('first', 1), ('game', 1), ('using', 1), ('move', 1), ('point', 1), ('click', 1), ('component', 1), ('fully', 1), ('customized', 1), ('feature', 1), ('need', 1), ('prior', 1), ('knowledge', 1)]
[('developer', 1), ('provides', 1), ('fast', 1), ('track', 1), ('proficiency', 1), ('forthose', 1), ('already', 1), ('using', 1), ('language', 1), ('advanced', 1), ('level', 1), ('beginning', 1), ('detailed', 1), ('explanation', 1), ('mechanic', 1), ('execution', 1), ('sequence', 1), ('grammar', 1), ('syntax', 1), ('data', 1)]
[('scala', 3), ('beginning', 1), ('second', 1), ('edition', 1), ('take', 1), ('earth', 1), ('approach', 1), ('teaching', 1), ('lead', 1), ('simple', 1), ('example', 1), ('combined', 1), ('build', 1), ('complex', 1), ('scalable', 1), ('system', 1), ('application', 1), ('book', 1), ('introduces', 1), ('programming', 1)]
[('handy', 2), ('code', 2), ('reference', 2), ('latest', 2), ('template', 2), ('recipe', 1), ('problem', 1), ('solution', 1), ('approach', 1), ('cookbook', 1), ('guide', 1), ('cover', 1), ('available', 1), ('standard', 1), ('library', 1), ('stl', 1), ('find', 1)]
[('skype', 2), ('saving', 2), ('experience', 1), ('max', 1), ('show', 1), ('make', 1), ('full', 1), ('range', 1), ('feature', 1), ('device', 1), ('discover', 1), ('tip', 1), ('trick', 1), ('time', 1), ('money', 1), ('fostering', 1), ('better', 1), ('communication', 1), ('work', 1), ('personal', 1), ('project', 1), ('go', 1), ('beyond', 1)]
[('xaml', 2), ('development', 2), ('window', 2), ('pro', 1), ('application', 1), ('strategy', 1), ('guide', 1), ('real', 1), ('world', 1), ('practice', 1), ('microsoft', 1), ('based', 1), ('platform', 1), ('example', 1), ('wpf', 1), ('phone', 1), ('learn', 1), ('properly', 1), ('plan', 1), ('architect', 1)]
[('drupal', 5), ('web', 2), ('site', 2), ('managing', 2), ('beginning', 1), ('teach', 1), ('build', 1), ('maintain', 1), ('manage', 1), ('based', 1), ('book', 1), ('cover', 1), ('using', 1), ('building', 1), ('new', 1), ('installing', 1), ('configuring', 1), ('creating', 1), ('content', 1)]
[('linux', 3), ('user', 2), ('mind', 1), ('typing', 1), ('administrator', 1), ('tend', 1), ('flexibility', 1), ('speed', 1), ('administration', 1), ('command', 1), ('line', 1), ('byte', 1), ('sized', 1), ('chunk', 1), ('instead', 1), ('fairly', 1), ('standard', 1), ('graphical', 1)]
[('running', 1), ('mainframe', 1), ('distributed', 1), ('platform', 1), ('particularly', 1), ('suitable', 1), ('detailed', 1), ('discussion', 1), ('bill', 1), ('ogden', 1), ('ibm', 1), ('zpdt', 1), ('redbook', 1), ('april', 1), ('author', 1), ('offer', 1), ('reasoned', 1), ('solution', 1), ('accompanied', 1), ('case', 1), ('study', 1), ('useful', 1)]
[('unity', 3), ('game', 3), ('development', 2), ('pro', 1), ('alan', 1), ('thorn', 1), ('author', 1), ('learn', 1), ('experienced', 1), ('developer', 1), ('take', 1), ('complete', 1), ('workflow', 1), ('developing', 1), ('cross', 1), ('platform', 1), ('first', 1), ('person', 1), ('shooter', 1)]
[('android', 3), ('io', 2), ('developer', 2), ('mdash', 2), ('native', 2), ('development', 2), ('migrating', 1), ('give', 1), ('experienced', 1), ('app', 1), ('skill', 1), ('learn', 1), ('apps', 1), ('scratch', 1), ('starting', 1), ('preparing', 1), ('integrated', 1), ('environment', 1)]
[('data', 2), ('customer', 2), ('science', 1), ('machine', 1), ('learning', 1), ('high', 1), ('demand', 1), ('increasingly', 1), ('looking', 1), ('way', 1), ('glean', 1), ('insight', 1), ('realize', 1), ('business', 1), ('intelligence', 1), ('enough', 1), ('volume', 1), ('speed', 1), ('complexity', 1)]
[('kindle', 3), ('fire', 2), ('book', 2), ('learn', 1), ('use', 1), ('ease', 1), ('jargon', 1), ('clear', 1), ('concise', 1), ('short', 1), ('point', 1), ('using', 1), ('hd', 1), ('essential', 1), ('guide', 1), ('getting', 1), ('around', 1), ('amazon', 1), ('rsquo', 1), ('tablet', 1), ('reader', 1), ('explores', 1), ('setting', 1), ('new', 1)]
[('window', 3), ('arriving', 1), ('later', 1), ('many', 1), ('question', 1), ('remain', 1), ('answered', 1), ('business', 1), ('home', 1), ('user', 1), ('provide', 1), ('compatibility', 1), ('xp', 1), ('usability', 1), ('banish', 1), ('forever', 1), ('problem', 1), ('associated', 1)]
[('trove', 2), ('step', 2), ('set', 2), ('database', 2), ('dbaas', 2), ('openstack', 1), ('guide', 1), ('run', 1), ('secure', 1), ('scalable', 1), ('cloud', 1), ('service', 1), ('solution', 1), ('book', 1), ('show', 1), ('configure', 1), ('framework', 1), ('use', 1), ('prepackaged', 1), ('custom', 1)]
[('predictive', 2), ('machine', 2), ('learning', 2), ('analytics', 1), ('microsoft', 1), ('azure', 1), ('second', 1), ('edition', 1), ('practical', 1), ('tutorial', 1), ('introduction', 1), ('field', 1), ('data', 1), ('science', 1), ('focus', 1), ('building', 1), ('deploying', 1), ('model', 1), ('book', 1), ('provides', 1)]
[('love', 2), ('building', 2), ('robot', 2), ('wrote', 1), ('book', 1), ('want', 1), ('took', 1), ('learn', 1), ('many', 1), ('tool', 1), ('part', 1), ('amateur', 1), ('robotics', 1), ('perhaps', 1), ('writing', 1), ('experience', 1), ('give', 1), ('head', 1)]
[('gradle', 3), ('learn', 3), ('use', 2), ('concise', 1), ('book', 1), ('quick', 1), ('start', 1), ('primer', 1), ('build', 1), ('release', 1), ('tool', 1), ('set', 1), ('life', 1), ('cycle', 1), ('effectively', 1), ('leverage', 1)]
[('fully', 1), ('updated', 1), ('second', 1), ('edition', 1), ('award', 1), ('winning', 1), ('author', 1), ('tim', 1), ('leung', 1), ('explains', 1), ('build', 1), ('data', 1), ('centric', 1), ('business', 1), ('application', 1), ('desktop', 1), ('cloud', 1), ('web', 1), ('mobile', 1), ('device', 1), ('click', 1), ('code', 1), ('required', 1), ('using', 1), ('visual', 1), ('studio', 1)]
[('question', 2), ('discover', 1), ('relevant', 1), ('detailed', 1), ('answer', 1), ('help', 1), ('prepare', 1), ('job', 1), ('interview', 1), ('break', 1), ('field', 1), ('analytics', 1), ('book', 1), ('contains', 1), ('based', 1), ('consultation', 1), ('hiring', 1), ('manager', 1), ('technical', 1), ('professional', 1)]
[('clustering', 4), ('oracle', 3), ('solaris', 3), ('implementation', 2), ('using', 2), ('virtualbox', 2), ('veritas', 2), ('learn', 1), ('fundamental', 1), ('concept', 1), ('o', 1), ('high', 1), ('level', 1), ('design', 1), ('cluster', 1)]
[('design', 2), ('pattern', 2), ('java', 2), ('learn', 1), ('implement', 1), ('patternin', 1), ('complete', 1), ('implementation', 1), ('output', 1), ('isgenerated', 1), ('using', 1), ('eclipse', 1), ('making', 1), ('code', 1), ('accessible', 1), ('example', 1), ('arechosen', 1), ('able', 1), ('absorb', 1)]
[('option', 2), ('derivative', 2), ('trading', 2), ('financial', 2), ('industry', 2), ('learn', 1), ('used', 1), ('development', 1), ('solution', 1), ('important', 1), ('part', 1), ('become', 1), ('increasingly', 1), ('sophisticated', 1)]
[('step', 2), ('app', 2), ('development', 2), ('using', 2), ('swift', 2), ('book', 1), ('guide', 1), ('learning', 1), ('o', 1), ('cloudkit', 1), ('done', 1), ('apple', 1), ('programming', 1), ('language', 1), ('see', 1), ('define', 1), ('data', 1), ('build', 1), ('prototype', 1)]
[('step', 2), ('hacker', 2), ('book', 1), ('provides', 1), ('template', 1), ('instruction', 1), ('respond', 1), ('recover', 1), ('scada', 1), ('system', 1), ('cause', 1), ('building', 1), ('equipment', 1), ('act', 1), ('erratically', 1), ('fail', 1), ('completely', 1), ('shut', 1), ('water', 1), ('turn', 1)]
[('technology', 2), ('concise', 1), ('book', 1), ('show', 1), ('experiential', 1), ('learning', 1), ('used', 1), ('overcome', 1), ('challenge', 1), ('posed', 1), ('applying', 1), ('delivering', 1), ('information', 1), ('business', 1), ('need', 1), ('innovative', 1), ('game', 1), ('based', 1), ('approach', 1), ('innovation', 1)]
[('detail', 2), ('recommended', 2), ('practice', 2), ('development', 2), ('learn', 1), ('highly', 1), ('software', 1), ('using', 1), ('latest', 1), ('version', 1), ('visual', 1), ('studio', 1), ('grouped', 1), ('phase', 1), ('explained', 1), ('far', 1), ('typical', 1), ('tip', 1)]
[('rstudio', 2), ('discover', 1), ('use', 1), ('popular', 1), ('ide', 1), ('professional', 1), ('tool', 1), ('includes', 1), ('code', 1), ('refactoring', 1), ('support', 1), ('debugging', 1), ('git', 1), ('version', 1), ('control', 1), ('integration', 1), ('book', 1), ('give', 1), ('tour', 1), ('show', 1), ('help', 1), ('exploratory', 1), ('data', 1)]
[('book', 2), ('handy', 1), ('reference', 1), ('detailing', 1), ('intricacy', 1), ('update', 1), ('popular', 1), ('first', 1), ('edition', 1), ('adding', 1), ('version', 1), ('feature', 1), ('starting', 1), ('basic', 1), ('structure', 1), ('take', 1), ('journey', 1), ('terminology', 1), ('used', 1)]
[('share', 2), ('document', 2), ('rise', 1), ('basic', 1), ('xcode', 1), ('app', 1), ('development', 1), ('implement', 1), ('tool', 1), ('button', 1), ('activity', 1), ('view', 1), ('controller', 1), ('content', 1), ('including', 1), ('part', 1), ('user', 1), ('device', 1), ('book', 1), ('fill', 1), ('gap', 1)]
[('apply', 1), ('methodology', 1), ('practical', 1), ('solution', 1), ('monitoring', 1), ('behavior', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('industrial', 1), ('control', 1), ('system', 1), ('ic', 1), ('critical', 1), ('network', 1), ('device', 1), ('inexpensive', 1), ('raspberry', 1), ('pi', 1), ('book', 1), ('master', 1)]
[('make', 2), ('web', 2), ('learn', 1), ('program', 1), ('nifty', 1), ('new', 1), ('computer', 1), ('spider', 1), ('weather', 1), ('station', 1), ('medium', 1), ('server', 1), ('book', 1), ('explores', 1), ('variety', 1), ('fun', 1), ('even', 1), ('useful', 1), ('project', 1), ('bot', 1), ('search', 1), ('download', 1), ('file', 1), ('toy', 1)]
[('database', 2), ('mysql', 2), ('python', 2), ('move', 1), ('data', 1), ('back', 1), ('forth', 1), ('application', 1), ('knowledge', 1), ('book', 1), ('help', 1), ('programmer', 1), ('learn', 1), ('use', 1), ('official', 1), ('driver', 1), ('connector', 1), ('program', 1), ('communicate', 1), ('nbsp', 1)]
[('sql', 4), ('server', 3), ('take', 1), ('deep', 1), ('dive', 1), ('many', 1), ('us', 1), ('dynamic', 1), ('microsoft', 1), ('edition', 1), ('updated', 1), ('use', 1), ('newest', 1), ('feature', 1), ('incorporating', 1), ('changing', 1), ('landscape', 1), ('analytics', 1), ('database', 1)]
[('abap', 3), ('object', 3), ('sap', 2), ('language', 2), ('understand', 1), ('oriented', 1), ('extension', 1), ('latest', 1), ('release', 1), ('netweaver', 1), ('newest', 1), ('advancement', 1), ('book', 1), ('begin', 1), ('programming', 1), ('general', 1), ('basic', 1)]
[('advanced', 2), ('feature', 2), ('master', 1), ('intermediate', 1), ('technique', 1), ('perl', 1), ('programming', 1), ('language', 1), ('starting', 1), ('focus', 1), ('regular', 1), ('expression', 1), ('nbsp', 1), ('book', 1), ('cover', 1), ('pro', 1), ('level', 1), ('including', 1), ('formatted', 1), ('output', 1), ('file', 1)]
[('query', 2), ('identify', 1), ('analyze', 1), ('improve', 1), ('poorly', 1), ('performing', 1), ('damage', 1), ('user', 1), ('experience', 1), ('lead', 1), ('lost', 1), ('revenue', 1), ('business', 1), ('book', 1), ('help', 1), ('make', 1), ('tuning', 1), ('integral', 1), ('part', 1), ('daily', 1), ('routine', 1), ('multi', 1), ('step', 1), ('process', 1)]
[('industrial', 2), ('iot', 2), ('use', 1), ('raspberry', 1), ('pi', 1), ('modern', 1), ('computing', 1), ('technique', 1), ('build', 1), ('internet', 1), ('thing', 1), ('system', 1), ('principle', 1), ('theoretical', 1), ('aspect', 1), ('technology', 1), ('combine', 1), ('hand', 1), ('project', 1), ('leading', 1), ('detailed', 1), ('description', 1), ('several', 1)]
[('pci', 2), ('ds', 2), ('level', 2), ('gain', 1), ('broad', 1), ('understanding', 1), ('structured', 1), ('obtain', 1), ('high', 1), ('view', 1), ('content', 1), ('context', 1), ('top', 1), ('requirement', 1), ('guidance', 1), ('provided', 1), ('book', 1), ('help', 1), ('effectively', 1), ('apply', 1), ('business', 1)]
[('technology', 3), ('future', 2), ('automation', 2), ('understand', 1), ('current', 1), ('research', 1), ('underpin', 1), ('increasing', 1), ('capability', 1), ('impact', 1), ('working', 1), ('world', 1), ('rapid', 1), ('advance', 1), ('robotics', 1), ('often', 1)]
[('versus', 2), ('rapid', 1), ('development', 1), ('internet', 1), ('thing', 1), ('gap', 1), ('emerged', 1), ('skill', 1), ('knowledge', 1), ('industry', 1), ('typically', 1), ('segmented', 1), ('hardware', 1), ('software', 1), ('practitioner', 1), ('expected', 1), ('posse', 1), ('capability', 1), ('across', 1), ('spectrum', 1)]
[('jamstack', 2), ('nbsp', 2), ('learn', 1), ('three', 1), ('big', 1), ('letter', 1), ('front', 1), ('mean', 1), ('beneficial', 1), ('book', 1), ('show', 1), ('create', 1), ('site', 1), ('apps', 1), ('using', 1), ('gatsbyjs', 1), ('tool', 1), ('made', 1), ('specifically', 1), ('generating', 1)]
[('search', 3), ('capability', 2), ('gain', 1), ('thorough', 1), ('knowledge', 1), ('lucene', 1), ('use', 1), ('develop', 1), ('application', 1), ('book', 1), ('explores', 1), ('java', 1), ('based', 1), ('high', 1), ('performance', 1), ('text', 1), ('engine', 1), ('library', 1), ('nbsp', 1), ('used', 1), ('build', 1)]
[('selenium', 2), ('webdriver', 2), ('implement', 1), ('different', 1), ('testing', 1), ('technique', 1), ('using', 1), ('python', 1), ('programming', 1), ('language', 1), ('quick', 1), ('reference', 1), ('provides', 1), ('simple', 1), ('functional', 1), ('test', 1), ('case', 1), ('syntax', 1), ('based', 1), ('approach', 1), ('nbsp', 1), ('begin', 1), ('reviewing', 1)]
[('pi', 3), ('raspberry', 2), ('net', 2), ('iot', 2), ('take', 1), ('asp', 1), ('microsoft', 1), ('azure', 1), ('run', 1), ('core', 1), ('application', 1), ('turn', 1), ('hub', 1), ('use', 1), ('edge', 1), ('central', 1), ('computing', 1), ('future', 1), ('lean', 1), ('towards', 1), ('live', 1), ('world', 1), ('everything', 1)]
[('integration', 2), ('build', 1), ('custom', 1), ('sql', 1), ('server', 1), ('service', 1), ('ssis', 1), ('task', 1), ('using', 1), ('visual', 1), ('studio', 1), ('community', 1), ('edition', 1), ('bring', 1), ('power', 1), ('microsoft', 1), ('net', 1), ('bear', 1), ('data', 1), ('etl', 1), ('process', 1), ('added', 1), ('cost', 1), ('already', 1), ('spent', 1)]
[('ml', 2), ('understand', 1), ('industrialization', 1), ('machine', 1), ('learning', 1), ('take', 1), ('first', 1), ('step', 1), ('toward', 1), ('identifying', 1), ('generating', 1), ('transformational', 1), ('disruptors', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('learn', 1), ('apply', 1), ('data', 1), ('lake', 1), ('various', 1), ('industry', 1)]
[('first', 2), ('gain', 1), ('gentle', 1), ('introduction', 1), ('world', 1), ('ring', 1), ('programming', 1), ('clarity', 1), ('concern', 1), ('using', 1), ('lot', 1), ('practical', 1), ('example', 1), ('part', 1), ('lay', 1), ('foundation', 1), ('language', 1), ('basic', 1), ('feature', 1), ('data', 1), ('type', 1), ('control', 1), ('structure', 1), ('function', 1)]
[('programming', 2), ('discover', 1), ('everything', 1), ('need', 1), ('know', 1), ('python', 1), ('turn', 1), ('passion', 1), ('job', 1), ('love', 1), ('fueled', 1), ('fun', 1), ('practical', 1), ('example', 1), ('book', 1), ('give', 1), ('high', 1), ('schoolers', 1), ('want', 1), ('learn', 1), ('easy', 1), ('language', 1), ('nbsp', 1), ('idea', 1)]
[('security', 2), ('professional', 1), ('tell', 1), ('managing', 1), ('top', 1), ('priority', 1), ('even', 1), ('working', 1), ('cloud', 1), ('access', 1), ('accurate', 1), ('timely', 1), ('information', 1), ('critical', 1), ('governance', 1), ('control', 1), ('first', 1), ('enabled', 1), ('guide', 1)]
[('code', 2), ('build', 1), ('deploy', 1), ('attractive', 1), ('user', 1), ('friendly', 1), ('web', 1), ('mobile', 1), ('application', 1), ('day', 1), ('le', 1), ('using', 1), ('oracle', 1), ('new', 1), ('low', 1), ('development', 1), ('tool', 1), ('visual', 1), ('builder', 1), ('cloud', 1), ('service', 1), ('today', 1), ('world', 1), ('fast', 1), ('paced', 1), ('ability', 1), ('rapidly', 1), ('deliver', 1), ('running', 1)]
[('full', 1), ('color', 1), ('book', 1), ('essential', 1), ('guide', 1), ('getting', 1), ('started', 1), ('adobe', 1), ('photoshop', 1), ('packed', 1), ('tutorial', 1), ('illustration', 1), ('practical', 1), ('exercise', 1), ('help', 1), ('make', 1), ('sense', 1), ('complex', 1), ('powerful', 1), ('software', 1), ('start', 1), ('basic', 1)]
[('database', 2), ('service', 2), ('md', 2), ('oracle', 2), ('access', 1), ('information', 1), ('need', 1), ('begin', 1), ('using', 1), ('mysql', 1), ('cloud', 1), ('infrastructure', 1), ('oci', 1), ('new', 1), ('platform', 1), ('paas', 1), ('offering', 1), ('open', 1), ('source', 1), ('user', 1), ('book', 1), ('cover', 1), ('getting', 1)]
[('php', 3), ('take', 1), ('advantage', 1), ('powerful', 1), ('feature', 1), ('create', 1), ('basic', 1), ('web', 1), ('application', 1), ('solve', 1), ('code', 1), ('test', 1), ('required', 1), ('job', 1), ('interview', 1), ('nowadays', 1), ('begin', 1), ('moving', 1), ('towards', 1), ('advanced', 1), ('concept', 1), ('book', 1), ('provides', 1), ('introduction', 1), ('including', 1)]
[('tensorflow', 2), ('book', 1), ('build', 1), ('upon', 1), ('foundation', 1), ('established', 1), ('first', 1), ('edition', 1), ('updated', 1), ('chapter', 1), ('latest', 1), ('code', 1), ('implementation', 1), ('bring', 1), ('date', 1), ('pro', 1), ('deep', 1), ('learning', 1), ('begin', 1), ('mathematical', 1)]
[('quality', 2), ('cross', 2), ('platform', 2), ('apps', 2), ('produce', 1), ('high', 1), ('user', 1), ('experience', 1), ('almost', 1), ('identical', 1), ('pure', 1), ('native', 1), ('evaluating', 1), ('framework', 1), ('developer', 1), ('make', 1), ('assumption', 1), ('compromised', 1), ('true', 1)]
[('started', 1), ('artificial', 1), ('intelligence', 1), ('medical', 1), ('science', 1), ('psychology', 1), ('book', 1), ('help', 1), ('healthcare', 1), ('professional', 1), ('technologist', 1), ('solve', 1), ('problem', 1), ('using', 1), ('machine', 1), ('learning', 1), ('method', 1), ('computer', 1), ('vision', 1), ('natural', 1), ('language', 1), ('processing', 1), ('nlp', 1)]
[('delivery', 3), ('use', 2), ('continuous', 2), ('ci', 2), ('cd', 2), ('software', 2), ('integration', 1), ('improve', 1), ('speed', 1), ('book', 1), ('present', 1), ('game', 1), ('changer', 1), ('pipeline', 1), ('automate', 1), ('process', 1), ('theory', 1)]
[('step', 2), ('welcome', 1), ('guide', 1), ('excel', 1), ('user', 1), ('data', 1), ('analyst', 1), ('finance', 1), ('specialist', 1), ('designed', 1), ('take', 1), ('practical', 1), ('report', 1), ('development', 1), ('scenario', 1), ('including', 1), ('approach', 1), ('technical', 1), ('challenge', 1), ('book', 1), ('equip', 1)]
[('use', 2), ('entity', 2), ('framework', 2), ('code', 1), ('driven', 1), ('approach', 1), ('core', 1), ('build', 1), ('functional', 1), ('web', 1), ('application', 1), ('access', 1), ('database', 1), ('backend', 1), ('server', 1), ('book', 1), ('cover', 1), ('common', 1), ('case', 1), ('developer', 1), ('need', 1), ('master', 1), ('order', 1)]
[('mobility', 2), ('year', 1), ('witness', 1), ('several', 1), ('paradigm', 1), ('shift', 1), ('system', 1), ('service', 1), ('increasingly', 1), ('technology', 1), ('progress', 1), ('future', 1), ('centric', 1), ('software', 1), ('defined', 1), ('connected', 1), ('electric', 1), ('imperative', 1)]
[('solution', 2), ('explore', 1), ('complex', 1), ('world', 1), ('digital', 1), ('architecture', 1), ('pivotal', 1), ('role', 1), ('modern', 1), ('technology', 1), ('driven', 1), ('organization', 1), ('book', 1), ('provides', 1), ('detailed', 1), ('roadmap', 1), ('charting', 1), ('intricate', 1), ('process', 1), ('architect', 1), ('undertake', 1), ('transform', 1)]
[('typescript', 2), ('dive', 1), ('world', 1), ('popular', 1), ('superset', 1), ('javascript', 1), ('language', 1), ('enhances', 1), ('development', 1), ('experience', 1), ('static', 1), ('typing', 1), ('book', 1), ('cover', 1), ('every', 1), ('aspect', 1), ('concise', 1), ('easy', 1), ('understand', 1), ('style', 1), ('making', 1)]
[('javascript', 2), ('work', 2), ('complicated', 1), ('language', 1), ('lot', 1), ('misinformation', 1), ('surrounding', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('technical', 1), ('level', 1), ('used', 1), ('create', 1), ('website', 1)]
[('expert', 1), ('guidance', 1), ('administering', 1), ('highly', 1), ('complex', 1), ('oracle', 1), ('business', 1), ('suitetime', 1), ('proven', 1), ('best', 1), ('practicestried', 1), ('tested', 1), ('script', 1), ('note', 1), ('reference', 1), ('cover', 1), ('vital', 1), ('admin', 1), ('task', 1), ('including', 1), ('configuration', 1), ('monitoring', 1), ('performance', 1), ('tuning', 1)]
[('book', 3), ('address', 1), ('market', 1), ('demand', 1), ('novice', 1), ('net', 1), ('programmer', 1), ('learn', 1), ('build', 1), ('networked', 1), ('application', 1), ('subject', 1), ('often', 1), ('omitted', 1), ('traditional', 1), ('computer', 1), ('programming', 1), ('brings', 1), ('cutting', 1), ('edge', 1), ('technology', 1), ('gps', 1)]
[('first', 1), ('book', 1), ('cover', 1), ('db', 1), ('programming', 1), ('comprehensive', 1), ('detail', 1), ('reader', 1), ('briefed', 1), ('topic', 1), ('necessary', 1), ('begin', 1), ('using', 1), ('production', 1), ('environment', 1), ('including', 1), ('installation', 1), ('configuration', 1), ('querying', 1), ('managing', 1), ('object', 1)]
[('focus', 2), ('flash', 2), ('cover', 1), ('dozen', 1), ('complex', 1), ('application', 1), ('real', 1), ('world', 1), ('teaching', 1), ('technology', 1), ('graphical', 1), ('aspect', 1), ('example', 1), ('presented', 1), ('creative', 1), ('edge', 1), ('book', 1), ('covering', 1), ('integration', 1), ('php', 1), ('plus', 1), ('mysql', 1)]
[('book', 2), ('perl', 2), ('condensed', 1), ('readable', 1), ('style', 1), ('delivers', 1), ('tremendous', 1), ('value', 1), ('offer', 1), ('resource', 1), ('focused', 1), ('pragmatic', 1), ('industrial', 1), ('solution', 1), ('competing', 1), ('best', 1), ('seller', 1), ('older', 1), ('quirkier', 1), ('shallower', 1), ('treatment', 1)]
[('machine', 2), ('use', 2), ('even', 2), ('take', 1), ('control', 1), ('building', 1), ('production', 1), ('process', 1), ('computer', 1), ('run', 1), ('tool', 1), ('safely', 1), ('build', 1), ('durable', 1), ('garage', 1), ('startup', 1), ('company', 1), ('book', 1), ('provides', 1), ('best', 1), ('practice', 1), ('laser', 1), ('cutter', 1)]
[('arduino', 2), ('software', 2), ('see', 1), ('using', 1), ('freertos', 1), ('libopencm', 1), ('instead', 1), ('environment', 1), ('help', 1), ('develop', 1), ('multi', 1), ('tasking', 1), ('application', 1), ('go', 1), ('beyond', 1), ('norm', 1), ('updated', 1), ('version', 1), ('includes', 1), ('expanded', 1), ('coverage', 1), ('setup', 1), ('window', 1)]
[('blockchain', 2), ('similar', 1), ('internet', 1), ('promise', 1), ('revolutionize', 1), ('world', 1), ('reforming', 1), ('current', 1), ('business', 1), ('model', 1), ('book', 1), ('beginner', 1), ('friendly', 1), ('guide', 1), ('teen', 1), ('looking', 1), ('build', 1), ('basic', 1), ('foundation', 1), ('technology', 1), ('nbsp', 1)]
[('library', 2), ('lt', 1), ('gt', 1), ('leverage', 1), ('power', 1), ('svelte', 1), ('quickly', 1), ('produce', 1), ('foundation', 1), ('framework', 1), ('agnostic', 1), ('component', 1), ('extend', 1), ('develop', 1), ('time', 1), ('project', 1), ('oriented', 1), ('book', 1), ('simplifies', 1), ('setting', 1), ('skeleton', 1)]
[('sql', 3), ('server', 2), ('data', 2), ('connection', 2), ('use', 1), ('graph', 1), ('table', 1), ('feature', 1), ('azure', 1), ('introduced', 1), ('refined', 1), ('book', 1), ('show', 1), ('create', 1), ('structure', 1), ('capture', 1), ('complex', 1), ('item', 1)]
[('foundational', 2), ('component', 2), ('come', 1), ('managing', 1), ('cybersecurity', 1), ('organization', 1), ('tussle', 1), ('basic', 1), ('practitioner', 1), ('guide', 1), ('lay', 1), ('real', 1), ('client', 1), ('example', 1), ('pitfall', 1), ('avoid', 1), ('plethora', 1)]
[('writing', 2), ('cryptographic', 2), ('algorithm', 2), ('develop', 1), ('strong', 1), ('skill', 1), ('security', 1), ('scheme', 1), ('module', 1), ('using', 1), ('new', 1), ('feature', 1), ('nbsp', 1), ('book', 1), ('teach', 1), ('right', 1), ('method', 1), ('advanced', 1), ('elliptic', 1), ('curve', 1)]
[('comprehensive', 1), ('guide', 1), ('individual', 1), ('preparing', 1), ('certified', 1), ('information', 1), ('system', 1), ('security', 1), ('professional', 1), ('cissp', 1), ('exam', 1), ('book', 1), ('main', 1), ('focus', 1), ('provide', 1), ('reader', 1), ('wealth', 1), ('practice', 1), ('question', 1), ('expert', 1), ('tip', 1), ('help', 1), ('pas', 1)]
[('rely', 1), ('practical', 1), ('comprehensive', 1), ('guide', 1), ('significantly', 1), ('improve', 1), ('cyber', 1), ('safety', 1), ('data', 1), ('privacy', 1), ('book', 1), ('written', 1), ('expressly', 1), ('regular', 1), ('everyday', 1), ('though', 1), ('even', 1), ('technically', 1), ('savvy', 1), ('reader', 1), ('find', 1), ('many', 1), ('useful', 1), ('tip', 1)]
[('provide', 1), ('tactile', 1), ('experience', 1), ('customer', 1), ('even', 1), ('need', 1), ('physically', 1), ('visit', 1), ('store', 1), ('optimizing', 1), ('conventional', 1), ('production', 1), ('process', 1), ('eradicating', 1), ('tenuous', 1), ('task', 1), ('nobody', 1), ('really', 1), ('like', 1), ('reevaluate', 1), ('part', 1)]
[('take', 2), ('chapter', 2), ('book', 1), ('provides', 1), ('intermediate', 1), ('rail', 1), ('user', 1), ('essential', 1), ('learning', 1), ('aid', 1), ('higher', 1), ('level', 1), ('teaching', 1), ('countless', 1), ('real', 1), ('world', 1), ('technique', 1), ('via', 1), ('series', 1), ('practical', 1), ('project', 1), ('based', 1), ('reader', 1)]
[('office', 3), ('ipad', 3), ('microsoft', 2), ('learn', 1), ('tip', 1), ('trick', 1), ('around', 1), ('gotchas', 1), ('pro', 1), ('book', 1), ('show', 1), ('become', 1), ('productive', 1), ('quickly', 1), ('avoiding', 1), ('annoyance', 1), ('confusion', 1)]
[('php', 2), ('server', 1), ('side', 1), ('scripting', 1), ('language', 1), ('enables', 1), ('develop', 1), ('dynamic', 1), ('site', 1), ('engage', 1), ('user', 1), ('way', 1), ('simply', 1), ('possible', 1), ('using', 1), ('html', 1), ('cs', 1), ('absolute', 1), ('beginner', 1), ('take', 1), ('practical', 1), ('approach', 1), ('teaching', 1), ('build', 1)]
[('printer', 2), ('maintaining', 1), ('troubleshooting', 1), ('charles', 1), ('bell', 1), ('guide', 1), ('keeping', 1), ('running', 1), ('preventive', 1), ('maintenance', 1), ('repair', 1), ('diagnosing', 1), ('solving', 1), ('problem', 1), ('printing', 1), ('rsquo', 1), ('bought', 1), ('built', 1)]
[('facing', 1), ('challenging', 1), ('salesforce', 1), ('problem', 1), ('say', 1), ('relating', 1), ('automation', 1), ('configuration', 1), ('formulation', 1), ('reporting', 1), ('quite', 1), ('crack', 1), ('maybe', 1), ('hoping', 1), ('infuse', 1), ('creativity', 1), ('solution', 1), ('design', 1), ('strategy', 1), ('solve', 1)]
[('apple', 3), ('apps', 2), ('developing', 1), ('rsquo', 1), ('broadening', 1), ('platform', 1), ('device', 1), ('exciting', 1), ('topic', 1), ('day', 1), ('created', 1), ('swift', 1), ('programming', 1), ('language', 1), ('build', 1), ('state', 1), ('art', 1), ('using', 1), ('latest', 1), ('technology', 1), ('page', 1), ('book', 1), ('author', 1), ('scott', 1)]
[('angularjs', 3), ('step', 2), ('framework', 2), ('beginning', 1), ('guide', 1), ('learning', 1), ('powerful', 1), ('javascript', 1), ('respected', 1), ('innovative', 1), ('building', 1), ('properly', 1), ('structured', 1), ('easy', 1), ('develop', 1), ('web', 1), ('application', 1), ('book', 1)]
[('application', 3), ('includes', 2), ('net', 2), ('object', 1), ('oriented', 1), ('programming', 1), ('concept', 1), ('dedicated', 1), ('using', 1), ('vb', 1), ('create', 1), ('asp', 1), ('instead', 1), ('window', 1), ('introduction', 1), ('visual', 1), ('studio', 1), ('coding', 1), ('sample', 1)]
[('rich', 2), ('internet', 2), ('potentially', 1), ('huge', 1), ('market', 1), ('due', 1), ('application', 1), ('growing', 1), ('popularity', 1), ('microsoft', 1), ('office', 1), ('net', 1), ('development', 1), ('popular', 1), ('book', 1), ('show', 1), ('use', 1), ('xml', 1), ('flash', 1), ('integrate', 1), ('m', 1), ('technology', 1), ('simple', 1)]
[('gaim', 3), ('project', 2), ('author', 1), ('maintainer', 1), ('provides', 1), ('excellent', 1), ('insight', 1), ('application', 1), ('practice', 1), ('building', 1), ('extending', 1), ('learning', 1), ('gtk', 1), ('toolkit', 1), ('network', 1), ('protocol', 1), ('tutorial', 1), ('based', 1), ('o', 1), ('sourceforge', 1)]
[('ajax', 3), ('book', 1), ('follows', 1), ('extremely', 1), ('successful', 1), ('foundation', 1), ('title', 1), ('take', 1), ('reader', 1), ('detailed', 1), ('journey', 1), ('technology', 1), ('show', 1), ('integrate', 1), ('microsoft', 1), ('popular', 1), ('net', 1), ('framework', 1), ('produce', 1)]
[('dns', 3), ('key', 2), ('unravels', 1), ('mystery', 1), ('offering', 1), ('insight', 1), ('origin', 1), ('evolution', 1), ('concept', 1), ('domain', 1), ('name', 1), ('zone', 1), ('file', 1), ('cover', 1), ('world', 1), ('popular', 1), ('implementation', 1), ('bind', 1), ('discus', 1), ('topic', 1), ('security', 1), ('apis', 1)]
[('first', 2), ('book', 2), ('eclipse', 2), ('standard', 2), ('enterprise', 1), ('development', 1), ('using', 1), ('ee', 1), ('tool', 1), ('jst', 1), ('market', 1), ('based', 1), ('latest', 1), ('hot', 1), ('topic', 1)]
[('ejb', 3), ('lead', 2), ('first', 1), ('book', 1), ('market', 1), ('definitive', 1), ('guide', 1), ('major', 1), ('innovation', 1), ('new', 1), ('persistence', 1), ('apioffers', 1), ('unparalleled', 1), ('insight', 1), ('expertise', 1), ('authored', 1), ('co', 1), ('spec', 1), ('mike', 1), ('keith', 1)]
[('hibernate', 2), ('application', 2), ('design', 2), ('first', 1), ('market', 1), ('complete', 1), ('coverage', 1), ('real', 1), ('world', 1), ('tip', 1), ('comprehensive', 1), ('reference', 1), ('object', 1), ('relational', 1), ('mapping', 1), ('strategy', 1), ('integrated', 1), ('approach', 1), ('database', 1), ('java', 1)]
[('data', 2), ('parsing', 2), ('perl', 2), ('first', 1), ('book', 1), ('focused', 1), ('solely', 1), ('task', 1), ('commonly', 1), ('deemed', 1), ('greatest', 1), ('strength', 1), ('couple', 1), ('introduction', 1), ('concept', 1), ('technique', 1), ('practical', 1), ('instruction', 1), ('regarding', 1), ('key', 1), ('module', 1), ('capable', 1), ('facilitating', 1)]
[('author', 2), ('first', 1), ('book', 1), ('provide', 1), ('comprehensive', 1), ('deeply', 1), ('practical', 1), ('coverage', 1), ('major', 1), ('new', 1), ('s', 1), ('feature', 1), ('lead', 1), ('tom', 1), ('rizzo', 1), ('key', 1), ('member', 1), ('sql', 1), ('server', 1), ('team', 1), ('microsoft', 1), ('respected', 1), ('blogger', 1), ('get', 1), ('dba', 1), ('developer', 1)]
[('net', 2), ('sql', 2), ('server', 2), ('first', 1), ('book', 1), ('market', 1), ('show', 1), ('effectively', 1), ('exploit', 1), ('new', 1), ('capability', 1), ('database', 1), ('broad', 1), ('audience', 1), ('strong', 1), ('appeal', 1), ('developer', 1), ('vb', 1), ('programmer', 1), ('provides', 1)]
[('flash', 2), ('million', 1), ('developer', 1), ('worldwide', 1), ('huge', 1), ('potential', 1), ('market', 1), ('book', 1), ('focusing', 1), ('exclusively', 1), ('actionscript', 1), ('component', 1), ('compatible', 1), ('next', 1), ('version', 1), ('released', 1), ('later', 1), ('year', 1)]
[('avoids', 1), ('proof', 1), ('concept', 1), ('example', 1), ('favor', 1), ('teaching', 1), ('reader', 1), ('produce', 1), ('coded', 1), ('secure', 1), ('cgi', 1), ('application', 1), ('stand', 1), ('demand', 1), ('placed', 1), ('potentially', 1), ('hostile', 1), ('environment', 1), ('internet', 1), ('take', 1), ('holistic', 1)]
[('first', 1), ('book', 1), ('demonstrate', 1), ('full', 1), ('express', 1), ('suite', 1), ('tool', 1), ('point', 1), ('reader', 1), ('developer', 1), ('effective', 1), ('low', 1), ('budget', 1), ('database', 1), ('application', 1), ('non', 1), ('profit', 1), ('web', 1), ('site', 1), ('commercial', 1), ('tactical', 1), ('solution', 1), ('capture', 1), ('wave', 1)]
[('ntp', 2), ('depth', 1), ('look', 1), ('aspect', 1), ('take', 1), ('mystery', 1), ('fear', 1), ('working', 1), ('written', 1), ('entertaining', 1), ('multi', 1), ('faceted', 1), ('voice', 1)]
[('oracle', 3), ('best', 2), ('proven', 1), ('seller', 1), ('recognized', 1), ('expert', 1), ('world', 1), ('book', 1), ('written', 1), ('defines', 1), ('really', 1), ('powerful', 1), ('inspired', 1), ('thousand', 1), ('question', 1), ('tom', 1), ('answered', 1)]
[('oracle', 2), ('database', 2), ('first', 1), ('book', 1), ('market', 1), ('cover', 1), ('building', 1), ('high', 1), ('performance', 1), ('java', 1), ('application', 1), ('using', 1), ('latest', 1), ('version', 1), ('jdbc', 1), ('api', 1), ('promotes', 1), ('explains', 1), ('anti', 1), ('black', 1), ('box', 1), ('approach', 1)]
[('new', 2), ('difficult', 1), ('throw', 1), ('existing', 1), ('code', 1), ('start', 1), ('technology', 1), ('arrives', 1), ('situation', 1), ('microsoft', 1), ('net', 1), ('represents', 1), ('improved', 1), ('way', 1), ('developing', 1), ('software', 1), ('window', 1), ('platform', 1)]
[('podcasting', 2), ('famous', 2), ('book', 2), ('potentially', 1), ('huge', 1), ('market', 1), ('starting', 1), ('really', 1), ('podcasters', 1), ('include', 1), ('paris', 1), ('hilton', 1), ('democrat', 1), ('john', 1), ('edward', 1), ('bbc', 1), ('written', 1), ('pioneer', 1), ('show', 1)]
[('good', 2), ('code', 2), ('book', 1), ('provides', 1), ('specific', 1), ('guideline', 1), ('written', 1), ('net', 1), ('context', 1), ('content', 1), ('based', 1), ('award', 1), ('winning', 1), ('material', 1), ('author', 1), ('presented', 1), ('conference', 1), ('throughout', 1), ('europe', 1), ('debate', 1)]
[('book', 2), ('business', 2), ('intelligence', 2), ('concise', 1), ('yet', 1), ('comprehensive', 1), ('introduction', 1), ('sql', 1), ('server', 1), ('quickest', 1), ('path', 1), ('seeing', 1), ('bi', 1), ('forest', 1), ('whole', 1), ('understanding', 1), ('tree', 1), ('within', 1)]
[('book', 1), ('cofounder', 1), ('lead', 1), ('developer', 1), ('james', 1), ('gardner', 1), ('brings', 1), ('comprehensive', 1), ('introduction', 1), ('pylon', 1), ('web', 1), ('framework', 1), ('us', 1), ('best', 1), ('ruby', 1), ('python', 1), ('perl', 1), ('emerging', 1), ('wsgi', 1), ('standard', 1), ('provide', 1), ('structure', 1), ('flexibility', 1)]
[('silverlight', 2), ('accelerated', 1), ('teach', 1), ('speed', 1), ('latest', 1), ('version', 1), ('quickly', 1), ('efficiently', 1), ('book', 1), ('assumes', 1), ('already', 1), ('comfortable', 1), ('basic', 1), ('net', 1), ('coding', 1), ('wpf', 1), ('build', 1), ('existing', 1)]
[('special', 1), ('edition', 1)]
[('silverlight', 2), ('full', 1), ('color', 1), ('graphic', 1), ('screenshots', 1), ('throughout', 1), ('make', 1), ('pro', 1), ('invaluable', 1), ('reference', 1), ('professional', 1), ('developer', 1), ('wanting', 1), ('discover', 1), ('new', 1), ('feature', 1), ('author', 1), ('matthew', 1), ('macdonald', 1), ('expert', 1), ('advice', 1), ('guide', 1)]
[('netbooks', 1), ('lightweight', 1), ('easy', 1), ('use', 1), ('best', 1), ('low', 1), ('price', 1), ('whether', 1), ('already', 1), ('netbook', 1), ('considering', 1), ('purchasing', 1), ('good', 1), ('news', 1), ('rsquo', 1), ('end', 1), ('throw', 1), ('free', 1), ('open', 1), ('source', 1), ('cloud', 1), ('computing', 1)]
[('book', 2), ('anthology', 1), ('effective', 1), ('database', 1), ('management', 1), ('technique', 1), ('representing', 1), ('collective', 1), ('wisdom', 1), ('oaktable', 1), ('network', 1), ('emphasis', 1), ('upon', 1), ('performance', 1), ('branching', 1), ('security', 1), ('national', 1), ('language', 1), ('issue', 1)]
[('hibernate', 1), ('continues', 1), ('popular', 1), ('box', 1), ('framework', 1), ('solution', 1), ('java', 1), ('persistence', 1), ('data', 1), ('database', 1), ('accessibility', 1), ('technique', 1), ('pattern', 1), ('used', 1), ('commerce', 1), ('based', 1), ('web', 1), ('application', 1), ('heavy', 1), ('duty', 1), ('transactional', 1), ('system', 1)]
[('flash', 2), ('actionscript', 1), ('developer', 1), ('designer', 1), ('work', 1), ('book', 1), ('learn', 1), ('core', 1), ('concept', 1), ('using', 1), ('open', 1), ('source', 1), ('away', 1), ('engine', 1), ('primary', 1), ('tool', 1), ('mastered', 1)]
[('applescript', 4), ('english', 1), ('easy', 1), ('understand', 1), ('scripting', 1), ('language', 1), ('built', 1), ('every', 1), ('mac', 1), ('automate', 1), ('hundred', 1), ('able', 1), ('application', 1), ('performing', 1), ('task', 1), ('large', 1), ('small', 1), ('complex', 1), ('simple', 1), ('learn', 1)]
[('tool', 2), ('step', 2), ('explore', 1), ('world', 1), ('open', 1), ('source', 1), ('flash', 1), ('discover', 1), ('available', 1), ('learn', 1), ('identify', 1), ('need', 1), ('best', 1), ('fit', 1), ('workflow', 1), ('walk', 1), ('throughs', 1), ('guide', 1), ('development', 1), ('popular', 1)]
[('take', 2), ('solution', 2), ('book', 1), ('flex', 1), ('developer', 1), ('comfortable', 1), ('basic', 1), ('want', 1), ('knowledge', 1), ('next', 1), ('level', 1), ('provides', 1), ('library', 1), ('common', 1), ('problem', 1), ('working', 1), ('example', 1)]
[('rail', 3), ('ruby', 2), ('job', 2), ('continues', 1), ('grow', 1), ('coming', 1), ('online', 1), ('require', 1), ('effectively', 1), ('develop', 1), ('web', 1), ('tier', 1), ('beyond', 1), ('framework', 1), ('still', 1), ('proven', 1), ('tool', 1), ('ides', 1), ('done', 1)]
[('browser', 3), ('silverlight', 1), ('lightweight', 1), ('plug', 1), ('free', 1), ('code', 1), ('traditional', 1), ('confines', 1), ('rule', 1), ('changing', 1), ('groundbreaking', 1), ('technology', 1), ('allows', 1), ('run', 1), ('rich', 1), ('client', 1), ('application', 1), ('right', 1), ('inside', 1), ('even', 1)]
[('database', 4), ('assuming', 1), ('basic', 1), ('knowledge', 1), ('beginning', 1), ('teach', 1), ('fundamental', 1), ('technology', 1), ('programming', 1), ('reader', 1), ('need', 1), ('quickly', 1), ('become', 1), ('highly', 1), ('proficient', 1), ('user', 1), ('application', 1), ('developer', 1)]
[('ruby', 3), ('revitalized', 1), ('rail', 1), ('language', 1), ('continues', 1), ('grow', 1), ('popularity', 1), ('book', 1), ('necessary', 1), ('fill', 1), ('demand', 1), ('classic', 1), ('kind', 1), ('required', 1), ('reading', 1), ('programmer', 1), ('already', 1), ('mastered', 1), ('basic', 1), ('want', 1)]
[('sql', 3), ('database', 2), ('server', 2), ('fundamental', 1), ('language', 1), ('programming', 1), ('professional', 1), ('user', 1), ('need', 1), ('convenient', 1), ('single', 1), ('source', 1), ('information', 1), ('advice', 1), ('book', 1), ('provides', 1), ('clearly', 1), ('comprehensively', 1)]
[('web', 2), ('site', 2), ('first', 1), ('book', 1), ('dedicated', 1), ('textpattern', 1), ('development', 1), ('popular', 1), ('framework', 1), ('allows', 1), ('user', 1), ('build', 1), ('standard', 1), ('compliant', 1), ('professional', 1), ('basic', 1), ('knowledge', 1), ('underlying', 1), ('technology', 1), ('written', 1), ('five', 1)]
[('whether', 1), ('flex', 1), ('beginner', 1), ('intermediate', 1), ('user', 1), ('book', 1), ('provides', 1), ('necessary', 1), ('information', 1), ('help', 1), ('develop', 1), ('expert', 1), ('using', 1), ('practical', 1), ('hand', 1), ('approach', 1), ('illustrates', 1), ('exactly', 1), ('create', 1), ('robust', 1), ('scalable', 1), ('enterprise', 1), ('grade', 1)]
[('movie', 3), ('maker', 2), ('new', 2), ('window', 1), ('live', 1), ('small', 1), ('powerful', 1), ('editing', 1), ('application', 1), ('microsoft', 1), ('complete', 1), ('rewrite', 1), ('old', 1), ('software', 1), ('audience', 1), ('mind', 1), ('focus', 1), ('edition', 1), ('giving', 1), ('power', 1), ('quickly', 1)]
[('digital', 2), ('advent', 1), ('photography', 1), ('able', 1), ('post', 1), ('process', 1), ('picture', 1), ('properly', 1), ('become', 1), ('art', 1), ('apprentice', 1), ('sebastian', 1), ('montabone', 1), ('computer', 1), ('vision', 1), ('expert', 1), ('want', 1), ('use', 1), ('camera', 1)]
[('system', 2), ('day', 2), ('engineer', 2), ('time', 1), ('go', 1), ('administrator', 1), ('presented', 1), ('increasingly', 1), ('complicated', 1), ('challenge', 1), ('early', 1), ('team', 1), ('might', 1), ('look', 1), ('administer', 1), ('hundred', 1), ('thousand', 1)]
[('product', 3), ('take', 2), ('show', 1), ('develop', 1), ('blow', 1), ('user', 1), ('away', 1), ('market', 1), ('share', 1), ('competitor', 1), ('book', 1), ('explain', 1), ('principle', 1), ('behind', 1), ('agile', 1), ('development', 1), ('help', 1), ('designer', 1), ('developer', 1), ('architect', 1)]
[('book', 1), ('provides', 1), ('practical', 1), ('guidance', 1), ('adopting', 1), ('high', 1), ('velocity', 1), ('continuous', 1), ('delivery', 1), ('process', 1), ('create', 1), ('reliable', 1), ('scalable', 1), ('software', 1), ('service', 1), ('saas', 1), ('solution', 1), ('designed', 1), ('built', 1), ('using', 1), ('microservice', 1), ('architecture', 1), ('deployed', 1)]
[('matlab', 2), ('learn', 1), ('fromstate', 1), ('art', 1), ('example', 1), ('robotics', 1), ('motor', 1), ('detection', 1), ('filter', 1), ('chemicalprocesses', 1), ('aircraft', 1), ('spacecraft', 1), ('practical', 1), ('reference', 1), ('industryengineers', 1), ('using', 1), ('solve', 1), ('everyday', 1), ('problem', 1), ('recipe', 1)]
[('microsoft', 2), ('book', 1), ('authoritative', 1), ('source', 1), ('implementing', 1), ('continuous', 1), ('delivery', 1), ('practice', 1), ('using', 1), ('visual', 1), ('studio', 1), ('tfs', 1), ('mvp', 1), ('author', 1), ('mathias', 1), ('olausson', 1), ('jakob', 1), ('ehn', 1), ('translate', 1), ('theory', 1), ('behind', 1), ('methodology', 1), ('show', 1), ('step', 1)]
[('book', 2), ('concise', 1), ('stop', 1), ('desk', 1), ('reference', 1), ('synopsis', 1), ('basic', 1), ('knowledge', 1), ('skill', 1), ('cisco', 1), ('certification', 1), ('prep', 1), ('beginning', 1), ('experienced', 1), ('network', 1), ('engineer', 1), ('tasked', 1), ('building', 1), ('lan', 1), ('wan', 1), ('data', 1), ('center', 1), ('connection', 1), ('lay', 1)]
[('cloud', 3), ('google', 2), ('platform', 2), ('building', 1), ('next', 1), ('big', 1), ('thing', 1), ('show', 1), ('take', 1), ('advantage', 1), ('technology', 1), ('build', 1), ('kind', 1), ('hosted', 1), ('software', 1), ('service', 1), ('public', 1), ('private', 1), ('consumption', 1), ('whether', 1), ('need', 1)]
[('create', 1), ('game', 1), ('window', 1), ('phone', 1), ('market', 1), ('heavy', 1), ('emphasis', 1), ('placed', 1), ('optimization', 1), ('good', 1), ('design', 1), ('decision', 1), ('introduced', 1), ('key', 1), ('unity', 1), ('concept', 1), ('functionality', 1), ('weigh', 1), ('pro', 1), ('con', 1), ('various', 1), ('possibility', 1)]
[('asp', 2), ('net', 2), ('web', 2), ('api', 2), ('code', 2), ('action', 2), ('practical', 1), ('provides', 1), ('hand', 1), ('focused', 1), ('demonstration', 1), ('beginning', 1), ('writing', 1), ('working', 1), ('order', 1), ('see', 1), ('best', 1), ('practice', 1), ('concept', 1), ('book', 1)]
[('learn', 2), ('raspberry', 2), ('pi', 2), ('python', 2), ('program', 2), ('programming', 1), ('show', 1), ('nifty', 1), ('new', 1), ('computer', 1), ('make', 1), ('web', 1), ('spider', 1), ('weather', 1), ('station', 1), ('medium', 1), ('server', 1), ('hand', 1)]
[('html', 2), ('game', 2), ('development', 1), ('insight', 1), ('trench', 1), ('collection', 1), ('tip', 1), ('trick', 1), ('hack', 1), ('advice', 1), ('straight', 1), ('professional', 1), ('developer', 1), ('chapter', 1), ('include', 1), ('unique', 1), ('cutting', 1), ('edge', 1), ('essential', 1), ('technique', 1), ('creating', 1)]
[('web', 3), ('asp', 2), ('net', 2), ('api', 2), ('pro', 1), ('show', 1), ('build', 1), ('flexible', 1), ('extensible', 1), ('service', 1), ('run', 1), ('seamlessly', 1), ('range', 1), ('operating', 1), ('system', 1), ('device', 1), ('desktop', 1), ('tablet', 1), ('smart', 1), ('phone', 1), ('even', 1), ('one', 1), ('know', 1), ('today', 1), ('new', 1)]
[('android', 2), ('advanced', 2), ('leading', 1), ('publisher', 1), ('book', 1), ('apress', 1), ('expert', 1), ('give', 1), ('technique', 1), ('customizing', 1), ('view', 1), ('control', 1), ('layout', 1), ('learn', 1), ('develop', 1), ('apps', 1), ('record', 1), ('time', 1), ('using', 1), ('json', 1), ('form', 1), ('processing', 1), ('baa', 1), ('backend', 1)]
[('asp', 2), ('net', 2), ('rsquo', 1), ('heard', 1), ('mvc', 1), ('exciting', 1), ('new', 1), ('approach', 1), ('developing', 1), ('web', 1), ('application', 1), ('taken', 1), ('development', 1), ('world', 1), ('storm', 1), ('last', 1), ('year', 1), ('mature', 1), ('technology', 1), ('suitable', 1), ('mainstream', 1), ('use', 1), ('adoption', 1)]
[('window', 3), ('paradigm', 2), ('beginning', 1), ('store', 1), ('application', 1), ('development', 1), ('ndash', 1), ('html', 1), ('javascript', 1), ('edition', 1), ('introduces', 1), ('modern', 1), ('app', 1), ('design', 1), ('new', 1), ('programming', 1), ('model', 1), ('developed', 1), ('around', 1), ('learn', 1), ('build', 1), ('rich', 1)]
[('pro', 1), ('team', 1), ('foundation', 1), ('service', 1), ('give', 1), ('jump', 1), ('start', 1), ('microsoft', 1), ('rsquo', 1), ('cloud', 1), ('based', 1), ('application', 1), ('lifecycle', 1), ('management', 1), ('platform', 1), ('taking', 1), ('different', 1), ('stage', 1), ('software', 1), ('development', 1), ('every', 1), ('project', 1), ('need', 1), ('plan', 1), ('develop', 1), ('test', 1)]
[('android', 4), ('sdk', 2), ('learn', 1), ('app', 1), ('development', 1), ('hand', 1), ('tutorial', 1), ('useful', 1), ('reference', 1), ('quickly', 1), ('speed', 1), ('master', 1), ('java', 1), ('need', 1), ('apps', 1), ('offer', 1), ('powerful', 1), ('feature', 1), ('book', 1)]
[('rsquo', 1), ('creation', 1), ('node', 1), ('j', 1), ('grown', 1), ('powerful', 1), ('increasingly', 1), ('popular', 1), ('asynchronous', 1), ('development', 1), ('framework', 1), ('creating', 1), ('highly', 1), ('scalable', 1), ('network', 1), ('application', 1), ('using', 1), ('javascript', 1), ('respected', 1), ('company', 1), ('dow', 1), ('jones', 1), ('linkedin', 1)]
[('pointer', 3), ('advanced', 2), ('provides', 1), ('resource', 1), ('professional', 1), ('student', 1), ('needing', 1), ('depth', 1), ('hand', 1), ('coverage', 1), ('basic', 1), ('feature', 1), ('goal', 1), ('help', 1), ('programmer', 1), ('wielding', 1), ('full', 1), ('potential', 1), ('spite', 1)]
[('hadoop', 3), ('cover', 2), ('pro', 1), ('apache', 1), ('second', 1), ('edition', 1), ('brings', 1), ('speed', 1), ('framework', 1), ('big', 1), ('data', 1), ('revised', 1), ('book', 1), ('latest', 1), ('development', 1), ('yarn', 1), ('aka', 1), ('mapreduce', 1), ('new', 1), ('hdfs', 1), ('high', 1), ('availability', 1), ('feature', 1)]
[('nan', 1)]
[('glasshaus', 1)]
[('javafx', 3), ('introduction', 2), ('example', 2), ('show', 1), ('use', 1), ('existing', 1), ('java', 1), ('skill', 1), ('create', 1), ('graphically', 1), ('exciting', 1), ('client', 1), ('application', 1), ('platform', 1), ('book', 1), ('new', 1), ('improved', 1), ('edition', 1)]
[('dart', 1), ('absolute', 1), ('beginner', 1), ('enables', 1), ('individual', 1), ('background', 1), ('programming', 1), ('create', 1), ('web', 1), ('apps', 1), ('learning', 1), ('fundamental', 1), ('software', 1), ('development', 1), ('cutting', 1), ('edge', 1), ('language', 1), ('easily', 1), ('digested', 1), ('chapter', 1), ('comprehensive', 1), ('enough', 1)]
[('spring', 4), ('pro', 2), ('update', 1), ('perennial', 1), ('bestseller', 1), ('latest', 1), ('framework', 1), ('offer', 1), ('fourth', 1), ('edition', 1), ('popular', 1), ('book', 1), ('far', 1), ('comprehensive', 1), ('definitive', 1), ('treatment', 1), ('available', 1)]
[('reference', 3), ('cs', 2), ('syntax', 2), ('style', 2), ('sheet', 2), ('quick', 1), ('page', 1), ('cascading', 1), ('specification', 1), ('language', 1), ('present', 1), ('essential', 1), ('organized', 1), ('format', 1), ('used', 1), ('handy', 1), ('rsquo', 1)]
[('nbsp', 5), ('code', 3), ('run', 2), ('python', 2), ('discover', 1), ('clean', 1), ('way', 1), ('write', 1), ('book', 1), ('tutorial', 1), ('oriented', 1), ('detailed', 1), ('example', 1), ('convert', 1), ('existing', 1), ('compatible', 1), ('reliably', 1)]
[('machine', 3), ('learning', 2), ('take', 1), ('deep', 1), ('dive', 1), ('concept', 1), ('apply', 1), ('contemporary', 1), ('business', 1), ('management', 1), ('learn', 1), ('technique', 1), ('used', 1), ('solve', 1), ('fundamental', 1), ('complex', 1), ('problem', 1), ('society', 1), ('industry', 1)]
[('data', 5), ('science', 4), ('learn', 2), ('technology', 2), ('stack', 2), ('build', 1), ('perform', 1), ('good', 1), ('repeatable', 1), ('method', 1), ('turn', 1), ('lake', 1), ('business', 1), ('asset', 1), ('demonstrated', 1), ('practical', 1), ('built', 1)]
[('react', 2), ('native', 2), ('discover', 1), ('use', 1), ('real', 1), ('world', 1), ('scratch', 1), ('book', 1), ('show', 1), ('offer', 1), ('came', 1), ('going', 1), ('nbsp', 1), ('begin', 1), ('solid', 1), ('foundation', 1), ('practical', 1), ('knowledge', 1), ('build', 1)]
[('software', 3), ('understand', 1), ('big', 1), ('picture', 1), ('development', 1), ('process', 1), ('use', 1), ('every', 1), ('day', 1), ('operating', 1), ('system', 1), ('application', 1), ('document', 1), ('editing', 1), ('program', 1), ('home', 1), ('banking', 1), ('wondered', 1), ('creates', 1), ('created', 1), ('book', 1)]
[('book', 2), ('flash', 2), ('support', 1), ('new', 1), ('version', 1), ('released', 1), ('later', 1), ('year', 1), ('date', 1), ('market', 1), ('cover', 1), ('interface', 1), ('design', 1), ('depth', 1), ('includes', 1), ('complete', 1), ('example', 1), ('site', 1), ('show', 1), ('reader', 1)]
[('wireless', 2), ('java', 2), ('topic', 2), ('development', 1), ('platform', 1), ('interest', 1), ('still', 1), ('hot', 1), ('show', 1), ('javaone', 1), ('empowered', 1), ('info', 1), ('gui', 1), ('graphic', 1), ('sound', 1), ('music', 1), ('enables', 1), ('beginning', 1), ('developer', 1), ('build', 1), ('game', 1), ('cell', 1), ('phone', 1)]
[('book', 2), ('technology', 2), ('huge', 1), ('interest', 1), ('ajax', 1), ('atlas', 1), ('demystify', 1), ('show', 1), ('apply', 1), ('first', 1), ('published', 1), ('revolutionary', 1), ('new', 1), ('written', 1), ('experienced', 1), ('net', 1), ('author', 1), ('working', 1), ('close', 1)]
[('application', 2), ('imparts', 1), ('good', 1), ('security', 1), ('doctrine', 1), ('methodology', 1), ('strategy', 1), ('focused', 1), ('chapter', 1), ('able', 1), ('used', 1), ('stand', 1), ('alone', 1), ('particular', 1), ('offer', 1), ('user', 1), ('selection', 1), ('resource', 1), ('website', 1), ('mailing', 1), ('list', 1)]
[('java', 2), ('first', 1), ('book', 1), ('market', 1), ('metadata', 1), ('specific', 1), ('recipe', 1), ('related', 1), ('jdbc', 1), ('use', 1), ('mysql', 1), ('oracle', 1), ('database', 1), ('standard', 1), ('compliant', 1), ('new', 1), ('ee', 1), ('provides', 1), ('cut', 1), ('paste', 1), ('code', 1), ('template', 1), ('immediately', 1), ('customized', 1)]
[('world', 2), ('warcraft', 2), ('play', 1), ('chance', 1), ('know', 1), ('deadly', 1), ('bos', 1), ('mod', 1), ('widely', 1), ('downloaded', 1), ('modification', 1), ('available', 1), ('considered', 1), ('required', 1), ('software', 1), ('many', 1), ('professional', 1), ('raid', 1), ('guild', 1), ('arguably', 1)]
[('javafx', 2), ('open', 1), ('source', 1), ('platform', 1), ('offer', 1), ('java', 1), ('based', 1), ('approach', 1), ('rich', 1), ('internet', 1), ('application', 1), ('ria', 1), ('development', 1), ('alternative', 1), ('adobe', 1), ('flash', 1), ('flex', 1), ('microsoft', 1), ('silverlight', 1), ('million', 1), ('downloads', 1), ('poised', 1), ('significant', 1), ('player', 1)]
[('silverlight', 3), ('introducing', 1), ('brings', 1), ('speed', 1), ('version', 1), ('quickly', 1), ('efficiently', 1), ('book', 1), ('build', 1), ('understanding', 1), ('basic', 1), ('net', 1), ('coding', 1), ('wpf', 1), ('allowing', 1), ('journey', 1), ('proficiency', 1), ('quick', 1)]
[('design', 2), ('tool', 2), ('important', 2), ('silverlight', 1), ('difference', 1), ('compared', 1), ('used', 1), ('create', 1), ('ajax', 1), ('javascript', 1), ('functionality', 1), ('robert', 1), ('lair', 1), ('take', 1), ('tour', 1), ('including', 1), ('microsoft', 1), ('expression', 1), ('play', 1), ('part', 1)]
[('application', 2), ('user', 2), ('pro', 1), ('php', 1), ('performance', 1), ('help', 1), ('understand', 1), ('technology', 1), ('component', 1), ('play', 1), ('role', 1), ('run', 1), ('second', 1), ('mean', 1), ('difference', 1), ('retaining', 1), ('losing', 1), ('important', 1)]
[('iphone', 4), ('development', 3), ('interested', 1), ('want', 1), ('learn', 1), ('whether', 1), ('self', 1), ('taught', 1), ('genius', 1), ('made', 1), ('way', 1), ('page', 1), ('beginning', 1), ('perfect', 1), ('book', 1)]
[('book', 2), ('programmer', 2), ('moving', 2), ('offer', 1), ('powerful', 1), ('new', 1), ('feature', 1), ('fastest', 1), ('path', 1), ('mastering', 1), ('rest', 1), ('experienced', 1), ('another', 1), ('object', 1), ('oriented', 1), ('language', 1), ('many', 1)]
[('dba', 2), ('database', 2), ('survivor', 1), ('book', 1), ('help', 1), ('new', 1), ('administrator', 1), ('understand', 1), ('world', 1), ('administration', 1), ('moving', 1), ('profession', 1), ('many', 1), ('looking', 1), ('getting', 1), ('started', 1), ('guide', 1), ('blog', 1), ('written', 1)]
[('sharepoint', 2), ('microsoft', 1), ('foundation', 1), ('server', 1), ('provide', 1), ('collection', 1), ('tool', 1), ('service', 1), ('use', 1), ('improve', 1), ('user', 1), ('team', 1), ('productivity', 1), ('make', 1), ('information', 1), ('sharing', 1), ('effective', 1), ('facilitate', 1), ('business', 1), ('decision', 1), ('making', 1)]
[('oracle', 4), ('database', 4), ('feature', 2), ('secret', 1), ('definitive', 1), ('guide', 1), ('undocumented', 1), ('partially', 1), ('documented', 1), ('server', 1), ('covering', 1), ('useful', 1), ('little', 1), ('known', 1), ('book', 1)]
[('design', 2), ('go', 1), ('competent', 1), ('developer', 1), ('skilled', 1), ('designer', 1), ('architect', 1), ('using', 1), ('book', 1), ('master', 1), ('class', 1), ('title', 1), ('guide', 1), ('implementation', 1), ('fun', 1), ('engaging', 1), ('case', 1), ('study', 1), ('starting', 1), ('quick', 1), ('exploration', 1)]
[('deep', 3), ('learning', 3), ('solution', 2), ('deploy', 1), ('production', 1), ('ease', 1), ('using', 1), ('tensorflow', 1), ('develop', 1), ('mathematical', 1), ('understanding', 1), ('intuition', 1), ('required', 1), ('invent', 1), ('new', 1), ('architecture', 1), ('pro', 1)]
[('drupal', 3), ('window', 2), ('developer', 2), ('open', 1), ('door', 1), ('build', 1), ('site', 1), ('including', 1), ('custom', 1), ('module', 1), ('without', 1), ('leaving', 1), ('visual', 1), ('studio', 1), ('pro', 1), ('give', 1), ('everything', 1), ('need', 1), ('know', 1), ('achieve', 1), ('whilst', 1), ('drilling', 1)]
[('oracle', 3), ('replication', 3), ('goldengate', 2), ('technology', 2), ('expert', 1), ('hand', 1), ('guide', 1), ('creating', 1), ('managing', 1), ('complex', 1), ('data', 1), ('environment', 1), ('using', 1), ('latest', 1), ('database', 1), ('future', 1), ('aim', 1)]
[('includes', 3), ('complete', 2), ('source', 2), ('decompiler', 1), ('obfuscator', 1), ('comprehensive', 1), ('chapter', 1), ('strategy', 1), ('protecting', 1), ('code', 1), ('cover', 1), ('basic', 1), ('theory', 1), ('behind', 1), ('many', 1), ('decompilers', 1), ('obfuscators', 1), ('available', 1)]
[('attribute', 3), ('net', 2), ('first', 1), ('book', 1), ('market', 1), ('focus', 1), ('exclusively', 1), ('cover', 1), ('common', 1), ('including', 1), ('pinvoke', 1), ('serialization', 1), ('enterprise', 1), ('remoting', 1), ('illustrates', 1), ('creation', 1), ('use', 1), ('custom', 1), ('advanced', 1), ('example', 1)]
[('ejb', 2), ('basic', 2), ('introduction', 1), ('enterprise', 1), ('javabeans', 1), ('discus', 1), ('component', 1), ('paradigm', 1), ('idea', 1), ('behind', 1), ('cover', 1), ('focus', 1), ('issue', 1), ('beyond', 1), ('specification', 1)]
[('focused', 1), ('writing', 1), ('effective', 1), ('accurate', 1), ('data', 1), ('entry', 1), ('form', 1), ('application', 1), ('book', 1), ('save', 1), ('time', 1), ('energy', 1)]
[('using', 2), ('net', 2), ('internationalization', 1), ('localization', 1), ('microsoft', 1), ('show', 1), ('localize', 1), ('code', 1), ('visual', 1), ('studio', 1), ('author', 1), ('nick', 1), ('symonds', 1), ('experienced', 1), ('developer', 1), ('project', 1), ('manager', 1), ('window', 1), ('application', 1), ('intended', 1), ('use', 1), ('worldwide', 1), ('symmonds', 1)]
[('step', 2), ('robot', 1), ('building', 1), ('beginner', 1), ('provides', 1), ('basic', 1), ('practical', 1), ('knowledge', 1), ('getting', 1), ('started', 1), ('amateur', 1), ('robotics', 1), ('short', 1), ('chapter', 1), ('perfectly', 1), ('suited', 1), ('bedtime', 1), ('reading', 1), ('contains', 1), ('instruction', 1), ('small', 1), ('hand', 1), ('experiment', 1), ('including', 1)]
[('java', 3), ('web', 3), ('server', 2), ('servlets', 1), ('jsp', 1), ('page', 1), ('main', 1), ('way', 1), ('used', 1), ('today', 1), ('program', 1), ('run', 1), ('allow', 1), ('html', 1), ('content', 1), ('dynamically', 1), ('generated', 1), ('often', 1), ('querying', 1), ('database', 1), ('sent', 1), ('via', 1)]
[('application', 2), ('net', 2), ('gibbon', 1), ('show', 1), ('developer', 1), ('move', 1), ('ee', 1), ('enterprise', 1), ('level', 1), ('detailed', 1), ('serious', 1), ('discussion', 1), ('port', 1), ('servlet', 1), ('jsp', 1), ('ejb', 1), ('based', 1), ('asp', 1)]
[('net', 2), ('application', 2), ('protocol', 2), ('nbsp', 1), ('easy', 1), ('depth', 1), ('guide', 1), ('network', 1), ('programming', 1), ('framework', 1), ('show', 1), ('integrate', 1), ('web', 1), ('mail', 1), ('support', 1), ('cover', 1), ('transport', 1), ('tcp', 1), ('udp', 1)]
[('net', 2), ('remoting', 2), ('first', 2), ('book', 2), ('framework', 2), ('advanced', 1), ('really', 1), ('offer', 1), ('depth', 1), ('coverage', 1), ('part', 1), ('cover', 1), ('everything', 1), ('developer', 1), ('need', 1), ('know', 1), ('use', 1), ('capability', 1), ('real', 1), ('world', 1)]
[('html', 2), ('web', 2), ('application', 1), ('acquired', 1), ('power', 1), ('ease', 1), ('scalability', 1), ('responsiveness', 1), ('never', 1), ('book', 1), ('developer', 1), ('learn', 1), ('use', 1), ('latest', 1), ('cutting', 1), ('edge', 1), ('technology', 1), ('available', 1), ('recent', 1)]
[('version', 3), ('control', 3), ('foundation', 1), ('web', 1), ('developer', 1), ('explains', 1), ('work', 1), ('using', 1), ('friendly', 1), ('accessible', 1), ('tone', 1), ('learn', 1), ('use', 1), ('three', 1), ('leading', 1), ('system', 1), ('subversion', 1), ('git', 1)]
[('io', 2), ('solution', 2), ('recipe', 1), ('problem', 1), ('approach', 1), ('guide', 1), ('developing', 1), ('ipad', 1), ('iphone', 1), ('device', 1), ('platform', 1), ('book', 1), ('provides', 1), ('depth', 1), ('code', 1), ('sample', 1), ('discussion', 1), ('scenario', 1), ('developer', 1), ('face', 1), ('every', 1), ('day', 1)]
[('manipulate', 2), ('language', 2), ('metaprogramming', 2), ('program', 2), ('learn', 1), ('function', 1), ('expression', 1), ('modify', 1), ('interprets', 1), ('book', 1), ('introduction', 1), ('write', 1)]
[('learn', 2), ('gain', 1), ('depth', 1), ('knowledge', 1), ('premiere', 1), ('pro', 1), ('software', 1), ('think', 1), ('acquire', 1), ('new', 1), ('skill', 1), ('help', 1), ('choose', 1), ('best', 1), ('workflow', 1), ('project', 1), ('simplify', 1), ('accelerate', 1), ('video', 1), ('editing', 1), ('process', 1), ('edit', 1)]
[('part', 2), ('desktop', 1), ('diy', 1), ('printer', 1), ('device', 1), ('either', 1), ('buy', 1), ('preassembled', 1), ('kit', 1), ('build', 1), ('collection', 1), ('design', 1), ('print', 1), ('physical', 1), ('object', 1), ('including', 1), ('replacement', 1), ('household', 1), ('custom', 1), ('toy', 1), ('even', 1), ('art', 1), ('science', 1), ('engineering', 1)]
[('firebase', 2), ('plan', 1), ('build', 1), ('better', 1), ('app', 1), ('grow', 1), ('business', 1), ('earn', 1), ('money', 1), ('hard', 1), ('work', 1), ('using', 1), ('book', 1), ('laurence', 1), ('moroney', 1), ('staff', 1), ('developer', 1), ('advocate', 1), ('google', 1), ('take', 1), ('technology', 1), ('showing', 1)]
[('work', 1), ('blockchain', 1), ('understand', 1), ('potential', 1), ('application', 1), ('beyond', 1), ('cryptocurrencies', 1), ('domain', 1), ('healthcare', 1), ('internet', 1), ('thing', 1), ('finance', 1), ('decentralized', 1), ('organization', 1), ('open', 1), ('science', 1), ('featuring', 1), ('case', 1), ('study', 1), ('practical', 1), ('insight', 1), ('generated', 1)]
[('database', 2), ('new', 2), ('architecture', 2), ('take', 1), ('deep', 1), ('dive', 1), ('azure', 1), ('sql', 1), ('hyperscale', 1), ('service', 1), ('tier', 1), ('discover', 1), ('form', 1), ('cloud', 1), ('microsoft', 1), ('support', 1), ('massive', 1), ('horizontally', 1), ('scalable', 1), ('formerly', 1), ('code', 1), ('named', 1), ('socrates', 1), ('allows', 1)]
[('web', 2), ('service', 2), ('application', 2), ('discover', 1), ('restful', 1), ('technology', 1), ('including', 1), ('rest', 1), ('json', 1), ('xml', 1), ('jax', 1), ('r', 1), ('soap', 1), ('building', 1), ('today', 1), ('java', 1), ('based', 1), ('microservices', 1), ('big', 1), ('data', 1), ('using', 1), ('micronaut', 1), ('framework', 1), ('nbsp', 1), ('book', 1)]
[('step', 2), ('html', 2), ('written', 1), ('illustrated', 1), ('guide', 1), ('beginner', 1), ('book', 1), ('introduce', 1), ('cs', 1), ('lab', 1), ('exercise', 1), ('example', 1), ('code', 1), ('begin', 1), ('setting', 1), ('development', 1), ('environment', 1), ('local', 1), ('web', 1), ('server', 1), ('editor', 1)]
[('micro', 2), ('bit', 2), ('way', 2), ('build', 1), ('different', 1), ('component', 1), ('larger', 1), ('system', 1), ('using', 1), ('class', 1), ('set', 1), ('python', 1), ('truly', 1), ('collaborative', 1), ('first', 1), ('explore', 1), ('harness', 1), ('capability', 1), ('humble', 1), ('learn', 1), ('creatively', 1), ('overcome', 1)]
[('vmware', 2), ('software', 2), ('cloud', 2), ('learn', 1), ('brought', 1), ('enterprise', 1), ('class', 1), ('defined', 1), ('data', 1), ('center', 1), ('aws', 1), ('book', 1), ('show', 1), ('enable', 1), ('customer', 1), ('run', 1), ('production', 1), ('application', 1), ('across', 1), ('vsphere', 1), ('based', 1), ('private', 1), ('public', 1), ('hybrid', 1)]
[('pci', 5), ('book', 1), ('go', 1), ('reference', 1), ('achieve', 1), ('compliance', 1), ('requirement', 1), ('updated', 1), ('data', 1), ('security', 1), ('standard', 1), ('ds', 1), ('detail', 1), ('specific', 1), ('documentation', 1), ('auditor', 1), ('known', 1), ('qualified', 1)]
[('write', 2), ('sql', 2), ('learn', 1), ('design', 1), ('simple', 1), ('efficient', 1), ('code', 1), ('hand', 1), ('book', 1), ('teach', 1), ('better', 1), ('example', 1), ('straightforward', 1), ('explanation', 1), ('nbsp', 1), ('new', 1), ('edition', 1), ('coverage', 1), ('parameter', 1), ('sensitive', 1), ('plan', 1)]
[('investing', 2), ('doc', 2), ('community', 2), ('engineering', 1), ('documentation', 1), ('mean', 1), ('user', 1), ('experience', 1), ('book', 1), ('teach', 1), ('reader', 1), ('mastering', 1), ('code', 1), ('ecosystem', 1), ('empowers', 1), ('understand', 1), ('better', 1), ('favorite', 1), ('product', 1), ('open', 1), ('source', 1), ('os', 1)]
[('reader', 2), ('suse', 2), ('level', 1), ('stand', 1), ('benefit', 1), ('book', 1), ('coverage', 1), ('ability', 1), ('play', 1), ('mp', 1), ('dvd', 1), ('burn', 1), ('cd', 1), ('perform', 1), ('office', 1), ('task', 1), ('data', 1), ('backup', 1), ('offer', 1), ('secure', 1), ('operating', 1), ('system', 1), ('environment', 1), ('whether', 1), ('evaluating', 1)]
[('ee', 2), ('application', 2), ('terracotta', 1), ('high', 1), ('availability', 1), ('nth', 1), ('degree', 1), ('scaling', 1), ('clustering', 1), ('engine', 1), ('traditional', 1), ('java', 1), ('using', 1), ('seam', 1), ('spring', 1), ('based', 1), ('enterprise', 1), ('written', 1), ('officially', 1), ('authorized', 1)]
[('django', 2), ('build', 1), ('content', 1), ('management', 1), ('system', 1), ('blog', 1), ('social', 1), ('networking', 1), ('site', 1), ('james', 1), ('bennett', 1), ('introduces', 1), ('version', 1), ('popular', 1), ('framework', 1), ('work', 1), ('development', 1), ('project', 1), ('implementing', 1), ('running', 1)]
[('spring', 4), ('framework', 3), ('widely', 1), ('adopted', 1), ('enterprise', 1), ('general', 1), ('java', 1), ('release', 1), ('added', 1), ('many', 1), ('improvement', 1), ('new', 1), ('feature', 1), ('development', 1), ('written', 1), ('gary', 1), ('mak', 1), ('author', 1), ('bestseller', 1), ('recipe', 1)]
[('jython', 3), ('java', 2), ('open', 1), ('source', 1), ('implementation', 1), ('high', 1), ('level', 1), ('dynamic', 1), ('object', 1), ('oriented', 1), ('scripting', 1), ('language', 1), ('python', 1), ('seamlessly', 1), ('integrated', 1), ('platform', 1), ('predecessor', 1), ('jpython', 1), ('certified', 1), ('pure', 1), ('freely', 1)]
[('mvc', 2), ('author', 1), ('steven', 1), ('sanderson', 1), ('seen', 1), ('asp', 1), ('net', 1), ('framework', 1), ('mature', 1), ('start', 1), ('experience', 1), ('combined', 1), ('comprehensive', 1), ('coverage', 1), ('new', 1), ('feature', 1), ('including', 1), ('official', 1), ('development', 1), ('toolkit', 1), ('offer', 1), ('clearest', 1)]
[('book', 2), ('clojure', 2), ('language', 2), ('introduction', 2), ('first', 1), ('definitive', 1), ('reference', 1), ('providing', 1), ('functional', 1), ('programming', 1), ('general', 1), ('specific', 1), ('feature', 1), ('demonstrates', 1), ('use', 1)]
[('blog', 2), ('service', 2), ('google', 2), ('interested', 1), ('starting', 1), ('decide', 1), ('use', 1), ('blogger', 1), ('offer', 1), ('many', 1), ('advantage', 1), ('publishing', 1), ('system', 1), ('including', 1), ('seamless', 1), ('integration', 1), ('web', 1), ('application', 1), ('beginning', 1)]
[('open', 2), ('source', 2), ('software', 2), ('known', 1), ('free', 1), ('offer', 1), ('creative', 1), ('platform', 1), ('world', 1), ('class', 1), ('program', 1), ('ask', 1), ('completed', 1), ('high', 1), ('quality', 1), ('project', 1), ('developed', 1), ('popular', 1), ('web', 1), ('site', 1), ('using', 1), ('desktop', 1), ('application', 1)]
[('edition', 2), ('rischpater', 1), ('second', 1), ('new', 1), ('coverage', 1), ('html', 1), ('wap', 1), ('xml', 1), ('palm', 1), ('wca', 1), ('imode', 1), ('detail', 1), ('improves', 1), ('text', 1), ('first', 1), ('time', 1), ('tested', 1), ('information', 1)]
[('device', 3), ('net', 2), ('mobile', 1), ('begin', 1), ('examining', 1), ('wide', 1), ('variety', 1), ('different', 1), ('wireless', 1), ('internet', 1), ('divided', 1), ('main', 1), ('division', 1), ('directly', 1), ('supported', 1), ('pocket', 1), ('pc', 1), ('mode', 1), ('phone', 1), ('wap', 1)]
[('book', 3), ('explains', 1), ('wpf', 1), ('work', 1), ('ground', 1), ('first', 1), ('available', 1), ('detailed', 1), ('follows', 1), ('author', 1), ('previous', 1), ('highly', 1), ('successful', 1), ('covering', 1), ('window', 1), ('form', 1), ('stop', 1), ('shop', 1)]
[('extreme', 3), ('programming', 3), ('explains', 2), ('practice', 2), ('net', 2), ('current', 1), ('matured', 1), ('new', 1), ('feature', 1), ('impact', 1), ('technique', 1), ('provides', 1), ('real', 1), ('world', 1), ('example', 1), ('examining', 1)]
[('java', 3), ('performance', 2), ('ee', 2), ('first', 1), ('book', 1), ('address', 1), ('ass', 1), ('enterprise', 1), ('based', 1), ('application', 1), ('using', 1), ('new', 1), ('present', 1), ('management', 1), ('proven', 1), ('methodology', 1), ('featuring', 1), ('set', 1), ('common', 1), ('problem', 1), ('observed', 1)]
[('surpasses', 1), ('archaic', 1), ('debugging', 1), ('practice', 1), ('introduces', 1), ('advanced', 1), ('debugger', 1), ('topic', 1), ('customization', 1), ('optimization', 1)]
[('net', 2), ('book', 2), ('professional', 2), ('comprehensive', 1), ('authoritative', 1), ('explanation', 1), ('vb', 1), ('proven', 1), ('author', 1), ('history', 1), ('writing', 1), ('award', 1), ('winning', 1), ('successful', 1), ('developer', 1), ('broad', 1), ('scope', 1), ('provides', 1), ('aspiring', 1)]
[('ipv', 2), ('cover', 1), ('window', 1), ('xp', 1), ('macos', 1), ('freebsd', 1), ('linux', 1), ('cusp', 1), ('next', 1), ('internet', 1), ('breakthrough', 1), ('network', 1), ('administrator', 1), ('accommodate', 1), ('technology', 1), ('eventually', 1), ('book', 1), ('help', 1), ('become', 1), ('proficient', 1)]
[('sql', 3), ('server', 3), ('comprehensive', 1), ('coverage', 1), ('including', 1), ('feature', 1), ('established', 1), ('expert', 1), ('author', 1), ('broad', 1), ('appeal', 1), ('practical', 1), ('answer', 1), ('common', 1), ('question', 1), ('novice', 1), ('advanced', 1), ('dba', 1), ('developer', 1)]
[('visual', 2), ('recipe', 2), ('first', 1), ('book', 1), ('really', 1), ('offer', 1), ('programmer', 1), ('set', 1), ('cut', 1), ('paste', 1), ('solution', 1), ('apress', 1), ('series', 1), ('format', 1), ('every', 1), ('specifically', 1), ('chosen', 1), ('written', 1), ('help', 1), ('emerging', 1), ('professional', 1)]
[('rfid', 2), ('market', 1), ('radio', 1), ('frequency', 1), ('identification', 1), ('technology', 1), ('expanding', 1), ('rapidly', 1), ('constituting', 1), ('billion', 1), ('dollar', 1), ('annually', 1), ('organization', 1), ('adopt', 1), ('solution', 1), ('related', 1), ('equipment', 1), ('need', 1), ('route', 1), ('map', 1), ('execute', 1), ('workflow', 1), ('based', 1)]
[('iphone', 3), ('programmer', 1), ('looking', 1), ('new', 1), ('challenge', 1), ('thought', 1), ('building', 1), ('app', 1), ('make', 1), ('heart', 1), ('race', 1), ('pulse', 1), ('quicken', 1), ('beginning', 1), ('development', 1), ('exploring', 1), ('sdk', 1), ('book', 1), ('updated', 1)]
[('golomshtok', 1), ('give', 1), ('system', 1), ('admins', 1), ('solid', 1), ('understanding', 1), ('fundamental', 1), ('concept', 1), ('behind', 1), ('wmi', 1), ('enabling', 1), ('rapidly', 1), ('develop', 1), ('custom', 1), ('management', 1), ('tool', 1), ('avoid', 1), ('expensive', 1), ('shelf', 1), ('solution', 1)]
[('net', 3), ('framework', 3), ('full', 1), ('analysis', 1), ('performance', 1), ('characteristic', 1), ('including', 1), ('actual', 1), ('benchmark', 1), ('result', 1), ('information', 1), ('internals', 1), ('exposure', 1), ('various', 1), ('element', 1), ('make', 1), ('description', 1)]
[('show', 1), ('take', 1), ('advantage', 1), ('mysql', 1), ('built', 1), ('function', 1), ('minimizing', 1), ('need', 1), ('process', 1), ('data', 1), ('retrieved', 1), ('database', 1), ('demonstrates', 1), ('write', 1), ('use', 1), ('advanced', 1), ('complex', 1), ('query', 1), ('cut', 1), ('middleware', 1), ('application', 1)]
[('security', 2), ('nbsp', 2), ('issue', 1), ('version', 1), ('access', 1), ('discussed', 1), ('merit', 1), ('approach', 1), ('perspective', 1), ('developer', 1), ('database', 1), ('administrator', 1), ('manager', 1), ('examined', 1)]
[('net', 2), ('established', 1), ('high', 1), ('selling', 1), ('expert', 1), ('author', 1), ('large', 1), ('fan', 1), ('following', 1), ('broad', 1), ('deep', 1), ('coverage', 1), ('full', 1), ('look', 1), ('forward', 1), ('advanced', 1), ('programming', 1), ('method', 1), ('available', 1), ('completely', 1), ('date', 1), ('latest', 1), ('iteration', 1)]
[('book', 1), ('offer', 1), ('clear', 1), ('path', 1), ('discovery', 1), ('v', 1), ('net', 1), ('comfortable', 1), ('demonstrates', 1), ('effectively', 1), ('tweak', 1), ('development', 1), ('need', 1), ('received', 1), ('original', 1), ('edition', 1), ('gt', 1), ('sale', 1), ('liquidation', 1), ('forced', 1)]
[('android', 3), ('pro', 2), ('apps', 2), ('show', 1), ('build', 1), ('real', 1), ('world', 1), ('fun', 1), ('mobile', 1), ('using', 1), ('sdk', 1), ('book', 1), ('update', 1), ('best', 1), ('selling', 1), ('cover', 1), ('everything', 1), ('fundamental', 1), ('building', 1), ('smartphones', 1), ('tablet', 1), ('embedded', 1), ('device', 1)]
[('data', 2), ('sensor', 2), ('provides', 2), ('make', 1), ('common', 1), ('architecture', 1), ('used', 1), ('deriving', 1), ('meaningful', 1), ('book', 1), ('tool', 1), ('understand', 1), ('converted', 1), ('actionable', 1), ('knowledge', 1), ('tip', 1), ('depth', 1), ('work', 1)]
[('game', 3), ('make', 2), ('video', 2), ('html', 2), ('javascript', 2), ('point', 2), ('advanced', 1), ('design', 1), ('earth', 1), ('education', 1), ('scratch', 1), ('using', 1), ('powerful', 1), ('technology', 1), ('book', 1), ('round', 1)]
[('node', 4), ('j', 4), ('amazon', 2), ('web', 2), ('service', 2), ('application', 2), ('beginning', 1), ('teach', 1), ('novice', 1), ('developer', 1), ('configure', 1), ('deploy', 1), ('maintain', 1), ('scalable', 1), ('small', 1), ('large', 1), ('scale', 1), ('hosting', 1), ('production', 1), ('environment', 1)]
[('swift', 2), ('development', 2), ('io', 2), ('latest', 2), ('migrating', 1), ('web', 1), ('give', 1), ('ability', 1), ('create', 1), ('native', 1), ('apps', 1), ('using', 1), ('programming', 1), ('language', 1), ('starting', 1), ('preparing', 1), ('xcode', 1), ('integrated', 1), ('environment', 1), ('introducing', 1), ('enough', 1)]
[('window', 2), ('whatever', 1), ('version', 1), ('rsquo', 1), ('using', 1), ('vista', 1), ('registry', 1), ('heart', 1), ('desktop', 1), ('experience', 1), ('software', 1), ('installs', 1), ('compatibility', 1), ('hardware', 1), ('operation', 1), ('managed', 1), ('complex', 1), ('database', 1), ('code', 1)]
[('window', 3), ('real', 1), ('world', 1), ('development', 1), ('developer', 1), ('handbook', 1), ('essential', 1), ('guide', 1), ('building', 1), ('complete', 1), ('end', 1), ('user', 1), ('ready', 1), ('application', 1), ('xaml', 1), ('programming', 1), ('stack', 1), ('start', 1), ('finish', 1), ('starting', 1), ('basic', 1), ('walking', 1)]
[('application', 2), ('lightswitch', 1), ('included', 1), ('part', 1), ('visual', 1), ('studio', 1), ('package', 1), ('rapid', 1), ('deployment', 1), ('tool', 1), ('let', 1), ('power', 1), ('user', 1), ('administrator', 1), ('build', 1), ('data', 1), ('centric', 1), ('business', 1), ('desktop', 1), ('cloud', 1), ('web', 1)]
[('sharepoint', 3), ('apps', 2), ('taken', 1), ('world', 1), ('storm', 1), ('taking', 1), ('biggest', 1), ('new', 1), ('thing', 1), ('solution', 1), ('creating', 1), ('custom', 1), ('code', 1), ('run', 1), ('deployment', 1), ('others', 1)]
[('data', 2), ('ahead', 1), ('today', 1), ('hyper', 1), ('competitive', 1), ('marketplace', 1), ('business', 1), ('take', 1), ('advantage', 1), ('already', 1), ('mine', 1), ('give', 1), ('new', 1), ('insight', 1), ('metric', 1), ('clue', 1), ('drive', 1), ('successful', 1), ('customer', 1), ('interaction', 1), ('pro', 1)]
[('cs', 2), ('style', 2), ('web', 2), ('beginning', 1), ('teach', 1), ('page', 1), ('using', 1), ('cascading', 1), ('sheet', 1), ('language', 1), ('design', 1), ('starting', 1), ('first', 1), ('principle', 1), ('learn', 1), ('series', 1), ('practical', 1), ('exercise', 1), ('change', 1), ('default', 1), ('look', 1), ('html', 1), ('tag', 1)]
[('android', 3), ('mobile', 2), ('major', 1), ('player', 1), ('phone', 1), ('market', 1), ('platform', 1), ('built', 1), ('top', 1), ('linux', 1), ('operating', 1), ('system', 1), ('native', 1), ('code', 1), ('support', 1), ('offer', 1), ('endless', 1), ('opportunity', 1), ('application', 1), ('developer', 1), ('limited', 1)]
[('microsoft', 2), ('window', 2), ('application', 2), ('page', 1), ('primer', 1), ('unveils', 1), ('key', 1), ('feature', 1), ('eagerly', 1), ('anticipated', 1), ('operating', 1), ('system', 1), ('contains', 1), ('revolutionary', 1), ('new', 1), ('framework', 1), ('building', 1), ('dynamic', 1), ('responsive', 1), ('touch', 1), ('enabled', 1)]
[('microsoft', 2), ('window', 2), ('application', 2), ('page', 1), ('primer', 1), ('unveils', 1), ('key', 1), ('feature', 1), ('eagerly', 1), ('anticipated', 1), ('operating', 1), ('system', 1), ('contains', 1), ('revolutionary', 1), ('new', 1), ('framework', 1), ('building', 1), ('dynamic', 1), ('responsive', 1), ('touch', 1), ('enabled', 1)]
[('io', 2), ('app', 2), ('learn', 1), ('development', 1), ('rapid', 1), ('tutorial', 1), ('useful', 1), ('reference', 1), ('quickly', 1), ('speed', 1), ('objective', 1), ('cocoa', 1), ('touch', 1), ('sdk', 1), ('getting', 1), ('started', 1), ('guide', 1), ('building', 1), ('first', 1), ('iphone', 1), ('ipad', 1)]
[('android', 4), ('app', 2), ('best', 1), ('practice', 1), ('godfrey', 1), ('nolan', 1), ('show', 1), ('make', 1), ('apps', 1), ('stand', 1), ('crowd', 1), ('review', 1), ('settle', 1), ('making', 1), ('build', 1), ('brilliant', 1), ('instead', 1), ('let', 1), ('user', 1), ('praise', 1), ('ease', 1)]
[('healthcare', 1), ('growth', 1), ('industry', 1), ('right', 1), ('need', 1), ('guidance', 1), ('regard', 1), ('privacy', 1), ('security', 1), ('huge', 1), ('new', 1), ('federal', 1), ('incentive', 1), ('penalty', 1), ('tied', 1), ('hitech', 1), ('act', 1), ('hipaa', 1), ('implementation', 1), ('electronic', 1), ('health', 1), ('record', 1)]
[('yammer', 3), ('develop', 1), ('guide', 1), ('integrating', 1), ('social', 1), ('network', 1), ('company', 1), ('application', 1), ('ecosystem', 1), ('developing', 1), ('custom', 1), ('apps', 1), ('feature', 1), ('platform', 1), ('make', 1), ('workplace', 1), ('productive', 1), ('encourage', 1), ('communication', 1)]
[('io', 2), ('business', 2), ('app', 2), ('development', 2), ('updated', 1), ('expanded', 1), ('new', 1), ('apple', 1), ('third', 1), ('edition', 1), ('show', 1), ('incorporate', 1), ('marketing', 1), ('savvy', 1), ('every', 1), ('aspect', 1), ('design', 1), ('process', 1), ('giving', 1), ('best', 1), ('possible', 1)]
[('spring', 2), ('framework', 2), ('application', 2), ('book', 2), ('introducing', 1), ('hand', 1), ('guide', 1), ('learning', 1), ('build', 1), ('using', 1), ('us', 1), ('simple', 1), ('document', 1), ('develop', 1), ('incrementally', 1), ('course', 1), ('cover', 1), ('bull', 1)]
[('chart', 2), ('create', 1), ('web', 1), ('show', 1), ('convert', 1), ('data', 1), ('eye', 1), ('catching', 1), ('innovative', 1), ('animated', 1), ('highly', 1), ('interactive', 1), ('browser', 1), ('based', 1), ('book', 1), ('suitable', 1), ('developer', 1), ('experience', 1), ('level', 1), ('need', 1), ('want', 1), ('power', 1), ('control', 1)]
[('office', 3), ('pro', 1), ('development', 1), ('second', 1), ('edition', 1), ('practical', 1), ('hand', 1), ('guide', 1), ('building', 1), ('application', 1), ('cloud', 1), ('combine', 1), ('feature', 1), ('box', 1), ('custom', 1), ('code', 1), ('make', 1), ('increasingly', 1), ('powerful', 1)]
[('swift', 2), ('android', 2), ('mdash', 2), ('page', 1), ('migrating', 1), ('give', 1), ('experienced', 1), ('app', 1), ('developer', 1), ('need', 1), ('create', 1), ('native', 1), ('io', 1), ('apps', 1), ('using', 1), ('latest', 1), ('programming', 1), ('language', 1), ('starting', 1), ('preparing', 1), ('xcode', 1), ('ide', 1)]
[('configuration', 3), ('dsc', 2), ('management', 2), ('platform', 2), ('desired', 1), ('state', 1), ('powerful', 1), ('make', 1), ('easier', 1), ('perform', 1), ('cross', 1), ('infrastructure', 1), ('whether', 1), ('premise', 1), ('cloud', 1), ('provides', 1)]
[('window', 2), ('powershell', 2), ('microsoft', 2), ('book', 1), ('written', 1), ('professional', 1), ('familiar', 1), ('want', 1), ('learn', 1), ('build', 1), ('operate', 1), ('administer', 1), ('workload', 1), ('cloud', 1), ('pro', 1), ('azure', 1), ('packed', 1), ('practical', 1)]
[('android', 2), ('recipe', 2), ('code', 2), ('step', 2), ('fourth', 1), ('edition', 1), ('offer', 1), ('earth', 1), ('guide', 1), ('wide', 1), ('range', 1), ('useful', 1), ('topic', 1), ('using', 1), ('complete', 1), ('real', 1), ('world', 1), ('working', 1), ('example', 1), ('book', 1), ('updated', 1), ('include', 1)]
[('web', 4), ('database', 2), ('site', 2), ('designing', 2), ('although', 1), ('many', 1), ('professional', 1), ('incorporated', 1), ('experience', 1), ('book', 1), ('teach', 1), ('need', 1), ('know', 1), ('use', 1)]
[('friend', 1), ('ed', 1)]
[('friend', 1), ('ed', 1)]
[('friend', 1), ('ed', 1)]
[('hibernate', 2), ('recipe', 2), ('second', 1), ('edition', 1), ('contains', 1), ('collection', 1), ('code', 1), ('template', 1), ('learning', 1), ('building', 1), ('solution', 1), ('client', 1), ('including', 1), ('work', 1), ('spring', 1), ('framework', 1), ('jpa', 1), ('book', 1), ('pragmatic', 1)]
[('relational', 3), ('hadoop', 2), ('architect', 1), ('application', 1), ('nosql', 1), ('integrate', 1), ('database', 1), ('management', 1), ('system', 1), ('ecosystem', 1), ('transform', 1), ('migrate', 1), ('data', 1), ('component', 1), ('book', 1), ('cover', 1), ('best', 1), ('practice', 1), ('design', 1)]
[('mysql', 3), ('ndb', 2), ('cluster', 2), ('create', 1), ('run', 1), ('real', 1), ('time', 1), ('highly', 1), ('available', 1), ('high', 1), ('redundancy', 1), ('version', 1), ('world', 1), ('popular', 1), ('open', 1), ('source', 1), ('database', 1), ('understand', 1), ('advantage', 1), ('disadvantage', 1), ('solution', 1)]
[('leap', 5), ('motion', 5), ('develop', 1), ('apps', 1), ('game', 1), ('using', 1), ('sensor', 1), ('book', 1), ('start', 1), ('brief', 1), ('introduction', 1), ('cover', 1), ('getting', 1), ('working', 1), ('setting', 1), ('development', 1), ('environment', 1), ('developer', 1)]
[('php', 4), ('array', 3), ('gain', 1), ('depth', 1), ('understanding', 1), ('quick', 1), ('overview', 1), ('chapter', 1), ('concentrate', 1), ('single', 1), ('multi', 1), ('dimensional', 1), ('associative', 1), ('object', 1), ('first', 1), ('kind', 1), ('book', 1), ('using', 1), ('demonstrates', 1)]
[('test', 3), ('tdd', 2), ('domain', 2), ('analysis', 2), ('learn', 1), ('basic', 1), ('driven', 1), ('development', 1), ('using', 1), ('ruby', 1), ('carry', 1), ('problem', 1), ('solution', 1), ('designing', 1), ('case', 1), ('writing', 1), ('first', 1), ('fundamental', 1), ('concept', 1), ('give', 1), ('solid', 1), ('foundation', 1)]
[('use', 1), ('latest', 1), ('tool', 1), ('manage', 1), ('automate', 1), ('task', 1), ('microsoft', 1), ('sharepoint', 1), ('platform', 1), ('achieve', 1), ('time', 1), ('cost', 1), ('saving', 1), ('increase', 1), ('reliability', 1), ('deployment', 1), ('learn', 1), ('safely', 1), ('efficiently', 1), ('migrate', 1), ('previous', 1), ('version', 1)]
[('hibernate', 2), ('persistence', 2), ('started', 1), ('layer', 1), ('gain', 1), ('clear', 1), ('introduction', 1), ('current', 1), ('standard', 1), ('object', 1), ('relational', 1), ('java', 1), ('updated', 1), ('edition', 1), ('includes', 1), ('new', 1), ('framework', 1), ('coverage', 1), ('nosql', 1)]
[('new', 2), ('take', 1), ('business', 1), ('intelligence', 1), ('delivery', 1), ('level', 1), ('interactive', 1), ('engaging', 1), ('even', 1), ('fun', 1), ('driving', 1), ('commercial', 1), ('success', 1), ('sound', 1), ('decision', 1), ('making', 1), ('power', 1), ('visualization', 1), ('using', 1), ('updated', 1), ('edition', 1), ('covering', 1)]
[('design', 1), ('build', 1), ('custom', 1), ('hardware', 1), ('interface', 1), ('raspberry', 1), ('pi', 1), ('discover', 1), ('low', 1), ('cost', 1), ('display', 1), ('sensor', 1), ('option', 1), ('embedded', 1), ('system', 1), ('project', 1), ('nbsp', 1), ('book', 1), ('master', 1), ('communication', 1), ('using', 1), ('raspbian', 1), ('linux', 1), ('perform', 1), ('adc', 1)]
[('unity', 2), ('development', 2), ('android', 2), ('thorough', 1), ('practical', 1), ('introduction', 1), ('device', 1), ('previous', 1), ('experience', 1), ('game', 1), ('needed', 1), ('book', 1), ('go', 1), ('every', 1), ('step', 1), ('downloading', 1), ('installing', 1), ('sdk', 1)]
[('raspberry', 2), ('pi', 2), ('right', 2), ('gain', 1), ('deeper', 1), ('understanding', 1), ('work', 1), ('result', 1), ('want', 1), ('palm', 1), ('hand', 1), ('book', 1), ('help', 1), ('understand', 1), ('connection', 1), ('software', 1), ('drive', 1), ('opening', 1), ('world', 1), ('programming', 1)]
[('language', 3), ('understand', 1), ('important', 1), ('aspect', 1), ('implementing', 1), ('production', 1), ('grade', 1), ('server', 1), ('support', 1), ('smart', 1), ('tool', 1), ('code', 1), ('editor', 1), ('programming', 1), ('utility', 1), ('book', 1), ('show', 1), ('create', 1), ('single', 1), ('implementation', 1)]
[('processing', 2), ('language', 2), ('learn', 1), ('use', 1), ('programming', 1), ('environment', 1), ('create', 1), ('android', 1), ('application', 1), ('ease', 1), ('book', 1), ('cover', 1), ('basic', 1), ('allowing', 1), ('user', 1), ('effectively', 1), ('program', 1), ('interactive', 1), ('graphic', 1)]
[('older', 2), ('application', 2), ('sql', 2), ('code', 2), ('breathe', 1), ('new', 1), ('life', 1), ('refactoring', 1), ('query', 1), ('using', 1), ('modern', 1), ('technique', 1), ('book', 1), ('show', 1), ('significantly', 1), ('improve', 1), ('performance', 1), ('finding', 1), ('common', 1), ('anti', 1), ('pattern', 1)]
[('propeller', 2), ('language', 2), ('learn', 1), ('program', 1), ('spin', 1), ('map', 1), ('assembler', 1), ('pasm', 1), ('nbsp', 1), ('high', 1), ('level', 1), ('might', 1), ('know', 1), ('overall', 1), ('task', 1), ('pursue', 1), ('book', 1), ('implement', 1), ('delta', 1), ('compression', 1), ('algorithm', 1)]
[('improve', 1), ('coding', 1), ('skill', 1), ('learn', 1), ('write', 1), ('readable', 1), ('code', 1), ('rather', 1), ('teach', 1), ('basic', 1), ('programming', 1), ('nbsp', 1), ('book', 1), ('presumes', 1), ('reader', 1), ('understand', 1), ('fundamental', 1), ('offer', 1), ('time', 1), ('honed', 1), ('best', 1), ('practice', 1), ('style', 1), ('design', 1), ('documenting', 1), ('testing', 1)]
[('application', 4), ('web', 3), ('go', 1), ('beyond', 1), ('basic', 1), ('rust', 1), ('build', 1), ('serverless', 1), ('cloud', 1), ('explained', 1), ('practical', 1), ('book', 1), ('include', 1), ('site', 1), ('restful', 1), ('apis', 1), ('real', 1), ('time', 1), ('chat', 1), ('frontend', 1), ('webassembly', 1)]
[('build', 2), ('network', 2), ('project', 2), ('learn', 1), ('implement', 1), ('neural', 1), ('non', 1), ('technical', 1), ('based', 1), ('book', 1), ('guide', 1), ('work', 1), ('chapter', 1), ('electronics', 1), ('providing', 1), ('hand', 1), ('experience', 1), ('training', 1), ('nbsp', 1)]
[('solution', 3), ('problem', 3), ('programming', 2), ('quickly', 1), ('find', 1), ('common', 1), ('nbsp', 1), ('encountered', 1), ('processing', 1), ('big', 1), ('data', 1), ('content', 1), ('presented', 1), ('popular', 1), ('format', 1), ('look', 1), ('want', 1), ('solve', 1), ('apply', 1)]
[('web', 2), ('scale', 2), ('data', 2), ('utilize', 1), ('scraping', 1), ('quickly', 1), ('unlimited', 1), ('amount', 1), ('free', 1), ('available', 1), ('structured', 1), ('format', 1), ('book', 1), ('teach', 1), ('use', 1), ('python', 1), ('script', 1), ('crawl', 1), ('website', 1), ('scrape', 1), ('html', 1)]
[('approach', 2), ('project', 2), ('android', 2), ('choose', 1), ('best', 1), ('app', 1), ('implement', 1), ('solution', 1), ('quickly', 1), ('leveraging', 1), ('complete', 1), ('book', 1), ('collection', 1), ('practical', 1), ('use', 1), ('advanced', 1), ('technique', 1), ('written', 1), ('instructor', 1), ('mark', 1)]
[('language', 2), ('build', 1), ('smart', 1), ('apps', 1), ('capable', 1), ('analyzing', 1), ('performing', 1), ('specific', 1), ('task', 1), ('script', 1), ('identification', 1), ('tokenization', 1), ('lemmatization', 1), ('part', 1), ('speech', 1), ('tagging', 1), ('nbsp', 1), ('named', 1), ('entity', 1), ('recognition', 1), ('book', 1), ('started', 1)]
[('ember', 3), ('data', 2), ('learn', 1), ('work', 1), ('efficiently', 1), ('apis', 1), ('adapter', 1), ('serializers', 1), ('polymorphic', 1), ('relationship', 1), ('using', 1), ('existing', 1), ('javascript', 1), ('knowledge', 1), ('book', 1), ('teach', 1), ('adapt', 1), ('fit', 1), ('custom', 1), ('api', 1)]
[('esp', 3), ('wi', 2), ('fi', 2), ('communication', 2), ('discover', 1), ('powerful', 1), ('microcontrollers', 1), ('microcontroller', 1), ('feature', 1), ('bluetooth', 1), ('ble', 1), ('addition', 1), ('book', 1), ('emphasizes', 1), ('practical', 1), ('project', 1), ('reader', 1), ('guided', 1)]
[('uipath', 2), ('learn', 1), ('robotic', 1), ('processing', 1), ('automation', 1), ('rpa', 1), ('build', 1), ('bot', 1), ('using', 1), ('book', 1), ('us', 1), ('hand', 1), ('example', 1), ('explain', 1), ('basic', 1), ('walk', 1), ('real', 1), ('world', 1), ('prototype', 1), ('testing', 1), ('knowledge', 1), ('organization', 1), ('around', 1)]
[('already', 1), ('comfortable', 1), ('programmer', 1), ('familiar', 1), ('single', 1), ('board', 1), ('computer', 1), ('microcontroller', 1), ('ready', 1), ('refine', 1), ('project', 1), ('started', 1), ('book', 1), ('cover', 1), ('advanced', 1), ('method', 1), ('technique', 1), ('creating', 1), ('implementing', 1)]
[('node', 2), ('j', 2), ('take', 1), ('application', 1), ('production', 1), ('ready', 1), ('status', 1), ('capable', 1), ('scaling', 1), ('whatever', 1), ('need', 1), ('might', 1), ('discover', 1), ('architecting', 1), ('successful', 1), ('popular', 1), ('site', 1), ('essential', 1), ('tool', 1), ('professional', 1), ('developer', 1)]
[('risk', 2), ('involved', 2), ('migrating', 2), ('database', 2), ('mitigate', 1), ('away', 1), ('proprietary', 1), ('platform', 1), ('toward', 1), ('mariadb', 1), ('open', 1), ('source', 1), ('engine', 1), ('book', 1), ('help', 1), ('ass', 1), ('work', 1), ('ensure', 1), ('successful', 1), ('migration', 1), ('nbsp', 1)]
[('mac', 3), ('o', 2), ('snow', 2), ('leopard', 2), ('smart', 1), ('savvy', 1), ('busy', 1), ('comprehensive', 1), ('guide', 1), ('apple', 1), ('give', 1), ('everything', 1), ('need', 1), ('know', 1), ('live', 1), ('happy', 1), ('productive', 1), ('life', 1), ('learn', 1), ('connected', 1)]
[('balancing', 2), ('load', 2), ('emergence', 1), ('cloud', 1), ('modern', 1), ('fast', 1), ('corporate', 1), ('network', 1), ('demand', 1), ('perform', 1), ('judicious', 1), ('computational', 1), ('practical', 1), ('present', 1), ('entire', 1), ('analytical', 1), ('framework', 1), ('increase', 1), ('performance', 1), ('machine', 1)]
[('uml', 2), ('fast', 1), ('easy', 1), ('five', 1), ('step', 1), ('approach', 1), ('developed', 1), ('author', 1), ('basis', 1), ('practical', 1), ('introduction', 1), ('application', 1), ('net', 1), ('world', 1)]
[('net', 1), ('edition', 1)]
[('net', 2), ('barnaby', 1), ('describes', 1), ('vb', 1), ('developer', 1), ('use', 1), ('new', 1), ('technology', 1), ('build', 1), ('fast', 1), ('scalable', 1), ('robust', 1), ('distributed', 1), ('application', 1)]
[('powerpivot', 1), ('comprises', 1), ('set', 1), ('technology', 1), ('easy', 1), ('access', 1), ('data', 1), ('mining', 1), ('business', 1), ('intelligence', 1), ('analysis', 1), ('microsoft', 1), ('excel', 1), ('sharepoint', 1), ('power', 1), ('user', 1), ('developer', 1), ('alike', 1), ('create', 1), ('sophisticated', 1), ('online', 1), ('analytic', 1), ('processing', 1), ('olap', 1)]
[('video', 3), ('html', 2), ('web', 2), ('plugins', 1), ('soon', 1), ('thing', 1), ('past', 1), ('definitive', 1), ('guide', 1), ('first', 1), ('authoritative', 1), ('book', 1), ('new', 1), ('standard', 1), ('allows', 1), ('browser', 1), ('support', 1), ('audio', 1), ('element', 1), ('natively', 1), ('make', 1), ('easy', 1)]
[('blackberry', 4), ('interested', 1), ('creating', 1), ('apps', 1), ('using', 1), ('latest', 1), ('java', 1), ('plug', 1), ('eclipse', 1), ('book', 1), ('beginning', 1), ('development', 1), ('offer', 1), ('hand', 1), ('approach', 1), ('learning', 1), ('build', 1), ('deploy', 1)]
[('nokia', 2), ('medium', 1), ('buzz', 1), ('regularly', 1), ('circulates', 1), ('around', 1), ('iphone', 1), ('android', 1), ('still', 1), ('lead', 1), ('pack', 1), ('term', 1), ('world', 1), ('market', 1), ('share', 1), ('symbian', 1), ('instance', 1), ('remains', 1), ('widely', 1), ('used', 1), ('mobile', 1), ('operating', 1), ('system', 1), ('open', 1), ('development', 1), ('platform', 1)]
[('idea', 2), ('often', 2), ('change', 2), ('throughout', 1), ('history', 1), ('advance', 1), ('technology', 1), ('come', 1), ('spurt', 1), ('single', 1), ('spur', 1), ('rapid', 1), ('take', 1), ('hold', 1), ('propagated', 1), ('totally', 1), ('unexpected', 1), ('direction', 1), ('exadata', 1), ('embodies', 1), ('think', 1)]
[('android', 3), ('tablet', 3), ('march', 1), ('based', 1), ('begun', 1), ('including', 1), ('galaxy', 1), ('samsung', 1), ('tab', 1), ('motorola', 1), ('xoom', 1), ('nook', 1), ('start', 1), ('taking', 1), ('max', 1), ('stop', 1), ('shop', 1)]
[('unreal', 3), ('game', 3), ('io', 2), ('udk', 1), ('feature', 1), ('epic', 1), ('award', 1), ('winning', 1), ('engine', 1), ('used', 1), ('create', 1), ('bestselling', 1), ('infinity', 1), ('blade', 1), ('popular', 1), ('console', 1), ('borderland', 1), ('bioshock', 1), ('build', 1), ('platform', 1)]
[('ee', 2), ('book', 1), ('simply', 1), ('reprint', 1), ('material', 1), ('already', 1), ('freely', 1), ('available', 1), ('web', 1), ('looking', 1), ('tutorial', 1), ('concentrate', 1), ('part', 1), ('reader', 1), ('find', 1), ('interesting', 1), ('accessible', 1), ('relevant', 1), ('start', 1)]
[('game', 3), ('net', 2), ('microsoft', 2), ('adapted', 1), ('vb', 1), ('key', 1), ('insider', 1), ('lead', 1), ('author', 1), ('evangelist', 1), ('easy', 1), ('soup', 1), ('nut', 1), ('guide', 1), ('help', 1), ('start', 1), ('programming', 1), ('fast', 1), ('packed', 1), ('code', 1), ('example', 1), ('complete', 1)]
[('friend', 1), ('ed', 1)]
[('apress', 1), ('imprint', 1)]
[('game', 5), ('coco', 2), ('create', 1), ('compelling', 1), ('learn', 1), ('development', 1), ('io', 1), ('book', 1), ('show', 1), ('use', 1), ('powerful', 1), ('engine', 1), ('develop', 1), ('iphone', 1), ('ipad', 1), ('tilemaps', 1), ('virtual', 1), ('joypads', 1), ('center', 1), ('teach', 1)]
[('microsoft', 2), ('window', 2), ('phone', 2), ('new', 2), ('opportunity', 2), ('rsquo', 1), ('handset', 1), ('injected', 1), ('vibrancy', 1), ('smartphone', 1), ('marketplace', 1), ('provided', 1), ('bold', 1), ('development', 1), ('community', 1), ('take', 1), ('advantage', 1), ('beginning', 1)]
[('window', 1), ('embedded', 1), ('compact', 1), ('natural', 1), ('choice', 1), ('developing', 1), ('sophisticated', 1), ('small', 1), ('footprint', 1), ('device', 1), ('consumer', 1), ('enterprise', 1), ('latest', 1), ('version', 1), ('number', 1), ('significant', 1), ('enhancement', 1), ('made', 1), ('notably', 1), ('ability', 1)]
[('io', 2), ('cocoa', 1), ('touch', 1), ('framework', 1), ('apis', 1), ('powerful', 1), ('tool', 1), ('creating', 1), ('native', 1), ('apps', 1), ('free', 1), ('xcode', 1), ('apple', 1), ('development', 1), ('environment', 1), ('already', 1), ('gotten', 1), ('foot', 1), ('wet', 1), ('objective', 1), ('ready', 1), ('learn', 1)]
[('lt', 2), ('em', 2), ('gt', 2), ('web', 1), ('advertising', 1), ('changing', 1), ('predominantly', 1), ('flash', 1), ('based', 1), ('medium', 1), ('making', 1), ('switch', 1), ('html', 1), ('benefit', 1), ('plug', 1), ('free', 1), ('environment', 1), ('giving', 1), ('larger', 1), ('audience', 1), ('ad', 1), ('better', 1), ('integration', 1), ('page', 1)]
[('php', 2), ('object', 2), ('pattern', 1), ('practice', 1), ('fourth', 1), ('edition', 1), ('revised', 1), ('updated', 1), ('throughout', 1), ('book', 1), ('begin', 1), ('covering', 1), ('oriented', 1), ('feature', 1), ('introduces', 1), ('key', 1), ('topic', 1), ('including', 1), ('class', 1), ('declaration', 1), ('inheritance', 1), ('reflection', 1)]
[('websocket', 2), ('web', 2), ('definitive', 1), ('guide', 1), ('html', 1), ('ultimate', 1), ('insider', 1), ('resource', 1), ('revolutionary', 1), ('new', 1), ('technology', 1), ('enables', 1), ('harness', 1), ('power', 1), ('true', 1), ('real', 1), ('time', 1), ('connectivity', 1), ('build', 1), ('responsive', 1), ('modern', 1), ('application', 1), ('book', 1)]
[('security', 3), ('expert', 2), ('oracle', 2), ('application', 2), ('express', 2), ('cover', 1), ('facet', 1), ('related', 1), ('apex', 1), ('development', 1), ('basic', 1), ('setting', 1), ('enhance', 1), ('preventing', 1), ('sql', 1), ('injection', 1), ('cross', 1), ('site', 1), ('scripting', 1), ('attack', 1)]
[('database', 4), ('oracle', 2), ('administrator', 2), ('rman', 1), ('recipe', 1), ('example', 1), ('driven', 1), ('approach', 1), ('job', 1), ('responsibility', 1), ('able', 1), ('recover', 1), ('thing', 1), ('responsible', 1), ('nothing', 1)]
[('cloud', 3), ('capacity', 2), ('management', 2), ('value', 2), ('help', 1), ('reader', 1), ('understanding', 1), ('iaa', 1), ('paas', 1), ('saas', 1), ('relate', 1), ('planning', 1), ('stakeholder', 1), ('involved', 1), ('delivering', 1), ('chain', 1), ('explains', 1)]
[('data', 3), ('javascript', 2), ('use', 2), ('pro', 1), ('visualization', 1), ('using', 1), ('make', 1), ('language', 1), ('approachable', 1), ('promotes', 1), ('idea', 1), ('gathering', 1), ('analysis', 1), ('see', 1), ('interrogate', 1), ('analyze', 1), ('library', 1), ('format', 1)]
[('lt', 7), ('gt', 7), ('em', 4), ('beginning', 2), ('development', 2), ('team', 1), ('brought', 1), ('bestselling', 1), ('iphone', 1), ('back', 1), ('io', 1), ('bringing', 1), ('definitive', 1), ('guide', 1), ('date', 1), ('apple', 1)]
[('project', 2), ('best', 1), ('coder', 1), ('world', 1), ('working', 1), ('team', 1), ('management', 1), ('rsquo', 1), ('scratch', 1), ('almost', 1), ('certain', 1), ('delayed', 1), ('come', 1), ('budget', 1), ('case', 1), ('fail', 1), ('entirely', 1), ('taking', 1), ('precise', 1)]
[('edge', 3), ('animate', 3), ('adobe', 2), ('web', 2), ('foundation', 1), ('project', 1), ('oriented', 1), ('book', 1), ('walk', 1), ('feature', 1), ('exciting', 1), ('new', 1), ('motion', 1), ('interaction', 1), ('tool', 1), ('standard', 1), ('development', 1), ('application', 1), ('allows', 1)]
[('iphone', 2), ('app', 2), ('taking', 1), ('hand', 1), ('learning', 1), ('approach', 1), ('foundation', 1), ('development', 1), ('build', 1), ('day', 1), ('io', 1), ('sdk', 1), ('quickly', 1), ('enables', 1), ('existing', 1), ('programmer', 1), ('become', 1), ('familiar', 1), ('comfortable', 1), ('coding', 1), ('objective', 1), ('using', 1), ('xcode', 1), ('storyboarding', 1)]
[('game', 4), ('html', 3), ('build', 1), ('next', 1), ('bigger', 1), ('scale', 1), ('pro', 1), ('book', 1), ('teach', 1), ('essential', 1), ('advanced', 1), ('programming', 1), ('learn', 1), ('technique', 1), ('transfer', 1), ('area', 1), ('development', 1), ('make', 1)]
[('book', 1), ('coding', 1), ('interview', 1), ('question', 1), ('software', 1), ('internet', 1), ('company', 1), ('cover', 1), ('five', 1), ('key', 1), ('factor', 1), ('determine', 1), ('performance', 1), ('candidate', 1), ('negetiveemoji', 1), ('basic', 1), ('programming', 1), ('language', 1), ('data', 1), ('structure', 1), ('algorithm', 1), ('approach', 1)]
[('solution', 4), ('problem', 4), ('quickly', 1), ('find', 1), ('common', 1), ('web', 1), ('development', 1), ('content', 1), ('presented', 1), ('popular', 1), ('format', 1), ('look', 1), ('want', 1), ('solve', 1), ('apply', 1), ('directly', 1), ('code', 1)]
[('javascript', 3), ('expert', 1), ('definitive', 1), ('guide', 1), ('understanding', 1), ('behaves', 1), ('way', 1), ('master', 1), ('inner', 1), ('working', 1), ('learning', 1), ('detail', 1), ('modern', 1), ('application', 1), ('made', 1), ('covering', 1), ('lesser', 1), ('understood', 1), ('aspect', 1)]
[('io', 2), ('solution', 2), ('code', 2), ('development', 1), ('recipe', 1), ('problem', 1), ('approach', 1), ('reference', 1), ('guide', 1), ('developing', 1), ('ipad', 1), ('iphone', 1), ('sdk', 1), ('device', 1), ('platform', 1), ('book', 1), ('provides', 1), ('depth', 1), ('sample', 1), ('discussion', 1), ('scenario', 1)]
[('digital', 3), ('asset', 3), ('management', 3), ('content', 1), ('architecture', 1), ('project', 1), ('creating', 1), ('order', 1), ('medium', 1), ('chaos', 1), ('planning', 1), ('system', 1), ('interested', 1), ('becoming', 1), ('manager', 1), ('book', 1), ('explains', 1)]
[('asp', 3), ('net', 3), ('mvc', 3), ('platform', 2), ('power', 1), ('stem', 1), ('underlying', 1), ('make', 1), ('application', 1), ('best', 1), ('need', 1), ('fully', 1), ('understand', 1), ('feature', 1), ('know', 1), ('used', 1), ('build', 1), ('effective', 1), ('elegant', 1)]
[('ubuntu', 3), ('window', 2), ('beginning', 1), ('mac', 1), ('user', 1), ('nbsp', 1), ('comprehensive', 1), ('guide', 1), ('using', 1), ('already', 1), ('know', 1), ('use', 1), ('computer', 1), ('running', 1), ('o', 1), ('learning', 1), ('new', 1), ('operating', 1), ('system', 1), ('feel', 1), ('daunting', 1), ('afraid', 1), ('try', 1)]
[('javascript', 3), ('framework', 1), ('modern', 1), ('web', 1), ('dev', 1), ('nbsp', 1), ('guide', 1), ('wild', 1), ('vast', 1), ('untamed', 1), ('frontier', 1), ('development', 1), ('tooling', 1), ('landscape', 1), ('grown', 1), ('matured', 1), ('drastically', 1), ('past', 1), ('several', 1), ('year', 1), ('book', 1), ('serve', 1)]
[('excel', 3), ('o', 2), ('microsoft', 1), ('mac', 1), ('powerful', 1), ('application', 1), ('many', 1), ('impressive', 1), ('feature', 1), ('difficult', 1), ('find', 1), ('learn', 1), ('hart', 1), ('davis', 1), ('practical', 1), ('hand', 1), ('approach', 1), ('learning', 1), ('detail', 1)]
[('graph', 2), ('apache', 2), ('giraph', 2), ('framework', 2), ('practical', 1), ('analytics', 1), ('help', 1), ('build', 1), ('data', 1), ('mining', 1), ('machine', 1), ('learning', 1), ('application', 1), ('using', 1), ('foundation', 1), ('processing', 1), ('used', 1), ('facebook', 1), ('google', 1)]
[('hadoop', 4), ('security', 2), ('practical', 1), ('excellent', 1), ('resource', 1), ('administrator', 1), ('planning', 1), ('production', 1), ('deployment', 1), ('want', 1), ('secure', 1), ('cluster', 1), ('detailed', 1), ('guide', 1), ('option', 1), ('configuration', 1), ('within', 1), ('author', 1)]
[('ruby', 3), ('syntax', 3), ('reference', 3), ('quick', 1), ('condensed', 1), ('code', 1), ('scripting', 1), ('language', 1), ('present', 1), ('essential', 1), ('organized', 1), ('format', 1), ('used', 1), ('handy', 1), ('find', 1), ('technical', 1), ('jargon', 1)]
[('responsive', 2), ('design', 2), ('html', 2), ('cs', 2), ('step', 2), ('beginning', 1), ('web', 1), ('guide', 1), ('learning', 1), ('embrace', 1), ('device', 1), ('learn', 1), ('develop', 1), ('existing', 1), ('javascript', 1), ('skill', 1), ('make', 1), ('site', 1), ('work', 1)]
[('jquery', 1), ('often', 1), ('referred', 1), ('write', 1), ('le', 1), ('javascript', 1), ('library', 1), ('allows', 1), ('clear', 1), ('line', 1), ('elegant', 1), ('tested', 1), ('code', 1), ('replace', 1), ('many', 1), ('page', 1), ('complex', 1), ('hand', 1), ('coded', 1), ('script', 1), ('speeding', 1), ('development', 1), ('time', 1), ('providing', 1), ('substantial', 1), ('cost', 1)]
[('javascript', 2), ('language', 2), ('everywhere', 1), ('pure', 1), ('popular', 1), ('library', 1), ('angular', 1), ('jquery', 1), ('knockout', 1), ('user', 1), ('modern', 1), ('object', 1), ('oriented', 1), ('java', 1), ('often', 1), ('find', 1), ('frustrating', 1), ('use', 1), ('hard', 1), ('extend', 1), ('large', 1), ('scale', 1)]
[('galaxy', 2), ('tab', 2), ('book', 2), ('learn', 1), ('use', 1), ('ease', 1), ('jargon', 1), ('clear', 1), ('concise', 1), ('short', 1), ('point', 1), ('using', 1), ('essential', 1), ('guide', 1), ('getting', 1), ('around', 1), ('samsung', 1), ('flagship', 1), ('best', 1), ('selling', 1), ('android', 1), ('based', 1), ('tablet', 1), ('reader', 1), ('explores', 1)]
[('window', 3), ('computing', 2), ('every', 1), ('day', 1), ('task', 1), ('jargon', 1), ('clear', 1), ('concise', 1), ('point', 1), ('brief', 1), ('book', 1), ('everyday', 1), ('provides', 1), ('essential', 1), ('using', 1), ('desktop', 1), ('laptop', 1), ('running', 1)]
[('spring', 4), ('web', 2), ('mvc', 2), ('essential', 2), ('prepare', 1), ('thepivotal', 1), ('certified', 1), ('application', 1), ('developer', 1), ('exam', 1), ('learn', 1), ('springmvc', 1), ('dispatcherservlet', 1), ('configuration', 1), ('programming', 1), ('model', 1), ('view', 1), ('form', 1), ('processing', 1), ('flow', 1)]
[('j', 3), ('express', 2), ('web', 2), ('application', 2), ('deep', 1), ('api', 1), ('reference', 1), ('short', 1), ('concise', 1), ('guide', 1), ('apis', 1), ('flexible', 1), ('node', 1), ('framework', 1), ('provides', 1), ('robust', 1), ('set', 1), ('feature', 1), ('building', 1), ('single', 1), ('multi', 1), ('page', 1), ('hybrid', 1), ('six', 1), ('point', 1)]
[('php', 2), ('development', 2), ('framework', 2), ('learn', 1), ('best', 1), ('practice', 1), ('version', 1), ('control', 1), ('environment', 1), ('virtualization', 1), ('coding', 1), ('standard', 1), ('discover', 1), ('useful', 1), ('web', 1), ('including', 1), ('new', 1), ('laravel', 1), ('symfony', 1), ('micro', 1)]
[('sap', 3), ('asset', 2), ('fi', 2), ('aa', 2), ('erp', 2), ('book', 1), ('noted', 1), ('expert', 1), ('andrew', 1), ('okungbowa', 1), ('explains', 1), ('accounting', 1), ('including', 1), ('associated', 1), ('business', 1), ('benefit', 1), ('guide', 1), ('considerable', 1), ('complexity', 1), ('configuration', 1), ('using', 1), ('fixed', 1)]
[('rxjava', 2), ('show', 2), ('learn', 1), ('reactive', 1), ('programming', 1), ('using', 1), ('java', 1), ('functional', 1), ('aspect', 1), ('sometimes', 1), ('called', 1), ('book', 1), ('solve', 1), ('callback', 1), ('hell', 1), ('write', 1), ('thread', 1), ('safe', 1), ('code', 1), ('without', 1), ('hanging', 1), ('onto', 1), ('state', 1), ('variable', 1), ('come', 1)]
[('iphone', 2), ('ipad', 2), ('development', 2), ('interested', 1), ('apps', 1), ('want', 1), ('learn', 1), ('whether', 1), ('relative', 1), ('newcomer', 1), ('io', 1), ('old', 1), ('hand', 1), ('looking', 1), ('expand', 1), ('horizon', 1), ('perfect', 1), ('swift', 1), ('flavored', 1), ('book', 1)]
[('hyper', 2), ('vmware', 2), ('learn', 1), ('deploy', 1), ('support', 1), ('building', 1), ('know', 1), ('vsphere', 1), ('whether', 1), ('looking', 1), ('run', 1), ('hypervisors', 1), ('parallel', 1), ('migrate', 1), ('completely', 1), ('administrator', 1), ('everything', 1), ('need', 1), ('started', 1)]
[('business', 2), ('apply', 1), ('analytics', 1), ('problem', 1), ('using', 1), ('popular', 1), ('software', 1), ('tool', 1), ('sa', 1), ('matter', 1), ('industry', 1), ('book', 1), ('provide', 1), ('knowledge', 1), ('insight', 1), ('partner', 1), ('need', 1), ('make', 1), ('better', 1), ('decision', 1), ('faster', 1), ('learn', 1)]
[('friend', 1), ('ed', 1)]
[('hacking', 3), ('learn', 2), ('ethical', 2), ('basic', 1), ('gain', 1), ('insight', 1), ('logic', 1), ('algorithm', 1), ('syntax', 1), ('python', 1), ('book', 1), ('set', 1), ('foundation', 1), ('help', 1), ('understand', 1), ('advanced', 1), ('concept', 1), ('future', 1)]
[('build', 1), ('physic', 1), ('based', 1), ('game', 1), ('engine', 1), ('simulation', 1), ('system', 1), ('rigid', 1), ('body', 1), ('dynamic', 1), ('beginning', 1), ('scratch', 1), ('book', 1), ('cover', 1), ('implementation', 1), ('technology', 1), ('html', 1), ('javascript', 1), ('assemble', 1), ('simple', 1), ('yet', 1), ('complete', 1), ('fundamental', 1)]
[('challenge', 3), ('gamemaker', 2), ('programming', 2), ('gml', 2), ('push', 1), ('skill', 1), ('edge', 1), ('using', 1), ('popular', 1), ('studio', 1), ('includes', 1), ('outline', 1), ('scoring', 1), ('time', 1), ('guide', 1), ('useful', 1), ('code', 1), ('working', 1), ('example', 1)]
[('python', 3), ('testing', 2), ('nose', 2), ('quickly', 1), ('learn', 1), ('automate', 1), ('unit', 1), ('code', 1), ('automation', 1), ('library', 1), ('doctest', 1), ('unittest', 1), ('pytest', 1), ('book', 1), ('explores', 1), ('important', 1), ('concept', 1), ('software', 1), ('implementation', 1)]
[('step', 2), ('master', 1), ('oracle', 1), ('goldengate', 1), ('technology', 1), ('multiple', 1), ('database', 1), ('platform', 1), ('using', 1), ('implementation', 1), ('guide', 1), ('learn', 1), ('advanced', 1), ('feature', 1), ('use', 1), ('building', 1), ('robust', 1), ('high', 1), ('availability', 1), ('replication', 1), ('system', 1), ('provided', 1), ('detailed', 1), ('illustration', 1)]
[('data', 2), ('business', 2), ('learn', 1), ('develop', 1), ('powerful', 1), ('analytics', 1), ('application', 1), ('quickly', 1), ('sql', 1), ('server', 1), ('database', 1), ('administrator', 1), ('developer', 1), ('organization', 1), ('able', 1), ('sift', 1), ('derive', 1), ('intelligence', 1), ('needed', 1), ('drive', 1), ('decision', 1)]
[('maintainable', 2), ('service', 2), ('build', 1), ('straightforward', 1), ('apis', 1), ('create', 1), ('usable', 1), ('although', 1), ('book', 1), ('focus', 1), ('distributed', 1), ('emphasizes', 1), ('core', 1), ('principle', 1), ('apply', 1), ('even', 1), ('pure', 1), ('ood', 1), ('oop', 1), ('construct', 1), ('nbsp', 1)]
[('game', 2), ('programming', 2), ('gain', 1), ('skill', 1), ('required', 1), ('create', 1), ('fun', 1), ('compelling', 1), ('using', 1), ('gamemaker', 1), ('studio', 1), ('gml', 1), ('language', 1), ('full', 1), ('color', 1), ('book', 1), ('learn', 1), ('practical', 1), ('element', 1), ('important', 1), ('creating', 1), ('section', 1)]
[('object', 2), ('oriented', 2), ('java', 2), ('discover', 1), ('programming', 1), ('unique', 1), ('tutorial', 1), ('book', 1), ('us', 1), ('eclipse', 1), ('write', 1), ('generate', 1), ('output', 1), ('example', 1), ('topic', 1), ('class', 1), ('interface', 1), ('overloading', 1), ('overriding', 1), ('interactive', 1)]
[('code', 2), ('roslyn', 2), ('learn', 1), ('build', 1), ('interactive', 1), ('source', 1), ('analytics', 1), ('system', 1), ('using', 1), ('javascript', 1), ('concise', 1), ('page', 1), ('book', 1), ('help', 1), ('create', 1), ('use', 1), ('practical', 1), ('analysis', 1), ('tool', 1), ('utilizing', 1), ('new', 1), ('feature', 1), ('microsoft', 1), ('compiler', 1)]
[('story', 3), ('build', 2), ('hacker', 2), ('news', 2), ('view', 2), ('learn', 1), ('hybrid', 1), ('mobile', 1), ('apps', 1), ('using', 1), ('ionic', 1), ('firebase', 1), ('client', 1), ('app', 1), ('top', 1), ('comment', 1), ('add', 1), ('favorite', 1), ('etc', 1), ('nbsp', 1), ('introductory', 1), ('guide', 1), ('cover', 1), ('whole', 1)]
[('bi', 3), ('open', 2), ('source', 2), ('tool', 2), ('implement', 2), ('learn', 1), ('transition', 1), ('excel', 1), ('based', 1), ('business', 1), ('intelligence', 1), ('analysis', 1), ('enterprise', 1), ('stack', 1), ('select', 1), ('best', 1), ('free', 1), ('freemium', 1), ('company', 1), ('need', 1), ('design', 1)]
[('aws', 3), ('amazon', 2), ('ec', 2), ('sqs', 2), ('kinesis', 2), ('implementation', 2), ('provide', 1), ('solution', 1), ('problem', 1), ('including', 1), ('using', 1), ('management', 1), ('console', 1), ('cli', 1), ('sdk', 1), ('java', 1), ('find', 1), ('recipe', 1), ('configuration', 1)]
[('object', 2), ('oriented', 2), ('programming', 2), ('core', 2), ('dedicated', 2), ('discover', 1), ('concept', 1), ('unique', 1), ('tutorial', 1), ('book', 1), ('consists', 1), ('four', 1), ('major', 1), ('section', 1), ('cover', 1), ('topic', 1), ('nine', 1), ('five', 1)]
[('learn', 1), ('e', 1), ('best', 1), ('practice', 1), ('code', 1), ('optimization', 1), ('organization', 1), ('walk', 1), ('practical', 1), ('common', 1), ('example', 1), ('implement', 1), ('complete', 1), ('component', 1), ('application', 1), ('book', 1), ('cover', 1), ('basic', 1), ('concept', 1), ('modern', 1), ('javascript', 1), ('primarily', 1)]
[('game', 4), ('head', 1), ('start', 1), ('development', 1), ('career', 1), ('genre', 1), ('guide', 1), ('absolute', 1), ('beginner', 1), ('whether', 1), ('action', 1), ('role', 1), ('playing', 1), ('interactive', 1), ('fiction', 1), ('covered', 1), ('mostly', 1), ('codeless', 1), ('nbsp', 1)]
[('support', 2), ('take', 1), ('deep', 1), ('dive', 1), ('significant', 1), ('sql', 1), ('server', 1), ('feature', 1), ('memory', 1), ('online', 1), ('transaction', 1), ('processing', 1), ('latest', 1), ('development', 1), ('covered', 1), ('including', 1), ('row', 1), ('storage', 1), ('columnstore', 1), ('index', 1), ('operational', 1), ('analytics', 1)]
[('java', 5), ('new', 3), ('explore', 1), ('module', 1), ('sdk', 1), ('jdk', 1), ('jvm', 1), ('jshell', 1), ('comprehensive', 1), ('book', 1), ('cover', 1), ('use', 1), ('feature', 1), ('revealed', 1), ('experienced', 1), ('programmer', 1), ('looking', 1), ('migrate', 1), ('author', 1)]
[('learn', 1), ('integrate', 1), ('interface', 1), ('element', 1), ('io', 1), ('user', 1), ('come', 1), ('know', 1), ('love', 1), ('button', 1), ('switch', 1), ('picker', 1), ('toolbars', 1), ('slider', 1), ('edition', 1), ('best', 1), ('selling', 1), ('book', 1), ('master', 1), ('variety', 1), ('design', 1), ('pattern', 1)]
[('needed', 2), ('create', 1), ('maintain', 1), ('raspberry', 1), ('pi', 1), ('based', 1), ('entertainment', 1), ('system', 1), ('comprehensive', 1), ('fun', 1), ('manner', 1), ('instead', 1), ('front', 1), ('loading', 1), ('bunch', 1), ('theory', 1), ('minutia', 1), ('book', 1), ('take', 1), ('practical', 1), ('approach', 1), ('showing', 1)]
[('scilab', 2), ('familiarize', 1), ('using', 1), ('concise', 1), ('practical', 1), ('tutorial', 1), ('focused', 1), ('writing', 1), ('code', 1), ('learn', 1), ('concept', 1), ('starting', 1), ('basic', 1), ('book', 1), ('cover', 1), ('array', 1), ('based', 1), ('computing', 1), ('plotting', 1), ('working', 1), ('file', 1), ('introduction', 1)]
[('decoupled', 2), ('drupal', 2), ('implement', 1), ('headless', 1), ('design', 1), ('build', 1), ('easily', 1), ('maintainable', 1), ('web', 1), ('application', 1), ('book', 1), ('begin', 1), ('showing', 1), ('cm', 1), ('workflow', 1), ('best', 1), ('practice', 1), ('give', 1), ('basic', 1), ('need', 1), ('working', 1), ('part', 1)]
[('website', 2), ('using', 2), ('ractive', 2), ('j', 2), ('develop', 1), ('template', 1), ('driven', 1), ('ui', 1), ('library', 1), ('book', 1), ('project', 1), ('oriented', 1), ('simplifies', 1), ('process', 1), ('create', 1), ('online', 1), ('application', 1), ('interactive', 1), ('default', 1), ('equips', 1), ('starting', 1)]
[('learn', 2), ('natural', 2), ('language', 2), ('harness', 1), ('power', 1), ('ai', 1), ('processing', 1), ('performing', 1), ('task', 1), ('spell', 1), ('check', 1), ('text', 1), ('summarization', 1), ('document', 1), ('classification', 1), ('generation', 1), ('along', 1), ('way', 1), ('skill', 1), ('implement', 1)]
[('website', 2), ('data', 2), ('closely', 1), ('examine', 1), ('scraping', 1), ('processing', 1), ('technique', 1), ('nbsp', 1), ('extracting', 1), ('format', 1), ('suitable', 1), ('analysis', 1), ('review', 1), ('tool', 1), ('use', 1), ('compare', 1), ('feature', 1), ('efficiency', 1), ('focusing', 1)]
[('based', 2), ('provide', 1), ('evidence', 1), ('answer', 1), ('measured', 1), ('relied', 1), ('upon', 1), ('business', 1), ('database', 1), ('administrator', 1), ('able', 1), ('make', 1), ('sound', 1), ('architectural', 1), ('decision', 1), ('fast', 1), ('changing', 1), ('landscape', 1), ('virtualized', 1), ('server', 1), ('container', 1), ('solution', 1)]
[('data', 2), ('enjoy', 1), ('reading', 1), ('interview', 1), ('dozen', 1), ('professional', 1), ('see', 1), ('picture', 1), ('work', 1), ('industry', 1), ('managing', 1), ('analyzing', 1), ('helping', 1), ('know', 1), ('take', 1), ('move', 1), ('current', 1), ('expertise', 1)]
[('successfully', 1), ('create', 1), ('manage', 1), ('hyper', 1), ('environment', 1), ('without', 1), ('marketing', 1), ('fluff', 1), ('book', 1), ('lab', 1), ('driven', 1), ('hand', 1), ('approach', 1), ('running', 1), ('quickly', 1), ('efficiently', 1), ('possible', 1), ('virtualization', 1), ('cornerstone', 1), ('today', 1)]
[('nmap', 3), ('openvas', 2), ('metasploit', 2), ('started', 1), ('short', 1), ('book', 1), ('understand', 1), ('integrated', 1), ('greater', 1), ('flexibility', 1), ('efficiency', 1), ('begin', 1), ('working', 1), ('zenmap', 1)]
[('machine', 3), ('learning', 2), ('implement', 1), ('model', 1), ('io', 1), ('application', 1), ('short', 1), ('work', 1), ('begin', 1), ('reviewing', 1), ('primary', 1), ('principal', 1), ('move', 1), ('discussing', 1), ('advanced', 1), ('topic', 1), ('coreml', 1), ('framework', 1), ('used', 1), ('enable', 1)]
[('new', 1), ('oracle', 1), ('database', 1), ('administrator', 1), ('ground', 1), ('running', 1), ('book', 1), ('help', 1), ('develop', 1), ('ability', 1), ('think', 1), ('foot', 1), ('move', 1), ('focus', 1), ('instant', 1), ('arcane', 1), ('syntax', 1), ('detail', 1), ('broad', 1), ('corporate', 1), ('issue', 1), ('along', 1), ('way', 1), ('see', 1)]
[('natural', 2), ('build', 1), ('chatbot', 1), ('using', 1), ('python', 1), ('open', 1), ('source', 1), ('tool', 1), ('book', 1), ('begin', 1), ('introduction', 1), ('chatbots', 1), ('gain', 1), ('vital', 1), ('information', 1), ('architecture', 1), ('dive', 1), ('straight', 1), ('language', 1), ('processing', 1)]
[('nbsp', 2), ('hundred', 2), ('program', 2), ('thing', 1), ('done', 1), ('used', 1), ('pricey', 1), ('software', 1), ('fraction', 1), ('cost', 1), ('free', 1), ('work', 1), ('commercial', 1), ('pay', 1), ('dollar', 1)]
[('examine', 1), ('keep', 1), ('io', 1), ('device', 1), ('safe', 1), ('physical', 1), ('world', 1), ('including', 1), ('creating', 1), ('company', 1), ('policy', 1), ('iphones', 1), ('assessing', 1), ('defending', 1), ('cyber', 1), ('vulnerability', 1), ('attack', 1), ('working', 1), ('preinstalled', 1), ('third', 1), ('party', 1), ('tool', 1), ('strategy', 1)]
[('discover', 1), ('need', 1), ('learn', 1), ('thrive', 1), ('master', 1), ('online', 1), ('course', 1), ('creation', 1), ('income', 1), ('generating', 1), ('strategy', 1), ('really', 1), ('work', 1), ('short', 1), ('book', 1), ('story', 1), ('worked', 1), ('author', 1), ('azat', 1), ('mardan', 1), ('giving', 1), ('best', 1), ('tool', 1)]
[('end', 2), ('step', 2), ('rely', 1), ('practical', 1), ('guide', 1), ('cyber', 1), ('safety', 1), ('online', 1), ('security', 1), ('written', 1), ('expressly', 1), ('non', 1), ('technical', 1), ('audience', 1), ('need', 1), ('protect', 1), ('without', 1), ('judgment', 1), ('little', 1), ('jargon', 1)]
[('ransomware', 2), ('attack', 2), ('know', 1), ('mitigate', 1), ('handle', 1), ('via', 1), ('essential', 1), ('cybersecurity', 1), ('training', 1), ('book', 1), ('stop', 1), ('happen', 1), ('learn', 1), ('type', 1), ('distribution', 1), ('method', 1), ('internal', 1), ('structure', 1), ('family', 1), ('variant', 1)]
[('apis', 2), ('use', 1), ('asp', 1), ('net', 1), ('core', 1), ('create', 1), ('durable', 1), ('cross', 1), ('platform', 1), ('web', 1), ('series', 1), ('applied', 1), ('practical', 1), ('scenario', 1), ('example', 1), ('book', 1), ('help', 1), ('build', 1), ('fast', 1), ('scalable', 1), ('progress', 1), ('basic', 1), ('framework', 1)]
[('turbine', 3), ('build', 2), ('wind', 2), ('lego', 2), ('functioning', 1), ('generate', 1), ('electricity', 1), ('mean', 1), ('model', 1), ('look', 1), ('miniature', 1), ('book', 1), ('want', 1), ('learn', 1), ('real', 1), ('work', 1), ('using', 1), ('mindstorms', 1)]
[('react', 3), ('assemble', 1), ('complete', 1), ('stack', 1), ('required', 1), ('build', 1), ('modern', 1), ('web', 1), ('app', 1), ('using', 1), ('mongodb', 1), ('express', 1), ('node', 1), ('book', 1), ('cover', 1), ('many', 1), ('complementary', 1), ('tool', 1), ('router', 1), ('graphql', 1), ('bootstrap', 1), ('babel', 1), ('webpack', 1), ('new', 1), ('edition', 1), ('use', 1)]
[('perl', 3), ('started', 1), ('learn', 1), ('important', 1), ('core', 1), ('concept', 1), ('programming', 1), ('variable', 1), ('flow', 1), ('control', 1), ('expression', 1), ('additionally', 1), ('book', 1), ('cover', 1), ('pattern', 1), ('matching', 1), ('show', 1), ('extremely', 1), ('flexible', 1), ('powerful', 1)]
[('feature', 2), ('laravel', 2), ('develop', 1), ('cutting', 1), ('edge', 1), ('website', 1), ('application', 1), ('using', 1), ('new', 1), ('book', 1), ('start', 1), ('introduction', 1), ('take', 1), ('glance', 1), ('newly', 1), ('introduced', 1), ('moving', 1), ('setting', 1), ('development', 1), ('environment', 1)]
[('successfully', 1), ('navigate', 1), ('changing', 1), ('world', 1), ('technology', 1), ('ethic', 1), ('reconcile', 1), ('system', 1), ('administration', 1), ('principle', 1), ('separation', 1), ('duty', 1), ('account', 1), ('segmentation', 1), ('administrative', 1), ('group', 1), ('data', 1), ('protection', 1), ('security', 1), ('breach', 1), ('become', 1)]
[('nbsp', 4), ('version', 3), ('control', 3), ('distributed', 2), ('use', 1), ('azure', 1), ('repos', 1), ('manage', 1), ('code', 1), ('centralized', 1), ('system', 1), ('book', 1), ('show', 1), ('work', 1), ('team', 1), ('foundation', 1), ('tfvc', 1), ('git', 1)]
[('file', 3), ('experience', 1), ('depth', 1), ('exploration', 1), ('logical', 1), ('volume', 1), ('management', 1), ('use', 1), ('manager', 1), ('manipulate', 1), ('directory', 1), ('critical', 1), ('concept', 1), ('linux', 1), ('everything', 1), ('fun', 1), ('interesting', 1), ('us', 1), ('fact', 1)]
[('new', 1), ('intermediate', 1), ('developer', 1), ('want', 1), ('use', 1), ('hand', 1), ('guide', 1), ('prepare', 1), ('salesforce', 1), ('certified', 1), ('platform', 1), ('app', 1), ('builder', 1), ('credential', 1), ('awarded', 1), ('designing', 1), ('building', 1), ('implementing', 1), ('application', 1), ('using', 1), ('declarative', 1), ('customization', 1)]
[('team', 2), ('need', 1), ('learn', 1), ('use', 1), ('microsoft', 1), ('questioning', 1), ('drive', 1), ('user', 1), ('adoption', 1), ('govern', 1), ('content', 1), ('manage', 1), ('access', 1), ('deployment', 1), ('either', 1), ('way', 1), ('second', 1), ('edition', 1), ('bestseller', 1), ('stop', 1), ('shop', 1), ('learning', 1)]
[('arduino', 2), ('nbsp', 2), ('extend', 1), ('range', 1), ('skill', 1), ('incorporate', 1), ('new', 1), ('development', 1), ('hardware', 1), ('software', 1), ('understand', 1), ('electronic', 1), ('application', 1), ('function', 1), ('everyday', 1), ('life', 1), ('project', 1), ('based', 1), ('book', 1), ('extends', 1), ('uno', 1), ('starter', 1)]
[('php', 2), ('aided', 1), ('three', 1), ('key', 1), ('element', 1), ('object', 1), ('fundamental', 1), ('design', 1), ('principle', 1), ('best', 1), ('practice', 1), ('learn', 1), ('develop', 1), ('elegant', 1), ('rock', 1), ('solid', 1), ('system', 1), ('using', 1), ('th', 1), ('edition', 1), ('popular', 1), ('book', 1), ('fully', 1), ('updated', 1), ('including', 1)]
[('lt', 3), ('gt', 3), ('div', 2), ('learn', 1), ('write', 1), ('algorithm', 1), ('program', 1), ('new', 1), ('field', 1), ('quantum', 1), ('computing', 1), ('second', 1), ('edition', 1), ('updated', 1), ('equip', 1), ('latest', 1), ('knowledge', 1), ('tool', 1), ('needed', 1), ('complex', 1), ('problem', 1), ('solver', 1), ('evolving', 1)]
[('book', 1), ('provides', 1), ('solution', 1), ('best', 1), ('practice', 1), ('tip', 1), ('workarounds', 1), ('plan', 1), ('design', 1), ('customize', 1), ('implement', 1), ('manage', 1), ('microsoft', 1), ('team', 1), ('environment', 1), ('revised', 1), ('edition', 1), ('updated', 1), ('reflect', 1), ('latest', 1), ('technique', 1), ('product', 1)]
[('computer', 3), ('end', 2), ('vision', 2), ('book', 2), ('design', 1), ('develop', 1), ('production', 1), ('grade', 1), ('project', 1), ('real', 1), ('world', 1), ('industry', 1), ('problem', 1), ('discus', 1), ('algorithm', 1), ('application', 1), ('using', 1), ('pytorch', 1), ('begin', 1), ('fundamental', 1)]
[('solution', 2), ('simplify', 1), ('first', 1), ('step', 1), ('ravendb', 1), ('nosql', 1), ('document', 1), ('database', 1), ('book', 1), ('take', 1), ('task', 1), ('oriented', 1), ('approach', 1), ('showing', 1), ('common', 1), ('problem', 1), ('potential', 1), ('brief', 1), ('explanation', 1), ('work', 1), ('mechanism', 1), ('used', 1), ('based', 1)]
[('test', 1), ('automation', 1), ('key', 1), ('aspect', 1), ('delivering', 1), ('high', 1), ('quality', 1), ('software', 1), ('reducing', 1), ('time', 1), ('market', 1), ('several', 1), ('tool', 1), ('approach', 1), ('available', 1), ('today', 1), ('constraint', 1), ('specificity', 1), ('book', 1), ('introduces', 1), ('nbsp', 1), ('boozang', 1), ('codeless', 1), ('web', 1)]
[('rapidly', 1), ('prototype', 1), ('program', 1), ('new', 1), ('iot', 1), ('edge', 1), ('solution', 1), ('using', 1), ('low', 1), ('cost', 1), ('maker', 1), ('tech', 1), ('arduino', 1), ('raspberry', 1), ('pi', 1), ('nvidia', 1), ('focus', 1), ('electronics', 1), ('book', 1), ('allows', 1), ('experienced', 1), ('computer', 1), ('science', 1), ('student', 1)]
[('nbsp', 3), ('export', 1), ('author', 1), ('barker', 1), ('cover', 1), ('information', 1), ('key', 1), ('proficiency', 1), ('oo', 1), ('programming', 1), ('language', 1), ('java', 1), ('show', 1), ('really', 1), ('create', 1), ('reusable', 1), ('code', 1), ('extensible', 1), ('application', 1)]
[('time', 2), ('project', 2), ('manager', 2), ('urgent', 1), ('deadline', 1), ('constant', 1), ('lack', 1), ('permanent', 1), ('delay', 1), ('faithful', 1), ('companion', 1), ('greatest', 1), ('enemy', 1), ('even', 1), ('certified', 1), ('enormous', 1), ('knowledge', 1), ('lot', 1)]
[('mobile', 2), ('step', 2), ('digitize', 1), ('business', 1), ('operation', 1), ('internally', 1), ('externally', 1), ('structured', 1), ('app', 1), ('design', 1), ('customer', 1), ('today', 1), ('turn', 1), ('searching', 1), ('future', 1), ('vendor', 1), ('book', 1), ('guide', 1), ('process', 1), ('building', 1)]
[('create', 2), ('swiftui', 2), ('data', 2), ('user', 2), ('mobile', 1), ('app', 1), ('apple', 1), ('platform', 1), ('using', 1), ('conjunction', 1), ('google', 1), ('firebase', 1), ('backend', 1), ('post', 1), ('retrieve', 1), ('authenticate', 1), ('store', 1), ('securely', 1), ('use', 1), ('engaging', 1), ('aesthetically', 1), ('appealing', 1)]
[('commerce', 3), ('next', 2), ('j', 2), ('site', 2), ('leverage', 1), ('power', 1), ('quickly', 1), ('produce', 1), ('efficient', 1), ('project', 1), ('oriented', 1), ('book', 1), ('simplify', 1), ('process', 1), ('setting', 1), ('starter', 1), ('using', 1), ('start', 1), ('finish', 1), ('creating', 1), ('usable', 1), ('offer', 1)]
[('file', 3), ('io', 2), ('project', 2), ('maintaining', 1), ('often', 1), ('result', 1), ('thousand', 1), ('code', 1), ('scattered', 1), ('around', 1), ('folder', 1), ('wanted', 1), ('reuse', 1), ('found', 1), ('making', 1), ('copy', 1), ('swift', 1), ('alone', 1), ('many', 1), ('developer', 1)]
[('development', 2), ('based', 2), ('application', 2), ('take', 1), ('advantage', 1), ('full', 1), ('power', 1), ('swift', 1), ('xpc', 1), ('macos', 1), ('differs', 1), ('io', 1), ('web', 1), ('multicomponent', 1), ('besides', 1), ('usual', 1), ('gui', 1), ('app', 1), ('extension', 1), ('wide', 1), ('range', 1)]
[('home', 2), ('many', 2), ('appliance', 2), ('build', 1), ('versatile', 1), ('automation', 1), ('system', 1), ('scratch', 1), ('way', 1), ('controlling', 1), ('smartphones', 1), ('voice', 1), ('gesture', 1), ('etc', 1), ('book', 1), ('dive', 1), ('option', 1), ('communicating', 1), ('wirelessly', 1)]
[('game', 2), ('new', 2), ('create', 1), ('fun', 1), ('polished', 1), ('gamify', 1), ('apps', 1), ('gamekit', 1), ('center', 1), ('fully', 1), ('updated', 1), ('edition', 1), ('kyle', 1), ('richter', 1), ('classic', 1), ('help', 1), ('reach', 1), ('customer', 1), ('social', 1), ('integration', 1), ('multiplayer', 1), ('achievement', 1), ('quickly', 1), ('add', 1)]
[('neural', 2), ('network', 2), ('understand', 1), ('work', 1), ('learn', 1), ('implement', 1), ('using', 1), ('tensorflow', 1), ('kera', 1), ('new', 1), ('edition', 1), ('focus', 1), ('fundamental', 1), ('concept', 1), ('time', 1), ('practical', 1), ('aspect', 1), ('implementing', 1), ('deep', 1), ('learning', 1)]
[('mobile', 2), ('device', 2), ('leverage', 1), ('foundational', 1), ('concept', 1), ('practical', 1), ('skill', 1), ('forensics', 1), ('perform', 1), ('forensically', 1), ('sound', 1), ('criminal', 1), ('investigation', 1), ('involving', 1), ('complex', 1), ('currently', 1), ('available', 1), ('market', 1), ('using', 1), ('modern', 1), ('tool', 1), ('technique', 1)]
[('gatsby', 2), ('leverage', 1), ('powerful', 1), ('new', 1), ('combination', 1), ('netlify', 1), ('cm', 1), ('free', 1), ('open', 1), ('source', 1), ('content', 1), ('management', 1), ('solution', 1), ('build', 1), ('blazing', 1), ('fast', 1), ('apps', 1), ('book', 1), ('show', 1), ('create', 1), ('react', 1), ('powered', 1), ('website', 1), ('using', 1), ('framework', 1), ('frontend', 1)]
[('firmware', 3), ('use', 1), ('book', 1), ('build', 1), ('secure', 1), ('operating', 1), ('system', 1), ('hypervisors', 1), ('become', 1), ('successively', 1), ('hardened', 1), ('malware', 1), ('moved', 1), ('stack', 1), ('represents', 1), ('boundary', 1), ('hardware', 1), ('software', 1)]
[('concept', 2), ('dd', 2), ('map', 1), ('idea', 1), ('domain', 1), ('driven', 1), ('design', 1), ('transpose', 1), ('clean', 1), ('testable', 1), ('quality', 1), ('code', 1), ('effective', 1), ('alongside', 1), ('laravel', 1), ('framework', 1), ('book', 1), ('teach', 1), ('implement', 1), ('pattern', 1), ('present', 1)]
[('model', 2), ('lego', 2), ('build', 1), ('robotics', 1), ('using', 1), ('wedo', 1), ('book', 1), ('feature', 1), ('created', 1), ('especially', 1), ('introduce', 1), ('enthusiast', 1), ('hardware', 1), ('software', 1), ('concept', 1), ('creating', 1), ('robot', 1), ('inspired', 1), ('natural', 1), ('wildlife', 1), ('nbsp', 1), ('learn', 1), ('basic', 1), ('behind', 1)]
[('explore', 1), ('full', 1), ('capability', 1), ('arduino', 1), ('whether', 1), ('need', 1), ('measure', 1), ('light', 1), ('heat', 1), ('mass', 1), ('force', 1), ('conductivity', 1), ('book', 1), ('used', 1), ('complete', 1), ('reference', 1), ('guide', 1), ('making', 1), ('virtually', 1), ('scientific', 1), ('measurement', 1), ('pc', 1), ('linux', 1), ('based', 1)]
[('myfaces', 2), ('expert', 1), ('written', 1), ('book', 1), ('cover', 1), ('open', 1), ('source', 1), ('apache', 1), ('project', 1), ('popular', 1), ('implementation', 1), ('javaserver', 1), ('face', 1), ('web', 1), ('framework', 1), ('put', 1), ('forth', 1), ('sun', 1), ('microsystems', 1), ('text', 1), ('introduces', 1), ('basic', 1), ('jsf', 1), ('standard', 1)]
[('blender', 3), ('book', 2), ('used', 2), ('anyone', 1), ('us', 1), ('need', 1), ('user', 1), ('know', 1), ('modeling', 1), ('animation', 1), ('rendering', 1), ('fully', 1), ('functional', 1), ('compositing', 1), ('post', 1), ('production', 1), ('application', 1), ('explores', 1), ('use', 1)]
[('game', 2), ('zune', 2), ('xna', 1), ('brings', 1), ('ability', 1), ('create', 1), ('run', 1), ('pc', 1), ('xbox', 1), ('mobile', 1), ('device', 1), ('creating', 1), ('many', 1), ('way', 1), ('similar', 1), ('working', 1), ('platform', 1), ('present', 1)]
[('iphone', 2), ('application', 1), ('registered', 1), ('developer', 1), ('still', 1), ('possible', 1), ('create', 1), ('top', 1), ('selling', 1), ('app', 1), ('stand', 1), ('apart', 1), ('six', 1), ('figure', 1), ('crowd', 1), ('course', 1), ('need', 1), ('idea', 1), ('flawless', 1), ('code', 1)]
[('million', 1), ('user', 1), ('growing', 1), ('every', 1), ('week', 1), ('zoho', 1), ('popular', 1), ('online', 1), ('suite', 1), ('productivity', 1), ('application', 1), ('include', 1), ('email', 1), ('word', 1), ('processor', 1), ('spreadsheet', 1), ('accounting', 1), ('collaboration', 1), ('social', 1), ('networking', 1), ('creative', 1), ('tool', 1)]
[('word', 2), ('beginning', 1), ('microsoft', 1), ('visually', 1), ('stimulating', 1), ('introductory', 1), ('guide', 1), ('teach', 1), ('complete', 1), ('newbie', 1), ('slightly', 1), ('experienced', 1), ('yet', 1), ('equally', 1), ('baffled', 1), ('user', 1), ('need', 1), ('know', 1), ('write', 1), ('thesis', 1), ('proposal', 1), ('tonight', 1)]
[('chosen', 1), ('elegant', 1), ('design', 1), ('high', 1), ('re', 1), ('display', 1), ('speedy', 1), ('processor', 1), ('bold', 1), ('top', 1), ('notch', 1), ('device', 1), ('learn', 1), ('take', 1), ('advantage', 1), ('feature', 1), ('easy', 1), ('guide', 1), ('best', 1), ('blackberry', 1), ('trainer', 1)]
[('foundation', 1), ('expression', 1), ('blend', 1), ('silverlight', 1), ('take', 1), ('first', 1), ('step', 1), ('creating', 1), ('rich', 1), ('internet', 1), ('application', 1), ('rias', 1), ('using', 1), ('latest', 1), ('release', 1), ('microsoft', 1), ('technology', 1), ('explore', 1), ('feature', 1), ('custom', 1), ('user', 1), ('control', 1)]
[('every', 1), ('day', 1), ('organization', 1), ('large', 1), ('small', 1), ('fall', 1), ('victim', 1), ('attack', 1), ('data', 1), ('encryption', 1), ('provides', 1), ('shield', 1), ('help', 1), ('defend', 1), ('intruder', 1), ('increasing', 1), ('pressure', 1), ('government', 1), ('regulator', 1), ('consumer', 1), ('business', 1), ('community', 1)]
[('gcc', 2), ('expanded', 1), ('revised', 1), ('light', 1), ('gnu', 1), ('compiler', 1), ('collection', 1), ('release', 1), ('april', 1), ('book', 1), ('offer', 1), ('detailed', 1), ('coverage', 1), ('somewhat', 1), ('daunting', 1), ('array', 1), ('option', 1), ('feature', 1), ('includes', 1), ('several', 1), ('chapter', 1), ('devoted', 1), ('support', 1)]
[('beginning', 2), ('iphone', 2), ('development', 2), ('author', 1), ('bestselling', 1), ('back', 1), ('excellent', 1), ('material', 1), ('completely', 1), ('updated', 1), ('io', 1), ('written', 1), ('ground', 1), ('using', 1), ('latest', 1), ('version', 1), ('apple', 1), ('xcode', 1)]
[('pl', 3), ('sql', 3), ('programming', 2), ('solution', 2), ('task', 2), ('oracle', 1), ('recipe', 1), ('go', 1), ('book', 1), ('take', 1), ('oriented', 1), ('approach', 1), ('let', 1), ('quickly', 1), ('look', 1), ('specific', 1), ('see', 1), ('pattern', 1), ('simple', 1), ('modifying', 1)]
[('ajax', 2), ('application', 2), ('richfaces', 1), ('component', 1), ('library', 1), ('javaserver', 1), ('face', 1), ('advanced', 1), ('framework', 1), ('easily', 1), ('integrating', 1), ('capability', 1), ('business', 1), ('let', 1), ('quickly', 1), ('develop', 1), ('next', 1), ('generation', 1), ('web', 1), ('based', 1), ('jsf', 1)]
[('apps', 3), ('facebook', 2), ('twitter', 2), ('beginning', 1), ('io', 1), ('apis', 1), ('show', 1), ('add', 1), ('power', 1), ('social', 1), ('networking', 1), ('mobile', 1), ('iphone', 1), ('ipad', 1), ('ipod', 1), ('touch', 1), ('book', 1), ('guide', 1), ('write', 1), ('connect', 1)]
[('office', 2), ('home', 2), ('amp', 2), ('word', 2), ('excel', 2), ('powerpoint', 2), ('onenote', 2), ('made', 1), ('simple', 1), ('window', 1), ('practical', 1), ('highly', 1), ('effective', 1), ('approach', 1), ('using', 1), ('business', 1), ('outlook', 1), ('student', 1), ('program', 1), ('create', 1)]
[('edition', 3), ('ubuntu', 2), ('introduces', 2), ('sixth', 1), ('beginning', 1), ('linux', 1), ('newbie', 1), ('power', 1), ('user', 1), ('system', 1), ('administrator', 1), ('natty', 1), ('narwhal', 1), ('release', 1), ('based', 1), ('bestselling', 1), ('fifth', 1), ('new', 1), ('unity', 1), ('interface', 1)]
[('sharepoint', 2), ('branding', 2), ('practical', 1), ('customization', 1), ('expert', 1), ('erik', 1), ('swenson', 1), ('cut', 1), ('fluff', 1), ('discus', 1), ('accessible', 1), ('easy', 1), ('understand', 1), ('consulting', 1), ('process', 1), ('create', 1), ('aesthetically', 1), ('pleasing', 1), ('highly', 1), ('usable', 1), ('branded', 1)]
[('blender', 2), ('tool', 2), ('new', 1), ('world', 1), ('creative', 1), ('possibility', 1), ('opened', 1), ('popular', 1), ('powerful', 1), ('open', 1), ('source', 1), ('animation', 1), ('free', 1), ('software', 1), ('important', 1), ('professional', 1), ('used', 1), ('animated', 1), ('short', 1), ('television', 1)]
[('ado', 2), ('cover', 2), ('definitive', 1), ('book', 1), ('subject', 1), ('leading', 1), ('reference', 1), ('first', 1), ('release', 1), ('version', 1), ('related', 1), ('technology', 1), ('adox', 1), ('adomd', 1), ('supported', 1), ('online', 1), ('sample', 1), ('multiple', 1)]
[('today', 1), ('rapidly', 1), ('changing', 1), ('technological', 1), ('world', 1), ('increasingly', 1), ('important', 1), ('web', 1), ('desktop', 1), ('application', 1), ('accessible', 1), ('everyone', 1), ('including', 1), ('special', 1), ('need', 1), ('legal', 1), ('requirement', 1), ('accessibility', 1), ('often', 1)]
[('author', 1), ('make', 1), ('performance', 1), ('issue', 1), ('central', 1), ('topic', 1), ('depth', 1), ('discussion', 1), ('example', 1)]
[('best', 1), ('selling', 1), ('author', 1), ('bill', 1), ('vaughn', 1), ('give', 1), ('practical', 1), ('advice', 1), ('vb', 1), ('developer', 1), ('use', 1), ('immediately', 1), ('make', 1), ('data', 1), ('access', 1), ('code', 1), ('faster', 1), ('easier', 1), ('write', 1), ('understand', 1)]
[('lafler', 1), ('book', 1), ('provides', 1), ('sa', 1), ('user', 1), ('version', 1), ('wonderful', 1), ('collection', 1), ('tip', 1), ('undocumented', 1), ('hard', 1), ('find', 1), ('tidbit', 1), ('information', 1), ('useful', 1), ('technique', 1), ('entry', 1)]
[('website', 3), ('large', 2), ('scale', 2), ('problem', 2), ('pro', 1), ('development', 1), ('operation', 1), ('give', 1), ('experience', 1), ('need', 1), ('create', 1), ('operate', 1), ('production', 1), ('unique', 1), ('set', 1), ('regarding', 1), ('design', 1), ('worse', 1)]
[('apps', 2), ('iphone', 2), ('game', 1), ('ipad', 1), ('remain', 1), ('popular', 1), ('type', 1), ('apple', 1), ('itunes', 1), ('app', 1), ('store', 1), ('angry', 1), ('bird', 1), ('ring', 1), ('bell', 1), ('able', 1), ('ipod', 1), ('touch', 1), ('possible', 1)]
[('ipod', 3), ('touch', 3), ('unleash', 1), ('take', 1), ('limit', 1), ('using', 1), ('secret', 1), ('tip', 1), ('technique', 1), ('fast', 1), ('fun', 1), ('taking', 1), ('max', 1), ('help', 1), ('io', 1), ('find', 1), ('best', 1), ('undocumented', 1)]
[('window', 3), ('new', 2), ('described', 1), ('microsoft', 1), ('lsquo', 1), ('boldest', 1), ('rsquo', 1), ('release', 1), ('beginning', 1), ('take', 1), ('feature', 1), ('help', 1), ('familiar', 1), ('reveal', 1), ('possibility', 1), ('amazing', 1)]
[('performance', 2), ('maximizing', 1), ('algorithm', 1), ('application', 1), ('extremely', 1), ('important', 1), ('give', 1), ('competitive', 1), ('advantage', 1), ('lower', 1), ('cost', 1), ('ownership', 1), ('happier', 1), ('user', 1), ('pro', 1), ('net', 1), ('explains', 1), ('internals', 1), ('window', 1), ('clr', 1)]
[('programmer', 1), ('guide', 1), ('book', 1), ('software', 1), ('developer', 1), ('want', 1), ('truly', 1), ('understand', 1), ('whether', 1), ('worked', 1), ('another', 1), ('general', 1), ('purpose', 1), ('programming', 1), ('language', 1), ('fast', 1), ('paced', 1), ('focused', 1), ('chapter', 1), ('take', 1), ('straight', 1)]
[('performance', 2), ('site', 2), ('hugely', 1), ('important', 1), ('area', 1), ('web', 1), ('development', 1), ('run', 1), ('slowly', 1), ('user', 1), ('going', 1), ('leave', 1), ('problem', 1), ('grows', 1), ('get', 1), ('popular', 1), ('pro', 1), ('javascript', 1), ('give', 1), ('tool', 1), ('need', 1), ('keep', 1)]
[('database', 2), ('application', 2), ('java', 2), ('glassfish', 2), ('beginning', 1), ('driven', 1), ('development', 1), ('ee', 1), ('using', 1), ('focus', 1), ('open', 1), ('source', 1), ('persistence', 1), ('engine', 1), ('book', 1), ('show', 1), ('programmer', 1), ('develop', 1), ('utilizing', 1), ('relational', 1), ('technology', 1)]
[('java', 3), ('jsf', 3), ('ee', 2), ('enterprise', 1), ('platform', 1), ('gotten', 1), ('facelift', 1), ('javaserver', 1), ('face', 1), ('big', 1), ('part', 1), ('new', 1), ('significant', 1), ('upgrade', 1), ('includes', 1), ('facelets', 1), ('integration', 1), ('use', 1), ('option', 1), ('variety', 1), ('web', 1)]
[('run', 2), ('task', 2), ('heard', 1), ('hype', 1), ('hadoop', 1), ('petabyte', 1), ('scale', 1), ('data', 1), ('mining', 1), ('insanely', 1), ('fast', 1), ('gigantic', 1), ('cloud', 1), ('absurdly', 1), ('cheap', 1), ('heavily', 1), ('committed', 1), ('tech', 1), ('giant', 1), ('ibm', 1), ('yahoo', 1), ('apache', 1), ('project', 1)]
[('professional', 1), ('take', 1), ('time', 1), ('learn', 1), ('need', 1), ('known', 1), ('disaster', 1), ('recovery', 1), ('labor', 1), ('pretense', 1), ('good', 1), ('administration', 1), ('equal', 1), ('close', 1), ('five', 1), ('nine', 1), ('uptime', 1), ('technical', 1), ('see', 1), ('value', 1), ('planning', 1)]
[('backbone', 3), ('j', 3), ('web', 3), ('step', 2), ('library', 2), ('beginning', 1), ('guide', 1), ('learning', 1), ('using', 1), ('project', 1), ('popular', 1), ('javascript', 1), ('among', 1), ('developer', 1), ('used', 1), ('create', 1), ('modular', 1), ('single', 1), ('page', 1), ('apps', 1)]
[('management', 3), ('chef', 2), ('automation', 1), ('opscode', 1), ('provides', 1), ('depth', 1), ('understanding', 1), ('written', 1), ('ruby', 1), ('erlang', 1), ('configuration', 1), ('cloud', 1), ('infrastructure', 1), ('system', 1), ('administration', 1), ('network', 1), ('targeted', 1)]
[('create', 1), ('app', 1), ('website', 1), ('game', 1), ('attract', 1), ('user', 1), ('perhaps', 1), ('importantly', 1), ('keep', 1), ('irresistible', 1), ('apps', 1), ('explains', 1), ('exactly', 1), ('using', 1), ('library', 1), ('motivational', 1), ('design', 1), ('pattern', 1), ('real', 1), ('world', 1)]
[('java', 2), ('language', 2), ('feature', 2), ('collection', 2), ('beginning', 1), ('cover', 1), ('essential', 1), ('advanced', 1), ('programming', 1), ('new', 1), ('lambda', 1), ('expression', 1), ('closure', 1), ('inner', 1), ('class', 1), ('thread', 1), ('garbage', 1), ('stream', 1), ('author', 1)]
[('mac', 3), ('using', 3), ('o', 2), ('maverick', 2), ('learn', 1), ('use', 1), ('easy', 1), ('way', 1), ('jargon', 1), ('clear', 1), ('concise', 1), ('point', 1), ('handy', 1), ('guide', 1), ('computer', 1), ('running', 1), ('providing', 1), ('quick', 1), ('resource', 1), ('beginner', 1), ('enthusiast', 1)]
[('method', 2), ('advanced', 1), ('actionscript', 1), ('fresh', 1), ('look', 1), ('new', 1), ('approach', 1), ('utilizing', 1), ('valuable', 1), ('structural', 1), ('technique', 1), ('commonly', 1), ('used', 1), ('field', 1), ('rich', 1), ('interactive', 1), ('application', 1), ('development', 1), ('broken', 1), ('different', 1)]
[('hl', 5), ('biztalk', 2), ('accelerator', 2), ('provides', 1), ('detailed', 1), ('guide', 1), ('planning', 1), ('delivery', 1), ('compliant', 1), ('system', 1), ('using', 1), ('dedicated', 1), ('microsoft', 1), ('primary', 1), ('standard', 1), ('various', 1), ('version', 1), ('use', 1)]
[('query', 3), ('sql', 2), ('server', 2), ('performance', 2), ('running', 1), ('fast', 1), ('enough', 1), ('wondering', 1), ('memory', 1), ('database', 1), ('feature', 1), ('tired', 1), ('phone', 1), ('call', 1), ('frustrated', 1), ('user', 1), ('grant', 1), ('fritchey', 1), ('book', 1), ('tuning', 1), ('answer', 1)]
[('game', 3), ('spritebuilder', 2), ('development', 2), ('coco', 2), ('fun', 1), ('versatile', 1), ('environment', 1), ('natural', 1), ('successor', 1), ('chipmunk', 1), ('learn', 1), ('io', 1), ('experienced', 1), ('developer', 1), ('author', 1), ('steffen', 1), ('itterheim', 1), ('show', 1)]
[('javaserver', 2), ('face', 2), ('application', 2), ('book', 1), ('using', 1), ('create', 1), ('deploy', 1), ('interactive', 1), ('delivered', 1), ('end', 1), ('user', 1), ('via', 1), ('browser', 1), ('interface', 1), ('component', 1), ('based', 1), ('technology', 1), ('enabling', 1), ('easy', 1), ('development', 1), ('especially', 1)]
[('android', 2), ('wearable', 2), ('beginning', 1), ('give', 1), ('skill', 1), ('need', 1), ('make', 1), ('effective', 1), ('apps', 1), ('wear', 1), ('based', 1), ('smartwatches', 1), ('fitness', 1), ('bracelet', 1), ('connected', 1), ('home', 1), ('controller', 1), ('google', 1), ('glass', 1), ('delight', 1), ('user', 1), ('giving', 1), ('access', 1)]
[('programming', 3), ('swift', 2), ('o', 2), ('step', 2), ('absolute', 1), ('beginner', 1), ('guide', 1), ('learning', 1), ('code', 1), ('using', 1), ('apple', 1), ('hottest', 1), ('new', 1), ('language', 1), ('book', 1), ('teach', 1), ('complete', 1), ('novice', 1), ('write', 1), ('program', 1)]
[('fusion', 3), ('oracle', 2), ('application', 2), ('environment', 2), ('pro', 1), ('stop', 1), ('source', 1), ('help', 1), ('installing', 1), ('suite', 1), ('premise', 1), ('aid', 1), ('monitoring', 1), ('ongoing', 1), ('administration', 1), ('author', 1), ('tushar', 1)]
[('use', 3), ('book', 2), ('function', 2), ('beginning', 1), ('second', 1), ('edition', 1), ('hand', 1), ('showing', 1), ('howto', 1), ('language', 1), ('write', 1), ('save', 1), ('script', 1), ('data', 1), ('file', 1), ('writecustom', 1), ('statistical', 1), ('built', 1), ('showsthe', 1), ('specific', 1)]
[('neo', 2), ('graph', 2), ('database', 2), ('benefit', 2), ('bring', 2), ('beginning', 1), ('introduction', 1), ('world', 1), ('application', 1), ('established', 1), ('market', 1), ('always', 1), ('improving', 1)]
[('lt', 3), ('gt', 3), ('digital', 3), ('book', 2), ('div', 1), ('brief', 1), ('primer', 1), ('covering', 1), ('concept', 1), ('central', 1), ('imagery', 1), ('audio', 1), ('illustration', 1), ('using', 1), ('open', 1), ('source', 1), ('software', 1), ('package', 1), ('gimp', 1), ('audacity', 1), ('inkscape', 1), ('used', 1)]
[('agile', 4), ('story', 2), ('learn', 1), ('successful', 1), ('adopting', 1), ('see', 1), ('good', 1), ('bad', 1), ('example', 1), ('adopted', 1), ('broken', 1), ('second', 1), ('edition', 1), ('contains', 1), ('year', 1), ('real', 1), ('world', 1), ('experience', 1), ('team', 1), ('project', 1), ('chapter', 1)]
[('sap', 3), ('javascript', 2), ('j', 2), ('abap', 2), ('essential', 2), ('easily', 1), ('master', 1), ('quick', 1), ('guide', 1), ('develop', 1), ('mobile', 1), ('desktop', 1), ('application', 1), ('fiori', 1), ('book', 1), ('equips', 1), ('developer', 1), ('topic', 1), ('started', 1), ('focus', 1)]
[('design', 2), ('apps', 2), ('gain', 1), ('information', 1), ('need', 1), ('secure', 1), ('useful', 1), ('high', 1), ('performing', 1), ('expose', 1), ('end', 1), ('user', 1), ('little', 1), ('risk', 1), ('possible', 1), ('book', 1), ('show', 1), ('best', 1), ('develop', 1), ('android', 1), ('security', 1), ('mind', 1), ('explore', 1), ('concept', 1)]
[('new', 2), ('technology', 1), ('constantly', 1), ('evolving', 1), ('blockchain', 1), ('taking', 1), ('development', 1), ('place', 1), ('mobile', 1), ('decade', 1), ('ago', 1), ('ethereum', 1), ('leading', 1), ('platform', 1), ('creating', 1), ('wave', 1), ('application', 1), ('nbsp', 1), ('book', 1), ('reveals', 1), ('everything', 1), ('need', 1)]
[('azure', 4), ('board', 2), ('book', 2), ('understand', 1), ('explore', 1), ('feature', 1), ('management', 1), ('cover', 1), ('configuration', 1), ('advanced', 1), ('administration', 1), ('start', 1), ('setting', 1), ('project', 1), ('devops', 1), ('give', 1), ('overview', 1)]
[('azure', 3), ('function', 2), ('serverless', 2), ('computing', 2), ('start', 1), ('developing', 1), ('building', 1), ('simple', 1), ('solution', 1), ('without', 1), ('worrying', 1), ('infrastructure', 1), ('nbsp', 1), ('increased', 1), ('need', 1), ('deploying', 1), ('integrates', 1), ('resource', 1)]
[('deep', 2), ('learning', 2), ('advanced', 2), ('develop', 1), ('optimize', 1), ('model', 1), ('architecture', 1), ('book', 1), ('teach', 1), ('intricate', 1), ('detail', 1), ('subtlety', 1), ('algorithm', 1), ('core', 1), ('convolutional', 1), ('neural', 1), ('network', 1), ('applied', 1)]
[('oracle', 2), ('application', 2), ('adf', 2), ('quickly', 1), ('speed', 1), ('development', 1), ('framework', 1), ('rapidly', 1), ('build', 1), ('modern', 1), ('user', 1), ('friendly', 1), ('easy', 1), ('use', 1), ('expand', 1), ('maintain', 1), ('survival', 1), ('guide', 1), ('cover', 1), ('latest', 1), ('version', 1), ('explains', 1)]
[('data', 3), ('sql', 2), ('server', 2), ('head', 1), ('start', 1), ('learning', 1), ('latest', 1), ('impactful', 1), ('feature', 1), ('big', 1), ('cluster', 1), ('combine', 1), ('large', 1), ('volume', 1), ('non', 1), ('relational', 1), ('analysis', 1), ('along', 1), ('stored', 1), ('relationally', 1), ('inside', 1), ('database', 1), ('book', 1)]
[('automation', 3), ('azure', 2), ('focus', 1), ('exclusively', 1), ('resource', 1), ('manager', 1), ('arm', 1), ('deployment', 1), ('model', 1), ('gain', 1), ('depth', 1), ('knowledge', 1), ('topic', 1), ('runbook', 1), ('authoring', 1), ('different', 1), ('type', 1), ('runbooks', 1), ('hybrid', 1), ('cloud', 1), ('book', 1), ('cover', 1)]
[('microcontrollers', 2), ('learn', 1), ('use', 1), ('without', 1), ('frill', 1), ('math', 1), ('book', 1), ('us', 1), ('practical', 1), ('approach', 1), ('show', 1), ('develop', 1), ('embedded', 1), ('system', 1), ('bit', 1), ('pic', 1), ('using', 1), ('xc', 1), ('compiler', 1), ('complete', 1), ('guide', 1)]
[('mvvm', 2), ('learn', 1), ('use', 1), ('popular', 1), ('light', 1), ('nbsp', 1), ('development', 1), ('framework', 1), ('focus', 1), ('reliable', 1), ('maintainable', 1), ('code', 1), ('deployed', 1), ('across', 1), ('net', 1), ('supported', 1), ('mobile', 1), ('platform', 1), ('clear', 1), ('example', 1), ('provided', 1), ('advantage', 1)]
[('making', 2), ('learn', 1), ('configure', 1), ('raspberry', 1), ('pi', 1), ('multiple', 1), ('different', 1), ('device', 1), ('capable', 1), ('playing', 1), ('retro', 1), ('game', 1), ('beyond', 1), ('theory', 1), ('book', 1), ('focus', 1), ('heavily', 1), ('project', 1), ('console', 1), ('attach', 1), ('tv', 1), ('computer', 1), ('display', 1), ('tabletop', 1), ('arcade', 1)]
[('syntax', 3), ('reference', 3), ('quick', 1), ('condensed', 1), ('code', 1), ('programming', 1), ('language', 1), ('present', 1), ('essential', 1), ('organized', 1), ('format', 1), ('used', 1), ('handy', 1), ('find', 1), ('technical', 1), ('jargon', 1)]
[('learn', 2), ('wxpython', 2), ('quickly', 1), ('discover', 1), ('solution', 1), ('common', 1), ('problem', 1), ('best', 1), ('practice', 1), ('understand', 1), ('everything', 1), ('offer', 1), ('book', 1), ('anyone', 1), ('wanting', 1), ('use', 1), ('desktop', 1), ('gui', 1), ('toolkit', 1), ('assumes', 1), ('prior', 1), ('knowledge', 1)]
[('via', 2), ('employ', 1), ('essential', 1), ('hand', 1), ('tool', 1), ('function', 1), ('matlab', 1), ('simulink', 1), ('package', 1), ('explained', 1), ('demonstrated', 1), ('interactive', 1), ('example', 1), ('case', 1), ('study', 1), ('book', 1), ('contains', 1), ('dozen', 1), ('simulation', 1), ('model', 1), ('solved', 1), ('problem', 1)]
[('hit', 1), ('ground', 1), ('running', 1), ('book', 1), ('quickly', 1), ('learn', 1), ('fundamental', 1), ('html', 1), ('form', 1), ('processing', 1), ('user', 1), ('authentication', 1), ('database', 1), ('crud', 1), ('create', 1), ('update', 1), ('delete', 1), ('operation', 1), ('using', 1), ('asp', 1), ('net', 1), ('core', 1), ('family', 1), ('technology', 1), ('utilize', 1)]
[('learn', 1), ('everything', 1), ('need', 1), ('master', 1), ('adonisjs', 1), ('framework', 1), ('including', 1), ('topic', 1), ('interacting', 1), ('database', 1), ('rendering', 1), ('template', 1), ('writing', 1), ('asynchronous', 1), ('code', 1), ('hosting', 1), ('site', 1), ('ssl', 1), ('along', 1), ('way', 1), ('see', 1), ('build', 1), ('commerce', 1)]
[('right', 2), ('skill', 2), ('find', 1), ('book', 1), ('nbsp', 1), ('clarifies', 1), ('best', 1), ('practice', 1), ('creating', 1), ('high', 1), ('functioning', 1), ('data', 1), ('integration', 1), ('team', 1), ('enabling', 1), ('understand', 1), ('requirement', 1), ('document', 1), ('solution', 1), ('planning', 1), ('designing', 1)]
[('django', 3), ('apps', 3), ('develop', 1), ('standalone', 1), ('serve', 1), ('reusable', 1), ('building', 1), ('block', 1), ('larger', 1), ('project', 1), ('book', 1), ('explores', 1), ('best', 1), ('practice', 1), ('publishing', 1), ('special', 1), ('consideration', 1), ('testing', 1), ('strategy', 1), ('extracting', 1)]
[('machine', 2), ('learning', 2), ('ml', 2), ('java', 2), ('build', 1), ('solution', 1), ('development', 1), ('book', 1), ('show', 1), ('designing', 1), ('apps', 1), ('data', 1), ('key', 1), ('driver', 1), ('considered', 1), ('throughout', 1), ('phase', 1), ('project', 1), ('life', 1), ('cycle', 1), ('practical', 1), ('help', 1)]
[('cryptocurrencies', 1), ('underlying', 1), ('data', 1), ('structure', 1), ('blockchains', 1), ('become', 1), ('intertwined', 1), ('daily', 1), ('life', 1), ('full', 1), ('understanding', 1), ('essential', 1), ('anyone', 1), ('want', 1), ('keep', 1), ('remain', 1), ('informed', 1), ('future', 1), ('finance', 1)]
[('mode', 2), ('thinking', 2), ('working', 1), ('effectively', 1), ('apple', 1), ('platform', 1), ('corporate', 1), ('business', 1), ('level', 1), ('includes', 1), ('infrastructure', 1), ('administrator', 1), ('adopt', 1), ('find', 1), ('success', 1), ('force', 1), ('leave', 1), ('year', 1), ('dogma', 1)]
[('inclusive', 1), ('design', 1), ('simple', 1), ('mean', 1), ('product', 1), ('created', 1), ('intention', 1), ('accessible', 1), ('many', 1), ('different', 1), ('user', 1), ('possible', 1), ('long', 1), ('time', 1), ('concept', 1), ('accessibility', 1), ('limited', 1), ('term', 1)]
[('digital', 3), ('book', 2), ('brief', 1), ('primer', 1), ('covering', 1), ('concept', 1), ('central', 1), ('imagery', 1), ('audio', 1), ('illustration', 1), ('using', 1), ('open', 1), ('source', 1), ('software', 1), ('package', 1), ('gimp', 1), ('audacity', 1), ('inkscape', 1), ('used', 1), ('free', 1)]
[('data', 2), ('architecture', 2), ('book', 1), ('highlight', 1), ('different', 1), ('type', 1), ('illustrates', 1), ('many', 1), ('possibility', 1), ('hidden', 1), ('behind', 1), ('term', 1), ('big', 1), ('usage', 1), ('sql', 1), ('database', 1), ('deployment', 1), ('stream', 1), ('analytics', 1), ('machine', 1), ('learning', 1)]
[('nbsp', 3), ('data', 2), ('perform', 2), ('analysis', 2), ('learn', 1), ('create', 1), ('powerful', 1), ('visualization', 1), ('easily', 1), ('quickly', 1), ('develop', 1), ('report', 1), ('query', 1), ('jumpstart', 1), ('tableau', 1), ('cover', 1), ('basic', 1), ('reporting', 1), ('function', 1), ('bi', 1), ('user', 1)]
[('mac', 2), ('day', 2), ('best', 1), ('selling', 1), ('author', 1), ('wallace', 1), ('wang', 1), ('teach', 1), ('use', 1), ('el', 1), ('capitan', 1), ('latest', 1), ('version', 1), ('operating', 1), ('system', 1), ('everyday', 1), ('situation', 1), ('book', 1), ('show', 1), ('beginner', 1), ('user', 1), ('running', 1), ('operate', 1), ('work', 1)]
[('operation', 2), ('management', 2), ('suite', 2), ('azure', 2), ('learn', 1), ('protect', 1), ('back', 1), ('recover', 1), ('monitor', 1), ('data', 1), ('infrastructure', 1), ('cloud', 1), ('microsoft', 1), ('oms', 1), ('backup', 1), ('site', 1), ('recovery', 1), ('implementing', 1), ('nbsp', 1), ('start', 1)]
[('ro', 3), ('robotics', 2), ('learn', 1), ('started', 1), ('programming', 1), ('using', 1), ('robot', 1), ('operation', 1), ('system', 1), ('targeted', 1), ('absolute', 1), ('beginner', 1), ('linux', 1), ('python', 1), ('short', 1), ('guide', 1), ('show', 1), ('build', 1), ('project', 1), ('open', 1), ('source', 1), ('flexible', 1)]
[('end', 2), ('explore', 1), ('concept', 1), ('pattern', 1), ('architecture', 1), ('behind', 1), ('apprun', 1), ('application', 1), ('guide', 1), ('able', 1), ('build', 1), ('web', 1), ('apps', 1), ('fast', 1), ('market', 1), ('low', 1), ('learning', 1), ('curve', 1), ('high', 1), ('development', 1), ('productivity', 1), ('learn', 1)]
[('application', 2), ('computer', 2), ('vision', 2), ('build', 1), ('practical', 1), ('using', 1), ('opencv', 1), ('library', 1), ('python', 1), ('book', 1), ('discus', 1), ('different', 1), ('facet', 1), ('image', 1), ('object', 1), ('detection', 1), ('tracking', 1), ('motion', 1), ('analysis', 1)]
[('dsc', 2), ('use', 1), ('window', 1), ('powershell', 1), ('desired', 1), ('state', 1), ('configuration', 1), ('configure', 1), ('infrastructure', 1), ('premise', 1), ('cloud', 1), ('environment', 1), ('change', 1), ('deployment', 1), ('happening', 1), ('time', 1), ('make', 1), ('necessary', 1), ('adjustment', 1), ('system', 1)]
[('api', 2), ('leverage', 1), ('power', 1), ('html', 1), ('web', 1), ('speech', 1), ('quickly', 1), ('add', 1), ('voice', 1), ('capability', 1), ('website', 1), ('project', 1), ('oriented', 1), ('book', 1), ('simplifies', 1), ('process', 1), ('setting', 1), ('manipulating', 1), ('browser', 1), ('using', 1), ('little', 1), ('text', 1), ('editor', 1), ('free', 1)]
[('reference', 2), ('book', 2), ('handy', 1), ('detailing', 1), ('intricacy', 1), ('cover', 1), ('version', 1), ('feature', 1), ('including', 1), ('numerous', 1), ('significant', 1), ('change', 1), ('syntax', 1), ('string', 1), ('counting', 1), ('grid', 1), ('unit', 1), ('starting', 1), ('basic', 1), ('structure', 1), ('take', 1)]
[('grpc', 3), ('net', 3), ('developer', 2), ('asp', 2), ('core', 2), ('nbsp', 2), ('broaden', 1), ('experience', 1), ('learning', 1), ('use', 1), ('together', 1), ('microsoft', 1), ('framework', 1), ('discover', 1), ('new', 1), ('way', 1), ('developing', 1), ('apis', 1), ('beginning', 1), ('guide', 1)]
[('use', 1), ('reference', 1), ('security', 1), ('practitioner', 1), ('overview', 1), ('major', 1), ('standard', 1), ('framework', 1), ('proposed', 1), ('architecture', 1), ('meet', 1), ('book', 1), ('identifies', 1), ('describes', 1), ('necessary', 1), ('control', 1), ('process', 1), ('implemented', 1)]
[('development', 2), ('engineering', 2), ('nbsp', 2), ('effectively', 1), ('learn', 1), ('apply', 1), ('software', 1), ('technique', 1), ('web', 1), ('application', 1), ('using', 1), ('rail', 1), ('accelerated', 1), ('tutorial', 1), ('book', 1), ('teach', 1), ('modern', 1), ('practice', 1), ('including', 1), ('git', 1), ('flow', 1), ('containerization', 1)]
[('lego', 2), ('sensor', 2), ('push', 1), ('new', 1), ('field', 1), ('technology', 1), ('using', 1), ('arduino', 1), ('project', 1), ('cookbook', 1), ('mindstorms', 1), ('ev', 1), ('invention', 1), ('confined', 1), ('factory', 1), ('made', 1), ('incorporate', 1), ('wide', 1), ('range', 1), ('display', 1), ('led', 1), ('array', 1), ('actuator', 1)]
[('feature', 2), ('master', 1), ('frequently', 1), ('used', 1), ('write', 1), ('financial', 1), ('software', 1), ('option', 1), ('derivative', 1), ('including', 1), ('stl', 1), ('template', 1), ('functional', 1), ('programming', 1), ('numerical', 1), ('library', 1), ('book', 1), ('cover', 1), ('new', 1), ('introduced', 1)]
[('data', 3), ('model', 2), ('develop', 1), ('powerful', 1), ('bind', 1), ('disparate', 1), ('source', 1), ('coherent', 1), ('whole', 1), ('extend', 1), ('using', 1), ('dax', 1), ('query', 1), ('language', 1), ('underpins', 1), ('power', 1), ('bi', 1), ('create', 1), ('reusable', 1), ('measure', 1), ('deliver', 1), ('finely', 1), ('crafted', 1), ('custom', 1), ('calculation', 1)]
[('book', 1), ('provides', 1), ('comprehensive', 1), ('explanation', 1), ('precision', 1), ('personalized', 1), ('healthcare', 1), ('explores', 1), ('advanced', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('data', 1), ('driven', 1), ('technology', 1), ('improving', 1), ('diagnosis', 1), ('treatment', 1)]
[('book', 1), ('aimed', 1), ('practitioner', 1), ('data', 1), ('science', 1), ('consideration', 1), ('bespoke', 1), ('problem', 1), ('standard', 1), ('tech', 1), ('stack', 1), ('industry', 1), ('guide', 1), ('fundamental', 1), ('technical', 1), ('decision', 1), ('making', 1), ('including', 1), ('planning', 1), ('building', 1)]
[('open', 2), ('source', 2), ('tool', 2), ('framework', 2), ('beginning', 1), ('level', 1), ('book', 1), ('introduces', 1), ('major', 1), ('java', 1), ('scratch', 1), ('cover', 1), ('successful', 1), ('prevalent', 1), ('lightweight', 1), ('spring', 1), ('jboss', 1), ('hibernate', 1), ('tapestry', 1), ('ant', 1)]
[('delphi', 2), ('good', 1), ('coverage', 1), ('net', 1), ('port', 1), ('book', 1), ('tightly', 1), ('focused', 1), ('new', 1), ('includes', 1), ('fcl', 1), ('overview', 1), ('need', 1), ('make', 1), ('sense', 1), ('microsoft', 1), ('documentation', 1), ('particularly', 1), ('clear', 1), ('written', 1)]
[('project', 2), ('xml', 2), ('offer', 1), ('thorough', 1), ('introduction', 1), ('several', 1), ('apache', 1), ('foundation', 1), ('hottest', 1), ('including', 1), ('xerces', 1), ('axis', 1), ('xindice', 1), ('show', 1), ('build', 1), ('driven', 1), ('website', 1), ('using', 1), ('popular', 1), ('cocoon', 1), ('demonstrates', 1), ('transform', 1), ('based', 1)]
[('developer', 2), ('book', 1), ('dealing', 1), ('regular', 1), ('expression', 1), ('window', 1), ('concise', 1), ('manner', 1), ('teach', 1), ('beginner', 1), ('example', 1), ('without', 1), ('bogging', 1), ('syntactical', 1), ('explanation', 1), ('ideal', 1), ('reference', 1), ('experienced', 1), ('programmer', 1)]
[('php', 2), ('using', 1), ('friendly', 1), ('accessible', 1), ('visual', 1), ('learning', 1), ('style', 1), ('book', 1), ('take', 1), ('reader', 1), ('detail', 1), ('setting', 1), ('development', 1), ('environment', 1), ('code', 1), ('basic', 1), ('painlessly', 1), ('possible', 1), ('show', 1), ('wire', 1), ('together', 1), ('several', 1), ('real', 1), ('world', 1)]
[('project', 4), ('learn', 2), ('example', 1), ('book', 1), ('offer', 1), ('complete', 1), ('javascript', 1), ('save', 1), ('web', 1), ('developer', 1), ('countless', 1), ('hour', 1), ('development', 1), ('time', 1), ('serve', 1), ('sample', 1), ('adapted', 1), ('use', 1)]
[('gem', 2), ('book', 1), ('comprehensive', 1), ('guide', 1), ('utilizing', 1), ('creating', 1), ('ruby', 1), ('coverage', 1), ('provides', 1), ('enormous', 1), ('code', 1), ('library', 1), ('help', 1), ('developer', 1), ('improve', 1), ('project', 1), ('detail', 1), ('best', 1), ('useful', 1), ('including', 1), ('one', 1), ('speed', 1), ('web', 1)]
[('user', 2), ('sharepoint', 2), ('book', 1), ('nonsense', 1), ('guide', 1), ('office', 1), ('environment', 1), ('deployed', 1), ('written', 1), ('person', 1), ('responsible', 1), ('large', 1), ('deployment', 1), ('role', 1), ('helping', 1), ('desktop', 1), ('integrate', 1), ('use', 1), ('sp', 1), ('feature', 1), ('seamlessly', 1)]
[('vb', 5), ('book', 3), ('accelerated', 1), ('fastest', 1), ('path', 1), ('mastery', 1), ('programmer', 1), ('need', 1), ('know', 1), ('understand', 1), ('really', 1), ('work', 1), ('address', 1), ('cover', 1), ('topic', 1), ('depth', 1), ('teach', 1), ('core', 1)]
[('customize', 2), ('flex', 2), ('application', 2), ('book', 1), ('detail', 1), ('look', 1), ('feel', 1), ('take', 1), ('style', 1), ('layout', 1), ('using', 1), ('cs', 1), ('bring', 1), ('design', 1), ('asset', 1), ('photoshop', 1), ('illustrator', 1), ('firework', 1)]
[('amp', 3), ('nbsp', 3), ('software', 2), ('traditional', 2), ('embedded', 2), ('lt', 1), ('gt', 1), ('discover', 1), ('apply', 1), ('engineering', 1), ('pattern', 1), ('develop', 1), ('robust', 1), ('firmware', 1), ('faster', 1), ('development', 1), ('approach', 1), ('author', 1), ('experience', 1), ('project', 1)]
[('leader', 1), ('tech', 1), ('organization', 1), ('regularly', 1), ('adapt', 1), ('strategy', 1), ('changing', 1), ('market', 1), ('creating', 1), ('culture', 1), ('understands', 1), ('support', 1), ('technical', 1), ('nontechnical', 1), ('refined', 1), ('skill', 1), ('difficult', 1), ('master', 1), ('even', 1)]
[('application', 2), ('runtime', 2), ('use', 1), ('book', 1), ('learn', 1), ('distributed', 1), ('dapr', 1), ('new', 1), ('event', 1), ('driven', 1), ('microsoft', 1), ('designed', 1), ('help', 1), ('developer', 1), ('build', 1), ('microservices', 1), ('using', 1), ('palette', 1), ('language', 1), ('framework', 1), ('run', 1), ('everywhere', 1)]
[('test', 4), ('ruby', 2), ('application', 2), ('failing', 2), ('learn', 1), ('properly', 1), ('rail', 1), ('first', 1), ('writing', 1), ('implementing', 1), ('code', 1), ('make', 1), ('pas', 1), ('book', 1), ('teach', 1), ('employ', 1), ('driven', 1), ('development', 1), ('tdd', 1), ('using', 1), ('rspec', 1)]
[('lt', 3), ('div', 3), ('gt', 3), ('machine', 2), ('computing', 2), ('new', 1), ('updated', 1), ('edition', 1), ('take', 1), ('detail', 1), ('learning', 1), ('give', 1), ('understanding', 1), ('cognitive', 1), ('iot', 1), ('big', 1), ('data', 1), ('ai', 1), ('quantum', 1), ('book', 1), ('explains', 1)]
[('db', 2), ('module', 2), ('work', 1), ('write', 1), ('sql', 1), ('access', 1), ('database', 1), ('using', 1), ('optimized', 1), ('code', 1), ('fastest', 1), ('response', 1), ('book', 1), ('give', 1), ('complete', 1), ('documentation', 1), ('via', 1), ('python', 1), ('ibm_db', 1), ('provide', 1), ('number', 1), ('example', 1), ('usage', 1)]
[('data', 2), ('pipeline', 2), ('build', 1), ('efficient', 1), ('scalable', 1), ('batch', 1), ('real', 1), ('time', 1), ('ingestion', 1), ('devops', 1), ('continuous', 1), ('integration', 1), ('deployment', 1), ('advanced', 1), ('analytics', 1), ('solution', 1), ('azure', 1), ('platform', 1), ('book', 1), ('teach', 1), ('design', 1), ('implement', 1), ('robust', 1)]
[('know', 2), ('take', 2), ('simple', 1), ('question', 1), ('basic', 1), ('measurement', 1), ('arduino', 1), ('raspberry', 1), ('pi', 1), ('pc', 1), ('lot', 1), ('time', 1), ('use', 1), ('microcontrollers', 1), ('sensor', 1), ('programming', 1), ('skill', 1), ('collect', 1), ('data', 1), ('book', 1), ('step', 1)]
[('apply', 1), ('industrial', 1), ('engineering', 1), ('science', 1), ('invention', 1), ('assembly', 1), ('software', 1), ('described', 1), ('planned', 1), ('built', 1), ('allowing', 1), ('free', 1), ('flex', 1), ('practice', 1), ('according', 1), ('need', 1), ('putting', 1), ('principle', 1), ('habit', 1), ('rule', 1), ('reading', 1), ('agile', 1)]
[('written', 2), ('speed', 1), ('quickly', 1), ('connect', 1), ('modern', 1), ('code', 1), ('python', 1), ('existing', 1), ('codebase', 1), ('book', 1), ('practitioner', 1), ('software', 1), ('interoperability', 1), ('window', 1), ('environment', 1), ('language', 1)]
[('system', 2), ('opensolaris', 1), ('rapidly', 1), ('evolving', 1), ('operating', 1), ('root', 1), ('solaris', 1), ('suitable', 1), ('deployment', 1), ('laptop', 1), ('desktop', 1), ('workstation', 1), ('storage', 1), ('appliance', 1), ('data', 1), ('center', 1), ('server', 1), ('smallest', 1), ('single', 1), ('purpose', 1), ('largest', 1)]
[('flash', 3), ('solid', 2), ('designer', 1), ('looking', 1), ('overview', 1), ('c', 1), ('book', 1), ('use', 1), ('practical', 1), ('exercise', 1), ('soon', 1), ('master', 1), ('fundamental', 1), ('fourth', 1), ('edition', 1), ('adobe', 1), ('authoring', 1), ('tool', 1), ('using', 1)]
[('blackberry', 2), ('game', 2), ('smart', 1), ('phone', 1), ('business', 1), ('fact', 1), ('throw', 1), ('away', 1), ('boring', 1), ('spreadsheet', 1), ('tear', 1), ('yearly', 1), ('budget', 1), ('report', 1), ('lean', 1), ('mean', 1), ('playing', 1), ('machine', 1), ('carol', 1), ('hamer', 1), ('andrew', 1), ('davison', 1), ('expert', 1), ('software', 1), ('developer', 1)]
[('book', 2), ('take', 1), ('practical', 1), ('problem', 1), ('solution', 1), ('approach', 1), ('common', 1), ('business', 1), ('challenge', 1), ('encounter', 1), ('interesting', 1), ('code', 1), ('sample', 1), ('see', 1), ('combine', 1), ('example', 1), ('microsoft', 1), ('collaboration', 1), ('platform', 1), ('service', 1)]
[('seems', 1), ('everyone', 1), ('writing', 1), ('application', 1), ('apple', 1), ('iphone', 1), ('ipad', 1), ('best', 1), ('learn', 1), ('objective', 1), ('native', 1), ('language', 1), ('io', 1), ('mac', 1), ('o', 1), ('begin', 1), ('right', 1), ('even', 1), ('never', 1)]
[('window', 2), ('foundation', 2), ('application', 2), ('user', 2), ('microsoft', 1), ('presentation', 1), ('wpf', 1), ('provides', 1), ('building', 1), ('high', 1), ('quality', 1), ('experience', 1), ('operating', 1), ('system', 1), ('blend', 1), ('interface', 1), ('document', 1), ('medium', 1), ('content', 1)]
[('php', 2), ('book', 1), ('take', 1), ('beyond', 1), ('basic', 1), ('enterprise', 1), ('development', 1), ('practice', 1), ('used', 1), ('professional', 1), ('programmer', 1), ('updated', 1), ('new', 1), ('section', 1), ('closure', 1), ('namespaces', 1), ('continuous', 1), ('integration', 1), ('edition', 1), ('teach', 1), ('object', 1)]
[('asp', 2), ('net', 2), ('mvc', 1), ('framework', 1), ('latest', 1), ('evolution', 1), ('microsoft', 1), ('web', 1), ('platform', 1), ('provides', 1), ('high', 1), ('productivity', 1), ('programming', 1), ('model', 1), ('promotes', 1), ('cleaner', 1), ('code', 1), ('architecture', 1), ('test', 1), ('driven', 1), ('development', 1), ('powerful', 1), ('extensibility', 1), ('combined', 1)]
[('rsquo', 2), ('io', 2), ('table', 2), ('view', 2), ('app', 1), ('developer', 1), ('chance', 1), ('using', 1), ('development', 1), ('project', 1), ('bread', 1), ('butter', 1), ('apps', 1), ('create', 1), ('everything', 1), ('simplest', 1), ('list', 1), ('fully', 1)]
[('nan', 1)]
[('sql', 3), ('server', 3), ('disaster', 2), ('recovery', 2), ('book', 1), ('explains', 1), ('implement', 1), ('effective', 1), ('strategy', 1), ('database', 1), ('detail', 1), ('powerful', 1), ('tool', 1), ('feature', 1), ('data', 1), ('backup', 1), ('present', 1), ('enhanced', 1)]
[('django', 3), ('latest', 1), ('edition', 1), ('definitive', 1), ('guide', 1), ('updated', 1), ('forward', 1), ('compatibility', 1), ('guarantee', 1), ('provides', 1), ('serve', 1), ('ultimate', 1), ('tutorial', 1), ('reference', 1), ('popular', 1), ('framework', 1), ('year', 1)]
[('language', 3), ('asp', 2), ('net', 2), ('model', 1), ('supporting', 1), ('extensibility', 1), ('intriguing', 1), ('developer', 1), ('everywhere', 1), ('support', 1), ('traditional', 1), ('statically', 1), ('compiled', 1), ('dynamic', 1), ('python', 1), ('natural', 1), ('ability', 1)]
[('php', 6), ('security', 3), ('advanced', 1), ('updated', 1), ('second', 1), ('edition', 1), ('authoritative', 1), ('book', 1), ('cover', 1), ('foundational', 1), ('topic', 1), ('sql', 1), ('injection', 1), ('x', 1), ('user', 1), ('authentication', 1), ('secure', 1), ('development', 1)]
[('sharepoint', 3), ('pro', 1), ('administration', 1), ('practical', 1), ('guide', 1), ('intermediate', 1), ('advanced', 1), ('administrator', 1), ('power', 1), ('user', 1), ('covering', 1), ('box', 1), ('feature', 1), ('set', 1), ('capability', 1), ('microsoft', 1), ('collaboration', 1), ('business', 1)]
[('apps', 2), ('app', 2), ('noticed', 2), ('million', 1), ('crowded', 1), ('apple', 1), ('itunes', 1), ('store', 1), ('difficult', 1), ('make', 1), ('stand', 1), ('crowd', 1), ('review', 1), ('deserves', 1), ('io', 1), ('wow', 1), ('factor', 1), ('show', 1)]
[('silverlight', 2), ('latest', 1), ('iteration', 1), ('microsoft', 1), ('cross', 1), ('browser', 1), ('technology', 1), ('creating', 1), ('rich', 1), ('user', 1), ('experience', 1), ('web', 1), ('predecessor', 1), ('ride', 1), ('atop', 1), ('net', 1), ('framework', 1), ('maximum', 1), ('ease', 1), ('use', 1), ('coding', 1), ('efficiency', 1)]
[('expert', 2), ('sharepoint', 2), ('practice', 2), ('valuable', 1), ('compendium', 1), ('best', 1), ('tip', 1), ('secret', 1), ('straight', 1), ('knowledgeable', 1), ('guru', 1), ('industry', 1), ('learn', 1), ('dive', 1), ('topic', 1), ('multitenancy', 1), ('solution', 1)]
[('netbeans', 1), ('platform', 1), ('world', 1), ('modular', 1), ('swing', 1), ('application', 1), ('framework', 1), ('used', 1), ('large', 1), ('organization', 1), ('mission', 1), ('critical', 1), ('scenario', 1), ('boeing', 1), ('northrop', 1), ('grumman', 1), ('financial', 1), ('sector', 1), ('oil', 1), ('gas', 1), ('industry', 1)]
[('game', 3), ('html', 2), ('wanted', 1), ('gather', 1), ('top', 1), ('developer', 1), ('reveals', 1), ('passion', 1), ('share', 1), ('creating', 1), ('coding', 1), ('learn', 1), ('programming', 1), ('tip', 1), ('trick', 1), ('optimization', 1), ('technique', 1), ('alongside', 1), ('real', 1), ('world', 1), ('code', 1), ('example', 1)]
[('development', 2), ('model', 1), ('view', 1), ('controller', 1), ('mvc', 1), ('becoming', 1), ('definitive', 1), ('architecture', 1), ('website', 1), ('framework', 1), ('due', 1), ('stability', 1), ('extensibility', 1), ('predictability', 1), ('lends', 1), ('primary', 1), ('separation', 1), ('database', 1), ('business', 1), ('logic', 1)]
[('know', 2), ('make', 2), ('already', 1), ('create', 1), ('amazing', 1), ('thing', 1), ('lego', 1), ('vehicle', 1), ('roll', 1), ('model', 1), ('plan', 1), ('include', 1), ('landing', 1), ('gear', 1), ('flap', 1), ('actually', 1), ('extend', 1), ('retract', 1), ('even', 1), ('functional', 1), ('robot', 1), ('without', 1)]
[('team', 3), ('software', 2), ('development', 2), ('engineer', 2), ('want', 1), ('look', 1), ('recruit', 1), ('hire', 1), ('building', 1), ('crack', 1), ('field', 1), ('guide', 1), ('instruction', 1), ('manual', 1), ('finding', 1), ('hiring', 1), ('excellent', 1), ('fit', 1)]
[('security', 2), ('key', 1), ('element', 1), ('development', 1), ('non', 1), ('trivial', 1), ('application', 1), ('spring', 1), ('framework', 1), ('provides', 1), ('comprehensive', 1), ('set', 1), ('functionality', 1), ('implement', 1), ('industry', 1), ('standard', 1), ('authentication', 1), ('authorization', 1), ('mechanism', 1), ('java', 1)]
[('unity', 4), ('game', 2), ('incredibly', 1), ('powerful', 1), ('popular', 1), ('creation', 1), ('tool', 1), ('brings', 1), ('even', 1), ('feature', 1), ('including', 1), ('mechanim', 1), ('animation', 1), ('learn', 1), ('io', 1), ('development', 1), ('show', 1), ('use', 1), ('xcode', 1), ('create', 1), ('fun', 1), ('imaginative', 1)]
[('data', 3), ('range', 2), ('access', 2), ('book', 1), ('introduces', 1), ('novice', 1), ('developer', 1), ('strategy', 1), ('storing', 1), ('retreiving', 1), ('locally', 1), ('remotely', 1), ('provides', 1), ('fully', 1), ('working', 1), ('solution', 1), ('insight', 1), ('need', 1), ('know', 1)]
[('django', 3), ('python', 2), ('learn', 1), ('leverage', 1), ('leading', 1), ('web', 1), ('application', 1), ('development', 1), ('framework', 1), ('full', 1), ('potential', 1), ('advanced', 1), ('tutorial', 1), ('reference', 1), ('updated', 1), ('pro', 1), ('second', 1), ('edition', 1), ('examines', 1), ('detail', 1)]
[('mongodb', 3), ('version', 3), ('latest', 2), ('definitive', 1), ('guide', 1), ('second', 1), ('edition', 1), ('updated', 1), ('includes', 1), ('feature', 1), ('including', 1), ('aggregation', 1), ('framework', 1), ('introduced', 1), ('hashed', 1), ('index', 1)]
[('php', 2), ('mysql', 2), ('expert', 1), ('take', 1), ('beyond', 1), ('learning', 1), ('syntax', 1), ('showing', 1), ('apply', 1), ('proven', 1), ('software', 1), ('development', 1), ('method', 1), ('building', 1), ('commerce', 1), ('grade', 1), ('project', 1), ('stand', 1), ('test', 1), ('time', 1), ('reliably', 1), ('deliver', 1), ('customer', 1), ('need', 1)]
[('friend', 1), ('ed', 1)]
[('flash', 2), ('hand', 2), ('mx', 1), ('studio', 1), ('take', 1), ('raw', 1), ('talent', 1), ('multiplies', 1), ('potency', 1), ('focusing', 1), ('real', 1), ('world', 1), ('web', 1), ('design', 1), ('situation', 1), ('heady', 1), ('day', 1), ('late', 1), ('designer', 1), ('trying', 1), ('anything', 1), ('everything', 1), ('lay', 1)]
[('friend', 1), ('ed', 1)]
[('friend', 1), ('ed', 1)]
[('web', 3), ('jquery', 2), ('latest', 1), ('version', 1), ('framework', 1), ('suitable', 1), ('modern', 1), ('browser', 1), ('provides', 1), ('robust', 1), ('api', 1), ('application', 1), ('development', 1), ('fast', 1), ('becoming', 1), ('tool', 1), ('choice', 1), ('developer', 1), ('world', 1), ('set', 1), ('standard', 1)]
[('spring', 3), ('ldap', 3), ('practical', 1), ('guide', 1), ('developing', 1), ('java', 1), ('based', 1), ('enterprise', 1), ('application', 1), ('using', 1), ('framework', 1), ('book', 1), ('explains', 1), ('purpose', 1), ('fundamental', 1), ('concept', 1), ('giving', 1), ('comprehensive', 1), ('tour', 1), ('latest', 1), ('version', 1)]
[('game', 2), ('physic', 2), ('wanted', 1), ('include', 1), ('believable', 1), ('physical', 1), ('behavior', 1), ('project', 1), ('give', 1), ('extra', 1), ('edge', 1), ('javascript', 1), ('animation', 1), ('simulation', 1), ('teach', 1), ('incorporate', 1), ('real', 1), ('gravity', 1), ('friction', 1)]
[('power', 6), ('rsquo', 2), ('bi', 2), ('mdash', 2), ('understanding', 1), ('company', 1), ('data', 1), ('never', 1), ('easier', 1), ('microsoft', 1), ('new', 1), ('package', 1), ('excel', 1), ('consisting', 1), ('four', 1), ('powerful', 1), ('tool', 1), ('pivot', 1), ('view', 1), ('query', 1), ('map', 1), ('make', 1)]
[('simple', 2), ('raspberry', 1), ('pi', 1), ('deceptively', 1), ('plug', 1), ('boot', 1), ('use', 1), ('personal', 1), ('computer', 1), ('attach', 1), ('million', 1), ('gizmo', 1), ('module', 1), ('invent', 1), ('something', 1), ('new', 1), ('amazing', 1), ('either', 1), ('way', 1), ('actually', 1), ('know', 1)]
[('python', 2), ('system', 2), ('show', 2), ('pro', 1), ('administration', 1), ('second', 1), ('edition', 1), ('explains', 1), ('apply', 1), ('scripting', 1), ('practice', 1), ('approach', 1), ('resolve', 1), ('real', 1), ('world', 1), ('issue', 1), ('administrator', 1), ('come', 1), ('across', 1), ('career', 1)]
[('digital', 2), ('device', 2), ('nontechnical', 1), ('language', 1), ('engaging', 1), ('style', 1), ('rsquo', 1), ('t', 1), ('explains', 1), ('non', 1), ('techie', 1), ('user', 1), ('pc', 1), ('handheld', 1), ('exactly', 1), ('protect', 1), ('data', 1), ('security', 1), ('privacy', 1), ('threat', 1)]
[('scripting', 4), ('java', 3), ('teach', 1), ('use', 1), ('api', 1), ('javascript', 1), ('execute', 1), ('script', 1), ('take', 1), ('advantage', 1), ('feature', 1), ('language', 1), ('developing', 1), ('application', 1), ('book', 1), ('cover', 1), ('topic', 1), ('enable', 1)]
[('vagrant', 3), ('environment', 2), ('pro', 1), ('teach', 1), ('effectively', 1), ('implement', 1), ('optimize', 1), ('everyday', 1), ('work', 1), ('master', 1), ('creation', 1), ('configuration', 1), ('virtual', 1), ('development', 1), ('easy', 1), ('use', 1), ('workflow', 1), ('focus', 1), ('automation', 1)]
[('apex', 3), ('application', 2), ('new', 1), ('edition', 1), ('understanding', 1), ('oracle', 1), ('development', 1), ('show', 1), ('developer', 1), ('build', 1), ('practical', 1), ('non', 1), ('trivial', 1), ('web', 1), ('book', 1), ('introduces', 1), ('world', 1), ('property', 1), ('explaining', 1), ('functionality', 1), ('supported', 1)]
[('nosql', 2), ('database', 2), ('market', 2), ('size', 1), ('fit', 1), ('thinking', 1), ('regarding', 1), ('traditional', 1), ('rdbmss', 1), ('challenged', 1), ('last', 1), ('year', 1), ('emergence', 1), ('diversified', 1), ('available', 1), ('leader', 1), ('far', 1)]
[('spring', 2), ('framework', 2), ('persistence', 2), ('learn', 1), ('use', 1), ('core', 1), ('hibernate', 1), ('apis', 1), ('tool', 1), ('part', 1), ('book', 1), ('illustrates', 1), ('best', 1), ('utilized', 1), ('solution', 1), ('available', 1), ('shown', 1), ('including', 1), ('java', 1)]
[('exam', 2), ('example', 2), ('pas', 1), ('pivotal', 1), ('certified', 1), ('professional', 1), ('using', 1), ('source', 1), ('code', 1), ('study', 1), ('summary', 1), ('mock', 1), ('book', 1), ('find', 1), ('descriptive', 1), ('overview', 1), ('certification', 1), ('related', 1), ('spring', 1), ('module', 1), ('single', 1), ('application', 1), ('demonstrating', 1)]
[('cs', 3), ('scalable', 2), ('learn', 1), ('howpreprocessors', 1), ('make', 1), ('easy', 1), ('maintain', 1), ('see', 1), ('towrite', 1), ('code', 1), ('clean', 1), ('manner', 1), ('use', 1), ('preprocessorfeatures', 1), ('variable', 1), ('looping', 1), ('missing', 1), ('natively', 1), ('reading', 1)]
[('php', 2), ('new', 2), ('take', 1), ('advantage', 1), ('improved', 1), ('performance', 1), ('reduced', 1), ('memory', 1), ('requirement', 1), ('version', 1), ('learn', 1), ('utilize', 1), ('built', 1), ('function', 1), ('feature', 1), ('typed', 1), ('variable', 1), ('enforcement', 1), ('declare', 1), ('strict_types', 1), ('available', 1)]
[('model', 2), ('create', 1), ('printable', 1), ('help', 1), ('student', 1), ('kindergarten', 1), ('grad', 1), ('school', 1), ('learn', 1), ('math', 1), ('physic', 1), ('botany', 1), ('chemistry', 1), ('engineering', 1), ('nbsp', 1), ('book', 1), ('show', 1), ('parent', 1), ('teacher', 1), ('use', 1), ('inside', 1), ('starting', 1), ('point', 1)]
[('sap', 2), ('real', 2), ('estate', 2), ('solution', 2), ('nbsp', 2), ('learn', 1), ('management', 1), ('integrated', 1), ('effectively', 1), ('manage', 1), ('portfolio', 1), ('organization', 1), ('configure', 1), ('refx', 1), ('business', 1), ('scenario', 1), ('covering', 1), ('master', 1), ('data', 1), ('financial', 1), ('posting', 1)]
[('asset', 2), ('business', 2), ('maximize', 1), ('impact', 1), ('service', 1), ('providing', 1), ('apis', 1), ('developer', 1), ('user', 1), ('journey', 1), ('described', 1), ('book', 1), ('start', 1), ('identifying', 1), ('part', 1), ('api', 1), ('team', 1), ('need', 1), ('identify', 1), ('define', 1)]
[('apple', 2), ('watch', 2), ('developer', 1), ('advice', 1), ('amp', 1), ('technique', 1), ('top', 1), ('professional', 1), ('give', 1), ('base', 1), ('knowledge', 1), ('valuable', 1), ('secret', 1), ('need', 1), ('project', 1), ('core', 1), ('team', 1), ('successful', 1), ('experienced', 1), ('app', 1), ('development', 1), ('expert', 1)]
[('new', 2), ('learn', 1), ('homekit', 1), ('platform', 1), ('structure', 1), ('support', 1), ('device', 1), ('existing', 1), ('planned', 1), ('thorough', 1), ('grounding', 1), ('useful', 1), ('apps', 1), ('deliver', 1), ('generation', 1), ('home', 1), ('automation', 1), ('secure', 1), ('innovative', 1), ('environment', 1), ('imagination', 1)]
[('development', 3), ('concise', 1), ('book', 1), ('walk', 1), ('unit', 1), ('testing', 1), ('test', 1), ('driven', 1), ('done', 1), ('android', 1), ('specifically', 1), ('using', 1), ('junit', 1), ('learn', 1), ('agile', 1), ('quickly', 1), ('correctly', 1), ('significant', 1), ('increase', 1)]
[('linux', 2), ('teach', 1), ('improve', 1), ('hand', 1), ('knowledge', 1), ('using', 1), ('challenging', 1), ('real', 1), ('world', 1), ('scenario', 1), ('chapter', 1), ('explores', 1), ('topic', 1), ('chosen', 1), ('specifically', 1), ('demonstrate', 1), ('enhance', 1), ('base', 1), ('system', 1), ('resolve', 1), ('important', 1)]
[('use', 2), ('level', 2), ('math', 1), ('unique', 1), ('way', 1), ('analyze', 1), ('thing', 1), ('observe', 1), ('life', 1), ('proof', 1), ('attain', 1), ('unexpected', 1), ('quite', 1), ('wide', 1), ('diversity', 1), ('topic', 1), ('age', 1), ('ability', 1), ('enjoy', 1), ('discussion', 1), ('see', 1), ('author', 1)]
[('discover', 1), ('artik', 1), ('module', 1), ('use', 1), ('various', 1), ('application', 1), ('produce', 1), ('code', 1), ('book', 1), ('go', 1), ('beyond', 1), ('information', 1), ('previously', 1), ('available', 1), ('online', 1), ('efficiently', 1), ('guiding', 1), ('developer', 1), ('initial', 1), ('setup', 1), ('development', 1), ('environment', 1)]
[('explore', 1), ('current', 1), ('state', 1), ('production', 1), ('processing', 1), ('manufacturing', 1), ('industry', 1), ('discover', 1), ('take', 1), ('achieve', 1), ('industrialization', 1), ('former', 1), ('industrial', 1), ('powerhouse', 1), ('counterbalance', 1), ('benefit', 1), ('cheap', 1), ('labor', 1), ('provider', 1)]
[('cybersecurity', 2), ('learn', 1), ('threat', 1), ('vulnerability', 1), ('critical', 1), ('infrastructure', 1), ('attack', 1), ('nbsp', 1), ('definition', 1), ('provided', 1), ('technical', 1), ('terminology', 1), ('hacker', 1), ('jargon', 1), ('related', 1), ('automated', 1), ('control', 1), ('system', 1), ('common', 1), ('building', 1), ('utility', 1)]
[('website', 2), ('running', 1), ('quickly', 1), ('microsoft', 1), ('asp', 1), ('net', 1), ('mvc', 1), ('entity', 1), ('framework', 1), ('build', 1), ('deploy', 1), ('complex', 1), ('using', 1), ('fully', 1), ('working', 1), ('example', 1), ('retail', 1), ('learn', 1), ('solution', 1), ('real', 1), ('world', 1), ('issue', 1), ('developer', 1), ('frequently', 1)]
[('write', 2), ('free', 1), ('open', 1), ('source', 1), ('cross', 1), ('platform', 1), ('dynamic', 1), ('javascript', 1), ('application', 1), ('run', 1), ('anywhere', 1), ('using', 1), ('mean', 1), ('stack', 1), ('mongodb', 1), ('expressjs', 1), ('angularjs', 1), ('node', 1), ('j', 1), ('book', 1), ('mac', 1), ('developer', 1), ('tool', 1), ('needed', 1), ('set', 1), ('code', 1)]
[('office', 2), ('skill', 2), ('powershell', 2), ('take', 1), ('next', 1), ('level', 1), ('master', 1), ('stay', 1), ('competitive', 1), ('today', 1), ('world', 1), ('highly', 1), ('sought', 1), ('cloud', 1), ('management', 1), ('expert', 1), ('guidance', 1), ('pro', 1), ('learn', 1), ('leverage', 1), ('muscle', 1)]
[('apply', 1), ('powerful', 1), ('new', 1), ('approach', 1), ('method', 1), ('ensures', 1), ('continuous', 1), ('performance', 1), ('improvement', 1), ('business', 1), ('learn', 1), ('determine', 1), ('value', 1), ('process', 1), ('technology', 1), ('based', 1), ('solution', 1), ('optimize', 1), ('organization', 1)]
[('software', 3), ('open', 3), ('source', 3), ('learn', 1), ('free', 1), ('became', 1), ('sell', 1), ('book', 1), ('provides', 1), ('historical', 1), ('context', 1), ('thoroughly', 1), ('transformed', 1), ('write', 1), ('cooperate', 1), ('communicate', 1)]
[('history', 2), ('home', 2), ('examine', 1), ('smart', 1), ('technology', 1), ('shape', 1), ('life', 1), ('way', 1), ('think', 1), ('developing', 1), ('new', 1), ('product', 1), ('book', 1), ('present', 1), ('opportunity', 1), ('homespace', 1), ('come', 1), ('understanding', 1)]
[('using', 2), ('create', 1), ('first', 1), ('turn', 1), ('based', 1), ('multiplayer', 1), ('game', 1), ('gamemaker', 1), ('studio', 1), ('built', 1), ('networking', 1), ('function', 1), ('simple', 1), ('nodejs', 1), ('server', 1), ('book', 1), ('introduces', 1), ('complexity', 1), ('network', 1), ('programming', 1), ('communication', 1), ('focus', 1)]
[('data', 4), ('statistic', 2), ('gain', 1), ('programming', 1), ('language', 1), ('fundamental', 1), ('applied', 1), ('useful', 1), ('exploration', 1), ('analysis', 1), ('science', 1), ('mining', 1), ('book', 1), ('cover', 1), ('topic', 1), ('ranging', 1), ('syntax', 1), ('basic', 1), ('descriptive', 1)]
[('itil', 2), ('devops', 2), ('delve', 1), ('principle', 1), ('examine', 1), ('similarity', 1), ('difference', 1), ('book', 1), ('engineer', 1), ('framework', 1), ('work', 1), ('project', 1), ('without', 1), ('changing', 1), ('meaning', 1), ('original', 1), ('objective', 1), ('making', 1), ('fit', 1), ('purpose', 1)]
[('learn', 2), ('django', 2), ('rapidly', 1), ('build', 1), ('ecommerce', 1), ('site', 1), ('applying', 1), ('battle', 1), ('tested', 1), ('component', 1), ('book', 1), ('demonstrates', 1), ('feature', 1), ('convention', 1), ('help', 1), ('develop', 1), ('modern', 1), ('web', 1), ('application', 1), ('quickly', 1), ('adopt', 1)]
[('functional', 2), ('programming', 2), ('learn', 1), ('understand', 1), ('erlang', 1), ('elixir', 1), ('develop', 1), ('working', 1), ('knowledge', 1), ('concept', 1), ('underpin', 1), ('book', 1), ('take', 1), ('author', 1), ('experience', 1), ('taking', 1), ('project', 1), ('required', 1), ('real', 1), ('time', 1)]
[('pig', 3), ('apache', 2), ('big', 2), ('data', 2), ('show', 2), ('nbsp', 2), ('learn', 1), ('use', 1), ('develop', 1), ('lightweight', 1), ('application', 1), ('easily', 1), ('quickly', 1), ('book', 1), ('many', 1), ('optimization', 1), ('technique', 1), ('cover', 1), ('every', 1), ('context', 1), ('used', 1), ('analytics', 1), ('beginning', 1)]
[('use', 1), ('hand', 1), ('introductory', 1), ('guide', 1), ('understand', 1), ('implement', 1), ('digital', 1), ('forensics', 1), ('investigate', 1), ('computer', 1), ('crime', 1), ('using', 1), ('window', 1), ('widely', 1), ('used', 1), ('operating', 1), ('system', 1), ('book', 1), ('provides', 1), ('necessary', 1), ('skill', 1), ('identify', 1), ('intruder', 1)]
[('build', 1), ('working', 1), ('implementation', 1), ('hash', 1), ('table', 1), ('written', 1), ('programming', 1), ('language', 1), ('book', 1), ('start', 1), ('simple', 1), ('first', 1), ('attempt', 1), ('devoid', 1), ('collision', 1), ('resolution', 1), ('strategy', 1), ('move', 1), ('improvement', 1), ('extension', 1), ('illustrating', 1), ('different', 1), ('design', 1)]
[('teach', 2), ('use', 2), ('zoho', 2), ('crm', 2), ('business', 2), ('effectively', 1), ('benefit', 1), ('book', 1), ('take', 1), ('number', 1), ('real', 1), ('life', 1), ('scenario', 1), ('create', 1), ('solution', 1), ('technical', 1), ('background', 1), ('needed', 1)]
[('pytorch', 2), ('speed', 1), ('deep', 1), ('learning', 1), ('concept', 1), ('using', 1), ('problem', 1), ('solution', 1), ('approach', 1), ('starting', 1), ('introduction', 1), ('familiarized', 1), ('tensor', 1), ('type', 1), ('data', 1), ('structure', 1), ('used', 1), ('calculate', 1), ('arithmetic', 1), ('operation', 1)]
[('natural', 2), ('language', 2), ('processing', 2), ('implement', 1), ('application', 1), ('python', 1), ('using', 1), ('problem', 1), ('solution', 1), ('approach', 1), ('book', 1), ('numerous', 1), ('coding', 1), ('exercise', 1), ('help', 1), ('quickly', 1), ('deploy', 1), ('technique', 1), ('text', 1), ('classification', 1)]
[('adobe', 2), ('animate', 2), ('cc', 2), ('use', 1), ('solid', 1), ('practical', 1), ('exercise', 1), ('master', 1), ('fundamental', 1), ('first', 1), ('comprehensive', 1), ('book', 1), ('thoroughly', 1), ('examine', 1), ('demonstrate', 1), ('create', 1), ('deploy', 1), ('interactive', 1), ('motion', 1), ('design', 1), ('content', 1)]
[('creating', 2), ('using', 2), ('master', 1), ('every', 1), ('aspect', 1), ('orchestrating', 1), ('managing', 1), ('docker', 1), ('including', 1), ('swarm', 1), ('service', 1), ('mount', 1), ('scheduling', 1), ('scaling', 1), ('resource', 1), ('management', 1), ('rolling', 1), ('update', 1), ('load', 1), ('balancing', 1), ('high', 1), ('availability', 1), ('logging', 1), ('monitoring', 1), ('multiple', 1)]
[('app', 3), ('cover', 1), ('every', 1), ('aspect', 1), ('industry', 1), ('idea', 1), ('generation', 1), ('marketing', 1), ('performance', 1), ('monitoring', 1), ('book', 1), ('receive', 1), ('complete', 1), ('reliable', 1), ('date', 1), ('professional', 1), ('information', 1), ('guidance', 1), ('learn', 1), ('io', 1)]
[('explore', 1), ('approach', 1), ('technique', 1), ('mindshift', 1), ('needed', 1), ('design', 1), ('truly', 1), ('breakthrough', 1), ('experience', 1), ('microsoft', 1), ('hololens', 1), ('window', 1), ('mixed', 1), ('reality', 1), ('platform', 1), ('learn', 1), ('different', 1), ('working', 1), ('hologram', 1), ('think', 1), ('spatially', 1)]
[('java', 2), ('build', 1), ('online', 1), ('messaging', 1), ('app', 1), ('using', 1), ('servlets', 1), ('jsp', 1), ('expression', 1), ('language', 1), ('jstl', 1), ('jpql', 1), ('session', 1), ('cooky', 1), ('html', 1), ('cs', 1), ('javascript', 1), ('bootstrap', 1), ('framework', 1), ('book', 1), ('explains', 1), ('ee', 1), ('along', 1), ('associated', 1), ('technology', 1), ('making', 1), ('perfect', 1)]
[('cassandra', 4), ('database', 2), ('follow', 1), ('handbook', 1), ('build', 1), ('configure', 1), ('tune', 1), ('secure', 1), ('apache', 1), ('start', 1), ('installation', 1), ('move', 1), ('creation', 1), ('single', 1), ('instance', 1), ('cluster', 1), ('increasingly', 1)]
[('rule', 2), ('engine', 2), ('step', 2), ('build', 1), ('smart', 1), ('application', 1), ('using', 1), ('cutting', 1), ('edge', 1), ('technology', 1), ('code', 1), ('automation', 1), ('framework', 1), ('natural', 1), ('language', 1), ('processing', 1), ('nlp', 1), ('book', 1), ('provides', 1), ('instruction', 1), ('port', 1), ('nine', 1), ('clip', 1), ('jruleengine', 1)]
[('use', 2), ('ansible', 2), ('automation', 2), ('obvious', 2), ('learn', 1), ('open', 1), ('source', 1), ('tool', 1), ('nbsp', 1), ('automate', 1), ('vmware', 1), ('infrastructure', 1), ('book', 1), ('contains', 1), ('best', 1), ('practice', 1), ('lesson', 1), ('summarizes', 1), ('specific', 1), ('case', 1)]
[('enterprise', 2), ('outcome', 2), ('discover', 1), ('need', 1), ('happen', 1), ('architecture', 1), ('practice', 1), ('activity', 1), ('arise', 1), ('book', 1), ('reveals', 1), ('business', 1), ('architect', 1), ('deliver', 1), ('fast', 1), ('solution', 1)]
[('application', 3), ('framework', 2), ('spring', 1), ('remains', 1), ('far', 1), ('leading', 1), ('de', 1), ('facto', 1), ('box', 1), ('practical', 1), ('java', 1), ('meta', 1), ('development', 1), ('building', 1), ('complex', 1), ('enterprise', 1), ('cloud', 1), ('native', 1), ('web', 1), ('microservices', 1), ('introducing', 1)]
[('nbsp', 2), ('ubuntu', 2), ('completely', 1), ('updated', 1), ('exciting', 1), ('third', 1), ('edition', 1), ('beginning', 1), ('window', 1), ('mac', 1), ('user', 1), ('help', 1), ('start', 1), ('journey', 1), ('free', 1), ('open', 1), ('source', 1), ('software', 1), ('lts', 1), ('gnome', 1), ('book', 1), ('friendly', 1), ('guide', 1)]
[('programming', 3), ('target', 2), ('community', 2), ('business', 2), ('code', 2), ('unlike', 1), ('resource', 1), ('book', 1), ('model', 1), ('shifting', 1), ('towards', 1), ('low', 1), ('citizen', 1), ('programmer', 1), ('side', 1)]
[('game', 4), ('backend', 3), ('developer', 1), ('skill', 1), ('learning', 1), ('development', 1), ('microsoft', 1), ('azure', 1), ('playfab', 1), ('robust', 1), ('infrastructure', 1), ('support', 1), ('essential', 1), ('modern', 1), ('implementing', 1), ('feature', 1), ('became', 1), ('easier', 1), ('emergence', 1)]
[('data', 2), ('indispensable', 1), ('fuel', 1), ('drive', 1), ('decision', 1), ('making', 1), ('everything', 1), ('government', 1), ('major', 1), ('corporation', 1), ('sport', 1), ('team', 1), ('value', 1), ('almost', 1), ('beyond', 1), ('measure', 1), ('either', 1), ('unavailable', 1), ('problematic', 1), ('access', 1)]
[('welcome', 1), ('depth', 1), ('professional', 1), ('guide', 1), ('open', 1), ('source', 1), ('eclipse', 1), ('jakarta', 1), ('ee', 1), ('platform', 1), ('book', 1), ('help', 1), ('build', 1), ('complex', 1), ('native', 1), ('enterprise', 1), ('java', 1), ('based', 1), ('cloud', 1), ('application', 1), ('run', 1), ('corporate', 1)]
[('java', 2), ('cloud', 2), ('native', 2), ('application', 2), ('using', 2), ('payara', 2), ('develop', 1), ('configure', 1), ('deploy', 1), ('micro', 1), ('book', 1), ('demystifies', 1), ('development', 1), ('standard', 1), ('microprofile', 1), ('apis', 1), ('cover', 1), ('specific', 1), ('feature', 1), ('automatic', 1), ('clustering', 1)]
[('used', 2), ('book', 1), ('hand', 1), ('guide', 1), ('programmer', 1), ('want', 1), ('learn', 1), ('develop', 1), ('solution', 1), ('option', 1), ('derivative', 1), ('trading', 1), ('financial', 1), ('industry', 1), ('explores', 1), ('main', 1), ('algorithm', 1), ('programming', 1), ('technique', 1), ('implementing', 1)]
[('sql', 3), ('server', 3), ('key', 2), ('know', 1), ('track', 1), ('change', 1), ('event', 1), ('database', 1), ('support', 1), ('application', 1), ('troubleshooting', 1), ('regulatory', 1), ('compliance', 1), ('governance', 1), ('book', 1), ('show', 1), ('use', 1), ('feature', 1), ('audit', 1), ('extended', 1)]
[('data', 2), ('variety', 2), ('anomaly', 2), ('detection', 2), ('discover', 1), ('key', 1), ('information', 1), ('buried', 1), ('noise', 1), ('learning', 1), ('technique', 1), ('using', 1), ('python', 1), ('programming', 1), ('language', 1), ('build', 1), ('robust', 1), ('service', 1), ('type', 1), ('book', 1), ('start', 1)]
[('application', 3), ('platform', 2), ('ready', 1), ('build', 1), ('run', 1), ('anywhere', 1), ('using', 1), ('uno', 1), ('winui', 1), ('modern', 1), ('development', 1), ('intimidating', 1), ('complex', 1), ('topic', 1), ('especially', 1), ('building', 1), ('cross', 1), ('need', 1), ('support', 1)]
[('php', 3), ('book', 2), ('use', 1), ('enhance', 1), ('web', 1), ('page', 1), ('show', 1), ('programming', 1), ('work', 1), ('write', 1), ('organize', 1), ('code', 1), ('start', 1), ('step', 1), ('download', 1), ('install', 1), ('setup', 1), ('sample', 1), ('website', 1), ('form', 1), ('basis', 1), ('upcoming', 1)]
[('aop', 3), ('implementation', 2), ('book', 2), ('cover', 2), ('concept', 1), ('presented', 1), ('independently', 1), ('particular', 1), ('major', 1), ('existing', 1), ('tool', 1), ('aspectj', 1), ('jboss', 1), ('aspectwerkz', 1), ('jac', 1), ('technical', 1), ('aspect', 1), ('based', 1)]
[('new', 2), ('edition', 2), ('sharepoint', 2), ('major', 1), ('market', 1), ('leader', 1), ('title', 1), ('map', 1), ('changing', 1), ('community', 1), ('concern', 1), ('shift', 1), ('emphasis', 1), ('visual', 1), ('studio', 1), ('tool', 1), ('office', 1), ('chapter', 1), ('introduced', 1), ('using', 1)]
[('standard', 4), ('code', 2), ('design', 2), ('three', 1), ('set', 1), ('bundled', 1), ('book', 1), ('pattern', 1), ('value', 1), ('money', 1), ('pro', 1), ('net', 1), ('amp', 1), ('based', 1), ('industry', 1), ('best', 1), ('practice', 1), ('intuitive', 1), ('updated', 1)]
[('apache', 3), ('book', 2), ('geronimo', 2), ('first', 1), ('market', 1), ('pro', 1), ('open', 1), ('source', 1), ('lightweight', 1), ('spring', 1), ('hibernate', 1), ('beehive', 1), ('enterprise', 1), ('java', 1), ('deployment', 1), ('toolpractical', 1), ('hand', 1), ('lot', 1), ('code', 1), ('sample', 1), ('learn', 1), ('apply', 1)]
[('mobile', 2), ('java', 2), ('cell', 2), ('phone', 2), ('real', 2), ('st', 1), ('wireless', 1), ('book', 1), ('cover', 1), ('based', 1), ('multimedia', 1), ('api', 1), ('device', 1), ('world', 1), ('example', 1), ('using', 1), ('common', 1), ('use', 1), ('author', 1), ('vikram', 1), ('goyal', 1), ('visible', 1), ('respected', 1)]
[('net', 3), ('chapter', 2), ('book', 1), ('follow', 1), ('proven', 1), ('pattern', 1), ('previous', 1), ('edition', 1), ('teaching', 1), ('novice', 1), ('user', 1), ('use', 1), ('asp', 1), ('gradually', 1), ('building', 1), ('knowledge', 1), ('technology', 1), ('pyramidal', 1), ('fashion', 1), ('comprehensively', 1)]
[('sql', 2), ('server', 2), ('database', 2), ('beginning', 1), ('administration', 1), ('essential', 1), ('anyone', 1), ('wishing', 1), ('learn', 1), ('implementing', 1), ('managing', 1), ('college', 1), ('student', 1), ('experienced', 1), ('administrator', 1), ('platform', 1), ('already', 1)]
[('server', 3), ('sql', 2), ('policy', 2), ('based', 2), ('management', 2), ('pro', 1), ('critical', 1), ('database', 1), ('administrator', 1), ('seeking', 1), ('depth', 1), ('knowledge', 1), ('administering', 1), ('using', 1), ('new', 1), ('feature', 1), ('introduced', 1), ('book', 1), ('cover', 1), ('everything', 1)]
[('platform', 2), ('open', 2), ('class', 2), ('android', 1), ('development', 1), ('created', 1), ('google', 1), ('handset', 1), ('alliance', 1), ('truest', 1), ('sense', 1), ('encompassing', 1), ('hundred', 1), ('beyond', 1), ('traditional', 1), ('java', 1), ('source', 1), ('component', 1), ('ship', 1), ('sdk', 1)]
[('chart', 2), ('creating', 1), ('common', 1), ('us', 1), ('computer', 1), ('graphic', 1), ('wide', 1), ('application', 1), ('representing', 1), ('mathematical', 1), ('physical', 1), ('economic', 1), ('function', 1), ('daily', 1), ('life', 1), ('whether', 1), ('engineer', 1), ('quantitative', 1)]
[('different', 2), ('look', 1), ('act', 1), ('right', 1), ('way', 1), ('hold', 1), ('responds', 1), ('touch', 1), ('fingertip', 1), ('internet', 1), ('lap', 1), ('connects', 1), ('world', 1), ('yet', 1), ('personal', 1), ('worn', 1), ('book', 1), ('taking', 1), ('ipad', 1), ('max', 1)]
[('unleash', 1), ('iphone', 1), ('take', 1), ('limit', 1), ('using', 1), ('secret', 1), ('tip', 1), ('technique', 1), ('gadget', 1), ('hacker', 1), ('erica', 1), ('sadun', 1), ('fast', 1), ('fun', 1), ('taking', 1), ('ipod', 1), ('touch', 1), ('max', 1), ('fully', 1), ('updated', 1), ('show', 1), ('apple', 1), ('o', 1)]
[('design', 2), ('driven', 2), ('testing', 2), ('development', 2), ('concept', 2), ('groundbreaking', 1), ('book', 1), ('brings', 1), ('sanity', 1), ('back', 1), ('software', 1), ('process', 1), ('flipping', 1), ('around', 1), ('test', 1), ('tdd', 1), ('restoring', 1), ('using', 1), ('verify', 1), ('instead', 1), ('pretending', 1)]
[('silverlight', 2), ('technology', 2), ('microsoft', 1), ('cross', 1), ('browser', 1), ('creating', 1), ('rich', 1), ('user', 1), ('experience', 1), ('web', 1), ('predecessor', 1), ('ride', 1), ('atop', 1), ('net', 1), ('framework', 1), ('maximum', 1), ('ease', 1), ('use', 1), ('coding', 1), ('efficiency', 1), ('new', 1), ('carry', 1)]
[('dns', 4), ('bind', 2), ('pro', 1), ('guide', 1), ('challenging', 1), ('array', 1), ('feature', 1), ('surrounding', 1), ('special', 1), ('focus', 1), ('latest', 1), ('release', 1), ('world', 1), ('popular', 1), ('implementation', 1), ('book', 1), ('unravels', 1), ('mystery', 1), ('offering', 1), ('insight', 1)]
[('iphone', 3), ('coco', 3), ('game', 3), ('learn', 1), ('ipad', 1), ('development', 1), ('provides', 1), ('rock', 1), ('solid', 1), ('introduction', 1), ('engine', 1), ('related', 1), ('tool', 1), ('focus', 1), ('process', 1), ('creating', 1), ('several', 1), ('made', 1), ('entirely', 1), ('little', 1), ('sdk', 1)]
[('application', 2), ('nbsp', 2), ('web', 2), ('popular', 1), ('conference', 1), ('speaker', 1), ('rocky', 1), ('lhotka', 1), ('show', 1), ('use', 1), ('framework', 1), ('create', 1), ('sample', 1), ('demonstrates', 1), ('easy', 1), ('write', 1), ('window', 1), ('service', 1), ('interface', 1), ('based', 1)]
[('author', 1), ('andrew', 1), ('troelsen', 1), ('tell', 1), ('building', 1), ('block', 1), ('net', 1), ('architecture', 1), ('interact', 1), ('interoperate', 1), ('emphasis', 1), ('basic', 1), ('understanding', 1), ('component', 1), ('part', 1), ('role', 1), ('play', 1)]
[('practical', 1), ('instruction', 1), ('help', 1), ('reader', 1), ('master', 1), ('new', 1), ('feature', 1), ('java', 1), ('working', 1), ('project', 1), ('similar', 1), ('required', 1), ('successfully', 1), ('complete', 1), ('sun', 1), ('certified', 1), ('developer', 1), ('examination', 1)]
[('self', 1), ('help', 1), ('guide', 1), ('programmer', 1), ('need', 1), ('improve', 1), ('management', 1), ('leadership', 1), ('skill', 1)]
[('complete', 1), ('hand', 1), ('guide', 1), ('mastering', 1), ('art', 1), ('content', 1), ('management', 1), ('system', 1), ('cm', 1), ('web', 1), ('site', 1), ('development', 1), ('using', 1), ('net', 1), ('framework', 1)]
[('access', 2), ('sql', 2), ('server', 2), ('microsoft', 2), ('book', 1), ('cover', 1), ('developer', 1), ('need', 1), ('know', 1), ('covering', 1), ('common', 1), ('version', 1), ('product', 1), ('author', 1), ('offer', 1), ('tip', 1), ('technique', 1), ('based', 1)]
[('technology', 2), ('silverlight', 1), ('latest', 1), ('iteration', 1), ('microsoft', 1), ('cross', 1), ('browser', 1), ('creating', 1), ('rich', 1), ('user', 1), ('experience', 1), ('web', 1), ('predecessor', 1), ('ride', 1), ('atop', 1), ('net', 1), ('framework', 1), ('maximum', 1), ('ease', 1), ('use', 1), ('coding', 1), ('efficiency', 1), ('new', 1)]
[('kinect', 3), ('meet', 1), ('introduces', 1), ('exciting', 1), ('world', 1), ('volumetric', 1), ('computing', 1), ('using', 1), ('microsoft', 1), ('learn', 1), ('write', 1), ('script', 1), ('software', 1), ('enabling', 1), ('use', 1), ('input', 1), ('device', 1), ('interact', 1), ('directly', 1), ('computer', 1), ('physical', 1)]
[('physic', 3), ('flash', 3), ('game', 2), ('animation', 2), ('simulation', 2), ('teach', 1), ('actionscript', 1), ('programmer', 1), ('incorporate', 1), ('real', 1), ('user', 1), ('interface', 1), ('introduces', 1), ('accurate', 1)]
[('android', 3), ('apps', 2), ('growing', 1), ('still', 1), ('evolving', 1), ('success', 1), ('platform', 1), ('ushered', 1), ('second', 1), ('mobile', 1), ('technology', 1), ('gold', 1), ('rush', 1), ('developer', 1), ('counting', 1), ('google', 1), ('market', 1), ('amazon', 1)]
[('flash', 2), ('popular', 1), ('way', 1), ('recent', 1), ('year', 1), ('create', 1), ('interactive', 1), ('video', 1), ('content', 1), ('web', 1), ('new', 1), ('release', 1), ('c', 1), ('set', 1), ('increase', 1), ('popularity', 1), ('even', 1), ('exciting', 1), ('feature', 1), ('developer', 1), ('use', 1)]
[('strut', 3), ('apache', 2), ('web', 2), ('agile', 2), ('practical', 1), ('project', 1), ('nothing', 1), ('le', 1), ('first', 1), ('book', 1), ('cover', 1), ('lightweight', 1), ('open', 1), ('source', 1), ('framework', 1), ('essentially', 1), ('new', 1), ('improved', 1), ('platform', 1), ('meet', 1), ('today', 1)]
[('business', 2), ('intelligence', 1), ('real', 1), ('time', 1), ('reporting', 1), ('mechanism', 1), ('play', 1), ('major', 1), ('role', 1), ('today', 1), ('forward', 1), ('looking', 1), ('plan', 1), ('many', 1), ('solution', 1), ('moved', 1), ('web', 1), ('popular', 1), ('rail', 1), ('framework', 1), ('underlying', 1), ('ruby', 1), ('language', 1)]
[('microsoft', 2), ('silverlight', 2), ('net', 2), ('allows', 1), ('create', 1), ('rich', 1), ('multimedia', 1), ('interface', 1), ('power', 1), ('flexibility', 1), ('flash', 1), ('extensibility', 1), ('tool', 1), ('offer', 1), ('asp', 1), ('revealed', 1), ('learn', 1), ('use', 1)]
[('want', 3), ('create', 1), ('net', 1), ('application', 1), ('provide', 1), ('high', 1), ('performance', 1), ('scalability', 1), ('employ', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('technique', 1), ('distributed', 1), ('environment', 1), ('maximize', 1), ('reuse', 1), ('maintainability', 1), ('code', 1)]
[('cross', 2), ('platform', 2), ('rich', 2), ('internet', 2), ('application', 2), ('real', 1), ('tool', 1), ('developing', 1), ('rias', 1), ('last', 1), ('year', 1), ('flash', 1), ('silverlight', 1), ('allows', 1), ('develop', 1), ('fraction', 1), ('time', 1)]
[('dojo', 2), ('described', 1), ('javascript', 1), ('toolkit', 1), ('programmer', 1), ('easy', 1), ('enough', 1), ('designer', 1), ('pick', 1), ('book', 1), ('introduce', 1), ('foundational', 1), ('concept', 1), ('using', 1), ('increase', 1), ('efficiency', 1), ('developing', 1), ('modern', 1), ('website', 1), ('utilize', 1)]
[('server', 4), ('window', 3), ('appfabric', 2), ('book', 1), ('teach', 1), ('set', 1), ('extension', 1), ('allow', 1), ('function', 1), ('lightweight', 1), ('application', 1), ('combination', 1), ('provides', 1), ('easy', 1), ('manage', 1), ('platform', 1)]
[('iphone', 2), ('unleash', 1), ('power', 1), ('new', 1), ('io', 1), ('driven', 1), ('take', 1), ('limit', 1), ('using', 1), ('powerful', 1), ('tip', 1), ('technique', 1), ('apple', 1), ('expert', 1), ('tuaw', 1), ('erica', 1), ('sadun', 1), ('steve', 1), ('sande', 1), ('michael', 1), ('grothaus', 1), ('fast', 1), ('fun', 1), ('taking', 1)]
[('development', 3), ('iphone', 2), ('ipad', 2), ('apps', 2), ('interested', 1), ('want', 1), ('learn', 1), ('whether', 1), ('self', 1), ('taught', 1), ('genius', 1), ('made', 1), ('way', 1), ('page', 1), ('beginning', 1), ('io', 1), ('perfect', 1), ('book', 1)]
[('query', 3), ('book', 2), ('sql', 2), ('server', 2), ('performance', 2), ('running', 1), ('fast', 1), ('enough', 1), ('tired', 1), ('phone', 1), ('call', 1), ('frustrated', 1), ('user', 1), ('grant', 1), ('fritchey', 1), ('rsquo', 1), ('tuning', 1), ('answer', 1), ('problem', 1), ('revised', 1), ('cover', 1)]
[('sharepoint', 2), ('learn', 1), ('pro', 1), ('migration', 1), ('migrate', 1), ('existing', 1), ('farm', 1), ('infrastructure', 1), ('upgrade', 1), ('approach', 1), ('code', 1), ('branding', 1), ('impact', 1), ('new', 1), ('feature', 1), ('strategic', 1), ('way', 1), ('result', 1), ('smooth', 1), ('transition', 1), ('noted', 1), ('author', 1), ('sahil', 1)]
[('oracle', 2), ('certified', 2), ('professional', 2), ('java', 2), ('se', 2), ('programmer', 2), ('exam', 2), ('step', 2), ('concise', 1), ('comprehensive', 1), ('stop', 1), ('guide', 1), ('first', 1), ('chapter', 1), ('set', 1), ('stage', 1)]
[('io', 2), ('solution', 2), ('code', 2), ('recipe', 1), ('problem', 1), ('approach', 1), ('reference', 1), ('guide', 1), ('developing', 1), ('ipad', 1), ('iphone', 1), ('sdk', 1), ('device', 1), ('platform', 1), ('book', 1), ('provides', 1), ('depth', 1), ('sample', 1), ('discussion', 1), ('scenario', 1), ('developer', 1)]
[('java', 4), ('web', 3), ('based', 2), ('start', 1), ('building', 1), ('application', 1), ('even', 1), ('complete', 1), ('newcomer', 1), ('comprehensive', 1), ('example', 1), ('driven', 1), ('beginning', 1), ('jsp', 1), ('jsf', 1), ('tomcat', 1), ('development', 1), ('second', 1), ('edition', 1), ('need', 1), ('develop', 1), ('dynamic', 1)]
[('web', 2), ('framework', 1), ('playing', 1), ('major', 1), ('role', 1), ('creation', 1), ('today', 1), ('compelling', 1), ('application', 1), ('automate', 1), ('many', 1), ('tedious', 1), ('task', 1), ('allowing', 1), ('developer', 1), ('instead', 1), ('focus', 1), ('providing', 1), ('user', 1), ('creative', 1), ('powerful', 1), ('feature', 1), ('java', 1)]
[('asp', 2), ('net', 2), ('web', 1), ('api', 1), ('key', 1), ('part', 1), ('mvc', 1), ('platform', 1), ('choice', 1), ('building', 1), ('restful', 1), ('service', 1), ('accessed', 1), ('wide', 1), ('range', 1), ('device', 1), ('everything', 1), ('javascript', 1), ('library', 1), ('ria', 1), ('plugins', 1), ('rfid', 1), ('reader', 1), ('smart', 1), ('phone', 1), ('consume', 1)]
[('step', 2), ('mobile', 1), ('asp', 1), ('net', 1), ('mvc', 1), ('take', 1), ('process', 1), ('developing', 1), ('fluid', 1), ('content', 1), ('adapts', 1), ('layout', 1), ('client', 1), ('device', 1), ('using', 1), ('html', 1), ('javascript', 1), ('cs', 1), ('responsive', 1), ('web', 1), ('design', 1), ('book', 1), ('introduces', 1), ('server', 1), ('side', 1), ('technique', 1)]
[('microsoft', 2), ('window', 2), ('phone', 2), ('new', 2), ('development', 2), ('handset', 1), ('injected', 1), ('vibrancy', 1), ('smartphone', 1), ('marketplace', 1), ('provided', 1), ('bold', 1), ('opportunity', 1), ('community', 1), ('second', 1), ('edition', 1), ('beginning', 1)]
[('iphone', 2), ('ipad', 2), ('monotouch', 2), ('write', 2), ('developing', 1), ('application', 1), ('using', 1), ('show', 1), ('use', 1), ('existing', 1), ('skill', 1), ('apps', 1), ('fortunately', 1), ('novell', 1), ('net', 1), ('library', 1), ('allows', 1), ('developer', 1), ('code', 1)]
[('book', 2), ('language', 2), ('programming', 2), ('present', 1), ('uniquely', 1), ('succinct', 1), ('visual', 1), ('format', 1), ('often', 1), ('information', 1), ('hidden', 1), ('vast', 1), ('sea', 1), ('word', 1), ('programmer', 1), ('year', 1), ('used', 1), ('dozen', 1), ('author', 1)]
[('oracle', 2), ('application', 2), ('express', 2), ('pro', 1), ('key', 1), ('mastering', 1), ('innovative', 1), ('product', 1), ('come', 1), ('year', 1), ('termed', 1), ('apex', 1), ('short', 1), ('fast', 1), ('becoming', 1), ('easiest', 1), ('widely', 1), ('used', 1), ('tool', 1)]
[('book', 1), ('phenomenon', 1), ('growing', 1), ('exponential', 1), ('rate', 1), ('introduction', 1), ('hundred', 1), ('thousand', 1), ('participate', 1), ('geocaching', 1), ('received', 1), ('wide', 1), ('coverage', 1), ('television', 1), ('radio', 1), ('newspaper', 1)]
[('nan', 1)]
[('nan', 1)]
[('sql', 3), ('server', 3), ('scenario', 3), ('administration', 1), ('perl', 1), ('consists', 1), ('series', 1), ('covering', 1), ('wide', 1), ('range', 1), ('administrative', 1), ('topic', 1), ('real', 1), ('world', 1), ('hear', 1), ('dba', 1), ('discussing', 1), ('forum', 1), ('newsgroups', 1)]
[('sql', 3), ('major', 2), ('guide', 1), ('combine', 1), ('proven', 1), ('tutorial', 1), ('approach', 1), ('teaching', 1), ('collection', 1), ('statement', 1), ('example', 1), ('code', 1), ('five', 1), ('database', 1), ('system', 1), ('server', 1), ('oracle', 1), ('db', 1), ('mysql', 1), ('access', 1)]
[('opencv', 2), ('computer', 2), ('vision', 2), ('practical', 1), ('hand', 1), ('project', 1), ('book', 1), ('show', 1), ('best', 1), ('result', 1), ('open', 1), ('source', 1), ('library', 1), ('key', 1), ('technology', 1), ('object', 1), ('recognition', 1), ('shape', 1), ('detection', 1), ('depth', 1), ('estimation', 1)]
[('server', 2), ('pro', 1), ('exchange', 1), ('administration', 1), ('best', 1), ('class', 1), ('companion', 1), ('gaininga', 1), ('deep', 1), ('thorough', 1), ('understanding', 1), ('microsoft', 1), ('rsquo', 1), ('powerful', 1), ('enterprise', 1), ('collaboration', 1), ('andcommunications', 1), ('author', 1), ('jaap', 1), ('wesselius', 1), ('side', 1)]
[('javascript', 3), ('beginning', 1), ('dom', 1), ('scripting', 1), ('ajax', 1), ('essential', 1), ('resource', 1), ('modern', 1), ('programming', 1), ('completely', 1), ('updated', 1), ('second', 1), ('edition', 1), ('cover', 1), ('everything', 1), ('need', 1), ('know', 1), ('speed', 1), ('development', 1), ('add', 1), ('dynamic', 1)]
[('spring', 2), ('recipe', 2), ('edition', 2), ('problem', 1), ('solution', 1), ('approach', 1), ('third', 1), ('build', 1), ('upon', 1), ('best', 1), ('selling', 1), ('success', 1), ('previous', 1), ('focus', 1), ('latest', 1), ('framework', 1), ('feature', 1), ('building', 1), ('enterprise', 1), ('java', 1), ('application', 1), ('book', 1), ('provides', 1), ('code', 1)]
[('area', 2), ('beginning', 1), ('application', 1), ('lifecycle', 1), ('management', 1), ('guide', 1), ('rapidly', 1), ('growing', 1), ('interest', 1), ('within', 1), ('development', 1), ('community', 1), ('managing', 1), ('entire', 1), ('cycle', 1), ('building', 1), ('software', 1), ('alm', 1), ('span', 1), ('everything', 1), ('requirement', 1), ('specification', 1)]
[('glasshaus', 1)]
[('gain', 1), ('practical', 1), ('knowledge', 1), ('need', 1), ('plan', 1), ('design', 1), ('deploy', 1), ('manage', 1), ('mixed', 1), ('cloud', 1), ('premise', 1), ('management', 1), ('system', 1), ('drawing', 1), ('experience', 1), ('senior', 1), ('principal', 1), ('software', 1), ('architect', 1), ('ca', 1), ('technology', 1), ('marvin', 1), ('waschke', 1), ('lay', 1), ('nut', 1)]
[('practical', 2), ('using', 2), ('book', 1), ('guide', 1), ('argus', 1), ('developer', 1), ('world', 1), ('rsquo', 1), ('widely', 1), ('used', 1), ('real', 1), ('estate', 1), ('development', 1), ('feasibility', 1), ('modeling', 1), ('software', 1), ('example', 1), ('many', 1), ('case', 1), ('study', 1), ('take', 1), ('reader', 1), ('beyond', 1), ('basic', 1), ('training', 1), ('provides', 1)]
[('power', 4), ('excel', 3), ('query', 2), ('bi', 2), ('data', 2), ('book', 1), ('tired', 1), ('copying', 1), ('pasting', 1), ('worksheet', 1), ('part', 1), ('microsoft', 1), ('suite', 1), ('tool', 1), ('automates', 1), ('process', 1), ('getting', 1)]
[('javafx', 2), ('use', 2), ('platform', 2), ('java', 2), ('pro', 1), ('expert', 1), ('author', 1), ('show', 1), ('create', 1), ('rich', 1), ('client', 1), ('application', 1), ('discover', 1), ('powerful', 1), ('based', 1), ('ui', 1), ('capable', 1), ('handling', 1), ('large', 1), ('scale', 1), ('data', 1), ('driven', 1), ('business', 1)]
[('using', 2), ('image', 2), ('beginning', 1), ('photo', 1), ('retouching', 1), ('amp', 1), ('restoration', 1), ('gimp', 1), ('teach', 1), ('reader', 1), ('achieve', 1), ('professional', 1), ('result', 1), ('high', 1), ('end', 1), ('editor', 1), ('learn', 1), ('everything', 1), ('making', 1), ('dull', 1), ('pop', 1), ('resurrecting', 1), ('badly', 1), ('damaged', 1)]
[('social', 2), ('medium', 2), ('easily', 1), ('understand', 1), ('important', 1), ('tool', 1), ('skill', 1), ('marketing', 1), ('exposed', 1), ('facebook', 1), ('page', 1), ('ad', 1), ('work', 1), ('twitter', 1), ('linkedin', 1), ('save', 1), ('time', 1), ('hootsuite', 1), ('learn', 1), ('monitoring', 1), ('nbsp', 1), ('completely', 1)]
[('follow', 1), ('guide', 1), ('explains', 1), ('oracle', 1), ('infrastructure', 1), ('service', 1), ('iaa', 1), ('cloud', 1), ('solution', 1), ('tool', 1), ('capability', 1), ('help', 1), ('increase', 1), ('business', 1), ('value', 1), ('productivity', 1), ('performance', 1), ('learn', 1), ('economic', 1), ('advantage', 1)]
[('deep', 2), ('learning', 2), ('state', 2), ('discover', 1), ('practical', 1), ('aspect', 1), ('implementing', 1), ('solution', 1), ('using', 1), ('rich', 1), ('python', 1), ('ecosystem', 1), ('book', 1), ('bridge', 1), ('gap', 1), ('academic', 1), ('art', 1), ('industry', 1), ('practice', 1), ('introducing', 1)]
[('ionic', 2), ('quickly', 2), ('explore', 1), ('key', 1), ('scenario', 1), ('required', 1), ('building', 1), ('quality', 1), ('apps', 1), ('easily', 1), ('bring', 1), ('io', 1), ('android', 1), ('mobile', 1), ('ecosystem', 1), ('learn', 1), ('nbsp', 1), ('explains', 1), ('various', 1), ('technique', 1), ('integrate', 1), ('third', 1), ('party', 1), ('back', 1), ('end', 1), ('system', 1)]
[('application', 2), ('find', 1), ('use', 1), ('docker', 1), ('asp', 1), ('net', 1), ('core', 1), ('mvc', 1), ('container', 1), ('make', 1), ('easier', 1), ('develop', 1), ('deploy', 1), ('manage', 1), ('production', 1), ('environment', 1), ('packed', 1), ('example', 1), ('practical', 1), ('demonstration', 1), ('book', 1), ('help', 1)]
[('data', 3), ('set', 2), ('learn', 1), ('docker', 1), ('infrastructure', 1), ('code', 1), ('technology', 1), ('define', 1), ('system', 1), ('performing', 1), ('standard', 1), ('non', 1), ('trivial', 1), ('task', 1), ('medium', 1), ('large', 1), ('scale', 1), ('using', 1), ('jupyter', 1), ('master', 1), ('controller', 1), ('uncommon', 1), ('real', 1), ('world', 1), ('fail', 1)]
[('task', 2), ('recognition', 2), ('frame', 2), ('apply', 1), ('processing', 1), ('language', 1), ('involved', 1), ('computer', 1), ('vision', 1), ('edge', 1), ('corner', 1), ('detection', 1), ('motion', 1), ('video', 1), ('object', 1), ('matching', 1), ('feature', 1), ('point', 1), ('shape', 1), ('different', 1)]
[('ubuntu', 2), ('discover', 1), ('work', 1), ('home', 1), ('play', 1), ('learning', 1), ('new', 1), ('operating', 1), ('system', 1), ('feel', 1), ('daunting', 1), ('especially', 1), ('used', 1), ('window', 1), ('o', 1), ('afraid', 1), ('try', 1), ('know', 1), ('start', 1)]
[('shopify', 2), ('theme', 2), ('master', 1), ('design', 1), ('technique', 1), ('practical', 1), ('skill', 1), ('needed', 1), ('build', 1), ('make', 1), ('client', 1), ('profitable', 1), ('increasing', 1), ('number', 1), ('business', 1), ('use', 1), ('need', 1), ('designed', 1), ('turn', 1), ('visitor', 1), ('customer', 1)]
[('sql', 2), ('oracle', 2), ('learn', 1), ('practical', 1), ('guide', 1), ('tuning', 1), ('expert', 1), ('using', 1), ('freely', 1), ('downloadable', 1), ('tool', 1), ('called', 1), ('sqltxplain', 1), ('new', 1), ('edition', 1), ('expanded', 1), ('include', 1), ('awr', 1), ('statistic', 1), ('interpretation', 1), ('monitor', 1), ('report', 1)]
[('kubernetes', 3), ('using', 2), ('start', 1), ('complex', 1), ('big', 1), ('data', 1), ('enterprise', 1), ('application', 1), ('including', 1), ('docker', 1), ('container', 1), ('starting', 1), ('installing', 1), ('single', 1), ('node', 1), ('book', 1), ('introduces', 1), ('simple', 1), ('hello', 1), ('example', 1), ('discus', 1), ('environment', 1)]
[('using', 2), ('use', 1), ('easy', 1), ('digest', 1), ('brief', 1), ('introduction', 1), ('leverage', 1), ('search', 1), ('engine', 1), ('optimization', 1), ('seo', 1), ('imperative', 1), ('methodology', 1), ('used', 1), ('improve', 1), ('visibility', 1), ('website', 1), ('different', 1), ('strategy', 1), ('technique', 1), ('calculative', 1), ('practical', 1), ('approach', 1)]
[('nbsp', 2), ('platform', 2), ('application', 2), ('fast', 1), ('paced', 1), ('book', 1), ('docker', 1), ('open', 1), ('standard', 1), ('developing', 1), ('packaging', 1), ('running', 1), ('portable', 1), ('distributed', 1), ('deepak', 1), ('vorhadiscusses', 1), ('build', 1), ('ship', 1), ('run', 1), ('pc', 1)]
[('actionscript', 2), ('swift', 2), ('build', 1), ('knowledge', 1), ('take', 1), ('fast', 1), ('track', 1), ('developing', 1), ('io', 1), ('apps', 1), ('apple', 1), ('latest', 1), ('language', 1), ('syntax', 1), ('easier', 1), ('understand', 1), ('objective', 1), ('already', 1), ('familiar', 1), ('time', 1)]
[('learn', 1), ('advanced', 1), ('analytical', 1), ('technique', 1), ('leverage', 1), ('existing', 1), ('tool', 1), ('kit', 1), ('make', 1), ('analytic', 1), ('application', 1), ('powerful', 1), ('precise', 1), ('efficient', 1), ('book', 1), ('provides', 1), ('right', 1), ('combination', 1), ('architecture', 1), ('design', 1), ('implementation', 1), ('information', 1)]
[('gimp', 2), ('obtain', 1), ('technique', 1), ('adding', 1), ('color', 1), ('black', 1), ('white', 1), ('monochrome', 1), ('photographic', 1), ('image', 1), ('using', 1), ('book', 1), ('learn', 1), ('create', 1), ('hand', 1), ('tinted', 1), ('effect', 1), ('add', 1), ('element', 1), ('antiquity', 1), ('pro', 1), ('photo', 1), ('colorizing', 1), ('teach', 1)]
[('test', 2), ('framework', 2), ('learn', 1), ('appium', 1), ('implemented', 1), ('java', 1), ('integrated', 1), ('tool', 1), ('nbsp', 1), ('testng', 1), ('cucumber', 1), ('maven', 1), ('jenkins', 1), ('selenium', 1), ('grid', 1), ('create', 1), ('automation', 1), ('mobile', 1), ('apps', 1), ('simulator', 1), ('real', 1), ('device', 1)]
[('learn', 1), ('understand', 1), ('perform', 1), ('wide', 1), ('range', 1), ('task', 1), ('new', 1), ('window', 1), ('computer', 1), ('including', 1), ('managing', 1), ('file', 1), ('browsing', 1), ('internet', 1), ('protecting', 1), ('interacting', 1), ('cortana', 1), ('using', 1), ('absolute', 1), ('beginner', 1), ('guide', 1), ('computing', 1)]
[('nbsp', 2), ('professional', 2), ('book', 1), ('complete', 1), ('guide', 1), ('studying', 1), ('linux', 1), ('institute', 1), ('server', 1), ('lpic', 1), ('certification', 1), ('every', 1), ('concept', 1), ('principle', 1), ('process', 1), ('resource', 1), ('might', 1), ('make', 1), ('appearance', 1), ('exam', 1), ('fully', 1)]
[('end', 3), ('rp', 2), ('back', 2), ('development', 2), ('learn', 1), ('institute', 1), ('reactive', 1), ('programming', 1), ('node', 1), ('j', 1), ('often', 1), ('used', 1), ('front', 1), ('cutting', 1), ('edge', 1), ('approach', 1), ('transform', 1)]
[('ruby', 2), ('day', 2), ('recipe', 2), ('solve', 1), ('programming', 1), ('problem', 1), ('occur', 1), ('scripting', 1), ('work', 1), ('book', 1), ('contains', 1), ('varied', 1), ('selection', 1), ('practical', 1), ('interesting', 1), ('code', 1), ('designed', 1), ('make', 1), ('coding', 1), ('life', 1), ('easier', 1), ('includes', 1), ('solution', 1)]
[('io', 2), ('unearth', 1), ('significant', 1), ('attack', 1), ('threatening', 1), ('application', 1), ('recent', 1), ('time', 1), ('learn', 1), ('method', 1), ('patching', 1), ('make', 1), ('payment', 1), ('transaction', 1), ('personal', 1), ('data', 1), ('sharing', 1), ('secure', 1), ('nbsp', 1), ('come', 1), ('security', 1)]
[('language', 2), ('using', 2), ('tailor', 1), ('apps', 1), ('appeal', 1), ('global', 1), ('market', 1), ('microsoft', 1), ('mvp', 1), ('chris', 1), ('miller', 1), ('step', 1), ('process', 1), ('enabling', 1), ('multiple', 1), ('support', 1), ('single', 1), ('shared', 1), ('set', 1), ('resource', 1), ('net', 1), ('framework', 1), ('learn', 1), ('adapt', 1)]
[('learn', 1), ('effective', 1), ('scalable', 1), ('database', 1), ('design', 1), ('technique', 1), ('sql', 1), ('server', 1), ('higher', 1), ('environment', 1), ('book', 1), ('revised', 1), ('cover', 1), ('memory', 1), ('online', 1), ('transaction', 1), ('processing', 1), ('temporal', 1), ('data', 1), ('storage', 1), ('row', 1), ('level', 1), ('security', 1), ('durability', 1), ('enhancement', 1)]
[('learn', 1), ('translate', 1), ('executable', 1), ('model', 1), ('application', 1), ('running', 1), ('code', 1), ('book', 1), ('theory', 1), ('good', 1), ('intention', 1), ('possible', 1), ('future', 1), ('development', 1), ('benefit', 1), ('translation', 1), ('technology', 1), ('solid', 1), ('software', 1), ('engineering', 1)]
[('learn', 2), ('application', 2), ('keystonejs', 2), ('develop', 1), ('complete', 1), ('robust', 1), ('node', 1), ('express', 1), ('j', 1), ('mongodb', 1), ('based', 1), ('web', 1), ('mobile', 1), ('backend', 1), ('quickly', 1), ('using', 1), ('make', 1), ('complicated', 1), ('thing', 1), ('simple', 1), ('without', 1), ('limiting', 1), ('power', 1)]
[('arduino', 4), ('net', 3), ('leverage', 1), ('sketch', 1), ('development', 1), ('implementation', 1), ('integrate', 1), ('program', 1), ('many', 1), ('model', 1), ('compatible', 1), ('shield', 1), ('used', 1), ('board', 1), ('integrating', 1), ('platform', 1)]
[('web', 2), ('service', 2), ('application', 2), ('based', 2), ('discover', 1), ('restful', 1), ('technology', 1), ('including', 1), ('rest', 1), ('json', 1), ('xml', 1), ('jax', 1), ('r', 1), ('soap', 1), ('building', 1), ('today', 1), ('microservices', 1), ('big', 1), ('data', 1), ('nbsp', 1), ('book', 1), ('course', 1), ('oracle', 1), ('author', 1)]
[('development', 2), ('embedded', 2), ('system', 2), ('agile', 2), ('software', 2), ('utilize', 1), ('new', 1), ('layer', 1), ('based', 1), ('model', 1), ('using', 1), ('technique', 1), ('architecture', 1), ('management', 1), ('firmware', 1), ('comprised', 1), ('hardware', 1), ('applicability', 1)]
[('application', 3), ('django', 2), ('web', 2), ('discover', 1), ('framework', 1), ('started', 1), ('building', 1), ('python', 1), ('based', 1), ('book', 1), ('take', 1), ('basic', 1), ('way', 1), ('cutting', 1), ('edge', 1), ('topic', 1), ('creating', 1), ('restful', 1), ('nbsp', 1), ('beginning', 1)]
[('java', 3), ('basic', 2), ('step', 2), ('learn', 1), ('including', 1), ('programming', 1), ('concept', 1), ('object', 1), ('oriented', 1), ('fundamental', 1), ('necessary', 1), ('level', 1), ('development', 1), ('author', 1), ('kishori', 1), ('sharan', 1), ('walk', 1), ('writing', 1), ('first', 1), ('program', 1), ('armed', 1)]
[('query', 2), ('walk', 1), ('away', 1), ('old', 1), ('fashioned', 1), ('cumbersome', 1), ('approach', 1), ('answer', 1), ('business', 1), ('intelligence', 1), ('question', 1), ('simple', 1), ('powerful', 1), ('built', 1), ('common', 1), ('table', 1), ('expression', 1), ('ctes', 1), ('window', 1), ('function', 1), ('new', 1), ('feature', 1), ('mariadb', 1), ('mysql', 1)]
[('new', 2), ('way', 2), ('test', 2), ('java', 2), ('tdd', 2), ('explore', 1), ('building', 1), ('maintaining', 1), ('case', 1), ('driven', 1), ('development', 1), ('using', 1), ('junit', 1), ('book', 1), ('talk', 1), ('concept', 1), ('show', 1), ('applying', 1), ('continuously', 1), ('deliver', 1), ('code', 1)]
[('squarespace', 3), ('professional', 2), ('utilize', 1), ('power', 1), ('create', 1), ('custom', 1), ('website', 1), ('learn', 1), ('principle', 1), ('tool', 1), ('used', 1), ('successful', 1), ('web', 1), ('take', 1), ('skill', 1), ('next', 1), ('level', 1), ('beginning', 1), ('overview', 1)]
[('machine', 2), ('learning', 2), ('intelligence', 2), ('learn', 1), ('emergence', 1), ('evolution', 1), ('enterprise', 1), ('see', 1), ('transforming', 1), ('business', 1), ('discover', 1), ('various', 1), ('cognitive', 1), ('artificial', 1), ('solution', 1), ('complement', 1), ('extend', 1)]
[('sharepoint', 2), ('utilize', 1), ('treasure', 1), ('trove', 1), ('free', 1), ('troubleshooting', 1), ('tool', 1), ('receive', 1), ('insightful', 1), ('guidance', 1), ('type', 1), ('issue', 1), ('discovered', 1), ('use', 1), ('chapter', 1), ('book', 1), ('contrast', 1), ('solid', 1), ('least', 1), ('privileged', 1), ('build', 1)]
[('principle', 3), ('software', 3), ('engineering', 2), ('learn', 1), ('good', 1), ('design', 1), ('turn', 1), ('code', 1), ('book', 1), ('introduces', 1), ('application', 1), ('development', 1), ('see', 1)]
[('java', 2), ('including', 2), ('module', 2), ('discover', 1), ('new', 1), ('feature', 1), ('change', 1), ('system', 1), ('jpms', 1), ('project', 1), ('jigsaw', 1), ('book', 1), ('cover', 1), ('whole', 1), ('application', 1), ('development', 1), ('life', 1), ('cycle', 1), ('review', 1), ('important', 1), ('concept', 1), ('descriptor', 1)]
[('app', 2), ('dive', 1), ('headfirst', 1), ('microsoft', 1), ('computer', 1), ('vision', 1), ('apis', 1), ('sample', 1), ('driven', 1), ('scenario', 1), ('imagine', 1), ('describes', 1), ('visually', 1), ('impaired', 1), ('object', 1), ('around', 1), ('read', 1), ('sunday', 1), ('paper', 1), ('favorite', 1), ('magazine', 1), ('street', 1), ('sign', 1)]
[('bot', 4), ('develop', 2), ('intelligent', 1), ('using', 1), ('microsoft', 1), ('framework', 1), ('node', 1), ('j', 1), ('visual', 1), ('studio', 1), ('enterprise', 1), ('code', 1), ('microsoftazure', 1), ('cognitive', 1), ('service', 1), ('nbsp', 1), ('book', 1), ('show', 1), ('publish', 1), ('azure', 1), ('register', 1), ('portal', 1)]
[('architecture', 2), ('build', 1), ('microservices', 1), ('spring', 1), ('boot', 1), ('evolving', 1), ('application', 1), ('small', 1), ('monolith', 1), ('event', 1), ('driven', 1), ('composed', 1), ('several', 1), ('service', 1), ('book', 1), ('follows', 1), ('incremental', 1), ('approach', 1), ('teach', 1), ('microservice', 1), ('structure', 1)]
[('close', 1), ('gap', 1), ('introductory', 1), ('advanced', 1), ('resource', 1), ('available', 1), ('sharepoint', 1), ('guide', 1), ('identify', 1), ('core', 1), ('benefit', 1), ('specific', 1), ('technique', 1), ('real', 1), ('world', 1), ('context', 1), ('including', 1), ('best', 1), ('practice', 1), ('scenario', 1), ('find', 1), ('book', 1)]
[('iphone', 2), ('development', 2), ('swift', 2), ('acquire', 1), ('master', 1), ('information', 1), ('required', 1), ('take', 1), ('next', 1), ('level', 1), ('beyond', 1), ('basic', 1), ('using', 1), ('nbsp', 1), ('follow', 1), ('work', 1), ('best', 1), ('selling', 1), ('beginning', 1), ('learn', 1), ('improve', 1), ('apps', 1)]
[('gain', 1), ('broad', 1), ('foundation', 1), ('advanced', 1), ('data', 1), ('analytics', 1), ('concept', 1), ('discover', 1), ('recent', 1), ('revolution', 1), ('database', 1), ('neo', 1), ('elasticsearch', 1), ('mongodb', 1), ('book', 1), ('discus', 1), ('implement', 1), ('etl', 1), ('technique', 1), ('including', 1), ('topical', 1), ('crawling', 1), ('applied', 1)]
[('dax', 3), ('attention', 1), ('sql', 1), ('pro', 1), ('writing', 1), ('excel', 1), ('based', 1), ('formula', 1), ('hand', 1), ('learning', 1), ('expert', 1), ('advice', 1), ('use', 1), ('vast', 1), ('capability', 1), ('language', 1), ('solve', 1), ('common', 1), ('data', 1), ('modeling', 1), ('challenge', 1), ('beginning', 1), ('power', 1), ('bi', 1), ('teach', 1)]
[('data', 3), ('science', 3), ('example', 2), ('build', 1), ('foundational', 1), ('skill', 1), ('necessary', 1), ('work', 1), ('better', 1), ('understand', 1), ('complex', 1), ('algorithm', 1), ('nbsp', 1), ('driven', 1), ('book', 1), ('provides', 1), ('complete', 1), ('python', 1), ('coding', 1), ('complement', 1), ('clarify', 1), ('concept', 1)]
[('contiki', 2), ('ng', 2), ('explore', 1), ('develop', 1), ('implement', 1), ('wireless', 1), ('server', 1), ('network', 1), ('wsn', 1), ('using', 1), ('branded', 1), ('operating', 1), ('system', 1), ('iot', 1), ('book', 1), ('explains', 1), ('advantage', 1), ('sensing', 1), ('communication', 1), ('energy', 1), ('optimization', 1), ('enables', 1)]
[('game', 3), ('make', 1), ('ten', 1), ('simple', 1), ('casual', 1), ('learn', 1), ('ton', 1), ('gml', 1), ('coding', 1), ('along', 1), ('way', 1), ('kind', 1), ('play', 1), ('minute', 1), ('free', 1), ('playing', 1), ('pc', 1), ('exported', 1), ('html', 1), ('android', 1), ('nbsp', 1)]
[('neural', 3), ('network', 3), ('unity', 2), ('learn', 1), ('core', 1), ('concept', 1), ('discover', 1), ('different', 1), ('type', 1), ('using', 1), ('platform', 1), ('book', 1), ('start', 1), ('exploring', 1), ('back', 1), ('propagation', 1), ('unsupervised', 1)]
[('python', 3), ('step', 2), ('move', 1), ('zero', 1), ('knowledge', 1), ('programming', 1), ('comfortably', 1), ('writing', 1), ('small', 1), ('medium', 1), ('sized', 1), ('program', 1), ('fully', 1), ('updated', 1), ('code', 1), ('example', 1), ('throughout', 1), ('book', 1), ('explains', 1), ('coding', 1), ('accessible', 1), ('approach', 1)]
[('deep', 2), ('work', 1), ('advanced', 1), ('topic', 1), ('learning', 1), ('optimization', 1), ('algorithm', 1), ('hyper', 1), ('parameter', 1), ('tuning', 1), ('dropout', 1), ('error', 1), ('analysis', 1), ('strategy', 1), ('address', 1), ('typical', 1), ('problem', 1), ('encountered', 1), ('training', 1), ('neural', 1), ('network', 1), ('begin', 1)]
[('descriptor', 4), ('create', 1), ('see', 1), ('idea', 1), ('example', 1), ('use', 1), ('effectively', 1), ('short', 1), ('book', 1), ('explore', 1), ('general', 1), ('deep', 1), ('explanation', 1), ('work', 1), ('used', 1)]
[('office', 3), ('agile', 2), ('plan', 1), ('deploy', 1), ('run', 1), ('using', 1), ('project', 1), ('management', 1), ('approach', 1), ('soup', 1), ('nut', 1), ('guide', 1), ('teach', 1), ('apply', 1), ('technique', 1), ('order', 1), ('make', 1), ('implementation', 1), ('success', 1), ('even', 1), ('microsoft', 1), ('platform', 1)]
[('using', 2), ('end', 2), ('j', 2), ('learn', 1), ('agile', 1), ('javascript', 1), ('web', 1), ('development', 1), ('latest', 1), ('cutting', 1), ('edge', 1), ('front', 1), ('back', 1), ('technology', 1), ('including', 1), ('node', 1), ('mongodb', 1), ('backbone', 1), ('parse', 1), ('heroku', 1), ('microsoft', 1), ('azure', 1), ('key', 1), ('project', 1), ('example', 1), ('message', 1), ('board', 1), ('app', 1)]
[('spark', 5), ('node', 2), ('work', 1), ('apache', 1), ('using', 1), ('scala', 1), ('deploy', 1), ('set', 1), ('single', 1), ('multi', 1), ('high', 1), ('availability', 1), ('cluster', 1), ('book', 1), ('discus', 1), ('various', 1), ('component', 1), ('core', 1), ('dataframes', 1), ('datasets', 1), ('sql', 1), ('streaming', 1), ('mlib', 1)]
[('programming', 2), ('tool', 2), ('modern', 1), ('science', 1), ('requires', 1), ('computer', 1), ('graphic', 1), ('model', 1), ('provide', 1), ('realistic', 1), ('visual', 1), ('rendering', 1), ('learning', 1), ('appropriate', 1), ('modeling', 1), ('difficult', 1), ('book', 1), ('review', 1), ('best', 1), ('achieve', 1)]
[('react', 3), ('library', 2), ('knowing', 2), ('important', 2), ('learn', 1), ('write', 1), ('real', 1), ('world', 1), ('enterprise', 1), ('app', 1), ('using', 1), ('fundamental', 1), ('popular', 1), ('basic', 1), ('common', 1), ('third', 1), ('party', 1), ('use', 1)]
[('skill', 3), ('build', 2), ('alexa', 2), ('book', 2), ('design', 1), ('innovative', 1), ('custom', 1), ('data', 1), ('driven', 1), ('home', 1), ('business', 1), ('working', 1), ('several', 1), ('project', 1), ('teach', 1), ('integrate', 1), ('online', 1), ('apis', 1), ('basic', 1), ('python', 1)]
[('nbsp', 2), ('written', 1), ('perspective', 1), ('technical', 1), ('project', 1), ('manager', 1), ('study', 1), ('present', 1), ('scenario', 1), ('complete', 1), ('shift', 1), ('left', 1), ('software', 1), ('development', 1), ('effort', 1), ('brings', 1), ('consideration', 1), ('test', 1), ('support', 1), ('early', 1), ('inception', 1), ('stage', 1), ('based', 1)]
[('data', 2), ('book', 1), ('provides', 1), ('need', 1), ('find', 1), ('external', 1), ('source', 1), ('load', 1), ('transform', 1), ('power', 1), ('bi', 1), ('mine', 1), ('business', 1), ('insight', 1), ('competitive', 1), ('edge', 1), ('range', 1), ('connecting', 1), ('corporate', 1), ('database', 1), ('azure', 1)]
[('oracle', 2), ('apex', 2), ('oci', 2), ('feature', 2), ('book', 1), ('show', 1), ('application', 1), ('express', 1), ('developer', 1), ('take', 1), ('advantage', 1), ('cloud', 1), ('infrastructure', 1), ('might', 1), ('go', 1), ('missed', 1), ('learn', 1), ('use', 1), ('data', 1), ('science', 1), ('task', 1)]
[('gain', 1), ('nbsp', 1), ('insight', 1), ('different', 1), ('challenge', 1), ('solved', 1), ('using', 1), ('go', 1), ('focus', 1), ('container', 1), ('linux', 1), ('security', 1), ('networking', 1), ('user', 1), ('interface', 1), ('relevant', 1), ('cloud', 1), ('based', 1), ('topic', 1), ('book', 1), ('review', 1), ('necessary', 1), ('tool', 1), ('create', 1)]
[('depth', 1), ('guide', 1), ('cover', 1), ('wide', 1), ('range', 1), ('topic', 1), ('including', 1), ('chapter', 1), ('linear', 1), ('algebra', 1), ('root', 1), ('finding', 1), ('curve', 1), ('fitting', 1), ('differentiation', 1), ('integration', 1), ('solving', 1), ('differential', 1), ('equation', 1), ('random', 1), ('number', 1), ('simulation', 1), ('whole', 1), ('suite', 1), ('unconstrained', 1)]
[('audio', 2), ('video', 2), ('create', 1), ('edit', 1), ('modify', 1), ('convert', 1), ('multimedia', 1), ('file', 1), ('using', 1), ('ffmpeg', 1), ('versatile', 1), ('open', 1), ('source', 1), ('processing', 1), ('tool', 1), ('available', 1), ('linux', 1), ('mac', 1), ('window', 1), ('user', 1), ('reading', 1), ('book', 1), ('able', 1), ('work', 1)]
[('feature', 2), ('sparxsystems', 1), ('enterprise', 1), ('architect', 1), ('ea', 1), ('logical', 1), ('choice', 1), ('many', 1), ('company', 1), ('organization', 1), ('combine', 1), ('broad', 1), ('set', 1), ('affordable', 1), ('price', 1), ('robust', 1), ('range', 1), ('make', 1), ('starting', 1), ('use', 1), ('fantastic', 1), ('tool', 1), ('bit', 1)]
[('language', 3), ('programming', 2), ('introduction', 1), ('vala', 1), ('learn', 1), ('syntax', 1), ('semantics', 1), ('idiom', 1), ('want', 1), ('boost', 1), ('productivity', 1), ('interested', 1), ('combine', 1), ('efficiency', 1), ('scripting', 1)]
[('data', 2), ('useful', 2), ('feature', 2), ('discover', 1), ('variety', 1), ('mining', 1), ('algorithm', 1), ('selecting', 1), ('small', 1), ('set', 1), ('important', 1), ('among', 1), ('unwieldy', 1), ('mass', 1), ('candidate', 1), ('extracting', 1), ('measured', 1), ('variable', 1), ('serious', 1), ('miner', 1), ('often', 1)]
[('sensor', 2), ('network', 2), ('raspberry', 2), ('pi', 2), ('build', 1), ('python', 1), ('micropython', 1), ('using', 1), ('xbee', 1), ('radio', 1), ('module', 1), ('arduino', 1), ('board', 1), ('revised', 1), ('updated', 1), ('edition', 1), ('put', 1), ('together', 1), ('form', 1), ('show', 1), ('turn', 1)]
[('booting', 2), ('procedure', 2), ('operating', 2), ('system', 2), ('master', 1), ('various', 1), ('depth', 1), ('analysis', 1), ('bootloaders', 1), ('firmware', 1), ('primary', 1), ('focus', 1), ('linux', 1), ('along', 1), ('popular', 1), ('window', 1), ('unix', 1), ('hand', 1)]
[('data', 2), ('started', 1), ('accelerated', 1), ('introduction', 1), ('ecosystem', 1), ('programming', 1), ('language', 1), ('tool', 1), ('including', 1), ('script', 1), ('rstudio', 1), ('utilizing', 1), ('many', 1), ('example', 1), ('project', 1), ('book', 1), ('teach', 1), ('work', 1)]
[('android', 4), ('java', 3), ('sdk', 2), ('gain', 1), ('essential', 1), ('language', 1), ('skill', 1), ('necessary', 1), ('using', 1), ('platform', 1), ('build', 1), ('based', 1), ('apps', 1), ('book', 1), ('includes', 1), ('latest', 1), ('se', 1), ('release', 1), ('support', 1), ('geared', 1), ('towards', 1), ('version', 1)]
[('driven', 2), ('development', 2), ('used', 2), ('learn', 1), ('principle', 1), ('behind', 1), ('test', 1), ('tdd', 1), ('behavior', 1), ('bdd', 1), ('see', 1), ('jasmine', 1), ('rspec', 1), ('cucumber', 1), ('advantage', 1), ('book', 1), ('examines', 1), ('leading', 1), ('technology', 1), ('testing', 1)]
[('ai', 3), ('company', 1), ('committed', 1), ('congratulation', 1), ('practical', 1), ('book', 1), ('offer', 1), ('holistic', 1), ('plan', 1), ('implementing', 1), ('perspective', 1), ('operation', 1), ('enterprise', 1), ('learn', 1), ('capability', 1), ('potential', 1)]
[('supervised', 2), ('learning', 2), ('python', 2), ('gain', 1), ('thorough', 1), ('understanding', 1), ('algorithm', 1), ('developing', 1), ('use', 1), ('case', 1), ('study', 1), ('concept', 1), ('code', 1), ('datasets', 1), ('best', 1), ('practice', 1), ('resolution', 1), ('common', 1), ('issue', 1), ('pitfall', 1), ('practical', 1)]
[('raku', 4), ('explore', 1), ('problem', 1), ('solution', 1), ('using', 1), ('latest', 1), ('version', 1), ('programming', 1), ('language', 1), ('nbsp', 1), ('recipe', 1), ('emphasis', 1), ('applying', 1), ('code', 1), ('various', 1), ('important', 1), ('task', 1), ('application', 1), ('including', 1), ('data', 1), ('science', 1), ('analytics', 1)]
[('learn', 2), ('book', 2), ('developer', 1), ('want', 1), ('basic', 1), ('skill', 1), ('web', 1), ('application', 1), ('programming', 1), ('interface', 1), ('apis', 1), ('net', 1), ('complete', 1), ('introduction', 1), ('take', 1), ('experience', 1), ('approach', 1), ('hit', 1), ('ground', 1), ('running', 1)]
[('theme', 2), ('file', 2), ('power', 2), ('bi', 2), ('dashboard', 2), ('use', 1), ('json', 1), ('standardize', 1), ('look', 1), ('report', 1), ('book', 1), ('show', 1), ('create', 1), ('using', 1), ('desktop', 1), ('application', 1), ('define', 1), ('high', 1), ('level', 1), ('formatting', 1), ('attribute', 1)]
[('google', 2), ('map', 2), ('web', 2), ('application', 2), ('api', 1), ('showcase', 1), ('example', 1), ('development', 1), ('paradigm', 1), ('designed', 1), ('invitingly', 1), ('simple', 1), ('developer', 1), ('incorporate', 1), ('dynamic', 1), ('mapping', 1), ('service', 1), ('beginning', 1), ('rail', 1), ('ajax', 1)]
[('logging', 2), ('illustrates', 1), ('concept', 1), ('code', 1), ('sample', 1), ('java', 1), ('language', 1), ('provides', 1), ('guideline', 1), ('different', 1), ('application', 1), ('specific', 1), ('need', 1), ('describes', 1), ('technique', 1), ('distribute', 1), ('activity', 1), ('critical', 1), ('implement', 1), ('enterprise', 1), ('wide', 1)]
[('linux', 2), ('approach', 1), ('book', 1), ('either', 1), ('experienced', 1), ('novell', 1), ('administrator', 1), ('even', 1), ('includes', 1), ('detailed', 1), ('intro', 1), ('working', 1), ('suse', 1), ('related', 1), ('program', 1), ('rpm', 1), ('yast', 1), ('samba', 1), ('contains', 1), ('necessary', 1), ('information', 1), ('prepare', 1), ('cle', 1)]
[('application', 2), ('explains', 1), ('plan', 1), ('implement', 1), ('scalable', 1), ('design', 1), ('using', 1), ('net', 1), ('traditional', 1), ('service', 1), ('oriented', 1), ('soa', 1), ('model', 1), ('give', 1), ('detailed', 1), ('overview', 1), ('advice', 1), ('across', 1), ('whole', 1), ('breadth', 1), ('project', 1), ('platform', 1)]
[('small', 1), ('medium', 1), ('enterprise', 1), ('sme', 1), ('marketplace', 1), ('least', 1), ('supported', 1), ('business', 1), ('regard', 1), ('information', 1), ('technology', 1), ('home', 1), ('user', 1), ('extremely', 1), ('supportive', 1), ('publishing', 1), ('industry', 1), ('large', 1)]
[('web', 2), ('accessibility', 1), ('morally', 1), ('sound', 1), ('legal', 1), ('obligation', 1), ('wellvery', 1), ('large', 1), ('potential', 1), ('audience', 1), ('consisting', 1), ('developer', 1), ('business', 1), ('managersvery', 1), ('little', 1), ('competition', 1), ('book', 1)]
[('book', 2), ('teach', 1), ('create', 1), ('dynamic', 1), ('website', 1), ('using', 1), ('free', 1), ('product', 1), ('dotnetnuke', 1), ('visual', 1), ('web', 1), ('developer', 1), ('express', 1), ('beginner', 1), ('hobbyist', 1), ('necessarily', 1), ('deep', 1), ('understanding', 1), ('computer', 1)]
[('show', 2), ('reader', 2), ('build', 2), ('map', 2), ('first', 1), ('book', 1), ('cover', 1), ('mapserver', 1), ('dynamic', 1), ('using', 1), ('popular', 1), ('open', 1), ('source', 1), ('language', 1), ('including', 1), ('php', 1), ('perl', 1), ('python', 1), ('pull', 1), ('information', 1), ('mysql', 1), ('database', 1), ('data', 1), ('driven', 1), ('mapping', 1)]
[('digitally', 1), ('repair', 1), ('damaged', 1), ('print', 1), ('correct', 1), ('color', 1), ('shift', 1), ('even', 1), ('colorize', 1), ('black', 1), ('white', 1), ('image', 1), ('thoroughly', 1), ('revised', 1), ('book', 1), ('show', 1), ('retouch', 1), ('restore', 1), ('photo', 1), ('using', 1), ('date', 1), ('version', 1), ('gimp', 1), ('latest', 1), ('tool', 1)]
[('take', 1), ('advantage', 1), ('layering', 1), ('digital', 1), ('technique', 1), ('create', 1), ('stunning', 1), ('interactive', 1), ('composition', 1), ('suitable', 1), ('delivering', 1), ('instructional', 1), ('content', 1), ('presentation', 1), ('io', 1), ('android', 1), ('device', 1), ('book', 1), ('show', 1), ('move', 1), ('traditional', 1)]
[('framework', 2), ('explore', 1), ('alternative', 1), ('method', 1), ('front', 1), ('end', 1), ('application', 1), ('development', 1), ('without', 1), ('using', 1), ('third', 1), ('party', 1), ('library', 1), ('updated', 1), ('book', 1), ('provides', 1), ('required', 1), ('skill', 1), ('freedom', 1), ('consider', 1), ('approach', 1), ('choosing', 1)]
[('master', 1), ('query', 1), ('language', 1), ('revolutionizing', 1), ('website', 1), ('developed', 1), ('built', 1), ('book', 1), ('hand', 1), ('guide', 1), ('graphql', 1), ('teach', 1), ('use', 1), ('open', 1), ('source', 1), ('tool', 1), ('develop', 1), ('deploy', 1), ('application', 1), ('quickly', 1), ('minimal', 1)]
[('ai', 2), ('leverage', 1), ('power', 1), ('artificial', 1), ('intelligence', 1), ('drive', 1), ('growth', 1), ('success', 1), ('organization', 1), ('book', 1), ('thoroughly', 1), ('explores', 1), ('reason', 1), ('hard', 1), ('implement', 1), ('highlight', 1), ('need', 1), ('reconcile', 1), ('motivation', 1), ('goal', 1)]
[('electronic', 2), ('learn', 1), ('fundamental', 1), ('principle', 1), ('component', 1), ('simple', 1), ('easy', 1), ('follow', 1), ('text', 1), ('book', 1), ('anyone', 1), ('seeking', 1), ('master', 1), ('basic', 1), ('engineering', 1), ('completely', 1), ('avoiding', 1), ('unnecessary', 1), ('complex', 1), ('technical', 1), ('concept', 1)]
[('book', 1), ('provides', 1), ('detailed', 1), ('guidance', 1), ('around', 1), ('architecting', 1), ('deploying', 1), ('power', 1), ('bi', 1), ('reporting', 1), ('solution', 1), ('including', 1), ('help', 1), ('best', 1), ('practice', 1), ('sharing', 1), ('security', 1), ('find', 1), ('chapter', 1), ('dataflows', 1), ('shared', 1), ('datasets', 1), ('composite', 1), ('model', 1), ('directquery', 1)]
[('book', 1), ('introduces', 1), ('responsible', 1), ('ai', 1), ('framework', 1), ('guide', 1), ('process', 1), ('apply', 1), ('stage', 1), ('machine', 1), ('learning', 1), ('ml', 1), ('life', 1), ('cycle', 1), ('problem', 1), ('definition', 1), ('deployment', 1), ('reduce', 1), ('mitigate', 1), ('risk', 1), ('harm', 1), ('found', 1), ('artificial', 1)]
[('oracle', 2), ('new', 1), ('global', 1), ('data', 1), ('service', 1), ('come', 1), ('right', 1), ('place', 1), ('book', 1), ('show', 1), ('leverage', 1), ('power', 1), ('gd', 1), ('ensure', 1), ('runtime', 1), ('load', 1), ('balancing', 1), ('region', 1), ('affinity', 1), ('replication', 1), ('lag', 1), ('tolerance', 1), ('based', 1), ('workload', 1), ('routing', 1)]
[('spring', 2), ('osgi', 2), ('feature', 1), ('natural', 1), ('fit', 1), ('orthogonal', 1), ('open', 1), ('service', 1), ('gateway', 1), ('initiative', 1), ('packaging', 1), ('deployment', 1), ('versioning', 1), ('issue', 1), ('providing', 1), ('necessary', 1), ('foundation', 1), ('wire', 1)]
[('sharepoint', 3), ('user', 3), ('experience', 2), ('critical', 1), ('application', 1), ('architecture', 1), ('acceptance', 1), ('using', 1), ('tool', 1), ('available', 1), ('developer', 1), ('building', 1), ('show', 1), ('rebuild', 1), ('site', 1), ('taking', 1), ('way', 1)]
[('definitive', 2), ('netbeans', 2), ('platform', 2), ('guide', 1), ('thorough', 1), ('introduction', 1), ('covering', 1), ('major', 1), ('application', 1), ('programming', 1), ('interface', 1), ('apis', 1), ('detail', 1), ('relevant', 1), ('code', 1), ('example', 1), ('used', 1), ('throughout', 1), ('original', 1)]
[('ironpython', 1), ('represents', 1), ('unique', 1), ('direction', 1), ('developer', 1), ('interested', 1), ('working', 1), ('dynamic', 1), ('language', 1), ('within', 1), ('net', 1), ('framework', 1), ('whether', 1), ('looking', 1), ('develop', 1), ('application', 1), ('scratch', 1), ('add', 1), ('functionality', 1), ('maintainability', 1), ('existing', 1)]
[('window', 5), ('use', 2), ('best', 1), ('release', 1), ('yet', 1), ('easier', 1), ('fun', 1), ('worthwhile', 1), ('jump', 1), ('xp', 1), ('vista', 1), ('getting', 1), ('started', 1), ('written', 1), ('new', 1), ('experienced', 1), ('computer', 1), ('user', 1), ('alike', 1), ('help', 1)]
[('cloud', 2), ('speed', 2), ('ubuntu', 2), ('using', 2), ('welcome', 1), ('user', 1), ('ease', 1), ('application', 1), ('unite', 1), ('netbook', 1), ('connect', 1), ('world', 1), ('modem', 1), ('make', 1), ('call', 1), ('skype', 1), ('even', 1), ('change', 1), ('desktop', 1)]
[('economic', 1), ('crisis', 1), ('began', 1), ('long', 1), ('standing', 1), ('trend', 1), ('toward', 1), ('increased', 1), ('regulation', 1), ('becoming', 1), ('flood', 1), ('clamor', 1), ('improved', 1), ('enterprise', 1), ('risk', 1), ('management', 1), ('complexity', 1), ('multinational', 1), ('compliance', 1), ('present', 1), ('executive', 1)]
[('power', 2), ('user', 2), ('pc', 2), ('bsd', 2), ('book', 1), ('ultimate', 1), ('reference', 1), ('beginner', 1), ('free', 1), ('easy', 1), ('use', 1), ('operating', 1), ('system', 1), ('based', 1), ('freebsd', 1), ('existing', 1), ('learn', 1), ('look', 1), ('hood', 1), ('contribute', 1), ('global', 1), ('community', 1)]
[('browser', 3), ('silverlight', 1), ('lightweight', 1), ('plug', 1), ('free', 1), ('code', 1), ('traditional', 1), ('confines', 1), ('rule', 1), ('changing', 1), ('groundbreaking', 1), ('technology', 1), ('allows', 1), ('run', 1), ('rich', 1), ('client', 1), ('application', 1), ('right', 1), ('inside', 1), ('even', 1)]
[('workflow', 4), ('information', 2), ('worker', 2), ('glue', 1), ('bind', 1), ('process', 1), ('user', 1), ('artifact', 1), ('without', 1), ('island', 1), ('data', 1), ('potential', 1), ('office', 1), ('detail', 1), ('implement', 1), ('sharepoint', 1)]
[('problem', 2), ('silverlight', 1), ('recipe', 1), ('solution', 1), ('approach', 1), ('second', 1), ('edition', 1), ('practical', 1), ('companion', 1), ('developing', 1), ('rich', 1), ('interactive', 1), ('web', 1), ('application', 1), ('microsoft', 1), ('latest', 1), ('technology', 1), ('book', 1), ('tackle', 1), ('common', 1), ('scenario', 1), ('job', 1)]
[('web', 2), ('growing', 1), ('popularity', 1), ('application', 1), ('increasing', 1), ('user', 1), ('expectation', 1), ('high', 1), ('quality', 1), ('site', 1), ('design', 1), ('presentation', 1), ('functionality', 1), ('climate', 1), ('microsoft', 1), ('releasing', 1), ('silverlight', 1), ('third', 1), ('latest', 1), ('iteration', 1)]
[('without', 2), ('centos', 1), ('red', 1), ('hat', 1), ('price', 1), ('tag', 1), ('virtuous', 1), ('license', 1), ('belt', 1), ('tightened', 1), ('want', 1), ('o', 1), ('feature', 1), ('commercial', 1), ('linux', 1), ('variety', 1), ('pain', 1), ('definitive', 1), ('guide', 1)]
[('spring', 3), ('master', 1), ('fundamental', 1), ('framework', 1), ('learning', 1), ('real', 1), ('world', 1), ('experience', 1), ('expert', 1), ('course', 1), ('book', 1), ('learn', 1), ('leverage', 1), ('tandem', 1), ('kotlin', 1), ('programming', 1), ('language', 1), ('build', 1), ('complex', 1)]
[('time', 1), ('capitalize', 1), ('mastery', 1), ('cocoa', 1), ('pro', 1), ('objective', 1), ('design', 1), ('pattern', 1), ('io', 1), ('developed', 1), ('apps', 1), ('impressed', 1), ('performed', 1), ('ready', 1), ('jump', 1), ('development', 1), ('practice', 1), ('leave', 1), ('effective', 1)]
[('application', 2), ('web', 2), ('developing', 1), ('android', 1), ('mobile', 1), ('device', 1), ('using', 1), ('technology', 1), ('within', 1), ('reach', 1), ('capability', 1), ('html', 1), ('combined', 1), ('cs', 1), ('javascript', 1), ('developer', 1), ('opportunity', 1), ('develop', 1)]
[('sharepoint', 3), ('search', 2), ('pro', 1), ('give', 1), ('expert', 1), ('advice', 1), ('planning', 1), ('deploying', 1), ('customizing', 1), ('drawing', 1), ('author', 1), ('rsquo', 1), ('extensive', 1), ('experience', 1), ('working', 1), ('real', 1), ('world', 1), ('deployment', 1), ('book', 1), ('teach', 1)]
[('gimp', 3), ('digital', 2), ('graphic', 2), ('application', 2), ('absolute', 1), ('beginner', 1), ('give', 1), ('easy', 1), ('way', 1), ('use', 1), ('power', 1), ('enjoy', 1), ('photography', 1), ('without', 1), ('worrying', 1), ('feature', 1), ('powerful', 1), ('open', 1), ('source', 1), ('imaging', 1)]
[('database', 3), ('performance', 2), ('concern', 2), ('expert', 1), ('indexing', 1), ('oracle', 1), ('structure', 1), ('heart', 1), ('almost', 1), ('index', 1), ('system', 1), ('top', 1), ('information', 1), ('technology', 1), ('today', 1), ('administrator', 1), ('struggle', 1)]
[('sharepoint', 2), ('pro', 1), ('governance', 1), ('first', 1), ('book', 1), ('market', 1), ('focusing', 1), ('exclusively', 1), ('essential', 1), ('guidance', 1), ('necessary', 1), ('leveraging', 1), ('within', 1), ('organization', 1), ('intranet', 1), ('extranet', 1), ('internet', 1), ('environment', 1), ('maximum', 1), ('business', 1)]
[('web', 3), ('net', 2), ('programming', 2), ('application', 2), ('steve', 1), ('harris', 1), ('show', 1), ('current', 1), ('developer', 1), ('experience', 1), ('brand', 1), ('new', 1), ('model', 1), ('let', 1), ('immediately', 1), ('use', 1), ('asp', 1), ('create', 1), ('including', 1), ('form', 1), ('service', 1)]
[('development', 2), ('new', 1), ('platform', 1), ('wireless', 1), ('solution', 1), ('delivering', 1), ('video', 1), ('color', 1), ('game', 1), ('onto', 1), ('cell', 1), ('phone', 1), ('author', 1), ('rischpater', 1), ('show', 1), ('nbsp', 1), ('tool', 1), ('methodology', 1), ('required', 1), ('bring', 1), ('application', 1), ('carrier', 1)]
[('php', 3), ('web', 2), ('leading', 1), ('programming', 1), ('language', 1), ('developing', 1), ('dynamic', 1), ('application', 1), ('simplicity', 1), ('ease', 1), ('development', 1), ('large', 1), ('community', 1), ('expansive', 1), ('repository', 1), ('open', 1), ('source', 1), ('library', 1), ('make', 1), ('favorite', 1), ('designer', 1)]
[('client', 2), ('side', 2), ('web', 2), ('written', 1), ('professional', 1), ('software', 1), ('developer', 1), ('book', 1), ('map', 1), ('issue', 1), ('every', 1), ('application', 1), ('programmer', 1), ('need', 1), ('know', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('aspect', 1), ('development', 1), ('basic', 1), ('html', 1)]
[('code', 2), ('clear', 1), ('abundant', 1), ('example', 1), ('using', 1), ('real', 1), ('world', 1), ('written', 1), ('three', 1), ('experienced', 1), ('developer', 1), ('write', 1), ('networking', 1), ('living', 1), ('describes', 1), ('build', 1), ('client', 1), ('server', 1), ('explains', 1), ('tcp', 1), ('udp', 1), ('ip', 1), ('work', 1), ('show', 1), ('debug', 1)]
[('exchange', 3), ('window', 3), ('cover', 1), ('common', 1), ('administration', 1), ('task', 1), ('internet', 1), ('information', 1), ('server', 1), ('ii', 1), ('nt', 1), ('xp', 1), ('extensive', 1), ('example', 1), ('using', 1), ('management', 1), ('instrumentation', 1)]
[('site', 3), ('mckay', 1), ('member', 1), ('plone', 1), ('core', 1), ('development', 1), ('team', 1), ('defining', 1), ('expert', 1), ('voice', 1), ('open', 1), ('source', 1), ('author', 1), ('web', 1), ('zopezen', 1), ('org', 1), ('dedicated', 1), ('zope', 1), ('based', 1), ('application', 1), ('plug', 1), ('book', 1), ('python', 1), ('programmer', 1), ('growing', 1)]
[('offer', 1), ('simple', 1), ('universal', 1), ('cross', 1), ('platform', 1), ('solution', 1), ('commerce', 1), ('complex', 1), ('web', 1), ('database', 1), ('driven', 1), ('application', 1), ('resource', 1), ('working', 1), ('php', 1), ('developer', 1), ('want', 1), ('take', 1), ('skill', 1), ('next', 1), ('level', 1), ('includes', 1), ('case', 1), ('study', 1), ('user', 1)]
[('instructs', 1), ('use', 1), ('strut', 1), ('build', 1), ('mvc', 1), ('web', 1), ('application', 1), ('simplify', 1), ('html', 1), ('form', 1), ('construction', 1), ('validation', 1), ('provides', 1), ('information', 1), ('using', 1), ('object', 1), ('relationalbridge', 1), ('cut', 1), ('amount', 1), ('data', 1), ('access', 1), ('code', 1), ('necessary', 1), ('written', 1)]
[('author', 2), ('encapsulates', 1), ('knowledge', 1), ('experience', 1), ('foremost', 1), ('expert', 1), ('oracle', 1), ('development', 1), ('vast', 1), ('majority', 1), ('established', 1), ('successful', 1), ('cover', 1), ('landmark', 1), ('software', 1), ('technique', 1), ('invented', 1)]
[('java', 4), ('game', 3), ('programming', 3), ('book', 2), ('advanced', 1), ('teach', 1), ('create', 1), ('desktop', 1), ('internet', 1), ('computer', 1), ('using', 1), ('latest', 1), ('language', 1), ('technique', 1), ('whereas', 1), ('focus', 1), ('introductory', 1), ('material', 1), ('cover', 1)]
[('financial', 3), ('programming', 2), ('book', 2), ('practical', 1), ('hand', 1), ('programmer', 1), ('wanting', 1), ('apply', 1), ('problem', 1), ('industry', 1), ('explains', 1), ('aspect', 1), ('language', 1), ('frequently', 1), ('used', 1), ('writing', 1)]
[('potential', 2), ('business', 2), ('lt', 1), ('gt', 1), ('today', 1), ('fast', 1), ('paced', 1), ('digital', 1), ('landscape', 1), ('organization', 1), ('face', 1), ('increasing', 1), ('volume', 1), ('data', 1), ('hold', 1), ('immense', 1), ('driving', 1), ('success', 1), ('many', 1), ('struggle', 1), ('harness', 1), ('due', 1), ('lack', 1)]
[('ai', 2), ('book', 2), ('learn', 1), ('implement', 1), ('responsible', 1), ('model', 1), ('using', 1), ('python', 1), ('teach', 1), ('balance', 1), ('ethical', 1), ('challenge', 1), ('opportunity', 1), ('artificial', 1), ('intelligence', 1), ('start', 1), ('introduction', 1), ('fundamental', 1), ('special', 1)]
[('embark', 1), ('transformative', 1), ('journey', 1), ('exciting', 1), ('world', 1), ('roblox', 1), ('lua', 1), ('scripting', 1), ('comprehensive', 1), ('hand', 1), ('guide', 1), ('tailored', 1), ('game', 1), ('developer', 1), ('seasoned', 1), ('new', 1), ('book', 1), ('serf', 1), ('roadmap', 1), ('mastering', 1), ('art', 1), ('science', 1)]
[('data', 3), ('power', 3), ('bi', 2), ('excel', 2), ('beginning', 1), ('big', 1), ('learn', 1), ('solve', 1), ('business', 1), ('problem', 1), ('tapping', 1), ('microsoft', 1), ('import', 1), ('nosql', 1), ('sql', 1), ('database', 1), ('source', 1), ('create', 1), ('relational', 1), ('model', 1)]
[('mathematical', 3), ('analysis', 3), ('matlab', 2), ('example', 2), ('reference', 1), ('book', 1), ('present', 1), ('technique', 1), ('exercise', 1), ('resolved', 1), ('software', 1), ('purpose', 1), ('give', 1), ('function', 1), ('offered', 1)]
[('html', 3), ('video', 3), ('audio', 3), ('beginning', 1), ('medium', 1), ('second', 1), ('edition', 1), ('comprehensive', 1), ('introduction', 1), ('standard', 1), ('enables', 1), ('browser', 1), ('support', 1), ('element', 1), ('natively', 1), ('make', 1), ('easy', 1), ('web', 1), ('developer', 1), ('publish', 1)]
[('maker', 2), ('new', 1), ('shop', 1), ('class', 1), ('connects', 1), ('world', 1), ('hacker', 1), ('scientist', 1), ('engineer', 1), ('parent', 1), ('educator', 1), ('budding', 1), ('feel', 1), ('overwhelmed', 1), ('possible', 1), ('technology', 1), ('book', 1)]
[('data', 3), ('information', 2), ('architecture', 2), ('large', 2), ('amount', 2), ('enterprise', 1), ('new', 1), ('age', 1), ('big', 1), ('internet', 1), ('thing', 1), ('provides', 1), ('guidance', 1), ('designing', 1), ('accommodate', 1), ('increasingly', 1), ('massively', 1)]
[('react', 3), ('library', 2), ('pro', 1), ('teach', 1), ('successfully', 1), ('structure', 1), ('increasingly', 1), ('complex', 1), ('front', 1), ('end', 1), ('application', 1), ('interface', 1), ('book', 1), ('explores', 1), ('depth', 1), ('detailing', 1), ('additional', 1), ('tool', 1), ('ecosystem', 1), ('enabling', 1)]
[('developer', 2), ('microsoft', 1), ('introduced', 1), ('large', 1), ('number', 1), ('change', 1), ('way', 1), ('net', 1), ('framework', 1), ('operates', 1), ('familiar', 1), ('technology', 1), ('altered', 1), ('best', 1), ('practice', 1), ('replaced', 1), ('methodology', 1), ('adjusted', 1), ('many', 1), ('find', 1), ('hard', 1), ('keep', 1)]
[('cs', 2), ('new', 2), ('brings', 1), ('mass', 1), ('change', 1), ('addition', 1), ('improvement', 1), ('across', 1), ('range', 1), ('module', 1), ('web', 1), ('designer', 1), ('developer', 1), ('whole', 1), ('host', 1), ('technique', 1), ('sleeve', 1), ('working', 1), ('color', 1), ('font', 1), ('accurately', 1), ('using', 1), ('medium', 1)]
[('grail', 2), ('full', 1), ('stack', 1), ('framework', 1), ('aim', 1), ('greatly', 1), ('simplify', 1), ('task', 1), ('building', 1), ('serious', 1), ('web', 1), ('application', 1), ('jvm', 1), ('concept', 1), ('within', 1), ('interceptor', 1), ('tag', 1), ('libs', 1), ('groovy', 1), ('server', 1), ('page', 1), ('gsp', 1), ('make', 1), ('java', 1), ('community', 1)]
[('book', 2), ('apps', 2), ('apress', 1), ('leading', 1), ('android', 1), ('publisher', 1), ('continues', 1), ('provide', 1), ('hand', 1), ('practical', 1), ('teaching', 1), ('showing', 1), ('app', 1), ('developer', 1), ('build', 1), ('design', 1), ('including', 1), ('game', 1), ('built', 1), ('deployed', 1), ('various', 1)]
[('oracle', 2), ('performance', 2), ('database', 2), ('troubleshooting', 1), ('nd', 1), ('edition', 1), ('systematic', 1), ('guide', 1), ('diagnosing', 1), ('resolving', 1), ('problem', 1), ('backed', 1), ('application', 1), ('involving', 1), ('engine', 1), ('christian', 1), ('antognini', 1), ('brings', 1), ('decade', 1), ('half', 1), ('experience', 1)]
[('friend', 1), ('ed', 1)]
[('expert', 1), ('book', 1), ('getting', 1), ('best', 1), ('rsquo', 1), ('based', 1), ('principle', 1), ('write', 1), ('good', 1), ('high', 1), ('performance', 1), ('robust', 1), ('application', 1), ('need', 1), ('understand', 1), ('whats', 1), ('going', 1), ('deep', 1), ('hood', 1), ('already', 1), ('experienced', 1)]
[('typescript', 2), ('javascript', 2), ('revealed', 1), ('quick', 1), ('page', 1), ('guide', 1), ('anders', 1), ('hejlsberg', 1), ('new', 1), ('take', 1), ('brief', 1), ('fast', 1), ('paced', 1), ('introduction', 1), ('net', 1), ('web', 1), ('window', 1), ('application', 1), ('developer', 1), ('already', 1), ('familiar', 1), ('easily', 1)]
[('tm', 2), ('implementation', 1), ('solution', 1), ('highly', 1), ('complex', 1), ('mission', 1), ('critical', 1), ('project', 1), ('executed', 1), ('correctly', 1), ('good', 1), ('deliver', 1), ('number', 1), ('benefit', 1), ('organization', 1), ('term', 1), ('optimization', 1), ('greater', 1), ('efficiency', 1), ('reduced', 1), ('error', 1), ('improved', 1)]
[('php', 2), ('mysql', 2), ('started', 1), ('programming', 1), ('experience', 1), ('necessary', 1), ('fifth', 1), ('edition', 1), ('classic', 1), ('best', 1), ('seller', 1), ('includes', 1), ('detailed', 1), ('instruction', 1), ('configuring', 1), ('ultimate', 1), ('development', 1), ('environment', 1), ('major', 1), ('platform', 1), ('complete', 1)]
[('step', 2), ('cognitive', 2), ('follow', 1), ('hand', 1), ('approach', 1), ('building', 1), ('production', 1), ('ready', 1), ('enterprise', 1), ('virtual', 1), ('assistant', 1), ('using', 1), ('google', 1), ('dialogflow', 1), ('book', 1), ('provides', 1), ('overview', 1), ('various', 1), ('technology', 1), ('choice', 1), ('available', 1), ('take', 1), ('deep', 1), ('dive', 1)]
[('postgresql', 2), ('obtain', 1), ('skill', 1), ('need', 1), ('configure', 1), ('manage', 1), ('database', 1), ('book', 1), ('begin', 1), ('installing', 1), ('configuring', 1), ('server', 1), ('focusing', 1), ('system', 1), ('level', 1), ('parameter', 1), ('setting', 1), ('installation', 1), ('look', 1)]
[('introduced', 1), ('fascinating', 1), ('world', 1), ('inhabited', 1), ('professional', 1), ('software', 1), ('developer', 1), ('aimed', 1), ('non', 1), ('technical', 1), ('audience', 1), ('book', 1), ('aim', 1), ('de', 1), ('obfuscate', 1), ('jargon', 1), ('explain', 1), ('various', 1), ('activity', 1), ('coder', 1), ('undertake', 1), ('analyze', 1), ('specific', 1)]
[('ensemble', 3), ('learning', 3), ('technique', 2), ('use', 1), ('model', 1), ('improve', 1), ('machine', 1), ('result', 1), ('ai', 1), ('developer', 1), ('nbsp', 1), ('start', 1), ('beginning', 1), ('historical', 1), ('overview', 1), ('explains', 1), ('key', 1), ('needed', 1)]
[('artificial', 2), ('intelligence', 2), ('cover', 1), ('classical', 1), ('algorithm', 1), ('commonly', 1), ('used', 1), ('technique', 1), ('program', 1), ('agile', 1), ('application', 1), ('using', 1), ('pharo', 1), ('book', 1), ('take', 1), ('practical', 1), ('approach', 1), ('presenting', 1), ('implementation', 1), ('detail', 1), ('illustrate', 1)]
[('ipads', 2), ('master', 1), ('skill', 1), ('knowledge', 1), ('plan', 1), ('execute', 1), ('deployment', 1), ('suit', 1), ('school', 1), ('classroom', 1), ('book', 1), ('help', 1), ('evaluate', 1), ('various', 1), ('option', 1), ('deploying', 1), ('configuring', 1), ('tablet', 1), ('manually', 1), ('using', 1)]
[('learn', 2), ('developer', 2), ('lesson', 2), ('career', 2), ('mistake', 2), ('need', 1), ('succeed', 1), ('beyond', 1), ('code', 1), ('book', 1), ('supercharge', 1), ('sharing', 1), ('real', 1), ('nbsp', 1), ('nice', 1), ('others', 1), ('soft', 1)]
[('business', 2), ('professional', 1), ('looking', 1), ('understand', 1), ('impact', 1), ('future', 1), ('limitation', 1), ('blockchain', 1), ('need', 1), ('look', 1), ('revolutionary', 1), ('technology', 1), ('impacted', 1), ('economy', 1), ('unprecedented', 1), ('way', 1), ('within', 1), ('past', 1), ('decade', 1)]
[('oracle', 2), ('weblogic', 2), ('server', 2), ('use', 1), ('comprehensive', 1), ('guide', 1), ('study', 1), ('administration', 1), ('exam', 1), ('book', 1), ('unique', 1), ('introductory', 1), ('resource', 1), ('certification', 1), ('new', 1), ('fusion', 1), ('middleware', 1), ('administrator', 1), ('valuable', 1)]
[('master', 1), ('code', 1), ('appropriate', 1), ('numerical', 1), ('method', 1), ('computational', 1), ('modeling', 1), ('including', 1), ('syntax', 1), ('loop', 1), ('subroutine', 1), ('file', 1), ('nbsp', 1), ('hand', 1), ('book', 1), ('dive', 1), ('financial', 1), ('application', 1), ('using', 1), ('regression', 1), ('model', 1), ('product', 1), ('moment', 1), ('correlation', 1)]
[('linux', 2), ('basic', 2), ('electronics', 2), ('probably', 1), ('already', 1), ('know', 1), ('raspberry', 1), ('pi', 1), ('excellent', 1), ('teaching', 1), ('tool', 1), ('want', 1), ('teach', 1), ('python', 1), ('programming', 1), ('place', 1), ('start', 1), ('engineer', 1)]
[('graph', 2), ('developer', 1), ('place', 1), ('facebook', 1), ('twitter', 1), ('increasingly', 1), ('turned', 1), ('database', 1), ('manage', 1), ('highly', 1), ('connected', 1), ('big', 1), ('data', 1), ('short', 1), ('answer', 1), ('offer', 1), ('superior', 1), ('speed', 1), ('flexibility', 1), ('job', 1), ('done', 1), ('rsquo', 1), ('time', 1)]
[('oracle', 3), ('database', 2), ('rman', 1), ('absolute', 1), ('beginner', 1), ('gentle', 1), ('introduction', 1), ('use', 1), ('recovery', 1), ('manager', 1), ('software', 1), ('make', 1), ('backup', 1), ('restore', 1), ('part', 1), ('event', 1), ('data', 1), ('loss', 1), ('occurs', 1), ('often', 1), ('said', 1)]
[('code', 2), ('python', 2), ('learn', 1), ('write', 1), ('algorithm', 1), ('numerical', 1), ('computation', 1), ('data', 1), ('analysis', 1), ('using', 1), ('language', 1), ('look', 1), ('use', 1), ('recipe', 1), ('coding', 1), ('book', 1), ('handy', 1), ('cookbook', 1), ('reference', 1), ('whether', 1), ('maker', 1)]
[('android', 3), ('apps', 2), ('first', 1), ('running', 1), ('help', 1), ('plain', 1), ('english', 1), ('practical', 1), ('example', 1), ('idea', 1), ('app', 1), ('never', 1), ('programmed', 1), ('book', 1), ('nbsp', 1), ('absolute', 1)]
[('learn', 1), ('physic', 1), ('engineering', 1), ('geology', 1), ('concept', 1), ('usually', 1), ('seen', 1), ('high', 1), ('school', 1), ('college', 1), ('easy', 1), ('accessible', 1), ('style', 1), ('second', 1), ('volume', 1), ('address', 1), ('topic', 1), ('advanced', 1), ('science', 1), ('fair', 1), ('participant', 1), ('reading', 1)]
[('learn', 2), ('design', 2), ('asp', 2), ('net', 2), ('book', 1), ('teach', 1), ('essential', 1), ('knowledge', 1), ('required', 1), ('apply', 1), ('time', 1), ('proven', 1), ('solid', 1), ('principle', 1), ('object', 1), ('oriented', 1), ('important', 1), ('pattern', 1), ('core', 1), ('formerly', 1), ('application', 1), ('write', 1)]
[('compiler', 3), ('net', 2), ('api', 2), ('first', 1), ('book', 1), ('describe', 1), ('recent', 1), ('significant', 1), ('change', 1), ('compilation', 1), ('process', 1), ('demonstrate', 1), ('developer', 1), ('use', 1), ('new', 1), ('create', 1), ('compelling', 1), ('application', 1), ('open', 1), ('source', 1)]
[('apache', 6), ('learn', 1), ('use', 1), ('hadoop', 1), ('project', 1), ('including', 1), ('mapreduce', 1), ('hdfs', 1), ('hive', 1), ('hbase', 1), ('kafka', 1), ('mahout', 1), ('solr', 1), ('setting', 1), ('environment', 1), ('running', 1), ('sample', 1), ('application', 1), ('chapter', 1), ('book', 1)]
[('io', 2), ('create', 1), ('apps', 1), ('latest', 1), ('device', 1), ('start', 1), ('basic', 1), ('work', 1), ('way', 1), ('process', 1), ('downloading', 1), ('installing', 1), ('xcode', 1), ('sdk', 1), ('guide', 1), ('though', 1), ('creation', 1), ('first', 1), ('simple', 1)]
[('text', 2), ('derive', 1), ('useful', 1), ('insight', 1), ('data', 1), ('using', 1), ('python', 1), ('learn', 1), ('basic', 1), ('advanced', 1), ('concept', 1), ('including', 1), ('language', 1), ('syntax', 1), ('structure', 1), ('semantics', 1), ('focus', 1), ('algorithm', 1), ('technique', 1), ('classification', 1)]
[('programming', 2), ('vb', 2), ('net', 2), ('take', 1), ('reader', 1), ('completely', 1), ('stage', 1), ('project', 1), ('including', 1), ('analysis', 1), ('modeling', 1), ('development', 1), ('using', 1), ('object', 1), ('oriented', 1), ('technique', 1), ('student', 1), ('follower', 1), ('need', 1), ('comprehensive', 1), ('resource', 1)]
[('open', 2), ('source', 2), ('popular', 2), ('offering', 1), ('native', 1), ('window', 1), ('release', 1), ('postgresql', 1), ('poised', 1), ('garner', 1), ('considerable', 1), ('market', 1), ('share', 1), ('arena', 1), ('book', 1), ('show', 1), ('reader', 1), ('harness', 1), ('database', 1), ('php', 1), ('world', 1), ('web', 1), ('scripting', 1)]
[('vwd', 2), ('us', 1), ('real', 1), ('application', 1), ('based', 1), ('personal', 1), ('web', 1), ('starter', 1), ('kit', 1), ('compare', 1), ('contrast', 1), ('v', 1), ('net', 1), ('discus', 1), ('surmount', 1), ('difficulty', 1), ('many', 1), ('encounter', 1), ('moving', 1), ('another', 1), ('discussion', 1), ('consistently', 1), ('practical', 1)]
[('surviving', 2), ('industry', 2), ('crucial', 1), ('wisdom', 1), ('guide', 1), ('within', 1), ('programming', 1), ('provides', 1), ('raw', 1), ('material', 1), ('thinking', 1), ('smart', 1), ('today', 1), ('delivered', 1), ('wit', 1), ('aplomb', 1), ('make', 1), ('serious', 1), ('topic', 1), ('entertaining', 1), ('palatablete', 1)]
[('based', 2), ('best', 2), ('recognized', 2), ('oracle', 2), ('book', 2), ('proven', 1), ('seller', 1), ('written', 1), ('expert', 1), ('world', 1), ('fully', 1), ('revised', 1), ('covering', 1), ('bothfor', 1), ('version', 1), ('database', 1), ('widely', 1)]
[('flash', 3), ('book', 2), ('million', 1), ('developer', 1), ('worldwide', 1), ('support', 1), ('new', 1), ('version', 1), ('due', 1), ('later', 1), ('year', 1), ('date', 1), ('focus', 1), ('usable', 1), ('design', 1), ('mimic', 1), ('dan', 1), ('cederholm', 1), ('best', 1), ('selling', 1), ('web', 1), ('standard', 1)]
[('solution', 2), ('equity', 2), ('market', 2), ('hardcore', 1), ('net', 1), ('advanced', 1), ('distributed', 1), ('financial', 1), ('application', 1), ('fascinating', 1), ('insight', 1), ('operation', 1), ('challenge', 1), ('pose', 1), ('technology', 1), ('insider', 1), ('use', 1)]
[('net', 2), ('reader', 2), ('authored', 1), ('mark', 1), ('mamone', 1), ('steeply', 1), ('involved', 1), ('first', 1), ('beta', 1), ('release', 1), ('book', 1), ('introduces', 1), ('mono', 1), ('prominent', 1), ('open', 1), ('source', 1), ('implementation', 1), ('platform', 1), ('offer', 1), ('primer', 1), ('helping', 1)]
[('net', 2), ('successful', 1), ('asp', 1), ('developer', 1), ('need', 1), ('know', 1), ('apply', 1), ('vast', 1), ('array', 1), ('new', 1), ('functionality', 1), ('available', 1), ('latest', 1), ('release', 1), ('framework', 1), ('visual', 1), ('studio', 1), ('book', 1), ('immerse', 1), ('variety', 1), ('advanced', 1), ('topic', 1)]
[('sharepoint', 2), ('gaining', 1), ('recognition', 1), ('full', 1), ('fledged', 1), ('application', 1), ('server', 1), ('many', 1), ('feature', 1), ('enhancement', 1), ('specifically', 1), ('allow', 1), ('non', 1), ('developer', 1), ('create', 1), ('sophisticated', 1), ('intranet', 1), ('site', 1), ('release', 1), ('microsoft', 1)]
[('delayed', 1), ('train', 1), ('dip', 1), ('conversation', 1), ('early', 1), ('morning', 1), ('hour', 1), ('sleep', 1), ('moment', 1), ('feel', 1), ('overwhelming', 1), ('urge', 1), ('grab', 1), ('blackberry', 1), ('know', 1), ('answer', 1), ('yes', 1), ('look', 1)]
[('iphone', 2), ('ipad', 2), ('professional', 1), ('involved', 1), ('deploying', 1), ('company', 1), ('organization', 1), ('fellow', 1), ('employee', 1), ('eager', 1), ('use', 1), ('iphones', 1), ('ipads', 1), ('work', 1), ('book', 1), ('enterprise', 1)]
[('system', 2), ('many', 1), ('administrator', 1), ('mac', 1), ('need', 1), ('way', 1), ('manage', 1), ('machine', 1), ('configuration', 1), ('initial', 1), ('setup', 1), ('deployment', 1), ('apple', 1), ('managed', 1), ('preference', 1), ('known', 1), ('mcx', 1), ('documented', 1), ('often', 1), ('misunderstood', 1), ('sometimes', 1), ('outright', 1), ('unknown', 1)]
[('developer', 2), ('microsoft', 1), ('introduced', 1), ('large', 1), ('number', 1), ('change', 1), ('way', 1), ('net', 1), ('framework', 1), ('operates', 1), ('familiar', 1), ('technology', 1), ('altered', 1), ('best', 1), ('practice', 1), ('replaced', 1), ('methodology', 1), ('adjusted', 1), ('many', 1), ('find', 1), ('hard', 1), ('keep', 1)]
[('ipod', 1), ('touch', 1), ('music', 1), ('feature', 1), ('pda', 1), ('including', 1), ('email', 1), ('calendar', 1), ('google', 1), ('map', 1), ('app', 1), ('store', 1), ('even', 1), ('phone', 1), ('capability', 1), ('ability', 1), ('watch', 1), ('movie', 1), ('play', 1), ('favorite', 1), ('game', 1), ('packed', 1)]
[('business', 2), ('intelligence', 1), ('bi', 1), ('software', 1), ('code', 1), ('tool', 1), ('allow', 1), ('view', 1), ('different', 1), ('component', 1), ('using', 1), ('single', 1), ('visual', 1), ('platform', 1), ('making', 1), ('comprehending', 1), ('mountain', 1), ('data', 1), ('easier', 1), ('application', 1), ('include', 1), ('report', 1), ('analytics', 1)]
[('net', 2), ('six', 1), ('real', 1), ('application', 1), ('different', 1), ('type', 1), ('thoroughly', 1), ('dissected', 1), ('documented', 1), ('show', 1), ('programmer', 1), ('put', 1), ('together', 1), ('various', 1), ('feature', 1), ('complete', 1), ('solution', 1)]
[('new', 2), ('networked', 2), ('application', 2), ('cover', 1), ('low', 1), ('level', 1), ('networking', 1), ('python', 1), ('essential', 1), ('writing', 1), ('protocol', 1), ('many', 1), ('working', 1), ('example', 1), ('demonstrate', 1), ('concept', 1), ('action', 1), ('used', 1), ('starting', 1), ('point', 1), ('project', 1), ('security', 1)]
[('new', 2), ('project', 2), ('sql', 2), ('server', 2), ('essential', 1), ('book', 1), ('migration', 1), ('ensure', 1), ('designed', 1), ('database', 1), ('secure', 1), ('optimized', 1), ('data', 1), ('access', 1), ('strategy', 1), ('right', 1), ('start', 1), ('describes', 1)]
[('exam', 2), ('best', 1), ('selling', 1), ('author', 1), ('paul', 1), ('sanghera', 1), ('offer', 1), ('cohesive', 1), ('concise', 1), ('yet', 1), ('comprehensive', 1), ('coverage', 1), ('topic', 1), ('included', 1), ('sun', 1), ('certified', 1), ('programmer', 1), ('java', 1), ('cx', 1), ('laser', 1), ('sharp', 1), ('focus', 1), ('objective', 1), ('study', 1), ('guide', 1), ('go', 1)]
[('application', 2), ('xml', 1), ('de', 1), ('facto', 1), ('language', 1), ('communication', 1), ('within', 1), ('distributed', 1), ('whether', 1), ('internet', 1), ('corporate', 1), ('network', 1), ('matter', 1), ('disparate', 1), ('architecture', 1), ('almost', 1), ('everything', 1)]
[('site', 2), ('book', 1), ('teach', 1), ('need', 1), ('know', 1), ('create', 1), ('effective', 1), ('web', 1), ('business', 1), ('size', 1), ('packed', 1), ('useful', 1), ('tip', 1), ('practical', 1), ('example', 1), ('first', 1), ('taken', 1), ('planning', 1), ('stage', 1), ('including', 1), ('overall', 1), ('structure', 1), ('grouping', 1)]
[('application', 2), ('book', 1), ('author', 1), ('take', 1), ('centric', 1), ('approach', 1), ('development', 1), ('drive', 1), ('strut', 1), ('along', 1), ('ajax', 1), ('coverage', 1), ('rather', 1), ('way', 1), ('around', 1), ('chapter', 1), ('title', 1), ('include', 1), ('wrong', 1), ('web', 1), ('antipatterns', 1), ('explained', 1)]
[('oracle', 3), ('spatial', 2), ('database', 2), ('data', 2), ('pro', 1), ('show', 1), ('take', 1), ('advantage', 1), ('built', 1), ('feature', 1), ('set', 1), ('working', 1), ('location', 1), ('based', 1), ('book', 1), ('address', 1), ('special', 1), ('nature', 1), ('role', 1), ('professional', 1)]
[('asp', 5), ('net', 5), ('server', 2), ('control', 2), ('ajax', 2), ('pro', 1), ('reference', 1), ('serious', 1), ('developer', 1), ('understands', 1), ('benefit', 1), ('object', 1), ('oriented', 1), ('development', 1), ('want', 1), ('apply', 1), ('principle', 1)]
[('flex', 3), ('builder', 2), ('keep', 1), ('ahead', 1), ('game', 1), ('speed', 1), ('actionscript', 1), ('comprehensive', 1), ('guide', 1), ('expert', 1), ('flash', 1), ('trainer', 1), ('charles', 1), ('brown', 1), ('first', 1), ('take', 1), ('basic', 1), ('installation', 1), ('environment', 1)]
[('framework', 2), ('rise', 1), ('ruby', 1), ('rail', 1), ('signified', 1), ('huge', 1), ('shift', 1), ('build', 1), ('web', 1), ('application', 1), ('today', 1), ('fantastic', 1), ('growing', 1), ('community', 1), ('space', 1), ('another', 1), ('integrates', 1), ('seamlessly', 1), ('java', 1), ('thousand', 1)]
[('grail', 2), ('framework', 2), ('built', 2), ('technology', 2), ('unique', 1), ('popular', 1), ('web', 1), ('architecture', 1), ('ground', 1), ('leverage', 1), ('existing', 1), ('proven', 1), ('already', 1), ('advanced', 1), ('functionality', 1), ('key', 1)]
[('want', 3), ('ability', 1), ('manage', 1), ('document', 1), ('photo', 1), ('content', 1), ('web', 1), ('shell', 1), ('thousand', 1), ('dollar', 1), ('proprietary', 1), ('solution', 1), ('create', 1), ('online', 1), ('community', 1), ('hobby', 1), ('user', 1), ('group', 1), ('alone', 1)]
[('azure', 2), ('microsoft', 2), ('window', 1), ('next', 1), ('generation', 1), ('cloud', 1), ('computing', 1), ('operating', 1), ('system', 1), ('designed', 1), ('provide', 1), ('company', 1), ('new', 1), ('business', 1), ('opportunity', 1), ('migrate', 1), ('toward', 1), ('hosted', 1), ('service', 1), ('introducing', 1), ('provides', 1), ('information', 1)]
[('service', 5), ('azure', 2), ('cloud', 2), ('platform', 1), ('computing', 1), ('technology', 1), ('microsoft', 1), ('composed', 1), ('four', 1), ('core', 1), ('component', 1), ('window', 1), ('net', 1), ('sql', 1), ('live', 1), ('unique', 1), ('role', 1), ('functioning', 1)]
[('palm', 2), ('pre', 2), ('want', 2), ('hottest', 1), ('new', 1), ('device', 1), ('block', 1), ('cell', 1), ('phone', 1), ('nay', 1), ('personal', 1), ('digital', 1), ('everything', 1), ('cool', 1), ('kid', 1), ('hand', 1), ('use', 1), ('developer', 1)]
[('mac', 2), ('getting', 1), ('started', 1), ('o', 1), ('leopard', 1), ('simple', 1), ('fast', 1), ('way', 1), ('learn', 1), ('macintosh', 1), ('book', 1), ('start', 1), ('overview', 1), ('major', 1), ('change', 1), ('release', 1), ('operating', 1), ('system', 1), ('used', 1), ('going', 1)]
[('language', 3), ('recent', 1), ('year', 1), ('work', 1), ('put', 1), ('creating', 1), ('programming', 1), ('embody', 1), ('blend', 1), ('many', 1), ('admired', 1), ('characteristic', 1), ('predecessor', 1), ('provides', 1), ('developer', 1), ('speed', 1)]
[('discover', 1), ('ext', 1), ('j', 1), ('today', 1), ('powerful', 1), ('highly', 1), ('regarded', 1), ('javascript', 1), ('framework', 1), ('perhaps', 1), ('best', 1), ('set', 1), ('gui', 1), ('widget', 1), ('around', 1), ('whole', 1), ('host', 1), ('component', 1), ('make', 1), ('developing', 1), ('client', 1), ('side', 1), ('application', 1), ('breeze', 1), ('using', 1), ('pragmatic', 1)]
[('design', 3), ('pattern', 2), ('tier', 2), ('application', 2), ('explains', 1), ('case', 1), ('study', 1), ('improve', 1), ('individual', 1), ('show', 1), ('used', 1), ('conjunction', 1), ('net', 1), ('remoting', 1), ('across', 1), ('emphasis', 1)]
[('dan', 1), ('clark', 1), ('show', 1), ('beginning', 1), ('vb', 1), ('net', 1), ('programmer', 1), ('go', 1), ('architecting', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('solution', 1), ('aimed', 1), ('solving', 1), ('business', 1), ('problem', 1)]
[('cryptography', 2), ('mainly', 1), ('focus', 1), ('practical', 1), ('aspect', 1), ('involved', 1), ('implementing', 1), ('public', 1), ('key', 1), ('method', 1), ('rsa', 1), ('algorithm', 1), ('released', 1), ('patent', 1), ('protection', 1), ('give', 1), ('technical', 1), ('overview', 1)]
[('perhaps', 3), ('microsoft', 2), ('net', 2), ('probably', 1), ('hearing', 1), ('framework', 1), ('new', 1), ('feature', 1), ('ofvisual', 1), ('basic', 1), ('article', 1), ('magazine', 1), ('promotional', 1), ('material', 1), ('even', 1), ('played', 1)]
[('window', 1), ('version', 1)]
[('application', 2), ('microsoft', 1), ('visual', 1), ('studio', 1), ('lightswitch', 1), ('rapid', 1), ('deployment', 1), ('tool', 1), ('let', 1), ('power', 1), ('user', 1), ('administrator', 1), ('build', 1), ('data', 1), ('centric', 1), ('business', 1), ('desktop', 1), ('cloud', 1), ('web', 1), ('click', 1), ('code', 1), ('required', 1)]
[('edition', 2), ('cs', 2), ('building', 1), ('made', 1), ('first', 1), ('bestseller', 1), ('mastery', 1), ('advanced', 1), ('web', 1), ('standard', 1), ('solution', 1), ('second', 1), ('unites', 1), ('disparate', 1), ('information', 1), ('based', 1), ('design', 1), ('spread', 1), ('throughout', 1), ('internet', 1), ('definitive', 1), ('modern', 1), ('guide', 1), ('revised', 1)]
[('ipad', 2), ('different', 2), ('look', 1), ('act', 1), ('connects', 1), ('world', 1), ('yet', 1), ('personal', 1), ('worn', 1), ('book', 1), ('camera', 1), ('taking', 1), ('max', 1), ('written', 1), ('anyone', 1), ('quickly', 1), ('speed', 1), ('apple', 1)]
[('programming', 3), ('object', 2), ('oriented', 2), ('beginning', 1), ('brings', 1), ('modern', 1), ('world', 1), ('development', 1), ('master', 1), ('fundamental', 1), ('learn', 1), ('develop', 1), ('efficient', 1), ('reusable', 1), ('elegant', 1), ('code', 1), ('oop', 1)]
[('spring', 2), ('aspect', 2), ('release', 1), ('framework', 1), ('transformed', 1), ('virtually', 1), ('every', 1), ('java', 1), ('development', 1), ('including', 1), ('web', 1), ('application', 1), ('security', 1), ('oriented', 1), ('programming', 1), ('persistence', 1), ('messaging', 1), ('batch', 1), ('newer', 1), ('addition', 1), ('brings', 1)]
[('core', 3), ('data', 3), ('xcode', 2), ('io', 2), ('explains', 2), ('use', 2), ('advanced', 2), ('fully', 1), ('updated', 1), ('pro', 1), ('framework', 1), ('sdk', 1), ('using', 1), ('book', 1), ('simple', 1), ('technique', 1), ('covering', 1), ('common', 1)]
[('android', 2), ('tablet', 2), ('thought', 1), ('phone', 1), ('smart', 1), ('see', 1), ('new', 1), ('based', 1), ('honeycomb', 1), ('provide', 1), ('computing', 1), ('power', 1), ('need', 1), ('device', 1), ('light', 1), ('enough', 1), ('carry', 1), ('wherever', 1), ('go', 1)]
[('java', 3), ('language', 2), ('apis', 2), ('discussed', 2), ('include', 2), ('beginning', 1), ('guide', 1), ('version', 1), ('wide', 1), ('assortment', 1), ('platform', 1), ('new', 1), ('feature', 1), ('switch', 1), ('string', 1), ('try', 1), ('resource', 1), ('threading', 1)]
[('maker', 2), ('combine', 1), ('electronics', 1), ('hobbyist', 1), ('hacker', 1), ('garage', 1), ('mechanic', 1), ('kitchen', 1), ('table', 1), ('inventor', 1), ('tinkerer', 1), ('entrepreneur', 1), ('course', 1), ('playful', 1), ('creative', 1), ('expertise', 1), ('experimentation', 1), ('creating', 1), ('art', 1)]
[('game', 6), ('development', 2), ('everywhere', 1), ('mobile', 1), ('device', 1), ('website', 1), ('console', 1), ('pc', 1), ('timeless', 1), ('popular', 1), ('represent', 1), ('substantial', 1), ('segment', 1), ('market', 1), ('learn', 1), ('unity', 1), ('targeted', 1)]
[('java', 4), ('application', 3), ('websphere', 2), ('step', 2), ('server', 2), ('beginning', 1), ('provides', 1), ('guide', 1), ('creating', 1), ('installing', 1), ('client', 1), ('based', 1), ('using', 1), ('rapid', 1), ('development', 1)]
[('android', 3), ('rsquo', 2), ('ui', 2), ('design', 2), ('application', 1), ('developer', 1), ('chance', 1), ('using', 1), ('fixed', 1), ('scrolling', 1), ('swipe', 1), ('able', 1), ('cutting', 1), ('edge', 1), ('custom', 1), ('development', 1), ('project', 1), ('approach', 1)]
[('rail', 3), ('application', 2), ('web', 2), ('beginning', 1), ('book', 1), ('guide', 1), ('never', 1), ('programmed', 1), ('ruby', 1), ('built', 1), ('deployed', 1), ('learn', 1), ('combine', 1), ('component', 1), ('develop', 1)]
[('puppet', 4), ('management', 2), ('pro', 1), ('second', 1), ('edition', 1), ('updated', 1), ('depth', 1), ('guide', 1), ('installing', 1), ('using', 1), ('developing', 1), ('popular', 1), ('configuration', 1), ('tool', 1), ('provides', 1), ('way', 1), ('automate', 1), ('everything', 1), ('user', 1), ('server', 1)]
[('cloud', 3), ('powershell', 2), ('amazon', 2), ('service', 2), ('window', 2), ('pro', 1), ('web', 1), ('written', 1), ('specifically', 1), ('professional', 1), ('already', 1), ('know', 1), ('want', 1), ('learn', 1), ('host', 1), ('workload', 1), ('elastic', 1), ('compute', 1), ('ec', 1), ('offer', 1), ('information', 1)]
[('friend', 1), ('ed', 1)]
[('friend', 1), ('ed', 1)]
[('home', 1), ('theater', 1), ('enthusiast', 1), ('basic', 1), ('technical', 1), ('pc', 1), ('skill', 1), ('shown', 1), ('set', 1), ('htpc', 1), ('entertainment', 1), ('center', 1)]
[('friend', 1), ('ed', 1)]
[('java', 2), ('android', 1), ('development', 1), ('hot', 1), ('many', 1), ('programmer', 1), ('interested', 1), ('joining', 1), ('fun', 1), ('technology', 1), ('based', 1), ('first', 1), ('obtain', 1), ('solid', 1), ('grasp', 1), ('language', 1), ('foundational', 1), ('apis', 1), ('improve', 1), ('chance', 1)]
[('attack', 2), ('network', 2), ('cyber', 1), ('operation', 1), ('walk', 1), ('process', 1), ('set', 1), ('defend', 1), ('computer', 1), ('book', 1), ('focus', 1), ('real', 1), ('offer', 1), ('extensive', 1), ('coverage', 1), ('offensive', 1), ('defensive', 1), ('technique', 1), ('supported', 1), ('rich', 1)]
[('html', 3), ('web', 2), ('truth', 1), ('designer', 1), ('developer', 1), ('front', 1), ('end', 1), ('coder', 1), ('want', 1), ('speed', 1), ('book', 1), ('afraid', 1), ('point', 1), ('everyone', 1), ('get', 1), ('wrong', 1), ('new', 1), ('markup', 1), ('make', 1), ('mistake', 1)]
[('game', 4), ('development', 2), ('learn', 2), ('hugely', 1), ('popular', 1), ('across', 1), ('wide', 1), ('range', 1), ('platform', 1), ('ideal', 1), ('place', 1), ('start', 1), ('rsquo', 1), ('new', 1), ('way', 1), ('around', 1), ('universal', 1), ('building', 1), ('block', 1)]
[('page', 2), ('load', 2), ('important', 1), ('exciting', 1), ('trend', 1), ('web', 1), ('development', 1), ('recent', 1), ('year', 1), ('move', 1), ('towards', 1), ('single', 1), ('application', 1), ('spa', 1), ('instead', 1), ('clicking', 1), ('hyperlink', 1), ('waiting', 1), ('user', 1), ('site', 1)]
[('power', 3), ('high', 1), ('impact', 1), ('data', 1), ('visualization', 1), ('view', 1), ('map', 1), ('bi', 1), ('help', 1), ('take', 1), ('business', 1), ('intelligence', 1), ('delivery', 1), ('new', 1), ('level', 1), ('interactive', 1), ('engaging', 1), ('even', 1), ('fun', 1), ('driving', 1), ('commercial', 1), ('success', 1), ('sound', 1), ('decision', 1), ('making', 1), ('learn', 1)]
[('using', 3), ('problem', 3), ('statistic', 2), ('answer', 2), ('likely', 1), ('encounter', 1), ('variety', 1), ('book', 1), ('solution', 1), ('primer', 1), ('set', 1), ('data', 1), ('pose', 1)]
[('answer', 2), ('question', 2), ('deconstructed', 1), ('seemingly', 1), ('simply', 1), ('going', 1), ('exactly', 1), ('run', 1), ('code', 1), ('net', 1), ('framework', 1), ('dig', 1), ('deeper', 1), ('structure', 1), ('language', 1), ('onion', 1), ('skin', 1)]
[('hard', 2), ('visual', 1), ('studio', 1), ('sophisticated', 1), ('integrated', 1), ('development', 1), ('environment', 1), ('world', 1), ('today', 1), ('hundred', 1), ('feature', 1), ('several', 1), ('different', 1), ('edition', 1), ('available', 1), ('learn', 1), ('way', 1), ('around', 1), ('know', 1), ('whether', 1)]
[('data', 3), ('big', 2), ('many', 1), ('corporation', 1), ('finding', 1), ('size', 1), ('set', 1), ('outgrowing', 1), ('capability', 1), ('system', 1), ('store', 1), ('process', 1), ('becoming', 1), ('manage', 1), ('use', 1), ('traditional', 1), ('tool', 1), ('solution', 1), ('implementing', 1)]
[('chart', 2), ('create', 1), ('web', 1), ('jqplotshows', 1), ('convert', 1), ('data', 1), ('eye', 1), ('catching', 1), ('innovative', 1), ('animated', 1), ('highly', 1), ('interactive', 1), ('browser', 1), ('based', 1), ('book', 1), ('suitable', 1), ('developer', 1), ('experience', 1), ('level', 1), ('need', 1), ('love', 1), ('fast', 1)]
[('numerical', 2), ('method', 2), ('matlab', 2), ('working', 2), ('provides', 1), ('highly', 1), ('practical', 1), ('reference', 1), ('work', 1), ('assist', 1), ('anyone', 1), ('wide', 1), ('range', 1), ('technique', 1), ('introduced', 1), ('merit', 1), ('discussed', 1), ('fully', 1), ('code', 1), ('sample', 1), ('supplied', 1)]
[('guide', 2), ('application', 2), ('security', 2), ('manager', 1), ('web', 1), ('concise', 1), ('information', 1), ('packed', 1), ('risk', 1), ('every', 1), ('organization', 1), ('face', 1), ('written', 1), ('plain', 1), ('language', 1), ('guidance', 1), ('deal', 1), ('issue', 1), ('quickly', 1), ('effectively', 1)]
[('book', 1), ('foundation', 1), ('exploring', 1), ('functional', 1), ('first', 1), ('programming', 1), ('role', 1), ('future', 1), ('application', 1), ('development', 1), ('best', 1), ('selling', 1), ('introduction', 1), ('thoroughly', 1), ('updated', 1), ('version', 1), ('help', 1), ('learn', 1), ('language', 1)]
[('cloud', 2), ('platform', 2), ('book', 1), ('hand', 1), ('guide', 1), ('infrastructure', 1), ('provisioning', 1), ('configuration', 1), ('management', 1), ('using', 1), ('chef', 1), ('open', 1), ('source', 1), ('cross', 1), ('toolset', 1), ('customer', 1), ('joining', 1), ('microsoft', 1), ('azure', 1), ('week', 1)]
[('blog', 2), ('jekyll', 2), ('learn', 1), ('create', 1), ('using', 1), ('static', 1), ('site', 1), ('generator', 1), ('start', 1), ('simple', 1), ('template', 1), ('add', 1), ('new', 1), ('feature', 1), ('automate', 1), ('maintenance', 1), ('attach', 1), ('social', 1), ('sharing', 1), ('begin', 1), ('writing', 1), ('end', 1), ('creating', 1)]
[('development', 3), ('test', 3), ('application', 2), ('accelerate', 1), ('php', 1), ('using', 1), ('popular', 1), ('cakephp', 1), ('web', 1), ('framework', 1), ('unit', 1), ('testing', 1), ('short', 1), ('book', 1), ('show', 1), ('carry', 1), ('driven', 1), ('fixture', 1), ('model', 1), ('controller', 1)]
[('business', 4), ('sap', 3), ('analytics', 3), ('implementation', 2), ('focus', 1), ('gain', 1), ('key', 1), ('feature', 1), ('book', 1), ('includes', 1), ('example', 1), ('challenge', 1), ('faced', 1), ('solution', 1), ('implemented', 1), ('explains', 1)]
[('pi', 3), ('exactly', 1), ('book', 1), ('take', 1), ('tour', 1), ('hardware', 1), ('fantastic', 1), ('thing', 1), ('create', 1), ('innovative', 1), ('useful', 1), ('project', 1), ('start', 1), ('creating', 1), ('workstation', 1)]
[('scribe', 2), ('understandhow', 1), ('utilize', 1), ('workbench', 1), ('console', 1), ('adapter', 1), ('publisher', 1), ('othercomponents', 1), ('ensure', 1), ('rapid', 1), ('development', 1), ('toolkit', 1), ('willdrastically', 1), ('reduce', 1), ('workload', 1), ('timeline', 1), ('using', 1), ('insight', 1), ('learn', 1)]
[('java', 4), ('developer', 2), ('concise', 1), ('book', 1), ('empowers', 1), ('nbsp', 1), ('master', 1), ('complexity', 1), ('thread', 1), ('apis', 1), ('concurrency', 1), ('utility', 1), ('knowledge', 1), ('aid', 1), ('writing', 1), ('correct', 1), ('complex', 1), ('performing', 1), ('multithreaded', 1), ('application', 1)]
[('digital', 2), ('concise', 1), ('book', 1), ('build', 1), ('upon', 1), ('foundational', 1), ('concept', 1), ('midi', 1), ('synthesis', 1), ('sampled', 1), ('waveform', 1), ('cover', 1), ('key', 1), ('factor', 1), ('regarding', 1), ('data', 1), ('footprint', 1), ('optimization', 1), ('work', 1), ('process', 1), ('streaming', 1), ('versus', 1), ('captive', 1), ('audio', 1), ('new', 1), ('medium', 1), ('asset', 1)]
[('content', 2), ('learn', 1), ('backdrop', 1), ('cm', 1), ('fulfills', 1), ('role', 1), ('management', 1), ('system', 1), ('along', 1), ('install', 1), ('configure', 1), ('book', 1), ('teach', 1), ('create', 1), ('manage', 1), ('taxonomy', 1), ('user', 1), ('page', 1), ('layout', 1), ('menu', 1), ('best', 1), ('site', 1)]
[('printing', 3), ('design', 2), ('beginning', 1), ('nbsp', 1), ('full', 1), ('color', 1), ('go', 1), ('guide', 1), ('creating', 1), ('anything', 1), ('printer', 1), ('book', 1), ('demystify', 1), ('process', 1), ('providing', 1), ('proper', 1), ('workflow', 1), ('new', 1), ('eager', 1)]
[('app', 3), ('ecommerce', 2), ('parse', 2), ('io', 1), ('development', 1), ('us', 1), ('real', 1), ('world', 1), ('example', 1), ('teach', 1), ('build', 1), ('complete', 1), ('iphone', 1), ('powered', 1), ('popular', 1), ('powerful', 1), ('platform', 1), ('service', 1), ('baa', 1), ('provider', 1), ('comprehensive', 1), ('guide', 1)]
[('spring', 6), ('service', 2), ('jms', 2), ('batch', 2), ('exam', 1), ('topic', 1), ('covered', 1), ('include', 1), ('task', 1), ('scheduling', 1), ('remoting', 1), ('web', 1), ('framework', 1), ('restful', 1), ('mvc', 1), ('module', 1), ('jta', 1), ('transaction', 1), ('processing', 1)]
[('data', 2), ('age', 1), ('economy', 1), ('analytics', 1), ('recognized', 1), ('key', 1), ('differentiator', 1), ('company', 1), ('trying', 1), ('gain', 1), ('sustainable', 1), ('competitive', 1), ('advantage', 1), ('outperform', 1), ('peer', 1), ('complexity', 1), ('establishing', 1), ('analytical', 1), ('architecture', 1), ('due', 1)]
[('native', 4), ('io', 3), ('react', 2), ('development', 2), ('hand', 1), ('guide', 1), ('developing', 1), ('apps', 1), ('ease', 1), ('challenge', 1), ('status', 1), ('quo', 1), ('revolutionary', 1), ('component', 1), ('asynchronous', 1), ('execution', 1), ('unique', 1), ('method', 1), ('touch', 1)]
[('view', 4), ('table', 3), ('collection', 2), ('io', 2), ('bread', 1), ('butter', 1), ('apps', 1), ('create', 1), ('everything', 1), ('simplest', 1), ('list', 1), ('fully', 1), ('tricked', 1), ('user', 1), ('interface', 1), ('pro', 1), ('swift', 1), ('cover', 1)]
[('review', 2), ('winner', 1), ('computing', 1), ('th', 1), ('annual', 1), ('best', 1), ('category', 1), ('management', 1), ('nbsp', 1), ('tyler', 1), ('book', 1), ('concise', 1), ('reasonable', 1), ('full', 1), ('interesting', 1), ('practice', 1), ('including', 1), ('curious', 1), ('one', 1), ('might', 1), ('consider', 1), ('adopting', 1), ('become', 1), ('software', 1)]
[('exam', 5), ('book', 2), ('step', 2), ('comprehensive', 1), ('stop', 1), ('guide', 1), ('java', 1), ('se', 1), ('programmer', 1), ('ii', 1), ('iz', 1), ('salient', 1), ('feature', 1), ('include', 1), ('coverage', 1), ('topic', 1), ('full', 1), ('length', 1), ('mock', 1), ('practice', 1), ('question', 1), ('note', 1)]
[('syntax', 3), ('json', 2), ('object', 2), ('definition', 2), ('chapter', 2), ('compact', 1), ('reference', 1), ('cover', 1), ('parameter', 1), ('central', 1), ('learn', 1), ('used', 1), ('language', 1), ('logically', 1), ('organized', 1), ('topical', 1), ('getting', 1), ('advanced', 1)]
[('pi', 3), ('work', 2), ('make', 1), ('variety', 1), ('cool', 1), ('project', 1), ('using', 1), ('programming', 1), ('language', 1), ('scratch', 1), ('python', 1), ('experience', 1), ('necessary', 1), ('learn', 1), ('raspbian', 1), ('linux', 1), ('design', 1), ('create', 1), ('electronic', 1)]
[('concept', 2), ('web', 2), ('brief', 1), ('book', 1), ('easy', 1), ('digest', 1), ('introduction', 1), ('key', 1), ('development', 1), ('understand', 1), ('apply', 1), ('static', 1), ('dynamic', 1), ('website', 1), ('see', 1), ('html', 1), ('cs', 1), ('used', 1), ('create', 1), ('bone', 1)]
[('data', 2), ('make', 2), ('leverage', 1), ('power', 1), ('visualization', 1), ('business', 1), ('intelligence', 1), ('science', 1), ('quicker', 1), ('better', 1), ('decision', 1), ('use', 1), ('statistic', 1), ('mining', 1), ('compelling', 1), ('interactive', 1), ('dashboard', 1), ('nbsp', 1), ('book', 1), ('help', 1), ('familiar', 1), ('tableau', 1)]
[('threat', 2), ('kind', 2), ('discover', 1), ('prevalent', 1), ('cyber', 1), ('individual', 1), ('user', 1), ('computing', 1), ('device', 1), ('book', 1), ('teach', 1), ('defensive', 1), ('best', 1), ('practice', 1), ('state', 1), ('art', 1), ('tool', 1), ('available', 1), ('repel', 1), ('personal', 1)]
[('xml', 3), ('learn', 1), ('use', 1), ('integrate', 1), ('application', 1), ('using', 1), ('compact', 1), ('book', 1), ('guide', 1), ('help', 1), ('avoid', 1), ('pitfall', 1), ('dealing', 1), ('handling', 1), ('net', 1), ('platform', 1), ('present', 1), ('set', 1), ('challenge', 1)]
[('sensor', 2), ('design', 1), ('work', 1), ('nbsp', 1), ('need', 1), ('building', 1), ('competing', 1), ('lego', 1), ('mindstorms', 1), ('ev', 1), ('robotics', 1), ('find', 1), ('us', 1), ('new', 1), ('light', 1), ('gyro', 1), ('navigation', 1), ('helping', 1), ('follow', 1), ('line', 1), ('make', 1), ('turn', 1), ('consistently', 1)]
[('data', 2), ('structure', 2), ('learn', 1), ('lisp', 1), ('programming', 1), ('context', 1), ('including', 1), ('table', 1), ('function', 1), ('form', 1), ('expression', 1), ('typed', 1), ('pointer', 1), ('garbage', 1), ('collection', 1), ('application', 1), ('short', 1), ('primer', 1), ('contains', 1), ('careful', 1), ('description', 1)]
[('application', 2), ('learn', 1), ('use', 1), ('apis', 1), ('framework', 1), ('parallel', 1), ('concurrent', 1), ('haskell', 1), ('book', 1), ('show', 1), ('exploit', 1), ('multicore', 1), ('processor', 1), ('help', 1), ('parallelism', 1), ('order', 1), ('increase', 1), ('performance', 1), ('practical', 1)]
[('playground', 4), ('build', 3), ('learn', 2), ('test', 1), ('code', 1), ('syntax', 1), ('idea', 1), ('quickly', 1), ('even', 1), ('built', 1), ('others', 1), ('teach', 1), ('nbsp', 1), ('use', 1), ('mac', 1), ('ipad', 1)]
[('data', 3), ('design', 2), ('database', 1), ('logical', 1), ('modeling', 1), ('physical', 1), ('schema', 1), ('definition', 1), ('learn', 1), ('framework', 1), ('finally', 1), ('crack', 1), ('problem', 1), ('merging', 1), ('process', 1), ('model', 1), ('meaningful', 1), ('unified', 1), ('account', 1)]
[('network', 2), ('architecture', 2), ('go', 2), ('dive', 1), ('key', 1), ('topic', 1), ('data', 1), ('serialization', 1), ('application', 1), ('level', 1), ('protocol', 1), ('character', 1), ('set', 1), ('encoding', 1), ('book', 1), ('cover', 1), ('give', 1), ('overview', 1), ('language', 1), ('primer', 1), ('covering', 1)]
[('basic', 2), ('programming', 2), ('easy', 2), ('running', 1), ('fast', 1), ('using', 1), ('java', 1), ('example', 1), ('language', 1), ('short', 1), ('book', 1), ('get', 1), ('thinking', 1), ('programmer', 1), ('entertaining', 1), ('way', 1), ('modern', 1), ('made', 1), ('teach', 1), ('coding', 1), ('principle', 1)]
[('docker', 2), ('kubernetes', 2), ('rail', 2), ('nbsp', 2), ('learn', 1), ('use', 1), ('power', 1), ('deploy', 1), ('application', 1), ('easily', 1), ('efficiently', 1), ('deploying', 1), ('ec', 1), ('show', 1), ('set', 1), ('project', 1), ('push', 1), ('dockerhub', 1), ('manage', 1), ('service', 1)]
[('delve', 1), ('broadcom', 1), ('videocore', 1), ('gpu', 1), ('used', 1), ('raspberry', 1), ('pi', 1), ('master', 1), ('topic', 1), ('opengl', 1), ('e', 1), ('openmax', 1), ('along', 1), ('way', 1), ('learn', 1), ('dispmanx', 1), ('openvg', 1), ('gpgpu', 1), ('programming', 1), ('author', 1), ('jan', 1), ('newmarch', 1), ('bumped', 1), ('need', 1)]
[('learn', 2), ('nbsp', 2), ('magento', 2), ('ecommerce', 2), ('newest', 1), ('version', 1), ('platform', 1), ('work', 1), ('aimed', 1), ('entrepreneur', 1), ('marketer', 1), ('expert', 1), ('interested', 1), ('book', 1), ('accessible', 1), ('anyone', 1), ('want', 1), ('use', 1)]
[('swift', 2), ('step', 2), ('make', 1), ('apps', 1), ('agile', 1), ('sound', 1), ('short', 1), ('guide', 1), ('learn', 1), ('unit', 1), ('testing', 1), ('mocking', 1), ('continuous', 1), ('integration', 1), ('key', 1), ('ingredient', 1), ('running', 1), ('project', 1), ('book', 1), ('look', 1), ('write', 1)]
[('feature', 2), ('paradigm', 2), ('learn', 1), ('new', 1), ('document', 1), ('store', 1), ('mysql', 1), ('build', 1), ('application', 1), ('around', 1), ('mix', 1), ('best', 1), ('sql', 1), ('nosql', 1), ('database', 1), ('allow', 1), ('forced', 1), ('combine', 1), ('approach', 1), ('using', 1)]
[('indesign', 2), ('merge', 2), ('panel', 2), ('mail', 2), ('step', 2), ('harness', 1), ('power', 1), ('adobe', 1), ('data', 1), ('style', 1), ('whether', 1), ('creating', 1), ('custom', 1), ('out', 1), ('need', 1), ('familiarize', 1), ('powerful', 1), ('depth', 1), ('guide', 1), ('book', 1), ('show', 1)]
[('work', 2), ('ux', 2), ('understand', 1), ('modern', 1), ('professional', 1), ('necessary', 1), ('business', 1), ('collated', 1), ('year', 1), ('online', 1), ('talk', 1), ('experience', 1), ('short', 1), ('collection', 1), ('paraphrased', 1), ('discussion', 1), ('reveals', 1), ('underlying', 1), ('psychology', 1)]
[('iot', 2), ('quickly', 1), ('learn', 1), ('program', 1), ('microcontrollers', 1), ('device', 1), ('without', 1), ('lot', 1), ('study', 1), ('expense', 1), ('micropython', 1), ('controller', 1), ('support', 1), ('eliminate', 1), ('need', 1), ('programming', 1), ('language', 1), ('making', 1), ('creation', 1), ('application', 1)]
[('take', 1), ('right', 1), ('step', 1), ('breach', 1), ('oracle', 1), ('database', 1), ('environment', 1), ('becomes', 1), ('known', 1), ('suspected', 1), ('learn', 1), ('technique', 1), ('discerning', 1), ('attacker', 1), ('data', 1), ('saw', 1), ('might', 1), ('done', 1), ('nbsp', 1), ('book', 1), ('help', 1)]
[('apps', 2), ('app', 2), ('learn', 1), ('bare', 1), ('essential', 1), ('needed', 1), ('begin', 1), ('developing', 1), ('cross', 1), ('platform', 1), ('mobile', 1), ('using', 1), ('xamarin', 1), ('form', 1), ('easily', 1), ('deployed', 1), ('google', 1), ('play', 1), ('apple', 1), ('store', 1), ('gain', 1), ('insight', 1), ('architecture', 1), ('arrange', 1), ('design', 1)]
[('audio', 2), ('artist', 2), ('learn', 1), ('use', 1), ('thinking', 1), ('machine', 1), ('dream', 1), ('thmad', 1), ('realtime', 1), ('visualization', 1), ('engine', 1), ('ubuntu', 1), ('linux', 1), ('book', 1), ('bridge', 1), ('gap', 1), ('programmer', 1), ('developer', 1), ('inclination', 1), ('towards', 1), ('art', 1), ('profit', 1)]
[('framework', 3), ('entity', 2), ('core', 2), ('net', 2), ('database', 2), ('use', 1), ('valuable', 1), ('tool', 1), ('asp', 1), ('eliminate', 1), ('tedium', 1), ('around', 1), ('accessing', 1), ('data', 1), ('contain', 1), ('greatly', 1), ('simplifies', 1), ('access', 1), ('relational', 1), ('sql', 1)]
[('highly', 2), ('learn', 1), ('coding', 1), ('scratch', 1), ('engaging', 1), ('visual', 1), ('manner', 1), ('nbsp', 1), ('using', 1), ('vastly', 1), ('popular', 1), ('javascript', 1), ('programming', 1), ('library', 1), ('j', 1), ('skill', 1), ('acquire', 1), ('book', 1), ('transferable', 1), ('myriad', 1), ('industry', 1)]
[('use', 2), ('learn', 1), ('lightweight', 1), ('cs', 1), ('framework', 1), ('alternative', 1), ('build', 1), ('intuitive', 1), ('website', 1), ('book', 1), ('present', 1), ('five', 1), ('project', 1), ('example', 1), ('skeleton', 1), ('miligram', 1), ('ui', 1), ('kit', 1), ('material', 1), ('design', 1), ('lite', 1), ('susy', 1), ('nbsp', 1), ('nonsense', 1), ('introduction', 1), ('help', 1)]
[('flight', 2), ('airline', 1), ('supposed', 1), ('make', 1), ('experience', 1), ('booking', 1), ('easy', 1), ('trouble', 1), ('free', 1), ('reliable', 1), ('scheduling', 1), ('software', 1), ('break', 1), ('canceled', 1), ('customer', 1), ('walk', 1), ('head', 1), ('roll', 1), ('leigh', 1), ('freemark', 1), ('face', 1)]
[('benefit', 1), ('latest', 1), ('rendering', 1), ('tech', 1), ('development', 1), ('currently', 1), ('covered', 1), ('paper', 1), ('talk', 1), ('siggraph', 1), ('way', 1), ('developer', 1), ('technical', 1), ('artist', 1), ('using', 1), ('unity', 1), ('take', 1), ('advantage', 1), ('book', 1), ('start', 1), ('introducing', 1), ('shader', 1), ('programming', 1)]
[('software', 2), ('gain', 1), ('knowledge', 1), ('skill', 1), ('necessary', 1), ('improve', 1), ('embedded', 1), ('benefit', 1), ('author', 1), ('jacob', 1), ('beningo', 1), ('year', 1), ('developing', 1), ('reusable', 1), ('portable', 1), ('resource', 1), ('constrained', 1), ('microcontroller', 1), ('based', 1), ('system', 1), ('explore', 1)]
[('intelligence', 2), ('use', 1), ('machine', 1), ('learning', 1), ('oracle', 1), ('business', 1), ('enterprise', 1), ('edition', 1), ('obiee', 1), ('comprehensive', 1), ('bi', 1), ('solution', 1), ('book', 1), ('follows', 1), ('approach', 1), ('explain', 1), ('key', 1), ('step', 1), ('involved', 1), ('utilizing', 1), ('artificial', 1)]
[('develop', 1), ('apps', 1), ('iphone', 1), ('ipad', 1), ('apple', 1), ('wearable', 1), ('using', 1), ('visual', 1), ('studio', 1), ('mac', 1), ('nbsp', 1), ('learn', 1), ('set', 1), ('development', 1), ('environment', 1), ('emulator', 1), ('create', 1), ('adaptive', 1), ('user', 1), ('interface', 1), ('various', 1), ('platform', 1), ('expert', 1), ('dawid', 1), ('borycki', 1)]
[('java', 2), ('quickly', 1), ('gain', 1), ('insight', 1), ('necessary', 1), ('address', 1), ('multitude', 1), ('coding', 1), ('challenge', 1), ('using', 1), ('succinct', 1), ('reference', 1), ('guide', 1), ('short', 1), ('focused', 1), ('code', 1), ('example', 1), ('help', 1), ('master', 1), ('element', 1), ('module', 1), ('boxing', 1), ('unboxing', 1), ('find', 1)]
[('book', 2), ('take', 1), ('humorous', 1), ('slant', 1), ('programming', 1), ('practice', 1), ('manual', 1), ('reversing', 1), ('usual', 1), ('approach', 1), ('pretence', 1), ('teaching', 1), ('become', 1), ('world', 1), ('worst', 1), ('programmer', 1), ('generally', 1), ('cause', 1), ('chaos', 1), ('teach', 1), ('avoid', 1)]
[('create', 2), ('physical', 2), ('web', 2), ('data', 2), ('interface', 1), ('interact', 1), ('internet', 1), ('page', 1), ('arduino', 1), ('javascript', 1), ('interactive', 1), ('display', 1), ('connected', 1), ('device', 1), ('send', 1), ('receive', 1), ('take', 1), ('advantage', 1)]
[('image', 4), ('processing', 2), ('quickly', 1), ('obtain', 1), ('solution', 1), ('common', 1), ('java', 1), ('problem', 1), ('learn', 1), ('best', 1), ('practice', 1), ('understand', 1), ('everything', 1), ('opencv', 1), ('offer', 1), ('work', 1), ('jvm', 1), ('wrapper', 1), ('make', 1), ('easy', 1), ('run', 1), ('transformation', 1)]
[('starting', 2), ('guide', 2), ('app', 1), ('development', 1), ('company', 1), ('rewarding', 1), ('thing', 1), ('sends', 1), ('bankruptcy', 1), ('despair', 1), ('help', 1), ('along', 1), ('way', 1), ('nbsp', 1), ('book', 1), ('running', 1)]
[('build', 1), ('interactive', 1), ('database', 1), ('driven', 1), ('website', 1), ('php', 1), ('mysql', 1), ('mariadb', 1), ('focus', 1), ('book', 1), ('getting', 1), ('running', 1), ('quickly', 1), ('possible', 1), ('real', 1), ('world', 1), ('application', 1), ('first', 1), ('chapter', 1), ('set', 1), ('development', 1)]
[('extend', 2), ('market', 2), ('implement', 1), ('application', 1), ('programming', 1), ('interface', 1), ('api', 1), ('usability', 1), ('security', 1), ('availability', 1), ('reliability', 1), ('scalability', 1), ('company', 1), ('potentially', 1), ('generate', 1), ('revenue', 1), ('business', 1), ('know', 1), ('need', 1), ('digital', 1)]
[('service', 2), ('daily', 1), ('life', 1), ('intertwine', 1), ('artificial', 1), ('intelligence', 1), ('watching', 1), ('movie', 1), ('recommended', 1), ('entertainment', 1), ('streaming', 1), ('interacting', 1), ('customer', 1), ('chatbots', 1), ('autotagging', 1), ('photo', 1), ('friend', 1), ('social', 1), ('medium', 1), ('apps', 1), ('ai', 1)]
[('bitcoin', 2), ('node', 2), ('apps', 2), ('help', 2), ('compile', 1), ('run', 1), ('full', 1), ('lightning', 1), ('user', 1), ('friendly', 1), ('web', 1), ('abstract', 1), ('complexity', 1), ('book', 1), ('explains', 1), ('tool', 1), ('technique', 1), ('reader', 1), ('build', 1), ('bank', 1), ('banking', 1)]
[('digital', 2), ('assistant', 2), ('use', 1), ('book', 1), ('ramp', 1), ('development', 1), ('enterprise', 1), ('grade', 1), ('chatbots', 1), ('based', 1), ('real', 1), ('life', 1), ('experience', 1), ('explains', 1), ('everything', 1), ('need', 1), ('know', 1), ('start', 1), ('building', 1), ('da', 1), ('using', 1), ('oracle', 1)]
[('identity', 2), ('discover', 1), ('poor', 1), ('privilege', 1), ('management', 1), ('leveraged', 1), ('compromise', 1), ('account', 1), ('credential', 1), ('within', 1), ('organization', 1), ('learn', 1), ('role', 1), ('based', 1), ('assignment', 1), ('entitlement', 1), ('auditing', 1), ('strategy', 1), ('implemented', 1), ('mitigate', 1)]
[('game', 2), ('code', 2), ('make', 1), ('fun', 1), ('learning', 1), ('focused', 1), ('making', 1), ('rather', 1), ('teaching', 1), ('programming', 1), ('theory', 1), ('book', 1), ('likely', 1), ('see', 1), ('gravity', 1), ('affect', 1), ('missile', 1), ('trajectory', 1), ('instead', 1), ('efficient', 1), ('way', 1), ('search', 1)]
[('learn', 2), ('create', 1), ('stunning', 1), ('animated', 1), ('interactive', 1), ('chart', 1), ('using', 1), ('highcharts', 1), ('angular', 1), ('use', 1), ('build', 1), ('existing', 1), ('knowledge', 1), ('html', 1), ('cs', 1), ('javascript', 1), ('develop', 1), ('impressive', 1), ('dashboard', 1), ('work', 1), ('modern', 1), ('browser', 1)]
[('system', 2), ('book', 1), ('show', 1), ('build', 1), ('real', 1), ('time', 1), ('image', 1), ('processing', 1), ('way', 1), ('house', 1), ('automation', 1), ('find', 1), ('develop', 1), ('based', 1), ('small', 1), ('bit', 1), ('arm', 1), ('processor', 1), ('give', 1), ('complete', 1), ('control', 1), ('voice', 1)]
[('differential', 2), ('equation', 2), ('employ', 1), ('essential', 1), ('hand', 1), ('tool', 1), ('function', 1), ('matlab', 1), ('ordinary', 1), ('ode', 1), ('partial', 1), ('pde', 1), ('package', 1), ('explained', 1), ('demonstrated', 1), ('via', 1), ('interactive', 1), ('example', 1), ('case', 1), ('study', 1), ('book', 1)]
[('arduino', 2), ('work', 2), ('enough', 1), ('build', 1), ('project', 1), ('time', 1), ('actually', 1), ('learn', 1), ('thing', 1), ('book', 1), ('take', 1), ('use', 1), ('software', 1), ('hardware', 1), ('importantly', 1), ('show', 1)]
[('security', 2), ('understand', 1), ('common', 1), ('pitfall', 1), ('discover', 1), ('weak', 1), ('point', 1), ('organization', 1), ('data', 1), ('combat', 1), ('book', 1), ('includes', 1), ('best', 1), ('approach', 1), ('managing', 1), ('mobile', 1), ('device', 1), ('local', 1), ('network', 1), ('outside', 1)]
[('code', 2), ('syntax', 2), ('quick', 1), ('guide', 1), ('condensed', 1), ('reference', 1), ('popular', 1), ('programming', 1), ('language', 1), ('fully', 1), ('updated', 1), ('present', 1), ('essential', 1), ('organized', 1), ('format', 1), ('used', 1), ('handy', 1)]
[('sas', 2), ('website', 2), ('leverage', 1), ('power', 1), ('dart', 1), ('quickly', 1), ('create', 1), ('valid', 1), ('cs', 1), ('style', 1), ('use', 1), ('within', 1), ('short', 1), ('project', 1), ('oriented', 1), ('book', 1), ('simplifies', 1), ('process', 1), ('creating', 1), ('manipulating', 1), ('code', 1), ('browser', 1), ('online', 1), ('application', 1), ('using', 1)]
[('concept', 2), ('smartwatch', 2), ('design', 2), ('gain', 1), ('central', 1), ('editing', 1), ('animation', 1), ('correction', 1), ('using', 1), ('popular', 1), ('open', 1), ('source', 1), ('galaxy', 1), ('watch', 1), ('designer', 1), ('software', 1), ('package', 1), ('visual', 1), ('guide', 1), ('build', 1), ('upon', 1), ('essential', 1), ('decoration', 1), ('digital', 1)]
[('platform', 2), ('harness', 1), ('power', 1), ('quarkus', 1), ('supersonic', 1), ('subatomic', 1), ('cloud', 1), ('native', 1), ('java', 1), ('red', 1), ('hat', 1), ('book', 1), ('cover', 1), ('everything', 1), ('need', 1), ('know', 1), ('started', 1), ('engineered', 1), ('ground', 1), ('superior', 1), ('performance', 1)]
[('cybersecurity', 1), ('critical', 1), ('concern', 1), ('individual', 1), ('organization', 1), ('type', 1), ('size', 1), ('authentication', 1), ('access', 1), ('control', 1), ('first', 1), ('line', 1), ('defense', 1), ('help', 1), ('protect', 1), ('attacked', 1), ('book', 1), ('begin', 1), ('theoretical', 1)]
[('microservices', 2), ('use', 1), ('field', 1), ('guide', 1), ('transform', 1), ('enterprise', 1), ('combine', 1), ('cloud', 1), ('computing', 1), ('architecture', 1), ('recent', 1), ('surge', 1), ('popularity', 1), ('software', 1), ('development', 1), ('mainly', 1), ('due', 1), ('agility', 1), ('brings', 1), ('readiness', 1)]
[('ml', 2), ('net', 2), ('machine', 2), ('learning', 2), ('introduced', 1), ('new', 1), ('open', 1), ('source', 1), ('cross', 1), ('platform', 1), ('framework', 1), ('microsoft', 1), ('intended', 1), ('democratize', 1), ('enable', 1), ('many', 1), ('developer', 1), ('possible', 1), ('dive', 1), ('learn', 1), ('designed', 1), ('encapsulate', 1)]
[('typo', 2), ('cm', 2), ('learn', 1), ('make', 1), ('enterprise', 1), ('organize', 1), ('information', 1), ('digital', 1), ('asset', 1), ('communicate', 1), ('globally', 1), ('powerful', 1), ('multi', 1), ('site', 1), ('multilingual', 1), ('support', 1), ('book', 1), ('show', 1), ('backend', 1), ('frontend', 1), ('work', 1)]
[('database', 2), ('understand', 1), ('newest', 1), ('trend', 1), ('programming', 1), ('developer', 1), ('working', 1), ('java', 1), ('kotlin', 1), ('clojure', 1), ('jvm', 1), ('based', 1), ('language', 1), ('book', 1), ('introduces', 1), ('reactive', 1), ('relational', 1), ('connectivity', 1), ('dbc', 1), ('modern', 1), ('way', 1), ('connecting', 1), ('querying', 1)]
[('microcontrollers', 2), ('powerful', 2), ('first', 1), ('time', 1), ('enough', 1), ('programmed', 1), ('python', 1), ('landscape', 1), ('embedded', 1), ('system', 1), ('development', 1), ('changing', 1), ('becoming', 1), ('rise', 1), ('internet', 1), ('thing', 1), ('leading', 1)]
[('snowflake', 3), ('database', 2), ('cloud', 2), ('understand', 1), ('essential', 1), ('overall', 1), ('data', 1), ('book', 1), ('cover', 1), ('architecture', 1), ('different', 1), ('prior', 1), ('premise', 1), ('author', 1), ('discus', 1), ('insider', 1), ('perspective', 1)]
[('application', 2), ('learn', 1), ('fundamental', 1), ('serverless', 1), ('take', 1), ('advantage', 1), ('time', 1), ('tested', 1), ('amazon', 1), ('web', 1), ('service', 1), ('aws', 1), ('build', 1), ('scalable', 1), ('apps', 1), ('book', 1), ('show', 1), ('work', 1), ('key', 1), ('feature', 1), ('minimum', 1), ('code', 1), ('simple', 1), ('cli', 1)]
[('rl', 2), ('unlock', 1), ('full', 1), ('potential', 1), ('reinforcement', 1), ('learning', 1), ('crucial', 1), ('subfield', 1), ('artificial', 1), ('intelligence', 1), ('comprehensive', 1), ('guide', 1), ('book', 1), ('provides', 1), ('deep', 1), ('dive', 1), ('core', 1), ('concept', 1), ('mathematics', 1), ('practical', 1), ('algorithm', 1), ('helping', 1)]
[('threshold', 1), ('new', 1), ('area', 1), ('internet', 1), ('promise', 1), ('transform', 1), ('way', 1), ('engage', 1), ('financially', 1), ('take', 1), ('power', 1), ('data', 1), ('privacy', 1), ('back', 1), ('big', 1), ('corporation', 1), ('give', 1), ('individual', 1), ('decentralization', 1)]
[('raku', 3), ('gain', 1), ('skill', 1), ('begin', 1), ('developing', 1), ('application', 1), ('ground', 1), ('hand', 1), ('compact', 1), ('book', 1), ('includes', 1), ('foreword', 1), ('larry', 1), ('wall', 1), ('creator', 1), ('perl', 1), ('learn', 1), ('enough', 1), ('started', 1), ('building', 1), ('using', 1), ('gradual', 1), ('typing', 1)]
[('enterprise', 2), ('hardest', 1), ('task', 1), ('strategist', 1), ('architect', 1), ('face', 1), ('mapping', 1), ('form', 1), ('creates', 1), ('support', 1), ('making', 1), ('sense', 1), ('whole', 1), ('book', 1), ('introduces', 1), ('alternate', 1), ('approach', 1), ('create', 1), ('consistency', 1), ('every', 1), ('level', 1)]
[('web', 3), ('javascript', 2), ('engine', 1), ('behind', 1), ('every', 1), ('app', 1), ('solid', 1), ('knowledge', 1), ('essential', 1), ('modern', 1), ('developer', 1), ('pro', 1), ('apps', 1), ('give', 1), ('information', 1), ('need', 1), ('create', 1), ('professional', 1), ('optimized', 1), ('efficient', 1)]
[('android', 3), ('mobile', 2), ('development', 2), ('continues', 1), ('leading', 1), ('o', 1), ('platform', 1), ('driving', 1), ('today', 1), ('innovation', 1), ('apps', 1), ('ecosystem', 1), ('appears', 1), ('complex', 1), ('offer', 1), ('variety', 1), ('organized', 1), ('kit', 1), ('coming', 1)]
[('cs', 3), ('animation', 3), ('pro', 1), ('teach', 1), ('use', 1), ('fresh', 1), ('new', 1), ('syntax', 1), ('fully', 1), ('utilize', 1), ('exciting', 1), ('tool', 1), ('web', 1), ('design', 1), ('using', 1), ('cutting', 1), ('edge', 1), ('industry', 1), ('standard', 1), ('drawing', 1), ('best', 1), ('practice', 1), ('learn', 1), ('apply', 1)]
[('sql', 2), ('server', 2), ('pro', 1), ('practice', 1), ('anthology', 1), ('high', 1), ('end', 1), ('wisdom', 1), ('group', 1), ('accomplished', 1), ('database', 1), ('administrator', 1), ('quietly', 1), ('relentlessly', 1), ('pushing', 1), ('performance', 1), ('feature', 1), ('envelope', 1), ('microsoft', 1), ('emphasis', 1), ('upon', 1)]
[('edi', 2), ('building', 1), ('successful', 1), ('health', 1), ('care', 1), ('claim', 1), ('processing', 1), ('implementation', 1), ('biztalk', 1), ('server', 1), ('complex', 1), ('decision', 1), ('made', 1), ('around', 1), ('extract', 1), ('publish', 1), ('data', 1), ('map', 1), ('standard', 1), ('appropriately', 1), ('batch', 1), ('deliver', 1)]
[('avr', 3), ('practical', 1), ('microcontrollers', 1), ('learn', 1), ('use', 1), ('microcontroller', 1), ('make', 1), ('nifty', 1), ('project', 1), ('gadget', 1), ('start', 1), ('basic', 1), ('part', 1), ('setting', 1), ('development', 1), ('environment', 1), ('learning', 1), ('naked', 1)]
[('window', 2), ('application', 2), ('development', 2), ('winrt', 2), ('exciting', 1), ('topic', 1), ('day', 1), ('introduces', 1), ('api', 1), ('accessing', 1), ('operating', 1), ('system', 1), ('underlying', 1), ('hardware', 1), ('metro', 1), ('run', 1), ('accessed', 1), ('multiple', 1)]
[('sap', 3), ('abap', 2), ('business', 2), ('programming', 2), ('advanced', 1), ('application', 1), ('offer', 1), ('detailed', 1), ('tutorial', 1), ('numerous', 1), ('feature', 1), ('core', 1), ('platform', 1), ('used', 1), ('development', 1), ('entire', 1), ('software', 1), ('suite', 1), ('us', 1), ('hand', 1), ('oriented', 1), ('use', 1), ('case', 1)]
[('practical', 2), ('raspberry', 2), ('pi', 2), ('take', 1), ('quickly', 1), ('hardware', 1), ('software', 1), ('basic', 1), ('author', 1), ('brendan', 1), ('horan', 1), ('get', 1), ('started', 1), ('series', 1), ('fun', 1), ('project', 1), ('including', 1), ('simple', 1), ('temperature', 1), ('sensor', 1), ('medium', 1), ('center', 1)]
[('application', 3), ('mobile', 2), ('web', 2), ('oracle', 1), ('express', 1), ('action', 1), ('driven', 1), ('book', 1), ('taking', 1), ('hand', 1), ('required', 1), ('step', 1), ('building', 1), ('run', 1), ('phone', 1), ('tablet', 1), ('device', 1)]
[('enterprise', 4), ('management', 3), ('manager', 2), ('oracle', 2), ('em', 1), ('rsquo', 1), ('newest', 1), ('fully', 1), ('integrated', 1), ('product', 1), ('provides', 1), ('complete', 1), ('cloud', 1), ('lifecycle', 1), ('solution', 1), ('environment', 1), ('interface', 1), ('expert', 1)]
[('io', 2), ('apps', 2), ('icloud', 2), ('beginning', 1), ('cloud', 1), ('database', 1), ('development', 1), ('get', 1), ('started', 1), ('building', 1), ('use', 1), ('apple', 1), ('learn', 1), ('technique', 1), ('enable', 1), ('devise', 1), ('create', 1), ('interact', 1), ('server', 1), ('basic', 1)]
[('geospatial', 1), ('mapping', 1), ('application', 1), ('become', 1), ('hugely', 1), ('popular', 1), ('recent', 1), ('year', 1), ('smart', 1), ('phone', 1), ('tablet', 1), ('number', 1), ('snow', 1), ('balling', 1), ('trend', 1), ('look', 1), ('set', 1), ('continue', 1), ('future', 1), ('indeed', 1), ('true', 1), ('say', 1), ('today', 1), ('rsquo', 1), ('mobile', 1), ('world', 1)]
[('chart', 2), ('beginning', 1), ('javascript', 1), ('show', 1), ('convert', 1), ('data', 1), ('eye', 1), ('catching', 1), ('innovative', 1), ('animated', 1), ('highly', 1), ('interactive', 1), ('browser', 1), ('based', 1), ('book', 1), ('suitable', 1), ('developer', 1), ('experience', 1), ('level', 1), ('need', 1), ('love', 1), ('fast', 1)]
[('game', 4), ('html', 2), ('beginning', 1), ('createjs', 1), ('provides', 1), ('hand', 1), ('approach', 1), ('running', 1), ('comprehensive', 1), ('tool', 1), ('available', 1), ('canvas', 1), ('development', 1), ('whether', 1), ('brand', 1), ('new', 1), ('making', 1), ('experienced', 1), ('developer', 1)]
[('syntax', 3), ('reference', 3), ('quick', 1), ('condensed', 1), ('code', 1), ('programming', 1), ('language', 1), ('present', 1), ('essential', 1), ('organized', 1), ('format', 1), ('used', 1), ('handy', 1), ('find', 1), ('technical', 1), ('jargon', 1)]
[('edi', 2), ('building', 1), ('successful', 1), ('supply', 1), ('chain', 1), ('processing', 1), ('implementation', 1), ('biztalk', 1), ('server', 1), ('complex', 1), ('decision', 1), ('made', 1), ('around', 1), ('extract', 1), ('publish', 1), ('data', 1), ('map', 1), ('various', 1), ('standard', 1), ('appropriately', 1), ('batch', 1), ('deliver', 1)]
[('sql', 5), ('server', 3), ('recipe', 1), ('example', 1), ('based', 1), ('guide', 1), ('transact', 1), ('language', 1), ('core', 1), ('edition', 1), ('lightly', 1), ('updated', 1), ('provides', 1), ('ready', 1), ('implement', 1), ('solution', 1), ('common', 1), ('programming', 1)]
[('game', 3), ('web', 3), ('engine', 2), ('create', 2), ('step', 2), ('build', 1), ('teach', 1), ('develop', 1), ('based', 1), ('allowing', 1), ('wide', 1), ('variety', 1), ('online', 1), ('videogames', 1), ('played', 1), ('common', 1), ('browser', 1), ('chapter', 1), ('include', 1)]
[('linq', 3), ('programming', 2), ('represents', 1), ('paradigm', 1), ('shift', 1), ('developer', 1), ('used', 1), ('imperative', 1), ('object', 1), ('oriented', 1), ('style', 1), ('draw', 1), ('functional', 1), ('principle', 1), ('thinking', 1), ('address', 1), ('difference', 1), ('providing', 1), ('set', 1)]
[('matlab', 2), ('language', 2), ('high', 1), ('level', 1), ('environment', 1), ('numerical', 1), ('computation', 1), ('visualization', 1), ('programming', 1), ('using', 1), ('analyze', 1), ('data', 1), ('develop', 1), ('algorithm', 1), ('create', 1), ('model', 1), ('application', 1), ('tool', 1), ('built', 1), ('math', 1), ('function', 1)]
[('matlab', 2), ('language', 2), ('high', 1), ('level', 1), ('environment', 1), ('numerical', 1), ('computation', 1), ('visualization', 1), ('programming', 1), ('using', 1), ('analyze', 1), ('data', 1), ('develop', 1), ('algorithm', 1), ('create', 1), ('model', 1), ('application', 1), ('tool', 1), ('built', 1), ('math', 1), ('function', 1)]
[('professional', 1), ('development', 1), ('team', 1), ('brought', 1), ('edition', 1), ('objective', 1), ('absolute', 1), ('beginner', 1), ('taught', 1), ('thousand', 1), ('developer', 1), ('around', 1), ('world', 1), ('write', 1), ('popular', 1), ('iphone', 1), ('apps', 1), ('category', 1), ('app', 1), ('store', 1)]
[('web', 4), ('standard', 2), ('mastering', 1), ('html', 1), ('cs', 1), ('xml', 1), ('provides', 1), ('solution', 1), ('common', 1), ('design', 1), ('problem', 1), ('give', 1), ('deep', 1), ('understanding', 1), ('implemented', 1), ('improve', 1), ('site', 1), ('learn', 1), ('develop', 1)]
[('iphone', 2), ('team', 1), ('brought', 1), ('bestselling', 1), ('beginning', 1), ('development', 1), ('book', 1), ('taught', 1), ('world', 1), ('program', 1), ('back', 1), ('bringing', 1), ('definitive', 1), ('guide', 1), ('date', 1), ('apple', 1), ('latest', 1), ('greatest', 1), ('new', 1), ('io', 1), ('sdk', 1)]
[('oracle', 3), ('database', 2), ('transaction', 1), ('locking', 1), ('revealed', 1), ('provides', 1), ('needed', 1), ('information', 1), ('building', 1), ('scalable', 1), ('high', 1), ('concurrency', 1), ('application', 1), ('deploy', 1), ('short', 1), ('page', 1), ('book', 1), ('adapted', 1), ('expert', 1)]
[('apache', 2), ('cassandra', 2), ('database', 2), ('document', 2), ('beginning', 1), ('development', 1), ('introduces', 1), ('robust', 1), ('best', 1), ('performing', 1), ('nosql', 1), ('platform', 1), ('planet', 1), ('following', 1), ('json', 1), ('model', 1), ('specifically', 1), ('designed', 1)]
[('disaster', 4), ('response', 3), ('learn', 1), ('develop', 1), ('solution', 1), ('handle', 1), ('large', 1), ('small', 1), ('real', 1), ('world', 1), ('scenario', 1), ('illustrate', 1), ('importance', 1), ('dr', 1), ('planning', 1), ('take', 1), ('different', 1), ('approach', 1), ('plan', 1), ('rather', 1)]
[('upgrade', 3), ('oracle', 2), ('database', 2), ('learn', 1), ('nbsp', 1), ('available', 1), ('migration', 1), ('method', 1), ('detail', 1), ('move', 1), ('version', 1), ('become', 1), ('familiar', 1), ('best', 1), ('practice', 1), ('complete', 1), ('effective', 1), ('manner', 1), ('understand', 1)]
[('test', 2), ('code', 2), ('put', 1), ('motion', 1), ('practical', 1), ('example', 1), ('master', 1), ('driven', 1), ('development', 1), ('tdd', 1), ('acceptance', 1), ('testing', 1), ('swift', 1), ('book', 1), ('us', 1), ('pragmatic', 1), ('approach', 1), ('writing', 1), ('tested', 1), ('provides', 1), ('technique', 1), ('used', 1), ('retrofit', 1), ('legacy', 1)]
[('solution', 2), ('book', 2), ('use', 1), ('collection', 1), ('best', 1), ('practice', 1), ('tip', 1), ('assessing', 1), ('health', 1), ('provides', 1), ('detailed', 1), ('technique', 1), ('instruction', 1), ('quickly', 1), ('diagnose', 1), ('aspect', 1), ('azure', 1), ('cloud', 1), ('initial', 1), ('chapter', 1), ('introduce', 1)]
[('say', 2), ('information', 1), ('technologist', 1), ('increasingly', 1), ('made', 1), ('part', 1), ('global', 1), ('team', 1), ('confronting', 1), ('challenge', 1), ('communicating', 1), ('across', 1), ('variety', 1), ('linguistic', 1), ('cultural', 1), ('boundary', 1), ('book', 1), ('help', 1), ('know', 1), ('even', 1)]
[('xsa', 3), ('microservices', 2), ('sap', 2), ('hana', 2), ('book', 2), ('building', 2), ('build', 1), ('enterprise', 1), ('grade', 1), ('advanced', 1), ('model', 1), ('explains', 1), ('scalable', 1), ('apis', 1), ('benefit', 1), ('cover', 1), ('cloud', 1), ('foundry', 1), ('cf', 1), ('architecture', 1)]
[('api', 2), ('learn', 1), ('azure', 1), ('cosmos', 1), ('db', 1), ('mongodb', 1), ('hand', 1), ('sample', 1), ('advanced', 1), ('feature', 1), ('multi', 1), ('homing', 1), ('geo', 1), ('replication', 1), ('custom', 1), ('indexing', 1), ('ttl', 1), ('request', 1), ('unit', 1), ('ru', 1), ('consistency', 1), ('level', 1), ('partitioning', 1), ('chapter', 1), ('explains', 1)]
[('hybrid', 2), ('scenario', 2), ('sharepoint', 2), ('book', 2), ('design', 1), ('develop', 1), ('online', 1), ('server', 1), ('help', 1), ('build', 1), ('environment', 1), ('scratch', 1), ('cover', 1), ('basic', 1), ('advanced', 1), ('take', 1), ('setup', 1), ('configuration', 1)]
[('azure', 2), ('service', 2), ('book', 2), ('help', 2), ('explore', 1), ('artificial', 1), ('intelligence', 1), ('offering', 1), ('microsoft', 1), ('along', 1), ('implement', 1), ('ai', 1), ('feature', 1), ('various', 1), ('build', 1), ('organization', 1), ('customer', 1), ('start', 1), ('introducing', 1)]
[('syntax', 2), ('quick', 1), ('guide', 1), ('nbsp', 1), ('condensed', 1), ('code', 1), ('reference', 1), ('programming', 1), ('language', 1), ('updated', 1), ('latest', 1), ('feature', 1), ('net', 1), ('window', 1), ('present', 1), ('essential', 1), ('organized', 1), ('format', 1)]
[('powershell', 2), ('tip', 2), ('learn', 1), ('write', 1), ('better', 1), ('code', 1), ('via', 1), ('short', 1), ('example', 1), ('driven', 1), ('book', 1), ('cover', 1), ('make', 1), ('script', 1), ('faster', 1), ('easier', 1), ('following', 1), ('proven', 1), ('best', 1), ('practice', 1), ('written', 1), ('six', 1), ('time', 1), ('microsoft', 1), ('mvp', 1)]
[('design', 2), ('enterprise', 2), ('solution', 1), ('scratch', 1), ('allows', 1), ('migration', 1), ('legacy', 1), ('application', 1), ('begin', 1), ('planning', 1), ('phase', 1), ('guided', 1), ('stage', 1), ('selecting', 1), ('architecture', 1), ('framework', 1), ('fit', 1), ('join', 1)]
[('robotics', 2), ('learn', 1), ('use', 1), ('raspberry', 1), ('pi', 1), ('conjunction', 1), ('arduino', 1), ('build', 1), ('basic', 1), ('robot', 1), ('advanced', 1), ('capability', 1), ('getting', 1), ('started', 1), ('difficult', 1), ('book', 1), ('insightful', 1), ('rewarding', 1), ('introduction', 1)]
[('data', 3), ('sql', 2), ('server', 2), ('use', 1), ('guide', 1), ('impactful', 1), ('feature', 1), ('big', 1), ('cluster', 1), ('learn', 1), ('virtualization', 1), ('lake', 1), ('complete', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('machine', 1), ('learning', 1), ('ml', 1), ('platform', 1), ('within', 1)]
[('net', 2), ('system', 2), ('io', 2), ('nbsp', 2), ('take', 1), ('full', 1), ('advantage', 1), ('apis', 1), ('achieve', 1), ('fundamental', 1), ('operation', 1), ('produce', 1), ('better', 1), ('quality', 1), ('software', 1), ('start', 1), ('basic', 1), ('creating', 1), ('core', 1), ('custom', 1), ('library', 1), ('learn', 1), ('purpose', 1)]
[('azure', 3), ('devops', 3), ('deploy', 1), ('web', 1), ('application', 1), ('using', 1), ('tool', 1), ('book', 1), ('give', 1), ('solution', 1), ('real', 1), ('world', 1), ('cloud', 1), ('deployment', 1), ('scenario', 1), ('enable', 1), ('become', 1), ('adept', 1), ('work', 1), ('start', 1), ('seeing', 1), ('overview', 1)]
[('engine', 3), ('godot', 2), ('game', 2), ('unity', 1), ('developer', 1), ('looking', 1), ('switch', 1), ('quickly', 1), ('nonsense', 1), ('book', 1), ('guide', 1), ('mastering', 1), ('popular', 1), ('open', 1), ('source', 1), ('nbsp', 1), ('completely', 1), ('free', 1), ('creating', 1), ('high', 1), ('quality', 1)]
[('solidity', 2), ('level', 2), ('learn', 1), ('take', 1), ('existing', 1), ('knowledge', 1), ('ethereum', 1), ('next', 1), ('hone', 1), ('development', 1), ('skill', 1), ('become', 1), ('familiar', 1), ('syntax', 1), ('language', 1), ('working', 1), ('tested', 1), ('documented', 1), ('intermediate', 1)]
[('deep', 2), ('discover', 1), ('essential', 1), ('building', 1), ('block', 1), ('common', 1), ('powerful', 1), ('form', 1), ('belief', 1), ('net', 1), ('autoencoder', 1), ('take', 1), ('topic', 1), ('beyond', 1), ('current', 1), ('usage', 1), ('extending', 1), ('complex', 1), ('domain', 1), ('signal', 1), ('image', 1), ('processing', 1), ('application', 1), ('nbsp', 1)]
[('nbsp', 3), ('explore', 1), ('learn', 1), ('key', 1), ('building', 1), ('block', 1), ('microsoft', 1), ('azure', 1), ('service', 1), ('tool', 1), ('implementing', 1), ('disaster', 1), ('recovery', 1), ('solution', 1), ('premise', 1), ('cloud', 1), ('based', 1), ('application', 1), ('book', 1), ('go', 1), ('various', 1), ('aspect', 1)]
[('feature', 2), ('advanced', 2), ('different', 2), ('programming', 2), ('understand', 1), ('work', 1), ('important', 1), ('environment', 1), ('book', 1), ('teach', 1), ('fundamental', 1), ('incorporate', 1), ('technique', 1), ('using', 1), ('visual', 1)]
[('webpack', 2), ('learn', 1), ('use', 1), ('installation', 1), ('configuration', 1), ('without', 1), ('hassle', 1), ('complex', 1), ('example', 1), ('become', 1), ('popular', 1), ('module', 1), ('bundlers', 1), ('recent', 1), ('year', 1), ('widely', 1), ('used', 1), ('developer', 1), ('company', 1), ('organization', 1)]
[('dynamic', 2), ('discover', 1), ('common', 1), ('data', 1), ('service', 1), ('fit', 1), ('power', 1), ('platform', 1), ('learn', 1), ('set', 1), ('core', 1), ('customer', 1), ('engagement', 1), ('functionality', 1), ('build', 1), ('customized', 1), ('process', 1), ('using', 1), ('model', 1), ('driven', 1), ('apps', 1), ('book', 1), ('cover', 1)]
[('azure', 4), ('service', 2), ('book', 2), ('discover', 1), ('create', 1), ('cross', 1), ('platform', 1), ('apps', 1), ('android', 1), ('io', 1), ('uwp', 1), ('using', 1), ('xamarin', 1), ('form', 1), ('illustrates', 1), ('utilize', 1), ('cloud', 1), ('storage', 1), ('serving', 1), ('sql', 1), ('db', 1), ('data', 1), ('app', 1)]
[('sql', 4), ('data', 2), ('build', 1), ('core', 1), ('level', 1), ('competency', 1), ('recognize', 1), ('part', 1), ('query', 1), ('write', 1), ('simple', 1), ('statement', 1), ('knowledge', 1), ('essential', 1), ('anyone', 1), ('involved', 1), ('programming', 1), ('science', 1), ('management', 1), ('book', 1), ('cover', 1), ('feature', 1)]
[('game', 4), ('unity', 3), ('android', 2), ('development', 2), ('master', 1), ('art', 1), ('programming', 1), ('using', 1), ('engine', 1), ('book', 1), ('help', 1), ('understand', 1), ('basic', 1), ('concept', 1), ('end', 1), ('beginning', 1), ('knowledge', 1)]
[('pattern', 3), ('design', 2), ('hand', 1), ('experience', 1), ('gang', 1), ('four', 1), ('using', 1), ('see', 1), ('least', 1), ('real', 1), ('world', 1), ('scenario', 1), ('coding', 1), ('example', 1), ('complete', 1), ('implementation', 1), ('including', 1), ('output', 1), ('first', 1), ('part', 1)]
[('team', 2), ('step', 2), ('gain', 1), ('industry', 1), ('best', 1), ('practice', 1), ('planning', 1), ('implementing', 1), ('microsoft', 1), ('learn', 1), ('enable', 1), ('configure', 1), ('integrate', 1), ('user', 1), ('provisioning', 1), ('management', 1), ('monitoring', 1), ('book', 1), ('cover', 1), ('troubleshooting', 1), ('instruction', 1)]
[('team', 3), ('microsoft', 2), ('explore', 1), ('solution', 1), ('best', 1), ('practice', 1), ('tip', 1), ('workarounds', 1), ('plan', 1), ('design', 1), ('customize', 1), ('implement', 1), ('manage', 1), ('environment', 1), ('nbsp', 1), ('book', 1), ('start', 1), ('overview', 1), ('go', 1)]
[('create', 2), ('visualization', 2), ('asset', 1), ('history', 1), ('based', 1), ('game', 1), ('book', 1), ('cover', 1), ('fundamental', 1), ('principle', 1), ('required', 1), ('understand', 1), ('architectural', 1), ('historical', 1), ('location', 1), ('using', 1), ('digital', 1), ('tool', 1), ('explore', 1), ('aspect', 1), ('design', 1)]
[('game', 4), ('asset', 2), ('discover', 1), ('create', 1), ('simple', 1), ('environment', 1), ('blender', 1), ('modeling', 1), ('texturing', 1), ('placing', 1), ('scene', 1), ('nbsp', 1), ('export', 1), ('import', 1), ('look', 1), ('open', 1), ('source', 1), ('engine', 1), ('work', 1)]
[('set', 2), ('dynamic', 2), ('discover', 1), ('core', 1), ('customer', 1), ('engagement', 1), ('functionality', 1), ('learn', 1), ('build', 1), ('customized', 1), ('process', 1), ('top', 1), ('standard', 1), ('capability', 1), ('book', 1), ('start', 1), ('showing', 1), ('online', 1), ('system', 1)]
[('web', 2), ('reality', 2), ('nbsp', 2), ('gain', 1), ('depth', 1), ('knowledge', 1), ('immersive', 1), ('development', 1), ('create', 1), ('augmented', 1), ('ar', 1), ('virtual', 1), ('vr', 1), ('application', 1), ('inside', 1), ('browser', 1), ('using', 1), ('webxr', 1), ('api', 1), ('webgl', 1), ('three', 1), ('j', 1), ('frame', 1), ('project', 1), ('based', 1), ('book', 1), ('provide', 1)]
[('fiori', 3), ('application', 3), ('custom', 2), ('enterprise', 2), ('started', 1), ('building', 1), ('book', 1), ('teach', 1), ('design', 1), ('build', 1), ('deploy', 1), ('ready', 1), ('sap', 1), ('hana', 1), ('tip', 1), ('trick', 1), ('collected', 1), ('project', 1), ('using', 1)]
[('game', 1), ('developer', 1), ('use', 1), ('book', 1), ('gain', 1), ('basic', 1), ('knowledge', 1), ('programming', 1), ('artificial', 1), ('intelligence', 1), ('using', 1), ('unity', 1), ('bored', 1), ('learning', 1), ('theory', 1), ('underpinning', 1), ('ai', 1), ('instead', 1), ('learn', 1), ('experience', 1), ('practice', 1), ('complete', 1)]
[('tool', 2), ('understand', 1), ('learn', 1), ('nbsp', 1), ('skill', 1), ('needed', 1), ('use', 1), ('modern', 1), ('microsoft', 1), ('azure', 1), ('book', 1), ('discus', 1), ('practically', 1), ('apply', 1), ('industry', 1), ('help', 1), ('drive', 1), ('transformation', 1), ('organization', 1), ('knowledge', 1), ('data', 1), ('driven', 1)]
[('python', 3), ('code', 2), ('explore', 1), ('fundamental', 1), ('data', 1), ('analysis', 1), ('statistic', 1), ('case', 1), ('study', 1), ('using', 1), ('book', 1), ('show', 1), ('confidently', 1), ('write', 1), ('use', 1), ('various', 1), ('library', 1), ('function', 1), ('analyzing', 1), ('dataset', 1)]
[('azure', 3), ('build', 1), ('large', 1), ('scale', 1), ('mission', 1), ('critical', 1), ('hardened', 1), ('application', 1), ('cloud', 1), ('platform', 1), ('nd', 1), ('edition', 1), ('provides', 1), ('information', 1), ('newer', 1), ('feature', 1), ('linux', 1), ('extension', 1), ('supporting', 1), ('service', 1), ('hdinsight', 1), ('sql', 1), ('server', 1)]
[('enterprise', 2), ('architecture', 2), ('implement', 1), ('successful', 1), ('cost', 1), ('effective', 1), ('project', 1), ('book', 1), ('provides', 1), ('new', 1), ('approach', 1), ('developing', 1), ('based', 1), ('idea', 1), ('emergent', 1), ('behavior', 1), ('instead', 1), ('micromanaging', 1), ('system', 1), ('implementation', 1)]
[('common', 2), ('system', 2), ('execution', 2), ('learn', 1), ('fundamental', 1), ('inner', 1), ('working', 1), ('type', 1), ('ct', 1), ('virtual', 1), ('f', 1), ('language', 1), ('runtime', 1), ('clr', 1), ('relate', 1), ('base', 1), ('class', 1), ('library', 1), ('bcl', 1), ('perspective', 1)]
[('lora', 4), ('wireless', 2), ('nbsp', 2), ('create', 1), ('project', 1), ('non', 1), ('industrial', 1), ('use', 1), ('gain', 1), ('strong', 1), ('basic', 1), ('understanding', 1), ('technology', 1), ('wan', 1), ('lpwan', 1), ('start', 1), ('building', 1), ('first', 1), ('channel', 1), ('move', 1), ('various', 1)]
[('test', 3), ('android', 2), ('ui', 2), ('using', 2), ('espresso', 2), ('automated', 2), ('write', 1), ('user', 1), ('interface', 1), ('google', 1), ('cover', 1), ('major', 1), ('topic', 1), ('writing', 1), ('functional', 1), ('testing', 1), ('framework', 1), ('including', 1), ('different', 1), ('way', 1), ('running', 1)]
[('feature', 2), ('available', 2), ('become', 1), ('productive', 1), ('programmer', 1), ('leveraging', 1), ('newest', 1), ('book', 1), ('highlight', 1), ('new', 1), ('language', 1), ('use', 1), ('tool', 1), ('bootstrap', 1), ('sc', 1), ('jquery', 1), ('enhance', 1)]
[('function', 4), ('create', 2), ('azure', 2), ('durable', 2), ('highly', 1), ('scalable', 1), ('apps', 1), ('monitor', 1), ('production', 1), ('using', 1), ('book', 1), ('take', 1), ('statefulness', 1), ('cover', 1), ('basic', 1), ('binding', 1)]
[('nbsp', 2), ('foot', 1), ('wet', 1), ('developing', 1), ('visual', 1), ('novel', 1), ('take', 1), ('guided', 1), ('tour', 1), ('easy', 1), ('follow', 1), ('tutorial', 1), ('using', 1), ('three', 1), ('popular', 1), ('tool', 1), ('ren', 1), ('py', 1), ('tyranobuilder', 1), ('twine', 1), ('book', 1), ('us', 1), ('pronged', 1), ('approach', 1), ('fine', 1), ('art', 1)]
[('python', 2), ('refine', 1), ('programming', 1), ('technique', 1), ('approach', 1), ('become', 1), ('productive', 1), ('creative', 1), ('programmer', 1), ('book', 1), ('explores', 1), ('concept', 1), ('feature', 1), ('improve', 1), ('code', 1), ('understanding', 1), ('community', 1)]
[('azure', 3), ('security', 3), ('cloud', 2), ('secure', 1), ('manage', 1), ('infrastructure', 1), ('office', 1), ('saas', 1), ('based', 1), ('application', 1), ('device', 1), ('book', 1), ('focus', 1), ('covering', 1), ('aspect', 1), ('identity', 1), ('protection', 1), ('ad', 1), ('network', 1), ('storage', 1)]
[('microsoft', 2), ('component', 2), ('design', 1), ('build', 1), ('justify', 1), ('optimal', 1), ('iot', 1), ('footprint', 1), ('meet', 1), ('project', 1), ('need', 1), ('book', 1), ('describes', 1), ('common', 1), ('internet', 1), ('thing', 1), ('architecture', 1), ('focus', 1), ('azure', 1), ('relevant', 1), ('deploying', 1)]
[('use', 1), ('unity', 1), ('based', 1), ('example', 1), ('understand', 1), ('fundamental', 1), ('mathematical', 1), ('concept', 1), ('see', 1), ('applied', 1), ('building', 1), ('modern', 1), ('video', 1), ('game', 1), ('functionality', 1), ('gain', 1), ('theoretical', 1), ('foundation', 1), ('need', 1), ('know', 1), ('examine', 1), ('modify', 1)]
[('angular', 3), ('build', 2), ('material', 2), ('use', 2), ('application', 1), ('faster', 1), ('better', 1), ('typescript', 1), ('design', 1), ('learn', 1), ('web', 1), ('interface', 1), ('google', 1), ('open', 1), ('source', 1), ('library', 1), ('ready', 1), ('made', 1), ('easy', 1), ('component', 1), ('book', 1), ('us', 1)]
[('linux', 4), ('system', 2), ('volume', 2), ('become', 1), ('sysadmin', 1), ('expert', 1), ('user', 1), ('even', 1), ('previous', 1), ('experience', 1), ('learn', 1), ('manage', 1), ('complex', 1), ('ease', 1), ('nbsp', 1), ('three', 1), ('training', 1), ('course', 1), ('introduces', 1), ('operating', 1), ('general', 1)]
[('game', 2), ('step', 2), ('started', 1), ('creating', 1), ('video', 1), ('using', 1), ('unreal', 1), ('engine', 1), ('ue', 1), ('learning', 1), ('fundamental', 1), ('development', 1), ('hand', 1), ('tutorial', 1), ('learn', 1), ('design', 1), ('engaging', 1), ('environment', 1), ('build', 1), ('solid', 1), ('foundation', 1), ('complex', 1)]
[('spring', 2), ('framework', 2), ('started', 1), ('ecosystem', 1), ('guide', 1), ('working', 1), ('practice', 1), ('modern', 1), ('development', 1), ('author', 1), ('joseph', 1), ('ottinger', 1), ('andrew', 1), ('lombardi', 1), ('teach', 1), ('use', 1), ('build', 1), ('java', 1), ('based', 1), ('application', 1), ('web', 1)]
[('animation', 2), ('character', 2), ('module', 2), ('gain', 1), ('thorough', 1), ('understanding', 1), ('rigging', 1), ('using', 1), ('autodesk', 1), ('d', 1), ('max', 1), ('create', 1), ('realistic', 1), ('book', 1), ('split', 1), ('three', 1), ('subsequently', 1), ('divided', 1), ('chapter', 1), ('first', 1), ('foundation', 1)]
[('game', 3), ('amazon', 2), ('lumberyard', 2), ('development', 2), ('create', 1), ('stunning', 1), ('short', 1), ('amount', 1), ('time', 1), ('using', 1), ('free', 1), ('exciting', 1), ('platform', 1), ('book', 1), ('ground', 1), ('box', 1), ('tutorial', 1), ('programming', 1), ('lua', 1)]
[('discover', 1), ('shaders', 1), ('enhance', 1), ('game', 1), ('mesmerize', 1), ('player', 1), ('making', 1), ('graphic', 1), ('gameplay', 1), ('element', 1), ('realistic', 1), ('attractive', 1), ('book', 1), ('provides', 1), ('easy', 1), ('follow', 1), ('recipe', 1), ('show', 1), ('leverage', 1), ('unity', 1), ('shader', 1), ('graph', 1), ('create', 1)]
[('azure', 2), ('follow', 1), ('comprehensive', 1), ('guide', 1), ('provides', 1), ('deep', 1), ('understanding', 1), ('security', 1), ('principle', 1), ('best', 1), ('practice', 1), ('implementation', 1), ('strategy', 1), ('aligned', 1), ('nist', 1), ('cybersecurity', 1), ('framework', 1), ('csf', 1), ('book', 1), ('cover', 1), ('various', 1), ('topic', 1)]
[('sql', 2), ('data', 2), ('learn', 1), ('write', 1), ('query', 1), ('select', 1), ('analyze', 1), ('improve', 1), ('ability', 1), ('manipulate', 1), ('book', 1), ('help', 1), ('take', 1), ('existing', 1), ('skill', 1), ('next', 1), ('level', 1), ('author', 1), ('mark', 1), ('simon', 1), ('kick', 1), ('thing', 1), ('quick', 1), ('review', 1), ('basic', 1)]
[('power', 2), ('bi', 2), ('data', 2), ('reasonably', 1), ('competent', 1), ('user', 1), ('still', 1), ('struggling', 1), ('generate', 1), ('report', 1), ('truly', 1), ('tell', 1), ('story', 1), ('nbsp', 1), ('simply', 1), ('want', 1), ('extend', 1), ('knowledge', 1), ('exploring', 1), ('complex', 1), ('area', 1), ('visualization', 1)]
[('rust', 2), ('programming', 2), ('book', 1), ('practical', 1), ('comprehensive', 1), ('guide', 1), ('creating', 1), ('secure', 1), ('efficient', 1), ('linux', 1), ('container', 1), ('using', 1), ('language', 1), ('utilizes', 1), ('hand', 1), ('approach', 1), ('teach', 1), ('construct', 1), ('security', 1), ('feature', 1), ('application', 1)]
[('javascript', 3), ('web', 2), ('programming', 2), ('learn', 1), ('basic', 1), ('enhance', 1), ('page', 1), ('book', 1), ('focus', 1), ('modern', 1), ('encourages', 1), ('organized', 1), ('approach', 1), ('general', 1), ('nbsp', 1), ('developer', 1), ('explains', 1), ('foundational', 1)]
[('web', 2), ('design', 2), ('html', 2), ('cs', 2), ('need', 2), ('learn', 1), ('implement', 1), ('using', 1), ('book', 1), ('focus', 1), ('responsive', 1), ('leverage', 1), ('create', 1), ('interactive', 1), ('website', 1), ('work', 1), ('real', 1), ('world', 1), ('technology', 1), ('expert', 1)]
[('cognitive', 3), ('book', 2), ('azure', 2), ('use', 1), ('hand', 1), ('guide', 1), ('learn', 1), ('explore', 1), ('apis', 1), ('developed', 1), ('microsoft', 1), ('provided', 1), ('platform', 1), ('get', 1), ('started', 1), ('working', 1), ('service', 1), ('become', 1), ('familiar', 1)]
[('laravel', 2), ('dive', 1), ('diverse', 1), ('facet', 1), ('ecosystem', 1), ('comprehensive', 1), ('guide', 1), ('put', 1), ('fast', 1), ('track', 1), ('becoming', 1), ('expert', 1), ('development', 1), ('starting', 1), ('fundamental', 1), ('explore', 1), ('essential', 1), ('concept', 1), ('enabling', 1), ('grasp', 1)]
[('python', 2), ('book', 2), ('learn', 1), ('visual', 1), ('studio', 1), ('code', 1), ('implement', 1), ('feature', 1), ('coding', 1), ('debugging', 1), ('linting', 1), ('overall', 1), ('project', 1), ('management', 1), ('address', 1), ('custom', 1), ('scenario', 1), ('writing', 1), ('program', 1), ('framework', 1), ('django', 1), ('flask', 1), ('start', 1)]
[('implement', 1), ('support', 1), ('window', 1), ('always', 1), ('vpn', 1), ('successor', 1), ('microsoft', 1), ('popular', 1), ('directaccess', 1), ('book', 1), ('teach', 1), ('everything', 1), ('need', 1), ('know', 1), ('test', 1), ('adopt', 1), ('technology', 1), ('organization', 1), ('widely', 1), ('deployed', 1), ('around', 1), ('world', 1)]
[('powershell', 2), ('learn', 2), ('azure', 2), ('create', 1), ('complex', 1), ('script', 1), ('connect', 1), ('cloud', 1), ('service', 1), ('ad', 1), ('book', 1), ('help', 1), ('providing', 1), ('small', 1), ('cheat', 1), ('snippet', 1), ('combine', 1), ('write', 1), ('efficient', 1), ('effective', 1)]
[('tableau', 2), ('day', 2), ('learn', 1), ('working', 1), ('concrete', 1), ('example', 1), ('issue', 1), ('likely', 1), ('face', 1), ('work', 1), ('author', 1), ('shankar', 1), ('arul', 1), ('start', 1), ('teaching', 1), ('fundamental', 1), ('data', 1), ('analytics', 1), ('moving', 1), ('core', 1), ('concept', 1)]
[('blockchain', 3), ('technology', 2), ('deepen', 1), ('understanding', 1), ('develop', 1), ('application', 1), ('book', 1), ('provides', 1), ('thorough', 1), ('review', 1), ('distribution', 1), ('based', 1), ('system', 1), ('starting', 1), ('fundamental', 1), ('concept', 1), ('underlie', 1)]
[('game', 3), ('unity', 2), ('structure', 2), ('jump', 1), ('start', 1), ('development', 1), ('journey', 1), ('detailed', 1), ('review', 1), ('complete', 1), ('professionally', 1), ('built', 1), ('using', 1), ('visual', 1), ('studio', 1), ('gain', 1), ('invaluable', 1), ('experience', 1), ('code', 1), ('project', 1), ('centralization', 1), ('state', 1)]
[('security', 3), ('azure', 2), ('implement', 1), ('cloud', 1), ('tool', 1), ('configuration', 1), ('policy', 1), ('address', 1), ('need', 1), ('business', 1), ('government', 1), ('alike', 1), ('nbsp', 1), ('book', 1), ('introduces', 1), ('important', 1), ('solution', 1), ('available', 1), ('provides', 1)]
[('discover', 1), ('best', 1), ('practice', 1), ('transforming', 1), ('cloud', 1), ('infrastructure', 1), ('operation', 1), ('using', 1), ('agile', 1), ('scrum', 1), ('kanban', 1), ('scrumban', 1), ('spotify', 1), ('model', 1), ('book', 1), ('help', 1), ('gain', 1), ('depth', 1), ('understanding', 1), ('process', 1), ('apply', 1)]
[('nbsp', 2), ('dive', 1), ('nuance', 1), ('visual', 1), ('effect', 1), ('vfx', 1), ('design', 1), ('planning', 1), ('execution', 1), ('using', 1), ('autodesk', 1), ('maya', 1), ('book', 1), ('introduces', 1), ('method', 1), ('technique', 1), ('required', 1), ('first', 1), ('foray', 1), ('fx', 1), ('generation', 1), ('scratch', 1), ('start', 1)]
[('azure', 3), ('microservices', 2), ('service', 2), ('design', 1), ('implement', 1), ('scalable', 1), ('using', 1), ('kubernetes', 1), ('ak', 1), ('book', 1), ('help', 1), ('understand', 1), ('choose', 1), ('solution', 1), ('modernization', 1), ('use', 1), ('devops', 1)]
[('device', 2), ('step', 2), ('master', 1), ('vmware', 1), ('workstation', 1), ('create', 1), ('run', 1), ('virtual', 1), ('machine', 1), ('container', 1), ('kubernetes', 1), ('cluster', 1), ('simultaneously', 1), ('physical', 1), ('without', 1), ('reformat', 1), ('dual', 1), ('boot', 1), ('underlying', 1), ('book', 1), ('provides', 1), ('practical', 1), ('guide', 1)]
[('net', 3), ('asp', 2), ('core', 2), ('apis', 2), ('learn', 1), ('delivered', 1), ('latest', 1), ('version', 1), ('microsoft', 1), ('framework', 1), ('book', 1), ('show', 1), ('develop', 1), ('author', 1), ('anthony', 1), ('giretti', 1), ('reveal', 1), ('need', 1), ('know', 1), ('protocol', 1), ('rest', 1)]
[('book', 2), ('teach', 1), ('underlying', 1), ('concept', 1), ('large', 1), ('language', 1), ('model', 1), ('llm', 1), ('technology', 1), ('associated', 1), ('start', 1), ('introduction', 1), ('rise', 1), ('conversational', 1), ('ai', 1), ('chatgpt', 1), ('related', 1)]
[('spring', 3), ('framework', 2), ('build', 1), ('deploy', 1), ('secure', 1), ('boot', 1), ('based', 1), ('enterprise', 1), ('java', 1), ('application', 1), ('security', 1), ('book', 1), ('explores', 1), ('comprehensive', 1), ('set', 1), ('functionality', 1), ('implement', 1), ('industry', 1), ('standard', 1), ('authentication', 1)]
[('adobe', 2), ('illustrator', 2), ('tool', 2), ('full', 1), ('color', 1), ('book', 1), ('third', 1), ('three', 1), ('volume', 1), ('focus', 1), ('svg', 1), ('interactivity', 1), ('nbsp', 1), ('infographic', 1), ('made', 1), ('interactive', 1), ('audience', 1), ('additional', 1), ('application', 1)]
[('horizon', 3), ('vmware', 2), ('learn', 1), ('designing', 1), ('installing', 1), ('configuring', 1), ('managing', 1), ('core', 1), ('focus', 1), ('deliver', 1), ('virtual', 1), ('desktop', 1), ('using', 1), ('book', 1), ('allows', 1), ('follow', 1), ('complete', 1), ('process', 1), ('deploying', 1), ('cover', 1)]
[('book', 2), ('using', 2), ('game', 2), ('learn', 1), ('fundamental', 1), ('networking', 1), ('unity', 1), ('cover', 1), ('variety', 1), ('topic', 1), ('including', 1), ('accessing', 1), ('data', 1), ('restful', 1), ('apis', 1), ('local', 1), ('networked', 1), ('creating', 1), ('multiplayer', 1), ('online', 1), ('client', 1), ('server', 1), ('architecture', 1)]
[('creation', 2), ('game', 2), ('project', 1), ('based', 1), ('tutorial', 1), ('cover', 1), ('asset', 1), ('engine', 1), ('concept', 1), ('implementation', 1), ('learn', 1), ('pipeline', 1), ('using', 1), ('maya', 1), ('substance', 1), ('painter', 1), ('industry', 1), ('standard', 1), ('program', 1), ('used', 1), ('content', 1)]
[('multiplayer', 2), ('networking', 2), ('take', 1), ('deep', 1), ('dive', 1), ('creating', 1), ('large', 1), ('scale', 1), ('game', 1), ('unity', 1), ('using', 1), ('mirror', 1), ('variety', 1), ('powerful', 1), ('transport', 1), ('learn', 1), ('fundamental', 1), ('rpc', 1), ('command', 1), ('architecture', 1), ('dig', 1), ('deeper', 1)]
[('artwork', 2), ('take', 1), ('hand', 1), ('drawn', 1), ('illustration', 1), ('next', 1), ('level', 1), ('using', 1), ('various', 1), ('selection', 1), ('tool', 1), ('photoshop', 1), ('clean', 1), ('illustrator', 1), ('final', 1), ('refinement', 1), ('learn', 1), ('save', 1), ('vector', 1), ('image', 1), ('used', 1), ('web', 1), ('print', 1), ('even', 1)]
[('desktop', 4), ('design', 3), ('microsoft', 2), ('virtual', 2), ('build', 1), ('new', 1), ('nbsp', 1), ('service', 1), ('book', 1), ('offer', 1), ('modern', 1), ('framework', 1), ('methodology', 1), ('best', 1), ('practice', 1), ('deployment', 1), ('apps', 1), ('azure', 1), ('avd', 1)]
[('application', 3), ('nbsp', 2), ('complete', 1), ('overview', 1), ('offline', 1), ('installable', 1), ('business', 1), ('need', 1), ('reliable', 1), ('enable', 1), ('user', 1), ('access', 1), ('data', 1), ('spite', 1), ('bad', 1), ('network', 1), ('connection', 1), ('traditional', 1), ('website', 1), ('work', 1)]
[('open', 4), ('source', 3), ('using', 1), ('real', 1), ('life', 1), ('example', 1), ('learn', 1), ('project', 1), ('consumed', 1), ('explore', 1), ('nuance', 1), ('within', 1), ('different', 1), ('industry', 1), ('adopting', 1), ('nbsp', 1), ('technology', 1), ('gaining', 1), ('basic', 1), ('understanding', 1), ('standard', 1), ('understand', 1)]
[('started', 2), ('step', 2), ('blockchain', 1), ('development', 1), ('guide', 1), ('book', 1), ('take', 1), ('way', 1), ('installing', 1), ('requisite', 1), ('software', 1), ('writing', 1), ('testing', 1), ('deploying', 1), ('smart', 1), ('contract', 1), ('getting', 1), ('ethereum', 1), ('delf', 1), ('technology', 1)]
[('consensus', 3), ('blockchain', 2), ('distributed', 2), ('system', 2), ('book', 1), ('comprehensive', 1), ('guide', 1), ('understanding', 1), ('algorithm', 1), ('cover', 1), ('relevant', 1), ('model', 1), ('explore', 1), ('classical', 1), ('modern', 1)]
[('azure', 3), ('vmware', 3), ('nbsp', 2), ('learn', 1), ('essential', 1), ('design', 1), ('deployment', 1), ('skill', 1), ('utilize', 1), ('solution', 1), ('seamlessly', 1), ('move', 1), ('based', 1), ('workload', 1), ('datacenter', 1), ('integrate', 1), ('environment', 1), ('book', 1), ('teach', 1)]
[('book', 2), ('started', 1), ('window', 1), ('show', 1), ('set', 1), ('personalize', 1), ('pc', 1), ('order', 1), ('best', 1), ('experience', 1), ('document', 1), ('photo', 1), ('time', 1), ('online', 1), ('introduces', 1), ('new', 1), ('desktop', 1), ('start', 1), ('menu', 1), ('setting', 1)]
[('book', 2), ('build', 1), ('manage', 1), ('large', 1), ('estate', 1), ('use', 1), ('latest', 1), ('opensource', 1), ('management', 1), ('tool', 1), ('breakdown', 1), ('problem', 1), ('divided', 1), ('part', 1), ('focusing', 1), ('distinct', 1), ('aspect', 1), ('linux', 1), ('system', 1), ('administration', 1), ('nbsp', 1), ('begin', 1), ('reviewing', 1)]
[('nbsp', 3), ('knowledge', 2), ('book', 2), ('enhance', 1), ('become', 1), ('certified', 1), ('azure', 1), ('virtual', 1), ('desktop', 1), ('technology', 1), ('provides', 1), ('theory', 1), ('lab', 1), ('exercise', 1), ('check', 1), ('need', 1), ('prepare', 1), ('az', 1), ('exam', 1), ('start', 1), ('introduction', 1)]
[('analytic', 3), ('storing', 2), ('data', 2), ('meet', 1), ('challenge', 1), ('accessing', 1), ('sql', 1), ('server', 1), ('fast', 1), ('performant', 1), ('manner', 1), ('book', 1), ('illustrates', 1), ('columnstore', 1), ('index', 1), ('provide', 1), ('ideal', 1), ('solution', 1), ('lead', 1), ('faster', 1), ('performing', 1)]
[('book', 2), ('part', 2), ('understand', 1), ('power', 1), ('multi', 1), ('paradigm', 1), ('language', 1), ('help', 1), ('learn', 1), ('analyze', 1), ('harness', 1), ('functional', 1), ('aspect', 1), ('create', 1), ('better', 1), ('program', 1), ('divided', 1), ('start', 1), ('overview', 1)]
[('server', 2), ('rapid', 1), ('growth', 1), ('automation', 1), ('room', 1), ('data', 1), ('center', 1), ('day', 1), ('many', 1), ('administrator', 1), ('running', 1), ('around', 1), ('busily', 1), ('configuring', 1), ('maintaining', 1), ('gone', 1), ('replaced', 1), ('drove', 1), ('salt', 1), ('minion', 1), ('agent', 1), ('beavering', 1)]
[('hana', 3), ('bw', 2), ('modeling', 2), ('gain', 1), ('practical', 1), ('guidance', 1), ('implementing', 1), ('data', 1), ('model', 1), ('sap', 1), ('platform', 1), ('using', 1), ('modern', 1), ('concept', 1), ('walk', 1), ('various', 1), ('scenario', 1), ('exposing', 1), ('table', 1), ('view', 1), ('creating', 1), ('virtual', 1)]
[('azure', 3), ('function', 3), ('build', 2), ('serverless', 2), ('book', 2), ('solution', 1), ('using', 1), ('provides', 1), ('deep', 1), ('understanding', 1), ('highly', 1), ('scalable', 1), ('reliable', 1), ('application', 1), ('start', 1), ('introduction', 1)]
[('sharepoint', 2), ('online', 2), ('book', 1), ('comprehensive', 1), ('guide', 1), ('empower', 1), ('create', 1), ('robust', 1), ('digital', 1), ('workplace', 1), ('solution', 1), ('scratch', 1), ('using', 1), ('microsoft', 1), ('power', 1), ('platform', 1), ('revised', 1), ('edition', 1), ('incorporates', 1), ('latest', 1), ('feature', 1)]
[('application', 2), ('step', 2), ('explore', 1), ('world', 1), ('kubernetes', 1), ('learn', 1), ('concept', 1), ('needed', 1), ('develop', 1), ('deploy', 1), ('manage', 1), ('container', 1), ('orchestrator', 1), ('development', 1), ('guide', 1), ('designed', 1), ('developer', 1), ('support', 1), ('member', 1), ('aiming', 1)]
[('flow', 2), ('rpa', 2), ('understand', 1), ('basic', 1), ('learn', 1), ('implement', 1), ('guideline', 1), ('real', 1), ('life', 1), ('scenario', 1), ('including', 1), ('robotic', 1), ('process', 1), ('automation', 1), ('capability', 1), ('book', 1), ('cover', 1), ('evolution', 1), ('transformed', 1), ('full', 1), ('fledged', 1)]
[('wan', 4), ('sd', 3), ('cisco', 2), ('network', 2), ('explore', 1), ('rise', 1), ('transform', 1), ('existing', 1), ('agile', 1), ('efficient', 1), ('cost', 1), ('effective', 1), ('learning', 1), ('nbsp', 1), ('help', 1), ('understand', 1), ('development', 1), ('benefit', 1), ('modern', 1)]
[('application', 2), ('apply', 1), ('skill', 1), ('approach', 1), ('programming', 1), ('build', 1), ('real', 1), ('world', 1), ('using', 1), ('latest', 1), ('edition', 1), ('visual', 1), ('studio', 1), ('microsoft', 1), ('net', 1), ('chapter', 1), ('open', 1), ('introduction', 1), ('original', 1), ('written', 1)]
[('data', 3), ('end', 2), ('book', 1), ('exhaustive', 1), ('guide', 1), ('designing', 1), ('implementing', 1), ('solution', 1), ('azure', 1), ('cover', 1), ('process', 1), ('managing', 1), ('starting', 1), ('collection', 1), ('way', 1), ('transformation', 1), ('distribution', 1)]
[('design', 3), ('game', 3), ('insight', 2), ('video', 2), ('gain', 1), ('take', 1), ('develop', 1), ('first', 1), ('book', 1), ('offer', 1), ('peek', 1), ('behind', 1), ('scene', 1), ('find', 1), ('depth', 1), ('knowledge', 1), ('theory', 1), ('technical', 1), ('aspect', 1)]
[('programming', 2), ('game', 2), ('gamemaker', 2), ('master', 1), ('fundamental', 1), ('skill', 1), ('needed', 1), ('create', 1), ('computer', 1), ('book', 1), ('show', 1), ('use', 1), ('build', 1), ('publish', 1), ('cross', 1), ('platform', 1), ('chapter', 1), ('cover', 1), ('certain', 1), ('element', 1), ('including', 1)]
[('power', 3), ('automate', 2), ('data', 2), ('learn', 1), ('process', 1), ('visualize', 1), ('improve', 1), ('productivity', 1), ('using', 1), ('apps', 1), ('bi', 1), ('sharepoint', 1), ('form', 1), ('team', 1), ('book', 1), ('help', 1), ('build', 1), ('complete', 1), ('solution', 1), ('often', 1), ('involve', 1), ('storing', 1)]
[('open', 2), ('source', 2), ('solution', 2), ('book', 1), ('point', 1), ('way', 1), ('numerous', 1), ('free', 1), ('low', 1), ('cost', 1), ('software', 1), ('provide', 1), ('viable', 1), ('alternative', 1), ('paid', 1), ('counterpart', 1), ('pro', 1), ('freeware', 1), ('business', 1), ('second', 1), ('edition', 1)]
[('nbsp', 2), ('azure', 2), ('crisp', 1), ('practical', 1), ('hand', 1), ('guide', 1), ('moving', 1), ('mission', 1), ('critical', 1), ('workload', 1), ('book', 1), ('focus', 1), ('process', 1), ('technology', 1), ('aspect', 1), ('security', 1), ('coupled', 1), ('pattern', 1), ('oriented', 1), ('real', 1), ('world', 1), ('example', 1)]
[('sharepoint', 3), ('communication', 2), ('site', 2), ('understand', 1), ('create', 1), ('using', 1), ('home', 1), ('available', 1), ('microsoft', 1), ('revised', 1), ('edition', 1), ('cover', 1), ('nbsp', 1), ('new', 1), ('feature', 1), ('demonstrate', 1), ('effectively', 1), ('use', 1)]
[('blazor', 3), ('web', 2), ('side', 2), ('build', 1), ('develop', 1), ('application', 1), ('book', 1), ('cover', 1), ('server', 1), ('client', 1), ('along', 1), ('latest', 1), ('feature', 1), ('structure', 1), ('technology', 1), ('see', 1), ('ui', 1), ('framework', 1), ('based', 1), ('razor', 1)]
[('azure', 2), ('step', 2), ('build', 1), ('deploy', 1), ('application', 1), ('leveraging', 1), ('paas', 1), ('serverless', 1), ('service', 1), ('using', 1), ('devops', 1), ('github', 1), ('action', 1), ('book', 1), ('nbsp', 1), ('provides', 1), ('explanation', 1), ('essential', 1), ('concept', 1), ('practical', 1), ('example', 1), ('self', 1), ('assessment', 1), ('question', 1)]
[('learn', 1), ('simple', 1), ('yet', 1), ('powerful', 1), ('modern', 1), ('day', 1), ('technique', 1), ('used', 1), ('various', 1), ('gaming', 1), ('genre', 1), ('including', 1), ('casual', 1), ('puzzle', 1), ('strategy', 1), ('simulation', 1), ('action', 1), ('adventure', 1), ('role', 1), ('playing', 1), ('book', 1), ('pocket', 1), ('sized', 1), ('guide', 1), ('designing', 1), ('interesting', 1), ('engaging', 1)]
[('sap', 2), ('erp', 2), ('upgrade', 1), ('knowledge', 1), ('learn', 1), ('hana', 1), ('latest', 1), ('version', 1), ('system', 1), ('built', 1), ('intelligent', 1), ('technology', 1), ('including', 1), ('ai', 1), ('machine', 1), ('learning', 1), ('advanced', 1), ('analytics', 1), ('first', 1), ('edition', 1), ('book', 1), ('published', 1), ('nbsp', 1)]
[('gain', 1), ('skill', 1), ('image', 1), ('logo', 1), ('manipulation', 1), ('enhance', 1), ('design', 1), ('make', 1), ('appealing', 1), ('either', 1), ('portfolio', 1), ('client', 1), ('next', 1), ('graphic', 1), ('project', 1), ('adobe', 1), ('photoshop', 1), ('illustrator', 1), ('evolved', 1), ('new', 1), ('unique', 1), ('feature', 1)]
[('build', 2), ('learn', 1), ('write', 1), ('better', 1), ('automated', 1), ('test', 1), ('dramatically', 1), ('increase', 1), ('productivity', 1), ('fun', 1), ('book', 1), ('adventure', 1), ('designed', 1), ('individual', 1), ('reading', 1), ('collaborative', 1), ('workshop', 1), ('nbsp', 1)]
[('deep', 2), ('learning', 2), ('computer', 2), ('vision', 2), ('build', 1), ('system', 1), ('using', 1), ('python', 1), ('tensorflow', 1), ('kera', 1), ('opencv', 1), ('right', 1), ('within', 1), ('familiar', 1), ('environment', 1), ('microsoft', 1), ('window', 1), ('nbsp', 1), ('book', 1), ('start', 1), ('introduction', 1), ('tool', 1)]
[('immersive', 2), ('design', 2), ('visualization', 2), ('industry', 2), ('discover', 1), ('method', 1), ('technique', 1), ('required', 1), ('creating', 1), ('book', 1), ('proposes', 1), ('way', 1), ('oriented', 1), ('scratch', 1), ('includes', 1), ('fundamental', 1), ('creative', 1)]
[('ontology', 3), ('python', 2), ('use', 1), ('owlready', 1), ('module', 1), ('developed', 1), ('oriented', 1), ('programming', 1), ('start', 1), ('introduction', 1), ('refresher', 1), ('owl', 1), ('dive', 1), ('straight', 1), ('access', 1), ('create', 1), ('modify', 1)]
[('security', 3), ('cloud', 2), ('prevent', 1), ('destructive', 1), ('attack', 1), ('azure', 1), ('public', 1), ('infrastructure', 1), ('remove', 1), ('vulnerability', 1), ('instantly', 1), ('report', 1), ('readiness', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('guidance', 1), ('insider', 1), ('perspective', 1), ('cyber', 1)]
[('end', 2), ('discover', 1), ('capability', 1), ('pyspark', 1), ('application', 1), ('realm', 1), ('data', 1), ('science', 1), ('comprehensive', 1), ('guide', 1), ('hand', 1), ('picked', 1), ('example', 1), ('daily', 1), ('use', 1), ('case', 1), ('walk', 1), ('predictive', 1), ('model', 1), ('building', 1), ('cycle', 1), ('latest', 1)]
[('call', 3), ('company', 3), ('software', 2), ('action', 1), ('reverberating', 1), ('boardroom', 1), ('earnings', 1), ('technology', 1), ('conference', 1), ('department', 1), ('every', 1), ('nbsp', 1), ('make', 1), ('intuitive', 1), ('sense', 1), ('done', 1), ('right', 1), ('creates', 1), ('infinite', 1)]
[('team', 3), ('nbsp', 3), ('use', 2), ('explore', 1), ('microsoft', 1), ('principal', 1), ('tool', 1), ('node', 1), ('j', 1), ('npm', 1), ('yeoman', 1), ('gulp', 1), ('typescript', 1), ('react', 1), ('help', 1), ('develop', 1), ('better', 1), ('book', 1), ('cover', 1), ('core', 1), ('component', 1), ('case', 1), ('apps', 1), ('guide', 1)]
[('microsoft', 2), ('viva', 2), ('connection', 2), ('leverage', 1), ('collaboration', 1), ('capability', 1), ('employee', 1), ('experience', 1), ('platform', 1), ('build', 1), ('gateway', 1), ('digital', 1), ('workplace', 1), ('nbsp', 1), ('book', 1), ('help', 1), ('set', 1), ('via', 1), ('easy', 1), ('follow', 1), ('step', 1), ('extend', 1)]
[('sap', 2), ('hana', 2), ('cloud', 2), ('help', 2), ('develop', 2), ('nbsp', 2), ('book', 1), ('introduces', 1), ('understanding', 1), ('key', 1), ('feature', 1), ('including', 1), ('technology', 1), ('architecture', 1), ('data', 1), ('modeling', 1), ('nutshell', 1), ('skill', 1), ('needed', 1), ('use', 1), ('core', 1)]
[('sre', 2), ('concept', 2), ('gain', 1), ('foundational', 1), ('understanding', 1), ('learn', 1), ('basic', 1), ('architectural', 1), ('best', 1), ('practice', 1), ('deploying', 1), ('azure', 1), ('iaa', 1), ('paas', 1), ('microservices', 1), ('based', 1), ('resilient', 1), ('architecture', 1), ('book', 1), ('start', 1), ('base', 1), ('operation', 1)]
[('grasp', 1), ('fundamental', 1), ('digital', 1), ('audio', 1), ('work', 1), ('context', 1), ('video', 1), ('game', 1), ('including', 1), ('basic', 1), ('middleware', 1), ('fmod', 1), ('wwise', 1), ('review', 1), ('software', 1), ('apple', 1), ('logic', 1), ('garageband', 1), ('paul', 1), ('davis', 1), ('ardour', 1), ('many', 1), ('popular', 1)]
[('liferay', 3), ('osgi', 2), ('dxp', 2), ('explore', 1), ('development', 1), ('customization', 1), ('module', 1), ('choosing', 1), ('right', 1), ('underlying', 1), ('technology', 1), ('book', 1), ('start', 1), ('basic', 1), ('architecture', 1), ('understand', 1), ('thing', 1), ('work', 1)]
[('team', 3), ('learn', 1), ('understand', 1), ('microsoft', 1), ('functionality', 1), ('potential', 1), ('issue', 1), ('tool', 1), ('available', 1), ('troubleshoot', 1), ('book', 1), ('provides', 1), ('complete', 1), ('overview', 1), ('phone', 1), ('system', 1), ('pstn', 1), ('connectivity', 1), ('call', 1), ('routing', 1), ('quality', 1), ('troubleshooting', 1)]
[('web', 2), ('create', 1), ('nbsp', 1), ('rich', 1), ('dynamic', 1), ('application', 1), ('azure', 1), ('cloud', 1), ('platform', 1), ('using', 1), ('static', 1), ('development', 1), ('technique', 1), ('built', 1), ('around', 1), ('blazor', 1), ('webassembly', 1), ('apis', 1), ('markup', 1), ('leveraging', 1), ('paradigm', 1), ('commonly', 1), ('known', 1), ('jamstack', 1), ('book', 1), ('start', 1)]
[('program', 2), ('book', 2), ('review', 1), ('fundamental', 1), ('construct', 1), ('using', 1), ('segment', 1), ('boost', 1), ('confidence', 1), ('gain', 1), ('expertise', 1), ('help', 1), ('analyze', 1), ('efficiently', 1), ('enhance', 1), ('programming', 1), ('skill', 1), ('divided', 1), ('three', 1)]
[('sap', 3), ('module', 2), ('looking', 1), ('increase', 1), ('knowledge', 1), ('core', 1), ('hana', 1), ('book', 1), ('settle', 1), ('long', 1), ('time', 1), ('professional', 1), ('guide', 1), ('production', 1), ('planning', 1), ('execution', 1), ('nbsp', 1), ('author', 1)]
[('shaders', 2), ('understand', 1), ('used', 1), ('often', 1), ('seen', 1), ('mystical', 1), ('difficult', 1), ('develop', 1), ('even', 1), ('skilled', 1), ('programmer', 1), ('artist', 1), ('developer', 1), ('game', 1), ('design', 1), ('discipline', 1), ('book', 1), ('dispels', 1), ('idea', 1), ('building', 1)]
[('gain', 1), ('deep', 1), ('practical', 1), ('knowledge', 1), ('basic', 1), ('tool', 1), ('used', 1), ('webpage', 1), ('hypertext', 1), ('markup', 1), ('language', 1), ('html', 1), ('cascading', 1), ('style', 1), ('sheet', 1), ('cs', 1), ('javascript', 1), ('updated', 1), ('version', 1), ('includes', 1), ('new', 1), ('improved', 1), ('game', 1), ('exercise', 1), ('serve', 1), ('total', 1)]
[('edition', 2), ('apply', 1), ('skill', 1), ('approach', 1), ('programming', 1), ('build', 1), ('real', 1), ('world', 1), ('application', 1), ('using', 1), ('latest', 1), ('visual', 1), ('studio', 1), ('microsoft', 1), ('net', 1), ('revised', 1), ('updated', 1), ('place', 1), ('emphasis', 1), ('newly', 1)]
[('learn', 2), ('feature', 2), ('visual', 2), ('studio', 2), ('use', 1), ('utilize', 1), ('ide', 1), ('correctly', 1), ('make', 1), ('stop', 1), ('solution', 1), ('creating', 1), ('quality', 1), ('code', 1), ('new', 1), ('v', 1), ('explore', 1), ('existing', 1), ('become', 1)]
[('linux', 2), ('learn', 1), ('basic', 1), ('followed', 1), ('advanced', 1), ('skill', 1), ('need', 1), ('become', 1), ('enterprise', 1), ('administrator', 1), ('book', 1), ('prepare', 1), ('use', 1), ('effectively', 1), ('clearer', 1), ('understanding', 1), ('needed', 1), ('successfully', 1), ('leverage', 1), ('new', 1)]
[('matter', 1), ('completely', 1), ('new', 1), ('cisco', 1), ('aci', 1), ('already', 1), ('experience', 1), ('technology', 1), ('book', 1), ('guide', 1), ('whole', 1), ('implementation', 1), ('lifecycle', 1), ('provide', 1), ('comprehensive', 1), ('toolset', 1), ('become', 1), ('confident', 1)]
[('gain', 1), ('skill', 1), ('illustration', 1), ('logo', 1), ('manipulation', 1), ('enhance', 1), ('design', 1), ('make', 1), ('appealing', 1), ('either', 1), ('portfolio', 1), ('client', 1), ('next', 1), ('graphic', 1), ('project', 1), ('adobe', 1), ('photoshop', 1), ('illustrator', 1), ('evolved', 1), ('new', 1), ('unique', 1)]
[('programming', 2), ('step', 2), ('quickly', 1), ('start', 1), ('python', 1), ('data', 1), ('visualization', 1), ('detailed', 1), ('guide', 1), ('book', 1), ('friendly', 1), ('approach', 1), ('using', 1), ('library', 1), ('leather', 1), ('numpy', 1), ('matplotlib', 1), ('panda', 1), ('serve', 1), ('template', 1), ('business', 1)]
[('ai', 2), ('unity', 2), ('demystify', 1), ('creation', 1), ('efficient', 1), ('system', 1), ('using', 1), ('model', 1), ('based', 1), ('reinforcement', 1), ('learning', 1), ('ml', 1), ('agent', 1), ('powerful', 1), ('bridge', 1), ('world', 1), ('python', 1), ('start', 1), ('introduction', 1), ('field', 1), ('discus', 1)]
[('function', 3), ('azure', 2), ('start', 1), ('creating', 1), ('highly', 1), ('scalable', 1), ('apps', 1), ('monitoring', 1), ('nbsp', 1), ('production', 1), ('using', 1), ('book', 1), ('thoroughly', 1), ('explains', 1), ('durable', 1), ('statefulness', 1), ('covering', 1), ('basic', 1), ('way', 1), ('create', 1), ('binding', 1)]
[('learn', 1), ('create', 1), ('stunning', 1), ('animated', 1), ('interactive', 1), ('chart', 1), ('using', 1), ('highcharts', 1), ('angular', 1), ('updated', 1), ('edition', 1), ('build', 1), ('existing', 1), ('knowledge', 1), ('html', 1), ('cs', 1), ('javascript', 1), ('develop', 1), ('impressive', 1), ('dashboard', 1), ('work', 1), ('modern', 1)]
[('application', 2), ('immerse', 1), ('architecture', 1), ('angular', 1), ('starting', 1), ('introduction', 1), ('typescript', 1), ('e', 1), ('progressing', 1), ('module', 1), ('component', 1), ('used', 1), ('build', 1), ('complex', 1), ('book', 1), ('present', 1), ('hand', 1), ('approach', 1), ('becoming', 1)]
[('saying', 1), ('many', 1), ('investor', 1), ('convinced', 1), ('cryptocurrencies', 1), ('first', 1), ('decade', 1), ('existence', 1), ('understatement', 1), ('originally', 1), ('author', 1), ('thomas', 1), ('jeegers', 1), ('looked', 1), ('new', 1), ('virtual', 1), ('money', 1)]
[('create', 2), ('professional', 2), ('web', 2), ('progressive', 1), ('apps', 1), ('native', 1), ('html', 1), ('api', 1), ('latest', 1), ('technology', 1), ('stack', 1), ('book', 1), ('describes', 1), ('basic', 1), ('component', 1), ('using', 1), ('plain', 1), ('javascript', 1), ('make', 1), ('application', 1)]
[('software', 2), ('testing', 2), ('functional', 2), ('started', 1), ('hit', 1), ('ground', 1), ('running', 1), ('world', 1), ('simple', 1), ('practical', 1), ('guide', 1), ('teach', 1), ('fundamental', 1), ('prior', 1), ('experience', 1), ('required', 1), ('start', 1), ('learning', 1), ('non', 1)]
[('large', 2), ('problem', 2), ('program', 2), ('gain', 1), ('depth', 1), ('understanding', 1), ('number', 1), ('common', 1), ('found', 1), ('abap', 1), ('robust', 1), ('methodology', 1), ('fixing', 1), ('find', 1), ('book', 1), ('show', 1), ('prevent', 1), ('occurring', 1), ('new', 1)]
[('renderman', 2), ('technical', 2), ('understand', 1), ('fundamental', 1), ('bxdf', 1), ('plugins', 1), ('detail', 1), ('api', 1), ('architecture', 1), ('main', 1), ('goal', 1), ('book', 1), ('enable', 1), ('artist', 1), ('hobbyist', 1), ('student', 1), ('using', 1), ('noncommercial', 1), ('ncr', 1), ('free', 1)]
[('ar', 2), ('explore', 1), ('meta', 1), ('spark', 1), ('studio', 1), ('program', 1), ('used', 1), ('augmented', 1), ('reality', 1), ('effect', 1), ('creation', 1), ('deployment', 1), ('across', 1), ('multiple', 1), ('social', 1), ('medium', 1), ('channel', 1), ('beginner', 1), ('guide', 1), ('development', 1), ('focus', 1), ('practical', 1), ('project', 1), ('based', 1), ('learning', 1), ('prior', 1), ('coding', 1)]
[('pdf', 2), ('form', 2), ('take', 1), ('next', 1), ('level', 1), ('book', 1), ('learn', 1), ('various', 1), ('way', 1), ('improve', 1), ('using', 1), ('simple', 1), ('javascript', 1), ('coding', 1), ('discover', 1), ('line', 1), ('code', 1), ('speed', 1), ('workflow', 1), ('working', 1), ('multiple', 1)]
[('sql', 4), ('writing', 2), ('book', 2), ('learn', 1), ('basic', 1), ('script', 1), ('using', 1), ('standard', 1), ('starting', 1), ('point', 1), ('teach', 1), ('various', 1), ('popular', 1), ('dialect', 1), ('including', 1), ('postgresql', 1), ('mysql', 1), ('mariadb', 1), ('microsoft', 1), ('server', 1), ('oracle', 1), ('sqlite', 1), ('start', 1)]
[('application', 2), ('book', 1), ('identifies', 1), ('right', 1), ('sensor', 1), ('single', 1), ('board', 1), ('computer', 1), ('achieve', 1), ('best', 1), ('performance', 1), ('industry', 1), ('setting', 1), ('see', 1), ('technology', 1), ('apply', 1), ('iiot', 1), ('elegant', 1), ('efficiency', 1), ('drastically', 1)]
[('deep', 3), ('learning', 3), ('reinforcement', 2), ('fast', 1), ('growing', 1), ('discipline', 1), ('making', 1), ('significant', 1), ('impact', 1), ('field', 1), ('autonomous', 1), ('vehicle', 1), ('robotics', 1), ('healthcare', 1), ('finance', 1), ('many', 1), ('book', 1), ('cover', 1), ('using', 1)]
[('speed', 1), ('prepare', 1), ('roll', 1), ('next', 1), ('generation', 1), ('mobile', 1), ('technology', 1), ('book', 1), ('begin', 1), ('introduction', 1), ('advanced', 1), ('feature', 1), ('network', 1), ('see', 1), ('make', 1), ('bigger', 1), ('better', 1), ('faster', 1)]
[('app', 2), ('volume', 2), ('environment', 2), ('acquire', 1), ('skill', 1), ('build', 1), ('proof', 1), ('concept', 1), ('pilot', 1), ('live', 1), ('production', 1), ('delivering', 1), ('application', 1), ('vmware', 1), ('start', 1), ('depth', 1), ('overview', 1), ('solution', 1), ('fit', 1), ('within', 1)]
[('software', 3), ('open', 3), ('source', 3), ('learn', 1), ('free', 1), ('became', 1), ('sell', 1), ('book', 1), ('provides', 1), ('historical', 1), ('context', 1), ('thoroughly', 1), ('transformed', 1), ('write', 1), ('cooperate', 1), ('communicate', 1)]
[('community', 3), ('virtual', 2), ('online', 2), ('uncover', 1), ('fascinating', 1), ('history', 1), ('connect', 1), ('rise', 1), ('explores', 1), ('earliest', 1), ('platform', 1), ('mapping', 1), ('technological', 1), ('evolution', 1), ('individual', 1)]
[('continuous', 2), ('implement', 1), ('integration', 1), ('delivery', 1), ('ci', 1), ('cd', 1), ('workflow', 1), ('application', 1), ('develop', 1), ('github', 1), ('action', 1), ('book', 1), ('give', 1), ('depth', 1), ('idea', 1), ('implementation', 1), ('pattern', 1), ('solution', 1), ('different', 1), ('technology', 1), ('build', 1)]
[('container', 2), ('book', 1), ('everything', 1), ('need', 1), ('know', 1), ('window', 1), ('pro', 1), ('ops', 1), ('perspective', 1), ('next', 1), ('big', 1), ('thing', 1), ('infrastructure', 1), ('see', 1), ('company', 1), ('relying', 1), ('kubernetes', 1), ('implementation', 1), ('run', 1)]
[('automate', 2), ('kubernetes', 2), ('save', 2), ('time', 2), ('learn', 1), ('infrastructure', 1), ('using', 1), ('ansible', 1), ('book', 1), ('enable', 1), ('task', 1), ('human', 1), ('readable', 1), ('platform', 1), ('containerized', 1), ('microservices', 1), ('deployed', 1), ('via', 1), ('allows', 1)]
[('building', 2), ('game', 1), ('unity', 1), ('hard', 1), ('enough', 1), ('without', 1), ('stand', 1), ('go', 1), ('make', 1), ('coffee', 1), ('time', 1), ('want', 1), ('build', 1), ('project', 1), ('find', 1), ('day', 1), ('week', 1), ('line', 1), ('change', 1), ('made', 1), ('dream', 1), ('incurred', 1), ('debt', 1)]
[('want', 1), ('create', 1), ('cool', 1), ('game', 1), ('apps', 1), ('impress', 1), ('friend', 1), ('sure', 1), ('start', 1), ('tried', 1), ('hand', 1), ('programming', 1), ('utterly', 1), ('bored', 1), ('combing', 1), ('hundred', 1), ('page', 1), ('dry', 1), ('text', 1), ('come', 1)]
[('powershell', 2), ('learn', 1), ('basic', 1), ('tool', 1), ('command', 1), ('write', 1), ('script', 1), ('nbsp', 1), ('hand', 1), ('guide', 1), ('designed', 1), ('running', 1), ('quickly', 1), ('introducing', 1), ('interactive', 1), ('menu', 1), ('reading', 1), ('writing', 1), ('file', 1), ('creating', 1), ('code', 1), ('talk', 1)]
[('using', 3), ('game', 2), ('java', 2), ('ide', 2), ('start', 1), ('video', 1), ('development', 1), ('journey', 1), ('learning', 1), ('build', 1), ('engine', 1), ('scratch', 1), ('netbeans', 1), ('graphic', 1), ('framework', 1), ('following', 1), ('along', 1), ('visual', 1), ('studio', 1)]
[('software', 3), ('developer', 2), ('graduate', 1), ('next', 1), ('level', 1), ('development', 1), ('career', 1), ('learning', 1), ('tool', 1), ('need', 1), ('successfully', 1), ('manage', 1), ('complexity', 1), ('modern', 1), ('system', 1), ('whether', 1), ('small', 1), ('company', 1), ('many', 1)]
[('processing', 2), ('language', 2), ('learn', 1), ('use', 1), ('programming', 1), ('environment', 1), ('create', 1), ('android', 1), ('application', 1), ('ease', 1), ('book', 1), ('cover', 1), ('basic', 1), ('allowing', 1), ('user', 1), ('effectively', 1), ('program', 1), ('interactive', 1), ('graphic', 1)]
[('nbsp', 3), ('exchange', 3), ('move', 1), ('current', 1), ('version', 1), ('server', 1), ('whether', 1), ('stand', 1), ('alone', 1), ('premise', 1), ('hybrid', 1), ('configuration', 1), ('online', 1), ('updated', 1), ('edition', 1), ('provides', 1), ('background', 1), ('information', 1), ('teach', 1)]
[('book', 2), ('teach', 1), ('core', 1), ('concept', 1), ('blockchain', 1), ('technology', 1), ('concise', 1), ('manner', 1), ('straightforward', 1), ('concrete', 1), ('example', 1), ('using', 1), ('range', 1), ('programming', 1), ('language', 1), ('including', 1), ('python', 1), ('solidity', 1), ('program', 1), ('presented', 1)]
[('compiler', 3), ('microsoft', 2), ('book', 1), ('focus', 1), ('install', 1), ('linux', 1), ('window', 1), ('platform', 1), ('timely', 1), ('efficient', 1), ('way', 1), ('installing', 1), ('especially', 1), ('typically', 1), ('take', 1), ('quite', 1), ('lot', 1), ('time', 1), ('come', 1)]
[('lego', 3), ('dreamed', 1), ('designing', 1), ('love', 1), ('building', 1), ('huge', 1), ('model', 1), ('enough', 1), ('brick', 1), ('book', 1), ('show', 1), ('bricklink', 1), ('studio', 1), ('software', 1), ('program', 1), ('widely', 1), ('used', 1)]
[('website', 3), ('asp', 2), ('net', 2), ('pro', 1), ('programming', 1), ('show', 1), ('provide', 1), ('user', 1), ('customer', 1), ('easy', 1), ('use', 1), ('perform', 1), ('secure', 1), ('book', 1), ('clearly', 1), ('explains', 1), ('handle', 1), ('common', 1), ('task', 1), ('effortlessly', 1)]
[('deployment', 2), ('authored', 1), ('fortune', 1), ('system', 1), ('administrator', 1), ('responsible', 1), ('architecture', 1), ('openssh', 1), ('across', 1), ('several', 1), ('hundred', 1), ('corporate', 1), ('server', 1), ('cover', 1), ('commonplace', 1), ('yet', 1), ('often', 1), ('confusing', 1), ('scenario', 1), ('come', 1), ('daily', 1)]
[('book', 2), ('smart', 2), ('client', 2), ('offer', 1), ('unique', 1), ('blend', 1), ('theory', 1), ('example', 1), ('first', 1), ('covering', 1), ('service', 1), ('orientation', 1), ('brave', 1), ('enough', 1), ('tackle', 1), ('challenge', 1), ('surrounding', 1), ('testing', 1), ('agility', 1), ('give', 1), ('practical', 1), ('case', 1), ('study', 1)]
[('hot', 2), ('topic', 2), ('aop', 2), ('reader', 1), ('witness', 1), ('real', 1), ('application', 1), ('built', 1), ('spring', 1), ('framework', 1), ('aspect', 1), ('oriented', 1), ('programming', 1), ('date', 1), ('time', 1), ('book', 1), ('release', 1), ('right', 1), ('endorsed', 1), ('open', 1)]
[('tester', 2), ('unlike', 1), ('competitor', 1), ('focus', 1), ('solely', 1), ('applied', 1), ('programming', 1), ('technique', 1), ('appeal', 1), ('developer', 1), ('alike', 1), ('already', 1), ('popularized', 1), ('classroom', 1), ('worldwide', 1), ('three', 1), ('year', 1), ('testing', 1), ('market', 1), ('growing', 1), ('business', 1)]
[('practical', 3), ('project', 2), ('jboss', 1), ('seam', 1), ('web', 1), ('written', 1), ('renowned', 1), ('author', 1), ('enterprise', 1), ('java', 1), ('practitioner', 1), ('jim', 1), ('farley', 1), ('based', 1), ('book', 1), ('groundbreaking', 1), ('open', 1), ('source', 1), ('lightweight', 1), ('jsf', 1), ('ejb', 1), ('framework', 1), ('us', 1), ('application', 1)]
[('berkeley', 3), ('db', 3), ('book', 1), ('intended', 1), ('practical', 1), ('guide', 1), ('intricacy', 1), ('depth', 1), ('analysis', 1), ('complex', 1), ('design', 1), ('issue', 1), ('often', 1), ('covered', 1), ('terse', 1), ('footnote', 1), ('dense', 1), ('reference', 1), ('manual', 1), ('explains', 1)]
[('objective', 2), ('caml', 2), ('ocaml', 2), ('programming', 2), ('functional', 2), ('open', 1), ('source', 1), ('language', 1), ('utilizes', 1), ('object', 1), ('oriented', 1), ('practical', 1), ('teach', 1), ('straightforward', 1), ('manner', 1), ('teaching', 1), ('feature', 1)]
[('web', 2), ('project', 2), ('developer', 2), ('practical', 1), ('dwr', 1), ('address', 1), ('need', 1), ('rather', 1), ('learn', 1), ('example', 1), ('book', 1), ('contains', 1), ('several', 1), ('sink', 1), ('teeth', 1), ('written', 1), ('accomplished', 1), ('ajax', 1), ('java', 1)]
[('edi', 3), ('biztalk', 2), ('solution', 2), ('microsoft', 1), ('server', 1), ('offer', 1), ('efficient', 1), ('integrated', 1), ('way', 1), ('deploy', 1), ('practical', 1), ('guide', 1), ('set', 1), ('deliver', 1), ('driven', 1), ('without', 1), ('getting', 1), ('caught', 1), ('complexity', 1), ('non', 1), ('item', 1)]
[('net', 2), ('sharepoint', 2), ('hugely', 1), ('practical', 1), ('date', 1), ('work', 1), ('book', 1), ('developer', 1), ('looking', 1), ('combine', 1), ('latest', 1), ('advance', 1), ('window', 1), ('microsoft', 1), ('development', 1), ('asp', 1), ('ajax', 1), ('infopath', 1), ('biztalk', 1), ('site', 1)]
[('workflow', 2), ('book', 1), ('written', 1), ('developer', 1), ('architect', 1), ('year', 1), ('experience', 1), ('building', 1), ('information', 1), ('worker', 1), ('solution', 1), ('including', 1), ('custom', 1), ('engine', 1), ('third', 1), ('party', 1), ('product', 1), ('author', 1), ('challenge', 1), ('reader', 1), ('view', 1), ('office', 1), ('system', 1)]
[('netbeans', 3), ('aim', 2), ('java', 2), ('ide', 2), ('market', 2), ('book', 2), ('pro', 1), ('publish', 1), ('represented', 1), ('marketplace', 1), ('unlike', 1), ('near', 1), ('saturation', 1), ('eclipse', 1), ('specifically', 1), ('first', 1), ('new', 1)]
[('solution', 3), ('task', 1), ('based', 1), ('advanced', 1), ('discus', 1), ('non', 1), ('traditional', 1), ('band', 1), ('written', 1), ('real', 1), ('world', 1), ('knowledge', 1), ('focus', 1), ('relevant', 1), ('consultant', 1)]
[('code', 2), ('feature', 2), ('base', 1), ('rewritten', 1), ('previous', 1), ('version', 1), ('demonstrate', 1), ('asp', 1), ('net', 1), ('functionality', 1), ('updated', 1), ('included', 1), ('example', 1), ('flexible', 1), ('fit', 1), ('reader', 1), ('need', 1), ('chapter', 1), ('latter', 1), ('one', 1), ('build', 1), ('new', 1)]
[('new', 3), ('java', 3), ('st', 1), ('book', 1), ('cover', 1), ('author', 1), ('john', 1), ('zukowski', 1), ('industry', 1), ('expert', 1), ('insidercovers', 1), ('emerging', 1), ('se', 1), ('standard', 1), ('edition', 1), ('time', 1), ('next', 1), ('year', 1), ('javaone', 1)]
[('tool', 2), ('expression', 2), ('book', 1), ('take', 1), ('guided', 1), ('tour', 1), ('new', 1), ('available', 1), ('create', 1), ('silverlight', 1), ('application', 1), ('design', 1), ('blend', 1), ('visual', 1), ('studio', 1), ('explains', 1), ('performs', 1), ('part', 1), ('job', 1)]
[('app', 2), ('store', 2), ('game', 2), ('percent', 2), ('apps', 2), ('look', 1), ('show', 1), ('hot', 1), ('iphone', 1), ('become', 1), ('make', 1), ('popular', 1), ('category', 1), ('surprised', 1), ('course', 1)]
[('silverlight', 2), ('cross', 2), ('programming', 2), ('microsoft', 1), ('browser', 1), ('platform', 1), ('plug', 1), ('flash', 1), ('delivers', 1), ('rich', 1), ('interactive', 1), ('application', 1), ('web', 1), ('offer', 1), ('flexible', 1), ('model', 1), ('support', 1), ('number', 1), ('different', 1), ('language', 1)]
[('mac', 2), ('charles', 1), ('edge', 1), ('zack', 1), ('smith', 1), ('beau', 1), ('hunter', 1), ('provide', 1), ('detailed', 1), ('explanation', 1), ('technology', 1), ('required', 1), ('large', 1), ('scale', 1), ('o', 1), ('deployment', 1), ('show', 1), ('integrate', 1), ('operating', 1), ('system', 1), ('application', 1), ('enterprise', 1), ('administrator', 1)]
[('proven', 2), ('provides', 2), ('author', 1), ('expert', 1), ('analysis', 1), ('key', 1), ('new', 1), ('featuresvisual', 1), ('studio', 1), ('release', 1), ('ample', 1), ('catalyst', 1), ('sale', 1), ('bookour', 1), ('net', 1), ('series', 1), ('successful', 1), ('book', 1), ('line', 1), ('member', 1)]
[('flash', 3), ('huge', 2), ('user', 2), ('new', 2), ('version', 2), ('potentially', 1), ('market', 1), ('base', 1), ('worldwide', 1), ('going', 1), ('exciting', 1), ('yet', 1), ('allows', 1), ('previous', 1), ('date', 1), ('asap', 1), ('feature', 1), ('written', 1)]
[('ajax', 3), ('hottest', 1), ('topic', 1), ('developer', 1), ('community', 1), ('right', 1), ('first', 1), ('book', 1), ('offer', 1), ('detailed', 1), ('explanation', 1), ('work', 1), ('use', 1), ('best', 1), ('effect', 1), ('theory', 1), ('practice', 1), ('covered', 1), ('immediately', 1)]
[('friend', 1), ('ed', 1)]
[('book', 2), ('coverage', 2), ('nbsp', 1), ('kofler', 1), ('offer', 1), ('date', 1), ('market', 1), ('provides', 1), ('depth', 1), ('topic', 1), ('normally', 1), ('overlooked', 1), ('file', 1), ('scripting', 1), ('object', 1), ('accessing', 1), ('external', 1), ('database', 1), ('using', 1), ('ado', 1), ('library', 1), ('automating', 1)]
[('author', 1), ('provides', 1), ('short', 1), ('catalog', 1), ('design', 1), ('pattern', 1), ('typically', 1), ('needed', 1), ('explains', 1), ('right', 1), ('one', 1), ('use', 1), ('web', 1), ('service', 1), ('java', 1), ('used', 1), ('example', 1)]
[('guide', 2), ('official', 1), ('book', 1), ('firebirdsql', 1), ('written', 1), ('support', 1), ('development', 1), ('management', 1), ('team', 1), ('includes', 1), ('extensive', 1), ('set', 1), ('working', 1), ('real', 1), ('world', 1), ('example', 1), ('troubleshooting', 1), ('migrating', 1), ('existing', 1)]
[('java', 3), ('open', 2), ('source', 2), ('development', 2), ('profound', 1), ('effect', 1), ('community', 1), ('many', 1), ('project', 1), ('even', 1), ('become', 1), ('de', 1), ('facto', 1), ('standard', 1), ('principal', 1), ('purpose', 1), ('enterprise', 1), ('budget', 1), ('guide', 1), ('real', 1)]
[('book', 2), ('first', 1), ('flash', 1), ('use', 1), ('unique', 1), ('virtual', 1), ('classroom', 1), ('approach', 1), ('teaching', 1), ('actionscript', 1), ('programming', 1), ('absolute', 1), ('beginner', 1), ('meet', 1), ('need', 1), ('head', 1), ('address', 1), ('directly', 1), ('providing', 1), ('missing', 1), ('link', 1), ('technology', 1)]
[('besides', 1), ('covering', 1), ('recently', 1), ('released', 1), ('version', 1), ('gcc', 1), ('book', 1), ('provides', 1), ('complete', 1), ('command', 1), ('reference', 1), ('explains', 1), ('use', 1), ('info', 1), ('online', 1), ('help', 1), ('system', 1), ('cover', 1), ('material', 1), ('covered', 1), ('text', 1), ('including', 1), ('profiling', 1), ('test', 1), ('coverage', 1)]
[('suggestion', 2), ('includes', 1), ('automation', 1), ('deployment', 1), ('rollout', 1), ('etc', 1), ('discus', 1), ('security', 1), ('hardening', 1), ('strategy', 1), ('best', 1), ('practice', 1), ('platform', 1), ('specific', 1), ('applied', 1), ('operating', 1), ('system', 1), ('window', 1), ('offer', 1)]
[('net', 3), ('asp', 2), ('collection', 1), ('language', 1), ('tip', 1), ('book', 1), ('help', 1), ('grip', 1), ('moving', 1), ('mean', 1), ('developer', 1), ('understand', 1), ('new', 1), ('coding', 1), ('technique', 1), ('standard', 1), ('master', 1), ('page', 1), ('generic', 1), ('introduced', 1)]
[('story', 2), ('exciting', 2), ('even', 2), ('accessible', 1), ('lay', 1), ('reader', 1), ('decision', 1), ('maker', 1), ('fast', 1), ('paced', 1), ('movie', 1), ('adventure', 1), ('hacker', 1), ('strike', 1), ('quickly', 1), ('disastrous', 1), ('result', 1), ('post', 1), ('mortems', 1)]
[('library', 2), ('us', 2), ('expert', 1), ('author', 1), ('habibi', 1), ('offer', 1), ('look', 1), ('regular', 1), ('expression', 1), ('use', 1), ('java', 1), ('process', 1), ('book', 1), ('plenty', 1), ('example', 1), ('show', 1), ('typical', 1), ('atypical', 1), ('thus', 1), ('becoming', 1), ('powerful', 1), ('learning', 1), ('tool', 1)]
[('web', 3), ('service', 3), ('lay', 1), ('foundation', 1), ('technology', 1), ('xml', 1), ('soap', 1), ('wsdl', 1), ('present', 1), ('interface', 1), ('google', 1), ('amazon', 1), ('others', 1), ('describes', 1), ('many', 1), ('example', 1), ('create', 1), ('client', 1), ('cross', 1), ('browser', 1), ('javascript', 1), ('java', 1)]
[('database', 2), ('xml', 2), ('nbsp', 1), ('book', 1), ('appeal', 1), ('professional', 1), ('audience', 1), ('writer', 1), ('administrator', 1), ('developer', 1), ('production', 1), ('staff', 1), ('capture', 1), ('emit', 1), ('existing', 1), ('document', 1), ('describes', 1), ('connection', 1)]
[('smackdown', 1), ('provides', 1), ('fast', 1), ('paced', 1), ('depth', 1), ('information', 1), ('experienced', 1), ('vba', 1), ('vb', 1), ('coder', 1), ('program', 1), ('office', 1), ('xp', 1), ('application', 1)]
[('special', 1), ('title', 1), ('technically', 1), ('useful', 1), ('visually', 1), ('stimulating', 1), ('reader', 1)]
[('macdonald', 1), ('go', 1), ('beyond', 1), ('net', 1), ('book', 1), ('show', 1), ('design', 1), ('state', 1), ('art', 1), ('application', 1), ('interface', 1), ('concentrating', 1), ('language', 1)]
[('language', 5), ('net', 4), ('developer', 1), ('use', 1), ('high', 1), ('level', 1), ('vb', 1), ('develop', 1), ('system', 1), ('core', 1), ('common', 1), ('intermediate', 1), ('cil', 1), ('whatever', 1), ('allowed', 1)]
[('book', 1), ('designed', 1), ('teach', 1), ('add', 1), ('development', 1), ('using', 1), ('visual', 1), ('studio', 1), ('net', 1), ('novice', 1), ('experienced', 1), ('developer', 1), ('real', 1), ('code', 1), ('example', 1), ('demonstrate', 1)]
[('sql', 5), ('transact', 2), ('server', 2), ('ben', 2), ('gan', 2), ('moreau', 2), ('advanced', 1), ('author', 1), ('itzik', 1), ('thomas', 1), ('explore', 1), ('powerful', 1), ('capability', 1), ('offer', 1), ('solution', 1), ('common', 1), ('problem', 1), ('encountered', 1), ('using', 1), ('version', 1)]
[('augmented', 2), ('reality', 2), ('real', 2), ('take', 1), ('world', 1), ('use', 1), ('graphic', 1), ('sound', 1), ('effect', 1), ('allows', 1), ('enhance', 1), ('environment', 1), ('make', 1), ('game', 1), ('social', 1), ('medium', 1), ('app', 1), ('put', 1), ('want', 1), ('go', 1), ('pro', 1), ('io', 1)]
[('apple', 3), ('taking', 1), ('ipad', 1), ('max', 1), ('io', 1), ('edition', 1), ('written', 1), ('anyone', 1), ('quickly', 1), ('speed', 1), ('latest', 1), ('hit', 1), ('blogger', 1), ('unofficial', 1), ('weblog', 1), ('tuaw', 1), ('author', 1), ('happy', 1), ('privilege', 1), ('working', 1), ('product', 1)]
[('memory', 3), ('management', 2), ('want', 1), ('develop', 1), ('efficient', 1), ('smooth', 1), ('running', 1), ('application', 1), ('controlling', 1), ('concurrency', 1), ('vital', 1), ('automatic', 1), ('reference', 1), ('counting', 1), ('apple', 1), ('game', 1), ('changing', 1), ('system', 1), ('new', 1), ('xcode', 1), ('pro', 1), ('multithreading', 1)]
[('game', 5), ('coco', 2), ('create', 1), ('compelling', 1), ('learn', 1), ('development', 1), ('io', 1), ('book', 1), ('show', 1), ('use', 1), ('powerful', 1), ('new', 1), ('version', 1), ('engine', 1), ('develop', 1), ('iphone', 1), ('ipad', 1), ('tilemaps', 1), ('virtual', 1), ('joypads', 1), ('center', 1)]
[('eclipse', 4), ('ide', 2), ('android', 2), ('apps', 2), ('adopted', 1), ('integrated', 1), ('development', 1), ('environment', 1), ('java', 1), ('programmer', 1), ('seems', 1), ('preferred', 1), ('developer', 1), ('provides', 1), ('detailed', 1), ('overview', 1), ('including', 1)]
[('arduino', 2), ('adventure', 2), ('escape', 1), ('gemini', 1), ('station', 1), ('provides', 1), ('fun', 1), ('introduction', 1), ('microcontroller', 1), ('putting', 1), ('reader', 1), ('action', 1), ('science', 1), ('fiction', 1), ('story', 1), ('find', 1), ('following', 1), ('along', 1), ('cade', 1), ('elle', 1)]
[('javascript', 2), ('reference', 2), ('programmer', 1), ('invaluable', 1), ('resource', 1), ('stray', 1), ('far', 1), ('desktop', 1), ('tablet', 1), ('contains', 1), ('detailed', 1), ('information', 1), ('every', 1), ('object', 1), ('command', 1), ('combine', 1), ('practical', 1), ('example', 1)]
[('project', 2), ('arduino', 2), ('created', 1), ('time', 1), ('kick', 1), ('notch', 1), ('go', 1), ('next', 1), ('pro', 1), ('learn', 1), ('new', 1), ('tool', 1), ('technique', 1), ('framework', 1), ('make', 1), ('even', 1), ('ground', 1), ('breaking', 1), ('eye', 1), ('popping', 1)]
[('android', 3), ('game', 2), ('wolfenstein', 1), ('doom', 1), ('apps', 1), ('classic', 1), ('presented', 1), ('original', 1), ('edition', 1), ('book', 1), ('release', 1), ('progressed', 1), ('debut', 1), ('adding', 1), ('better', 1), ('font', 1), ('new', 1), ('user', 1)]
[('cybersecurity', 2), ('enterprise', 1), ('empowers', 1), ('organization', 1), ('size', 1), ('defend', 1), ('next', 1), ('generation', 1), ('program', 1), ('escalating', 1), ('threat', 1), ('modern', 1), ('targeted', 1), ('cyberattacks', 1), ('book', 1), ('present', 1), ('comprehensive', 1), ('framework', 1), ('managing', 1)]
[('ext', 3), ('j', 3), ('practical', 1), ('running', 1), ('using', 1), ('project', 1), ('quickly', 1), ('possible', 1), ('quick', 1), ('refresher', 1), ('javascript', 1), ('basic', 1), ('grip', 1), ('oo', 1), ('concept', 1), ('mixins', 1), ('familiarize', 1)]
[('learn', 1), ('beginning', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('thinking', 1), ('program', 1), ('design', 1), ('right', 1), ('way', 1), ('day', 1), ('whether', 1), ('want', 1), ('work', 1), ('net', 1), ('web', 1), ('desktop', 1), ('window', 1), ('device', 1), ('dan', 1), ('clark', 1), ('accessible', 1)]
[('hibernate', 2), ('open', 2), ('source', 2), ('persistence', 2), ('java', 2), ('based', 2), ('mongodb', 1), ('powerful', 1), ('combination', 1), ('nosql', 1), ('technology', 1), ('today', 1), ('enterprise', 1), ('cloud', 1), ('application', 1), ('developer', 1), ('leading', 1), ('object', 1), ('relational', 1)]
[('game', 3), ('window', 3), ('creating', 1), ('fun', 1), ('sophisticated', 1), ('device', 1), ('large', 1), ('small', 1), ('never', 1), ('easier', 1), ('mass', 1), ('example', 1), ('code', 1), ('fully', 1), ('working', 1), ('download', 1), ('run', 1), ('straight', 1), ('away', 1), ('phone', 1), ('development', 1), ('ideal', 1)]
[('java', 2), ('ee', 2), ('new', 2), ('introducing', 1), ('look', 1), ('rsquo', 1), ('guide', 1), ('feature', 1), ('enhancement', 1), ('technology', 1), ('comprising', 1), ('platform', 1), ('reader', 1), ('book', 1), ('wade', 1), ('introductory', 1), ('material', 1)]
[('network', 3), ('edition', 2), ('foundation', 1), ('python', 1), ('programming', 1), ('third', 1), ('cover', 1), ('classic', 1), ('topic', 1), ('found', 1), ('second', 1), ('book', 1), ('including', 1), ('protocol', 1), ('data', 1), ('error', 1), ('email', 1), ('server', 1), ('architecture', 1), ('web', 1), ('application', 1)]
[('server', 4), ('sql', 3), ('administration', 3), ('pro', 1), ('brings', 1), ('modern', 1), ('era', 1), ('strong', 1), ('coverage', 1), ('hybrid', 1), ('cloud', 1), ('environment', 1), ('memory', 1), ('oltp', 1), ('installation', 1), ('core', 1), ('comprehensive', 1), ('guide', 1)]
[('game', 4), ('create', 3), ('arcade', 2), ('complete', 1), ('first', 1), ('unity', 1), ('book', 1), ('learn', 1), ('classic', 1), ('brick', 1), ('breaker', 1), ('beginning', 1), ('end', 1), ('plan', 1), ('flow', 1), ('add', 1), ('graphic', 1), ('logic', 1), ('using', 1)]
[('drupal', 2), ('successfully', 1), ('architect', 1), ('website', 1), ('scale', 1), ('meet', 1), ('project', 1), ('requirement', 1), ('size', 1), ('scope', 1), ('nbsp', 1), ('starting', 1), ('chapter', 1), ('review', 1), ('basic', 1), ('dive', 1), ('deeper', 1), ('topic', 1), ('including', 1), ('software', 1), ('development', 1), ('process', 1)]
[('examine', 1), ('challenge', 1), ('light', 1), ('impending', 1), ('crucial', 1), ('future', 1), ('communication', 1), ('need', 1), ('review', 1), ('lesson', 1), ('learned', 1), ('implementation', 1), ('system', 1), ('operation', 1), ('perspective', 1), ('eye', 1), ('towards', 1), ('next', 1), ('generation', 1), ('investigate', 1)]
[('reference', 4), ('html', 4), ('markup', 2), ('book', 1), ('condensed', 1), ('present', 1), ('essential', 1), ('element', 1), ('attribute', 1), ('organized', 1), ('format', 1), ('used', 1), ('handy', 1), ('quick', 1), ('title', 1), ('covering', 1), ('tag', 1)]
[('reference', 2), ('quick', 1), ('syntax', 1), ('handy', 1), ('book', 1), ('detailing', 1), ('intricacy', 1), ('language', 1), ('free', 1), ('open', 1), ('source', 1), ('tool', 1), ('powerful', 1), ('flexible', 1), ('state', 1), ('art', 1), ('statistical', 1), ('technique', 1), ('available', 1), ('many', 1), ('detail', 1)]
[('network', 3), ('telecommunication', 1), ('operator', 1), ('engineer', 1), ('understand', 1), ('specific', 1), ('operational', 1), ('requirement', 1), ('drive', 1), ('early', 1), ('architectural', 1), ('design', 1), ('decision', 1), ('know', 1), ('technology', 1), ('standard', 1), ('usage', 1), ('practice', 1)]
[('javascript', 3), ('game', 3), ('programming', 2), ('building', 1), ('teach', 1), ('series', 1), ('engaging', 1), ('arcade', 1), ('style', 1), ('quickly', 1), ('expand', 1), ('html', 1), ('skill', 1), ('top', 1), ('ten', 1), ('used', 1), ('language', 1), ('world', 1), ('wide', 1), ('basis', 1)]
[('api', 2), ('security', 2), ('enterprise', 2), ('advanced', 1), ('complete', 1), ('reference', 1), ('next', 1), ('wave', 1), ('challenge', 1), ('securing', 1), ('public', 1), ('private', 1), ('apis', 1), ('adoption', 1), ('consumer', 1), ('gone', 1), ('beyond', 1), ('prediction', 1), ('become', 1)]
[('couchbase', 2), ('server', 2), ('take', 2), ('pro', 1), ('hand', 1), ('guide', 1), ('developer', 1), ('administrator', 1), ('want', 1), ('advantage', 1), ('power', 1), ('scalability', 1), ('application', 1), ('book', 1), ('basic', 1), ('nosql', 1), ('database', 1), ('design', 1)]
[('avr', 3), ('arduino', 2), ('project', 2), ('microcontrollers', 2), ('brain', 1), ('run', 1), ('need', 1), ('whole', 1), ('board', 1), ('fun', 1), ('experimenting', 1), ('practical', 1), ('show', 1), ('create', 1), ('spiffy', 1), ('set', 1), ('build', 1)]
[('matlab', 3), ('graphic', 2), ('enables', 1), ('work', 1), ('capability', 1), ('almost', 1), ('area', 1), ('experimental', 1), ('science', 1), ('engineering', 1), ('command', 1), ('implement', 1), ('job', 1), ('related', 1), ('quite', 1), ('useful', 1), ('efficient', 1), ('function', 1)]
[('edition', 3), ('david', 2), ('php', 2), ('third', 1), ('power', 1), ('highly', 1), ('respected', 1), ('solution', 1), ('dynamic', 1), ('web', 1), ('design', 1), ('made', 1), ('easy', 1), ('new', 1), ('updated', 1), ('incorporate', 1), ('change', 1), ('second', 1), ('offer', 1), ('latest', 1), ('technique', 1), ('mdash', 1)]
[('matlab', 2), ('language', 2), ('high', 1), ('level', 1), ('environment', 1), ('numerical', 1), ('computation', 1), ('visualization', 1), ('programming', 1), ('using', 1), ('analyze', 1), ('data', 1), ('develop', 1), ('algorithm', 1), ('create', 1), ('model', 1), ('application', 1), ('tool', 1), ('built', 1), ('math', 1), ('function', 1)]
[('robert', 1), ('pearl', 1), ('known', 1), ('dba', 1), ('sql', 1), ('community', 1), ('explains', 1), ('holistic', 1), ('vision', 1), ('database', 1), ('instance', 1), ('need', 1), ('regular', 1), ('check', 1), ('ups', 1), ('give', 1), ('tool', 1), ('script', 1), ('best', 1), ('practice', 1), ('collected', 1), ('year', 1), ('alberto', 1), ('bolchini', 1), ('computing', 1)]
[('bash', 3), ('programming', 3), ('shell', 3), ('pro', 1), ('teach', 1), ('effectively', 1), ('utilize', 1), ('complete', 1), ('language', 1), ('merely', 1), ('glue', 1), ('combine', 1), ('external', 1), ('linux', 1), ('command', 1), ('taking', 1), ('full', 1), ('advantage', 1), ('internals', 1)]
[('game', 2), ('app', 2), ('apps', 1), ('popular', 1), ('category', 1), ('apple', 1), ('itunes', 1), ('store', 1), ('introduction', 1), ('new', 1), ('swift', 1), ('programming', 1), ('language', 1), ('make', 1), ('development', 1), ('even', 1), ('appealing', 1), ('easier', 1), ('existing', 1), ('future', 1), ('io', 1), ('developer', 1)]
[('new', 2), ('language', 2), ('io', 2), ('town', 1), ('swift', 1), ('apple', 1), ('native', 1), ('fast', 1), ('easy', 1), ('learn', 1), ('programming', 1), ('o', 1), ('app', 1), ('development', 1), ('objective', 1), ('without', 1), ('developer', 1), ('planning', 1), ('become', 1), ('learning', 1)]
[('rest', 2), ('api', 2), ('development', 2), ('pro', 1), ('node', 1), ('j', 1), ('guide', 1), ('managing', 1), ('understanding', 1), ('full', 1), ('capability', 1), ('successful', 1), ('design', 1), ('hot', 1), ('topic', 1), ('programming', 1), ('world', 1), ('many', 1), ('resource', 1), ('exist', 1), ('developer', 1), ('really', 1)]
[('solution', 3), ('biztalk', 2), ('recipe', 2), ('provides', 1), ('ready', 1), ('made', 1), ('server', 1), ('developer', 1), ('book', 1), ('save', 1), ('effort', 1), ('developing', 1), ('common', 1), ('problem', 1), ('solved', 1), ('many', 1), ('time', 1), ('demonstrate', 1)]
[('powershell', 3), ('sharepoint', 2), ('beginning', 1), ('book', 1), ('administrator', 1), ('looking', 1), ('expand', 1), ('toolkit', 1), ('skill', 1), ('learning', 1), ('microsoft', 1), ('vastly', 1), ('flexible', 1), ('versatile', 1), ('object', 1), ('oriented', 1), ('scripting', 1), ('language', 1)]
[('xamarin', 4), ('form', 2), ('android', 2), ('mobile', 1), ('application', 1), ('development', 1), ('hand', 1), ('primer', 1), ('cross', 1), ('platform', 1), ('reference', 1), ('building', 1), ('native', 1), ('io', 1), ('window', 1), ('phone', 1), ('apps', 1), ('using', 1), ('net', 1), ('book', 1), ('explains', 1), ('use', 1)]
[('android', 4), ('wearable', 2), ('new', 2), ('pro', 1), ('detail', 1), ('design', 1), ('build', 1), ('wear', 1), ('apps', 1), ('unique', 1), ('device', 1), ('type', 1), ('google', 1), ('smartwatches', 1), ('use', 1), ('watchfaces', 1), ('api', 1), ('health', 1), ('monitoring', 1), ('feature', 1), ('cool', 1)]
[('face', 3), ('new', 2), ('learn', 1), ('master', 1), ('feature', 1), ('eclipse', 1), ('jakarta', 1), ('formerly', 1), ('javaserver', 1), ('jsf', 1), ('web', 1), ('framework', 1), ('definitive', 1), ('guide', 1), ('written', 1), ('driving', 1), ('force', 1), ('project', 1), ('co', 1), ('creator', 1), ('omnifaces', 1), ('library', 1)]
[('team', 5), ('microsoft', 2), ('manage', 1), ('lead', 1), ('remotely', 1), ('intertwining', 1), ('leadership', 1), ('principle', 1), ('many', 1), ('robust', 1), ('tool', 1), ('nbsp', 1), ('book', 1), ('show', 1), ('utilize', 1), ('effective', 1), ('way', 1), ('achieve', 1), ('global', 1), ('goal', 1), ('leading', 1)]
[('software', 2), ('build', 1), ('package', 1), ('deploy', 1), ('project', 1), ('developed', 1), ('language', 1), ('targeting', 1), ('platform', 1), ('using', 1), ('azure', 1), ('pipeline', 1), ('book', 1), ('start', 1), ('overview', 1), ('ci', 1), ('cd', 1), ('need', 1), ('delivery', 1), ('automation', 1), ('delf', 1), ('basic', 1)]
[('sql', 2), ('server', 2), ('growing', 2), ('support', 2), ('data', 2), ('deliver', 1), ('advanced', 1), ('functionality', 1), ('faster', 1), ('cheaper', 1), ('exploiting', 1), ('amount', 1), ('built', 1), ('modern', 1), ('format', 1), ('learn', 1), ('nbsp', 1), ('within', 1), ('operation', 1), ('transformation', 1)]
[('secure', 2), ('runtime', 2), ('deno', 2), ('node', 2), ('learn', 1), ('everything', 1), ('know', 1), ('new', 1), ('javascript', 1), ('proposed', 1), ('replacement', 1), ('j', 1), ('envisioned', 1), ('created', 1), ('developer', 1), ('wrote', 1), ('first', 1), ('version', 1), ('simple', 1), ('modern', 1)]
[('oracle', 2), ('database', 2), ('new', 2), ('access', 1), ('needed', 1), ('information', 1), ('building', 1), ('scalable', 1), ('high', 1), ('concurrency', 1), ('application', 1), ('deploying', 1), ('edition', 1), ('updated', 1), ('current', 1), ('includes', 1), ('chapter', 1), ('troubleshooting', 1)]
[('learn', 1), ('five', 1), ('key', 1), ('skill', 1), ('needed', 1), ('become', 1), ('quadcopter', 1), ('developer', 1), ('design', 1), ('modeling', 1), ('control', 1), ('simulation', 1), ('implementation', 1), ('book', 1), ('provides', 1), ('crash', 1), ('course', 1), ('drone', 1), ('development', 1), ('beginner', 1), ('serve', 1), ('comprehensive', 1), ('reference', 1)]
[('eclipse', 2), ('tea', 2), ('discover', 1), ('open', 1), ('source', 1), ('tasking', 1), ('engine', 1), ('advanced', 1), ('project', 1), ('compact', 1), ('point', 1), ('book', 1), ('cover', 1), ('automate', 1), ('task', 1), ('using', 1), ('focus', 1), ('simplifying', 1), ('aiding', 1), ('creation', 1), ('extension', 1), ('ide', 1), ('way', 1)]
[('design', 2), ('principle', 2), ('package', 2), ('apply', 1), ('class', 1), ('preparing', 1), ('reuse', 1), ('use', 1), ('create', 1), ('right', 1), ('term', 1), ('cohesion', 1), ('coupling', 1), ('user', 1), ('maintainer', 1), ('friendly', 1), ('time', 1), ('first', 1)]
[('learn', 2), ('follow', 1), ('walkthrough', 1), ('unity', 1), ('engine', 1), ('important', 1), ('centric', 1), ('lesson', 1), ('scripting', 1), ('working', 1), ('image', 1), ('asset', 1), ('animation', 1), ('camera', 1), ('collision', 1), ('detection', 1), ('state', 1), ('management', 1), ('addition', 1), ('fundamental', 1), ('best', 1), ('practice', 1)]
[('principle', 2), ('far', 1), ('little', 1), ('effort', 1), ('devoted', 1), ('developing', 1), ('practical', 1), ('approach', 1), ('develop', 1), ('deploy', 1), ('ai', 1), ('system', 1), ('meet', 1), ('certain', 1), ('standard', 1), ('nbsp', 1), ('despite', 1), ('importance', 1), ('privacy', 1), ('fairness', 1), ('social', 1)]
[('master', 1), ('essential', 1), ('cryptography', 1), ('cryptanalysis', 1), ('learn', 1), ('put', 1), ('practical', 1), ('use', 1), ('chapter', 1), ('book', 1), ('start', 1), ('introduction', 1), ('concept', 1), ('cryptographic', 1), ('algorithm', 1), ('based', 1), ('used', 1)]
[('bot', 3), ('business', 2), ('see', 1), ('custom', 1), ('chatbots', 1), ('azure', 1), ('service', 1), ('resolve', 1), ('common', 1), ('problem', 1), ('book', 1), ('take', 1), ('many', 1), ('possibility', 1), ('development', 1), ('point', 1), ('view', 1), ('using', 1), ('microsoft', 1), ('technology', 1), ('demonstrates', 1)]
[('game', 5), ('gamemaker', 3), ('design', 2), ('studio', 2), ('create', 1), ('start', 1), ('finish', 1), ('learning', 1), ('programming', 1), ('principle', 1), ('using', 1), ('engine', 1), ('language', 1), ('gml', 1), ('development', 1), ('nbsp', 1), ('cover', 1), ('aspect', 1)]
[('master', 2), ('project', 2), ('way', 2), ('excel', 1), ('le', 1), ('week', 1), ('unique', 1), ('based', 1), ('book', 1), ('face', 1), ('skill', 1), ('building', 1), ('soup', 1), ('nut', 1), ('best', 1), ('make', 1), ('learning', 1), ('stick', 1), ('speed', 1), ('quickly', 1), ('whether', 1)]
[('devops', 2), ('use', 1), ('book', 1), ('stop', 1), ('shop', 1), ('architecting', 1), ('world', 1), ('class', 1), ('environment', 1), ('microsoft', 1), ('technology', 1), ('net', 1), ('azure', 1), ('nbsp', 1), ('synthesis', 1), ('practice', 1), ('tool', 1), ('process', 1), ('together', 1), ('equip', 1), ('software', 1), ('organization', 1), ('move', 1)]
[('clojurescript', 2), ('create', 2), ('application', 2), ('reactive', 2), ('use', 1), ('powerful', 1), ('serverless', 1), ('web', 1), ('responsive', 1), ('engaging', 1), ('book', 1), ('present', 1), ('recipe', 1), ('reagent', 1), ('framework', 1), ('interactive', 1), ('throughout', 1)]
[('visual', 2), ('studio', 2), ('development', 2), ('quickly', 1), ('learn', 1), ('mac', 1), ('integrated', 1), ('environment', 1), ('ide', 1), ('microsoft', 1), ('invested', 1), ('heavily', 1), ('deliver', 1), ('best', 1), ('tool', 1), ('platform', 1), ('operating', 1), ('system', 1)]
[('sap', 3), ('script', 2), ('smartforms', 2), ('data', 2), ('migration', 2), ('master', 1), ('hand', 1), ('exercise', 1), ('information', 1), ('provided', 1), ('book', 1), ('help', 1), ('decode', 1), ('complexity', 1), ('intricacy', 1), ('abap', 1), ('programming', 1), ('pro', 1), ('begin', 1)]
[('software', 3), ('system', 3), ('construction', 2), ('master', 1), ('implement', 1), ('repeatable', 1), ('book', 1), ('closely', 1), ('examines', 1), ('designed', 1), ('tie', 1), ('series', 1), ('activity', 1), ('together', 1), ('needed', 1), ('building', 1), ('intensive', 1), ('nbsp', 1)]
[('j', 2), ('go', 1), ('beyond', 1), ('basic', 1), ('create', 1), ('maintainable', 1), ('modular', 1), ('testable', 1), ('chart', 1), ('package', 1), ('library', 1), ('distributed', 1), ('open', 1), ('source', 1), ('software', 1), ('kept', 1), ('private', 1), ('use', 1), ('book', 1), ('show', 1), ('transform', 1), ('regular', 1)]
[('carry', 1), ('pre', 1), ('planning', 1), ('design', 1), ('programming', 1), ('role', 1), ('playing', 1), ('game', 1), ('rpgs', 1), ('using', 1), ('popular', 1), ('gamemaker', 1), ('studio', 1), ('practical', 1), ('fun', 1), ('book', 1), ('author', 1), ('ben', 1), ('tyers', 1), ('teach', 1), ('create', 1), ('story', 1), ('plotline', 1), ('rpg', 1), ('apply', 1), ('aesthetic', 1)]
[('explore', 1), ('architectural', 1), ('construct', 1), ('azure', 1), ('monitoring', 1), ('capability', 1), ('learn', 1), ('various', 1), ('design', 1), ('implementation', 1), ('aspect', 1), ('complex', 1), ('use', 1), ('case', 1), ('book', 1), ('cover', 1), ('different', 1), ('scenario', 1), ('modern', 1), ('day', 1), ('multi', 1), ('cloud', 1), ('enterprise', 1), ('tool', 1)]
[('step', 2), ('quickly', 1), ('ramp', 1), ('practical', 1), ('knowledge', 1), ('apache', 1), ('jmeter', 1), ('software', 1), ('performance', 1), ('testing', 1), ('focus', 1), ('actual', 1), ('business', 1), ('problem', 1), ('guide', 1), ('cover', 1), ('need', 1), ('know', 1), ('write', 1), ('execute', 1), ('test', 1), ('script', 1), ('verify', 1)]
[('cosmos', 2), ('db', 2), ('application', 2), ('learn', 1), ('main', 1), ('feature', 1), ('azure', 1), ('use', 1), ('microsoft', 1), ('multi', 1), ('model', 1), ('database', 1), ('service', 1), ('data', 1), ('store', 1), ('mission', 1), ('critical', 1), ('clear', 1), ('example', 1), ('help', 1), ('writing', 1), ('take', 1), ('advantage', 1)]
[('attack', 2), ('see', 1), ('privilege', 1), ('insecure', 1), ('password', 1), ('administrative', 1), ('right', 1), ('remote', 1), ('access', 1), ('combined', 1), ('vector', 1), ('breach', 1), ('organization', 1), ('cyber', 1), ('continue', 1), ('increase', 1), ('volume', 1), ('sophistication', 1), ('matter', 1)]
[('use', 1), ('simple', 1), ('programming', 1), ('model', 1), ('net', 1), ('language', 1), ('choice', 1), ('build', 1), ('large', 1), ('distributed', 1), ('system', 1), ('book', 1), ('teach', 1), ('microsoft', 1), ('orleans', 1), ('framework', 1), ('even', 1), ('versed', 1), ('professional', 1), ('software', 1), ('developer', 1), ('expertise', 1), ('another', 1)]
[('practical', 1), ('introduction', 1), ('cockroachdb', 1), ('book', 1), ('start', 1), ('installation', 1), ('foundational', 1), ('concept', 1), ('take', 1), ('creating', 1), ('cluster', 1), ('ready', 1), ('production', 1), ('environment', 1), ('learn', 1), ('create', 1), ('optimize', 1), ('operate', 1)]
[('book', 2), ('rescript', 2), ('functional', 2), ('language', 2), ('web', 2), ('serf', 1), ('succinct', 1), ('guide', 1), ('building', 1), ('application', 1), ('using', 1), ('example', 1), ('feature', 1), ('along', 1), ('explanation', 1), ('fundamental', 1), ('concept', 1), ('programming', 1), ('show', 1)]
[('debugging', 2), ('overhaul', 1), ('technique', 1), ('master', 1), ('theory', 1), ('tool', 1), ('needed', 1), ('debug', 1), ('troubleshoot', 1), ('cloud', 1), ('application', 1), ('production', 1), ('environment', 1), ('book', 1), ('teach', 1), ('skill', 1), ('university', 1), ('often', 1), ('avoid', 1), ('typically', 1), ('consume', 1)]
[('team', 2), ('developer', 2), ('integrate', 2), ('leverage', 1), ('microsoft', 1), ('platform', 1), ('build', 1), ('apps', 1), ('busy', 1), ('want', 1), ('application', 1), ('existing', 1), ('new', 1), ('one', 1), ('use', 1), ('practical', 1), ('hand', 1), ('guide', 1), ('started', 1), ('building', 1)]
[('service', 3), ('dynamic', 2), ('field', 2), ('configure', 1), ('customize', 1), ('microsoft', 1), ('help', 1), ('organization', 1), ('deliver', 1), ('onsite', 1), ('customer', 1), ('location', 1), ('nbsp', 1), ('book', 1), ('guide', 1), ('setting', 1), ('implementing', 1), ('automate', 1), ('workflow', 1)]
[('sap', 2), ('successfactors', 2), ('module', 2), ('take', 1), ('depth', 1), ('look', 1), ('talent', 1), ('complete', 1), ('guide', 1), ('configuration', 1), ('administration', 1), ('best', 1), ('practice', 1), ('nbsp', 1), ('volume', 1), ('series', 1), ('follows', 1), ('logical', 1), ('progression', 1)]
[('use', 2), ('code', 2), ('want', 1), ('power', 1), ('sooner', 1), ('rather', 1), ('later', 1), ('time', 1), ('plow', 1), ('wordy', 1), ('text', 1), ('online', 1), ('manual', 1), ('book', 1), ('quick', 1), ('simple', 1), ('project', 1), ('running', 1), ('includes', 1), ('example', 1), ('applicable', 1), ('many', 1)]
[('php', 3), ('leading', 2), ('author', 1), ('rob', 1), ('richards', 1), ('major', 1), ('contributor', 1), ('xml', 1), ('codebase', 1), ('considered', 1), ('expert', 1), ('topic', 1), ('communitycovers', 1), ('edge', 1), ('branch', 1), ('currently', 1), ('practical', 1), ('real', 1), ('world', 1), ('example', 1), ('amazon', 1)]
[('web', 3), ('ajax', 2), ('asynchronous', 1), ('javascript', 1), ('xml', 1), ('ultimate', 1), ('programming', 1), ('methodology', 1), ('producing', 1), ('dynamic', 1), ('rich', 1), ('experience', 1), ('java', 1), ('developer', 1), ('cry', 1), ('guide', 1), ('showing', 1), ('add', 1), ('functionality', 1), ('application', 1), ('book', 1)]
[('ruby', 2), ('rail', 2), ('social', 2), ('networking', 2), ('site', 2), ('practical', 1), ('show', 1), ('complete', 1), ('development', 1), ('cycle', 1), ('community', 1), ('web', 1), ('learn', 1), ('make', 1), ('best', 1), ('use', 1), ('framework', 1), ('within', 1), ('large', 1), ('project', 1), ('implement', 1)]
[('building', 1), ('skill', 1), ('already', 1), ('expert', 1), ('sql', 1), ('server', 1), ('development', 1), ('help', 1), ('become', 1), ('even', 1), ('better', 1), ('developer', 1), ('focusing', 1), ('best', 1), ('practice', 1), ('demonstrating', 1), ('design', 1), ('high', 1), ('performance', 1), ('maintainable', 1), ('database', 1)]
[('microformats', 2), ('book', 1), ('noted', 1), ('web', 1), ('developer', 1), ('long', 1), ('time', 1), ('wasp', 1), ('member', 1), ('john', 1), ('allsop', 1), ('offer', 1), ('practical', 1), ('example', 1), ('teach', 1), ('need', 1), ('know', 1), ('coverage', 1), ('detail', 1), ('currently', 1), ('available', 1), ('use', 1), ('general', 1)]
[('new', 2), ('database', 2), ('brilliant', 1), ('book', 1), ('give', 1), ('reader', 1), ('lowdown', 1), ('important', 1), ('feature', 1), ('latest', 1), ('release', 1), ('oracle', 1), ('flagship', 1), ('product', 1), ('author', 1), ('sam', 1), ('alapati', 1), ('charles', 1), ('kim', 1), ('experienced', 1), ('administrator', 1), ('go', 1), ('beyond', 1)]
[('edition', 3), ('best', 2), ('selling', 2), ('first', 2), ('linux', 2), ('update', 1), ('introducing', 1), ('ubuntu', 1), ('adapted', 1), ('book', 1), ('guide', 1), ('reader', 1), ('commonly', 1), ('desired', 1), ('yet', 1), ('confusing', 1), ('concept', 1), ('task', 1), ('confronted', 1), ('new', 1)]
[('java', 3), ('guice', 2), ('dependency', 2), ('injection', 2), ('pronounced', 1), ('juice', 1), ('jolt', 1), ('award', 1), ('winning', 1), ('icing', 1), ('cake', 1), ('unlike', 1), ('popular', 1), ('framework', 1), ('spring', 1), ('fully', 1), ('embrace', 1), ('modern', 1), ('language', 1), ('feature', 1), ('combine', 1)]
[('evan', 2), ('robot', 2), ('follow', 1), ('adventure', 1), ('archaeologist', 1), ('uncle', 1), ('explore', 1), ('treasure', 1), ('ancient', 1), ('kingdom', 1), ('help', 1), ('succeed', 1), ('building', 1), ('series', 1), ('five', 1), ('using', 1), ('lego', 1), ('popular', 1), ('mindstorms', 1), ('nxt', 1), ('robotics', 1), ('kit', 1), ('without', 1)]
[('game', 3), ('android', 2), ('remember', 1), ('landmark', 1), ('wolfenstein', 1), ('doom', 1), ('asteroid', 1), ('exciting', 1), ('opportunity', 1), ('build', 1), ('port', 1), ('hottest', 1), ('mobile', 1), ('netbooks', 1), ('platform', 1), ('today', 1), ('google', 1), ('pro', 1), ('teach', 1)]
[('new', 3), ('net', 2), ('first', 1), ('book', 1), ('show', 1), ('vb', 1), ('asp', 1), ('technology', 1), ('featuresprovides', 1), ('complete', 1), ('tutorial', 1), ('walk', 1), ('building', 1), ('web', 1), ('enabled', 1), ('solution', 1), ('using', 1), ('microsoft', 1), ('coding', 1), ('technologyentire', 1), ('generation', 1)]
[('xml', 2), ('web', 2), ('book', 1), ('give', 1), ('date', 1), ('picture', 1), ('topic', 1), ('support', 1), ('modern', 1), ('browser', 1), ('creating', 1), ('driven', 1), ('application', 1), ('using', 1), ('version', 1), ('standard', 1), ('server', 1), ('side', 1), ('language', 1), ('including', 1), ('cs', 1), ('dom', 1), ('xslt', 1), ('xpath', 1)]
[('standard', 1), ('size', 1), ('jdbc', 1), ('cookbook', 1), ('market', 1), ('clear', 1), ('specification', 1), ('problem', 1), ('ready', 1), ('used', 1), ('working', 1), ('code', 1), ('solution', 1), ('cut', 1), ('paste', 1), ('fashion', 1), ('work', 1), ('least', 1), ('leading', 1), ('database', 1), ('mysql', 1), ('oracle', 1), ('existing', 1)]
[('practical', 1), ('procedural', 1), ('information', 1), ('reference', 1), ('material', 1), ('tutorial', 1), ('job', 1), ('presentation', 1), ('targeted', 1), ('toward', 1), ('intermediate', 1), ('advanced', 1), ('audience', 1), ('self', 1), ('contained', 1), ('topic', 1), ('reader', 1), ('part', 1)]
[('ipad', 2), ('made', 1), ('simple', 1), ('learn', 1), ('key', 1), ('feature', 1), ('understand', 1), ('new', 1), ('utilize', 1), ('dozen', 1), ('time', 1), ('saving', 1), ('tip', 1), ('trick', 1), ('book', 1), ('includes', 1), ('page', 1), ('easy', 1), ('instruction', 1), ('carefully', 1)]
[('software', 2), ('many', 1), ('business', 1), ('organization', 1), ('depend', 1), ('older', 1), ('high', 1), ('value', 1), ('php', 1), ('risk', 1), ('abandonment', 1), ('impossible', 1), ('maintain', 1), ('reason', 1), ('designed', 1), ('developer', 1)]
[('site', 4), ('drupal', 1), ('content', 1), ('management', 1), ('framework', 1), ('power', 1), ('web', 1), ('simple', 1), ('online', 1), ('brochure', 1), ('advanced', 1), ('including', 1), ('social', 1), ('networking', 1), ('blog', 1), ('commerce', 1), ('business', 1), ('portal', 1), ('free', 1), ('open', 1), ('source', 1), ('software', 1), ('allows', 1)]
[('perl', 3), ('function', 1), ('date', 1), ('beginner', 1), ('book', 1), ('current', 1), ('version', 1), ('cover', 1), ('new', 1), ('programmer', 1), ('need', 1), ('know', 1), ('using', 1), ('real', 1), ('world', 1), ('example', 1), ('surpasses', 1), ('first', 1), ('edition', 1), ('concise', 1), ('focused', 1)]
[('jboss', 4), ('developer', 2), ('step', 2), ('source', 1), ('non', 1), ('vendor', 1), ('provided', 1), ('documentation', 1), ('focus', 1), ('ee', 1), ('perspective', 1), ('provides', 1), ('instruction', 1), ('useful', 1), ('trick', 1), ('help', 1), ('feature', 1), ('set', 1)]
[('friend', 1), ('ed', 1)]
[('author', 1), ('sam', 1), ('tregar', 1), ('tell', 1), ('programmer', 1), ('best', 1), ('use', 1), ('contribute', 1), ('module', 1), ('open', 1), ('source', 1), ('repository', 1), ('known', 1), ('cpan', 1), ('comprehensive', 1), ('perl', 1), ('archive', 1), ('network', 1)]
[('code', 2), ('generation', 2), ('coverage', 1), ('three', 1), ('significant', 1), ('net', 1), ('mechanism', 1), ('manual', 1), ('xsl', 1), ('xml', 1), ('codedom', 1), ('includes', 1), ('database', 1), ('metadata', 1), ('extraction', 1), ('tool', 1), ('based', 1), ('sql', 1), ('standard', 1), ('real', 1), ('solution', 1), ('problem', 1), ('protecting', 1), ('handcrafted', 1)]
[('teen', 2), ('appleman', 1), ('known', 1), ('bestselling', 1), ('author', 1), ('computing', 1), ('title', 1), ('writing', 1), ('style', 1), ('valuable', 1), ('input', 1), ('review', 1), ('content', 1), ('focus', 1), ('group', 1), ('technology', 1), ('user', 1), ('contains', 1), ('fundamental', 1), ('every', 1), ('know', 1)]
[('samba', 2), ('cover', 1), ('new', 1), ('forthcoming', 1), ('release', 1), ('demonstrates', 1), ('integrate', 1), ('network', 1), ('protocol', 1), ('nfs', 1), ('appletalk', 1), ('lpd', 1), ('ipp', 1), ('dns', 1), ('ntp', 1), ('clear', 1), ('concise', 1), ('book', 1), ('describes', 1), ('inner', 1), ('working', 1), ('smb', 1), ('cifs', 1)]
[('database', 2), ('offer', 1), ('entry', 1), ('point', 1), ('crucial', 1), ('aspect', 1), ('microsoft', 1), ('oriented', 1), ('web', 1), ('development', 1), ('integration', 1), ('active', 1), ('server', 1), ('page', 1), ('cover', 1), ('ado', 1), ('ole', 1), ('db', 1), ('architecture', 1), ('sql', 1), ('recordsets', 1), ('cooky', 1), ('error', 1), ('handling', 1), ('command', 1)]
[('design', 4), ('existing', 2), ('graphic', 2), ('book', 2), ('contain', 2), ('code', 2), ('aimed', 1), ('programmer', 1), ('interface', 1), ('information', 1), ('basic', 1), ('methodology', 1), ('idea', 1), ('concept', 1)]
[('php', 3), ('book', 2), ('matter', 1), ('language', 1), ('familiar', 1), ('benefit', 1), ('beginning', 1), ('rapid', 1), ('introduction', 1), ('syntax', 1), ('basic', 1), ('functionality', 1), ('swiftly', 1), ('understand', 1), ('steer', 1), ('toward', 1), ('advanced', 1), ('issue', 1)]
[('entity', 3), ('framework', 3), ('data', 2), ('access', 2), ('recipe', 1), ('provides', 1), ('exhaustive', 1), ('collection', 1), ('ready', 1), ('use', 1), ('code', 1), ('solution', 1), ('microsoft', 1), ('vision', 1), ('future', 1), ('model', 1), ('centric', 1), ('platform', 1), ('ocean', 1), ('new', 1)]
[('window', 2), ('book', 1), ('provide', 1), ('comprehensive', 1), ('guide', 1), ('developing', 1), ('game', 1), ('mobile', 1), ('platform', 1), ('phone', 1), ('using', 1), ('industry', 1), ('standard', 1), ('programming', 1), ('language', 1), ('vb', 1), ('net', 1), ('walked', 1), ('every', 1), ('aspect', 1)]
[('programming', 2), ('expert', 1), ('practical', 1), ('beautiful', 1), ('language', 1), ('put', 1), ('power', 1), ('elegance', 1), ('functional', 1), ('hand', 1), ('professional', 1), ('developer', 1), ('combination', 1), ('net', 1), ('achieves', 1), ('unrivaled', 1), ('level', 1), ('programmer', 1)]
[('game', 4), ('development', 2), ('android', 2), ('dive', 1), ('create', 1), ('multiplayer', 1), ('online', 1), ('pro', 1), ('web', 1), ('apps', 1), ('hand', 1), ('guide', 1), ('cover', 1), ('theory', 1), ('practice', 1), ('browser', 1), ('platform', 1), ('use', 1), ('cutting', 1), ('edge', 1), ('technology', 1)]
[('opengl', 3), ('e', 3), ('pro', 1), ('android', 1), ('find', 1), ('harness', 1), ('full', 1), ('power', 1), ('design', 1), ('application', 1), ('building', 1), ('fully', 1), ('functional', 1), ('solar', 1), ('system', 1), ('model', 1), ('using', 1), ('open', 1), ('gl', 1), ('set', 1), ('standard', 1), ('computer', 1)]
[('write', 2), ('run', 2), ('promise', 1), ('java', 1), ('always', 1), ('anywhere', 1), ('swt', 1), ('jface', 1), ('make', 1), ('reality', 1), ('different', 1), ('platform', 1), ('major', 1), ('revision', 1), ('eclipse', 1), ('coming', 1), ('probably', 1), ('april', 1), ('book', 1)]
[('creative', 3), ('generative', 2), ('ai', 2), ('reimagine', 1), ('different', 1), ('useful', 1), ('prototyping', 1), ('tool', 1), ('used', 1), ('augment', 1), ('process', 1), ('project', 1), ('gain', 1), ('deeper', 1), ('understanding', 1), ('elevate', 1), ('future', 1), ('nbsp', 1), ('acquire', 1)]
[('developer', 2), ('nbsp', 2), ('documentation', 1), ('powerful', 1), ('tool', 1), ('relation', 1), ('provides', 1), ('necessary', 1), ('information', 1), ('onboarding', 1), ('process', 1), ('keep', 1), ('user', 1), ('informed', 1), ('change', 1), ('release', 1), ('note', 1), ('status', 1), ('report', 1), ('new', 1)]
[('visual', 2), ('studio', 2), ('master', 1), ('extensibility', 1), ('enhanced', 1), ('ide', 1), ('experience', 1), ('book', 1), ('comprehensive', 1), ('guide', 1), ('cover', 1), ('every', 1), ('facet', 1), ('developing', 1), ('debugging', 1), ('publishing', 1), ('extension', 1), ('amplify', 1), ('productivity', 1), ('tooling', 1), ('analysis', 1)]
[('salesforce', 3), ('analytics', 3), ('data', 2), ('query', 2), ('build', 1), ('interactive', 1), ('dashboard', 1), ('using', 1), ('einstein', 1), ('explore', 1), ('quickly', 1), ('easily', 1), ('providing', 1), ('ai', 1), ('powered', 1), ('advanced', 1), ('right', 1), ('manage', 1), ('datasets', 1)]
[('tensorflow', 2), ('learning', 2), ('learn', 1), ('use', 1), ('build', 1), ('machine', 1), ('deep', 1), ('model', 1), ('complete', 1), ('example', 1), ('nbsp', 1), ('book', 1), ('begin', 1), ('introducing', 1), ('framework', 1), ('major', 1), ('change', 1), ('last', 1), ('release', 1), ('next', 1), ('focus', 1), ('building', 1)]
[('nbsp', 2), ('visual', 2), ('studio', 2), ('learn', 1), ('extensibility', 1), ('model', 1), ('enhance', 1), ('integrated', 1), ('development', 1), ('environment', 1), ('ide', 1), ('book', 1), ('cover', 1), ('every', 1), ('aspect', 1), ('starting', 1), ('developing', 1), ('extension', 1), ('publishing', 1), ('making', 1), ('available', 1)]
[('digital', 2), ('transformation', 2), ('equip', 1), ('tool', 1), ('approach', 1), ('within', 1), ('organization', 1), ('successfully', 1), ('today', 1), ('engagement', 1), ('fail', 1), ('reach', 1), ('objective', 1), ('reported', 1), ('survey', 1), ('couchbase', 1), ('challenge', 1)]
[('programming', 3), ('game', 2), ('learn', 1), ('essential', 1), ('unity', 1), ('engine', 1), ('language', 1), ('art', 1), ('object', 1), ('oriented', 1), ('book', 1), ('aimed', 1), ('beginner', 1), ('knowledge', 1), ('experience', 1), ('development', 1), ('nbsp', 1), ('packed', 1), ('example', 1)]
[('career', 2), ('book', 1), ('serve', 1), ('framework', 1), ('software', 1), ('engineer', 1), ('seeking', 1), ('fulfilling', 1), ('wishing', 1), ('stay', 1), ('passionate', 1), ('maintain', 1), ('healthy', 1), ('mental', 1), ('state', 1), ('filled', 1), ('protocol', 1), ('achieve', 1), ('effective', 1), ('life', 1), ('long', 1), ('learning', 1), ('navigate', 1)]
[('technology', 2), ('help', 2), ('book', 1), ('provides', 1), ('insight', 1), ('offer', 1), ('competitive', 1), ('advantage', 1), ('marketing', 1), ('describing', 1), ('predicting', 1), ('customer', 1), ('behavior', 1), ('analytics', 1), ('designing', 1), ('radical', 1), ('product', 1), ('creating', 1)]
[('cloud', 2), ('data', 2), ('warehouse', 2), ('book', 2), ('design', 1), ('architect', 1), ('new', 1), ('generation', 1), ('based', 1), ('using', 1), ('azure', 1), ('aws', 1), ('provides', 1), ('depth', 1), ('understanding', 1), ('build', 1), ('modern', 1), ('native', 1), ('history', 1), ('evolution', 1), ('start', 1)]
[('programming', 3), ('game', 2), ('designed', 1), ('beginner', 1), ('knowledge', 1), ('experience', 1), ('development', 1), ('book', 1), ('teach', 1), ('essential', 1), ('unity', 1), ('engine', 1), ('language', 1), ('art', 1), ('object', 1), ('oriented', 1), ('new', 1), ('concept', 1)]
[('concept', 2), ('book', 1), ('teach', 1), ('fundamental', 1), ('mathematical', 1), ('using', 1), ('unity', 1), ('based', 1), ('custom', 1), ('example', 1), ('explaining', 1), ('implementation', 1), ('demonstrating', 1), ('applied', 1), ('building', 1), ('modern', 1), ('video', 1), ('game', 1), ('functionality', 1), ('learn', 1)]
[('lt', 3), ('gt', 3), ('tmux', 3), ('em', 2), ('terminal', 2), ('taster', 1), ('short', 1), ('concise', 1), ('volume', 1), ('learn', 1), ('multiplexer', 1), ('allows', 1), ('multiplex', 1), ('several', 1), ('virtual', 1), ('console', 1), ('access', 1), ('multiple', 1), ('separate', 1), ('session', 1), ('inside', 1)]
[('lt', 3), ('gt', 3), ('sql', 3), ('function', 3), ('em', 2), ('expert', 2), ('window', 1), ('server', 1), ('take', 1), ('level', 1), ('knowledge', 1), ('windowing', 1), ('turn', 1), ('use', 1), ('powerful', 1), ('solve', 1), ('many', 1), ('query', 1), ('replace', 1), ('slow', 1)]
[('lt', 3), ('gt', 3), ('system', 2), ('company', 1), ('keep', 1), ('existing', 1), ('hardware', 1), ('operating', 1), ('year', 1), ('need', 1), ('diagnose', 1), ('repair', 1), ('problem', 1), ('becoming', 1), ('important', 1), ('pro', 1), ('administrator', 1), ('whatever', 1)]
[('updated', 2), ('syntax', 2), ('lt', 1), ('gt', 1), ('handy', 1), ('quick', 1), ('guide', 1), ('condensed', 1), ('code', 1), ('reference', 1), ('based', 1), ('newly', 1), ('release', 1), ('popular', 1), ('programming', 1), ('language', 1), ('present', 1), ('essential', 1), ('organized', 1), ('format', 1), ('used', 1)]
[('lt', 3), ('gt', 3), ('swift', 2), ('div', 1), ('gary', 1), ('bennett', 1), ('brad', 1), ('lee', 1), ('stefan', 1), ('kaczmarek', 1), ('team', 1), ('behind', 1), ('amp', 1), ('nbsp', 1), ('absolute', 1), ('beginner', 1), ('brings', 1), ('hand', 1), ('introduction', 1), ('new', 1), ('tvos', 1), ('sdk', 1), ('collection', 1), ('app', 1), ('project', 1), ('try', 1)]
[('lt', 5), ('gt', 5), ('swift', 2), ('definitive', 1), ('guide', 1), ('programming', 1), ('language', 1), ('io', 1), ('sdk', 1), ('source', 1), ('code', 1), ('updated', 1), ('reflect', 1), ('xcode', 1), ('date', 1), ('coverage', 1), ('new', 1), ('apple', 1)]
[('lt', 5), ('gt', 5), ('div', 4), ('apps', 2), ('android', 2), ('amp', 1), ('nbsp', 1), ('kind', 1), ('short', 1), ('book', 1), ('walk', 1), ('creating', 1), ('fantastic', 1), ('entertainment', 1), ('newest', 1), ('platform', 1), ('em', 1), ('tv', 1), ('development', 1), ('building', 1), ('medium', 1), ('game', 1)]
[('lt', 3), ('gt', 3), ('div', 2), ('inside', 2), ('amp', 1), ('nbsp', 1), ('develop', 1), ('software', 1), ('hardware', 1), ('never', 1), ('think', 1), ('talking', 1), ('nitty', 1), ('gritty', 1), ('behind', 1), ('button', 1), ('microwave', 1), ('thermostat', 1), ('keyboard', 1), ('used', 1), ('type', 1), ('description', 1)]
[('groovy', 5), ('lt', 2), ('gt', 2), ('div', 1), ('start', 1), ('building', 1), ('powerful', 1), ('apps', 1), ('take', 1), ('advantage', 1), ('dynamic', 1), ('scripting', 1), ('capability', 1), ('language', 1), ('book', 1), ('cover', 1), ('fundamental', 1), ('installing', 1), ('using', 1), ('tool', 1), ('working', 1)]
[('lt', 4), ('gt', 4), ('hbase', 3), ('apache', 2), ('div', 1), ('learn', 1), ('fundamental', 1), ('foundation', 1), ('concept', 1), ('nosql', 1), ('open', 1), ('source', 1), ('database', 1), ('cover', 1), ('data', 1), ('model', 1), ('architecture', 1), ('schema', 1), ('design', 1), ('api', 1), ('administration', 1)]
[('lt', 2), ('gt', 2), ('game', 2), ('javascript', 2), ('web', 2), ('use', 2), ('div', 1), ('develop', 1), ('using', 1), ('scripting', 1), ('language', 1), ('compact', 1), ('short', 1), ('book', 1), ('help', 1), ('learn', 1), ('modern', 1), ('make', 1), ('browser', 1), ('effortless', 1), ('work', 1), ('everywhere', 1)]
[('framework', 2), ('lt', 1), ('gt', 1), ('gentle', 1), ('introduction', 1), ('coco', 1), ('j', 1), ('begin', 1), ('working', 1), ('sprite', 1), ('manipulation', 1), ('animation', 1), ('game', 1), ('development', 1), ('topic', 1), ('book', 1), ('cover', 1), ('environment', 1), ('setup', 1), ('getting', 1), ('started', 1), ('work', 1)]
[('lt', 5), ('gt', 5), ('raspberry', 2), ('pi', 2), ('classroom', 2), ('learn', 1), ('deploy', 1), ('computer', 1), ('lab', 1), ('situation', 1), ('navigate', 1), ('hardware', 1), ('software', 1), ('choice', 1), ('face', 1), ('deploying', 1), ('amp', 1), ('nbsp', 1), ('equips', 1)]
[('lt', 2), ('gt', 2), ('amp', 2), ('nbsp', 2), ('div', 1), ('examine', 1), ('happen', 1), ('deploy', 1), ('blockchain', 1), ('technology', 1), ('sovereign', 1), ('level', 1), ('use', 1), ('create', 1), ('decentralized', 1), ('cashless', 1), ('economy', 1), ('book', 1), ('explains', 1), ('finance', 1), ('economics', 1), ('work', 1), ('today', 1)]
[('lt', 6), ('gt', 6), ('div', 3), ('make', 1), ('pc', 1), ('secure', 1), ('possible', 1), ('limit', 1), ('route', 1), ('attack', 1), ('safely', 1), ('completely', 1), ('remove', 1), ('trace', 1), ('malware', 1), ('virus', 1), ('infection', 1), ('take', 1), ('place', 1), ('whatever', 1), ('version', 1)]
[('lt', 1), ('div', 1), ('gt', 1), ('master', 1), ('continuous', 1), ('integration', 1), ('deployment', 1), ('automated', 1), ('testing', 1), ('android', 1), ('apps', 1), ('see', 1), ('set', 1), ('tear', 1), ('sandbox', 1), ('environment', 1), ('test', 1), ('end', 1), ('user', 1), ('experience', 1), ('learn', 1), ('manage', 1), ('mobile', 1), ('device', 1), ('addition', 1)]
[('perl', 4), ('lt', 1), ('div', 1), ('gt', 1), ('gain', 1), ('skill', 1), ('begin', 1), ('developing', 1), ('application', 1), ('ground', 1), ('hand', 1), ('compact', 1), ('book', 1), ('includes', 1), ('foreword', 1), ('larry', 1), ('wall', 1), ('creator', 1), ('learn', 1), ('enough', 1), ('started', 1), ('building', 1), ('using', 1)]
[('scala', 2), ('functional', 2), ('programming', 2), ('java', 2), ('lt', 1), ('gt', 1), ('master', 1), ('fundamental', 1), ('understand', 1), ('emphasis', 1), ('set', 1), ('apart', 1), ('book', 1), ('help', 1), ('translate', 1), ('already', 1), ('know', 1), ('start', 1), ('journey', 1)]
[('lt', 7), ('gt', 7), ('div', 6), ('learn', 1), ('basic', 1), ('elm', 1), ('platform', 1), ('web', 1), ('application', 1), ('book', 1), ('cover', 1), ('language', 1), ('version', 1), ('important', 1), ('library', 1), ('amp', 1), ('nbsp', 1), ('br', 1), ('reading', 1)]
[('sql', 3), ('using', 2), ('provides', 2), ('lt', 1), ('div', 1), ('gt', 1), ('write', 1), ('statement', 1), ('powerful', 1), ('simpler', 1), ('faster', 1), ('oracle', 1), ('full', 1), ('range', 1), ('feature', 1), ('book', 1), ('clearer', 1), ('way', 1), ('thinking', 1), ('building', 1), ('set', 1), ('practical', 1), ('advice', 1), ('complex', 1)]
[('python', 2), ('lt', 1), ('gt', 1), ('seasoned', 1), ('java', 1), ('developer', 1), ('wish', 1), ('learn', 1), ('perhaps', 1), ('joined', 1), ('project', 1), ('chunk', 1), ('system', 1), ('integration', 1), ('code', 1), ('written', 1), ('maybe', 1), ('need', 1), ('implement', 1), ('report', 1), ('generation', 1), ('module', 1), ('next', 1), ('sprint', 1)]
[('performance', 2), ('lt', 1), ('div', 1), ('gt', 1), ('ass', 1), ('quality', 1), ('prediction', 1), ('classification', 1), ('model', 1), ('way', 1), ('accurately', 1), ('reflect', 1), ('real', 1), ('world', 1), ('improve', 1), ('using', 1), ('state', 1), ('art', 1), ('algorithm', 1), ('committee', 1), ('based', 1), ('decision', 1), ('making', 1)]
[('asp', 2), ('net', 2), ('lt', 1), ('gt', 1), ('migrate', 1), ('existing', 1), ('microservice', 1), ('cluster', 1), ('core', 1), ('improved', 1), ('performance', 1), ('cross', 1), ('platform', 1), ('support', 1), ('evident', 1), ('book', 1), ('help', 1), ('cut', 1), ('noise', 1), ('determine', 1), ('extent', 1), ('migration', 1)]
[('book', 2), ('lt', 1), ('gt', 1), ('provides', 1), ('complete', 1), ('modern', 1), ('guide', 1), ('web', 1), ('scraping', 1), ('using', 1), ('python', 1), ('programming', 1), ('language', 1), ('without', 1), ('glossing', 1), ('important', 1), ('detail', 1), ('best', 1), ('practice', 1), ('written', 1), ('data', 1), ('science', 1), ('audience', 1), ('mind', 1), ('explores', 1)]
[('programming', 3), ('using', 2), ('processing', 2), ('lt', 1), ('gt', 1), ('understand', 1), ('importance', 1), ('even', 1), ('never', 1), ('programmed', 1), ('book', 1), ('teach', 1), ('basic', 1), ('language', 1), ('create', 1), ('sketch', 1), ('personal', 1)]
[('lt', 2), ('gt', 2), ('language', 2), ('div', 1), ('gain', 1), ('accelerated', 1), ('introduction', 1), ('domain', 1), ('specific', 1), ('including', 1), ('coverage', 1), ('regular', 1), ('expression', 1), ('compact', 1), ('depth', 1), ('book', 1), ('show', 1), ('dsl', 1), ('programming', 1), ('specialized', 1), ('particular', 1), ('purpose', 1)]
[('practice', 2), ('lt', 1), ('gt', 1), ('transform', 1), ('organization', 1), ('weighed', 1), ('set', 1), ('devops', 1), ('culture', 1), ('cloud', 1), ('first', 1), ('strategy', 1), ('optimized', 1), ('automation', 1), ('lean', 1), ('engaging', 1), ('discover', 1)]
[('lt', 2), ('gt', 2), ('learn', 2), ('programming', 2), ('commodore', 2), ('system', 2), ('using', 1), ('plus', 1), ('following', 1), ('book', 1), ('child', 1), ('basic', 1), ('fun', 1), ('emulating', 1), ('retro', 1), ('many', 1), ('way', 1), ('bring', 1)]
[('need', 2), ('lt', 1), ('gt', 1), ('discover', 1), ('everything', 1), ('know', 1), ('logical', 1), ('progression', 1), ('small', 1), ('lesson', 1), ('work', 1), ('quickly', 1), ('slowly', 1), ('book', 1), ('divide', 1), ('bite', 1), ('sized', 1), ('chunk', 1), ('help', 1), ('learn', 1), ('language', 1)]
[('reference', 3), ('use', 2), ('guide', 2), ('amp', 2), ('nbsp', 2), ('day', 2), ('android', 2), ('lt', 1), ('gt', 1), ('handy', 1), ('field', 1), ('quick', 1), ('book', 1), ('cheat', 1), ('sheet', 1), ('technique', 1), ('covering', 1), ('java', 1), ('programming', 1), ('focus', 1), ('non', 1), ('ui', 1)]
[('cloud', 3), ('lt', 1), ('div', 1), ('gt', 1), ('regardless', 1), ('organization', 1), ('journey', 1), ('moving', 1), ('inevitability', 1), ('coming', 1), ('year', 1), ('amp', 1), ('nbsp', 1), ('stay', 1), ('best', 1), ('time', 1), ('identify', 1), ('optimal', 1), ('strategy', 1), ('harness', 1)]
[('step', 2), ('cryptocurrencies', 2), ('use', 1), ('practical', 1), ('guide', 1), ('developer', 1), ('entrepreneur', 1), ('create', 1), ('run', 1), ('cryptocurrency', 1), ('author', 1), ('slava', 1), ('gomzin', 1), ('created', 1), ('describes', 1), ('book', 1), ('technology', 1), ('economics', 1)]
[('lt', 2), ('gt', 2), ('transformer', 2), ('div', 1), ('hand', 1), ('introduction', 1), ('architecture', 1), ('using', 1), ('hugging', 1), ('face', 1), ('library', 1), ('book', 1), ('explains', 1), ('changing', 1), ('ai', 1), ('domain', 1), ('particularly', 1), ('amp', 1), ('nbsp', 1), ('area', 1), ('natural', 1), ('language', 1)]
[('application', 3), ('world', 2), ('web', 2), ('journey', 1), ('based', 1), ('development', 1), ('related', 1), ('protocol', 1), ('usage', 1), ('developing', 1), ('decentralized', 1), ('book', 1), ('explain', 1), ('programmable', 1), ('blockchains', 1), ('revolutionizing', 1)]
[('linux', 4), ('lt', 1), ('gt', 1), ('learn', 1), ('sysadmin', 1), ('expert', 1), ('user', 1), ('operating', 1), ('system', 1), ('even', 1), ('previous', 1), ('experience', 1), ('second', 1), ('edition', 1), ('popular', 1), ('highly', 1), ('rated', 1), ('self', 1), ('study', 1), ('training', 1), ('course', 1), ('fully', 1), ('updated', 1), ('fedora', 1)]
[('lt', 1), ('gt', 1), ('book', 1), ('explains', 1), ('implement', 1), ('data', 1), ('lake', 1), ('strategy', 1), ('covering', 1), ('technical', 1), ('business', 1), ('challenge', 1), ('architect', 1), ('commonly', 1), ('face', 1), ('illustrates', 1), ('client', 1), ('requirement', 1), ('drive', 1), ('architectural', 1)]
[('python', 4), ('lt', 2), ('em', 2), ('gt', 2), ('second', 1), ('edition', 1), ('foundation', 1), ('network', 1), ('programming', 1), ('target', 1), ('popular', 1), ('production', 1), ('version', 1), ('language', 1), ('made', 1), ('stride', 1), ('apress', 1), ('released', 1), ('first', 1)]
[('mobile', 2), ('device', 2), ('developed', 1), ('killer', 1), ('app', 1), ('time', 1), ('maximize', 1), ('intellectual', 1), ('investment', 1), ('develop', 1), ('full', 1), ('spectrum', 1), ('platform', 1), ('lt', 1), ('em', 1), ('gt', 1), ('cracking', 1), ('window', 1), ('phone', 1), ('blackberry', 1), ('native', 1)]
[('lt', 2), ('em', 2), ('gt', 2), ('build', 2), ('printer', 2), ('personal', 2), ('printing', 1), ('plastic', 1), ('gateway', 1), ('exciting', 1), ('world', 1), ('fabrication', 1), ('book', 1), ('fabricator', 1), ('capable', 1), ('creating', 1), ('small', 1), ('part', 1)]
[('appeal', 2), ('blogger', 2), ('male', 2), ('female', 2), ('lt', 1), ('gt', 1), ('wide', 1), ('popular', 1), ('culture', 1), ('tech', 1), ('non', 1), ('technical', 1), ('enthusiast', 1), ('book', 1), ('blog', 1), ('even', 1), ('outside', 1), ('digital', 1)]
[('lt', 6), ('gt', 6), ('java', 3), ('em', 2), ('pro', 1), ('nio', 1), ('address', 1), ('three', 1), ('primary', 1), ('element', 1), ('offer', 1), ('new', 1), ('input', 1), ('output', 1), ('apis', 1), ('giving', 1), ('skill', 1), ('write', 1), ('robust', 1), ('scalable', 1), ('application', 1), ('ul', 1), ('li', 1), ('extensive', 1)]
[('lt', 4), ('gt', 4), ('em', 2), ('strong', 2), ('response', 1), ('success', 1), ('first', 1), ('edition', 1), ('foundation', 1), ('game', 1), ('design', 1), ('flash', 1), ('rex', 1), ('van', 1), ('der', 1), ('spuy', 1), ('revised', 1), ('updated', 1), ('code', 1), ('meet', 1), ('current', 1), ('programming', 1), ('best', 1), ('practice', 1), ('focus', 1)]
[('nuget', 2), ('lt', 1), ('gt', 1), ('pro', 1), ('offer', 1), ('solid', 1), ('architectural', 1), ('understanding', 1), ('manage', 1), ('software', 1), ('dependency', 1), ('using', 1), ('open', 1), ('source', 1), ('package', 1), ('management', 1), ('tool', 1), ('net', 1), ('framework', 1), ('providing', 1), ('practical', 1), ('guidance', 1), ('multitude', 1), ('example', 1)]
[('lt', 5), ('gt', 5), ('em', 2), ('business', 2), ('sa', 2), ('practical', 1), ('analytics', 1), ('using', 1), ('hand', 1), ('guide', 1), ('show', 1), ('user', 1), ('businesspeople', 1), ('analyze', 1), ('data', 1), ('effectively', 1), ('real', 1), ('life', 1), ('scenario', 1), ('book', 1), ('begin', 1), ('introduction', 1)]
[('lt', 3), ('gt', 3), ('html', 3), ('em', 2), ('pro', 1), ('visual', 1), ('studio', 1), ('written', 1), ('help', 1), ('asp', 1), ('net', 1), ('developer', 1), ('make', 1), ('leap', 1), ('inevitable', 1), ('exciting', 1), ('world', 1), ('book', 1), ('amp', 1), ('rsquo', 1), ('quickly', 1), ('master', 1), ('new', 1), ('element', 1), ('improved', 1)]
[('lt', 1), ('gt', 1), ('create', 1), ('display', 1), ('interactive', 1), ('graphic', 1), ('build', 1), ('scene', 1), ('animated', 1), ('transition', 1), ('make', 1), ('cross', 1), ('platform', 1), ('responsive', 1), ('game', 1), ('application', 1), ('multiple', 1), ('screen', 1), ('resolution', 1), ('use', 1), ('pixi', 1), ('j', 1), ('spectacular', 1), ('webgl', 1), ('rendering', 1), ('effect', 1), ('learn', 1)]
[('manager', 2), ('lt', 1), ('gt', 1), ('book', 1), ('take', 1), ('concentrated', 1), ('look', 1), ('latest', 1), ('best', 1), ('practice', 1), ('office', 1), ('migration', 1), ('focus', 1), ('need', 1), ('senior', 1), ('others', 1), ('involved', 1), ('key', 1), ('decision', 1), ('moving', 1), ('business', 1)]
[('based', 2), ('lt', 1), ('gt', 1), ('decrease', 1), ('development', 1), ('time', 1), ('market', 1), ('serverless', 1), ('swift', 1), ('event', 1), ('modern', 1), ('architecture', 1), ('full', 1), ('stack', 1), ('developer', 1), ('book', 1), ('review', 1), ('use', 1), ('apache', 1), ('openwhisk', 1), ('framework', 1), ('enrich', 1), ('standalone', 1), ('application', 1), ('cloud', 1)]
[('svelte', 2), ('learn', 1), ('leverage', 1), ('power', 1), ('produce', 1), ('web', 1), ('application', 1), ('efficient', 1), ('fast', 1), ('project', 1), ('oriented', 1), ('book', 1), ('simplifies', 1), ('creating', 1), ('site', 1), ('using', 1), ('start', 1), ('finish', 1), ('little', 1), ('text', 1), ('editor', 1), ('familiar', 1), ('language', 1)]
[('lt', 3), ('gt', 3), ('web', 2), ('apps', 2), ('learn', 1), ('develop', 1), ('deploy', 1), ('dashboard', 1), ('using', 1), ('python', 1), ('programming', 1), ('language', 1), ('integrate', 1), ('algorithm', 1), ('author', 1), ('tshepo', 1), ('chris', 1), ('nokeri', 1), ('begin', 1), ('introducing', 1), ('basic', 1)]
[('ai', 4), ('lt', 2), ('gt', 2), ('div', 1), ('delivering', 1), ('project', 1), ('building', 1), ('organization', 1), ('big', 1), ('challenge', 1), ('enterprise', 1), ('determine', 1), ('whether', 1), ('company', 1), ('succeed', 1), ('fail', 1), ('establishing', 1), ('integrating', 1), ('digital', 1), ('transformation', 1), ('book', 1)]
[('lt', 3), ('gt', 3), ('python', 2), ('br', 2), ('develop', 1), ('versatile', 1), ('io', 1), ('android', 1), ('apps', 1), ('using', 1), ('restful', 1), ('web', 1), ('service', 1), ('dive', 1), ('full', 1), ('stack', 1), ('development', 1), ('django', 1), ('powerful', 1), ('framework', 1), ('react', 1), ('native', 1), ('demand', 1), ('javascript', 1)]
[('blockchain', 2), ('racket', 2), ('lt', 1), ('gt', 1), ('implement', 1), ('scratch', 1), ('covering', 1), ('detail', 1), ('general', 1), ('purpose', 1), ('lisp', 1), ('start', 1), ('exploring', 1), ('solid', 1), ('foundation', 1), ('rest', 1), ('book', 1), ('ready', 1), ('learn', 1)]
[('html', 2), ('game', 2), ('development', 2), ('lt', 1), ('gt', 1), ('break', 1), ('lucrative', 1), ('platform', 1), ('world', 1), ('adding', 1), ('current', 1), ('skillset', 1), ('zarrar', 1), ('chishti', 1), ('trained', 1), ('developer', 1), ('wide', 1), ('range', 1), ('programming', 1), ('discipline', 1), ('cross', 1)]
[('android', 3), ('using', 2), ('tool', 2), ('lt', 1), ('div', 1), ('gt', 1), ('build', 1), ('apps', 1), ('popular', 1), ('efficient', 1), ('studio', 1), ('suite', 1), ('integrated', 1), ('development', 1), ('environment', 1), ('ide', 1), ('developer', 1), ('java', 1), ('apis', 1), ('book', 1), ('learn', 1), ('latest', 1), ('productive', 1)]
[('lt', 1), ('gt', 1), ('explore', 1), ('aspect', 1), ('aurelia', 1), ('framework', 1), ('including', 1), ('routing', 1), ('templating', 1), ('data', 1), ('binding', 1), ('custom', 1), ('element', 1), ('event', 1), ('aggregation', 1), ('service', 1), ('feature', 1), ('plugins', 1), ('etc', 1), ('see', 1), ('tie', 1), ('piece', 1), ('together', 1), ('walk', 1), ('away', 1)]
[('lt', 1), ('gt', 1), ('optimize', 1), ('develop', 1), ('design', 1), ('pytorch', 1), ('tensorflow', 1), ('model', 1), ('specific', 1), ('problem', 1), ('using', 1), ('microsoft', 1), ('neural', 1), ('network', 1), ('intelligence', 1), ('nni', 1), ('toolkit', 1), ('book', 1), ('includes', 1), ('practical', 1), ('example', 1), ('illustrating', 1), ('automated', 1), ('deep', 1), ('learning', 1), ('approach', 1)]
[('lt', 3), ('gt', 3), ('web', 3), ('go', 3), ('development', 2), ('language', 2), ('take', 1), ('deep', 1), ('dive', 1), ('using', 1), ('programming', 1), ('build', 1), ('apps', 1), ('restful', 1), ('service', 1), ('create', 1), ('reliable', 1), ('efficient', 1), ('software', 1), ('provides', 1), ('fundamental', 1)]
[('basic', 3), ('game', 3), ('android', 2), ('lt', 1), ('gt', 1), ('learn', 1), ('needed', 1), ('join', 1), ('rank', 1), ('successful', 1), ('developer', 1), ('start', 1), ('design', 1), ('fundamental', 1), ('programming', 1), ('progress', 1), ('toward', 1), ('creating', 1), ('engine', 1), ('playable', 1)]
[('lt', 3), ('gt', 3), ('swift', 2), ('io', 1), ('developer', 1), ('planning', 1), ('become', 1), ('learning', 1), ('priority', 1), ('book', 1), ('amp', 1), ('nbsp', 1), ('tell', 1), ('everything', 1), ('need', 1), ('speed', 1), ('swiftly', 1), ('start', 1), ('playground', 1)]
[('lt', 3), ('gt', 3), ('step', 2), ('python', 2), ('div', 2), ('written', 1), ('illustrated', 1), ('guide', 1), ('book', 1), ('introduce', 1), ('example', 1), ('using', 1), ('latest', 1), ('version', 1), ('language', 1), ('amp', 1), ('nbsp', 1), ('br', 1), ('begin', 1), ('learning', 1), ('set', 1), ('environment', 1)]
[('lt', 11), ('gt', 11), ('em', 6), ('business', 2), ('pro', 1), ('freeware', 1), ('open', 1), ('source', 1), ('solution', 1), ('practical', 1), ('guide', 1), ('small', 1), ('owner', 1), ('seeking', 1), ('viable', 1), ('alternative', 1)]
[('powershell', 2), ('quickly', 2), ('lt', 1), ('gt', 1), ('book', 1), ('show', 1), ('use', 1), ('pinpoint', 1), ('diagnose', 1), ('solve', 1), ('problem', 1), ('window', 1), ('server', 1), ('environment', 1), ('reducing', 1), ('need', 1), ('external', 1), ('tool', 1), ('ensuring', 1), ('stay', 1), ('date', 1)]
[('lt', 6), ('gt', 6), ('div', 5), ('dive', 1), ('world', 1), ('mvvm', 1), ('learn', 1), ('build', 1), ('modern', 1), ('window', 1), ('application', 1), ('prepare', 1), ('cross', 1), ('platform', 1), ('development', 1), ('book', 1), ('introduces', 1), ('right', 1), ('mindset', 1)]
[('lt', 4), ('gt', 4), ('div', 3), ('application', 3), ('develop', 2), ('cloud', 1), ('based', 1), ('rapidly', 1), ('using', 1), ('oracle', 1), ('express', 1), ('apex', 1), ('platform', 1), ('learn', 1), ('comprehensive', 1), ('functional', 1), ('business', 1), ('deployed', 1)]
[('wso', 3), ('esb', 3), ('lt', 1), ('gt', 1), ('gain', 1), ('strong', 1), ('foundation', 1), ('core', 1), ('concept', 1), ('acquire', 1), ('proven', 1), ('set', 1), ('guideline', 1), ('designed', 1), ('started', 1), ('quickly', 1), ('efficiently', 1), ('book', 1), ('focus', 1), ('various', 1), ('enterprise', 1), ('integration', 1), ('capability', 1)]
[('lt', 2), ('gt', 2), ('phoenix', 2), ('div', 1), ('leverage', 1), ('ansi', 1), ('sql', 1), ('engine', 1), ('built', 1), ('top', 1), ('highly', 1), ('distributed', 1), ('scalable', 1), ('nosql', 1), ('framework', 1), ('hbase', 1), ('learn', 1), ('basic', 1), ('best', 1), ('practice', 1), ('adopted', 1), ('enable', 1), ('high', 1), ('write', 1), ('throughput', 1)]
[('management', 2), ('lt', 1), ('div', 1), ('gt', 1), ('take', 1), ('container', 1), ('cluster', 1), ('next', 1), ('level', 1), ('learn', 1), ('administer', 1), ('configure', 1), ('kubernetes', 1), ('coreos', 1), ('apply', 1), ('suitable', 1), ('design', 1), ('pattern', 1), ('configmaps', 1), ('autoscaling', 1), ('elastic', 1), ('resource', 1), ('usage', 1), ('high', 1)]
[('lt', 4), ('gt', 4), ('audio', 3), ('div', 2), ('sound', 2), ('linux', 2), ('program', 1), ('using', 1), ('practical', 1), ('guide', 1), ('learn', 1), ('use', 1), ('dsps', 1), ('sampled', 1), ('midi', 1), ('karaoke', 1), ('streaming', 1), ('programming', 1), ('take', 1)]
[('computer', 2), ('raspberry', 1), ('pi', 1), ('minimalist', 1), ('get', 1), ('power', 1), ('run', 1), ('full', 1), ('linux', 1), ('operating', 1), ('system', 1), ('many', 1), ('desktop', 1), ('command', 1), ('line', 1), ('tool', 1), ('push', 1), ('operate', 1), ('level', 1), ('book', 1)]
[('lt', 3), ('gt', 3), ('div', 2), ('teach', 2), ('learn', 1), ('gui', 1), ('application', 1), ('development', 1), ('ground', 1), ('taking', 1), ('practical', 1), ('approach', 1), ('building', 1), ('simple', 1), ('project', 1), ('fundamental', 1), ('using', 1), ('pyqt', 1), ('chapter', 1), ('gradually', 1), ('move', 1), ('advanced', 1)]
[('learning', 3), ('machine', 2), ('problem', 2), ('using', 2), ('lt', 1), ('div', 1), ('gt', 1), ('solve', 1), ('ai', 1), ('complete', 1), ('real', 1), ('world', 1), ('code', 1), ('example', 1), ('solution', 1), ('approach', 1), ('book', 1), ('make', 1), ('deep', 1), ('accessible', 1), ('everyday', 1), ('developer', 1), ('providing', 1), ('combination', 1)]
[('shaders', 2), ('shader', 2), ('step', 2), ('time', 1), ('stop', 1), ('thinking', 1), ('magical', 1), ('use', 1), ('turn', 1), ('data', 1), ('stunning', 1), ('visual', 1), ('effect', 1), ('hand', 1), ('dirty', 1), ('building', 1), ('introduction', 1), ('development', 1), ('game', 1)]
[('android', 2), ('apps', 2), ('kotlin', 2), ('lt', 1), ('div', 1), ('gt', 1), ('build', 1), ('learn', 1), ('essential', 1), ('popular', 1), ('programming', 1), ('language', 1), ('apis', 1), ('book', 1), ('teach', 1), ('key', 1), ('skill', 1), ('technique', 1), ('important', 1), ('creating', 1), ('apart', 1), ('introducing', 1)]
[('lt', 1), ('gt', 1), ('practical', 1), ('guide', 1), ('analyzing', 1), ('troubleshooting', 1), ('sql', 1), ('server', 1), ('performance', 1), ('using', 1), ('wait', 1), ('statistic', 1), ('learn', 1), ('identify', 1), ('precisely', 1), ('query', 1), ('running', 1), ('slowly', 1), ('measure', 1), ('amount', 1), ('time', 1), ('consumed', 1), ('bottleneck', 1)]
[('linux', 4), ('lt', 3), ('gt', 3), ('ubuntu', 2), ('em', 2), ('fastest', 1), ('growing', 1), ('based', 1), ('operating', 1), ('system', 1), ('beginning', 1), ('fifth', 1), ('edition', 1), ('teach', 1), ('including', 1), ('never', 1), ('used', 1), ('use', 1), ('productively', 1), ('whether', 1), ('come', 1)]
[('lt', 4), ('gt', 4), ('asp', 3), ('net', 3), ('em', 2), ('remains', 1), ('microsoft', 1), ('preferred', 1), ('technology', 1), ('creating', 1), ('dynamic', 1), ('website', 1), ('providing', 1), ('developer', 1), ('unrivaled', 1), ('power', 1), ('flexibility', 1), ('pro', 1), ('complete', 1), ('reference', 1)]
[('lt', 2), ('em', 2), ('gt', 2), ('big', 2), ('data', 2), ('architecture', 2), ('application', 1), ('pattern', 1), ('recipe', 1), ('provides', 1), ('insight', 1), ('heterogeneous', 1), ('infrastructure', 1), ('database', 1), ('visualization', 1), ('analytics', 1), ('tool', 1), ('used', 1), ('realizing', 1), ('solution', 1)]
[('apps', 2), ('privacy', 2), ('leverage', 1), ('best', 1), ('technique', 1), ('provided', 1), ('apple', 1), ('build', 1), ('maximum', 1), ('user', 1), ('book', 1), ('explores', 1), ('step', 1), ('implementing', 1), ('answer', 1), ('workflow', 1), ('question', 1), ('information', 1)]
[('learning', 4), ('lt', 4), ('gt', 4), ('div', 3), ('deep', 2), ('implement', 1), ('application', 1), ('using', 1), ('tensorflow', 1), ('depth', 1), ('conceptual', 1), ('explanation', 1), ('amp', 1), ('nbsp', 1), ('br', 1), ('start', 1), ('offer', 1), ('machine', 1)]
[('architecture', 2), ('component', 2), ('design', 1), ('build', 1), ('microsoft', 1), ('azure', 1), ('platform', 1), ('specifically', 1), ('data', 1), ('driven', 1), ('etl', 1), ('application', 1), ('modern', 1), ('cloud', 1), ('rely', 1), ('serverless', 1), ('book', 1), ('help', 1), ('identify', 1)]
[('technology', 2), ('discover', 1), ('new', 1), ('way', 1), ('thinking', 1), ('business', 1), ('application', 1), ('light', 1), ('massive', 1), ('industry', 1), ('shift', 1), ('toward', 1), ('cloud', 1), ('computing', 1), ('reactive', 1), ('programming', 1), ('book', 1), ('synthesizes', 1), ('technique', 1), ('event', 1), ('sourcing', 1), ('command', 1), ('query', 1)]
[('employee', 2), ('lt', 1), ('gt', 1), ('use', 1), ('power', 1), ('analytics', 1), ('knowledge', 1), ('management', 1), ('discovery', 1), ('improved', 1), ('retention', 1), ('insight', 1), ('unique', 1), ('collaborative', 1), ('learning', 1), ('need', 1), ('organization', 1), ('using', 1), ('viva', 1), ('microsoft', 1), ('new', 1), ('experience', 1)]
[('lt', 4), ('gt', 4), ('ethereum', 2), ('div', 1), ('build', 1), ('product', 1), ('top', 1), ('new', 1), ('expansive', 1), ('technological', 1), ('stack', 1), ('writing', 1), ('good', 1), ('web', 1), ('application', 1), ('requires', 1), ('planning', 1), ('care', 1), ('deft', 1), ('technical', 1), ('skill', 1), ('execution', 1), ('model', 1), ('present', 1)]
[('amp', 2), ('nbsp', 2), ('angular', 2), ('lt', 1), ('gt', 1), ('written', 1), ('author', 1), ('michael', 1), ('callaghan', 1), ('personal', 1), ('experience', 1), ('teaching', 1), ('web', 1), ('development', 1), ('team', 1), ('book', 1), ('serve', 1), ('practical', 1), ('guide', 1), ('help', 1), ('adopt', 1)]
[('lt', 7), ('gt', 7), ('version', 2), ('net', 2), ('ul', 2), ('based', 1), ('newest', 1), ('visual', 1), ('studio', 1), ('framework', 1), ('topic', 1), ('area', 1), ('include', 1), ('specific', 1), ('code', 1)]
[('lt', 3), ('gt', 3), ('best', 2), ('strong', 2), ('tom', 2), ('second', 1), ('edition', 1), ('selling', 1), ('book', 1), ('kyte', 1), ('ask', 1), ('fame', 1), ('continues', 1), ('bring', 1), ('thinking', 1), ('apply', 1), ('oracle', 1), ('database', 1), ('produce', 1), ('scalable', 1), ('application', 1), ('perform', 1)]
[('friend', 1), ('ed', 1)]
[('io', 3), ('testing', 2), ('discover', 1), ('tool', 1), ('unit', 1), ('work', 1), ('test', 1), ('driven', 1), ('environment', 1), ('book', 1), ('reveals', 1), ('crucial', 1), ('capability', 1), ('developer', 1), ('toolset', 1), ('minimum', 1), ('requirement', 1)]
[('lt', 3), ('div', 3), ('gt', 3), ('step', 2), ('learn', 1), ('program', 1), ('rust', 1), ('easy', 1), ('manner', 1), ('unix', 1), ('linux', 1), ('shell', 1), ('macos', 1), ('window', 1), ('command', 1), ('line', 1), ('amp', 1), ('nbsp', 1), ('book', 1), ('build', 1), ('knowledge', 1), ('gained', 1), ('previous', 1), ('chapter', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('advanced', 2), ('audio', 2), ('amp', 2), ('nbsp', 2), ('learn', 1), ('technique', 1), ('improve', 1), ('visualization', 1), ('skill', 1), ('thinking', 1), ('machine', 1), ('dream', 1), ('thmad', 1), ('book', 1), ('concentrate', 1), ('example', 1), ('usage', 1), ('pattern', 1), ('including', 1), ('using', 1)]
[('agent', 2), ('lt', 1), ('div', 1), ('gt', 1), ('discover', 1), ('level', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('present', 1), ('unimaginable', 1), ('scenario', 1), ('ordinary', 1), ('life', 1), ('book', 1), ('explores', 1), ('subject', 1), ('neural', 1), ('network', 1), ('multi', 1), ('system', 1), ('supervised', 1), ('learning', 1)]
[('html', 2), ('javascript', 2), ('lt', 1), ('gt', 1), ('gain', 1), ('deep', 1), ('practical', 1), ('knowledge', 1), ('provide', 1), ('introduction', 1), ('programming', 1), ('enable', 1), ('build', 1), ('interactive', 1), ('website', 1), ('completely', 1), ('updated', 1), ('second', 1), ('edition', 1), ('explains', 1), ('cs', 1), ('context', 1)]
[('android', 3), ('studio', 3), ('lt', 2), ('div', 2), ('gt', 2), ('reference', 2), ('concise', 1), ('book', 1), ('present', 1), ('essential', 1), ('function', 1), ('organized', 1), ('format', 1), ('used', 1), ('handy', 1), ('quickly', 1), ('demonstrate', 1), ('usage', 1)]
[('lt', 4), ('gt', 4), ('team', 2), ('div', 1), ('learn', 1), ('build', 1), ('data', 1), ('science', 1), ('within', 1), ('organization', 1), ('rather', 1), ('hiring', 1), ('outside', 1), ('teach', 1), ('ask', 1), ('right', 1), ('question', 1), ('gain', 1), ('actionable', 1), ('insight', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('magento', 2), ('amp', 2), ('nbsp', 2), ('learn', 1), ('work', 1), ('manage', 1), ('via', 1), ('easy', 1), ('advanced', 1), ('technique', 1), ('continues', 1), ('top', 1), ('choice', 1), ('ecommerce', 1), ('solution', 1), ('small', 1), ('large', 1), ('business', 1), ('many', 1), ('system', 1), ('still', 1), ('running', 1)]
[('role', 3), ('lt', 1), ('div', 1), ('gt', 1), ('discover', 1), ('based', 1), ('simulation', 1), ('game', 1), ('designed', 1), ('introduce', 1), ('devops', 1), ('unusual', 1), ('way', 1), ('working', 1), ('lego', 1), ('chocolate', 1), ('using', 1), ('avatar', 1), ('persona', 1), ('card', 1), ('gain', 1), ('understanding', 1), ('dev', 1), ('ops', 1)]
[('compliance', 2), ('incredible', 2), ('gain', 1), ('greater', 1), ('corporate', 1), ('training', 1), ('addressing', 1), ('heart', 1), ('awareness', 1), ('v', 1), ('problem', 1), ('human', 1), ('strength', 1), ('weakness', 1), ('information', 1), ('security', 1), ('professional', 1)]
[('lt', 2), ('gt', 2), ('exam', 2), ('div', 1), ('prepare', 1), ('microsoft', 1), ('certification', 1), ('programming', 1), ('concept', 1), ('presented', 1), ('along', 1), ('quick', 1), ('summary', 1), ('code', 1), ('challenge', 1), ('question', 1), ('review', 1), ('practice', 1), ('key', 1)]
[('everything', 2), ('deployment', 2), ('lt', 1), ('div', 1), ('gt', 1), ('learn', 1), ('need', 1), ('set', 1), ('full', 1), ('featured', 1), ('automated', 1), ('pipeline', 1), ('xamarin', 1), ('development', 1), ('automate', 1), ('build', 1), ('step', 1), ('delivery', 1), ('customer', 1), ('thought', 1), ('level', 1)]
[('function', 4), ('write', 2), ('lt', 1), ('div', 1), ('gt', 1), ('master', 1), ('discover', 1), ('functional', 1), ('program', 1), ('concise', 1), ('book', 1), ('make', 1), ('pure', 1), ('avoiding', 1), ('side', 1), ('effect', 1), ('manipulate', 1), ('construct', 1), ('complex', 1)]
[('programming', 2), ('book', 2), ('lt', 1), ('gt', 1), ('learn', 1), ('python', 1), ('creating', 1), ('text', 1), ('adventure', 1), ('teach', 1), ('fundamental', 1), ('organize', 1), ('code', 1), ('coding', 1), ('amp', 1), ('nbsp', 1), ('best', 1), ('practice', 1), ('end', 1), ('working', 1), ('game', 1)]
[('full', 2), ('angularjs', 2), ('web', 2), ('lt', 1), ('div', 1), ('gt', 1), ('introduced', 1), ('stack', 1), ('enterprise', 1), ('development', 1), ('whether', 1), ('new', 1), ('spring', 1), ('restful', 1), ('service', 1), ('seasoned', 1), ('expert', 1), ('able', 1), ('build', 1), ('featured', 1), ('application', 1), ('scratch', 1), ('using', 1)]
[('use', 2), ('platform', 2), ('java', 2), ('application', 2), ('lt', 1), ('gt', 1), ('javafx', 1), ('create', 1), ('rich', 1), ('client', 1), ('discover', 1), ('powerful', 1), ('based', 1), ('ui', 1), ('capable', 1), ('handling', 1), ('large', 1), ('scale', 1), ('data', 1), ('driven', 1), ('business', 1), ('pc', 1), ('mobile', 1)]
[('android', 3), ('lt', 2), ('em', 2), ('gt', 2), ('code', 2), ('decompiling', 1), ('look', 1), ('reason', 1), ('apps', 1), ('decompiled', 1), ('recover', 1), ('source', 1), ('mean', 1), ('developer', 1), ('protect', 1), ('prying', 1), ('eye', 1), ('good', 1), ('way', 1)]
[('lt', 5), ('gt', 5), ('terraform', 2), ('infrastructure', 2), ('book', 1), ('comprehensive', 1), ('guide', 1), ('employing', 1), ('code', 1), ('automation', 1), ('application', 1), ('operation', 1), ('reverse', 1), ('engineering', 1), ('begin', 1)]
[('smart', 2), ('contract', 2), ('web', 2), ('lt', 1), ('div', 1), ('gt', 1), ('use', 1), ('book', 1), ('write', 1), ('ethereum', 1), ('blockchain', 1), ('test', 1), ('deploy', 1), ('create', 1), ('application', 1), ('interact', 1), ('new', 1), ('edition', 1), ('expanded', 1), ('updated', 1), ('cover', 1), ('amp', 1), ('nbsp', 1), ('j', 1)]
[('lt', 3), ('gt', 3), ('python', 2), ('augment', 1), ('knowledge', 1), ('entertaining', 1), ('learning', 1), ('guide', 1), ('feature', 1), ('exercise', 1), ('programming', 1), ('puzzle', 1), ('solution', 1), ('challenge', 1), ('help', 1), ('prepare', 1), ('next', 1), ('exam', 1), ('job', 1), ('interview', 1)]
[('dax', 2), ('lt', 1), ('gt', 1), ('take', 1), ('concise', 1), ('approach', 1), ('learning', 1), ('function', 1), ('language', 1), ('power', 1), ('bi', 1), ('powerpivot', 1), ('work', 1), ('book', 1), ('focus', 1), ('explaining', 1), ('core', 1), ('concept', 1), ('ordinary', 1), ('folk', 1), ('gain', 1), ('skill', 1), ('required', 1), ('tackle', 1), ('complex', 1), ('data', 1)]
[('lt', 3), ('gt', 3), ('div', 2), ('operation', 2), ('welcome', 1), ('hand', 1), ('guide', 1), ('artificial', 1), ('intelligence', 1), ('aiops', 1), ('book', 1), ('provides', 1), ('depth', 1), ('coverage', 1), ('including', 1), ('technical', 1), ('aspect', 1), ('fundamental', 1), ('machine', 1), ('learning', 1), ('ml', 1)]
[('example', 2), ('lt', 1), ('div', 1), ('gt', 1), ('handy', 1), ('quick', 1), ('reference', 1), ('book', 1), ('introduced', 1), ('several', 1), ('data', 1), ('science', 1), ('package', 1), ('use', 1), ('concept', 1), ('covered', 1), ('concisely', 1), ('many', 1), ('illustrative', 1), ('using', 1), ('following', 1), ('apis', 1)]
[('android', 2), ('kotlin', 2), ('lt', 1), ('div', 1), ('gt', 1), ('develop', 1), ('apps', 1), ('create', 1), ('elegant', 1), ('program', 1), ('java', 1), ('equivalent', 1), ('revised', 1), ('book', 1), ('cover', 1), ('various', 1), ('aspect', 1), ('modern', 1), ('app', 1), ('professional', 1), ('expected', 1), ('encounter', 1), ('use', 1), ('latest', 1)]
[('ass', 2), ('cloud', 2), ('plan', 1), ('develop', 1), ('implement', 1), ('manage', 1), ('aws', 1), ('ec', 1), ('instance', 1), ('formation', 1), ('using', 1), ('json', 1), ('template', 1), ('bash', 1), ('programming', 1), ('language', 1), ('watch', 1), ('monitoring', 1), ('book', 1), ('help', 1), ('public', 1), ('private', 1), ('sector', 1), ('comprehend', 1), ('evaluate', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('use', 2), ('learn', 1), ('everything', 1), ('need', 1), ('know', 1), ('making', 1), ('window', 1), ('easier', 1), ('see', 1), ('hear', 1), ('touch', 1), ('whether', 1), ('using', 1), ('setting', 1), ('another', 1), ('person', 1), ('teaching', 1), ('others', 1), ('ease', 1), ('work', 1)]
[('lt', 3), ('gt', 3), ('php', 3), ('scripting', 3), ('reference', 2), ('em', 2), ('pocket', 1), ('guide', 1), ('updated', 1), ('new', 1), ('release', 1), ('condensed', 1), ('code', 1), ('rich', 1), ('syntax', 1), ('handbook', 1), ('language', 1), ('quick', 1), ('present', 1)]
[('lt', 1), ('div', 1), ('gt', 1), ('discover', 1), ('essential', 1), ('building', 1), ('block', 1), ('common', 1), ('form', 1), ('deep', 1), ('belief', 1), ('network', 1), ('step', 1), ('book', 1), ('provides', 1), ('intuitive', 1), ('motivation', 1), ('summary', 1), ('important', 1), ('equation', 1), ('relevant', 1), ('topic', 1), ('concludes', 1), ('highly', 1)]
[('lt', 4), ('gt', 4), ('div', 3), ('design', 2), ('data', 2), ('use', 1), ('microsoft', 1), ('azure', 1), ('optimally', 1), ('solution', 1), ('save', 1), ('time', 1), ('money', 1), ('scenario', 1), ('presented', 1), ('covering', 1), ('analysis', 1), ('integration', 1), ('monitoring', 1), ('derivative', 1), ('br', 1), ('book', 1)]
[('spark', 3), ('lt', 2), ('gt', 2), ('application', 2), ('div', 1), ('develop', 1), ('big', 1), ('data', 1), ('landscape', 1), ('hadoop', 1), ('book', 1), ('explains', 1), ('role', 1), ('developing', 1), ('scalable', 1), ('machine', 1), ('learning', 1), ('analytics', 1), ('cloud', 1), ('technology', 1), ('beginning', 1), ('apache', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('benefit', 1), ('microsoft', 1), ('robust', 1), ('suite', 1), ('security', 1), ('cryptography', 1), ('primitive', 1), ('create', 1), ('complete', 1), ('hybrid', 1), ('encryption', 1), ('scheme', 1), ('protect', 1), ('data', 1), ('breach', 1), ('highly', 1), ('practical', 1), ('book', 1), ('teach', 1), ('use', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('oracle', 2), ('high', 2), ('availability', 2), ('technology', 2), ('work', 1), ('database', 1), ('disaster', 1), ('management', 1), ('book', 1), ('cover', 1), ('place', 1), ('discus', 1), ('configure', 1), ('engineered', 1), ('system', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('agile', 2), ('team', 2), ('gain', 1), ('essential', 1), ('knowledge', 1), ('use', 1), ('vsts', 1), ('tfs', 1), ('effectively', 1), ('empower', 1), ('book', 1), ('provides', 1), ('deep', 1), ('analysis', 1), ('issue', 1), ('face', 1), ('overcome', 1), ('adopting', 1), ('implementing', 1), ('proper', 1)]
[('learn', 2), ('program', 2), ('assembly', 2), ('lt', 1), ('div', 1), ('gt', 1), ('many', 1), ('programmer', 1), ('limited', 1), ('effectiveness', 1), ('deep', 1), ('understanding', 1), ('computer', 1), ('actually', 1), ('work', 1), ('hood', 1), ('amp', 1), ('nbsp', 1), ('language', 1)]
[('jakarta', 3), ('ee', 2), ('security', 2), ('lt', 1), ('div', 1), ('gt', 1), ('refer', 1), ('definitive', 1), ('authoritative', 1), ('book', 1), ('understand', 1), ('spec', 1), ('authentication', 1), ('amp', 1), ('authorization', 1), ('underlying', 1), ('official', 1), ('foundation', 1), ('implementation', 1), ('discussed', 1)]
[('lt', 2), ('gt', 2), ('database', 2), ('container', 2), ('administrator', 2), ('div', 1), ('discover', 1), ('benefit', 1), ('running', 1), ('oracle', 1), ('linux', 1), ('book', 1), ('approach', 1), ('perspective', 1), ('developer', 1), ('system', 1), ('explains', 1), ('difference', 1)]
[('testing', 2), ('traditional', 2), ('lt', 1), ('gt', 1), ('many', 1), ('book', 1), ('written', 1), ('software', 1), ('discus', 1), ('general', 1), ('framework', 1), ('perspective', 1), ('unfortunately', 1), ('test', 1), ('design', 1), ('technique', 1), ('often', 1), ('ineffective', 1), ('unreliable', 1)]
[('microsoft', 2), ('new', 2), ('smartphone', 2), ('lt', 1), ('gt', 1), ('window', 1), ('phone', 1), ('created', 1), ('completely', 1), ('operating', 1), ('system', 1), ('focus', 1), ('allowing', 1), ('user', 1), ('productive', 1), ('way', 1), ('offering', 1), ('seamless', 1), ('integration', 1), ('use', 1), ('office', 1)]
[('amp', 2), ('apps', 2), ('phenomenal', 1), ('success', 1), ('iphone', 1), ('ipad', 1), ('ipod', 1), ('touch', 1), ('ushered', 1), ('gold', 1), ('rush', 1), ('developer', 1), ('highly', 1), ('competitive', 1), ('app', 1), ('store', 1), ('become', 1), ('increasingly', 1), ('difficult', 1), ('new', 1)]
[('openoffice', 2), ('calc', 2), ('lt', 2), ('strong', 2), ('gt', 2), ('powerful', 1), ('widespread', 1), ('open', 1), ('source', 1), ('spreadsheet', 1), ('application', 1), ('existence', 1), ('real', 1), ('alternative', 1), ('excel', 1), ('jacek', 1), ('artymiak', 1), ('widely', 1), ('regarded', 1), ('authority', 1)]
[('lt', 3), ('gt', 3), ('em', 2), ('arduino', 2), ('project', 1), ('save', 1), ('world', 1), ('show', 1), ('take', 1), ('little', 1), ('tool', 1), ('wire', 1), ('sensor', 1), ('board', 1), ('bit', 1), ('gumption', 1), ('build', 1), ('device', 1), ('lower', 1), ('energy', 1), ('bill', 1), ('help', 1), ('grow', 1)]
[('arduino', 2), ('kinect', 2), ('lt', 2), ('em', 2), ('gt', 2), ('done', 1), ('tinkering', 1), ('wondered', 1), ('incorporate', 1), ('way', 1), ('around', 1), ('book', 1), ('author', 1), ('project', 1), ('show', 1), ('create', 1), ('amazing', 1)]
[('lt', 3), ('gt', 3), ('em', 2), ('fast', 2), ('asp', 2), ('net', 2), ('ultra', 1), ('present', 1), ('practical', 1), ('approach', 1), ('building', 1), ('scalable', 1), ('web', 1), ('site', 1), ('using', 1), ('sql', 1), ('server', 1), ('addition', 1), ('wealth', 1), ('tip', 1), ('trick', 1), ('secret', 1), ('find', 1), ('advice', 1), ('code', 1), ('example', 1)]
[('focus', 2), ('exclusively', 2), ('asp', 2), ('net', 2), ('mvc', 2), ('framework', 2), ('lt', 1), ('gt', 1), ('hundred', 1), ('page', 1), ('book', 1), ('best', 1), ('use', 1), ('build', 1), ('world', 1), ('class', 1), ('rest', 1), ('service', 1), ('using', 1), ('web', 1), ('api', 1), ('set', 1), ('aside', 1)]
[('lt', 2), ('em', 2), ('gt', 2), ('sharepoint', 2), ('responsive', 2), ('pro', 1), ('branding', 1), ('web', 1), ('development', 1), ('definitive', 1), ('reference', 1), ('technology', 1), ('tool', 1), ('technique', 1), ('needed', 1), ('building', 1), ('website', 1), ('application', 1), ('book', 1), ('focus', 1)]
[('lt', 5), ('gt', 5), ('em', 2), ('strong', 2), ('sudoku', 2), ('write', 2), ('programming', 1), ('teach', 1), ('computer', 1), ('program', 1), ('solve', 1), ('generate', 1), ('puzzle', 1), ('practical', 1), ('book', 1), ('provide', 1), ('everything', 1), ('need', 1)]
[('limitation', 2), ('major', 1), ('conventional', 1), ('web', 1), ('site', 1), ('unorganized', 1), ('isolated', 1), ('content', 1), ('created', 1), ('mainly', 1), ('human', 1), ('consumption', 1), ('addressed', 1), ('organizing', 1), ('publishing', 1), ('data', 1), ('using', 1), ('powerful', 1), ('format', 1), ('add', 1), ('structure', 1)]
[('oracle', 2), ('identity', 2), ('lt', 1), ('gt', 1), ('book', 1), ('present', 1), ('process', 1), ('based', 1), ('approach', 1), ('implementing', 1), ('access', 1), ('management', 1), ('suite', 1), ('learn', 1), ('everything', 1), ('basic', 1), ('installation', 1), ('advanced', 1), ('topic', 1), ('leveraging', 1), ('virtual', 1), ('directory', 1)]
[('friend', 1), ('ed', 1)]
[('lt', 3), ('gt', 3), ('end', 2), ('compliance', 2), ('microsoft', 2), ('use', 1), ('information', 1), ('presented', 1), ('book', 1), ('implement', 1), ('program', 1), ('organization', 1), ('using', 1), ('tool', 1), ('learn', 1), ('solution', 1), ('available', 1)]
[('lt', 1), ('div', 1), ('gt', 1), ('bridge', 1), ('gap', 1), ('high', 1), ('level', 1), ('understanding', 1), ('algorithm', 1), ('work', 1), ('knowing', 1), ('nut', 1), ('bolt', 1), ('tune', 1), ('model', 1), ('better', 1), ('book', 1), ('give', 1), ('confidence', 1), ('skill', 1), ('developing', 1), ('major', 1), ('machine', 1), ('learning', 1)]
[('using', 3), ('lt', 1), ('div', 1), ('gt', 1), ('create', 1), ('application', 1), ('industry', 1), ('discover', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('machine', 1), ('learning', 1), ('ml', 1), ('capability', 1), ('enhanced', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('secured', 1), ('blockchain', 1), ('latest', 1), ('app', 1)]
[('application', 3), ('build', 2), ('distributed', 2), ('amp', 2), ('nbsp', 2), ('reliable', 1), ('asynchronous', 1), ('using', 1), ('message', 1), ('queuing', 1), ('task', 1), ('orchestration', 1), ('capability', 1), ('amazon', 1), ('web', 1), ('service', 1), ('aws', 1), ('integration', 1), ('book', 1), ('prepares', 1)]
[('lt', 3), ('gt', 3), ('approach', 2), ('end', 2), ('learn', 1), ('understand', 1), ('implement', 1), ('deep', 1), ('neural', 1), ('network', 1), ('math', 1), ('programming', 1), ('friendly', 1), ('using', 1), ('kera', 1), ('python', 1), ('book', 1), ('focus', 1), ('developing', 1), ('supervised', 1), ('learning', 1), ('algorithm', 1)]
[('machine', 2), ('learning', 2), ('example', 2), ('lt', 1), ('div', 1), ('gt', 1), ('harness', 1), ('power', 1), ('matlab', 1), ('resolve', 1), ('wide', 1), ('range', 1), ('challenge', 1), ('book', 1), ('provides', 1), ('series', 1), ('technology', 1), ('critical', 1), ('solves', 1), ('real', 1), ('world', 1)]
[('lt', 3), ('gt', 3), ('code', 2), ('python', 2), ('div', 1), ('discover', 1), ('right', 1), ('way', 1), ('book', 1), ('provides', 1), ('tip', 1), ('technique', 1), ('need', 1), ('produce', 1), ('cleaner', 1), ('error', 1), ('free', 1), ('eloquent', 1), ('project', 1), ('journey', 1), ('better', 1), ('start', 1), ('understanding', 1)]
[('bring', 2), ('learn', 1), ('value', 1), ('opentelemetry', 1), ('organization', 1), ('aim', 1), ('implement', 1), ('observability', 1), ('best', 1), ('practice', 1), ('gain', 1), ('deeper', 1), ('understanding', 1), ('different', 1), ('building', 1), ('block', 1), ('interact', 1), ('box', 1), ('vendor', 1), ('neutral', 1)]
[('lt', 2), ('em', 2), ('gt', 2), ('performance', 2), ('expert', 1), ('indexing', 1), ('sql', 1), ('server', 1), ('deep', 1), ('dive', 1), ('perhaps', 1), ('single', 1), ('important', 1), ('facet', 1), ('good', 1), ('index', 1), ('best', 1), ('use', 1), ('book', 1), ('begin', 1), ('shallow', 1), ('water', 1), ('explanation', 1)]
[('lt', 3), ('gt', 3), ('em', 2), ('android', 2), ('web', 2), ('beginning', 1), ('apps', 1), ('development', 1), ('learn', 1), ('apply', 1), ('html', 1), ('cs', 1), ('javascript', 1), ('ajax', 1), ('standard', 1), ('use', 1), ('mobile', 1), ('platform', 1), ('building', 1), ('variety', 1), ('fun', 1), ('visually', 1)]
[('platform', 2), ('open', 2), ('class', 2), ('vibrant', 1), ('rich', 1), ('android', 1), ('development', 1), ('created', 1), ('google', 1), ('handset', 1), ('alliance', 1), ('continues', 1), ('truest', 1), ('sense', 1), ('encompassing', 1), ('hundred', 1), ('beyond', 1), ('traditional', 1), ('java', 1), ('source', 1), ('component', 1)]
[('lt', 4), ('gt', 4), ('spring', 4), ('em', 2), ('mvc', 2), ('web', 2), ('framework', 2), ('pro', 1), ('provides', 1), ('depth', 1), ('coverage', 1), ('flow', 1), ('highly', 1), ('customizable', 1), ('powerful', 1), ('brought', 1), ('developer', 1), ('community', 1)]
[('lt', 2), ('em', 2), ('gt', 2), ('practical', 2), ('sharepoint', 2), ('governance', 2), ('first', 1), ('book', 1), ('offer', 1), ('action', 1), ('focused', 1), ('guidance', 1), ('based', 1), ('consulting', 1), ('experience', 1), ('real', 1), ('organization', 1), ('field', 1), ('provides', 1), ('quintessential', 1)]
[('lt', 3), ('gt', 3), ('xcode', 2), ('em', 2), ('apple', 1), ('integrated', 1), ('development', 1), ('environment', 1), ('ide', 1), ('interface', 1), ('builder', 1), ('tool', 1), ('helping', 1), ('app', 1), ('developer', 1), ('coder', 1), ('build', 1), ('iphone', 1), ('ipad', 1), ('apps', 1), ('efficiently', 1), ('quickly', 1), ('beginning', 1), ('aim', 1)]
[('lt', 4), ('gt', 4), ('jquery', 2), ('application', 2), ('oracle', 2), ('building', 1), ('existing', 1), ('sql', 1), ('skill', 1), ('book', 1), ('teach', 1), ('apply', 1), ('useful', 1), ('technique', 1), ('developed', 1), ('using', 1), ('express', 1), ('apex', 1), ('development', 1), ('tool', 1), ('em', 1), ('pro', 1)]
[('crm', 2), ('microsoft', 1), ('dynamic', 1), ('robust', 1), ('api', 1), ('includes', 1), ('web', 1), ('service', 1), ('extensive', 1), ('sdk', 1), ('develop', 1), ('plugins', 1), ('custom', 1), ('integration', 1), ('find', 1), ('many', 1), ('complexity', 1), ('challenge', 1), ('associated', 1), ('successfully', 1), ('interacting', 1)]
[('matlab', 2), ('language', 2), ('lt', 1), ('gt', 1), ('high', 1), ('level', 1), ('environment', 1), ('numerical', 1), ('computation', 1), ('visualization', 1), ('programming', 1), ('using', 1), ('analyze', 1), ('data', 1), ('develop', 1), ('algorithm', 1), ('create', 1), ('model', 1), ('application', 1), ('tool', 1), ('built', 1), ('math', 1)]
[('lt', 3), ('gt', 3), ('em', 2), ('sql', 2), ('server', 2), ('developer', 2), ('beginning', 1), ('perfect', 1), ('book', 1), ('new', 1), ('planning', 1), ('create', 1), ('deploy', 1), ('application', 1), ('microsoft', 1), ('amp', 1), ('rsquo', 1), ('market', 1), ('leading', 1), ('database', 1), ('system', 1), ('window', 1)]
[('lt', 5), ('gt', 5), ('em', 2), ('office', 2), ('create', 2), ('practical', 1), ('hand', 1), ('approach', 1), ('using', 1), ('application', 1), ('edit', 1), ('document', 1), ('work', 1), ('done', 1), ('efficiently', 1), ('learn', 1), ('customize', 1), ('design', 1), ('share', 1)]
[('window', 3), ('understand', 1), ('troubleshoot', 1), ('repair', 1), ('issue', 1), ('local', 1), ('installation', 1), ('automating', 1), ('o', 1), ('deployment', 1), ('configuring', 1), ('update', 1), ('via', 1), ('wsus', 1), ('intune', 1), ('tasked', 1), ('deploying', 1), ('operating', 1), ('system', 1), ('seem', 1)]
[('solution', 2), ('enterprise', 2), ('application', 2), ('lt', 1), ('gt', 1), ('quickly', 1), ('find', 1), ('dozen', 1), ('common', 1), ('programming', 1), ('problem', 1), ('java', 1), ('edition', 1), ('platform', 1), ('small', 1), ('business', 1), ('web', 1), ('database', 1), ('microservices', 1), ('content', 1), ('presented', 1)]
[('arduino', 2), ('computer', 2), ('coding', 2), ('lt', 1), ('div', 1), ('gt', 1), ('started', 1), ('book', 1), ('intended', 1), ('new', 1), ('looking', 1), ('gain', 1), ('skill', 1), ('write', 1), ('microcontroller', 1), ('program', 1), ('act', 1), ('given', 1), ('input', 1), ('operate', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('discover', 1), ('essential', 1), ('building', 1), ('block', 1), ('common', 1), ('powerful', 1), ('form', 1), ('deep', 1), ('belief', 1), ('network', 1), ('convolutional', 1), ('net', 1), ('book', 1), ('show', 1), ('structure', 1), ('elegant', 1), ('model', 1), ('closer', 1), ('human', 1), ('brain', 1)]
[('learn', 1), ('key', 1), ('difference', 1), ('container', 1), ('virtual', 1), ('machine', 1), ('adopting', 1), ('project', 1), ('based', 1), ('approach', 1), ('book', 1), ('introduces', 1), ('simple', 1), ('python', 1), ('application', 1), ('developed', 1), ('containerized', 1)]
[('lt', 1), ('gt', 1), ('learn', 1), ('advance', 1), ('skill', 1), ('level', 1), ('haskell', 1), ('use', 1), ('language', 1), ('practical', 1), ('web', 1), ('development', 1), ('book', 1), ('us', 1), ('direct', 1), ('nonsense', 1), ('approach', 1), ('longer', 1), ('need', 1), ('spend', 1), ('extra', 1), ('time', 1), ('reading', 1), ('documentation', 1), ('blog', 1), ('post', 1)]
[('android', 3), ('lt', 2), ('div', 2), ('gt', 2), ('build', 1), ('apps', 1), ('using', 1), ('popular', 1), ('efficient', 1), ('studio', 1), ('suite', 1), ('tool', 1), ('integrated', 1), ('development', 1), ('environment', 1), ('ide', 1), ('developer', 1), ('use', 1), ('kotlin', 1), ('programming', 1), ('language', 1), ('book', 1)]
[('lt', 2), ('gt', 2), ('java', 2), ('step', 2), ('write', 1), ('first', 1), ('code', 1), ('using', 1), ('simple', 1), ('example', 1), ('model', 1), ('real', 1), ('word', 1), ('object', 1), ('event', 1), ('making', 1), ('learning', 1), ('easy', 1), ('book', 1), ('able', 1), ('pick', 1), ('concept', 1), ('without', 1), ('fuss', 1), ('absolute', 1)]
[('developing', 2), ('oracle', 2), ('lt', 1), ('div', 1), ('gt', 1), ('start', 1), ('sql', 1), ('book', 1), ('stop', 1), ('introduction', 1), ('everything', 1), ('need', 1), ('know', 1), ('getting', 1), ('started', 1), ('database', 1), ('learn', 1), ('foundational', 1), ('concept', 1), ('setting', 1), ('simple', 1), ('schema', 1), ('adding', 1)]
[('raspberry', 2), ('pi', 2), ('lt', 1), ('div', 1), ('gt', 1), ('build', 1), ('inexpensive', 1), ('cluster', 1), ('multiple', 1), ('computer', 1), ('install', 1), ('required', 1), ('library', 1), ('write', 1), ('parallel', 1), ('scientific', 1), ('program', 1), ('python', 1), ('book', 1), ('cover', 1), ('setting', 1), ('installing', 1), ('necessary', 1)]
[('ai', 2), ('lt', 1), ('div', 1), ('gt', 1), ('gain', 1), ('gentle', 1), ('introduction', 1), ('world', 1), ('artificial', 1), ('intelligence', 1), ('using', 1), ('raspberry', 1), ('pi', 1), ('computing', 1), ('platform', 1), ('major', 1), ('topic', 1), ('explored', 1), ('including', 1), ('expert', 1), ('system', 1), ('machine', 1), ('learning', 1), ('shallow', 1), ('deep', 1)]
[('lt', 5), ('gt', 5), ('window', 2), ('apps', 2), ('div', 1), ('develop', 1), ('application', 1), ('faster', 1), ('efficiently', 1), ('using', 1), ('universal', 1), ('platform', 1), ('use', 1), ('xamarin', 1), ('create', 1), ('macos', 1), ('io', 1), ('android', 1), ('device', 1), ('em', 1), ('building', 1)]
[('lt', 2), ('gt', 2), ('programming', 2), ('div', 1), ('solve', 1), ('problem', 1), ('practical', 1), ('informative', 1), ('recipe', 1), ('book', 1), ('cover', 1), ('various', 1), ('aspect', 1), ('including', 1), ('fundamental', 1), ('operator', 1), ('expression', 1), ('control', 1), ('statement', 1), ('recursion', 1)]
[('robot', 3), ('jimu', 2), ('lt', 1), ('div', 1), ('gt', 1), ('create', 1), ('mechanical', 1), ('device', 1), ('ubtech', 1), ('kit', 1), ('book', 1), ('show', 1), ('high', 1), ('potential', 1), ('stem', 1), ('learning', 1), ('hardware', 1), ('software', 1), ('design', 1), ('basic', 1), ('walking', 1), ('creation', 1), ('bring', 1)]
[('lt', 3), ('gt', 3), ('div', 2), ('build', 1), ('net', 1), ('apps', 1), ('microsoft', 1), ('azure', 1), ('service', 1), ('grow', 1), ('internet', 1), ('scale', 1), ('learn', 1), ('make', 1), ('smart', 1), ('application', 1), ('architecture', 1), ('decision', 1), ('follow', 1), ('best', 1), ('practice', 1), ('website', 1), ('handle', 1), ('ten', 1), ('thousand', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('product', 2), ('manager', 2), ('gain', 1), ('technique', 1), ('teaching', 1), ('tool', 1), ('methodology', 1), ('required', 1), ('effective', 1), ('first', 1), ('time', 1), ('overarching', 1), ('goal', 1), ('book', 1), ('help', 1), ('understand', 1), ('role', 1), ('give', 1), ('concrete', 1)]
[('apps', 3), ('photo', 2), ('adobe', 2), ('lt', 1), ('gt', 1), ('leverage', 1), ('taking', 1), ('power', 1), ('iphone', 1), ('desktop', 1), ('io', 1), ('capture', 1), ('retouch', 1), ('manipulate', 1), ('organize', 1), ('sell', 1), ('photography', 1), ('book', 1), ('show', 1), ('edit', 1), ('using', 1), ('mobile', 1), ('integrate', 1)]
[('lt', 4), ('div', 4), ('gt', 4), ('data', 2), ('focus', 1), ('security', 1), ('aspect', 1), ('designing', 1), ('building', 1), ('maintaining', 1), ('secure', 1), ('oracle', 1), ('database', 1), ('application', 1), ('starting', 1), ('encryption', 1), ('learn', 1), ('work', 1), ('transparent', 1), ('back', 1)]
[('learn', 3), ('lt', 2), ('div', 2), ('gt', 2), ('scikit', 2), ('library', 2), ('book', 2), ('aspiring', 1), ('data', 1), ('science', 1), ('professional', 1), ('along', 1), ('fundamental', 1), ('machine', 1), ('learning', 1), ('combine', 1), ('anaconda', 1), ('python', 1), ('distribution', 1), ('popular', 1)]
[('bootstrap', 3), ('use', 2), ('learn', 1), ('front', 1), ('end', 1), ('cs', 1), ('framework', 1), ('create', 1), ('powerful', 1), ('web', 1), ('application', 1), ('work', 1), ('component', 1), ('using', 1), ('easy', 1), ('follow', 1), ('instruction', 1), ('example', 1), ('code', 1), ('snippet', 1)]
[('lt', 2), ('gt', 2), ('apply', 2), ('best', 2), ('practice', 2), ('cmmi', 2), ('implementation', 2), ('div', 1), ('proven', 1), ('method', 1), ('ensure', 1), ('successful', 1), ('practical', 1), ('book', 1), ('show', 1), ('hurdle', 1), ('avoid', 1), ('work', 1), ('area', 1)]
[('story', 2), ('expedition', 2), ('lt', 1), ('gt', 1), ('use', 1), ('fictional', 1), ('book', 1), ('detail', 1), ('build', 1), ('design', 1), ('robot', 1), ('max', 1), ('main', 1), ('character', 1), ('part', 1), ('archaeological', 1), ('investigating', 1), ('newly', 1), ('discovered', 1), ('mayan', 1), ('pyramid', 1)]
[('lt', 1), ('gt', 1), ('use', 1), ('many', 1), ('type', 1), ('tool', 1), ('required', 1), ('navigate', 1), ('maintain', 1), ('microservice', 1), ('ecosystem', 1), ('book', 1), ('examines', 1), ('normally', 1), ('complex', 1), ('system', 1), ('interconnected', 1), ('service', 1), ('clarifies', 1), ('time', 1), ('first', 1), ('examining', 1), ('theoretical', 1)]
[('conversational', 2), ('interface', 2), ('framework', 2), ('lt', 1), ('gt', 1), ('learn', 1), ('incorporate', 1), ('io', 1), ('application', 1), ('book', 1), ('help', 1), ('work', 1), ('comfortably', 1), ('multiple', 1), ('including', 1), ('apple', 1), ('speech', 1), ('sirikit', 1), ('google', 1), ('api', 1), ('ai', 1)]
[('create', 2), ('game', 2), ('lt', 1), ('div', 1), ('gt', 1), ('learn', 1), ('design', 1), ('video', 1), ('using', 1), ('java', 1), ('programming', 1), ('language', 1), ('libgdx', 1), ('software', 1), ('library', 1), ('working', 1), ('example', 1), ('book', 1), ('prototype', 1), ('variety', 1), ('popular', 1), ('genre', 1)]
[('lt', 3), ('gt', 3), ('learn', 1), ('deploy', 1), ('chromebook', 1), ('computer', 1), ('classroom', 1), ('lab', 1), ('situation', 1), ('navigate', 1), ('hardware', 1), ('software', 1), ('choice', 1), ('face', 1), ('book', 1), ('amp', 1), ('nbsp', 1), ('equips', 1), ('skill', 1), ('knowledge', 1), ('plan', 1), ('execute', 1)]
[('lt', 5), ('gt', 5), ('developer', 2), ('discover', 1), ('true', 1), ('value', 1), ('relation', 1), ('learn', 1), ('build', 1), ('maintain', 1), ('positive', 1), ('relationship', 1), ('community', 1), ('use', 1), ('principle', 1), ('laid', 1), ('book', 1), ('walk', 1)]
[('lt', 1), ('gt', 1), ('jump', 1), ('right', 1), ('pro', 1), ('level', 1), ('gut', 1), ('raspberry', 1), ('pi', 1), ('complete', 1), ('schematic', 1), ('detailed', 1), ('hardware', 1), ('explanation', 1), ('guide', 1), ('tinker', 1), ('runlevels', 1), ('reporting', 1), ('voltage', 1), ('temperature', 1), ('work', 1), ('variety', 1), ('project', 1), ('example', 1)]
[('project', 2), ('explore', 1), ('twisted', 1), ('python', 1), ('based', 1), ('event', 1), ('driven', 1), ('networking', 1), ('engine', 1), ('review', 1), ('several', 1), ('popular', 1), ('application', 1), ('written', 1), ('community', 1), ('leader', 1), ('contributed', 1), ('many', 1), ('covered', 1), ('share', 1), ('hard', 1)]
[('lt', 3), ('gt', 3), ('div', 2), ('application', 2), ('machine', 2), ('learning', 2), ('explore', 1), ('theory', 1), ('practical', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('healthcare', 1), ('book', 1), ('offer', 1), ('guided', 1), ('tour', 1), ('algorithm', 1), ('architecture', 1), ('design', 1)]
[('application', 2), ('different', 2), ('lt', 1), ('gt', 1), ('explore', 1), ('modern', 1), ('concept', 1), ('client', 1), ('server', 1), ('web', 1), ('book', 1), ('includes', 1), ('example', 1), ('simple', 1), ('comprehend', 1), ('building', 1), ('apps', 1), ('real', 1), ('world', 1), ('chapter', 1), ('develops', 1), ('subject', 1)]
[('lt', 4), ('div', 4), ('gt', 4), ('data', 2), ('gain', 1), ('insight', 1), ('essential', 1), ('science', 1), ('skill', 1), ('holistic', 1), ('manner', 1), ('using', 1), ('engineering', 1), ('amp', 1), ('nbsp', 1), ('associated', 1), ('scalable', 1), ('computational', 1), ('method', 1), ('book', 1), ('cover', 1), ('popular', 1), ('python', 1)]
[('android', 3), ('lt', 2), ('gt', 2), ('python', 2), ('application', 2), ('div', 1), ('start', 1), ('building', 1), ('based', 1), ('using', 1), ('kivy', 1), ('studio', 1), ('depth', 1), ('example', 1), ('book', 1), ('teach', 1), ('everything', 1), ('need', 1), ('create', 1), ('first', 1), ('publish', 1), ('google', 1)]
[('lt', 3), ('div', 3), ('gt', 3), ('matlab', 2), ('programming', 2), ('problem', 2), ('apply', 1), ('mathematical', 1), ('modeling', 1), ('real', 1), ('life', 1), ('wide', 1), ('range', 1), ('topic', 1), ('pragmatic', 1), ('book', 1), ('show', 1), ('solve', 1), ('starting', 1), ('brief', 1), ('primer', 1)]
[('user', 2), ('research', 2), ('lt', 1), ('gt', 1), ('explore', 1), ('influenced', 1), ('year', 1), ('range', 1), ('discipline', 1), ('hci', 1), ('usability', 1), ('anthropology', 1), ('cognitive', 1), ('psychology', 1), ('ergonomics', 1), ('etc', 1), ('book', 1), ('aim', 1), ('contribute', 1), ('community', 1), ('cover', 1)]
[('google', 2), ('gke', 2), ('discover', 1), ('methodology', 1), ('best', 1), ('practice', 1), ('getting', 1), ('started', 1), ('kubernetes', 1), ('engine', 1), ('book', 1), ('help', 1), ('understand', 1), ('provides', 1), ('fully', 1), ('managed', 1), ('environment', 1), ('deploy', 1), ('operate', 1), ('containerized', 1), ('application', 1), ('cloud', 1)]
[('container', 3), ('deploy', 2), ('manage', 2), ('gcp', 2), ('secure', 1), ('containerized', 1), ('application', 1), ('google', 1), ('cloud', 1), ('platform', 1), ('book', 1), ('cover', 1), ('service', 1), ('ground', 1), ('teach', 1)]
[('lt', 3), ('gt', 3), ('div', 2), ('updated', 1), ('second', 1), ('edition', 1), ('offer', 1), ('guided', 1), ('tour', 1), ('machine', 1), ('learning', 1), ('algorithm', 1), ('architecture', 1), ('design', 1), ('provides', 1), ('real', 1), ('world', 1), ('application', 1), ('intelligent', 1), ('system', 1), ('healthcare', 1), ('cover', 1), ('challenge', 1), ('managing', 1)]
[('design', 2), ('pattern', 2), ('lt', 1), ('div', 1), ('gt', 1), ('implement', 1), ('net', 1), ('core', 1), ('using', 1), ('latest', 1), ('version', 1), ('language', 1), ('book', 1), ('amp', 1), ('nbsp', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('field', 1), ('used', 1), ('today', 1), ('developer', 1), ('toolbox', 1), ('new', 1)]
[('camel', 2), ('lt', 1), ('gt', 1), ('address', 1), ('common', 1), ('integration', 1), ('challenge', 1), ('understanding', 1), ('in', 1), ('out', 1), ('choice', 1), ('exemplifying', 1), ('solution', 1), ('practical', 1), ('example', 1), ('create', 1), ('cloud', 1), ('native', 1), ('application', 1), ('using', 1), ('apache', 1), ('main', 1)]
[('game', 3), ('lt', 3), ('gt', 3), ('fxgl', 2), ('book', 2), ('div', 2), ('understand', 1), ('real', 1), ('world', 1), ('development', 1), ('concept', 1), ('using', 1), ('javafx', 1), ('engine', 1), ('called', 1), ('core', 1), ('focus', 1), ('developing', 1), ('standalone', 1), ('application', 1), ('br', 1), ('start', 1), ('overview', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('data', 2), ('analytics', 2), ('understand', 1), ('advanced', 1), ('concept', 1), ('time', 1), ('series', 1), ('principal', 1), ('component', 1), ('analysis', 1), ('etl', 1), ('supervised', 1), ('learning', 1), ('pyspark', 1), ('using', 1), ('python', 1), ('book', 1), ('cover', 1), ('architectural', 1), ('pattern', 1), ('text', 1)]
[('dynamic', 2), ('array', 2), ('amp', 2), ('nbsp', 2), ('spreadsheet', 2), ('lt', 1), ('gt', 1), ('understand', 1), ('power', 1), ('single', 1), ('formula', 1), ('generate', 1), ('new', 1), ('vastly', 1), ('efficient', 1), ('possibility', 1), ('book', 1), ('introduces', 1), ('user', 1), ('function', 1), ('microsoft', 1), ('excel', 1)]
[('data', 2), ('lt', 1), ('gt', 1), ('book', 1), ('illustrates', 1), ('useful', 1), ('solving', 1), ('business', 1), ('problem', 1), ('explores', 1), ('various', 1), ('analytics', 1), ('technique', 1), ('using', 1), ('discover', 1), ('hidden', 1), ('pattern', 1), ('relationship', 1), ('predict', 1), ('future', 1), ('outcome', 1), ('optimize', 1), ('efficiency', 1), ('improve', 1)]
[('library', 2), ('lt', 1), ('div', 1), ('gt', 1), ('build', 1), ('production', 1), ('grade', 1), ('web', 1), ('apps', 1), ('scratch', 1), ('without', 1), ('using', 1), ('framework', 1), ('kotlin', 1), ('java', 1), ('platform', 1), ('learn', 1), ('use', 1), ('compose', 1), ('choose', 1), ('different', 1), ('benefit', 1), ('explicit', 1)]
[('lt', 1), ('div', 1), ('gt', 1), ('explore', 1), ('latest', 1), ('python', 1), ('tool', 1), ('technique', 1), ('help', 1), ('tackle', 1), ('world', 1), ('data', 1), ('acquisition', 1), ('analysis', 1), ('review', 1), ('scientific', 1), ('computing', 1), ('numpy', 1), ('visualization', 1), ('matplotlib', 1), ('machine', 1), ('learning', 1)]
[('intellij', 2), ('lt', 1), ('gt', 1), ('started', 1), ('quickly', 1), ('installation', 1), ('configuration', 1), ('working', 1), ('source', 1), ('code', 1), ('tutorial', 1), ('show', 1), ('leverage', 1), ('tool', 1), ('develop', 1), ('clean', 1), ('efficient', 1), ('java', 1)]
[('book', 2), ('database', 2), ('lt', 1), ('gt', 1), ('first', 1), ('devote', 1), ('complete', 1), ('coverage', 1), ('recent', 1), ('release', 1), ('popular', 1), ('embedded', 1), ('open', 1), ('source', 1), ('sqlite', 1), ('act', 1), ('ideal', 1), ('tutorial', 1), ('reference', 1), ('guide', 1), ('offer', 1), ('experienced', 1), ('developer', 1)]
[('agile', 2), ('lt', 1), ('gt', 1), ('brilliantly', 1), ('practical', 1), ('work', 1), ('let', 1), ('reader', 1), ('experience', 1), ('real', 1), ('world', 1), ('scalable', 1), ('enterprise', 1), ('java', 1), ('based', 1), ('application', 1), ('built', 1), ('ground', 1), ('using', 1), ('latest', 1), ('spring', 1), ('kit', 1), ('available', 1), ('open', 1), ('source', 1), ('lightweight', 1)]
[('world', 2), ('interested', 1), ('making', 1), ('app', 1), ('story', 1), ('successful', 1), ('developer', 1), ('appreneurs', 1), ('determined', 1), ('piece', 1), ('pie', 1), ('apps', 1), ('fastest', 1), ('growing', 1), ('market', 1), ('today', 1)]
[('lt', 3), ('gt', 3), ('android', 3), ('apis', 3), ('em', 2), ('reference', 2), ('quick', 1), ('condensed', 1), ('code', 1), ('new', 1), ('google', 1), ('sdk', 1), ('present', 1), ('essential', 1), ('organized', 1), ('format', 1), ('used', 1), ('handy', 1)]
[('pipeline', 3), ('lt', 2), ('div', 2), ('gt', 2), ('step', 2), ('follow', 1), ('guide', 1), ('creating', 1), ('continuous', 1), ('delivery', 1), ('using', 1), ('new', 1), ('feature', 1), ('jenkins', 1), ('code', 1), ('multi', 1), ('branch', 1), ('learn', 1), ('amp', 1), ('nbsp', 1), ('three', 1), ('crucial', 1)]
[('lt', 4), ('gt', 4), ('mongodb', 3), ('div', 2), ('pro', 1), ('development', 1), ('nosql', 1), ('database', 1), ('based', 1), ('bson', 1), ('binary', 1), ('json', 1), ('document', 1), ('model', 1), ('book', 1), ('discus', 1), ('aspect', 1), ('using', 1), ('web', 1), ('application', 1), ('java', 1), ('php', 1), ('ruby', 1), ('javascript', 1)]
[('biml', 2), ('lt', 1), ('div', 1), ('gt', 1), ('learn', 1), ('business', 1), ('intelligence', 1), ('markup', 1), ('language', 1), ('automating', 1), ('repetitive', 1), ('manual', 1), ('labor', 1), ('involved', 1), ('data', 1), ('integration', 1), ('teach', 1), ('build', 1), ('framework', 1), ('use', 1), ('advanced', 1), ('feature', 1), ('sql', 1), ('server', 1)]
[('lt', 1), ('div', 1), ('gt', 1), ('introducing', 1), ('zurb', 1), ('foundation', 1), ('easy', 1), ('digest', 1), ('brief', 1), ('introduction', 1), ('exciting', 1), ('technology', 1), ('building', 1), ('responsive', 1), ('mobile', 1), ('first', 1), ('website', 1), ('using', 1), ('book', 1), ('understand', 1), ('basic', 1), ('latest', 1), ('iteration', 1), ('come', 1)]
[('lt', 5), ('gt', 5), ('div', 2), ('python', 2), ('pygame', 2), ('arcade', 2), ('game', 2), ('learn', 1), ('use', 1), ('design', 1), ('build', 1), ('cool', 1), ('program', 1), ('second', 1), ('edition', 1), ('dr', 1), ('paul', 1), ('vincent', 1), ('craven', 1), ('teach', 1), ('create', 1), ('fun', 1)]
[('lt', 2), ('gt', 2), ('technology', 2), ('div', 1), ('understand', 1), ('concept', 1), ('process', 1), ('aid', 1), ('professional', 1), ('development', 1), ('new', 1), ('system', 1), ('administrator', 1), ('every', 1), ('information', 1), ('culture', 1), ('specific', 1), ('parent', 1), ('organization', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('learn', 1), ('practical', 1), ('technique', 1), ('including', 1), ('often', 1), ('needed', 1), ('algorithm', 1), ('within', 1), ('reusable', 1), ('function', 1), ('book', 1), ('following', 1), ('code', 1), ('advice', 1), ('fingertip', 1), ('layout', 1), ('pre', 1), ('processor', 1), ('control', 1), ('structure', 1), ('iteration', 1)]
[('lt', 2), ('gt', 2), ('step', 2), ('div', 1), ('book', 1), ('amp', 1), ('nbsp', 1), ('show', 1), ('easy', 1), ('create', 1), ('edit', 1), ('sort', 1), ('analyze', 1), ('summarize', 1), ('format', 1), ('data', 1), ('graph', 1), ('loaded', 1), ('screen', 1), ('shot', 1), ('instruction', 1), ('reader', 1), ('exercise', 1), ('essential', 1), ('excel', 1)]
[('game', 3), ('lt', 1), ('div', 1), ('gt', 1), ('discover', 1), ('use', 1), ('unity', 1), ('xcode', 1), ('create', 1), ('fun', 1), ('imaginative', 1), ('iphone', 1), ('ipad', 1), ('book', 1), ('show', 1), ('optimize', 1), ('speed', 1), ('quality', 1), ('test', 1), ('profile', 1)]
[('problem', 2), ('big', 2), ('data', 2), ('solution', 2), ('lt', 1), ('div', 1), ('gt', 1), ('examine', 1), ('maintaining', 1), ('quality', 1), ('discover', 1), ('novel', 1), ('learn', 1), ('four', 1), ('including', 1), ('veracity', 1), ('study', 1), ('various', 1), ('angle', 1), ('discussed', 1), ('drawn', 1)]
[('lt', 2), ('gt', 2), ('wearable', 2), ('future', 2), ('enter', 1), ('exciting', 1), ('intersection', 1), ('technology', 1), ('fashion', 1), ('known', 1), ('computing', 1), ('learn', 1), ('electronics', 1), ('clothing', 1), ('textile', 1), ('part', 1), ('creating', 1), ('em', 1), ('crafting', 1)]
[('lt', 2), ('gt', 2), ('programming', 2), ('div', 1), ('started', 1), ('world', 1), ('software', 1), ('development', 1), ('go', 1), ('zero', 1), ('knowledge', 1), ('comfortably', 1), ('writing', 1), ('small', 1), ('medium', 1), ('sized', 1), ('program', 1), ('python', 1), ('amp', 1), ('nbsp', 1), ('intimidating', 1), ('especially', 1), ('book', 1)]
[('index', 3), ('lt', 2), ('gt', 2), ('div', 1), ('speed', 1), ('execution', 1), ('important', 1), ('database', 1), ('query', 1), ('making', 1), ('good', 1), ('choice', 1), ('create', 1), ('choose', 1), ('correct', 1), ('type', 1), ('different', 1), ('scenario', 1), ('avoid', 1), ('indexing', 1), ('pitfall', 1), ('actually', 1), ('hurting', 1)]
[('lt', 3), ('gt', 3), ('div', 2), ('program', 1), ('data', 1), ('analysis', 1), ('using', 1), ('learn', 1), ('practical', 1), ('skill', 1), ('make', 1), ('work', 1), ('efficient', 1), ('book', 1), ('cover', 1), ('automate', 1), ('running', 1), ('code', 1), ('creation', 1), ('report', 1), ('share', 1), ('result', 1), ('writing', 1)]
[('lt', 1), ('div', 1), ('gt', 1), ('compact', 1), ('book', 1), ('introduces', 1), ('concept', 1), ('java', 1), ('lambda', 1), ('parallel', 1), ('stream', 1), ('concise', 1), ('form', 1), ('begin', 1), ('introducing', 1), ('new', 1), ('supporting', 1), ('feature', 1), ('functional', 1), ('interface', 1), ('default', 1), ('method', 1), ('author', 1)]
[('lt', 3), ('gt', 3), ('div', 1), ('learn', 1), ('install', 1), ('configure', 1), ('implement', 1), ('elastic', 1), ('stack', 1), ('elasticsearch', 1), ('logstash', 1), ('kibana', 1), ('invaluable', 1), ('tool', 1), ('anyone', 1), ('deploying', 1), ('centralized', 1), ('log', 1), ('management', 1), ('solution', 1), ('server', 1), ('apps', 1), ('amp', 1), ('nbsp', 1)]
[('lt', 2), ('gt', 2), ('div', 1), ('learn', 1), ('dba', 1), ('devops', 1), ('environment', 1), ('manage', 1), ('data', 1), ('platform', 1), ('change', 1), ('request', 1), ('support', 1), ('optimize', 1), ('continuous', 1), ('integration', 1), ('delivery', 1), ('testing', 1), ('deployment', 1), ('application', 1), ('development', 1), ('life', 1)]
[('lt', 2), ('gt', 2), ('div', 1), ('gain', 1), ('basic', 1), ('python', 1), ('use', 1), ('pygame', 1), ('create', 1), ('fast', 1), ('paced', 1), ('video', 1), ('game', 1), ('graphic', 1), ('sound', 1), ('learn', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('oop', 1), ('design', 1), ('pattern', 1), ('model', 1), ('view', 1), ('controller', 1), ('mvc', 1)]
[('lt', 7), ('gt', 7), ('div', 6), ('customize', 1), ('prestashop', 1), ('theme', 1), ('easy', 1), ('follow', 1), ('recipe', 1), ('designed', 1), ('remedy', 1), ('common', 1), ('pitfall', 1), ('br', 1), ('separated', 1), ('clearly', 1), ('subject', 1), ('easily', 1), ('able', 1), ('look', 1)]
[('lt', 2), ('gt', 2), ('web', 2), ('based', 2), ('vr', 2), ('create', 1), ('application', 1), ('deploy', 1), ('github', 1), ('page', 1), ('short', 1), ('practical', 1), ('tutorial', 1), ('crammed', 1), ('hand', 1), ('example', 1), ('book', 1), ('cover', 1), ('topic', 1), ('webvr', 1), ('api', 1), ('frame', 1), ('learning', 1), ('virtual', 1)]
[('word', 2), ('lt', 1), ('div', 1), ('gt', 1), ('hint', 1), ('useful', 1), ('trick', 1), ('solution', 1), ('annoying', 1), ('problem', 1), ('plague', 1), ('user', 1), ('microsoft', 1), ('popular', 1), ('processing', 1), ('software', 1), ('book', 1), ('go', 1), ('beyond', 1), ('guide', 1), ('understand', 1), ('odd', 1), ('behavior', 1), ('come', 1)]
[('lt', 3), ('gt', 3), ('div', 2), ('fuzzy', 2), ('logic', 2), ('neural', 2), ('gain', 1), ('insight', 1), ('network', 1), ('integration', 1), ('model', 1), ('make', 1), ('intelligent', 1), ('system', 1), ('current', 1), ('world', 1), ('book', 1), ('simplifies', 1), ('implementation', 1)]
[('bazel', 2), ('build', 2), ('test', 2), ('amp', 2), ('nbsp', 2), ('lt', 1), ('div', 1), ('gt', 1), ('discover', 1), ('new', 1), ('software', 1), ('set', 1), ('tool', 1), ('today', 1), ('programmer', 1), ('developer', 1), ('book', 1), ('show', 1), ('speed', 1), ('use', 1), ('context', 1), ('favorite', 1)]
[('lt', 5), ('gt', 5), ('div', 4), ('use', 1), ('trick', 1), ('hidden', 1), ('feature', 1), ('guide', 1), ('become', 1), ('productive', 1), ('window', 1), ('save', 1), ('time', 1), ('achieve', 1), ('feel', 1), ('control', 1), ('never', 1), ('br', 1), ('author', 1), ('mike', 1), ('halsey', 1)]
[('amp', 2), ('nbsp', 2), ('lt', 2), ('gt', 2), ('advanced', 2), ('perl', 2), ('programming', 2), ('william', 1), ('bo', 1), ('rothwell', 1), ('continues', 1), ('previous', 1), ('book', 1), ('left', 1), ('le', 1), ('guide', 1), ('technique', 1), ('language', 1), ('starting', 1)]
[('use', 2), ('lt', 1), ('gt', 1), ('learn', 1), ('arcgis', 1), ('api', 1), ('javascript', 1), ('build', 1), ('custom', 1), ('web', 1), ('mapping', 1), ('application', 1), ('book', 1), ('teach', 1), ('easily', 1), ('create', 1), ('interactive', 1), ('display', 1), ('geographic', 1), ('information', 1), ('tell', 1), ('story', 1), ('answer', 1)]
[('database', 2), ('lt', 1), ('div', 1), ('gt', 1), ('adapt', 1), ('career', 1), ('administrator', 1), ('changing', 1), ('industry', 1), ('learn', 1), ('growth', 1), ('demand', 1), ('dba', 1), ('talent', 1), ('occurring', 1), ('enhance', 1), ('skill', 1), ('set', 1), ('creating', 1), ('providing', 1), ('access', 1), ('controlling', 1), ('data', 1)]
[('lt', 3), ('div', 3), ('gt', 3), ('data', 3), ('problem', 2), ('solution', 2), ('carry', 1), ('analysis', 1), ('pyspark', 1), ('sql', 1), ('graphframes', 1), ('graph', 1), ('processing', 1), ('using', 1), ('approach', 1), ('book', 1), ('provides', 1), ('related', 1), ('dataframes', 1), ('manipulation', 1), ('summarization', 1)]
[('agile', 2), ('project', 2), ('lt', 1), ('gt', 1), ('roll', 1), ('sleeve', 1), ('jump', 1), ('management', 1), ('use', 1), ('customize', 1), ('microsoft', 1), ('azure', 1), ('devops', 1), ('organization', 1), ('adopt', 1), ('practice', 1), ('key', 1), ('enabler', 1), ('run', 1), ('better', 1), ('successful', 1), ('end', 1), ('result', 1)]
[('lt', 3), ('gt', 3), ('writing', 2), ('develop', 1), ('strong', 1), ('skill', 1), ('passion', 1), ('cryptography', 1), ('algorithm', 1), ('security', 1), ('scheme', 1), ('module', 1), ('using', 1), ('new', 1), ('feature', 1), ('amp', 1), ('nbsp', 1), ('find', 1), ('right', 1), ('method', 1), ('advanced', 1), ('cryptographic', 1)]
[('start', 2), ('software', 2), ('lt', 1), ('gt', 1), ('programming', 1), ('scratch', 1), ('experience', 1), ('required', 1), ('beginner', 1), ('guide', 1), ('engineering', 1), ('discussion', 1), ('different', 1), ('editor', 1), ('used', 1), ('create', 1), ('cover', 1), ('setting', 1), ('docker', 1), ('environment', 1), ('next', 1)]
[('programming', 3), ('wolfram', 2), ('language', 2), ('lt', 1), ('gt', 1), ('enhance', 1), ('data', 1), ('science', 1), ('analysis', 1), ('mathematica', 1), ('applied', 1), ('mathematical', 1), ('tool', 1), ('suite', 1), ('book', 1), ('introduce', 1), ('syntax', 1)]
[('sharepoint', 2), ('developer', 2), ('user', 2), ('lt', 1), ('gt', 1), ('offer', 1), ('designer', 1), ('sophisticated', 1), ('intranet', 1), ('web', 1), ('application', 1), ('internet', 1), ('site', 1), ('platform', 1), ('painfully', 1), ('edit', 1), ('code', 1), ('seek', 1), ('assistance', 1), ('customize', 1)]
[('lt', 3), ('gt', 3), ('oracle', 3), ('java', 3), ('em', 2), ('database', 2), ('application', 2), ('expert', 1), ('security', 1), ('programming', 1), ('secure', 1), ('provides', 1), ('resource', 1), ('every', 1), ('programmer', 1), ('need', 1), ('ensure', 1), ('guarded', 1)]
[('apps', 3), ('developer', 2), ('lt', 1), ('gt', 1), ('today', 1), ('android', 1), ('often', 1), ('running', 1), ('need', 1), ('refine', 1), ('improve', 1), ('optimize', 1), ('performance', 1), ('complex', 1), ('created', 1), ('even', 1), ('important', 1), ('deal', 1), ('critical', 1), ('issue', 1)]
[('augmented', 2), ('lt', 1), ('gt', 1), ('reality', 1), ('ar', 1), ('offer', 1), ('live', 1), ('direct', 1), ('indirect', 1), ('view', 1), ('physical', 1), ('real', 1), ('world', 1), ('environment', 1), ('element', 1), ('surroundings', 1), ('computer', 1), ('generated', 1), ('sensory', 1), ('input', 1), ('graphic', 1), ('gps', 1), ('data', 1), ('make', 1), ('game', 1)]
[('lt', 5), ('gt', 5), ('em', 4), ('android', 3), ('beginning', 2), ('update', 1), ('originally', 1), ('written', 1), ('mark', 1), ('murphy', 1), ('first', 1), ('step', 1), ('path', 1), ('creating', 1), ('marketable', 1), ('apps', 1), ('burgeoning', 1), ('market', 1)]
[('lt', 4), ('gt', 4), ('em', 2), ('pro', 1), ('sharepoint', 1), ('jquery', 1), ('work', 1), ('seamlessly', 1), ('popular', 1), ('technology', 1), ('create', 1), ('rich', 1), ('interactive', 1), ('web', 1), ('part', 1), ('application', 1), ('page', 1), ('book', 1), ('author', 1), ('strong', 1), ('phill', 1)]
[('lt', 3), ('gt', 3), ('em', 2), ('taxonomy', 2), ('practical', 1), ('sharepoint', 1), ('information', 1), ('architecture', 1), ('guide', 1), ('tool', 1), ('set', 1), ('planning', 1), ('documenting', 1), ('scope', 1), ('navigational', 1), ('document', 1), ('metadata', 1), ('page', 1), ('layout', 1), ('workflow', 1), ('successful', 1)]
[('lt', 1), ('gt', 1), ('leverage', 1), ('office', 1), ('cloud', 1), ('order', 1), ('productive', 1), ('secure', 1), ('compliant', 1), ('healthcare', 1), ('standard', 1), ('book', 1), ('offer', 1), ('prescriptive', 1), ('guidance', 1), ('real', 1), ('world', 1), ('use', 1), ('case', 1), ('help', 1), ('maximize', 1), ('extend', 1), ('care', 1), ('patient', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('application', 2), ('discover', 1), ('potential', 1), ('challenge', 1), ('opportunity', 1), ('deep', 1), ('learning', 1), ('business', 1), ('perspective', 1), ('technical', 1), ('example', 1), ('include', 1), ('image', 1), ('recognition', 1), ('segmentation', 1), ('annotation', 1), ('video', 1)]
[('python', 3), ('lt', 1), ('div', 1), ('gt', 1), ('learn', 1), ('use', 1), ('structure', 1), ('install', 1), ('tool', 1), ('best', 1), ('suited', 1), ('data', 1), ('analyst', 1), ('work', 1), ('book', 1), ('provides', 1), ('handy', 1), ('reference', 1), ('tutorial', 1), ('topic', 1), ('ranging', 1), ('basic', 1), ('concept', 1)]
[('lt', 5), ('gt', 5), ('system', 2), ('programming', 2), ('discover', 1), ('efficiency', 1), ('make', 1), ('popular', 1), ('choice', 1), ('wide', 1), ('variety', 1), ('application', 1), ('operating', 1), ('special', 1), ('applicability', 1), ('wearable', 1), ('game', 1), ('level', 1)]
[('azure', 3), ('java', 2), ('learn', 1), ('based', 1), ('feature', 1), ('build', 1), ('deploy', 1), ('application', 1), ('microsoft', 1), ('cloud', 1), ('platform', 1), ('book', 1), ('provides', 1), ('example', 1), ('component', 1), ('special', 1), ('interest', 1), ('programmer', 1), ('including', 1), ('different', 1), ('deployment', 1), ('model', 1)]
[('lt', 1), ('gt', 1), ('learn', 1), ('program', 1), ('modern', 1), ('basic', 1), ('advanced', 1), ('topic', 1), ('required', 1), ('proficiency', 1), ('book', 1), ('fastest', 1), ('path', 1), ('fluency', 1), ('anyone', 1), ('experienced', 1), ('general', 1), ('purpose', 1), ('programming', 1), ('language', 1), ('amp', 1), ('nbsp', 1), ('start', 1)]
[('serverless', 2), ('lt', 1), ('gt', 1), ('explore', 1), ('world', 1), ('using', 1), ('amazon', 1), ('web', 1), ('service', 1), ('aws', 1), ('develop', 1), ('various', 1), ('architecture', 1), ('including', 1), ('event', 1), ('driven', 1), ('disaster', 1), ('recovery', 1), ('design', 1), ('book', 1), ('give', 1), ('understanding', 1), ('different', 1), ('distributed', 1)]
[('sql', 4), ('lt', 2), ('em', 2), ('gt', 2), ('server', 2), ('recipe', 1), ('example', 1), ('based', 1), ('guide', 1), ('transact', 1), ('language', 1), ('core', 1), ('provides', 1), ('ready', 1), ('implement', 1), ('solution', 1), ('common', 1), ('programming', 1), ('database', 1), ('administration', 1), ('task', 1)]
[('database', 2), ('lt', 1), ('gt', 1), ('pro', 1), ('sql', 1), ('window', 1), ('azure', 1), ('nd', 1), ('edition', 1), ('show', 1), ('create', 1), ('enterprise', 1), ('level', 1), ('deployment', 1), ('without', 1), ('usual', 1), ('investment', 1), ('datacenter', 1), ('infrastructure', 1), ('take', 1), ('advantage', 1), ('instead', 1), ('microsoft', 1), ('amp', 1), ('rsquo', 1), ('worldwide', 1)]
[('lego', 3), ('programming', 3), ('lt', 2), ('em', 2), ('gt', 2), ('mindstorms', 2), ('winning', 1), ('ticket', 1), ('successfully', 1), ('fun', 1), ('competition', 1), ('nxt', 1), ('language', 1), ('commonly', 1), ('used', 1), ('first', 1), ('league', 1), ('event', 1), ('book', 1), ('companion', 1)]
[('sql', 3), ('lt', 2), ('em', 2), ('gt', 2), ('oracle', 2), ('learn', 2), ('pro', 1), ('second', 1), ('edition', 1), ('unlocks', 1), ('power', 1), ('database', 1), ('potent', 1), ('implementation', 1), ('market', 1), ('today', 1), ('master', 1), ('requires', 1), ('multi', 1), ('pronged', 1), ('approach', 1), ('language', 1), ('feature', 1)]
[('linux', 3), ('networking', 3), ('lt', 2), ('em', 2), ('gt', 2), ('kernel', 2), ('topic', 2), ('take', 1), ('guided', 1), ('depth', 1), ('tour', 1), ('current', 1), ('implementation', 1), ('theory', 1), ('behind', 1), ('complex', 1), ('book', 1), ('burden', 1)]
[('lt', 5), ('gt', 5), ('window', 3), ('em', 2), ('ipv', 2), ('administrator', 2), ('microsoft', 2), ('practical', 1), ('handy', 1), ('guide', 1), ('implementing', 1), ('environment', 1), ('book', 1), ('need', 1), ('confronted', 1)]
[('lt', 5), ('gt', 5), ('strong', 2), ('em', 2), ('objective', 2), ('syntax', 2), ('reference', 2), ('language', 2), ('quick', 1), ('condensed', 1), ('code', 1), ('popular', 1), ('programming', 1), ('core', 1), ('behind', 1), ('apis', 1), ('found', 1)]
[('lt', 4), ('gt', 4), ('div', 3), ('cryptography', 2), ('encryption', 1), ('geek', 1), ('spy', 1), ('part', 1), ('daily', 1), ('life', 1), ('book', 1), ('enlightens', 1), ('basic', 1), ('digital', 1), ('cover', 1), ('practice', 1)]
[('technology', 2), ('contemporary', 1), ('landscape', 1), ('littered', 1), ('various', 1), ('vendor', 1), ('claim', 1), ('solve', 1), ('organization', 1), ('cybersecurity', 1), ('challenge', 1), ('powerful', 1), ('right', 1), ('context', 1), ('effective', 1), ('misunderstood', 1)]
[('lt', 3), ('gt', 3), ('interrupt', 3), ('improve', 1), ('project', 1), ('leveraging', 1), ('power', 1), ('comprehensive', 1), ('guide', 1), ('make', 1), ('easy', 1), ('understand', 1), ('use', 1), ('atmega', 1), ('microcontroller', 1), ('found', 1), ('arduino', 1), ('board', 1)]
[('chatgpt', 2), ('lt', 1), ('gt', 1), ('complete', 1), ('newbie', 1), ('wondering', 1), ('exactly', 1), ('valuable', 1), ('resource', 1), ('non', 1), ('coder', 1), ('book', 1), ('comprehensive', 1), ('exploration', 1), ('feature', 1), ('foundation', 1)]
[('lt', 2), ('gt', 2), ('graphic', 2), ('book', 1), ('show', 1), ('use', 1), ('python', 1), ('built', 1), ('primitive', 1), ('point', 1), ('line', 1), ('arrow', 1), ('create', 1), ('complex', 1), ('visualization', 1), ('three', 1), ('dimensional', 1), ('object', 1), ('data', 1), ('set', 1), ('technical', 1), ('illustration', 1)]
[('lt', 4), ('gt', 4), ('function', 3), ('guide', 2), ('power', 2), ('book', 1), ('complete', 1), ('using', 1), ('query', 1), ('designed', 1), ('help', 1), ('user', 1), ('skill', 1), ('level', 1), ('learn', 1), ('master', 1), ('various', 1), ('ultimate', 1)]
[('practical', 1), ('example', 1), ('used', 1), ('immediately', 1), ('hand', 1), ('exercise', 1), ('short', 1), ('task', 1), ('based', 1), ('procedure', 1), ('solving', 1), ('common', 1), ('problem', 1)]
[('anyone', 2), ('realbasic', 1), ('powerful', 1), ('easy', 1), ('learn', 1), ('programming', 1), ('language', 1), ('allowing', 1), ('almost', 1), ('write', 1), ('sophisticated', 1), ('application', 1), ('distributed', 1), ('across', 1), ('window', 1), ('mac', 1), ('linux', 1), ('platform', 1), ('practical', 1), ('tutorial', 1), ('reference', 1), ('ideal', 1)]
[('online', 2), ('content', 1), ('management', 1), ('blogging', 1), ('forum', 1), ('among', 1), ('significant', 1), ('trend', 1), ('today', 1), ('drupal', 1), ('phpbb', 1), ('wordpress', 1), ('three', 1), ('popular', 1), ('open', 1), ('source', 1), ('application', 1), ('facilitating', 1), ('task', 1), ('author', 1), ('played', 1)]
[('sharepoint', 2), ('comprehensive', 1), ('guide', 1), ('extending', 1), ('powerful', 1), ('feature', 1), ('beyond', 1), ('company', 1), ('networka', 1), ('critical', 1), ('book', 1), ('microsoft', 1), ('best', 1), ('selling', 1), ('new', 1), ('technologyan', 1), ('important', 1), ('addition', 1), ('apress', 1), ('market', 1), ('leading', 1), ('series', 1)]
[('axapta', 2), ('cover', 1), ('page', 1), ('author', 1), ('world', 1), ('leading', 1), ('expert', 1), ('provides', 1), ('essential', 1), ('guidance', 1), ('fast', 1), ('growing', 1), ('community', 1), ('currently', 1), ('deprived', 1), ('suitable', 1), ('documentation', 1), ('training', 1)]
[('pattern', 2), ('tool', 2), ('includes', 1), ('selection', 1), ('anti', 1), ('describe', 1), ('ideal', 1), ('environment', 1), ('success', 1), ('look', 1), ('depth', 1), ('specific', 1), ('extension', 1), ('focus', 1), ('project', 1), ('actually', 1), ('handled', 1), ('real', 1), ('world', 1), ('drawing', 1), ('author', 1)]
[('book', 2), ('flash', 2), ('video', 2), ('first', 1), ('solely', 1), ('dedicated', 1), ('development', 1), ('go', 1), ('lot', 1), ('deeper', 1), ('subject', 1), ('suitable', 1), ('previous', 1), ('experience', 1), ('want', 1), ('discover', 1), ('best', 1), ('way', 1), ('create', 1)]
[('atl', 2), ('server', 2), ('foundation', 1), ('concept', 1), ('depth', 1), ('discussion', 1), ('extensibility', 1), ('customization', 1), ('written', 1), ('member', 1), ('team', 1), ('nbsp', 1), ('ultimate', 1), ('book', 1)]
[('step', 2), ('ee', 2), ('application', 2), ('author', 1), ('provides', 1), ('practical', 1), ('approach', 1), ('teaching', 1), ('use', 1), ('ibm', 1), ('server', 1), ('side', 1), ('development', 1), ('tool', 1), ('called', 1), ('websphere', 1), ('studio', 1), ('developer', 1), ('wsad', 1), ('developing', 1), ('distributed', 1)]
[('apache', 1), ('jakarta', 1), ('tomcat', 1), ('official', 1), ('reference', 1), ('implementation', 1), ('java', 1), ('servlet', 1), ('javaserver', 1), ('page', 1), ('technology', 1), ('long', 1), ('heralded', 1), ('excellent', 1), ('platform', 1), ('development', 1), ('deployment', 1), ('powerful', 1), ('web', 1), ('application', 1), ('version', 1)]
[('qmail', 3), ('system', 2), ('administrator', 2), ('handbook', 1), ('designed', 1), ('guide', 1), ('mail', 1), ('skill', 1), ('level', 1), ('installation', 1), ('configuration', 1), ('maintenance', 1), ('server', 1), ('author', 1), ('dave', 1), ('sill', 1), ('longtime', 1), ('user', 1), ('technical', 1)]
[('xml', 5), ('microsoft', 3), ('using', 2), ('parser', 2), ('development', 2), ('programming', 1), ('written', 1), ('programmer', 1), ('interested', 1), ('technology', 1), ('coupling', 1), ('valuable', 1), ('discussion', 1), ('window', 1), ('platform', 1), ('software', 1)]
[('reluctant', 2), ('database', 2), ('feeling', 1), ('handbook', 1), ('administrator', 1), ('provides', 1), ('solid', 1), ('grasp', 1), ('need', 1), ('design', 1), ('build', 1), ('secure', 1), ('maintain', 1), ('author', 1), ('josef', 1), ('finsel', 1), ('writes', 1), ('understanding', 1), ('point', 1), ('view', 1)]
[('programmer', 2), ('ado', 2), ('net', 2), ('guide', 1), ('begin', 1), ('taking', 1), ('reader', 1), ('fast', 1), ('paced', 1), ('overview', 1), ('delf', 1), ('use', 1), ('instead', 1), ('existing', 1), ('technology', 1), ('new', 1), ('functionality', 1), ('offer', 1)]
[('data', 2), ('migrate', 1), ('panda', 1), ('scikit', 1), ('learn', 1), ('pyspark', 1), ('handle', 1), ('vast', 1), ('amount', 1), ('achieve', 1), ('faster', 1), ('processing', 1), ('time', 1), ('book', 1), ('show', 1), ('make', 1), ('transition', 1), ('adapting', 1), ('skill', 1), ('leveraging', 1), ('similarity', 1), ('syntax', 1)]
[('architecture', 2), ('book', 1), ('show', 1), ('build', 1), ('java', 1), ('based', 1), ('microservices', 1), ('using', 1), ('popular', 1), ('spring', 1), ('boot', 1), ('framework', 1), ('evolving', 1), ('small', 1), ('monolith', 1), ('application', 1), ('event', 1), ('driven', 1), ('composed', 1), ('several', 1), ('service', 1), ('third', 1), ('edition', 1)]
[('microsoft', 2), ('azure', 2), ('cosmos', 2), ('db', 2), ('book', 1), ('help', 1), ('prepare', 1), ('dp', 1), ('exam', 1), ('whether', 1), ('new', 1), ('experience', 1), ('working', 1), ('platform', 1), ('designing', 1), ('implementing', 1), ('cloud', 1), ('native', 1), ('application', 1), ('using', 1), ('organized', 1)]
[('report', 2), ('learn', 1), ('sql', 1), ('server', 1), ('reporting', 1), ('service', 1), ('become', 1), ('current', 1), ('edition', 1), ('develop', 1), ('interactive', 1), ('dynamic', 1), ('combine', 1), ('graph', 1), ('chart', 1), ('tabular', 1), ('data', 1), ('attractive', 1), ('dashboard', 1), ('delight', 1), ('business', 1), ('analyst', 1), ('user', 1)]
[('engineering', 3), ('customer', 1), ('experience', 1), ('applied', 1), ('department', 1), ('rare', 1), ('needed', 1), ('company', 1), ('keep', 1), ('support', 1), ('ux', 1), ('product', 1), ('cx', 1), ('separate', 1), ('address', 1), ('gap', 1), ('book', 1), ('highlight', 1), ('role', 1), ('technique', 1), ('proven', 1)]
[('explore', 1), ('basic', 1), ('three', 1), ('popular', 1), ('programming', 1), ('language', 1), ('java', 1), ('python', 1), ('see', 1), ('nbsp', 1), ('function', 1), ('today', 1), ('world', 1), ('perspective', 1), ('programmer', 1), ('book', 1), ('us', 1), ('highly', 1), ('practical', 1), ('approach', 1), ('numerous', 1)]
[('migration', 2), ('step', 2), ('book', 1), ('systematic', 1), ('cloud', 1), ('guide', 1), ('experience', 1), ('shared', 1), ('author', 1), ('drawn', 1), ('real', 1), ('life', 1), ('project', 1), ('contain', 1), ('practical', 1), ('advice', 1), ('architecture', 1), ('design', 1), ('technical', 1), ('implementation', 1), ('instruction', 1)]
[('sitecore', 3), ('web', 2), ('recently', 1), ('recognized', 1), ('reputable', 1), ('reliable', 1), ('content', 1), ('management', 1), ('solution', 1), ('wcms', 1), ('marketplace', 1), ('thousand', 1), ('company', 1), ('use', 1), ('help', 1), ('manage', 1), ('mobile', 1), ('digital', 1), ('property', 1)]
[('code', 2), ('review', 2), ('organization', 2), ('ideal', 1), ('process', 1), ('differs', 1), ('need', 1), ('boil', 1), ('foundational', 1), ('factor', 1), ('software', 1), ('development', 1), ('team', 1), ('properly', 1), ('grow', 1), ('consistent', 1), ('straightforward', 1)]
[('childhood', 1), ('learning', 1), ('screen', 1), ('based', 1), ('app', 1), ('developer', 1), ('flocking', 1), ('drove', 1), ('lucrative', 1), ('exciting', 1), ('market', 1), ('younger', 1), ('generation', 1), ('deserves', 1), ('best', 1), ('growing', 1), ('digital', 1), ('world', 1), ('made', 1), ('discerning', 1)]
[('learn', 1), ('break', 1), ('system', 1), ('network', 1), ('software', 1), ('order', 1), ('determine', 1), ('bad', 1), ('guy', 1), ('might', 1), ('hole', 1), ('determined', 1), ('short', 1), ('book', 1), ('discus', 1), ('fixed', 1), ('located', 1), ('exposure', 1)]
[('remote', 2), ('access', 2), ('window', 2), ('operating', 2), ('system', 2), ('learn', 1), ('design', 1), ('plan', 1), ('implement', 1), ('support', 1), ('secure', 1), ('solution', 1), ('using', 1), ('directaccess', 1), ('server', 1), ('included', 1), ('many', 1), ('year', 1), ('new', 1), ('release', 1)]
[('adwords', 2), ('use', 1), ('google', 1), ('create', 1), ('ad', 1), ('chapter', 1), ('go', 1), ('beyond', 1), ('tool', 1), ('discussing', 1), ('helpful', 1), ('resource', 1), ('important', 1), ('issue', 1), ('keep', 1), ('mind', 1), ('nbsp', 1), ('completely', 1), ('new', 1), ('search', 1), ('engine', 1), ('marketing', 1), ('want', 1), ('learn', 1)]
[('website', 3), ('nbsp', 3), ('understand', 1), ('step', 1), ('necessary', 1), ('host', 1), ('using', 1), ('amazon', 1), ('web', 1), ('service', 1), ('aws', 1), ('platform', 1), ('able', 1), ('set', 1), ('first', 1), ('time', 1), ('migrate', 1), ('existing', 1), ('explore', 1), ('scenario', 1), ('consideration', 1)]
[('mobile', 2), ('device', 2), ('developed', 1), ('killer', 1), ('app', 1), ('time', 1), ('maximize', 1), ('intellectual', 1), ('investment', 1), ('develop', 1), ('full', 1), ('spectrum', 1), ('platform', 1), ('cracking', 1), ('iphone', 1), ('android', 1), ('native', 1), ('development', 1), ('learn', 1)]
[('spark', 5), ('apache', 4), ('using', 2), ('net', 2), ('binding', 2), ('started', 1), ('via', 1), ('book', 1), ('introduction', 1), ('reader', 1), ('new', 1), ('speed', 1), ('quickly', 1), ('data', 1), ('processing', 1)]
[('security', 3), ('network', 2), ('prepare', 1), ('comptia', 1), ('certification', 1), ('exam', 1), ('cover', 1), ('skill', 1), ('required', 1), ('perform', 1), ('core', 1), ('function', 1), ('pursue', 1), ('career', 1), ('learn', 1), ('basic', 1), ('principle', 1), ('nbsp', 1), ('computer', 1), ('vulnerability', 1)]
[('data', 3), ('nbsp', 2), ('create', 1), ('good', 1), ('start', 1), ('rather', 1), ('fixing', 1), ('collected', 1), ('following', 1), ('guideline', 1), ('book', 1), ('able', 1), ('conduct', 1), ('effective', 1), ('analysis', 1), ('produce', 1), ('timely', 1), ('presentation', 1), ('research', 1), ('analyst', 1)]
[('book', 1), ('show', 1), ('military', 1), ('counter', 1), ('intelligence', 1), ('principle', 1), ('objective', 1), ('applied', 1), ('provides', 1), ('valuable', 1), ('advice', 1), ('guidance', 1), ('help', 1), ('business', 1), ('understand', 1), ('threat', 1), ('vector', 1), ('measure', 1), ('needed', 1), ('reduce', 1), ('risk', 1), ('impact', 1)]
[('cybersecurity', 1), ('pressing', 1), ('issue', 1), ('across', 1), ('industry', 1), ('increasingly', 1), ('important', 1), ('personal', 1), ('life', 1), ('learning', 1), ('basic', 1), ('fundamental', 1), ('essential', 1), ('order', 1), ('company', 1), ('individual', 1), ('thrive', 1), ('although', 1), ('literature', 1)]
[('microsoft', 2), ('workload', 2), ('know', 1), ('amazon', 1), ('web', 1), ('service', 1), ('run', 1), ('nearly', 1), ('double', 1), ('amount', 1), ('cloud', 1), ('provider', 1), ('running', 1), ('aws', 1), ('single', 1), ('source', 1), ('solution', 1), ('learning', 1), ('best', 1), ('practice', 1), ('skill', 1), ('guidance', 1)]
[('business', 3), ('oracle', 2), ('suite', 2), ('using', 2), ('learn', 1), ('build', 1), ('implement', 1), ('robust', 1), ('system', 1), ('new', 1), ('nbsp', 1), ('release', 1), ('eb', 1), ('hand', 1), ('real', 1), ('world', 1), ('guide', 1), ('explains', 1), ('rationale', 1), ('environment', 1), ('enterprise', 1)]
[('security', 2), ('penetration', 2), ('learn', 1), ('everything', 1), ('need', 1), ('know', 1), ('become', 1), ('professional', 1), ('tester', 1), ('simplifies', 1), ('hand', 1), ('testing', 1), ('breaking', 1), ('step', 1), ('process', 1), ('finding', 1), ('vulnerability', 1), ('misconfigurations', 1)]
[('various', 2), ('sql', 2), ('data', 2), ('learn', 1), ('commercial', 1), ('open', 1), ('source', 1), ('product', 1), ('perform', 1), ('big', 1), ('platform', 1), ('understand', 1), ('architecture', 1), ('engine', 1), ('used', 1), ('tool', 1), ('work', 1), ('internally', 1), ('term', 1), ('execution', 1), ('movement', 1), ('latency', 1)]
[('content', 2), ('sitecore', 2), ('structure', 1), ('template', 1), ('within', 1), ('work', 1), ('integrated', 1), ('tool', 1), ('leverage', 1), ('extensive', 1), ('automation', 1), ('capability', 1), ('recently', 1), ('recognized', 1), ('reputable', 1), ('reliable', 1), ('enterprise', 1), ('class', 1), ('web', 1), ('management', 1)]
[('build', 2), ('nbsp', 2), ('workflow', 2), ('learn', 1), ('logic', 1), ('apps', 1), ('configuring', 1), ('salesforce', 1), ('lightning', 1), ('process', 1), ('builder', 1), ('visual', 1), ('software', 1), ('tool', 1), ('meet', 1), ('need', 1), ('organization', 1), ('without', 1), ('use', 1), ('code', 1), ('able', 1)]
[('team', 3), ('managing', 2), ('engineering', 2), ('remote', 2), ('hard', 1), ('even', 1), ('harder', 1), ('dedicating', 1), ('effort', 1), ('setting', 1), ('proper', 1), ('first', 1), ('environment', 1), ('allow', 1), ('thrive', 1), ('book', 1), ('break', 1), ('important', 1), ('process', 1)]
[('basic', 2), ('ansible', 2), ('ready', 1), ('go', 1), ('using', 1), ('becoming', 1), ('proficient', 1), ('implementing', 1), ('configuration', 1), ('management', 1), ('nbsp', 1), ('project', 1), ('book', 1), ('begin', 1), ('providing', 1), ('detail', 1), ('install', 1), ('configure', 1)]
[('business', 3), ('technique', 2), ('analytics', 2), ('help', 2), ('master', 1), ('trick', 1), ('consulting', 1), ('specifically', 1), ('applicable', 1), ('small', 1), ('medium', 1), ('smes', 1), ('written', 1), ('hone', 1), ('skill', 1), ('book', 1), ('applies', 1), ('data', 1), ('science', 1), ('solve', 1)]
[('eleventy', 2), ('leverage', 1), ('power', 1), ('quickly', 1), ('produce', 1), ('static', 1), ('site', 1), ('efficient', 1), ('fast', 1), ('project', 1), ('oriented', 1), ('book', 1), ('simplifies', 1), ('process', 1), ('setting', 1), ('nbsp', 1), ('manipulating', 1), ('content', 1), ('using', 1), ('little', 1), ('text', 1), ('editor', 1), ('free', 1)]
[('web', 3), ('next', 1), ('evolution', 1), ('world', 1), ('wide', 1), ('based', 1), ('blockchain', 1), ('technology', 1), ('book', 1), ('equip', 1), ('nbsp', 1), ('entrepreneur', 1), ('best', 1), ('preparation', 1), ('megatrend', 1), ('reviewing', 1), ('core', 1), ('concept', 1), ('daos', 1), ('token', 1), ('dapps', 1)]
[('automation', 2), ('apply', 1), ('best', 1), ('practice', 1), ('deploying', 1), ('administering', 1), ('hcl', 1), ('workload', 1), ('hwa', 1), ('meet', 1), ('requirement', 1), ('digitally', 1), ('transformed', 1), ('platform', 1), ('book', 1), ('provide', 1), ('detailed', 1), ('architecture', 1), ('deployment', 1), ('option', 1), ('achieve', 1)]
[('book', 2), ('career', 2), ('market', 1), ('talk', 1), ('effort', 1), ('within', 1), ('outside', 1), ('job', 1), ('help', 1), ('software', 1), ('engineer', 1), ('advance', 1), ('truthful', 1), ('introspective', 1), ('look', 1), ('technical', 1), ('consolidation', 1)]
[('decentralized', 2), ('explore', 1), ('automated', 1), ('market', 1), ('maker', 1), ('amms', 1), ('underlying', 1), ('protocol', 1), ('used', 1), ('exchange', 1), ('dex', 1), ('allow', 1), ('user', 1), ('perform', 1), ('trade', 1), ('cryptocurrencies', 1), ('way', 1), ('middleman', 1), ('book', 1), ('provides', 1), ('thorough', 1), ('study', 1)]
[('used', 2), ('ibm', 2), ('step', 2), ('examine', 1), ('working', 1), ('detail', 1), ('real', 1), ('world', 1), ('java', 1), ('program', 1), ('system', 1), ('integration', 1), ('software', 1), ('applying', 1), ('various', 1), ('api', 1), ('library', 1), ('banking', 1), ('insurance', 1), ('company', 1), ('book', 1), ('includes', 1), ('procedure', 1), ('use', 1)]
[('nbsp', 2), ('global', 1), ('survey', 1), ('mckinsey', 1), ('bcg', 1), ('gartner', 1), ('others', 1), ('show', 1), ('le', 1), ('digital', 1), ('transformation', 1), ('program', 1), ('succeed', 1), ('mission', 1), ('improve', 1), ('company', 1), ('performance', 1), ('employee', 1), ('productivity', 1), ('due', 1), ('fact', 1)]
[('bring', 1), ('together', 1), ('python', 1), ('programming', 1), ('language', 1), ('microsoft', 1), ('powershell', 1), ('address', 1), ('digital', 1), ('investigation', 1), ('create', 1), ('state', 1), ('art', 1), ('solution', 1), ('administrator', 1), ('personnel', 1), ('cyber', 1), ('response', 1), ('team', 1), ('forensic', 1), ('investigator', 1), ('learn', 1)]
[('digital', 2), ('use', 1), ('experience', 1), ('platform', 1), ('dxp', 1), ('improve', 1), ('development', 1), ('productivity', 1), ('release', 1), ('timeline', 1), ('leverage', 1), ('pre', 1), ('integrated', 1), ('feature', 1), ('set', 1), ('dxps', 1), ('organization', 1), ('transformation', 1), ('journey', 1), ('quickly', 1), ('develop', 1), ('personalized', 1)]
[('builder', 3), ('solution', 2), ('lightning', 2), ('use', 1), ('hand', 1), ('guide', 1), ('build', 1), ('powerful', 1), ('salesforce', 1), ('platform', 1), ('without', 1), ('using', 1), ('single', 1), ('line', 1), ('code', 1), ('revised', 1), ('expanded', 1), ('second', 1), ('edition', 1), ('includes', 1), ('process', 1), ('flow', 1), ('app', 1), ('bolt', 1)]
[('small', 3), ('business', 2), ('fo', 2), ('learn', 1), ('take', 1), ('complete', 1), ('control', 1), ('run', 1), ('powerful', 1), ('free', 1), ('open', 1), ('source', 1), ('software', 1), ('nbsp', 1), ('book', 1), ('introduces', 1), ('owner', 1), ('power', 1), ('security', 1), ('linux', 1), ('tool', 1), ('manage', 1)]
[('project', 2), ('client', 2), ('software', 1), ('estimation', 1), ('author', 1), ('dimitre', 1), ('dimitrov', 1), ('extrapolates', 1), ('upon', 1), ('crucial', 1), ('step', 1), ('accurately', 1), ('meaningfully', 1), ('forecasting', 1), ('timeline', 1), ('spec', 1), ('promised', 1), ('deliverable', 1), ('positive', 1), ('experience', 1)]
[('cyber', 3), ('warfare', 3), ('understand', 1), ('challenge', 1), ('implementing', 1), ('strategy', 1), ('conducting', 1), ('book', 1), ('address', 1), ('knowledge', 1), ('gap', 1), ('misconception', 1), ('take', 1), ('wage', 1), ('technical', 1), ('standpoint', 1)]
[('gather', 1), ('analyze', 1), ('data', 1), ('successfully', 1), ('identify', 1), ('trend', 1), ('create', 1), ('overarching', 1), ('strategy', 1), ('actionable', 1), ('next', 1), ('step', 1), ('excel', 1), ('book', 1), ('show', 1), ('even', 1), ('lack', 1), ('technical', 1), ('background', 1), ('make', 1), ('advanced', 1), ('interactive', 1), ('report', 1)]
[('go', 4), ('language', 2), ('beyond', 1), ('basic', 1), ('build', 1), ('complete', 1), ('application', 1), ('using', 1), ('open', 1), ('source', 1), ('library', 1), ('programming', 1), ('google', 1), ('book', 1), ('take', 1), ('deep', 1), ('memory', 1), ('lane', 1), ('crunchy', 1), ('detail', 1), ('straight', 1), ('outer', 1)]
[('autonomous', 2), ('mobile', 2), ('robot', 2), ('hardware', 2), ('start', 1), ('scratch', 1), ('build', 1), ('variety', 1), ('feature', 1), ('simulation', 1), ('book', 1), ('show', 1), ('simulate', 1), ('using', 1), ('ro', 1), ('develop', 1)]
[('reader', 2), ('comprehensive', 1), ('tutorial', 1), ('reference', 1), ('guide', 1), ('actionscript', 1), ('flex', 1), ('flexbuilder', 1), ('teach', 1), ('everything', 1), ('need', 1), ('know', 1), ('new', 1), ('technology', 1), ('beginning', 1), ('right', 1), ('advanced', 1), ('topic', 1)]
[('processing', 3), ('book', 2), ('first', 1), ('market', 1), ('nascent', 1), ('technology', 1), ('rapidly', 1), ('increasing', 1), ('popularitylinks', 1), ('creator', 1), ('help', 1), ('sell', 1)]
[('many', 1), ('book', 1), ('available', 1), ('cs', 1), ('different', 1), ('waste', 1), ('le', 1), ('time', 1), ('discussing', 1), ('theory', 1), ('get', 1), ('straight', 1), ('practical', 1), ('learning', 1), ('quickly', 1), ('giving', 1), ('reader', 1), ('need', 1), ('know', 1), ('addition', 1), ('completely', 1), ('date', 1)]
[('author', 2), ('previous', 1), ('title', 1), ('proven', 1), ('sale', 1), ('success', 1), ('year', 1), ('new', 1), ('edition', 1), ('completely', 1), ('revised', 1), ('updated', 1), ('widely', 1), ('acknowledged', 1), ('among', 1), ('best', 1), ('programming', 1), ('today', 1), ('includes', 1), ('progressive', 1), ('text', 1), ('example', 1), ('topic', 1)]
[('advanced', 2), ('joomla', 2), ('teach', 1), ('technique', 1), ('customizing', 1), ('cm', 1), ('including', 1), ('creating', 1), ('template', 1), ('administration', 1), ('building', 1), ('extension', 1), ('provide', 1), ('technical', 1), ('know', 1), ('bonanza', 1), ('information', 1), ('allow', 1), ('take', 1)]
[('java', 1), ('widely', 1), ('used', 1), ('programming', 1), ('language', 1), ('today', 1), ('first', 1), ('released', 1), ('sun', 1), ('microsystems', 1), ('year', 1), ('popularity', 1), ('grown', 1), ('point', 1), ('play', 1), ('important', 1), ('role', 1), ('life', 1), ('laptop', 1), ('data', 1)]
[('spring', 2), ('framework', 2), ('master', 1), ('fundamental', 1), ('core', 1), ('topic', 1), ('share', 1), ('author', 1), ('insight', 1), ('real', 1), ('world', 1), ('experience', 1), ('book', 1), ('go', 1), ('beyond', 1), ('basic', 1), ('learn', 1), ('leverage', 1), ('latest', 1), ('build', 1), ('various', 1), ('tier', 1)]
[('process', 2), ('data', 2), ('used', 2), ('book', 1), ('present', 1), ('framework', 1), ('need', 1), ('transform', 1), ('aspect', 1), ('world', 1), ('collected', 1), ('analyzed', 1), ('make', 1), ('decision', 1), ('understand', 1), ('technology', 1), ('gather', 1), ('many', 1), ('source', 1)]
[('geometric', 3), ('coding', 2), ('nbsp', 2), ('facilitate', 1), ('generating', 1), ('motif', 1), ('special', 1), ('focus', 1), ('analyzing', 1), ('formulation', 1), ('book', 1), ('aim', 1), ('teach', 1), ('analytical', 1), ('skill', 1), ('combining', 1), ('art', 1), ('mathematics', 1), ('pattern', 1), ('quintessentially', 1)]
[('tame', 1), ('power', 1), ('apple', 1), ('new', 1), ('user', 1), ('interface', 1), ('toolkit', 1), ('swiftui', 1), ('revised', 1), ('expanded', 1), ('seventh', 1), ('edition', 1), ('cover', 1), ('basic', 1), ('information', 1), ('need', 1), ('running', 1), ('quickly', 1), ('turn', 1), ('idea', 1), ('working', 1), ('io', 1), ('apps', 1), ('stunningly', 1), ('interactive', 1)]
[('bring', 1), ('live', 1), ('heartbeat', 1), ('heart', 1), ('rate', 1), ('data', 1), ('electronics', 1), ('project', 1), ('impressive', 1), ('feature', 1), ('build', 1), ('user', 1), ('engagement', 1), ('maker', 1), ('developer', 1), ('artist', 1), ('probably', 1), ('run', 1), ('common', 1), ('frustrating', 1), ('stumbling', 1), ('block', 1), ('incorporating', 1)]
[('business', 2), ('understand', 1), ('security', 1), ('feature', 1), ('needed', 1), ('secure', 1), ('infrastructure', 1), ('small', 1), ('medium', 1), ('size', 1), ('book', 1), ('give', 1), ('manager', 1), ('executive', 1), ('solid', 1), ('understanding', 1), ('different', 1), ('technology', 1), ('solution', 1)]
[('model', 3), ('ai', 2), ('machine', 2), ('learning', 2), ('book', 2), ('understand', 1), ('use', 1), ('explainable', 1), ('xai', 1), ('library', 1), ('build', 1), ('trust', 1), ('utilizes', 1), ('problem', 1), ('solution', 1), ('approach', 1), ('explaining', 1), ('algorithm', 1), ('nbsp', 1), ('start', 1)]
[('book', 2), ('cloud', 2), ('comprehensive', 1), ('guide', 1), ('covering', 1), ('modern', 1), ('strategy', 1), ('leadership', 1), ('approach', 1), ('building', 1), ('scaling', 1), ('organization', 1), ('maturity', 1), ('adoption', 1), ('journey', 1), ('nbsp', 1), ('start', 1), ('examining', 1), ('technical', 1), ('topic', 1)]
[('time', 2), ('app', 2), ('io', 2), ('platform', 2), ('know', 1), ('basic', 1), ('swift', 1), ('code', 1), ('flow', 1), ('logic', 1), ('ease', 1), ('first', 1), ('building', 1), ('workable', 1), ('build', 1), ('magical', 1), ('move', 1), ('beyond', 1), ('mastered', 1), ('best', 1), ('selling', 1)]
[('git', 3), ('work', 1), ('avoid', 1), ('dangerous', 1), ('mishap', 1), ('popular', 1), ('cooperative', 1), ('environment', 1), ('even', 1), ('software', 1), ('engineering', 1), ('background', 1), ('previous', 1), ('experience', 1), ('book', 1), ('teach', 1), ('basic', 1), ('principle', 1), ('working', 1), ('cooperatively', 1)]
[('programming', 2), ('pic', 2), ('nbsp', 2), ('embark', 1), ('journey', 1), ('world', 1), ('embedded', 1), ('book', 1), ('introduces', 1), ('bit', 1), ('teach', 1), ('main', 1), ('function', 1), ('work', 1), ('used', 1), ('micro', 1), ('stop', 1), ('reference', 1)]
[('communication', 2), ('although', 1), ('wi', 1), ('fi', 1), ('incorporated', 1), ('many', 1), ('internet', 1), ('based', 1), ('application', 1), ('knowledge', 1), ('alternative', 1), ('protocol', 1), ('vital', 1), ('optimal', 1), ('project', 1), ('development', 1), ('microcontroller', 1), ('esp', 1), ('book', 1), ('focus', 1)]
[('chatgpt', 2), ('learn', 1), ('use', 1), ('large', 1), ('scale', 1), ('natural', 1), ('language', 1), ('processing', 1), ('model', 1), ('developed', 1), ('openai', 1), ('book', 1), ('explains', 1), ('us', 1), ('machine', 1), ('learning', 1), ('autonomously', 1), ('generate', 1), ('text', 1), ('based', 1), ('user', 1), ('input', 1), ('explores', 1), ('significant', 1), ('implication', 1)]
[('world', 2), ('crypto', 1), ('going', 1), ('change', 1), ('tired', 1), ('confusing', 1), ('financial', 1), ('jargon', 1), ('complicated', 1), ('technical', 1), ('terminology', 1), ('look', 1), ('book', 1), ('demystifies', 1), ('cryptocurrencies', 1), ('blockchain', 1), ('technology', 1), ('explains', 1), ('accessible', 1)]
[('testing', 2), ('apply', 1), ('test', 1), ('driven', 1), ('principle', 1), ('create', 1), ('scalable', 1), ('maintainable', 1), ('react', 1), ('application', 1), ('book', 1), ('nbsp', 1), ('cover', 1), ('wide', 1), ('range', 1), ('topic', 1), ('including', 1), ('setting', 1), ('environment', 1), ('utilizing', 1), ('popular', 1), ('framework', 1), ('cypress', 1), ('jest', 1)]
[('technical', 2), ('decision', 2), ('business', 2), ('objective', 2), ('learn', 1), ('make', 1), ('right', 1), ('achieve', 1), ('organization', 1), ('book', 1), ('guide', 1), ('software', 1), ('engineer', 1), ('responsible', 1), ('making', 1), ('impact', 1)]
[('window', 2), ('learn', 1), ('function', 1), ('foundational', 1), ('concept', 1), ('cookbook', 1), ('style', 1), ('approach', 1), ('beginning', 1), ('introduction', 1), ('clause', 1), ('various', 1), ('configuration', 1), ('term', 1), ('partition', 1), ('frame', 1), ('created', 1), ('data', 1), ('sorted', 1)]
[('step', 2), ('begin', 1), ('programming', 1), ('journey', 1), ('starting', 1), ('basic', 1), ('progressing', 1), ('example', 1), ('help', 1), ('become', 1), ('proficient', 1), ('programmer', 1), ('book', 1), ('includes', 1), ('new', 1), ('feature', 1), ('standard', 1), ('nbsp', 1), ('need', 1)]
[('mobile', 2), ('scale', 1), ('application', 1), ('handle', 1), ('enormous', 1), ('user', 1), ('base', 1), ('development', 1), ('team', 1), ('book', 1), ('outline', 1), ('scaling', 1), ('challenge', 1), ('engineer', 1), ('face', 1), ('standard', 1), ('technique', 1), ('design', 1), ('pattern', 1), ('deal', 1), ('issue', 1), ('nbsp', 1), ('already', 1), ('know', 1)]
[('typescript', 2), ('jumpstart', 1), ('working', 1), ('knowledge', 1), ('nbsp', 1), ('quick', 1), ('practical', 1), ('guide', 1), ('start', 1), ('using', 1), ('open', 1), ('source', 1), ('object', 1), ('orientated', 1), ('language', 1), ('confidence', 1), ('book', 1), ('highlight', 1), ('work', 1), ('javascript', 1), ('framework', 1), ('giving', 1)]
[('avx', 3), ('assembly', 2), ('language', 2), ('book', 1), ('instructional', 1), ('text', 1), ('teach', 1), ('code', 1), ('function', 1), ('explains', 1), ('exploit', 1), ('simd', 1), ('capability', 1), ('processor', 1), ('using', 1)]
[('linux', 5), ('learn', 1), ('sysadmin', 1), ('expert', 1), ('user', 1), ('operating', 1), ('system', 1), ('even', 1), ('previous', 1), ('experience', 1), ('second', 1), ('edition', 1), ('popular', 1), ('highly', 1), ('rated', 1), ('self', 1), ('study', 1), ('training', 1), ('course', 1), ('fully', 1), ('updated', 1), ('fedora', 1)]
[('trading', 3), ('build', 2), ('strategy', 2), ('python', 2), ('implement', 1), ('using', 1), ('book', 1), ('introduce', 1), ('fundamental', 1), ('concept', 1), ('quantitative', 1), ('show', 1), ('use', 1), ('popular', 1), ('library', 1), ('model', 1), ('scratch', 1), ('cover', 1)]
[('cloud', 2), ('nbsp', 2), ('framework', 2), ('improve', 1), ('security', 1), ('within', 1), ('organization', 1), ('leveraging', 1), ('aws', 1), ('shared', 1), ('responsibility', 1), ('model', 1), ('architected', 1), ('adoption', 1), ('book', 1), ('show', 1), ('use', 1), ('tool', 1), ('make', 1), ('best', 1), ('decision', 1)]
[('dbt', 2), ('data', 2), ('transformation', 2), ('book', 1), ('show', 1), ('used', 1), ('build', 1), ('pipeline', 1), ('enable', 1), ('dependency', 1), ('management', 1), ('allow', 1), ('version', 1), ('control', 1), ('automated', 1), ('testing', 1), ('explains', 1), ('revolutionizing', 1), ('advantage', 1)]
[('data', 3), ('mining', 2), ('use', 1), ('popular', 1), ('technique', 1), ('microsoft', 1), ('excel', 1), ('better', 1), ('understand', 1), ('machine', 1), ('learning', 1), ('method', 1), ('software', 1), ('tool', 1), ('programming', 1), ('language', 1), ('package', 1), ('take', 1), ('input', 1), ('deliver', 1), ('result', 1), ('directly', 1), ('presenting', 1), ('insight', 1), ('working', 1)]
[('linux', 2), ('using', 1), ('administering', 1), ('volume', 1), ('work', 1), ('multiple', 1), ('vms', 1), ('single', 1), ('physical', 1), ('host', 1), ('create', 1), ('network', 1), ('sharpen', 1), ('sysadmin', 1), ('skill', 1), ('chapter', 1), ('fully', 1), ('updated', 1), ('fedora', 1), ('expanded', 1), ('content', 1), ('figure', 1)]
[('web', 2), ('book', 1), ('teach', 1), ('essential', 1), ('knowledge', 1), ('required', 1), ('successful', 1), ('productive', 1), ('developer', 1), ('ability', 1), ('produce', 1), ('cutting', 1), ('edge', 1), ('website', 1), ('utilizing', 1), ('database', 1), ('updated', 1), ('edition', 1), ('start', 1), ('fundamental', 1)]
[('proven', 1), ('best', 1), ('seller', 1), ('award', 1), ('winner', 1), ('market', 1), ('insider', 1), ('highly', 1), ('recommended', 1), ('title', 1), ('page', 1), ('new', 1), ('material', 1), ('plus', 1), ('preview', 1), ('change', 1), ('whidbey', 1), ('visual', 1), ('studio', 1), ('go', 1), ('far', 1), ('beyond', 1), ('documentation', 1), ('white', 1), ('paper', 1)]
[('book', 2), ('date', 1), ('javascript', 1), ('available', 1), ('covering', 1), ('current', 1), ('standard', 1), ('technique', 1), ('practice', 1), ('provides', 1), ('need', 1), ('know', 1), ('hit', 1), ('ground', 1), ('running', 1), ('without', 1), ('making', 1), ('trawl', 1), ('hundred', 1), ('page', 1), ('syntax', 1)]
[('best', 2), ('peter', 2), ('wright', 2), ('beginning', 2), ('vb', 2), ('sold', 2), ('circa', 2), ('copy', 2), ('written', 1), ('selling', 1), ('author', 1), ('mark', 1), ('return', 1), ('form', 1), ('writes', 1), ('mission', 1), ('followed', 1), ('object', 1)]
[('book', 3), ('blog', 2), ('give', 1), ('professional', 1), ('quality', 1), ('information', 1), ('design', 1), ('development', 1), ('others', 1), ('either', 1), ('dummy', 1), ('style', 1), ('aimed', 1), ('understanding', 1), ('community', 1), ('theory', 1), ('support', 1), ('popular', 1)]
[('web', 2), ('create', 2), ('application', 2), ('step', 2), ('book', 1), ('designed', 1), ('help', 1), ('administrator', 1), ('developer', 1), ('custom', 1), ('content', 1), ('server', 1), ('contains', 1), ('instruction', 1), ('many', 1), ('different', 1), ('type', 1), ('including', 1), ('simple', 1), ('business', 1), ('form', 1), ('new', 1)]
[('javascript', 2), ('book', 1), ('long', 1), ('winded', 1), ('boring', 1), ('developer', 1), ('oriented', 1), ('provides', 1), ('quick', 1), ('easy', 1), ('reference', 1), ('code', 1), ('expert', 1), ('want', 1), ('quickly', 1), ('learn', 1), ('take', 1), ('advantage', 1), ('dom', 1), ('add', 1), ('cool', 1), ('functionality', 1)]
[('novell', 2), ('solution', 2), ('handy', 1), ('reference', 1), ('edirectory', 1), ('platform', 1), ('network', 1), ('consultant', 1), ('administrator', 1), ('find', 1), ('instant', 1), ('common', 1), ('administration', 1), ('issue', 1), ('based', 1), ('author', 1), ('experience', 1), ('industry', 1), ('wide', 1)]
[('different', 2), ('server', 2), ('asp', 2), ('net', 2), ('book', 1), ('survey', 1), ('technology', 1), ('available', 1), ('use', 1), ('map', 1), ('quality', 1), ('attribute', 1), ('application', 1), ('architecture', 1), ('author', 1), ('using', 1), ('nbsp', 1)]
[('spring', 3), ('market', 2), ('mvc', 2), ('web', 2), ('flow', 2), ('st', 1), ('book', 1), ('open', 1), ('source', 1), ('positioned', 1), ('become', 1), ('new', 1), ('strut', 1), ('authoritative', 1), ('solution', 1), ('project', 1), ('lead', 1)]
[('activerecord', 2), ('ruby', 2), ('pro', 1), ('help', 1), ('take', 1), ('advantage', 1), ('full', 1), ('power', 1), ('database', 1), ('engine', 1), ('within', 1), ('program', 1), ('rail', 1), ('application', 1), ('walk', 1), ('every', 1), ('step', 1), ('basic', 1), ('getting', 1), ('installing', 1), ('library', 1)]
[('offer', 2), ('free', 2), ('book', 2), ('ebook', 1), ('pro', 1), ('apache', 1), ('ant', 1), ('every', 1), ('purchase', 1), ('hard', 1), ('cover', 1), ('additional', 1), ('complimentary', 1), ('ebooks', 1), ('apply', 1), ('present', 1), ('distraction', 1), ('value', 1), ('added', 1), ('focused', 1), ('practical', 1), ('approach', 1), ('widely', 1), ('used', 1)]
[('net', 2), ('programmer', 2), ('first', 1), ('fully', 1), ('compliant', 1), ('title', 1), ('professional', 1), ('based', 1), ('apress', 1), ('best', 1), ('selling', 1), ('book', 1), ('original', 1), ('author', 1), ('prepares', 1), ('working', 1), ('face', 1), ('new', 1), ('technology', 1)]
[('net', 2), ('content', 2), ('provides', 1), ('compact', 1), ('coverage', 1), ('new', 1), ('ado', 1), ('feature', 1), ('use', 1), ('cutting', 1), ('edge', 1), ('tool', 1), ('visual', 1), ('studio', 1), ('example', 1), ('take', 1), ('practical', 1), ('focus', 1), ('opposed', 1), ('theoretical', 1), ('academic', 1), ('treatment', 1), ('heavily', 1), ('trimmed', 1)]
[('provides', 1), ('real', 1), ('world', 1), ('view', 1), ('best', 1), ('practice', 1), ('around', 1), ('using', 1), ('sharepoint', 1), ('technology', 1), ('meet', 1), ('business', 1), ('need', 1), ('seth', 1), ('bates', 1), ('technical', 1), ('reviewer', 1), ('scot', 1), ('hillier', 1), ('book', 1), ('list', 1), ('common', 1), ('deployment', 1), ('scenario', 1)]
[('php', 4), ('gtk', 2), ('pro', 1), ('first', 1), ('book', 1), ('focus', 1), ('upon', 1), ('rapidly', 1), ('maturing', 1), ('client', 1), ('side', 1), ('application', 1), ('development', 1), ('capabilitiesauthor', 1), ('scott', 1), ('mattock', 1), ('active', 1), ('member', 1), ('community', 1), ('co', 1), ('author', 1), ('official', 1), ('documentationmore', 1)]
[('iphone', 2), ('unleash', 1), ('take', 1), ('limit', 1), ('using', 1), ('secret', 1), ('tip', 1), ('technique', 1), ('gadget', 1), ('hacker', 1), ('erica', 1), ('sadun', 1), ('fast', 1), ('fun', 1), ('taking', 1), ('max', 1), ('detail', 1), ('best', 1), ('undocumented', 1), ('trick', 1), ('offer', 1), ('efficient', 1), ('enjoyable', 1)]
[('book', 2), ('lot', 1), ('covering', 1), ('cs', 1), ('html', 1), ('stand', 1), ('crowd', 1), ('combining', 1), ('best', 1), ('aspect', 1), ('reference', 1), ('tutorial', 1), ('teach', 1), ('everything', 1), ('need', 1), ('know', 1), ('design', 1), ('web', 1), ('site', 1), ('move', 1), ('fast', 1)]
[('relational', 2), ('chris', 1), ('date', 1), ('founder', 1), ('model', 1), ('updated', 1), ('expanded', 1), ('database', 1), ('dictionary', 1), ('include', 1), ('term', 1)]
[('ubuntu', 2), ('book', 1), ('guide', 1), ('key', 1), ('configuration', 1), ('administration', 1), ('task', 1), ('need', 1), ('know', 1), ('quickly', 1), ('deploy', 1), ('manage', 1), ('server', 1), ('distribution', 1), ('whether', 1), ('interested', 1), ('adopting', 1), ('within', 1), ('fortune', 1), ('environment', 1)]
[('excel', 2), ('book', 1), ('debra', 1), ('dalgleish', 1), ('microsoft', 1), ('office', 1), ('mvp', 1), ('expert', 1), ('trainer', 1), ('brings', 1), ('together', 1), ('stop', 1), ('resource', 1), ('anyone', 1), ('curious', 1), ('representing', 1), ('analyzing', 1), ('using', 1), ('data', 1), ('pivottables', 1)]
[('java', 2), ('feature', 2), ('platform', 2), ('book', 1), ('enable', 1), ('rapidly', 1), ('develop', 1), ('front', 1), ('end', 1), ('application', 1), ('using', 1), ('api', 1), ('button', 1), ('function', 1), ('mostly', 1), ('based', 1), ('se', 1), ('cover', 1), ('working', 1), ('rich', 1), ('client', 1), ('available', 1), ('netbeans', 1), ('building', 1)]
[('written', 1), ('developer', 1), ('dba', 1), ('data', 1), ('artisan', 1), ('pro', 1), ('sql', 1), ('server', 1), ('integration', 1), ('service', 1), ('show', 1), ('develop', 1), ('deploy', 1), ('enterprise', 1), ('ssis', 1), ('solution', 1), ('multibillion', 1), ('item', 1), ('environment', 1), ('addition', 1), ('detail', 1), ('build', 1), ('bespoke', 1)]
[('c', 3), ('dreamweaver', 2), ('massive', 1), ('step', 1), ('forward', 1), ('term', 1), ('integration', 1), ('rest', 1), ('suite', 1), ('flash', 1), ('firework', 1), ('photoshop', 1), ('etc', 1), ('includes', 1), ('whole', 1), ('host', 1), ('exciting', 1), ('feature', 1), ('essential', 1), ('guide', 1), ('cs', 1), ('ajax', 1)]
[('linux', 4), ('o', 3), ('step', 2), ('might', 1), ('say', 1), ('want', 1), ('graphical', 1), ('user', 1), ('interface', 1), ('mac', 1), ('geek', 1), ('assist', 1), ('migrating', 1), ('based', 1), ('system', 1), ('dual', 1), ('booting', 1), ('virtualization', 1), ('building', 1), ('environment', 1)]
[('groovy', 2), ('grail', 2), ('recipe', 1), ('busy', 1), ('developer', 1), ('guide', 1), ('developing', 1), ('application', 1), ('rather', 1), ('boring', 1), ('theoretical', 1), ('knowledge', 1), ('yet', 1), ('another', 1), ('language', 1), ('framework', 1), ('book', 1), ('delf', 1), ('straight', 1), ('solving', 1), ('real', 1), ('life', 1), ('problem', 1)]
[('rail', 3), ('heard', 1), ('amazing', 1), ('web', 1), ('framework', 1), ('called', 1), ('ruby', 1), ('taken', 1), ('world', 1), ('storm', 1), ('thought', 1), ('way', 1), ('complex', 1), ('think', 1), ('foundation', 1), ('take', 1), ('first', 1), ('step', 1), ('explaining', 1), ('plain', 1), ('english', 1)]
[('google', 3), ('app', 2), ('engine', 2), ('developing', 1), ('introduces', 1), ('development', 1), ('platform', 1), ('provides', 1), ('developer', 1), ('user', 1), ('infrastructure', 1), ('us', 1), ('develop', 1), ('deploy', 1), ('massively', 1), ('scalable', 1), ('application', 1), ('introduction', 1), ('concept', 1)]
[('software', 3), ('stop', 1), ('paying', 1), ('world', 1), ('full', 1), ('high', 1), ('quality', 1), ('spend', 1), ('dime', 1), ('spent', 1), ('entire', 1), ('computing', 1), ('budget', 1), ('pc', 1), ('find', 1), ('need', 1), ('anything', 1), ('interesting', 1)]
[('javascript', 2), ('best', 2), ('practice', 2), ('performance', 2), ('pro', 1), ('ria', 1), ('technique', 1), ('presentation', 1), ('show', 1), ('build', 1), ('rias', 1), ('rich', 1), ('internet', 1), ('application', 1), ('compelling', 1), ('user', 1), ('interface', 1), ('optimization', 1)]
[('effect', 2), ('video', 2), ('foundation', 1), ('actionscript', 1), ('image', 1), ('discus', 1), ('in', 1), ('out', 1), ('graphical', 1), ('manipulation', 1), ('code', 1), ('different', 1), ('element', 1), ('available', 1), ('flash', 1), ('project', 1), ('vector', 1), ('bitmap', 1), ('animated', 1), ('text', 1), ('dynamic', 1)]
[('android', 2), ('book', 2), ('pro', 1), ('first', 1), ('include', 1), ('coverage', 1), ('google', 1), ('sdk', 1), ('including', 1), ('branch', 1), ('formerly', 1), ('called', 1), ('cupcake', 1), ('essential', 1), ('cover', 1), ('fundamental', 1), ('building', 1), ('application', 1), ('embedded', 1), ('device', 1), ('thru', 1), ('advanced', 1), ('concept', 1)]
[('ibm', 2), ('websphere', 2), ('application', 2), ('server', 2), ('product', 2), ('pro', 1), ('internals', 1), ('cover', 1), ('internal', 1), ('architecture', 1), ('implementation', 1), ('version', 1), ('set', 1), ('extend', 1), ('present', 1), ('information', 1), ('enable', 1)]
[('language', 3), ('based', 2), ('scripting', 2), ('open', 1), ('source', 1), ('scala', 1), ('java', 1), ('dynamic', 1), ('functional', 1), ('programming', 1), ('moreover', 1), ('highly', 1), ('scalable', 1), ('lends', 1), ('building', 1), ('cloud', 1), ('deliverable', 1), ('software', 1), ('service', 1), ('saas', 1), ('online', 1)]
[('plone', 3), ('cover', 2), ('definitive', 1), ('guide', 1), ('second', 1), ('edition', 1), ('completely', 1), ('updated', 1), ('version', 1), ('newest', 1), ('feature', 1), ('book', 1), ('provides', 1), ('complete', 1), ('detailed', 1), ('overview', 1), ('divided', 1), ('three', 1), ('part', 1), ('using', 1)]
[('web', 4), ('information', 3), ('data', 1), ('knowledge', 1), ('scripting', 1), ('intelligence', 1), ('gathering', 1), ('processing', 1), ('offer', 1), ('reader', 1), ('ruby', 1), ('script', 1), ('intelligent', 1), ('management', 1), ('environment', 1), ('including', 1)]
[('sql', 3), ('server', 3), ('database', 2), ('pro', 1), ('administration', 1), ('critical', 1), ('administrator', 1), ('seeking', 1), ('depth', 1), ('knowledge', 1), ('administering', 1), ('book', 1), ('cover', 1), ('impact', 1), ('new', 1), ('feature', 1), ('available', 1), ('specifically', 1), ('targeted', 1)]
[('problem', 2), ('silverlight', 1), ('recipe', 1), ('solution', 1), ('approach', 1), ('practical', 1), ('companion', 1), ('developing', 1), ('rich', 1), ('interactive', 1), ('web', 1), ('application', 1), ('microsoft', 1), ('latest', 1), ('technology', 1), ('book', 1), ('tackle', 1), ('common', 1), ('scenario', 1), ('job', 1), ('developer', 1), ('face', 1), ('every', 1)]
[('sql', 2), ('best', 2), ('even', 1), ('little', 1), ('knowledge', 1), ('beginning', 1), ('bring', 1), ('intermediate', 1), ('level', 1), ('teach', 1), ('practice', 1), ('along', 1), ('way', 1), ('learn', 1), ('write', 1), ('code', 1), ('help', 1), ('achieve', 1), ('performing', 1), ('application', 1)]
[('flash', 2), ('take', 2), ('familiar', 1), ('basic', 1), ('essential', 1), ('guide', 1), ('c', 1), ('aspect', 1), ('application', 1), ('animation', 1), ('sound', 1), ('inverse', 1), ('kinematics', 1), ('drawing', 1), ('tool', 1), ('actionscript', 1), ('book', 1)]
[('cs', 4), ('learn', 2), ('think', 1), ('know', 1), ('take', 1), ('skill', 1), ('next', 1), ('level', 1), ('write', 1), ('organized', 1), ('optimized', 1), ('improve', 1), ('maintainability', 1), ('performance', 1), ('appearance', 1), ('work', 1), ('document', 1), ('flow', 1), ('positioning', 1)]
[('server', 3), ('springsource', 2), ('dm', 2), ('based', 2), ('java', 2), ('application', 2), ('completely', 1), ('modular', 1), ('osgi', 1), ('designed', 1), ('run', 1), ('enterprise', 1), ('spring', 1), ('powered', 1), ('new', 1), ('degree', 1), ('flexibility', 1), ('reliability', 1)]
[('iphone', 4), ('fourth', 1), ('book', 1), ('series', 1), ('project', 1), ('based', 1), ('work', 1), ('experience', 1), ('volume', 1), ('take', 1), ('advanced', 1), ('aspect', 1), ('development', 1), ('first', 1), ('generation', 1), ('application', 1), ('hit', 1), ('app', 1), ('store', 1)]
[('linux', 2), ('user', 2), ('control', 1), ('home', 1), ('remotely', 1), ('wanted', 1), ('turn', 1), ('light', 1), ('house', 1), ('open', 1), ('close', 1), ('curtain', 1), ('away', 1), ('holiday', 1), ('want', 1), ('able', 1), ('play', 1), ('music', 1), ('every', 1), ('room', 1), ('controlled', 1)]
[('programming', 2), ('processing', 1), ('open', 1), ('source', 1), ('project', 1), ('bridge', 1), ('gap', 1), ('art', 1), ('simplicity', 1), ('power', 1), ('appeal', 1), ('non', 1), ('coder', 1), ('old', 1), ('hand', 1), ('alike', 1), ('flash', 1), ('developer', 1), ('already', 1), ('firm', 1), ('grasp', 1), ('basic', 1), ('principle', 1)]
[('build', 2), ('part', 2), ('cnc', 2), ('thing', 1), ('frustrated', 1), ('compromise', 1), ('design', 1), ('fit', 1), ('whatever', 1), ('happen', 1), ('available', 1), ('fabricate', 1), ('machine', 1), ('book', 1), ('started', 1), ('expert', 1)]
[('blackberry', 4), ('cool', 1), ('fun', 1), ('mean', 1), ('serious', 1), ('business', 1), ('bought', 1), ('help', 1), ('life', 1), ('organized', 1), ('free', 1), ('ball', 1), ('chain', 1), ('desktop', 1), ('computing', 1)]
[('project', 3), ('sharepoint', 2), ('many', 1), ('successful', 1), ('manager', 1), ('beginning', 1), ('utilize', 1), ('microsoft', 1), ('drive', 1), ('operational', 1), ('initiative', 1), ('server', 1), ('provides', 1), ('team', 1), ('centralized', 1), ('location', 1), ('information', 1), ('facilitates', 1), ('collaboration', 1)]
[('found', 1), ('perfect', 1), ('communication', 1), ('partner', 1), ('tiny', 1), ('light', 1), ('inexpensive', 1), ('netbooks', 1), ('ideal', 1), ('match', 1), ('need', 1), ('keep', 1), ('touch', 1), ('work', 1), ('family', 1), ('friend', 1), ('wherever', 1), ('go', 1), ('tech', 1), ('mag', 1), ('guru', 1), ('nancy', 1), ('nicolaisen', 1), ('help', 1), ('make', 1), ('right', 1)]
[('platform', 2), ('gaming', 2), ('window', 1), ('phone', 1), ('powerful', 1), ('mobile', 1), ('computing', 1), ('huge', 1), ('potential', 1), ('instant', 1), ('capability', 1), ('promise', 1), ('move', 1), ('reality', 1), ('device', 1), ('ideal', 1), ('environment', 1), ('net', 1), ('developer', 1)]
[('website', 2), ('basic', 2), ('although', 1), ('web', 1), ('standard', 1), ('based', 1), ('scale', 1), ('effectively', 1), ('cs', 1), ('give', 1), ('result', 1), ('consideration', 1), ('obstacle', 1), ('high', 1), ('traffic', 1), ('face', 1), ('keep', 1), ('development', 1), ('hosting', 1), ('cost', 1), ('minimum', 1), ('many', 1)]
[('ipad', 3), ('thinner', 1), ('powerful', 1), ('intuitive', 1), ('fun', 1), ('user', 1), ('age', 1), ('used', 1), ('reading', 1), ('surfing', 1), ('web', 1), ('emailing', 1), ('watching', 1), ('tv', 1), ('movie', 1), ('getting', 1), ('work', 1), ('done', 1), ('apps', 1)]
[('excel', 2), ('made', 1), ('simple', 1), ('learn', 1), ('key', 1), ('feature', 1), ('understand', 1), ('new', 1), ('utilize', 1), ('dozen', 1), ('time', 1), ('saving', 1), ('tip', 1), ('trick', 1), ('job', 1), ('done', 1), ('screen', 1), ('visuals', 1), ('clear', 1), ('cut', 1), ('instruction', 1), ('guide', 1)]
[('game', 7), ('center', 3), ('kit', 3), ('use', 2), ('beginning', 1), ('io', 1), ('show', 1), ('create', 1), ('fun', 1), ('polished', 1), ('advanced', 1), ('feature', 1), ('social', 1), ('networking', 1), ('voice', 1), ('ip', 1), ('voip', 1), ('help', 1), ('reach', 1), ('new', 1)]
[('web', 4), ('design', 2), ('pro', 1), ('io', 1), ('development', 1), ('website', 1), ('develop', 1), ('application', 1), ('iphone', 1), ('ipad', 1), ('using', 1), ('standard', 1), ('deployed', 1), ('apple', 1), ('safari', 1), ('browser', 1), ('utilizing', 1), ('latest', 1), ('mobile', 1), ('technology', 1), ('release', 1), ('book', 1)]
[('html', 3), ('web', 2), ('brings', 1), ('biggest', 1), ('change', 1), ('seen', 1), ('year', 1), ('designer', 1), ('developer', 1), ('whole', 1), ('host', 1), ('new', 1), ('technique', 1), ('sleeve', 1), ('displaying', 1), ('video', 1), ('audio', 1), ('natively', 1), ('creating', 1), ('realtime', 1), ('graphic', 1), ('directly', 1)]
[('method', 2), ('advanced', 1), ('actionscript', 1), ('fresh', 1), ('look', 1), ('new', 1), ('approach', 1), ('utilizing', 1), ('valuable', 1), ('structural', 1), ('technique', 1), ('commonly', 1), ('used', 1), ('field', 1), ('rich', 1), ('interactive', 1), ('application', 1), ('development', 1), ('broken', 1), ('different', 1)]
[('accessory', 3), ('iphone', 3), ('api', 2), ('book', 1), ('provides', 1), ('serious', 1), ('depth', 1), ('look', 1), ('apple', 1), ('external', 1), ('framework', 1), ('learn', 1), ('create', 1), ('new', 1), ('integrated', 1), ('solution', 1), ('combine', 1), ('apps', 1), ('dedicated', 1), ('hardware', 1), ('o', 1)]
[('step', 2), ('office', 2), ('learn', 2), ('book', 1), ('practical', 1), ('guide', 1), ('getting', 1), ('started', 1), ('microsoft', 1), ('create', 1), ('edit', 1), ('essential', 1), ('file', 1), ('document', 1), ('spreadsheet', 1), ('presentation', 1), ('quickly', 1), ('efficiently', 1)]
[('coldfusion', 2), ('tool', 2), ('become', 2), ('important', 2), ('adobe', 1), ('remains', 1), ('today', 1), ('significant', 1), ('web', 1), ('service', 1), ('framework', 1), ('stand', 1), ('even', 1), ('possible', 1), ('primary', 1), ('cloud', 1), ('development', 1), ('continues', 1)]
[('java', 2), ('google', 1), ('app', 1), ('engine', 1), ('key', 1), ('technology', 1), ('emerge', 1), ('recent', 1), ('year', 1), ('help', 1), ('build', 1), ('scalable', 1), ('web', 1), ('application', 1), ('even', 1), ('limited', 1), ('previous', 1), ('experience', 1), ('programmer', 1), ('book', 1), ('offer', 1), ('approach', 1), ('beginning', 1)]
[('rail', 3), ('learn', 2), ('beginning', 1), ('practical', 1), ('starting', 1), ('point', 1), ('anyone', 1), ('wanting', 1), ('build', 1), ('dynamic', 1), ('web', 1), ('application', 1), ('using', 1), ('framework', 1), ('ruby', 1), ('component', 1), ('fit', 1), ('together', 1), ('leverage', 1)]
[('iphone', 2), ('congratulation', 1), ('purchased', 1), ('arguably', 1), ('coolest', 1), ('smartphone', 1), ('market', 1), ('time', 1), ('learn', 1), ('take', 1), ('advantage', 1), ('feature', 1), ('apps', 1), ('secret', 1), ('technique', 1), ('available', 1), ('accomplish', 1), ('look', 1)]
[('control', 3), ('telerik', 2), ('asp', 2), ('net', 2), ('silverlight', 2), ('book', 1), ('provides', 1), ('complete', 1), ('guide', 1), ('implementing', 1), ('range', 1), ('invaluable', 1), ('developer', 1), ('provide', 1), ('vast', 1), ('array', 1), ('rich', 1), ('targeted', 1)]
[('persistence', 2), ('data', 2), ('important', 1), ('set', 1), ('technique', 1), ('technology', 1), ('accessing', 1), ('transacting', 1), ('ensuring', 1), ('mobile', 1), ('regardless', 1), ('specific', 1), ('application', 1), ('context', 1), ('java', 1), ('development', 1), ('key', 1), ('factor', 1), ('enterprise', 1)]
[('net', 2), ('best', 2), ('practice', 2), ('pro', 1), ('practical', 1), ('reference', 1), ('apply', 1), ('project', 1), ('today', 1), ('learn', 1), ('standard', 1), ('technique', 1), ('convention', 1), ('sharply', 1), ('focused', 1), ('realistic', 1), ('helpful', 1), ('achieving', 1), ('result', 1)]
[('rsquo', 2), ('window', 1), ('phone', 1), ('code', 1), ('named', 1), ('mango', 1), ('mark', 1), ('significant', 1), ('upgrade', 1), ('microsoft', 1), ('smartphone', 1), ('product', 1), ('packed', 1), ('sophisticated', 1), ('new', 1), ('feature', 1), ('functionality', 1), ('device', 1), ('net', 1), ('developer', 1), ('dream', 1), ('easily', 1), ('programmable', 1), ('using', 1), ('silverlight', 1)]
[('rsquo', 5), ('mar', 2), ('congratulation', 1), ('base', 1), ('alpha', 1), ('first', 1), ('human', 1), ('outpost', 1), ('red', 1), ('planet', 1), ('relax', 1), ('though', 1), ('rose', 1), ('unicorn', 1), ('called', 1), ('bringer', 1), ('war', 1), ('nothing', 1)]
[('window', 3), ('phone', 2), ('platform', 1), ('recently', 1), ('updated', 1), ('provides', 1), ('remarkable', 1), ('opportunity', 1), ('developer', 1), ('create', 1), ('state', 1), ('art', 1), ('mobile', 1), ('application', 1), ('using', 1), ('existing', 1), ('skill', 1), ('familiar', 1), ('toolset', 1), ('pro', 1), ('development', 1), ('second', 1)]
[('design', 3), ('database', 2), ('sql', 2), ('server', 2), ('learn', 1), ('effective', 1), ('scalable', 1), ('technique', 1), ('environment', 1), ('pro', 1), ('relational', 1), ('implementation', 1), ('cover', 1), ('everything', 1), ('logic', 1), ('business', 1), ('user', 1), ('understand', 1), ('way', 1)]
[('app', 3), ('idea', 2), ('mobile', 2), ('web', 2), ('simple', 1), ('complicated', 1), ('either', 1), ('way', 1), ('learn', 1), ('html', 1), ('javascript', 1), ('io', 1), ('help', 1), ('build', 1), ('fine', 1), ('tune', 1), ('publish', 1), ('iphone', 1), ('ipad', 1), ('ipod', 1), ('touch', 1), ('scott', 1)]
[('office', 2), ('solution', 2), ('pro', 1), ('development', 1), ('practical', 1), ('hand', 1), ('guide', 1), ('building', 1), ('cloud', 1), ('based', 1), ('using', 1), ('platform', 1), ('groundbreaking', 1), ('offering', 1), ('microsoft', 1), ('provides', 1), ('enterprise', 1), ('class', 1), ('collaborative', 1), ('affordable', 1), ('price', 1)]
[('agile', 2), ('lightweight', 2), ('open', 2), ('source', 2), ('framework', 2), ('leading', 2), ('java', 2), ('spring', 1), ('continues', 1), ('de', 1), ('facto', 1), ('enterprise', 1), ('application', 1), ('development', 1), ('today', 1), ('programmer', 1), ('developer', 1), ('work', 1)]
[('glasshaus', 1)]
[('visual', 2), ('real', 2), ('world', 2), ('software', 2), ('configuration', 2), ('designed', 1), ('use', 1), ('studio', 1), ('net', 1), ('sourcesafe', 1), ('cv', 1), ('management', 1), ('provides', 1), ('extensive', 1), ('overview', 1), ('development', 1), ('accompanied', 1), ('numerous', 1), ('example', 1)]
[('fun', 1), ('book', 1), ('teach', 1), ('fundamental', 1), ('concept', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('using', 1), ('game', 1), ('example', 1), ('application', 1)]
[('xp', 2), ('existing', 2), ('process', 2), ('stephen', 1), ('rosenberg', 1), ('examine', 1), ('context', 1), ('methodology', 1), ('rup', 1), ('iconix', 1), ('spiral', 1), ('rad', 1), ('dsdm', 1), ('etc', 1), ('show', 1), ('goal', 1), ('achieved', 1), ('using', 1)]
[('new', 1), ('approach', 1), ('closely', 1), ('focused', 1), ('work', 1), ('give', 1), ('insight', 1), ('experienced', 1), ('developer', 1), ('single', 1), ('aspect', 1), ('net', 1), ('programming', 1), ('find', 1), ('ingredient', 1), ('use', 1), ('design', 1), ('state', 1), ('art', 1), ('application', 1), ('interface', 1)]
[('ui', 3), ('design', 3), ('fear', 2), ('programmer', 1), ('user', 1), ('interface', 1), ('programming', 1), ('come', 1), ('think', 1), ('graphic', 1), ('mysterious', 1), ('process', 1), ('creative', 1), ('latte', 1), ('drinking', 1), ('black', 1), ('wearing', 1), ('produce', 1)]
[('app', 2), ('io', 2), ('geo', 2), ('deepen', 1), ('development', 1), ('skill', 1), ('pro', 1), ('book', 1), ('show', 1), ('use', 1), ('geolocation', 1), ('based', 1), ('tool', 1), ('enhance', 1), ('apps', 1), ('develop', 1), ('author', 1), ('giacomo', 1), ('andreucci', 1), ('describes', 1), ('different', 1), ('way', 1), ('integrate', 1), ('service', 1), ('depending', 1), ('kind', 1)]
[('day', 2), ('matter', 1), ('business', 1), ('end', 1), ('worker', 1), ('manager', 1), ('every', 1), ('million', 1), ('wake', 1), ('dressed', 1), ('go', 1), ('work', 1), ('fact', 1), ('different', 1), ('job', 1)]
[('java', 4), ('need', 2), ('age', 1), ('using', 1), ('simple', 1), ('text', 1), ('editor', 1), ('long', 1), ('gone', 1), ('growing', 1), ('complexity', 1), ('ee', 1), ('creates', 1), ('development', 1), ('tool', 1), ('offer', 1), ('want', 1), ('productive', 1), ('ide', 1), ('oracle', 1), ('jdeveloper', 1)]
[('friend', 1), ('ed', 1)]
[('title', 3), ('expert', 2), ('voice', 2), ('built', 1), ('principle', 1), ('apress', 1), ('single', 1), ('author', 1), ('speak', 1), ('directly', 1), ('readerfrom', 1), ('known', 1), ('rather', 1), ('cacophony', 1), ('wiley', 1), ('positioned', 1), ('within', 1), ('larger', 1)]
[('net', 3), ('vb', 2), ('programming', 1), ('guide', 1), ('experienced', 1), ('programmer', 1), ('author', 1), ('gary', 1), ('cornell', 1), ('jonathan', 1), ('morrison', 1), ('carefully', 1), ('explain', 1), ('exciting', 1), ('feature', 1), ('visual', 1), ('basic', 1), ('practical', 1), ('purpose', 1), ('whole', 1), ('new', 1), ('language', 1), ('even', 1)]
[('end', 2), ('biztalk', 2), ('chen', 1), ('book', 1), ('provides', 1), ('everything', 1), ('developer', 1), ('need', 1), ('know', 1), ('build', 1), ('solution', 1), ('focus', 1), ('server', 1)]
[('developer', 2), ('sql', 2), ('using', 1), ('clear', 1), ('language', 1), ('author', 1), ('hope', 1), ('take', 1), ('another', 1), ('level', 1), ('administering', 1), ('server', 1), ('text', 1), ('allan', 1), ('mitchell', 1), ('mark', 1), ('allison', 1), ('show', 1), ('create', 1), ('tool', 1), ('job', 1), ('easier', 1), ('faster', 1), ('dmo', 1)]
[('onenote', 3), ('author', 2), ('potential', 1), ('next', 1), ('killer', 1), ('app', 1), ('microsoft', 1), ('office', 1), ('family', 1), ('already', 1), ('public', 1), ('visibility', 1), ('field', 1), ('related', 1), ('web', 1), ('site', 1), ('onenoteinfocenter', 1), ('first', 1), ('mvp', 1), ('advanced', 1), ('content', 1)]
[('xml', 2), ('word', 2), ('excel', 2), ('edit', 1), ('standard', 1), ('file', 1), ('tool', 1), ('formula', 1), ('spell', 1), ('checker', 1), ('take', 1), ('existing', 1), ('document', 1), ('transform', 1), ('part', 1), ('plug', 1), ('business', 1), ('process', 1), ('mine', 1), ('data', 1)]
[('market', 2), ('sql', 2), ('server', 2), ('feature', 2), ('give', 1), ('fresh', 1), ('perspective', 1), ('stale', 1), ('segment', 1), ('good', 1), ('dba', 1), ('rather', 1), ('example', 1), ('book', 1), ('provide', 1), ('complete', 1), ('coverage', 1), ('core', 1), ('job', 1)]
[('practical', 1), ('guide', 1), ('feature', 1), ('us', 1), ('jdo', 1), ('example', 1), ('program', 1), ('learning', 1), ('tool', 1), ('provided', 1)]
[('web', 2), ('development', 2), ('subject', 2), ('teach', 1), ('using', 1), ('real', 1), ('world', 1), ('tutorial', 1), ('approach', 1), ('nonsense', 1), ('waste', 1), ('little', 1), ('time', 1), ('history', 1), ('unnecessary', 1), ('information', 1), ('concise', 1), ('result', 1), ('driven', 1), ('cover', 1), ('vital', 1)]
[('visual', 2), ('studio', 2), ('comprehensive', 1), ('guide', 1), ('window', 1), ('installer', 1), ('technology', 1), ('applicable', 1), ('language', 1), ('tool', 1), ('microsoft', 1), ('platform', 1), ('focus', 1), ('use', 1), ('net', 1), ('mean', 1), ('require', 1), ('purchase', 1), ('separate', 1), ('high', 1), ('priced', 1)]
[('websphere', 3), ('describes', 2), ('ibm', 2), ('version', 1), ('architecture', 1), ('nut', 1), ('bolt', 1), ('level', 1), ('giving', 1), ('visibility', 1), ('technology', 1), ('underlying', 1), ('platform', 1), ('design', 1), ('proactively', 1), ('manage', 1), ('performance', 1)]
[('book', 3), ('perspective', 2), ('emphasis', 1), ('detailed', 1), ('practicality', 1), ('san', 1), ('provide', 1), ('theoretical', 1), ('treatment', 1), ('technology', 1), ('top', 1), ('written', 1), ('ground', 1), ('relates', 1)]
[('corporate', 2), ('real', 1), ('world', 1), ('perspective', 1), ('language', 1), ('theoretical', 1), ('building', 1), ('front', 1), ('line', 1), ('boardroom', 1), ('practical', 1), ('unconventional', 1), ('tactic', 1), ('veteran', 1), ('audio', 1), ('cd', 1), ('value', 1), ('added', 1), ('talk', 1), ('available', 1), ('online', 1)]
[('especially', 1), ('applicable', 1), ('reader', 1), ('medical', 1), ('sector', 1), ('supported', 1), ('technically', 1), ('validated', 1), ('m', 1), ('team', 1), ('ssrs', 1), ('attract', 1), ('company', 1), ('looking', 1), ('low', 1), ('cost', 1), ('business', 1), ('reporting', 1), ('utility', 1)]
[('book', 2), ('competitively', 1), ('priced', 1), ('comprehensively', 1), ('illustrated', 1), ('depth', 1), ('real', 1), ('world', 1), ('applied', 1), ('content', 1), ('approach', 1), ('subject', 1), ('matter', 1), ('concise', 1), ('practical', 1), ('reach', 1), ('advanced', 1), ('level', 1)]
[('uml', 2), ('example', 1), ('easy', 1), ('understand', 1), ('diagram', 1), ('overly', 1), ('busy', 1), ('written', 1), ('user', 1), ('friendly', 1), ('style', 1), ('author', 1), ('known', 1), ('condensed', 1), ('distilled', 1), ('presentation', 1), ('superstructure', 1), ('document', 1), ('speed', 1)]
[('comprehensive', 1), ('book', 1), ('includes', 1), ('discussion', 1), ('key', 1), ('database', 1), ('xml', 1), ('principle', 1), ('need', 1), ('know', 1), ('order', 1), ('effective', 1), ('asp', 1), ('net', 1), ('teach', 1), ('correct', 1), ('technique', 1), ('use', 1), ('object', 1), ('orientation', 1), ('code', 1), ('behind', 1), ('beginning', 1)]
[('concise', 1), ('practical', 1), ('guide', 1), ('help', 1), ('researcher', 1), ('engineer', 1), ('new', 1), ('visual', 1), ('basic', 1), ('gain', 1), ('firm', 1), ('grasp', 1), ('topic', 1), ('relevant', 1), ('programming', 1), ('need', 1)]
[('nan', 1)]
[('nan', 1)]
[('material', 2), ('book', 1), ('include', 1), ('complete', 1), ('coverage', 1), ('whidbey', 1), ('feature', 1), ('explains', 1), ('demonstrates', 1), ('use', 1), ('concept', 1), ('gradual', 1), ('fashion', 1), ('streamlined', 1), ('sample', 1), ('contain', 1), ('extraneous', 1), ('distract', 1), ('reader', 1)]
[('chapter', 2), ('structure', 1), ('coverage', 1), ('targeted', 1), ('getting', 1), ('started', 1), ('quickly', 1), ('product', 1), ('technology', 1), ('provide', 1), ('hand', 1), ('exercise', 1), ('sharepoint', 1), ('application', 1), ('developed', 1), ('latest', 1), ('o', 1), ('window', 1), ('provides', 1)]
[('programmer', 2), ('technology', 2), ('shed', 1), ('light', 1), ('lesser', 1), ('known', 1), ('feature', 1), ('net', 1), ('help', 1), ('make', 1), ('skill', 1), ('improve', 1), ('productivity', 1), ('stay', 1), ('ahead', 1), ('work', 1), ('accessible', 1), ('level', 1), ('following', 1)]
[('mysql', 3), ('kofler', 1), ('introduces', 1), ('many', 1), ('facet', 1), ('guiding', 1), ('reader', 1), ('installation', 1), ('configuration', 1), ('implementation', 1), ('administration', 1), ('world', 1), ('popular', 1), ('open', 1), ('source', 1), ('database', 1), ('server', 1), ('intermingling', 1), ('instruction', 1), ('valuable', 1)]
[('java', 2), ('sperko', 1), ('focus', 1), ('overall', 1), ('problem', 1), ('store', 1), ('primary', 1), ('component', 1), ('application', 1), ('object', 1), ('common', 1), ('business', 1), ('tool', 1), ('relational', 1), ('database', 1)]
[('ado', 2), ('net', 2), ('author', 1), ('show', 1), ('developer', 1), ('litte', 1), ('background', 1), ('apply', 1), ('fast', 1), ('real', 1), ('world', 1), ('scenario', 1), ('giving', 1), ('example', 1), ('code', 1), ('really', 1), ('work', 1)]
[('web', 2), ('visual', 2), ('basic', 2), ('net', 2), ('reading', 1), ('programming', 1), ('developer', 1), ('understand', 1), ('build', 1), ('deploy', 1), ('top', 1), ('quality', 1), ('professionally', 1), ('designed', 1), ('highly', 1), ('usable', 1), ('application', 1), ('using', 1)]
[('pocket', 2), ('platform', 2), ('handheld', 2), ('pc', 1), ('fastest', 1), ('growing', 1), ('building', 1), ('based', 1), ('enterprise', 1), ('application', 1), ('free', 1), ('memory', 1), ('limitation', 1), ('underpowered', 1), ('processor', 1), ('access', 1), ('embedded', 1), ('visual', 1), ('basic', 1), ('providing', 1)]
[('professional', 1), ('graphic', 1), ('designer', 1), ('welcome', 1), ('practical', 1), ('guide', 1), ('acrobat', 1), ('tell', 1), ('use', 1), ('process', 1), ('includes', 1), ('project', 1), ('tutorial', 1), ('demonstration', 1)]
[('visual', 2), ('basic', 2), ('developer', 2), ('need', 2), ('know', 2), ('book', 1), ('cover', 1), ('order', 1), ('combine', 1), ('microsoft', 1), ('internet', 1), ('information', 1), ('server', 1), ('ii', 1), ('veteran', 1), ('author', 1), ('budi', 1), ('kurniawan', 1), ('show', 1), ('everything', 1), ('successfully', 1), ('design', 1)]
[('java', 4), ('write', 2), ('learning', 1), ('multithreaded', 1), ('application', 1), ('key', 1), ('taking', 1), ('full', 1), ('advantage', 1), ('platform', 1), ('taming', 1), ('thread', 1), ('known', 1), ('columnist', 1), ('expert', 1), ('allen', 1), ('holub', 1), ('provides', 1), ('programmer', 1), ('information', 1), ('need', 1), ('real', 1)]
[('book', 1), ('teach', 1), ('used', 1), ('visual', 1), ('programming', 1), ('environment', 1), ('perspective', 1), ('intermediate', 1), ('advanced', 1), ('level', 1), ('vb', 1), ('programmer', 1)]
[('pl', 2), ('sql', 2), ('mastered', 1), ('fundamental', 1), ('language', 1), ('looking', 1), ('depth', 1), ('practical', 1), ('guide', 1), ('solving', 1), ('real', 1), ('problem', 1), ('stored', 1), ('procedure', 1), ('book', 1)]
[('book', 3), ('depth', 2), ('category', 2), ('market', 1), ('coverage', 1), ('using', 1), ('message', 1), ('queuing', 1), ('net', 1), ('code', 1), ('number', 1), ('targeted', 1), ('developer', 1)]
[('acrobat', 3), ('revision', 1), ('baker', 1), ('dual', 1), ('award', 1), ('winning', 1), ('original', 1), ('title', 1), ('added', 1), ('tom', 1), ('carson', 1), ('experience', 1), ('document', 1), ('management', 1), ('using', 1), ('industry', 1), ('biggest', 1), ('growth', 1), ('sector', 1), ('marketing', 1), ('focus', 1), ('adobe', 1)]
[('enterprise', 1), ('level', 1), ('book', 1), ('concentrate', 1), ('distributed', 1), ('technique', 1), ('fully', 1), ('updated', 1), ('asp', 1), ('net', 1), ('visual', 1), ('studio', 1), ('author', 1), ('anointed', 1), ('software', 1), ('legend', 1), ('microsoft', 1), ('demonstrates', 1)]
[('cobol', 2), ('cics', 2), ('programmer', 2), ('comprehensive', 1), ('net', 1), ('retraining', 1), ('guide', 1), ('written', 1), ('mainframe', 1), ('perspective', 1), ('former', 1)]
[('sap', 3), ('step', 2), ('java', 2), ('austin', 1), ('sincock', 1), ('provides', 1), ('real', 1), ('world', 1), ('example', 1), ('developing', 1), ('enterprise', 1), ('application', 1), ('first', 1), ('nbsp', 1), ('title', 1), ('us', 1), ('open', 1), ('source', 1), ('software', 1), ('help', 1), ('developer', 1), ('learn', 1), ('use', 1), ('bridge', 1), ('gap', 1)]
[('author', 1), ('kanalakis', 1), ('give', 1), ('depth', 1), ('detailed', 1), ('guidance', 1), ('build', 1), ('single', 1), ('scalable', 1), ('enterprise', 1), ('application', 1), ('using', 1), ('net', 1), ('technology', 1)]
[('development', 2), ('book', 1), ('developer', 1), ('cover', 1), ('complete', 1), ('mobile', 1), ('process', 1), ('conception', 1), ('onto', 1), ('deployment', 1)]
[('nbsp', 3), ('export', 1), ('author', 1), ('barker', 1), ('cover', 1), ('information', 1), ('key', 1), ('proficiency', 1), ('oo', 1), ('programming', 1), ('language', 1), ('java', 1), ('show', 1), ('really', 1), ('create', 1), ('reusable', 1), ('code', 1), ('extensible', 1), ('application', 1)]
[('requirement', 2), ('tutorial', 1), ('go', 1), ('game', 1), ('engine', 1), ('address', 1), ('using', 1), ('applicable', 1), ('aspect', 1), ('directx', 1)]
[('programming', 2), ('experience', 2), ('swift', 1), ('absolute', 1), ('beginner', 1), ('perfect', 1), ('background', 1), ('object', 1), ('oriented', 1), ('idea', 1), ('app', 1), ('programmed', 1), ('school', 1)]
[('file', 4), ('window', 2), ('system', 2), ('large', 1), ('complex', 1), ('featuring', 1), ('huge', 1), ('number', 1), ('essential', 1), ('folder', 1), ('o', 1), ('software', 1), ('hardware', 1), ('several', 1), ('different', 1), ('underlying', 1), ('manage', 1), ('maintain', 1), ('integrity', 1)]
[('printing', 2), ('mattercontrol', 2), ('step', 2), ('joan', 1), ('horvath', 1), ('rich', 1), ('cameron', 1), ('team', 1), ('behind', 1), ('mastering', 1), ('explain', 1), ('use', 1), ('program', 1), ('allows', 1), ('control', 1), ('many', 1), ('common', 1), ('type', 1), ('printer', 1), ('including', 1), ('cartesian', 1)]
[('xcode', 2), ('troubleshooting', 1), ('handbook', 1), ('software', 1), ('developer', 1), ('level', 1), ('creating', 1), ('application', 1), ('io', 1), ('o', 1), ('using', 1), ('objective', 1), ('swift', 1), ('struggled', 1), ('past', 1), ('make', 1), ('work', 1), ('expected', 1), ('solve', 1), ('problem', 1), ('defy', 1), ('logic', 1)]
[('fiori', 7), ('application', 3), ('standard', 2), ('take', 1), ('deep', 1), ('dive', 1), ('sap', 1), ('discover', 1), ('architecture', 1), ('landscape', 1), ('installation', 1), ('launchpad', 1), ('configuration', 1), ('tool', 1), ('developing', 1), ('extending', 1)]
[('dynamic', 3), ('sql', 3), ('book', 1), ('introduction', 1), ('deep', 1), ('dive', 1), ('many', 1), ('us', 1), ('microsoft', 1), ('server', 1), ('key', 1), ('large', 1), ('scale', 1), ('searching', 1), ('based', 1), ('upon', 1), ('user', 1), ('entered', 1), ('criterion', 1), ('useful', 1), ('generating', 1), ('value', 1), ('list', 1), ('pivoting', 1)]
[('learn', 1), ('raise', 1), ('game', 1), ('programmer', 1), ('art', 1), ('professional', 1), ('polish', 1)]
[('step', 2), ('domain', 2), ('book', 1), ('guide', 1), ('building', 1), ('sharepoint', 1), ('farm', 1), ('home', 1), ('lab', 1), ('setting', 1), ('learn', 1), ('build', 1), ('window', 1), ('join', 1), ('server', 1), ('order', 1), ('create', 1), ('testing', 1), ('learning', 1), ('environment', 1)]
[('book', 3), ('mvc', 2), ('visual', 1), ('studio', 1), ('update', 1), ('available', 1), ('follow', 1), ('download', 1), ('source', 1), ('code', 1), ('link', 1), ('apress', 1), ('website', 1), ('th', 1), ('edition', 1), ('best', 1), ('selling', 1), ('updated', 1), ('asp', 1), ('net', 1), ('core', 1), ('contains', 1), ('detailed', 1)]
[('apis', 3), ('write', 2), ('web', 2), ('service', 2), ('learn', 1), ('test', 1), ('driven', 1), ('microservices', 1), ('rest', 1), ('php', 1), ('using', 1), ('lumen', 1), ('micro', 1), ('framework', 1), ('popular', 1), ('laravel', 1), ('family', 1), ('book', 1), ('show', 1), ('testing', 1), ('help', 1), ('bullet', 1), ('proof', 1), ('application', 1)]
[('digital', 3), ('image', 2), ('compositing', 2), ('software', 2), ('fundamental', 1), ('introductory', 1), ('title', 1), ('covering', 1), ('concept', 1), ('central', 1), ('imagery', 1), ('using', 1), ('package', 1), ('adobe', 1), ('photoshop', 1), ('open', 1), ('source', 1), ('gimp', 1), ('used', 1), ('book', 1)]
[('dsl', 3), ('scala', 3), ('language', 2), ('using', 2), ('practical', 2), ('build', 1), ('domain', 1), ('specific', 1), ('java', 1), ('popular', 1), ('functional', 1), ('programming', 1), ('book', 1), ('introduces', 1), ('basic', 1), ('series', 1), ('example', 1), ('nbsp', 1), ('learn', 1), ('create', 1)]
[('nats', 2), ('learn', 1), ('use', 1), ('messaging', 1), ('solution', 1), ('communication', 1), ('service', 1), ('project', 1), ('around', 1), ('become', 1), ('popular', 1), ('recent', 1), ('year', 1), ('due', 1), ('fit', 1), ('paradigm', 1), ('cloud', 1), ('native', 1), ('application', 1)]
[('rail', 3), ('learn', 1), ('build', 1), ('based', 1), ('web', 1), ('application', 1), ('using', 1), ('latest', 1), ('feature', 1), ('offered', 1), ('author', 1), ('stefan', 1), ('wintermeyer', 1), ('begin', 1), ('teaching', 1), ('basic', 1), ('ruby', 1), ('proceeding', 1), ('aspect', 1), ('utilizing', 1), ('clean', 1), ('succinct', 1), ('example', 1)]
[('power', 3), ('bi', 3), ('solution', 2), ('architect', 1), ('deploy', 1), ('book', 1), ('help', 1), ('understand', 1), ('many', 1), ('available', 1), ('option', 1), ('choose', 1), ('best', 1), ('combination', 1), ('hosting', 1), ('developing', 1), ('sharing', 1), ('deploying', 1), ('within', 1), ('organization', 1), ('pro', 1)]
[('linux', 2), ('mainstream', 1), ('solution', 1), ('building', 1), ('graphical', 1), ('interface', 1), ('based', 1), ('desktop', 1), ('application', 1), ('gtk', 1), ('gimp', 1), ('toolkit', 1), ('necessary', 1), ('technology', 1), ('programmer', 1), ('book', 1), ('guide', 1), ('reader', 1)]
[('corda', 2), ('explore', 1), ('entire', 1), ('ecosystem', 1), ('using', 1), ('theory', 1), ('lab', 1), ('use', 1), ('case', 1), ('book', 1), ('introduces', 1), ('distributed', 1), ('ledger', 1), ('technology', 1), ('architecture', 1), ('smart', 1), ('contract', 1), ('programming', 1), ('java', 1), ('guiding', 1), ('testing', 1), ('deployment', 1)]
[('data', 2), ('leverage', 1), ('machine', 1), ('deep', 1), ('learning', 1), ('model', 1), ('build', 1), ('application', 1), ('real', 1), ('time', 1), ('nbsp', 1), ('using', 1), ('pyspark', 1), ('book', 1), ('perfect', 1), ('want', 1), ('learn', 1), ('use', 1), ('language', 1), ('perform', 1), ('exploratory', 1), ('analysis', 1), ('solve', 1), ('array', 1), ('business', 1)]
[('java', 6), ('nbsp', 4), ('explore', 1), ('new', 1), ('programming', 1), ('language', 1), ('feature', 1), ('apis', 1), ('introduced', 1), ('revealed', 1), ('experienced', 1), ('programmer', 1), ('looking', 1), ('migrate', 1), ('author', 1), ('kishori', 1), ('sharan', 1), ('begin', 1), ('covering', 1)]
[('mongodb', 2), ('query', 2), ('using', 1), ('problem', 1), ('solution', 1), ('approach', 1), ('book', 1), ('start', 1), ('recipe', 1), ('language', 1), ('including', 1), ('various', 1), ('data', 1), ('structure', 1), ('stored', 1), ('within', 1), ('document', 1), ('self', 1), ('contained', 1), ('code', 1), ('example', 1), ('allow', 1), ('solve', 1)]
[('application', 3), ('build', 2), ('kind', 2), ('fast', 1), ('effective', 1), ('using', 1), ('masonite', 1), ('python', 1), ('based', 1), ('framework', 1), ('book', 1), ('cover', 1), ('creating', 1), ('digital', 1), ('home', 1), ('assistant', 1), ('certainly', 1), ('working', 1), ('project', 1)]
[('edition', 3), ('ruby', 2), ('based', 1), ('bestselling', 1), ('first', 1), ('beginning', 1), ('novice', 1), ('professional', 1), ('second', 1), ('leading', 1), ('guide', 1), ('every', 1), ('type', 1), ('reader', 1), ('want', 1), ('learn', 1), ('ground', 1), ('new', 1), ('book', 1), ('provides', 1), ('excellent', 1)]
[('iterating', 1), ('infusion', 1), ('clearer', 1), ('view', 1), ('object', 1), ('class', 1), ('system', 1), ('kind', 1), ('book', 1), ('dependent', 1), ('single', 1), ('technology', 1), ('rather', 1), ('provides', 1), ('way', 1), ('integrate', 1), ('efficient', 1), ('technique', 1), ('variety', 1), ('programming', 1), ('method', 1)]
[('cloud', 6), ('database', 2), ('learn', 1), ('define', 1), ('strategy', 1), ('adoption', 1), ('oracle', 1), ('landscape', 1), ('understand', 1), ('private', 1), ('public', 1), ('hybrid', 1), ('computing', 1), ('order', 1), ('successfully', 1), ('design', 1), ('manage', 1)]
[('nbsp', 2), ('learn', 1), ('today', 1), ('business', 1), ('transform', 1), ('leveraging', 1), ('real', 1), ('time', 1), ('data', 1), ('advanced', 1), ('machine', 1), ('learning', 1), ('analytics', 1), ('book', 1), ('provides', 1), ('prescriptive', 1), ('guidance', 1), ('architect', 1), ('developer', 1), ('design', 1), ('development', 1), ('modern', 1)]
[('game', 3), ('create', 2), ('construct', 2), ('design', 1), ('video', 1), ('using', 1), ('prior', 1), ('experience', 1), ('required', 1), ('development', 1), ('teach', 1), ('different', 1), ('project', 1), ('variety', 1), ('genre', 1), ('including', 1), ('car', 1), ('racing', 1), ('tower', 1), ('defense', 1), ('platformer', 1)]
[('game', 4), ('technique', 2), ('master', 1), ('important', 1), ('skill', 1), ('need', 1), ('know', 1), ('professional', 1), ('html', 1), ('javascript', 1), ('development', 1), ('book', 1), ('delf', 1), ('many', 1), ('classic', 1), ('video', 1), ('design', 1), ('discover', 1), ('develop', 1)]
[('java', 3), ('application', 2), ('module', 2), ('develop', 1), ('modular', 1), ('using', 1), ('platform', 1), ('system', 1), ('single', 1), ('anticipated', 1), ('feature', 1), ('improve', 1), ('maintainability', 1), ('performance', 1), ('deploying', 1), ('needed', 1), ('encapsulating', 1)]
[('julia', 2), ('computing', 2), ('started', 1), ('engineering', 1), ('numerical', 1), ('especially', 1), ('data', 1), ('science', 1), ('machine', 1), ('learning', 1), ('scientific', 1), ('application', 1), ('book', 1), ('explains', 1), ('provides', 1), ('functionality', 1), ('ease', 1), ('use', 1), ('intuitive', 1), ('syntax', 1), ('python', 1)]
[('apply', 1), ('artificial', 1), ('intelligence', 1), ('technique', 1), ('browser', 1), ('resource', 1), ('constrained', 1), ('computing', 1), ('device', 1), ('machine', 1), ('learning', 1), ('ml', 1), ('intimidating', 1), ('subject', 1), ('know', 1), ('essential', 1), ('application', 1), ('work', 1), ('book', 1), ('take', 1), ('advantage', 1)]
[('azure', 4), ('tool', 2), ('learn', 1), ('best', 1), ('practice', 1), ('proper', 1), ('use', 1), ('management', 1), ('portal', 1), ('powershell', 1), ('cli', 1), ('arm', 1), ('template', 1), ('time', 1), ('saving', 1), ('support', 1), ('daily', 1), ('administration', 1), ('task', 1), ('monitoring', 1), ('alerting', 1), ('backup', 1)]
[('end', 2), ('iot', 2), ('implement', 1), ('standardized', 1), ('implementation', 1), ('based', 1), ('best', 1), ('practice', 1), ('proven', 1), ('success', 1), ('across', 1), ('multiple', 1), ('industry', 1), ('book', 1), ('discover', 1), ('three', 1), ('business', 1), ('strategy', 1), ('enterprise', 1), ('adopt', 1), ('remain', 1), ('relevant', 1)]
[('data', 3), ('use', 2), ('rstudio', 1), ('tidyverse', 1), ('shiny', 1), ('interrogate', 1), ('analyze', 1), ('javascript', 1), ('library', 1), ('format', 1), ('display', 1), ('elegant', 1), ('informative', 1), ('interactive', 1), ('way', 1), ('learn', 1), ('gather', 1), ('effectively', 1)]
[('ai', 2), ('understand', 2), ('emergence', 1), ('artificial', 1), ('intelligence', 1), ('brought', 1), ('precipice', 1), ('new', 1), ('age', 1), ('struggle', 1), ('real', 1), ('advanced', 1), ('cgi', 1), ('movie', 1), ('even', 1), ('faking', 1), ('news', 1), ('developed', 1), ('reality', 1)]
[('service', 3), ('azure', 2), ('cognitive', 2), ('machine', 2), ('learning', 2), ('started', 1), ('apis', 1), ('expose', 1), ('book', 1), ('introduces', 1), ('suite', 1), ('help', 1), ('take', 1), ('advantage', 1), ('proven', 1), ('algorithm', 1)]
[('design', 2), ('go', 1), ('competent', 1), ('developer', 1), ('skilled', 1), ('designer', 1), ('architect', 1), ('using', 1), ('book', 1), ('personal', 1), ('master', 1), ('class', 1), ('updated', 1), ('standard', 1), ('title', 1), ('guide', 1), ('implementation', 1), ('engaging', 1), ('case', 1), ('study', 1)]
[('java', 3), ('step', 2), ('nbsp', 2), ('write', 1), ('first', 1), ('code', 1), ('using', 1), ('simple', 1), ('example', 1), ('model', 1), ('real', 1), ('word', 1), ('object', 1), ('event', 1), ('making', 1), ('learning', 1), ('easy', 1), ('absolute', 1), ('beginner', 1), ('able', 1), ('pick', 1), ('concept', 1), ('without', 1), ('fuss', 1), ('teach', 1)]
[('program', 1), ('style', 1), ('book', 1), ('go', 1), ('beyond', 1), ('syntax', 1), ('design', 1), ('provides', 1), ('developer', 1), ('best', 1), ('practice', 1), ('guidance', 1), ('advice', 1), ('write', 1), ('beautiful', 1), ('maintainable', 1), ('correct', 1), ('code', 1), ('second', 1), ('edition', 1), ('fully', 1)]
[('use', 2), ('real', 2), ('world', 2), ('data', 2), ('learn', 1), ('adaptive', 1), ('algorithm', 1), ('solve', 1), ('streaming', 1), ('problem', 1), ('book', 1), ('cover', 1), ('multitude', 1), ('processing', 1), ('challenge', 1), ('ranging', 1), ('simple', 1), ('complex', 1), ('step', 1), ('gain', 1), ('insight', 1), ('case', 1), ('find', 1)]
[('window', 2), ('linux', 2), ('subsystem', 2), ('wsl', 2), ('become', 1), ('productive', 1), ('seamless', 1), ('interoperability', 1), ('understand', 1), ('problem', 1), ('solves', 1), ('microsoft', 1), ('pushed', 1), ('boundary', 1), ('open', 1), ('source', 1), ('research', 1)]
[('cloud', 3), ('google', 2), ('deployment', 2), ('discover', 1), ('methodology', 1), ('best', 1), ('practice', 1), ('getting', 1), ('started', 1), ('automation', 1), ('service', 1), ('including', 1), ('manager', 1), ('spinnaker', 1), ('tekton', 1), ('jenkins', 1), ('automate', 1), ('infrastructure', 1), ('application', 1)]
[('learning', 3), ('machine', 2), ('model', 2), ('end', 2), ('process', 2), ('build', 1), ('deploy', 1), ('deep', 1), ('production', 1), ('example', 1), ('book', 1), ('begin', 1), ('focus', 1), ('deployment', 1), ('related', 1), ('challenge', 1), ('next', 1), ('cover', 1), ('building', 1)]
[('azure', 2), ('data', 2), ('cloud', 2), ('introduced', 1), ('arc', 1), ('enabled', 1), ('service', 1), ('powerful', 1), ('capability', 1), ('provide', 1), ('deploy', 1), ('manage', 1), ('local', 1), ('premise', 1), ('hybrid', 1), ('resource', 1), ('using', 1), ('centralized', 1), ('management', 1), ('tooling', 1)]
[('server', 3), ('sql', 2), ('edition', 2), ('fast', 1), ('start', 1), ('using', 1), ('alwayson', 1), ('solution', 1), ('high', 1), ('availability', 1), ('disaster', 1), ('recovery', 1), ('third', 1), ('newly', 1), ('updated', 1), ('cover', 1), ('window', 1), ('includes', 1), ('strong', 1), ('coverage', 1), ('implementing', 1)]
[('gatsby', 2), ('commerce', 2), ('site', 2), ('leverage', 1), ('power', 1), ('quickly', 1), ('produce', 1), ('efficient', 1), ('fast', 1), ('secure', 1), ('project', 1), ('oriented', 1), ('book', 1), ('simplifies', 1), ('process', 1), ('setting', 1), ('start', 1), ('finish', 1), ('providing', 1), ('starting', 1), ('toolset', 1)]
[('colab', 3), ('tensorflow', 2), ('use', 1), ('google', 1), ('colaboratory', 1), ('product', 1), ('offer', 1), ('free', 1), ('cloud', 1), ('service', 1), ('python', 1), ('programmer', 1), ('especially', 1), ('suited', 1), ('platform', 1), ('deep', 1), ('learning', 1), ('application', 1), ('learn', 1), ('default', 1), ('install', 1)]
[('step', 2), ('learn', 1), ('operate', 1), ('professional', 1), ('level', 1), ('html', 1), ('cs', 1), ('dom', 1), ('javascript', 1), ('perl', 1), ('mysql', 1), ('database', 1), ('plain', 1), ('language', 1), ('explanation', 1), ('example', 1), ('understand', 1), ('key', 1), ('facet', 1), ('web', 1), ('development', 1), ('today', 1), ('employer', 1)]
[('embark', 1), ('practical', 1), ('journey', 1), ('building', 1), ('dynamic', 1), ('site', 1), ('aided', 1), ('multiple', 1), ('project', 1), ('easily', 1), ('adapted', 1), ('real', 1), ('world', 1), ('scenario', 1), ('third', 1), ('edition', 1), ('show', 1), ('become', 1), ('confident', 1), ('php', 1), ('developer', 1), ('ready', 1), ('take', 1), ('next', 1), ('step', 1)]
[('troubleshoot', 1), ('slow', 1), ('performing', 1), ('query', 1), ('make', 1), ('run', 1), ('faster', 1), ('database', 1), ('administrator', 1), ('sql', 1), ('developer', 1), ('constantly', 1), ('pressure', 1), ('provide', 1), ('speed', 1), ('new', 1), ('edition', 1), ('nbsp', 1), ('redesigned', 1), ('rewritten', 1), ('scratch', 1), ('based', 1), ('last', 1)]
[('ai', 2), ('political', 1), ('issue', 1), ('care', 1), ('racism', 1), ('climate', 1), ('change', 1), ('democracy', 1), ('take', 1), ('new', 1), ('urgency', 1), ('meaning', 1), ('light', 1), ('technological', 1), ('development', 1), ('talk', 1), ('politics', 1), ('moving', 1), ('beyond', 1), ('mere', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('conference', 1), ('multimedia', 1), ('modeling', 1), ('mm', 1), ('took', 1), ('place', 1), ('phu', 1), ('quoc', 1), ('vietnam', 1), ('june', 1), ('paper', 1), ('presented', 1)]
[('security', 2), ('iot', 2), ('book', 1), ('contains', 1), ('contemporary', 1), ('research', 1), ('outline', 1), ('address', 1), ('privacy', 1), ('challenge', 1), ('decision', 1), ('making', 1), ('environment', 1), ('author', 1), ('provide', 1), ('variety', 1), ('subject', 1), ('related', 1), ('following', 1), ('keywords', 1), ('ai', 1), ('deep', 1)]
[('system', 3), ('network', 2), ('book', 1), ('present', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('methodology', 1), ('software', 1), ('engineering', 1), ('specifically', 1), ('focusing', 1), ('showcase', 1), ('novel', 1), ('development', 1), ('approach', 1), ('optimization', 1), ('highlighting', 1), ('field', 1), ('dynamic', 1)]
[('technology', 2), ('book', 1), ('present', 1), ('state', 1), ('art', 1), ('theory', 1), ('discus', 1), ('development', 1), ('major', 1), ('field', 1), ('engineering', 1), ('sustainable', 1), ('computing', 1), ('modern', 1), ('era', 1), ('information', 1), ('communication', 1), ('ict', 1), ('growing', 1)]
[('present', 2), ('dcai', 1), ('forum', 1), ('application', 1), ('innovative', 1), ('technique', 1), ('studying', 1), ('solving', 1), ('complex', 1), ('problem', 1), ('artificial', 1), ('intelligence', 1), ('computing', 1), ('area', 1), ('edition', 1), ('brings', 1), ('together', 1), ('past', 1), ('experience', 1), ('current', 1), ('work', 1), ('promising', 1), ('future', 1)]
[('intelligent', 2), ('system', 2), ('th', 2), ('book', 1), ('highlight', 1), ('recent', 1), ('research', 1), ('nature', 1), ('inspired', 1), ('computing', 1), ('present', 1), ('selected', 1), ('paper', 1), ('international', 1), ('conference', 1), ('design', 1), ('application', 1), ('isda', 1), ('world', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('doctoral', 1), ('symposium', 1), ('information', 1), ('communication', 1), ('technology', 1), ('dsict', 1), ('held', 1), ('manta', 1), ('ecuador', 1), ('october', 1), ('full', 1), ('paper', 1), ('thoroughly', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('swarm', 1), ('intelligence', 1), ('ant', 1), ('held', 1), ('málaga', 1), ('spain', 1), ('november', 1), ('nbsp', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('extended', 1), ('abstract', 1)]
[('nbsp', 3), ('florence', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('future', 1), ('heritage', 1), ('science', 1), ('technology', 1), ('heri', 1), ('tech', 1), ('held', 1), ('italy', 1), ('paper', 1), ('presented', 1)]
[('learn', 1), ('use', 1), ('google', 1), ('cloud', 1), ('platform', 1), ('gcp', 1), ('service', 1), ('design', 1), ('build', 1), ('deploy', 1), ('application', 1), ('book', 1), ('includes', 1), ('best', 1), ('practice', 1), ('practical', 1), ('example', 1), ('code', 1), ('snippet', 1), ('written', 1), ('java', 1), ('making', 1), ('key', 1), ('resource', 1), ('developer', 1), ('seeking', 1)]
[('dataverse', 2), ('business', 2), ('understand', 1), ('role', 1), ('play', 1), ('low', 1), ('code', 1), ('revolution', 1), ('help', 1), ('gain', 1), ('advantage', 1), ('agile', 1), ('technology', 1), ('book', 1), ('show', 1), ('use', 1), ('solve', 1), ('problem', 1), ('describing', 1), ('layer', 1), ('solution', 1)]
[('next', 2), ('new', 2), ('cineware', 2), ('effect', 2), ('take', 1), ('motion', 1), ('graphic', 1), ('vfx', 1), ('project', 1), ('level', 1), ('mastering', 1), ('feature', 1), ('provides', 1), ('assortment', 1), ('tool', 1), ('option', 1), ('difficult', 1), ('impossible', 1), ('achieve', 1), ('alone', 1), ('first', 1), ('section', 1), ('discus', 1), ('application', 1), ('work', 1), ('together', 1), ('unison', 1)]
[('guide', 2), ('traveling', 2), ('internet', 1), ('travel', 1), ('health', 1), ('stop', 1), ('resource', 1), ('need', 1), ('authoritative', 1), ('reliable', 1), ('date', 1), ('information', 1), ('preventing', 1), ('dealing', 1), ('illness', 1), ('injury', 1), ('united', 1), ('state', 1), ('abroad', 1), ('person', 1), ('near', 1), ('far', 1), ('useful', 1), ('easy', 1), ('consult', 1), ('identifies', 1), ('dependable', 1), ('web', 1), ('site', 1), ('advice', 1)]
[('internet', 2), ('guide', 2), ('cosmetic', 2), ('surgery', 1), ('woman', 1), ('give', 1), ('advantage', 1), ('finding', 1), ('everything', 1), ('want', 1), ('know', 1), ('surgeryfrom', 1), ('comfort', 1), ('privacy', 1), ('home', 1), ('comprehensive', 1), ('resource', 1), ('mountain', 1), ('information', 1), ('providing', 1), ('thorough', 1), ('listing', 1), ('web', 1), ('site', 1), ('detailing', 1), ('every', 1), ('aspect', 1)]
[('live', 1), ('age', 1), ('artificial', 1), ('intelligence', 1), ('machine', 1), ('think', 1), ('act', 1), ('complex', 1), ('way', 1), ('making', 1), ('suggestion', 1), ('decision', 1), ('behalf', 1), ('ai', 1), ('might', 1), ('seen', 1), ('practical', 1), ('profitable', 1), ('issue', 1), ('data', 1), ('surveillance', 1), ('algorithmic', 1)]
[('make', 1), ('information', 1), ('society', 1), ('many', 1), ('prominent', 1), ('theorist', 1), ('argued', 1), ('profound', 1), ('comprehensive', 1), ('transformation', 1), ('economy', 1), ('culture', 1), ('politics', 1), ('rise', 1), ('industrial', 1), ('way', 1), ('life', 1), ('th', 1), ('century', 1)]
[('ai', 2), ('climate', 2), ('crisis', 2), ('artificial', 1), ('intelligence', 1), ('presented', 1), ('solution', 1), ('greatest', 1), ('challenge', 1), ('time', 1), ('global', 1), ('pandemic', 1), ('chronic', 1), ('disease', 1), ('cybersecurity', 1), ('threat', 1), ('contributes', 1)]
[('paper', 2), ('presented', 2), ('volume', 1), ('constitutes', 1), ('selected', 1), ('nbsp', 1), ('first', 1), ('international', 1), ('conference', 1), ('engineering', 1), ('software', 1), ('modern', 1), ('challenge', 1), ('esmoc', 1), ('held', 1), ('johor', 1), ('malaysia', 1), ('october', 1), ('thoroughly', 1)]
[('track', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('search', 1), ('based', 1), ('software', 1), ('engineering', 1), ('ssbse', 1), ('held', 1), ('singapore', 1), ('november', 1), ('regular', 1), ('paper', 1), ('nier', 1), ('rene', 1), ('challenge', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('symposium', 1), ('combinatorial', 1), ('optimization', 1), ('isco', 1), ('held', 1), ('online', 1), ('full', 1), ('included', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('nbsp', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('data', 1), ('engineering', 1), ('automated', 1), ('learning', 1), ('ideal', 1), ('took', 1), ('place', 1), ('manchester', 1), ('uk', 1), ('november', 1), ('full', 1), ('paper', 1)]
[('volume', 1), ('constitutes', 1), ('selected', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('nbsp', 1), ('second', 1), ('international', 1), ('conference', 1), ('trandisciplinary', 1), ('multispectral', 1), ('modelling', 1), ('cooperation', 1), ('preservation', 1), ('cultural', 1), ('heritage', 1), ('tmm_ch', 1), ('held', 1), ('athens', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('frontier', 1), ('handwriting', 1), ('recognition', 1), ('icfhr', 1), ('took', 1), ('place', 1), ('hyderabad', 1), ('india', 1), ('december', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('nordic', 1), ('conference', 1), ('secure', 1), ('system', 1), ('nordsec', 1), ('held', 1), ('reykjavic', 1), ('iceland', 1), ('november', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('workshop', 1), ('combinatorial', 1), ('image', 1), ('analysis', 1), ('iwcia', 1), ('held', 1), ('messina', 1), ('italy', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('volume', 1), ('constitutes', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('cryptology', 1), ('indocrypt', 1), ('held', 1), ('december', 1), ('took', 1), ('place', 1), ('kolkata', 1), ('india', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('included', 1), ('book', 1)]
[('book', 2), ('nbsp', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cloud', 1), ('computing', 1), ('service', 1), ('science', 1), ('closer', 1), ('virtual', 1), ('event', 1), ('april', 1), ('full', 1), ('paper', 1), ('included', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('onsmart', 1), ('application', 1), ('data', 1), ('analysis', 1), ('sadasc', 1), ('held', 1), ('marrakesh', 1), ('morocco', 1), ('september', 1), ('full', 1), ('short', 1), ('included', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('biomedical', 1), ('engineering', 1), ('system', 1), ('technology', 1), ('biostec', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('crisis', 1), ('february', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('arithmetic', 1), ('finite', 1), ('field', 1), ('waifi', 1), ('held', 1), ('chengdu', 1), ('china', 1), ('august', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('invited', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('graph', 1), ('drawing', 1), ('network', 1), ('visualization', 1), ('gd', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('workshop', 1), ('computer', 1), ('performance', 1), ('engineering', 1), ('epew', 1), ('held', 1), ('santa', 1), ('pola', 1), ('spain', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('logic', 2), ('language', 2), ('edited', 1), ('collaboration', 1), ('folli', 1), ('association', 1), ('information', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('tsinghua', 1), ('interdisciplinary', 1), ('workshop', 1), ('meaning', 1), ('tllm', 1), ('held', 1)]
[('computer', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('vision', 1), ('imaging', 1), ('graphic', 1), ('theory', 1), ('application', 1), ('visigrapp', 1), ('held', 1), ('virtual', 1), ('event', 1), ('february', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algorithm', 1), ('discrete', 1), ('applied', 1), ('mathematics', 1), ('caldam', 1), ('held', 1), ('gandhinagar', 1), ('india', 1), ('february', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('formal', 1), ('method', 1), ('fm', 1), ('took', 1), ('place', 1), ('lübeck', 1), ('germany', 1), ('march', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('included', 1), ('carefully', 1), ('reviewed', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('multimedia', 1), ('modeling', 1), ('mm', 1), ('took', 1), ('place', 1), ('bergen', 1), ('norway', 1), ('january', 1), ('paper', 1), ('presented', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('brazilian', 1), ('symposium', 1), ('formal', 1), ('method', 1), ('sbmf', 1), ('held', 1), ('nbsp', 1), ('virtually', 1), ('december', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('australasian', 1), ('conference', 1), ('information', 1), ('security', 1), ('privacy', 1), ('acisp', 1), ('held', 1), ('wollongong', 1), ('nsw', 1), ('australia', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('revised', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('asia', 1), ('pacific', 1), ('digital', 1), ('library', 1), ('icadl', 1), ('held', 1), ('november', 1), ('december', 1), ('full', 1), ('short', 1), ('poster', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('internet', 1), ('economics', 1), ('wine', 1), ('held', 1), ('troy', 1), ('ny', 1), ('usa', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('abstract', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('security', 1), ('isc', 1), ('took', 1), ('place', 1), ('bali', 1), ('indonesia', 1), ('december', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('graphonomics', 1), ('society', 1), ('ig', 1), ('originally', 1), ('planned', 1), ('celebrated', 1), ('september', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('held', 1), ('june', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('big', 1), ('data', 1), ('bigdata', 1), ('part', 1), ('service', 1), ('federation', 1), ('scf', 1), ('honolulu', 1), ('usa', 1), ('december', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('volume', 2), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('visual', 1), ('computing', 1), ('isvc', 1), ('held', 1), ('october', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('optimization', 1), ('learning', 1), ('ola', 1), ('took', 1), ('place', 1), ('syracuse', 1), ('sicilia', 1), ('italy', 1), ('july', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('algorithmics', 1), ('wireless', 1), ('network', 1), ('algosensors', 1), ('took', 1), ('place', 1), ('potsdam', 1), ('germany', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('conference', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('machine', 1), ('learning', 1), ('intelligent', 1), ('communication', 1), ('mlicom', 1), ('held', 1), ('hangzhou', 1), ('china', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1)]
[('immersive', 2), ('analytics', 2), ('research', 2), ('aim', 2), ('new', 1), ('initiative', 1), ('remove', 1), ('barrier', 1), ('data', 1), ('tool', 1), ('use', 1), ('analysis', 1), ('decision', 1), ('making', 1), ('clarified', 1), ('opportunity', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('three', 1), ('workshop', 1), ('symposium', 1), ('held', 1), ('st', 1), ('international', 1), ('conference', 1), ('conceptual', 1), ('modeling', 1), ('er', 1), ('virtual', 1), ('event', 1), ('october', 1), ('paper', 1), ('deal', 1), ('topic', 1), ('foundation', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('conference', 1), ('theory', 1), ('application', 1), ('model', 1), ('computation', 1), ('tamc', 1), ('held', 1), ('virtual', 1), ('event', 1), ('september', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('joint', 1), ('iapr', 1), ('international', 1), ('workshop', 1), ('structural', 1), ('syntactic', 1), ('statistical', 1), ('pattern', 1), ('recognition', 1), ('sspr', 1), ('held', 1), ('montreal', 1), ('qc', 1), ('canada', 1), ('august', 1), ('paper', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('revised', 1), ('selected', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('global', 1), ('iot', 1), ('summit', 1), ('giots', 1), ('took', 1), ('place', 1), ('dublin', 1), ('ireland', 1), ('june', 1), ('nbsp', 1), ('full', 1), ('included', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('iberoamerican', 1), ('workshop', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hci', 1), ('collab', 1), ('took', 1), ('place', 1), ('havana', 1), ('cuba', 1), ('october', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('green', 1), ('pervasive', 1), ('cloud', 1), ('computing', 1), ('gpc', 1), ('held', 1), ('chengdu', 1), ('china', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('high', 1), ('performance', 1), ('computing', 1), ('system', 1), ('technology', 1), ('scientific', 1), ('research', 1), ('automation', 1), ('control', 1), ('production', 1), ('hpcst', 1), ('held', 1), ('barnaul', 1), ('russia', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('brazilian', 1), ('workshop', 1), ('agile', 1), ('method', 1), ('wbma', 1), ('took', 1), ('place', 1), ('online', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('th', 2), ('conference', 2), ('held', 2), ('book', 1), ('contains', 1), ('revised', 1), ('extended', 1), ('version', 1), ('selected', 1), ('paper', 1), ('international', 1), ('pattern', 1), ('recognition', 1), ('icpram', 1), ('february', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('esorics', 1), ('international', 1), ('workshop', 1), ('data', 1), ('privacy', 1), ('management', 1), ('cryptocurrencies', 1), ('blockchain', 1), ('technology', 1), ('dpm', 1), ('cbt', 1), ('took', 1), ('place', 1), ('copenhagen', 1)]
[('conference', 2), ('took', 2), ('place', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('smart', 1), ('card', 1), ('research', 1), ('advanced', 1), ('application', 1), ('cardis', 1), ('november', 1), ('birmingham', 1), ('united', 1), ('kingdom', 1), ('nbsp', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('third', 1), ('diabetic', 1), ('foot', 1), ('ulcer', 1), ('grand', 1), ('challenge', 1), ('dfuc', 1), ('held', 1), ('september', 1), ('conjunction', 1), ('th', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1)]
[('data', 3), ('intensive', 1), ('system', 1), ('technological', 1), ('building', 1), ('block', 1), ('supporting', 1), ('big', 1), ('science', 1), ('application', 1), ('book', 1), ('familiarizes', 1), ('reader', 1), ('core', 1), ('concept', 1), ('aware', 1), ('continuing', 1), ('independent', 1), ('work', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('decision', 1), ('game', 1), ('theory', 1), ('security', 1), ('gamesec', 1), ('held', 1), ('october', 1), ('pittsburgh', 1), ('pa', 1), ('usa', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('european', 1), ('conference', 1), ('ir', 1), ('research', 1), ('ecir', 1), ('held', 1), ('cologne', 1), ('germany', 1), ('april', 1), ('full', 1), ('presented', 1), ('together', 1), ('keynote', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('chatbot', 1), ('research', 1), ('design', 1), ('conversation', 1), ('held', 1), ('november', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('total', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('unet', 1), ('held', 1), ('montreal', 1), ('qc', 1), ('canada', 1), ('october', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('included', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('structured', 1), ('object', 1), ('oriented', 1), ('formal', 1), ('language', 1), ('method', 1), ('sofl', 1), ('msvl', 1), ('held', 1), ('madrid', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('included', 1), ('volume', 1)]
[('th', 2), ('security', 2), ('book', 1), ('constitutes', 1), ('nbsp', 1), ('post', 1), ('proceeding', 1), ('international', 1), ('workshop', 1), ('trust', 1), ('management', 1), ('stm', 1), ('co', 1), ('located', 1), ('european', 1), ('symposium', 1), ('research', 1), ('computer', 1), ('esorics', 1), ('took', 1), ('place', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('virtual', 1), ('event', 1), ('november', 1), ('paper', 1), ('presented', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('virtual', 1), ('event', 1), ('november', 1), ('paper', 1), ('presented', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('virtual', 1), ('event', 1), ('november', 1), ('nbsp', 1), ('paper', 1), ('presented', 1)]
[('book', 2), ('nbsp', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algorithm', 1), ('complexity', 1), ('ciac', 1), ('took', 1), ('place', 1), ('larnaca', 1), ('cyprus', 1), ('june', 1), ('full', 1), ('paper', 1), ('included', 1)]
[('book', 1), ('constitutes', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('symposium', 1), ('image', 1), ('video', 1), ('technology', 1), ('psivt', 1), ('held', 1), ('bintan', 1), ('island', 1), ('indonesia', 1), ('november', 1), ('total', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('rsa', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('cryptographer', 1), ('track', 1), ('conference', 1), ('ct', 1), ('held', 1), ('san', 1), ('francisco', 1), ('ca', 1), ('usa', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('processing', 1), ('applied', 1), ('mathematics', 1), ('ppam', 1), ('held', 1), ('gdansk', 1), ('poland', 1), ('september', 1), ('regular', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('chatbot', 1), ('research', 1), ('design', 1), ('conversation', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('conference', 2), ('mesa', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('modelling', 1), ('simulation', 1), ('autonomous', 1), ('system', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('october', 1), ('full', 1), ('paper', 1)]
[('knowledge', 3), ('book', 1), ('constitutes', 1), ('extended', 1), ('revised', 1), ('version', 1), ('set', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('discovery', 1), ('engineering', 1), ('management', 1), ('ic', 1), ('october', 1)]
[('paper', 3), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('system', 1), ('advanced', 1), ('application', 1), ('held', 1), ('online', 1), ('september', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('nbsp', 4), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('active', 1), ('inference', 1), ('iwai', 1), ('co', 1), ('located', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('ghent', 1), ('belgium', 1), ('september', 1), ('full', 1), ('paper', 1), ('along', 1), ('short', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('smoky', 1), ('mountain', 1), ('computational', 1), ('science', 1), ('engineering', 1), ('conference', 1), ('smc', 1), ('held', 1), ('oak', 1), ('ridge', 1), ('tn', 1), ('usa', 1), ('august', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('knowledge', 2), ('representation', 2), ('model', 2), ('important', 1), ('task', 1), ('understanding', 1), ('human', 1), ('think', 1), ('learn', 1), ('although', 1), ('many', 1), ('cognitive', 1), ('proposed', 1), ('expert', 1), ('system', 1), ('graph', 1), ('represent', 1), ('procedural', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('workshop', 1), ('constructive', 1), ('side', 1), ('channel', 1), ('analysis', 1), ('secure', 1), ('design', 1), ('cosade', 1), ('held', 1), ('lugano', 1), ('switzerland', 1), ('october', 1), ('full', 1), ('carefully', 1), ('reviewed', 1)]
[('present', 1), ('book', 1), ('includes', 1), ('extended', 1), ('revised', 1), ('version', 1), ('set', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('business', 1), ('telecommunication', 1), ('icete', 1), ('held', 1), ('online', 1), ('web', 1), ('based', 1), ('event', 1), ('due', 1), ('covid', 1)]
[('lncs', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('cryptography', 1), ('tcc', 1), ('held', 1), ('raleigh', 1), ('nc', 1), ('usa', 1), ('november', 1), ('nbsp', 1), ('total', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('research', 1), ('technology', 1), ('information', 1), ('innovation', 1), ('sustainability', 1), ('artiis', 1), ('held', 1), ('la', 1), ('libertad', 1), ('ecuador', 1), ('november', 1), ('nbsp', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('service', 1), ('oriented', 1), ('computing', 1), ('icsoc', 1), ('held', 1), ('virtually', 1), ('november', 1), ('full', 1), ('short', 1), ('vision', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1)]
[('work', 2), ('volume', 1), ('contains', 1), ('collection', 1), ('study', 1), ('area', 1), ('complexity', 1), ('theory', 1), ('property', 1), ('testing', 1), ('piece', 1), ('scientific', 1), ('included', 1), ('conducted', 1), ('different', 1), ('time', 1), ('mostly', 1), ('last', 1), ('decade', 1), ('although', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('benchcouncil', 1), ('international', 1), ('symposium', 1), ('benchmarking', 1), ('measuring', 1), ('optimization', 1), ('bench', 1), ('held', 1), ('virtually', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('track', 1), ('workshop', 1), ('complemented', 1), ('th', 1), ('european', 1), ('conference', 1), ('software', 1), ('architecture', 1), ('ecsa', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('september', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('nbsp', 1), ('rd', 1), ('international', 1), ('simulation', 1), ('gaming', 1), ('association', 1), ('conference', 1), ('isaga', 1), ('took', 1), ('place', 1), ('boston', 1), ('usa', 1), ('july', 1), ('full', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('integer', 1), ('programming', 1), ('combinatorial', 1), ('optimization', 1), ('ipco', 1), ('held', 1), ('madison', 1), ('wi', 1), ('usa', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('web', 1), ('based', 1), ('learning', 1), ('icwl', 1), ('th', 1), ('symposium', 1), ('emerging', 1), ('technology', 1), ('education', 1), ('sete', 1), ('held', 1), ('tenerife', 1), ('spain', 1), ('november', 1)]
[('nbsp', 2), ('language', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('speech', 1), ('technology', 1), ('low', 1), ('resource', 1), ('spell', 1), ('held', 1), ('kalavakkam', 1), ('india', 1), ('november', 1), ('presented', 1), ('paper', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('algorithmic', 1), ('aspect', 1), ('cloud', 1), ('computing', 1), ('algocloud', 1), ('took', 1), ('place', 1), ('potsdam', 1), ('germany', 1), ('september', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('scale', 1), ('space', 1), ('variational', 1), ('method', 1), ('computer', 1), ('vision', 1), ('ssvm', 1), ('took', 1), ('place', 1), ('santa', 1), ('margherita', 1), ('di', 1), ('pula', 1), ('italy', 1), ('nbsp', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('symposium', 1), ('music', 1), ('ai', 1), ('era', 1), ('cmmr', 1), ('took', 1), ('place', 1), ('november', 1), ('virtual', 1), ('event', 1), ('full', 1)]
[('satellite', 2), ('event', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('held', 1), ('th', 1), ('extended', 1), ('semantic', 1), ('web', 1), ('conference', 1), ('eswc', 1), ('june', 1), ('hersonissos', 1), ('greece', 1), ('included', 1), ('poster', 1), ('demo', 1), ('session', 1), ('phd', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('intelligence', 1), ('communication', 1), ('business', 1), ('analytics', 1), ('cicba', 1), ('held', 1), ('silchar', 1), ('india', 1), ('january', 1), ('full', 1), ('short', 1)]
[('volume', 2), ('eight', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('malaga', 1), ('spain', 1), ('july', 1), ('first', 1)]
[('volume', 2), ('eight', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('malaga', 1), ('spain', 1), ('july', 1), ('first', 1)]
[('volume', 2), ('eight', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('malaga', 1), ('spain', 1), ('july', 1), ('first', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('coalgebraic', 1), ('method', 1), ('computer', 1), ('science', 1), ('cmcs', 1), ('colocated', 1), ('etaps', 1), ('held', 1), ('munich', 1), ('germany', 1), ('april', 1), ('revised', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('technology', 1), ('application', 1), ('intap', 1), ('held', 1), ('grimstad', 1), ('norway', 1), ('october', 1), ('full', 1), ('paper', 1), ('included', 1), ('carefully', 1)]
[('nbsp', 4), ('volume', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('image', 1), ('processing', 1), ('cvip', 1), ('held', 1), ('rupnagar', 1), ('india', 1), ('december', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('security', 1), ('cryptology', 1), ('icisc', 1), ('held', 1), ('seoul', 1), ('south', 1), ('korea', 1), ('december', 1), ('total', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('nbsp', 4), ('volume', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('image', 1), ('processing', 1), ('cvip', 1), ('held', 1), ('rupnagar', 1), ('india', 1), ('december', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('quantitative', 1), ('ethnography', 1), ('icqe', 1), ('november', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('online', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theoretical', 1), ('aspect', 1), ('software', 1), ('engineering', 1), ('tase', 1), ('held', 1), ('cluj', 1), ('napoca', 1), ('romania', 1), ('july', 1), ('full', 1), ('regular', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('third', 1), ('international', 1), ('nbsp', 1), ('computing', 1), ('science', 1), ('communication', 1), ('security', 1), ('coms', 1), ('held', 1), ('gandhinagar', 1), ('india', 1), ('february', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('technology', 2), ('festschrift', 1), ('dedicated', 1), ('reiner', 1), ('hähnle', 1), ('occasion', 1), ('th', 1), ('birthday', 1), ('contains', 1), ('paper', 1), ('written', 1), ('many', 1), ('closest', 1), ('collaborator', 1), ('position', 1), ('karlsruhe', 1), ('institute', 1), ('chalmers', 1), ('university', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('medical', 1), ('image', 1), ('understanding', 1), ('analysis', 1), ('miua', 1), ('held', 1), ('cambridge', 1), ('uk', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('volume', 2), ('eight', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('malaga', 1), ('spain', 1), ('july', 1), ('first', 1)]
[('paper', 2), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('education', 1), ('aied', 1), ('held', 1), ('durham', 1), ('uk', 1), ('july', 1), ('full', 1), ('nbsp', 1), ('short', 1)]
[('conference', 2), ('data', 2), ('book', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('analytics', 1), ('management', 1), ('intensive', 1), ('domain', 1), ('damdid', 1), ('rcdl', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('education', 1), ('aied', 1), ('held', 1), ('durham', 1), ('uk', 1), ('july', 1), ('full', 1), ('nbsp', 1), ('short', 1)]
[('book', 2), ('nbsp', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('simulation', 1), ('gaming', 1), ('association', 1), ('conference', 1), ('isaga', 1), ('held', 1), ('indore', 1), ('india', 1), ('september', 1), ('full', 1), ('paper', 1), ('included', 1)]
[('volume', 1), ('proceeding', 1), ('ccis', 1), ('constitute', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('advance', 1), ('computing', 1), ('data', 1), ('science', 1), ('icacds', 1), ('held', 1), ('kurnool', 1), ('india', 1), ('april', 1), ('total', 1), ('full', 1)]
[('volume', 1), ('proceeding', 1), ('ccis', 1), ('constitute', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('advance', 1), ('computing', 1), ('data', 1), ('science', 1), ('icacds', 1), ('held', 1), ('kurnool', 1), ('india', 1), ('april', 1), ('total', 1), ('full', 1)]
[('volume', 2), ('eight', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('malaga', 1), ('spain', 1), ('july', 1), ('first', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('nbsp', 1), ('international', 1), ('conference', 1), ('database', 1), ('expert', 1), ('system', 1), ('application', 1), ('dexa', 1), ('held', 1), ('vienna', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('selected', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('rewriting', 1), ('logic', 1), ('application', 1), ('wrla', 1), ('held', 1), ('munich', 1), ('germany', 1), ('april', 1), ('full', 1), ('included', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('advance', 1), ('computer', 1), ('game', 1), ('acg', 1), ('held', 1), ('virtual', 1), ('event', 1), ('november', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('included', 1)]
[('volume', 2), ('eight', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('malaga', 1), ('spain', 1), ('july', 1), ('first', 1)]
[('held', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('paper', 1), ('several', 1), ('workshop', 1), ('conjunction', 1), ('st', 1), ('international', 1), ('conference', 1), ('image', 1), ('analysis', 1), ('processing', 1), ('iciap', 1), ('lecce', 1), ('italy', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('cloud', 1), ('computing', 1), ('big', 1), ('data', 1), ('emerging', 1), ('topic', 1), ('jcc', 1), ('bd', 1), ('et', 1), ('held', 1), ('la', 1), ('plata', 1), ('argentina', 1), ('june', 1), ('july', 1), ('full', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('machine', 1), ('computation', 1), ('universality', 1), ('mcu', 1), ('held', 1), ('debrecen', 1), ('hungary', 1), ('august', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('nbsp', 3), ('book', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('computer', 1), ('algebra', 1), ('scientific', 1), ('computing', 1), ('casc', 1), ('took', 1), ('place', 1), ('gebze', 1), ('turkey', 1), ('august', 1), ('full', 1), ('paper', 1), ('included', 1)]
[('wg', 3), ('tc', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('international', 1), ('cross', 1), ('domain', 1), ('conference', 1), ('cd', 1), ('make', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 2), ('nbsp', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('security', 1), ('iwsec', 1), ('took', 1), ('place', 1), ('hybrid', 1), ('event', 1), ('tokyo', 1), ('japan', 1), ('august', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cellular', 1), ('automaton', 1), ('research', 1), ('industry', 1), ('acri', 1), ('took', 1), ('place', 1), ('geneva', 1), ('switzerland', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('symposium', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('automated', 1), ('technology', 1), ('verification', 1), ('analysis', 1), ('atva', 1), ('held', 1), ('beiging', 1), ('china', 1), ('october', 1), ('dedicated', 1), ('promoting', 1), ('research', 1)]
[('international', 3), ('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('design', 1), ('user', 1), ('experience', 1), ('usability', 1), ('duxu', 1), ('held', 1), ('part', 1), ('rd', 1), ('hci', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('emerging', 1), ('technology', 1), ('digital', 1), ('transformation', 1), ('museum', 1), ('heritage', 1), ('site', 1), ('rise', 1), ('imet', 1), ('held', 1), ('nicosia', 1), ('cyprus', 1), ('june', 1)]
[('paper', 2), ('book', 1), ('contains', 1), ('selection', 1), ('best', 1), ('rd', 1), ('benelux', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('bnaic', 1), ('benelearn', 1), ('held', 1), ('esch', 1), ('sur', 1), ('alzette', 1), ('luxembourg', 1), ('november', 1), ('nbsp', 1), ('presented', 1), ('volume', 1)]
[('rsa', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('cryptographer', 1), ('track', 1), ('conference', 1), ('ct', 1), ('held', 1), ('san', 1), ('francisco', 1), ('ca', 1), ('usa', 1), ('february', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('distributed', 1), ('computer', 1), ('communication', 1), ('network', 1), ('dccn', 1), ('moscow', 1), ('russia', 1), ('september', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('workshop', 1), ('constructive', 1), ('side', 1), ('channel', 1), ('analysis', 1), ('secure', 1), ('design', 1), ('cosade', 1), ('held', 1), ('leuven', 1), ('belgium', 1), ('april', 1), ('full', 1), ('presented', 1), ('volume', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('modelling', 1), ('simulation', 1), ('autonomous', 1), ('system', 1), ('mesa', 1), ('held', 1), ('virtual', 1), ('event', 1), ('due', 1), ('covid', 1), ('october', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('european', 1), ('conference', 1), ('evolutionary', 1), ('computation', 1), ('combinatorial', 1), ('optimization', 1), ('evocop', 1), ('held', 1), ('part', 1), ('evo', 1), ('madrid', 1), ('spain', 1), ('april', 1), ('co', 1), ('located', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('security', 1), ('cryptography', 1), ('network', 1), ('scn', 1), ('held', 1), ('amalfi', 1), ('italy', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 2), ('nbsp', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('method', 1), ('industrial', 1), ('critical', 1), ('system', 1), ('fmics', 1), ('took', 1), ('place', 1), ('warsaw', 1), ('poland', 1), ('september', 1), ('full', 1), ('paper', 1), ('included', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('quality', 1), ('information', 1), ('communication', 1), ('technology', 1), ('quatic', 1), ('held', 1), ('talavera', 1), ('de', 1), ('la', 1), ('reina', 1), ('spain', 1), ('september', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('ifip', 1), ('wg', 1), ('conference', 1), ('business', 1), ('service', 1), ('society', 1), ('took', 1), ('place', 1), ('newcastle', 1), ('upon', 1), ('tyne', 1), ('uk', 1), ('september', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('symposium', 1), ('logic', 1), ('based', 1), ('synthesis', 1), ('transformation', 1), ('lopstr', 1), ('held', 1), ('september', 1), ('full', 1), ('paper', 1), ('selected', 1), ('submission', 1), ('cover', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('joint', 1), ('international', 1), ('conference', 1), ('serious', 1), ('game', 1), ('jcsg', 1), ('held', 1), ('weimar', 1), ('germany', 1), ('september', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('singapore', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('simulation', 1), ('synthesis', 1), ('medical', 1), ('imaging', 1), ('sashimi', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('september', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('machine', 1), ('learning', 1), ('medical', 1), ('reconstruction', 1), ('mlmir', 1), ('conjunction', 1), ('miccai', 1), ('september', 1), ('singapore', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('multidisciplinary', 1), ('international', 1), ('symposium', 1), ('disinformation', 1), ('open', 1), ('online', 1), ('medium', 1), ('misdoom', 1), ('held', 1), ('october', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('volume', 1), ('lncs', 1), ('constitutes', 1), ('paper', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('trust', 1), ('privacy', 1), ('security', 1), ('digital', 1), ('business', 1), ('trustbus', 1), ('held', 1), ('august', 1), ('vienna', 1), ('austria', 1), ('part', 1), ('dexa', 1), ('full', 1)]
[('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('artificial', 1), ('intelligence', 1), ('icprai', 1), ('took', 1), ('place', 1), ('paris', 1), ('france', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('international', 2), ('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('virtual', 1), ('augmented', 1), ('mixed', 1), ('reality', 1), ('vamr', 1), ('held', 1), ('virtually', 1), ('part', 1), ('rd', 1), ('hci', 1), ('hcii', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('annual', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptographic', 1), ('technique', 1), ('eurocrypt', 1), ('held', 1), ('trondheim', 1), ('norway', 1)]
[('high', 2), ('performance', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computing', 1), ('isc', 1), ('held', 1), ('hamburg', 1), ('germany', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('artificial', 1), ('intelligence', 1), ('icprai', 1), ('took', 1), ('place', 1), ('paris', 1), ('france', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('international', 3), ('th', 2), ('conference', 2), ('held', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('universal', 1), ('access', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('uahci', 1), ('part', 1), ('hci', 1)]
[('international', 3), ('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('design', 1), ('user', 1), ('experience', 1), ('usability', 1), ('duxu', 1), ('part', 1), ('rd', 1), ('hci', 1), ('virtually', 1)]
[('international', 3), ('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('design', 1), ('user', 1), ('experience', 1), ('usability', 1), ('duxu', 1), ('part', 1), ('rd', 1), ('hci', 1), ('virtually', 1)]
[('international', 2), ('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('virtual', 1), ('augmented', 1), ('mixed', 1), ('reality', 1), ('vamr', 1), ('held', 1), ('virtually', 1), ('part', 1), ('rd', 1), ('hci', 1), ('hcii', 1)]
[('international', 2), ('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('cross', 1), ('cultural', 1), ('design', 1), ('ccd', 1), ('held', 1), ('part', 1), ('hci', 1), ('took', 1), ('place', 1), ('virtually', 1), ('june', 1), ('july', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('system', 1), ('advanced', 1), ('application', 1), ('dasfaa', 1), ('held', 1), ('taipei', 1), ('taiwan', 1), ('april', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('digital', 1), ('heritage', 1), ('euromed', 1), ('held', 1), ('virtually', 1), ('november', 1), ('project', 1), ('short', 1), ('presented', 1)]
[('proceeding', 2), ('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('th', 1), ('iacr', 1), ('international', 1), ('practice', 1), ('theory', 1), ('public', 1), ('key', 1), ('cryptography', 1), ('pkc', 1), ('held', 1), ('online', 1)]
[('global', 2), ('population', 2), ('rapid', 1), ('transformation', 1), ('process', 1), ('occur', 1), ('majority', 1), ('world', 1), ('living', 1), ('estimated', 1), ('around', 1), ('¾', 1), ('often', 1), ('deprived', 1), ('access', 1), ('infrastructure', 1), ('service', 1), ('exposed', 1), ('hazard', 1), ('degrading', 1)]
[('volume', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('conference', 1), ('business', 1), ('service', 1), ('society', 1), ('held', 1), ('galway', 1), ('ireland', 1), ('september', 1), ('total', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1)]
[('held', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('security', 1), ('iwsec', 1), ('tokyo', 1), ('japan', 1), ('september', 1), ('conference', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('regular', 1), ('short', 1)]
[('paper', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('system', 1), ('software', 1), ('service', 1), ('process', 1), ('improvement', 1), ('eurospi', 1), ('held', 1), ('krems', 1), ('austria', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('miccai', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('brainlesion', 1), ('workshop', 1), ('brainles', 1), ('rsna', 1), ('asnr', 1), ('brain', 1), ('tumor', 1), ('segmentation', 1), ('brat', 1), ('challenge', 1), ('federated', 1)]
[('volume', 2), ('eight', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('malaga', 1), ('spain', 1), ('july', 1), ('first', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('computer', 1), ('information', 1), ('system', 1), ('industrial', 1), ('management', 1), ('application', 1), ('cisim', 1), ('held', 1), ('barranquilla', 1), ('colombia', 1), ('july', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('held', 2), ('volume', 1), ('constitutes', 1), ('paper', 1), ('several', 1), ('workshop', 1), ('conjunction', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('system', 1), ('advanced', 1), ('application', 1), ('dasfaa', 1), ('virtual', 1), ('event', 1), ('april', 1), ('revised', 1), ('full', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('software', 1), ('technology', 1), ('icsoft', 1), ('virtual', 1), ('event', 1), ('july', 1), ('nbsp', 1), ('held', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('crisis', 1), ('full', 1), ('paper', 1), ('included', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('computational', 1), ('technology', 1), ('pct', 1), ('held', 1), ('dubna', 1), ('russia', 1), ('march', 1), ('full', 1), ('paper', 1), ('included', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('latin', 1), ('american', 1), ('workshop', 1), ('lawcn', 1), ('held', 1), ('sao', 1), ('luis', 1), ('maranhao', 1), ('brazil', 1), ('december', 1), ('full', 1), ('short', 1), ('included', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('emerging', 1), ('technology', 1), ('computer', 1), ('engineering', 1), ('icetce', 1), ('held', 1), ('jaipur', 1), ('india', 1), ('february', 1), ('revised', 1), ('full', 1), ('along', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('integer', 1), ('programming', 1), ('combinatorial', 1), ('optimization', 1), ('ipco', 1), ('held', 1), ('eindhoven', 1), ('netherlands', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('annual', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptographic', 1), ('technique', 1), ('eurocrypt', 1), ('held', 1), ('trondheim', 1), ('norway', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('annual', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptographic', 1), ('technique', 1), ('eurocrypt', 1), ('held', 1), ('trondheim', 1), ('norway', 1)]
[('book', 2), ('organized', 1), ('thirteen', 1), ('chapter', 1), ('range', 1), ('relevant', 1), ('approach', 1), ('tool', 1), ('data', 1), ('integration', 1), ('modeling', 1), ('analysis', 1), ('knowledge', 1), ('discovery', 1), ('signaling', 1), ('pathway', 1), ('mind', 1), ('addressed', 1), ('student', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('advance', 1), ('database', 1), ('information', 1), ('system', 1), ('adbis', 1), ('held', 1), ('turin', 1), ('italy', 1), ('september', 1), ('nbsp', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('analysis', 1), ('image', 1), ('social', 1), ('network', 1), ('text', 1), ('aist', 1), ('tbilisi', 1), ('georgia', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('modeling', 1), ('visual', 1), ('aesthetic', 1), ('emotion', 1), ('artistic', 1), ('style', 1), ('offer', 1), ('comprehensive', 1), ('exploration', 1), ('increasingly', 1), ('significant', 1), ('topic', 1), ('complex', 1), ('interplay', 1), ('human', 1), ('perception', 1), ('digital', 1), ('technology', 1), ('embodies', 1), ('cumulative', 1), ('knowledge', 1)]
[('technology', 2), ('book', 1), ('collection', 1), ('high', 1), ('quality', 1), ('peer', 1), ('reviewed', 1), ('research', 1), ('paper', 1), ('presented', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('system', 1), ('smart', 1), ('st', 1), ('held', 1), ('faculty', 1), ('science', 1), ('hassan', 1), ('first', 1), ('university', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('information', 1), ('system', 1), ('application', 1), ('wisa', 1), ('held', 1), ('dalian', 1), ('china', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('core', 1), ('concept', 1), ('technological', 1), ('foundation', 1), ('continuous', 1), ('engineering', 1), ('web', 1), ('stream', 1), ('present', 1), ('various', 1), ('system', 1), ('application', 1), ('includes', 1), ('real', 1), ('world', 1), ('example', 1), ('last', 1), ('least', 1), ('introduces', 1)]
[('textbook', 1), ('introduces', 1), ('fundamental', 1), ('concept', 1), ('method', 1), ('statistical', 1), ('learning', 1), ('us', 1), ('python', 1), ('provides', 1), ('unique', 1), ('approach', 1), ('blending', 1), ('theory', 1), ('data', 1), ('example', 1), ('software', 1), ('code', 1), ('exercise', 1), ('beginning', 1), ('end', 1), ('profound', 1), ('yet', 1), ('practical', 1)]
[('nbsp', 3), ('accessible', 1), ('classroom', 1), ('tested', 1), ('textbook', 1), ('reference', 1), ('present', 1), ('introduction', 1), ('fundamental', 1), ('interdisciplinary', 1), ('field', 1), ('data', 1), ('science', 1), ('coverage', 1), ('span', 1), ('key', 1), ('concept', 1), ('statistic', 1), ('machine', 1), ('deep', 1), ('learning', 1)]
[('based', 2), ('book', 1), ('examines', 1), ('map', 1), ('collaboration', 1), ('software', 1), ('facilitate', 1), ('negotiation', 1), ('area', 1), ('undergoing', 1), ('contentious', 1), ('pressure', 1), ('significant', 1), ('change', 1), ('case', 1), ('study', 1), ('israel', 1), ('aim', 1), ('introduce', 1), ('useful', 1), ('model', 1), ('planning', 1), ('implementation', 1)]
[('interoperability', 2), ('book', 1), ('present', 1), ('fundamental', 1), ('concept', 1), ('technology', 1), ('tackle', 1), ('information', 1), ('system', 1), ('detail', 1), ('data', 1), ('service', 1), ('process', 1), ('level', 1), ('combine', 1), ('theoretical', 1), ('foundation', 1), ('hand', 1), ('presentation', 1)]
[('model', 2), ('tam', 2), ('springerbrief', 1), ('discus', 1), ('origin', 1), ('emergence', 1), ('evolution', 1), ('future', 1), ('technology', 1), ('acceptance', 1), ('simple', 1), ('yet', 1), ('powerful', 1), ('extensively', 1), ('validated', 1), ('standing', 1), ('leading', 1), ('scientific', 1), ('paradigm', 1), ('reliable', 1)]
[('nbsp', 4), ('data', 2), ('book', 1), ('present', 1), ('scientific', 1), ('result', 1), ('th', 1), ('iee', 1), ('acis', 1), ('international', 1), ('conference', 1), ('big', 1), ('cloud', 1), ('computing', 1), ('science', 1), ('engineering', 1), ('bcd', 1), ('held', 1), ('august', 1), ('danang', 1), ('vietnam', 1), ('aim', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('reachability', 1), ('problem', 1), ('rp', 1), ('held', 1), ('kaiserslautern', 1), ('germany', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('data', 1), ('model', 1), ('back', 1), ('datamod', 1), ('held', 1), ('virtually', 1), ('december', 1), ('satellite', 1), ('event', 1), ('sefm', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('book', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('mc', 1), ('held', 1), ('kraków', 1), ('poland', 1), ('november', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('included', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('financial', 1), ('cryptography', 1), ('data', 1), ('security', 1), ('fc', 1), ('held', 1), ('grenada', 1), ('full', 1), ('short', 1), ('included', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('citi', 1), ('held', 1), ('guayaquil', 1), ('ecuador', 1), ('november', 1), ('full', 1), ('paper', 1), ('included', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('sth', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('entertainment', 1), ('computing', 1), ('icec', 1), ('supposed', 1), ('take', 1), ('place', 1), ('bremen', 1), ('germany', 1), ('november', 1), ('full', 1), ('short', 1)]
[('analysis', 2), ('software', 2), ('static', 1), ('deductive', 1), ('method', 1), ('highly', 1), ('dynamic', 1), ('field', 1), ('research', 1), ('verge', 1), ('becoming', 1), ('mainstream', 1), ('technology', 1), ('engineering', 1), ('consists', 1), ('large', 1), ('portfolio', 1), ('mostly', 1), ('fully', 1), ('automated', 1), ('formal', 1)]
[('term', 2), ('different', 1), ('interdependent', 1), ('component', 1), ('important', 1), ('cio', 1), ('strategy', 1), ('long', 1), ('tactical', 1), ('operational', 1), ('concern', 1), ('short', 1), ('based', 1), ('distinction', 1), ('repercussion', 1), ('book', 1), ('clearly', 1)]
[('lncs', 1), ('volume', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('chinese', 1), ('conference', 1), ('biometric', 1), ('recognition', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('september', 1), ('paper', 1), ('presented', 1), ('book', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('conference', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('fundamental', 1), ('software', 1), ('engineering', 1), ('fsen', 1), ('held', 1), ('virtually', 1), ('hosted', 1), ('ipm', 1), ('full', 1), ('short', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('multi', 1), ('disciplinary', 1), ('trend', 1), ('artificial', 1), ('intelligence', 1), ('miwai', 1), ('held', 1), ('kuala', 1), ('lumpur', 1), ('malaysia', 1), ('november', 1), ('full', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('ifip', 1), ('conference', 1), ('optical', 1), ('network', 1), ('design', 1), ('modeling', 1), ('ondm', 1), ('held', 1), ('athens', 1), ('greece', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('proceeding', 2), ('three', 1), ('volume', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('european', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('würzburg', 1), ('germany', 1), ('september', 1), ('total', 1)]
[('international', 2), ('conference', 2), ('coordination', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('model', 1), ('language', 1), ('due', 1), ('held', 1), ('valletta', 1), ('malta', 1), ('june', 1), ('part', 1), ('th', 1), ('federated', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('search', 1), ('based', 1), ('software', 1), ('engineering', 1), ('ssbse', 1), ('held', 1), ('bari', 1), ('italy', 1), ('october', 1), ('research', 1), ('short', 1), ('presented', 1), ('together', 1), ('keynote', 1)]
[('chapter', 1), ('abecto', 1), ('abox', 1), ('evaluation', 1), ('comparison', 1), ('tool', 1), ('ontology', 1), ('available', 1), ('open', 1), ('access', 1), ('creative', 1), ('common', 1), ('attribution', 1), ('international', 1), ('license', 1), ('via', 1), ('nbsp', 1), ('link', 1), ('springer', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('distributed', 1), ('artificial', 1), ('intelligence', 1), ('dai', 1), ('held', 1), ('nanjing', 1), ('china', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cryptology', 1), ('network', 1), ('security', 1), ('can', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('december', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('data', 2), ('proceeding', 1), ('offer', 1), ('insightful', 1), ('exploration', 1), ('integrating', 1), ('analytics', 1), ('system', 1), ('engineering', 1), ('book', 1), ('highlight', 1), ('essential', 1), ('role', 1), ('driving', 1), ('innovation', 1), ('optimizing', 1), ('process', 1), ('solving', 1), ('complex', 1), ('challenge', 1), ('field', 1)]
[('generative', 2), ('ai', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('term', 1), ('basic', 1), ('concept', 1), ('core', 1), ('technology', 1), ('technical', 1), ('architecture', 1), ('application', 1), ('scenario', 1), ('reader', 1), ('gain', 1), ('deeper', 1), ('understanding', 1), ('emerging', 1), ('discipline', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('formal', 1), ('method', 1), ('industrial', 1), ('critical', 1), ('system', 1), ('fmics', 1), ('held', 1), ('september', 1), ('conference', 1), ('planned', 1), ('take', 1), ('place', 1), ('vienna', 1), ('austria', 1), ('due', 1)]
[('fuzzy', 3), ('set', 3), ('system', 2), ('third', 1), ('edition', 1), ('textbook', 1), ('present', 1), ('updated', 1), ('approach', 1), ('model', 1), ('uncertainty', 1), ('type', 1), ('author', 1), ('demonstrates', 1), ('overcome', 1), ('limitation', 1), ('classical', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('revised', 1), ('selected', 1), ('best', 1), ('visionary', 1), ('paper', 1), ('workshop', 1), ('held', 1), ('international', 1), ('conference', 1), ('autonomous', 1), ('agent', 1), ('multiagent', 1), ('system', 1), ('aamas', 1), ('took', 1), ('place', 1), ('online', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('seven', 1), ('international', 1), ('workshop', 1), ('conjunction', 1), ('th', 1), ('european', 1), ('symposium', 1), ('research', 1), ('computer', 1), ('security', 1), ('esorics', 1), ('hybrid', 1), ('mode', 1), ('copenhagen', 1), ('denmark', 1)]
[('conference', 2), ('clef', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('association', 1), ('held', 1), ('bologna', 1), ('italy', 1), ('september', 1), ('clear', 1), ('focus', 1), ('experimental', 1), ('information', 1), ('retrieval', 1), ('special', 1)]
[('decision', 3), ('policy', 2), ('emergence', 2), ('level', 2), ('book', 1), ('introduces', 1), ('concept', 1), ('dynamic', 1), ('sub', 1), ('systemic', 1), ('process', 1), ('constitutes', 1), ('breeding', 1), ('ground', 1), ('remains', 1), ('unexplored', 1), ('due', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('quantitative', 1), ('evaluation', 1), ('system', 1), ('qest', 1), ('held', 1), ('paris', 1), ('france', 1), ('august', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1), ('keynote', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('biometric', 1), ('authentication', 1), ('biomet', 1), ('held', 1), ('sofia', 1), ('bulgaria', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('evolutionary', 1), ('multi', 1), ('criterion', 1), ('optimization', 1), ('emo', 1), ('held', 1), ('guimarães', 1), ('portugal', 1), ('march', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('plenary', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('expert', 1), ('system', 1), ('application', 1), ('dexa', 1), ('held', 1), ('valencia', 1), ('spain', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('nbsp', 3), ('reality', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('augmented', 1), ('virtual', 1), ('computer', 1), ('graphic', 1), ('avr', 1), ('held', 1), ('lecce', 1), ('italy', 1), ('june', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('simulation', 1), ('synthesis', 1), ('medical', 1), ('imaging', 1), ('sashimi', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('granada', 1), ('spain', 1), ('september', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('reachability', 1), ('problem', 1), ('rp', 1), ('held', 1), ('marseille', 1), ('france', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('spanish', 1), ('association', 1), ('artificial', 1), ('intelligence', 1), ('caepia', 1), ('held', 1), ('granada', 1), ('spain', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('international', 2), ('workshop', 2), ('save', 2), ('sd', 2), ('held', 2), ('april', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('perth', 1), ('australia', 1), ('th', 1), ('lyon', 1), ('france', 1), ('nbsp', 1), ('full', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('chinese', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('computer', 1), ('vision', 1), ('prcv', 1), ('held', 1), ('guangzhou', 1), ('china', 1), ('november', 1), ('revised', 1), ('full', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('interact', 1), ('held', 1), ('paphos', 1), ('cyprus', 1), ('september', 1), ('total', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('agent', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('explainable', 1), ('transparent', 1), ('autonomous', 1), ('multi', 1), ('system', 1), ('extraamas', 1), ('held', 1), ('montreal', 1), ('canada', 1), ('revised', 1), ('extended', 1), ('paper', 1), ('presented', 1)]
[('book', 2), ('research', 2), ('image', 2), ('provides', 1), ('collection', 1), ('state', 1), ('art', 1), ('attempt', 1), ('tackle', 1), ('challenge', 1), ('signal', 1), ('processing', 1), ('various', 1), ('novel', 1), ('potential', 1), ('perspective', 1), ('investigates', 1), ('feature', 1), ('extraction', 1), ('technique', 1)]
[('ci', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('congress', 1), ('innovation', 1), ('research', 1), ('driving', 1), ('force', 1), ('socio', 1), ('econo', 1), ('technological', 1), ('development', 1), ('held', 1), ('september', 1), ('organized', 1), ('instituto', 1)]
[('network', 4), ('information', 2), ('system', 2), ('peer', 2), ('today', 1), ('evolving', 1), ('rapidly', 1), ('new', 1), ('trend', 1), ('application', 1), ('networking', 1), ('wireless', 1), ('sensor', 1), ('ad', 1), ('hoc', 1), ('vehicular', 1), ('opportunistic', 1)]
[('fast', 1), ('development', 1), ('internet', 1), ('experiencing', 1), ('shift', 1), ('traditional', 1), ('sharing', 1), ('information', 1), ('application', 1), ('main', 1), ('purpose', 1), ('web', 1), ('emergent', 1), ('paradigm', 1), ('locates', 1), ('center', 1), ('network', 1)]
[('organization', 2), ('book', 1), ('shed', 1), ('light', 1), ('fundamental', 1), ('innovative', 1), ('topic', 1), ('information', 1), ('system', 1), ('societal', 1), ('impact', 1), ('individual', 1), ('mainly', 1), ('focus', 1), ('role', 1), ('artificial', 1), ('intelligence', 1), ('human', 1), ('computer', 1)]
[('artificial', 2), ('intelligence', 2), ('book', 1), ('aim', 1), ('deal', 1), ('main', 1), ('advance', 1), ('study', 1), ('digital', 1), ('circular', 1), ('economy', 1), ('innovation', 1), ('multidisciplinary', 1), ('perspective', 1), ('whoever', 1), ('governs', 1), ('hold', 1), ('key', 1)]
[('software', 2), ('book', 1), ('contains', 1), ('proceeding', 1), ('cimps', 1), ('conference', 1), ('held', 1), ('october', 1), ('hipócrates', 1), ('university', 1), ('acapulco', 1), ('de', 1), ('juárez', 1), ('guerrero', 1), ('méxico', 1), ('dedicated', 1), ('engineering', 1), ('particular', 1), ('process', 1), ('nbsp', 1), ('improvement', 1)]
[('intelligent', 2), ('information', 2), ('technology', 2), ('book', 1), ('contains', 1), ('work', 1), ('connected', 1), ('key', 1), ('advance', 1), ('industry', 1), ('presented', 1), ('main', 1), ('track', 1), ('iiti', 1), ('sixth', 1), ('international', 1), ('scientific', 1), ('conference', 1)]
[('show', 2), ('book', 1), ('computational', 1), ('process', 1), ('function', 1), ('power', 1), ('versatility', 1), ('possible', 1), ('discovery', 1), ('made', 1), ('smith', 1), ('realized', 1), ('exist', 1), ('additional', 1), ('powerful', 1), ('control', 1), ('mechanism', 1)]
[('digital', 2), ('book', 1), ('state', 1), ('intelligent', 1), ('transformation', 1), ('process', 1), ('using', 1), ('artificial', 1), ('intelligence', 1), ('technique', 1), ('technology', 1), ('machine', 1), ('learning', 1), ('natural', 1), ('language', 1), ('processing', 1), ('automation', 1), ('robotics', 1), ('transform', 1), ('existing', 1)]
[('network', 2), ('information', 2), ('book', 1), ('cover', 1), ('theory', 1), ('design', 1), ('application', 1), ('computer', 1), ('distributed', 1), ('computing', 1), ('system', 1), ('today', 1), ('going', 1), ('rapid', 1), ('evolution', 1), ('many', 1), ('emerging', 1), ('area', 1), ('networking', 1)]
[('book', 2), ('aim', 1), ('contribute', 1), ('discussion', 1), ('implication', 1), ('fuzzy', 1), ('logic', 1), ('neural', 1), ('network', 1), ('digital', 1), ('era', 1), ('intelligent', 1), ('technique', 1), ('organization', 1), ('useful', 1), ('academic', 1), ('researcher', 1), ('postgraduate', 1), ('student', 1)]
[('path', 2), ('determine', 2), ('obstacle', 2), ('book', 1), ('aim', 1), ('show', 1), ('modern', 1), ('socio', 1), ('economic', 1), ('entrepreneurial', 1), ('system', 1), ('increase', 1), ('security', 1), ('face', 1), ('opportunity', 1), ('overcoming', 1)]
[('system', 3), ('information', 2), ('software', 2), ('book', 1), ('cover', 1), ('following', 1), ('main', 1), ('topic', 1), ('nbsp', 1), ('knowledge', 1), ('management', 1), ('organizational', 1), ('model', 1), ('modeling', 1), ('architecture', 1), ('application', 1), ('tool', 1)]
[('digital', 2), ('transformation', 2), ('new', 2), ('book', 1), ('present', 1), ('recent', 1), ('research', 1), ('intelligent', 1), ('fuzzy', 1), ('technique', 1), ('normal', 1), ('state', 1), ('economy', 1), ('society', 1), ('etc', 1), ('settle', 1), ('following', 1), ('crisis', 1), ('bringing', 1), ('environment', 1)]
[('learning', 4), ('book', 1), ('collection', 1), ('paper', 1), ('research', 1), ('area', 1), ('big', 1), ('data', 1), ('cloud', 1), ('computing', 1), ('cybersecurity', 1), ('machine', 1), ('deep', 1), ('internet', 1), ('thing', 1), ('reinforcement', 1), ('information', 1), ('system', 1), ('social', 1), ('medium', 1), ('natural', 1), ('language', 1)]
[('digital', 2), ('transformation', 2), ('new', 2), ('book', 1), ('present', 1), ('recent', 1), ('research', 1), ('intelligent', 1), ('fuzzy', 1), ('technique', 1), ('normal', 1), ('state', 1), ('economy', 1), ('society', 1), ('etc', 1), ('settle', 1), ('following', 1), ('crisis', 1), ('bringing', 1), ('environment', 1)]
[('data', 2), ('science', 2), ('algorithm', 2), ('design', 2), ('system', 2), ('software', 2), ('engineering', 2), ('book', 1), ('offer', 1), ('real', 1), ('world', 1), ('topic', 1), ('linked', 1), ('furthermore', 1), ('article', 1), ('describing', 1), ('unique', 1), ('technique', 1)]
[('book', 1), ('cover', 1), ('selected', 1), ('high', 1), ('quality', 1), ('research', 1), ('paper', 1), ('presented', 1), ('international', 1), ('conference', 1), ('cyber', 1), ('security', 1), ('privacy', 1), ('networking', 1), ('icspn', 1), ('nbsp', 1), ('organized', 1), ('september', 1), ('thailand', 1), ('online', 1), ('mode', 1), ('objective', 1)]
[('blockchain', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('congress', 1), ('application', 1), ('held', 1), ('aquila', 1), ('italy', 1), ('july', 1), ('among', 1), ('scientific', 1), ('community', 1), ('artificial', 1), ('intelligence', 1)]
[('development', 2), ('information', 2), ('system', 2), ('icisat', 1), ('conference', 1), ('provided', 1), ('forum', 1), ('research', 1), ('field', 1), ('advanced', 1), ('technology', 1), ('new', 1), ('trend', 1), ('developing', 1), ('organizational', 1), ('aspect', 1), ('intelligent', 1)]
[('data', 3), ('book', 1), ('review', 1), ('state', 1), ('art', 1), ('big', 1), ('analysis', 1), ('artificial', 1), ('intelligence', 1), ('smart', 1), ('environment', 1), ('becoming', 1), ('increasingly', 1), ('decisive', 1), ('resource', 1), ('modern', 1), ('society', 1), ('economy', 1), ('governmental', 1), ('organization', 1), ('science', 1)]
[('system', 2), ('information', 2), ('book', 1), ('shed', 1), ('light', 1), ('recent', 1), ('research', 1), ('direction', 1), ('intelligent', 1), ('application', 1), ('involves', 1), ('main', 1), ('theme', 1), ('including', 1), ('management', 1), ('advance', 1), ('security', 1), ('networking', 1), ('discussion', 1)]
[('world', 2), ('book', 1), ('address', 1), ('challenge', 1), ('living', 1), ('multilingual', 1), ('three', 1), ('perspective', 1), ('socio', 1), ('linguistics', 1), ('study', 1), ('multilingualism', 1), ('contrast', 1), ('philosophy', 1), ('technology', 1), ('emphasis', 1), ('technosphere', 1), ('made', 1)]
[('education', 3), ('currently', 1), ('witnessing', 1), ('significant', 1), ('transformation', 1), ('development', 1), ('level', 1), ('especially', 1), ('post', 1), ('secondary', 1), ('face', 1), ('challenge', 1), ('higher', 1), ('find', 1), ('innovative', 1), ('way', 1), ('quickly', 1), ('respond', 1), ('new', 1)]
[('networking', 2), ('network', 1), ('today', 1), ('going', 1), ('rapid', 1), ('evolution', 1), ('many', 1), ('emerging', 1), ('area', 1), ('information', 1), ('application', 1), ('heterogeneous', 1), ('supported', 1), ('recent', 1), ('technological', 1), ('advance', 1), ('low', 1), ('power', 1), ('wireless', 1), ('communication', 1)]
[('book', 2), ('conference', 2), ('collection', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('big', 1), ('data', 1), ('cloud', 1), ('internet', 1), ('thing', 1), ('bdiot', 1), ('took', 1), ('place', 1), ('october', 1), ('tangier', 1), ('morocco', 1), ('nbsp', 1), ('consisted', 1)]
[('networking', 2), ('network', 1), ('today', 1), ('going', 1), ('rapid', 1), ('evolution', 1), ('many', 1), ('emerging', 1), ('area', 1), ('information', 1), ('application', 1), ('heterogeneous', 1), ('supported', 1), ('recent', 1), ('technological', 1), ('advance', 1), ('low', 1), ('power', 1), ('wireless', 1), ('communication', 1)]
[('networking', 2), ('network', 1), ('today', 1), ('going', 1), ('rapid', 1), ('evolution', 1), ('many', 1), ('emerging', 1), ('area', 1), ('information', 1), ('application', 1), ('heterogeneous', 1), ('supported', 1), ('recent', 1), ('technological', 1), ('advance', 1), ('low', 1), ('power', 1), ('wireless', 1), ('communication', 1)]
[('intelligence', 3), ('artificial', 2), ('book', 1), ('covering', 1), ('knowledge', 1), ('result', 1), ('theory', 1), ('methodology', 1), ('application', 1), ('machine', 1), ('learning', 1), ('academia', 1), ('industry', 1), ('nowadays', 1), ('used', 1), ('every', 1), ('company', 1)]
[('network', 2), ('book', 1), ('offer', 1), ('rare', 1), ('cross', 1), ('disciplinary', 1), ('blend', 1), ('computational', 1), ('ethnographic', 1), ('analysis', 1), ('area', 1), ('ranging', 1), ('politics', 1), ('urban', 1), ('planning', 1), ('literature', 1), ('education', 1), ('collected', 1), ('paper', 1), ('presented', 1), ('sixth', 1)]
[('artificial', 2), ('intelligence', 2), ('book', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('deep', 1), ('learning', 1), ('robotics', 1), ('icdlair', 1), ('introduces', 1), ('key', 1), ('topic', 1), ('algorithm', 1), ('programming', 1), ('organisation', 1), ('explains', 1)]
[('human', 2), ('society', 2), ('information', 2), ('book', 1), ('aim', 1), ('share', 1), ('theory', 1), ('practice', 1), ('innovative', 1), ('oriented', 1), ('system', 1), ('purpose', 1), ('technology', 1), ('community', 1), ('ignore', 1), ('behavior', 1), ('social', 1), ('feature', 1)]
[('nbsp', 3), ('book', 1), ('proceeding', 1), ('ism', 1), ('intended', 1), ('used', 1), ('reference', 1), ('student', 1), ('researcher', 1), ('collect', 1), ('scientific', 1), ('technical', 1), ('contribution', 1), ('respect', 1), ('model', 1), ('tool', 1), ('technology', 1), ('application', 1), ('field', 1)]
[('book', 1), ('composed', 1), ('paper', 1), ('written', 1), ('english', 1), ('accepted', 1), ('presentation', 1), ('discussion', 1), ('international', 1), ('conference', 1), ('information', 1), ('technology', 1), ('system', 1), ('icits', 1), ('held', 1), ('universidad', 1), ('nacional', 1), ('de', 1), ('san', 1), ('antonio', 1), ('abad', 1), ('del', 1), ('cusco', 1)]
[('network', 2), ('system', 2), ('cybernetics', 2), ('section', 1), ('continues', 1), ('highly', 1), ('relevant', 1), ('rapidly', 1), ('evolving', 1), ('area', 1), ('research', 1), ('encompassing', 1), ('modern', 1), ('advancement', 1), ('informatics', 1), ('within', 1), ('context', 1), ('field', 1)]
[('development', 2), ('application', 2), ('data', 2), ('book', 1), ('provides', 1), ('detailed', 1), ('overview', 1), ('latest', 1), ('field', 1), ('artificial', 1), ('intelligence', 1), ('science', 1), ('ai', 1), ('achieved', 1), ('accuracy', 1), ('performance', 1), ('help', 1)]
[('city', 3), ('computational', 2), ('intelligence', 2), ('data', 2), ('analytics', 2), ('sustainable', 2), ('smart', 2), ('book', 1), ('present', 1), ('latest', 1), ('advance', 1), ('future', 1), ('focus', 1), ('bring', 1), ('together', 1)]
[('today', 1), ('use', 1), ('machine', 1), ('intelligence', 1), ('expert', 1), ('system', 1), ('analytical', 1), ('technology', 1), ('combined', 1), ('big', 1), ('data', 1), ('natural', 1), ('evolution', 1), ('discipline', 1), ('nbsp', 1), ('result', 1), ('pressing', 1), ('need', 1), ('new', 1), ('innovative', 1), ('algorithm', 1), ('help', 1), ('find', 1)]
[('enterprise', 2), ('ea', 2), ('textbook', 1), ('provides', 1), ('guidance', 1), ('student', 1), ('practitioner', 1), ('architecture', 1), ('develop', 1), ('maintain', 1), ('model', 1), ('rather', 1), ('providing', 1), ('yet', 1), ('another', 1), ('list', 1), ('notation', 1), ('framework', 1), ('focus', 1)]
[('conference', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('icst', 1), ('sensor', 1), ('system', 1), ('software', 1), ('cube', 1), ('held', 1), ('lucca', 1), ('italy', 1), ('revised', 1), ('full', 1), ('invited', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('ad', 1), ('hoc', 1), ('network', 1), ('adhocnets', 1), ('held', 1), ('rhodes', 1), ('greece', 1), ('august', 1), ('regular', 1), ('invited', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('information', 3), ('technology', 2), ('system', 1), ('field', 1), ('represents', 1), ('multidisciplinary', 1), ('area', 1), ('link', 1), ('rapidly', 1), ('changing', 1), ('communication', 1), ('ict', 1), ('business', 1), ('social', 1), ('environment', 1), ('despite', 1), ('potential', 1)]
[('book', 1), ('feature', 1), ('outcome', 1), ('th', 1), ('international', 1), ('conference', 1), ('distributed', 1), ('computing', 1), ('artificial', 1), ('intelligence', 1), ('dcai', 1), ('forum', 1), ('present', 1), ('application', 1), ('innovative', 1), ('technique', 1), ('studying', 1), ('solving', 1), ('complex', 1), ('problem', 1)]
[('th', 3), ('book', 1), ('based', 1), ('international', 1), ('conference', 1), ('methodology', 1), ('intelligent', 1), ('system', 1), ('technology', 1), ('enhanced', 1), ('learning', 1), ('hosted', 1), ('university', 1), ('salamanca', 1), ('held', 1), ('ávila', 1), ('spain', 1), ('june', 1), ('expanding', 1)]
[('human', 2), ('monograph', 1), ('present', 1), ('innovative', 1), ('research', 1), ('regarding', 1), ('body', 1), ('experience', 1), ('individual', 1), ('using', 1), ('assistive', 1), ('robotic', 1), ('device', 1), ('wearable', 1), ('robot', 1), ('teleoperation', 1), ('system', 1), ('focus', 1), ('set', 1), ('loop', 1), ('experiment', 1), ('help', 1)]
[('different', 2), ('problem', 2), ('book', 1), ('present', 1), ('compilation', 1), ('recent', 1), ('implementation', 1), ('artificial', 1), ('intelligence', 1), ('method', 1), ('solving', 1), ('generated', 1), ('covid', 1), ('addressed', 1), ('came', 1), ('field', 1), ('medicine', 1)]
[('deep', 3), ('learning', 2), ('nbsp', 2), ('book', 1), ('cover', 1), ('large', 1), ('set', 1), ('method', 1), ('field', 1), ('artificial', 1), ('intelligence', 1), ('applied', 1), ('real', 1), ('world', 1), ('problem', 1), ('fundamental', 1), ('approach', 1), ('different', 1), ('type', 1), ('neural', 1), ('network', 1), ('dnns', 1), ('first', 1)]
[('big', 2), ('data', 2), ('book', 1), ('includes', 1), ('state', 1), ('art', 1), ('discussion', 1), ('various', 1), ('issue', 1), ('aspect', 1), ('implementation', 1), ('testing', 1), ('validation', 1), ('application', 1), ('context', 1), ('healthcare', 1), ('concept', 1), ('revolutionary', 1), ('technological', 1)]
[('science', 3), ('research', 2), ('field', 2), ('book', 1), ('introduces', 1), ('higher', 1), ('degree', 1), ('student', 1), ('early', 1), ('career', 1), ('academic', 1), ('scientific', 1), ('occurring', 1), ('information', 1), ('system', 1), ('adjacent', 1), ('computer', 1), ('management', 1), ('organization', 1)]
[('book', 2), ('trust', 2), ('model', 2), ('discus', 1), ('next', 1), ('generation', 1), ('blockchain', 1), ('ecosystem', 1), ('provides', 1), ('comprehensive', 1), ('discussion', 1), ('various', 1), ('factor', 1), ('involving', 1), ('security', 1), ('anonymization', 1), ('reputation', 1), ('governance', 1), ('economic', 1), ('relevant', 1)]
[('city', 2), ('experiencing', 1), ('unprecedented', 1), ('time', 1), ('addition', 1), ('managing', 1), ('best', 1), ('possible', 1), ('post', 1), ('pandemic', 1), ('recovery', 1), ('beginning', 1), ('th', 1), ('industrial', 1), ('revolution', 1), ('want', 1), ('play', 1), ('relevant', 1), ('role', 1), ('achieve', 1)]
[('knowledge', 3), ('management', 2), ('book', 1), ('deal', 1), ('computer', 1), ('aided', 1), ('writing', 1), ('caw', 1), ('short', 1), ('content', 1), ('sector', 1), ('based', 1), ('technics', 1), ('role', 1), ('social', 1), ('medium', 1), ('education', 1), ('industry', 1), ('question', 1)]
[('ai', 2), ('changing', 2), ('artificial', 1), ('intelligence', 1), ('world', 1), ('around', 1), ('way', 1), ('living', 1), ('working', 1), ('entertaining', 1), ('result', 1), ('demand', 1), ('understanding', 1), ('function', 1), ('achieve', 1), ('enhance', 1), ('human', 1), ('goal', 1), ('basic', 1), ('need', 1)]
[('recent', 1), ('year', 1), ('witnessed', 1), ('important', 1), ('advancement', 1), ('understanding', 1), ('psychological', 1), ('underpinnings', 1), ('subjective', 1), ('property', 1), ('visual', 1), ('information', 1), ('aesthetic', 1), ('memorability', 1), ('induced', 1), ('emotion', 1), ('concurrently', 1), ('computational', 1), ('model', 1)]
[('book', 2), ('science', 2), ('offer', 1), ('first', 1), ('systematic', 1), ('guide', 1), ('machine', 1), ('ethic', 1), ('bridging', 1), ('computer', 1), ('social', 1), ('philosophy', 1), ('based', 1), ('dialogue', 1), ('ai', 1), ('scientist', 1), ('novelist', 1), ('philosopher', 1), ('discus', 1), ('important', 1), ('finding', 1)]
[('book', 2), ('present', 2), ('method', 2), ('self', 2), ('healing', 2), ('system', 2), ('systematized', 1), ('research', 1), ('development', 1), ('improvement', 1), ('communication', 1), ('control', 1), ('new', 1), ('model', 1), ('data', 1), ('processing', 1), ('focused', 1), ('specific', 1)]
[('nbsp', 2), ('optimal', 2), ('attack', 2), ('signal', 2), ('processing', 2), ('book', 1), ('demonstrates', 1), ('adversarial', 1), ('several', 1), ('important', 1), ('algorithm', 1), ('presenting', 1), ('wireless', 1), ('sensor', 1), ('network', 1), ('array', 1), ('principal', 1), ('component', 1), ('analysis', 1)]
[('day', 2), ('healthcare', 1), ('become', 1), ('extremely', 1), ('important', 1), ('relevant', 1), ('topic', 1), ('discussion', 1), ('covid', 1), ('pandemic', 1), ('encountered', 1), ('global', 1), ('population', 1), ('led', 1), ('renewed', 1), ('focus', 1), ('attention', 1), ('researcher', 1), ('every', 1)]
[('book', 2), ('information', 2), ('concept', 2), ('focus', 1), ('analysing', 1), ('application', 1), ('shannon', 1), ('measure', 1), ('smi', 1), ('introduces', 1), ('frustration', 1), ('discus', 1), ('question', 1), ('quantification', 1), ('within', 1), ('theory', 1)]
[('literature', 2), ('mathematical', 2), ('simulation', 2), ('although', 1), ('organisational', 1), ('learning', 1), ('formalisation', 1), ('computational', 1), ('us', 1), ('modelling', 1), ('represent', 1), ('explore', 1), ('different', 1), ('facet', 1), ('multilevel', 1)]
[('book', 1), ('offer', 1), ('latest', 1), ('research', 1), ('result', 1), ('recent', 1), ('development', 1), ('principle', 1), ('technique', 1), ('application', 1), ('mobile', 1), ('crowdsourcing', 1), ('present', 1), ('state', 1), ('art', 1), ('content', 1), ('provides', 1), ('depth', 1), ('overview', 1), ('basic', 1), ('background', 1)]
[('turn', 1), ('century', 1), ('even', 1), ('earlier', 1), ('plethora', 1), ('project', 1), ('arisen', 1), ('promise', 1), ('bold', 1), ('new', 1), ('interactive', 1), ('adventure', 1), ('immersive', 1), ('travel', 1), ('past', 1), ('digital', 1), ('environment', 1), ('using', 1), ('mixed', 1), ('virtual', 1), ('augmented', 1), ('reality', 1)]
[('social', 2), ('medium', 2), ('monitor', 2), ('kid', 2), ('book', 1), ('introduces', 1), ('present', 1), ('newest', 1), ('date', 1), ('method', 1), ('approach', 1), ('technology', 1), ('detect', 1), ('child', 1), ('cyberbullying', 1), ('learning', 1), ('game', 1), ('designed', 1), ('activity', 1)]
[('cyber', 2), ('several', 2), ('book', 1), ('describes', 1), ('security', 1), ('issue', 1), ('underpinning', 1), ('physical', 1), ('system', 1), ('application', 1), ('domain', 1), ('proposing', 1), ('common', 1), ('perspective', 1), ('able', 1), ('collect', 1), ('similarity', 1), ('depict', 1), ('divergence', 1), ('specific', 1), ('solution', 1), ('method', 1), ('special', 1)]
[('volume', 1), ('contains', 1), ('technical', 1), ('paper', 1), ('presented', 1), ('four', 1), ('high', 1), ('quality', 1), ('workshop', 1), ('associated', 1), ('european', 1), ('conference', 1), ('service', 1), ('oriented', 1), ('cloud', 1), ('computing', 1), ('esocc', 1), ('held', 1), ('manchester', 1), ('uk', 1), ('september', 1), ('th', 1), ('international', 1)]
[('system', 2), ('book', 1), ('present', 1), ('novel', 1), ('approach', 1), ('formal', 1), ('specification', 1), ('concurrent', 1), ('parallel', 1), ('mathematical', 1), ('model', 1), ('describing', 1), ('programming', 1), ('verification', 1), ('concept', 1), ('implementation', 1), ('special', 1), ('emphasis', 1)]
[('ifip', 2), ('volume', 1), ('aict', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('wg', 1), ('conference', 1), ('advance', 1), ('production', 1), ('management', 1), ('system', 1), ('apms', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedproceedings', 1), ('th', 1), ('international', 1), ('conference', 1), ('evaluation', 1), ('novelapproaches', 1), ('software', 1), ('engineering', 1), ('enase', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('inapril', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('conference', 1), ('electronic', 1), ('governance', 1), ('open', 1), ('society', 1), ('challenge', 1), ('eurasia', 1), ('egose', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('november', 1), ('full', 1), ('short', 1)]
[('customer', 2), ('second', 1), ('volume', 1), ('research', 1), ('monograph', 1), ('describes', 1), ('number', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('field', 1), ('relationship', 1), ('management', 1), ('focus', 1), ('solving', 1), ('problem', 1), ('design', 1), ('system', 1), ('try', 1), ('understand', 1)]
[('deep', 2), ('based', 2), ('method', 2), ('book', 1), ('provides', 1), ('overview', 1), ('different', 1), ('learning', 1), ('face', 1), ('recognition', 1), ('related', 1), ('problem', 1), ('specifically', 1), ('author', 1), ('present', 1), ('autoencoders', 1), ('restricted', 1), ('boltzmann', 1), ('machine', 1), ('convolutional', 1), ('neural', 1)]
[('optimization', 2), ('book', 1), ('present', 1), ('latest', 1), ('trend', 1), ('development', 1), ('multimodal', 1), ('niching', 1), ('technique', 1), ('existing', 1), ('method', 1), ('designed', 1), ('locating', 1), ('single', 1), ('global', 1), ('solution', 1), ('real', 1), ('world', 1), ('setting', 1), ('many', 1), ('problem', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('symposium', 1), ('human', 1), ('aspect', 1), ('information', 1), ('security', 1), ('assurance', 1), ('haisa', 1), ('held', 1), ('mytilene', 1), ('lesbos', 1), ('greece', 1), ('july', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('education', 3), ('technology', 2), ('book', 1), ('aim', 1), ('ass', 1), ('experience', 1), ('covid', 1), ('pandemic', 1), ('explore', 1), ('future', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('delivery', 1), ('requires', 1), ('support', 1), ('new', 1)]
[('image', 2), ('book', 1), ('review', 1), ('state', 1), ('art', 1), ('algorithmic', 1), ('approach', 1), ('addressing', 1), ('practical', 1), ('challenge', 1), ('arise', 1), ('hyperspectral', 1), ('analysis', 1), ('task', 1), ('focus', 1), ('emerging', 1), ('trend', 1), ('machine', 1), ('learning', 1), ('processing', 1), ('understanding', 1)]
[('similarity', 2), ('distance', 2), ('book', 1), ('present', 1), ('state', 1), ('art', 1), ('theory', 1), ('practice', 1), ('regarding', 1), ('measure', 1), ('intuitionistic', 1), ('fuzzy', 1), ('set', 1), ('quantifying', 1), ('crucial', 1), ('many', 1), ('application', 1), ('data', 1), ('mining', 1), ('machine', 1), ('learning', 1)]
[('slippage', 3), ('localized', 2), ('fingertip', 2), ('occurs', 1), ('relative', 1), ('sliding', 1), ('soft', 1), ('contact', 1), ('ranging', 1), ('human', 1), ('robotic', 1), ('although', 1), ('phenomenon', 1), ('dominant', 1), ('short', 1), ('time', 1), ('prior', 1), ('gross', 1), ('crucial', 1), ('factor', 1)]
[('canadian', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('halifax', 1), ('nova', 1), ('scotia', 1), ('canada', 1), ('june', 1), ('regular', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('th', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('international', 1), ('agent', 1), ('data', 1), ('mining', 1), ('interaction', 1), ('admi', 1), ('held', 1), ('paris', 1), ('france', 1), ('satellite', 1), ('aamas', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('education', 1), ('aied', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('keynote', 1), ('poster', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('foundation', 1), ('augmented', 1), ('cognition', 1), ('ac', 1), ('held', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('took', 1), ('place', 1), ('los', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('portuguese', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('epia', 1), ('held', 1), ('coimbra', 1), ('portugal', 1), ('september', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('theproceedings', 1), ('th', 1), ('mexican', 1), ('international', 1), ('conference', 1), ('artificialintelligence', 1), ('micai', 1), ('held', 1), ('cuernavaca', 1), ('morelos', 1), ('mexico', 1), ('october', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('paper', 3), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('german', 1), ('conference', 1), ('multiagent', 1), ('system', 1), ('technology', 1), ('mate', 1), ('held', 1), ('cottbus', 1), ('germany', 1), ('september', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('invited', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('thethoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('advancesin', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('auckland', 1), ('newzealand', 1), ('april', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('simulation', 1), ('adaptive', 1), ('behavior', 1), ('sab', 1), ('held', 1), ('castellón', 1), ('spain', 1), ('july', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('probabilistic', 1), ('graphical', 1), ('model', 1), ('pgm', 1), ('held', 1), ('utrecht', 1), ('netherlands', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('german', 1), ('conference', 1), ('multiagent', 1), ('system', 1), ('technology', 1), ('mate', 1), ('held', 1), ('stuttgart', 1), ('germany', 1), ('september', 1), ('full', 1), ('short', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('emotion', 3), ('modeling', 2), ('active', 1), ('area', 1), ('research', 1), ('almost', 1), ('decade', 1), ('spite', 1), ('growing', 1), ('diverse', 1), ('body', 1), ('work', 1), ('designing', 1), ('developing', 1), ('model', 1), ('remains', 1), ('art', 1), ('standard', 1), ('systematic', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('method', 1), ('system', 1), ('biology', 1), ('cmsb', 1), ('held', 1), ('manchester', 1), ('uk', 1), ('november', 1), ('regular', 1), ('presented', 1), ('together', 1), ('poster', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('pricai', 1), ('held', 1), ('gold', 1), ('coast', 1), ('queensland', 1), ('australia', 1), ('december', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('technology', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('held', 1), ('taipei', 1), ('taiwan', 1), ('november', 1), ('revised', 1), ('full', 1), ('short', 1), ('workshop', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('australasian', 1), ('conference', 1), ('artificial', 1), ('life', 1), ('computational', 1), ('intelligence', 1), ('acalci', 1), ('held', 1), ('newcastle', 1), ('nsw', 1), ('australia', 1), ('february', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('canadian', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('victoria', 1), ('bc', 1), ('canada', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('fuzzy', 3), ('set', 3), ('book', 1), ('offer', 1), ('multifaceted', 1), ('perspective', 1), ('theory', 1), ('discussing', 1), ('development', 1), ('last', 1), ('year', 1), ('report', 1), ('type', 1), ('ordinary', 1), ('hesitant', 1), ('explained', 1), ('developer', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('love', 1), ('sex', 1), ('robot', 1), ('lsr', 1), ('held', 1), ('december', 1), ('london', 1), ('uk', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('together', 1), ('keynote', 1), ('carefully', 1), ('reviewed', 1)]
[('lnai', 2), ('nbsp', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('soft', 1), ('computing', 1), ('icaisc', 1), ('held', 1), ('zakopane', 1), ('poland', 1), ('june', 1), ('revised', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('internationalconference', 1), ('algorithm', 1), ('computational', 1), ('biology', 1), ('alcob', 1), ('held', 1), ('hong', 1), ('kong', 1), ('china', 1), ('june', 1), ('full', 1), ('presented', 1), ('together', 1), ('invited', 1), ('carefully', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('education', 1), ('aied', 1), ('held', 1), ('london', 1), ('uk', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('book', 1), ('together', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('simulation', 1), ('adaptive', 1), ('behavior', 1), ('sab', 1), ('held', 1), ('frankfurt', 1), ('main', 1), ('germany', 1), ('august', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('mexican', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('micai', 1), ('held', 1), ('guadalajara', 1), ('mexico', 1), ('october', 1), ('nbsp', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('paper', 3), ('book', 1), ('contains', 1), ('revised', 1), ('extended', 1), ('version', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('icaart', 1), ('held', 1), ('funchal', 1), ('madeira', 1), ('portugal', 1), ('january', 1), ('full', 1), ('together', 1), ('short', 1), ('poster', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('internationalconference', 1), ('algorithm', 1), ('computational', 1), ('biology', 1), ('alcob', 1), ('held', 1), ('berkeley', 1), ('ca', 1), ('usa', 1), ('full', 1), ('presented', 1), ('together', 1), ('invited', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('concept', 1), ('analysis', 1), ('icfca', 1), ('held', 1), ('frankfurt', 1), ('main', 1), ('germany', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('augmented', 1), ('cognition', 1), ('ac', 1), ('held', 1), ('part', 1), ('st', 1), ('nbsp', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('orlando', 1), ('fl', 1), ('usa', 1), ('july', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('mexican', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('micai', 1), ('held', 1), ('cancún', 1), ('mexico', 1), ('october', 1), ('nbsp', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('current', 2), ('book', 1), ('offer', 1), ('timely', 1), ('snapshot', 1), ('soft', 1), ('computing', 1), ('research', 1), ('solution', 1), ('decision', 1), ('making', 1), ('optimization', 1), ('problem', 1), ('ubiquitous', 1), ('social', 1), ('technological', 1), ('context', 1), ('addressing', 1), ('field', 1), ('including', 1), ('logistics', 1)]
[('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('second', 1), ('interactive', 1), ('collaborative', 1), ('robotics', 1), ('icr', 1), ('held', 1), ('hatfield', 1), ('uk', 1), ('september', 1), ('satellite', 1), ('event', 1), ('th', 1), ('speech', 1)]
[('book', 2), ('algorithm', 2), ('explains', 1), ('state', 1), ('art', 1), ('used', 1), ('simulate', 1), ('biological', 1), ('dynamic', 1), ('technique', 1), ('theoretically', 1), ('introduced', 1), ('applied', 1), ('set', 1), ('modeling', 1), ('case', 1), ('starting', 1), ('basic', 1), ('simulation', 1), ('introduces', 1)]
[('th', 2), ('workshop', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('international', 1), ('multi', 1), ('agent', 1), ('based', 1), ('simulation', 1), ('mabs', 1), ('singapore', 1), ('conjunction', 1)]
[('th', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('china', 1), ('national', 1), ('conference', 1), ('computational', 1), ('linguistics', 1), ('ccl', 1), ('international', 1), ('symposium', 1), ('natural', 1), ('language', 1), ('processing', 1), ('based', 1), ('naturally', 1), ('annotated', 1), ('big', 1), ('data', 1), ('nlp', 1), ('nabd', 1), ('held', 1)]
[('data', 2), ('birs', 1), ('workshop', 1), ('advance', 1), ('interactive', 1), ('knowledge', 1), ('discovery', 1), ('mining', 1), ('complex', 1), ('big', 1), ('set', 1), ('held', 1), ('july', 1), ('banff', 1), ('canada', 1), ('dedicated', 1), ('stimulating', 1), ('cross', 1), ('domain', 1), ('integrative', 1), ('machine', 1), ('learning', 1), ('approach', 1)]
[('fuzzy', 3), ('graph', 2), ('theory', 2), ('book', 1), ('provides', 1), ('timely', 1), ('overview', 1), ('laying', 1), ('foundation', 1), ('future', 1), ('application', 1), ('broad', 1), ('range', 1), ('area', 1), ('introduces', 1), ('reader', 1), ('fundamental', 1), ('craine', 1), ('work', 1), ('interval', 1), ('analog', 1)]
[('canadian', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('planned', 1), ('take', 1), ('place', 1), ('ottawa', 1), ('canada', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('held', 1), ('virtually', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('engineering', 1), ('multi', 1), ('agent', 1), ('system', 1), ('emas', 1), ('held', 1), ('montreal', 1), ('qc', 1), ('canada', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advance', 1), ('brain', 1), ('inspired', 1), ('cognitive', 1), ('system', 1), ('bics', 1), ('held', 1), ('xi', 1), ('china', 1), ('july', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('mining', 1), ('intelligence', 1), ('knowledge', 1), ('exploration', 1), ('mike', 1), ('held', 1), ('cluj', 1), ('napoca', 1), ('romania', 1), ('december', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('workshop', 2), ('th', 2), ('book', 1), ('present', 1), ('selected', 1), ('paper', 1), ('held', 1), ('conjunction', 1), ('international', 1), ('joint', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ijcai', 1), ('macao', 1), ('china', 1), ('august', 1), ('included', 1), ('volume', 1), ('ai', 1), ('km', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('russian', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('rcai', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ccf', 1), ('conference', 1), ('natural', 1), ('language', 1), ('processing', 1), ('chinese', 1), ('computing', 1), ('nlpcc', 1), ('held', 1), ('zhengzhou', 1), ('china', 1), ('october', 1), ('full', 1), ('paper', 1)]
[('knowledge', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('engineering', 1), ('management', 1), ('ekaw', 1), ('held', 1), ('bolzano', 1), ('italy', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('nbsp', 1)]
[('study', 2), ('class', 2), ('book', 1), ('present', 1), ('systematic', 1), ('practice', 1), ('theory', 1), ('query', 1), ('understanding', 1), ('search', 1), ('engine', 1), ('categorized', 1), ('three', 1), ('major', 1), ('first', 1), ('figure', 1), ('searcher', 1), ('want', 1), ('extracting', 1), ('semantic', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('engineering', 1), ('multi', 1), ('agent', 1), ('system', 1), ('emas', 1), ('held', 1), ('auckland', 1), ('new', 1), ('zealand', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('field', 2), ('science', 2), ('book', 1), ('offer', 1), ('self', 1), ('contained', 1), ('guide', 1), ('advanced', 1), ('algorithm', 1), ('application', 1), ('various', 1), ('gathering', 1), ('contribution', 1), ('authoritative', 1), ('researcher', 1), ('mathematics', 1), ('statistic', 1), ('computer', 1), ('aim', 1)]
[('deep', 2), ('neural', 2), ('network', 2), ('research', 1), ('presented', 1), ('book', 1), ('show', 1), ('combining', 1), ('special', 1), ('class', 1), ('fuzzy', 1), ('logical', 1), ('rule', 1), ('multi', 1), ('criterion', 1), ('decision', 1), ('tool', 1), ('make', 1), ('interpretable', 1), ('even', 1), ('many', 1), ('case', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('multi', 1), ('disciplinary', 1), ('trend', 1), ('artificial', 1), ('intelligence', 1), ('miwai', 1), ('held', 1), ('online', 1), ('july', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('hci', 3), ('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('part', 1), ('took', 1), ('place', 1), ('virtually', 1), ('july', 1), ('total', 1)]
[('workshop', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('st', 1), ('chinese', 1), ('lexical', 1), ('semantics', 1), ('clsw', 1), ('hong', 1), ('kong', 1), ('china', 1), ('due', 1), ('covid', 1), ('conference', 1), ('virtually', 1), ('nbsp', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('multi', 1), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('european', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('september', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('symbolic', 1), ('quantitative', 1), ('approach', 1), ('reasoning', 1), ('uncertainty', 1), ('ecsqaru', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('discovery', 1), ('science', 1), ('d', 1), ('took', 1), ('place', 1), ('virtually', 1), ('october', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('logic', 1), ('argumentation', 1), ('clar', 1), ('held', 1), ('hangzhou', 1), ('china', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('nbsp', 1), ('together', 1), ('invited', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('took', 1), ('place', 1), ('yantai', 1), ('china', 1), ('october', 1), ('paper', 1), ('included', 1)]
[('diagram', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('held', 1), ('rome', 1), ('italy', 1), ('september', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('principle', 1), ('practice', 1), ('multi', 1), ('agent', 1), ('system', 1), ('prima', 1), ('held', 1), ('nbsp', 1), ('hybrid', 1), ('mode', 1), ('valencia', 1), ('spain', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('australasian', 1), ('joint', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('took', 1), ('place', 1), ('perth', 1), ('wa', 1), ('australia', 1), ('december', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('included', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('sgai', 1), ('international', 1), ('conference', 1), ('innovative', 1), ('technique', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('cambridge', 1), ('uk', 1), ('december', 1), ('full', 1), ('short', 1)]
[('book', 1), ('survey', 1), ('recent', 1), ('advance', 1), ('conversational', 1), ('information', 1), ('retrieval', 1), ('cir', 1), ('focusing', 1), ('neural', 1), ('approach', 1), ('developed', 1), ('last', 1), ('year', 1), ('progress', 1), ('deep', 1), ('learning', 1), ('brought', 1), ('tremendous', 1), ('improvement', 1), ('natural', 1), ('language', 1)]
[('last', 1), ('decade', 1), ('computational', 1), ('intelligence', 1), ('emerged', 1), ('showed', 1), ('contribution', 1), ('various', 1), ('broad', 1), ('research', 1), ('community', 1), ('computer', 1), ('science', 1), ('engineering', 1), ('finance', 1), ('economic', 1), ('decision', 1), ('making', 1), ('etc', 1), ('done', 1), ('proposing', 1), ('approach', 1)]
[('volume', 1), ('provides', 1), ('audience', 1), ('updated', 1), ('depth', 1), ('highly', 1), ('coherent', 1), ('material', 1), ('conceptually', 1), ('appealing', 1), ('practically', 1), ('sound', 1), ('information', 1), ('technology', 1), ('computational', 1), ('intelligence', 1), ('applied', 1), ('analysis', 1), ('synthesis', 1), ('evaluation', 1)]
[('book', 2), ('challenge', 2), ('data', 2), ('present', 1), ('current', 1), ('progress', 1), ('related', 1), ('big', 1), ('management', 1), ('focusing', 1), ('particular', 1), ('associated', 1), ('context', 1), ('aware', 1), ('intensive', 1), ('application', 1), ('service', 1), ('state', 1), ('art', 1), ('reference', 1), ('discussing', 1)]
[('intelligent', 2), ('book', 1), ('describes', 1), ('recent', 1), ('advance', 1), ('hybrid', 1), ('system', 1), ('using', 1), ('soft', 1), ('computing', 1), ('technique', 1), ('diverse', 1), ('area', 1), ('application', 1), ('control', 1), ('robotics', 1), ('pattern', 1), ('recognition', 1), ('time', 1), ('series', 1), ('prediction', 1), ('optimization', 1), ('complex', 1)]
[('book', 2), ('describes', 1), ('advance', 1), ('application', 1), ('sliding', 1), ('mode', 1), ('control', 1), ('smc', 1), ('widely', 1), ('used', 1), ('powerful', 1), ('method', 1), ('tackle', 1), ('uncertain', 1), ('nonlinear', 1), ('system', 1), ('organized', 1), ('chapter', 1), ('organised', 1), ('editor', 1)]
[('everyday', 1), ('life', 1), ('unthinkable', 1), ('without', 1), ('optimization', 1), ('try', 1), ('minimize', 1), ('effort', 1), ('maximize', 1), ('achieved', 1), ('profit', 1), ('many', 1), ('real', 1), ('world', 1), ('industrial', 1), ('problem', 1), ('arising', 1), ('engineering', 1), ('economics', 1), ('medicine', 1), ('domain', 1), ('formulated', 1)]
[('computational', 2), ('intelligence', 2), ('system', 2), ('development', 1), ('ci', 1), ('inspired', 1), ('observable', 1), ('imitable', 1), ('aspect', 1), ('intelligent', 1), ('activity', 1), ('human', 1), ('nature', 1), ('essence', 1), ('based', 1), ('process', 1)]
[('big', 1), ('data', 1), ('tsunami', 1), ('change', 1), ('perspective', 1), ('industrial', 1), ('academic', 1), ('research', 1), ('address', 1), ('foundational', 1), ('question', 1), ('practical', 1), ('application', 1), ('call', 1), ('paradigm', 1), ('shift', 1), ('algorithm', 1), ('nbsp', 1), ('underlying', 1), ('mathematical', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('product', 1), ('lifecycle', 1), ('management', 1), ('plm', 1), ('held', 1), ('turin', 1), ('spain', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('computer', 1), ('computing', 1), ('technology', 1), ('agriculture', 1), ('ccta', 1), ('held', 1), ('dongying', 1), ('china', 1), ('october', 1), ('nbsp', 1), ('revised', 1), ('paper', 1)]
[('artificial', 2), ('intelligence', 2), ('iot', 2), ('technology', 2), ('book', 1), ('provides', 1), ('insight', 1), ('research', 1), ('field', 1), ('combination', 1), ('internet', 1), ('thing', 1), ('today', 1), ('integration', 1), ('attracting', 1), ('considerable', 1)]
[('open', 2), ('paper', 2), ('access', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('source', 1), ('system', 1), ('os', 1), ('held', 1), ('montreal', 1), ('quebec', 1), ('canada', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('approach', 2), ('book', 1), ('focus', 1), ('mainly', 1), ('logical', 1), ('computational', 1), ('linguistics', 1), ('discus', 1), ('integration', 1), ('presenting', 1), ('classic', 1), ('newly', 1), ('emerging', 1), ('theory', 1), ('application', 1), ('decade', 1), ('research', 1), ('theoretical', 1), ('work', 1)]
[('learning', 2), ('book', 1), ('offer', 1), ('timely', 1), ('reflection', 1), ('remarkable', 1), ('range', 1), ('algorithm', 1), ('application', 1), ('made', 1), ('area', 1), ('deep', 1), ('attractive', 1), ('heavily', 1), ('researched', 1), ('today', 1), ('introducing', 1), ('diversity', 1), ('mechanism', 1), ('environment', 1)]
[('light', 1), ('rapid', 1), ('rise', 1), ('new', 1), ('trend', 1), ('application', 1), ('various', 1), ('natural', 1), ('language', 1), ('processing', 1), ('task', 1), ('book', 1), ('present', 1), ('high', 1), ('quality', 1), ('research', 1), ('field', 1), ('chapter', 1), ('address', 1), ('common', 1), ('challenge', 1), ('theoretical', 1), ('applied', 1), ('aspect', 1)]
[('ai', 2), ('environmental', 2), ('research', 2), ('book', 1), ('date', 1), ('collection', 1), ('related', 1), ('project', 1), ('atlas', 1), ('used', 1), ('gaining', 1), ('understanding', 1), ('complex', 1), ('phenomenon', 1), ('science', 1), ('encompassing', 1), ('heterogeneous', 1), ('noisy', 1)]
[('book', 1), ('provides', 1), ('comprehensive', 1), ('description', 1), ('novel', 1), ('coronavirus', 1), ('infection', 1), ('spread', 1), ('analysis', 1), ('related', 1), ('challenge', 1), ('effective', 1), ('combat', 1), ('treatment', 1), ('detailed', 1), ('discussion', 1), ('nature', 1), ('transmission', 1), ('covid', 1)]
[('ifip', 2), ('five', 1), ('volume', 1), ('set', 1), ('aict', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('wg', 1), ('conference', 1), ('advance', 1), ('production', 1), ('management', 1), ('system', 1), ('apms', 1), ('held', 1), ('nantes', 1), ('france', 1), ('september', 1)]
[('industrial', 2), ('textbook', 1), ('describes', 1), ('hand', 1), ('application', 1), ('data', 1), ('science', 1), ('technique', 1), ('solve', 1), ('problem', 1), ('manufacturing', 1), ('internet', 1), ('thing', 1), ('iiot', 1), ('monitoring', 1), ('managing', 1), ('operational', 1), ('performance', 1), ('crucial', 1), ('activity', 1)]
[('human', 2), ('interaction', 2), ('book', 1), ('discus', 1), ('computer', 1), ('hci', 1), ('multidisciplinary', 1), ('field', 1), ('study', 1), ('aim', 1), ('developing', 1), ('implementing', 1), ('nbsp', 1), ('tool', 1), ('technique', 1), ('attain', 1), ('effective', 1), ('efficient', 1), ('user', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('fourth', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('computational', 1), ('intelligence', 1), ('data', 1), ('science', 1), ('iccids', 1), ('held', 1), ('chennai', 1), ('india', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('lean', 1), ('educator', 1), ('elec', 1), ('hosted', 1), ('trondheim', 1), ('norway', 1), ('october', 1), ('sponsored', 1), ('ifip', 1), ('wg', 1), ('held', 1), ('virtually', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('nbsp', 3), ('science', 2), ('volume', 1), ('offer', 1), ('reader', 1), ('systematic', 1), ('throughout', 1), ('account', 1), ('branch', 1), ('logic', 1), ('instrumental', 1), ('computer', 1), ('data', 1), ('artificial', 1), ('intelligence', 1), ('addressed', 1), ('propositional', 1), ('predicate', 1), ('modal', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('working', 1), ('human', 1), ('work', 1), ('interaction', 1), ('design', 1), ('hwid', 1), ('held', 1), ('beijing', 1), ('china', 1), ('nbsp', 1), ('revised', 1), ('extended', 1), ('full', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('five', 1), ('workshop', 1), ('held', 1), ('parallel', 1), ('event', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('application', 1), ('innovation', 1), ('aiai', 1), ('virtually', 1)]
[('book', 1), ('describes', 1), ('new', 1), ('theory', 1), ('application', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('special', 1), ('focus', 1), ('answering', 1), ('question', 1), ('neuroscience', 1), ('biology', 1), ('biophysics', 1), ('cognitive', 1), ('research', 1), ('cover', 1), ('wide', 1), ('range', 1), ('method', 1), ('technology', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('social', 1), ('implication', 1), ('computer', 1), ('developing', 1), ('country', 1), ('ict', 1), ('supposed', 1), ('salford', 1), ('uk', 1), ('june', 1)]
[('manufacturing', 2), ('model', 2), ('scientific', 1), ('theme', 1), ('book', 1), ('concern', 1), ('service', 1), ('maas', 1), ('developed', 1), ('layered', 1), ('cloud', 1), ('networked', 1), ('perspective', 1), ('shop', 1), ('floor', 1), ('resource', 1), ('sharing', 1), ('virtual', 1), ('enterprise', 1), ('collaborative', 1)]
[('new', 3), ('data', 2), ('kind', 2), ('book', 1), ('present', 1), ('perspective', 1), ('approach', 1), ('wide', 1), ('spectrum', 1), ('situation', 1), ('related', 1), ('analysis', 1), ('actually', 1), ('paradigm', 1), ('namely', 1), ('given', 1), ('set', 1), ('partition', 1), ('whose', 1), ('origin', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('open', 1), ('source', 1), ('system', 1), ('os', 1), ('held', 1), ('virtually', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('service', 2), ('book', 1), ('present', 1), ('different', 1), ('technique', 1), ('methodology', 1), ('used', 1), ('help', 1), ('improve', 1), ('decision', 1), ('making', 1), ('process', 1), ('increase', 1), ('likelihood', 1), ('success', 1), ('sector', 1), ('follows', 1), ('agriculture', 1), ('financial', 1), ('logistics', 1), ('energy', 1), ('health', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('information', 1), ('security', 1), ('privacy', 1), ('protection', 1), ('sec', 1), ('held', 1), ('oslo', 1), ('norway', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('ordering', 2), ('book', 1), ('offer', 1), ('detailed', 1), ('guide', 1), ('temporal', 1), ('exploring', 1), ('open', 1), ('problem', 1), ('field', 1), ('providing', 1), ('solution', 1), ('extensive', 1), ('analysis', 1), ('address', 1), ('challenge', 1), ('automatically', 1), ('event', 1), ('time', 1), ('text', 1), ('aided', 1), ('timeml', 1)]
[('data', 2), ('processing', 2), ('uncertainty', 2), ('book', 1), ('commemorates', 1), ('th', 1), ('birthday', 1), ('dr', 1), ('boris', 1), ('kovalerchuk', 1), ('reflects', 1), ('many', 1), ('research', 1), ('area', 1), ('covered', 1), ('work', 1), ('focus', 1), ('especially', 1), ('fuzzy', 1), ('come', 1)]
[('granular', 3), ('relational', 2), ('data', 2), ('book', 1), ('provides', 1), ('general', 1), ('computing', 1), ('approach', 1), ('mining', 1), ('first', 1), ('us', 1), ('abstract', 1), ('description', 1), ('object', 1), ('build', 1), ('representation', 1), ('second', 1), ('extends', 1), ('existing', 1)]
[('mathematics', 2), ('book', 1), ('present', 1), ('recent', 1), ('research', 1), ('advanced', 1), ('computing', 1), ('industrial', 1), ('nbsp', 1), ('prominent', 1), ('interdisciplinary', 1), ('area', 1), ('combine', 1), ('computer', 1), ('science', 1), ('scientific', 1), ('computation', 1), ('engineering', 1), ('physic', 1)]
[('information', 2), ('motivation', 1), ('edited', 1), ('book', 1), ('generate', 1), ('understanding', 1), ('related', 1), ('concept', 1), ('role', 1), ('play', 1), ('modern', 1), ('technology', 1), ('permeated', 1), ('world', 1), ('order', 1), ('achieve', 1), ('goal', 1), ('observe', 1), ('understood', 1)]
[('digital', 2), ('forensics', 2), ('electronic', 2), ('deal', 1), ('acquisition', 1), ('preservation', 1), ('examination', 1), ('analysis', 1), ('presentation', 1), ('evidence', 1), ('networked', 1), ('computing', 1), ('wireless', 1), ('communication', 1), ('portable', 1), ('device', 1), ('expanded', 1), ('role', 1)]
[('fault', 2), ('detection', 2), ('diagnostics', 2), ('book', 1), ('provides', 1), ('hybrid', 1), ('approach', 1), ('present', 1), ('detailed', 1), ('analysis', 1), ('related', 1), ('practical', 1), ('application', 1), ('framework', 1), ('highlight', 1), ('recent', 1), ('findings', 1), ('power', 1), ('plant', 1), ('nonlinear', 1)]
[('report', 2), ('book', 1), ('offer', 1), ('unique', 1), ('blend', 1), ('theoretical', 1), ('model', 1), ('application', 1), ('area', 1), ('intelligent', 1), ('information', 1), ('database', 1), ('system', 1), ('cover', 1), ('broad', 1), ('range', 1), ('research', 1), ('topic', 1), ('including', 1), ('advanced', 1), ('learning', 1), ('technique', 1)]
[('computational', 2), ('intelligence', 2), ('book', 1), ('present', 1), ('recent', 1), ('research', 1), ('field', 1), ('interaction', 1), ('mathematics', 1), ('ranging', 1), ('theory', 1), ('application', 1), ('soft', 1), ('computing', 1), ('consists', 1), ('various', 1), ('bio', 1), ('inspired', 1), ('method', 1)]
[('model', 3), ('neuron', 2), ('book', 1), ('describes', 1), ('multilayer', 1), ('neural', 1), ('structure', 1), ('particular', 1), ('focus', 1), ('mathematical', 1), ('discus', 1), ('electronic', 1), ('circuit', 1), ('used', 1), ('synapse', 1), ('analysis', 1), ('relation', 1)]
[('book', 2), ('problem', 2), ('process', 2), ('present', 1), ('recent', 1), ('advance', 1), ('computational', 1), ('optimization', 1), ('includes', 1), ('important', 1), ('real', 1), ('modeling', 1), ('physical', 1), ('parameter', 1), ('setting', 1), ('controlling', 1), ('different', 1), ('transportation', 1), ('machine', 1), ('scheduling', 1)]
[('book', 2), ('emphasizes', 1), ('latest', 1), ('development', 1), ('achievement', 1), ('ai', 1), ('related', 1), ('technology', 1), ('special', 1), ('focus', 1), ('food', 1), ('quality', 1), ('describes', 1), ('application', 1), ('conceptualization', 1), ('idea', 1), ('critical', 1), ('survey', 1), ('covering', 1), ('aspect', 1)]
[('point', 2), ('principle', 2), ('textbook', 1), ('aim', 1), ('important', 1), ('data', 1), ('analysis', 1), ('mathematical', 1), ('view', 1), ('specifically', 1), ('selected', 1), ('question', 1), ('exploring', 1), ('nbsp', 1), ('necessary', 1), ('understand', 1), ('implication', 1)]
[('research', 2), ('data', 2), ('volume', 1), ('provides', 1), ('approach', 1), ('solution', 1), ('challenge', 1), ('occurring', 1), ('interface', 1), ('field', 1), ('analysis', 1), ('mining', 1), ('knowledge', 1), ('discovery', 1), ('computer', 1), ('science', 1), ('operation', 1), ('statistic', 1), ('addition', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('information', 1), ('security', 1), ('privacy', 1), ('conference', 1), ('sec', 1), ('held', 1), ('hamburg', 1), ('germany', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 3), ('book', 1), ('contains', 1), ('range', 1), ('keynote', 1), ('submitted', 1), ('presented', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('sig', 1), ('international', 1), ('summer', 1), ('school', 1), ('held', 1), ('patras', 1), ('greece', 1), ('september', 1), ('revised', 1), ('full', 1)]
[('book', 1), ('present', 1), ('various', 1), ('recent', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('information', 1), ('communication', 1), ('technology', 1), ('search', 1), ('optimization', 1), ('method', 1), ('machine', 1), ('learning', 1), ('data', 1), ('representation', 1), ('ontology', 1), ('multi', 1), ('agent', 1), ('system', 1)]
[('volume', 2), ('paper', 2), ('contains', 1), ('nineteen', 1), ('research', 1), ('belonging', 1), ('theareas', 1), ('computational', 1), ('statistic', 1), ('data', 1), ('mining', 1), ('application', 1), ('written', 1), ('specifically', 1), ('author', 1), ('contribution', 1), ('honour', 1), ('celebrate', 1)]
[('paper', 2), ('book', 1), ('contains', 1), ('extended', 1), ('revised', 1), ('version', 1), ('best', 1), ('presented', 1), ('st', 1), ('ifip', 1), ('wg', 1), ('iee', 1), ('international', 1), ('conference', 1), ('large', 1), ('scale', 1), ('integration', 1), ('vlsi', 1), ('soc', 1), ('held', 1), ('istanbul', 1), ('turkey', 1), ('october', 1), ('included', 1)]
[('book', 2), ('nbsp', 1), ('present', 1), ('advanced', 1), ('leading', 1), ('edge', 1), ('technology', 1), ('fourth', 1), ('industrial', 1), ('revolution', 1), ('known', 1), ('industry', 1), ('provides', 1), ('comprehensive', 1), ('understanding', 1), ('interconnection', 1), ('ai', 1), ('iot', 1), ('big', 1), ('data', 1), ('cloud', 1)]
[('method', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('collection', 1), ('approach', 1), ('using', 1), ('formal', 1), ('within', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hci', 1), ('research', 1), ('use', 1), ('prerequisite', 1), ('usability', 1), ('user', 1), ('experience', 1), ('ux', 1), ('engineering', 1)]
[('book', 1), ('present', 1), ('collection', 1), ('paper', 1), ('emphasizing', 1), ('application', 1), ('mathematical', 1), ('model', 1), ('method', 1), ('real', 1), ('world', 1), ('problem', 1), ('relevance', 1), ('industry', 1), ('life', 1), ('science', 1), ('environment', 1), ('finance', 1), ('biannual', 1), ('conference', 1), ('ecmi', 1), ('european', 1)]
[('statistical', 2), ('textbook', 1), ('computational', 1), ('statistic', 1), ('present', 1), ('tool', 1), ('concept', 1), ('univariate', 1), ('multivariate', 1), ('data', 1), ('analysis', 1), ('strong', 1), ('focus', 1), ('application', 1), ('implementation', 1), ('software', 1), ('cover', 1), ('mathematical', 1)]
[('multi', 1), ('disciplinary', 1), ('collection', 1), ('essay', 1), ('capture', 1), ('discussion', 1), ('thinking', 1), ('research', 1), ('surrounding', 1), ('recent', 1), ('surge', 1), ('interest', 1), ('technology', 1), ('help', 1), ('age', 1), ('wide', 1), ('range', 1), ('topic', 1), ('covered', 1), ('investigation', 1), ('use', 1)]
[('video', 2), ('network', 2), ('insightful', 1), ('text', 1), ('present', 1), ('guide', 1), ('distribution', 1), ('vdns', 1), ('providing', 1), ('illuminating', 1), ('perspective', 1), ('reducing', 1), ('power', 1), ('consumption', 1), ('ip', 1), ('based', 1), ('authoritative', 1), ('selection', 1), ('expert', 1), ('field', 1), ('particular', 1), ('focus', 1)]
[('data', 2), ('analytics', 2), ('software', 2), ('order', 1), ('carry', 1), ('need', 1), ('powerful', 1), ('flexible', 1), ('computing', 1), ('available', 1), ('often', 1), ('proprietary', 1), ('expensive', 1), ('book', 1), ('review', 1), ('apache', 1), ('tool', 1), ('open', 1), ('source', 1), ('easy', 1)]
[('fun', 2), ('edition', 2), ('understand', 1), ('design', 1), ('user', 1), ('experience', 1), ('new', 1), ('classic', 1), ('book', 1), ('student', 1), ('designer', 1), ('researcher', 1), ('want', 1), ('deepen', 1), ('understanding', 1), ('context', 1), ('hci', 1), ('first', 1)]
[('grid', 3), ('smart', 2), ('nbsp', 2), ('book', 1), ('centered', 1), ('micro', 1), ('cost', 1), ('effective', 1), ('method', 1), ('ensuring', 1), ('fair', 1), ('equitable', 1), ('access', 1), ('power', 1), ('urban', 1), ('area', 1), ('considers', 1), ('scenario', 1), ('deploying', 1)]
[('unique', 1), ('text', 1), ('reference', 1), ('present', 1), ('detailed', 1), ('review', 1), ('noise', 1), ('removal', 1), ('photograph', 1), ('video', 1), ('international', 1), ('selection', 1), ('expert', 1), ('contributor', 1), ('provide', 1), ('insight', 1), ('fundamental', 1), ('challenge', 1), ('remain', 1), ('field', 1), ('denoising', 1)]
[('haptic', 2), ('technology', 2), ('last', 1), ('decade', 1), ('ultrasound', 1), ('mid', 1), ('air', 1), ('emerged', 1), ('rapidly', 1), ('advanced', 1), ('engage', 1), ('multidisciplinary', 1), ('scientific', 1), ('community', 1), ('within', 1), ('adjacent', 1), ('haptics', 1), ('hci', 1), ('field', 1), ('additionally', 1), ('adopted', 1)]
[('end', 2), ('resilient', 2), ('routing', 2), ('network', 2), ('important', 1), ('text', 1), ('address', 1), ('latest', 1), ('issue', 1), ('communication', 1), ('work', 1), ('highlight', 1), ('main', 1), ('cause', 1), ('failure', 1), ('node', 1), ('link', 1), ('present', 1), ('overview', 1), ('mechanism', 1)]
[('graph', 2), ('first', 1), ('comprehensive', 1), ('introduction', 1), ('theory', 1), ('word', 1), ('representable', 1), ('generalization', 1), ('several', 1), ('classical', 1), ('class', 1), ('new', 1), ('topic', 1), ('discrete', 1), ('mathematics', 1), ('extensive', 1), ('introductory', 1), ('chapter', 1), ('explain', 1)]
[('unique', 1), ('text', 1), ('reference', 1), ('present', 1), ('thorough', 1), ('introduction', 1), ('field', 1), ('structural', 1), ('pattern', 1), ('recognition', 1), ('particular', 1), ('focus', 1), ('graph', 1), ('edit', 1), ('distance', 1), ('ged', 1), ('book', 1), ('provides', 1), ('detailed', 1), ('review', 1), ('diverse', 1), ('selection', 1), ('novel', 1), ('method', 1)]
[('computing', 1), ('device', 1), ('havebecome', 1), ('present', 1), ('everyday', 1), ('environment', 1), ('embedding', 1), ('thesetechnologies', 1), ('routine', 1), ('remained', 1), ('challenge', 1), ('book', 1), ('exploresthe', 1), ('novel', 1), ('theory', 1), ('peripheral', 1), ('interaction', 1), ('rectify', 1)]
[('book', 1), ('present', 1), ('depth', 1), ('review', 1), ('state', 1), ('art', 1), ('cyber', 1), ('physical', 1), ('system', 1), ('cps', 1), ('application', 1), ('relevant', 1), ('case', 1), ('study', 1), ('provided', 1), ('help', 1), ('reader', 1), ('master', 1), ('interdisciplinary', 1), ('material', 1), ('feature', 1), ('includes', 1)]
[('data', 2), ('management', 2), ('book', 1), ('contributes', 1), ('illustrating', 1), ('methodological', 1), ('technological', 1), ('issue', 1), ('pervasive', 1), ('system', 1), ('using', 1), ('databenc', 1), ('project', 1), ('running', 1), ('case', 1), ('study', 1), ('variety', 1), ('research', 1), ('contribution', 1), ('sensor', 1)]
[('secure', 3), ('deletion', 3), ('book', 2), ('solution', 2), ('first', 1), ('develop', 1), ('systematized', 1), ('approach', 1), ('comparison', 1), ('evaluation', 1), ('focus', 1), ('novel', 1), ('targeting', 1), ('specific', 1), ('real', 1), ('world', 1), ('environment', 1)]
[('used', 2), ('new', 1), ('edition', 1), ('book', 1), ('provides', 1), ('easily', 1), ('accessible', 1), ('introduction', 1), ('statistical', 1), ('analysis', 1), ('network', 1), ('data', 1), ('using', 1), ('fully', 1), ('revised', 1), ('stand', 1), ('alone', 1), ('resource', 1), ('multiple', 1), ('package', 1), ('illustrate', 1)]
[('research', 2), ('last', 1), ('decade', 1), ('considerably', 1), ('expanded', 1), ('knowledge', 1), ('internet', 1), ('cryptography', 1), ('revealing', 1), ('important', 1), ('interplay', 1), ('standardization', 1), ('implementation', 1), ('practical', 1), ('textbook', 1), ('guide', 1), ('intended', 1), ('academic', 1), ('course', 1)]
[('icores', 3), ('th', 2), ('book', 1), ('includes', 1), ('extended', 1), ('revised', 1), ('version', 1), ('selected', 1), ('paper', 1), ('edition', 1), ('international', 1), ('conference', 1), ('operation', 1), ('research', 1), ('enterprise', 1), ('system', 1), ('held', 1), ('valletta', 1), ('malta', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('software', 1), ('technology', 1), ('icist', 1), ('held', 1), ('kaunas', 1), ('lithuania', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('time', 2), ('book', 1), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('business', 1), ('icsob', 1), ('held', 1), ('paphos', 1), ('cyprus', 1), ('june', 1), ('theme', 1), ('event', 1), ('shortening', 1), ('market', 1), ('short', 1), ('cycle', 1), ('continuous', 1)]
[('ten', 2), ('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('held', 1), ('eindhoven', 1), ('netherlands', 1), ('conjunction', 1), ('th', 1), ('conference', 1), ('business', 1), ('process', 1), ('management', 1), ('bpm', 1), ('september', 1)]
[('oriented', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('subject', 1), ('business', 1), ('process', 1), ('management', 1), ('bpm', 1), ('held', 1), ('eichstätt', 1), ('germany', 1), ('april', 1), ('application', 1), ('paper', 1), ('selected', 1)]
[('ccis', 2), ('first', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('extended', 1), ('abstract', 1), ('poster', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1)]
[('three', 1), ('volume', 1), ('ccis', 1), ('constitute', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('processing', 1), ('management', 1), ('uncertainty', 1), ('knowledge', 1), ('based', 1), ('system', 1), ('ipmu', 1), ('held', 1), ('montpellier', 1), ('france', 1), ('july', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('russian', 1), ('supercomputing', 1), ('day', 1), ('ruscdays', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('mexico', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('latin', 1), ('american', 1), ('conference', 1), ('high', 1), ('performance', 1), ('computing', 1), ('carla', 1), ('held', 1), ('city', 1), ('august', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('technology', 1), ('mcetech', 1), ('held', 1), ('ottawa', 1), ('canada', 1), ('year', 1), ('drew', 1), ('special', 1), ('attention', 1), ('increasing', 1), ('role', 1), ('internet', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('future', 1), ('network', 1), ('system', 1), ('security', 1), ('fnss', 1), ('held', 1), ('gainesville', 1), ('fl', 1), ('usa', 1), ('august', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('process', 1), ('improvement', 1), ('capability', 1), ('determination', 1), ('spice', 1), ('held', 1), ('palma', 1), ('de', 1), ('mallorca', 1), ('spain', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('research', 2), ('erp', 2), ('future', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('peer', 1), ('reviewed', 1), ('contribution', 1), ('part', 1), ('held', 1), ('hagenberg', 1), ('austria', 1), ('november', 1), ('set', 1), ('platform', 1), ('scientific', 1)]
[('eomas', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('enterprise', 1), ('organizational', 1), ('modeling', 1), ('simulation', 1), ('held', 1), ('essen', 1), ('germany', 1), ('june', 1), ('main', 1), ('focus', 1), ('role', 1), ('importance', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('technology', 1), ('innovation', 1), ('citi', 1), ('held', 1), ('guayaquil', 1), ('ecuador', 1), ('october', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('thoroughly', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('computational', 1), ('neuroscience', 1), ('held', 1), ('porto', 1), ('allegre', 1), ('brazil', 1), ('november', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 2), ('selected', 2), ('constitutes', 1), ('revised', 1), ('paper', 1), ('th', 1), ('international', 1), ('global', 1), ('sourcing', 1), ('workshop', 1), ('held', 1), ('la', 1), ('thuile', 1), ('italy', 1), ('february', 1), ('contribution', 1), ('included', 1), ('carefully', 1), ('reviewed', 1), ('submission', 1)]
[('workshop', 2), ('volume', 1), ('contains', 1), ('technical', 1), ('paper', 1), ('presented', 1), ('took', 1), ('place', 1), ('th', 1), ('european', 1), ('conference', 1), ('service', 1), ('oriented', 1), ('cloud', 1), ('computing', 1), ('esocc', 1), ('held', 1), ('oslo', 1), ('norway', 1), ('september', 1), ('first', 1), ('international', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('symposium', 1), ('artificial', 1), ('life', 1), ('intelligent', 1), ('agent', 1), ('alia', 1), ('held', 1), ('birmingham', 1), ('uk', 1), ('june', 1), ('nbsp', 1), ('full', 1), ('three', 1), ('short', 1)]
[('caise', 3), ('forum', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('held', 1), ('tallinn', 1), ('estonia', 1), ('part', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('information', 1), ('system', 1), ('engineering', 1), ('june', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('biomedical', 1), ('engineering', 1), ('system', 1), ('technology', 1), ('biostec', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('february', 1), ('revised', 1), ('full', 1)]
[('forum', 3), ('book', 1), ('constitutes', 1), ('contribution', 1), ('presented', 1), ('blockchain', 1), ('central', 1), ('eastern', 1), ('europe', 1), ('cee', 1), ('held', 1), ('th', 1), ('international', 1), ('conference', 1), ('business', 1), ('process', 1), ('management', 1), ('bpm', 1), ('took', 1), ('place', 1), ('vienna', 1), ('austria', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('quality', 1), ('information', 1), ('communication', 1), ('technology', 1), ('quatic', 1), ('held', 1), ('ciudad', 1), ('real', 1), ('spain', 1), ('september', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('paper', 3), ('nbsp', 3), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('second', 1), ('international', 1), ('congress', 1), ('high', 1), ('performance', 1), ('computing', 1), ('big', 1), ('data', 1), ('analysis', 1), ('tophpc', 1), ('held', 1), ('tehran', 1), ('iran', 1), ('april', 1), ('full', 1), ('short', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('technology', 1), ('mathematical', 1), ('modelling', 1), ('itmm', 1), ('named', 1), ('terpugov', 1), ('held', 1), ('saratov', 1), ('russia', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('congress', 1), ('telematics', 1), ('computing', 1), ('witcom', 1), ('held', 1), ('merida', 1), ('mexico', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('second', 1), ('international', 1), ('conference', 1), ('applied', 1), ('informatics', 1), ('icai', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('nbsp', 1), ('november', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nbsp', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('natural', 1), ('language', 1), ('ainl', 1), ('held', 1), ('tartu', 1), ('estonia', 1), ('november', 1), ('revised', 1), ('full', 1), ('short', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('symposium', 1), ('norwegian', 1), ('ai', 1), ('society', 1), ('nais', 1), ('held', 1), ('trondheim', 1), ('norway', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('computational', 1), ('neuroscience', 1), ('held', 1), ('são', 1), ('joão', 1), ('del', 1), ('rei', 1), ('brazil', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('iconip', 2), ('volume', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('contribution', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('held', 1), ('sydney', 1), ('australia', 1), ('december', 1), ('total', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('operation', 1), ('research', 1), ('enterprise', 1), ('system', 1), ('icores', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('february', 1), ('extended', 1), ('presented', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('cloud', 1), ('computing', 1), ('icc', 1), ('held', 1), ('riyadh', 1), ('saudi', 1), ('arabia', 1), ('december', 1), ('volume', 1), ('set', 1), ('present', 1), ('full', 1), ('paper', 1)]
[('thoroughly', 2), ('revised', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('model', 1), ('driven', 1), ('engineering', 1), ('software', 1), ('development', 1), ('modelsward', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('february', 1)]
[('paper', 2), ('book', 1), ('contains', 1), ('extended', 1), ('version', 1), ('best', 1), ('presented', 1), ('first', 1), ('international', 1), ('workshop', 1), ('distributed', 1), ('computing', 1), ('emerging', 1), ('smart', 1), ('network', 1), ('dice', 1), ('held', 1), ('hammamet', 1), ('tunisia', 1), ('october', 1), ('revised', 1), ('full', 1), ('included', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('latin', 1), ('american', 1), ('high', 1), ('performance', 1), ('computing', 1), ('conference', 1), ('carla', 1), ('held', 1), ('turrialba', 1), ('costa', 1), ('rica', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('computer', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('vision', 1), ('imaging', 1), ('graphic', 1), ('theory', 1), ('application', 1), ('visigrapp', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('february', 1)]
[('nbsp', 4), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('simulation', 1), ('science', 1), ('held', 1), ('clausthal', 1), ('zellerfeld', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('conference', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nbsp', 1), ('third', 1), ('international', 1), ('smart', 1), ('application', 1), ('data', 1), ('analysis', 1), ('sadasc', 1), ('held', 1), ('marrakesh', 1), ('morocco', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('postponed', 1), ('june', 1)]
[('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('processing', 1), ('management', 1), ('uncertainty', 1), ('knowledge', 1), ('based', 1), ('system', 1), ('ipmu', 1), ('june', 1), ('nbsp', 1), ('scheduled', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('extended', 1), ('th', 1), ('international', 1), ('conference', 1), ('communication', 1), ('technology', 1), ('ageing', 1), ('health', 1), ('ict', 1), ('awe', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1), ('full', 1), ('presented', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('lean', 1), ('agile', 1), ('software', 1), ('development', 1), ('lasd', 1), ('held', 1), ('online', 1), ('january', 1), ('nbsp', 1), ('received', 1), ('total', 1), ('submission', 1), ('full', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('selected', 1), ('revised', 1), ('extended', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('high', 1), ('performance', 1), ('computing', 1), ('system', 1), ('technology', 1), ('scientific', 1), ('research', 1), ('automation', 1), ('control', 1), ('production', 1), ('hpcst', 1)]
[('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('paper', 1), ('workshop', 1), ('held', 1), ('th', 1), ('business', 1), ('process', 1), ('management', 1), ('bpm', 1), ('september', 1), ('planned', 1), ('take', 1), ('place', 1), ('seville', 1), ('spain', 1)]
[('international', 2), ('conference', 2), ('computer', 2), ('human', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('paper', 1), ('second', 1), ('interaction', 1), ('research', 1), ('application', 1), ('chira', 1), ('held', 1), ('seville', 1), ('spain', 1), ('september', 1), ('third', 1)]
[('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('extended', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('communication', 1), ('technology', 1), ('ageing', 1), ('health', 1), ('ict', 1), ('awe', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('extended', 1), ('th', 1), ('international', 1), ('conference', 1), ('evaluation', 1), ('novel', 1), ('approach', 1), ('software', 1), ('engineering', 1), ('enase', 1), ('held', 1), ('virtual', 1), ('format', 1), ('full', 1), ('presented', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('mediterranean', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('artificial', 1), ('intelligence', 1), ('medprai', 1), ('held', 1), ('hammamet', 1), ('tunisia', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('revised', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('mathematical', 1), ('modeling', 1), ('supercomputer', 1), ('technology', 1), ('mmst', 1), ('held', 1), ('nizhny', 1), ('novgorod', 1), ('russia', 1), ('november', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('parallel', 1), ('computational', 1), ('technology', 1), ('pct', 1), ('march', 1), ('april', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('online', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('nbsp', 2), ('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('applied', 1), ('intelligence', 1), ('informatics', 1), ('aii', 1), ('nottingham', 1), ('uk', 1), ('july', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('fully', 1)]
[('bias', 3), ('nbsp', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('algorithmic', 1), ('search', 1), ('recommendation', 1), ('april', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('baltic', 1), ('conference', 1), ('database', 1), ('information', 1), ('system', 1), ('db', 1), ('held', 1), ('tallinn', 1), ('estonia', 1), ('june', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('th', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('reviewed', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('workshop', 1), ('doctoral', 1), ('consortium', 1), ('east', 1), ('european', 1), ('advance', 1), ('database', 1), ('information', 1), ('system', 1), ('adbis', 1), ('international', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('technology', 1), ('innovation', 1), ('citi', 1), ('held', 1), ('guayaquil', 1), ('ecuador', 1), ('november', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('nbsp', 4), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('third', 1), ('international', 1), ('workshop', 1), ('engineering', 1), ('dependable', 1), ('secure', 1), ('machine', 1), ('learning', 1), ('system', 1), ('edsmls', 1), ('held', 1), ('new', 1), ('york', 1), ('city', 1), ('ny', 1), ('usa', 1), ('february', 1), ('full', 1)]
[('nbsp', 2), ('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('information', 1), ('communication', 1), ('technology', 1), ('ecuador', 1), ('ticec', 1), ('november', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('online', 1), ('full', 1)]
[('iconip', 2), ('volume', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('contribution', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('held', 1), ('bangkok', 1), ('thailand', 1), ('november', 1), ('total', 1)]
[('nbsp', 3), ('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('computational', 1), ('collective', 1), ('intelligence', 1), ('icci', 1), ('held', 1), ('da', 1), ('nang', 1), ('vietnam', 1), ('november', 1), ('december', 1), ('due', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('rd', 1), ('international', 1), ('conference', 1), ('computer', 1), ('animation', 1), ('social', 1), ('agent', 1), ('casa', 1), ('held', 1), ('bournemouth', 1), ('uk', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('security', 1), ('issa', 1), ('supposed', 1), ('pretoria', 1), ('south', 1), ('africa', 1), ('august', 1), ('virtually', 1), ('due', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('cloud', 1), ('computing', 1), ('big', 1), ('data', 1), ('emerging', 1), ('topic', 1), ('jcc', 1), ('bd', 1), ('et', 1), ('held', 1), ('la', 1), ('plata', 1), ('argentina', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('quality', 1), ('information', 1), ('communication', 1), ('technology', 1), ('quatic', 1), ('held', 1), ('algarve', 1), ('portugal', 1), ('september', 1), ('full', 1), ('short', 1)]
[('nbsp', 3), ('held', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('workshop', 1), ('engineering', 1), ('application', 1), ('wea', 1), ('medellín', 1), ('colombia', 1), ('october', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('conference', 1), ('hybrid', 1), ('mode', 1)]
[('workload', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('human', 1), ('mental', 1), ('model', 1), ('application', 1), ('held', 1), ('virtually', 1), ('november', 1), ('volume', 1), ('present', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1)]
[('contains', 2), ('book', 1), ('contribution', 1), ('presented', 1), ('ninth', 1), ('international', 1), ('kes', 1), ('conference', 1), ('intelligent', 1), ('interactive', 1), ('multimedia', 1), ('system', 1), ('service', 1), ('took', 1), ('place', 1), ('puerto', 1), ('de', 1), ('la', 1), ('cruz', 1), ('tenerife', 1), ('spain', 1), ('june', 1)]
[('development', 2), ('dynamic', 2), ('springerbrief', 1), ('introduces', 1), ('practical', 1), ('application', 1), ('module', 1), ('oriented', 1), ('framework', 1), ('domain', 1), ('specific', 1), ('system', 1), ('library', 1), ('sdl', 1), ('approach', 1), ('used', 1), ('simulation', 1), ('multi', 1), ('causal', 1)]
[('inthis', 1), ('book', 1), ('leading', 1), ('ceo', 1), ('cio', 1), ('expert', 1), ('international', 1), ('corporationsexplore', 1), ('role', 1), ('digitalization', 1), ('cloud', 1), ('based', 1), ('process', 1), ('mainbusiness', 1), ('driver', 1), ('st', 1), ('nbsp', 1), ('century', 1), ('focusing', 1), ('started', 1), ('withdigitalization', 1)]
[('environmental', 2), ('book', 1), ('offer', 1), ('comprehensive', 1), ('reference', 1), ('guide', 1), ('intelligence', 1), ('system', 1), ('management', 1), ('provides', 1), ('reader', 1), ('necessary', 1), ('tool', 1), ('solving', 1), ('complex', 1), ('problem', 1), ('classical', 1), ('technique', 1), ('applied', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('collaborative', 1), ('computing', 1), ('networking', 1), ('application', 1), ('worksharing', 1), ('collaboratecom', 1), ('held', 1), ('beijing', 1), ('china', 1), ('november', 1), ('paper', 1)]
[('conference', 2), ('th', 2), ('volume', 1), ('includes', 1), ('paper', 1), ('presented', 1), ('ictis', 1), ('second', 1), ('international', 1), ('information', 1), ('communication', 1), ('technology', 1), ('intelligent', 1), ('system', 1), ('held', 1), ('march', 1), ('ahmedabad', 1), ('india', 1), ('organized', 1)]
[('explores', 2), ('community', 2), ('book', 1), ('dynamic', 1), ('within', 1), ('social', 1), ('medium', 1), ('using', 1), ('wikipedia', 1), ('example', 1), ('volume', 1), ('rely', 1), ('upon', 1), ('common', 1), ('based', 1), ('peer', 1), ('production', 1), ('fundamental', 1), ('theoretical', 1), ('principle', 1), ('spanning', 1), ('domain', 1), ('organizational', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('eai', 1), ('conference', 1), ('emerging', 1), ('technology', 1), ('developing', 1), ('country', 1), ('africatek', 1), ('held', 1), ('marrakech', 1), ('morocco', 1), ('march', 1), ('full', 1), ('short', 1), ('invited', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('ubiquitous', 1), ('communication', 1), ('network', 1), ('computing', 1), ('ubicnet', 1), ('held', 1), ('bangalore', 1), ('india', 1), ('august', 1), ('full', 1), ('paper', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('technology', 1), ('interactive', 1), ('entertainment', 1), ('intetain', 1), ('held', 1), ('funchal', 1), ('portugal', 1), ('june', 1), ('full', 1), ('paper', 1), ('selected', 1)]
[('performance', 2), ('springerbrief', 1), ('present', 1), ('research', 1), ('application', 1), ('stochastic', 1), ('petri', 1), ('net', 1), ('spn', 1), ('evaluation', 1), ('wireless', 1), ('network', 1), ('bursty', 1), ('traffic', 1), ('cover', 1), ('typical', 1), ('quality', 1), ('service', 1), ('metric', 1), ('mean', 1), ('throughput', 1)]
[('agent', 2), ('system', 2), ('multi', 1), ('related', 1), ('modern', 1), ('software', 1), ('paradigm', 1), ('long', 1), ('recognized', 1), ('promising', 1), ('technology', 1), ('constructing', 1), ('autonomous', 1), ('complex', 1), ('intelligent', 1), ('topic', 1), ('covered', 1), ('volume', 1), ('include', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('icst', 1), ('personal', 1), ('satellite', 1), ('service', 1), ('psats', 1), ('held', 1), ('toulouse', 1), ('france', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('conference', 3), ('satellite', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('thinternational', 1), ('wireless', 1), ('service', 1), ('wisats', 1), ('heldin', 1), ('bradford', 1), ('uk', 1), ('july', 1), ('formerly', 1), ('known', 1), ('theinternational', 1), ('personal', 1)]
[('system', 3), ('control', 2), ('knowledge', 2), ('based', 2), ('book', 1), ('demonstrates', 1), ('apply', 1), ('modern', 1), ('approach', 1), ('complex', 1), ('practical', 1), ('application', 1), ('involving', 1), ('dimension', 1), ('extended', 1), ('incorporating', 1), ('new', 1), ('perspective', 1)]
[('book', 1), ('present', 1), ('use', 1), ('efficientevolutionary', 1), ('computation', 1), ('ec', 1), ('algorithm', 1), ('solving', 1), ('diverse', 1), ('real', 1), ('world', 1), ('imageprocessing', 1), ('pattern', 1), ('recognition', 1), ('problem', 1), ('provides', 1), ('overview', 1), ('thedifferent', 1), ('aspect', 1), ('evolutionary', 1), ('method', 1), ('order', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('thinternational', 1), ('conference', 1), ('mobile', 1), ('computing', 1), ('application', 1), ('service', 1), ('mobicase', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('november', 1), ('full', 1), ('poster', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('thisvolume', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('security', 1), ('privacy', 1), ('communicationnetworks', 1), ('securecomm', 1), ('held', 1), ('dallas', 1), ('tx', 1), ('usa', 1), ('october', 1), ('regular', 1)]
[('optimization', 2), ('method', 2), ('paradigm', 2), ('book', 1), ('novel', 1), ('inspired', 1), ('nature', 1), ('introduced', 1), ('chemical', 1), ('reaction', 1), ('used', 1), ('propose', 1), ('simulates', 1), ('natural', 1), ('process', 1), ('proposed', 1), ('algorithm', 1), ('described', 1)]
[('music', 2), ('first', 1), ('monograph', 1), ('dedicated', 1), ('interdisciplinary', 1), ('research', 1), ('area', 1), ('combining', 1), ('view', 1), ('computer', 1), ('science', 1), ('education', 1), ('creativity', 1), ('study', 1), ('psychology', 1), ('engineering', 1), ('contribution', 1), ('include', 1), ('introduction', 1), ('ubiquitous', 1)]
[('based', 2), ('student', 2), ('modeling', 2), ('book', 1), ('aim', 1), ('provide', 1), ('important', 1), ('information', 1), ('adaptivity', 1), ('computer', 1), ('web', 1), ('educational', 1), ('system', 1), ('order', 1), ('make', 1), ('process', 1), ('clear', 1), ('literature', 1), ('review', 1), ('concerning', 1), ('technique', 1), ('approach', 1)]
[('smart', 3), ('monograph', 1), ('book', 1), ('focused', 1), ('recent', 1), ('advance', 1), ('multimedia', 1), ('computer', 1), ('gaming', 1), ('technology', 1), ('contribution', 1), ('include', 1), ('gamification', 1), ('serious', 1), ('game', 1), ('fusion', 1), ('secure', 1), ('ipsec', 1), ('based', 1), ('virtual', 1), ('private', 1), ('network', 1), ('mobile', 1)]
[('stochastic', 2), ('model', 2), ('brief', 1), ('present', 1), ('microscopic', 1), ('mobility', 1), ('describes', 1), ('temporal', 1), ('change', 1), ('intervehicle', 1), ('distance', 1), ('consistent', 1), ('simulated', 1), ('empirical', 1), ('vehicle', 1), ('traffic', 1), ('pattern', 1), ('using', 1), ('lumpability', 1), ('method', 1)]
[('book', 1), ('look', 1), ('common', 1), ('problem', 1), ('human', 1), ('robotic', 1), ('hand', 1), ('encounter', 1), ('controlling', 1), ('large', 1), ('number', 1), ('joint', 1), ('actuator', 1), ('sensor', 1), ('required', 1), ('efficiently', 1), ('perform', 1), ('motor', 1), ('task', 1), ('object', 1), ('exploration', 1), ('manipulation', 1), ('grasping', 1)]
[('nbsp', 4), ('book', 2), ('computational', 2), ('proximity', 2), ('introduces', 1), ('cp', 1), ('algorithmic', 1), ('approach', 1), ('finding', 1), ('nonempty', 1), ('set', 1), ('point', 1), ('either', 1), ('close', 1), ('far', 1), ('apart', 1), ('typically', 1), ('start', 1)]
[('device', 2), ('nbsp', 2), ('communication', 2), ('springerbrief', 1), ('focus', 1), ('crucial', 1), ('issue', 1), ('within', 1), ('rapidly', 1), ('expanding', 1), ('lte', 1), ('toward', 1), ('system', 1), ('several', 1), ('critical', 1), ('technical', 1), ('challenge', 1), ('discussed', 1)]
[('game', 2), ('book', 1), ('present', 1), ('comprehensive', 1), ('new', 1), ('multi', 1), ('objective', 1), ('integrative', 1), ('view', 1), ('traditional', 1), ('control', 1), ('theory', 1), ('consisting', 1), ('chapter', 1), ('divided', 1), ('three', 1), ('part', 1), ('covering', 1), ('noncooperative', 1), ('mixture', 1), ('simultaneous', 1), ('sequential', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('intelligent', 1), ('transport', 1), ('system', 1), ('intsys', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('globalization', 1), ('trade', 1)]
[('conference', 3), ('th', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('big', 1), ('data', 1), ('technology', 1), ('application', 1), ('bdta', 1), ('wireless', 1), ('internet', 1), ('wicon', 1), ('held', 1), ('december', 1)]
[('mathematisation', 2), ('automating', 1), ('linguistics', 1), ('nbsp', 1), ('offer', 1), ('depth', 1), ('study', 1), ('history', 1), ('automation', 1), ('science', 1), ('language', 1), ('wake', 1), ('first', 1), ('wave', 1), ('followed', 1), ('machine', 1), ('translation', 1)]
[('smart', 3), ('blockchain', 2), ('book', 1), ('discus', 1), ('various', 1), ('open', 1), ('issue', 1), ('technology', 1), ('efficiency', 1), ('different', 1), ('domain', 1), ('digital', 1), ('cryptocurrency', 1), ('contract', 1), ('education', 1), ('system', 1), ('city', 1), ('cloud', 1), ('identity', 1), ('access', 1), ('safeguard', 1)]
[('surveillance', 3), ('based', 2), ('application', 2), ('book', 1), ('examines', 1), ('modern', 1), ('paradigm', 1), ('disease', 1), ('control', 1), ('nbsp', 1), ('social', 1), ('network', 1), ('including', 1), ('electronic', 1), ('sentinel', 1), ('wireless', 1), ('science', 1), ('highlight', 1), ('topic', 1)]
[('book', 1), ('result', 1), ('four', 1), ('year', 1), ('work', 1), ('framework', 1), ('ibero', 1), ('american', 1), ('research', 1), ('network', 1), ('tic', 1), ('ci', 1), ('funded', 1), ('cyted', 1), ('program', 1), ('following', 1), ('decade', 1), ('world', 1), ('population', 1), ('expected', 1), ('live', 1), ('city', 1), ('urban', 1), ('center', 1)]
[('solved', 2), ('method', 2), ('technique', 2), ('complex', 1), ('problem', 1), ('usually', 1), ('individual', 1), ('require', 1), ('synergism', 1), ('book', 1), ('present', 1), ('number', 1), ('current', 1), ('effort', 1), ('use', 1), ('combination', 1), ('solve', 1)]
[('book', 1), ('describes', 1), ('new', 1), ('pattern', 1), ('discovery', 1), ('approach', 1), ('based', 1), ('combination', 1), ('among', 1), ('rule', 1), ('perceptually', 1), ('important', 1), ('point', 1), ('pip', 1), ('symbolic', 1), ('aggregate', 1), ('approximation', 1), ('sax', 1), ('representation', 1), ('optimized', 1), ('genetic', 1), ('algorithm', 1), ('ga', 1), ('proposed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('information', 1), ('communication', 1), ('technology', 1), ('development', 1), ('africa', 1), ('ict', 1), ('da', 1), ('held', 1), ('bahir', 1), ('dar', 1), ('ethiopia', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('iih', 2), ('msp', 2), ('information', 2), ('hiding', 2), ('multimedia', 2), ('signal', 2), ('processing', 2), ('book', 1), ('feature', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('scope', 1), ('included', 1), ('security', 1)]
[('conference', 2), ('sustainable', 2), ('book', 1), ('gather', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('design', 1), ('manufacturing', 1), ('sdm', 1), ('held', 1), ('gold', 1), ('coast', 1), ('australia', 1), ('june', 1), ('covered', 1), ('wide', 1), ('range', 1), ('topic', 1), ('including', 1), ('product', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('testbeds', 1), ('research', 1), ('infrastructure', 1), ('development', 1), ('network', 1), ('communication', 1), ('tridentcom', 1), ('held', 1), ('november', 1)]
[('conference', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('international', 1), ('science', 1), ('technology', 1), ('fareastcon', 1), ('took', 1), ('place', 1), ('october', 1), ('vladivostok', 1), ('russian', 1), ('federation', 1), ('provided', 1), ('platform', 1), ('accumulating', 1), ('expert', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('eai', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('hybrid', 1), ('information', 1), ('processing', 1), ('adhip', 1), ('held', 1), ('yiyang', 1), ('china', 1), ('october', 1), ('paper', 1), ('presented', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('ubiquitous', 1), ('communication', 1), ('network', 1), ('computing', 1), ('ubicnet', 1), ('held', 1), ('bangalore', 1), ('india', 1), ('february', 1), ('full', 1), ('paper', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('collaborative', 1), ('computing', 1), ('networking', 1), ('application', 1), ('worksharing', 1), ('collaboratecom', 1), ('held', 1), ('london', 1), ('uk', 1), ('august', 1), ('nbsp', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('security', 1), ('privacy', 1), ('communication', 1), ('network', 1), ('securecomm', 1), ('held', 1), ('washington', 1), ('dc', 1), ('usa', 1), ('october', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('international', 1), ('iccasa', 1), ('ictcc', 1), ('held', 1), ('november', 1), ('thai', 1), ('nguyen', 1), ('vietnam', 1), ('nbsp', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('book', 1), ('aim', 1), ('offering', 1), ('unique', 1), ('collection', 1), ('idea', 1), ('experience', 1), ('mainly', 1), ('focusing', 1), ('main', 1), ('stream', 1), ('merger', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('wide', 1), ('slice', 1), ('communication', 1), ('networking', 1), ('community', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('eai', 1), ('international', 1), ('artificial', 1), ('intelligence', 1), ('communication', 1), ('network', 1), ('aicon', 1), ('held', 1), ('september', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('conference', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('emerging', 1), ('technology', 1), ('computing', 1), ('icetic', 1), ('held', 1), ('august', 1), ('due', 1), ('vovid', 1), ('pandemic', 1), ('helt', 1), ('virtually', 1), ('revised', 1), ('full', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('collaborative', 1), ('computing', 1), ('networking', 1), ('application', 1), ('worksharing', 1), ('collaboratecom', 1), ('held', 1), ('october', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('conference', 3), ('held', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('advanced', 1), ('hybrid', 1), ('information', 1), ('processing', 1), ('adhip', 1), ('october', 1), ('due', 1), ('covid', 1), ('virtually', 1), ('paper', 1)]
[('bci', 2), ('research', 2), ('book', 1), ('present', 1), ('compact', 1), ('informative', 1), ('description', 1), ('promising', 1), ('new', 1), ('project', 1), ('brain', 1), ('computer', 1), ('interface', 1), ('earlier', 1), ('volume', 1), ('series', 1), ('contribution', 1), ('come', 1), ('many', 1), ('best', 1), ('known', 1), ('group', 1)]
[('design', 3), ('nbsp', 2), ('urban', 2), ('planning', 2), ('data', 2), ('book', 1), ('offer', 1), ('essential', 1), ('introduction', 1), ('new', 1), ('methodology', 1), ('called', 1), ('augmented', 1), ('dad', 1), ('evolution', 1), ('progress', 1), ('highlighting', 1), ('driven', 1), ('method', 1), ('application', 1)]
[('development', 3), ('software', 3), ('agile', 2), ('book', 1), ('explores', 1), ('practice', 1), ('particular', 1), ('pair', 1), ('programming', 1), ('code', 1), ('review', 1), ('automated', 1), ('testing', 1), ('help', 1), ('team', 1), ('perform', 1), ('better', 1), ('engineering', 1), ('become', 1), ('standard', 1)]
[('focus', 2), ('method', 2), ('book', 1), ('present', 1), ('discus', 1), ('state', 1), ('art', 1), ('future', 1), ('trend', 1), ('software', 1), ('engineering', 1), ('education', 1), ('agile', 1), ('budgetary', 1), ('implication', 1), ('introduces', 1), ('new', 1), ('innovative', 1), ('model', 1), ('framework', 1)]
[('ito', 3), ('perspective', 2), ('book', 1), ('address', 1), ('buying', 1), ('organization', 1), ('risk', 1), ('relationship', 1), ('success', 1), ('factor', 1), ('accomplishing', 1), ('successful', 1), ('outsourcing', 1), ('today', 1), ('landscape', 1), ('complex', 1), ('important', 1)]
[('book', 2), ('examines', 1), ('food', 1), ('united', 1), ('state', 1), ('age', 1), ('internet', 1), ('major', 1), ('theme', 1), ('running', 1), ('business', 1), ('opportunity', 1), ('failure', 1), ('harm', 1), ('consumer', 1), ('traditional', 1), ('brick', 1), ('mortar', 1), ('company', 1), ('occurred', 1)]
[('maritime', 2), ('informatics', 2), ('industry', 2), ('technology', 2), ('first', 1), ('book', 1), ('describes', 1), ('potential', 1), ('enhance', 1), ('shipping', 1), ('examines', 1), ('decision', 1), ('making', 1), ('improved', 1), ('digital', 1), ('introduces', 1)]
[('digital', 2), ('service', 2), ('book', 1), ('explores', 1), ('novel', 1), ('including', 1), ('platform', 1), ('mobile', 1), ('apps', 1), ('increasingly', 1), ('innovated', 1), ('open', 1), ('process', 1), ('investigates', 1), ('organization', 1), ('invite', 1), ('external', 1), ('developer', 1), ('participate', 1)]
[('disruption', 2), ('book', 1), ('focus', 1), ('systematic', 1), ('modeling', 1), ('complex', 1), ('situation', 1), ('characterized', 1), ('escalating', 1), ('cycle', 1), ('dynamic', 1), ('collaboration', 1), ('best', 1), ('handling', 1), ('disruptive', 1), ('event', 1), ('cascading', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('ad', 1), ('hoc', 1), ('network', 1), ('adhocnets', 1), ('held', 1), ('queenstown', 1), ('new', 1), ('zealand', 1), ('november', 1), ('full', 1), ('paper', 1), ('selected', 1), ('submission', 1), ('nbsp', 1), ('cover', 1)]
[('healthcare', 2), ('book', 1), ('address', 1), ('various', 1), ('aspect', 1), ('smart', 1), ('used', 1), ('detect', 1), ('analyze', 1), ('disease', 1), ('underlying', 1), ('methodology', 1), ('related', 1), ('security', 1), ('concern', 1), ('multidisciplinary', 1), ('field', 1), ('involves', 1), ('range', 1), ('factor', 1)]
[('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('conference', 1), ('communication', 1), ('networking', 1), ('chinacom', 1), ('held', 1), ('november', 1), ('december', 1), ('shanghai', 1), ('china', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('fifth', 1), ('international', 1), ('iot', 1), ('service', 1), ('iotaas', 1), ('took', 1), ('place', 1), ('xi', 1), ('china', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('wireless', 1), ('internet', 1), ('wicon', 1), ('held', 1), ('taichung', 1), ('taiwan', 1), ('november', 1), ('full', 1), ('paper', 1), ('selected', 1), ('submission', 1), ('grouped', 1)]
[('conference', 3), ('held', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('advanced', 1), ('hybrid', 1), ('information', 1), ('processing', 1), ('adhip', 1), ('binzhou', 1), ('china', 1), ('september', 1), ('due', 1), ('covid', 1)]
[('book', 1), ('provides', 1), ('coherent', 1), ('overview', 1), ('important', 1), ('modelling', 1), ('related', 1), ('security', 1), ('technique', 1), ('available', 1), ('today', 1), ('demonstrates', 1), ('combine', 1), ('describes', 1), ('integrated', 1), ('set', 1), ('systematic', 1), ('practice', 1), ('used', 1), ('achieve', 1)]
[('book', 1), ('take', 1), ('formal', 1), ('approach', 1), ('teaching', 1), ('software', 1), ('engineering', 1), ('using', 1), ('uml', 1), ('object', 1), ('constraint', 1), ('language', 1), ('ocl', 1), ('specification', 1), ('analysis', 1), ('designed', 1), ('model', 1), ('employing', 1), ('technical', 1), ('detail', 1), ('typically', 1), ('missing', 1), ('existing', 1)]
[('engineering', 3), ('book', 1), ('present', 1), ('selected', 1), ('paper', 1), ('world', 1), ('education', 1), ('forum', 1), ('global', 1), ('dean', 1), ('council', 1), ('held', 1), ('november', 1), ('seoul', 1), ('korea', 1), ('massive', 1), ('change', 1), ('currently', 1), ('underway', 1), ('area', 1), ('society', 1), ('especially', 1)]
[('volume', 1), ('present', 1), ('collection', 1), ('peer', 1), ('reviewed', 1), ('scientific', 1), ('article', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('technology', 1), ('new', 1), ('generation', 1), ('held', 1), ('university', 1), ('nevada', 1), ('la', 1), ('vega', 1), ('april', 1), ('tuscany', 1), ('suite', 1), ('hotel', 1)]
[('system', 2), ('book', 1), ('report', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('innovative', 1), ('interface', 1), ('emphasizing', 1), ('lifecycle', 1), ('development', 1), ('human', 1), ('technology', 1), ('interaction', 1), ('especially', 1), ('virtual', 1), ('augmented', 1), ('mixed', 1), ('reality', 1), ('describes', 1), ('advanced', 1), ('methodology', 1)]
[('naming', 3), ('game', 3), ('agent', 2), ('book', 1), ('provides', 1), ('gradual', 1), ('introduction', 1), ('starting', 1), ('minimal', 1), ('infinite', 1), ('memory', 1), ('chapter', 1), ('moving', 1), ('various', 1), ('new', 1), ('advanced', 1), ('setting', 1), ('possessing', 1)]
[('fuzzy', 3), ('mathematics', 2), ('research', 2), ('book', 1), ('introduces', 1), ('application', 1), ('decision', 1), ('science', 1), ('geometric', 1), ('programming', 1), ('optimization', 1), ('operation', 1), ('management', 1), ('based', 1), ('paper', 1), ('presented', 1), ('three', 1), ('successful', 1)]
[('volume', 1), ('advance', 1), ('intelligent', 1), ('system', 1), ('computing', 1), ('highlight', 1), ('key', 1), ('scientific', 1), ('achievement', 1), ('innovation', 1), ('area', 1), ('automation', 1), ('informatization', 1), ('computer', 1), ('science', 1), ('artificial', 1), ('intelligence', 1), ('gather', 1), ('paper', 1), ('presented', 1), ('iiti', 1)]
[('book', 1), ('includes', 1), ('selection', 1), ('best', 1), ('research', 1), ('paper', 1), ('presented', 1), ('annual', 1), ('conference', 1), ('italian', 1), ('chapter', 1), ('association', 1), ('information', 1), ('system', 1), ('ai', 1), ('took', 1), ('place', 1), ('verona', 1), ('italy', 1), ('october', 1), ('tracing', 1), ('various', 1), ('aspect', 1)]
[('environment', 2), ('book', 1), ('offer', 1), ('remarkable', 1), ('collection', 1), ('chapter', 1), ('covering', 1), ('wide', 1), ('range', 1), ('topic', 1), ('related', 1), ('ict', 1), ('application', 1), ('agriculture', 1), ('gather', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('icts', 1), ('agronomy', 1)]
[('soft', 2), ('computing', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('application', 1), ('fuzzy', 1), ('system', 1), ('icafs', 1), ('held', 1), ('warsaw', 1), ('poland', 1), ('august', 1), ('includes', 1), ('contribution', 1), ('diverse', 1), ('area', 1)]
[('book', 1), ('offer', 1), ('latest', 1), ('research', 1), ('new', 1), ('perspective', 1), ('interactive', 1), ('collaborative', 1), ('learning', 1), ('engineering', 1), ('pedagogy', 1), ('currently', 1), ('witnessing', 1), ('significant', 1), ('transformation', 1), ('education', 1), ('order', 1), ('face', 1), ('today', 1), ('real', 1), ('world', 1), ('challenge', 1)]
[('robot', 2), ('th', 2), ('book', 1), ('contains', 1), ('selection', 1), ('papersaccepted', 1), ('presentation', 1), ('discussion', 1), ('second', 1), ('iberian', 1), ('roboticsconference', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('november', 1), ('ispart', 1), ('series', 1), ('conference', 1), ('joint', 1)]
[('conference', 2), ('volumecontains', 1), ('paper', 1), ('presented', 1), ('nd', 1), ('international', 1), ('afro', 1), ('european', 1), ('forindustrial', 1), ('advancement', 1), ('aecium', 1), ('aimed', 1), ('bringing', 1), ('togetherthe', 1), ('foremost', 1), ('expert', 1), ('excellent', 1), ('young', 1), ('researcher', 1), ('africa', 1), ('europe', 1)]
[('international', 2), ('conference', 2), ('book', 1), ('gather', 1), ('proceeding', 1), ('nd', 1), ('advanced', 1), ('intelligent', 1), ('system', 1), ('informatics', 1), ('aisi', 1), ('took', 1), ('place', 1), ('cairo', 1), ('egypt', 1), ('october', 1), ('interdisciplinary', 1)]
[('book', 1), ('gather', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('computer', 1), ('system', 1), ('held', 1), ('międzyzdroje', 1), ('poland', 1), ('october', 1), ('addressing', 1), ('topic', 1), ('include', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('software', 1), ('technology', 1)]
[('medium', 1), ('metamedia', 1), ('management', 1), ('contribution', 1), ('seven', 1), ('prestigious', 1), ('expert', 1), ('offer', 1), ('expertise', 1), ('view', 1), ('vantage', 1), ('point', 1), ('communication', 1), ('journalism', 1), ('advertising', 1), ('audiovisual', 1), ('corporate', 1), ('political', 1), ('digital', 1)]
[('book', 1), ('highlight', 1), ('latest', 1), ('advance', 1), ('engineering', 1), ('mathematics', 1), ('main', 1), ('focus', 1), ('mathematical', 1), ('model', 1), ('structure', 1), ('concept', 1), ('problem', 1), ('computational', 1), ('method', 1), ('algorithm', 1), ('relevant', 1), ('application', 1), ('modern', 1), ('technology', 1)]
[('information', 2), ('technology', 2), ('volume', 1), ('present', 1), ('th', 1), ('international', 1), ('conference', 1), ('new', 1), ('generation', 1), ('itng', 1), ('chronicle', 1), ('annual', 1), ('event', 1), ('state', 1), ('art', 1), ('digital', 1), ('communication', 1), ('application', 1), ('advanced', 1)]
[('book', 1), ('present', 1), ('selected', 1), ('paper', 1), ('fifteenth', 1), ('international', 1), ('conference', 1), ('dependability', 1), ('computer', 1), ('system', 1), ('depcos', 1), ('relcomex', 1), ('illustrate', 1), ('diversity', 1), ('theoretical', 1), ('problem', 1), ('analysis', 1), ('performability', 1), ('reliability', 1), ('security', 1)]
[('data', 3), ('reader', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('practical', 1), ('look', 1), ('concept', 1), ('technique', 1), ('need', 1), ('real', 1), ('world', 1), ('large', 1), ('scale', 1), ('mining', 1), ('project', 1), ('guide', 1), ('analytic', 1)]
[('customer', 3), ('book', 1), ('present', 1), ('recommender', 1), ('system', 1), ('improving', 1), ('loyalty', 1), ('new', 1), ('innovative', 1), ('product', 1), ('begun', 1), ('appearing', 1), ('wide', 1), ('variety', 1), ('country', 1), ('increased', 1), ('need', 1), ('improve', 1), ('experience', 1), ('spends', 1)]
[('soft', 2), ('computing', 2), ('pattern', 2), ('recognition', 2), ('book', 1), ('highlight', 1), ('recent', 1), ('research', 1), ('information', 1), ('assurance', 1), ('security', 1), ('present', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('socpar', 1)]
[('protocol', 3), ('sip', 2), ('internet', 1), ('ip', 1), ('telephony', 1), ('alternative', 1), ('traditional', 1), ('public', 1), ('switched', 1), ('telephone', 1), ('network', 1), ('pstn', 1), ('session', 1), ('initiation', 1), ('quickly', 1), ('becoming', 1), ('popular', 1), ('signaling', 1), ('voip', 1), ('based', 1), ('application', 1)]
[('th', 3), ('book', 1), ('gather', 1), ('paper', 1), ('presented', 1), ('international', 1), ('workshop', 1), ('self', 1), ('organizing', 1), ('map', 1), ('learning', 1), ('vector', 1), ('quantization', 1), ('clustering', 1), ('data', 1), ('visualization', 1), ('wsom', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('june', 1)]
[('book', 1), ('highlight', 1), ('recent', 1), ('research', 1), ('bio', 1), ('inspired', 1), ('computing', 1), ('various', 1), ('innovative', 1), ('application', 1), ('information', 1), ('communication', 1), ('technology', 1), ('present', 1), ('high', 1), ('quality', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('innovation', 1)]
[('shenzhen', 2), ('volume', 1), ('present', 1), ('proceeding', 1), ('first', 1), ('euro', 1), ('china', 1), ('conference', 1), ('intelligent', 1), ('data', 1), ('analysis', 1), ('application', 1), ('ecc', 1), ('hosted', 1), ('graduate', 1), ('school', 1), ('harbin', 1), ('institute', 1), ('technology', 1), ('held', 1), ('city', 1), ('june', 1)]
[('book', 1), ('describes', 1), ('latest', 1), ('finding', 1), ('related', 1), ('fuzzy', 1), ('technique', 1), ('discussing', 1), ('application', 1), ('control', 1), ('economics', 1), ('education', 1), ('humor', 1), ('study', 1), ('industrial', 1), ('engineering', 1), ('linguistics', 1), ('management', 1), ('marketing', 1), ('medicine', 1), ('public', 1), ('health', 1), ('military', 1)]
[('data', 2), ('new', 2), ('common', 1), ('ground', 1), ('starting', 1), ('point', 1), ('ict', 1), ('system', 1), ('need', 1), ('processing', 1), ('use', 1), ('different', 1), ('technology', 1), ('state', 1), ('art', 1), ('method', 1), ('order', 1), ('obtain', 1), ('knowledge', 1), ('develop', 1), ('useful', 1), ('application', 1), ('ease', 1)]
[('volume', 2), ('conference', 2), ('contains', 1), ('paper', 1), ('presented', 1), ('ficta', 1), ('third', 1), ('international', 1), ('frontier', 1), ('intelligent', 1), ('computing', 1), ('theory', 1), ('application', 1), ('held', 1), ('november', 1), ('bhubaneswar', 1), ('odisha', 1), ('india', 1)]
[('collective', 2), ('term', 2), ('book', 1), ('focus', 1), ('social', 1), ('intelligence', 1), ('used', 1), ('denote', 1), ('class', 1), ('socio', 1), ('technical', 1), ('system', 1), ('combine', 1), ('coordinated', 1), ('way', 1), ('strength', 1), ('human', 1), ('machine', 1), ('competence', 1), ('knowledge', 1), ('problem', 1)]
[('socioinformatics', 1), ('new', 1), ('scientific', 1), ('approach', 1), ('study', 1), ('interaction', 1), ('human', 1), ('proceeding', 1), ('collection', 1), ('contribution', 1), ('workshop', 1), ('gesellschaft', 1), ('für', 1), ('informatik', 1), ('gi', 1), ('researcher', 1), ('emerging', 1), ('field', 1)]
[('book', 1), ('highlight', 1), ('latest', 1), ('research', 1), ('finding', 1), ('method', 1), ('technique', 1), ('challenge', 1), ('solution', 1), ('related', 1), ('ubiquitous', 1), ('pervasive', 1), ('computing', 1), ('upc', 1), ('regard', 1), ('employ', 1), ('theoretical', 1), ('practical', 1), ('perspective', 1), ('place', 1)]
[('distributed', 2), ('computing', 2), ('book', 1), ('present', 1), ('outcome', 1), ('special', 1), ('session', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('forum', 1), ('brought', 1), ('together', 1), ('idea', 1), ('project', 1), ('lesson', 1), ('associated', 1)]
[('computing', 2), ('conference', 2), ('volume', 1), ('advance', 1), ('intelligent', 1), ('system', 1), ('contains', 1), ('accepted', 1), ('paper', 1), ('presented', 1), ('icgec', 1), ('th', 1), ('international', 1), ('genetic', 1), ('evolutionary', 1), ('year', 1), ('technically', 1), ('co', 1), ('sponsored', 1)]
[('volume', 1), ('constitute', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('soft', 1), ('computing', 1), ('application', 1), ('sofa', 1), ('held', 1), ('july', 1), ('timisoara', 1), ('romania', 1), ('edition', 1), ('organized', 1), ('university', 1), ('belgrade', 1), ('serbia', 1), ('conjunction', 1)]
[('recent', 1), ('surge', 1), ('interest', 1), ('digital', 1), ('ecosystem', 1), ('transforming', 1), ('business', 1), ('landscape', 1), ('pose', 1), ('several', 1), ('human', 1), ('organizational', 1), ('challenge', 1), ('due', 1), ('pervasive', 1), ('effect', 1), ('transformation', 1), ('firm', 1), ('society', 1), ('alike', 1)]
[('cisis', 2), ('book', 1), ('contains', 1), ('accepted', 1), ('paper', 1), ('presented', 1), ('held', 1), ('beautiful', 1), ('historic', 1), ('city', 1), ('burgos', 1), ('spain', 1), ('september', 1), ('aim', 1), ('conference', 1), ('offer', 1), ('meeting', 1), ('opportunity', 1), ('academic', 1), ('industry', 1), ('related', 1)]
[('fuzzy', 3), ('use', 2), ('technique', 2), ('book', 1), ('describes', 1), ('expert', 1), ('knowledge', 1), ('often', 1), ('formulated', 1), ('using', 1), ('imprecise', 1), ('word', 1), ('natural', 1), ('language', 1), ('zadeh', 1), ('designed', 1), ('special', 1), ('started', 1)]
[('cimps', 2), ('book', 1), ('contains', 1), ('selection', 1), ('paper', 1), ('international', 1), ('conference', 1), ('software', 1), ('process', 1), ('improvement', 1), ('held', 1), ('st', 1), ('rd', 1), ('october', 1), ('mazatlán', 1), ('sinaloa', 1), ('méxico', 1), ('global', 1), ('forum', 1), ('researcher', 1)]
[('universidad', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('advance', 1), ('emerging', 1), ('trend', 1), ('technology', 1), ('icaett', 1), ('held', 1), ('quito', 1), ('ecuador', 1), ('jointly', 1), ('organized', 1), ('tecnológica', 1), ('israel', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('advance', 1), ('emerging', 1), ('trend', 1), ('technology', 1), ('icaett', 1), ('held', 1), ('riobamba', 1), ('ecuador', 1), ('october', 1), ('proudly', 1), ('organized', 1), ('facultad', 1), ('de', 1), ('informática', 1), ('electrónica', 1)]
[('nbsp', 2), ('ico', 2), ('book', 1), ('present', 1), ('outcome', 1), ('second', 1), ('edition', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('optimization', 1), ('took', 1), ('place', 1), ('october', 1), ('koh', 1), ('samui', 1), ('thailand', 1), ('bringing', 1), ('together', 1), ('research', 1)]
[('human', 2), ('book', 1), ('present', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('innovative', 1), ('system', 1), ('integration', 1), ('machine', 1), ('interaction', 1), ('emphasis', 1), ('artificial', 1), ('intelligence', 1), ('automation', 1), ('computational', 1), ('modeling', 1), ('simulation', 1), ('cover', 1), ('wide', 1), ('range', 1)]
[('book', 1), ('highlight', 1), ('recent', 1), ('research', 1), ('bio', 1), ('inspired', 1), ('computing', 1), ('various', 1), ('innovative', 1), ('application', 1), ('information', 1), ('communication', 1), ('technology', 1), ('present', 1), ('high', 1), ('quality', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('innovation', 1)]
[('book', 2), ('nbsp', 2), ('artificial', 2), ('intelligence', 2), ('blockchain', 2), ('present', 1), ('state', 1), ('art', 1), ('research', 1), ('future', 1), ('cybersecurity', 1), ('application', 1), ('accepted', 1), ('chapter', 1), ('covered', 1), ('many', 1), ('theme', 1), ('including', 1), ('challenge', 1)]
[('proceeding', 1), ('volume', 1), ('present', 1), ('selected', 1), ('paper', 1), ('international', 1), ('conference', 1), ('sustainability', 1), ('software', 1), ('engineering', 1), ('business', 1), ('information', 1), ('management', 1), ('innovation', 1), ('application', 1), ('ssebim', 1), ('held', 1), ('olten', 1), ('switzerland', 1), ('nbsp', 1), ('september', 1)]
[('aicv', 2), ('book', 1), ('present', 1), ('nd', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('computer', 1), ('vision', 1), ('proceeding', 1), ('took', 1), ('place', 1), ('settat', 1), ('morocco', 1), ('june', 1), ('organized', 1), ('scientific', 1), ('research', 1), ('group', 1)]
[('book', 1), ('discus', 1), ('latest', 1), ('advance', 1), ('development', 1), ('artificial', 1), ('intelligence', 1), ('system', 1), ('application', 1), ('various', 1), ('field', 1), ('medicine', 1), ('technology', 1), ('education', 1), ('comprises', 1), ('paper', 1), ('presented', 1), ('third', 1), ('international', 1), ('conference', 1)]
[('technology', 2), ('book', 1), ('discus', 1), ('impact', 1), ('information', 1), ('communication', 1), ('icts', 1), ('organization', 1), ('society', 1), ('whole', 1), ('specifically', 1), ('examines', 1), ('improve', 1), ('life', 1), ('work', 1), ('making', 1), ('inclusive', 1), ('smart', 1)]
[('decision', 2), ('economics', 2), ('book', 1), ('based', 1), ('international', 1), ('conference', 1), ('decon', 1), ('highlighting', 1), ('fact', 1), ('important', 1), ('making', 1), ('take', 1), ('place', 1), ('range', 1), ('critical', 1), ('subject', 1), ('area', 1), ('research', 1), ('field', 1), ('including', 1), ('finance', 1)]
[('learning', 2), ('book', 1), ('gather', 1), ('paper', 1), ('presented', 1), ('nd', 1), ('international', 1), ('conference', 1), ('interactive', 1), ('collaborative', 1), ('icl', 1), ('held', 1), ('bangkok', 1), ('thailand', 1), ('september', 1), ('covering', 1), ('various', 1), ('field', 1), ('distance', 1)]
[('learning', 5), ('deep', 4), ('book', 2), ('nbsp', 1), ('comprises', 1), ('theoretical', 1), ('foundation', 1), ('machine', 1), ('computing', 1), ('system', 1), ('algorithm', 1), ('various', 1), ('application', 1), ('discus', 1), ('significant', 1), ('issue', 1), ('relating', 1), ('data', 1)]
[('cisis', 2), ('book', 1), ('advance', 1), ('intelligent', 1), ('soft', 1), ('computing', 1), ('contains', 1), ('accepted', 1), ('paper', 1), ('presented', 1), ('iceute', 1), ('conference', 1), ('held', 1), ('beautiful', 1), ('historic', 1), ('city', 1), ('bilbao', 1), ('spain', 1), ('september', 1), ('aim', 1), ('th', 1)]
[('modeling', 2), ('simulation', 2), ('book', 1), ('present', 1), ('latest', 1), ('advance', 1), ('human', 1), ('factor', 1), ('research', 1), ('report', 1), ('cutting', 1), ('edge', 1), ('simulator', 1), ('virtual', 1), ('augmented', 1), ('reality', 1), ('multisensory', 1), ('environment', 1), ('method', 1), ('used', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('system', 1), ('application', 1), ('multi', 1), ('modal', 1), ('information', 1), ('analytics', 1), ('held', 1), ('changzhou', 1), ('china', 1), ('june', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('latest', 1)]
[('book', 1), ('describes', 1), ('science', 1), ('gateway', 1), ('building', 1), ('technology', 1), ('developed', 1), ('sci', 1), ('bus', 1), ('european', 1), ('project', 1), ('adoption', 1), ('customization', 1), ('method', 1), ('user', 1), ('community', 1), ('biologist', 1), ('chemist', 1), ('astrophysicist', 1), ('build', 1), ('customized', 1)]
[('design', 3), ('book', 1), ('discus', 1), ('latest', 1), ('advance', 1), ('affective', 1), ('pleasurable', 1), ('report', 1), ('important', 1), ('theoretical', 1), ('practical', 1), ('issue', 1), ('covering', 1), ('wealth', 1), ('topic', 1), ('including', 1), ('aesthetic', 1), ('product', 1), ('system', 1), ('driven', 1), ('innovation', 1)]
[('decision', 2), ('special', 1), ('session', 1), ('economics', 1), ('decon', 1), ('scientific', 1), ('forum', 1), ('held', 1), ('annually', 1), ('intended', 1), ('share', 1), ('idea', 1), ('project', 1), ('research', 1), ('result', 1), ('model', 1), ('experience', 1), ('associated', 1), ('complexity', 1), ('behavioural', 1), ('process', 1)]
[('isqr', 2), ('book', 1), ('includes', 1), ('selection', 1), ('article', 1), ('accepted', 1), ('presentation', 1), ('discussion', 1), ('second', 1), ('international', 1), ('symposium', 1), ('qualitative', 1), ('research', 1), ('held', 1), ('salamanca', 1), ('spain', 1), ('july', 1), ('part', 1), ('iberian', 1), ('american', 1)]
[('book', 1), ('focus', 1), ('importance', 1), ('human', 1), ('factor', 1), ('optimizing', 1), ('learning', 1), ('training', 1), ('process', 1), ('report', 1), ('latest', 1), ('research', 1), ('best', 1), ('practice', 1), ('discus', 1), ('key', 1), ('principle', 1), ('behavioral', 1), ('cognitive', 1), ('science', 1), ('extremely', 1)]
[('international', 2), ('proceeding', 1), ('consist', 1), ('paper', 1), ('peer', 1), ('reviewed', 1), ('program', 1), ('committee', 1), ('selected', 1), ('th', 1), ('conference', 1), ('computer', 1), ('science', 1), ('applied', 1), ('mathematics', 1), ('application', 1), ('nbsp', 1), ('iccsama', 1)]
[('book', 1), ('authoritative', 1), ('handbook', 1), ('current', 1), ('topic', 1), ('technology', 1), ('methodological', 1), ('approach', 1), ('used', 1), ('study', 1), ('scholarly', 1), ('impact', 1), ('included', 1), ('method', 1), ('cover', 1), ('range', 1), ('field', 1), ('statistical', 1), ('science', 1), ('scientific', 1)]
[('computer', 2), ('book', 1), ('present', 1), ('collection', 1), ('research', 1), ('finding', 1), ('proposal', 1), ('science', 1), ('engineering', 1), ('introducing', 1), ('reader', 1), ('essential', 1), ('concept', 1), ('theory', 1), ('application', 1), ('share', 1), ('perspective', 1), ('cutting', 1), ('edge', 1), ('established', 1)]
[('book', 1), ('focus', 1), ('computational', 1), ('modeling', 1), ('simulation', 1), ('research', 1), ('advance', 1), ('current', 1), ('state', 1), ('art', 1), ('regarding', 1), ('human', 1), ('factor', 1), ('area', 1), ('report', 1), ('cutting', 1), ('edge', 1), ('simulator', 1), ('virtual', 1), ('augmented', 1), ('reality', 1), ('multisensory', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('th', 1), ('congress', 1), ('international', 1), ('ergonomics', 1), ('association', 1), ('iea', 1), ('held', 1), ('august', 1), ('florence', 1), ('italy', 1), ('highlighting', 1), ('latest', 1), ('theory', 1), ('model', 1), ('cutting', 1), ('edge', 1), ('technology', 1)]
[('book', 2), ('first', 2), ('length', 1), ('study', 1), ('devoted', 1), ('advance', 1), ('technological', 1), ('development', 1), ('system', 1), ('research', 1), ('cooperative', 1), ('economics', 1), ('chapter', 1), ('provide', 1), ('coherent', 1), ('framework', 1), ('understanding', 1), ('applying', 1), ('concept', 1)]
[('technology', 2), ('model', 2), ('book', 1), ('tackle', 1), ('latest', 1), ('research', 1), ('trend', 1), ('acceptance', 1), ('theory', 1), ('present', 1), ('high', 1), ('quality', 1), ('empirical', 1), ('review', 1), ('study', 1), ('focusing', 1), ('main', 1), ('theoretical', 1), ('application', 1), ('across', 1), ('various', 1)]
[('book', 3), ('chapter', 2), ('structured', 1), ('consists', 1), ('full', 1), ('deal', 1), ('recent', 1), ('research', 1), ('problem', 1), ('area', 1), ('modeling', 1), ('control', 1), ('drug', 1), ('development', 1), ('present', 1), ('various', 1), ('technique', 1), ('covid', 1), ('outbreak', 1)]
[('example', 2), ('focusing', 1), ('computer', 1), ('graphic', 1), ('required', 1), ('create', 1), ('digital', 1), ('medium', 1), ('book', 1), ('discus', 1), ('concept', 1), ('provides', 1), ('hundred', 1), ('solved', 1), ('unsolved', 1), ('problem', 1), ('practice', 1), ('pseudo', 1), ('code', 1), ('included', 1), ('appropriate', 1), ('coding', 1)]
[('business', 2), ('process', 2), ('optimize', 1), ('differentiating', 1), ('exploit', 1), ('full', 1), ('potential', 1), ('volker', 1), ('stiehl', 1), ('provides', 1), ('answer', 1), ('utilizing', 1), ('various', 1), ('option', 1), ('bpmn', 1), ('model', 1), ('notation', 1), ('standard', 1), ('offer', 1), ('planning', 1)]
[('data', 2), ('everyone', 2), ('information', 1), ('visualization', 1), ('act', 1), ('gaining', 1), ('insight', 1), ('carried', 1), ('virtually', 1), ('usually', 1), ('facilitated', 1), ('turning', 1), ('often', 1), ('collection', 1), ('number', 1), ('image', 1), ('allow', 1), ('easier', 1), ('comprehension', 1)]
[('technique', 2), ('problem', 2), ('presenting', 1), ('case', 1), ('study', 1), ('methodology', 1), ('combine', 1), ('use', 1), ('simulation', 1), ('approach', 1), ('optimization', 1), ('facing', 1), ('manufacturing', 1), ('logistics', 1), ('aeronautical', 1), ('book', 1), ('provides', 1), ('solution', 1), ('common', 1)]
[('intelligent', 2), ('transport', 2), ('book', 1), ('present', 1), ('discussion', 1), ('problem', 1), ('encountered', 1), ('deployment', 1), ('system', 1), ('put', 1), ('emphasis', 1), ('early', 1), ('task', 1), ('designing', 1), ('proofing', 1), ('concept', 1), ('integration', 1), ('technology', 1)]
[('optimization', 2), ('nioas', 2), ('introduction', 1), ('nature', 1), ('inspired', 1), ('algorithm', 1), ('past', 1), ('three', 1), ('decade', 1), ('helped', 1), ('solve', 1), ('nonlinear', 1), ('high', 1), ('dimensional', 1), ('complex', 1), ('computational', 1), ('problem', 1), ('originally', 1), ('developed', 1), ('overcome', 1)]
[('theory', 3), ('information', 2), ('book', 1), ('discus', 1), ('development', 1), ('info', 1), ('static', 1), ('sub', 1), ('general', 1), ('describes', 1), ('factor', 1), ('required', 1), ('establish', 1), ('definition', 1), ('concept', 1), ('fix', 1), ('applicable', 1), ('boundary', 1)]
[('research', 2), ('june', 2), ('book', 1), ('comprises', 1), ('selected', 1), ('paper', 1), ('edition', 1), ('evolve', 1), ('conference', 1), ('held', 1), ('iași', 1), ('romania', 1), ('present', 1), ('latest', 1), ('probability', 1), ('set', 1), ('oriented', 1), ('numerics', 1), ('evolutionary', 1)]
[('data', 2), ('book', 1), ('offer', 1), ('systematic', 1), ('overview', 1), ('concept', 1), ('practical', 1), ('technique', 1), ('reader', 1), ('need', 1), ('large', 1), ('scale', 1), ('mining', 1), ('project', 1), ('research', 1), ('study', 1), ('guide', 1), ('analytical', 1), ('thinking', 1), ('essential', 1)]
[('traffic', 2), ('book', 1), ('present', 1), ('high', 1), ('quality', 1), ('original', 1), ('contribution', 1), ('development', 1), ('automatic', 1), ('analysis', 1), ('system', 1), ('able', 1), ('anticipate', 1), ('scenario', 1), ('understand', 1), ('behavior', 1), ('road', 1), ('user', 1), ('vehicle', 1), ('bike', 1), ('truck', 1), ('etc', 1)]
[('change', 2), ('book', 1), ('explains', 1), ('logic', 1), ('theory', 1), ('employ', 1), ('formal', 1), ('model', 1), ('investigation', 1), ('belief', 1), ('state', 1), ('database', 1), ('topic', 1), ('covered', 1), ('include', 1), ('equivalent', 1), ('characterization', 1), ('agm', 1), ('operation', 1), ('extended', 1), ('representation', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('th', 1), ('congress', 1), ('international', 1), ('ergonomics', 1), ('association', 1), ('iea', 1), ('held', 1), ('august', 1), ('florence', 1), ('italy', 1), ('highlighting', 1), ('latest', 1), ('theory', 1), ('model', 1), ('cutting', 1), ('edge', 1), ('technology', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('th', 1), ('congress', 1), ('international', 1), ('ergonomics', 1), ('association', 1), ('iea', 1), ('held', 1), ('august', 1), ('florence', 1), ('italy', 1), ('highlighting', 1), ('latest', 1), ('theory', 1), ('model', 1), ('cutting', 1), ('edge', 1), ('technology', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('th', 1), ('congress', 1), ('international', 1), ('ergonomics', 1), ('association', 1), ('iea', 1), ('held', 1), ('august', 1), ('florence', 1), ('italy', 1), ('highlighting', 1), ('latest', 1), ('theory', 1), ('model', 1), ('cutting', 1), ('edge', 1), ('technology', 1)]
[('book', 2), ('cognitive', 2), ('city', 2), ('part', 2), ('illustrates', 1), ('various', 1), ('aspect', 1), ('dimension', 1), ('following', 1), ('comprehensive', 1), ('introduction', 1), ('first', 1), ('explores', 1), ('conceptual', 1), ('consideration', 1), ('design', 1), ('second', 1), ('focus', 1)]
[('modelling', 2), ('simulation', 2), ('th', 2), ('volume', 1), ('contains', 1), ('peer', 1), ('reviewed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('m', 1), ('held', 1), ('kolkata', 1), ('india', 1), ('november', 1), ('organized', 1), ('association', 1), ('advancement', 1)]
[('edition', 2), ('data', 2), ('response', 1), ('feedback', 1), ('course', 1), ('delegate', 1), ('third', 1), ('revised', 1), ('throughout', 1), ('expands', 1), ('second', 1), ('new', 1), ('updated', 1), ('example', 1), ('chapter', 1), ('arithmetic', 1), ('character', 1), ('module', 1), ('structuring', 1), ('generic', 1)]
[('area', 2), ('application', 2), ('haptic', 2), ('book', 1), ('first', 1), ('resource', 1), ('provide', 1), ('depth', 1), ('coverage', 1), ('topical', 1), ('assistive', 1), ('rehabilitative', 1), ('health', 1), ('related', 1), ('touch', 1), ('based', 1), ('technology', 1), ('topic', 1), ('grouped', 1), ('thematic', 1), ('spanning', 1)]
[('linguistic', 2), ('linked', 2), ('data', 2), ('first', 1), ('monograph', 1), ('emerging', 1), ('area', 1), ('presenting', 1), ('combination', 1), ('background', 1), ('information', 1), ('concrete', 1), ('implementation', 1), ('advice', 1), ('introduces', 1), ('discus', 1), ('main', 1), ('benefit', 1), ('applying', 1)]
[('software', 3), ('modern', 2), ('car', 2), ('lt', 1), ('div', 1), ('gt', 1), ('book', 1), ('introduces', 1), ('concept', 1), ('architecture', 1), ('cornerstone', 1), ('following', 1), ('historical', 1), ('overview', 1), ('evolution', 1), ('discussion', 1), ('main', 1), ('challenge', 1), ('driving', 1)]
[('book', 1), ('present', 1), ('scientific', 1), ('outcome', 1), ('conference', 1), ('th', 1), ('day', 1), ('bosnian', 1), ('herzegovinian', 1), ('american', 1), ('academy', 1), ('art', 1), ('science', 1), ('held', 1), ('sarajevo', 1), ('bosnia', 1), ('herzegovina', 1), ('june', 1), ('including', 1), ('innovative', 1), ('application', 1), ('advanced', 1)]
[('machine', 2), ('possible', 1), ('design', 1), ('robot', 1), ('reproduce', 1), ('evolve', 1), ('implication', 1), ('environment', 1), ('future', 1), ('life', 1), ('earth', 1), ('elsewhere', 1), ('book', 1), ('author', 1)]
[('programming', 3), ('computer', 2), ('nbsp', 2), ('textbook', 1), ('ideal', 1), ('introduction', 1), ('college', 1), ('course', 1), ('self', 1), ('study', 1), ('learning', 1), ('using', 1), ('language', 1), ('written', 1), ('minimal', 1), ('experience', 1), ('beginner', 1), ('offer', 1)]
[('string', 3), ('analysis', 3), ('automaton', 2), ('nbsp', 2), ('book', 1), ('discus', 1), ('automated', 1), ('technique', 1), ('focusing', 1), ('particularly', 1), ('based', 1), ('static', 1), ('cover', 1), ('following', 1), ('topic', 1), ('base', 1), ('computing', 1), ('pre', 1), ('post', 1), ('condition', 1), ('basic', 1)]
[('modelling', 2), ('unique', 1), ('text', 1), ('reference', 1), ('review', 1), ('key', 1), ('principle', 1), ('technique', 1), ('conceptual', 1), ('relevance', 1), ('specialist', 1), ('field', 1), ('cultural', 1), ('heritage', 1), ('information', 1), ('task', 1), ('vital', 1), ('aspect', 1), ('work', 1), ('study', 1), ('discipline', 1)]
[('covert', 2), ('technique', 2), ('image', 2), ('book', 1), ('present', 1), ('semi', 1), ('overt', 1), ('communication', 1), ('printed', 1), ('medium', 1), ('modifying', 1), ('text', 1), ('barcodes', 1), ('within', 1), ('document', 1), ('basic', 1), ('advanced', 1), ('nbsp', 1), ('discussed', 1), ('aimed', 1), ('modulate', 1), ('information', 1)]
[('recommender', 2), ('system', 2), ('lt', 1), ('gt', 1), ('book', 1), ('comprehensively', 1), ('cover', 1), ('topic', 1), ('provide', 1), ('personalized', 1), ('recommendation', 1), ('product', 1), ('service', 1), ('user', 1), ('based', 1), ('previous', 1), ('search', 1), ('purchase', 1), ('method', 1), ('adapted', 1)]
[('cyber', 2), ('nbsp', 2), ('timely', 1), ('book', 1), ('offer', 1), ('rare', 1), ('insight', 1), ('field', 1), ('cybersecurity', 1), ('russia', 1), ('significant', 1), ('player', 1), ('regard', 1), ('attack', 1), ('war', 1), ('big', 1), ('data', 1), ('technology', 1), ('monitoring', 1), ('computer', 1), ('security', 1), ('present', 1), ('possible', 1), ('solution', 1)]
[('mechanism', 2), ('book', 1), ('cover', 1), ('series', 1), ('security', 1), ('privacy', 1), ('issue', 1), ('network', 1), ('coding', 1), ('introduces', 1), ('three', 1), ('concrete', 1), ('address', 1), ('leverage', 1), ('traditional', 1), ('cryptographic', 1), ('primitive', 1), ('anonymous', 1), ('protocol', 1), ('redesigned', 1), ('fit', 1)]
[('lt', 3), ('gt', 3), ('parallel', 2), ('tool', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('held', 1), ('october', 1), ('stuttgart', 1), ('germany', 1), ('forum', 1), ('discus', 1), ('latest', 1), ('advance', 1), ('high', 1), ('performance', 1), ('computing', 1)]
[('human', 2), ('past', 1), ('decade', 1), ('big', 1), ('data', 1), ('become', 1), ('ubiquitous', 1), ('economic', 1), ('sector', 1), ('scientific', 1), ('discipline', 1), ('activity', 1), ('led', 1), ('striking', 1), ('technological', 1), ('advance', 1), ('affecting', 1), ('experience', 1), ('ability', 1), ('manage', 1), ('understand', 1)]
[('resource', 2), ('big', 2), ('data', 2), ('hpc', 2), ('book', 1), ('provides', 1), ('overview', 1), ('research', 1), ('project', 1), ('bringing', 1), ('high', 1), ('performance', 1), ('computing', 1), ('converging', 1), ('track', 1), ('demystifies', 1), ('reader', 1), ('covering', 1), ('primary', 1), ('middleware', 1)]
[('image', 2), ('processing', 2), ('lt', 1), ('gt', 1), ('book', 1), ('includes', 1), ('paper', 1), ('presented', 1), ('nd', 1), ('international', 1), ('conference', 1), ('capsule', 1), ('network', 1), ('icipcn', 1), ('digital', 1), ('era', 1), ('play', 1), ('significant', 1), ('role', 1), ('wide', 1), ('range', 1), ('real', 1), ('time', 1), ('application', 1)]
[('lt', 1), ('gt', 1), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('advance', 1), ('emerging', 1), ('trend', 1), ('technology', 1), ('icaett', 1), ('held', 1), ('riobamba', 1), ('ecuador', 1), ('november', 1), ('proudly', 1), ('organized', 1), ('facultad', 1), ('de', 1), ('informática', 1)]
[('data', 2), ('book', 1), ('unfolds', 1), ('way', 1), ('transform', 1), ('innovative', 1), ('solution', 1), ('perceived', 1), ('new', 1), ('remarkable', 1), ('meaningful', 1), ('value', 1), ('offer', 1), ('practical', 1), ('view', 1), ('concept', 1), ('technique', 1), ('reader', 1), ('need', 1), ('large', 1), ('scale', 1), ('research', 1)]
[('network', 3), ('book', 1), ('provides', 1), ('timely', 1), ('comprehensive', 1), ('study', 1), ('developing', 1), ('efficient', 1), ('slicing', 1), ('framework', 1), ('wireless', 1), ('core', 1), ('present', 1), ('protocol', 1), ('stack', 1), ('layer', 1), ('perspective', 1), ('includes', 1), ('virtual', 1), ('topology', 1), ('design', 1)]
[('comesyso', 3), ('book', 1), ('constitutes', 1), ('first', 1), ('part', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('computational', 1), ('method', 1), ('system', 1), ('software', 1), ('conference', 1), ('breaking', 1), ('barrier', 1), ('held', 1), ('online', 1), ('intends', 1), ('provide', 1)]
[('information', 2), ('bim', 2), ('building', 1), ('modeling', 1), ('refers', 1), ('consistent', 1), ('continuous', 1), ('use', 1), ('digital', 1), ('throughout', 1), ('entire', 1), ('lifecycle', 1), ('built', 1), ('facility', 1), ('including', 1), ('design', 1), ('construction', 1), ('operation', 1), ('order', 1), ('exploit', 1), ('method', 1)]
[('network', 2), ('information', 2), ('book', 1), ('cover', 1), ('theory', 1), ('design', 1), ('application', 1), ('computer', 1), ('distributed', 1), ('computing', 1), ('system', 1), ('today', 1), ('going', 1), ('rapid', 1), ('evolution', 1), ('many', 1), ('emerging', 1), ('area', 1), ('networking', 1)]
[('amp', 3), ('nbsp', 3), ('provides', 2), ('chapter', 2), ('lt', 1), ('gt', 1), ('book', 1), ('basic', 1), ('theory', 1), ('technique', 1), ('algorithm', 1), ('modern', 1), ('cryptography', 1), ('applicable', 1), ('network', 1), ('cyberspace', 1), ('security', 1), ('consists', 1), ('following', 1), ('nine', 1), ('main', 1)]
[('personal', 3), ('data', 3), ('increasingly', 2), ('important', 1), ('life', 1), ('use', 1), ('quantify', 1), ('behaviour', 1), ('health', 1), ('apps', 1), ('branding', 1), ('forced', 1), ('part', 1), ('access', 1), ('service', 1)]
[('nbsp', 3), ('system', 3), ('simple', 2), ('book', 1), ('investigates', 1), ('characteristic', 1), ('versus', 1), ('complex', 1), ('property', 1), ('cyber', 1), ('physical', 1), ('design', 1), ('contribute', 1), ('effective', 1), ('implementation', 1), ('make', 1), ('understandable', 1)]
[('book', 1), ('address', 1), ('importance', 1), ('human', 1), ('factor', 1), ('optimizing', 1), ('learning', 1), ('training', 1), ('process', 1), ('report', 1), ('latest', 1), ('research', 1), ('best', 1), ('practice', 1), ('relating', 1), ('application', 1), ('behavioral', 1), ('cognitive', 1), ('science', 1), ('new', 1), ('technology', 1)]
[('artificial', 2), ('intelligence', 2), ('intelligent', 2), ('system', 2), ('online', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('section', 1), ('th', 1), ('computer', 1), ('science', 1), ('conference', 1), ('csoc', 1), ('held', 1), ('april', 1)]
[('intelligent', 2), ('system', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('conference', 1), ('remarkable', 1), ('collection', 1), ('chapter', 1), ('covering', 1), ('wider', 1), ('range', 1), ('topic', 1), ('area', 1), ('artificial', 1), ('intelligence', 1), ('application', 1), ('real', 1)]
[('book', 1), ('examines', 1), ('emerging', 1), ('problem', 1), ('opportunity', 1), ('posed', 1), ('medium', 1), ('innovation', 1), ('spatial', 1), ('typology', 1), ('cultural', 1), ('trend', 1), ('shaping', 1), ('identity', 1), ('within', 1), ('fast', 1), ('changing', 1), ('milieu', 1), ('early', 1), ('st', 1), ('century', 1), ('addressing', 1), ('range', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('scientist', 2), ('book', 1), ('present', 1), ('main', 1), ('concept', 1), ('linear', 1), ('algebra', 1), ('viewpoint', 1), ('applied', 1), ('computer', 1), ('engineer', 1), ('without', 1), ('compromising', 1), ('mathematical', 1), ('rigor', 1), ('based', 1), ('idea', 1), ('computational', 1)]
[('nids', 2), ('book', 1), ('summarizes', 1), ('research', 1), ('finding', 1), ('presented', 1), ('nd', 1), ('international', 1), ('conference', 1), ('novel', 1), ('intelligent', 1), ('digital', 1), ('system', 1), ('implemented', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('restriction', 1), ('september', 1)]
[('technology', 2), ('book', 1), ('provides', 1), ('snapshot', 1), ('state', 1), ('art', 1), ('interdisciplinary', 1), ('discussion', 1), ('russia', 1), ('information', 1), ('society', 1), ('new', 1), ('subject', 1), ('original', 1), ('theoretical', 1), ('analysis', 1), ('reflection', 1), ('practical', 1)]
[('learning', 2), ('use', 2), ('definitive', 1), ('guide', 1), ('machine', 1), ('project', 1), ('answer', 1), ('problem', 1), ('aspiring', 1), ('experienced', 1), ('data', 1), ('scientist', 1), ('frequently', 1), ('confused', 1), ('technology', 1), ('ml', 1), ('development', 1), ('gofai', 1), ('ann', 1), ('dnn', 1), ('transfer', 1)]
[('book', 2), ('focus', 1), ('latest', 1), ('endeavor', 1), ('relating', 1), ('research', 1), ('development', 1), ('conducted', 1), ('field', 1), ('control', 1), ('robotics', 1), ('automation', 1), ('ten', 1), ('revised', 1), ('extended', 1), ('article', 1), ('present', 1), ('aim', 1), ('provide', 1), ('date', 1), ('state', 1), ('art', 1)]
[('book', 1), ('present', 1), ('collection', 1), ('result', 1), ('interdisciplinary', 1), ('research', 1), ('project', 1), ('elli', 1), ('published', 1), ('researcher', 1), ('rwth', 1), ('aachen', 1), ('university', 1), ('tu', 1), ('dortmund', 1), ('ruhr', 1), ('universität', 1), ('bochum', 1), ('contribution', 1), ('showcase', 1)]
[('function', 2), ('monograph', 1), ('provides', 1), ('new', 1), ('framework', 1), ('modelling', 1), ('goal', 1), ('control', 1), ('system', 1), ('demonstrates', 1), ('use', 1), ('mean', 1), ('end', 1), ('concept', 1), ('various', 1), ('aspect', 1), ('action', 1), ('describe', 1), ('relation', 1), ('structure', 1), ('disposition', 1)]
[('book', 2), ('blockchain', 2), ('explores', 1), ('concept', 1), ('technique', 1), ('iot', 1), ('ai', 1), ('discussed', 1), ('possibility', 1), ('applying', 1), ('providing', 1), ('security', 1), ('various', 1), ('domain', 1), ('specific', 1), ('highlight', 1), ('focused', 1), ('application', 1)]
[('conference', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('machine', 1), ('learning', 1), ('big', 1), ('data', 1), ('analytics', 1), ('iot', 1), ('security', 1), ('privacy', 1), ('spiot', 1), ('online', 1), ('october', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1)]
[('book', 1), ('present', 1), ('modeling', 1), ('method', 1), ('algorithm', 1), ('data', 1), ('driven', 1), ('prediction', 1), ('forecasting', 1), ('practical', 1), ('industrial', 1), ('process', 1), ('employing', 1), ('machine', 1), ('learning', 1), ('statistic', 1), ('methodology', 1), ('related', 1), ('case', 1), ('study', 1), ('especially', 1), ('energy', 1), ('system', 1)]
[('research', 2), ('intelligent', 2), ('book', 1), ('provides', 1), ('latest', 1), ('finding', 1), ('discus', 1), ('theoretical', 1), ('practical', 1), ('perspective', 1), ('innovative', 1), ('method', 1), ('development', 1), ('technique', 1), ('related', 1), ('social', 1), ('network', 1), ('collaborative', 1), ('system', 1)]
[('simulation', 2), ('scientifically', 2), ('book', 1), ('describes', 1), ('cosmos', 1), ('complex', 1), ('system', 1), ('modelling', 1), ('pattern', 1), ('based', 1), ('approach', 1), ('engineering', 1), ('trustworthy', 1), ('useful', 1), ('researcher', 1), ('credible', 1), ('third', 1), ('party', 1)]
[('book', 2), ('consists', 1), ('paper', 1), ('recent', 1), ('progress', 1), ('state', 1), ('art', 1), ('natural', 1), ('computation', 1), ('fuzzy', 1), ('system', 1), ('knowledge', 1), ('discovery', 1), ('useful', 1), ('researcher', 1), ('including', 1), ('professor', 1), ('graduate', 1), ('student', 1), ('staff', 1)]
[('book', 2), ('provides', 1), ('overview', 1), ('emerging', 1), ('smart', 1), ('connected', 1), ('world', 1), ('discus', 1), ('role', 1), ('usage', 1), ('underlying', 1), ('semantic', 1), ('computing', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('technology', 1), ('comprises', 1), ('ten', 1), ('chapter', 1), ('overall', 1), ('grouped', 1)]
[('data', 2), ('book', 1), ('proposes', 1), ('tool', 1), ('analysis', 1), ('multidimensional', 1), ('metric', 1), ('establishing', 1), ('state', 1), ('art', 1), ('existing', 1), ('solution', 1), ('developing', 1), ('new', 1), ('one', 1), ('mainly', 1), ('focus', 1), ('visual', 1), ('exploration', 1), ('human', 1), ('analyst', 1), ('relying', 1)]
[('book', 1), ('present', 1), ('joint', 1), ('work', 1), ('member', 1), ('software', 1), ('engineering', 1), ('formal', 1), ('method', 1), ('community', 1), ('representative', 1), ('industry', 1), ('goal', 1), ('establishing', 1), ('foundation', 1), ('common', 1), ('understanding', 1), ('need', 1), ('flexibility', 1)]
[('book', 1), ('present', 1), ('cybersecurity', 1), ('aspect', 1), ('ubiquitous', 1), ('growing', 1), ('iot', 1), ('cyber', 1), ('physical', 1), ('system', 1), ('introduces', 1), ('range', 1), ('conceptual', 1), ('theoretical', 1), ('foundational', 1), ('access', 1), ('control', 1), ('solution', 1), ('developed', 1), ('author', 1), ('provide', 1)]
[('international', 2), ('conference', 2), ('book', 1), ('present', 1), ('outcome', 1), ('th', 1), ('cyber', 1), ('security', 1), ('intelligence', 1), ('analytics', 1), ('csia', 1), ('dedicated', 1), ('promoting', 1), ('novel', 1), ('theoretical', 1), ('applied', 1), ('research', 1), ('advance', 1)]
[('book', 1), ('comprises', 1), ('high', 1), ('quality', 1), ('refereed', 1), ('research', 1), ('paper', 1), ('presented', 1), ('third', 1), ('international', 1), ('symposium', 1), ('computer', 1), ('science', 1), ('digital', 1), ('economy', 1), ('intelligent', 1), ('system', 1), ('csdeis', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('december', 1), ('organized', 1), ('jointly', 1)]
[('book', 1), ('focus', 1), ('emerging', 1), ('advance', 1), ('distributed', 1), ('communication', 1), ('system', 1), ('big', 1), ('data', 1), ('intelligent', 1), ('computing', 1), ('internet', 1), ('thing', 1), ('presenting', 1), ('state', 1), ('art', 1), ('research', 1), ('framework', 1), ('algorithm', 1), ('methodology', 1), ('technique', 1), ('application', 1)]
[('information', 2), ('book', 1), ('examines', 1), ('underlying', 1), ('process', 1), ('behind', 1), ('different', 1), ('form', 1), ('management', 1), ('including', 1), ('store', 1), ('brain', 1), ('impact', 1), ('new', 1), ('technology', 1), ('computer', 1), ('robot', 1), ('efficiency', 1), ('storing', 1)]
[('learning', 2), ('book', 1), ('provides', 1), ('glimpse', 1), ('contemporary', 1), ('research', 1), ('information', 1), ('system', 1), ('technology', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('machine', 1), ('security', 1), ('applies', 1), ('real', 1), ('world', 1), ('idea', 1), ('presented', 1), ('span', 1), ('domain', 1)]
[('data', 2), ('science', 2), ('book', 1), ('present', 1), ('outstanding', 1), ('theoretical', 1), ('practical', 1), ('finding', 1), ('associated', 1), ('interdisciplinary', 1), ('area', 1), ('main', 1), ('goal', 1), ('explore', 1), ('research', 1), ('revolutionize', 1), ('society', 1), ('industry', 1), ('positive', 1), ('way', 1), ('drawing', 1)]
[('knowledge', 2), ('tool', 2), ('used', 2), ('book', 1), ('present', 1), ('comprehensive', 1), ('review', 1), ('engineering', 1), ('technique', 1), ('artificial', 1), ('intelligence', 1), ('planning', 1), ('scheduling', 1), ('ke', 1), ('aid', 1), ('acquisition', 1), ('construction', 1)]
[('research', 3), ('information', 2), ('book', 1), ('cover', 1), ('selected', 1), ('work', 1), ('presented', 1), ('fifth', 1), ('international', 1), ('conference', 1), ('networking', 1), ('system', 1), ('security', 1), ('ni', 1), ('organized', 1), ('center', 1), ('data', 1), ('science', 1), ('national', 1)]
[('book', 1), ('brings', 1), ('together', 1), ('recent', 1), ('quality', 1), ('research', 1), ('paper', 1), ('accepted', 1), ('presented', 1), ('rd', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('applied', 1), ('mathematics', 1), ('engineering', 1), ('icaiame', 1), ('held', 1), ('antalya', 1), ('turkey', 1)]
[('book', 2), ('dl', 2), ('ai', 2), ('focused', 1), ('use', 1), ('deep', 1), ('learning', 1), ('artificial', 1), ('intelligence', 1), ('tool', 1), ('advance', 1), ('field', 1), ('malware', 1), ('detection', 1), ('analysis', 1), ('individual', 1), ('chapter', 1), ('deal', 1), ('wide', 1), ('variety', 1), ('state', 1), ('art', 1)]
[('current', 2), ('machine', 2), ('learning', 2), ('book', 1), ('provides', 1), ('full', 1), ('presentation', 1), ('concept', 1), ('available', 1), ('technique', 1), ('make', 1), ('system', 1), ('explainable', 1), ('approach', 1), ('presented', 1), ('applied', 1), ('almost', 1), ('model', 1), ('linear', 1)]
[('cloud', 3), ('iot', 2), ('book', 1), ('brings', 1), ('reader', 1), ('thirteen', 1), ('chapter', 1), ('contribution', 1), ('benefit', 1), ('using', 1), ('computing', 1), ('agro', 1), ('ecosystem', 1), ('multi', 1), ('disciplinary', 1), ('perspective', 1), ('system', 1), ('prompted', 1), ('development', 1), ('digital', 1)]
[('graph', 2), ('processing', 2), ('designed', 2), ('data', 2), ('step', 2), ('book', 1), ('take', 1), ('reader', 1), ('journey', 1), ('apache', 1), ('giraph', 1), ('popular', 1), ('distributed', 1), ('platform', 1), ('bring', 1), ('power', 1), ('big', 1), ('self', 1), ('study', 1), ('guide', 1), ('everyone', 1), ('interested', 1)]
[('enterprise', 3), ('knowledge', 2), ('book', 1), ('address', 1), ('topic', 1), ('exploiting', 1), ('linked', 1), ('data', 1), ('particular', 1), ('focus', 1), ('construction', 1), ('accessibility', 1), ('within', 1), ('identifies', 1), ('gap', 1), ('requirement', 1), ('consumption', 1)]
[('nbsp', 3), ('quantum', 2), ('introductory', 1), ('book', 1), ('computing', 1), ('includes', 1), ('emphasis', 1), ('development', 1), ('algorithm', 1), ('appropriate', 1), ('university', 1), ('student', 1), ('software', 1), ('developer', 1), ('interested', 1), ('programming', 1), ('computer', 1), ('practical', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('data', 1), ('integration', 1), ('life', 1), ('science', 1), ('dils', 1), ('held', 1), ('los', 1), ('angeles', 1), ('ca', 1), ('usa', 1), ('july', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('agi', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('general', 1), ('intelligence', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('july', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('held', 1), ('portsmouth', 1), ('uk', 1), ('august', 1), ('paper', 1), ('included', 1), ('third', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('biomimetic', 1), ('biohybrid', 1), ('system', 1), ('living', 1), ('machine', 1), ('held', 1), ('edinburgh', 1), ('uk', 1), ('july', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('invited', 1), ('first', 1), ('international', 1), ('workshop', 1), ('agent', 1), ('based', 1), ('modelling', 1), ('urban', 1), ('system', 1), ('abmus', 1), ('held', 1), ('conjunction', 1), ('aamas', 1), ('singapore', 1), ('presented', 1)]
[('lnai', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('held', 1), ('wuhan', 1), ('china', 1), ('august', 1), ('lt', 1), ('gt', 1)]
[('epia', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('september', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('nbsp', 3), ('mexico', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('mining', 1), ('intelligence', 1), ('knowledge', 1), ('exploration', 1), ('mike', 1), ('held', 1), ('city', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('held', 2), ('book', 1), ('compiles', 1), ('visionary', 1), ('workshop', 1), ('international', 1), ('conference', 1), ('autonomous', 1), ('agent', 1), ('multiagent', 1), ('system', 1), ('aamas', 1), ('sao', 1), ('paulo', 1), ('brazil', 1), ('full', 1), ('presented', 1), ('volume', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('intelligent', 1), ('information', 1), ('database', 1), ('system', 1), ('aciids', 1), ('held', 1), ('dong', 1), ('hoi', 1), ('city', 1), ('vietnam', 1), ('march', 1), ('total', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('nbsp', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('pricai', 1), ('held', 1), ('nanjing', 1), ('china', 1), ('august', 1), ('full', 1), ('short', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ccf', 1), ('conference', 1), ('natural', 1), ('language', 1), ('processing', 1), ('chinese', 1), ('computing', 1), ('nlpcc', 1), ('held', 1), ('hohhot', 1), ('china', 1), ('august', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('symbolic', 1), ('computation', 1), ('aisc', 1), ('held', 1), ('suzhou', 1), ('china', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('lnbi', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('work', 1), ('conference', 1), ('bioinformatics', 1), ('biomedical', 1), ('engineering', 1), ('iwbbio', 1), ('held', 1), ('granada', 1), ('spain', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('logic', 1), ('programming', 1), ('nonmonotonic', 1), ('reasoning', 1), ('lpnmr', 1), ('held', 1), ('philadelphia', 1), ('pa', 1), ('usa', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('ijcrs', 2), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('joint', 1), ('conference', 1), ('rough', 1), ('set', 1), ('held', 1), ('debrecen', 1), ('hungary', 1), ('june', 1), ('lt', 1), ('gt', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('held', 1), ('shenyang', 1), ('china', 1), ('august', 1), ('total', 1), ('full', 1), ('short', 1), ('paper', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('case', 1), ('based', 1), ('reasoning', 1), ('research', 1), ('development', 1), ('iccbr', 1), ('held', 1), ('otzenhausen', 1), ('germany', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('advance', 1), ('bio', 1), ('medical', 1), ('science', 1), ('iccabs', 1), ('held', 1), ('miami', 1), ('florida', 1), ('usa', 1), ('november', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('spatial', 1), ('cognition', 1), ('held', 1), ('riga', 1), ('latvia', 1), ('september', 1), ('physical', 1), ('event', 1), ('postponed', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('full', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('continual', 1), ('semi', 1), ('supervised', 1), ('learning', 1), ('cssl', 1), ('took', 1), ('place', 1), ('virtual', 1), ('event', 1), ('august', 1), ('full', 1), ('short', 1), ('included', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('contains', 1), ('extended', 1), ('version', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('agent', 1), ('artificial', 1), ('nbsp', 1), ('intelligence', 1), ('icaart', 1), ('held', 1), ('rome', 1), ('italy', 1), ('february', 1), ('full', 1), ('carefully', 1)]
[('analysis', 2), ('biomedical', 2), ('ontology', 2), ('book', 1), ('synthesizes', 1), ('research', 1), ('using', 1), ('formal', 1), ('concept', 1), ('including', 1), ('auditing', 1), ('curation', 1), ('enhancement', 1), ('nbsp', 1), ('evolution', 1), ('almost', 1), ('inevitably', 1), ('involves', 1), ('manual', 1), ('work', 1)]
[('method', 2), ('theory', 1), ('bedrock', 1), ('many', 1), ('science', 1), ('providing', 1), ('rigorous', 1), ('advance', 1), ('knowledge', 1), ('testing', 1), ('falsifying', 1), ('hypothesis', 1), ('observable', 1), ('phenomenon', 1), ('begin', 1), ('nascent', 1), ('field', 1), ('hci', 1), ('followed', 1), ('scientific', 1), ('borrowing', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('brazilian', 1), ('conference', 1), ('intelligent', 1), ('system', 1), ('bracis', 1), ('took', 1), ('place', 1), ('campinas', 1), ('brazil', 1), ('november', 1), ('december', 1), ('nbsp', 1), ('paper', 1), ('presented', 1)]
[('document', 2), ('standard', 2), ('akn', 2), ('book', 1), ('present', 1), ('model', 1), ('driven', 1), ('approach', 1), ('creating', 1), ('national', 1), ('application', 1), ('profile', 1), ('international', 1), ('legislative', 1), ('akoma', 1), ('ntoso', 1), ('xml', 1), ('based', 1), ('serf', 1), ('basis', 1), ('modern', 1), ('machine', 1), ('readable', 1)]
[('problem', 2), ('solving', 2), ('book', 1), ('provides', 1), ('practical', 1), ('comprehensive', 1), ('introduction', 1), ('computational', 1), ('viewpoint', 1), ('practitioner', 1), ('academic', 1), ('industrial', 1), ('world', 1), ('nbsp', 1), ('author', 1), ('present', 1), ('scientific', 1), ('using', 1), ('computation', 1)]
[('book', 3), ('software', 2), ('testing', 2), ('design', 1), ('development', 1), ('tool', 1), ('intends', 1), ('reader', 1), ('involved', 1), ('rather', 1), ('simply', 1), ('memorizing', 1), ('concept', 1), ('source', 1), ('code', 1), ('downloadable', 1), ('website', 1)]
[('edition', 2), ('contest', 2), ('describes', 2), ('book', 1), ('constitutes', 1), ('th', 1), ('annual', 1), ('multi', 1), ('agent', 1), ('programming', 1), ('mapc', 1), ('nbsp', 1), ('give', 1), ('overview', 1), ('competition', 1), ('current', 1), ('scenario', 1), ('first', 1), ('paper', 1), ('general', 1)]
[('use', 2), ('data', 2), ('book', 1), ('thorough', 1), ('comprehensive', 1), ('guide', 1), ('modern', 1), ('science', 1), ('within', 1), ('health', 1), ('care', 1), ('critical', 1), ('big', 1), ('analytical', 1), ('potential', 1), ('obtain', 1), ('clinical', 1), ('insight', 1), ('issue', 1), ('missed', 1)]
[('book', 1), ('demonstrates', 1), ('significance', 1), ('domain', 1), ('specific', 1), ('conceptual', 1), ('modeling', 1), ('new', 1), ('research', 1), ('development', 1), ('approach', 1), ('manifested', 1), ('chapter', 1), ('include', 1), ('novel', 1), ('modelling', 1), ('method', 1), ('tool', 1), ('emphasize', 1), ('recent', 1)]
[('experience', 5), ('design', 5), ('interaction', 2), ('centered', 1), ('based', 1), ('designing', 1), ('user', 1), ('term', 1), ('emerged', 1), ('gained', 1), ('acceptance', 1), ('human', 1), ('computer', 1), ('hci', 1)]
[('design', 2), ('work', 2), ('human', 2), ('book', 1), ('focus', 1), ('factor', 1), ('hf', 1), ('perspective', 1), ('approach', 1), ('referred', 1), ('core', 1), ('task', 1), ('ctd', 1), ('considered', 1), ('practice', 1), ('composed', 1), ('actor', 1), ('physical', 1), ('social', 1), ('environment', 1), ('tool', 1), ('used', 1)]
[('human', 2), ('computer', 2), ('whether', 2), ('information', 2), ('first', 1), ('comprehensive', 1), ('history', 1), ('interaction', 1), ('hci', 1), ('user', 1), ('experience', 1), ('professional', 1), ('academic', 1), ('researcher', 1), ('identify', 1), ('science', 1), ('factor', 1), ('system', 1)]
[('six', 2), ('blink', 1), ('eye', 1), ('walter', 1), ('murch', 1), ('oscar', 1), ('awarded', 1), ('editor', 1), ('english', 1), ('patient', 1), ('apocalypse', 1), ('many', 1), ('outstanding', 1), ('movie', 1), ('devise', 1), ('rule', 1), ('criterion', 1), ('make', 1), ('good', 1), ('cut', 1), ('top', 1), ('list', 1), ('true', 1)]
[('covid', 2), ('book', 1), ('provides', 1), ('overview', 1), ('impact', 1), ('pandemic', 1), ('china', 1), ('usa', 1), ('present', 1), ('research', 1), ('agenda', 1), ('use', 1), ('access', 1), ('adoption', 1), ('information', 1), ('communication', 1), ('technology', 1), ('ict', 1), ('era', 1), ('nbsp', 1), ('global', 1)]
[('data', 3), ('agent', 2), ('intelligent', 1), ('system', 1), ('often', 1), ('depend', 1), ('provided', 1), ('information', 1), ('example', 1), ('sensor', 1), ('crowdsourced', 1), ('human', 1), ('computation', 1), ('providing', 1), ('accurate', 1), ('relevant', 1), ('requires', 1), ('costly', 1), ('effort', 1), ('always', 1), ('willing', 1), ('provide', 1)]
[('increasing', 1), ('abundance', 1), ('large', 1), ('high', 1), ('quality', 1), ('datasets', 1), ('combined', 1), ('significant', 1), ('technical', 1), ('advance', 1), ('last', 1), ('several', 1), ('decade', 1), ('made', 1), ('machine', 1), ('learning', 1), ('major', 1), ('tool', 1), ('employed', 1), ('across', 1), ('broad', 1), ('array', 1), ('task', 1), ('including', 1), ('vision', 1), ('language', 1)]
[('recognition', 3), ('plan', 1), ('activity', 1), ('goal', 1), ('involve', 1), ('making', 1), ('inference', 1), ('actor', 1), ('based', 1), ('observation', 1), ('interaction', 1), ('environment', 1), ('agent', 1), ('synergistic', 1), ('area', 1), ('research', 1), ('combine', 1), ('unites', 1)]
[('graphical', 1), ('model', 1), ('bayesian', 1), ('constraint', 1), ('network', 1), ('influence', 1), ('diagram', 1), ('markov', 1), ('decision', 1), ('process', 1), ('become', 1), ('central', 1), ('paradigm', 1), ('knowledge', 1), ('representation', 1), ('reasoning', 1), ('artificial', 1), ('intelligence', 1), ('computer', 1), ('science', 1), ('general', 1)]
[('search', 2), ('engine', 2), ('online', 1), ('information', 1), ('grows', 1), ('dramatically', 1), ('google', 1), ('playing', 1), ('important', 1), ('role', 1), ('life', 1), ('critical', 1), ('problem', 1), ('designing', 1), ('effective', 1), ('retrieval', 1), ('model', 1), ('rank', 1), ('document', 1)]
[('linguistic', 2), ('approach', 2), ('many', 2), ('major', 1), ('part', 1), ('natural', 1), ('language', 1), ('processing', 1), ('depends', 1), ('use', 1), ('text', 1), ('data', 1), ('build', 1), ('analyzer', 1), ('consider', 1), ('statistical', 1), ('computational', 1), ('modeling', 1), ('structure', 1), ('seek', 1), ('unify', 1), ('across', 1)]
[('unique', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('popular', 1), ('syntax', 1), ('based', 1), ('statistical', 1), ('machine', 1), ('translation', 1), ('model', 1), ('filling', 1), ('gap', 1), ('current', 1), ('literature', 1), ('researcher', 1), ('developer', 1), ('human', 1), ('language', 1), ('technology', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('speech', 1), ('computer', 1), ('specom', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('october', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('industrial', 1), ('engineering', 1), ('application', 1), ('applied', 1), ('intelligent', 1), ('system', 1), ('iea', 1), ('aie', 1), ('held', 1), ('virtually', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('science', 1), ('engineering', 1), ('management', 1), ('ksem', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('discus', 1), ('pro', 1), ('con', 1), ('information', 1), ('communication', 1), ('ict', 1), ('neutrality', 1), ('try', 1), ('objective', 1), ('possible', 1), ('argument', 1), ('proponent', 1), ('opponent', 1), ('way', 1), ('enabling', 1), ('reader', 1), ('build', 1), ('opinion', 1), ('present', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('biomimetic', 1), ('biohybrid', 1), ('system', 1), ('living', 1), ('machine', 1), ('virtual', 1), ('event', 1), ('july', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('crisis', 1)]
[('conference', 2), ('nbsp', 1), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('artificial', 1), ('intelligence', 1), ('soft', 1), ('computing', 1), ('icaisc', 1), ('held', 1), ('zakopane', 1), ('poland', 1), ('june', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('computational', 1), ('processing', 1), ('portuguese', 1), ('language', 1), ('propor', 1), ('held', 1), ('sao', 1), ('carlos', 1), ('brazil', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 1), ('comprehensive', 1), ('curation', 1), ('exposition', 1), ('illustrative', 1), ('discussion', 1), ('recent', 1), ('research', 1), ('tool', 1), ('interpretability', 1), ('deep', 1), ('learning', 1), ('model', 1), ('focus', 1), ('neural', 1), ('network', 1), ('architecture', 1), ('addition', 1), ('includes', 1), ('several', 1), ('case', 1), ('study', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('bioinformatics', 1), ('biomedical', 1), ('engineering', 1), ('iwbbio', 1), ('held', 1), ('granada', 1), ('spain', 1), ('april', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('symbolic', 1), ('quantitative', 1), ('approach', 1), ('reasoning', 1), ('uncertainty', 1), ('ecsqaru', 1), ('held', 1), ('compiègne', 1), ('france', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('brain', 1), ('informatics', 1), ('health', 1), ('bih', 1), ('held', 1), ('london', 1), ('uk', 1), ('august', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('inductive', 1), ('logic', 1), ('programming', 1), ('ilp', 1), ('held', 1), ('nancy', 1), ('france', 1), ('september', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('offer', 1), ('timely', 1), ('report', 1), ('keytheories', 1), ('application', 1), ('soft', 1), ('computing', 1), ('written', 1), ('honour', 1), ('professorgaspar', 1), ('mayor', 1), ('th', 1), ('birthday', 1), ('primarily', 1), ('focus', 1), ('area', 1), ('related', 1), ('hisresearch', 1), ('including', 1), ('fuzzy', 1), ('binary', 1), ('operator', 1)]
[('nbsp', 3), ('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('soft', 1), ('computing', 1), ('icaisc', 1), ('held', 1), ('zakopane', 1), ('poland', 1), ('june', 1), ('revised', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('conference', 1), ('towards', 1), ('autonomous', 1), ('robotics', 1), ('taro', 1), ('held', 1), ('sheffield', 1), ('uk', 1), ('june', 1), ('july', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('knowledge', 1), ('management', 1), ('acquisition', 1), ('intelligent', 1), ('system', 1), ('pkaw', 1), ('held', 1), ('phuket', 1), ('thailand', 1), ('august', 1), ('full', 1), ('short', 1), ('included', 1)]
[('book', 2), ('data', 2), ('protection', 2), ('includes', 2), ('offer', 1), ('latest', 1), ('research', 1), ('result', 1), ('prediction', 1), ('special', 1), ('focus', 1), ('post', 1), ('pandemic', 1), ('society', 1), ('various', 1), ('case', 1), ('study', 1), ('application', 1), ('internet', 1), ('thing', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('social', 1), ('robotics', 1), ('icsr', 1), ('held', 1), ('tsukuba', 1), ('japan', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('industrial', 1), ('engineering', 1), ('application', 1), ('applied', 1), ('intelligent', 1), ('system', 1), ('iea', 1), ('aie', 1), ('held', 1), ('arras', 1), ('france', 1)]
[('several', 2), ('book', 1), ('offer', 1), ('comprehensive', 1), ('introduction', 1), ('cooperative', 1), ('game', 1), ('theory', 1), ('practice', 1), ('oriented', 1), ('reference', 1), ('guide', 1), ('new', 1), ('model', 1), ('tool', 1), ('studying', 1), ('bilateral', 1), ('fuzzy', 1), ('relation', 1), ('among', 1), ('agent', 1), ('player', 1), ('introduces', 1), ('reader', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('symbolic', 1), ('quantitative', 1), ('approach', 1), ('reasoning', 1), ('uncertainty', 1), ('ecsqaru', 1), ('held', 1), ('lugano', 1), ('switzerland', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('science', 1), ('engineering', 1), ('management', 1), ('ksem', 1), ('held', 1), ('melbourne', 1), ('australia', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('book', 2), ('designates', 1), ('visualization', 1), ('psychology', 1), ('interdisciplinary', 1), ('subject', 1), ('contains', 1), ('literature', 1), ('review', 1), ('experimental', 1), ('work', 1), ('exemplify', 1), ('range', 1), ('open', 1), ('question', 1), ('critical', 1), ('intersection', 1), ('includes', 1), ('discourse', 1)]
[('fuzzy', 2), ('linear', 2), ('programming', 2), ('model', 2), ('book', 1), ('present', 1), ('necessary', 1), ('essential', 1), ('background', 1), ('set', 1), ('theory', 1), ('particularly', 1), ('broad', 1), ('range', 1), ('common', 1), ('flp', 1), ('related', 1), ('convenient', 1), ('solution', 1), ('technique', 1), ('method', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('general', 1), ('intelligence', 1), ('agi', 1), ('held', 1), ('shenzhen', 1), ('china', 1), ('august', 1), ('full', 1), ('poster', 1), ('presented', 1)]
[('volume', 2), ('lncs', 2), ('set', 1), ('constitutes', 1), ('conjunction', 1), ('lnai', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('held', 1), ('nanchang', 1), ('china', 1), ('august', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('general', 1), ('intelligence', 1), ('agi', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('international', 3), ('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('engineering', 1), ('psychology', 1), ('cognitive', 1), ('ergonomics', 1), ('epce', 1), ('held', 1), ('part', 1), ('nd', 1), ('hci', 1), ('took', 1), ('place', 1), ('copenhagen', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('language', 1), ('technology', 1), ('conference', 1), ('challenge', 1), ('computer', 1), ('science', 1), ('linguistics', 1), ('ltc', 1), ('held', 1), ('poznan', 1), ('poland', 1), ('november', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('conference', 2), ('th', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('workshop', 1), ('multi', 1), ('agent', 1), ('based', 1), ('simulation', 1), ('mabs', 1), ('held', 1), ('auckland', 1), ('new', 1), ('zealand', 1), ('collocated', 1)]
[('international', 3), ('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('augmented', 1), ('cognition', 1), ('ac', 1), ('part', 1), ('rd', 1), ('hci', 1), ('virtual', 1), ('event', 1), ('july', 1), ('total', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('took', 1), ('place', 1), ('yantai', 1), ('china', 1), ('october', 1), ('paper', 1), ('included', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('brazilian', 1), ('conference', 1), ('intelligent', 1), ('system', 1), ('bracis', 1), ('held', 1), ('são', 1), ('paolo', 1), ('brazil', 1), ('november', 1), ('december', 1), ('nbsp', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('workshop', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ecml', 1), ('pkdd', 1), ('advanced', 1), ('analytics', 1), ('learning', 1), ('temporal', 1), ('data', 1), ('aaltd', 1), ('september', 1), ('planned', 1), ('take', 1), ('place', 1), ('bilbao', 1), ('spain', 1)]
[('nbsp', 5), ('fuzzy', 2), ('book', 1), ('introduces', 1), ('contemporary', 1), ('approach', 1), ('application', 1), ('hesitant', 1), ('set', 1), ('machine', 1), ('learning', 1), ('task', 1), ('classification', 1), ('clustering', 1)]
[('lnai', 3), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('advance', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('chengdu', 1), ('china', 1)]
[('robotics', 2), ('computer', 2), ('lecture', 1), ('provides', 1), ('introduction', 1), ('field', 1), ('mobile', 1), ('intersection', 1), ('multiple', 1), ('related', 1), ('discipline', 1), ('including', 1), ('electrical', 1), ('mechanical', 1), ('software', 1), ('engineering', 1), ('science', 1), ('intended', 1)]
[('agent', 2), ('mobile', 1), ('computing', 1), ('used', 1), ('field', 1), ('diverse', 1), ('artificial', 1), ('intelligence', 1), ('computational', 1), ('economics', 1), ('robotics', 1), ('ability', 1), ('adapt', 1), ('dynamically', 1), ('execute', 1), ('asynchronously', 1), ('autonomously', 1), ('brings', 1), ('potential', 1), ('advantage', 1), ('term', 1)]
[('distributed', 2), ('uncertainty', 2), ('understanding', 1), ('computing', 1), ('easy', 1), ('task', 1), ('due', 1), ('many', 1), ('facet', 1), ('cope', 1), ('master', 1), ('order', 1), ('produce', 1), ('correct', 1), ('software', 1), ('considering', 1), ('created', 1), ('asynchrony', 1), ('process', 1)]
[('system', 3), ('providing', 1), ('shared', 1), ('memory', 1), ('abstraction', 1), ('distributed', 1), ('powerful', 1), ('tool', 1), ('simplify', 1), ('design', 1), ('implementation', 1), ('software', 1), ('networked', 1), ('platform', 1), ('enables', 1), ('designer', 1), ('work', 1), ('abstract', 1), ('readable', 1)]
[('new', 2), ('secure', 2), ('blockchains', 2), ('practical', 1), ('book', 1), ('offer', 1), ('distributed', 1), ('computing', 1), ('fundamental', 1), ('knowledge', 1), ('individual', 1), ('connect', 1), ('another', 1), ('efficient', 1), ('way', 1), ('traditional', 1), ('form', 1), ('scalable', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('second', 1), ('international', 1), ('workshop', 1), ('future', 1), ('emerging', 1), ('trend', 1), ('language', 1), ('technology', 1), ('fetlt', 1), ('took', 1), ('place', 1), ('seville', 1), ('spain', 1), ('november', 1), ('full', 1), ('position', 1)]
[('smart', 2), ('ecosystem', 2), ('envisioned', 1), ('exchange', 1), ('analyze', 1), ('data', 1), ('across', 1), ('system', 1), ('enabling', 1), ('flexible', 1), ('faster', 1), ('reliable', 1), ('high', 1), ('quality', 1), ('result', 1), ('reduced', 1), ('cost', 1), ('little', 1), ('human', 1), ('intervention', 1), ('book', 1), ('introduces', 1), ('many', 1), ('innovative', 1)]
[('international', 2), ('workshop', 2), ('book', 1), ('represents', 1), ('combined', 1), ('peer', 1), ('reviewed', 1), ('proceeding', 1), ('seventh', 1), ('symposium', 1), ('intelligent', 1), ('distributed', 1), ('computing', 1), ('idc', 1), ('second', 1), ('agent', 1), ('cloud', 1), ('fifth', 1)]
[('monograph', 1), ('deal', 1), ('various', 1), ('visibility', 1), ('based', 1), ('path', 1), ('motion', 1), ('planning', 1), ('problem', 1), ('motivated', 1), ('real', 1), ('world', 1), ('application', 1), ('exploration', 1), ('mapping', 1), ('planetary', 1), ('surface', 1), ('environmental', 1), ('surveillance', 1), ('using', 1), ('stationary', 1), ('mobile', 1), ('robot', 1), ('imaging', 1)]
[('area', 2), ('volume', 1), ('present', 1), ('collection', 1), ('carefully', 1), ('selected', 1), ('contribution', 1), ('social', 1), ('medium', 1), ('analysis', 1), ('chapter', 1), ('open', 1), ('number', 1), ('research', 1), ('direction', 1), ('potential', 1), ('taken', 1), ('rapidly', 1), ('growing', 1)]
[('conference', 2), ('present', 1), ('book', 1), ('includes', 1), ('set', 1), ('selected', 1), ('extended', 1), ('paper', 1), ('sixth', 1), ('international', 1), ('joint', 1), ('computational', 1), ('intelligence', 1), ('ijcci', 1), ('held', 1), ('rome', 1), ('italy', 1), ('october', 1), ('composed', 1), ('three', 1), ('co', 1), ('located', 1)]
[('bookprovides', 1), ('reader', 1), ('selection', 1), ('high', 1), ('quality', 1), ('chapter', 1), ('cover', 1), ('boththeoretical', 1), ('concept', 1), ('practical', 1), ('application', 1), ('image', 1), ('feature', 1), ('detector', 1), ('anddescriptors', 1), ('serf', 1), ('reference', 1), ('researcher', 1), ('practitioner', 1), ('byfeaturing', 1)]
[('conference', 2), ('edited', 1), ('book', 1), ('present', 1), ('scientific', 1), ('result', 1), ('th', 1), ('iee', 1), ('acis', 1), ('international', 1), ('computer', 1), ('information', 1), ('science', 1), ('icis', 1), ('held', 1), ('june', 1), ('okayama', 1), ('japan', 1), ('aim', 1), ('bring', 1), ('together', 1)]
[('application', 2), ('book', 1), ('offer', 1), ('snapshot', 1), ('state', 1), ('art', 1), ('classification', 1), ('interface', 1), ('statistic', 1), ('computer', 1), ('science', 1), ('field', 1), ('contribution', 1), ('span', 1), ('broad', 1), ('spectrum', 1), ('theoretical', 1), ('development', 1), ('practical', 1)]
[('book', 2), ('based', 2), ('highlight', 1), ('ability', 1), ('neural', 1), ('network', 1), ('nns', 1), ('excellent', 1), ('pattern', 1), ('matcher', 1), ('importance', 1), ('information', 1), ('retrieval', 1), ('ir', 1), ('index', 1), ('term', 1), ('matching', 1), ('defines', 1), ('new', 1), ('nn', 1), ('method', 1), ('learning', 1), ('image', 1)]
[('twin', 2), ('twsvm', 2), ('book', 1), ('provides', 1), ('systematic', 1), ('focused', 1), ('study', 1), ('various', 1), ('aspect', 1), ('support', 1), ('vector', 1), ('machine', 1), ('related', 1), ('development', 1), ('classification', 1), ('regression', 1), ('addition', 1), ('presenting', 1), ('basic', 1), ('model', 1)]
[('algorithm', 2), ('secured', 2), ('data', 2), ('book', 1), ('proposes', 1), ('new', 1), ('ensure', 1), ('communication', 1), ('prevent', 1), ('unauthorized', 1), ('exchange', 1), ('multimedia', 1), ('system', 1), ('focusing', 1), ('numerous', 1), ('application', 1), ('scenario', 1), ('offer', 1), ('depth', 1), ('analysis', 1), ('hiding', 1)]
[('book', 2), ('research', 2), ('computer', 2), ('vision', 2), ('edited', 1), ('present', 1), ('essential', 1), ('finding', 1), ('field', 1), ('artificial', 1), ('intelligence', 1), ('primary', 1), ('focus', 1), ('new', 1), ('idea', 1), ('result', 1), ('mathematical', 1), ('problem', 1), ('involved', 1), ('system', 1)]
[('use', 2), ('business', 2), ('data', 2), ('book', 1), ('discus', 1), ('effective', 1), ('modern', 1), ('ict', 1), ('solution', 1), ('need', 1), ('including', 1), ('efficient', 1), ('resource', 1), ('decision', 1), ('support', 1), ('system', 1), ('intelligence', 1), ('mining', 1), ('advanced', 1), ('processing', 1), ('algorithm', 1)]
[('book', 1), ('describes', 1), ('novel', 1), ('ideology', 1), ('supporting', 1), ('information', 1), ('technology', 1), ('integral', 1), ('management', 1), ('civil', 1), ('defence', 1), ('orientated', 1), ('large', 1), ('distributed', 1), ('dynamic', 1), ('system', 1), ('approach', 1), ('based', 1), ('high', 1), ('level', 1), ('spatial', 1), ('grasp', 1), ('language', 1), ('sgl', 1)]
[('research', 2), ('sustainable', 2), ('unique', 1), ('book', 1), ('dicusses', 1), ('latest', 1), ('innovative', 1), ('idea', 1), ('challenge', 1), ('computational', 1), ('intelligence', 1), ('ci', 1), ('solution', 1), ('computing', 1), ('present', 1), ('novel', 1), ('depth', 1), ('fundamental', 1), ('achieving', 1), ('lifestyle', 1), ('society', 1)]
[('conference', 2), ('book', 1), ('present', 1), ('scientific', 1), ('outcome', 1), ('th', 1), ('international', 1), ('applied', 1), ('computing', 1), ('information', 1), ('technology', 1), ('acit', 1), ('held', 1), ('july', 1), ('hamamatsu', 1), ('japan', 1), ('aim', 1), ('bring', 1), ('together', 1)]
[('self', 1), ('contained', 1), ('book', 1), ('present', 1), ('framework', 1), ('solving', 1), ('general', 1), ('class', 1), ('linear', 1), ('system', 1), ('coefficient', 1), ('continuous', 1), ('function', 1), ('parameter', 1), ('varying', 1), ('within', 1), ('prescribed', 1), ('interval', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('theory', 1)]
[('book', 1), ('present', 1), ('improved', 1), ('design', 1), ('service', 1), ('provisioning', 1), ('allocation', 1), ('model', 1), ('validated', 1), ('running', 1), ('genome', 1), ('sequence', 1), ('assembly', 1), ('task', 1), ('hybrid', 1), ('cloud', 1), ('environment', 1), ('proposes', 1), ('approach', 1), ('addressing', 1), ('scheduling', 1), ('performance', 1)]
[('bgsiam', 2), ('book', 1), ('gather', 1), ('peer', 1), ('reviewed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('meeting', 1), ('bulgarian', 1), ('section', 1), ('society', 1), ('industrial', 1), ('applied', 1), ('mathematics', 1), ('held', 1), ('sofia', 1), ('bulgaria', 1), ('december', 1), ('general', 1), ('theme', 1)]
[('book', 1), ('present', 1), ('collection', 1), ('high', 1), ('quality', 1), ('research', 1), ('leading', 1), ('expert', 1), ('computer', 1), ('vision', 1), ('application', 1), ('chapter', 1), ('independently', 1), ('discus', 1), ('principle', 1), ('specific', 1), ('topic', 1), ('review', 1), ('date', 1), ('technique', 1)]
[('book', 1), ('explores', 1), ('main', 1), ('concept', 1), ('algorithm', 1), ('technique', 1), ('machine', 1), ('learning', 1), ('data', 1), ('mining', 1), ('aerospace', 1), ('technology', 1), ('satellite', 1), ('eagle', 1), ('eye', 1), ('allow', 1), ('view', 1), ('massive', 1), ('area', 1), ('earth', 1), ('simultaneously', 1), ('gather', 1)]
[('siot', 2), ('unique', 1), ('book', 1), ('discus', 1), ('selection', 1), ('highly', 1), ('relevant', 1), ('topic', 1), ('social', 1), ('internet', 1), ('thing', 1), ('including', 1), ('blockchain', 1), ('fog', 1), ('computing', 1), ('data', 1), ('fusion', 1), ('present', 1), ('numerous', 1), ('related', 1), ('application', 1), ('field', 1), ('agriculture', 1)]
[('machine', 2), ('understanding', 2), ('perception', 2), ('unique', 1), ('book', 1), ('discus', 1), ('mu', 1), ('new', 1), ('branch', 1), ('classic', 1), ('research', 1), ('focus', 1), ('lead', 1), ('based', 1), ('category', 1), ('sensory', 1), ('object', 1), ('approach', 1), ('visual', 1)]
[('intelligence', 2), ('past', 1), ('year', 1), ('artificial', 1), ('grown', 1), ('academic', 1), ('field', 1), ('research', 1), ('ubiquitous', 1), ('array', 1), ('tool', 1), ('used', 1), ('everyday', 1), ('technology', 1), ('despite', 1), ('many', 1), ('recent', 1), ('success', 1), ('certain', 1), ('meaningful', 1), ('facet', 1), ('computational', 1)]
[('machine', 2), ('learning', 2), ('cognitive', 2), ('science', 2), ('book', 1), ('discus', 1), ('various', 1), ('approach', 1), ('presenting', 1), ('high', 1), ('throughput', 1), ('research', 1), ('expert', 1), ('area', 1), ('bringing', 1), ('together', 1), ('aspect', 1), ('artificial', 1), ('intelligence', 1), ('help', 1)]
[('book', 1), ('contains', 1), ('chapter', 1), ('researcher', 1), ('working', 1), ('various', 1), ('field', 1), ('data', 1), ('science', 1), ('focus', 1), ('theory', 1), ('application', 1), ('language', 1), ('technology', 1), ('optimization', 1), ('computational', 1), ('thinking', 1), ('intelligent', 1), ('decision', 1), ('support', 1), ('system', 1), ('decomposition', 1)]
[('book', 1), ('gather', 1), ('selection', 1), ('invited', 1), ('contributed', 1), ('lecture', 1), ('european', 1), ('conference', 1), ('numerical', 1), ('mathematics', 1), ('advanced', 1), ('application', 1), ('enumath', 1), ('held', 1), ('lausanne', 1), ('switzerland', 1), ('august', 1), ('provides', 1), ('overview', 1), ('recent', 1)]
[('book', 1), ('explores', 1), ('cybersecurity', 1), ('research', 1), ('development', 1), ('effort', 1), ('including', 1), ('idea', 1), ('deal', 1), ('growing', 1), ('challenge', 1), ('computing', 1), ('engineering', 1), ('merge', 1), ('neuroscience', 1), ('contributing', 1), ('author', 1), ('renowned', 1), ('leader', 1), ('field', 1)]
[('contribution', 1), ('written', 1), ('foremost', 1), ('international', 1), ('researcher', 1), ('practitioner', 1), ('genetic', 1), ('programming', 1), ('gp', 1), ('explore', 1), ('synergy', 1), ('theoretical', 1), ('empirical', 1), ('result', 1), ('real', 1), ('world', 1), ('problem', 1), ('producing', 1), ('comprehensive', 1), ('view', 1), ('state', 1)]
[('work', 2), ('book', 1), ('aim', 1), ('deconstruct', 1), ('ethnography', 1), ('alert', 1), ('system', 1), ('designer', 1), ('stakeholder', 1), ('issue', 1), ('presented', 1), ('new', 1), ('approach', 1), ('move', 1), ('beyond', 1), ('study', 1), ('practice', 1), ('within', 1), ('social', 1), ('science', 1), ('particular', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('product', 1), ('lifecycle', 1), ('management', 1), ('plm', 1), ('held', 1), ('doha', 1), ('qatar', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('research', 2), ('platform', 2), ('serving', 1), ('flagship', 1), ('driver', 1), ('towards', 1), ('advance', 1), ('area', 1), ('big', 1), ('data', 1), ('application', 1), ('book', 1), ('provides', 1), ('dissemination', 1), ('advanced', 1), ('topic', 1), ('theory', 1), ('effort', 1), ('analysis', 1), ('implementation', 1), ('oriented', 1)]
[('information', 2), ('day', 2), ('infrastructure', 1), ('comprising', 1), ('computer', 1), ('embedded', 1), ('device', 1), ('network', 1), ('software', 1), ('system', 1), ('vital', 1), ('operation', 1), ('every', 1), ('sector', 1), ('telecommunication', 1), ('banking', 1), ('finance', 1), ('energy', 1), ('chemical', 1), ('hazardous', 1)]
[('ifip', 2), ('conference', 2), ('volume', 1), ('aict', 1), ('constitute', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('wg', 1), ('international', 1), ('computer', 1), ('computing', 1), ('technology', 1), ('agriculture', 1), ('ccta', 1), ('held', 1), ('beijing', 1), ('china', 1), ('september', 1)]
[('network', 2), ('analysis', 2), ('social', 2), ('research', 1), ('monograph', 1), ('provides', 1), ('mean', 1), ('learn', 1), ('theory', 1), ('practice', 1), ('graph', 1), ('using', 1), ('python', 1), ('programming', 1), ('language', 1), ('technique', 1), ('included', 1), ('help', 1), ('reader', 1), ('efficiently', 1), ('analyze', 1), ('data', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('world', 1), ('information', 1), ('technology', 1), ('forum', 1), ('witfor', 1), ('san', 1), ('josé', 1), ('costa', 1), ('rica', 1), ('september', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('selfie', 2), ('authentication', 2), ('book', 1), ('highlight', 1), ('field', 1), ('biometrics', 1), ('providing', 1), ('clear', 1), ('overview', 1), ('presenting', 1), ('recent', 1), ('advance', 1), ('challenge', 1), ('discus', 1), ('numerous', 1), ('technique', 1), ('mobile', 1), ('device', 1), ('nbsp', 1), ('biometric', 1), ('using', 1)]
[('modern', 1), ('cryptosystems', 1), ('used', 1), ('numerous', 1), ('application', 1), ('require', 1), ('secrecy', 1), ('privacy', 1), ('electronic', 1), ('mail', 1), ('financial', 1), ('transaction', 1), ('medical', 1), ('record', 1), ('keeping', 1), ('government', 1), ('affair', 1), ('social', 1), ('medium', 1), ('etc', 1), ('based', 1), ('sophisticated', 1), ('mathematics', 1), ('algorithm', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('ifip', 1), ('international', 1), ('cross', 1), ('domain', 1), ('internet', 1), ('thing', 1), ('ifipiot', 1), ('held', 1), ('tampa', 1), ('usa', 1), ('october', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('theoretically', 1), ('practically', 1), ('update', 1), ('major', 1), ('economic', 1), ('idea', 1), ('demand', 1), ('supply', 1), ('rational', 1), ('choice', 1), ('expectation', 1), ('bounded', 1), ('rationality', 1), ('behavioral', 1), ('economics', 1), ('information', 1), ('asymmetry', 1), ('pricing', 1), ('efficient', 1), ('market', 1), ('hypothesis', 1), ('game', 1), ('theory', 1)]
[('system', 2), ('future', 1), ('technical', 1), ('companion', 1), ('competent', 1), ('assistant', 1), ('provide', 1), ('functionality', 1), ('completely', 1), ('individualized', 1), ('way', 1), ('adapting', 1), ('user', 1), ('capability', 1), ('preference', 1), ('requirement', 1), ('current', 1), ('need', 1), ('taking', 1), ('account', 1)]
[('book', 1), ('systematically', 1), ('address', 1), ('design', 1), ('analysis', 1), ('efficient', 1), ('technique', 1), ('independent', 1), ('random', 1), ('sampling', 1), ('general', 1), ('purpose', 1), ('approach', 1), ('used', 1), ('generate', 1), ('sample', 1), ('arbitrary', 1), ('probability', 1), ('distribution', 1), ('tailored', 1)]
[('machine', 2), ('learning', 2), ('evolutionary', 1), ('advancement', 1), ('ml', 1), ('algorithm', 1), ('rapid', 1), ('increase', 1), ('data', 1), ('volume', 1), ('significant', 1), ('improvement', 1), ('computation', 1), ('power', 1), ('becomes', 1), ('hot', 1), ('different', 1), ('application', 1), ('nature', 1)]
[('book', 2), ('present', 2), ('theoretical', 1), ('foundation', 1), ('system', 1), ('biology', 1), ('application', 1), ('study', 1), ('human', 1), ('host', 1), ('pathogen', 1), ('associated', 1), ('disease', 1), ('several', 1), ('chapter', 1), ('written', 1), ('renowned', 1), ('expert', 1), ('field', 1), ('topic', 1)]
[('harassment', 2), ('social', 2), ('medium', 2), ('online', 1), ('serious', 1), ('problem', 1), ('address', 1), ('requires', 1), ('understanding', 1), ('form', 1), ('take', 1), ('impact', 1), ('target', 1), ('harasses', 1), ('technology', 1), ('stand', 1), ('user', 1)]
[('th', 2), ('ifip', 2), ('computer', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('tc', 1), ('nbsp', 1), ('international', 1), ('conference', 1), ('human', 1), ('choice', 1), ('hcc', 1), ('held', 1), ('world', 1), ('congress', 1), ('wcc', 1), ('poznan', 1), ('poland', 1), ('september', 1)]
[('volume', 1), ('present', 1), ('peer', 1), ('reviewed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('imaging', 1), ('vision', 1), ('learning', 1), ('based', 1), ('optimization', 1), ('pdes', 1), ('ivlopde', 1), ('held', 1), ('bergen', 1), ('norway', 1), ('august', 1), ('september', 1), ('contribution', 1), ('cover', 1), ('state', 1), ('art', 1)]
[('nbsp', 3), ('working', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('smart', 1), ('living', 1), ('organising', 1), ('transfer', 1), ('diffusion', 1), ('tdit', 1), ('held', 1), ('portsmouth', 1), ('uk', 1), ('june', 1)]
[('ifip', 2), ('volume', 1), ('set', 1), ('aict', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('wg', 1), ('international', 1), ('working', 1), ('conference', 1), ('imagining', 1), ('diffusion', 1), ('adoption', 1), ('information', 1), ('technology', 1), ('system', 1), ('continuing', 1), ('conversation', 1)]
[('analysis', 2), ('learning', 2), ('book', 1), ('cover', 1), ('research', 1), ('area', 1), ('multiple', 1), ('viewpoint', 1), ('including', 1), ('bibliometric', 1), ('review', 1), ('empirical', 1), ('platform', 1), ('future', 1), ('application', 1), ('centralized', 1), ('training', 1), ('deep', 1), ('machine', 1), ('model', 1), ('incurs', 1)]
[('paper', 2), ('academy', 2), ('book', 1), ('collection', 1), ('devoted', 1), ('emergence', 1), ('development', 1), ('bulgarian', 1), ('science', 1), ('area', 1), ('informatics', 1), ('including', 1), ('artificial', 1), ('intelligence', 1), ('prepared', 1), ('specialist', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('computer', 1), ('science', 1), ('protecting', 1), ('human', 1), ('society', 1), ('epidemic', 1), ('anticovid', 1), ('held', 1), ('virtually', 1), ('june', 1), ('full', 1), ('short', 1)]
[('book', 1), ('provides', 1), ('review', 1), ('advanced', 1), ('topic', 1), ('relating', 1), ('theory', 1), ('research', 1), ('analysis', 1), ('implementation', 1), ('context', 1), ('big', 1), ('data', 1), ('platform', 1), ('application', 1), ('focus', 1), ('method', 1), ('technique', 1), ('performance', 1), ('evaluation', 1)]
[('study', 2), ('land', 2), ('lulc', 2), ('dynamic', 2), ('water', 2), ('book', 1), ('focus', 1), ('application', 1), ('geospatial', 1), ('technology', 1), ('use', 1), ('cover', 1), ('agricultural', 1), ('management', 1), ('resource', 1), ('assessment', 1), ('modeling', 1), ('natural', 1), ('disaster', 1)]
[('information', 1), ('infrastructure', 1), ('comprising', 1), ('computer', 1), ('embedded', 1), ('device', 1), ('network', 1), ('software', 1), ('system', 1), ('vital', 1), ('operation', 1), ('every', 1), ('sector', 1), ('chemical', 1), ('commercial', 1), ('facility', 1), ('communication', 1), ('critical', 1), ('manufacturing', 1), ('dam', 1), ('defense', 1), ('industrial', 1)]
[('book', 2), ('research', 2), ('nbsp', 2), ('discus', 1), ('summarizes', 1), ('current', 1), ('issue', 1), ('identifies', 1), ('challenge', 1), ('outline', 1), ('future', 1), ('direction', 1), ('proactive', 1), ('dynamic', 1), ('network', 1), ('defense', 1), ('present', 1), ('latest', 1), ('fundamental', 1), ('result', 1), ('toward', 1)]
[('ict', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('working', 1), ('conference', 1), ('unbounded', 1), ('social', 1), ('impact', 1), ('bright', 1), ('adoption', 1), ('transfer', 1), ('diffusion', 1), ('tdit', 1), ('held', 1), ('accra', 1), ('ghana', 1), ('june', 1)]
[('computational', 2), ('book', 1), ('collect', 1), ('final', 1), ('version', 1), ('highest', 1), ('quality', 1), ('paper', 1), ('presented', 1), ('conference', 1), ('th', 1), ('european', 1), ('symposium', 1), ('intelligence', 1), ('mathematics', 1), ('held', 1), ('october', 1), ('toledo', 1), ('spain', 1), ('conjugation', 1)]
[('approximation', 2), ('neural', 2), ('network', 2), ('function', 2), ('book', 1), ('generalization', 1), ('modernization', 1), ('operator', 1), ('banach', 1), ('space', 1), ('valued', 1), ('induced', 1), ('variety', 1), ('activation', 1)]
[('ai', 3), ('multimodal', 2), ('book', 1), ('aim', 1), ('highlight', 1), ('latest', 1), ('achievement', 1), ('use', 1), ('artificial', 1), ('intelligence', 1), ('biomedicine', 1), ('healthcare', 1), ('relatively', 1), ('new', 1), ('concept', 1), ('different', 1), ('type', 1), ('data', 1), ('text', 1), ('image', 1), ('video', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('information', 1), ('search', 1), ('integration', 1), ('personalization', 1), ('isip', 1), ('held', 1), ('kuala', 1), ('lumpur', 1), ('malaysia', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('invited', 1)]
[('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('ten', 1), ('held', 1), ('innsbruck', 1), ('austria', 1), ('conjunction', 1), ('th', 1), ('conference', 1), ('business', 1), ('process', 1), ('management', 1), ('bpm', 1), ('september', 1), ('seven', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nbsp', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('society', 1), ('wi', 1), ('held', 1), ('tampere', 1), ('finland', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('digital', 1), ('transformation', 1), ('global', 1), ('society', 1), ('dtgs', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('june', 1), ('full', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('workshop', 1), ('engineering', 1), ('application', 1), ('wea', 1), ('held', 1), ('bogotá', 1), ('colombia', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('network', 1), ('cn', 1), ('held', 1), ('brunów', 1), ('poland', 1), ('june', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('contains', 1), ('selection', 1), ('best', 1), ('paper', 1), ('presented', 1), ('th', 1), ('edition', 1), ('annual', 1), ('benelux', 1), ('artificial', 1), ('intelligence', 1), ('bnaic', 1), ('took', 1), ('place', 1), ('november', 1), ('hotel', 1), ('casa', 1), ('amsterdam', 1)]
[('system', 2), ('technology', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('information', 1), ('webist', 1), ('held', 1), ('rome', 1), ('italy', 1), ('april', 1), ('organized', 1), ('institute', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('information', 1), ('software', 1), ('technology', 1), ('icist', 1), ('held', 1), ('druskininkai', 1), ('lithuania', 1), ('october', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('engineering', 1), ('semantic', 1), ('web', 1), ('kesw', 1), ('held', 1), ('szczecin', 1), ('poland', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('th', 2), ('semantic', 2), ('web', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('edition', 1), ('evaluation', 1), ('challenge', 1), ('semwebeval', 1), ('co', 1), ('located', 1), ('european', 1), ('held', 1), ('portoroz', 1), ('slovenia', 1)]
[('paper', 3), ('revised', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('natural', 1), ('language', 1), ('ainl', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('september', 1), ('full', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('nooj', 1), ('held', 1), ('kenitra', 1), ('rabat', 1), ('morocco', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('international', 3), ('workshop', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('paper', 1), ('eleven', 1), ('held', 1), ('th', 1), ('conference', 1), ('business', 1), ('process', 1), ('management', 1), ('bpm', 1), ('barcelona', 1), ('spain', 1), ('september', 1), ('bpai', 1), ('st', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('workshop', 1), ('new', 1), ('frontier', 1), ('quantitative', 1), ('method', 1), ('informatics', 1), ('infq', 1), ('held', 1), ('venice', 1), ('italy', 1), ('december', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('processing', 1), ('management', 1), ('uncertainty', 1), ('knowledge', 1), ('based', 1), ('system', 1), ('ipmu', 1), ('held', 1), ('cádiz', 1), ('spain', 1), ('june', 1), ('revised', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifsa', 1), ('conference', 1), ('nafips', 1), ('held', 1), ('fortaleza', 1), ('brazil', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('th', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('information', 1), ('technology', 1), ('mathematical', 1), ('modelling', 1), ('itmm', 1), ('nbsp', 1), ('named', 1), ('terpugov', 1), ('workshop', 1), ('retrial', 1), ('queue', 1), ('related', 1), ('topic', 1), ('held', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('distributed', 1), ('computer', 1), ('communication', 1), ('network', 1), ('dccn', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('september', 1), ('full', 1), ('short', 1)]
[('eomas', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('enterprise', 1), ('organizational', 1), ('modeling', 1), ('simulation', 1), ('held', 1), ('tallinn', 1), ('estonia', 1), ('june', 1), ('main', 1), ('focus', 1), ('role', 1), ('importance', 1)]
[('ccis', 2), ('nbsp', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('workshop', 1), ('engineering', 1), ('application', 1), ('wea', 1), ('held', 1), ('medellín', 1), ('colombia', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('process', 1), ('improvement', 1), ('capability', 1), ('determination', 1), ('spice', 1), ('held', 1), ('tessaloniki', 1), ('greece', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('ccis', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('digital', 1), ('transformation', 1), ('global', 1), ('society', 1), ('dtgs', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('june', 1), ('nbsp', 1), ('revised', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('big', 1), ('social', 1), ('data', 1), ('urban', 1), ('computing', 1), ('workshop', 1), ('bidu', 1), ('held', 1), ('rio', 1), ('de', 1), ('janeiro', 1), ('brazil', 1), ('august', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('revised', 1), ('paper', 1), ('seven', 1), ('workshop', 1), ('accompanying', 1), ('event', 1), ('took', 1), ('place', 1), ('st', 1), ('international', 1), ('conference', 1), ('business', 1), ('information', 1), ('system', 1), ('bi', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('july', 1), ('overall', 1), ('across', 1)]
[('workload', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('symposium', 1), ('human', 1), ('mental', 1), ('model', 1), ('application', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 2), ('selected', 2), ('constitutes', 1), ('revised', 1), ('paper', 1), ('th', 1), ('international', 1), ('global', 1), ('sourcing', 1), ('workshop', 1), ('held', 1), ('la', 1), ('thuile', 1), ('italy', 1), ('february', 1), ('contribution', 1), ('included', 1), ('carefully', 1), ('reviewed', 1), ('submission', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('conference', 1), ('operation', 1), ('research', 1), ('enterprise', 1), ('system', 1), ('icores', 1), ('held', 1), ('funchal', 1), ('madeira', 1), ('portugal', 1), ('january', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('latin', 1), ('american', 1), ('conference', 1), ('carla', 1), ('held', 1), ('bucaramanga', 1), ('colombia', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('nbsp', 4), ('december', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('gerotechnology', 1), ('iwog', 1), ('held', 1), ('cáceres', 1), ('spain', 1), ('évora', 1), ('portugal', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('representation', 1), ('analysis', 1), ('recognition', 1), ('shape', 1), ('motion', 1), ('imaging', 1), ('data', 1), ('rfmi', 1), ('held', 1), ('savoi', 1), ('france', 1), ('december', 1), ('revised', 1), ('full', 1)]
[('business', 2), ('web', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('workshop', 1), ('took', 1), ('place', 1), ('santa', 1), ('clara', 1), ('ca', 1), ('usa', 1), ('december', 1), ('purpose', 1), ('provide', 1), ('open', 1), ('forum', 1), ('researcher', 1), ('practitioner', 1)]
[('data', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('management', 1), ('technology', 1), ('application', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('computer', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('joint', 1), ('conference', 1), ('vision', 1), ('imaging', 1), ('graphic', 1), ('theory', 1), ('application', 1), ('visigrapp', 1), ('held', 1), ('funchal', 1), ('madeira', 1), ('portugal', 1), ('january', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('cloud', 1), ('computing', 1), ('big', 1), ('data', 1), ('jcc', 1), ('bd', 1), ('held', 1), ('la', 1), ('plata', 1), ('buenos', 1), ('aire', 1), ('argentina', 1), ('june', 1), ('full', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('data', 3), ('contemporary', 1), ('design', 1), ('practice', 1), ('known', 1), ('sonification', 1), ('allows', 1), ('experience', 1), ('information', 1), ('listening', 1), ('understand', 1), ('source', 1), ('way', 1), ('support', 1), ('case', 1), ('surpass', 1), ('ability', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('italian', 1), ('research', 1), ('conference', 1), ('digital', 1), ('library', 1), ('ircdl', 1), ('held', 1), ('bari', 1), ('italy', 1), ('january', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('conference', 1), ('medical', 1), ('image', 1), ('understanding', 1), ('analysis', 1), ('miua', 1), ('held', 1), ('liverpool', 1), ('uk', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('associated', 1), ('nd', 1), ('conference', 1), ('advanced', 1), ('information', 1), ('system', 1), ('engineering', 1), ('caise', 1), ('planned', 1), ('take', 1), ('place', 1), ('grenoble', 1)]
[('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('processing', 1), ('management', 1), ('uncertainty', 1), ('knowledge', 1), ('based', 1), ('system', 1), ('ipmu', 1), ('june', 1), ('nbsp', 1), ('scheduled', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('business', 1), ('information', 1), ('system', 1), ('bi', 1), ('planned', 1), ('take', 1), ('place', 1), ('colorado', 1), ('spring', 1), ('co', 1), ('usa', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('held', 1), ('fully', 1), ('online', 1)]
[('adbis', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('short', 1), ('paper', 1), ('th', 1), ('european', 1), ('conference', 1), ('advance', 1), ('database', 1), ('information', 1), ('system', 1), ('august', 1), ('lyon', 1), ('france', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('workshop', 2), ('st', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('dependable', 1), ('computing', 1), ('conference', 1), ('edcc', 1), ('articial', 1), ('intelligence', 1), ('railway', 1), ('ai', 1), ('rail', 1), ('worskhop', 1), ('dynamic', 1), ('risk', 1), ('management', 1), ('autonomous', 1)]
[('information', 2), ('book', 1), ('present', 1), ('comprehensive', 1), ('mathematical', 1), ('theory', 1), ('explains', 1), ('precisely', 1), ('flow', 1), ('assessed', 1), ('quantitatively', 1), ('bringing', 1), ('precise', 1), ('meaning', 1), ('intuition', 1), ('certain', 1), ('leak', 1), ('small', 1), ('enough', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('cloud', 1), ('computing', 1), ('big', 1), ('data', 1), ('emerging', 1), ('topic', 1), ('jcc', 1), ('bd', 1), ('et', 1), ('held', 1), ('la', 1), ('plata', 1), ('argentina', 1), ('september', 1), ('full', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('poster', 1), ('paper', 1), ('presented', 1), ('nd', 1), ('international', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('july', 1), ('planned', 1), ('take', 1), ('place', 1), ('copenhagen', 1), ('denmark', 1), ('change', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('memory', 1), ('prof', 1), ('raffaele', 1), ('santamaria', 1), ('geomatics', 1), ('research', 1), ('result', 1), ('review', 1), ('geo', 1), ('held', 1), ('naples', 1), ('italy', 1), ('october', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('communication', 1), ('computing', 1), ('technology', 1), ('icicct', 1), ('held', 1), ('new', 1), ('delhi', 1), ('india', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('software', 1), ('technology', 1), ('icist', 1), ('held', 1), ('kaunas', 1), ('lithuania', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('first', 1), ('international', 1), ('workshop', 1), ('deceptive', 1), ('ai', 1), ('deceptecai', 1), ('held', 1), ('conjunction', 1), ('th', 1), ('european', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ecai', 1), ('santiago', 1), ('de', 1), ('compostela', 1), ('spain', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('biomedical', 1), ('engineering', 1), ('system', 1), ('technology', 1), ('biostec', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('january', 1), ('revised', 1), ('full', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('thefirst', 1), ('rapid', 1), ('mashup', 1), ('challenge', 1), ('rmc', 1), ('held', 1), ('june', 1), ('inrotterdam', 1), ('netherlands', 1), ('conjunction', 1), ('th', 1), ('conferenceon', 1), ('web', 1), ('engineering', 1), ('icwe', 1)]
[('workshop', 2), ('held', 2), ('th', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('paper', 1), ('six', 1), ('international', 1), ('conference', 1), ('business', 1), ('information', 1), ('system', 1), ('bi', 1), ('leipzig', 1), ('germany', 1), ('july', 1), ('included', 1), ('volume', 1)]
[('enterprise', 2), ('increasing', 1), ('penetration', 1), ('organization', 1), ('call', 1), ('integrative', 1), ('perspective', 1), ('supporting', 1), ('information', 1), ('system', 1), ('merode', 1), ('offer', 1), ('intuitive', 1), ('practical', 1), ('approach', 1), ('modelling', 1), ('using', 1), ('model', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('icst', 1), ('digital', 1), ('forensics', 1), ('cyber', 1), ('crime', 1), ('icdf', 1), ('held', 1), ('september', 1), ('moscow', 1), ('russia', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('infrastructure', 1), ('service', 1), ('developing', 1), ('country', 1), ('africomm', 1), ('held', 1), ('kampala', 1), ('uganda', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('fourth', 1), ('international', 1), ('conference', 1), ('art', 1), ('technology', 1), ('artsit', 1), ('held', 1), ('istanbul', 1), ('turkey', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('cognitive', 1), ('radio', 1), ('oriented', 1), ('wireless', 1), ('network', 1), ('crowncom', 1), ('held', 1), ('doha', 1), ('qatar', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('security', 1), ('privacy', 1), ('communication', 1), ('network', 1), ('securecomm', 1), ('held', 1), ('beijing', 1), ('china', 1), ('september', 1), ('regular', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cloud', 1), ('computing', 1), ('cloudcomp', 1), ('held', 1), ('nbsp', 1), ('daejeon', 1), ('south', 1), ('korea', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('testbeds', 1), ('research', 1), ('infrastructure', 1), ('development', 1), ('network', 1), ('community', 1), ('tridentcom', 1), ('held', 1), ('hangzhou', 1), ('china', 1), ('june', 1), ('paper', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('sensor', 1), ('system', 1), ('software', 1), ('cube', 1), ('held', 1), ('sophia', 1), ('antipolis', 1), ('nice', 1), ('france', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('machine', 1), ('learning', 1), ('intelligent', 1), ('communication', 1), ('mlicom', 1), ('held', 1), ('weihai', 1), ('china', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('machine', 1), ('learning', 1), ('intelligent', 1), ('communication', 1), ('mlicom', 1), ('held', 1), ('weihai', 1), ('china', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('quality', 1), ('reliability', 1), ('security', 1), ('robustness', 1), ('heterogeneous', 1), ('network', 1), ('qshine', 1), ('held', 1), ('dalian', 1), ('china', 1), ('december', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('mobile', 1), ('network', 1), ('management', 1), ('monami', 1), ('held', 1), ('melbourne', 1), ('australia', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('collaborative', 1), ('computing', 1), ('networking', 1), ('application', 1), ('worksharing', 1), ('collaboratecom', 1), ('held', 1), ('edinburgh', 1), ('uk', 1), ('december', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('conference', 1), ('cognitive', 1), ('radio', 1), ('oriented', 1), ('wireless', 1), ('network', 1), ('crowncom', 1), ('held', 1), ('ghent', 1), ('belgium', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('eai', 1), ('international', 1), ('conference', 1), ('security', 1), ('privacy', 1), ('new', 1), ('computing', 1), ('environment', 1), ('spnce', 1), ('held', 1), ('tianjin', 1), ('china', 1), ('april', 1), ('full', 1), ('paper', 1), ('selected', 1), ('submission', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('thinternational', 1), ('security', 1), ('privacy', 1), ('communication', 1), ('network', 1), ('securecomm', 1), ('held', 1), ('orlando', 1), ('fl', 1), ('usa', 1), ('october', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('eai', 1), ('international', 1), ('conference', 1), ('smart', 1), ('grid', 1), ('internet', 1), ('thing', 1), ('sgiot', 1), ('held', 1), ('taichung', 1), ('taiwan', 1), ('november', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 3), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('green', 1), ('energy', 1), ('networking', 1), ('greenets', 1), ('harbin', 1), ('china', 1), ('june', 1), ('due', 1), ('vovid', 1), ('pandemic', 1), ('virtually', 1)]
[('conference', 3), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('mobile', 1), ('network', 1), ('management', 1), ('monami', 1), ('chiba', 1), ('japan', 1), ('november', 1), ('virtually', 1), ('due', 1), ('covid', 1)]
[('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('collaborative', 1), ('computing', 1), ('networking', 1), ('application', 1), ('worksharing', 1), ('collaboratecom', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('october', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('machine', 1), ('learning', 1), ('intelligent', 1), ('communication', 1), ('mlicom', 1), ('held', 1), ('shenzhen', 1), ('china', 1), ('september', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('conference', 1), ('industrial', 1), ('network', 1), ('intelligent', 1), ('system', 1), ('iniscom', 1), ('held', 1), ('hanoi', 1), ('vietnam', 1), ('april', 1), ('full', 1), ('paper', 1), ('selected', 1), ('xx', 1), ('submission', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('quality', 1), ('reliability', 1), ('security', 1), ('robustness', 1), ('heterogeneous', 1), ('network', 1), ('qshine', 1), ('held', 1), ('november', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('conference', 2), ('held', 2), ('volume', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('multimedia', 1), ('technology', 1), ('enhanced', 1), ('learning', 1), ('icmtel', 1), ('april', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('cloud', 1), ('computing', 1), ('cloudcomp', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('future', 1), ('wireless', 1), ('network', 1), ('gn', 1), ('held', 1), ('huizhou', 1), ('china', 1), ('october', 1), ('full', 1), ('paper', 1), ('selected', 1), ('submission', 1), ('present', 1), ('state', 1), ('art', 1)]
[('social', 2), ('analysis', 2), ('method', 2), ('book', 1), ('address', 1), ('challenge', 1), ('network', 1), ('medium', 1), ('term', 1), ('prediction', 1), ('inference', 1), ('chapter', 1), ('collected', 1), ('tackle', 1), ('issue', 1), ('proposing', 1), ('new', 1), ('examining', 1), ('mining', 1), ('vast', 1)]
[('smart', 2), ('learning', 2), ('book', 1), ('gather', 1), ('selection', 1), ('article', 1), ('accepted', 1), ('presentation', 1), ('discussion', 1), ('nd', 1), ('international', 1), ('conference', 1), ('ecosystem', 1), ('regional', 1), ('development', 1), ('slerd', 1), ('held', 1), ('june', 1), ('characterizes', 1)]
[('signal', 3), ('book', 1), ('proposes', 1), ('neural', 1), ('network', 1), ('algorithm', 1), ('advanced', 1), ('machine', 1), ('learning', 1), ('technique', 1), ('processing', 1), ('nonlinear', 1), ('dynamic', 1), ('audio', 1), ('speech', 1), ('financial', 1), ('feedback', 1), ('loop', 1), ('waveform', 1), ('generation', 1), ('filtering', 1), ('equalization', 1)]
[('quantum', 3), ('book', 1), ('describes', 1), ('broad', 1), ('research', 1), ('program', 1), ('communication', 1), ('cryptographic', 1), ('key', 1), ('exchanged', 1), ('party', 1), ('using', 1), ('state', 1), ('light', 1), ('security', 1), ('system', 1), ('arises', 1), ('fundamental', 1), ('property', 1)]
[('deep', 2), ('book', 1), ('present', 1), ('broad', 1), ('range', 1), ('learning', 1), ('application', 1), ('related', 1), ('vision', 1), ('natural', 1), ('language', 1), ('processing', 1), ('gene', 1), ('expression', 1), ('arbitrary', 1), ('object', 1), ('recognition', 1), ('driverless', 1), ('car', 1), ('semantic', 1), ('image', 1), ('segmentation', 1), ('visual', 1), ('residual', 1), ('abstraction', 1)]
[('book', 1), ('introduces', 1), ('basic', 1), ('concept', 1), ('fuzzy', 1), ('collaborative', 1), ('forecasting', 1), ('clustering', 1), ('including', 1), ('methodology', 1), ('system', 1), ('architecture', 1), ('application', 1), ('demonstrates', 1), ('dealing', 1), ('disparate', 1), ('data', 1), ('source', 1), ('becoming', 1), ('popular', 1)]
[('test', 2), ('book', 1), ('discus', 1), ('captcha', 1), ('completely', 1), ('automated', 1), ('public', 1), ('turing', 1), ('tell', 1), ('computer', 1), ('human', 1), ('apart', 1), ('artificial', 1), ('intelligence', 1), ('based', 1), ('commonly', 1), ('used', 1), ('website', 1), ('preventing', 1), ('security', 1), ('attack', 1), ('covering', 1), ('foundation', 1), ('main', 1)]
[('computational', 2), ('book', 1), ('discus', 1), ('geometry', 1), ('topology', 1), ('physic', 1), ('digital', 1), ('image', 1), ('video', 1), ('frame', 1), ('sequence', 1), ('trio', 1), ('approach', 1), ('encompasses', 1), ('study', 1), ('shape', 1), ('complex', 1), ('optical', 1), ('vortex', 1), ('nerve', 1), ('proximity', 1), ('embedded', 1)]
[('technology', 2), ('book', 1), ('illustrates', 1), ('rapid', 1), ('pace', 1), ('development', 1), ('intelligent', 1), ('assistive', 1), ('recent', 1), ('year', 1), ('highlight', 1), ('salient', 1), ('example', 1), ('using', 1), ('modern', 1), ('provide', 1), ('device', 1), ('system', 1), ('application', 1), ('software', 1), ('person', 1)]
[('book', 1), ('related', 1), ('educational', 1), ('networking', 1), ('en', 1), ('domain', 1), ('incipient', 1), ('disrupting', 1), ('trend', 1), ('engaged', 1), ('extending', 1), ('improving', 1), ('formal', 1), ('informal', 1), ('academic', 1), ('practice', 1), ('mean', 1), ('support', 1), ('given', 1), ('online', 1), ('social', 1), ('network', 1), ('osns', 1), ('web', 1)]
[('book', 1), ('make', 1), ('application', 1), ('dynamic', 1), ('arousal', 1), ('distraction', 1), ('example', 1), ('modified', 1), ('version', 1), ('kadanoff', 1), ('picture', 1), ('phase', 1), ('transition', 1), ('consciousness', 1), ('emerges', 1), ('morse', 1), ('function', 1), ('surprisingly', 1), ('standard', 1)]
[('th', 2), ('thisvolume', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('ictis', 1), ('international', 1), ('conference', 1), ('oninformation', 1), ('communication', 1), ('technology', 1), ('intelligent', 1), ('system', 1), ('conferencewas', 1), ('held', 1), ('november', 1), ('ahmedabad', 1), ('india', 1), ('organized', 1)]
[('ci', 2), ('volume', 1), ('discus', 1), ('underlying', 1), ('principle', 1), ('analysis', 1), ('different', 1), ('concept', 1), ('associated', 1), ('emerging', 1), ('socio', 1), ('inspired', 1), ('optimization', 1), ('tool', 1), ('referred', 1), ('cohort', 1), ('intelligence', 1), ('algorithm', 1), ('coded', 1), ('matlab', 1), ('freely', 1)]
[('conference', 2), ('volume', 1), ('smart', 1), ('innovation', 1), ('system', 1), ('technology', 1), ('contains', 1), ('accepted', 1), ('paper', 1), ('presented', 1), ('iih', 1), ('msp', 1), ('th', 1), ('international', 1), ('intelligent', 1), ('information', 1), ('hiding', 1), ('multimedia', 1), ('signal', 1), ('processing', 1), ('year', 1)]
[('uloop', 2), ('user', 2), ('centric', 2), ('wireless', 2), ('work', 1), ('represents', 1), ('milestone', 1), ('local', 1), ('loop', 1), ('project', 1), ('funded', 1), ('eu', 1), ('ist', 1), ('seventh', 1), ('framework', 1), ('programme', 1), ('focused', 1), ('robust', 1), ('secure', 1), ('autonomic', 1), ('deployment', 1), ('network', 1)]
[('harmony', 2), ('search', 2), ('brief', 1), ('provides', 1), ('detailed', 1), ('introduction', 1), ('discussion', 1), ('bibliographic', 1), ('review', 1), ('nature', 1), ('inspired', 1), ('optimization', 1), ('algorithm', 1), ('called', 1), ('us', 1), ('large', 1), ('number', 1), ('simulation', 1), ('result', 1), ('demonstrate', 1), ('advantage', 1)]
[('random', 2), ('statistical', 2), ('short', 1), ('book', 1), ('provides', 1), ('unified', 1), ('view', 1), ('history', 1), ('theory', 1), ('set', 1), ('fuzzy', 1), ('variable', 1), ('special', 1), ('emphasis', 1), ('use', 1), ('representing', 1), ('higher', 1), ('order', 1), ('non', 1), ('uncertainty', 1), ('experiment', 1), ('author', 1), ('lay', 1)]
[('cwns', 3), ('brief', 2), ('cognitive', 2), ('examines', 1), ('current', 1), ('research', 1), ('wireless', 1), ('network', 1), ('along', 1), ('review', 1), ('challenge', 1), ('present', 1), ('novel', 1), ('theoretical', 1), ('study', 1), ('architecture', 1), ('model', 1), ('advance', 1), ('information', 1)]
[('work', 1), ('address', 1), ('challenge', 1), ('providing', 1), ('effective', 1), ('cutaneous', 1), ('haptic', 1), ('feedback', 1), ('robotic', 1), ('teleoperation', 1), ('objective', 1), ('achieving', 1), ('highest', 1), ('degree', 1), ('transparency', 1), ('whilst', 1), ('guaranteeing', 1), ('stability', 1), ('considered', 1), ('system', 1)]
[('spectrum', 3), ('trading', 3), ('design', 2), ('springerbrief', 1), ('focus', 1), ('multi', 1), ('hop', 1), ('cognitive', 1), ('radio', 1), ('network', 1), ('start', 1), ('motivation', 1), ('review', 1), ('existing', 1), ('present', 1), ('novel', 1), ('crn', 1), ('architecture', 1)]
[('book', 1), ('review', 1), ('field', 1), ('helioseismology', 1), ('outstanding', 1), ('challenge', 1), ('offer', 1), ('detailed', 1), ('discussion', 1), ('latest', 1), ('computational', 1), ('methodology', 1), ('focus', 1), ('development', 1), ('implementation', 1), ('technique', 1), ('create', 1), ('image', 1)]
[('book', 2), ('dita', 2), ('present', 1), ('concise', 1), ('real', 1), ('world', 1), ('description', 1), ('principle', 1), ('explanation', 1), ('provided', 1), ('basis', 1), ('simple', 1), ('applicable', 1), ('example', 1), ('excellent', 1), ('introduction', 1), ('novice', 1), ('ideal', 1), ('first', 1), ('orientation', 1)]
[('problem', 2), ('book', 1), ('serf', 1), ('convenient', 1), ('entry', 1), ('point', 1), ('researcher', 1), ('practitioner', 1), ('student', 1), ('understand', 1), ('challenge', 1), ('learn', 1), ('state', 1), ('art', 1), ('solution', 1), ('specific', 1), ('need', 1), ('quickly', 1), ('identify', 1), ('new', 1), ('research', 1)]
[('nbsp', 2), ('book', 1), ('investigates', 1), ('application', 1), ('promising', 1), ('machine', 1), ('learning', 1), ('technique', 1), ('address', 1), ('problem', 1), ('negetiveemoji', 1), ('find', 1), ('profitable', 1), ('pair', 1), ('constraining', 1), ('search', 1), ('space', 1), ('ii', 1), ('avoid', 1), ('long', 1), ('decline', 1), ('period', 1), ('due', 1), ('prolonged', 1)]
[('variety', 2), ('book', 1), ('describes', 1), ('teaching', 1), ('academic', 1), ('research', 1), ('application', 1), ('effectively', 1), ('utilize', 1), ('flexsim', 1), ('negetiveemoji', 1), ('provide', 1), ('guideline', 1), ('method', 1), ('tool', 1), ('simulation', 1), ('modeling', 1), ('analysis', 1), ('educational', 1), ('setting', 1), ('address', 1)]
[('comprehensive', 1), ('book', 1), ('examines', 1), ('range', 1), ('example', 1), ('prepared', 1), ('diverse', 1), ('group', 1), ('academic', 1), ('industry', 1), ('practitioner', 1), ('demonstrate', 1), ('cloud', 1), ('based', 1), ('simulation', 1), ('extensively', 1), ('used', 1), ('across', 1), ('many', 1), ('discipline', 1), ('including', 1), ('cyber', 1), ('physical', 1)]
[('project', 2), ('book', 1), ('examines', 1), ('link', 1), ('change', 1), ('management', 1), ('creating', 1), ('closer', 1), ('alignment', 1), ('methodology', 1), ('yield', 1), ('greater', 1), ('benefit', 1), ('mitigate', 1), ('element', 1), ('failure', 1), ('information', 1), ('system', 1), ('study', 1)]
[('book', 2), ('chief', 2), ('information', 2), ('officer', 2), ('examines', 1), ('effectiveness', 1), ('communication', 1), ('cio', 1), ('executive', 1), ('ceo', 1), ('impact', 1), ('role', 1), ('technology', 1), ('organization', 1), ('empirically', 1), ('based', 1)]
[('green', 2), ('information', 2), ('ict', 2), ('book', 1), ('present', 1), ('latest', 1), ('finding', 1), ('ongoing', 1), ('research', 1), ('connection', 1), ('system', 1), ('communication', 1), ('technology', 1), ('provides', 1), ('valuable', 1), ('insight', 1), ('broad', 1), ('range', 1), ('cross', 1), ('cutting', 1), ('concern', 1)]
[('book', 1), ('present', 1), ('latest', 1), ('finding', 1), ('ongoing', 1), ('research', 1), ('field', 1), ('environmental', 1), ('informatics', 1), ('address', 1), ('wide', 1), ('range', 1), ('cross', 1), ('cutting', 1), ('activity', 1), ('efficient', 1), ('computing', 1), ('virtual', 1), ('reality', 1), ('disruption', 1), ('management', 1), ('big', 1), ('data', 1), ('open', 1)]
[('volume', 1), ('contains', 1), ('carefully', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('information', 1), ('creativity', 1), ('support', 1), ('system', 1), ('kiccs', 1), ('held', 1), ('kraków', 1), ('wieliczka', 1), ('poland', 1), ('november', 1), ('case', 1)]
[('book', 1), ('includes', 1), ('best', 1), ('work', 1), ('presented', 1), ('scientific', 1), ('practical', 1), ('conference', 1), ('took', 1), ('place', 1), ('february', 1), ('pyatigorsk', 1), ('russia', 1), ('topic', 1), ('perspective', 1), ('use', 1), ('new', 1), ('information', 1), ('communication', 1), ('technology', 1), ('ict', 1)]
[('book', 1), ('report', 1), ('latest', 1), ('research', 1), ('development', 1), ('field', 1), ('cybersecurity', 1), ('particularly', 1), ('focusing', 1), ('personal', 1), ('security', 1), ('new', 1), ('method', 1), ('reducing', 1), ('human', 1), ('error', 1), ('increasing', 1), ('cyber', 1), ('awareness', 1), ('innovative', 1), ('solution', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('th', 1), ('congress', 1), ('international', 1), ('ergonomics', 1), ('association', 1), ('iea', 1), ('held', 1), ('august', 1), ('florence', 1), ('italy', 1), ('highlighting', 1), ('latest', 1), ('theory', 1), ('model', 1), ('cutting', 1), ('edge', 1), ('technology', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('th', 1), ('congress', 1), ('international', 1), ('ergonomics', 1), ('association', 1), ('iea', 1), ('held', 1), ('august', 1), ('florence', 1), ('italy', 1), ('highlighting', 1), ('latest', 1), ('theory', 1), ('model', 1), ('cutting', 1), ('edge', 1), ('technology', 1)]
[('robotics', 2), ('proceeding', 1), ('volume', 1), ('comprises', 1), ('latest', 1), ('achievement', 1), ('research', 1), ('development', 1), ('educational', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('education', 1), ('rie', 1), ('held', 1), ('qawra', 1), ('st', 1), ('paul', 1), ('bay', 1), ('malta', 1), ('april', 1)]
[('system', 2), ('engineering', 2), ('book', 1), ('focus', 1), ('novel', 1), ('design', 1), ('approach', 1), ('including', 1), ('theory', 1), ('best', 1), ('practice', 1), ('promoting', 1), ('better', 1), ('integration', 1), ('cover', 1), ('range', 1), ('hot', 1), ('topic', 1), ('related', 1), ('development', 1)]
[('music', 2), ('new', 2), ('computing', 1), ('transforming', 1), ('interact', 1), ('theory', 1), ('technology', 1), ('emerged', 1), ('present', 1), ('fresh', 1), ('challenge', 1), ('novel', 1), ('perspective', 1), ('researcher', 1), ('practitioner', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hci', 1)]
[('security', 2), ('intelligent', 2), ('computing', 2), ('big', 2), ('data', 2), ('service', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('sicbs', 1), ('proliferation', 1), ('issue', 1)]
[('book', 1), ('highlight', 1), ('broad', 1), ('range', 1), ('modern', 1), ('information', 1), ('technology', 1), ('tool', 1), ('technique', 1), ('investigation', 1), ('open', 1), ('challenge', 1), ('mainly', 1), ('application', 1), ('system', 1), ('research', 1), ('computational', 1), ('physic', 1), ('divided', 1), ('three', 1), ('major', 1), ('section', 1), ('begin', 1)]
[('th', 2), ('book', 1), ('feature', 1), ('selection', 1), ('article', 1), ('international', 1), ('conference', 1), ('information', 1), ('technology', 1), ('system', 1), ('icits', 1), ('held', 1), ('universidad', 1), ('de', 1), ('la', 1), ('fuerzas', 1), ('armada', 1), ('quito', 1), ('ecuador', 1), ('february', 1), ('icist', 1), ('global', 1)]
[('computer', 2), ('vision', 2), ('book', 1), ('present', 1), ('remarkable', 1), ('collection', 1), ('chapter', 1), ('covering', 1), ('wide', 1), ('range', 1), ('topic', 1), ('area', 1), ('theoretical', 1), ('application', 1), ('perspective', 1), ('gather', 1), ('proceeding', 1), ('conference', 1), ('cvc', 1)]
[('reuse', 2), ('book', 1), ('present', 1), ('recent', 1), ('research', 1), ('field', 1), ('integration', 1), ('help', 1), ('researcher', 1), ('practitioner', 1), ('alike', 1), ('understand', 1), ('implement', 1), ('different', 1), ('stage', 1), ('software', 1), ('development', 1), ('various', 1), ('domain', 1)]
[('book', 1), ('highlight', 1), ('recent', 1), ('research', 1), ('computer', 1), ('recognition', 1), ('system', 1), ('promising', 1), ('direction', 1), ('artificial', 1), ('intelligence', 1), ('offering', 1), ('comprehensive', 1), ('study', 1), ('field', 1), ('date', 1), ('gather', 1), ('carefully', 1), ('selected', 1), ('article', 1)]
[('cybernetics', 3), ('automation', 2), ('control', 2), ('book', 1), ('discus', 1), ('novel', 1), ('intelligent', 1), ('system', 1), ('algorithm', 1), ('method', 1), ('presenting', 1), ('new', 1), ('approach', 1), ('field', 1), ('theory', 1), ('constitutes', 1), ('proceeding', 1)]
[('system', 2), ('monograph', 1), ('present', 1), ('original', 1), ('research', 1), ('result', 1), ('selected', 1), ('problem', 1), ('dependability', 1), ('contemporary', 1), ('complex', 1), ('information', 1), ('ci', 1), ('ten', 1), ('chapter', 1), ('concentrated', 1), ('around', 1), ('following', 1), ('three', 1), ('aspect', 1), ('method', 1), ('modelling', 1)]
[('icpram', 2), ('book', 1), ('contains', 1), ('extended', 1), ('revised', 1), ('version', 1), ('set', 1), ('selected', 1), ('paper', 1), ('nd', 1), ('international', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('february', 1), ('organized', 1)]
[('international', 2), ('conference', 2), ('book', 1), ('present', 1), ('outcome', 1), ('cyber', 1), ('security', 1), ('intelligence', 1), ('analytics', 1), ('csia', 1), ('dedicated', 1), ('promoting', 1), ('novel', 1), ('theoretical', 1), ('applied', 1), ('research', 1), ('advance', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('xv', 1), ('multidisciplinary', 1), ('international', 1), ('congress', 1), ('science', 1), ('technology', 1), ('cit', 1), ('held', 1), ('quito', 1), ('ecuador', 1), ('october', 1), ('proudly', 1), ('organized', 1), ('universidad', 1), ('de', 1), ('la', 1), ('fuerzas', 1), ('armada', 1), ('espe', 1)]
[('computer', 1), ('recognition', 1), ('system', 1), ('nowadays', 1), ('promising', 1), ('direction', 1), ('artificial', 1), ('intelligence', 1), ('book', 1), ('comprehensive', 1), ('study', 1), ('field', 1), ('contains', 1), ('collection', 1), ('carefully', 1), ('selected', 1), ('article', 1), ('contributed', 1)]
[('book', 1), ('report', 1), ('practical', 1), ('approach', 1), ('facilitating', 1), ('process', 1), ('achieving', 1), ('excellence', 1), ('management', 1), ('leadership', 1), ('organizational', 1), ('resource', 1), ('show', 1), ('principle', 1), ('creating', 1), ('shared', 1), ('value', 1), ('applied', 1), ('ensure', 1), ('faster', 1)]
[('book', 1), ('report', 1), ('latest', 1), ('advance', 1), ('understanding', 1), ('human', 1), ('cognition', 1), ('interplay', 1), ('various', 1), ('cultural', 1), ('construct', 1), ('geographical', 1), ('historical', 1), ('sociological', 1), ('organizational', 1), ('culture', 1), ('address', 1), ('researcher', 1), ('scholar', 1)]
[('system', 3), ('book', 1), ('timely', 1), ('report', 1), ('advanced', 1), ('method', 1), ('application', 1), ('computational', 1), ('intelligence', 1), ('cover', 1), ('long', 1), ('list', 1), ('interconnected', 1), ('research', 1), ('area', 1), ('fuzzy', 1), ('neural', 1), ('network', 1), ('evolutionary', 1), ('computation', 1), ('evolving', 1)]
[('book', 1), ('gather', 1), ('proceeding', 1), ('depcos', 1), ('relcomex', 1), ('annual', 1), ('conference', 1), ('series', 1), ('organized', 1), ('department', 1), ('computer', 1), ('engineering', 1), ('faculty', 1), ('electronics', 1), ('wrocław', 1), ('university', 1), ('science', 1), ('technology', 1)]
[('book', 1), ('present', 1), ('outcome', 1), ('th', 1), ('international', 1), ('conference', 1), ('methodology', 1), ('intelligent', 1), ('system', 1), ('technology', 1), ('enhanced', 1), ('learning', 1), ('mi', 1), ('tel', 1), ('hosted', 1), ('polytechnic', 1), ('porto', 1), ('portugal', 1), ('june', 1), ('expanding', 1)]
[('human', 2), ('book', 1), ('discus', 1), ('latest', 1), ('advance', 1), ('factor', 1), ('ergonomics', 1), ('focusing', 1), ('method', 1), ('improving', 1), ('quality', 1), ('safety', 1), ('efficiency', 1), ('effectiveness', 1), ('patient', 1), ('care', 1), ('emphasizing', 1), ('physical', 1), ('cognitive', 1), ('organizational', 1), ('aspect', 1)]
[('human', 3), ('error', 2), ('book', 1), ('brings', 1), ('together', 1), ('study', 1), ('broadly', 1), ('dealing', 1), ('different', 1), ('discipline', 1), ('perspective', 1), ('concern', 1), ('performance', 1), ('variability', 1), ('reliability', 1), ('analysis', 1), ('medical', 1), ('driver', 1), ('pilot', 1), ('automation', 1)]
[('natural', 2), ('computation', 2), ('fuzzy', 2), ('system', 2), ('knowledge', 2), ('discovery', 2), ('book', 1), ('discus', 1), ('recent', 1), ('advance', 1), ('presenting', 1), ('selected', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1)]
[('computing', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('theory', 1), ('application', 1), ('soft', 1), ('word', 1), ('perception', 1), ('icsccw', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('august', 1), ('includes', 1), ('contribution', 1)]
[('book', 1), ('address', 1), ('emerging', 1), ('issue', 1), ('concerning', 1), ('integration', 1), ('artificial', 1), ('intelligence', 1), ('system', 1), ('daily', 1), ('life', 1), ('focus', 1), ('cognitive', 1), ('visual', 1), ('social', 1), ('analytical', 1), ('aspect', 1), ('computing', 1), ('intelligent', 1), ('technology', 1), ('highlight', 1), ('way', 1)]
[('book', 2), ('brings', 1), ('together', 1), ('past', 1), ('insight', 1), ('current', 1), ('research', 1), ('promising', 1), ('future', 1), ('trend', 1), ('associated', 1), ('distributed', 1), ('computing', 1), ('artificial', 1), ('intelligence', 1), ('application', 1), ('order', 1), ('provide', 1), ('efficient', 1), ('solution', 1), ('real', 1), ('world', 1), ('problem', 1)]
[('intelligent', 3), ('system', 3), ('book', 1), ('application', 1), ('proceeding', 1), ('conference', 1), ('remarkable', 1), ('collection', 1), ('chapter', 1), ('covering', 1), ('wider', 1), ('range', 1), ('topic', 1), ('area', 1), ('artificial', 1), ('intelligence', 1)]
[('voice', 2), ('springerbrief', 1), ('provides', 1), ('unique', 1), ('insight', 1), ('practice', 1), ('research', 1), ('connection', 1), ('hci', 1), ('embodiment', 1), ('specifically', 1), ('explores', 1), ('embodied', 1), ('mediated', 1), ('mean', 1), ('gestural', 1), ('communication', 1)]
[('information', 2), ('technology', 2), ('itng', 2), ('volume', 1), ('represents', 1), ('th', 1), ('international', 1), ('conference', 1), ('new', 1), ('generation', 1), ('annual', 1), ('event', 1), ('focusing', 1), ('state', 1), ('art', 1), ('pertaining', 1), ('digital', 1), ('communication', 1)]
[('mittweida', 2), ('book', 1), ('collect', 1), ('scientific', 1), ('contribution', 1), ('presented', 1), ('th', 1), ('workshop', 1), ('self', 1), ('organizing', 1), ('map', 1), ('wsom', 1), ('held', 1), ('university', 1), ('applied', 1), ('science', 1), ('germany', 1), ('saxony', 1), ('july', 1), ('starting', 1), ('first', 1)]
[('level', 4), ('cognitive', 2), ('book', 1), ('cover', 1), ('aspect', 1), ('robot', 1), ('intelligence', 1), ('perception', 1), ('sensor', 1), ('reasoning', 1), ('behavior', 1), ('planning', 1), ('execution', 1), ('low', 1), ('segment', 1), ('machine', 1), ('present', 1), ('technology', 1)]
[('wict', 2), ('volume', 1), ('present', 1), ('selected', 1), ('paper', 1), ('parallel', 1), ('symposium', 1), ('fourth', 1), ('world', 1), ('congress', 1), ('information', 1), ('communication', 1), ('technology', 1), ('held', 1), ('malacca', 1), ('malaysia', 1), ('theme', 1), ('innovating', 1), ('ict', 1), ('social', 1)]
[('building', 1), ('upon', 1), ('long', 1), ('tradition', 1), ('scientifi', 1), ('conference', 1), ('dealing', 1), ('problem', 1), ('ofreliability', 1), ('technical', 1), ('system', 1), ('department', 1), ('computer', 1), ('engineering', 1), ('atwrocław', 1), ('university', 1), ('technology', 1), ('established', 1), ('depcos', 1), ('relcomex', 1), ('series', 1), ('eventsin', 1), ('order', 1)]
[('book', 1), ('take', 1), ('quantitative', 1), ('look', 1), ('ict', 1), ('generated', 1), ('event', 1), ('data', 1), ('highlight', 1), ('current', 1), ('trend', 1), ('issue', 1), ('nigeria', 1), ('local', 1), ('state', 1), ('national', 1), ('level', 1), ('without', 1), ('emphasizing', 1), ('specific', 1), ('policy', 1), ('agenda', 1), ('provides', 1), ('context', 1), ('perspective', 1)]
[('present', 2), ('monograph', 1), ('challenge', 1), ('vision', 1), ('context', 1), ('design', 1), ('smart', 1), ('learning', 1), ('object', 1), ('slos', 1), ('computer', 1), ('science', 1), ('c', 1), ('education', 1), ('modelling', 1), ('feature', 1), ('model', 1), ('transformation', 1), ('latest', 1), ('research', 1), ('meta', 1), ('programming', 1), ('based', 1)]
[('approach', 2), ('book', 1), ('present', 1), ('new', 1), ('advance', 1), ('research', 1), ('aspect', 1), ('agent', 1), ('based', 1), ('model', 1), ('technology', 1), ('simulation', 1), ('implementation', 1), ('data', 1), ('intensive', 1), ('application', 1), ('nine', 1), ('chapter', 1), ('contain', 1), ('review', 1), ('recent', 1), ('cross', 1), ('disciplinary', 1)]
[('book', 1), ('present', 1), ('recent', 1), ('advance', 1), ('nature', 1), ('inspired', 1), ('computing', 1), ('giving', 1), ('special', 1), ('emphasis', 1), ('control', 1), ('system', 1), ('application', 1), ('review', 1), ('different', 1), ('technique', 1), ('used', 1), ('simulating', 1), ('physical', 1), ('chemical', 1), ('biological', 1), ('social', 1), ('phenomenon', 1), ('purpose', 1)]
[('conference', 2), ('book', 1), ('contains', 1), ('selected', 1), ('papersfrom', 1), ('international', 1), ('extreme', 1), ('learning', 1), ('machine', 1), ('held', 1), ('hangzhou', 1), ('china', 1), ('december', 1), ('brought', 1), ('together', 1), ('researcher', 1), ('engineer', 1), ('share', 1), ('andexchange', 1)]
[('volume', 1), ('present', 1), ('revised', 1), ('peer', 1), ('reviewed', 1), ('contribution', 1), ('epr', 1), ('future', 1), ('conference', 1), ('held', 1), ('dornbirn', 1), ('austria', 1), ('november', 1), ('th', 1), ('nbsp', 1), ('book', 1), ('assembles', 1), ('latest', 1), ('research', 1), ('recent', 1), ('practice', 1), ('enterprise', 1), ('information', 1), ('system', 1)]
[('contribution', 2), ('book', 1), ('present', 1), ('valuable', 1), ('devoted', 1), ('topractical', 1), ('application', 1), ('machine', 1), ('intelligence', 1), ('big', 1), ('data', 1), ('various', 1), ('branchesof', 1), ('industry', 1), ('extended', 1), ('version', 1), ('presentationsdelivered', 1), ('industrial', 1), ('session', 1)]
[('digital', 2), ('book', 1), ('examines', 1), ('impact', 1), ('innovation', 1), ('organization', 1), ('reveals', 1), ('revolution', 1), ('redefining', 1), ('traditional', 1), ('level', 1), ('analysis', 1), ('time', 1), ('blurring', 1), ('internal', 1), ('external', 1), ('boundary', 1), ('organizational', 1)]
[('analytical', 2), ('knowledge', 2), ('book', 1), ('describes', 1), ('technique', 1), ('optimizing', 1), ('acquisition', 1), ('processing', 1), ('propagation', 1), ('especially', 1), ('context', 1), ('cyber', 1), ('infrastructure', 1), ('big', 1), ('data', 1), ('present', 1), ('easy', 1), ('use', 1), ('model', 1), ('related', 1)]
[('acquisition', 2), ('sag', 2), ('many', 1), ('application', 1), ('depend', 1), ('effective', 1), ('semantic', 1), ('metadata', 1), ('state', 1), ('art', 1), ('volume', 1), ('provides', 1), ('extensive', 1), ('coverage', 1), ('field', 1), ('semantics', 1), ('game', 1), ('part', 1), ('crowdsourcing', 1), ('approach', 1), ('family', 1)]
[('data', 2), ('contributed', 1), ('volume', 1), ('explores', 1), ('mining', 1), ('machine', 1), ('learning', 1), ('similar', 1), ('statistical', 1), ('technique', 1), ('analyze', 1), ('type', 1), ('problem', 1), ('arising', 1), ('traditional', 1), ('chinese', 1), ('medicine', 1), ('tcm', 1), ('research', 1), ('book', 1), ('focus', 1), ('study', 1), ('clinical', 1)]
[('cyber', 2), ('understanding', 1), ('latest', 1), ('capability', 1), ('threat', 1), ('landscape', 1), ('forensic', 1), ('challenge', 1), ('approach', 1), ('best', 1), ('way', 1), ('user', 1), ('organization', 1), ('prepare', 1), ('potential', 1), ('negative', 1), ('event', 1), ('adopting', 1), ('experiential', 1), ('learning', 1)]
[('emerging', 2), ('isd', 2), ('volume', 1), ('feature', 1), ('collection', 1), ('paper', 1), ('concept', 1), ('significant', 1), ('insight', 1), ('novel', 1), ('approach', 1), ('idea', 1), ('information', 1), ('system', 1), ('development', 1), ('xamines', 1), ('advance', 1), ('general', 1), ('investigates', 1), ('trend', 1), ('shape', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('virtual', 1), ('conference', 1), ('neurois', 1), ('retreat', 1), ('june', 1), ('hosted', 1), ('austria', 1), ('reporting', 1), ('topic', 1), ('intersection', 1), ('information', 1), ('system', 1), ('research', 1), ('neurophysiology', 1), ('brain', 1), ('science', 1), ('reader', 1)]
[('ma', 3), ('book', 1), ('describes', 1), ('approach', 1), ('multi', 1), ('agent', 1), ('system', 1), ('design', 1), ('application', 1), ('robotic', 1), ('soccer', 1), ('mirosot', 1), ('category', 1), ('described', 1), ('designed', 1), ('dynamic', 1), ('quickly', 1), ('changing', 1), ('environment', 1), ('action', 1)]
[('social', 2), ('book', 1), ('provides', 1), ('timely', 1), ('unique', 1), ('survey', 1), ('next', 1), ('generation', 1), ('computational', 1), ('methodology', 1), ('text', 1), ('explains', 1), ('fundamental', 1), ('field', 1), ('describes', 1), ('state', 1), ('art', 1), ('method', 1), ('inferring', 1), ('status', 1), ('relationship', 1), ('preference', 1)]
[('uncertainty', 3), ('principal', 1), ('aim', 1), ('book', 1), ('introduce', 1), ('widest', 1), ('possible', 1), ('audience', 1), ('original', 1), ('view', 1), ('belief', 1), ('calculus', 1), ('theory', 1), ('geometric', 1), ('approach', 1), ('measure', 1), ('seen', 1), ('point', 1), ('suitably', 1), ('complex', 1)]
[('paper', 2), ('volume', 1), ('refereed', 1), ('presented', 1), ('ai', 1), ('thirty', 1), ('third', 1), ('sgai', 1), ('international', 1), ('conference', 1), ('innovative', 1), ('technique', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('held', 1), ('cambridge', 1), ('december', 1), ('technical', 1)]
[('intelligent', 2), ('computing', 2), ('artificial', 1), ('system', 1), ('offer', 1), ('improvement', 1), ('healthcare', 1), ('sector', 1), ('assisted', 1), ('machine', 1), ('learning', 1), ('wireless', 1), ('communication', 1), ('data', 1), ('analytics', 1), ('cognitive', 1), ('mobile', 1), ('provide', 1), ('convenient', 1), ('solution', 1)]
[('book', 1), ('token', 1), ('appreciation', 1), ('professor', 1), ('gregory', 1), ('kersten', 1), ('prominent', 1), ('active', 1), ('researcher', 1), ('scholar', 1), ('broadly', 1), ('perceived', 1), ('field', 1), ('collective', 1), ('decision', 1), ('notably', 1), ('negotiation', 1), ('author', 1), ('numerous', 1)]
[('stream', 3), ('symmetric', 2), ('cipher', 2), ('book', 1), ('provides', 1), ('complete', 1), ('description', 1), ('analysis', 1), ('comparative', 1), ('study', 1), ('modern', 1), ('standardized', 1), ('common', 1), ('encryption', 1), ('algorithm', 1), ('mode', 1), ('block', 1), ('provide', 1)]
[('reality', 3), ('augmented', 2), ('virtual', 2), ('book', 1), ('present', 1), ('ar', 1), ('vr', 1), ('automotive', 1), ('application', 1), ('unites', 1), ('automobile', 1), ('leading', 1), ('technology', 1), ('us', 1), ('advantage', 1), ('latter', 1), ('solve', 1), ('problem', 1), ('faced', 1)]
[('book', 1), ('provides', 1), ('complete', 1), ('formal', 1), ('specification', 1), ('semantics', 1), ('business', 1), ('process', 1), ('model', 1), ('notation', 1), ('standard', 1), ('bpmn', 1), ('available', 1), ('date', 1), ('style', 1), ('easily', 1), ('understandable', 1), ('wide', 1), ('range', 1), ('reader', 1)]
[('research', 2), ('information', 2), ('book', 1), ('present', 1), ('current', 1), ('state', 1), ('system', 1), ('digital', 1), ('transformation', 1), ('due', 1), ('global', 1), ('trend', 1), ('digitalization', 1), ('impact', 1), ('covid', 1), ('pandemic', 1), ('need', 1), ('innovative', 1), ('high', 1), ('quality', 1)]
[('linguistic', 2), ('book', 1), ('examines', 1), ('common', 1), ('wide', 1), ('spread', 1), ('methodology', 1), ('deal', 1), ('uncertainty', 1), ('real', 1), ('world', 1), ('decision', 1), ('making', 1), ('problem', 1), ('computing', 1), ('word', 1), ('paradigm', 1), ('fuzzy', 1), ('approach', 1), ('tuple', 1), ('model', 1)]
[('technology', 2), ('updating', 1), ('manifesto', 1), ('audio', 1), ('photography', 1), ('practice', 1), ('book', 1), ('address', 1), ('issue', 1), ('design', 1), ('history', 1), ('social', 1), ('shaping', 1), ('management', 1), ('innovation', 1), ('particular', 1), ('reveals', 1), ('different', 1)]
[('network', 2), ('book', 1), ('examines', 1), ('interaction', 1), ('technical', 1), ('economic', 1), ('issue', 1), ('database', 1), ('assisted', 1), ('dynamic', 1), ('spectrum', 1), ('explains', 1), ('various', 1), ('business', 1), ('model', 1), ('different', 1), ('setting', 1), ('analyzing', 1), ('user', 1), ('behavior', 1), ('system', 1), ('equilibrium', 1)]
[('design', 2), ('book', 1), ('explains', 1), ('application', 1), ('recent', 1), ('advance', 1), ('computational', 1), ('intelligence', 1), ('algorithm', 1), ('methodology', 1), ('synthesis', 1), ('technique', 1), ('integrated', 1), ('circuit', 1), ('system', 1), ('highlight', 1), ('new', 1), ('biasing', 1), ('sizing', 1), ('approach', 1)]
[('book', 1), ('brings', 1), ('together', 1), ('historical', 1), ('note', 1), ('review', 1), ('research', 1), ('development', 1), ('fresh', 1), ('idea', 1), ('make', 1), ('vc', 1), ('vapnik', 1), ('chervonenkis', 1), ('guarantee', 1), ('tighter', 1), ('new', 1), ('technical', 1), ('contribution', 1), ('area', 1), ('machine', 1), ('learning', 1), ('statistical', 1), ('inference', 1)]
[('autism', 2), ('intervention', 2), ('technology', 2), ('book', 1), ('first', 1), ('explains', 1), ('prevalence', 1), ('conventional', 1), ('technique', 1), ('describes', 1), ('virtual', 1), ('reality', 1), ('support', 1), ('skill', 1), ('training', 1), ('approach', 1), ('covered', 1)]
[('edition', 3), ('third', 2), ('first', 1), ('english', 1), ('language', 1), ('award', 1), ('winning', 1), ('meilensteine', 1), ('der', 1), ('rechentechnik', 1), ('illustrated', 1), ('full', 1), ('color', 1), ('throughout', 1), ('volume', 1), ('devoted', 1), ('analog', 1), ('digital', 1), ('computing', 1), ('device', 1)]
[('practically', 1), ('focused', 1), ('book', 1), ('present', 1), ('computational', 1), ('model', 1), ('detection', 1), ('analysis', 1), ('pedestrian', 1), ('feature', 1), ('crowd', 1), ('video', 1), ('sequence', 1), ('study', 1), ('human', 1), ('behavior', 1), ('subject', 1), ('scientific', 1), ('interest', 1), ('probably', 1), ('inexhaustible', 1)]
[('cybersecurity', 2), ('book', 1), ('offer', 1), ('systematic', 1), ('explanation', 1), ('protection', 1), ('electricity', 1), ('supply', 1), ('facility', 1), ('including', 1), ('discussion', 1), ('related', 1), ('cost', 1), ('relevant', 1), ('standard', 1), ('recent', 1), ('solution', 1), ('author', 1), ('explains', 1), ('current', 1), ('state', 1)]
[('interaction', 2), ('body', 2), ('environment', 2), ('intelligence', 1), ('result', 1), ('brain', 1), ('question', 1), ('addressed', 1), ('book', 1), ('measure', 1), ('contribution', 1), ('answer', 1), ('first', 1), ('present', 1)]
[('book', 1), ('discus', 1), ('fundamental', 1), ('high', 1), ('performance', 1), ('computing', 1), ('author', 1), ('combine', 1), ('visualization', 1), ('comprehensibility', 1), ('strictness', 1), ('material', 1), ('presentation', 1), ('thus', 1), ('influence', 1), ('reader', 1), ('towards', 1), ('practical', 1), ('application', 1), ('learning', 1)]
[('research', 4), ('book', 1), ('address', 1), ('action', 1), ('ar', 1), ('main', 1), ('methodology', 1), ('used', 1), ('academia', 1), ('industry', 1), ('collaboration', 1), ('elaborates', 1), ('find', 1), ('right', 1), ('activity', 1), ('distinguish', 1), ('non', 1), ('significant', 1), ('one', 1)]
[('analysis', 2), ('design', 2), ('application', 2), ('book', 1), ('provides', 1), ('detailed', 1), ('guide', 1), ('addressing', 1), ('aspect', 1), ('ranging', 1), ('implementation', 1), ('need', 1), ('integrated', 1), ('within', 1), ('legacy', 1), ('database', 1), ('next', 1)]
[('model', 3), ('healthcare', 3), ('health', 3), ('data', 3), ('deep', 2), ('learning', 2), ('textbook', 1), ('present', 1), ('application', 1), ('focus', 1), ('rich', 1), ('effectively', 1), ('among', 1), ('technology', 1), ('electronic', 1)]
[('handbook', 1), ('discus', 1), ('challenge', 1), ('limitation', 1), ('existing', 1), ('solution', 1), ('present', 1), ('state', 1), ('art', 1), ('advance', 1), ('academia', 1), ('industry', 1), ('big', 1), ('data', 1), ('analytics', 1), ('digital', 1), ('forensics', 1), ('second', 1), ('chapter', 1), ('comprehensively', 1), ('review', 1), ('iot', 1), ('security', 1)]
[('data', 2), ('mission', 2), ('idea', 1), ('text', 1), ('emerged', 1), ('several', 1), ('year', 1), ('author', 1), ('participated', 1), ('research', 1), ('project', 1), ('related', 1), ('analysis', 1), ('nasa', 1), ('rhessi', 1), ('small', 1), ('explorer', 1), ('produced', 1), ('operational', 1), ('lifetime', 1), ('inspired', 1), ('many', 1)]
[('background', 2), ('subtraction', 2), ('algorithm', 2), ('widely', 1), ('used', 1), ('concept', 1), ('detection', 1), ('moving', 1), ('object', 1), ('video', 1), ('last', 1), ('decade', 1), ('lot', 1), ('development', 1), ('designing', 1), ('wide', 1), ('use', 1)]
[('pattern', 2), ('visual', 1), ('analysis', 1), ('fundamental', 1), ('tool', 1), ('mining', 1), ('data', 1), ('knowledge', 1), ('computational', 1), ('representation', 1), ('texture', 1), ('allow', 1), ('summarize', 1), ('store', 1), ('compare', 1), ('label', 1), ('order', 1), ('learn', 1), ('physical', 1), ('world', 1), ('ability', 1), ('capture', 1)]
[('data', 3), ('privacy', 2), ('analysis', 2), ('preservation', 1), ('become', 1), ('major', 1), ('issue', 1), ('many', 1), ('application', 1), ('set', 1), ('released', 1), ('party', 1), ('preserving', 1), ('technique', 1), ('often', 1), ('required', 1), ('reduce', 1), ('possibility', 1), ('identifying', 1), ('sensitive', 1)]
[('data', 3), ('present', 2), ('book', 2), ('subject', 2), ('concept', 2), ('multidimensional', 1), ('model', 1), ('modeling', 1), ('applied', 1), ('real', 1), ('warehouse', 1), ('aim', 1), ('important', 1), ('within', 1), ('precise', 1), ('understandable', 1), ('manner', 1)]
[('peer', 6), ('problem', 2), ('large', 2), ('system', 2), ('lecture', 1), ('introduces', 1), ('systematically', 1), ('managing', 1), ('data', 1), ('collection', 1), ('search', 1), ('datasets', 1), ('always', 1), ('key', 1), ('paradigm', 1), ('incited', 1), ('novel', 1)]
[('query', 2), ('data', 2), ('topic', 1), ('using', 1), ('view', 1), ('answer', 1), ('popular', 1), ('decade', 1), ('cut', 1), ('across', 1), ('domain', 1), ('optimization', 1), ('information', 1), ('integration', 1), ('warehousing', 1), ('website', 1), ('design', 1), ('recently', 1), ('database', 1), ('service', 1)]
[('query', 2), ('reformulation', 1), ('refers', 1), ('process', 1), ('translating', 1), ('source', 1), ('request', 1), ('information', 1), ('high', 1), ('level', 1), ('logic', 1), ('based', 1), ('language', 1), ('target', 1), ('plan', 1), ('abides', 1), ('certain', 1), ('interface', 1), ('restriction', 1), ('many', 1), ('practical', 1), ('problem', 1), ('data', 1), ('management', 1)]
[('incomplete', 1), ('data', 1), ('part', 1), ('life', 1), ('almost', 1), ('area', 1), ('scientific', 1), ('study', 1), ('user', 1), ('tend', 1), ('skip', 1), ('certain', 1), ('field', 1), ('fill', 1), ('online', 1), ('form', 1), ('participant', 1), ('choose', 1), ('ignore', 1), ('sensitive', 1), ('question', 1), ('survey', 1), ('sensor', 1), ('fail', 1), ('resulting', 1), ('loss', 1)]
[('transaction', 2), ('processing', 2), ('last', 1), ('decade', 1), ('brought', 1), ('groundbreaking', 1), ('development', 1), ('resurgence', 1), ('mature', 1), ('research', 1), ('area', 1), ('spurred', 1), ('diminishing', 1), ('cost', 1), ('per', 1), ('gb', 1), ('dram', 1), ('allows', 1), ('many', 1), ('workload', 1)]
[('query', 2), ('called', 2), ('plan', 2), ('compilation', 1), ('problem', 1), ('translating', 1), ('user', 1), ('request', 1), ('formulated', 1), ('purely', 1), ('conceptual', 1), ('domain', 1), ('specific', 1), ('way', 1), ('understanding', 1), ('data', 1), ('commonly', 1), ('logical', 1), ('design', 1), ('efficient', 1), ('executable', 1), ('program', 1), ('access', 1)]
[('representation', 3), ('thing', 1), ('interpreted', 1), ('providing', 1), ('information', 1), ('something', 1), ('map', 1), ('graph', 1), ('example', 1), ('book', 1), ('expanding', 1), ('world', 1), ('computational', 1), ('use', 1), ('power', 1)]
[('digital', 2), ('improvement', 1), ('network', 1), ('bandwidth', 1), ('along', 1), ('dramatic', 1), ('drop', 1), ('storage', 1), ('processing', 1), ('cost', 1), ('resulted', 1), ('explosive', 1), ('growth', 1), ('multimedia', 1), ('combination', 1), ('text', 1), ('image', 1), ('audio', 1), ('video', 1), ('resource', 1), ('internet', 1)]
[('worth', 3), ('design', 2), ('team', 2), ('book', 1), ('introduces', 1), ('concept', 1), ('relates', 1), ('experience', 1), ('outcome', 1), ('describes', 1), ('focus', 1), ('researching', 1), ('expressing', 1), ('opportunity', 1), ('generous', 1), ('truly', 1), ('interdisciplinary', 1)]
[('information', 3), ('search', 2), ('becomes', 1), ('ubiquitous', 1), ('demand', 1), ('searcher', 1), ('system', 1), ('grow', 1), ('need', 1), ('support', 1), ('behavior', 1), ('beyond', 1), ('simple', 1), ('lookup', 1), ('seeking', 1), ('process', 1), ('activity', 1), ('attempting', 1), ('obtain', 1)]
[('web', 2), ('search', 2), ('today', 1), ('treated', 1), ('solitary', 1), ('experience', 1), ('browser', 1), ('engine', 1), ('typically', 1), ('designed', 1), ('support', 1), ('single', 1), ('user', 1), ('working', 1), ('alone', 1), ('collaboration', 1), ('information', 1), ('seeking', 1), ('task', 1), ('actually', 1), ('commonplace', 1), ('student', 1), ('work', 1)]
[('user', 2), ('rapid', 1), ('growth', 1), ('web', 1), ('search', 1), ('recent', 1), ('year', 1), ('problem', 1), ('modeling', 1), ('started', 1), ('attract', 1), ('attention', 1), ('information', 1), ('retrieval', 1), ('community', 1), ('several', 1), ('motivation', 1), ('building', 1), ('model', 1), ('behavior', 1)]
[('system', 2), ('critical', 2), ('application', 2), ('today', 1), ('embedded', 1), ('used', 1), ('many', 1), ('security', 1), ('access', 1), ('control', 1), ('electronic', 1), ('ticket', 1), ('sensor', 1), ('smart', 1), ('device', 1), ('wearable', 1), ('automotive', 1), ('infrastructure', 1), ('increasingly', 1)]
[('privacy', 2), ('risk', 2), ('analysis', 2), ('fill', 1), ('gap', 1), ('existing', 1), ('literature', 1), ('providing', 1), ('introduction', 1), ('basic', 1), ('notion', 1), ('requirement', 1), ('main', 1), ('step', 1), ('conducting', 1), ('deployment', 1), ('new', 1), ('information', 1), ('technology', 1), ('lead', 1)]
[('data', 2), ('current', 1), ('social', 1), ('economic', 1), ('context', 1), ('increasingly', 1), ('demand', 1), ('open', 1), ('improve', 1), ('scientific', 1), ('research', 1), ('decision', 1), ('making', 1), ('published', 1), ('refer', 1), ('individual', 1), ('respondent', 1), ('disclosure', 1), ('risk', 1), ('limitation', 1), ('technique', 1), ('implemented', 1)]
[('robotics', 1), ('technology', 1), ('recently', 1), ('advanced', 1), ('point', 1), ('widely', 1), ('accessible', 1), ('relatively', 1), ('low', 1), ('budget', 1), ('research', 1), ('graduate', 1), ('undergraduate', 1), ('even', 1), ('secondary', 1), ('primary', 1), ('school', 1), ('education', 1), ('lecture', 1), ('provides', 1), ('example', 1)]
[('learning', 5), ('reinforcement', 2), ('paradigm', 1), ('concerned', 1), ('control', 1), ('system', 1), ('maximize', 1), ('numerical', 1), ('performance', 1), ('measure', 1), ('express', 1), ('long', 1), ('term', 1), ('objective', 1), ('distinguishes', 1), ('supervised', 1)]
[('human', 2), ('intelligence', 2), ('computation', 1), ('new', 1), ('evolving', 1), ('research', 1), ('area', 1), ('center', 1), ('around', 1), ('harnessing', 1), ('solve', 1), ('computational', 1), ('problem', 1), ('beyond', 1), ('scope', 1), ('existing', 1), ('artificial', 1), ('ai', 1), ('algorithm', 1), ('growth', 1), ('web', 1)]
[('trading', 2), ('market', 2), ('automated', 1), ('electronic', 1), ('common', 1), ('consequential', 1), ('application', 1), ('autonomous', 1), ('software', 1), ('agent', 1), ('design', 1), ('effective', 1), ('strategy', 1), ('requires', 1), ('thorough', 1), ('understanding', 1), ('mechanism', 1), ('operate', 1)]
[('data', 2), ('world', 2), ('integration', 1), ('critical', 1), ('problem', 1), ('increasingly', 1), ('interconnected', 1), ('inevitably', 1), ('heterogeneous', 1), ('numerous', 1), ('source', 1), ('available', 1), ('organizational', 1), ('database', 1), ('public', 1), ('information', 1), ('system', 1), ('wide', 1), ('web', 1)]
[('subfields', 1), ('computer', 1), ('science', 1), ('interface', 1), ('layer', 1), ('via', 1), ('application', 1), ('communicate', 1), ('infrastructure', 1), ('key', 1), ('success', 1), ('internet', 1), ('networking', 1), ('relational', 1), ('model', 1), ('database', 1), ('etc', 1), ('far', 1)]
[('machine', 2), ('support', 1), ('vector', 1), ('become', 1), ('established', 1), ('tool', 1), ('within', 1), ('learning', 1), ('work', 1), ('practice', 1), ('used', 1), ('across', 1), ('wide', 1), ('range', 1), ('application', 1), ('recognizing', 1), ('hand', 1), ('written', 1), ('digit', 1), ('face', 1), ('identification', 1), ('text', 1)]
[('autonomous', 2), ('robot', 2), ('driving', 1), ('flying', 1), ('swimming', 1), ('digging', 1), ('unknown', 1), ('object', 1), ('space', 1), ('exploration', 1), ('take', 1), ('varied', 1), ('shape', 1), ('size', 1), ('part', 1), ('designed', 1), ('perform', 1), ('task', 1), ('dirty', 1), ('dull', 1), ('dangerous', 1), ('human', 1)]
[('collective', 2), ('judgment', 1), ('aggregation', 1), ('mathematical', 1), ('theory', 1), ('decision', 1), ('making', 1), ('concern', 1), ('method', 1), ('whereby', 1), ('individual', 1), ('opinion', 1), ('logically', 1), ('interconnected', 1), ('issue', 1), ('interest', 1), ('aggregated', 1), ('stance', 1)]
[('game', 5), ('player', 2), ('general', 1), ('computer', 1), ('system', 1), ('able', 1), ('play', 1), ('strategy', 1), ('based', 1), ('solely', 1), ('formal', 1), ('description', 1), ('supplied', 1), ('runtime', 1), ('word', 1), ('know', 1), ('rule', 1), ('start', 1), ('unlike', 1), ('specialized', 1), ('deep', 1)]
[('representing', 2), ('preference', 2), ('book', 1), ('provides', 1), ('tutorial', 1), ('introduction', 1), ('modern', 1), ('technique', 1), ('reasoning', 1), ('qualitative', 1), ('respect', 1), ('set', 1), ('alternative', 1), ('syntax', 1), ('semantics', 1), ('several', 1), ('language', 1)]
[('individual', 2), ('intelligent', 1), ('agent', 1), ('interacting', 1), ('real', 1), ('world', 1), ('encounter', 1), ('course', 1), ('test', 1), ('result', 1), ('drug', 1), ('prescription', 1), ('chair', 1), ('box', 1), ('etc', 1), ('need', 1), ('reason', 1), ('property', 1), ('relation', 1), ('among', 1)]
[('algorithm', 4), ('book', 2), ('introduces', 2), ('computation', 2), ('privacy', 2), ('state', 1), ('art', 1), ('data', 1), ('mainly', 1), ('focus', 1), ('searchable', 1), ('symmetric', 1), ('encryption', 1), ('preserving', 1), ('multi', 1), ('party', 1)]
[('handbook', 2), ('data', 2), ('cover', 1), ('wide', 1), ('range', 1), ('topic', 1), ('related', 1), ('collection', 1), ('processing', 1), ('analysis', 1), ('use', 1), ('geospatial', 1), ('various', 1), ('form', 1), ('provides', 1), ('overview', 1), ('spatial', 1), ('computing', 1), ('technology', 1), ('big', 1), ('organized', 1)]
[('performance', 2), ('book', 1), ('present', 1), ('state', 1), ('art', 1), ('high', 1), ('computing', 1), ('modern', 1), ('supercomputer', 1), ('architecture', 1), ('address', 1), ('trend', 1), ('hardware', 1), ('software', 1), ('development', 1), ('general', 1), ('contribution', 1), ('cover', 1), ('broad', 1), ('range', 1), ('topic', 1)]
[('basic', 2), ('book', 1), ('provides', 1), ('understanding', 1), ('stream', 1), ('processing', 1), ('general', 1), ('practical', 1), ('guidance', 1), ('development', 1), ('research', 1), ('apache', 1), ('heron', 1), ('particular', 1), ('delivers', 1), ('developer', 1), ('streaming', 1), ('application', 1), ('systematic', 1), ('knowledge', 1)]
[('algorithm', 2), ('book', 1), ('introduces', 1), ('basic', 1), ('supervised', 1), ('learning', 1), ('applicable', 1), ('natural', 1), ('language', 1), ('processing', 1), ('nlp', 1), ('show', 1), ('performance', 1), ('often', 1), ('improved', 1), ('exploiting', 1), ('marginal', 1), ('distribution', 1), ('large', 1), ('amount', 1), ('unlabeled', 1)]
[('temporal', 3), ('book', 1), ('cover', 1), ('topic', 1), ('tagging', 1), ('detection', 1), ('expression', 1), ('normalization', 1), ('semantics', 1), ('standard', 1), ('format', 1), ('place', 1), ('special', 1), ('focus', 1), ('challenge', 1), ('opportunity', 1), ('domain', 1), ('sensitive', 1)]
[('generate', 2), ('dialogue', 2), ('text', 1), ('production', 1), ('many', 1), ('application', 1), ('used', 1), ('instance', 1), ('turn', 1), ('move', 1), ('verbalise', 1), ('content', 1), ('knowledge', 1), ('base', 1), ('english', 1), ('sentence', 1), ('rich', 1), ('linguistic', 1), ('representation', 1), ('dependency', 1), ('tree', 1)]
[('embeddings', 1), ('undoubtedly', 1), ('influential', 1), ('research', 1), ('area', 1), ('natural', 1), ('language', 1), ('processing', 1), ('nlp', 1), ('encoding', 1), ('information', 1), ('low', 1), ('dimensional', 1), ('vector', 1), ('representation', 1), ('easily', 1), ('integrable', 1), ('modern', 1), ('machine', 1), ('learning', 1), ('model', 1)]
[('book', 2), ('nlp', 2), ('present', 1), ('taxonomy', 1), ('framework', 1), ('survey', 1), ('method', 1), ('relevant', 1), ('explaining', 1), ('decision', 1), ('analyzing', 1), ('inner', 1), ('working', 1), ('natural', 1), ('language', 1), ('processing', 1), ('model', 1), ('intended', 1), ('provide', 1), ('snapshot', 1), ('explainable', 1), ('though', 1)]
[('opportunity', 2), ('curiosity', 2), ('rock', 2), ('mar', 2), ('find', 1), ('similar', 1), ('generally', 1), ('understand', 1), ('statement', 1), ('know', 1), ('instance', 1), ('class', 1), ('rover', 1), ('recognizes', 1), ('signalled', 1), ('word', 1)]
[('corpus', 2), ('labelling', 1), ('data', 1), ('fundamental', 1), ('activity', 1), ('science', 1), ('underpinned', 1), ('practice', 1), ('particularly', 1), ('medicine', 1), ('decade', 1), ('research', 1), ('linguistics', 1), ('least', 1), ('development', 1), ('brown', 1), ('shift', 1)]
[('graph', 2), ('naturally', 1), ('represent', 1), ('information', 1), ('ranging', 1), ('link', 1), ('web', 1), ('page', 1), ('communication', 1), ('email', 1), ('network', 1), ('connection', 1), ('neuron', 1), ('brain', 1), ('often', 1), ('span', 1), ('billion', 1), ('node', 1), ('interaction', 1), ('within', 1)]
[('system', 3), ('structure', 1), ('contemporary', 1), ('communication', 1), ('network', 1), ('grows', 1), ('complex', 1), ('practical', 1), ('networked', 1), ('distributed', 1), ('become', 1), ('prone', 1), ('component', 1), ('failure', 1), ('fault', 1), ('tolerant', 1), ('consensus', 1), ('message', 1), ('passing', 1), ('allows', 1), ('participant', 1), ('agree', 1)]
[('nbsp', 5), ('ℤ', 4), ('code', 3), ('theory', 1), ('developed', 1), ('additive', 1), ('starting', 1), ('point', 1), ('generalization', 1), ('mixed', 1), ('alphabet', 1), ('opened', 1), ('new', 1), ('emergent', 1), ('area', 1), ('research', 1), ('technique', 1), ('used', 1), ('linear', 1)]
[('java', 2), ('database', 2), ('programming', 2), ('textbook', 1), ('cover', 1), ('fundamental', 1), ('advanced', 1), ('technique', 1), ('beginning', 1), ('experienced', 1), ('student', 1), ('programmer', 1), ('course', 1), ('related', 1), ('apache', 1), ('netbeans', 1), ('ide', 1), ('environment', 1)]
[('including', 2), ('book', 1), ('present', 1), ('range', 1), ('topic', 1), ('concerning', 1), ('integrated', 1), ('cad', 1), ('optimization', 1), ('use', 1), ('architecture', 1), ('planning', 1), ('civil', 1), ('engineering', 1), ('construction', 1), ('aec', 1), ('thus', 1), ('help', 1), ('introduce', 1), ('full', 1), ('length', 1), ('treatment', 1), ('subject', 1)]
[('volume', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('hybrid', 1), ('artificial', 1), ('intelligent', 1), ('system', 1), ('hais', 1), ('held', 1), ('salamanca', 1), ('spain', 1), ('june', 1), ('paper', 1), ('published', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('bioinformatics', 1), ('research', 1), ('application', 1), ('isbra', 1), ('held', 1), ('zhangjiajie', 1), ('china', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('page', 1), ('abstract', 1), ('included', 1)]
[('declarative', 2), ('programming', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('kiel', 1), ('day', 1), ('kdpd', 1), ('unifying', 1), ('following', 1), ('th', 1), ('international', 1), ('application', 1), ('knowledge', 1), ('management', 1), ('inap', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('brazilian', 1), ('symposium', 1), ('bioinformatics', 1), ('bsb', 1), ('held', 1), ('belo', 1), ('horizonte', 1), ('brazil', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('th', 2), ('workshop', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('international', 1), ('multi', 1), ('agent', 1), ('based', 1), ('simulation', 1), ('mabs', 1), ('paris', 1), ('france', 1), ('conjunction', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('iapr', 1), ('tc', 1), ('pattern', 1), ('recognition', 1), ('social', 1), ('signal', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('mprss', 1), ('held', 1), ('stockholm', 1), ('sweden', 1), ('august', 1), ('satellite', 1)]
[('proceeding', 2), ('conference', 2), ('volume', 1), ('aciids', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('th', 1), ('asian', 1), ('intelligent', 1), ('information', 1), ('database', 1), ('system', 1), ('held', 1), ('bali', 1), ('indonesia', 1), ('march', 1), ('total', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('automated', 1), ('deduction', 1), ('geometry', 1), ('adg', 1), ('held', 1), ('coimbra', 1), ('portugal', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('european', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('september', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('spanish', 1), ('association', 1), ('artificial', 1), ('intelligence', 1), ('caepia', 1), ('held', 1), ('albacete', 1), ('spain', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('algebraic', 2), ('logic', 2), ('book', 1), ('present', 1), ('first', 1), ('treatment', 1), ('quasi', 1), ('truth', 1), ('fuzzy', 1), ('cover', 1), ('foundation', 1), ('many', 1), ('valued', 1), ('offer', 1), ('comprehensive', 1), ('account', 1), ('basic', 1), ('technique', 1), ('report', 1), ('important', 1), ('result', 1), ('showing', 1), ('pivotal', 1), ('role', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('processing', 1), ('portuguese', 1), ('language', 1), ('propor', 1), ('held', 1), ('tomar', 1), ('portugal', 1), ('july', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('industrial', 1), ('conference', 1), ('advance', 1), ('data', 1), ('mining', 1), ('icdm', 1), ('held', 1), ('new', 1), ('york', 1), ('ny', 1), ('usa', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('data', 1), ('mining', 1), ('pattern', 1), ('recognition', 1), ('mldm', 1), ('held', 1), ('new', 1), ('york', 1), ('ny', 1), ('usa', 1), ('july', 1), ('regular', 1), ('paper', 1), ('presented', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('august', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('scalable', 1), ('uncertainty', 1), ('management', 1), ('sum', 1), ('held', 1), ('nice', 1), ('france', 1), ('september', 1), ('regular', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('lncs', 1), ('transaction', 1), ('foundation', 1), ('mastering', 1), ('change', 1), ('fomac', 1), ('aim', 1), ('establish', 1), ('forum', 1), ('formal', 1), ('method', 1), ('based', 1), ('research', 1), ('dealing', 1), ('nature', 1), ('today', 1), ('agile', 1), ('system', 1), ('development', 1), ('characterized', 1), ('unclear', 1), ('premise', 1), ('unforeseen', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('data', 1), ('mining', 1), ('application', 1), ('adma', 1), ('held', 1), ('gold', 1), ('coast', 1), ('australia', 1), ('december', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('machine', 1), ('learning', 1), ('ml', 1), ('fastest', 1), ('growing', 1), ('field', 1), ('computer', 1), ('science', 1), ('health', 1), ('informatics', 1), ('amongst', 1), ('greatest', 1), ('application', 1), ('challenge', 1), ('providing', 1), ('future', 1), ('benefit', 1), ('improved', 1), ('medical', 1), ('diagnosis', 1), ('disease', 1), ('analysis', 1), ('pharmaceutical', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('medicine', 1), ('aime', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('june', 1), ('revised', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('flexible', 1), ('query', 1), ('answering', 1), ('system', 1), ('fqas', 1), ('held', 1), ('london', 1), ('uk', 1), ('june', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('set', 2), ('lnai', 2), ('paper', 2), ('volume', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('joint', 1), ('conference', 1), ('rough', 1), ('ijcrs', 1), ('held', 1), ('olsztyn', 1), ('poland', 1), ('july', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('logic', 1), ('programming', 1), ('nonmonotonic', 1), ('reasoning', 1), ('lpnmr', 1), ('held', 1), ('espoo', 1), ('finland', 1), ('july', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('data', 1), ('mining', 1), ('pattern', 1), ('recognition', 1), ('mldm', 1), ('held', 1), ('new', 1), ('york', 1), ('ny', 1), ('usa', 1), ('july', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('biomimetic', 1), ('biohybrid', 1), ('system', 1), ('living', 1), ('machine', 1), ('held', 1), ('stanford', 1), ('ca', 1), ('usa', 1), ('july', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('lncs', 2), ('nbsp', 2), ('three', 1), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('held', 1), ('liverpool', 1), ('uk', 1), ('august', 1), ('full', 1), ('paper', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('mexican', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('micai', 1), ('held', 1), ('cancún', 1), ('mexico', 1), ('october', 1), ('nbsp', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('proceeding', 2), ('three', 1), ('volume', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('european', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('dublin', 1), ('ireland', 1), ('september', 1), ('nbsp', 1), ('total', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('principle', 1), ('practice', 1), ('multi', 1), ('agent', 1), ('system', 1), ('prima', 1), ('held', 1), ('nice', 1), ('france', 1), ('october', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('fuzzy', 2), ('rough', 2), ('set', 2), ('book', 1), ('offer', 1), ('timely', 1), ('overview', 1), ('theory', 1), ('method', 1), ('based', 1), ('selected', 1), ('contribution', 1), ('presented', 1), ('international', 1), ('symposium', 1), ('isfuros', 1), ('held', 1), ('varadero', 1), ('cuba', 1), ('october', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('intelligent', 1), ('information', 1), ('database', 1), ('system', 1), ('aciids', 1), ('held', 1), ('yogyakarta', 1), ('indonesia', 1), ('april', 1), ('total', 1), ('full', 1), ('paper', 1)]
[('book', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('bioinformatics', 1), ('research', 1), ('application', 1), ('isbra', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ccf', 1), ('conference', 1), ('natural', 1), ('language', 1), ('processing', 1), ('chinese', 1), ('computing', 1), ('nlpcc', 1), ('held', 1), ('dunhuang', 1), ('china', 1), ('october', 1), ('full', 1), ('paper', 1)]
[('international', 3), ('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('engineering', 1), ('psychology', 1), ('cognitive', 1), ('ergonomics', 1), ('epce', 1), ('held', 1), ('part', 1), ('nd', 1), ('hci', 1), ('took', 1), ('place', 1), ('copenhagen', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('due', 1), ('held', 1), ('singapore', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('foundation', 1), ('intelligent', 1), ('system', 1), ('ismis', 1), ('graz', 1), ('austria', 1), ('october', 1), ('conference', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('full', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('case', 1), ('based', 1), ('reasoning', 1), ('research', 1), ('development', 1), ('iccbr', 1), ('held', 1), ('salamanca', 1), ('spain', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('proceeding', 2), ('conference', 2), ('volume', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('european', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('september', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('explainable', 1), ('transparent', 1), ('ai', 1), ('multi', 1), ('agent', 1), ('system', 1), ('extraamas', 1), ('held', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('long', 1), ('revised', 1), ('paper', 1), ('short', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('industrial', 1), ('engineering', 1), ('application', 1), ('applied', 1), ('intelligent', 1), ('system', 1), ('iea', 1), ('aie', 1), ('held', 1), ('virtually', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('case', 1), ('based', 1), ('reasoning', 1), ('iccbr', 1), ('took', 1), ('place', 1), ('salamanca', 1), ('spain', 1), ('september', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('caepia', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('spanish', 1), ('association', 1), ('artificial', 1), ('intelligence', 1), ('cancelled', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('amalgamated', 1), ('held', 1), ('malaga', 1), ('spain', 1)]
[('diagram', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('held', 1), ('virtually', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('german', 1), ('artificial', 1), ('intelligence', 1), ('ki', 1), ('september', 1), ('october', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('full', 1), ('short', 1), ('paper', 1)]
[('application', 2), ('book', 1), ('cover', 1), ('introduction', 1), ('theory', 1), ('development', 1), ('type', 1), ('fuzzy', 1), ('logic', 1), ('system', 1), ('represent', 1), ('current', 1), ('state', 1), ('art', 1), ('various', 1), ('domain', 1), ('control', 1), ('power', 1), ('plant', 1), ('health', 1), ('care', 1), ('image', 1), ('processing', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('biomimetic', 1), ('biohybrid', 1), ('system', 1), ('living', 1), ('machine', 1), ('freiburg', 1), ('germany', 1), ('july', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('nbsp', 1)]
[('proceeding', 2), ('conference', 2), ('volume', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('european', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('september', 1)]
[('speech', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('text', 1), ('dialogue', 1), ('tsd', 1), ('held', 1), ('olomouc', 1), ('czech', 1), ('republic', 1), ('september', 1), ('keynote', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('conference', 2), ('multi', 1), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('european', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('september', 1)]
[('mexico', 2), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('mexican', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('micai', 1), ('held', 1), ('city', 1), ('october', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('offer', 1), ('excellent', 1), ('presentation', 1), ('intelligent', 1), ('engineering', 1), ('informatics', 1), ('foundation', 1), ('researcher', 1), ('field', 1), ('many', 1), ('example', 1), ('industrial', 1), ('application', 1), ('contains', 1), ('extended', 1), ('version', 1), ('selected', 1), ('paper', 1), ('presented', 1)]
[('new', 2), ('metaheuristic', 2), ('book', 1), ('explores', 1), ('alternative', 1), ('development', 1), ('proved', 1), ('effective', 1), ('application', 1), ('several', 1), ('complex', 1), ('problem', 1), ('though', 1), ('algorithm', 1), ('considered', 1), ('offer', 1), ('promising', 1), ('result', 1)]
[('book', 2), ('evolutionary', 2), ('algorithm', 2), ('introduces', 1), ('reader', 1), ('fundamental', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('special', 1), ('emphasis', 1), ('first', 1), ('offer', 1), ('literature', 1), ('review', 1), ('several', 1), ('regarded', 1), ('including', 1), ('particle', 1)]
[('book', 1), ('feature', 1), ('chapter', 1), ('based', 1), ('numerical', 1), ('evolutionary', 1), ('optimization', 1), ('neo', 1), ('workshop', 1), ('held', 1), ('september', 1), ('city', 1), ('tijuana', 1), ('mexico', 1), ('event', 1), ('gathered', 1), ('researcher', 1), ('complimentary', 1), ('field', 1), ('discus', 1)]
[('technique', 2), ('book', 1), ('offer', 1), ('overview', 1), ('state', 1), ('art', 1), ('econometric', 1), ('special', 1), ('emphasis', 1), ('financial', 1), ('econometrics', 1), ('major', 1), ('need', 1), ('traditional', 1), ('way', 1), ('designing', 1), ('mathematical', 1), ('model', 1), ('based', 1)]
[('optimization', 2), ('book', 1), ('comprehensive', 1), ('collection', 1), ('extended', 1), ('contribution', 1), ('workshop', 1), ('computational', 1), ('everyday', 1), ('life', 1), ('unthinkable', 1), ('without', 1), ('try', 1), ('minimize', 1), ('effort', 1), ('maximize', 1), ('achieved', 1), ('profit', 1), ('many', 1)]
[('learning', 2), ('model', 2), ('book', 1), ('review', 1), ('research', 1), ('development', 1), ('diverse', 1), ('area', 1), ('reinforcement', 1), ('free', 1), ('actor', 1), ('critic', 1), ('method', 1), ('based', 1), ('control', 1), ('information', 1), ('geometry', 1), ('policy', 1), ('search', 1), ('reward', 1), ('design', 1), ('exploration', 1), ('biology', 1)]
[('computational', 2), ('book', 1), ('cover', 1), ('theoretical', 1), ('work', 1), ('application', 1), ('approach', 1), ('technique', 1), ('model', 1), ('information', 1), ('presentation', 1), ('language', 1), ('artificial', 1), ('human', 1), ('natural', 1), ('way', 1), ('technological', 1), ('development', 1)]
[('present', 1), ('book', 1), ('includes', 1), ('set', 1), ('selected', 1), ('revised', 1), ('extended', 1), ('version', 1), ('best', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('computational', 1), ('intelligence', 1), ('ijcci', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('september', 1)]
[('book', 2), ('provides', 2), ('learning', 2), ('first', 1), ('course', 1), ('deep', 1), ('computational', 1), ('mechanic', 1), ('start', 1), ('short', 1), ('introduction', 1), ('machine', 1), ('fundamental', 1), ('concept', 1), ('neural', 1), ('network', 1), ('explained', 1), ('thoroughly', 1), ('overview', 1)]
[('university', 4), ('book', 1), ('result', 1), ('multi', 1), ('year', 1), ('research', 1), ('project', 1), ('led', 1), ('sponsored', 1), ('chieti', 1), ('pescara', 1), ('national', 1), ('chengchi', 1), ('salamanca', 1), ('osaka', 1), ('fifth', 1), ('volume', 1), ('emerge', 1), ('international', 1)]
[('new', 2), ('corporate', 1), ('success', 1), ('changed', 1), ('importance', 1), ('development', 1), ('business', 1), ('analytics', 1), ('ba', 1), ('furthermore', 1), ('support', 1), ('computational', 1), ('intelligence', 1), ('based', 1), ('technique', 1), ('book', 1), ('open', 1), ('avenue', 1), ('subject', 1), ('identifies', 1), ('key', 1)]
[('method', 2), ('fake', 2), ('news', 2), ('book', 1), ('present', 1), ('latest', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('theoretical', 1), ('novel', 1), ('application', 1), ('field', 1), ('computational', 1), ('intelligence', 1), ('technique', 1), ('combating', 1), ('nbsp', 1), ('everywhere', 1), ('despite', 1), ('effort', 1), ('major', 1)]
[('book', 2), ('intelligence', 2), ('surveillance', 2), ('aim', 1), ('highlight', 1), ('latest', 1), ('achievement', 1), ('use', 1), ('artificial', 1), ('digital', 1), ('disease', 1), ('pandemic', 1), ('public', 1), ('clinical', 1), ('health', 1), ('edited', 1), ('contains', 1), ('selected', 1), ('paper', 1)]
[('book', 1), ('focus', 1), ('original', 1), ('approach', 1), ('intended', 1), ('support', 1), ('development', 1), ('biologically', 1), ('inspired', 1), ('cognitive', 1), ('architecture', 1), ('nbsp', 1), ('bridge', 1), ('together', 1), ('different', 1), ('discipline', 1), ('including', 1), ('artificial', 1), ('intelligence', 1), ('linguistics', 1), ('neuro', 1), ('social', 1)]
[('book', 1), ('provides', 1), ('systematic', 1), ('comprehensive', 1), ('overview', 1), ('ai', 1), ('machine', 1), ('learning', 1), ('ability', 1), ('identify', 1), ('pattern', 1), ('large', 1), ('complex', 1), ('data', 1), ('set', 1), ('remarkable', 1), ('success', 1), ('experienced', 1), ('last', 1), ('decade', 1), ('emulating', 1)]
[('si', 2), ('swarm', 1), ('intelligence', 1), ('grown', 1), ('significantly', 1), ('perspective', 1), ('algorithmic', 1), ('development', 1), ('application', 1), ('covering', 1), ('almost', 1), ('discipline', 1), ('science', 1), ('technology', 1), ('book', 1), ('emphasizes', 1), ('study', 1), ('existing', 1), ('technique', 1)]
[('recent', 2), ('ai', 2), ('book', 1), ('tackle', 1), ('research', 1), ('trend', 1), ('role', 1), ('advancing', 1), ('automotive', 1), ('manufacturing', 1), ('augmented', 1), ('reality', 1), ('sustainable', 1), ('development', 1), ('smart', 1), ('city', 1), ('telemedicine', 1), ('robotics', 1), ('shed', 1), ('light', 1), ('innovation', 1), ('classical', 1)]
[('edge', 3), ('ai', 3), ('explainability', 2), ('book', 1), ('present', 1), ('amalgamation', 1), ('computing', 1), ('issue', 1), ('transparency', 1), ('fairness', 1), ('accountability', 1), ('interpretability', 1), ('data', 1), ('fusion', 1), ('comprehensibility', 1), ('significant', 1)]
[('learning', 2), ('book', 1), ('beneficial', 1), ('early', 1), ('researcher', 1), ('faculty', 1), ('want', 1), ('work', 1), ('deep', 1), ('machine', 1), ('classification', 1), ('domain', 1), ('help', 1), ('study', 1), ('formulate', 1), ('design', 1), ('research', 1), ('goal', 1), ('aligning', 1), ('latest', 1), ('technology', 1)]
[('book', 2), ('cyber', 2), ('physical', 2), ('scientific', 1), ('theme', 1), ('virtualisation', 1), ('multifaceted', 1), ('key', 1), ('enabler', 1), ('industry', 1), ('holonic', 1), ('cloud', 1), ('manufacturing', 1), ('addressed', 1), ('framework', 1), ('system', 1), ('development', 1), ('nbsp', 1), ('approach', 1)]
[('knowledge', 2), ('distillation', 2), ('book', 1), ('provides', 1), ('timely', 1), ('coverage', 1), ('paradigm', 1), ('efficient', 1), ('way', 1), ('nbsp', 1), ('model', 1), ('compression', 1), ('positioned', 1), ('general', 1), ('setting', 1), ('transfer', 1), ('learning', 1), ('effectively', 1), ('learns', 1), ('lightweight', 1)]
[('unification', 2), ('approach', 2), ('symbolist', 1), ('connectionist', 1), ('model', 1), ('major', 1), ('trend', 1), ('ai', 1), ('key', 1), ('keep', 1), ('symbolic', 1), ('semantics', 1), ('unchanged', 1), ('unfortunately', 1), ('present', 1), ('embedding', 1), ('book', 1), ('make', 1), ('possible', 1)]
[('neural', 2), ('network', 2), ('primary', 1), ('purpose', 1), ('book', 1), ('show', 1), ('multilayer', 1), ('considered', 1), ('multistage', 1), ('system', 1), ('learning', 1), ('class', 1), ('treated', 1), ('special', 1), ('sort', 1), ('optimal', 1), ('control', 1), ('problem', 1)]
[('algorithm', 3), ('nature', 1), ('inspired', 1), ('cuckoo', 1), ('search', 1), ('firefly', 1), ('become', 1), ('popular', 1), ('widely', 1), ('used', 1), ('recent', 1), ('year', 1), ('many', 1), ('application', 1), ('flexible', 1), ('efficient', 1), ('easy', 1), ('implement', 1), ('new', 1), ('progress', 1), ('made', 1), ('last', 1)]
[('book', 2), ('carefully', 1), ('edited', 1), ('contains', 1), ('contribution', 1), ('prominent', 1), ('active', 1), ('researcher', 1), ('scholar', 1), ('broadly', 1), ('perceived', 1), ('area', 1), ('intelligent', 1), ('system', 1), ('unique', 1), ('respect', 1), ('width', 1), ('coverage', 1), ('tool', 1), ('technique', 1)]
[('cyberwarfare', 1), ('become', 1), ('important', 1), ('concern', 1), ('governmental', 1), ('agency', 1), ('business', 1), ('various', 1), ('type', 1), ('timely', 1), ('volume', 1), ('contribution', 1), ('internationally', 1), ('recognized', 1), ('leader', 1), ('field', 1), ('give', 1), ('reader', 1), ('glimpse', 1)]
[('conference', 2), ('edited', 1), ('book', 1), ('present', 1), ('scientific', 1), ('result', 1), ('th', 1), ('iee', 1), ('acis', 1), ('international', 1), ('computer', 1), ('information', 1), ('science', 1), ('icis', 1), ('held', 1), ('june', 1), ('taiyuan', 1), ('china', 1), ('aim', 1), ('bring', 1), ('together', 1)]
[('matrix', 2), ('related', 2), ('book', 1), ('present', 1), ('concept', 1), ('index', 1), ('augmented', 1), ('calculus', 1), ('comprehensive', 1), ('form', 1), ('mostly', 1), ('illustrates', 1), ('exposition', 1), ('example', 1), ('generalized', 1), ('net', 1), ('intuitionistic', 1), ('fuzzy', 1), ('set', 1)]
[('reader', 1), ('seeking', 1), ('gain', 1), ('handle', 1), ('internet', 1), ('global', 1), ('expansion', 1), ('find', 1), ('book', 1), ('rich', 1), ('scholarly', 1), ('foundation', 1), ('combined', 1), ('cutting', 1), ('edge', 1), ('discussion', 1), ('emerging', 1), ('icts', 1), ('service', 1), ('complex', 1), ('societal', 1), ('context', 1), ('embedded', 1)]
[('complex', 2), ('lastdecades', 1), ('seen', 1), ('emergence', 1), ('network', 1), ('language', 1), ('whicha', 1), ('wide', 1), ('range', 1), ('phenomenon', 1), ('field', 1), ('diverse', 1), ('physic', 1), ('computerscience', 1), ('medicine', 1), ('name', 1), ('properly', 1), ('described', 1)]
[('book', 2), ('concept', 2), ('trust', 2), ('explores', 1), ('model', 1), ('digitized', 1), ('nbsp', 1), ('world', 1), ('core', 1), ('come', 1), ('play', 1), ('multiple', 1), ('social', 1), ('economic', 1), ('relation', 1), ('modern', 1), ('life', 1), ('provides', 1), ('insight', 1), ('current', 1), ('state', 1), ('research', 1)]
[('system', 3), ('intelligent', 2), ('information', 2), ('technology', 2), ('book', 1), ('primarily', 1), ('address', 1), ('ii', 1), ('integration', 1), ('artificial', 1), ('intelligence', 1), ('database', 1), ('methodology', 1), ('create', 1), ('next', 1), ('generation', 1)]
[('smart', 3), ('thing', 2), ('iot', 2), ('book', 1), ('present', 1), ('selection', 1), ('highly', 1), ('relevant', 1), ('work', 1), ('concerning', 1), ('internet', 1), ('including', 1), ('architecture', 1), ('standardization', 1), ('city', 1), ('health', 1), ('communication', 1), ('outstanding', 1), ('use', 1), ('case', 1)]
[('neural', 2), ('book', 1), ('describes', 1), ('new', 1), ('theory', 1), ('application', 1), ('artificial', 1), ('network', 1), ('special', 1), ('focus', 1), ('computation', 1), ('cognitive', 1), ('science', 1), ('machine', 1), ('learning', 1), ('discus', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('intersection', 1), ('different', 1), ('field', 1)]
[('book', 2), ('function', 2), ('approximation', 2), ('brief', 1), ('present', 1), ('strong', 1), ('fractional', 1), ('analysis', 1), ('banach', 1), ('space', 1), ('valued', 1), ('real', 1), ('domain', 1), ('result', 1), ('abstract', 1), ('nature', 1), ('analytic', 1), ('inequality', 1), ('korovkin', 1), ('neural', 1), ('network', 1)]
[('cio', 2), ('book', 1), ('review', 1), ('latest', 1), ('research', 1), ('effectiveness', 1), ('chief', 1), ('information', 1), ('officer', 1), ('organization', 1), ('impact', 1), ('success', 1), ('present', 1), ('model', 1), ('six', 1), ('different', 1), ('role', 1), ('contemporary', 1), ('act', 1), ('technology', 1), ('provider', 1)]
[('diagnosis', 2), ('ovarian', 2), ('book', 1), ('discus', 1), ('computer', 1), ('supported', 1), ('medical', 1), ('particular', 1), ('focus', 1), ('tumor', 1), ('cancer', 1), ('difficult', 1), ('diagnose', 1), ('high', 1), ('mortality', 1), ('rate', 1), ('especially', 1), ('central', 1), ('eastern', 1), ('europe', 1), ('present', 1)]
[('book', 1), ('review', 1), ('blend', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('approach', 1), ('take', 1), ('learning', 1), ('next', 1), ('level', 1), ('adding', 1), ('value', 1), ('customization', 1), ('investigates', 1), ('three', 1), ('method', 1), ('crowdsourcing', 1), ('via', 1), ('social', 1), ('network', 1), ('user', 1), ('profiling', 1), ('machine', 1)]
[('book', 2), ('chapter', 2), ('compiles', 1), ('latest', 1), ('research', 1), ('cooperation', 1), ('robot', 1), ('sensor', 1), ('network', 1), ('structured', 1), ('twelve', 1), ('address', 1), ('fundamental', 1), ('theoretical', 1), ('implementation', 1), ('experimentation', 1), ('issue', 1), ('organized', 1)]
[('rhythm', 3), ('perhaps', 2), ('action', 1), ('response', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('click', 1), ('swipe', 1), ('tap', 1), ('sway', 1), ('beat', 1), ('intersect', 1), ('everyday', 1), ('life', 1), ('synchronize', 1), ('disrupt', 1)]
[('amp', 2), ('nbsp', 2), ('lt', 1), ('gt', 1), ('objective', 1), ('book', 1), ('navigate', 1), ('beginning', 1), ('graduate', 1), ('student', 1), ('mathematics', 1), ('engineering', 1), ('mature', 1), ('field', 1), ('multiscale', 1), ('problem', 1), ('homogenization', 1), ('theory', 1), ('provide', 1), ('idea', 1), ('broad', 1)]
[('research', 2), ('information', 2), ('book', 1), ('present', 1), ('current', 1), ('state', 1), ('system', 1), ('digital', 1), ('transformation', 1), ('due', 1), ('global', 1), ('trend', 1), ('digitalization', 1), ('impact', 1), ('covid', 1), ('pandemic', 1), ('need', 1), ('innovative', 1), ('high', 1), ('quality', 1)]
[('technology', 2), ('book', 1), ('show', 1), ('advantage', 1), ('using', 1), ('different', 1), ('perspective', 1), ('scientific', 1), ('background', 1), ('developing', 1), ('support', 1), ('integrated', 1), ('daily', 1), ('life', 1), ('highlight', 1), ('interaction', 1), ('key', 1), ('factor', 1)]
[('textbook', 1), ('introduces', 1), ('concise', 1), ('approach', 1), ('design', 1), ('molecular', 1), ('algorithm', 1), ('student', 1), ('researcher', 1), ('interested', 1), ('dealing', 1), ('complex', 1), ('problem', 1), ('numerous', 1), ('example', 1), ('exercise', 1), ('understand', 1), ('main', 1), ('difference', 1)]
[('solution', 3), ('data', 2), ('mining', 2), ('book', 1), ('focus', 1), ('new', 1), ('emerging', 1), ('offer', 1), ('greater', 1), ('level', 1), ('transparency', 1), ('existing', 1), ('transparent', 1), ('desirable', 1), ('property', 1), ('effective', 1), ('fully', 1), ('automatic', 1), ('scalable', 1), ('covered', 1)]
[('big', 2), ('data', 2), ('book', 1), ('explores', 1), ('significant', 1), ('role', 1), ('granular', 1), ('computing', 1), ('advancing', 1), ('machine', 1), ('learning', 1), ('towards', 1), ('depth', 1), ('processing', 1), ('begin', 1), ('introducing', 1), ('main', 1), ('characteristic', 1), ('five', 1), ('v', 1), ('volume', 1), ('velocity', 1), ('variety', 1)]
[('book', 1), ('consists', 1), ('eight', 1), ('chapter', 1), ('five', 1), ('provide', 1), ('summary', 1), ('tutorial', 1), ('workshop', 1), ('organised', 1), ('part', 1), ('chipset', 1), ('summer', 1), ('school', 1), ('high', 1), ('performance', 1), ('modelling', 1), ('simulation', 1), ('big', 1), ('data', 1), ('application', 1), ('cost', 1), ('action', 1), ('new', 1), ('trend', 1)]
[('library', 2), ('world', 1), ('wide', 1), ('web', 1), ('considered', 1), ('huge', 1), ('consequence', 1), ('need', 1), ('capable', 1), ('librarian', 1), ('responsible', 1), ('classification', 1), ('retrieval', 1), ('document', 1), ('mediation', 1), ('resource', 1), ('user', 1), ('based', 1), ('idea', 1)]
[('model', 2), ('generalization', 2), ('error', 2), ('select', 1), ('best', 1), ('performing', 1), ('data', 1), ('driven', 1), ('rigorously', 1), ('estimate', 1), ('statistical', 1), ('learning', 1), ('theory', 1), ('answer', 1), ('question', 1), ('deriving', 1), ('non', 1), ('asymptotic', 1), ('bound', 1)]
[('student', 2), ('book', 1), ('editor', 1), ('explain', 1), ('enrolled', 1), ('digital', 1), ('forensic', 1), ('course', 1), ('institution', 1), ('exposed', 1), ('experiential', 1), ('learning', 1), ('opportunity', 1), ('acquire', 1), ('knowledge', 1), ('skill', 1), ('subject', 1), ('matter', 1)]
[('factor', 2), ('book', 1), ('provides', 1), ('reader', 1), ('overview', 1), ('state', 1), ('art', 1), ('field', 1), ('industry', 1), ('related', 1), ('research', 1), ('advancement', 1), ('respective', 1), ('chapter', 1), ('identify', 1), ('discus', 1), ('new', 1), ('dimension', 1), ('risk', 1), ('success', 1), ('along', 1)]
[('nbsp', 6), ('cyber', 2), ('book', 1), ('present', 1), ('implementation', 1), ('novel', 1), ('concept', 1), ('solution', 1), ('allows', 1), ('enhance', 1), ('security', 1), ('administrative', 1), ('industrial', 1), ('system', 1), ('resilience', 1), ('economy', 1), ('society', 1)]
[('journalism', 2), ('book', 1), ('aim', 1), ('explore', 1), ('diverse', 1), ('landscape', 1), ('third', 1), ('decade', 1), ('twenty', 1), ('first', 1), ('century', 1), ('constantly', 1), ('changing', 1), ('still', 1), ('dealing', 1), ('consequence', 1), ('global', 1), ('pandemic', 1), ('total', 1), ('concept', 1), ('refers', 1)]
[('conference', 2), ('book', 1), ('contains', 1), ('selected', 1), ('paper', 1), ('international', 1), ('extreme', 1), ('learning', 1), ('machine', 1), ('held', 1), ('singapore', 1), ('november', 1), ('provided', 1), ('forum', 1), ('academic', 1), ('researcher', 1), ('engineer', 1), ('share', 1)]
[('lt', 1), ('gt', 1), ('possibility', 1), ('process', 1), ('mining', 1), ('hospital', 1), ('book', 1), ('author', 1), ('provide', 1), ('answer', 1), ('question', 1), ('presenting', 1), ('healthcare', 1), ('reference', 1), ('model', 1), ('outline', 1), ('different', 1), ('class', 1), ('data', 1), ('potentially', 1)]
[('artificial', 3), ('book', 1), ('offer', 1), ('introduction', 1), ('adaptive', 1), ('system', 1), ('general', 1), ('model', 1), ('relationship', 1), ('data', 1), ('algorithm', 1), ('used', 1), ('analyze', 1), ('subsequently', 1), ('describes', 1), ('neural', 1), ('network', 1), ('subclass', 1)]
[('learning', 3), ('extreme', 2), ('machine', 2), ('pervasive', 2), ('book', 1), ('contains', 1), ('selected', 1), ('paper', 1), ('international', 1), ('conference', 1), ('held', 1), ('yangzhou', 1), ('china', 1), ('december', 1), ('elm', 1), ('aim', 1), ('enable', 1)]
[('paper', 2), ('volume', 1), ('refereed', 1), ('presented', 1), ('ai', 1), ('thirty', 1), ('fourth', 1), ('sgai', 1), ('international', 1), ('conference', 1), ('innovative', 1), ('technique', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('held', 1), ('cambridge', 1), ('december', 1), ('technical', 1)]
[('uncertainty', 2), ('various', 1), ('example', 1), ('ranging', 1), ('geosciences', 1), ('environmental', 1), ('science', 1), ('thisbook', 1), ('explains', 1), ('generate', 1), ('adequate', 1), ('description', 1), ('justifysemiheuristic', 1), ('algorithm', 1), ('processing', 1), ('make', 1)]
[('result', 2), ('social', 2), ('network', 2), ('book', 1), ('survey', 1), ('known', 1), ('present', 1), ('series', 1), ('original', 1), ('mathematical', 1), ('modeling', 1), ('focusing', 1), ('model', 1), ('informational', 1), ('influence', 1), ('control', 1), ('confrontation', 1), ('nbsp', 1), ('online', 1)]
[('conference', 2), ('proceeding', 1), ('volume', 1), ('gather', 1), ('selection', 1), ('paper', 1), ('presented', 1), ('fifth', 1), ('international', 1), ('high', 1), ('performance', 1), ('scientific', 1), ('computing', 1), ('took', 1), ('place', 1), ('hanoi', 1), ('march', 1), ('organized', 1), ('institute', 1)]
[('asia', 2), ('amp', 2), ('december', 2), ('book', 1), ('contains', 1), ('refereed', 1), ('paper', 1), ('accepted', 1), ('first', 1), ('edition', 1), ('pacificconference', 1), ('complex', 1), ('system', 1), ('design', 1), ('management', 1), ('csd', 1), ('took', 1), ('place', 1), ('insingapore', 1)]
[('programming', 4), ('logic', 2), ('book', 1), ('introduces', 1), ('new', 1), ('based', 1), ('multi', 1), ('paradigm', 1), ('language', 1), ('integrates', 1), ('functional', 1), ('dynamic', 1), ('tabling', 1), ('scripting', 1), ('use', 1), ('solving', 1), ('combinatorial', 1), ('search', 1), ('problem', 1), ('including', 1), ('cp', 1)]
[('book', 2), ('symposium', 2), ('th', 2), ('contains', 1), ('edited', 1), ('selection', 1), ('paper', 1), ('accepted', 1), ('presentation', 1), ('discussion', 1), ('first', 1), ('international', 1), ('qualitative', 1), ('research', 1), ('isqr', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('july', 1)]
[('authentication', 4), ('book', 2), ('dedicated', 1), ('advance', 1), ('field', 1), ('user', 1), ('cover', 1), ('detailed', 1), ('description', 1), ('process', 1), ('type', 1), ('modality', 1), ('along', 1), ('several', 1), ('feature', 1), ('factor', 1)]
[('book', 2), ('problem', 2), ('discrete', 2), ('scheduling', 2), ('first', 2), ('address', 1), ('difficult', 1), ('computationally', 1), ('intractable', 1), ('class', 1), ('resource', 1), ('constrained', 1), ('continuous', 1), ('part', 1), ('discus', 1), ('belonging', 1)]
[('book', 1), ('provides', 1), ('introduction', 1), ('overview', 1), ('rapidly', 1), ('evolving', 1), ('topic', 1), ('game', 1), ('narrative', 1), ('presenting', 1), ('new', 1), ('perspective', 1), ('employed', 1), ('researcher', 1), ('industry', 1), ('highlighting', 1), ('recent', 1), ('empirical', 1), ('finding', 1), ('illustrate', 1), ('nature', 1)]
[('book', 1), ('cover', 1), ('state', 1), ('art', 1), ('topic', 1), ('practical', 1), ('implementation', 1), ('spoken', 1), ('dialog', 1), ('system', 1), ('intelligent', 1), ('assistant', 1), ('everyday', 1), ('application', 1), ('present', 1), ('scientific', 1), ('achievement', 1), ('language', 1), ('processing', 1), ('result', 1), ('development', 1)]
[('slum', 2), ('study', 2), ('book', 1), ('earnest', 1), ('effort', 1), ('understanding', 1), ('need', 1), ('taking', 1), ('case', 1), ('kalaburagi', 1), ('india', 1), ('aim', 1), ('contribute', 1), ('sustainable', 1), ('methodology', 1), ('advance', 1), ('living', 1), ('condition', 1), ('dweller', 1), ('better', 1)]
[('mfg', 2), ('wireless', 2), ('network', 2), ('book', 1), ('cover', 1), ('basic', 1), ('theory', 1), ('mean', 1), ('field', 1), ('game', 1), ('application', 1), ('start', 1), ('overview', 1), ('current', 1), ('future', 1), ('state', 1), ('art', 1), ('tutorial', 1), ('presented', 1)]
[('data', 2), ('urban', 2), ('book', 1), ('collect', 1), ('ground', 1), ('breaking', 1), ('work', 1), ('actual', 1), ('potential', 1), ('impact', 1), ('big', 1), ('integrated', 1), ('design', 1), ('resilient', 1), ('environment', 1), ('including', 1), ('human', 1), ('ecology', 1), ('centred', 1), ('perspective', 1), ('comprehending', 1), ('designing', 1), ('social', 1)]
[('data', 5), ('nbsp', 4), ('mobile', 4), ('big', 3), ('book', 1), ('provides', 1), ('comprehensive', 1), ('picture', 1), ('starting', 1), ('source', 1), ('driven', 1), ('application', 1), ('comprises', 1), ('main', 1), ('component', 1), ('overview', 1), ('case', 1), ('study', 1)]
[('field', 2), ('book', 1), ('present', 1), ('introduction', 1), ('applied', 1), ('evaluative', 1), ('informetrics', 1), ('dealing', 1), ('use', 1), ('bibliometric', 1), ('informetric', 1), ('indicator', 1), ('research', 1), ('assessment', 1), ('sketch', 1), ('history', 1), ('recent', 1), ('achievement', 1), ('potential', 1)]
[('facial', 2), ('beauty', 2), ('analysis', 2), ('book', 1), ('cover', 1), ('key', 1), ('advance', 1), ('computerized', 1), ('emphasis', 1), ('data', 1), ('driven', 1), ('research', 1), ('result', 1), ('quantitative', 1), ('experiment', 1), ('take', 1), ('big', 1), ('step', 1), ('toward', 1), ('practical', 1), ('proposes', 1), ('reliable', 1)]
[('universal', 1), ('code', 1), ('efficiently', 1), ('compress', 1), ('sequence', 1), ('generated', 1), ('stationary', 1), ('ergodic', 1), ('source', 1), ('unknown', 1), ('statistic', 1), ('originally', 1), ('designed', 1), ('lossless', 1), ('data', 1), ('compression', 1), ('meantime', 1), ('nbsp', 1), ('realized', 1), ('used', 1)]
[('data', 2), ('illuminating', 1), ('text', 1), ('reference', 1), ('survey', 1), ('state', 1), ('art', 1), ('science', 1), ('provides', 1), ('practical', 1), ('guidance', 1), ('big', 1), ('analytics', 1), ('expert', 1), ('perspective', 1), ('provided', 1), ('authoritative', 1), ('researcher', 1), ('practitioner', 1), ('around', 1), ('world', 1), ('discussing', 1)]
[('review', 2), ('book', 1), ('offer', 1), ('comprehensive', 1), ('multilabel', 1), ('technique', 1), ('widely', 1), ('used', 1), ('classify', 1), ('label', 1), ('text', 1), ('picture', 1), ('video', 1), ('music', 1), ('internet', 1), ('deep', 1), ('specialized', 1), ('literature', 1), ('field', 1), ('includes', 1), ('available', 1), ('software', 1), ('needed', 1)]
[('book', 2), ('aim', 1), ('presenting', 1), ('field', 1), ('quantum', 1), ('information', 1), ('theory', 1), ('intuitive', 1), ('didactic', 1), ('self', 1), ('contained', 1), ('way', 1), ('taking', 1), ('account', 1), ('several', 1), ('multidisciplinary', 1), ('aspect', 1), ('particularly', 1), ('suited', 1), ('student', 1), ('researcher', 1)]
[('book', 1), ('offer', 1), ('postgraduate', 1), ('early', 1), ('career', 1), ('researcher', 1), ('accounting', 1), ('information', 1), ('system', 1), ('guide', 1), ('choosing', 1), ('executing', 1), ('reporting', 1), ('appropriate', 1), ('data', 1), ('analysis', 1), ('method', 1), ('answer', 1), ('research', 1), ('question', 1), ('provides', 1), ('reader', 1), ('basic', 1)]
[('quality', 2), ('model', 2), ('book', 1), ('cover', 1), ('whole', 1), ('spectrum', 1), ('modeling', 1), ('goal', 1), ('achieve', 1), ('optimal', 1), ('process', 1), ('developed', 1), ('focus', 1), ('balance', 1), ('consideration', 1), ('across', 1), ('semiotic', 1), ('level', 1), ('used', 1), ('different', 1), ('purpose', 1)]
[('book', 2), ('focus', 1), ('development', 1), ('use', 1), ('interoperability', 1), ('standard', 1), ('related', 1), ('healthcare', 1), ('information', 1), ('technology', 1), ('hit', 1), ('provides', 1), ('depth', 1), ('discussion', 1), ('associated', 1), ('essential', 1), ('aspect', 1), ('explains', 1), ('principle', 1), ('conformance', 1)]
[('collection', 1), ('high', 1), ('quality', 1), ('article', 1), ('field', 1), ('combinatorics', 1), ('geometry', 1), ('algebraic', 1), ('topology', 1), ('theoretical', 1), ('computer', 1), ('science', 1), ('tribute', 1), ('jiří', 1), ('matoušek', 1), ('passed', 1), ('away', 1), ('prematurely', 1), ('march', 1), ('collaborative', 1), ('effort', 1)]
[('making', 2), ('decision', 2), ('system', 2), ('book', 1), ('offer', 1), ('collection', 1), ('guideline', 1), ('particularly', 1), ('useful', 1), ('concerning', 1), ('roundabout', 1), ('safe', 1), ('modern', 1), ('solution', 1), ('transport', 1), ('network', 1), ('support', 1), ('described', 1)]
[('book', 1), ('introduces', 1), ('innovative', 1), ('interdisciplinary', 1), ('application', 1), ('advanced', 1), ('technology', 1), ('featuring', 1), ('paper', 1), ('th', 1), ('day', 1), ('bhaas', 1), ('bosnian', 1), ('herzegovinian', 1), ('american', 1), ('academy', 1), ('art', 1), ('science', 1), ('held', 1), ('jahorina', 1), ('bosnia', 1), ('herzegovina', 1)]
[('system', 3), ('advanced', 2), ('intelligent', 2), ('proceeding', 1), ('book', 1), ('present', 1), ('extended', 1), ('version', 1), ('paper', 1), ('network', 1), ('selected', 1), ('second', 1), ('edition', 1), ('international', 1), ('conference', 1), ('sustainable', 1), ('development', 1)]
[('book', 1), ('highlight', 1), ('recent', 1), ('research', 1), ('bio', 1), ('inspired', 1), ('computing', 1), ('various', 1), ('innovative', 1), ('application', 1), ('information', 1), ('communication', 1), ('technology', 1), ('present', 1), ('high', 1), ('quality', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('innovation', 1)]
[('intelligence', 3), ('artificial', 2), ('robotics', 2), ('book', 1), ('present', 1), ('new', 1), ('technology', 1), ('application', 1), ('deep', 1), ('learning', 1), ('field', 1), ('machine', 1), ('mi', 1), ('unifying', 1), ('experiencing', 1), ('constant', 1), ('growth', 1), ('change', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('rd', 1), ('conference', 1), ('computer', 1), ('science', 1), ('electronics', 1), ('industrial', 1), ('engineering', 1), ('csei', 1), ('held', 1), ('ambato', 1), ('october', 1), ('participant', 1), ('country', 1), ('guest', 1), ('speaker', 1), ('chile', 1), ('colombia', 1), ('brasil', 1)]
[('book', 1), ('remarkable', 1), ('collection', 1), ('chapter', 1), ('covering', 1), ('wide', 1), ('domain', 1), ('topic', 1), ('related', 1), ('artificial', 1), ('intelligence', 1), ('application', 1), ('real', 1), ('world', 1), ('conference', 1), ('attracted', 1), ('total', 1), ('submission', 1), ('many', 1), ('academic', 1), ('pioneering', 1)]
[('book', 1), ('interest', 1), ('practitioner', 1), ('researcher', 1), ('graduate', 1), ('student', 1), ('seeking', 1), ('apply', 1), ('existing', 1), ('technique', 1), ('learn', 1), ('state', 1), ('art', 1), ('explore', 1), ('novel', 1), ('concept', 1), ('theory', 1), ('application', 1), ('fuzzy', 1), ('set', 1), ('logic', 1), ('human', 1)]
[('drawing', 1), ('research', 1), ('conducted', 1), ('last', 1), ('year', 1), ('cornwall', 1), ('uk', 1), ('new', 1), ('book', 1), ('explores', 1), ('impact', 1), ('eu', 1), ('bt', 1), ('funded', 1), ('introduction', 1), ('fibre', 1), ('broadband', 1), ('rural', 1), ('smes', 1), ('including', 1), ('qualitative', 1), ('methodology', 1), ('depth', 1), ('focus', 1), ('group', 1)]
[('handbook', 1), ('offer', 1), ('comprehensive', 1), ('coverage', 1), ('recent', 1), ('advancement', 1), ('big', 1), ('data', 1), ('technology', 1), ('related', 1), ('paradigm', 1), ('nbsp', 1), ('chapter', 1), ('authored', 1), ('international', 1), ('leading', 1), ('expert', 1), ('field', 1), ('reviewed', 1), ('revised', 1), ('maximum', 1), ('reader', 1)]
[('technology', 2), ('volume', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('mhealth', 1), ('accessible', 1), ('oriented', 1), ('researcher', 1), ('practitioner', 1), ('background', 1), ('computer', 1), ('science', 1), ('engineering', 1), ('statistic', 1), ('applied', 1), ('mathematics', 1), ('contributing', 1)]
[('enterprise', 2), ('first', 1), ('book', 1), ('seriously', 1), ('address', 1), ('disconnection', 1), ('nimble', 1), ('agile', 1), ('team', 1), ('group', 1), ('including', 1), ('architecture', 1), ('program', 1), ('management', 1), ('office', 1), ('pmo', 1), ('human', 1), ('resource', 1), ('even', 1), ('business', 1), ('executive', 1)]
[('router', 2), ('task', 2), ('step', 2), ('easy', 1), ('follow', 1), ('text', 1), ('reference', 1), ('present', 1), ('practical', 1), ('guide', 1), ('configuration', 1), ('cisco', 1), ('beginner', 1), ('advanced', 1), ('operation', 1), ('work', 1), ('start', 1), ('simple', 1), ('connecting', 1), ('performing', 1), ('basic', 1)]
[('theory', 3), ('treatise', 1), ('present', 1), ('integrated', 1), ('perspective', 1), ('interplay', 1), ('set', 1), ('graph', 1), ('providing', 1), ('extensive', 1), ('selection', 1), ('example', 1), ('highlight', 1), ('method', 1), ('used', 1), ('better', 1), ('solve', 1), ('problem', 1), ('originated', 1)]
[('book', 1), ('written', 1), ('anyone', 1), ('interested', 1), ('field', 1), ('research', 1), ('evolves', 1), ('fundamental', 1), ('role', 1), ('understanding', 1), ('uncertainty', 1), ('involved', 1), ('different', 1), ('level', 1), ('analysis', 1), ('ranging', 1), ('macroscopic', 1), ('view', 1), ('meso', 1), ('microscopic', 1), ('one', 1)]
[('data', 2), ('book', 1), ('present', 1), ('original', 1), ('contribution', 1), ('theory', 1), ('practice', 1), ('emerging', 1), ('internet', 1), ('web', 1), ('technology', 1), ('applicability', 1), ('business', 1), ('engineering', 1), ('academia', 1), ('focusing', 1), ('advance', 1), ('life', 1), ('cycle', 1), ('exploitation', 1)]
[('environment', 3), ('robotic', 3), ('building', 2), ('physically', 2), ('built', 2), ('first', 1), ('volume', 1), ('adaptive', 1), ('series', 1), ('focus', 1), ('refers', 1), ('robotically', 1), ('supported', 1), ('process', 1), ('consist', 1)]
[('book', 1), ('present', 1), ('date', 1), ('information', 1), ('future', 1), ('digital', 1), ('smart', 1), ('city', 1), ('particular', 1), ('describes', 1), ('novel', 1), ('insight', 1), ('use', 1), ('computational', 1), ('intelligence', 1), ('technique', 1), ('decentralized', 1), ('technology', 1), ('covering', 1), ('urban', 1), ('aspect', 1)]
[('missing', 2), ('data', 2), ('computer', 2), ('vision', 2), ('problem', 1), ('dealing', 1), ('incomplete', 1), ('machine', 1), ('learning', 1), ('arises', 1), ('many', 1), ('application', 1), ('recent', 1), ('strategy', 1), ('make', 1), ('use', 1), ('generative', 1), ('model', 1), ('impute', 1), ('corrupted', 1), ('advance', 1), ('using', 1), ('deep', 1)]
[('engineering', 2), ('book', 1), ('feature', 1), ('research', 1), ('presented', 1), ('st', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('applied', 1), ('mathematics', 1), ('held', 1), ('april', 1), ('antalya', 1), ('manavgat', 1), ('turkey', 1), ('today', 1), ('world', 1), ('various', 1), ('area', 1)]
[('book', 1), ('address', 1), ('challenge', 1), ('opportunity', 1), ('information', 1), ('data', 1), ('processing', 1), ('management', 1), ('cover', 1), ('range', 1), ('method', 1), ('technique', 1), ('strategy', 1), ('making', 1), ('efficient', 1), ('approach', 1), ('increasing', 1), ('usage', 1), ('way', 1), ('minimize', 1)]
[('part', 2), ('programming', 2), ('audio', 2), ('book', 1), ('divided', 1), ('chapter', 1), ('offer', 1), ('comprehensive', 1), ('introduction', 1), ('language', 1), ('fundamental', 1), ('concept', 1), ('followed', 1), ('explanation', 1), ('realtime', 1), ('including', 1), ('synthesis', 1)]
[('nbsp', 4), ('network', 3), ('hybrid', 2), ('book', 1), ('cover', 1), ('fundamental', 1), ('principle', 1), ('new', 1), ('theory', 1), ('methodology', 1), ('potential', 1), ('application', 1), ('intelligent', 1), ('chapter', 1), ('focus', 1), ('neural', 1), ('networked', 1), ('multi', 1), ('agent', 1), ('including', 1)]
[('security', 2), ('reduction', 2), ('monograph', 1), ('illustrates', 1), ('important', 1), ('notion', 1), ('essential', 1), ('technique', 1), ('group', 1), ('based', 1), ('cryptosystems', 1), ('using', 1), ('digital', 1), ('signature', 1), ('encryption', 1), ('example', 1), ('author', 1), ('explain', 1), ('program', 1), ('correct', 1)]
[('conformance', 2), ('checking', 2), ('modelled', 2), ('recorded', 2), ('behaviour', 2), ('book', 1), ('introduces', 1), ('reader', 1), ('field', 1), ('whole', 1), ('outline', 1), ('fundamental', 1), ('relation', 1), ('interrelates', 1), ('given', 1), ('process', 1)]
[('book', 2), ('nbsp', 2), ('offer', 1), ('comprehensible', 1), ('overview', 1), ('big', 1), ('data', 1), ('preprocessing', 1), ('includes', 1), ('formal', 1), ('description', 1), ('problem', 1), ('focus', 1), ('relevant', 1), ('proposed', 1), ('solution', 1), ('illustrates', 1), ('actual', 1), ('implementation', 1)]
[('creative', 3), ('problem', 2), ('solving', 2), ('assemble', 1), ('machine', 1), ('cog', 1), ('starting', 1), ('human', 1), ('author', 1), ('developed', 1), ('framework', 1), ('explore', 1), ('whether', 1), ('diverse', 1), ('set', 1), ('task', 1)]
[('large', 2), ('book', 1), ('provides', 1), ('detailed', 1), ('description', 1), ('big', 1), ('data', 1), ('solution', 1), ('activity', 1), ('detection', 1), ('forecasting', 1), ('number', 1), ('moving', 1), ('entity', 1), ('spread', 1), ('across', 1), ('geographical', 1), ('area', 1), ('present', 1), ('state', 1), ('art', 1), ('method', 1), ('processing', 1), ('managing', 1)]
[('atomic', 2), ('structure', 2), ('book', 1), ('present', 1), ('set', 1), ('theoretical', 1), ('development', 1), ('foundation', 1), ('theory', 1), ('finitely', 1), ('supported', 1), ('analyzes', 1), ('whether', 1), ('classical', 1), ('result', 1), ('adequately', 1), ('reformulated', 1), ('replacing', 1), ('non', 1)]
[('simulation', 4), ('plant', 2), ('book', 1), ('systematically', 1), ('introduces', 1), ('reader', 1), ('development', 1), ('model', 1), ('implementation', 1), ('evaluation', 1), ('experiment', 1), ('tecnomatix', 1), ('intended', 1), ('user', 1), ('whose', 1), ('work', 1)]
[('book', 2), ('security', 2), ('take', 2), ('user', 2), ('make', 1), ('case', 1), ('traditional', 1), ('design', 1), ('end', 1), ('consideration', 1), ('fails', 1), ('go', 1), ('explain', 1), ('using', 1), ('series', 1), ('example', 1), ('nbsp', 1), ('rethink', 1), ('solution', 1)]
[('data', 5), ('system', 2), ('encompassing', 1), ('broad', 1), ('range', 1), ('form', 1), ('source', 1), ('textbook', 1), ('introduces', 1), ('progressive', 1), ('presentation', 1), ('introduction', 1), ('nbsp', 1), ('cover', 1), ('acquisition', 1), ('starting', 1), ('local', 1), ('file', 1), ('progress', 1)]
[('book', 1), ('present', 1), ('explorable', 1), ('xr', 1), ('environment', 1), ('rationale', 1), ('concept', 1), ('architecture', 1), ('method', 1), ('tool', 1), ('spatial', 1), ('temporal', 1), ('composition', 1), ('based', 1), ('domain', 1), ('knowledge', 1), ('including', 1), ('geometrical', 1), ('presentational', 1), ('structural', 1), ('behavioral', 1)]
[('transportation', 2), ('book', 1), ('present', 1), ('recent', 1), ('work', 1), ('analyzes', 1), ('general', 1), ('issue', 1), ('green', 1), ('contributed', 1), ('chapter', 1), ('consider', 1), ('environmental', 1), ('objective', 1), ('including', 1), ('topic', 1), ('battery', 1), ('swap', 1), ('station', 1), ('electric', 1), ('vehicle', 1), ('efficient', 1), ('home', 1)]
[('software', 2), ('book', 1), ('present', 1), ('unique', 1), ('understandable', 1), ('view', 1), ('machine', 1), ('learning', 1), ('using', 1), ('many', 1), ('practical', 1), ('example', 1), ('access', 1), ('free', 1), ('professional', 1), ('open', 1), ('source', 1), ('code', 1), ('user', 1), ('friendly', 1), ('immediately', 1), ('used', 1), ('apply', 1), ('everything', 1), ('learn', 1)]
[('first', 1), ('book', 1), ('offer', 1), ('comprehensive', 1), ('overview', 1), ('anyone', 1), ('wanting', 1), ('understand', 1), ('benefit', 1), ('opportunity', 1), ('ray', 1), ('tracing', 1), ('challenge', 1), ('without', 1), ('learn', 1), ('program', 1), ('optic', 1), ('scientist', 1)]
[('sentiment', 4), ('analysis', 3), ('emotion', 2), ('deal', 1), ('extracting', 1), ('information', 1), ('opinion', 1), ('even', 1), ('conveyed', 1), ('writer', 1), ('towards', 1), ('topic', 1), ('interest', 1), ('medical', 1), ('refers', 1), ('identification', 1)]
[('edition', 2), ('book', 1), ('contains', 1), ('refereed', 1), ('paper', 1), ('accepted', 1), ('fourth', 1), ('asia', 1), ('pacific', 1), ('twelve', 1), ('merged', 1), ('year', 1), ('csd', 1), ('conference', 1), ('took', 1), ('place', 1), ('beijing', 1), ('republic', 1), ('china', 1), ('mastering', 1), ('complex', 1)]
[('image', 2), ('computer', 2), ('vision', 2), ('across', 1), ('three', 1), ('volume', 1), ('handbook', 1), ('processing', 1), ('present', 1), ('comprehensive', 1), ('review', 1), ('full', 1), ('range', 1), ('topic', 1), ('comprise', 1), ('field', 1), ('acquisition', 1), ('signal', 1), ('formation', 1), ('learning', 1)]
[('computer', 1), ('vision', 1), ('become', 1), ('increasingly', 1), ('important', 1), ('effective', 1), ('recent', 1), ('year', 1), ('due', 1), ('wide', 1), ('ranging', 1), ('application', 1), ('area', 1), ('diverse', 1), ('smart', 1), ('surveillance', 1), ('monitoring', 1), ('health', 1), ('medicine', 1), ('sport', 1), ('recreation', 1), ('robotics', 1), ('drone', 1)]
[('representation', 3), ('biologically', 2), ('channel', 2), ('title', 1), ('probabilistic', 1), ('inspired', 1), ('feature', 1), ('text', 1), ('collect', 1), ('substantial', 1), ('amount', 1), ('work', 1), ('topic', 1), ('motivated', 1), ('wavelet', 1), ('approach', 1)]
[('data', 4), ('ranking', 2), ('query', 1), ('widely', 1), ('used', 1), ('exploration', 1), ('analysis', 1), ('decision', 1), ('making', 1), ('scenario', 1), ('currently', 1), ('proposed', 1), ('technique', 1), ('focus', 1), ('deterministic', 1), ('several', 1), ('emerging', 1), ('application', 1), ('involve', 1), ('imprecise', 1)]
[('data', 4), ('big', 1), ('era', 1), ('upon', 1), ('generated', 1), ('analyzed', 1), ('used', 1), ('unprecedented', 1), ('scale', 1), ('driven', 1), ('decision', 1), ('making', 1), ('sweeping', 1), ('aspect', 1), ('society', 1), ('value', 1), ('explodes', 1), ('linked', 1), ('fused', 1)]
[('design', 2), ('processor', 2), ('book', 1), ('describes', 1), ('make', 1), ('efficient', 1), ('high', 1), ('performance', 1), ('computing', 1), ('ai', 1), ('data', 1), ('science', 1), ('although', 1), ('many', 1), ('textbook', 1), ('widely', 1), ('accepted', 1), ('definition', 1), ('efficiency', 1)]
[('tester', 2), ('question', 2), ('agile', 2), ('book', 1), ('written', 1), ('ten', 1), ('chapter', 1), ('author', 1), ('provide', 1), ('answer', 1), ('key', 1), ('project', 1), ('deal', 1), ('cultural', 1), ('change', 1), ('process', 1), ('testing', 1), ('regarding', 1), ('approach', 1), ('organization', 1)]
[('design', 3), ('science', 3), ('work', 2), ('book', 1), ('introductory', 1), ('text', 1), ('intended', 1), ('support', 1), ('graduate', 1), ('student', 1), ('researcher', 1), ('structuring', 1), ('undertaking', 1), ('presenting', 1), ('build', 1), ('established', 1), ('method', 1), ('recent', 1)]
[('book', 1), ('aim', 1), ('facilitate', 1), ('improve', 1), ('development', 1), ('work', 1), ('related', 1), ('document', 1), ('information', 1), ('required', 1), ('functional', 1), ('safety', 1), ('standard', 1), ('proof', 1), ('compliance', 1), ('poc', 1), ('important', 1), ('assessor', 1), ('certification', 1), ('body', 1), ('called', 1), ('confirm', 1)]
[('system', 3), ('information', 2), ('organization', 2), ('benefit', 2), ('part', 1), ('parcel', 1), ('yet', 1), ('often', 1), ('struggle', 1), ('realize', 1), ('motivate', 1), ('introduction', 1), ('derive', 1), ('new', 1), ('integrated', 1)]
[('lecture', 2), ('overview', 2), ('web', 2), ('analytics', 2), ('providing', 2), ('present', 1), ('process', 1), ('focus', 1), ('insight', 1), ('actionable', 1), ('outcome', 1), ('collecting', 1), ('analyzing', 1), ('internet', 1), ('data', 1), ('first', 1), ('provides', 1), ('essence', 1)]
[('web', 7), ('page', 3), ('webometrics', 1), ('concerned', 1), ('measuring', 1), ('aspect', 1), ('site', 1), ('part', 1), ('word', 1), ('hyperlink', 1), ('search', 1), ('engine', 1), ('result', 1), ('importance', 1), ('communication', 1), ('medium', 1), ('hosting', 1)]
[('search', 1), ('user', 1), ('interface', 1), ('suis', 1), ('represent', 1), ('gateway', 1), ('task', 1), ('complete', 1), ('repository', 1), ('information', 1), ('data', 1), ('stored', 1), ('around', 1), ('world', 1), ('surprisingly', 1), ('many', 1), ('community', 1), ('vested', 1)]
[('book', 1), ('aim', 1), ('provide', 1), ('fairly', 1), ('comprehensive', 1), ('overview', 1), ('scalability', 1), ('efficiency', 1), ('challenge', 1), ('large', 1), ('scale', 1), ('web', 1), ('search', 1), ('engine', 1), ('specifically', 1), ('cover', 1), ('issue', 1), ('involved', 1), ('design', 1), ('three', 1), ('separate', 1), ('system', 1)]
[('european', 3), ('digital', 1), ('library', 1), ('existed', 1), ('diverse', 1), ('form', 1), ('quite', 1), ('different', 1), ('function', 1), ('priority', 1), ('aim', 1), ('common', 1), ('feature', 1), ('based', 1), ('initiative', 1), ('relevant', 1), ('non', 1), ('community', 1)]
[('federated', 3), ('learning', 3), ('comprehensive', 1), ('overview', 1), ('method', 1), ('application', 1), ('present', 1), ('depth', 1), ('discussion', 1), ('important', 1), ('issue', 1), ('approach', 1), ('researcher', 1), ('practitioner', 1), ('nbsp', 1), ('fl', 1)]
[('data', 2), ('book', 1), ('provides', 1), ('practical', 1), ('fairly', 1), ('comprehensive', 1), ('review', 1), ('science', 1), ('lens', 1), ('nbsp', 1), ('dimensionality', 1), ('reduction', 1), ('hand', 1), ('technique', 1), ('tackle', 1), ('problem', 1), ('collected', 1), ('real', 1), ('world', 1), ('state', 1), ('art', 1), ('result', 1)]
[('international', 2), ('book', 1), ('present', 1), ('collection', 1), ('high', 1), ('quality', 1), ('research', 1), ('work', 1), ('professional', 1), ('perspective', 1), ('arising', 1), ('call', 1), ('paper', 1), ('privacy', 1), ('symposium', 1), ('conference', 1), ('aimed', 1), ('towards', 1), ('promotion', 1), ('dialogue', 1)]
[('artificial', 2), ('intelligence', 2), ('book', 1), ('discus', 1), ('ai', 1), ('cybersecurity', 1), ('multiple', 1), ('point', 1), ('view', 1), ('diverse', 1), ('chapter', 1), ('reveal', 1), ('modern', 1), ('trend', 1), ('challenge', 1), ('related', 1), ('nbsp', 1), ('use', 1), ('considering', 1), ('privacy', 1), ('cyber', 1), ('attack', 1)]
[('book', 1), ('explains', 1), ('basic', 1), ('concept', 1), ('theory', 1), ('application', 1), ('neural', 1), ('network', 1), ('simple', 1), ('unified', 1), ('approach', 1), ('clear', 1), ('example', 1), ('simulation', 1), ('matlab', 1), ('programming', 1), ('language', 1), ('script', 1), ('herein', 1), ('coded', 1), ('general', 1), ('purpose', 1), ('easily', 1)]
[('conference', 2), ('book', 1), ('gather', 1), ('proceeding', 1), ('international', 1), ('cybersecurity', 1), ('cybercrime', 1), ('smart', 1), ('emerging', 1), ('technology', 1), ('held', 1), ('riyadh', 1), ('saudi', 1), ('arabia', 1), ('organized', 1), ('college', 1), ('computer', 1), ('science', 1)]
[('nbsp', 3), ('edition', 2), ('third', 1), ('foundation', 1), ('mathematics', 1), ('computer', 1), ('science', 1), ('john', 1), ('vince', 1), ('reviewed', 1), ('edited', 1), ('second', 1), ('added', 1), ('chapter', 1), ('system', 1), ('counting', 1), ('area', 1), ('volume', 1), ('subject', 1), ('complement', 1), ('existing', 1)]
[('fine', 2), ('grained', 2), ('image', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('analysis', 1), ('research', 1), ('modern', 1), ('approach', 1), ('based', 1), ('deep', 1), ('learning', 1), ('spanning', 1), ('full', 1), ('range', 1), ('topic', 1), ('needed', 1), ('designing', 1), ('operational', 1), ('system', 1), ('author', 1), ('begin', 1)]
[('book', 1), ('offer', 1), ('comprehensive', 1), ('survey', 1), ('shared', 1), ('memory', 1), ('synchronization', 1), ('emphasis', 1), ('system', 1), ('level', 1), ('issue', 1), ('includes', 1), ('sufficient', 1), ('coverage', 1), ('architectural', 1), ('detail', 1), ('understand', 1), ('correctness', 1), ('performance', 1), ('modern', 1), ('multicore', 1), ('machine', 1)]
[('design', 4), ('software', 2), ('textbook', 1), ('provides', 1), ('depth', 1), ('introduction', 1), ('focus', 1), ('object', 1), ('oriented', 1), ('using', 1), ('java', 1), ('programming', 1), ('language', 1), ('goal', 1), ('help', 1), ('reader', 1), ('learn', 1), ('discovering', 1), ('experience', 1)]
[('computational', 2), ('book', 1), ('explores', 1), ('application', 1), ('deep', 1), ('learning', 1), ('technique', 1), ('within', 1), ('particularly', 1), ('difficult', 1), ('type', 1), ('computer', 1), ('vision', 1), ('cv', 1), ('problem', 1), ('super', 1), ('resolution', 1), ('sr', 1), ('author', 1), ('present', 1), ('discus', 1), ('way', 1), ('apply', 1), ('intelligence', 1)]
[('book', 1), ('present', 1), ('comprehensive', 1), ('coverage', 1), ('latest', 1), ('advance', 1), ('research', 1), ('enabling', 1), ('machine', 1), ('listen', 1), ('compose', 1), ('new', 1), ('music', 1), ('includes', 1), ('chapter', 1), ('introducing', 1), ('know', 1), ('human', 1), ('musical', 1), ('intelligence', 1), ('knowledge', 1)]
[('human', 2), ('decision', 2), ('making', 1), ('often', 1), ('transcends', 1), ('formal', 1), ('model', 1), ('rationality', 1), ('designing', 1), ('intelligent', 1), ('agent', 1), ('interact', 1), ('proficiently', 1), ('necessitates', 1), ('modeling', 1), ('behavior', 1), ('prediction', 1), ('book', 1)]
[('solve', 2), ('task', 2), ('difficult', 2), ('human', 2), ('learning', 1), ('sequential', 1), ('decision', 1), ('making', 1), ('take', 1), ('year', 1), ('exploring', 1), ('environment', 1), ('essentially', 1), ('random', 1), ('way', 1), ('able', 1), ('reason', 1), ('collaborate', 1), ('towards', 1), ('common', 1), ('goal', 1)]
[('book', 1), ('conveys', 1), ('fundamental', 1), ('linked', 1), ('lexical', 1), ('knowledge', 1), ('base', 1), ('llkb', 1), ('shed', 1), ('light', 1), ('different', 1), ('aspect', 1), ('various', 1), ('perspective', 1), ('focusing', 1), ('construction', 1), ('use', 1), ('natural', 1), ('language', 1), ('processing', 1), ('nlp', 1), ('characterizes', 1), ('wide', 1)]
[('language', 2), ('nlp', 2), ('use', 2), ('technique', 2), ('natural', 1), ('processing', 1), ('went', 1), ('profound', 1), ('transformation', 1), ('mid', 1), ('shifted', 1), ('make', 1), ('heavy', 1), ('corpus', 1), ('data', 1), ('driven', 1), ('analyze', 1), ('statistical', 1), ('evolved', 1)]
[('automated', 2), ('book', 1), ('discus', 1), ('state', 1), ('art', 1), ('essay', 1), ('scoring', 1), ('challenge', 1), ('potential', 1), ('earliest', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('language', 1), ('data', 1), ('along', 1), ('machine', 1), ('translation', 1), ('speech', 1), ('recognition', 1)]
[('mobile', 2), ('internet', 2), ('iot', 2), ('explosive', 1), ('growth', 1), ('computing', 1), ('thing', 1), ('application', 1), ('exemplified', 1), ('ar', 1), ('vr', 1), ('smart', 1), ('city', 1), ('video', 1), ('audio', 1), ('surveillance', 1), ('billion', 1), ('device', 1), ('connected', 1), ('generating', 1), ('zillion', 1)]
[('problem', 3), ('path', 2), ('algebraic', 1), ('generalization', 1), ('shortest', 1), ('graph', 1), ('various', 1), ('instance', 1), ('abstract', 1), ('appeared', 1), ('literature', 1), ('similar', 1), ('solution', 1), ('independently', 1), ('discovered', 1), ('rediscovered', 1)]
[('problem', 2), ('book', 2), ('day', 1), ('nearly', 1), ('engineering', 1), ('solved', 1), ('aid', 1), ('suitable', 1), ('computer', 1), ('package', 1), ('show', 1), ('matlab', 1), ('simulink', 1), ('used', 1), ('solve', 1), ('state', 1), ('space', 1), ('control', 1), ('assumed', 1), ('familiar', 1)]
[('distributed', 2), ('understanding', 1), ('computing', 1), ('easy', 1), ('task', 1), ('due', 1), ('many', 1), ('facet', 1), ('uncertainty', 1), ('cope', 1), ('master', 1), ('order', 1), ('produce', 1), ('correct', 1), ('software', 1), ('previous', 1), ('book', 1), ('communication', 1), ('agreement', 1), ('abstraction', 1)]
[('software', 2), ('book', 1), ('provides', 1), ('structured', 1), ('overview', 1), ('artificial', 1), ('intelligence', 1), ('empowered', 1), ('applied', 1), ('engineering', 1), ('evolving', 1), ('technological', 1), ('advancement', 1), ('big', 1), ('data', 1), ('smartphone', 1), ('mobile', 1), ('application', 1), ('internet', 1), ('thing', 1), ('vast', 1), ('range', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('information', 1), ('processing', 1), ('iip', 1), ('held', 1), ('melbourne', 1), ('vic', 1), ('australia', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('socolnet', 1), ('advanced', 1), ('doctoral', 1), ('conference', 1), ('computing', 1), ('electrical', 1), ('industrial', 1), ('system', 1), ('doceis', 1), ('held', 1), ('costa', 1), ('de', 1), ('caparica', 1), ('portugal', 1), ('nbsp', 1), ('revised', 1), ('full', 1)]
[('crystallization', 2), ('analysis', 2), ('unique', 1), ('text', 1), ('reference', 1), ('present', 1), ('overview', 1), ('computational', 1), ('aspect', 1), ('protein', 1), ('describing', 1), ('build', 1), ('robotic', 1), ('high', 1), ('throughput', 1), ('system', 1), ('coverage', 1), ('encompasses', 1), ('complete', 1), ('data', 1)]
[('data', 3), ('sa', 2), ('aim', 1), ('textbook', 1), ('previously', 1), ('titled', 1), ('analytics', 1), ('teach', 1), ('use', 1), ('statistical', 1), ('analysis', 1), ('advanced', 1), ('undergraduate', 1), ('graduate', 1), ('student', 1), ('statistic', 1), ('science', 1), ('discipline', 1), ('involving', 1), ('analyzing', 1)]
[('workshop', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('application', 1), ('innovation', 1), ('aiai', 1), ('rhodes', 1), ('greece', 1), ('nbsp', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('ifip', 1), ('wg', 1), ('working', 1), ('virtual', 1), ('enterprise', 1), ('pro', 1), ('valencia', 1), ('spain', 1), ('november', 1), ('virtually', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('computational', 1), ('intelligence', 1), ('data', 1), ('science', 1), ('iccids', 1), ('held', 1), ('chennai', 1), ('india', 1), ('february', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('library', 2), ('finite', 2), ('distributed', 1), ('unified', 1), ('numerics', 1), ('environment', 1), ('dune', 1), ('set', 1), ('open', 1), ('source', 1), ('implementation', 1), ('element', 1), ('volume', 1), ('method', 1), ('last', 1), ('year', 1), ('become', 1), ('commonly', 1), ('used', 1)]
[('information', 1), ('infrastructure', 1), ('comprising', 1), ('computer', 1), ('embedded', 1), ('device', 1), ('network', 1), ('software', 1), ('system', 1), ('vital', 1), ('operation', 1), ('every', 1), ('sector', 1), ('chemical', 1), ('commercial', 1), ('facility', 1), ('communication', 1), ('critical', 1), ('manufacturing', 1), ('dam', 1), ('defense', 1), ('industrial', 1)]
[('ifip', 2), ('volume', 1), ('set', 1), ('aict', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('wg', 1), ('international', 1), ('working', 1), ('conference', 1), ('imagining', 1), ('diffusion', 1), ('adoption', 1), ('information', 1), ('technology', 1), ('system', 1), ('continuing', 1), ('conversation', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('information', 1), ('processing', 1), ('iip', 1), ('held', 1), ('hangzhou', 1), ('china', 1), ('july', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('biological', 2), ('study', 2), ('book', 1), ('present', 1), ('range', 1), ('current', 1), ('research', 1), ('topic', 1), ('network', 1), ('modeling', 1), ('application', 1), ('human', 1), ('host', 1), ('pathogen', 1), ('disease', 1), ('system', 1), ('biology', 1), ('rapidly', 1), ('expanding', 1), ('field', 1), ('involves', 1)]
[('data', 2), ('set', 2), ('monograph', 1), ('offer', 1), ('original', 1), ('broad', 1), ('diverse', 1), ('exploration', 1), ('seriation', 1), ('domain', 1), ('analysis', 1), ('together', 1), ('building', 1), ('specific', 1), ('relation', 1), ('clustering', 1), ('relative', 1), ('table', 1), ('crossing', 1), ('object', 1), ('descriptive', 1)]
[('paper', 2), ('book', 1), ('contains', 1), ('selected', 1), ('presented', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('sig', 1), ('international', 1), ('summer', 1), ('school', 1), ('privacy', 1), ('identity', 1), ('management', 1), ('held', 1), ('online', 1), ('august', 1), ('full', 1), ('included', 1), ('volume', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('information', 1), ('processing', 1), ('iip', 1), ('held', 1), ('qingdao', 1), ('china', 1), ('july', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('application', 2), ('book', 1), ('present', 1), ('fundamental', 1), ('theoretical', 1), ('notion', 1), ('supervised', 1), ('machine', 1), ('learning', 1), ('along', 1), ('wide', 1), ('range', 1), ('using', 1), ('python', 1), ('stata', 1), ('provides', 1), ('balance', 1), ('theory', 1), ('foster', 1), ('understanding', 1)]
[('imagination', 3), ('highly', 1), ('valued', 1), ('sought', 1), ('yet', 1), ('elusive', 1), ('ill', 1), ('defined', 1), ('definition', 1), ('range', 1), ('narrowly', 1), ('cognitive', 1), ('account', 1), ('endow', 1), ('world', 1), ('making', 1), ('power', 1), ('underpins', 1), ('ability', 1), ('speculate', 1)]
[('layer', 2), ('cyber', 2), ('physical', 2), ('book', 1), ('introduces', 1), ('cross', 1), ('design', 1), ('achieve', 1), ('security', 1), ('resilience', 1), ('cps', 1), ('system', 1), ('author', 1), ('interconnect', 1), ('various', 1), ('technical', 1), ('tool', 1), ('method', 1), ('capture', 1), ('different', 1), ('property', 1)]
[('customer', 3), ('ai', 2), ('research', 1), ('monograph', 1), ('brings', 1), ('field', 1), ('relationship', 1), ('management', 1), ('crm', 1), ('make', 1), ('experience', 1), ('product', 1), ('service', 1), ('smart', 1), ('enjoyable', 1), ('help', 1), ('refund', 1), ('canceled', 1), ('flight', 1), ('unfreeze', 1)]
[('tool', 2), ('life', 2), ('always', 1), ('built', 1), ('improve', 1), ('productivity', 1), ('help', 1), ('lead', 1), ('better', 1), ('find', 1), ('constantly', 1), ('battling', 1), ('new', 1), ('computerized', 1), ('making', 1), ('le', 1), ('productive', 1), ('putting', 1), ('health', 1), ('risk', 1)]
[('text', 1), ('review', 1), ('fundamental', 1), ('theory', 1), ('latest', 1), ('method', 1), ('including', 1), ('contextual', 1), ('information', 1), ('fusion', 1), ('process', 1), ('design', 1), ('implementation', 1), ('chapter', 1), ('contributed', 1), ('foremost', 1), ('international', 1), ('expert', 1), ('spanning', 1), ('numerous', 1), ('development', 1)]
[('book', 1), ('present', 1), ('method', 1), ('improve', 1), ('information', 1), ('security', 1), ('protected', 1), ('communication', 1), ('combine', 1), ('applies', 1), ('interdisciplinary', 1), ('scientific', 1), ('engineering', 1), ('concept', 1), ('including', 1), ('cryptography', 1), ('chaos', 1), ('theory', 1), ('nonlinear', 1), ('singular', 1), ('optic', 1)]
[('solution', 2), ('comprehensive', 1), ('text', 1), ('reference', 1), ('present', 1), ('broad', 1), ('review', 1), ('diverse', 1), ('domain', 1), ('adaptation', 1), ('da', 1), ('method', 1), ('machine', 1), ('learning', 1), ('focus', 1), ('visual', 1), ('application', 1), ('book', 1), ('collect', 1), ('together', 1), ('perspective', 1), ('proposed', 1)]
[('invaluable', 1), ('text', 1), ('reference', 1), ('investigates', 1), ('state', 1), ('art', 1), ('approach', 1), ('building', 1), ('monitoring', 1), ('managing', 1), ('governing', 1), ('smart', 1), ('city', 1), ('particular', 1), ('focus', 1), ('placed', 1), ('distributed', 1), ('computing', 1), ('environment', 1), ('within', 1), ('infrastructure', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('volume', 1), ('present', 1), ('carefully', 1), ('selected', 1), ('paper', 1), ('major', 1), ('joint', 1), ('event', 1), ('soft', 1), ('computing', 1), ('pattern', 1), ('recognition', 1), ('socpar', 1), ('computational', 1), ('aspect', 1), ('social', 1), ('network', 1)]
[('book', 1), ('present', 1), ('high', 1), ('quality', 1), ('research', 1), ('article', 1), ('provide', 1), ('long', 1), ('sought', 1), ('answer', 1), ('question', 1), ('concerning', 1), ('various', 1), ('aspect', 1), ('reuse', 1), ('integration', 1), ('content', 1), ('lead', 1), ('inescapable', 1), ('conclusion', 1), ('software', 1), ('hardware', 1), ('design', 1)]
[('book', 1), ('present', 1), ('overview', 1), ('latest', 1), ('artificial', 1), ('intelligence', 1), ('system', 1), ('method', 1), ('broad', 1), ('spectrum', 1), ('effective', 1), ('sometimes', 1), ('unexpected', 1), ('application', 1), ('medical', 1), ('educational', 1), ('field', 1), ('science', 1), ('technology', 1)]
[('human', 2), ('book', 1), ('report', 1), ('research', 1), ('innovative', 1), ('system', 1), ('integration', 1), ('machine', 1), ('interaction', 1), ('emphasis', 1), ('artificial', 1), ('intelligence', 1), ('automation', 1), ('computational', 1), ('modeling', 1), ('simulation', 1), ('cover', 1), ('wide', 1), ('range', 1)]
[('hybrid', 2), ('intelligent', 2), ('system', 2), ('paper', 2), ('book', 1), ('highlight', 1), ('recent', 1), ('research', 1), ('various', 1), ('practical', 1), ('application', 1), ('present', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1)]
[('book', 1), ('present', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('machine', 1), ('learning', 1), ('technology', 1), ('application', 1), ('amlta', 1), ('held', 1), ('cairo', 1), ('egypt', 1), ('march', 1), ('organized', 1), ('scientific', 1), ('research', 1), ('group', 1)]
[('international', 2), ('conference', 2), ('book', 1), ('present', 1), ('outcome', 1), ('cyber', 1), ('security', 1), ('intelligence', 1), ('analytics', 1), ('csia', 1), ('dedicated', 1), ('promoting', 1), ('novel', 1), ('theoretical', 1), ('applied', 1), ('research', 1), ('advance', 1)]
[('book', 1), ('present', 1), ('innovative', 1), ('idea', 1), ('cutting', 1), ('edge', 1), ('finding', 1), ('novel', 1), ('technique', 1), ('method', 1), ('application', 1), ('broad', 1), ('range', 1), ('cybersecurity', 1), ('cyberthreat', 1), ('intelligence', 1), ('area', 1), ('society', 1), ('becomes', 1), ('smarter', 1), ('corresponding', 1), ('need', 1)]
[('method', 3), ('optimization', 2), ('goal', 1), ('book', 1), ('gather', 1), ('single', 1), ('work', 1), ('relevant', 1), ('concept', 1), ('related', 1), ('showing', 1), ('theory', 1), ('addressed', 1), ('using', 1), ('open', 1), ('source', 1), ('multi', 1), ('platform', 1), ('tool', 1), ('modern', 1)]
[('th', 3), ('ukci', 2), ('book', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('uk', 1), ('workshop', 1), ('computational', 1), ('intelligence', 1), ('held', 1), ('virtually', 1), ('aberystwyth', 1), ('university', 1), ('september', 1), ('mark', 1), ('anniversary', 1), ('testament', 1), ('increasing', 1), ('role', 1)]
[('information', 2), ('technology', 2), ('itng', 2), ('volume', 1), ('represents', 1), ('th', 1), ('international', 1), ('conference', 1), ('new', 1), ('generation', 1), ('annual', 1), ('event', 1), ('focusing', 1), ('state', 1), ('art', 1), ('pertaining', 1), ('digital', 1), ('communication', 1)]
[('robotics', 2), ('proceeding', 1), ('volume', 1), ('highlight', 1), ('latest', 1), ('achievement', 1), ('research', 1), ('development', 1), ('educational', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('education', 1), ('rie', 1), ('sofia', 1), ('bulgaria', 1), ('april', 1)]
[('book', 1), ('gather', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('interactive', 1), ('collaborative', 1), ('learning', 1), ('icl', 1), ('held', 1), ('budapest', 1), ('hungary', 1), ('september', 1), ('author', 1), ('currently', 1), ('witnessing', 1), ('significant', 1), ('transformation', 1)]
[('book', 1), ('show', 1), ('human', 1), ('factor', 1), ('ergonomic', 1), ('principle', 1), ('transforming', 1), ('healthcare', 1), ('report', 1), ('design', 1), ('system', 1), ('device', 1), ('improve', 1), ('quality', 1), ('safety', 1), ('efficiency', 1), ('effectiveness', 1), ('patient', 1), ('care', 1), ('discus', 1), ('finding', 1), ('related', 1)]
[('system', 2), ('book', 1), ('report', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('innovative', 1), ('interface', 1), ('highlighting', 1), ('lifecycle', 1), ('development', 1), ('human', 1), ('technology', 1), ('interaction', 1), ('especially', 1), ('virtual', 1), ('augmented', 1), ('mixed', 1), ('reality', 1), ('describes', 1), ('advanced', 1), ('methodology', 1)]
[('book', 1), ('present', 1), ('high', 1), ('quality', 1), ('original', 1), ('contribution', 1), ('new', 1), ('software', 1), ('engineering', 1), ('model', 1), ('approach', 1), ('method', 1), ('tool', 1), ('evaluation', 1), ('context', 1), ('defence', 1), ('security', 1), ('application', 1), ('addition', 1), ('important', 1), ('business', 1), ('economic', 1)]
[('intelligent', 2), ('system', 2), ('th', 2), ('book', 1), ('highlight', 1), ('recent', 1), ('research', 1), ('nature', 1), ('inspired', 1), ('computing', 1), ('present', 1), ('selected', 1), ('paper', 1), ('international', 1), ('conference', 1), ('design', 1), ('application', 1), ('isda', 1), ('world', 1)]
[('information', 2), ('technology', 2), ('th', 1), ('international', 1), ('conference', 1), ('new', 1), ('generation', 1), ('itng', 1), ('continues', 1), ('annual', 1), ('event', 1), ('focusing', 1), ('state', 1), ('art', 1), ('pertaining', 1), ('digital', 1), ('communication', 1), ('application', 1), ('advanced', 1)]
[('th', 3), ('book', 1), ('gather', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('computing', 1), ('information', 1), ('technology', 1), ('ic', 1), ('held', 1), ('dusit', 1), ('thani', 1), ('pattaya', 1), ('thailand', 1), ('topic', 1), ('covered', 1), ('include', 1), ('big', 1), ('data', 1), ('artificial', 1)]
[('worldcist', 2), ('book', 1), ('gather', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('world', 1), ('conference', 1), ('information', 1), ('system', 1), ('technology', 1), ('held', 1), ('budva', 1), ('montenegro', 1), ('april', 1), ('provides', 1), ('global', 1), ('forum', 1), ('researcher', 1)]
[('cimps', 2), ('th', 2), ('book', 1), ('contains', 1), ('selection', 1), ('paper', 1), ('international', 1), ('conference', 1), ('software', 1), ('process', 1), ('improvement', 1), ('held', 1), ('october', 1), ('león', 1), ('guanajuato', 1), ('méxico', 1), ('global', 1), ('forum', 1), ('researcher', 1)]
[('proceeding', 1), ('book', 1), ('contains', 1), ('paper', 1), ('selected', 1), ('submission', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('science', 1), ('applied', 1), ('mathematics', 1), ('application', 1), ('iccsama', 1), ('held', 1), ('december', 1), ('hanoi', 1), ('vietnam', 1)]
[('book', 1), ('gather', 1), ('paper', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('intelligent', 1), ('system', 1), ('sustainable', 1), ('development', 1), ('ai', 1), ('sd', 1), ('held', 1), ('july', 1), ('marrakech', 1), ('morocco', 1), ('address', 1), ('environment', 1), ('industry', 1), ('economy', 1), ('role', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('medicine', 1), ('aime', 1), ('held', 1), ('virtual', 1), ('event', 1), ('june', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('selected', 1)]
[('human', 2), ('hci', 2), ('art', 2), ('research', 2), ('computer', 1), ('interaction', 1), ('learn', 1), ('agenda', 1), ('advanced', 1), ('looking', 1), ('improve', 1), ('creativity', 1), ('support', 1), ('amplification', 1), ('important', 1), ('capability', 1), ('book', 1), ('aim', 1)]
[('language', 3), ('natural', 2), ('processing', 2), ('branch', 1), ('artificial', 1), ('intelligence', 1), ('involving', 1), ('spoken', 1), ('written', 1), ('modality', 1), ('teaching', 1), ('nlp', 1), ('difficult', 1), ('inherent', 1), ('connection', 1), ('discipline', 1)]
[('textbook', 1), ('focus', 1), ('practical', 1), ('parallel', 1), ('programming', 1), ('graduate', 1), ('student', 1), ('level', 1), ('particular', 1), ('show', 1), ('apis', 1), ('related', 1), ('language', 1), ('feature', 1), ('standard', 1), ('covering', 1), ('single', 1), ('node', 1), ('distributed', 1), ('system', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('computer', 1), ('science', 1), ('application', 1), ('ciia', 1), ('held', 1), ('saida', 1), ('algeria', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('ict', 1), ('system', 1), ('security', 1), ('privacy', 1), ('protection', 1), ('sec', 1), ('held', 1), ('ghent', 1), ('belgium', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('symposium', 1), ('environmental', 1), ('software', 1), ('system', 1), ('i', 1), ('held', 1), ('wageningen', 1), ('netherlands', 1), ('february', 1), ('full', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('social', 1), ('implication', 1), ('computer', 1), ('developing', 1), ('country', 1), ('ict', 1), ('held', 1), ('yogyakarta', 1), ('indonesia', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('feature', 1), ('selection', 1), ('paper', 1), ('presented', 1), ('third', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('workshop', 1), ('artificial', 1), ('intelligence', 1), ('knowledge', 1), ('management', 1), ('ai', 1), ('km', 1), ('held', 1), ('buenos', 1), ('aire', 1), ('argentina', 1), ('july', 1), ('framework', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('working', 1), ('conference', 1), ('virtual', 1), ('enterprise', 1), ('pro', 1), ('held', 1), ('vicenza', 1), ('italy', 1), ('september', 1), ('nbsp', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('working', 1), ('human', 1), ('work', 1), ('interaction', 1), ('design', 1), ('hwid', 1), ('held', 1), ('espoo', 1), ('finland', 1), ('august', 1), ('revised', 1), ('extended', 1), ('full', 1), ('paper', 1)]
[('ifip', 2), ('volume', 1), ('aict', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('wg', 1), ('international', 1), ('conference', 1), ('social', 1), ('implication', 1), ('computer', 1), ('developing', 1), ('country', 1), ('ict', 1), ('held', 1), ('dar', 1), ('e', 1), ('salaam', 1), ('tanzania', 1)]
[('book', 1), ('feature', 1), ('selection', 1), ('extended', 1), ('paper', 1), ('presented', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('workshop', 1), ('artificial', 1), ('intelligence', 1), ('knowledge', 1), ('management', 1), ('ai', 1), ('km', 1), ('held', 1), ('melbourne', 1), ('vic', 1), ('australia', 1), ('august', 1), ('framework', 1)]
[('digital', 1), ('forensics', 1), ('deal', 1), ('acquisition', 1), ('preservation', 1), ('examination', 1), ('analysis', 1), ('presentation', 1), ('electronic', 1), ('evidence', 1), ('computer', 1), ('network', 1), ('cloud', 1), ('computing', 1), ('smartphones', 1), ('embedded', 1), ('device', 1), ('internet', 1), ('thing', 1), ('expanded', 1), ('role', 1)]
[('digital', 1), ('forensics', 1), ('deal', 1), ('acquisition', 1), ('preservation', 1), ('examination', 1), ('analysis', 1), ('presentation', 1), ('electronic', 1), ('evidence', 1), ('computer', 1), ('network', 1), ('cloud', 1), ('computing', 1), ('smartphones', 1), ('embedded', 1), ('device', 1), ('internet', 1), ('thing', 1), ('expanded', 1), ('role', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('ifip', 1), ('wg', 1), ('working', 1), ('conference', 1), ('virtual', 1), ('enterprise', 1), ('pro', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('september', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('social', 1), ('implication', 1), ('computer', 1), ('developing', 1), ('country', 1), ('ict', 1), ('supposed', 1), ('lima', 1), ('peru', 1)]
[('china', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('national', 1), ('conference', 1), ('computational', 1), ('linguistics', 1), ('ccl', 1), ('held', 1), ('kunming', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('workshop', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('chinese', 1), ('lexical', 1), ('semantics', 1), ('clsw', 1), ('held', 1), ('chiayi', 1), ('taiwan', 1), ('june', 1), ('full', 1), ('short', 1), ('included', 1), ('volume', 1), ('carefully', 1)]
[('technique', 2), ('book', 1), ('discus', 1), ('various', 1), ('open', 1), ('issue', 1), ('software', 1), ('engineering', 1), ('efficiency', 1), ('automated', 1), ('testing', 1), ('prediction', 1), ('cost', 1), ('estimation', 1), ('data', 1), ('processing', 1), ('automatic', 1), ('code', 1), ('generation', 1), ('many', 1), ('traditional', 1), ('available', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('meeting', 1), ('computational', 1), ('intelligence', 1), ('method', 1), ('bioinformatics', 1), ('biostatistics', 1), ('cibb', 1), ('held', 1), ('caparica', 1), ('portugal', 1), ('september', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('logic', 1), ('artificial', 1), ('intelligence', 1), ('jelia', 1), ('held', 1), ('rende', 1), ('italy', 1), ('full', 1), ('short', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('medicine', 1), ('aime', 1), ('held', 1), ('poznan', 1), ('poland', 1), ('june', 1), ('revised', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('workshop', 1), ('engineering', 1), ('multi', 1), ('agent', 1), ('system', 1), ('held', 1), ('stockholm', 1), ('sweden', 1), ('july', 1), ('conjunction', 1), ('aamas', 1), ('full', 1), ('presented', 1), ('volume', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('held', 1), ('shenyang', 1), ('china', 1), ('august', 1), ('total', 1), ('full', 1), ('short', 1), ('paper', 1)]
[('conference', 2), ('rough', 2), ('set', 2), ('rsctc', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('current', 1), ('trend', 1), ('computing', 1), ('held', 1), ('granada', 1), ('madrid', 1), ('spain', 1), ('july', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('case', 1), ('based', 1), ('reasoning', 1), ('research', 1), ('development', 1), ('iccbr', 1), ('held', 1), ('cork', 1), ('ireland', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('iapr', 1), ('tc', 1), ('international', 1), ('workshop', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('pattern', 1), ('recognition', 1), ('annpr', 1), ('held', 1), ('montreal', 1), ('qc', 1), ('canada', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('soft', 2), ('computing', 2), ('book', 1), ('proceeding', 1), ('rd', 1), ('world', 1), ('conference', 1), ('wcsc', 1), ('held', 1), ('san', 1), ('antonio', 1), ('tx', 1), ('usa', 1), ('december', 1), ('present', 1), ('start', 1), ('art', 1), ('theory', 1), ('application', 1), ('together', 1), ('depth', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('virtual', 1), ('agent', 1), ('iva', 1), ('held', 1), ('delft', 1), ('netherlands', 1), ('august', 1), ('full', 1), ('short', 1), ('demo', 1), ('poster', 1), ('accepted', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('italian', 1), ('association', 1), ('artificial', 1), ('intelligence', 1), ('ia', 1), ('held', 1), ('ferrara', 1), ('italy', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('multi', 1), ('disciplinary', 1), ('trend', 1), ('artificial', 1), ('intelligence', 1), ('miwai', 1), ('held', 1), ('fuzhou', 1), ('china', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('service', 3), ('system', 2), ('textbook', 1), ('address', 1), ('conceptual', 1), ('practical', 1), ('aspect', 1), ('various', 1), ('phase', 1), ('lifecycle', 1), ('ranging', 1), ('ideation', 1), ('design', 1), ('implementation', 1), ('analysis', 1), ('improvement', 1), ('trading', 1), ('associated', 1)]
[('book', 1), ('comprehensive', 1), ('introduction', 1), ('labview', 1), ('fpga', 1), ('package', 1), ('allowing', 1), ('programming', 1), ('intelligent', 1), ('digital', 1), ('controller', 1), ('field', 1), ('programmable', 1), ('gate', 1), ('array', 1), ('fpgas', 1), ('using', 1), ('graphical', 1), ('code', 1), ('show', 1), ('potential', 1), ('difficulty', 1)]
[('thisvolume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conferenceon', 1), ('hybrid', 1), ('artificial', 1), ('intelligent', 1), ('system', 1), ('hais', 1), ('held', 1), ('seville', 1), ('spain', 1), ('inapril', 1), ('full', 1), ('paper', 1), ('published', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('conceptual', 1), ('structure', 1), ('icc', 1), ('held', 1), ('annecy', 1), ('france', 1), ('july', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('lnai', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('european', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('riva', 1), ('del', 1), ('garda', 1), ('italy', 1), ('september', 1)]
[('workshop', 2), ('held', 2), ('bookconstitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('thinternational', 1), ('multi', 1), ('agent', 1), ('based', 1), ('simulation', 1), ('mabs', 1), ('inistanbul', 1), ('turkey', 1), ('conjunction', 1), ('th', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('foundation', 1), ('augmented', 1), ('cognition', 1), ('ac', 1), ('held', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('took', 1), ('place', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('language', 1), ('technology', 1), ('conference', 1), ('challenge', 1), ('computer', 1), ('science', 1), ('linguistics', 1), ('ltc', 1), ('held', 1), ('nbsp', 1), ('poznań', 1), ('poland', 1), ('december', 1), ('revised', 1), ('many', 1), ('case', 1)]
[('artificial', 2), ('intelligence', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('german', 1), ('conference', 1), ('ki', 1), ('conjunction', 1), ('österreichische', 1), ('gesellschaft', 1), ('für', 1), ('ögai', 1), ('held', 1), ('klagenfurt', 1), ('austria', 1)]
[('artificial', 2), ('intelligence', 2), ('book', 1), ('constitutes', 1), ('extended', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('symposium', 1), ('supported', 1), ('japanese', 1), ('society', 1), ('jsai', 1), ('isai', 1), ('held', 1), ('november', 1), ('yokohama', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('love', 1), ('sex', 1), ('robot', 1), ('december', 1), ('london', 1), ('uk', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('together', 1), ('keynote', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('th', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('symposium', 1), ('frontier', 1), ('combining', 1), ('system', 1), ('frocos', 1), ('held', 1), ('london', 1), ('uk', 1), ('september', 1), ('colocated', 1), ('conference', 1), ('automated', 1), ('reasoning', 1), ('analytic', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('computational', 1), ('corpus', 1), ('based', 1), ('phraseology', 1), ('europhras', 1), ('held', 1), ('malaga', 1), ('spain', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('statistical', 1), ('language', 1), ('speech', 1), ('processing', 1), ('slsp', 1), ('held', 1), ('ljubljana', 1), ('slovenia', 1), ('october', 1), ('full', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('education', 1), ('aied', 1), ('held', 1), ('ifrane', 1), ('morocco', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('social', 1), ('robotics', 1), ('icsr', 1), ('golden', 1), ('co', 1), ('usa', 1), ('november', 1), ('virtually', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 3), ('th', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('post', 1), ('proceeding', 1), ('european', 1), ('multi', 1), ('agent', 1), ('system', 1), ('eumas', 1), ('international', 1), ('agreement', 1), ('technology', 1), ('originally', 1), ('planned', 1), ('held', 1)]
[('proceeding', 2), ('conference', 2), ('volume', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('european', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('september', 1)]
[('proceeding', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('th', 1), ('asian', 1), ('conference', 1), ('intelligent', 1), ('information', 1), ('database', 1), ('system', 1), ('aciids', 1), ('held', 1), ('phuket', 1), ('thailand', 1), ('april', 1), ('full', 1), ('paper', 1), ('accepted', 1), ('publication', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('german', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ki', 1), ('held', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1), ('additionally', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('conceptual', 1), ('structure', 1), ('icc', 1), ('held', 1), ('virtually', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('conceptual', 1), ('structure', 1), ('icc', 1), ('held', 1), ('virtually', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('statistical', 1), ('language', 1), ('speech', 1), ('processing', 1), ('slsp', 1), ('held', 1), ('cardiff', 1), ('uk', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('mexico', 2), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('mexican', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('micai', 1), ('held', 1), ('city', 1), ('october', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('sgai', 1), ('international', 1), ('innovative', 1), ('technique', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('supposed', 1), ('held', 1), ('cambridge', 1), ('uk', 1), ('december', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('language', 1), ('technology', 1), ('conference', 1), ('challenge', 1), ('computer', 1), ('science', 1), ('linguistics', 1), ('ltc', 1), ('held', 1), ('poznan', 1), ('poland', 1), ('november', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('data', 1), ('mining', 1), ('pattern', 1), ('recognition', 1), ('mldm', 1), ('held', 1), ('new', 1), ('york', 1), ('ny', 1), ('usa', 1), ('july', 1), ('nbsp', 1)]
[('international', 3), ('th', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('engineering', 1), ('psychology', 1), ('cognitive', 1), ('ergonomics', 1), ('epce', 1), ('held', 1), ('part', 1), ('hci', 1), ('took', 1), ('place', 1), ('la', 1), ('vega', 1)]
[('international', 2), ('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('augmented', 1), ('cognition', 1), ('ac', 1), ('held', 1), ('part', 1), ('th', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('la', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('conference', 1), ('towards', 1), ('autonomous', 1), ('robotics', 1), ('taro', 1), ('held', 1), ('bristol', 1), ('uk', 1), ('july', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('nbsp', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('pricai', 1), ('held', 1), ('nanjing', 1), ('china', 1), ('august', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('iapr', 1), ('tc', 1), ('international', 1), ('workshop', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('pattern', 1), ('recognition', 1), ('annpr', 1), ('held', 1), ('siena', 1), ('italy', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('nbsp', 3), ('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('interactive', 1), ('collaborative', 1), ('robotics', 1), ('icr', 1), ('held', 1), ('leipzig', 1), ('germany', 1), ('september', 1), ('satellite', 1), ('event', 1), ('th', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('german', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ki', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('th', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('european', 1), ('multi', 1), ('agent', 1), ('system', 1), ('eumas', 1), ('nbsp', 1), ('international', 1), ('agreement', 1), ('technology', 1), ('held', 1), ('evry', 1), ('france', 1), ('december', 1)]
[('thisbook', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conferenceon', 1), ('bioinformatics', 1), ('biomedical', 1), ('engineering', 1), ('iwbbio', 1), ('held', 1), ('granada', 1), ('spain', 1), ('april', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('diagram', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('internationalconference', 1), ('theory', 1), ('application', 1), ('held', 1), ('philadelphia', 1), ('pa', 1), ('usa', 1), ('august', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('simulation', 1), ('adaptive', 1), ('behavior', 1), ('sab', 1), ('held', 1), ('aberystwyth', 1), ('uk', 1), ('august', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('lnai', 2), ('volume', 1), ('nbsp', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('collective', 1), ('intelligence', 1), ('icci', 1), ('held', 1), ('halkidiki', 1), ('greece', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('canadian', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('edmonton', 1), ('ab', 1), ('canada', 1), ('regular', 1), ('short', 1), ('presented', 1), ('together', 1), ('graduate', 1)]
[('book', 1), ('feature', 1), ('collection', 1), ('revised', 1), ('significantly', 1), ('extended', 1), ('version', 1), ('paper', 1), ('accepted', 1), ('presentation', 1), ('th', 1), ('international', 1), ('workshop', 1), ('new', 1), ('frontier', 1), ('mining', 1), ('complex', 1), ('pattern', 1), ('nfmcp', 1), ('held', 1), ('conjunction', 1), ('ecml', 1), ('pkdd', 1)]
[('lnai', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('held', 1), ('wuhan', 1), ('china', 1), ('august', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('principle', 1), ('practice', 1), ('multi', 1), ('agent', 1), ('system', 1), ('prima', 1), ('held', 1), ('turin', 1), ('italy', 1), ('october', 1), ('full', 1), ('presented', 1), ('short', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('ecml', 1), ('pkdd', 1), ('workshop', 1), ('data', 1), ('analytics', 1), ('renewable', 1), ('energy', 1), ('integration', 1), ('dare', 1), ('held', 1), ('skopje', 1), ('macedonia', 1), ('september', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('data', 1), ('mining', 1), ('application', 1), ('adma', 1), ('held', 1), ('nanjing', 1), ('china', 1), ('november', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('rd', 1), ('annual', 1), ('conference', 1), ('research', 1), ('computational', 1), ('molecular', 1), ('biology', 1), ('recomb', 1), ('held', 1), ('washington', 1), ('dc', 1), ('usa', 1), ('april', 1), ('extended', 1), ('short', 1), ('abstract', 1), ('presented', 1)]
[('conference', 3), ('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('augmented', 1), ('cognition', 1), ('ac', 1), ('held', 1), ('part', 1), ('nd', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('july', 1), ('planned', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('industrial', 1), ('engineering', 1), ('application', 1), ('applied', 1), ('intelligent', 1), ('system', 1), ('iea', 1), ('aie', 1), ('held', 1), ('kitakyushu', 1), ('japan', 1), ('september', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('scalable', 1), ('uncertainty', 1), ('management', 1), ('sum', 1), ('held', 1), ('bozen', 1), ('bolzano', 1), ('italy', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('nbsp', 3), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computer', 1), ('mathematics', 1), ('cicm', 1), ('held', 1), ('bialystok', 1), ('poland', 1), ('july', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('august', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('constraint', 2), ('programming', 2), ('data', 2), ('mining', 2), ('successful', 1), ('integration', 1), ('potential', 1), ('lead', 1), ('new', 1), ('ict', 1), ('paradigm', 1), ('far', 1), ('reaching', 1), ('implication', 1), ('change', 1), ('face', 1), ('machine', 1), ('learning', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('collocated', 1), ('pricai', 1), ('workshop', 1), ('artificial', 1), ('intelligence', 1), ('held', 1), ('phuket', 1), ('thailand', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('optimization', 2), ('part', 1), ('everyday', 1), ('life', 1), ('try', 1), ('organize', 1), ('work', 1), ('better', 1), ('way', 1), ('occurs', 1), ('minimizing', 1), ('time', 1), ('cost', 1), ('maximization', 1), ('profit', 1), ('quality', 1), ('efficiency', 1), ('many', 1), ('real', 1), ('world', 1), ('problem', 1), ('arising', 1)]
[('learning', 2), ('robot', 2), ('book', 1), ('present', 1), ('develops', 1), ('new', 1), ('reinforcement', 1), ('method', 1), ('enable', 1), ('fast', 1), ('robust', 1), ('real', 1), ('time', 1), ('potential', 1), ('solve', 1), ('many', 1), ('problem', 1), ('society', 1), ('ability', 1), ('work', 1), ('dangerous', 1), ('place', 1)]
[('edited', 1), ('book', 1), ('present', 1), ('scientific', 1), ('result', 1), ('th', 1), ('iee', 1), ('acis', 1), ('international', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('artificial', 1), ('intelligence', 1), ('networking', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('snpd', 1), ('held', 1), ('june', 1), ('july', 1), ('la', 1), ('vega', 1), ('nevada', 1)]
[('agent', 4), ('present', 2), ('monograph', 1), ('concept', 1), ('system', 1), ('start', 1), ('formal', 1), ('approach', 1), ('example', 1), ('practical', 1), ('application', 1), ('order', 1), ('form', 1), ('principle', 1), ('construction', 1), ('autonomous', 1), ('model', 1)]
[('monograph', 2), ('continuation', 1), ('completion', 1), ('intelligent', 1), ('system', 1), ('approximation', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('written', 1), ('author', 1), ('published', 1), ('springer', 1), ('book', 1), ('hold', 1), ('hand', 1), ('present', 1), ('complete', 1), ('recent', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('conference', 1), ('towards', 1), ('autonomous', 1), ('robotics', 1), ('taro', 1), ('held', 1), ('liverpool', 1), ('uk', 1), ('september', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('scalable', 1), ('uncertainty', 1), ('management', 1), ('sum', 1), ('held', 1), ('québec', 1), ('city', 1), ('qc', 1), ('canada', 1), ('september', 1), ('regular', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('day', 2), ('theinformation', 1), ('infrastructure', 1), ('comprising', 1), ('computer', 1), ('embedded', 1), ('device', 1), ('networksand', 1), ('software', 1), ('system', 1), ('vital', 1), ('operation', 1), ('every', 1), ('sector', 1), ('information', 1), ('telecommunication', 1), ('banking', 1), ('finance', 1), ('energy', 1), ('chemical', 1), ('andhazardous', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('thethird', 1), ('international', 1), ('conference', 1), ('statistical', 1), ('language', 1), ('speech', 1), ('processing', 1), ('slsp', 1), ('held', 1), ('budapest', 1), ('hungary', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('twoinvited', 1)]
[('wearable', 2), ('increasing', 1), ('advance', 1), ('electronics', 1), ('allows', 1), ('smaller', 1), ('powerful', 1), ('device', 1), ('bringing', 1), ('computing', 1), ('closer', 1), ('reality', 1), ('computer', 1), ('distinguished', 1), ('placed', 1), ('clothes', 1), ('accessory', 1), ('book', 1), ('try', 1)]
[('chapter', 2), ('volume', 1), ('comprises', 1), ('selected', 1), ('including', 1), ('overview', 1), ('devoted', 1), ('nbsp', 1), ('abdominal', 1), ('imaging', 1), ('clinical', 1), ('application', 1), ('supported', 1), ('computer', 1), ('aided', 1), ('diagnosis', 1), ('approach', 1), ('different', 1), ('technique', 1), ('solving', 1), ('pectoral', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('internationalconference', 1), ('algorithm', 1), ('computational', 1), ('biology', 1), ('alcob', 1), ('held', 1), ('intrujillo', 1), ('spain', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('andselected', 1)]
[('volume', 1), ('contains', 1), ('contributed', 1), ('survey', 1), ('paper', 1), ('main', 1), ('speaker', 1), ('lm', 1), ('epsrc', 1), ('symposium', 1), ('building', 1), ('bridge', 1), ('connection', 1), ('challenge', 1), ('modern', 1), ('approach', 1), ('numerical', 1), ('partial', 1), ('differential', 1), ('equation', 1), ('meeting', 1), ('took', 1), ('place', 1), ('july', 1)]
[('volume', 2), ('conference', 2), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('history', 1), ('philosophy', 1), ('computing', 1), ('held', 1), ('pisa', 1), ('italy', 1), ('october', 1), ('full', 1), ('paper', 1), ('included', 1), ('carefully', 1)]
[('th', 2), ('book', 1), ('present', 1), ('combined', 1), ('peer', 1), ('reviewed', 1), ('proceeding', 1), ('tenth', 1), ('international', 1), ('symposium', 1), ('intelligent', 1), ('distributed', 1), ('computing', 1), ('idc', 1), ('held', 1), ('paris', 1), ('france', 1), ('october', 1), ('contribution', 1), ('address', 1), ('range', 1)]
[('textile', 3), ('development', 2), ('smart', 2), ('holistic', 1), ('perspective', 1), ('handbook', 1), ('explores', 1), ('design', 1), ('production', 1), ('electronics', 1), ('breaking', 1), ('traditional', 1), ('silo', 1), ('structure', 1), ('research', 1), ('leading', 1), ('expert', 1)]
[('comprehensive', 1), ('handbook', 1), ('address', 1), ('sophisticated', 1), ('forensic', 1), ('threat', 1), ('challenge', 1), ('arisen', 1), ('modern', 1), ('digital', 1), ('age', 1), ('review', 1), ('new', 1), ('computing', 1), ('solution', 1), ('proposed', 1), ('tackle', 1), ('include', 1), ('identity', 1), ('related', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('australasian', 1), ('joint', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('melbourne', 1), ('vic', 1), ('australia', 1), ('august', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('bi', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('brain', 1), ('informatics', 1), ('held', 1), ('beijing', 1), ('china', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('neural', 2), ('network', 2), ('book', 1), ('demonstrates', 1), ('power', 1), ('learning', 1), ('complex', 1), ('behavior', 1), ('underlying', 1), ('financial', 1), ('time', 1), ('series', 1), ('data', 1), ('result', 1), ('presented', 1), ('show', 1), ('successfully', 1), ('applied', 1), ('volatility', 1), ('modeling', 1), ('option', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('product', 1), ('lifecycle', 1), ('management', 1), ('plm', 1), ('held', 1), ('columbia', 1), ('sc', 1), ('usa', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('intelligent', 2), ('information', 2), ('database', 2), ('book', 1), ('present', 1), ('recent', 1), ('research', 1), ('system', 1), ('carefully', 1), ('selected', 1), ('contribution', 1), ('initially', 1), ('accepted', 1), ('presentation', 1), ('poster', 1), ('th', 1), ('asian', 1), ('conference', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('trust', 1), ('management', 1), ('ifiptm', 1), ('held', 1), ('gothenburg', 1), ('sweden', 1), ('june', 1), ('nbsp', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('optimization', 2), ('problem', 2), ('book', 1), ('present', 1), ('new', 1), ('approach', 1), ('method', 1), ('application', 1), ('real', 1), ('world', 1), ('industrial', 1), ('demonstrates', 1), ('many', 1), ('arising', 1), ('engineering', 1), ('economics', 1), ('domain', 1), ('formulated', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('advance', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('jeju', 1), ('south', 1), ('korea', 1), ('full', 1)]
[('analysis', 2), ('visual', 2), ('retrieval', 2), ('book', 1), ('provides', 1), ('deep', 1), ('wide', 1), ('coverage', 1), ('strong', 1), ('trend', 1), ('computer', 1), ('vision', 1), ('indexing', 1), ('covering', 1), ('topic', 1), ('incorporation', 1), ('model', 1), ('human', 1), ('attention', 1), ('task', 1)]
[('conference', 2), ('place', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('discovery', 1), ('science', 1), ('d', 1), ('took', 1), ('october', 1), ('planned', 1), ('take', 1), ('thessaloniki', 1), ('greece', 1), ('change', 1), ('online', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('integrated', 1), ('uncertainty', 1), ('knowledge', 1), ('modelling', 1), ('decision', 1), ('making', 1), ('iukm', 1), ('held', 1), ('phuket', 1), ('thailand', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('china', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('national', 1), ('conference', 1), ('computational', 1), ('linguistics', 1), ('ccl', 1), ('held', 1), ('hainan', 1), ('october', 1), ('november', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('collective', 1), ('intelligence', 1), ('icci', 1), ('held', 1), ('da', 1), ('nang', 1), ('vietnam', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('data', 1), ('mining', 1), ('application', 1), ('adma', 1), ('held', 1), ('foshan', 1), ('china', 1), ('november', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1)]
[('proceeding', 2), ('conference', 2), ('volume', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('european', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('september', 1)]
[('image', 2), ('unique', 1), ('text', 1), ('reference', 1), ('highlight', 1), ('selection', 1), ('practical', 1), ('application', 1), ('advanced', 1), ('analysis', 1), ('method', 1), ('medical', 1), ('book', 1), ('cover', 1), ('complete', 1), ('methodology', 1), ('processing', 1), ('analysing', 1), ('interpreting', 1), ('diagnostic', 1), ('result', 1), ('sample', 1), ('ct', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('seven', 1), ('workshop', 1), ('held', 1), ('stockholm', 1), ('sweden', 1), ('conjunction', 1), ('th', 1), ('conference', 1), ('advanced', 1), ('information', 1), ('system', 1), ('engineering', 1), ('caise', 1), ('june', 1)]
[('privacy', 2), ('comprehensive', 1), ('textbook', 1), ('reference', 1), ('present', 1), ('focused', 1), ('review', 1), ('state', 1), ('art', 1), ('research', 1), ('encompassing', 1), ('range', 1), ('diverse', 1), ('topic', 1), ('first', 1), ('book', 1), ('kind', 1), ('designed', 1), ('specifically', 1), ('cater', 1), ('course', 1)]
[('system', 2), ('bookconstitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('internationalconference', 1), ('web', 1), ('information', 1), ('technology', 1), ('webist', 1), ('held', 1), ('inbarcelona', 1), ('spain', 1), ('april', 1), ('organized', 1), ('institute', 1), ('andtechnologies', 1)]
[('sparse', 2), ('grid', 2), ('numerical', 2), ('volume', 1), ('lncse', 1), ('collection', 1), ('paper', 1), ('proceeding', 1), ('third', 1), ('workshop', 1), ('application', 1), ('popular', 1), ('approach', 1), ('treatment', 1), ('high', 1), ('dimensional', 1), ('problem', 1), ('classical', 1)]
[('th', 2), ('volume', 1), ('selected', 1), ('collection', 1), ('paper', 1), ('presented', 1), ('discussedat', 1), ('international', 1), ('nbsp', 1), ('conference', 1), ('advanced', 1), ('computing', 1), ('innovation', 1), ('acomin', 1), ('theconference', 1), ('held', 1), ('november', 1), ('sofia', 1), ('bulgaria', 1), ('aimed', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('conference', 1), ('open', 1), ('source', 1), ('system', 1), ('os', 1), ('held', 1), ('florence', 1), ('italy', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('agent', 1), ('artificial', 1), ('intelligence', 1), ('icaart', 1), ('held', 1), ('online', 1), ('february', 1), ('total', 1), ('full', 1), ('short', 1)]
[('nbsp', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('science', 1), ('engineering', 1), ('management', 1), ('ksem', 1), ('held', 1), ('singapore', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('security', 2), ('book', 1), ('present', 1), ('compendium', 1), ('selected', 1), ('game', 1), ('decision', 1), ('theoretic', 1), ('model', 1), ('achieve', 1), ('ass', 1), ('critical', 1), ('infrastructure', 1), ('given', 1), ('contemporary', 1), ('report', 1), ('incident', 1), ('various', 1), ('kind', 1), ('see', 1), ('paradigm', 1), ('shift', 1)]
[('large', 2), ('supercomputer', 2), ('every', 1), ('day', 1), ('need', 1), ('solve', 1), ('problem', 1), ('needed', 1), ('high', 1), ('performance', 1), ('computing', 1), ('hpc', 1), ('paradigm', 1), ('allows', 1), ('efficiently', 1), ('implement', 1), ('scale', 1), ('computational', 1), ('task', 1), ('powerful', 1), ('unthinkable', 1), ('without', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('science', 1), ('engineering', 1), ('management', 1), ('ksem', 1), ('held', 1), ('hangzhou', 1), ('china', 1), ('august', 1), ('revised', 1), ('full', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('five', 1), ('workshop', 1), ('held', 1), ('parallel', 1), ('event', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('application', 1), ('innovation', 1), ('aiai', 1), ('virtually', 1)]
[('data', 2), ('science', 2), ('book', 1), ('discus', 1), ('current', 1), ('research', 1), ('concept', 1), ('addressed', 1), ('using', 1), ('different', 1), ('nature', 1), ('inspired', 1), ('optimization', 1), ('technique', 1), ('focusing', 1), ('various', 1), ('problem', 1), ('including', 1), ('classification', 1), ('clustering', 1)]
[('intelligent', 2), ('book', 1), ('describes', 1), ('latest', 1), ('advance', 1), ('fuzzy', 1), ('logic', 1), ('neural', 1), ('network', 1), ('optimization', 1), ('algorithm', 1), ('hybrid', 1), ('combination', 1), ('application', 1), ('area', 1), ('control', 1), ('robotics', 1), ('pattern', 1), ('recognition', 1)]
[('different', 3), ('software', 2), ('monograph', 1), ('discus', 1), ('reuse', 1), ('applied', 1), ('stage', 1), ('development', 1), ('process', 1), ('type', 1), ('data', 1), ('level', 1), ('granularity', 1), ('several', 1), ('challenging', 1), ('hypothesis', 1), ('analyzed', 1)]
[('book', 2), ('address', 1), ('important', 1), ('unsolved', 1), ('problem', 1), ('artificial', 1), ('intelligence', 1), ('task', 1), ('learning', 1), ('unsupervised', 1), ('manner', 1), ('massive', 1), ('quantity', 1), ('spatiotemporal', 1), ('visual', 1), ('data', 1), ('available', 1), ('low', 1), ('cost', 1), ('cover', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('thscandinavian', 1), ('conference', 1), ('information', 1), ('system', 1), ('scis', 1), ('held', 1), ('halden', 1), ('norway', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('engaging', 1), ('thought', 1), ('provoking', 1), ('textbook', 1), ('examines', 1), ('ethical', 1), ('social', 1), ('policy', 1), ('challenge', 1), ('arising', 1), ('rapidly', 1), ('continuously', 1), ('evolving', 1), ('computing', 1), ('technology', 1), ('ranging', 1), ('internet', 1), ('ubiquitous', 1), ('portable', 1), ('device', 1), ('use', 1), ('access', 1)]
[('book', 1), ('provides', 1), ('concise', 1), ('overview', 1), ('current', 1), ('state', 1), ('art', 1), ('cybersecurity', 1), ('share', 1), ('novel', 1), ('exciting', 1), ('idea', 1), ('technique', 1), ('along', 1), ('specific', 1), ('case', 1), ('demonstrating', 1), ('practical', 1), ('application', 1), ('gather', 1), ('contribution', 1)]
[('problem', 3), ('optimization', 2), ('real', 2), ('book', 1), ('present', 1), ('new', 1), ('approach', 1), ('method', 1), ('application', 1), ('world', 1), ('industrial', 1), ('numerous', 1), ('process', 1), ('life', 1), ('industry', 1), ('represented', 1), ('including', 1), ('modeling', 1)]
[('latest', 2), ('photometric', 2), ('book', 1), ('present', 1), ('advance', 1), ('reconstruction', 1), ('provides', 1), ('reader', 1), ('overview', 1), ('state', 1), ('art', 1), ('field', 1), ('research', 1), ('theoretical', 1), ('foundation', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('interactive', 1), ('collaborative', 1), ('robotics', 1), ('icr', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('october', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('industrial', 1), ('engineering', 1), ('application', 1), ('applied', 1), ('intelligent', 1), ('system', 1), ('iea', 1), ('aie', 1), ('held', 1), ('kitakyushu', 1), ('japan', 1), ('july', 1), ('full', 1)]
[('book', 2), ('ai', 2), ('focus', 1), ('implementation', 1), ('growing', 1), ('business', 1), ('includes', 1), ('research', 1), ('article', 1), ('expository', 1), ('paper', 1), ('application', 1), ('decision', 1), ('making', 1), ('health', 1), ('care', 1), ('smart', 1), ('university', 1), ('public', 1), ('sector', 1), ('digital', 1), ('government', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('conference', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('foundation', 1), ('trustworthy', 1), ('ai', 1), ('integrating', 1), ('learning', 1), ('optimization', 1), ('reasoning', 1), ('tailor', 1), ('held', 1), ('virtually', 1), ('september', 1)]
[('artificial', 2), ('intelligence', 2), ('book', 1), ('focus', 1), ('implementation', 1), ('business', 1), ('education', 1), ('healthcare', 1), ('includes', 1), ('research', 1), ('article', 1), ('expository', 1), ('paper', 1), ('application', 1), ('decision', 1), ('making', 1), ('entrepreneurship', 1)]
[('early', 2), ('internet', 2), ('erisk', 1), ('stand', 1), ('risk', 1), ('prediction', 1), ('concerned', 1), ('exploration', 1), ('technique', 1), ('detection', 1), ('mental', 1), ('health', 1), ('disorder', 1), ('manifest', 1), ('way', 1), ('write', 1), ('communicate', 1), ('particular', 1)]
[('nbsp', 4), ('java', 2), ('three', 2), ('controller', 2), ('spring', 2), ('comprehensive', 1), ('guide', 1), ('web', 1), ('development', 1), ('introduces', 1), ('reader', 1), ('tiered', 1), ('model', 1), ('view', 1), ('architecture', 1), ('using', 1), ('jpa', 1), ('jsps', 1), ('mvc', 1), ('technology', 1), ('use', 1)]
[('volume', 1), ('reveals', 1), ('history', 1), ('information', 1), ('architecture', 1), ('ia', 1), ('reflects', 1), ('relationship', 1), ('practice', 1), ('research', 1), ('within', 1), ('discipline', 1), ('present', 1), ('educator', 1), ('latest', 1), ('model', 1), ('framework', 1), ('theory', 1), ('emerged', 1)]
[('component', 2), ('cfi', 2), ('policy', 2), ('cfg', 2), ('precise', 2), ('three', 1), ('fundamental', 1), ('control', 1), ('flow', 1), ('integrity', 1), ('enforcement', 1), ('first', 1), ('accurately', 1), ('recovering', 1), ('usually', 1), ('security', 1), ('improves', 1), ('generation', 1)]
[('discussion', 2), ('book', 1), ('provides', 1), ('stepwise', 1), ('exhaustive', 1), ('literature', 1), ('review', 1), ('detailed', 1), ('analysis', 1), ('rigorous', 1), ('experimentation', 1), ('result', 1), ('using', 1), ('several', 1), ('analytics', 1), ('tool', 1), ('application', 1), ('oriented', 1), ('approach', 1), ('demonstrated', 1), ('respect', 1)]
[('security', 4), ('book', 1), ('present', 1), ('sensemaking', 1), ('strategy', 1), ('support', 1), ('planning', 1), ('design', 1), ('threat', 1), ('becoming', 1), ('complex', 1), ('multifaceted', 1), ('increasingly', 1), ('challenging', 1), ('traditional', 1), ('notion', 1), ('landscape', 1), ('characterized', 1)]
[('data', 2), ('book', 1), ('systemically', 1), ('present', 1), ('latest', 1), ('research', 1), ('finding', 1), ('fuzzy', 1), ('rdf', 1), ('modeling', 1), ('management', 1), ('fuzziness', 1), ('widely', 1), ('exist', 1), ('many', 1), ('knowledge', 1), ('intensive', 1), ('application', 1), ('increasing', 1), ('amount', 1), ('metadata', 1), ('available', 1), ('efficient', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('concept', 1), ('analysis', 1), ('icfca', 1), ('held', 1), ('strasbourg', 1), ('france', 1), ('june', 1), ('july', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('malware', 3), ('author', 2), ('develop', 1), ('fingerprinting', 1), ('framework', 1), ('cover', 1), ('accurate', 1), ('android', 1), ('detection', 1), ('family', 1), ('attribution', 1), ('book', 1), ('emphasize', 1), ('following', 1), ('negetiveemoji', 1), ('scalability', 1), ('large', 1), ('corpus', 1), ('resiliency', 1)]
[('book', 1), ('approach', 1), ('subject', 1), ('matter', 1), ('promoting', 1), ('concept', 1), ('method', 1), ('solution', 1), ('digital', 1), ('transformation', 1), ('manufacturing', 1), ('service', 1), ('orientation', 1), ('holonic', 1), ('agent', 1), ('based', 1), ('control', 1), ('distributed', 1), ('intelligence', 1), ('scientific', 1), ('theme', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('brain', 1), ('informatics', 1), ('bi', 1), ('september', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('full', 1), ('short', 1), ('paper', 1), ('together', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('flexible', 1), ('query', 1), ('answering', 1), ('system', 1), ('fqas', 1), ('held', 1), ('virtually', 1), ('bratislava', 1), ('slovakia', 1), ('september', 1), ('full', 1), ('perspective', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('speech', 1), ('computer', 1), ('specom', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('september', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('ai', 2), ('method', 2), ('edited', 1), ('book', 1), ('explores', 1), ('many', 1), ('interesting', 1), ('question', 1), ('lie', 1), ('intersection', 1), ('hci', 1), ('cover', 1), ('comprehensive', 1), ('set', 1), ('perspective', 1), ('project', 1), ('present', 1), ('challenge', 1), ('opportunity', 1), ('modern', 1)]
[('theory', 2), ('shannon', 2), ('theorem', 2), ('book', 1), ('provides', 1), ('introduction', 1), ('information', 1), ('focussing', 1), ('three', 1), ('foundational', 1), ('first', 1), ('based', 1), ('notion', 1), ('entropy', 1), ('probability', 1), ('specify', 1), ('extent', 1), ('message', 1)]
[('cloud', 2), ('numerous', 1), ('advancement', 1), ('brought', 1), ('incorporated', 1), ('domain', 1), ('aim', 1), ('realizing', 1), ('trove', 1), ('deeper', 1), ('decisive', 1), ('automation', 1), ('rather', 1), ('discussing', 1), ('paradigm', 1), ('isolation', 1), ('fully', 1), ('updated', 1), ('text', 1), ('examines', 1)]
[('texture', 2), ('set', 2), ('book', 1), ('provides', 1), ('complete', 1), ('framework', 1), ('fundamental', 1), ('concept', 1), ('result', 1), ('space', 1), ('application', 1), ('principal', 1), ('aim', 1), ('present', 1), ('comprehensive', 1), ('argument', 1), ('due', 1), ('connection', 1), ('among', 1), ('fuzzy', 1), ('rough', 1)]
[('volume', 1), ('present', 1), ('collection', 1), ('research', 1), ('study', 1), ('sophisticated', 1), ('functional', 1), ('computational', 1), ('instrument', 1), ('able', 1), ('recognize', 1), ('process', 1), ('store', 1), ('relevant', 1), ('situated', 1), ('interactional', 1), ('signal', 1), ('interact', 1), ('displaying', 1), ('reaction', 1)]
[('thisbook', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conferenceon', 1), ('distributed', 1), ('computer', 1), ('communication', 1), ('network', 1), ('dccn', 1), ('held', 1), ('inmoscow', 1), ('russia', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('th', 2), ('interactive', 2), ('tv', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('iberoamerican', 1), ('conference', 1), ('application', 1), ('usability', 1), ('jauti', 1), ('congress', 1), ('digital', 1), ('ctvdi', 1), ('held', 1), ('palma', 1), ('de', 1), ('mallorca', 1), ('spain', 1)]
[('decision', 2), ('thisbook', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('internationalconference', 1), ('support', 1), ('system', 1), ('technology', 1), ('icdsst', 1), ('held', 1), ('inplymouth', 1), ('uk', 1), ('theme', 1), ('event', 1), ('supportsystems', 1), ('addressing', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('associated', 1), ('th', 1), ('conference', 1), ('advanced', 1), ('information', 1), ('system', 1), ('engineering', 1), ('caise', 1), ('held', 1), ('zaragoza', 1), ('spain', 1), ('june', 1)]
[('ets', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('discussion', 1), ('new', 1), ('insight', 1), ('linear', 1), ('optimization', 1), ('content', 1), ('metric', 1), ('improve', 1), ('automatic', 1), ('evaluation', 1), ('text', 1), ('summary', 1), ('reader', 1), ('first', 1), ('introduced', 1), ('background', 1), ('fundamental', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('digital', 1), ('economy', 1), ('icdec', 1), ('took', 1), ('place', 1), ('braga', 1), ('portugal', 1), ('full', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 2), ('research', 1), ('continuation', 1), ('author', 1), ('previous', 1), ('work', 1), ('focused', 1), ('recent', 1), ('advance', 1), ('computer', 1), ('vision', 1), ('methodology', 1), ('technical', 1), ('solution', 1), ('using', 1), ('conventional', 1), ('intelligent', 1), ('paradigm', 1), ('gather', 1), ('selected', 1), ('contribution', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('tool', 1), ('method', 1), ('program', 1), ('analysis', 1), ('tmpa', 1), ('moscow', 1), ('russia', 1), ('march', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('knowledge', 1), ('engineering', 1), ('semantic', 1), ('web', 1), ('kesw', 1), ('held', 1), ('kazan', 1), ('russia', 1), ('september', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('short', 1), ('system', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('metadata', 1), ('semantics', 1), ('research', 1), ('conference', 1), ('mtsr', 1), ('held', 1), ('karlsruhe', 1), ('germany', 1), ('november', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('european', 1), ('design', 1), ('science', 1), ('symposium', 1), ('eds', 1), ('held', 1), ('dublin', 1), ('ireland', 1), ('november', 1), ('presented', 1), ('together', 1), ('invited', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 3), ('international', 2), ('artsit', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('interactivity', 1), ('game', 1), ('creation', 1), ('second', 1), ('design', 1), ('learning', 1), ('innovation', 1), ('dli', 1), ('nbsp', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('communication', 1), ('networking', 1), ('chinacom', 1), ('held', 1), ('xi', 1), ('china', 1), ('september', 1), ('total', 1), ('contribution', 1)]
[('theory', 2), ('book', 1), ('introduces', 1), ('explains', 1), ('illustrates', 1), ('concept', 1), ('method', 1), ('needed', 1), ('sound', 1), ('enterprise', 1), ('engineering', 1), ('based', 1), ('foundational', 1), ('insight', 1), ('specifically', 1), ('concerning', 1), ('employee', 1), ('centric', 1), ('organization', 1)]
[('held', 2), ('th', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('international', 1), ('conference', 1), ('security', 1), ('privacy', 1), ('communication', 1), ('network', 1), ('securecomm', 1), ('niagara', 1), ('fall', 1), ('canada', 1), ('october', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('processing', 1), ('management', 1), ('uncertainty', 1), ('knowledge', 1), ('based', 1), ('system', 1), ('ipmu', 1), ('held', 1), ('cádiz', 1), ('spain', 1), ('june', 1), ('revised', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('future', 1), ('network', 1), ('system', 1), ('security', 1), ('fnss', 1), ('held', 1), ('paris', 1), ('france', 1), ('july', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('smart', 1), ('city', 1), ('infrastructure', 1), ('technology', 1), ('application', 1), ('scita', 1), ('held', 1), ('jeddah', 1), ('saudi', 1), ('arabia', 1), ('november', 1), ('revised', 1), ('full', 1)]
[('thoroughly', 2), ('revised', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('paper', 1), ('second', 1), ('international', 1), ('conference', 1), ('model', 1), ('driven', 1), ('engineering', 1), ('software', 1), ('development', 1), ('modelsward', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('january', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('language', 1), ('music', 1), ('computing', 1), ('lmac', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('april', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('th', 2), ('nbsp', 2), ('semantic', 2), ('web', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('edition', 1), ('evaluation', 1), ('challenge', 1), ('semwebeval', 1), ('co', 1), ('located', 1), ('european', 1), ('held', 1), ('heraklion', 1), ('greece', 1)]
[('thoroughly', 2), ('revised', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('paper', 1), ('third', 1), ('international', 1), ('conference', 1), ('model', 1), ('driven', 1), ('engineering', 1), ('software', 1), ('development', 1), ('modelsward', 1), ('held', 1), ('anger', 1), ('france', 1), ('february', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedproceedings', 1), ('th', 1), ('international', 1), ('conference', 1), ('smart', 1), ('city', 1), ('green', 1), ('ictsystems', 1), ('smartgreens', 1), ('st', 1), ('nbsp', 1), ('internationalconference', 1), ('vehicle', 1), ('technology', 1), ('intelligent', 1), ('transport', 1)]
[('knowledge', 3), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('discovery', 1), ('engineering', 1), ('management', 1), ('ic', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('november', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('iee', 1), ('colombian', 1), ('conference', 1), ('colcaci', 1), ('held', 1), ('medellin', 1), ('colombia', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('decision', 3), ('nbsp', 2), ('group', 2), ('negotiation', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('gdn', 1), ('held', 1), ('nanjing', 1), ('china', 1), ('june', 1), ('field', 1), ('focus', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('engineering', 1), ('application', 1), ('neural', 1), ('network', 1), ('eann', 1), ('held', 1), ('bristol', 1), ('uk', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('computational', 1), ('technology', 1), ('pct', 1), ('held', 1), ('rostov', 1), ('russia', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('software', 1), ('technology', 1), ('icist', 1), ('held', 1), ('vilnius', 1), ('lithuania', 1), ('october', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nbsp', 2), ('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('management', 1), ('big', 1), ('data', 1), ('simbig', 1), ('held', 1), ('virtual', 1), ('event', 1), ('december', 1), ('full', 1), ('short', 1)]
[('nbsp', 3), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('frontier', 1), ('computer', 1), ('vision', 1), ('iw', 1), ('fcv', 1), ('hiroshima', 1), ('japan', 1), ('february', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('conference', 1), ('online', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('engineering', 1), ('application', 1), ('neural', 1), ('network', 1), ('eann', 1), ('held', 1), ('chersonisos', 1), ('crete', 1), ('greece', 1), ('june', 1), ('full', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('smartcity', 1), ('summit', 1), ('organized', 1), ('november', 1), ('porto', 1), ('portugal', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('conference', 1), ('held', 1), ('virtually', 1), ('volume', 1), ('combine', 1), ('selected', 1), ('paper', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('iot', 1), ('big', 1), ('data', 1), ('technology', 1), ('health', 1), ('care', 1), ('iotcare', 1), ('took', 1), ('place', 1), ('october', 1), ('due', 1), ('covid', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('iot', 1), ('big', 1), ('data', 1), ('technology', 1), ('health', 1), ('care', 1), ('iotcare', 1), ('took', 1), ('place', 1), ('october', 1), ('due', 1), ('covid', 1)]
[('kmo', 2), ('paper', 2), ('book', 1), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('management', 1), ('organization', 1), ('held', 1), ('hagen', 1), ('germany', 1), ('july', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('accepted', 1)]
[('book', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('italian', 1), ('conference', 1), ('geomatics', 1), ('green', 1), ('digital', 1), ('transition', 1), ('asita', 1), ('held', 1), ('genova', 1), ('italy', 1), ('june', 1), ('full', 1), ('paper', 1), ('included', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('software', 2), ('business', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('icsob', 1), ('held', 1), ('tallinn', 1), ('estonia', 1), ('june', 1), ('year', 1), ('theme', 1), ('digitalization', 1), ('impact', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('thinternational', 1), ('security', 1), ('privacy', 1), ('communication', 1), ('network', 1), ('securecomm', 1), ('held', 1), ('singapore', 1), ('august', 1), ('full', 1), ('short', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('thinternational', 1), ('security', 1), ('privacy', 1), ('communication', 1), ('network', 1), ('securecomm', 1), ('held', 1), ('singapore', 1), ('august', 1), ('full', 1), ('short', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('broadband', 1), ('communication', 1), ('network', 1), ('system', 1), ('broadnets', 1), ('nbsp', 1), ('took', 1), ('place', 1), ('faro', 1), ('portugal', 1), ('september', 1), ('revised', 1)]
[('selected', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('th', 1), ('brazilian', 1), ('workshop', 1), ('agile', 1), ('method', 1), ('wbma', 1), ('held', 1), ('campinas', 1), ('brazil', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('workshop', 1), ('dmle', 1), ('iotstream', 1), ('held', 1), ('theuropean', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('dublin', 1), ('ireland', 1), ('september', 1), ('nbsp', 1)]
[('book', 1), ('combine', 1), ('multiple', 1), ('research', 1), ('method', 1), ('experiment', 1), ('survey', 1), ('design', 1), ('science', 1), ('traditional', 1), ('measurement', 1), ('neurophysiological', 1), ('technique', 1), ('capture', 1), ('variety', 1), ('cognitive', 1), ('behavior', 1), ('human', 1), ('information', 1), ('processing', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('iberoamerican', 1), ('conference', 1), ('kgswc', 1), ('held', 1), ('villa', 1), ('clara', 1), ('cuba', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('data', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('analytics', 1), ('management', 1), ('intensive', 1), ('domain', 1), ('damdid', 1), ('rcdl', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('transport', 1), ('system', 1), ('telematics', 1), ('tst', 1), ('held', 1), ('jaworze', 1), ('near', 1), ('bielsko', 1), ('biala', 1), ('poland', 1), ('march', 1), ('full', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('software', 1), ('technology', 1), ('icsoft', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('biomedical', 1), ('engineering', 1), ('system', 1), ('technology', 1), ('biostec', 1), ('held', 1), ('funchal', 1), ('madeira', 1), ('portugal', 1), ('january', 1)]
[('technique', 2), ('process', 2), ('book', 1), ('proposes', 1), ('novel', 1), ('named', 1), ('artifact', 1), ('driven', 1), ('monitoring', 1), ('multi', 1), ('party', 1), ('involving', 1), ('non', 1), ('automated', 1), ('activity', 1), ('continuously', 1), ('autonomously', 1), ('monitored', 1), ('exploit', 1), ('internet', 1), ('thing', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('information', 1), ('processing', 1), ('prip', 1), ('held', 1), ('minsk', 1), ('belarus', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('international', 3), ('workshop', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('paper', 1), ('twelve', 1), ('held', 1), ('th', 1), ('conference', 1), ('business', 1), ('process', 1), ('management', 1), ('bpm', 1), ('vienna', 1), ('austria', 1), ('september', 1), ('third', 1), ('artificial', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('rd', 1), ('international', 1), ('lean', 1), ('agile', 1), ('software', 1), ('development', 1), ('lasd', 1), ('th', 1), ('multimedia', 1), ('interaction', 1), ('design', 1), ('innovation', 1), ('midi', 1), ('took', 1), ('place', 1)]
[('volume', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('modelling', 1), ('development', 1), ('intelligent', 1), ('system', 1), ('mdi', 1), ('held', 1), ('sibiu', 1), ('romania', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('analysis', 1), ('image', 1), ('social', 1), ('network', 1), ('text', 1), ('aist', 1), ('held', 1), ('kazan', 1), ('russia', 1), ('july', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('security', 1), ('issa', 1), ('held', 1), ('johannesburg', 1), ('south', 1), ('africa', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('track', 1), ('workshop', 1), ('complemented', 1), ('th', 1), ('european', 1), ('conference', 1), ('software', 1), ('architecture', 1), ('ecsa', 1), ('held', 1), ('aquila', 1), ('italy', 1), ('september', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('conference', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('emerging', 1), ('technology', 1), ('computing', 1), ('icetic', 1), ('held', 1), ('london', 1), ('uk', 1), ('august', 1), ('due', 1), ('vovid', 1), ('pandemic', 1), ('helt', 1), ('virtually', 1)]
[('nbsp', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('natural', 1), ('language', 1), ('ainl', 1), ('held', 1), ('helsinki', 1), ('finland', 1), ('october', 1), ('revised', 1), ('full', 1), ('short', 1), ('carefully', 1)]
[('ict', 2), ('innovation', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('held', 1), ('skopje', 1), ('north', 1), ('macedonia', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('iconip', 2), ('volume', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('contribution', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('held', 1), ('bangkok', 1), ('thailand', 1), ('november', 1), ('total', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('security', 1), ('privacy', 1), ('communication', 1), ('network', 1), ('securecomm', 1), ('held', 1), ('washington', 1), ('dc', 1), ('usa', 1), ('october', 1)]
[('nbsp', 2), ('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('latin', 1), ('american', 1), ('high', 1), ('performance', 1), ('computing', 1), ('carla', 1), ('cuenca', 1), ('ecuador', 1), ('september', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtual', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('wireless', 1), ('satellite', 1), ('service', 1), ('wisats', 1), ('held', 1), ('nanjing', 1), ('china', 1), ('september', 1), ('full', 1), ('paper', 1), ('workshop', 1)]
[('conference', 2), ('nooj', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('revised', 1), ('paper', 1), ('th', 1), ('international', 1), ('zagreb', 1), ('croatia', 1), ('june', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('online', 1), ('linguistic', 1), ('development', 1), ('environment', 1)]
[('conference', 2), ('held', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('revised', 1), ('paper', 1), ('first', 1), ('silicon', 1), ('valley', 1), ('cybersecurity', 1), ('san', 1), ('jose', 1), ('usa', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtual', 1), ('format', 1), ('full', 1)]
[('international', 2), ('conference', 2), ('place', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('workshop', 1), ('held', 1), ('second', 1), ('process', 1), ('mining', 1), ('icpm', 1), ('took', 1), ('october', 1), ('planned', 1), ('take', 1), ('padua', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('associated', 1), ('rd', 1), ('conference', 1), ('advanced', 1), ('information', 1), ('system', 1), ('engineering', 1), ('caise', 1), ('held', 1), ('june', 1), ('july', 1)]
[('conference', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('data', 1), ('information', 1), ('online', 1), ('environment', 1), ('dione', 1), ('took', 1), ('place', 1), ('march', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('held', 1)]
[('bias', 3), ('nbsp', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('algorithmic', 1), ('search', 1), ('recommendation', 1), ('april', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('full', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('advancement', 1), ('science', 1), ('technology', 1), ('icast', 1), ('took', 1), ('place', 1), ('august', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('conference', 3), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('wireless', 1), ('satellite', 1), ('service', 1), ('wisats', 1), ('nanjing', 1), ('china', 1), ('september', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('gans', 2), ('book', 1), ('provides', 1), ('collection', 1), ('recent', 1), ('research', 1), ('work', 1), ('addressing', 1), ('theoretical', 1), ('issue', 1), ('improving', 1), ('learning', 1), ('process', 1), ('generalization', 1), ('state', 1), ('art', 1), ('application', 1), ('various', 1), ('domain', 1), ('real', 1), ('life', 1), ('adversarial', 1)]
[('nbsp', 3), ('medprai', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('mediterranean', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('artificial', 1), ('intelligence', 1), ('held', 1), ('istanbul', 1), ('turkey', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('software', 2), ('quality', 2), ('day', 2), ('conference', 2), ('swqd', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('started', 1), ('grown', 1), ('biggest', 1)]
[('blockchain', 3), ('book', 1), ('gather', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('congress', 1), ('application', 1), ('held', 1), ('ávila', 1), ('spain', 1), ('june', 1), ('among', 1), ('scientific', 1), ('community', 1), ('artificial', 1), ('intelligence', 1), ('broadly', 1)]
[('data', 3), ('big', 2), ('book', 1), ('includes', 1), ('proceeding', 1), ('intelligent', 1), ('fuzzy', 1), ('technique', 1), ('infus', 1), ('conference', 1), ('held', 1), ('istanbul', 1), ('turkey', 1), ('july', 1), ('analytics', 1), ('refers', 1), ('strategy', 1), ('analyzing', 1), ('large', 1), ('volume', 1), ('gathered', 1)]
[('computing', 3), ('book', 1), ('present', 1), ('proceeding', 1), ('conference', 1), ('providing', 1), ('comprehensive', 1), ('collection', 1), ('chapter', 1), ('focusing', 1), ('core', 1), ('area', 1), ('real', 1), ('world', 1), ('application', 1), ('extremely', 1), ('broad', 1), ('discipline', 1), ('encompassing', 1)]
[('volume', 1), ('book', 1), ('present', 1), ('unusually', 1), ('diverse', 1), ('selection', 1), ('research', 1), ('paper', 1), ('covering', 1), ('major', 1), ('topic', 1), ('field', 1), ('information', 1), ('communication', 1), ('technology', 1), ('related', 1), ('science', 1), ('provides', 1), ('wide', 1), ('angle', 1), ('snapshot', 1), ('current', 1), ('theme', 1)]
[('book', 1), ('present', 1), ('innovative', 1), ('idea', 1), ('cutting', 1), ('edge', 1), ('finding', 1), ('novel', 1), ('technique', 1), ('method', 1), ('application', 1), ('broad', 1), ('range', 1), ('cybersecurity', 1), ('cyberthreat', 1), ('intelligence', 1), ('area', 1), ('society', 1), ('becomes', 1), ('smarter', 1), ('corresponding', 1), ('need', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('neurois', 1), ('retreat', 1), ('held', 1), ('june', 1), ('vienna', 1), ('austria', 1), ('reporting', 1), ('topic', 1), ('intersection', 1), ('information', 1), ('system', 1), ('research', 1), ('neurophysiology', 1), ('brain', 1), ('science', 1), ('featuring', 1), ('latest', 1)]
[('book', 1), ('includes', 1), ('selection', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('simulation', 1), ('modeling', 1), ('methodology', 1), ('technology', 1), ('application', 1), ('simultech', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('july', 1), ('presenting', 1), ('new', 1)]
[('blockchain', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('congress', 1), ('application', 1), ('held', 1), ('aquila', 1), ('italy', 1), ('october', 1), ('among', 1), ('scientific', 1), ('community', 1), ('artificial', 1), ('intelligence', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('system', 1), ('application', 1), ('multi', 1), ('modal', 1), ('information', 1), ('analytics', 1), ('held', 1), ('changzhou', 1), ('china', 1), ('june', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('latest', 1)]
[('computational', 2), ('bioinformatics', 2), ('book', 1), ('highlight', 1), ('latest', 1), ('research', 1), ('practical', 1), ('application', 1), ('biology', 1), ('address', 1), ('emerging', 1), ('experimental', 1), ('sequencing', 1), ('technique', 1), ('posing', 1), ('new', 1), ('challenge', 1)]
[('intelligent', 3), ('system', 3), ('book', 1), ('application', 1), ('proceeding', 1), ('conference', 1), ('remarkable', 1), ('collection', 1), ('chapter', 1), ('covering', 1), ('wider', 1), ('range', 1), ('topic', 1), ('area', 1), ('artificial', 1), ('intelligence', 1)]
[('future', 2), ('book', 1), ('provides', 1), ('state', 1), ('art', 1), ('intelligent', 1), ('method', 1), ('technique', 1), ('solving', 1), ('real', 1), ('world', 1), ('problem', 1), ('along', 1), ('vision', 1), ('research', 1), ('fifth', 1), ('technology', 1), ('conference', 1), ('organized', 1), ('virtually', 1), ('received', 1), ('total', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('big', 1), ('data', 1), ('analytics', 1), ('iot', 1), ('security', 1), ('privacy', 1), ('spiot', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('november', 1), ('due', 1), ('covid', 1), ('outbreak', 1), ('problem', 1)]
[('ergonomics', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('held', 1), ('zagreb', 1), ('croatia', 1), ('december', 1), ('highlighting', 1), ('latest', 1), ('theory', 1), ('model', 1), ('cutting', 1), ('edge', 1), ('technology', 1), ('application', 1)]
[('book', 1), ('present', 1), ('comprehensive', 1), ('yet', 1), ('concise', 1), ('introduction', 1), ('physic', 1), ('dimensional', 1), ('electron', 1), ('system', 1), ('quantum', 1), ('hall', 1), ('regime', 1), ('date', 1), ('overview', 1), ('current', 1), ('field', 1), ('research', 1), ('concerning', 1), ('integer', 1), ('fractional', 1)]
[('book', 1), ('contains', 1), ('paper', 1), ('selected', 1), ('aspect', 1), ('dependability', 1), ('analysis', 1), ('computer', 1), ('system', 1), ('network', 1), ('chosen', 1), ('discussion', 1), ('th', 1), ('depcos', 1), ('relcomex', 1), ('conference', 1), ('held', 1), ('wrocław', 1), ('poland', 1), ('june', 1), ('july', 1)]
[('computable', 2), ('analysis', 2), ('real', 2), ('number', 2), ('modern', 1), ('theory', 1), ('computability', 1), ('complexity', 1), ('arose', 1), ('turing', 1), ('seminal', 1), ('work', 1), ('motivated', 1), ('question', 1), ('function', 1)]
[('annual', 2), ('conference', 2), ('jsai', 2), ('book', 1), ('contains', 1), ('expanded', 1), ('version', 1), ('research', 1), ('paper', 1), ('presented', 1), ('international', 1), ('session', 1), ('japanese', 1), ('society', 1), ('artificial', 1), ('intelligence', 1), ('held', 1), ('online', 1), ('june', 1)]
[('cimps', 2), ('th', 2), ('book', 1), ('contains', 1), ('selection', 1), ('paper', 1), ('international', 1), ('conference', 1), ('software', 1), ('process', 1), ('improvement', 1), ('held', 1), ('october', 1), ('torreón', 1), ('coahuila', 1), ('méxico', 1), ('virtual', 1), ('venue', 1), ('global', 1), ('forum', 1)]
[('nbsp', 2), ('archaeological', 2), ('site', 2), ('book', 1), ('describes', 1), ('novel', 1), ('machine', 1), ('learning', 1), ('based', 1), ('approach', 1), ('answer', 1), ('traditional', 1), ('problem', 1), ('relating', 1), ('detection', 1), ('locational', 1), ('preference', 1), ('institutional', 1), ('data', 1), ('collected', 1), ('six', 1), ('swiss', 1)]
[('data', 2), ('visualization', 2), ('book', 1), ('combine', 1), ('advantage', 1), ('high', 1), ('dimensional', 1), ('machine', 1), ('learning', 1), ('context', 1), ('identifying', 1), ('complex', 1), ('pattern', 1), ('vastly', 1), ('expands', 1), ('class', 1), ('reversible', 1), ('lossless', 1), ('method', 1)]
[('information', 2), ('system', 2), ('book', 1), ('present', 1), ('collection', 1), ('original', 1), ('research', 1), ('paper', 1), ('addressing', 1), ('relationship', 1), ('innovation', 1), ('open', 1), ('smart', 1), ('network', 1), ('three', 1), ('keywords', 1), ('currently', 1), ('guiding', 1)]
[('book', 2), ('big', 2), ('data', 2), ('nbsp', 2), ('includes', 1), ('research', 1), ('article', 1), ('expository', 1), ('paper', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('analytics', 1), ('battle', 1), ('pandemic', 1), ('context', 1), ('covid', 1), ('focus', 1), ('analytic', 1)]
[('present', 2), ('chaotic', 2), ('system', 2), ('book', 1), ('technique', 1), ('security', 1), ('challenge', 1), ('use', 1), ('cybersecurity', 1), ('state', 1), ('art', 1), ('latest', 1), ('discovery', 1), ('field', 1), ('method', 1), ('proposes', 1), ('new', 1), ('model', 1), ('practical', 1)]
[('application', 2), ('big', 2), ('data', 2), ('book', 1), ('present', 1), ('solution', 1), ('govtech', 1), ('system', 1), ('recommendation', 1), ('regulating', 1), ('institution', 1), ('digital', 1), ('economy', 1), ('information', 1), ('society', 1), ('wide', 1), ('use', 1)]
[('book', 1), ('help', 1), ('reader', 1), ('easily', 1), ('learn', 1), ('basic', 1), ('model', 1), ('checking', 1), ('presenting', 1), ('example', 1), ('exercise', 1), ('case', 1), ('study', 1), ('toolset', 1), ('mcrl', 1), ('provides', 1), ('language', 1), ('specify', 1), ('behaviour', 1), ('distributed', 1), ('system', 1), ('particular', 1), ('concurrency', 1)]
[('game', 6), ('structure', 1), ('design', 1), ('designed', 1), ('help', 1), ('aspiring', 1), ('existing', 1), ('designer', 1), ('turn', 1), ('idea', 1), ('working', 1), ('creating', 1), ('involves', 1), ('understanding', 1), ('core', 1), ('foundational', 1), ('element', 1), ('type', 1), ('paper', 1), ('based', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('gmunden', 1), ('retreat', 1), ('neurois', 1), ('reporting', 1), ('topic', 1), ('intersection', 1), ('information', 1), ('system', 1), ('research', 1), ('neurophysiology', 1), ('brain', 1), ('science', 1), ('reader', 1), ('discover', 1), ('latest', 1), ('finding', 1), ('top', 1)]
[('criminal', 2), ('book', 1), ('focus', 1), ('application', 1), ('social', 1), ('network', 1), ('analysis', 1), ('predictive', 1), ('policing', 1), ('data', 1), ('science', 1), ('used', 1), ('identify', 1), ('potential', 1), ('activity', 1), ('analyzing', 1), ('relationship', 1), ('offender', 1), ('fully', 1), ('understand', 1), ('collaboration', 1)]
[('mathematics', 2), ('written', 1), ('outstanding', 1), ('expert', 1), ('field', 1), ('marine', 1), ('engineering', 1), ('atmospheric', 1), ('physic', 1), ('chemistry', 1), ('fluid', 1), ('dynamic', 1), ('applied', 1), ('contribution', 1), ('book', 1), ('cover', 1), ('wide', 1), ('range', 1), ('subject', 1), ('pure', 1), ('real', 1), ('world', 1)]
[('statistic', 2), ('book', 1), ('tribute', 1), ('professor', 1), ('pedro', 1), ('gil', 1), ('created', 1), ('department', 1), ('tm', 1), ('university', 1), ('oviedo', 1), ('former', 1), ('president', 1), ('spanish', 1), ('society', 1), ('seio', 1), ('eighty', 1), ('original', 1), ('contribution', 1)]
[('design', 2), ('book', 1), ('explains', 1), ('application', 1), ('recent', 1), ('advance', 1), ('computational', 1), ('intelligence', 1), ('algorithm', 1), ('methodology', 1), ('synthesis', 1), ('technique', 1), ('integrated', 1), ('circuit', 1), ('system', 1), ('highlight', 1), ('new', 1), ('biasing', 1), ('sizing', 1), ('approach', 1)]
[('book', 1), ('explores', 1), ('digital', 1), ('technology', 1), ('altering', 1), ('relationship', 1), ('nature', 1), ('interface', 1), ('need', 1), ('reconsidered', 1), ('reflect', 1), ('make', 1), ('sense', 1), ('handle', 1), ('ambiguity', 1), ('negotiate', 1)]
[('multimedia', 2), ('book', 1), ('provides', 1), ('fresh', 1), ('insight', 1), ('cutting', 1), ('edge', 1), ('data', 1), ('mining', 1), ('reflecting', 1), ('research', 1), ('focus', 1), ('shifted', 1), ('towards', 1), ('networked', 1), ('social', 1), ('community', 1), ('mobile', 1), ('device', 1), ('sensor', 1), ('work', 1), ('describes', 1), ('history', 1)]
[('rapidly', 1), ('progressing', 1), ('digital', 1), ('revolution', 1), ('touching', 1), ('foundation', 1), ('governance', 1), ('societal', 1), ('structure', 1), ('human', 1), ('verge', 1), ('evolving', 1), ('consumer', 1), ('prosumers', 1), ('old', 1), ('entrenched', 1), ('theory', 1), ('particular', 1), ('sociological', 1)]
[('cyber', 2), ('charlie', 1), ('hebdo', 1), ('along', 1), ('sony', 1), ('pocalypse', 1), ('darpa', 1), ('million', 1), ('grand', 1), ('challenge', 1), ('book', 1), ('examines', 1), ('counterterrorism', 1), ('security', 1), ('history', 1), ('strategy', 1), ('technology', 1), ('thought', 1), ('provoking', 1), ('approach', 1), ('encompasses', 1)]
[('semantics', 2), ('technique', 2), ('book', 1), ('introduces', 1), ('formal', 1), ('natural', 1), ('language', 1), ('processing', 1), ('audience', 1), ('method', 1), ('discussed', 1), ('involve', 1), ('negetiveemoji', 1), ('denotational', 1), ('used', 1), ('model', 1), ('theoretic', 1), ('make', 1), ('possible', 1), ('determine', 1), ('whether', 1), ('linguistic', 1)]
[('book', 1), ('introduces', 1), ('novel', 1), ('approach', 1), ('discrete', 1), ('optimization', 1), ('providing', 1), ('theoretical', 1), ('insight', 1), ('algorithmic', 1), ('development', 1), ('lead', 1), ('improvement', 1), ('state', 1), ('art', 1), ('technology', 1), ('author', 1), ('present', 1), ('chapter', 1), ('use', 1), ('decision', 1)]
[('coordination', 3), ('system', 2), ('book', 1), ('discus', 1), ('main', 1), ('issue', 1), ('complex', 1), ('sociotechnical', 1), ('covering', 1), ('distributed', 1), ('self', 1), ('organising', 1), ('pervasive', 1), ('chemistry', 1), ('inspired', 1), ('model', 1), ('situated', 1), ('architecture', 1), ('language', 1)]
[('science', 2), ('book', 1), ('present', 1), ('recent', 1), ('advance', 1), ('field', 1), ('intelligent', 1), ('system', 1), ('composed', 1), ('fourteen', 1), ('selected', 1), ('chapter', 1), ('cover', 1), ('wide', 1), ('range', 1), ('research', 1), ('varies', 1), ('application', 1), ('industrial', 1), ('data', 1), ('applied', 1), ('today', 1), ('word', 1)]
[('present', 2), ('book', 1), ('state', 1), ('art', 1), ('simulation', 1), ('supercomputer', 1), ('leading', 1), ('researcher', 1), ('result', 1), ('achieved', 1), ('system', 1), ('high', 1), ('performance', 1), ('computing', 1), ('center', 1), ('stuttgart', 1), ('hlrs', 1), ('year', 1), ('report', 1), ('cover', 1), ('field', 1)]
[('book', 2), ('focus', 1), ('combination', 1), ('theoretical', 1), ('advance', 1), ('internet', 1), ('thing', 1), ('cloud', 1), ('computing', 1), ('real', 1), ('life', 1), ('application', 1), ('serve', 1), ('society', 1), ('discus', 1), ('technological', 1), ('innovation', 1), ('authentication', 1), ('mobility', 1), ('support', 1), ('security', 1)]
[('book', 1), ('describes', 1), ('new', 1), ('algorithm', 1), ('idea', 1), ('making', 1), ('effective', 1), ('decision', 1), ('constraint', 1), ('including', 1), ('application', 1), ('control', 1), ('engineering', 1), ('manufacturing', 1), ('optimally', 1), ('determine', 1), ('production', 1), ('level', 1), ('econometrics', 1), ('better', 1), ('predict', 1)]
[('decision', 2), ('book', 1), ('focus', 1), ('issue', 1), ('making', 1), ('several', 1), ('numerical', 1), ('criterion', 1), ('introduces', 1), ('original', 1), ('general', 1), ('approach', 1), ('solving', 1), ('multicriteria', 1), ('problem', 1), ('given', 1), ('quantitative', 1), ('information', 1), ('preference', 1), ('relation', 1), ('maker', 1)]
[('quantum', 4), ('book', 1), ('highlight', 1), ('practical', 1), ('key', 1), ('distribution', 1), ('system', 1), ('research', 1), ('implementation', 1), ('next', 1), ('generation', 1), ('communication', 1), ('photonic', 1), ('device', 1), ('technology', 1), ('discus', 1), ('advance', 1), ('computing', 1)]
[('theory', 3), ('info', 2), ('dynamic', 2), ('information', 2), ('foundation', 2), ('book', 1), ('focus', 1), ('development', 1), ('support', 1), ('static', 1), ('general', 1), ('establishes', 1), ('rational', 1), ('relate', 1)]
[('change', 2), ('socio', 2), ('economic', 2), ('system', 2), ('book', 1), ('address', 1), ('employ', 1), ('evolutional', 1), ('approach', 1), ('view', 1), ('evolutionary', 1), ('standpoint', 1), ('connecting', 1), ('past', 1), ('present', 1), ('future', 1), ('focus', 1), ('preventing', 1)]
[('book', 2), ('formal', 2), ('cluster', 2), ('clustering', 2), ('based', 2), ('provides', 1), ('reader', 1), ('basic', 1), ('understanding', 1), ('concept', 1), ('partition', 1), ('analysis', 1), ('etc', 1), ('explains', 1), ('feature', 1), ('graph', 1), ('spectral', 1), ('method', 1), ('discus', 1)]
[('high', 2), ('performance', 2), ('book', 1), ('present', 1), ('state', 1), ('art', 1), ('computing', 1), ('simulation', 1), ('modern', 1), ('supercomputer', 1), ('architecture', 1), ('cover', 1), ('trend', 1), ('hardware', 1), ('software', 1), ('development', 1), ('general', 1), ('future', 1), ('system', 1)]
[('social', 3), ('network', 3), ('intelligence', 2), ('book', 1), ('explains', 1), ('aspect', 1), ('varying', 1), ('development', 1), ('application', 1), ('new', 1), ('artificial', 1), ('computational', 1), ('technique', 1), ('understanding', 1), ('impact', 1), ('chapter', 1)]
[('cloud', 2), ('ran', 2), ('epc', 2), ('book', 1), ('explores', 1), ('challenge', 1), ('opportunity', 1), ('exploiting', 1), ('technology', 1), ('ranging', 1), ('radio', 1), ('access', 1), ('network', 1), ('evolved', 1), ('packet', 1), ('core', 1), ('specific', 1), ('focus', 1), ('text', 1), ('carefully', 1), ('explains', 1)]
[('book', 2), ('topic', 1), ('addressed', 1), ('crucial', 1), ('academic', 1), ('community', 1), ('industry', 1), ('vehicular', 1), ('network', 1), ('become', 1), ('essential', 1), ('building', 1), ('block', 1), ('intelligent', 1), ('transportation', 1), ('system', 1), ('systematic', 1), ('principle', 1), ('provides', 1)]
[('iot', 3), ('internet', 2), ('book', 1), ('cover', 1), ('connectivity', 1), ('edge', 1), ('computing', 1), ('solution', 1), ('representative', 1), ('thing', 1), ('use', 1), ('case', 1), ('including', 1), ('industrial', 1), ('rural', 1), ('vehicle', 1), ('iov', 1), ('mobile', 1), ('virtual', 1), ('reality', 1), ('vr', 1), ('based', 1), ('unique', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('social', 1), ('robotics', 1), ('icsr', 1), ('held', 1), ('bristol', 1), ('uk', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('abstract', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('industrial', 1), ('engineering', 1), ('application', 1), ('applied', 1), ('intelligent', 1), ('system', 1), ('iea', 1), ('aie', 1), ('held', 1), ('kaohsiung', 1), ('taiwan', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('brain', 1), ('informatics', 1), ('health', 1), ('bih', 1), ('held', 1), ('warsaw', 1), ('poland', 1), ('august', 1), ('part', 1), ('web', 1), ('intelligence', 1), ('congress', 1), ('wic', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('jsai', 1), ('isai', 1), ('workshop', 1), ('lenls', 1), ('jurisin', 1), ('mimi', 1), ('aa', 1), ('dd', 1), ('tool', 1), ('place', 1), ('october', 1), ('japan', 1), ('contribution', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 2), ('belief', 2), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('function', 1), ('held', 1), ('oxford', 1), ('uk', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('workshop', 2), ('vienna', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('knowledge', 1), ('representation', 1), ('health', 1), ('care', 1), ('kr', 1), ('hc', 1), ('held', 1), ('part', 1), ('summer', 1), ('logic', 1), ('vsl', 1), ('austria', 1), ('july', 1), ('aimed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('discovery', 1), ('science', 1), ('d', 1), ('held', 1), ('banff', 1), ('ab', 1), ('canada', 1), ('october', 1), ('long', 1), ('short', 1), ('paper', 1), ('presendted', 1), ('together', 1), ('invited', 1), ('talk', 1), ('volume', 1)]
[('paper', 2), ('bookconstitutes', 1), ('revised', 1), ('selected', 1), ('third', 1), ('ecml', 1), ('pkdd', 1), ('workshop', 1), ('dataanalytics', 1), ('renewable', 1), ('energy', 1), ('integration', 1), ('dare', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('september', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('artificial', 1), ('general', 1), ('intelligence', 1), ('agi', 1), ('held', 1), ('new', 1), ('york', 1), ('city', 1), ('ny', 1), ('usa', 1), ('july', 1), ('part', 1), ('hlai', 1), ('joint', 1), ('multi', 1), ('human', 1), ('level', 1)]
[('th', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('international', 1), ('workshop', 1), ('machine', 1), ('learning', 1), ('interpretation', 1), ('neuroimaging', 1), ('mlini', 1), ('held', 1), ('montreal', 1), ('qc', 1), ('canada', 1), ('december', 1), ('nbsp', 1), ('satellite', 1), ('event', 1), ('annual', 1)]
[('book', 1), ('present', 1), ('comprehensive', 1), ('discussion', 1), ('characterization', 1), ('vagueness', 1), ('picture', 1), ('report', 1), ('problem', 1), ('representation', 1), ('image', 1), ('approached', 1), ('scientific', 1), ('practice', 1), ('highlighting', 1), ('role', 1), ('mathematical', 1), ('method', 1)]
[('workshop', 2), ('th', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('international', 1), ('empathic', 1), ('computing', 1), ('iwec', 1), ('co', 1), ('loacted', 1), ('pricai', 1), ('held', 1), ('gold', 1), ('coast', 1), ('qld', 1), ('australia', 1), ('december', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('australasian', 1), ('conference', 1), ('artificial', 1), ('life', 1), ('computational', 1), ('intelligence', 1), ('acalci', 1), ('held', 1), ('geelong', 1), ('vic', 1), ('australia', 1), ('january', 1), ('february', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('fuzzy', 1), ('logic', 1), ('application', 1), ('wilf', 1), ('held', 1), ('naples', 1), ('italy', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('lecture', 1), ('carefully', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('intelligent', 1), ('information', 1), ('database', 1), ('system', 1), ('aciids', 1), ('held', 1), ('kanazawa', 1), ('japan', 1), ('april', 1), ('total', 1), ('full', 1), ('paper', 1), ('accepted', 1)]
[('international', 2), ('conference', 2), ('volume', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('augmented', 1), ('cognition', 1), ('ac', 1), ('held', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('took', 1), ('place', 1), ('vancouver', 1), ('bc', 1), ('canada', 1), ('july', 1)]
[('fuzzy', 2), ('number', 2), ('first', 1), ('book', 1), ('focusing', 1), ('exclusively', 1), ('dual', 1), ('addition', 1), ('offering', 1), ('concise', 1), ('guide', 1), ('property', 1), ('operation', 1), ('application', 1), ('discus', 1), ('advantage', 1), ('regard', 1), ('classical', 1)]
[('view', 2), ('reasoning', 2), ('book', 1), ('offer', 1), ('inspiring', 1), ('naïve', 1), ('language', 1), ('present', 1), ('new', 1), ('approach', 1), ('ordinary', 1), ('follows', 1), ('author', 1), ('former', 1), ('work', 1), ('fuzzy', 1), ('logic', 1), ('starting', 1), ('pragmatic', 1), ('scientific', 1), ('meaning', 1), ('quantity', 1)]
[('mexico', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('mathematics', 1), ('computation', 1), ('music', 1), ('mcm', 1), ('held', 1), ('city', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('proceeding', 2), ('three', 1), ('volume', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('european', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('skopje', 1), ('macedonia', 1), ('september', 1), ('nbsp', 1), ('total', 1)]
[('type', 2), ('fuzzy', 2), ('set', 2), ('book', 1), ('explores', 1), ('recent', 1), ('perspective', 1), ('written', 1), ('tribute', 1), ('professor', 1), ('jerry', 1), ('mendel', 1), ('pioneering', 1), ('work', 1), ('system', 1), ('cover', 1), ('wide', 1), ('range', 1), ('topic', 1), ('including', 1), ('application', 1), ('go', 1), ('game', 1), ('machine', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('intelligent', 1), ('information', 1), ('database', 1), ('system', 1), ('aciids', 1), ('held', 1), ('dong', 1), ('hoi', 1), ('city', 1), ('vietnam', 1), ('march', 1), ('total', 1), ('full', 1), ('paper', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('advance', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('melbourne', 1), ('vic', 1), ('australia', 1), ('june', 1)]
[('international', 2), ('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('augmented', 1), ('cognition', 1), ('ac', 1), ('held', 1), ('part', 1), ('th', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('la', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('inductive', 1), ('logic', 1), ('programming', 1), ('ilp', 1), ('held', 1), ('ferrara', 1), ('italy', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ibero', 1), ('american', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('iberamia', 1), ('held', 1), ('trujillo', 1), ('peru', 1), ('november', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nbsp', 3), ('soft', 2), ('computing', 2), ('book', 1), ('gather', 1), ('authoritative', 1), ('contribution', 1), ('field', 1), ('based', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('th', 1), ('world', 1), ('conference', 1), ('held', 1), ('baku', 1), ('azerbaijan', 1), ('describes', 1), ('new', 1)]
[('book', 1), ('constitutes', 1), ('th', 1), ('edition', 1), ('annual', 1), ('multi', 1), ('agent', 1), ('programming', 1), ('contest', 1), ('mapc', 1), ('present', 1), ('participant', 1), ('scenario', 1), ('change', 1), ('previous', 1), ('competition', 1), ('described', 1), ('first', 1), ('contribution', 1), ('together', 1)]
[('volume', 2), ('lncs', 2), ('set', 1), ('constitutes', 1), ('conjunction', 1), ('lnai', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('held', 1), ('bari', 1), ('italy', 1), ('october', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('hybrid', 1), ('artificial', 1), ('intelligent', 1), ('system', 1), ('hais', 1), ('held', 1), ('gijón', 1), ('spain', 1), ('november', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('symposium', 1), ('mathematical', 1), ('computational', 1), ('oncology', 1), ('ismco', 1), ('supposed', 1), ('san', 1), ('diego', 1), ('ca', 1), ('usa', 1), ('october', 1), ('instead', 1), ('virtually', 1), ('due', 1)]
[('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('meeting', 1), ('computational', 1), ('intelligence', 1), ('method', 1), ('bioinformatics', 1), ('biostatistics', 1), ('cibb', 1), ('held', 1), ('bergamo', 1), ('italy', 1), ('september', 1), ('full', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('workshop', 1), ('mining', 1), ('data', 1), ('financial', 1), ('application', 1), ('midas', 1), ('held', 1), ('conjunction', 1), ('ecml', 1), ('pkdd', 1), ('ghent', 1), ('belgium', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('decision', 2), ('making', 2), ('method', 2), ('book', 1), ('introduces', 1), ('reader', 1), ('latest', 1), ('advance', 1), ('approach', 1), ('based', 1), ('thermodynamic', 1), ('character', 1), ('hesitant', 1), ('fuzzy', 1), ('linguistic', 1), ('preference', 1), ('relation', 1), ('investigating', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('russian', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('rcai', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('general', 1), ('intelligence', 1), ('agi', 1), ('held', 1), ('hybrid', 1), ('event', 1), ('san', 1), ('francisco', 1), ('ca', 1), ('usa', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('nbsp', 1), ('conference', 1), ('simulation', 1), ('adaptive', 1), ('behavior', 1), ('sab', 1), ('held', 1), ('cergy', 1), ('pontoise', 1), ('france', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('multi', 1), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('european', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('took', 1), ('place', 1), ('grenoble', 1), ('france', 1), ('september', 1)]
[('proceeding', 2), ('book', 1), ('constitutes', 1), ('th', 1), ('robocup', 1), ('international', 1), ('symposium', 1), ('held', 1), ('online', 1), ('july', 1), ('bangkok', 1), ('thailand', 1), ('full', 1), ('paper', 1), ('included', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('contains', 1), ('extended', 1), ('revised', 1), ('version', 1), ('best', 1), ('presented', 1), ('rd', 1), ('ifip', 1), ('wg', 1), ('iee', 1), ('international', 1), ('conference', 1), ('large', 1), ('scale', 1), ('integration', 1), ('vlsi', 1), ('soc', 1), ('held', 1), ('daejeon', 1), ('korea', 1), ('october', 1), ('included', 1)]
[('best', 2), ('nbsp', 2), ('problem', 2), ('book', 1), ('focus', 1), ('design', 1), ('analysis', 1), ('collective', 1), ('decision', 1), ('making', 1), ('strategy', 1), ('providing', 1), ('formalization', 1), ('structure', 1), ('supported', 1), ('comprehensive', 1), ('survey', 1), ('swarm', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('international', 1), ('ifip', 1), ('wg', 1), ('advance', 1), ('production', 1), ('management', 1), ('system', 1), ('apms', 1), ('held', 1), ('iguassu', 1), ('fall', 1), ('brazil', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('offer', 1), ('concise', 1), ('introduction', 1), ('morphogenetic', 1), ('computing', 1), ('showing', 1), ('use', 1), ('make', 1), ('global', 1), ('local', 1), ('relation', 1), ('defect', 1), ('crystal', 1), ('non', 1), ('euclidean', 1), ('geometry', 1), ('database', 1), ('source', 1), ('sink', 1), ('genetic', 1), ('algorithm', 1), ('neural', 1), ('network', 1)]
[('selected', 2), ('book', 1), ('comprises', 1), ('nine', 1), ('work', 1), ('numerical', 1), ('computational', 1), ('method', 1), ('solving', 1), ('multiobjective', 1), ('optimization', 1), ('game', 1), ('theory', 1), ('machine', 1), ('learning', 1), ('problem', 1), ('provides', 1), ('extended', 1), ('version', 1), ('paper', 1), ('various', 1), ('field', 1), ('science', 1)]
[('image', 2), ('book', 1), ('collection', 1), ('latest', 1), ('application', 1), ('method', 1), ('soft', 1), ('computing', 1), ('machine', 1), ('learning', 1), ('processing', 1), ('explores', 1), ('different', 1), ('area', 1), ('ranging', 1), ('segmentation', 1), ('object', 1), ('recognition', 1), ('using', 1), ('complex', 1), ('approach', 1)]
[('thailand', 2), ('book', 1), ('present', 1), ('recent', 1), ('research', 1), ('predictive', 1), ('econometrics', 1), ('big', 1), ('data', 1), ('gathering', 1), ('edited', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('econometric', 1), ('society', 1), ('te', 1), ('held', 1), ('chiang', 1), ('mai', 1), ('january', 1)]
[('analysis', 2), ('erp', 2), ('book', 1), ('role', 1), ('enterprise', 1), ('resource', 1), ('planning', 1), ('business', 1), ('intelligence', 1), ('bi', 1), ('system', 1), ('improving', 1), ('information', 1), ('quality', 1), ('empirical', 1), ('carried', 1), ('italy', 1), ('study', 1), ('begin', 1), ('detailed', 1), ('examination', 1)]
[('civil', 2), ('engineering', 2), ('book', 1), ('discus', 1), ('application', 1), ('metaheuristic', 1), ('algorithm', 1), ('number', 1), ('important', 1), ('optimization', 1), ('problem', 1), ('advance', 1), ('technology', 1), ('require', 1), ('greater', 1), ('accuracy', 1), ('efficiency', 1), ('speed', 1), ('term', 1), ('analysis', 1)]
[('conference', 2), ('data', 2), ('book', 1), ('present', 1), ('outcome', 1), ('rd', 1), ('iee', 1), ('acis', 1), ('international', 1), ('big', 1), ('cloud', 1), ('computing', 1), ('science', 1), ('engineering', 1), ('bcd', 1), ('held', 1), ('july', 1), ('kanazawa', 1), ('aim', 1), ('bring', 1), ('together', 1)]
[('ifip', 2), ('volume', 1), ('set', 1), ('aict', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('wg', 1), ('conference', 1), ('advance', 1), ('production', 1), ('management', 1), ('system', 1), ('apms', 1), ('held', 1), ('seoul', 1), ('south', 1), ('korea', 1), ('august', 1), ('revised', 1), ('full', 1)]
[('book', 1), ('present', 1), ('recent', 1), ('research', 1), ('field', 1), ('interaction', 1), ('computational', 1), ('intelligence', 1), ('mathematics', 1), ('current', 1), ('technological', 1), ('age', 1), ('face', 1), ('challenge', 1), ('tackling', 1), ('complex', 1), ('problem', 1), ('usual', 1), ('sense', 1)]
[('multi', 2), ('book', 1), ('present', 1), ('novel', 1), ('classification', 1), ('algorithm', 1), ('four', 1), ('challenging', 1), ('prediction', 1), ('task', 1), ('namely', 1), ('learning', 1), ('imbalanced', 1), ('semi', 1), ('supervised', 1), ('instance', 1), ('label', 1), ('data', 1), ('method', 1), ('based', 1), ('fuzzy', 1), ('rough', 1), ('set', 1), ('theory', 1), ('mathematical', 1)]
[('new', 2), ('method', 2), ('book', 1), ('put', 1), ('forward', 1), ('solving', 1), ('text', 1), ('document', 1), ('td', 1), ('clustering', 1), ('problem', 1), ('established', 1), ('main', 1), ('stage', 1), ('negetiveemoji', 1), ('feature', 1), ('selection', 1), ('based', 1), ('particle', 1), ('swarm', 1), ('optimization', 1), ('algorithm', 1), ('novel', 1), ('weighting', 1), ('scheme', 1)]
[('automated', 2), ('reasoning', 2), ('system', 2), ('book', 1), ('present', 1), ('outstanding', 1), ('contribution', 1), ('exciting', 1), ('new', 1), ('multidisciplinary', 1), ('research', 1), ('area', 1), ('application', 1), ('formal', 1), ('technique', 1), ('analyse', 1), ('complex', 1), ('model', 1), ('biology', 1), ('medicine', 1)]
[('education', 2), ('learning', 2), ('book', 1), ('explores', 1), ('ambient', 1), ('intelligence', 1), ('applied', 1), ('classroom', 1), ('especially', 1), ('focusing', 1), ('use', 1), ('personalized', 1), ('optimize', 1), ('process', 1), ('year', 1), ('come', 1), ('dynamic', 1), ('space', 1), ('higher', 1)]
[('nbsp', 5), ('proceeding', 1), ('book', 1), ('present', 1), ('selected', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('th', 1), ('international', 1), ('workshop', 1), ('service', 1), ('oriented', 1), ('holonic', 1), ('multi', 1), ('agent', 1), ('manufacturing', 1), ('system', 1), ('industry', 1), ('future', 1), ('organized', 1), ('universitat', 1)]
[('book', 2), ('researcher', 2), ('interesting', 1), ('full', 1), ('new', 1), ('idea', 1), ('provokes', 1), ('curiosity', 1), ('reader', 1), ('target', 1), ('practitioner', 1), ('student', 1), ('acquire', 1), ('nbsp', 1), ('knowledge', 1), ('ant', 1), ('colony', 1), ('optimization', 1)]
[('book', 1), ('contains', 1), ('interesting', 1), ('state', 1), ('art', 1), ('collection', 1), ('chapter', 1), ('presenting', 1), ('several', 1), ('example', 1), ('attempt', 1), ('developing', 1), ('modern', 1), ('tool', 1), ('utilizing', 1), ('computational', 1), ('intelligence', 1), ('different', 1), ('real', 1), ('life', 1), ('problem', 1), ('encountered', 1), ('human', 1), ('reasoning', 1)]
[('book', 1), ('present', 1), ('fundamental', 1), ('concurrency', 1), ('theory', 1), ('clarity', 1), ('rigor', 1), ('author', 1), ('start', 1), ('semantic', 1), ('structure', 1), ('namely', 1), ('labelled', 1), ('transition', 1), ('system', 1), ('provides', 1), ('mean', 1), ('tool', 1), ('express', 1), ('process', 1), ('compose', 1)]
[('earth', 1), ('manner', 1), ('volume', 1), ('lucidly', 1), ('present', 1), ('fundamental', 1), ('concept', 1), ('methodology', 1), ('algorithm', 1), ('computational', 1), ('intelligence', 1), ('efficiently', 1), ('exploited', 1), ('software', 1), ('engineering', 1), ('open', 1), ('novel', 1), ('promising', 1), ('avenue', 1)]
[('algorithm', 2), ('book', 1), ('brings', 1), ('together', 1), ('current', 1), ('stateof', 1), ('art', 1), ('research', 1), ('self', 1), ('organizing', 1), ('migrating', 1), ('soma', 1), ('novelpopulation', 1), ('based', 1), ('evolutionary', 1), ('modeled', 1), ('predator', 1), ('preyrelationship', 1), ('leading', 1), ('practitioner', 1), ('nbsp', 1)]
[('agent', 2), ('bookcovers', 1), ('recent', 1), ('advance', 1), ('complex', 1), ('automated', 1), ('negotiation', 1), ('widely', 1), ('studiedemerging', 1), ('area', 1), ('field', 1), ('autonomous', 1), ('multi', 1), ('system', 1), ('book', 1), ('includes', 1), ('selectedrevised', 1), ('extended', 1), ('paper', 1), ('th', 1), ('international', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('informatics', 1), ('semiotics', 1), ('organisation', 1), ('iciso', 1), ('held', 1), ('campinas', 1), ('brazil', 1), ('august', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 2), ('recent', 2), ('purpose', 1), ('review', 1), ('advance', 1), ('health', 1), ('technology', 1), ('application', 1), ('particular', 1), ('investigates', 1), ('advancement', 1), ('physical', 1), ('design', 1), ('medical', 1), ('device', 1), ('signal', 1), ('processing', 1), ('emergent', 1), ('wireless', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('socolnet', 1), ('advanced', 1), ('doctoral', 1), ('conference', 1), ('computing', 1), ('electrical', 1), ('industrial', 1), ('system', 1), ('doceis', 1), ('held', 1), ('caparica', 1), ('portugal', 1), ('june', 1), ('july', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('fifth', 1), ('ifip', 1), ('international', 1), ('cross', 1), ('domain', 1), ('internet', 1), ('thing', 1), ('ifipiot', 1), ('held', 1), ('amsterdam', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('chapter', 2), ('book', 1), ('systematically', 1), ('narrates', 1), ('fundamental', 1), ('method', 1), ('recent', 1), ('advance', 1), ('evolutionary', 1), ('deep', 1), ('neural', 1), ('architecture', 1), ('search', 1), ('provide', 1), ('target', 1), ('reader', 1), ('sufficient', 1), ('detail', 1), ('learning', 1), ('scratch', 1), ('particular', 1)]
[('distributed', 3), ('includes', 2), ('intelligent', 2), ('computing', 2), ('book', 1), ('latest', 1), ('research', 1), ('diverse', 1), ('field', 1), ('covering', 1), ('multitude', 1), ('aspect', 1), ('system', 1), ('contribution', 1), ('machine', 1), ('learning', 1)]
[('data', 2), ('book', 1), ('focus', 1), ('method', 1), ('model', 1), ('classification', 1), ('analysis', 1), ('present', 1), ('real', 1), ('world', 1), ('application', 1), ('interface', 1), ('science', 1), ('numerous', 1), ('topic', 1), ('covered', 1), ('ranging', 1), ('statistical', 1), ('inference', 1), ('modelling', 1), ('clustering', 1)]
[('optimal', 2), ('book', 1), ('present', 1), ('overview', 1), ('archiving', 1), ('strategy', 1), ('developed', 1), ('last', 1), ('year', 1), ('author', 1), ('deal', 1), ('suitable', 1), ('approximation', 1), ('set', 1), ('nearly', 1), ('solution', 1), ('multi', 1), ('objective', 1), ('optimization', 1), ('problem', 1), ('mean', 1)]
[('book', 1), ('provides', 1), ('systematic', 1), ('comprehensive', 1), ('overview', 1), ('machine', 1), ('learning', 1), ('cognitive', 1), ('science', 1), ('method', 1), ('technology', 1), ('played', 1), ('important', 1), ('role', 1), ('core', 1), ('practical', 1), ('solution', 1), ('wide', 1), ('scope', 1), ('task', 1), ('handheld', 1), ('apps', 1)]
[('iot', 2), ('book', 1), ('state', 1), ('major', 1), ('aim', 1), ('audience', 1), ('familiarity', 1), ('internet', 1), ('thing', 1), ('interested', 1), ('comprehensive', 1), ('interpretation', 1), ('role', 1), ('deep', 1), ('learning', 1), ('maintaining', 1), ('security', 1), ('privacy', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('triz', 1), ('future', 1), ('conference', 1), ('automated', 1), ('invention', 1), ('smart', 1), ('industry', 1), ('tfc', 1), ('held', 1), ('virtually', 1), ('september', 1), ('sponsored', 1), ('ifip', 1), ('wg', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('approach', 2), ('book', 1), ('review', 1), ('present', 1), ('number', 1), ('fuzzy', 1), ('based', 1), ('system', 1), ('safety', 1), ('reliability', 1), ('assessment', 1), ('proposed', 1), ('provides', 1), ('case', 1), ('study', 1), ('demonstrating', 1), ('applicability', 1), ('enable', 1), ('reader', 1), ('implement', 1)]
[('communication', 2), ('network', 2), ('book', 1), ('aim', 1), ('provide', 1), ('vision', 1), ('combine', 1), ('best', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('designing', 1), ('deployment', 1), ('trajectory', 1), ('establish', 1), ('flexible', 1), ('unmanned', 1), ('aerial', 1), ('vehicle', 1), ('uav', 1)]
[('nonlinear', 3), ('eigenvalue', 2), ('unique', 1), ('text', 1), ('reference', 1), ('present', 1), ('fresh', 1), ('look', 1), ('processing', 1), ('analysis', 1), ('highlighting', 1), ('homogeneous', 1), ('convex', 1), ('functionals', 1), ('induce', 1), ('operator', 1), ('analyzed', 1), ('within', 1), ('framework', 1)]
[('data', 2), ('edited', 1), ('volume', 1), ('focus', 1), ('latest', 1), ('impactful', 1), ('advancement', 1), ('multimedia', 1), ('globally', 1), ('available', 1), ('environmental', 1), ('earth', 1), ('biodiversity', 1), ('reflects', 1), ('status', 1), ('behavior', 1), ('change', 1), ('human', 1), ('interest', 1), ('concern', 1)]
[('component', 2), ('tutoring', 2), ('affective', 1), ('important', 1), ('cognitive', 1), ('assisted', 1), ('learning', 1), ('process', 1), ('feedback', 1), ('tutor', 1), ('essential', 1), ('keeping', 1), ('student', 1), ('motivated', 1), ('affectivity', 1), ('motivation', 1), ('significant', 1), ('computer', 1), ('based', 1)]
[('video', 2), ('book', 1), ('cover', 1), ('different', 1), ('aspect', 1), ('modern', 1), ('multimedia', 1), ('technology', 1), ('addressing', 1), ('several', 1), ('element', 1), ('visual', 1), ('communication', 1), ('system', 1), ('using', 1), ('diverse', 1), ('content', 1), ('format', 1), ('stereo', 1), ('plus', 1), ('depth', 1), ('multiview', 1), ('nbsp', 1), ('coding', 1)]
[('software', 2), ('real', 2), ('time', 2), ('system', 2), ('classroom', 1), ('tested', 1), ('textbook', 1), ('describes', 1), ('design', 1), ('implementation', 1), ('distributed', 1), ('using', 1), ('bottom', 1), ('approach', 1), ('text', 1), ('address', 1), ('common', 1), ('challenge', 1), ('faced', 1), ('project', 1), ('involving', 1)]
[('related', 2), ('cloud', 2), ('security', 2), ('auditing', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('review', 1), ('date', 1), ('research', 1), ('discus', 1), ('infrastructure', 1), ('structural', 1), ('point', 1), ('view', 1), ('focusing', 1), ('virtualization', 1)]
[('book', 1), ('present', 1), ('introduction', 1), ('linear', 1), ('univariate', 1), ('multivariate', 1), ('time', 1), ('series', 1), ('analysis', 1), ('providing', 1), ('brief', 1), ('theoretical', 1), ('insight', 1), ('topic', 1), ('beginning', 1), ('illustrating', 1), ('theory', 1), ('software', 1), ('example', 1), ('quickly', 1)]
[('development', 2), ('implementation', 2), ('software', 2), ('book', 1), ('focus', 1), ('cloud', 1), ('based', 1), ('complex', 1), ('allows', 1), ('parallelism', 1), ('fast', 1), ('processing', 1), ('real', 1), ('time', 1), ('connectivity', 1), ('engineering', 1), ('se', 1), ('design', 1), ('testing', 1)]
[('book', 1), ('offer', 1), ('latest', 1), ('research', 1), ('result', 1), ('security', 1), ('privacy', 1), ('intelligent', 1), ('edge', 1), ('computing', 1), ('system', 1), ('present', 1), ('state', 1), ('art', 1), ('content', 1), ('provides', 1), ('depth', 1), ('overview', 1), ('basic', 1), ('background', 1), ('related', 1), ('field', 1), ('practical', 1), ('area', 1)]
[('book', 1), ('focus', 1), ('automotive', 1), ('user', 1), ('interface', 1), ('vehicle', 1), ('usage', 1), ('looking', 1), ('car', 1), ('electronics', 1), ('software', 1), ('hidden', 1), ('technology', 1), ('asp', 1), ('esp', 1), ('comfort', 1), ('function', 1), ('navigation', 1), ('communication', 1), ('entertainment', 1), ('driver', 1), ('assistance', 1)]
[('approach', 2), ('unique', 1), ('text', 1), ('reference', 1), ('describes', 1), ('exciting', 1), ('novel', 1), ('supercomputing', 1), ('dataflow', 1), ('paradigm', 1), ('major', 1), ('advantage', 1), ('application', 1), ('clearly', 1), ('described', 1), ('detailed', 1), ('explanation', 1), ('programming', 1), ('model', 1)]
[('around', 2), ('first', 1), ('book', 1), ('describe', 1), ('autonomous', 1), ('virtual', 1), ('human', 1), ('social', 1), ('robot', 1), ('interact', 1), ('real', 1), ('aware', 1), ('environment', 1), ('react', 1), ('various', 1), ('situation', 1), ('researcher', 1), ('world', 1), ('present', 1), ('main', 1)]
[('believe', 2), ('make', 1), ('play', 1), ('far', 1), ('stronger', 1), ('role', 1), ('design', 1), ('use', 1), ('interface', 1), ('game', 1), ('service', 1), ('come', 1), ('edited', 1), ('volume', 1), ('illustrates', 1), ('way', 1), ('grasping', 1), ('utilising', 1), ('connection', 1), ('improve', 1), ('interaction', 1), ('user', 1)]
[('brain', 2), ('computer', 2), ('bcis', 2), ('book', 1), ('present', 1), ('date', 1), ('information', 1), ('interface', 1), ('bci', 1), ('system', 1), ('record', 1), ('signal', 1), ('extract', 1), ('feature', 1), ('translate', 1), ('command', 1), ('instance', 1), ('based', 1), ('steady', 1), ('state', 1), ('visual', 1), ('evoked', 1)]
[('conference', 3), ('software', 2), ('quality', 2), ('day', 2), ('swqd', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('january', 1), ('started', 1), ('grown', 1), ('biggest', 1)]
[('conference', 3), ('th', 2), ('information', 2), ('management', 2), ('book', 1), ('constitutes', 1), ('extended', 1), ('selected', 1), ('paper', 1), ('advanced', 1), ('technology', 1), ('aitm', 1), ('system', 1), ('ism', 1), ('held', 1), ('part', 1), ('federated', 1)]
[('conference', 4), ('eai', 2), ('international', 2), ('artsit', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('interactivity', 1), ('game', 1), ('creation', 1), ('rd', 1), ('design', 1), ('learning', 1)]
[('activity', 2), ('book', 1), ('address', 1), ('range', 1), ('real', 1), ('world', 1), ('issue', 1), ('including', 1), ('industrial', 1), ('energy', 1), ('management', 1), ('education', 1), ('business', 1), ('health', 1), ('nbsp', 1), ('today', 1), ('technology', 1), ('part', 1), ('virtually', 1), ('every', 1), ('human', 1), ('used', 1), ('support', 1), ('monitor', 1), ('manage', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('computational', 1), ('technology', 1), ('pct', 1), ('held', 1), ('kaliningrad', 1), ('russia', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('digital', 1), ('transformation', 1), ('global', 1), ('society', 1), ('dtgs', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('june', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('nbsp', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('optimization', 1), ('learning', 1), ('ola', 1), ('held', 1), ('cádiz', 1), ('spain', 1), ('february', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('iot', 2), ('book', 1), ('provides', 1), ('essential', 1), ('future', 1), ('direction', 1), ('big', 1), ('data', 1), ('research', 1), ('thanks', 1), ('rapid', 1), ('advance', 1), ('sensor', 1), ('wireless', 1), ('technology', 1), ('internet', 1), ('thing', 1), ('related', 1), ('application', 1), ('attracting', 1), ('attention', 1), ('device', 1)]
[('ccis', 3), ('nbsp', 3), ('volume', 2), ('second', 1), ('three', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('applied', 1), ('technology', 1), ('icat', 1), ('held', 1), ('quito', 1), ('ecuador', 1), ('december', 1)]
[('nbsp', 4), ('ccis', 3), ('first', 2), ('volume', 2), ('three', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('applied', 1), ('technology', 1), ('icat', 1), ('held', 1), ('quito', 1), ('ecuador', 1), ('december', 1)]
[('co', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('located', 1), ('international', 1), ('conference', 1), ('high', 1), ('performance', 1), ('computing', 1), ('networking', 1), ('storage', 1), ('analysis', 1), ('sc', 1), ('held', 1), ('denver', 1), ('usa', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('agent', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('co', 1), ('located', 1), ('th', 1), ('international', 1), ('conference', 1), ('practical', 1), ('application', 1), ('multi', 1), ('system', 1), ('paams', 1), ('held', 1), ('aquila', 1), ('italy', 1), ('october', 1), ('nbsp', 1), ('total', 1)]
[('volume', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('multimedia', 1), ('technology', 1), ('enhanced', 1), ('learning', 1), ('icmtel', 1), ('held', 1), ('leicester', 1), ('united', 1), ('kingdom', 1), ('april', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('paper', 1)]
[('algebraic', 3), ('system', 3), ('book', 2), ('theory', 2), ('continuation', 1), ('recently', 1), ('published', 1), ('formalization', 1), ('smart', 1), ('practice', 1), ('nbsp', 1), ('incorporates', 1), ('new', 1), ('concept', 1), ('quasi', 1), ('fractal', 1), ('based', 1), ('maltsev', 1)]
[('process', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('blockchain', 1), ('robotic', 1), ('automation', 1), ('rpa', 1), ('forum', 1), ('held', 1), ('part', 1), ('th', 1), ('international', 1), ('business', 1), ('management', 1), ('bpm', 1), ('planned', 1), ('take', 1), ('place', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('intelligent', 1), ('technology', 1), ('interactive', 1), ('entertainment', 1), ('intetain', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('held', 1), ('virtually', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('perspective', 1), ('business', 1), ('informatics', 1), ('research', 1), ('bir', 1), ('held', 1), ('katowice', 1), ('poland', 1), ('september', 1), ('year', 1), ('theme', 1), ('responsibility', 1), ('digitalization', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('russian', 1), ('supercomputing', 1), ('day', 1), ('ruscdays', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('iberoamerican', 1), ('workshop', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hci', 1), ('collab', 1), ('held', 1), ('puebla', 1), ('mexico', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 3), ('international', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('application', 1), ('big', 1), ('data', 1), ('blockchain', 1), ('internet', 1), ('thing', 1), ('education', 1), ('informatization', 1), ('held', 1), ('august', 1)]
[('nbsp', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('congress', 1), ('telematics', 1), ('computing', 1), ('witcom', 1), ('november', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('conference', 1), ('online', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('meeting', 1), ('innovation', 1), ('system', 1), ('information', 1), ('decision', 1), ('insid', 1), ('held', 1), ('december', 1), ('conference', 1), ('initially', 1), ('planned', 1), ('take', 1), ('place', 1)]
[('volume', 2), ('set', 1), ('ccis', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('short', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('sanur', 1), ('bali', 1), ('indonesia', 1), ('december', 1)]
[('compressive', 3), ('sensing', 3), ('book', 1), ('discus', 1), ('presence', 1), ('side', 1), ('information', 1), ('emerging', 1), ('technique', 1), ('efficiently', 1), ('acquiring', 1), ('reconstructing', 1), ('signal', 1), ('interesting', 1), ('instance', 1), ('c', 1), ('occur', 1)]
[('computer', 2), ('vision', 2), ('book', 1), ('focused', 1), ('recent', 1), ('advance', 1), ('methodology', 1), ('technical', 1), ('solution', 1), ('using', 1), ('conventional', 1), ('intelligent', 1), ('paradigm', 1), ('contribution', 1), ('include', 1), ('morphological', 1), ('image', 1), ('analysis', 1)]
[('conference', 2), ('swqd', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('scientific', 1), ('track', 1), ('th', 1), ('software', 1), ('quality', 1), ('day', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('january', 1), ('offer', 1), ('range', 1), ('comprehensive', 1), ('valuable', 1), ('information', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('best', 1), ('selection', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('software', 1), ('methodology', 1), ('tool', 1), ('technique', 1), ('somet', 1), ('held', 1), ('langkawi', 1), ('malaysia', 1), ('september', 1), ('full', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('intelligent', 1), ('technology', 1), ('interactive', 1), ('entertainment', 1), ('intetain', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1), ('numerous', 1), ('submission', 1), ('aim', 1)]
[('book', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('icst', 1), ('conference', 1), ('mobile', 1), ('network', 1), ('management', 1), ('monami', 1), ('held', 1), ('würzburg', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('contains', 1), ('collection', 1), ('innovative', 1), ('chapter', 1), ('emanating', 1), ('topic', 1), ('raised', 1), ('th', 1), ('kes', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('decision', 1), ('technology', 1), ('idt', 1), ('held', 1), ('sesimbra', 1), ('portugal', 1), ('author', 1), ('invited', 1), ('expand', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('best', 1), ('selection', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('software', 1), ('methodology', 1), ('tool', 1), ('technique', 1), ('somet', 1), ('held', 1), ('naples', 1), ('italy', 1), ('september', 1), ('full', 1)]
[('never', 1), ('anticipation', 1), ('relevant', 1), ('life', 1), ('activity', 1), ('humankind', 1), ('today', 1), ('overstatement', 1), ('suggest', 1), ('humanity', 1), ('future', 1), ('shaped', 1), ('capacity', 1), ('anticipate', 1), ('research', 1), ('agenda', 1), ('st', 1), ('century', 1)]
[('time', 3), ('series', 2), ('modelling', 2), ('analysis', 1), ('represent', 1), ('large', 1), ('study', 1), ('field', 1), ('implying', 1), ('approach', 1), ('perspective', 1), ('frequency', 1), ('application', 1), ('different', 1), ('domain', 1), ('hydro', 1), ('meteorological', 1), ('difficult', 1), ('due', 1)]
[('bookconstitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('jointconference', 1), ('software', 1), ('technology', 1), ('icsoft', 1), ('held', 1), ('colmar', 1), ('france', 1), ('injuly', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 2), ('contains', 2), ('smart', 2), ('contribution', 1), ('presented', 1), ('rd', 1), ('international', 1), ('kes', 1), ('conference', 1), ('education', 1), ('learning', 1), ('took', 1), ('place', 1), ('puerto', 1), ('de', 1), ('la', 1), ('cruz', 1), ('tenerife', 1), ('spain', 1), ('june', 1), ('total', 1), ('peer', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('nooj', 1), ('held', 1), ('české', 1), ('budějovice', 1), ('czech', 1), ('republic', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('evaluation', 1), ('novel', 1), ('approach', 1), ('software', 1), ('engineering', 1), ('enase', 1), ('held', 1), ('rome', 1), ('italy', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('technology', 1), ('mathematical', 1), ('modelling', 1), ('itmm', 1), ('held', 1), ('kazan', 1), ('russia', 1), ('september', 1), ('october', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('conference', 2), ('supply', 2), ('chain', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('information', 1), ('system', 1), ('logistics', 1), ('il', 1), ('held', 1), ('bordeaux', 1), ('france', 1), ('june', 1), ('deal', 1), ('topic', 1), ('related', 1)]
[('selected', 2), ('paper', 2), ('argentina', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('rd', 1), ('congress', 1), ('computer', 1), ('science', 1), ('cacic', 1), ('held', 1), ('la', 1), ('plata', 1), ('october', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('total', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('symposium', 1), ('data', 1), ('driven', 1), ('process', 1), ('discovery', 1), ('analysis', 1), ('simpda', 1), ('held', 1), ('graz', 1), ('austria', 1), ('december', 1), ('presented', 1), ('volume', 1)]
[('software', 2), ('crisis', 2), ('management', 2), ('book', 1), ('discus', 1), ('smart', 1), ('agile', 1), ('development', 1), ('method', 1), ('application', 1), ('enterprise', 1), ('presenting', 1), ('systematic', 1), ('approach', 1), ('promotes', 1), ('agility', 1), ('engineering', 1), ('key', 1), ('finding', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('scandinavian', 1), ('conference', 1), ('information', 1), ('system', 1), ('scis', 1), ('held', 1), ('odder', 1), ('denmark', 1), ('august', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('robotic', 1), ('grasping', 1), ('manipulation', 1), ('challenge', 1), ('rgmc', 1), ('held', 1), ('iros', 1), ('daejeon', 1), ('south', 1), ('korea', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('digital', 1), ('economy', 1), ('icdec', 1), ('held', 1), ('brest', 1), ('france', 1), ('founded', 1), ('discus', 1), ('innovative', 1), ('research', 1), ('project', 1), ('related', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('emerging', 1), ('technology', 1), ('computing', 1), ('icetic', 1), ('held', 1), ('london', 1), ('uk', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('reviewed', 1), ('selected', 1)]
[('ccis', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('digital', 1), ('transformation', 1), ('global', 1), ('society', 1), ('dtgs', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('june', 1), ('nbsp', 1), ('revised', 1)]
[('book', 1), ('provides', 1), ('introduction', 1), ('heterogeneous', 1), ('execution', 1), ('managed', 1), ('runtime', 1), ('environment', 1), ('mres', 1), ('discussing', 1), ('current', 1), ('trend', 1), ('computing', 1), ('evolution', 1), ('hardware', 1), ('software', 1), ('end', 1), ('first', 1), ('detail', 1)]
[('book', 1), ('represents', 1), ('interdisciplinary', 1), ('academic', 1), ('endeavour', 1), ('intended', 1), ('provide', 1), ('reader', 1), ('comprehensive', 1), ('balanced', 1), ('nuanced', 1), ('examination', 1), ('critical', 1), ('issue', 1), ('intersection', 1), ('cyberspace', 1), ('cyberterrorism', 1), ('national', 1), ('international', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('conference', 1), ('electronic', 1), ('governance', 1), ('open', 1), ('society', 1), ('challenge', 1), ('eurasia', 1), ('egose', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('november', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('present', 1), ('selection', 1), ('manuscript', 1), ('submitted', 1), ('nd', 1), ('international', 1), ('geospatial', 1), ('information', 1), ('science', 1), ('virtual', 1), ('held', 1), ('november', 1), ('paper', 1), ('selected', 1), ('scientific', 1), ('program', 1), ('committee', 1)]
[('book', 1), ('present', 1), ('collection', 1), ('state', 1), ('art', 1), ('ai', 1), ('approach', 1), ('cybersecurity', 1), ('cyberthreat', 1), ('intelligence', 1), ('offering', 1), ('strategic', 1), ('defense', 1), ('mechanism', 1), ('malware', 1), ('addressing', 1), ('cybercrime', 1), ('assessing', 1), ('vulnerability', 1), ('yield', 1), ('proactive', 1), ('rather', 1)]
[('volume', 1), ('present', 1), ('recent', 1), ('research', 1), ('methodology', 1), ('intelligent', 1), ('system', 1), ('technology', 1), ('enhanced', 1), ('learning', 1), ('contains', 1), ('contribution', 1), ('ebutel', 1), ('conference', 1), ('took', 1), ('place', 1), ('trento', 1), ('italy', 1), ('september', 1), ('th', 1), ('mi', 1), ('tel', 1)]
[('computing', 2), ('conference', 2), ('volume', 1), ('advance', 1), ('intelligent', 1), ('system', 1), ('contains', 1), ('accepted', 1), ('paper', 1), ('presented', 1), ('icgec', 1), ('th', 1), ('international', 1), ('genetic', 1), ('evolutionary', 1), ('year', 1), ('technically', 1), ('co', 1), ('sponsored', 1)]
[('brief', 1), ('present', 1), ('four', 1), ('practical', 1), ('method', 1), ('effectively', 1), ('explore', 1), ('causal', 1), ('relationship', 1), ('often', 1), ('used', 1), ('explanation', 1), ('prediction', 1), ('decision', 1), ('making', 1), ('medicine', 1), ('epidemiology', 1), ('biology', 1), ('economics', 1), ('physic', 1), ('social', 1), ('science', 1), ('first', 1)]
[('selected', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('second', 1), ('cyber', 1), ('security', 1), ('privacy', 1), ('eu', 1), ('forum', 1), ('csp', 1), ('held', 1), ('athens', 1), ('greece', 1), ('revised', 1), ('full', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 2), ('based', 1), ('research', 1), ('paper', 1), ('presented', 1), ('th', 1), ('computer', 1), ('science', 1), ('line', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('perspective', 1), ('intelligent', 1), ('system', 1), ('present', 1), ('modern', 1), ('trend', 1), ('methodsto', 1), ('real', 1), ('world', 1), ('problem', 1)]
[('booktreats', 1), ('computational', 1), ('use', 1), ('social', 1), ('concept', 1), ('focal', 1), ('point', 1), ('therealisation', 1), ('novel', 1), ('class', 1), ('socio', 1), ('technical', 1), ('system', 1), ('comprising', 1), ('smartgrids', 1), ('public', 1), ('display', 1), ('environment', 1), ('grid', 1), ('computing', 1), ('thesesystems', 1), ('composed', 1)]
[('human', 2), ('book', 1), ('describes', 1), ('cutting', 1), ('edge', 1), ('application', 1), ('factor', 1), ('sport', 1), ('outdoor', 1), ('recreation', 1), ('discipline', 1), ('provides', 1), ('practical', 1), ('guidance', 1), ('range', 1), ('method', 1), ('describing', 1), ('representing', 1), ('evaluating', 1), ('team', 1), ('system', 1), ('performance', 1)]
[('human', 2), ('book', 1), ('focus', 1), ('emerging', 1), ('issue', 1), ('ergonomics', 1), ('special', 1), ('emphasis', 1), ('modeling', 1), ('usability', 1), ('engineering', 1), ('computer', 1), ('interaction', 1), ('innovative', 1), ('design', 1), ('concept', 1), ('present', 1), ('advanced', 1), ('theory', 1), ('factor', 1), ('cutting', 1), ('edge', 1), ('application', 1)]
[('social', 2), ('welfare', 2), ('function', 2), ('decision', 2), ('book', 1), ('present', 1), ('unified', 1), ('multidisciplinary', 1), ('framework', 1), ('various', 1), ('resource', 1), ('allocation', 1), ('problem', 1), ('measuring', 1), ('impact', 1), ('local', 1), ('broader', 1), ('society', 1), ('enable', 1), ('socialized', 1)]
[('brain', 2), ('disorder', 2), ('book', 1), ('present', 1), ('latest', 1), ('research', 1), ('computational', 1), ('method', 1), ('modeling', 1), ('simulating', 1), ('particular', 1), ('show', 1), ('mathematical', 1), ('model', 1), ('used', 1), ('study', 1), ('relationship', 1), ('given', 1), ('specific', 1)]
[('contribution', 2), ('book', 1), ('collect', 1), ('abstract', 1), ('presented', 1), ('agop', 1), ('th', 1), ('international', 1), ('summer', 1), ('school', 1), ('aggregation', 1), ('operator', 1), ('conference', 1), ('took', 1), ('place', 1), ('skövde', 1), ('sweden', 1), ('june', 1), ('include', 1), ('work', 1), ('theory', 1)]
[('sensing', 3), ('smartphone', 2), ('vehicle', 2), ('springerbrief', 1), ('nbsp', 1), ('begin', 1), ('introducing', 1), ('concept', 1), ('summarizing', 1), ('main', 1), ('task', 1), ('applying', 1), ('chapter', 1), ('describes', 1), ('dynamic', 1), ('model', 1), ('exploit', 1), ('raw', 1), ('data', 1), ('motion', 1)]
[('simulation', 2), ('based', 2), ('approach', 2), ('discipline', 2), ('invaluable', 1), ('text', 1), ('reference', 1), ('review', 1), ('state', 1), ('art', 1), ('across', 1), ('wide', 1), ('range', 1), ('different', 1), ('provides', 1), ('evidence', 1), ('using', 1), ('advance', 1), ('highlighting', 1)]
[('real', 2), ('world', 2), ('problem', 2), ('exploratory', 2), ('research', 2), ('approach', 2), ('book', 1), ('discus', 1), ('computational', 1), ('intelligence', 1), ('mathematical', 1), ('model', 1), ('brings', 1), ('new', 1), ('method', 1), ('describes', 1), ('novel', 1)]
[('cuteness', 2), ('state', 1), ('art', 1), ('monograph', 1), ('present', 1), ('unique', 1), ('introduction', 1), ('thinking', 1), ('incorporation', 1), ('modern', 1), ('especially', 1), ('computer', 1), ('based', 1), ('product', 1), ('service', 1), ('defined', 1), ('explored', 1), ('relation', 1), ('user', 1), ('centered', 1), ('design', 1)]
[('system', 3), ('research', 2), ('paper', 2), ('intelligent', 2), ('interactive', 2), ('book', 1), ('present', 1), ('diverse', 1), ('area', 1), ('novel', 1), ('application', 1), ('gather', 1), ('selected', 1), ('presented', 1), ('nd', 1), ('international', 1), ('conference', 1)]
[('climate', 2), ('book', 1), ('present', 1), ('novel', 1), ('communication', 1), ('technology', 1), ('solution', 1), ('address', 1), ('effect', 1), ('change', 1), ('variability', 1), ('agriculture', 1), ('particular', 1), ('focus', 1), ('increase', 1), ('agricultural', 1), ('production', 1), ('discus', 1), ('decision', 1), ('support', 1)]
[('book', 2), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('big', 1), ('data', 1), ('cloud', 1), ('application', 1), ('bdca', 1), ('held', 1), ('kenitra', 1), ('morocco', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('business', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('perspective', 1), ('informatics', 1), ('research', 1), ('bir', 1), ('held', 1), ('stockholm', 1), ('sweden', 1), ('september', 1), ('year', 1), ('theme', 1), ('resilience', 1)]
[('heritage', 2), ('nbsp', 2), ('understand', 1), ('shared', 1), ('individual', 1), ('interpret', 1), ('disseminate', 1), ('knowledge', 1), ('increasingly', 1), ('central', 1), ('contemporary', 1), ('society', 1), ('emerging', 1), ('context', 1), ('development', 1), ('field', 1), ('science', 1), ('inherently', 1)]
[('haptic', 2), ('personalization', 2), ('tool', 2), ('monograph', 1), ('present', 1), ('vision', 1), ('lay', 1), ('foundation', 1), ('achieving', 1), ('effective', 1), ('requires', 1), ('suite', 1), ('unified', 1), ('underlying', 1), ('conceptual', 1), ('model', 1), ('easily', 1), ('incorporated', 1)]
[('book', 1), ('presenting', 1), ('proceeding', 1), ('future', 1), ('technology', 1), ('conference', 1), ('ftc', 1), ('remarkable', 1), ('collection', 1), ('chapter', 1), ('covering', 1), ('wide', 1), ('range', 1), ('topic', 1), ('including', 1), ('limited', 1), ('computing', 1), ('electronics', 1), ('artificial', 1), ('intelligence', 1)]
[('climate', 2), ('book', 1), ('present', 1), ('novel', 1), ('communication', 1), ('technology', 1), ('solution', 1), ('address', 1), ('effect', 1), ('change', 1), ('variability', 1), ('agriculture', 1), ('particular', 1), ('focus', 1), ('increase', 1), ('agricultural', 1), ('production', 1), ('discus', 1), ('decision', 1), ('support', 1)]
[('human', 2), ('book', 1), ('present', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('innovative', 1), ('system', 1), ('integration', 1), ('machine', 1), ('interaction', 1), ('emphasis', 1), ('artificial', 1), ('intelligence', 1), ('automation', 1), ('computational', 1), ('modeling', 1), ('simulation', 1), ('cover', 1), ('wide', 1), ('range', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('formal', 1), ('technique', 1), ('safety', 1), ('critical', 1), ('system', 1), ('ftscs', 1), ('held', 1), ('shenzhen', 1), ('china', 1), ('nbsp', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('scientific', 2), ('conference', 2), ('book', 1), ('includes', 1), ('paper', 1), ('presented', 1), ('reflecting', 1), ('latest', 1), ('research', 1), ('field', 1), ('data', 1), ('mining', 1), ('machine', 1), ('learning', 1), ('decision', 1), ('making', 1), ('international', 1), ('intellectual', 1), ('system', 1)]
[('book', 1), ('present', 1), ('innovative', 1), ('idea', 1), ('cutting', 1), ('edge', 1), ('finding', 1), ('novel', 1), ('technique', 1), ('method', 1), ('application', 1), ('broad', 1), ('range', 1), ('cybersecurity', 1), ('cyberthreat', 1), ('intelligence', 1), ('area', 1), ('society', 1), ('becomes', 1), ('smarter', 1), ('corresponding', 1), ('need', 1)]
[('nbsp', 2), ('difficult', 2), ('time', 2), ('book', 1), ('aim', 1), ('provide', 1), ('reader', 1), ('date', 1), ('knowledge', 1), ('make', 1), ('technology', 1), ('smarter', 1), ('humanity', 1), ('going', 1), ('fight', 1), ('covid', 1), ('pandemic', 1), ('simultaneously', 1), ('physical', 1)]
[('intelligent', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('interactive', 1), ('system', 1), ('application', 1), ('iisa', 1), ('held', 1), ('hong', 1), ('kong', 1), ('china', 1), ('june', 1), ('consists', 1), ('contribution', 1), ('diverse', 1), ('area', 1)]
[('iot', 2), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('key', 1), ('principle', 1), ('security', 1), ('concern', 1), ('surrounding', 1), ('upcoming', 1), ('internet', 1), ('thing', 1), ('introduces', 1), ('reader', 1), ('protocol', 1), ('adopted', 1), ('analysis', 1), ('vulnerability', 1), ('attack', 1)]
[('research', 2), ('energy', 2), ('book', 1), ('describes', 1), ('recent', 1), ('effort', 1), ('combining', 1), ('interdisciplinary', 1), ('expertise', 1), ('within', 1), ('collaborative', 1), ('centre', 1), ('transfer', 1), ('atmosphere', 1), ('ocean', 1), ('trr', 1), ('nbsp', 1), ('funded', 1), ('german', 1), ('foundation', 1), ('dfg', 1)]
[('worldcist', 2), ('book', 1), ('includes', 1), ('selection', 1), ('article', 1), ('world', 1), ('conference', 1), ('information', 1), ('system', 1), ('technology', 1), ('held', 1), ('april', 1), ('la', 1), ('toja', 1), ('spain', 1), ('global', 1), ('forum', 1), ('researcher', 1), ('practitioner', 1), ('present', 1)]
[('information', 2), ('technology', 2), ('book', 1), ('constitutes', 1), ('full', 1), ('paper', 1), ('short', 1), ('monograph', 1), ('developed', 1), ('base', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('communication', 1), ('research', 1), ('industry', 1)]
[('book', 1), ('present', 1), ('latest', 1), ('research', 1), ('finding', 1), ('method', 1), ('development', 1), ('technique', 1), ('related', 1), ('ubiquitous', 1), ('pervasive', 1), ('computing', 1), ('upc', 1), ('challenge', 1), ('solution', 1), ('theoretical', 1), ('practical', 1), ('perspective', 1), ('emphasis', 1)]
[('different', 2), ('book', 1), ('feature', 1), ('paper', 1), ('spanning', 1), ('many', 1), ('sub', 1), ('field', 1), ('bioinformatics', 1), ('computational', 1), ('biology', 1), ('presenting', 1), ('latest', 1), ('research', 1), ('practical', 1), ('application', 1), ('promote', 1), ('fruitful', 1), ('interaction', 1), ('young', 1), ('researcher', 1), ('area', 1)]
[('social', 2), ('science', 2), ('decision', 2), ('making', 2), ('process', 2), ('book', 1), ('explores', 1), ('several', 1), ('branch', 1), ('perspective', 1), ('regarding', 1), ('relation', 1), ('computer', 1), ('education', 1), ('linguistics', 1), ('sociology', 1), ('management', 1)]
[('interdisciplinary', 2), ('book', 1), ('present', 1), ('unique', 1), ('result', 1), ('discussion', 1), ('among', 1), ('specialist', 1), ('facing', 1), ('recent', 1), ('industrial', 1), ('economic', 1), ('challenge', 1), ('contains', 1), ('paper', 1), ('authored', 1), ('scientist', 1), ('practitioner', 1), ('focused', 1), ('approach', 1)]
[('book', 2), ('provides', 2), ('practical', 1), ('guidance', 1), ('awareness', 1), ('growing', 1), ('body', 1), ('knowledge', 1), ('developing', 1), ('across', 1), ('variety', 1), ('discipline', 1), ('many', 1), ('country', 1), ('celebration', 1), ('gavriel', 1), ('salvendy', 1), ('international', 1), ('symposium', 1), ('gsis', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('gmunden', 1), ('retreat', 1), ('neurois', 1), ('reporting', 1), ('topic', 1), ('intersection', 1), ('information', 1), ('system', 1), ('research', 1), ('neurophysiology', 1), ('brain', 1), ('science', 1), ('reader', 1), ('discover', 1), ('latest', 1), ('finding', 1), ('top', 1)]
[('intelligent', 2), ('control', 2), ('book', 1), ('deal', 1), ('mobile', 1), ('robot', 1), ('presenting', 1), ('state', 1), ('art', 1), ('field', 1), ('introducing', 1), ('new', 1), ('algorithm', 1), ('developed', 1), ('tested', 1), ('author', 1), ('discus', 1), ('use', 1), ('artificial', 1), ('method', 1)]
[('text', 1), ('shed', 1), ('light', 1), ('mathematical', 1), ('model', 1), ('computing', 1), ('help', 1), ('understanding', 1), ('prediction', 1), ('complicated', 1), ('physical', 1), ('process', 1), ('communication', 1), ('network', 1), ('designed', 1), ('implemented', 1), ('meet', 1), ('increasingly', 1), ('challenging', 1), ('requirement', 1)]
[('book', 1), ('gather', 1), ('recent', 1), ('research', 1), ('work', 1), ('emerging', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('method', 1), ('processing', 1), ('storing', 1), ('data', 1), ('generated', 1), ('cloud', 1), ('based', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('infrastructure', 1), ('major', 1), ('topic', 1), ('covered', 1), ('include', 1), ('analysis', 1), ('development', 1)]
[('impact', 2), ('book', 1), ('present', 1), ('overview', 1), ('emerging', 1), ('field', 1), ('emotion', 1), ('videogame', 1), ('soundtracking', 1), ('emotional', 1), ('music', 1), ('documented', 1), ('particularly', 1), ('used', 1), ('enhance', 1), ('multimodal', 1), ('experience', 1), ('combining', 1), ('image', 1)]
[('chapter', 2), ('comprehensive', 1), ('reference', 1), ('consists', 1), ('prominent', 1), ('researcher', 1), ('field', 1), ('self', 1), ('contained', 1), ('synthesizes', 1), ('aspect', 1), ('frequent', 1), ('pattern', 1), ('mining', 1), ('emphasis', 1), ('placed', 1), ('simplifying', 1), ('content', 1), ('student', 1)]
[('model', 2), ('book', 1), ('highlight', 1), ('theoretical', 1), ('applied', 1), ('advance', 1), ('cellular', 1), ('learning', 1), ('automaton', 1), ('cla', 1), ('type', 1), ('hybrid', 1), ('computational', 1), ('successfully', 1), ('employed', 1), ('various', 1), ('area', 1), ('solve', 1), ('complex', 1), ('problem', 1), ('learn', 1), ('simulate', 1)]
[('bioinformatics', 2), ('book', 1), ('offer', 1), ('comprehensive', 1), ('coverage', 1), ('core', 1), ('topic', 1), ('includes', 1), ('practical', 1), ('example', 1), ('completed', 1), ('using', 1), ('matlab', 1), ('toolbox', 1), ('primarily', 1), ('intended', 1), ('textbook', 1), ('engineering', 1), ('computer', 1), ('science', 1)]
[('book', 1), ('provides', 1), ('reader', 1), ('timely', 1), ('snapshot', 1), ('nbsp', 1), ('modeling', 1), ('simulation', 1), ('tool', 1), ('including', 1), ('virtual', 1), ('mixed', 1), ('reality', 1), ('environment', 1), ('human', 1), ('factor', 1), ('research', 1), ('cover', 1), ('application', 1), ('healthcare', 1), ('physical', 1), ('ergonomics', 1), ('military', 1)]
[('software', 2), ('engineering', 2), ('line', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('algorithm', 1), ('section', 1), ('th', 1), ('computer', 1), ('science', 1), ('conference', 1), ('csoc', 1), ('held', 1), ('april', 1), ('research', 1), ('application', 1)]
[('research', 2), ('book', 1), ('feature', 1), ('novel', 1), ('paper', 1), ('spanning', 1), ('many', 1), ('different', 1), ('subfields', 1), ('bioinformatics', 1), ('computational', 1), ('biology', 1), ('presenting', 1), ('latest', 1), ('practical', 1), ('application', 1), ('promote', 1), ('fruitful', 1), ('interaction', 1), ('young', 1), ('researcher', 1)]
[('approach', 2), ('classification', 2), ('book', 1), ('proposes', 1), ('novel', 1), ('discus', 1), ('myriad', 1), ('advantage', 1), ('outline', 1), ('best', 1), ('pursued', 1), ('encourages', 1), ('collaborative', 1), ('effort', 1), ('toward', 1), ('detailed', 1), ('development', 1)]
[('drawing', 1), ('extensive', 1), ('research', 1), ('book', 1), ('explores', 1), ('technique', 1), ('old', 1), ('computer', 1), ('game', 1), ('used', 1), ('run', 1), ('tightly', 1), ('constrained', 1), ('platform', 1), ('retrogame', 1), ('developer', 1), ('faced', 1), ('incredible', 1), ('challenge', 1), ('limited', 1), ('space', 1), ('computing', 1), ('power', 1), ('rudimentary', 1), ('tool', 1)]
[('beamforming', 3), ('beam', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('review', 1), ('depth', 1), ('study', 1), ('efficient', 1), ('design', 1), ('rigorous', 1), ('performance', 1), ('analysis', 1), ('mmwave', 1), ('network', 1), ('covering', 1), ('alignment', 1), ('training', 1), ('aided', 1), ('caching', 1), ('due', 1), ('significant', 1)]
[('proceeding', 2), ('system', 2), ('related', 2), ('book', 1), ('constitutes', 1), ('second', 1), ('part', 1), ('refereed', 1), ('th', 1), ('computational', 1), ('method', 1), ('software', 1), ('comesyso', 1), ('real', 1), ('world', 1), ('problem', 1), ('data', 1), ('science', 1), ('algorithm', 1), ('design', 1)]
[('book', 1), ('collection', 1), ('high', 1), ('quality', 1), ('peer', 1), ('reviewed', 1), ('research', 1), ('paper', 1), ('presented', 1), ('international', 1), ('conference', 1), ('experimental', 1), ('numerical', 1), ('investigation', 1), ('new', 1), ('technology', 1), ('cnntech', 1), ('held', 1), ('zlatibor', 1), ('serbia', 1), ('june', 1), ('july', 1)]
[('conference', 2), ('operational', 2), ('system', 2), ('research', 2), ('book', 1), ('composed', 1), ('selected', 1), ('paper', 1), ('sixteenth', 1), ('national', 1), ('bos', 1), ('held', 1), ('december', 1), ('premiere', 1), ('field', 1), ('second', 1)]
[('information', 2), ('digital', 2), ('technology', 2), ('economics', 2), ('management', 2), ('book', 1), ('address', 1), ('issue', 1), ('intellectual', 1), ('international', 1), ('scientific', 1), ('practical', 1), ('conference', 1), ('ditem', 1)]
[('collection', 2), ('reader', 1), ('find', 1), ('recent', 1), ('advancement', 1), ('self', 1), ('organizing', 1), ('map', 1), ('som', 1), ('learning', 1), ('vector', 1), ('quantization', 1), ('lvq', 1), ('including', 1), ('progressive', 1), ('idea', 1), ('exploiting', 1), ('feature', 1), ('parallel', 1), ('computing', 1), ('balanced', 1), ('presenting', 1)]
[('three', 2), ('volume', 2), ('information', 2), ('edited', 1), ('edition', 1), ('brings', 1), ('together', 1), ('significant', 1), ('paper', 1), ('previously', 1), ('published', 1), ('journal', 1), ('technology', 1), ('jit', 1), ('year', 1), ('publication', 1), ('history', 1), ('nbsp', 1), ('enacting', 1), ('research', 1), ('method', 1)]
[('structured', 2), ('survey', 2), ('instruction', 2), ('selection', 2), ('according', 2), ('book', 1), ('present', 1), ('comprehensive', 1), ('date', 1), ('dimension', 1), ('approach', 1), ('past', 1), ('year', 1), ('organized', 1), ('discussed', 1)]
[('high', 1), ('performance', 1), ('computing', 1), ('hpc', 1), ('remains', 1), ('driver', 1), ('offer', 1), ('huge', 1), ('potential', 1), ('benefit', 1), ('science', 1), ('society', 1), ('profound', 1), ('understanding', 1), ('computational', 1), ('matter', 1), ('specialized', 1), ('software', 1), ('needed', 1), ('arrive', 1), ('effective', 1)]
[('book', 1), ('focus', 1), ('design', 1), ('development', 1), ('management', 1), ('governance', 1), ('application', 1), ('evolving', 1), ('software', 1), ('process', 1), ('aligned', 1), ('changing', 1), ('business', 1), ('objective', 1), ('expansion', 1), ('new', 1), ('domain', 1), ('shifting', 1), ('global', 1), ('production', 1)]
[('uml', 3), ('agile', 2), ('book', 1), ('present', 1), ('variant', 1), ('especially', 1), ('suitable', 1), ('development', 1), ('high', 1), ('quality', 1), ('software', 1), ('adjusts', 1), ('language', 1), ('profile', 1), ('called', 1), ('optimal', 1), ('assistance', 1), ('design', 1), ('implementation', 1), ('evolution', 1)]
[('book', 1), ('present', 1), ('new', 1), ('algebraic', 1), ('system', 1), ('whose', 1), ('interpretation', 1), ('coincides', 1), ('behaviour', 1), ('petri', 1), ('net', 1), ('enhanced', 1), ('inhibitory', 1), ('mechanism', 1), ('four', 1), ('time', 1), ('model', 1), ('goal', 1), ('provide', 1), ('formal', 1), ('mean', 1), ('modelling', 1), ('dynamic', 1), ('task', 1), ('testing', 1)]
[('science', 2), ('proceeding', 1), ('book', 1), ('present', 1), ('state', 1), ('art', 1), ('development', 1), ('theory', 1), ('methodology', 1), ('application', 1), ('network', 1), ('analysis', 1), ('across', 1), ('sociology', 1), ('computational', 1), ('education', 1), ('research', 1), ('literature', 1), ('study', 1), ('political', 1), ('international', 1), ('relation', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('st', 1), ('congress', 1), ('international', 1), ('ergonomics', 1), ('association', 1), ('iea', 1), ('held', 1), ('online', 1), ('june', 1), ('highlighting', 1), ('latest', 1), ('theory', 1), ('model', 1), ('cutting', 1), ('edge', 1), ('technology', 1), ('application', 1)]
[('nbsp', 3), ('timely', 1), ('book', 1), ('provides', 1), ('broad', 1), ('coverage', 1), ('security', 1), ('privacy', 1), ('issue', 1), ('macro', 1), ('micro', 1), ('perspective', 1), ('macroperspective', 1), ('system', 1), ('algorithm', 1), ('fundamental', 1), ('next', 1), ('generation', 1), ('wireless', 1), ('network', 1), ('discussed', 1)]
[('book', 1), ('stem', 1), ('desire', 1), ('systematize', 1), ('put', 1), ('paper', 1), ('essential', 1), ('historical', 1), ('fact', 1), ('web', 1), ('system', 1), ('undoubtedly', 1), ('changed', 1), ('life', 1), ('decade', 1), ('manage', 1), ('become', 1), ('central', 1), ('pillar', 1), ('modern', 1)]
[('theoretical', 2), ('computer', 2), ('science', 2), ('early', 2), ('stage', 2), ('book', 1), ('explains', 1), ('development', 1), ('specifically', 1), ('author', 1), ('among', 1), ('pioneer', 1), ('guide', 1), ('reader', 1)]
[('work', 2), ('von', 2), ('historical', 1), ('philosophical', 1), ('study', 1), ('programming', 1), ('carried', 1), ('john', 1), ('neumann', 1), ('period', 1), ('heart', 1), ('book', 1), ('examination', 1), ('manuscript', 1), ('featuring', 1), ('earliest', 1), ('known', 1), ('surviving', 1), ('example', 1)]
[('software', 2), ('book', 1), ('describes', 1), ('pragmatic', 1), ('instrument', 1), ('method', 1), ('enable', 1), ('business', 1), ('expert', 1), ('engineer', 1), ('develop', 1), ('common', 1), ('understanding', 1), ('created', 1), ('determine', 1), ('key', 1), ('requirement', 1), ('manage', 1), ('project', 1), ('way', 1)]
[('research', 2), ('information', 2), ('book', 1), ('present', 1), ('latest', 1), ('finding', 1), ('innovative', 1), ('theoretical', 1), ('practical', 1), ('method', 1), ('development', 1), ('technique', 1), ('related', 1), ('emerging', 1), ('area', 1), ('networking', 1), ('application', 1), ('today', 1), ('network', 1)]
[('iot', 2), ('vulnerability', 2), ('attack', 2), ('book', 1), ('review', 1), ('centric', 1), ('multidimensional', 1), ('perspective', 1), ('elaborating', 1), ('vector', 1), ('impact', 1), ('known', 1), ('security', 1), ('objective', 1), ('exploit', 1), ('coupled', 1), ('corresponding', 1)]
[('book', 1), ('tell', 1), ('story', 1), ('government', 1), ('sponsored', 1), ('wiretapping', 1), ('britain', 1), ('united', 1), ('state', 1), ('rise', 1), ('telephony', 1), ('terrorist', 1), ('attack', 1), ('pay', 1), ('particular', 1), ('attention', 1), ('marked', 1)]
[('bio', 2), ('implantable', 1), ('sensing', 1), ('whether', 1), ('used', 1), ('transient', 1), ('long', 1), ('term', 1), ('monitoring', 1), ('vivo', 1), ('physiological', 1), ('electrical', 1), ('chemical', 1), ('metabolic', 1), ('change', 1), ('rapidly', 1), ('advancing', 1), ('field', 1), ('research', 1), ('development', 1), ('underpinned', 1), ('increasingly', 1), ('small', 1)]
[('computing', 2), ('engaging', 1), ('work', 1), ('provides', 1), ('concise', 1), ('introduction', 1), ('exciting', 1), ('world', 1), ('encompassing', 1), ('theory', 1), ('technology', 1), ('history', 1), ('societal', 1), ('impact', 1), ('computer', 1), ('software', 1), ('device', 1), ('spanning', 1), ('topic', 1), ('global', 1), ('conflict', 1), ('home', 1)]
[('data', 2), ('book', 1), ('brings', 1), ('high', 1), ('level', 1), ('fluidity', 1), ('analytics', 1), ('address', 1), ('recent', 1), ('trend', 1), ('innovative', 1), ('idea', 1), ('challenge', 1), ('cognitive', 1), ('computing', 1), ('solution', 1), ('big', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('explores', 1), ('domain', 1), ('knowledge', 1), ('science', 1), ('reasoning', 1)]
[('book', 1), ('considers', 1), ('challenge', 1), ('related', 1), ('effective', 1), ('implementation', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('machine', 1), ('learning', 1), ('ml', 1), ('technology', 1), ('cultural', 1), ('heritage', 1), ('digitization', 1), ('process', 1), ('particular', 1), ('focus', 1), ('placed', 1), ('improvement', 1), ('data', 1)]
[('book', 2), ('diagnosis', 2), ('system', 2), ('date', 1), ('self', 1), ('contained', 1), ('compendium', 1), ('research', 1), ('carried', 1), ('author', 1), ('model', 1), ('based', 1), ('class', 1), ('discrete', 1), ('event', 1), ('called', 1), ('active', 1), ('defining', 1), ('problem', 1), ('cope', 1)]
[('book', 1), ('introduces', 1), ('beginning', 1), ('undergraduate', 1), ('student', 1), ('computing', 1), ('computational', 1), ('discipline', 1), ('modern', 1), ('parallel', 1), ('distributed', 1), ('programming', 1), ('language', 1), ('environment', 1), ('including', 1), ('map', 1), ('reduce', 1), ('general', 1), ('purpose', 1), ('graphic', 1), ('processing', 1), ('unit', 1), ('gpus', 1)]
[('book', 1), ('introduces', 1), ('computationally', 1), ('feasible', 1), ('cognitively', 1), ('inspired', 1), ('formal', 1), ('model', 1), ('concept', 1), ('invention', 1), ('drawing', 1), ('fauconnier', 1), ('turner', 1), ('theory', 1), ('conceptual', 1), ('blending', 1), ('fundamental', 1), ('cognitive', 1), ('operation', 1), ('chapter', 1), ('present', 1), ('mathematical', 1)]
[('proceeding', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('th', 1), ('conference', 1), ('advanced', 1), ('intelligent', 1), ('system', 1), ('informatics', 1), ('aisi', 1), ('took', 1), ('place', 1), ('cairo', 1), ('egypt', 1), ('december', 1)]
[('book', 1), ('explores', 1), ('cutting', 1), ('edge', 1), ('method', 1), ('combining', 1), ('geospatial', 1), ('technology', 1), ('artificial', 1), ('intelligence', 1), ('related', 1), ('several', 1), ('field', 1), ('smart', 1), ('farming', 1), ('urban', 1), ('planning', 1), ('geology', 1), ('transportation', 1), ('city', 1), ('model', 1), ('introduces', 1), ('technique', 1)]
[('handbook', 1), ('cover', 1), ('fundamental', 1), ('principle', 1), ('theory', 1), ('state', 1), ('art', 1), ('research', 1), ('system', 1), ('application', 1), ('area', 1), ('mobility', 1), ('data', 1), ('privacy', 1), ('primarily', 1), ('addressed', 1), ('computer', 1), ('science', 1), ('statistic', 1), ('researcher', 1), ('educator', 1)]
[('logic', 3), ('nbsp', 2), ('classical', 2), ('computer', 2), ('providing', 1), ('depth', 1), ('introduction', 1), ('fundamental', 1), ('non', 1), ('textbook', 1), ('offer', 1), ('comprehensive', 1), ('survey', 1), ('scientist', 1), ('science', 1), ('contains', 1), ('intuitive', 1), ('introductory', 1), ('chapter', 1)]
[('research', 2), ('issue', 2), ('book', 1), ('author', 1), ('first', 1), ('address', 1), ('providing', 1), ('motivating', 1), ('scenario', 1), ('followed', 1), ('exploration', 1), ('principle', 1), ('technique', 1), ('challenging', 1), ('topic', 1), ('solve', 1), ('raised', 1), ('developing', 1)]
[('stage', 2), ('book', 1), ('develops', 1), ('common', 1), ('understanding', 1), ('client', 1), ('provider', 1), ('four', 1), ('strategic', 1), ('outsourcing', 1), ('range', 1), ('discovery', 1), ('party', 1), ('envision', 1), ('future', 1), ('collaboration', 1), ('planning', 1), ('lay', 1)]
[('encyclopedic', 1), ('reference', 1), ('provides', 1), ('concise', 1), ('engaging', 1), ('overview', 1), ('groundbreaking', 1), ('invention', 1), ('conceptual', 1), ('innovation', 1), ('shaped', 1), ('field', 1), ('computing', 1), ('technology', 1), ('run', 1), ('modern', 1), ('world', 1), ('alphabetically', 1), ('ordered', 1)]
[('taxonomy', 3), ('thesaurus', 2), ('step', 2), ('book', 1), ('outline', 1), ('basic', 1), ('principle', 1), ('creation', 1), ('maintenance', 1), ('provides', 1), ('instruction', 1), ('building', 1), ('discus', 1), ('various', 1), ('way', 1), ('started', 1)]
[('collection', 3), ('purpose', 2), ('property', 2), ('policy', 1), ('based', 1), ('data', 1), ('management', 1), ('enables', 1), ('creation', 1), ('community', 1), ('specific', 1), ('every', 1), ('created', 1), ('defines', 1), ('set', 1), ('associated', 1), ('enforced', 1)]
[('service', 3), ('related', 2), ('book', 1), ('explores', 1), ('various', 1), ('health', 1), ('learning', 1), ('culture', 1), ('medium', 1), ('news', 1), ('influence', 1), ('web', 1), ('technology', 1), ('continue', 1), ('area', 1), ('provider', 1), ('user', 1)]
[('information', 4), ('communication', 3), ('book', 1), ('introduces', 1), ('fundamental', 1), ('first', 1), ('concept', 1), ('characteristic', 1), ('summarized', 1), ('five', 1), ('classic', 1), ('model', 1), ('introduced', 1)]
[('repository', 2), ('assurance', 2), ('trustworthy', 1), ('provides', 1), ('form', 1), ('management', 1), ('document', 1), ('event', 1), ('log', 1), ('audit', 1), ('trail', 1), ('digital', 1), ('object', 1), ('managed', 1), ('correctly', 1), ('includes', 1), ('plan', 1), ('sustainability', 1), ('accession', 1)]
[('study', 3), ('user', 2), ('ir', 2), ('evaluation', 2), ('design', 1), ('widely', 1), ('applied', 1), ('search', 1), ('interaction', 1), ('information', 1), ('retrieval', 1), ('system', 1), ('deep', 1), ('reflection', 1), ('meta', 1), ('interactive', 1), ('iir', 1), ('critical', 1), ('sharpening', 1), ('instrument', 1)]
[('continue', 3), ('digital', 1), ('collection', 1), ('grow', 1), ('underlying', 1), ('technology', 1), ('serve', 1), ('content', 1), ('expand', 1), ('develop', 1), ('new', 1), ('challenge', 1), ('presented', 1), ('test', 1), ('ethical', 1), ('ideology', 1), ('everyday', 1), ('environs', 1), ('practitioner', 1)]
[('news', 4), ('rapid', 1), ('technological', 1), ('change', 1), ('availability', 1), ('anywhere', 1), ('moment', 1), ('changed', 1), ('seek', 1), ('increasingly', 1), ('consumer', 1), ('longer', 1), ('take', 1), ('deliberate', 1), ('action', 1), ('instead', 1), ('stumbling', 1), ('upon', 1), ('online', 1)]
[('digital', 4), ('watermarking', 3), ('art', 1), ('science', 1), ('embedding', 1), ('information', 1), ('existing', 1), ('content', 1), ('right', 1), ('management', 1), ('drm', 1), ('authentication', 1), ('reversible', 1), ('class', 1), ('fragile', 1)]
[('biometrics', 2), ('book', 1), ('deal', 1), ('crypto', 1), ('relatively', 1), ('new', 1), ('multi', 1), ('disciplinary', 1), ('area', 1), ('research', 1), ('started', 1), ('combining', 1), ('cryptography', 1), ('provides', 1), ('multiple', 1), ('advantage', 1), ('revocability', 1), ('template', 1), ('diversity', 1), ('better', 1)]
[('pir', 2), ('element', 2), ('server', 2), ('book', 1), ('deal', 1), ('private', 1), ('information', 1), ('retrieval', 1), ('technique', 1), ('allowing', 1), ('user', 1), ('retrieve', 1), ('possession', 1), ('database', 1), ('without', 1), ('revealing', 1), ('retrieved', 1), ('widely', 1), ('applied', 1)]
[('society', 1), ('face', 1), ('many', 1), ('challenge', 1), ('workplace', 1), ('everyday', 1), ('life', 1), ('situation', 1), ('education', 1), ('context', 1), ('within', 1), ('information', 1), ('behavior', 1), ('research', 1), ('often', 1), ('call', 1), ('bridge', 1), ('inclusiveness', 1), ('greater', 1), ('collaboration', 1), ('user', 1), ('centered', 1), ('design', 1), ('approach', 1)]
[('game', 2), ('theory', 2), ('mathematical', 1), ('study', 1), ('interaction', 1), ('among', 1), ('independent', 1), ('self', 1), ('interested', 1), ('agent', 1), ('audience', 1), ('grown', 1), ('dramatically', 1), ('recent', 1), ('year', 1), ('span', 1), ('discipline', 1), ('diverse', 1), ('political', 1), ('science', 1), ('biology', 1), ('psychology', 1)]
[('voting', 2), ('social', 1), ('choice', 1), ('theory', 1), ('deal', 1), ('aggregating', 1), ('preference', 1), ('multiple', 1), ('individual', 1), ('regarding', 1), ('several', 1), ('available', 1), ('alternative', 1), ('situation', 1), ('colloquially', 1), ('known', 1), ('many', 1), ('different', 1), ('rule', 1), ('use', 1), ('even', 1), ('literature', 1)]
[('language', 3), ('information', 2), ('search', 1), ('longer', 1), ('exclusively', 1), ('limited', 1), ('within', 1), ('native', 1), ('user', 1), ('extended', 1), ('give', 1), ('rise', 1), ('problem', 1), ('cross', 1), ('retrieval', 1), ('clir', 1), ('whose', 1), ('goal', 1), ('find', 1)]
[('digital', 2), ('historical', 1), ('text', 1), ('becoming', 1), ('available', 1), ('form', 1), ('digitization', 1), ('paper', 1), ('document', 1), ('motivated', 1), ('aim', 1), ('preserving', 1), ('cultural', 1), ('heritage', 1), ('making', 1), ('accessible', 1), ('laypeople', 1), ('scholar', 1), ('image', 1)]
[('become', 2), ('nlp', 2), ('algorithm', 2), ('data', 1), ('driven', 1), ('experimental', 1), ('analysis', 1), ('main', 1), ('evaluation', 1), ('tool', 1), ('natural', 1), ('language', 1), ('processing', 1), ('fact', 1), ('last', 1), ('decade', 1), ('rare', 1), ('see', 1), ('paper', 1), ('particularly', 1), ('proposes', 1), ('new', 1)]
[('idea', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('conversational', 1), ('ai', 1), ('interacting', 1), ('computer', 1), ('using', 1), ('voice', 1), ('text', 1), ('go', 1), ('back', 1), ('long', 1), ('way', 1), ('recent', 1), ('year', 1), ('become', 1), ('reality', 1), ('emergence', 1)]
[('book', 1), ('present', 1), ('state', 1), ('art', 1), ('supercomputer', 1), ('simulation', 1), ('includes', 1), ('latest', 1), ('finding', 1), ('leading', 1), ('researcher', 1), ('using', 1), ('system', 1), ('high', 1), ('performance', 1), ('computing', 1), ('center', 1), ('stuttgart', 1), ('hlrs', 1), ('report', 1), ('cover', 1), ('field', 1)]
[('engineering', 5), ('system', 3), ('feedback', 2), ('control', 2), ('important', 1), ('course', 1), ('aerospace', 1), ('chemical', 1), ('electrical', 1), ('mechanical', 1), ('mechatronics', 1), ('name', 1), ('improve', 1)]
[('floating', 2), ('point', 2), ('hardware', 2), ('design', 2), ('verification', 2), ('first', 1), ('book', 1), ('focus', 1), ('problem', 1), ('ensuring', 1), ('correctness', 1), ('mathematical', 1), ('method', 1), ('formal', 1), ('second', 1), ('edition', 1), ('advance', 1), ('methodology', 1)]
[('technique', 2), ('monograph', 1), ('give', 1), ('complete', 1), ('overview', 1), ('method', 1), ('semantics', 1), ('aware', 1), ('content', 1), ('representation', 1), ('show', 1), ('apply', 1), ('various', 1), ('use', 1), ('case', 1), ('recommender', 1), ('system', 1), ('user', 1), ('profiling', 1), ('social', 1), ('medium', 1)]
[('mobile', 2), ('apps', 2), ('using', 1), ('android', 1), ('reference', 1), ('book', 1), ('teach', 1), ('development', 1), ('designed', 1), ('responsive', 1), ('trustworthy', 1), ('robust', 1), ('optimized', 1), ('maintainability', 1), ('share', 1), ('mission', 1), ('critical', 1), ('continues', 1), ('increase', 1)]
[('book', 1), ('describes', 1), ('contribution', 1), ('scientist', 1), ('practitioner', 1), ('development', 1), ('scientific', 1), ('concept', 1), ('technology', 1), ('engineering', 1), ('technique', 1), ('tool', 1), ('service', 1), ('based', 1), ('society', 1), ('focus', 1), ('microservices', 1), ('cohesive', 1), ('independent', 1)]
[('book', 1), ('provides', 1), ('detailed', 1), ('technical', 1), ('overview', 1), ('use', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('machine', 1), ('learning', 1), ('big', 1), ('data', 1), ('cardiology', 1), ('recent', 1), ('technological', 1), ('advancement', 1), ('field', 1), ('mean', 1), ('significant', 1), ('gain', 1)]
[('research', 2), ('recent', 2), ('book', 1), ('contains', 1), ('high', 1), ('quality', 1), ('article', 1), ('review', 1), ('promote', 1), ('reflect', 1), ('advance', 1), ('intelligent', 1), ('wavelet', 1), ('based', 1), ('technique', 1), ('advanced', 1), ('multimedia', 1), ('application', 1), ('emerging', 1), ('area', 1), ('time', 1)]
[('image', 2), ('computer', 2), ('vision', 2), ('across', 1), ('three', 1), ('volume', 1), ('handbook', 1), ('processing', 1), ('present', 1), ('comprehensive', 1), ('review', 1), ('full', 1), ('range', 1), ('topic', 1), ('comprise', 1), ('field', 1), ('acquisition', 1), ('signal', 1), ('formation', 1), ('learning', 1)]
[('pattern', 2), ('recognition', 2), ('machine', 2), ('learning', 2), ('fundamental', 1), ('designed', 1), ('semester', 1), ('introductory', 1), ('course', 1), ('graduate', 1), ('advanced', 1), ('undergraduate', 1), ('level', 1), ('book', 1), ('combine', 1), ('theory', 1), ('practice', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('controlled', 1), ('natural', 1), ('language', 1), ('cnl', 1), ('held', 1), ('aberdeen', 1), ('uk', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('methodology', 1), ('system', 1), ('application', 1), ('aimsa', 1), ('held', 1), ('varna', 1), ('bulgaria', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('poster', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('virtual', 1), ('agent', 1), ('iva', 1), ('held', 1), ('los', 1), ('angeles', 1), ('ca', 1), ('usa', 1), ('september', 1), ('full', 1), ('short', 1), ('demo', 1), ('poster', 1), ('accepted', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('multi', 1), ('disciplinary', 1), ('trend', 1), ('artificial', 1), ('intelligence', 1), ('miwai', 1), ('held', 1), ('chiang', 1), ('mai', 1), ('thailand', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('workshop', 2), ('coin', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('coordination', 1), ('organization', 1), ('institution', 1), ('norm', 1), ('agent', 1), ('system', 1), ('held', 1), ('singapore', 1)]
[('conference', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('algorithmic', 1), ('decision', 1), ('theory', 1), ('adt', 1), ('held', 1), ('luxembourg', 1), ('october', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('keynote', 1), ('abstract', 1)]
[('machine', 1), ('learning', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('powerful', 1), ('tool', 1), ('create', 1), ('predictive', 1), ('model', 1), ('extract', 1), ('information', 1), ('help', 1), ('make', 1), ('complex', 1), ('decision', 1), ('examining', 1), ('enormous', 1), ('quantity', 1), ('labeled', 1), ('training', 1), ('data', 1), ('find', 1), ('pattern', 1)]
[('book', 2), ('focus', 1), ('neuromorphic', 1), ('computing', 1), ('principle', 1), ('organization', 1), ('build', 1), ('fault', 1), ('tolerant', 1), ('scalable', 1), ('hardware', 1), ('large', 1), ('medium', 1), ('scale', 1), ('spiking', 1), ('neural', 1), ('network', 1), ('learning', 1), ('capability', 1), ('addition', 1), ('describes', 1)]
[('intuitionistic', 2), ('fuzzy', 2), ('book', 1), ('offer', 1), ('comprehensive', 1), ('systematic', 1), ('review', 1), ('latest', 1), ('research', 1), ('finding', 1), ('area', 1), ('calculus', 1), ('introducing', 1), ('number', 1), ('operational', 1), ('law', 1), ('geometrical', 1), ('algebraic', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('advance', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('jeju', 1), ('south', 1), ('korea', 1), ('full', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('virtual', 1), ('agent', 1), ('iva', 1), ('held', 1), ('stockholm', 1), ('sweden', 1), ('august', 1), ('nbsp', 1), ('regular', 1), ('demo', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('multi', 1), ('disciplinary', 1), ('trend', 1), ('artificial', 1), ('intelligence', 1), ('miwai', 1), ('held', 1), ('gadong', 1), ('brunei', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('data', 1), ('mining', 1), ('application', 1), ('adma', 1), ('held', 1), ('singapore', 1), ('november', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('annual', 1), ('conference', 1), ('research', 1), ('computational', 1), ('molecular', 1), ('biology', 1), ('recomb', 1), ('held', 1), ('paris', 1), ('france', 1), ('april', 1), ('extended', 1), ('short', 1), ('abstract', 1), ('presented', 1), ('carefully', 1)]
[('lnai', 2), ('nbsp', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('soft', 1), ('computing', 1), ('icaisc', 1), ('held', 1), ('zakopane', 1), ('poland', 1), ('june', 1), ('revised', 1)]
[('nbsp', 2), ('diagram', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('held', 1), ('edinburgh', 1), ('uk', 1), ('june', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('nbsp', 2), ('agent', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('practical', 1), ('application', 1), ('multi', 1), ('system', 1), ('paams', 1), ('held', 1), ('toledo', 1), ('spain', 1), ('june', 1), ('regular', 1), ('demo', 1), ('paper', 1), ('presented', 1)]
[('fuzzy', 3), ('set', 3), ('book', 1), ('offer', 1), ('introduction', 1), ('theory', 1), ('operation', 1), ('special', 1), ('focus', 1), ('aggregation', 1), ('negation', 1), ('function', 1), ('particular', 1), ('attention', 1), ('given', 1), ('interval', 1), ('valued', 1), ('atanassov', 1), ('intuitionistic', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('held', 1), ('newcastle', 1), ('nsw', 1), ('australia', 1), ('august', 1), ('paper', 1)]
[('paper', 2), ('nbsp', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('joint', 1), ('conference', 1), ('rough', 1), ('set', 1), ('ijcrs', 1), ('held', 1), ('quy', 1), ('nhon', 1), ('vietnam', 1), ('august', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('state', 1), ('art', 1), ('survey', 1), ('dedicated', 1), ('memory', 1), ('emmanuil', 1), ('markovich', 1), ('braverman', 1), ('nbsp', 1), ('pioneer', 1), ('developing', 1), ('machine', 1), ('learning', 1), ('theory', 1), ('revised', 1), ('full', 1), ('short', 1), ('included', 1), ('volume', 1), ('presented', 1)]
[('spatial', 2), ('data', 2), ('operation', 2), ('map', 2), ('book', 1), ('provides', 1), ('reader', 1), ('insight', 1), ('development', 1), ('novel', 1), ('method', 1), ('regridding', 1), ('gridded', 1), ('required', 1), ('perform', 1), ('overlay', 1), ('apply', 1), ('algebra', 1), ('processing', 1), ('introduces', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('text', 1), ('speech', 1), ('dialogue', 1), ('tsd', 1), ('held', 1), ('brno', 1), ('czech', 1), ('republic', 1), ('september', 1), ('regular', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('numerous', 1)]
[('paper', 2), ('book', 1), ('includes', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('st', 1), ('robocup', 1), ('international', 1), ('symposium', 1), ('held', 1), ('nagoya', 1), ('japan', 1), ('september', 1), ('full', 1), ('revised', 1), ('winning', 1), ('team', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('macau', 1), ('china', 1), ('april', 1), ('full', 1), ('paper', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('hybrid', 1), ('system', 1), ('biology', 1), ('hsb', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('april', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('held', 1), ('shenyang', 1), ('china', 1), ('august', 1), ('total', 1), ('full', 1), ('short', 1), ('paper', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('held', 1), ('shenyang', 1), ('china', 1), ('august', 1), ('total', 1), ('full', 1), ('short', 1), ('paper', 1)]
[('lnai', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('nbsp', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('pricai', 1), ('held', 1), ('cuvu', 1), ('yanuca', 1), ('island', 1), ('fiji', 1), ('august', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('german', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ki', 1), ('held', 1), ('kassel', 1), ('germany', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('together', 1), ('extended', 1), ('abstract', 1)]
[('conference', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('algorithmic', 1), ('decision', 1), ('theory', 1), ('adt', 1), ('held', 1), ('durham', 1), ('nc', 1), ('usa', 1), ('october', 1), ('nbsp', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('sgai', 1), ('international', 1), ('conference', 1), ('innovative', 1), ('technique', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('cambridge', 1), ('uk', 1), ('december', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('intelligent', 1), ('information', 1), ('database', 1), ('system', 1), ('aciids', 1), ('held', 1), ('phuket', 1), ('thailand', 1), ('march', 1), ('total', 1), ('full', 1), ('paper', 1), ('accepted', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('new', 1), ('frontier', 1), ('mining', 1), ('complex', 1), ('pattern', 1), ('nfmcp', 1), ('held', 1), ('conjunction', 1), ('ecml', 1), ('pkdd', 1), ('würzburg', 1), ('germany', 1), ('september', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('text', 1), ('speech', 1), ('dialogue', 1), ('tsd', 1), ('held', 1), ('brno', 1), ('czech', 1), ('republic', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('brain', 1), ('informatics', 1), ('bi', 1), ('padua', 1), ('italy', 1), ('september', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('full', 1), ('paper', 1)]
[('paper', 3), ('lnai', 1), ('constitutes', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('medicine', 1), ('aime', 1), ('held', 1), ('online', 1), ('august', 1), ('nbsp', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('mexico', 2), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('mexican', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('micai', 1), ('held', 1), ('city', 1), ('october', 1), ('nbsp', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('gather', 1), ('cutting', 1), ('edge', 1), ('paper', 1), ('area', 1), ('computational', 1), ('intelligence', 1), ('presented', 1), ('specialist', 1), ('covering', 1), ('major', 1), ('trend', 1), ('research', 1), ('community', 1), ('order', 1), ('provide', 1), ('reader', 1), ('rich', 1), ('primer', 1), ('present', 1), ('overview', 1), ('various', 1)]
[('th', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('international', 1), ('workshop', 1), ('multi', 1), ('agent', 1), ('based', 1), ('simulation', 1), ('mabs', 1), ('held', 1), ('montreal', 1), ('qc', 1), ('canada', 1), ('part', 1), ('nbsp', 1), ('aamas', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('rd', 1), ('australasian', 1), ('joint', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('canberra', 1), ('act', 1), ('australia', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ecml', 1), ('pkdd', 1), ('workshop', 1), ('advanced', 1), ('analytics', 1), ('learning', 1), ('temporal', 1), ('data', 1), ('aaltd', 1), ('held', 1), ('ghent', 1), ('belgium', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('held', 1), ('kuala', 1), ('lumpur', 1), ('malaysia', 1), ('november', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('multi', 1), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('european', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('september', 1)]
[('epia', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('took', 1), ('place', 1), ('lisbon', 1), ('portugal', 1), ('august', 1), ('september', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('explainable', 1), ('transparent', 1), ('ai', 1), ('multi', 1), ('agent', 1), ('system', 1), ('extraamas', 1), ('held', 1), ('virtually', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('included', 1)]
[('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('workshop', 1), ('coordination', 1), ('organization', 1), ('institution', 1), ('norm', 1), ('ethic', 1), ('governance', 1), ('multi', 1), ('agent', 1), ('system', 1), ('xiv', 1), ('coine', 1), ('held', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('brazilian', 1), ('conference', 1), ('intelligent', 1), ('system', 1), ('bracis', 1), ('took', 1), ('place', 1), ('campinas', 1), ('brazil', 1), ('november', 1), ('december', 1), ('nbsp', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('nbsp', 1), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('artificial', 1), ('intelligence', 1), ('soft', 1), ('computing', 1), ('icaisc', 1), ('held', 1), ('zakopane', 1), ('poland', 1), ('june', 1)]
[('book', 2), ('held', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('fl', 1), ('conjunction', 1), ('ijcai', 1), ('vienna', 1), ('austria', 1), ('july', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('machine', 2), ('learning', 2), ('engineer', 2), ('crash', 1), ('course', 1), ('reader', 1), ('friendly', 1), ('introductory', 1), ('guide', 1), ('algorithm', 1), ('technique', 1), ('student', 1), ('busy', 1), ('technical', 1), ('professional', 1), ('book', 1), ('focus', 1), ('application', 1), ('aspect', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('international', 1), ('conference', 1), ('research', 1), ('computational', 1), ('molecular', 1), ('biology', 1), ('recomb', 1), ('held', 1), ('pittsburgh', 1), ('pa', 1), ('usa', 1), ('april', 1), ('extended', 1), ('abstract', 1), ('carefully', 1), ('reviewed', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('intelligent', 1), ('information', 1), ('database', 1), ('system', 1), ('aciids', 1), ('held', 1), ('bangkok', 1), ('thailand', 1), ('april', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('alcob', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('held', 1), ('july', 1), ('tarragona', 1), ('spain', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1), ('scope', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('data', 1), ('mining', 1), ('pattern', 1), ('recognition', 1), ('mldm', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('general', 1), ('intelligence', 1), ('agi', 1), ('held', 1), ('quebec', 1), ('city', 1), ('qc', 1), ('canada', 1), ('august', 1), ('paper', 1), ('poster', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('conjunction', 1), ('volume', 1), ('lncs', 1), ('lnbi', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('held', 1), ('taiyuan', 1), ('china', 1), ('august', 1), ('paper', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('rough', 1), ('set', 1), ('knowledge', 1), ('technology', 1), ('rskt', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('october', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('social', 1), ('robotics', 1), ('icsr', 1), ('held', 1), ('sydney', 1), ('nsw', 1), ('australia', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('modeling', 1), ('decision', 1), ('artificial', 1), ('intelligence', 1), ('mdai', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('october', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('science', 1), ('engineering', 1), ('management', 1), ('ksem', 1), ('held', 1), ('sibiu', 1), ('romania', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('proceeding', 2), ('conference', 2), ('volume', 1), ('aciids', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('th', 1), ('asian', 1), ('intelligent', 1), ('information', 1), ('database', 1), ('system', 1), ('held', 1), ('bali', 1), ('indonesia', 1), ('march', 1), ('total', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('industrial', 1), ('engineering', 1), ('application', 1), ('applied', 1), ('intelligent', 1), ('system', 1), ('iea', 1), ('aie', 1), ('held', 1), ('seoul', 1), ('south', 1), ('korea', 1), ('june', 1), ('revised', 1)]
[('book', 1), ('go', 1), ('far', 1), ('beyond', 1), ('traditional', 1), ('collection', 1), ('technical', 1), ('article', 1), ('dedicated', 1), ('enric', 1), ('trillas', 1), ('fuzzy', 1), ('system', 1), ('pioneer', 1), ('internationally', 1), ('renowned', 1), ('researcher', 1), ('area', 1), ('science', 1), ('mathematics', 1), ('aerospace', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('china', 1), ('national', 1), ('conference', 1), ('computational', 1), ('linguistics', 1), ('ccl', 1), ('third', 1), ('international', 1), ('symposium', 1), ('natural', 1), ('language', 1), ('processing', 1), ('based', 1), ('naturally', 1), ('annotated', 1), ('big', 1), ('data', 1), ('nlp', 1), ('nabd', 1)]
[('conference', 3), ('set', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceedingsof', 1), ('th', 1), ('international', 1), ('rough', 1), ('fuzzy', 1), ('data', 1), ('mining', 1), ('andgranular', 1), ('computing', 1), ('rsfdgrc', 1), ('held', 1), ('tianjin', 1), ('china', 1), ('november', 1), ('asone', 1), ('co', 1), ('located', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('thethird', 1), ('international', 1), ('conference', 1), ('mining', 1), ('intelligence', 1), ('knowledgeexploration', 1), ('mike', 1), ('held', 1), ('hyderabad', 1), ('india', 1), ('december', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('professor', 3), ('jacek', 2), ('żurada', 2), ('computational', 2), ('intelligence', 2), ('book', 1), ('tribute', 1), ('best', 1), ('known', 1), ('contribution', 1), ('knowledge', 1), ('based', 1), ('neurocomputing', 1), ('dedicated', 1), ('full', 1)]
[('advance', 1), ('live', 1), ('cell', 1), ('video', 1), ('imaging', 1), ('high', 1), ('throughput', 1), ('technology', 1), ('functional', 1), ('chemical', 1), ('nbsp', 1), ('genomics', 1), ('provide', 1), ('unprecedented', 1), ('opportunity', 1), ('understand', 1), ('biological', 1), ('process', 1), ('work', 1), ('subcellularand', 1), ('multicellular', 1), ('system', 1)]
[('volume', 1), ('initiative', 1), ('undertaken', 1), ('iee', 1), ('computational', 1), ('intelligence', 1), ('society', 1), ('task', 1), ('force', 1), ('security', 1), ('surveillance', 1), ('defense', 1), ('consolidate', 1), ('disseminate', 1), ('role', 1), ('ci', 1), ('technique', 1), ('design', 1), ('development', 1), ('deployment', 1)]
[('book', 1), ('provides', 1), ('uniform', 1), ('framework', 1), ('describing', 1), ('fuzzy', 1), ('rough', 1), ('granular', 1), ('neural', 1), ('network', 1), ('technology', 1), ('formulated', 1), ('used', 1), ('building', 1), ('efficient', 1), ('pattern', 1), ('recognition', 1), ('mining', 1), ('model', 1), ('discus', 1), ('nbsp', 1), ('formation', 1), ('granule', 1)]
[('bookpresents', 1), ('broad', 1), ('variety', 1), ('different', 1), ('contemporary', 1), ('method', 1), ('application', 1), ('inintelligent', 1), ('system', 1), ('displayed', 1), ('every', 1), ('book', 1), ('chapter', 1), ('represents', 1), ('detailed', 1), ('specific', 1), ('far', 1), ('reaching', 1), ('original', 1), ('search', 1), ('respective', 1), ('scientific', 1)]
[('intelligent', 2), ('book', 1), ('address', 1), ('wide', 1), ('range', 1), ('topic', 1), ('area', 1), ('system', 1), ('artificial', 1), ('intelligence', 1), ('real', 1), ('world', 1), ('application', 1), ('chapter', 1), ('selected', 1), ('paper', 1), ('published', 1), ('proceeding', 1), ('sai', 1)]
[('book', 1), ('describes', 1), ('effective', 1), ('method', 1), ('nbsp', 1), ('automatically', 1), ('analyzing', 1), ('sentence', 1), ('based', 1), ('syntactic', 1), ('semantic', 1), ('characteristic', 1), ('element', 1), ('form', 1), ('tackle', 1), ('ambiguity', 1), ('author', 1), ('use', 1), ('selectional', 1), ('preference', 1), ('sp', 1), ('measure', 1)]
[('fuzzy', 2), ('intelligent', 2), ('presenting', 1), ('latest', 1), ('advance', 1), ('set', 1), ('computing', 1), ('word', 1), ('around', 1), ('globe', 1), ('book', 1), ('disseminates', 1), ('recent', 1), ('innovation', 1), ('advanced', 1), ('technology', 1), ('system', 1), ('control', 1), ('intuitionistic', 1)]
[('book', 1), ('delight', 1), ('academic', 1), ('researcher', 1), ('professional', 1), ('working', 1), ('evolutionary', 1), ('swarm', 1), ('computing', 1), ('computational', 1), ('intelligence', 1), ('machine', 1), ('learning', 1), ('engineering', 1), ('design', 1), ('search', 1), ('optimization', 1), ('general', 1), ('provides', 1)]
[('method', 2), ('semantic', 2), ('management', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('computational', 1), ('intelligence', 1), ('knowledge', 1), ('contrary', 1), ('popular', 1), ('belief', 1), ('information', 1), ('created', 1), ('several', 1), ('decade', 1), ('ago', 1), ('long', 1)]
[('image', 3), ('method', 2), ('book', 1), ('present', 1), ('selected', 1), ('accelerating', 1), ('retrieval', 1), ('classification', 1), ('large', 1), ('collection', 1), ('using', 1), ('referred', 1), ('hand', 1), ('crafted', 1), ('feature', 1), ('introduces', 1), ('reader', 1), ('novel', 1), ('rapid', 1), ('description', 1), ('based', 1)]
[('nbsp', 2), ('data', 2), ('analysis', 2), ('book', 1), ('present', 1), ('bi', 1), ('partial', 1), ('approach', 1), ('uniquely', 1), ('general', 1), ('enables', 1), ('development', 1), ('technique', 1), ('many', 1), ('problem', 1), ('including', 1), ('related', 1), ('model', 1), ('algorithm', 1), ('based', 1), ('adequate', 1)]
[('book', 1), ('focus', 1), ('advanced', 1), ('soft', 1), ('computational', 1), ('probabilistic', 1), ('method', 1), ('author', 1), ('published', 1), ('past', 1), ('year', 1), ('describes', 1), ('theoretical', 1), ('result', 1), ('application', 1), ('nbsp', 1), ('discus', 1), ('various', 1), ('uncertainty', 1), ('measure', 1)]
[('researcher', 2), ('intended', 1), ('practitioner', 1), ('alike', 1), ('book', 1), ('cover', 1), ('carefully', 1), ('selected', 1), ('yet', 1), ('broad', 1), ('topic', 1), ('optimization', 1), ('machine', 1), ('learning', 1), ('metaheuristics', 1), ('written', 1), ('world', 1), ('leading', 1), ('academic', 1), ('extremely', 1), ('experienced', 1), ('industrial', 1)]
[('lack', 2), ('book', 1), ('bridge', 1), ('principle', 1), ('real', 1), ('world', 1), ('application', 1), ('providing', 1), ('thorough', 1), ('theory', 1), ('technology', 1), ('development', 1), ('artificial', 1), ('intelligence', 1), ('robot', 1), ('cross', 1), ('pollination', 1), ('ai', 1), ('robotics', 1), ('research', 1), ('led', 1)]
[('book', 2), ('machine', 2), ('learning', 2), ('collect', 1), ('different', 1), ('methodology', 1), ('permit', 1), ('metaheuristics', 1), ('solve', 1), ('real', 1), ('world', 1), ('problem', 1), ('exciting', 1), ('chapter', 1), ('employ', 1), ('evolutionary', 1), ('swarm', 1), ('optimization', 1), ('tool', 1), ('combined', 1)]
[('aspect', 2), ('uncertainty', 2), ('propagation', 2), ('data', 2), ('book', 1), ('methodological', 1), ('processing', 1), ('important', 1), ('problem', 1), ('computer', 1), ('algorithm', 1), ('efficiently', 1), ('process', 1), ('related', 1), ('many', 1), ('life', 1)]
[('computer', 2), ('vision', 2), ('specialist', 2), ('comprehensive', 1), ('book', 1), ('primarily', 1), ('intended', 1), ('researcher', 1), ('high', 1), ('performance', 1), ('computing', 1), ('interested', 1), ('parallelizing', 1), ('technique', 1), ('sake', 1), ('accelerating', 1), ('run', 1), ('time', 1)]
[('book', 1), ('includes', 1), ('set', 1), ('selected', 1), ('revised', 1), ('extended', 1), ('version', 1), ('best', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('computational', 1), ('intelligence', 1), ('ijcci', 1), ('held', 1), ('online', 1), ('event', 1), ('october', 1), ('focus', 1)]
[('book', 2), ('self', 2), ('compact', 1), ('focus', 1), ('adjoint', 1), ('operator', 1), ('known', 1), ('named', 1), ('inequality', 1), ('korovkin', 1), ('approximation', 1), ('theory', 1), ('hilbert', 1), ('space', 1), ('environment', 1), ('first', 1), ('study', 1), ('aspect', 1), ('chapter', 1), ('contained', 1)]
[('fuzzy', 2), ('book', 1), ('show', 1), ('term', 1), ('interpretability', 1), ('go', 1), ('far', 1), ('beyond', 1), ('concept', 1), ('readability', 1), ('set', 1), ('rule', 1), ('focus', 1), ('novel', 1), ('precise', 1), ('operator', 1), ('aggregation', 1), ('inference', 1), ('defuzzification', 1), ('leading', 1), ('flexible', 1), ('mamdani', 1), ('type', 1)]
[('database', 2), ('intelligent', 1), ('information', 1), ('system', 1), ('closely', 1), ('related', 1), ('subfields', 1), ('modern', 1), ('computer', 1), ('science', 1), ('known', 1), ('thirty', 1), ('year', 1), ('focus', 1), ('integration', 1), ('artificial', 1), ('intelligence', 1), ('classic', 1), ('technology', 1)]
[('part', 3), ('volume', 2), ('ontology', 2), ('mining', 2), ('research', 1), ('continuation', 1), ('previous', 1), ('intelligent', 1), ('machine', 1), ('divided', 1), ('three', 1), ('deal', 1), ('big', 1), ('data', 1), ('includes', 1), ('example', 1), ('related', 1), ('text', 1), ('rule', 1), ('ii', 1)]
[('book', 1), ('devoted', 1), ('educational', 1), ('data', 1), ('mining', 1), ('arena', 1), ('highlight', 1), ('work', 1), ('show', 1), ('relevant', 1), ('proposal', 1), ('development', 1), ('achievement', 1), ('shape', 1), ('trend', 1), ('inspire', 1), ('future', 1), ('research', 1), ('rigorous', 1), ('revision', 1), ('process', 1), ('sixteen', 1), ('manuscript', 1)]
[('area', 3), ('decision', 2), ('specific', 2), ('technique', 2), ('many', 1), ('application', 1), ('necessary', 1), ('make', 1), ('effective', 1), ('constraint', 1), ('several', 1), ('known', 1), ('problem', 1), ('easy', 1), ('apply', 1)]
[('book', 1), ('gather', 1), ('promising', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('artificial', 1), ('intelligence', 1), ('research', 1), ('management', 1), ('application', 1), ('serum', 1), ('held', 1), ('june', 1), ('university', 1)]
[('method', 2), ('assimilation', 2), ('constraint', 2), ('book', 1), ('introduces', 1), ('reader', 1), ('new', 1), ('data', 1), ('deterministic', 1), ('exact', 1), ('satisfaction', 1), ('dynamic', 1), ('optimal', 1), ('strategy', 1), ('called', 1), ('forecast', 1), ('sensitivity', 1), ('fsm', 1), ('alternative', 1)]
[('textbook', 1), ('explains', 1), ('concept', 1), ('technique', 1), ('required', 1), ('write', 1), ('program', 1), ('handle', 1), ('large', 1), ('amount', 1), ('data', 1), ('efficiently', 1), ('nbsp', 1), ('project', 1), ('oriented', 1), ('classroom', 1), ('tested', 1), ('book', 1), ('present', 1), ('number', 1), ('important', 1), ('algorithm', 1), ('supported', 1), ('motivating', 1)]
[('green', 2), ('information', 2), ('ict', 2), ('book', 1), ('present', 1), ('latest', 1), ('finding', 1), ('ongoing', 1), ('research', 1), ('field', 1), ('system', 1), ('communication', 1), ('technology', 1), ('provides', 1), ('insight', 1), ('whole', 1), ('range', 1), ('cross', 1), ('cutting', 1), ('topic', 1)]
[('design', 3), ('book', 1), ('discus', 1), ('latest', 1), ('advance', 1), ('affective', 1), ('pleasurable', 1), ('report', 1), ('important', 1), ('theoretical', 1), ('practical', 1), ('issue', 1), ('covering', 1), ('wealth', 1), ('topic', 1), ('including', 1), ('aesthetic', 1), ('product', 1), ('system', 1), ('driven', 1), ('innovation', 1)]
[('development', 2), ('book', 1), ('focus', 1), ('recent', 1), ('methodology', 1), ('computation', 1), ('method', 1), ('mathematical', 1), ('statistical', 1), ('modelling', 1), ('computational', 1), ('science', 1), ('applied', 1), ('mathematics', 1), ('emphasizes', 1), ('theory', 1), ('application', 1), ('promotes', 1)]
[('based', 2), ('book', 1), ('present', 1), ('concept', 1), ('fuzzy', 1), ('recommender', 1), ('system', 1), ('user', 1), ('account', 1), ('privacy', 1), ('setting', 1), ('used', 1), ('citizen', 1), ('participation', 1), ('online', 1), ('political', 1), ('platform', 1), ('elaborated', 1), ('component', 1), ('exemplarily', 1), ('need', 1)]
[('research', 2), ('information', 2), ('book', 1), ('introduces', 1), ('ongoingreflections', 1), ('within', 1), ('community', 1), ('established', 1), ('systemsdevelopment', 1), ('topic', 1), ('emerging', 1), ('concept', 1), ('approach', 1), ('idea', 1), ('field', 1), ('ofhealthcare', 1), ('system', 1), ('promoting', 1)]
[('digital', 2), ('book', 1), ('examines', 1), ('relationship', 1), ('innovation', 1), ('hand', 1), ('accounting', 1), ('management', 1), ('information', 1), ('system', 1), ('particular', 1), ('address', 1), ('topic', 1), ('including', 1), ('cloud', 1), ('computing', 1), ('data', 1), ('mining', 1), ('xbrl', 1), ('platform', 1)]
[('image', 2), ('processing', 2), ('book', 1), ('emphasizes', 1), ('emerging', 1), ('building', 1), ('block', 1), ('domain', 1), ('known', 1), ('capsule', 1), ('network', 1), ('performing', 1), ('deep', 1), ('recognition', 1), ('next', 1), ('generation', 1), ('imaging', 1), ('science', 1), ('nbsp', 1), ('recent', 1), ('year', 1), ('witnessed', 1), ('continuous', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('application', 1), ('fuzzy', 1), ('system', 1), ('soft', 1), ('computing', 1), ('artificial', 1), ('intelligence', 1), ('tool', 1), ('icafs', 1), ('held', 1), ('budva', 1), ('montenegro', 1), ('august', 1), ('includes', 1), ('contribution', 1)]
[('book', 2), ('fuzzy', 2), ('proceeding', 1), ('present', 1), ('edited', 1), ('result', 1), ('eighth', 1), ('international', 1), ('conference', 1), ('information', 1), ('engineering', 1), ('icfie', 1), ('oriental', 1), ('thinking', 1), ('logic', 1), ('august', 1), ('dalian', 1), ('china', 1), ('contains', 1)]
[('book', 1), ('focus', 1), ('importance', 1), ('human', 1), ('factor', 1), ('development', 1), ('reliable', 1), ('safe', 1), ('unmanned', 1), ('system', 1), ('discus', 1), ('current', 1), ('challenge', 1), ('improve', 1), ('perceptual', 1), ('cognitive', 1), ('ability', 1), ('robot', 1), ('develop', 1), ('suitable', 1), ('synthetic', 1), ('vision', 1)]
[('iee', 2), ('volume', 1), ('set', 1), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('system', 1), ('short', 1), ('held', 1), ('september', 1), ('warsaw', 1), ('poland', 1), ('moreover', 1), ('contains', 1), ('selected', 1), ('paper', 1)]
[('convention', 2), ('volume', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('csi', 1), ('emerging', 1), ('ict', 1), ('bridging', 1), ('future', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('computer', 1), ('society', 1), ('india', 1), ('held', 1), ('december', 1), ('hyderabad', 1), ('telangana', 1)]
[('intelligent', 2), ('role', 1), ('technology', 1), ('next', 1), ('generation', 1), ('robot', 1), ('monograph', 1), ('give', 1), ('answer', 1), ('question', 1), ('present', 1), ('emergent', 1), ('trend', 1), ('system', 1), ('robotics', 1), ('introductory', 1), ('chapter', 1), ('celebrating', 1), ('year', 1)]
[('aecium', 2), ('volume', 1), ('contains', 1), ('accepted', 1), ('paper', 1), ('presented', 1), ('first', 1), ('international', 1), ('afro', 1), ('european', 1), ('conference', 1), ('industrial', 1), ('advancement', 1), ('aim', 1), ('bring', 1), ('together', 1), ('foremost', 1), ('expert', 1), ('excellent', 1), ('young', 1), ('researcher', 1)]
[('present', 2), ('book', 1), ('recent', 1), ('progress', 1), ('control', 1), ('automation', 1), ('robotics', 1), ('measuring', 1), ('technique', 1), ('includes', 1), ('contribution', 1), ('top', 1), ('expert', 1), ('field', 1), ('focused', 1), ('theory', 1), ('industrial', 1), ('practice', 1), ('particular', 1), ('chapter', 1), ('deep', 1), ('analysis', 1)]
[('network', 2), ('book', 1), ('provides', 1), ('reader', 1), ('comprehensive', 1), ('selection', 1), ('cutting', 1), ('edge', 1), ('algorithm', 1), ('technology', 1), ('application', 1), ('volume', 1), ('offer', 1), ('new', 1), ('insight', 1), ('range', 1), ('fundamentally', 1), ('important', 1), ('topic', 1), ('architecture', 1), ('security', 1)]
[('paper', 2), ('book', 1), ('includes', 1), ('presented', 1), ('international', 1), ('conference', 1), ('educational', 1), ('robotics', 1), ('edurobotics', 1), ('athens', 1), ('november', 1), ('build', 1), ('constructivist', 1), ('constructionist', 1), ('pedagogy', 1), ('cover', 1), ('variety', 1), ('topic', 1), ('including', 1)]
[('book', 1), ('contains', 1), ('selection', 1), ('article', 1), ('world', 1), ('conference', 1), ('information', 1), ('system', 1), ('technology', 1), ('worldcist', 1), ('held', 1), ('st', 1), ('rd', 1), ('april', 1), ('funchal', 1), ('madeira', 1), ('portugal', 1), ('global', 1), ('forum', 1), ('researcher', 1), ('practitioner', 1)]
[('th', 1), ('international', 1), ('symposium', 1), ('distributed', 1), ('computing', 1), ('artificial', 1), ('intelligence', 1), ('dcai', 1), ('forum', 1), ('present', 1), ('application', 1), ('innovative', 1), ('technique', 1), ('studying', 1), ('solving', 1), ('complex', 1), ('problem', 1), ('exchange', 1), ('idea', 1), ('scientist', 1)]
[('soft', 2), ('computing', 2), ('volume', 1), ('advance', 1), ('intelligent', 1), ('contains', 1), ('accepted', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('model', 1), ('industrial', 1), ('environmental', 1), ('application', 1), ('soco', 1), ('held', 1), ('beautiful', 1), ('historic', 1)]
[('arad', 2), ('romania', 2), ('volume', 1), ('constitute', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('soft', 1), ('computing', 1), ('application', 1), ('sofa', 1), ('held', 1), ('august', 1), ('edition', 1), ('organized', 1), ('aurel', 1), ('vlaicu', 1), ('university', 1)]
[('computer', 2), ('science', 2), ('sport', 2), ('book', 1), ('provides', 1), ('overview', 1), ('current', 1), ('research', 1), ('fascinating', 1), ('interdisciplinary', 1), ('field', 1), ('includes', 1), ('paper', 1), ('th', 1), ('international', 1), ('symposium', 1), ('iacss', 1), ('took', 1), ('place', 1)]
[('book', 1), ('present', 1), ('selected', 1), ('contribution', 1), ('th', 1), ('international', 1), ('conference', 1), ('global', 1), ('research', 1), ('education', 1), ('inter', 1), ('academia', 1), ('hosted', 1), ('alexandru', 1), ('ioan', 1), ('cuza', 1), ('university', 1), ('iași', 1), ('romania', 1), ('september', 1), ('third', 1), ('volume', 1)]
[('edited', 1), ('volume', 1), ('gather', 1), ('selection', 1), ('refereed', 1), ('revised', 1), ('paper', 1), ('originally', 1), ('presented', 1), ('third', 1), ('international', 1), ('symposium', 1), ('signal', 1), ('processing', 1), ('intelligent', 1), ('recognition', 1), ('system', 1), ('sir', 1), ('held', 1), ('september', 1), ('manipal', 1), ('india', 1)]
[('intelligence', 2), ('book', 1), ('highlight', 1), ('recent', 1), ('advance', 1), ('intelligent', 1), ('data', 1), ('analysis', 1), ('computational', 1), ('signal', 1), ('processing', 1), ('associated', 1), ('application', 1), ('artificial', 1), ('gather', 1), ('paper', 1), ('presented', 1), ('ecc', 1), ('fourth', 1), ('euro', 1), ('china', 1)]
[('intelligence', 2), ('day', 2), ('ambient', 1), ('ami', 1), ('recent', 1), ('paradigm', 1), ('emerging', 1), ('artificial', 1), ('ai', 1), ('computer', 1), ('used', 1), ('proactive', 1), ('tool', 1), ('assisting', 1), ('activity', 1), ('making', 1), ('everyone', 1), ('life', 1), ('comfortable', 1), ('another', 1), ('main', 1), ('concern', 1)]
[('intelligence', 2), ('day', 2), ('ambient', 1), ('ami', 1), ('recent', 1), ('paradigm', 1), ('emerging', 1), ('artificial', 1), ('computer', 1), ('used', 1), ('proactive', 1), ('tool', 1), ('assisting', 1), ('activity', 1), ('making', 1), ('everyone', 1), ('life', 1), ('comfortable', 1), ('another', 1), ('main', 1), ('concern', 1)]
[('shenzhen', 2), ('volume', 1), ('present', 1), ('proceeding', 1), ('first', 1), ('euro', 1), ('china', 1), ('conference', 1), ('intelligent', 1), ('data', 1), ('analysis', 1), ('application', 1), ('ecc', 1), ('hosted', 1), ('graduate', 1), ('school', 1), ('harbin', 1), ('institute', 1), ('technology', 1), ('held', 1), ('city', 1), ('june', 1)]
[('computing', 2), ('ibica', 2), ('volume', 1), ('advance', 1), ('intelligent', 1), ('system', 1), ('contains', 1), ('accepted', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('innovation', 1), ('bio', 1), ('inspired', 1), ('application', 1), ('aim', 1), ('provide', 1)]
[('area', 2), ('book', 1), ('collect', 1), ('series', 1), ('research', 1), ('paper', 1), ('image', 1), ('processing', 1), ('communication', 1), ('introduce', 1), ('summary', 1), ('current', 1), ('technology', 1), ('give', 1), ('outlook', 1), ('potential', 1), ('feature', 1), ('problem', 1), ('key', 1), ('objective', 1)]
[('genetic', 2), ('evolutionary', 2), ('computing', 2), ('conference', 2), ('computingthis', 1), ('volume', 1), ('advance', 1), ('intelligent', 1), ('system', 1), ('contains', 1), ('accepted', 1), ('paper', 1), ('presented', 1), ('icgec', 1), ('th', 1), ('international', 1), ('year', 1)]
[('intelligent', 2), ('system', 2), ('design', 2), ('application', 2), ('book', 1), ('highlight', 1), ('recent', 1), ('research', 1), ('present', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('isda', 1), ('held', 1), ('delhi', 1), ('india', 1)]
[('worldcist', 2), ('book', 1), ('includes', 1), ('selection', 1), ('paper', 1), ('world', 1), ('conference', 1), ('information', 1), ('system', 1), ('technology', 1), ('held', 1), ('naples', 1), ('italy', 1), ('march', 1), ('global', 1), ('forum', 1), ('researcher', 1), ('practitioner', 1), ('present', 1)]
[('technology', 2), ('book', 1), ('contains', 1), ('research', 1), ('contribution', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('computing', 1), ('information', 1), ('ic', 1), ('organised', 1), ('king', 1), ('mongkut', 1), ('university', 1), ('north', 1), ('bangkok', 1), ('partner', 1), ('held', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('th', 1), ('congress', 1), ('international', 1), ('ergonomics', 1), ('association', 1), ('iea', 1), ('held', 1), ('august', 1), ('florence', 1), ('italy', 1), ('highlighting', 1), ('latest', 1), ('theory', 1), ('model', 1), ('cutting', 1), ('edge', 1), ('technology', 1)]
[('book', 1), ('focus', 1), ('original', 1), ('approach', 1), ('intended', 1), ('support', 1), ('development', 1), ('biologically', 1), ('inspired', 1), ('cognitive', 1), ('architecture', 1), ('bridge', 1), ('together', 1), ('different', 1), ('discipline', 1), ('classical', 1), ('artificial', 1), ('intelligence', 1), ('linguistics', 1), ('neuro', 1), ('social', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('book', 1), ('highlight', 1), ('major', 1), ('advance', 1), ('development', 1), ('concept', 1), ('technique', 1), ('area', 1), ('new', 1), ('technology', 1), ('architecture', 1), ('contemporary', 1), ('information', 1), ('system', 1), ('help', 1), ('reader', 1), ('solve', 1), ('specific', 1), ('research', 1)]
[('technology', 2), ('book', 1), ('focus', 1), ('impact', 1), ('information', 1), ('communication', 1), ('icts', 1), ('organization', 1), ('society', 1), ('whole', 1), ('specifically', 1), ('examines', 1), ('improve', 1), ('life', 1), ('facilitate', 1), ('work', 1), ('main', 1), ('aspect', 1), ('explored', 1)]
[('book', 1), ('examines', 1), ('innovation', 1), ('field', 1), ('computer', 1), ('engineering', 1), ('networking', 1), ('explores', 1), ('important', 1), ('state', 1), ('art', 1), ('development', 1), ('area', 1), ('artificial', 1), ('intelligence', 1), ('machine', 1), ('learning', 1), ('information', 1), ('analysis', 1), ('communication', 1)]
[('intelligence', 3), ('ambient', 2), ('book', 1), ('present', 1), ('latest', 1), ('research', 1), ('including', 1), ('software', 1), ('application', 1), ('ami', 1), ('paradigm', 1), ('emerging', 1), ('artificial', 1), ('computer', 1), ('used', 1), ('proactive', 1), ('tool', 1), ('assisting', 1)]
[('medical', 2), ('information', 2), ('technology', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('advance', 1), ('field', 1), ('data', 1), ('science', 1), ('presenting', 1), ('carefully', 1), ('selected', 1), ('article', 1), ('leading', 1), ('expert', 1), ('rapidly', 1), ('evolving', 1), ('discipline', 1)]
[('three', 1), ('volume', 1), ('book', 1), ('highlight', 1), ('significant', 1), ('advance', 1), ('development', 1), ('new', 1), ('information', 1), ('system', 1), ('technology', 1), ('architecture', 1), ('help', 1), ('reader', 1), ('solve', 1), ('specific', 1), ('research', 1), ('analytical', 1), ('problem', 1), ('glean', 1), ('useful', 1), ('knowledge', 1), ('business', 1)]
[('book', 1), ('address', 1), ('importance', 1), ('human', 1), ('factor', 1), ('optimizing', 1), ('learning', 1), ('training', 1), ('process', 1), ('report', 1), ('latest', 1), ('research', 1), ('best', 1), ('practice', 1), ('discus', 1), ('key', 1), ('principle', 1), ('behavioral', 1), ('cognitive', 1), ('science', 1), ('extremely', 1)]
[('workshop', 2), ('arad', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('soft', 1), ('computing', 1), ('application', 1), ('sofa', 1), ('held', 1), ('september', 1), ('romania', 1), ('organized', 1), ('aurel', 1), ('vlaicu', 1), ('university', 1), ('conjunction', 1)]
[('iceute', 2), ('book', 1), ('contains', 1), ('accepted', 1), ('paper', 1), ('presented', 1), ('held', 1), ('beautiful', 1), ('historic', 1), ('city', 1), ('burgos', 1), ('spain', 1), ('september', 1), ('th', 1), ('international', 1), ('conference', 1), ('european', 1), ('transnational', 1), ('education', 1), ('meeting', 1), ('point', 1)]
[('book', 1), ('composed', 1), ('selection', 1), ('article', 1), ('world', 1), ('conference', 1), ('information', 1), ('system', 1), ('technology', 1), ('worldcist', 1), ('held', 1), ('online', 1), ('march', 1), ('april', 1), ('hangra', 1), ('de', 1), ('heroismo', 1), ('terceira', 1), ('island', 1)]
[('book', 2), ('discus', 2), ('data', 2), ('present', 1), ('application', 1), ('method', 1), ('astrophysical', 1), ('different', 1), ('perspective', 1), ('reader', 1), ('encounter', 1), ('interesting', 1), ('chapter', 1), ('processing', 1), ('pulsar', 1), ('complexity', 1), ('information', 1)]
[('book', 1), ('composed', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('iwifsgn', 1), ('eighteenth', 1), ('international', 1), ('workshop', 1), ('intuitionistic', 1), ('fuzzy', 1), ('set', 1), ('generalized', 1), ('net', 1), ('held', 1), ('october', 1), ('warsaw', 1), ('poland', 1), ('main', 1), ('conference', 1)]
[('edition', 2), ('new', 2), ('third', 1), ('first', 1), ('book', 1), ('explore', 1), ('exciting', 1), ('field', 1), ('augmented', 1), ('reality', 1), ('art', 1), ('enabling', 1), ('technology', 1), ('thoroughly', 1), ('revised', 1), ('updated', 1), ('chapter', 1), ('included', 1), ('investigating', 1)]
[('quantum', 2), ('machine', 2), ('learning', 2), ('nbsp', 2), ('book', 1), ('offer', 1), ('introduction', 1), ('research', 1), ('covering', 1), ('approach', 1), ('range', 1), ('near', 1), ('term', 1), ('fault', 1), ('tolerant', 1), ('algorithm', 1), ('theoretical', 1), ('practical', 1), ('technique', 1), ('help', 1)]
[('risk', 3), ('cbrne', 2), ('management', 2), ('book', 1), ('cover', 1), ('security', 1), ('safety', 1), ('asset', 1), ('illustrates', 1), ('emerge', 1), ('counter', 1), ('enhanced', 1), ('approach', 1), ('tackle', 1), ('cyber', 1), ('threat', 1), ('mitigation', 1)]
[('approach', 2), ('data', 2), ('book', 1), ('proposes', 1), ('systematic', 1), ('big', 1), ('collection', 1), ('documentation', 1), ('development', 1), ('analytic', 1), ('procedure', 1), ('foster', 1), ('collaboration', 1), ('large', 1), ('scale', 1), ('designated', 1), ('factoring', 1), ('emphasizes', 1), ('need', 1), ('think', 1)]
[('hp', 2), ('see', 2), ('book', 1), ('collection', 1), ('carefully', 1), ('reviewed', 1), ('paper', 1), ('presented', 1), ('user', 1), ('forum', 1), ('meeting', 1), ('high', 1), ('performance', 1), ('computing', 1), ('infrastructure', 1), ('south', 1), ('east', 1), ('europe', 1), ('research', 1), ('community', 1), ('held', 1), ('october', 1)]
[('kde', 2), ('book', 1), ('describes', 1), ('computational', 1), ('problem', 1), ('related', 1), ('kernel', 1), ('density', 1), ('estimation', 1), ('important', 1), ('widely', 1), ('used', 1), ('data', 1), ('smoothing', 1), ('technique', 1), ('detailed', 1), ('description', 1), ('novel', 1), ('fft', 1), ('based', 1), ('algorithm', 1), ('computation', 1)]
[('book', 1), ('take', 1), ('fresh', 1), ('look', 1), ('biometrics', 1), ('identity', 1), ('management', 1), ('extending', 1), ('dialogue', 1), ('beyond', 1), ('technical', 1), ('consideration', 1), ('exploring', 1), ('broader', 1), ('societal', 1), ('philosophical', 1), ('aspect', 1), ('surrounding', 1), ('use', 1), ('biometric', 1), ('application', 1)]
[('ped', 2), ('human', 2), ('th', 1), ('international', 1), ('conference', 1), ('pedestrian', 1), ('evacuation', 1), ('dynamic', 1), ('showcased', 1), ('research', 1), ('locomotion', 1), ('book', 1), ('present', 1), ('proceeding', 1), ('walked', 1), ('eon', 1), ('drive', 1), ('settle', 1), ('globe', 1), ('began', 1), ('walk', 1)]
[('book', 1), ('provides', 1), ('significant', 1), ('step', 1), ('towards', 1), ('bridging', 1), ('area', 1), ('boolean', 1), ('satisfiability', 1), ('constraint', 1), ('satisfaction', 1), ('answering', 1), ('question', 1), ('sat', 1), ('solver', 1), ('efficient', 1), ('certain', 1), ('class', 1), ('csp', 1), ('instance', 1), ('hard', 1), ('solve', 1)]
[('feature', 2), ('selection', 2), ('problem', 2), ('book', 1), ('offer', 1), ('coherent', 1), ('comprehensive', 1), ('approach', 1), ('subset', 1), ('scope', 1), ('classification', 1), ('explaining', 1), ('foundation', 1), ('real', 1), ('application', 1), ('challenge', 1), ('high', 1), ('dimensional', 1), ('data', 1)]
[('extortion', 2), ('racket', 2), ('book', 1), ('present', 1), ('multi', 1), ('disciplinary', 1), ('investigation', 1), ('particular', 1), ('focus', 1), ('structure', 1), ('criminal', 1), ('organisation', 1), ('collapse', 1), ('societal', 1), ('process', 1), ('strive', 1), ('fail', 1), ('impact', 1)]
[('develop', 2), ('increasing', 1), ('complexity', 1), ('telecommunication', 1), ('network', 1), ('requires', 1), ('adequate', 1), ('mathematical', 1), ('model', 1), ('find', 1), ('characteristic', 1), ('optimize', 1), ('subject', 1), ('chosen', 1), ('criterion', 1), ('corresponding', 1), ('control', 1), ('algorithm', 1)]
[('network', 3), ('complex', 2), ('machine', 2), ('learning', 2), ('book', 1), ('present', 1), ('feature', 1), ('advantage', 1), ('offered', 1), ('domain', 1), ('first', 1), ('part', 1), ('overview', 1), ('based', 1), ('presented', 1), ('offering', 1), ('necessary', 1), ('background', 1), ('material', 1)]
[('open', 3), ('system', 3), ('normative', 2), ('addressing', 1), ('problem', 1), ('engineering', 1), ('using', 1), ('multi', 1), ('agent', 1), ('paradigm', 1), ('explained', 1), ('heterogeneous', 1), ('autonomous', 1), ('entity', 1), ('institution', 1), ('coexist', 1), ('complex', 1), ('social', 1), ('legal', 1)]
[('field', 2), ('highlight', 1), ('key', 1), ('research', 1), ('currently', 1), ('undertaken', 1), ('within', 1), ('telepresence', 1), ('providing', 1), ('detailed', 1), ('account', 1), ('date', 1), ('advancing', 1), ('understanding', 1), ('fundamental', 1), ('property', 1), ('medium', 1), ('illusion', 1), ('presence', 1), ('sense', 1)]
[('data', 3), ('book', 1), ('review', 1), ('state', 1), ('art', 1), ('big', 1), ('analysis', 1), ('smart', 1), ('city', 1), ('includes', 1), ('issue', 1), ('pertain', 1), ('signal', 1), ('processing', 1), ('probability', 1), ('model', 1), ('machine', 1), ('learning', 1), ('mining', 1), ('database', 1), ('engineering', 1), ('pattern', 1), ('recognition', 1), ('visualisation', 1)]
[('book', 2), ('game', 2), ('analyzes', 1), ('multimodal', 1), ('verbal', 1), ('nonverbal', 1), ('behavior', 1), ('human', 1), ('artificial', 1), ('based', 1), ('known', 1), ('mafia', 1), ('resistance', 1), ('selected', 1), ('setting', 1), ('develops', 1), ('statistical', 1), ('result', 1), ('linking', 1), ('different', 1)]
[('using', 2), ('technology', 2), ('book', 1), ('tackle', 1), ('recent', 1), ('research', 1), ('direction', 1), ('newly', 1), ('emerged', 1), ('era', 1), ('covid', 1), ('pandemic', 1), ('mainly', 1), ('focus', 1), ('emerging', 1), ('impact', 1), ('health', 1), ('care', 1), ('education', 1), ('society', 1)]
[('insight', 2), ('book', 1), ('present', 1), ('emerging', 1), ('development', 1), ('intelligent', 1), ('computing', 1), ('machine', 1), ('learning', 1), ('data', 1), ('mining', 1), ('provides', 1), ('communication', 1), ('network', 1), ('technology', 1), ('internet', 1), ('thing', 1), ('offer', 1), ('various', 1), ('role', 1)]
[('metaverse', 3), ('part', 2), ('book', 1), ('divided', 1), ('three', 1), ('first', 1), ('discus', 1), ('basic', 1), ('development', 1), ('optional', 1), ('application', 1), ('virtual', 1), ('dressing', 1), ('room', 1), ('based', 1), ('user', 1), ('friendly', 1), ('use', 1), ('healthcare', 1), ('environment', 1)]
[('book', 1), ('aim', 1), ('provide', 1), ('necessary', 1), ('background', 1), ('work', 1), ('big', 1), ('data', 1), ('blockchain', 1), ('introducing', 1), ('novel', 1), ('application', 1), ('service', 1), ('operation', 1), ('academic', 1), ('interested', 1), ('practitioner', 1), ('benefit', 1), ('society', 1), ('industry', 1), ('academia', 1)]
[('data', 3), ('multi', 2), ('view', 2), ('analytics', 2), ('book', 1), ('provides', 1), ('timely', 1), ('study', 1), ('facet', 1), ('covering', 1), ('recent', 1), ('trend', 1), ('processing', 1), ('reasoning', 1), ('originating', 1), ('array', 1), ('local', 1), ('source', 1), ('nature', 1), ('encountered', 1), ('working', 1)]
[('digital', 3), ('technology', 3), ('book', 1), ('intends', 1), ('provide', 1), ('reference', 1), ('manual', 1), ('assist', 1), ('professional', 1), ('academic', 1), ('insight', 1), ('regarding', 1), ('impact', 1), ('business', 1), ('implement', 1), ('solution', 1), ('specific', 1)]
[('mil', 2), ('book', 1), ('provides', 1), ('general', 1), ('overview', 1), ('multiple', 1), ('instance', 1), ('learning', 1), ('defining', 1), ('framework', 1), ('covering', 1), ('central', 1), ('paradigm', 1), ('author', 1), ('discus', 1), ('important', 1), ('algorithm', 1), ('classification', 1), ('regression', 1), ('clustering', 1)]
[('book', 1), ('present', 1), ('state', 1), ('art', 1), ('high', 1), ('performance', 1), ('computing', 1), ('simulation', 1), ('modern', 1), ('supercomputer', 1), ('architecture', 1), ('explores', 1), ('general', 1), ('trend', 1), ('hardware', 1), ('software', 1), ('development', 1), ('focus', 1), ('specifically', 1), ('future', 1)]
[('book', 2), ('proof', 2), ('complexity', 2), ('part', 2), ('considers', 1), ('logical', 1), ('system', 1), ('point', 1), ('view', 1), ('space', 1), ('introduction', 1), ('propositional', 1), ('author', 1), ('structure', 1), ('three', 1), ('main', 1), ('contains', 1), ('chapter', 1), ('resolution', 1)]
[('security', 2), ('book', 1), ('provides', 1), ('broad', 1), ('overview', 1), ('many', 1), ('card', 1), ('system', 1), ('solution', 1), ('practical', 1), ('use', 1), ('today', 1), ('nbsp', 1), ('new', 1), ('edition', 1), ('add', 1), ('content', 1), ('rfids', 1), ('embedded', 1), ('attack', 1), ('countermeasure', 1), ('evaluation', 1), ('javacards', 1), ('banking', 1)]
[('cybersecurity', 1), ('gained', 1), ('awareness', 1), ('medium', 1), ('coverage', 1), ('last', 1), ('decade', 1), ('single', 1), ('week', 1), ('pass', 1), ('without', 1), ('major', 1), ('security', 1), ('incident', 1), ('affect', 1), ('company', 1), ('sector', 1), ('governmental', 1), ('agency', 1), ('proceeding', 1), ('international', 1), ('conference', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('xvi', 1), ('multidisciplinary', 1), ('international', 1), ('congress', 1), ('science', 1), ('technology', 1), ('cit', 1), ('held', 1), ('quito', 1), ('ecuador', 1), ('june', 1), ('proudly', 1), ('organized', 1), ('universidad', 1), ('de', 1), ('la', 1), ('fuerzas', 1), ('armada', 1), ('espe', 1)]
[('book', 2), ('focus', 1), ('use', 1), ('artificial', 1), ('intelligence', 1), ('machine', 1), ('learning', 1), ('ai', 1), ('ml', 1), ('based', 1), ('technique', 1), ('solve', 1), ('issue', 1), ('related', 1), ('communication', 1), ('network', 1), ('layer', 1), ('application', 1), ('first', 1), ('offer', 1), ('introduction', 1), ('recent', 1)]
[('geography', 2), ('covid', 2), ('first', 2), ('order', 2), ('impact', 2), ('volume', 1), ('case', 1), ('study', 1), ('focus', 1), ('around', 1), ('world', 1), ('located', 1), ('time', 1), ('space', 1), ('concentrating', 1), ('second', 1), ('pandemic', 1), ('nbsp', 1)]
[('metadata', 2), ('book', 1), ('offer', 1), ('comprehensive', 1), ('guide', 1), ('world', 1), ('origin', 1), ('ancient', 1), ('city', 1), ('middle', 1), ('east', 1), ('semantic', 1), ('web', 1), ('today', 1), ('author', 1), ('take', 1), ('journey', 1), ('century', 1), ('old', 1), ('history', 1)]
[('together', 2), ('book', 1), ('brings', 1), ('latest', 1), ('research', 1), ('new', 1), ('exciting', 1), ('area', 1), ('visualization', 1), ('looking', 1), ('classifying', 1), ('modelling', 1), ('cognitive', 1), ('bias', 1), ('user', 1), ('study', 1), ('reveal', 1), ('undesirable', 1), ('impact', 1), ('human', 1), ('judgement', 1)]
[('peirce', 2), ('nbsp', 2), ('major', 1), ('work', 1), ('knowledge', 1), ('representation', 1), ('based', 1), ('writing', 1), ('charles', 1), ('logician', 1), ('scientist', 1), ('philosopher', 1), ('first', 1), ('rank', 1), ('beginning', 1), ('th', 1), ('century', 1), ('book', 1), ('follows', 1), ('practical', 1), ('guideline', 1)]
[('business', 3), ('analysis', 3), ('lt', 1), ('div', 1), ('gt', 1), ('book', 1), ('frame', 1), ('context', 1), ('digital', 1), ('technology', 1), ('introduces', 1), ('modern', 1), ('technique', 1), ('including', 1), ('selection', 1), ('body', 1), ('knowledge', 1), ('babok', 1), ('international', 1)]
[('expanded', 1), ('updated', 1), ('nd', 1), ('nbsp', 1), ('edition', 1), ('classic', 1), ('text', 1), ('offer', 1), ('reader', 1), ('comprehensive', 1), ('introduction', 1), ('concept', 1), ('logic', 1), ('function', 1), ('equation', 1), ('application', 1), ('across', 1), ('computer', 1), ('science', 1), ('approach', 1), ('emphasizes', 1), ('thorough', 1)]
[('book', 2), ('series', 2), ('learning', 2), ('analytics', 2), ('intelligent', 2), ('system', 2), ('copy', 2), ('inaugural', 1), ('volume', 1), ('new', 1), ('springer', 1), ('aim', 1), ('providing', 1), ('hard', 1), ('soft', 1), ('form', 1), ('aspect', 1), ('advanced', 1)]
[('information', 3), ('business', 2), ('book', 1), ('explores', 1), ('various', 1), ('aspect', 1), ('data', 1), ('engineering', 1), ('processing', 1), ('second', 1), ('volume', 1), ('author', 1), ('ass', 1), ('challenge', 1), ('opportunity', 1), ('involved', 1), ('contribution', 1)]
[('data', 4), ('book', 1), ('present', 1), ('emerging', 1), ('concept', 1), ('mining', 1), ('big', 1), ('analysis', 1), ('communication', 1), ('networking', 1), ('technology', 1), ('discus', 1), ('state', 1), ('art', 1), ('engineering', 1), ('practice', 1), ('tackle', 1), ('massive', 1), ('distribution', 1), ('smart', 1), ('networked', 1)]
[('idea', 2), ('using', 2), ('innovation', 2), ('book', 1), ('provides', 1), ('innovative', 1), ('achieving', 1), ('sustainable', 1), ('development', 1), ('green', 1), ('technology', 1), ('conserve', 1), ('ecosystem', 1), ('successful', 1), ('exploitation', 1), ('new', 1), ('achieve', 1), ('le', 1)]
[('education', 2), ('book', 1), ('focus', 1), ('essential', 1), ('aspect', 1), ('theoretical', 1), ('foundation', 1), ('support', 1), ('blended', 1), ('learning', 1), ('bl', 1), ('teaching', 1), ('training', 1), ('modality', 1), ('tertiary', 1), ('analyzing', 1), ('change', 1), ('world', 1), ('lead', 1), ('new', 1), ('way', 1), ('thinking', 1)]
[('current', 2), ('book', 1), ('devoted', 1), ('problem', 1), ('artificial', 1), ('computational', 1), ('intelligence', 1), ('including', 1), ('decision', 1), ('making', 1), ('system', 1), ('collecting', 1), ('analysis', 1), ('processing', 1), ('information', 1), ('direction', 1), ('modern', 1), ('computer', 1), ('science', 1), ('development', 1), ('new', 1)]
[('computing', 2), ('artificial', 2), ('intelligence', 2), ('book', 1), ('highlight', 1), ('latest', 1), ('research', 1), ('distributed', 1), ('dcai', 1), ('forum', 1), ('present', 1), ('application', 1), ('innovative', 1), ('technique', 1), ('studying', 1), ('solving', 1), ('complex', 1), ('problem', 1)]
[('assistive', 2), ('technology', 2), ('book', 1), ('aim', 1), ('exposing', 1), ('reader', 1), ('significant', 1), ('advance', 1), ('develop', 1), ('device', 1), ('assist', 1), ('vulnerable', 1), ('including', 1), ('elderly', 1), ('cognitive', 1), ('disability', 1)]
[('physical', 3), ('cyber', 2), ('capability', 2), ('nbsp', 2), ('system', 1), ('cps', 1), ('combine', 1), ('computation', 1), ('communication', 1), ('motion', 1), ('process', 1), ('car', 1), ('aircraft', 1), ('robot', 1), ('prime', 1), ('example', 1), ('move', 1)]
[('book', 1), ('shed', 1), ('light', 1), ('emerging', 1), ('research', 1), ('trend', 1), ('intelligent', 1), ('system', 1), ('application', 1), ('mainly', 1), ('focus', 1), ('four', 1), ('different', 1), ('theme', 1), ('including', 1), ('artificial', 1), ('intelligence', 1), ('soft', 1), ('computing', 1), ('information', 1), ('security', 1), ('networking', 1), ('medical', 1)]
[('research', 2), ('augmented', 2), ('second', 1), ('comprehensive', 1), ('volume', 1), ('provide', 1), ('thorough', 1), ('multi', 1), ('faceted', 1), ('emerging', 1), ('field', 1), ('reality', 1), ('game', 1), ('consider', 1), ('wide', 1), ('range', 1), ('major', 1), ('issue', 1), ('first', 1), ('monograph', 1)]
[('textbook', 2), ('cover', 1), ('data', 1), ('analysis', 1), ('related', 1), ('environmental', 1), ('science', 1), ('starting', 1), ('basic', 1), ('example', 1), ('proceeding', 1), ('advanced', 1), ('application', 1), ('programming', 1), ('language', 1), ('main', 1), ('objective', 1), ('serve', 1), ('guide', 1)]
[('book', 1), ('discus', 1), ('important', 1), ('topic', 1), ('engineering', 1), ('managing', 1), ('software', 1), ('startup', 1), ('technical', 1), ('business', 1), ('aspect', 1), ('related', 1), ('complication', 1), ('arise', 1), ('dealt', 1), ('address', 1), ('use', 1), ('scientific', 1)]
[('handbook', 1), ('provides', 1), ('comprehensive', 1), ('knowledge', 1), ('includes', 1), ('overview', 1), ('current', 1), ('state', 1), ('art', 1), ('big', 1), ('data', 1), ('privacy', 1), ('chapter', 1), ('written', 1), ('international', 1), ('world', 1), ('leader', 1), ('academia', 1), ('industry', 1), ('working', 1), ('field', 1), ('first', 1), ('part', 1)]
[('software', 2), ('system', 2), ('technical', 2), ('book', 1), ('argues', 1), ('key', 1), ('problem', 1), ('development', 1), ('ssd', 1), ('socio', 1), ('rather', 1), ('purely', 1), ('nature', 1), ('unique', 1), ('human', 1), ('artefact', 1), ('intangible', 1), ('determinant', 1)]
[('graph', 2), ('algorithm', 2), ('book', 1), ('brings', 1), ('together', 1), ('important', 1), ('trend', 1), ('high', 1), ('performance', 1), ('computing', 1), ('efficient', 1), ('scalable', 1), ('execution', 1), ('processing', 1), ('application', 1), ('data', 1), ('network', 1), ('analysis', 1), ('requires', 1), ('innovation', 1), ('multiple', 1), ('level', 1)]
[('practical', 1), ('accessible', 1), ('textbook', 1), ('reference', 1), ('describes', 1), ('theory', 1), ('methodology', 1), ('digital', 1), ('forensic', 1), ('examination', 1), ('presenting', 1), ('example', 1), ('developed', 1), ('collaboration', 1), ('police', 1), ('authority', 1), ('ensure', 1), ('relevance', 1), ('real', 1), ('world', 1), ('practice', 1), ('coverage', 1)]
[('web', 4), ('obtaining', 2), ('common', 2), ('understanding', 2), ('paper', 1), ('volume', 1), ('aim', 1), ('challenging', 1), ('research', 1), ('question', 1), ('application', 1), ('comprising', 1), ('information', 1), ('system', 1), ('service', 1), ('interoperability', 1)]
[('cognitive', 2), ('aspect', 2), ('book', 1), ('cover', 1), ('latest', 1), ('research', 1), ('landmark', 1), ('gi', 1), ('including', 1), ('practical', 1), ('application', 1), ('address', 1), ('perceptual', 1), ('natural', 1), ('artificial', 1), ('system', 1), ('computational', 1), ('respect', 1), ('identifying', 1), ('selecting', 1)]
[('decision', 2), ('book', 1), ('address', 1), ('intriguing', 1), ('question', 1), ('rational', 1), ('explains', 1), ('seemingly', 1), ('irrational', 1), ('human', 1), ('making', 1), ('behavior', 1), ('taking', 1), ('account', 1), ('limited', 1), ('ability', 1), ('process', 1), ('information', 1), ('show', 1), ('several', 1), ('example', 1)]
[('computing', 2), ('aim', 1), ('book', 1), ('explain', 1), ('high', 1), ('performance', 1), ('hpc', 1), ('developer', 1), ('utilize', 1), ('intel', 1), ('xeon', 1), ('phi', 1), ('series', 1), ('product', 1), ('efficiently', 1), ('end', 1), ('introduces', 1), ('grammar', 1), ('programming', 1), ('technology', 1), ('optimization', 1), ('method', 1)]
[('optimization', 4), ('metaheuristics', 1), ('exhibit', 1), ('desirable', 1), ('property', 1), ('simplicity', 1), ('easy', 1), ('parallelizability', 1), ('ready', 1), ('applicability', 1), ('different', 1), ('type', 1), ('problem', 1), ('real', 1), ('parameter', 1), ('combinatorial', 1), ('mixed', 1), ('integer', 1)]
[('book', 1), ('continues', 1), ('biannual', 1), ('series', 1), ('conference', 1), ('proceeding', 1), ('become', 1), ('classical', 1), ('reference', 1), ('resource', 1), ('traffic', 1), ('granular', 1), ('research', 1), ('alike', 1), ('address', 1), ('latest', 1), ('development', 1), ('intersection', 1), ('physic', 1), ('engineering', 1)]
[('sensor', 2), ('distributed', 2), ('book', 1), ('provides', 1), ('broad', 1), ('overview', 1), ('technical', 1), ('challenge', 1), ('network', 1), ('development', 1), ('real', 1), ('world', 1), ('application', 1), ('sensing', 1), ('important', 1), ('aspect', 1), ('computing', 1), ('large', 1), ('scale', 1), ('networked', 1), ('system', 1)]
[('model', 2), ('requirement', 2), ('book', 1), ('provides', 1), ('coherent', 1), ('methodology', 1), ('driven', 1), ('engineering', 1), ('stress', 1), ('systematic', 1), ('treatment', 1), ('within', 1), ('realm', 1), ('modelling', 1), ('transformation', 1), ('underlying', 1), ('basic', 1), ('assumption', 1), ('detailed', 1)]
[('hpc', 2), ('current', 1), ('advance', 1), ('high', 1), ('performance', 1), ('computing', 1), ('increasingly', 1), ('impact', 1), ('efficient', 1), ('software', 1), ('development', 1), ('workflow', 1), ('programmer', 1), ('application', 1), ('need', 1), ('consider', 1), ('trend', 1), ('increased', 1), ('core', 1), ('count', 1), ('multiple', 1), ('level', 1), ('parallelism', 1), ('reduced', 1)]
[('book', 1), ('present', 1), ('state', 1), ('art', 1), ('supercomputer', 1), ('simulation', 1), ('includes', 1), ('latest', 1), ('finding', 1), ('leading', 1), ('researcher', 1), ('using', 1), ('system', 1), ('high', 1), ('performance', 1), ('computing', 1), ('center', 1), ('stuttgart', 1), ('hlrs', 1), ('report', 1), ('cover', 1), ('field', 1), ('computational', 1)]
[('information', 3), ('book', 1), ('gather', 1), ('together', 1), ('new', 1), ('way', 1), ('established', 1), ('contemporary', 1), ('thinking', 1), ('best', 1), ('technology', 1), ('system', 1), ('investment', 1), ('working', 1), ('manager', 1), ('beset', 1), ('complexity', 1)]
[('learning', 3), ('machine', 2), ('book', 1), ('develops', 1), ('key', 1), ('principle', 1), ('semi', 1), ('supervised', 1), ('paradigm', 1), ('interdependent', 1), ('data', 1), ('reveals', 1), ('new', 1), ('application', 1), ('primarily', 1), ('web', 1), ('related', 1), ('transgress', 1), ('classical', 1), ('framework', 1)]
[('system', 2), ('model', 1), ('checking', 1), ('computer', 1), ('assisted', 1), ('method', 1), ('analysis', 1), ('dynamical', 1), ('modeled', 1), ('state', 1), ('transition', 1), ('drawing', 1), ('research', 1), ('tradition', 1), ('mathematical', 1), ('logic', 1), ('programming', 1), ('language', 1), ('hardware', 1), ('design', 1), ('theoretical', 1)]
[('number', 2), ('computer', 2), ('operation', 2), ('book', 1), ('represented', 1), ('operated', 1), ('crucial', 1), ('developer', 1), ('understand', 1), ('area', 1), ('numerical', 1), ('allowed', 1), ('limitation', 1)]
[('conference', 2), ('book', 1), ('contains', 1), ('selected', 1), ('papersfrom', 1), ('international', 1), ('extreme', 1), ('learning', 1), ('machine', 1), ('held', 1), ('hangzhou', 1), ('china', 1), ('december', 1), ('brought', 1), ('together', 1), ('researcher', 1), ('engineer', 1), ('share', 1), ('andexchange', 1)]
[('book', 1), ('assist', 1), ('reader', 1), ('understanding', 1), ('key', 1), ('aspect', 1), ('problem', 1), ('solution', 1), ('related', 1), ('design', 1), ('proper', 1), ('multiple', 1), ('access', 1), ('scheme', 1), ('mtc', 1), ('machine', 1), ('type', 1), ('communication', 1), ('iot', 1), ('application', 1), ('beyond', 1), ('wireless', 1), ('network', 1), ('overview', 1)]
[('ri', 2), ('book', 1), ('present', 1), ('novel', 1), ('based', 1), ('smart', 1), ('radio', 1), ('technique', 1), ('targeting', 1), ('achieving', 1), ('high', 1), ('quality', 1), ('channel', 1), ('link', 1), ('cellular', 1), ('communication', 1), ('via', 1), ('design', 1), ('optimization', 1), ('construction', 1), ('unlike', 1), ('traditional', 1), ('antenna', 1), ('array', 1), ('three', 1), ('unique', 1)]
[('network', 2), ('book', 1), ('proposes', 1), ('novel', 1), ('envisions', 1), ('framework', 1), ('design', 1), ('principle', 1), ('order', 1), ('systematically', 1), ('expound', 1), ('next', 1), ('generation', 1), ('vehicular', 1), ('including', 1), ('modelling', 1), ('algorithm', 1), ('practical', 1), ('application', 1), ('focus', 1), ('key', 1)]
[('stimulating', 1), ('text', 1), ('reference', 1), ('present', 1), ('philosophical', 1), ('exploration', 1), ('conceptual', 1), ('foundation', 1), ('deep', 1), ('learning', 1), ('presenting', 1), ('enlightening', 1), ('perspective', 1), ('encompass', 1), ('diverse', 1), ('discipline', 1), ('computer', 1), ('science', 1), ('mathematics', 1), ('logic', 1), ('psychology', 1)]
[('image', 2), ('computer', 2), ('vision', 2), ('across', 1), ('three', 1), ('volume', 1), ('handbook', 1), ('processing', 1), ('present', 1), ('comprehensive', 1), ('review', 1), ('full', 1), ('range', 1), ('topic', 1), ('comprise', 1), ('field', 1), ('acquisition', 1), ('signal', 1), ('formation', 1), ('learning', 1)]
[('book', 1), ('provides', 1), ('reader', 1), ('practical', 1), ('guide', 1), ('principle', 1), ('hybrid', 1), ('approach', 1), ('natural', 1), ('language', 1), ('processing', 1), ('nlp', 1), ('involving', 1), ('combination', 1), ('neural', 1), ('method', 1), ('knowledge', 1), ('graph', 1), ('end', 1), ('first', 1), ('introduces', 1), ('main', 1), ('building', 1), ('block', 1)]
[('authoritative', 1), ('text', 1), ('reference', 1), ('present', 1), ('acomprehensive', 1), ('review', 1), ('algorithm', 1), ('technique', 1), ('face', 1), ('recognition', 1), ('fr', 1), ('emphasis', 1), ('system', 1), ('reliably', 1), ('used', 1), ('operationalenvironments', 1), ('insight', 1), ('provided', 1), ('international', 1)]
[('process', 4), ('analyze', 2), ('book', 1), ('start', 1), ('introduction', 1), ('modeling', 1), ('paradigm', 1), ('explains', 1), ('query', 1), ('model', 1), ('execution', 1), ('data', 1), ('way', 1), ('reader', 1), ('receive', 1), ('comprehensive', 1), ('overview', 1)]
[('language', 2), ('book', 1), ('describing', 1), ('meaning', 1), ('programming', 1), ('author', 1), ('teach', 1), ('skill', 1), ('writing', 1), ('semantic', 1), ('description', 1), ('efficient', 1), ('way', 1), ('understand', 1), ('feature', 1), ('compiler', 1), ('interpreter', 1), ('offer', 1), ('form', 1)]
[('game', 2), ('textbook', 1), ('author', 1), ('take', 1), ('inspiration', 1), ('recent', 1), ('breakthrough', 1), ('playing', 1), ('explain', 1), ('deep', 1), ('reinforcement', 1), ('learning', 1), ('work', 1), ('particular', 1), ('show', 1), ('person', 1), ('tactic', 1), ('strategy', 1), ('fascinate', 1), ('scientist', 1), ('programmer', 1)]
[('three', 2), ('volume', 2), ('information', 2), ('edited', 1), ('edition', 1), ('brings', 1), ('together', 1), ('significant', 1), ('paper', 1), ('previously', 1), ('published', 1), ('journal', 1), ('technology', 1), ('jit', 1), ('year', 1), ('publication', 1), ('history', 1), ('nbsp', 1), ('enacting', 1), ('research', 1), ('method', 1)]
[('textbook', 1), ('present', 1), ('main', 1), ('principle', 1), ('visual', 1), ('analytics', 1), ('describes', 1), ('technique', 1), ('approach', 1), ('proven', 1), ('utility', 1), ('readily', 1), ('reproduced', 1), ('special', 1), ('emphasis', 1), ('placed', 1), ('various', 1), ('instructive', 1), ('example', 1), ('analysis', 1)]
[('inverse', 2), ('problem', 2), ('imaging', 1), ('parameter', 1), ('identification', 1), ('deal', 1), ('recovery', 1), ('unknown', 1), ('quantity', 1), ('indirect', 1), ('observation', 1), ('connected', 1), ('via', 1), ('model', 1), ('describing', 1), ('underlying', 1), ('context', 1), ('nbsp', 1), ('traditionally', 1), ('formulated', 1)]
[('ifip', 2), ('volume', 1), ('set', 1), ('aict', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('wg', 1), ('conference', 1), ('advance', 1), ('production', 1), ('management', 1), ('system', 1), ('apms', 1), ('held', 1), ('hamburg', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1)]
[('book', 1), ('brings', 1), ('together', 1), ('scientist', 1), ('researcher', 1), ('practitioner', 1), ('student', 1), ('academia', 1), ('industry', 1), ('present', 1), ('recent', 1), ('ongoing', 1), ('research', 1), ('activity', 1), ('concerning', 1), ('latest', 1), ('advance', 1), ('technique', 1), ('application', 1), ('natural', 1), ('language', 1), ('processing', 1)]
[('econometric', 2), ('book', 1), ('address', 1), ('theoretical', 1), ('development', 1), ('practical', 1), ('application', 1), ('technique', 1), ('finance', 1), ('related', 1), ('problem', 1), ('includes', 1), ('selected', 1), ('edited', 1), ('outcome', 1), ('international', 1), ('conference', 1), ('vietnam', 1), ('econvn', 1), ('held', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('socolnet', 1), ('advanced', 1), ('doctoral', 1), ('conference', 1), ('computing', 1), ('electrical', 1), ('industrial', 1), ('system', 1), ('doceis', 1), ('held', 1), ('costa', 1), ('de', 1), ('caparica', 1), ('portugal', 1), ('nbsp', 1), ('revised', 1), ('full', 1)]
[('book', 2), ('discus', 1), ('important', 1), ('topic', 1), ('area', 1), ('machine', 1), ('learning', 1), ('combinatorial', 1), ('optimization', 1), ('combine', 1), ('decisive', 1), ('choosing', 1), ('material', 1), ('included', 1), ('determining', 1), ('order', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('workshop', 1), ('held', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('conference', 1), ('business', 1), ('service', 1), ('society', 1), ('took', 1), ('place', 1), ('trondheim', 1), ('norway', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('ifip', 2), ('volume', 1), ('set', 1), ('aict', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('wg', 1), ('conference', 1), ('advance', 1), ('production', 1), ('management', 1), ('system', 1), ('apms', 1), ('held', 1), ('austin', 1), ('tx', 1), ('usa', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('learning', 2), ('book', 1), ('present', 1), ('wealth', 1), ('deep', 1), ('algorithm', 1), ('demonstrates', 1), ('design', 1), ('process', 1), ('highlight', 1), ('need', 1), ('prudent', 1), ('alignment', 1), ('essential', 1), ('characteristic', 1), ('nature', 1), ('encountered', 1), ('practical', 1), ('problem', 1)]
[('intelligence', 2), ('health', 2), ('book', 1), ('highlight', 1), ('latest', 1), ('advance', 1), ('application', 1), ('artificial', 1), ('data', 1), ('science', 1), ('care', 1), ('medicine', 1), ('featuring', 1), ('selected', 1), ('paper', 1), ('workshop', 1), ('held', 1), ('part', 1), ('association', 1)]
[('artificial', 2), ('intelligence', 2), ('book', 1), ('offer', 1), ('comprehensive', 1), ('treatise', 1), ('recent', 1), ('pursuit', 1), ('ai', 1), ('explainable', 1), ('xai', 1), ('casting', 1), ('crucial', 1), ('feature', 1), ('interpretability', 1), ('explainability', 1), ('original', 1), ('framework', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('fourth', 1), ('ifip', 1), ('international', 1), ('cross', 1), ('domain', 1), ('internet', 1), ('thing', 1), ('ifipiot', 1), ('held', 1), ('virtually', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('human', 1), ('choice', 1), ('computer', 1), ('hcc', 1), ('held', 1), ('salford', 1), ('uk', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('working', 1), ('conference', 1), ('virtual', 1), ('enterprise', 1), ('pro', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('october', 1), ('revised', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('ifip', 2), ('conference', 2), ('volume', 1), ('aict', 1), ('constitute', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('wg', 1), ('international', 1), ('computer', 1), ('computing', 1), ('technology', 1), ('agriculture', 1), ('ccta', 1), ('held', 1), ('beijing', 1), ('china', 1), ('september', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('ifip', 1), ('wg', 1), ('working', 1), ('conference', 1), ('information', 1), ('system', 1), ('organization', 1), ('held', 1), ('dublin', 1), ('ireland', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('culture', 1), ('technology', 1), ('communication', 1), ('catac', 1), ('held', 1), ('london', 1), ('uk', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1)]
[('tinnitus', 2), ('book', 1), ('present', 1), ('knowledge', 1), ('discovery', 1), ('based', 1), ('approach', 1), ('build', 1), ('recommender', 1), ('system', 1), ('supporting', 1), ('physician', 1), ('treating', 1), ('patient', 1), ('highly', 1), ('successful', 1), ('method', 1), ('called', 1), ('retraining', 1), ('therapy', 1), ('describes', 1), ('experiment', 1), ('extracting', 1)]
[('data', 2), ('processing', 2), ('become', 1), ('essential', 1), ('modern', 1), ('civilization', 1), ('original', 1), ('come', 1), ('measurement', 1), ('expert', 1), ('source', 1), ('subject', 1), ('uncertainty', 1), ('traditionally', 1), ('probabilistic', 1), ('method', 1), ('used', 1), ('process', 1)]
[('book', 1), ('build', 1), ('decade', 1), ('research', 1), ('provides', 1), ('contemporary', 1), ('theoretical', 1), ('foundation', 1), ('practical', 1), ('application', 1), ('intelligent', 1), ('technology', 1), ('advance', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('reflecting', 1), ('growing', 1), ('realization', 1), ('computational', 1)]
[('conference', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('revised', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('dcitdrr', 1), ('international', 1), ('information', 1), ('technology', 1), ('disaster', 1), ('risk', 1), ('reduction', 1), ('itdrr', 1), ('kyiv', 1), ('ukraine', 1), ('october', 1), ('full', 1)]
[('digital', 1), ('forensics', 1), ('deal', 1), ('acquisition', 1), ('preservation', 1), ('examination', 1), ('analysis', 1), ('presentation', 1), ('electronic', 1), ('evidence', 1), ('computer', 1), ('network', 1), ('cloud', 1), ('computing', 1), ('smartphones', 1), ('embedded', 1), ('device', 1), ('internet', 1), ('thing', 1), ('expanded', 1), ('role', 1)]
[('data', 1), ('analysis', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('research', 1), ('area', 1), ('intersection', 1), ('computer', 1), ('science', 1), ('artificial', 1), ('intelligence', 1), ('mathematics', 1), ('statistic', 1), ('cover', 1), ('general', 1), ('method', 1), ('technique', 1), ('applied', 1), ('vast', 1), ('set', 1)]
[('vision', 2), ('monograph', 1), ('motivated', 1), ('significant', 1), ('number', 1), ('based', 1), ('algorithm', 1), ('unmanned', 1), ('aerial', 1), ('vehicle', 1), ('uav', 1), ('developed', 1), ('research', 1), ('development', 1), ('project', 1), ('information', 1), ('utilized', 1), ('various', 1), ('application', 1), ('visual', 1)]
[('purpose', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('research', 1), ('management', 1), ('application', 1), ('serum', 1), ('held', 1), ('august', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('bring', 1), ('together', 1), ('scientist', 1), ('engineer', 1), ('computer', 1), ('user', 1)]
[('privacy', 3), ('research', 2), ('are', 2), ('book', 1), ('provides', 1), ('overview', 1), ('work', 1), ('data', 1), ('enhancing', 1), ('technology', 1), ('carried', 1), ('participant', 1), ('project', 1), ('advanced', 1), ('security', 1), ('csd', 1)]
[('inspired', 2), ('swarm', 2), ('timely', 1), ('review', 1), ('volume', 1), ('summarizes', 1), ('state', 1), ('art', 1), ('development', 1), ('nature', 1), ('algorithm', 1), ('application', 1), ('emphasis', 1), ('intelligence', 1), ('bio', 1), ('computation', 1), ('topic', 1), ('include', 1), ('analysis', 1), ('overview', 1)]
[('volume', 1), ('gather', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('presented', 1), ('th', 1), ('edition', 1), ('international', 1), ('workshop', 1), ('service', 1), ('orientation', 1), ('holonic', 1), ('multi', 1), ('agent', 1), ('manufacturing', 1), ('sohoma', 1), ('organized', 1), ('hosted', 1), ('november', 1), ('university', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('working', 1), ('conference', 1), ('virtual', 1), ('enterprise', 1), ('pro', 1), ('held', 1), ('albi', 1), ('france', 1), ('october', 1), ('revised', 1), ('paper', 1), ('carefully', 1), ('selected', 1), ('submission', 1)]
[('digital', 2), ('forensics', 2), ('electronic', 2), ('deal', 1), ('acquisition', 1), ('preservation', 1), ('examination', 1), ('analysis', 1), ('presentation', 1), ('evidence', 1), ('networked', 1), ('computing', 1), ('wireless', 1), ('communication', 1), ('portable', 1), ('device', 1), ('expanded', 1), ('role', 1)]
[('conference', 2), ('edited', 1), ('book', 1), ('present', 1), ('scientific', 1), ('result', 1), ('th', 1), ('iee', 1), ('acis', 1), ('international', 1), ('computer', 1), ('information', 1), ('science', 1), ('icis', 1), ('held', 1), ('june', 1), ('july', 1), ('la', 1), ('vega', 1), ('usa', 1), ('aim', 1), ('bring', 1)]
[('edited', 1), ('book', 1), ('present', 1), ('scientific', 1), ('result', 1), ('th', 1), ('iee', 1), ('acis', 1), ('international', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('artificial', 1), ('intelligence', 1), ('networking', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('snpd', 1), ('held', 1), ('june', 1)]
[('algorithm', 3), ('nature', 2), ('inspired', 2), ('timely', 1), ('review', 1), ('book', 1), ('summarizes', 1), ('thestate', 1), ('art', 1), ('development', 1), ('optimization', 1), ('andtheir', 1), ('application', 1), ('engineering', 1), ('topic', 1), ('include', 1), ('overviewand', 1), ('history', 1), ('discrete', 1)]
[('edited', 1), ('book', 1), ('present', 1), ('scientific', 1), ('result', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('artificial', 1), ('intelligence', 1), ('research', 1), ('management', 1), ('application', 1), ('serum', 1), ('held', 1), ('june', 1), ('towson', 1), ('university', 1), ('usa', 1), ('nbsp', 1), ('aim', 1)]
[('book', 1), ('nbsp', 1), ('collection', 1), ('extended', 1), ('chaptersfrom', 1), ('selected', 1), ('paper', 1), ('published', 1), ('proceeding', 1), ('science', 1), ('andinformation', 1), ('sai', 1), ('conference', 1), ('contains', 1), ('twenty', 1), ('chapter', 1), ('fieldof', 1), ('computational', 1), ('intelligence', 1)]
[('voice', 1), ('interface', 1), ('virtual', 1), ('assistant', 1), ('moved', 1), ('industry', 1), ('research', 1), ('lab', 1), ('pocket', 1), ('desktop', 1), ('living', 1), ('room', 1), ('general', 1), ('public', 1), ('demand', 1), ('new', 1), ('kind', 1), ('user', 1), ('experience', 1), ('ux', 1), ('design', 1), ('emerging', 1), ('although', 1)]
[('book', 1), ('introduces', 1), ('reader', 1), ('first', 1), ('method', 1), ('developed', 1), ('numerical', 1), ('treatment', 1), ('boundary', 1), ('value', 1), ('problem', 1), ('polygonal', 1), ('polyhedral', 1), ('mesh', 1), ('subsequently', 1), ('analyzes', 1), ('applies', 1), ('various', 1), ('scenario', 1), ('bem', 1), ('based', 1), ('finite', 1)]
[('book', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('key', 1), ('concern', 1), ('research', 1), ('challenge', 1), ('designing', 1), ('secure', 1), ('resilient', 1), ('industrial', 1), ('control', 1), ('system', 1), ('ic', 1), ('discus', 1), ('today', 1), ('state', 1), ('art', 1), ('security', 1), ('architecture', 1), ('couple', 1)]
[('time', 2), ('book', 1), ('focus', 1), ('core', 1), ('functionality', 1), ('wireless', 1), ('real', 1), ('multi', 1), ('hop', 1), ('networking', 1), ('tdma', 1), ('division', 1), ('multiple', 1), ('access', 1), ('integration', 1), ('flexible', 1), ('versatile', 1), ('fully', 1), ('operational', 1), ('self', 1), ('contained', 1), ('communication', 1), ('system', 1), ('use', 1)]
[('view', 1), ('leading', 1), ('researcher', 1), ('emerging', 1), ('topic', 1), ('post', 1), ('mortem', 1), ('digital', 1), ('legacy', 1), ('posthumous', 1), ('interaction', 1), ('explored', 1), ('book', 1), ('combine', 1), ('technical', 1), ('cultural', 1), ('legal', 1), ('aspect', 1), ('associated', 1), ('new', 1), ('branch', 1), ('hci', 1)]
[('third', 2), ('wave', 2), ('hci', 2), ('first', 1), ('extensive', 1), ('exploration', 1), ('contemporary', 1), ('handbook', 1), ('cover', 1), ('key', 1), ('development', 1), ('leading', 1), ('edge', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('second', 1), ('decade', 1), ('major', 1), ('current', 1), ('research', 1), ('integrates', 1)]
[('computing', 2), ('nbsp', 2), ('book', 1), ('concerned', 1), ('materio', 1), ('unconventional', 1), ('performed', 1), ('directly', 1), ('harnessing', 1), ('physical', 1), ('property', 1), ('material', 1), ('offer', 1), ('overview', 1), ('field', 1), ('covering', 1), ('four', 1), ('main', 1), ('area', 1), ('interest', 1), ('theory', 1)]
[('network', 3), ('social', 2), ('book', 1), ('focus', 1), ('analysis', 1), ('computational', 1), ('perspective', 1), ('introducing', 1), ('reader', 1), ('fundamental', 1), ('aspect', 1), ('theory', 1), ('discussing', 1), ('various', 1), ('metric', 1), ('used', 1), ('measure', 1), ('cover', 1), ('different', 1), ('form', 1)]
[('anatomy', 2), ('novel', 2), ('book', 1), ('offer', 1), ('reader', 1), ('fresh', 1), ('insight', 1), ('applying', 1), ('extended', 1), ('reality', 1), ('digital', 1), ('emerging', 1), ('discipline', 1), ('indeed', 1), ('way', 1), ('professor', 1), ('teach', 1), ('classroom', 1), ('changing', 1), ('rapidly', 1), ('technology', 1), ('based', 1), ('approach', 1), ('become', 1)]
[('application', 2), ('various', 1), ('fundamental', 1), ('computer', 1), ('vision', 1), ('machine', 1), ('learning', 1), ('require', 1), ('finding', 1), ('basis', 1), ('certain', 1), ('subspace', 1), ('example', 1), ('include', 1), ('face', 1), ('detection', 1), ('motion', 1), ('estimation', 1), ('activity', 1), ('recognition', 1), ('increasing', 1), ('interest', 1)]
[('learning', 2), ('book', 1), ('explores', 1), ('new', 1), ('novel', 1), ('application', 1), ('machine', 1), ('deep', 1), ('artificial', 1), ('intelligence', 1), ('related', 1), ('major', 1), ('challenge', 1), ('field', 1), ('cybersecurity', 1), ('provided', 1), ('research', 1), ('go', 1), ('beyond', 1), ('simply', 1), ('applying', 1), ('ai', 1), ('technique', 1)]
[('virtual', 2), ('augmented', 2), ('reality', 2), ('new', 2), ('edited', 1), ('book', 1), ('introduces', 1), ('reader', 1), ('area', 1), ('everyday', 1), ('technology', 1), ('becoming', 1), ('pervasive', 1), ('home', 1), ('workplace', 1), ('use', 1), ('case', 1), ('scenario', 1), ('emerge', 1), ('together', 1)]
[('day', 2), ('book', 1), ('focus', 1), ('importance', 1), ('adaptation', 1), ('personalization', 1), ('today', 1), ('society', 1), ('upgraded', 1), ('role', 1), ('computational', 1), ('system', 1), ('internet', 1), ('play', 1), ('activity', 1), ('nbsp', 1), ('era', 1), ('wireless', 1), ('communication', 1), ('pervasive', 1)]
[('online', 2), ('personalization', 1), ('ubiquitous', 1), ('search', 1), ('engine', 1), ('shopping', 1), ('website', 1), ('helping', 1), ('find', 1), ('content', 1), ('efficiently', 1), ('book', 1), ('focus', 1), ('key', 1), ('development', 1), ('shaping', 1), ('daily', 1), ('experience', 1), ('advance', 1), ('detection', 1)]
[('home', 3), ('wise', 2), ('book', 1), ('introduces', 1), ('concept', 1), ('whilst', 1), ('smart', 1), ('focus', 1), ('automation', 1), ('technology', 1), ('forcing', 1), ('user', 1), ('deal', 1), ('complex', 1), ('incomprehensible', 1), ('control', 1), ('programming', 1), ('procedure', 1), ('different', 1), ('going', 1), ('beyond', 1)]
[('book', 2), ('data', 2), ('study', 2), ('present', 1), ('detailed', 1), ('review', 1), ('high', 1), ('performance', 1), ('computing', 1), ('infrastructure', 1), ('next', 1), ('generation', 1), ('big', 1), ('fast', 1), ('analytics', 1), ('feature', 1), ('includes', 1), ('case', 1), ('learning', 1), ('activity', 1), ('throughout', 1), ('self', 1), ('exercise', 1), ('every', 1)]
[('field', 2), ('book', 1), ('present', 1), ('state', 1), ('art', 1), ('current', 1), ('challenge', 1), ('future', 1), ('perspective', 1), ('many', 1), ('criterion', 1), ('optimization', 1), ('decision', 1), ('analysis', 1), ('recognizes', 1), ('real', 1), ('life', 1), ('problem', 1), ('often', 1), ('involve', 1), ('trying', 1), ('balance', 1), ('multiplicity', 1)]
[('book', 2), ('offer', 2), ('autonomous', 2), ('cyber', 2), ('defense', 2), ('structured', 1), ('overview', 1), ('comprehensive', 1), ('guide', 1), ('emerging', 1), ('field', 1), ('intelligent', 1), ('agent', 1), ('aica', 1), ('discus', 1), ('current', 1), ('technical', 1), ('issue', 1), ('information', 1)]
[('various', 2), ('research', 1), ('outcome', 1), ('presented', 1), ('collection', 1), ('focus', 1), ('aspect', 1), ('high', 1), ('performance', 1), ('computing', 1), ('hpc', 1), ('software', 1), ('development', 1), ('confronted', 1), ('challenge', 1), ('today', 1), ('supercomputer', 1), ('technology', 1), ('head', 1), ('towards', 1)]
[('stimulating', 1), ('textbook', 1), ('present', 1), ('broad', 1), ('accessible', 1), ('guide', 1), ('fundamental', 1), ('discrete', 1), ('mathematics', 1), ('highlighting', 1), ('technique', 1), ('applied', 1), ('various', 1), ('exciting', 1), ('area', 1), ('computing', 1), ('text', 1), ('designed', 1), ('motivate', 1), ('inspire', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('sigsand', 1), ('plais', 1), ('eurosymposium', 1), ('titled', 1), ('information', 1), ('system', 1), ('development', 1), ('application', 1), ('education', 1), ('held', 1), ('gdansk', 1), ('poland', 1), ('september', 1), ('objective', 1), ('symposium', 1), ('promote', 1)]
[('democracy', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('thinternational', 1), ('conference', 1), ('held', 1), ('athens', 1), ('greece', 1), ('december', 1), ('revised', 1), ('full', 1), ('paperspresented', 1), ('together', 1), ('extended', 1), ('abstract', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('fourth', 1), ('international', 1), ('conference', 1), ('analysis', 1), ('image', 1), ('social', 1), ('network', 1), ('text', 1), ('aist', 1), ('held', 1), ('yekaterinburg', 1), ('russia', 1), ('april', 1), ('full', 1), ('short', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('biomedical', 1), ('engineering', 1), ('system', 1), ('technology', 1), ('biostec', 1), ('held', 1), ('anger', 1), ('france', 1), ('march', 1), ('revised', 1), ('full', 1)]
[('volume', 1), ('contains', 1), ('technical', 1), ('paper', 1), ('presented', 1), ('seven', 1), ('high', 1), ('quality', 1), ('workshop', 1), ('associated', 1), ('european', 1), ('conference', 1), ('service', 1), ('oriented', 1), ('cloud', 1), ('computing', 1), ('esocc', 1), ('held', 1), ('taormina', 1), ('italy', 1), ('september', 1), ('third', 1), ('international', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('socialedu', 1), ('held', 1), ('stanford', 1), ('ca', 1), ('usa', 1), ('august', 1), ('aimed', 1), ('discus', 1), ('computational', 1), ('model', 1), ('social', 1), ('computing', 1), ('applied', 1), ('digital', 1), ('education', 1)]
[('international', 2), ('conference', 2), ('modeling', 2), ('book', 1), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('business', 1), ('process', 1), ('development', 1), ('support', 1), ('bpmds', 1), ('st', 1), ('exploring', 1), ('method', 1), ('system', 1), ('analysis', 1)]
[('volume', 1), ('set', 1), ('ccis', 1), ('constitute', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('processing', 1), ('management', 1), ('uncertainty', 1), ('knowledge', 1), ('based', 1), ('system', 1), ('ipmu', 1), ('held', 1), ('eindhoven', 1), ('netherlands', 1), ('june', 1)]
[('symposium', 2), ('book', 1), ('contains', 1), ('revised', 1), ('extended', 1), ('version', 1), ('selected', 1), ('paper', 1), ('fifth', 1), ('international', 1), ('business', 1), ('modeling', 1), ('software', 1), ('design', 1), ('bmsd', 1), ('held', 1), ('milan', 1), ('italy', 1), ('july', 1), ('organized', 1), ('sponsored', 1)]
[('volume', 2), ('ccis', 2), ('second', 1), ('set', 1), ('contains', 1), ('extended', 1), ('abstract', 1), ('poster', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('toronto', 1), ('canada', 1), ('july', 1)]
[('nooj', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('held', 1), ('minsk', 1), ('belarus', 1), ('june', 1), ('received', 1), ('submission', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('th', 1), ('international', 1), ('workshop', 1), ('information', 1), ('search', 1), ('integration', 1), ('personalization', 1), ('isip', 1), ('held', 1), ('grand', 1), ('fork', 1), ('nd', 1), ('usa', 1), ('october', 1), ('full', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('perspective', 1), ('business', 1), ('informatics', 1), ('research', 1), ('bir', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('september', 1), ('overall', 1), ('submission', 1), ('country', 1), ('rigorously', 1)]
[('conference', 2), ('nbsp', 2), ('semantic', 2), ('web', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('edition', 1), ('evaluation', 1), ('challenge', 1), ('semwebeval', 1), ('co', 1), ('located', 1), ('th', 1), ('european', 1), ('held', 1), ('heraklion', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('innovation', 1), ('community', 1), ('service', 1), ('c', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('june', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('workload', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nbsp', 1), ('first', 1), ('international', 1), ('symposium', 1), ('human', 1), ('mental', 1), ('model', 1), ('application', 1), ('held', 1), ('dublin', 1), ('ireland', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('agent', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nine', 1), ('workshop', 1), ('co', 1), ('located', 1), ('th', 1), ('international', 1), ('conference', 1), ('practical', 1), ('application', 1), ('multi', 1), ('system', 1), ('paams', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('june', 1), ('full', 1)]
[('ccis', 2), ('international', 2), ('volume', 1), ('set', 1), ('contains', 1), ('extended', 1), ('abstract', 1), ('poster', 1), ('presented', 1), ('th', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hci', 1), ('held', 1), ('vancouver', 1), ('bc', 1), ('canada', 1), ('july', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('conference', 1), ('exploring', 1), ('service', 1), ('science', 1), ('y', 1), ('held', 1), ('rome', 1), ('italy', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('process', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('asia', 1), ('pacific', 1), ('conference', 1), ('business', 1), ('management', 1), ('held', 1), ('beijing', 1), ('china', 1), ('august', 1), ('contribution', 1), ('seven', 1), ('country', 1), ('submitted', 1), ('following', 1), ('extensive', 1), ('review', 1)]
[('book', 1), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('information', 1), ('system', 1), ('crisis', 1), ('response', 1), ('management', 1), ('mediterranean', 1), ('country', 1), ('iscram', 1), ('med', 1), ('held', 1), ('toulouse', 1), ('france', 1), ('october', 1), ('aim', 1)]
[('agile', 2), ('development', 2), ('book', 1), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('xp', 1), ('held', 1), ('helsinki', 1), ('finland', 1), ('already', 1), ('become', 1), ('mainstream', 1), ('industry', 1), ('field', 1), ('still', 1)]
[('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('eurospi', 1), ('conference', 1), ('held', 1), ('ostrava', 1), ('czech', 1), ('republic', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1), ('organized', 1)]
[('workshop', 2), ('cloud', 2), ('volume', 1), ('contains', 1), ('technical', 1), ('paper', 1), ('presented', 1), ('associated', 1), ('european', 1), ('conference', 1), ('service', 1), ('oriented', 1), ('computing', 1), ('esocc', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('september', 1), ('th', 1), ('international', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('communication', 1), ('technology', 1), ('ageing', 1), ('health', 1), ('ict', 1), ('awe', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('ccis', 3), ('three', 1), ('volume', 1), ('set', 1), ('contains', 1), ('extended', 1), ('abstract', 1), ('poster', 1), ('presented', 1), ('st', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('took', 1), ('place', 1), ('orlando', 1), ('florida', 1), ('july', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('geographical', 1), ('information', 1), ('system', 1), ('theory', 1), ('application', 1), ('management', 1), ('gistam', 1), ('held', 1), ('funchal', 1), ('madeira', 1), ('portugal', 1), ('march', 1), ('revised', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('digital', 1), ('economy', 1), ('icdec', 1), ('held', 1), ('beirut', 1), ('lebanon', 1), ('april', 1), ('founded', 1), ('discus', 1), ('innovative', 1), ('research', 1), ('project', 1), ('related', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('arabic', 1), ('language', 1), ('processing', 1), ('icalp', 1), ('held', 1), ('nancy', 1), ('france', 1), ('october', 1), ('full', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('data', 1), ('processing', 1), ('idp', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('mediterranean', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('artificial', 1), ('intelligence', 1), ('medprai', 1), ('held', 1), ('istanbul', 1), ('turkey', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('videogame', 1), ('science', 1), ('art', 1), ('vj', 1), ('held', 1), ('aveiro', 1), ('portugal', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('exploring', 1), ('service', 1), ('science', 1), ('y', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('february', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nbsp', 4), ('volume', 2), ('thirs', 1), ('three', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('applied', 1), ('technology', 1), ('icat', 1), ('held', 1), ('quito', 1), ('ecuador', 1), ('december', 1)]
[('conference', 3), ('th', 2), ('information', 2), ('management', 2), ('book', 1), ('constitutes', 1), ('extended', 1), ('selected', 1), ('paper', 1), ('advanced', 1), ('technology', 1), ('aitm', 1), ('system', 1), ('ism', 1), ('held', 1), ('part', 1), ('federated', 1)]
[('society', 2), ('publication', 1), ('highlight', 1), ('fast', 1), ('moving', 1), ('technological', 1), ('advancement', 1), ('infiltration', 1), ('artificial', 1), ('intelligence', 1), ('concept', 1), ('evolution', 1), ('interconnectivity', 1), ('explored', 1), ('together', 1), ('fusion', 1), ('human', 1)]
[('emcis', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('paper', 1), ('th', 1), ('european', 1), ('mediterranean', 1), ('middle', 1), ('eastern', 1), ('conference', 1), ('held', 1), ('dubai', 1), ('uae', 1), ('october', 1), ('dedicated', 1), ('definition', 1), ('establishment', 1), ('information', 1), ('system', 1)]
[('data', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('management', 1), ('technology', 1), ('application', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('mathematical', 1), ('optimization', 1), ('theory', 1), ('operation', 1), ('research', 1), ('motor', 1), ('held', 1), ('novosibirsk', 1), ('russia', 1), ('july', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('nbsp', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('paper', 1), ('first', 1), ('international', 1), ('workshop', 1), ('deployable', 1), ('machine', 1), ('learning', 1), ('security', 1), ('defense', 1), ('mlhat', 1), ('august', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('conference', 1), ('online', 1), ('full', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('paper', 1), ('five', 1), ('workshop', 1), ('held', 1), ('june', 1), ('rd', 1), ('international', 1), ('business', 1), ('information', 1), ('system', 1), ('bi', 1), ('planned', 1), ('take', 1), ('place', 1), ('colorado', 1), ('spring', 1), ('co', 1), ('usa', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('processing', 1), ('management', 1), ('uncertainty', 1), ('knowledge', 1), ('based', 1), ('system', 1), ('ipmu', 1), ('held', 1), ('cádiz', 1), ('spain', 1), ('june', 1), ('revised', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('innovation', 1), ('community', 1), ('service', 1), ('c', 1), ('held', 1), ('žilina', 1), ('slovakia', 1), ('june', 1), ('full', 1), ('three', 1), ('short', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('extended', 1), ('revised', 1), ('th', 1), ('international', 1), ('conference', 1), ('enterprise', 1), ('information', 1), ('system', 1), ('iceis', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('april', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('ccis', 3), ('three', 1), ('volume', 1), ('set', 1), ('contains', 1), ('extended', 1), ('abstract', 1), ('poster', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hci', 1), ('took', 1), ('place', 1), ('la', 1), ('vega', 1), ('nevada', 1), ('july', 1)]
[('contribution', 1), ('written', 1), ('foremost', 1), ('international', 1), ('researcher', 1), ('practitioner', 1), ('genetic', 1), ('programming', 1), ('gp', 1), ('explore', 1), ('synergy', 1), ('theoretical', 1), ('empirical', 1), ('result', 1), ('real', 1), ('world', 1), ('problem', 1), ('producing', 1), ('comprehensive', 1), ('view', 1), ('state', 1)]
[('data', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('analytics', 1), ('management', 1), ('intensive', 1), ('domain', 1), ('damdid', 1), ('rcdl', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('entitled', 1), ('beyond', 1), ('database', 1), ('architecture', 1), ('structure', 1), ('bdas', 1), ('held', 1), ('poznań', 1), ('poland', 1), ('september', 1), ('ifip', 1), ('world', 1), ('computer', 1), ('congress', 1), ('consists', 1)]
[('ict', 2), ('innovation', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('held', 1), ('ohrid', 1), ('macedonia', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('symposium', 1), ('computer', 1), ('information', 1), ('science', 1), ('iscis', 1), ('held', 1), ('poznan', 1), ('poland', 1), ('september', 1), ('nbsp', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('technology', 1), ('trend', 1), ('citt', 1), ('held', 1), ('babahoyo', 1), ('ecuador', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('international', 2), ('joint', 2), ('conference', 2), ('icete', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('business', 1), ('telecommunication', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('july', 1), ('integrating', 1), ('four', 1), ('major', 1), ('area', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('computer', 1), ('communication', 1), ('engineering', 1), ('icce', 1), ('held', 1), ('guayaquil', 1), ('ecuador', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('conference', 1), ('computational', 1), ('information', 1), ('technology', 1), ('science', 1), ('engineering', 1), ('education', 1), ('citech', 1), ('held', 1), ('ust', 1), ('kamenogorsk', 1), ('kazakhstan', 1), ('september', 1)]
[('knowledge', 3), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('discovery', 1), ('engineering', 1), ('management', 1), ('ic', 1), ('held', 1), ('funchal', 1), ('madeira', 1), ('portugal', 1), ('november', 1), ('full', 1)]
[('ccis', 3), ('three', 1), ('volume', 1), ('set', 1), ('contains', 1), ('extended', 1), ('abstract', 1), ('poster', 1), ('presented', 1), ('rd', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('virtually', 1), ('july', 1), ('nbsp', 1)]
[('nbsp', 5), ('book', 1), ('constitutes', 1), ('selected', 1), ('revised', 1), ('paper', 1), ('first', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('sustainable', 1), ('computing', 1), ('smart', 1), ('city', 1), ('ai', 1), ('held', 1), ('greater', 1), ('noida', 1), ('india', 1), ('march', 1), ('due', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('extended', 1), ('second', 1), ('international', 1), ('conference', 1), ('innovation', 1), ('digital', 1), ('economy', 1), ('spbu', 1), ('ide', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('october', 1), ('presented', 1), ('thoroughly', 1), ('reviewed', 1)]
[('conference', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('network', 1), ('game', 1), ('control', 1), ('optimization', 1), ('netgcoop', 1), ('nbsp', 1), ('held', 1), ('cargèse', 1), ('corsica', 1), ('france', 1), ('september', 1), ('full', 1), ('short', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('modern', 1), ('problem', 1), ('robotics', 1), ('mpor', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('ccis', 2), ('volume', 1), ('set', 1), ('contains', 1), ('late', 1), ('breaking', 1), ('poster', 1), ('presented', 1), ('rd', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('virtually', 1), ('july', 1), ('nbsp', 1), ('total', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('technology', 1), ('innovation', 1), ('citi', 1), ('held', 1), ('guayaquil', 1), ('ecuador', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('russian', 1), ('supercomputing', 1), ('day', 1), ('ruscdays', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('september', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('metadata', 1), ('semantic', 1), ('research', 1), ('mtsr', 1), ('held', 1), ('virtual', 1), ('event', 1), ('november', 1), ('december', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nbsp', 1), ('third', 1), ('international', 1), ('soft', 1), ('computing', 1), ('engineering', 1), ('application', 1), ('icsoftcomp', 1), ('held', 1), ('changa', 1), ('india', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('international', 2), ('conference', 2), ('decision', 2), ('support', 2), ('system', 2), ('technology', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('icdsst', 1), ('held', 1), ('ewg', 1), ('ds', 1), ('series', 1)]
[('ccis', 4), ('four', 1), ('volume', 1), ('set', 1), ('contains', 1), ('extended', 1), ('abstract', 1), ('poster', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('virtually', 1), ('june', 1), ('july', 1)]
[('chapter', 1), ('swedish', 1), ('recreational', 1), ('business', 1), ('coping', 1), ('covid', 1), ('using', 1), ('technology', 1), ('available', 1), ('open', 1), ('access', 1), ('creative', 1), ('common', 1), ('attribution', 1), ('international', 1), ('license', 1), ('via', 1), ('nbsp', 1), ('link', 1), ('springer', 1)]
[('business', 2), ('informatics', 2), ('bir', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('perspective', 1), ('research', 1), ('took', 1), ('place', 1), ('rostock', 1), ('germany', 1), ('september', 1), ('central', 1), ('theme', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('symposium', 1), ('summer', 1), ('school', 1), ('service', 1), ('oriented', 1), ('computing', 1), ('summersoc', 1), ('held', 1), ('hersonissos', 1), ('crete', 1), ('greece', 1), ('july', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1)]
[('conference', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('game', 1), ('theory', 1), ('network', 1), ('gamenets', 1), ('held', 1), ('knoxville', 1), ('tennessee', 1), ('usa', 1), ('invited', 1), ('presented', 1), ('cover', 1), ('topic', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('infrastructure', 1), ('service', 1), ('developing', 1), ('country', 1), ('africomm', 1), ('held', 1), ('ouagadougou', 1), ('burkina', 1), ('faso', 1), ('december', 1), ('paper', 1)]
[('enterprise', 2), ('science', 2), ('book', 1), ('outline', 1), ('important', 1), ('foundational', 1), ('insight', 1), ('governance', 1), ('engineering', 1), ('obviously', 1), ('provided', 1), ('social', 1), ('organization', 1), ('philosophy', 1), ('information', 1)]
[('architectural', 1), ('coordination', 1), ('enterprise', 1), ('transformation', 1), ('acet', 1), ('integrates', 1), ('aggregate', 1), ('local', 1), ('information', 1), ('provides', 1), ('different', 1), ('viewpoint', 1), ('financial', 1), ('structural', 1), ('skill', 1), ('perspective', 1), ('respective', 1), ('stakeholder', 1), ('group', 1), ('aim', 1)]
[('smart', 2), ('learning', 2), ('ecosystem', 2), ('book', 1), ('gather', 1), ('contribution', 1), ('rd', 1), ('international', 1), ('conference', 1), ('regional', 1), ('development', 1), ('slerd', 1), ('held', 1), ('aalborg', 1), ('university', 1), ('denmark', 1), ('characterizes', 1)]
[('problem', 3), ('dynamic', 2), ('solving', 2), ('one', 2), ('programming', 1), ('efficient', 1), ('technique', 1), ('optimization', 1), ('based', 1), ('breaking', 1), ('initial', 1), ('simpler', 1), ('sub', 1), ('beginning', 1), ('simplest', 1), ('conventional', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('interoperability', 1), ('interiot', 1), ('collocated', 1), ('saseiot', 1), ('took', 1), ('place', 1), ('valencia', 1), ('spain', 1), ('november', 1), ('revised', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('wireless', 1), ('internet', 1), ('wicon', 1), ('held', 1), ('taipei', 1), ('taiwan', 1), ('october', 1), ('full', 1), ('paper', 1), ('selected', 1), ('submission', 1), ('grouped', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('quality', 1), ('reliability', 1), ('security', 1), ('robustness', 1), ('heterogeneous', 1), ('network', 1), ('qshine', 1), ('held', 1), ('ho', 1), ('chi', 1), ('minh', 1), ('city', 1), ('vietnam', 1), ('december', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('conference', 1), ('infrastructure', 1), ('service', 1), ('developing', 1), ('country', 1), ('africomm', 1), ('held', 1), ('dakar', 1), ('senegal', 1), ('november', 1), ('nbsp', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('technology', 1), ('interactive', 1), ('entertainment', 1), ('intetain', 1), ('held', 1), ('guimarães', 1), ('portugal', 1), ('november', 1), ('full', 1), ('paper', 1), ('selected', 1)]
[('conference', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('bio', 1), ('inspired', 1), ('information', 1), ('communication', 1), ('technology', 1), ('held', 1), ('pittsburgh', 1), ('pa', 1), ('usa', 1), ('march', 1), ('revised', 1), ('full', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('conference', 1), ('industrial', 1), ('network', 1), ('intelligent', 1), ('system', 1), ('iniscom', 1), ('held', 1), ('ho', 1), ('chi', 1), ('minh', 1), ('city', 1), ('vietnam', 1), ('august', 1), ('full', 1), ('paper', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('society', 1), ('future', 1), ('smart', 1), ('liveable', 1), ('city', 1), ('sc', 1), ('life', 1), ('took', 1), ('place', 1), ('braga', 1), ('portugal', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('thinternational', 1), ('cloud', 1), ('computing', 1), ('cloudcomp', 1), ('th', 1), ('international', 1), ('smart', 1), ('grid', 1), ('innovative', 1), ('frontier', 1), ('telecommunication', 1), ('smartgift', 1), ('held', 1)]
[('conference', 2), ('dione', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('data', 1), ('information', 1), ('online', 1), ('environment', 1), ('took', 1), ('place', 1), ('florianópolis', 1), ('brazil', 1), ('march', 1), ('handle', 1)]
[('data', 2), ('science', 2), ('big', 1), ('transforming', 1), ('world', 1), ('today', 1), ('way', 1), ('imagined', 1), ('beginning', 1), ('twenty', 1), ('first', 1), ('century', 1), ('accompanying', 1), ('wave', 1), ('innovation', 1), ('sparked', 1), ('advance', 1), ('healthcare', 1), ('engineering', 1), ('business', 1)]
[('conference', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('iot', 1), ('service', 1), ('iotaas', 1), ('took', 1), ('place', 1), ('sydney', 1), ('australia', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('held', 1)]
[('book', 2), ('aim', 1), ('provide', 1), ('refreshing', 1), ('friendly', 1), ('exciting', 1), ('manner', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('theoretical', 1), ('concept', 1), ('practical', 1), ('method', 1), ('applied', 1), ('obstetrics', 1), ('gynaecology', 1), ('follows', 1), ('nine', 1), ('half', 1), ('month', 1), ('journey', 1)]
[('database', 4), ('book', 1), ('present', 1), ('recent', 1), ('advance', 1), ('knowledge', 1), ('discovery', 1), ('kdd', 1), ('focus', 1), ('area', 1), ('market', 1), ('basket', 1), ('time', 1), ('stamped', 1), ('multiple', 1), ('related', 1), ('various', 1), ('interesting', 1), ('intelligent', 1), ('algorithm', 1), ('reported', 1)]
[('conference', 2), ('cloud', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('computing', 1), ('comp', 1), ('held', 1), ('wuhan', 1), ('china', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('chapter', 2), ('research', 1), ('book', 1), ('present', 1), ('specific', 1), ('multimedia', 1), ('system', 1), ('developed', 1), ('applied', 1), ('practice', 1), ('specifically', 1), ('consists', 1), ('editorial', 1), ('introductory', 1), ('six', 1), ('use', 1), ('multi', 1), ('attribute', 1), ('decision', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('context', 1), ('aware', 1), ('system', 1), ('application', 1), ('iccasa', 1), ('held', 1), ('phu', 1), ('quoc', 1), ('island', 1), ('vietnam', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('volume', 2), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('internet', 1), ('thing', 1), ('summit', 1), ('iot', 1), ('held', 1), ('rome', 1), ('italy', 1), ('october', 1), ('contains', 1), ('full', 1), ('paper', 1)]
[('volume', 2), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('internet', 1), ('thing', 1), ('summit', 1), ('iot', 1), ('held', 1), ('rome', 1), ('italy', 1), ('october', 1), ('contains', 1), ('revised', 1), ('full', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('mobile', 1), ('wireless', 1), ('middleware', 1), ('operating', 1), ('system', 1), ('application', 1), ('mobilware', 1), ('held', 1), ('hohhot', 1), ('china', 1), ('july', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('intelligence', 3), ('artificial', 2), ('book', 1), ('explores', 1), ('psychological', 1), ('impact', 1), ('advanced', 1), ('form', 1), ('live', 1), ('superior', 1), ('exposure', 1), ('highly', 1), ('developed', 1), ('ai', 1), ('system', 1), ('change', 1), ('human', 1)]
[('nbsp', 2), ('book', 1), ('present', 1), ('overview', 1), ('machine', 1), ('learning', 1), ('data', 1), ('mining', 1), ('technique', 1), ('used', 1), ('tracking', 1), ('preventing', 1), ('disease', 1), ('cover', 1), ('several', 1), ('aspect', 1), ('stress', 1), ('level', 1), ('identification', 1), ('person', 1)]
[('value', 2), ('viewed', 1), ('political', 1), ('lens', 1), ('act', 1), ('defining', 1), ('term', 1), ('natural', 1), ('language', 1), ('arguably', 1), ('transforms', 1), ('knowledge', 1), ('unique', 1), ('volume', 1), ('explores', 1), ('corporate', 1), ('military', 1), ('academic', 1), ('professional', 1), ('shaped', 1), ('effort', 1), ('define', 1), ('computer', 1)]
[('thesis', 1), ('shed', 1), ('new', 1), ('light', 1), ('worldwide', 1), ('first', 1), ('electrical', 1), ('manipulation', 1), ('single', 1), ('nuclear', 1), ('spin', 1), ('last', 1), ('four', 1), ('decade', 1), ('size', 1), ('bit', 1), ('smallest', 1), ('logical', 1), ('unit', 1), ('computer', 1), ('decreased', 1), ('order', 1), ('magnitude', 1)]
[('book', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('mobile', 1), ('network', 1), ('management', 1), ('monami', 1), ('held', 1), ('santander', 1), ('spain', 1), ('september', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('fish', 2), ('project', 2), ('bookgives', 1), ('start', 1), ('finish', 1), ('overview', 1), ('whole', 1), ('knowledge', 1), ('short', 1), ('chapter', 1), ('describing', 1), ('aspect', 1), ('knowledgeproject', 1), ('explored', 1), ('possibility', 1), ('big', 1), ('video', 1), ('data', 1), ('case', 1), ('fromundersea', 1)]
[('book', 1), ('present', 1), ('state', 1), ('art', 1), ('computationalattention', 1), ('model', 1), ('successfully', 1), ('tested', 1), ('diverse', 1), ('applicationareas', 1), ('build', 1), ('foundation', 1), ('artificial', 1), ('system', 1), ('efficientlyexplore', 1), ('analyze', 1), ('understand', 1), ('natural', 1), ('scene', 1)]
[('volume', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('first', 1), ('eai', 1), ('international', 1), ('summit', 1), ('smart', 1), ('city', 1), ('held', 1), ('bratislava', 1), ('slovakia', 1), ('toronto', 1), ('canada', 1), ('october', 1), ('carefully', 1), ('reviewed', 1), ('paper', 1), ('include', 1)]
[('book', 1), ('present', 1), ('collection', 1), ('contribution', 1), ('related', 1), ('logic', 1), ('applied', 1), ('paraconsistency', 1), ('moreover', 1), ('dedicated', 1), ('jair', 1), ('minoro', 1), ('abe', 1), ('occasion', 1), ('sixtieth', 1), ('birthday', 1), ('expert', 1), ('paraconsistent', 1)]
[('forensic', 3), ('book', 2), ('challenge', 2), ('digital', 2), ('science', 2), ('present', 1), ('recent', 1), ('application', 1), ('approach', 1), ('evolving', 1), ('covered', 1), ('cloud', 1), ('analysis', 1), ('applies', 1)]
[('quantum', 3), ('thesis', 1), ('offer', 1), ('comprehensive', 1), ('introduction', 1), ('surface', 1), ('acoustic', 1), ('wave', 1), ('regime', 1), ('address', 1), ('significant', 1), ('technological', 1), ('challenge', 1), ('developing', 1), ('scalable', 1), ('information', 1), ('processor', 1), ('based', 1), ('spin', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('technology', 1), ('healthcare', 1), ('healthyiot', 1), ('held', 1), ('västerås', 1), ('sweden', 1), ('october', 1), ('included', 1), ('first', 1), ('workshop', 1)]
[('image', 2), ('book', 1), ('introduces', 1), ('fundamental', 1), ('computer', 1), ('vision', 1), ('cv', 1), ('focus', 1), ('extracting', 1), ('useful', 1), ('information', 1), ('digital', 1), ('video', 1), ('including', 1), ('wealth', 1), ('method', 1), ('used', 1), ('detecting', 1), ('classifying', 1), ('object', 1), ('shape', 1)]
[('network', 2), ('new', 2), ('book', 1), ('collect', 1), ('contribution', 1), ('expert', 1), ('worldwide', 1), ('addressing', 1), ('recent', 1), ('scholarship', 1), ('social', 1), ('analysis', 1), ('influence', 1), ('spread', 1), ('link', 1), ('prediction', 1), ('dynamic', 1), ('biclustering', 1), ('delurking', 1), ('cover', 1), ('topic', 1), ('solution', 1)]
[('conference', 2), ('volume', 1), ('includes', 1), ('paper', 1), ('presented', 1), ('iih', 1), ('msp', 1), ('th', 1), ('international', 1), ('intelligent', 1), ('information', 1), ('hiding', 1), ('multimedia', 1), ('signal', 1), ('processing', 1), ('held', 1), ('august', 1), ('matsue', 1), ('shimane', 1), ('japan', 1), ('address', 1), ('topic', 1)]
[('book', 1), ('present', 1), ('collection', 1), ('contribution', 1), ('field', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('anns', 1), ('theme', 1), ('addressed', 1), ('multidisciplinary', 1), ('nature', 1), ('closely', 1), ('connected', 1), ('ultimate', 1), ('aim', 1), ('identify', 1), ('feature', 1), ('dynamic', 1), ('realistic', 1)]
[('swarm', 2), ('book', 1), ('examines', 1), ('bottom', 1), ('applicability', 1), ('intelligence', 1), ('solving', 1), ('multiple', 1), ('problem', 1), ('curve', 1), ('fitting', 1), ('image', 1), ('segmentation', 1), ('robotics', 1), ('compare', 1), ('capability', 1), ('better', 1), ('known', 1), ('bio', 1), ('inspired', 1), ('optimization', 1)]
[('channel', 2), ('book', 1), ('attempt', 1), ('address', 1), ('explore', 1), ('conceptualize', 1), ('epistemological', 1), ('paradigm', 1), ('sm', 1), ('alternative', 1), ('marketing', 1), ('combination', 1), ('existing', 1), ('traditional', 1), ('promotes', 1), ('multichannel', 1), ('strategy', 1), ('light', 1)]
[('communication', 2), ('objective', 1), ('springerbrief', 1), ('present', 1), ('security', 1), ('architecture', 1), ('incentive', 1), ('mechanism', 1), ('realize', 1), ('system', 1), ('availability', 1), ('enable', 1), ('device', 1), ('communicate', 1), ('directly', 1), ('improving', 1), ('resource', 1), ('utilization', 1)]
[('energy', 3), ('brief', 2), ('distributed', 2), ('resource', 2), ('focus', 1), ('stochastic', 1), ('optimization', 1), ('smart', 1), ('grid', 1), ('along', 1), ('review', 1), ('driver', 1), ('recent', 1), ('development', 1), ('towards', 1), ('present', 1), ('research', 1), ('challenge', 1)]
[('layout', 2), ('book', 1), ('innovative', 1), ('research', 1), ('using', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('anns', 1), ('conducted', 1), ('automate', 1), ('placement', 1), ('task', 1), ('analog', 1), ('integrated', 1), ('circuit', 1), ('design', 1), ('creating', 1), ('generalized', 1), ('model', 1), ('generate', 1), ('valid', 1), ('push', 1), ('button', 1), ('speed', 1)]
[('city', 2), ('book', 1), ('present', 1), ('comprehensive', 1), ('vision', 1), ('impact', 1), ('ict', 1), ('contemporary', 1), ('heritage', 1), ('public', 1), ('space', 1), ('meta', 1), ('urban', 1), ('metropolitan', 1), ('scale', 1), ('producing', 1), ('innovative', 1), ('perspective', 1), ('related', 1)]
[('book', 1), ('deal', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('several', 1), ('application', 1), ('organic', 1), ('text', 1), ('first', 1), ('page', 1), ('onwards', 1), ('rather', 1), ('collection', 1), ('article', 1), ('need', 1), ('idea', 1)]
[('compendium', 1), ('introduces', 1), ('game', 1), ('theory', 1), ('gamification', 1), ('number', 1), ('different', 1), ('domain', 1), ('describes', 1), ('professional', 1), ('application', 1), ('information', 1), ('system', 1), ('explains', 1), ('playful', 1), ('function', 1), ('implemented', 1), ('various', 1), ('context', 1), ('highlight', 1)]
[('online', 2), ('intermediary', 2), ('book', 1), ('investigates', 1), ('powerful', 1), ('role', 1), ('connect', 1), ('company', 1), ('end', 1), ('customer', 1), ('facilitate', 1), ('joint', 1), ('product', 1), ('innovation', 1), ('especially', 1), ('healthcare', 1), ('context', 1), ('deploy', 1), ('interactive', 1)]
[('control', 2), ('system', 2), ('book', 1), ('gather', 1), ('contribution', 1), ('fuzzy', 1), ('neural', 1), ('intelligent', 1), ('non', 1), ('linear', 1), ('dynamic', 1), ('cyber', 1), ('physical', 1), ('present', 1), ('latest', 1), ('theoretical', 1), ('practical', 1), ('result', 1), ('including', 1), ('numerous', 1), ('application', 1), ('computational', 1)]
[('unique', 1), ('text', 1), ('reference', 1), ('advocate', 1), ('novel', 1), ('forgetful', 1), ('approach', 1), ('dealing', 1), ('personal', 1), ('multimedia', 1), ('content', 1), ('long', 1), ('run', 1), ('inspired', 1), ('effectiveness', 1), ('human', 1), ('forgetting', 1), ('mechanism', 1), ('helping', 1), ('stay', 1), ('focused', 1), ('important', 1)]
[('volume', 3), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('conference', 1), ('finite', 1), ('complex', 1), ('application', 1), ('bergen', 1), ('june', 1), ('structured', 1), ('first', 1), ('collect', 1), ('focused', 1), ('invited', 1), ('paper', 1), ('reviewed', 1), ('contribution', 1)]
[('proceeding', 1), ('volume', 1), ('gather', 1), ('together', 1), ('selected', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('presented', 1), ('second', 1), ('edition', 1), ('xxvi', 1), ('international', 1), ('joint', 1), ('conference', 1), ('industrial', 1), ('engineering', 1), ('operation', 1), ('management', 1), ('ijcieom', 1), ('virtually', 1), ('held', 1), ('february', 1)]
[('edited', 1), ('collection', 1), ('approach', 1), ('field', 1), ('social', 1), ('robotics', 1), ('perspective', 1), ('cultural', 1), ('ecology', 1), ('fostering', 1), ('deeper', 1), ('examination', 1), ('reach', 1), ('robotic', 1), ('technology', 1), ('lived', 1), ('experience', 1), ('diverse', 1), ('human', 1), ('population', 1)]
[('data', 5), ('big', 2), ('essential', 1), ('key', 1), ('build', 1), ('smart', 1), ('world', 1), ('meaning', 1), ('streaming', 1), ('continuous', 1), ('integration', 1), ('large', 1), ('volume', 1), ('high', 1), ('velocity', 1), ('covering', 1), ('source', 1), ('final', 1), ('destination', 1), ('range', 1), ('mining', 1), ('analysis', 1)]
[('proceeding', 2), ('practical', 2), ('application', 2), ('computational', 2), ('biology', 2), ('bioinformatics', 2), ('present', 1), ('recent', 1), ('contains', 1), ('th', 1), ('international', 1), ('conference', 1), ('amp', 1), ('held', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('volume', 1), ('advance', 1), ('intelligent', 1), ('soft', 1), ('computing', 1), ('contains', 1), ('accepted', 1), ('paper', 1), ('presented', 1), ('computational', 1), ('intelligence', 1), ('security', 1), ('information', 1), ('system', 1), ('cisis', 1)]
[('ecosystem', 2), ('assessment', 2), ('management', 2), ('fuzzy', 1), ('system', 1), ('edited', 1), ('outcome', 1), ('rd', 1), ('international', 1), ('conference', 1), ('iceam', 1), ('workshop', 1), ('construction', 1), ('early', 1), ('warning', 1), ('platform', 1), ('eco', 1), ('tourism', 1), ('wcewpe', 1)]
[('intelligent', 2), ('ecc', 2), ('volume', 1), ('advance', 1), ('system', 1), ('computing', 1), ('contains', 1), ('accepted', 1), ('paper', 1), ('presented', 1), ('main', 1), ('track', 1), ('second', 1), ('euro', 1), ('china', 1), ('conference', 1), ('data', 1), ('analysis', 1), ('application', 1), ('aim', 1), ('provide', 1)]
[('computing', 2), ('conference', 2), ('volume', 1), ('advance', 1), ('intelligent', 1), ('system', 1), ('contains', 1), ('accepted', 1), ('paper', 1), ('presented', 1), ('icgec', 1), ('th', 1), ('international', 1), ('genetic', 1), ('evolutionary', 1), ('year', 1), ('technically', 1), ('co', 1), ('sponsored', 1)]
[('conference', 1), ('topic', 1), ('address', 1), ('different', 1), ('theoretical', 1), ('practicalaspects', 1), ('implementing', 1), ('solution', 1), ('intelligent', 1), ('system', 1), ('informaticsdisciplines', 1), ('including', 1), ('bioinformatics', 1), ('computer', 1), ('science', 1), ('medical', 1), ('informatics', 1), ('biology', 1), ('social', 1), ('study', 1)]
[('level', 3), ('book', 1), ('cover', 1), ('allaspects', 1), ('robot', 1), ('intelligence', 1), ('perception', 1), ('sensor', 1), ('reasoning', 1), ('atcognitive', 1), ('behavior', 1), ('planning', 1), ('execution', 1), ('low', 1), ('levelsegment', 1), ('machine', 1), ('present', 1), ('technology', 1)]
[('system', 2), ('book', 1), ('report', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('innovative', 1), ('interface', 1), ('emphasis', 1), ('lifecycle', 1), ('development', 1), ('human', 1), ('technology', 1), ('interaction', 1), ('especially', 1), ('case', 1), ('virtual', 1), ('augmented', 1), ('mixed', 1), ('reality', 1), ('describes', 1)]
[('book', 1), ('provides', 1), ('reader', 1), ('timely', 1), ('snapshot', 1), ('ergonomics', 1), ('research', 1), ('method', 1), ('applied', 1), ('design', 1), ('development', 1), ('prototyping', 1), ('evaluation', 1), ('training', 1), ('manufacturing', 1), ('product', 1), ('system', 1), ('service', 1), ('includes', 1), ('theoretical', 1)]
[('design', 3), ('book', 1), ('discus', 1), ('latest', 1), ('advance', 1), ('affective', 1), ('pleasurable', 1), ('report', 1), ('important', 1), ('theoretical', 1), ('practical', 1), ('issue', 1), ('covering', 1), ('wealth', 1), ('topic', 1), ('including', 1), ('aesthetic', 1), ('product', 1), ('system', 1), ('driven', 1), ('innovation', 1)]
[('book', 1), ('report', 1), ('new', 1), ('theory', 1), ('application', 1), ('field', 1), ('intelligent', 1), ('system', 1), ('computing', 1), ('cover', 1), ('computational', 1), ('artificial', 1), ('intelligence', 1), ('method', 1), ('advance', 1), ('computer', 1), ('vision', 1), ('current', 1), ('issue', 1), ('big', 1), ('data', 1), ('cloud', 1)]
[('robotics', 2), ('proceeding', 1), ('volume', 1), ('showcase', 1), ('latest', 1), ('achievement', 1), ('research', 1), ('development', 1), ('educational', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('education', 1), ('rie', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('april', 1), ('book', 1)]
[('soft', 2), ('computing', 2), ('volume', 1), ('advance', 1), ('intelligent', 1), ('contains', 1), ('accepted', 1), ('paper', 1), ('presented', 1), ('soco', 1), ('cisis', 1), ('iceute', 1), ('conference', 1), ('held', 1), ('beautiful', 1), ('historic', 1), ('city', 1), ('san', 1), ('sebastián', 1), ('spain', 1), ('october', 1)]
[('conference', 2), ('volume', 1), ('includes', 1), ('proceeding', 1), ('international', 1), ('information', 1), ('technology', 1), ('intelligent', 1), ('transportation', 1), ('system', 1), ('itits', 1), ('held', 1), ('xi', 1), ('december', 1), ('provided', 1), ('platform', 1)]
[('conference', 2), ('book', 1), ('feature', 1), ('paper', 1), ('presented', 1), ('international', 1), ('advance', 1), ('information', 1), ('communication', 1), ('technology', 1), ('icta', 1), ('held', 1), ('thai', 1), ('nguyen', 1), ('city', 1), ('vietnam', 1), ('december', 1), ('nbsp', 1), ('jointly', 1)]
[('book', 1), ('consists', 1), ('paper', 1), ('presented', 1), ('automation', 1), ('international', 1), ('conference', 1), ('held', 1), ('warsaw', 1), ('march', 1), ('discus', 1), ('research', 1), ('finding', 1), ('associated', 1), ('concept', 1), ('behind', 1), ('industry', 1), ('focus', 1), ('offering', 1), ('better', 1)]
[('modeling', 2), ('simulation', 2), ('human', 2), ('book', 1), ('focus', 1), ('computational', 1), ('research', 1), ('advance', 1), ('current', 1), ('state', 1), ('art', 1), ('regarding', 1), ('factor', 1), ('applied', 1), ('digital', 1), ('report', 1), ('cutting', 1), ('edge', 1), ('simulator', 1), ('virtual', 1)]
[('intelligence', 2), ('ami', 2), ('day', 2), ('ambient', 1), ('recent', 1), ('paradigm', 1), ('emerging', 1), ('artificial', 1), ('computer', 1), ('used', 1), ('proactive', 1), ('tool', 1), ('assist', 1), ('activity', 1), ('making', 1), ('life', 1), ('comfortable', 1), ('another', 1), ('main', 1), ('goal', 1)]
[('data', 2), ('book', 1), ('includes', 1), ('selected', 1), ('contribution', 1), ('related', 1), ('big', 1), ('networking', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('computing', 1), ('information', 1), ('technology', 1), ('ic', 1), ('held', 1), ('arnoma', 1), ('grand', 1), ('hotel', 1), ('bangkok', 1), ('thailand', 1), ('july', 1)]
[('csi', 2), ('book', 1), ('present', 1), ('fascinating', 1), ('state', 1), ('art', 1), ('collection', 1), ('paper', 1), ('recent', 1), ('advance', 1), ('human', 1), ('computer', 1), ('system', 1), ('interaction', 1), ('offer', 1), ('detailed', 1), ('description', 1), ('status', 1), ('quo', 1), ('field', 1), ('provides', 1), ('solid', 1), ('base', 1)]
[('system', 3), ('book', 1), ('timely', 1), ('report', 1), ('advanced', 1), ('method', 1), ('application', 1), ('computational', 1), ('intelligence', 1), ('cover', 1), ('long', 1), ('list', 1), ('interconnected', 1), ('research', 1), ('area', 1), ('fuzzy', 1), ('neural', 1), ('network', 1), ('evolutionary', 1), ('computation', 1), ('evolving', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('symposium', 1), ('intelligent', 1), ('system', 1), ('technology', 1), ('application', 1), ('ista', 1), ('september', 1), ('manipal', 1), ('karnataka', 1), ('india', 1), ('submission', 1)]
[('modeling', 2), ('simulation', 2), ('proceeding', 1), ('book', 1), ('report', 1), ('new', 1), ('innovative', 1), ('solution', 1), ('regarding', 1), ('methodology', 1), ('application', 1), ('includes', 1), ('set', 1), ('selected', 1), ('extended', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1)]
[('online', 2), ('field', 2), ('engineering', 2), ('today', 1), ('technology', 1), ('core', 1), ('society', 1), ('whole', 1), ('book', 1), ('discus', 1), ('fundamental', 1), ('application', 1), ('lesson', 1), ('learned', 1), ('remote', 1), ('virtual', 1), ('instrumentation', 1)]
[('future', 2), ('book', 1), ('provides', 1), ('state', 1), ('art', 1), ('intelligent', 1), ('method', 1), ('technique', 1), ('solving', 1), ('real', 1), ('world', 1), ('problem', 1), ('along', 1), ('vision', 1), ('research', 1), ('fifth', 1), ('technology', 1), ('conference', 1), ('organized', 1), ('virtually', 1), ('received', 1), ('total', 1)]
[('book', 1), ('composed', 1), ('paper', 1), ('written', 1), ('english', 1), ('accepted', 1), ('presentation', 1), ('discussion', 1), ('international', 1), ('conference', 1), ('information', 1), ('technology', 1), ('system', 1), ('icits', 1), ('held', 1), ('universidad', 1), ('estatal', 1), ('península', 1), ('de', 1), ('santa', 1), ('elena', 1)]
[('february', 2), ('book', 1), ('includes', 1), ('outcome', 1), ('th', 1), ('symposium', 1), ('modelowanie', 1), ('mechanice', 1), ('engineering', 1), ('modelling', 1), ('mechanic', 1), ('held', 1), ('ustroń', 1), ('international', 1), ('conference', 1), ('year', 1), ('old', 1), ('history', 1), ('organized', 1)]
[('international', 2), ('mosits', 2), ('book', 1), ('includes', 1), ('selection', 1), ('article', 1), ('conference', 1), ('information', 1), ('technology', 1), ('science', 1), ('held', 1), ('december', 1), ('izmailovo', 1), ('convention', 1), ('centre', 1), ('moscow', 1), ('russia', 1), ('forum', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('belief', 2), ('book', 1), ('feature', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('presented', 1), ('soft', 1), ('method', 1), ('probability', 1), ('statistic', 1), ('smps', 1), ('held', 1), ('conjunction', 1), ('function', 1)]
[('conference', 2), ('book', 1), ('present', 1), ('collection', 1), ('peer', 1), ('reviewed', 1), ('article', 1), ('second', 1), ('international', 1), ('intelligent', 1), ('system', 1), ('production', 1), ('engineering', 1), ('maintenance', 1), ('ispem', 1), ('organized', 1), ('faculty', 1), ('mechanical', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('th', 1), ('congress', 1), ('international', 1), ('ergonomics', 1), ('association', 1), ('iea', 1), ('held', 1), ('august', 1), ('florence', 1), ('italy', 1), ('highlighting', 1), ('latest', 1), ('theory', 1), ('model', 1), ('cutting', 1), ('edge', 1), ('technology', 1)]
[('research', 2), ('system', 2), ('book', 1), ('present', 1), ('latest', 1), ('trend', 1), ('approach', 1), ('computational', 1), ('intelligence', 1), ('application', 1), ('intelligent', 1), ('cover', 1), ('long', 1), ('list', 1), ('interconnected', 1), ('area', 1), ('fuzzy', 1), ('neural', 1), ('network', 1), ('evolutionary', 1)]
[('wcqr', 2), ('book', 1), ('includes', 1), ('selection', 1), ('paper', 1), ('presented', 1), ('third', 1), ('world', 1), ('conference', 1), ('qualitative', 1), ('research', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('october', 1), ('focused', 1), ('four', 1), ('main', 1), ('field', 1), ('application', 1), ('education', 1), ('health', 1)]
[('presented', 2), ('conference', 2), ('book', 1), ('includes', 1), ('innovative', 1), ('research', 1), ('work', 1), ('ico', 1), ('st', 1), ('international', 1), ('intelligent', 1), ('computing', 1), ('optimization', 1), ('held', 1), ('pattaya', 1), ('thailand', 1), ('october', 1), ('topic', 1), ('ranging', 1), ('power', 1)]
[('book', 1), ('highlight', 1), ('set', 1), ('selected', 1), ('revised', 1), ('extended', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('simulation', 1), ('modeling', 1), ('methodology', 1), ('technology', 1), ('application', 1), ('simultech', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('july', 1)]
[('th', 2), ('book', 1), ('present', 1), ('collection', 1), ('carefully', 1), ('selected', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('st', 1), ('international', 1), ('multi', 1), ('conference', 1), ('advanced', 1), ('computer', 1), ('system', 1), ('ac', 1), ('held', 1), ('międzyzdroje', 1), ('poland', 1), ('september', 1), ('goal', 1)]
[('intelligent', 2), ('china', 2), ('conference', 2), ('volume', 1), ('advance', 1), ('system', 1), ('computing', 1), ('highlight', 1), ('paper', 1), ('presented', 1), ('fifth', 1), ('euro', 1), ('data', 1), ('analysis', 1), ('application', 1), ('ecc', 1), ('held', 1), ('xi', 1), ('october', 1)]
[('decision', 2), ('special', 1), ('session', 1), ('economics', 1), ('decon', 1), ('scientific', 1), ('forum', 1), ('held', 1), ('annually', 1), ('focused', 1), ('sharing', 1), ('idea', 1), ('project', 1), ('research', 1), ('result', 1), ('model', 1), ('experience', 1), ('associated', 1), ('complexity', 1), ('behavioural', 1), ('process', 1)]
[('book', 1), ('gather', 1), ('paper', 1), ('presented', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('intelligent', 1), ('system', 1), ('sustainable', 1), ('development', 1), ('ai', 1), ('sd', 1), ('held', 1), ('tangier', 1), ('morocco', 1), ('july', 1), ('highlighting', 1), ('latest', 1), ('research', 1), ('advance', 1)]
[('book', 1), ('gather', 1), ('paper', 1), ('presented', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('intelligent', 1), ('system', 1), ('sustainable', 1), ('development', 1), ('ai', 1), ('sd', 1), ('held', 1), ('tangier', 1), ('morocco', 1), ('july', 1), ('highlighting', 1), ('latest', 1), ('research', 1), ('finding', 1)]
[('research', 2), ('aim', 1), ('book', 1), ('provide', 1), ('latest', 1), ('finding', 1), ('innovative', 1), ('result', 1), ('method', 1), ('development', 1), ('technique', 1), ('theoretical', 1), ('practical', 1), ('perspective', 1), ('related', 1), ('emerging', 1), ('area', 1), ('web', 1), ('computing', 1), ('intelligent', 1), ('system', 1)]
[('worldcist', 2), ('book', 1), ('includes', 1), ('selection', 1), ('article', 1), ('world', 1), ('conference', 1), ('information', 1), ('system', 1), ('technology', 1), ('held', 1), ('april', 1), ('la', 1), ('toja', 1), ('spain', 1), ('global', 1), ('forum', 1), ('researcher', 1), ('practitioner', 1)]
[('book', 1), ('focus', 1), ('modeling', 1), ('simulation', 1), ('research', 1), ('advance', 1), ('current', 1), ('state', 1), ('art', 1), ('regarding', 1), ('human', 1), ('factor', 1), ('area', 1), ('report', 1), ('cutting', 1), ('edge', 1), ('simulator', 1), ('virtual', 1), ('augmented', 1), ('reality', 1), ('multisensory', 1), ('environment', 1)]
[('design', 3), ('book', 1), ('discus', 1), ('latest', 1), ('advance', 1), ('affective', 1), ('pleasurable', 1), ('report', 1), ('important', 1), ('theoretical', 1), ('practical', 1), ('issue', 1), ('covering', 1), ('wealth', 1), ('topic', 1), ('including', 1), ('aesthetic', 1), ('product', 1), ('system', 1), ('driven', 1), ('innovation', 1)]
[('management', 2), ('book', 1), ('gather', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('science', 1), ('engineering', 1), ('icmsem', 1), ('held', 1), ('brock', 1), ('university', 1), ('ontario', 1), ('canada', 1), ('august', 1), ('exploring', 1), ('latest', 1), ('idea', 1)]
[('system', 2), ('engineering', 2), ('book', 1), ('focus', 1), ('novel', 1), ('design', 1), ('approach', 1), ('including', 1), ('theory', 1), ('best', 1), ('practice', 1), ('promoting', 1), ('better', 1), ('integration', 1), ('cover', 1), ('range', 1), ('hot', 1), ('topic', 1), ('related', 1), ('development', 1)]
[('nbsp', 5), ('innovation', 2), ('biomedical', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('engineering', 1), ('ibe', 1), ('conference', 1), ('held', 1), ('katowice', 1), ('poland', 1), ('october', 1), ('discus', 1), ('recent', 1), ('research', 1)]
[('intelligence', 2), ('approach', 2), ('book', 1), ('highlight', 1), ('latest', 1), ('research', 1), ('computational', 1), ('application', 1), ('cover', 1), ('conventional', 1), ('trending', 1), ('individual', 1), ('chapter', 1), ('fuzzy', 1), ('system', 1), ('robotics', 1), ('deep', 1), ('learning', 1)]
[('three', 1), ('volume', 1), ('book', 1), ('highlight', 1), ('significant', 1), ('advance', 1), ('development', 1), ('new', 1), ('information', 1), ('system', 1), ('technology', 1), ('architecture', 1), ('help', 1), ('reader', 1), ('solve', 1), ('specific', 1), ('research', 1), ('analytical', 1), ('problem', 1), ('glean', 1), ('useful', 1), ('knowledge', 1), ('business', 1)]
[('research', 2), ('book', 1), ('dedicated', 1), ('auxiliary', 1), ('literature', 1), ('academic', 1), ('staff', 1), ('university', 1), ('institute', 1), ('student', 1), ('transport', 1), ('teaching', 1), ('aim', 1), ('conference', 1), ('present', 1), ('achievement', 1), ('national', 1), ('foreign', 1)]
[('book', 2), ('present', 1), ('real', 1), ('world', 1), ('problem', 1), ('exploratory', 1), ('research', 1), ('computational', 1), ('statistic', 1), ('mathematical', 1), ('modeling', 1), ('artificial', 1), ('intelligence', 1), ('software', 1), ('engineering', 1), ('context', 1), ('intelligent', 1), ('system', 1), ('constitutes', 1), ('refereed', 1)]
[('book', 1), ('present', 1), ('real', 1), ('world', 1), ('problem', 1), ('exploratory', 1), ('research', 1), ('describes', 1), ('novel', 1), ('approach', 1), ('software', 1), ('engineering', 1), ('cybernetics', 1), ('algorithm', 1), ('context', 1), ('intelligent', 1), ('system', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1)]
[('application', 2), ('book', 1), ('discus', 1), ('various', 1), ('aspect', 1), ('real', 1), ('world', 1), ('optimization', 1), ('algorithm', 1), ('presenting', 1), ('insight', 1), ('th', 1), ('international', 1), ('conference', 1), ('harmony', 1), ('search', 1), ('soft', 1), ('computing', 1), ('held', 1), ('kunming', 1), ('china', 1), ('july', 1)]
[('advanced', 2), ('intelligent', 2), ('system', 2), ('book', 1), ('contains', 1), ('latest', 1), ('research', 1), ('applied', 1), ('field', 1), ('education', 1), ('presented', 1), ('second', 1), ('edition', 1), ('international', 1), ('conference', 1), ('sustainable', 1), ('development', 1), ('ai', 1), ('sd', 1)]
[('proceeding', 1), ('book', 1), ('present', 1), ('state', 1), ('art', 1), ('research', 1), ('innovation', 1), ('computational', 1), ('vision', 1), ('bio', 1), ('inspired', 1), ('technique', 1), ('due', 1), ('rapid', 1), ('advance', 1), ('emerging', 1), ('information', 1), ('communication', 1), ('computing', 1), ('technology', 1), ('internet', 1), ('thing', 1)]
[('research', 3), ('book', 1), ('present', 1), ('advanced', 1), ('study', 1), ('topic', 1), ('artificial', 1), ('intelligence', 1), ('component', 1), ('social', 1), ('economic', 1), ('relation', 1), ('process', 1), ('gather', 1), ('paper', 1), ('international', 1), ('practice', 1), ('conference', 1), ('st', 1), ('century', 1)]
[('big', 2), ('data', 2), ('analysis', 2), ('edited', 1), ('volume', 1), ('devoted', 1), ('machine', 1), ('learning', 1), ('standpoint', 1), ('presented', 1), ('eminent', 1), ('researcher', 1), ('area', 1), ('demonstrates', 1), ('open', 1), ('new', 1), ('research', 1), ('problem', 1), ('either', 1)]
[('high', 2), ('performance', 2), ('book', 1), ('present', 1), ('state', 1), ('art', 1), ('computing', 1), ('simulation', 1), ('modern', 1), ('supercomputer', 1), ('architecture', 1), ('cover', 1), ('trend', 1), ('hardware', 1), ('software', 1), ('development', 1), ('general', 1), ('specifically', 1), ('future', 1), ('system', 1)]
[('gmcr', 2), ('cutting', 1), ('edge', 1), ('book', 1), ('present', 1), ('theory', 1), ('practice', 1), ('nbsp', 1), ('graph', 1), ('model', 1), ('conflict', 1), ('resolution', 1), ('used', 1), ('strategically', 1), ('investigating', 1), ('dispute', 1), ('field', 1), ('enable', 1), ('informed', 1), ('decision', 1), ('making', 1), ('clearly', 1), ('explains', 1)]
[('control', 2), ('book', 1), ('examines', 1), ('methodological', 1), ('foundation', 1), ('big', 1), ('data', 1), ('driven', 1), ('world', 1), ('formulates', 1), ('concept', 1), ('within', 1), ('framework', 1), ('modern', 1), ('method', 1), ('theory', 1), ('approach', 1), ('peculiarity', 1), ('technology', 1), ('specific', 1), ('sphere', 1)]
[('computational', 2), ('policy', 2), ('advance', 1), ('praise', 1), ('indian', 1), ('mujahideen', 1), ('analysis', 1), ('public', 1), ('book', 1), ('present', 1), ('highly', 1), ('innovative', 1), ('approach', 1), ('analyzing', 1), ('strategic', 1), ('behavior', 1), ('terrorist', 1), ('group', 1), ('formulating', 1), ('counter', 1), ('terrorism', 1)]
[('concept', 1), ('centrality', 1), ('diversity', 1), ('highly', 1), ('important', 1), ('search', 1), ('algorithm', 1), ('play', 1), ('central', 1), ('role', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('machine', 1), ('learning', 1), ('ml', 1), ('social', 1), ('network', 1), ('pattern', 1), ('recognition', 1), ('work', 1), ('examines', 1)]
[('nbsp', 8), ('suboptimal', 2), ('model', 2), ('mpc', 2), ('book', 1), ('thoroughly', 1), ('discus', 1), ('computationally', 1), ('efficient', 1), ('predictive', 1), ('control', 1), ('technique', 1), ('based', 1), ('neural', 1), ('subject', 1), ('treated', 1), ('include', 1), ('type', 1)]
[('solution', 2), ('book', 1), ('delf', 1), ('various', 1), ('paradigm', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('support', 1), ('vector', 1), ('machine', 1), ('wavelet', 1), ('transforms', 1), ('evolutionary', 1), ('computing', 1), ('swarm', 1), ('intelligence', 1), ('last', 1), ('decade', 1), ('novel', 1), ('technology', 1), ('based', 1), ('human', 1)]
[('method', 2), ('fault', 2), ('diagnosis', 2), ('multimode', 2), ('book', 1), ('examines', 1), ('recent', 1), ('data', 1), ('driven', 1), ('continuous', 1), ('process', 1), ('formalizes', 1), ('generalizes', 1), ('systematically', 1), ('present', 1), ('main', 1), ('concept', 1), ('approach', 1), ('required', 1), ('design', 1)]
[('cloud', 3), ('generic', 2), ('practice', 1), ('design', 1), ('architecture', 1), ('varies', 1), ('among', 1), ('provider', 1), ('present', 1), ('evaluation', 1), ('framework', 1), ('performance', 1), ('availability', 1), ('reliability', 1), ('characteristic', 1), ('various', 1), ('platform', 1), ('describe', 1)]
[('economy', 2), ('finance', 2), ('banking', 2), ('sector', 2), ('asean', 2), ('year', 2), ('book', 1), ('present', 1), ('main', 1), ('idea', 1), ('shifting', 1), ('among', 1), ('country', 1), ('new', 1), ('paradigm', 1), ('region', 1), ('growing', 1)]
[('firewall', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('depth', 1), ('study', 1), ('automated', 1), ('policy', 1), ('analysis', 1), ('designing', 1), ('configuring', 1), ('managing', 1), ('distributed', 1), ('large', 1), ('scale', 1), ('enterpriser', 1), ('network', 1), ('present', 1), ('methodology', 1), ('technique', 1), ('tool', 1)]
[('blind', 2), ('image', 2), ('deconvolution', 1), ('classical', 1), ('processing', 1), ('problem', 1), ('investigated', 1), ('large', 1), ('number', 1), ('researcher', 1), ('last', 1), ('four', 1), ('decade', 1), ('purpose', 1), ('monograph', 1), ('propose', 1), ('yet', 1), ('another', 1), ('method', 1), ('restoration', 1)]
[('computer', 3), ('science', 2), ('based', 1), ('rigorous', 1), ('selection', 1), ('submission', 1), ('th', 1), ('international', 1), ('symposium', 1), ('information', 1), ('iscis', 1), ('book', 1), ('includes', 1), ('recent', 1), ('idea', 1), ('technical', 1), ('result', 1), ('system', 1)]
[('computing', 2), ('technology', 2), ('goal', 1), ('book', 1), ('crystallize', 1), ('emerging', 1), ('mobile', 1), ('trend', 1), ('positive', 1), ('effort', 1), ('focus', 1), ('promising', 1), ('solution', 1), ('service', 1), ('many', 1), ('toy', 1), ('built', 1), ('today', 1), ('increasingly', 1), ('using', 1)]
[('book', 1), ('present', 1), ('basic', 1), ('idea', 1), ('machine', 1), ('learning', 1), ('way', 1), ('easy', 1), ('understand', 1), ('providing', 1), ('hand', 1), ('practical', 1), ('advice', 1), ('using', 1), ('simple', 1), ('example', 1), ('motivating', 1), ('student', 1), ('discussion', 1), ('interesting', 1), ('application', 1), ('main', 1), ('topic', 1), ('include', 1)]
[('book', 2), ('mobile', 2), ('computing', 2), ('technology', 2), ('goal', 1), ('crystallize', 1), ('emerging', 1), ('trend', 1), ('focusing', 1), ('promising', 1), ('solution', 1), ('service', 1), ('provide', 1), ('clear', 1), ('proof', 1), ('playing', 1), ('increasingly', 1)]
[('book', 1), ('introduces', 1), ('novel', 1), ('technique', 1), ('algorithm', 1), ('necessary', 1), ('support', 1), ('formation', 1), ('social', 1), ('network', 1), ('concept', 1), ('link', 1), ('prediction', 1), ('graph', 1), ('pattern', 1), ('recommendation', 1), ('system', 1), ('based', 1), ('user', 1), ('reputation', 1), ('strategic', 1), ('partner', 1), ('selection', 1)]
[('big', 2), ('data', 2), ('business', 2), ('book', 1), ('present', 1), ('different', 1), ('use', 1), ('case', 1), ('application', 1), ('related', 1), ('practical', 1), ('experience', 1), ('many', 1), ('today', 1), ('increasingly', 1), ('interested', 1), ('utilizing', 1), ('technology', 1), ('supporting', 1), ('intelligence', 1)]
[('unknown', 2), ('control', 2), ('book', 1), ('discus', 1), ('uncertain', 1), ('threat', 1), ('caused', 1), ('attack', 1), ('based', 1), ('vulnerability', 1), ('backdoor', 1), ('information', 1), ('system', 1), ('device', 1), ('software', 1), ('hardware', 1), ('nbsp', 1), ('generalized', 1), ('robustness', 1), ('architecture', 1)]
[('predicted', 1), ('robot', 1), ('surpass', 1), ('human', 1), ('intelligence', 1), ('within', 1), ('next', 1), ('fifty', 1), ('year', 1), ('increasing', 1), ('speed', 1), ('advance', 1), ('technology', 1), ('neuroscience', 1), ('coupled', 1), ('creation', 1), ('super', 1), ('computer', 1), ('enhanced', 1), ('body', 1), ('part', 1), ('artificial', 1)]
[('bent', 2), ('book', 1), ('give', 1), ('detailed', 1), ('survey', 1), ('main', 1), ('result', 1), ('function', 1), ('finite', 1), ('field', 1), ('present', 1), ('systematic', 1), ('overview', 1), ('generalization', 1), ('variation', 1), ('application', 1), ('considers', 1), ('open', 1), ('problem', 1), ('classification', 1), ('systematization', 1)]
[('focusingon', 1), ('five', 1), ('main', 1), ('group', 1), ('interdisciplinary', 1), ('problem', 1), ('book', 1), ('cover', 1), ('widerange', 1), ('topic', 1), ('mathematical', 1), ('modeling', 1), ('computational', 1), ('science', 1), ('appliedmathematics', 1), ('present', 1), ('wealth', 1), ('new', 1), ('result', 1), ('development', 1)]
[('computing', 2), ('book', 1), ('help', 1), ('future', 1), ('scientist', 1), ('become', 1), ('intelligent', 1), ('user', 1), ('technology', 1), ('practice', 1), ('science', 1), ('content', 1), ('suitable', 1), ('introductory', 1), ('course', 1), ('foundation', 1), ('specific', 1), ('application', 1), ('computer', 1)]
[('textbook', 1), ('provides', 1), ('reader', 1), ('tool', 1), ('technique', 1), ('case', 1), ('required', 1), ('excel', 1), ('modern', 1), ('artificial', 1), ('intelligence', 1), ('method', 1), ('embrace', 1), ('family', 1), ('neural', 1), ('network', 1), ('fuzzy', 1), ('system', 1), ('evolutionary', 1), ('computing', 1), ('addition', 1), ('field', 1)]
[('digital', 3), ('business', 3), ('book', 2), ('edited', 1), ('present', 1), ('contribution', 1), ('three', 1), ('different', 1), ('area', 1), ('cloud', 1), ('computing', 1), ('mess', 1), ('algorithm', 1), ('single', 1), ('platform', 1), ('divided', 1), ('four', 1), ('section', 1), ('negetiveemoji', 1), ('transformation', 1)]
[('international', 2), ('conference', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('th', 1), ('global', 1), ('research', 1), ('education', 1), ('inter', 1), ('academia', 1), ('held', 1), ('kaunas', 1), ('lithuania', 1), ('september', 1), ('main', 1), ('goal', 1), ('provide', 1), ('forum', 1)]
[('book', 1), ('feature', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('presented', 1), ('second', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('renewable', 1), ('energetic', 1), ('system', 1), ('ic', 1), ('aire', 1), ('held', 1), ('november', 1), ('high', 1), ('school', 1), ('commerce', 1), ('esc', 1), ('koléa', 1), ('tipaza', 1)]
[('research', 2), ('machine', 2), ('learning', 2), ('computer', 2), ('vision', 2), ('book', 1), ('compiles', 1), ('leading', 1), ('development', 1), ('explainable', 1), ('interpretable', 1), ('method', 1), ('context', 1), ('progress', 1), ('pattern', 1), ('recognition', 1), ('led', 1)]
[('online', 2), ('science', 2), ('book', 1), ('explores', 1), ('remarkable', 1), ('sociocultural', 1), ('convergence', 1), ('multiplayer', 1), ('game', 1), ('virtual', 1), ('world', 1), ('unification', 1), ('computer', 1), ('social', 1), ('humanity', 1), ('nbsp', 1), ('emergence', 1), ('medium', 1), ('provides', 1)]
[('textbook', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('nature', 1), ('inspired', 1), ('metaheuristic', 1), ('method', 1), ('search', 1), ('optimization', 1), ('including', 1), ('latest', 1), ('trend', 1), ('evolutionary', 1), ('algorithm', 1), ('form', 1), ('natural', 1), ('computing', 1), ('nbsp', 1), ('different', 1), ('type', 1)]
[('disruption', 2), ('take', 2), ('book', 1), ('explores', 1), ('factor', 1), ('make', 1), ('digital', 1), ('possible', 1), ('effect', 1), ('existing', 1), ('business', 1), ('model', 1), ('look', 1), ('industry', 1), ('susceptible', 1), ('highlight', 1), ('executive', 1)]
[('paper', 2), ('volume', 1), ('refereed', 1), ('presented', 1), ('ai', 1), ('thirty', 1), ('sixth', 1), ('sgai', 1), ('international', 1), ('conference', 1), ('innovative', 1), ('technique', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('held', 1), ('cambridge', 1), ('december', 1), ('technical', 1)]
[('conference', 2), ('book', 1), ('includes', 1), ('scientific', 1), ('result', 1), ('fourth', 1), ('edition', 1), ('international', 1), ('intelligent', 1), ('computing', 1), ('optimization', 1), ('took', 1), ('place', 1), ('december', 1), ('via', 1), ('zoom', 1), ('objective', 1), ('celebrate', 1), ('compassion', 1)]
[('data', 3), ('actionable', 2), ('book', 1), ('focus', 1), ('major', 1), ('challenge', 1), ('newly', 1), ('created', 1), ('scientific', 1), ('domain', 1), ('known', 1), ('science', 1), ('turning', 1), ('knowledge', 1), ('order', 1), ('exploit', 1), ('increasing', 1), ('volume', 1), ('deal', 1), ('inherent', 1), ('complexity', 1)]
[('network', 2), ('information', 2), ('book', 1), ('cover', 1), ('theory', 1), ('design', 1), ('application', 1), ('computer', 1), ('distributed', 1), ('computing', 1), ('system', 1), ('today', 1), ('going', 1), ('rapid', 1), ('evolution', 1), ('many', 1), ('emerging', 1), ('area', 1), ('networking', 1)]
[('book', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('latest', 1), ('advance', 1), ('trend', 1), ('information', 1), ('technology', 1), ('science', 1), ('engineering', 1), ('specifically', 1), ('address', 1), ('number', 1), ('broad', 1), ('theme', 1), ('including', 1), ('multi', 1), ('modal', 1), ('informatics', 1), ('data', 1), ('mining', 1), ('agent', 1), ('based', 1)]
[('online', 2), ('internet', 2), ('thing', 2), ('nowadays', 1), ('technology', 1), ('core', 1), ('field', 1), ('engineering', 1), ('whole', 1), ('society', 1), ('inseparable', 1), ('connected', 1), ('example', 1), ('industrial', 1), ('industry', 1), ('biomedical', 1)]
[('textbook', 1), ('integrates', 1), ('important', 1), ('mathematical', 1), ('foundation', 1), ('efficient', 1), ('computational', 1), ('algorithm', 1), ('applied', 1), ('statistical', 1), ('inference', 1), ('technique', 1), ('cutting', 1), ('edge', 1), ('machine', 1), ('learning', 1), ('approach', 1), ('address', 1), ('wide', 1), ('range', 1), ('crucial', 1), ('biomedical', 1), ('informatics', 1)]
[('new', 2), ('pioneering', 1), ('text', 1), ('reference', 1), ('explores', 1), ('innovative', 1), ('mode', 1), ('computation', 1), ('provide', 1), ('exciting', 1), ('direction', 1), ('future', 1), ('development', 1), ('music', 1), ('industry', 1), ('guiding', 1), ('reader', 1), ('latest', 1), ('research', 1), ('emerging', 1), ('interdisciplinary', 1)]
[('information', 2), ('bringing', 1), ('together', 1), ('theoretical', 1), ('empirical', 1), ('study', 1), ('journal', 1), ('technology', 1), ('book', 1), ('provides', 1), ('definitive', 1), ('guide', 1), ('research', 1), ('discovered', 1), ('growing', 1), ('global', 1), ('sourcing', 1), ('phenomenon', 1), ('paying', 1), ('particular', 1), ('attention', 1)]
[('intelligent', 2), ('system', 2), ('proceeding', 1), ('sai', 1), ('conference', 1), ('intellisys', 1), ('offer', 1), ('remarkable', 1), ('collection', 1), ('chapter', 1), ('wide', 1), ('range', 1), ('topic', 1), ('artificial', 1), ('intelligence', 1), ('application', 1), ('real', 1), ('world', 1)]
[('help', 2), ('create', 2), ('design', 2), ('idea', 2), ('book', 1), ('describes', 1), ('structured', 1), ('sketching', 1), ('methodology', 1), ('alternative', 1), ('sketch', 1), ('paper', 1), ('five', 1), ('sheet', 1), ('method', 1), ('act', 1), ('check', 1), ('list', 1), ('task', 1), ('think', 1), ('problem', 1), ('new', 1)]
[('reality', 2), ('volume', 1), ('virtual', 1), ('augmented', 1), ('vr', 1), ('ar', 1), ('gamification', 1), ('cultural', 1), ('heritage', 1), ('offer', 1), ('insightful', 1), ('introduction', 1), ('theory', 1), ('development', 1), ('recent', 1), ('application', 1), ('trend', 1), ('enabling', 1), ('technology', 1), ('mixed', 1), ('gamified', 1)]
[('method', 2), ('book', 1), ('discus', 1), ('variety', 1), ('outlier', 1), ('ensemble', 1), ('organizes', 1), ('specific', 1), ('principle', 1), ('accuracy', 1), ('improvement', 1), ('achieved', 1), ('addition', 1), ('cover', 1), ('technique', 1), ('made', 1), ('effective', 1)]
[('book', 2), ('system', 2), ('introduces', 1), ('reader', 1), ('selected', 1), ('issue', 1), ('distributed', 1), ('primarily', 1), ('focus', 1), ('principle', 1), ('technical', 1), ('detail', 1), ('though', 1), ('discussed', 1), ('based', 1), ('existing', 1), ('von', 1), ('neumann', 1), ('computer', 1), ('architecture', 1), ('touch', 1)]
[('model', 2), ('based', 2), ('book', 1), ('focus', 1), ('methodological', 1), ('treatment', 1), ('uml', 1), ('address', 1), ('three', 1), ('core', 1), ('topic', 1), ('software', 1), ('development', 1), ('code', 1), ('generation', 1), ('systematic', 1), ('testing', 1), ('program', 1), ('using', 1), ('definition', 1), ('test', 1), ('case', 1), ('evolutionary', 1)]
[('new', 1), ('technological', 1), ('challenge', 1), ('perpetually', 1), ('arising', 1), ('artificial', 1), ('intelligence', 1), ('research', 1), ('interest', 1), ('focusing', 1), ('incorporation', 1), ('improvement', 1), ('ability', 1), ('machine', 1), ('effort', 1), ('make', 1), ('efficient', 1), ('useful', 1), ('recent', 1), ('report', 1)]
[('economic', 2), ('model', 2), ('author', 1), ('introduce', 1), ('quantitative', 1), ('qualitative', 1), ('optimization', 1), ('tool', 1), ('selection', 1), ('long', 1), ('term', 1), ('cloud', 1), ('service', 1), ('request', 1), ('fit', 1), ('almost', 1), ('intuitively', 1), ('way', 1), ('business', 1), ('usually', 1), ('done', 1), ('maximize', 1)]
[('goal', 1), ('volume', 1), ('geometric', 1), ('algebra', 1), ('computer', 1), ('vision', 1), ('graphic', 1), ('nbsp', 1), ('neural', 1), ('computing', 1), ('present', 1), ('unified', 1), ('mathematical', 1), ('treatment', 1), ('diverse', 1), ('problem', 1), ('general', 1), ('domain', 1), ('artificial', 1), ('intelligence', 1), ('associated', 1), ('field', 1), ('using', 1)]
[('nbsp', 3), ('book', 2), ('crowdsourced', 2), ('sensor', 2), ('service', 2), ('develops', 1), ('cloud', 1), ('composition', 1), ('framework', 1), ('taking', 1), ('account', 1), ('spatio', 1), ('temporal', 1), ('aspect', 1), ('unfolds', 1), ('new', 1), ('horizon', 1), ('oriented', 1), ('computing', 1), ('towards', 1), ('direction', 1)]
[('book', 1), ('cover', 1), ('state', 1), ('art', 1), ('deep', 1), ('neural', 1), ('network', 1), ('based', 1), ('method', 1), ('noise', 1), ('robustness', 1), ('distant', 1), ('speech', 1), ('recognition', 1), ('application', 1), ('provides', 1), ('insight', 1), ('detailed', 1), ('description', 1), ('new', 1), ('concept', 1), ('key', 1), ('technology', 1)]
[('constraint', 2), ('reasoning', 2), ('first', 1), ('book', 1), ('presenting', 1), ('broad', 1), ('overview', 1), ('parallelism', 1), ('based', 1), ('formalism', 1), ('recent', 1), ('year', 1), ('increasing', 1), ('number', 1), ('contribution', 1), ('made', 1), ('scaling', 1), ('thanks', 1), ('parallel', 1), ('architecture', 1)]
[('book', 2), ('explores', 1), ('inductive', 1), ('inference', 1), ('using', 1), ('minimum', 1), ('message', 1), ('length', 1), ('mml', 1), ('principle', 1), ('bayesian', 1), ('method', 1), ('realisation', 1), ('ockham', 1), ('razor', 1), ('based', 1), ('information', 1), ('theory', 1), ('accompanied', 1), ('library', 1), ('software', 1), ('assist', 1)]
[('image', 3), ('book', 1), ('present', 1), ('contribution', 1), ('field', 1), ('computational', 1), ('intelligence', 1), ('purpose', 1), ('analysis', 1), ('chapter', 1), ('discus', 1), ('problem', 1), ('segmentation', 1), ('edge', 1), ('detection', 1), ('face', 1), ('recognition', 1), ('feature', 1), ('extraction', 1), ('contrast', 1)]
[('software', 4), ('process', 4), ('book', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('field', 1), ('covering', 1), ('particular', 1), ('following', 1), ('essential', 1), ('topic', 1), ('modelling', 1), ('lifecycle', 1), ('model', 1), ('management', 1), ('deployment', 1)]
[('audio', 2), ('visual', 2), ('programmer', 2), ('book', 1), ('innovative', 1), ('introduction', 1), ('python', 1), ('capability', 1), ('beginning', 1), ('resource', 1), ('expert', 1), ('interest', 1), ('anyone', 1), ('involved', 1), ('music', 1), ('structured', 1), ('around', 1), ('four', 1), ('extensible', 1)]
[('uniquely', 1), ('human', 1), ('factor', 1), ('finding', 1), ('using', 1), ('information', 1), ('produce', 1), ('new', 1), ('knowledge', 1), ('underlying', 1), ('aspect', 1), ('thinking', 1), ('imitated', 1), ('ai', 1), ('equipped', 1), ('machine', 1), ('increasingly', 1), ('dominate', 1), ('life', 1), ('book', 1)]
[('paper', 2), ('challenge', 2), ('book', 1), ('present', 1), ('collection', 1), ('research', 1), ('address', 1), ('develop', 1), ('software', 1), ('principled', 1), ('way', 1), ('particular', 1), ('enables', 1), ('reasoning', 1), ('individual', 1), ('approach', 1), ('various', 1), ('perspective', 1), ('including', 1)]
[('present', 2), ('chapter', 2), ('edited', 1), ('volume', 1), ('best', 1), ('presented', 1), ('international', 1), ('conference', 1), ('computer', 1), ('application', 1), ('icca', 1), ('held', 1), ('dubai', 1), ('united', 1), ('arab', 1), ('emirate', 1), ('september', 1), ('selected', 1), ('new', 1), ('advance', 1), ('digital', 1)]
[('operads', 2), ('algebraic', 2), ('operation', 2), ('device', 1), ('offering', 1), ('formalization', 1), ('concept', 1), ('several', 1), ('input', 1), ('output', 1), ('naturally', 1), ('composed', 1), ('form', 1), ('nbsp', 1), ('complex', 1), ('one', 1), ('coming', 1), ('historically', 1), ('topology', 1)]
[('software', 2), ('book', 1), ('address', 1), ('architect', 1), ('developer', 1), ('need', 1), ('know', 1), ('order', 1), ('build', 1), ('application', 1), ('based', 1), ('blockchain', 1), ('technology', 1), ('offering', 1), ('architectural', 1), ('view', 1), ('system', 1), ('make', 1), ('beneficial', 1), ('use', 1), ('blockchains', 1), ('provides', 1)]
[('cloud', 2), ('ecosystem', 2), ('service', 2), ('book', 1), ('combine', 1), ('three', 1), ('dimension', 1), ('technology', 1), ('society', 1), ('economy', 1), ('explore', 1), ('advent', 1), ('today', 1), ('successor', 1), ('older', 1), ('based', 1), ('network', 1), ('describes', 1), ('shifting', 1)]
[('function', 2), ('highly', 1), ('comprehensive', 1), ('handbook', 1), ('provides', 1), ('substantial', 1), ('advance', 1), ('computation', 1), ('elementary', 1), ('special', 1), ('mathematics', 1), ('extending', 1), ('coverage', 1), ('major', 1), ('programming', 1), ('language', 1), ('beyond', 1), ('international', 1), ('standard', 1)]
[('nbsp', 9), ('book', 1), ('explores', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('leading', 1), ('increase', 1), ('autonomy', 1), ('machine', 1), ('robot', 1), ('offering', 1), ('opportunity', 1), ('expanded', 1), ('uncertain', 1), ('impact', 1)]
[('text', 2), ('focus', 1), ('textbook', 1), ('meaning', 1), ('linguistic', 1), ('expression', 1), ('typically', 1), ('full', 1), ('sentence', 1), ('longer', 1), ('author', 1), ('describes', 1), ('conceptual', 1), ('formal', 1), ('tool', 1), ('required', 1), ('building', 1), ('semantic', 1), ('system', 1), ('capable', 1), ('understanding', 1)]
[('computing', 3), ('high', 2), ('book', 1), ('discus', 1), ('fundamental', 1), ('level', 1), ('concept', 1), ('relating', 1), ('intelligent', 1), ('communication', 1), ('context', 1), ('distributed', 1), ('big', 1), ('data', 1), ('performance', 1), ('internet', 1), ('thing', 1), ('becoming', 1), ('increasingly', 1)]
[('many', 2), ('criterion', 2), ('several', 2), ('book', 1), ('address', 1), ('decision', 1), ('making', 1), ('mcdm', 1), ('process', 1), ('used', 1), ('find', 1), ('solution', 1), ('environment', 1), ('real', 1), ('world', 1), ('problem', 1), ('different', 1), ('objective', 1), ('need', 1), ('taken', 1), ('account', 1), ('solving', 1)]
[('sustainable', 2), ('development', 2), ('book', 1), ('feature', 1), ('original', 1), ('research', 1), ('recent', 1), ('advance', 1), ('ict', 1), ('field', 1), ('related', 1), ('based', 1), ('international', 1), ('conference', 1), ('network', 1), ('intelligent', 1), ('system', 1), ('computing', 1), ('environmental', 1), ('informatics', 1), ('held', 1)]
[('structuring', 2), ('discipline', 2), ('referred', 1), ('title', 1), ('book', 1), ('art', 1), ('core', 1), ('element', 1), ('information', 1), ('system', 1), ('world', 1), ('becoming', 1), ('increasingly', 1), ('complex', 1), ('growing', 1), ('number', 1)]
[('book', 1), ('present', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('th', 1), ('conference', 1), ('traffic', 1), ('granular', 1), ('flow', 1), ('tgf', 1), ('held', 1), ('washington', 1), ('dc', 1), ('july', 1), ('offer', 1), ('unique', 1), ('synthesis', 1), ('latest', 1), ('scientific', 1), ('finding', 1), ('made', 1), ('researcher', 1), ('different', 1)]
[('system', 2), ('book', 1), ('examines', 1), ('requirement', 1), ('risk', 1), ('solution', 1), ('improve', 1), ('security', 1), ('quality', 1), ('complex', 1), ('cyber', 1), ('physical', 1), ('cps', 1), ('production', 1), ('power', 1), ('plant', 1), ('airplane', 1), ('order', 1), ('ascertain', 1), ('whether', 1), ('possible', 1)]
[('edition', 2), ('data', 2), ('fourth', 1), ('classic', 1), ('textbook', 1), ('provides', 1), ('major', 1), ('update', 1), ('completely', 1), ('new', 1), ('chapter', 1), ('big', 1), ('platform', 1), ('distributed', 1), ('storage', 1), ('system', 1), ('mapreduce', 1), ('spark', 1), ('stream', 1), ('processing', 1), ('graph', 1), ('analytics', 1), ('nosql', 1), ('newsql', 1)]
[('student', 2), ('purpose', 1), ('book', 1), ('provide', 1), ('overview', 1), ('ai', 1), ('research', 1), ('ranging', 1), ('basic', 1), ('work', 1), ('interface', 1), ('application', 1), ('emphasis', 1), ('result', 1), ('current', 1), ('issue', 1), ('aimed', 1), ('audience', 1), ('master', 1), ('ph', 1)]
[('data', 2), ('unprecedented', 1), ('scale', 1), ('produced', 1), ('consumed', 1), ('today', 1), ('generated', 1), ('large', 1), ('demand', 1), ('scalable', 1), ('management', 1), ('solution', 1), ('facilitating', 1), ('fast', 1), ('access', 1), ('world', 1), ('consequence', 1), ('plethora', 1), ('non', 1), ('relational', 1)]
[('book', 2), ('cyber', 2), ('physical', 2), ('component', 2), ('highlight', 1), ('research', 1), ('survey', 1), ('article', 1), ('dedicated', 1), ('big', 1), ('data', 1), ('technique', 1), ('system', 1), ('cps', 1), ('address', 1), ('close', 1), ('interaction', 1), ('feedback', 1), ('control', 1), ('first', 1)]
[('internet', 2), ('thing', 2), ('iot', 2), ('proliferation', 1), ('enabled', 1), ('rapid', 1), ('enhancement', 1), ('application', 1), ('home', 1), ('environment', 1), ('scenario', 1), ('factory', 1), ('automation', 1), ('industrial', 1), ('iiot', 1), ('offer', 1), ('advantage', 1)]
[('book', 2), ('visualization', 2), ('individual', 2), ('first', 1), ('focus', 1), ('entirely', 1), ('fundamental', 1), ('question', 1), ('unlike', 1), ('existing', 1), ('field', 1), ('contains', 1), ('discussion', 1), ('go', 1), ('far', 1), ('beyond', 1), ('visual', 1), ('representation', 1)]
[('computer', 2), ('graphic', 2), ('student', 1), ('studying', 1), ('different', 1), ('branch', 1), ('familiar', 1), ('geometry', 1), ('matrix', 1), ('vector', 1), ('rotation', 1), ('transforms', 1), ('quaternion', 1), ('curve', 1), ('surface', 1), ('software', 1), ('becomes', 1), ('increasingly', 1), ('sophisticated', 1), ('calculus', 1)]
[('chatbot', 1), ('expected', 1), ('capable', 1), ('supporting', 1), ('cohesive', 1), ('coherent', 1), ('conversation', 1), ('knowledgeable', 1), ('make', 1), ('complex', 1), ('intelligent', 1), ('system', 1), ('designed', 1), ('nowadays', 1), ('designer', 1), ('learn', 1), ('combine', 1), ('intuitive', 1)]
[('machine', 3), ('learning', 3), ('content', 2), ('book', 1), ('survey', 1), ('current', 1), ('future', 1), ('approach', 1), ('generating', 1), ('video', 1), ('game', 1), ('procedural', 1), ('generation', 1), ('via', 1), ('pcgml', 1), ('nbsp', 1), ('major', 1), ('impact', 1), ('many', 1), ('industry', 1), ('including', 1)]
[('book', 1), ('present', 1), ('reference', 1), ('architecture', 1), ('key', 1), ('blueprint', 1), ('develop', 1), ('evolve', 1), ('critical', 1), ('software', 1), ('intensive', 1), ('system', 1), ('nbsp', 1), ('emphasizing', 1), ('state', 1), ('art', 1), ('research', 1), ('successful', 1), ('industrial', 1), ('case', 1), ('outlining', 1), ('theoretical', 1)]
[('data', 1), ('science', 1), ('new', 1), ('field', 1), ('touch', 1), ('almost', 1), ('every', 1), ('domain', 1), ('life', 1), ('thus', 1), ('taught', 1), ('variety', 1), ('environment', 1), ('accordingly', 1), ('book', 1), ('suitable', 1), ('teacher', 1), ('lecturer', 1), ('educational', 1), ('framework', 1), ('academia', 1)]
[('book', 1), ('present', 1), ('modern', 1), ('technological', 1), ('advancement', 1), ('revolution', 1), ('biomedical', 1), ('sector', 1), ('progress', 1), ('contemporary', 1), ('sensing', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('machine', 1), ('learning', 1), ('algorithm', 1), ('architecture', 1), ('introduced', 1), ('new', 1), ('approach', 1)]
[('cloud', 2), ('computing', 2), ('specific', 2), ('second', 1), ('generation', 1), ('system', 1), ('known', 1), ('domain', 1), ('emerging', 1), ('based', 1), ('application', 1), ('processor', 1), ('serverless', 1), ('paradigm', 1), ('multimedia', 1), ('streaming', 1), ('service', 1), ('increasingly', 1), ('growing', 1), ('popularity', 1)]
[('cover', 2), ('signal', 2), ('system', 2), ('book', 1), ('theory', 1), ('multidimensional', 1), ('related', 1), ('practical', 1), ('aspect', 1), ('extends', 1), ('property', 1), ('mathematical', 1), ('tool', 1), ('dimensional', 1), ('multiple', 1), ('dimension', 1), ('relevant', 1), ('timeless', 1), ('topic', 1)]
[('book', 2), ('new', 2), ('public', 2), ('service', 2), ('present', 1), ('trend', 1), ('optimize', 1), ('government', 1), ('various', 1), ('context', 1), ('aim', 1), ('highlight', 1), ('method', 1), ('approach', 1), ('unveil', 1), ('potential', 1), ('data', 1), ('illustrates', 1), ('mathematically', 1)]
[('programming', 2), ('language', 2), ('step', 2), ('short', 1), ('introduction', 1), ('history', 1), ('book', 1), ('provides', 1), ('example', 1), ('mirrored', 1), ('seven', 1), ('including', 1), ('nbsp', 1), ('java', 1), ('javascript', 1), ('perl', 1), ('php', 1), ('python', 1), ('ruby', 1), ('vb', 1), ('vba', 1)]
[('face', 2), ('attack', 2), ('detection', 2), ('book', 1), ('revise', 1), ('expands', 1), ('upon', 1), ('prior', 1), ('edition', 1), ('multi', 1), ('modal', 1), ('presentation', 1), ('author', 1), ('begin', 1), ('fundamental', 1), ('foundational', 1), ('information', 1), ('spoofing', 1), ('explaining', 1), ('computer', 1), ('vision', 1), ('community', 1)]
[('book', 1), ('invaluable', 1), ('contribution', 1), ('professor', 1), ('franz', 1), ('wotawa', 1), ('chapter', 1), ('present', 1), ('potential', 1), ('use', 1), ('implementation', 1), ('intelligent', 1), ('technique', 1), ('decision', 1), ('making', 1), ('process', 1), ('involved', 1), ('organization', 1), ('company', 1), ('provides', 1)]
[('causal', 2), ('inference', 2), ('book', 1), ('provides', 1), ('deep', 1), ('understanding', 1), ('relationship', 1), ('machine', 1), ('learning', 1), ('cover', 1), ('broad', 1), ('range', 1), ('topic', 1), ('starting', 1), ('preliminary', 1), ('foundation', 1), ('include', 1), ('basic', 1), ('definition', 1)]
[('nbsp', 2), ('second', 1), ('edition', 1), ('textbook', 1), ('cover', 1), ('coherently', 1), ('organized', 1), ('framework', 1), ('text', 1), ('analytics', 1), ('integrates', 1), ('material', 1), ('drawn', 1), ('intersecting', 1), ('topic', 1), ('information', 1), ('retrieval', 1), ('machine', 1), ('learning', 1), ('natural', 1), ('language', 1), ('processing', 1), ('particular', 1)]
[('instance', 3), ('target', 3), ('schema', 2), ('source', 2), ('data', 1), ('exchange', 1), ('problem', 1), ('finding', 1), ('given', 1), ('specification', 1), ('relationship', 1), ('correctly', 1), ('represent', 1), ('information', 1)]
[('replica', 3), ('database', 2), ('scalability', 2), ('replication', 1), ('widely', 1), ('used', 1), ('fault', 1), ('tolerance', 1), ('performance', 1), ('failure', 1), ('stop', 1), ('system', 1), ('working', 1), ('available', 1), ('take', 1), ('task', 1), ('failed', 1)]
[('data', 4), ('quality', 2), ('problem', 2), ('duplicate', 2), ('increasing', 1), ('volume', 1), ('abound', 1), ('multiple', 1), ('yet', 1), ('different', 1), ('representation', 1), ('real', 1), ('world', 1), ('object', 1), ('intriguing', 1), ('effect', 1)]
[('roughly', 1), ('decade', 1), ('ago', 1), ('power', 1), ('consumption', 1), ('heat', 1), ('dissipation', 1), ('concern', 1), ('forced', 1), ('semiconductor', 1), ('industry', 1), ('radically', 1), ('change', 1), ('course', 1), ('shifting', 1), ('sequential', 1), ('parallel', 1), ('computing', 1), ('unfortunately', 1), ('improving', 1), ('performance', 1), ('application', 1)]
[('object', 2), ('comparison', 2), ('state', 1), ('art', 1), ('database', 1), ('system', 1), ('manage', 1), ('process', 1), ('variety', 1), ('complex', 1), ('including', 1), ('string', 1), ('tree', 1), ('equality', 1), ('often', 1), ('meaningful', 1), ('replaced', 1), ('similarity', 1), ('book', 1), ('describes', 1)]
[('graph', 4), ('query', 3), ('interacting', 1), ('using', 1), ('emerged', 1), ('important', 1), ('research', 1), ('problem', 1), ('real', 1), ('world', 1), ('application', 1), ('center', 1), ('large', 1), ('data', 1), ('given', 1), ('syntactic', 1), ('complexity', 1), ('language', 1), ('sparql', 1), ('cypher', 1), ('visual', 1)]
[('social', 3), ('research', 1), ('network', 1), ('exploded', 1), ('last', 1), ('decade', 1), ('large', 1), ('extent', 1), ('fueled', 1), ('spectacular', 1), ('growth', 1), ('medium', 1), ('online', 1), ('networking', 1), ('site', 1), ('continue', 1), ('growing', 1), ('fast', 1), ('pace', 1)]
[('data', 2), ('network', 2), ('management', 1), ('system', 1), ('enable', 1), ('various', 1), ('influential', 1), ('application', 1), ('high', 1), ('performance', 1), ('online', 1), ('service', 1), ('social', 1), ('twitter', 1), ('facebook', 1), ('financial', 1), ('market', 1), ('big', 1), ('analytics', 1), ('scientific', 1), ('exploration', 1), ('sensor', 1)]
[('integrity', 2), ('constraint', 2), ('database', 2), ('satisfy', 2), ('reason', 2), ('semantic', 1), ('condition', 1), ('order', 1), ('appropriate', 1), ('model', 1), ('external', 1), ('reality', 1), ('practice', 1), ('many', 1)]
[('declarative', 2), ('networking', 2), ('programming', 1), ('methodology', 1), ('enables', 1), ('developer', 1), ('concisely', 1), ('specify', 1), ('network', 1), ('protocol', 1), ('service', 1), ('directly', 1), ('compiled', 1), ('dataflow', 1), ('framework', 1), ('executes', 1), ('specification', 1), ('proposes', 1)]
[('semiotic', 2), ('engineering', 1), ('originally', 1), ('proposed', 1), ('approach', 1), ('designing', 1), ('user', 1), ('interface', 1), ('language', 1), ('year', 1), ('research', 1), ('done', 1), ('department', 1), ('informatics', 1), ('pontifical', 1), ('catholic', 1), ('university', 1), ('rio', 1), ('de', 1), ('janeiro', 1), ('evolved', 1)]
[('digital', 1), ('age', 1), ('communicate', 1), ('access', 1), ('create', 1), ('share', 1), ('abundance', 1), ('information', 1), ('effortlessly', 1), ('rapidly', 1), ('nearly', 1), ('ubiquitously', 1), ('consequence', 1), ('many', 1), ('choice', 1), ('compete', 1), ('attention', 1), ('continually', 1), ('switch', 1)]
[('taxonomy', 2), ('book', 1), ('third', 1), ('three', 1), ('part', 1), ('series', 1), ('cover', 1), ('putting', 1), ('use', 1), ('many', 1), ('way', 1), ('possible', 1), ('maximize', 1), ('retrieval', 1), ('user', 1), ('chapter', 1), ('suggests', 1), ('several', 1), ('item', 1), ('research', 1), ('consider', 1), ('start', 1)]
[('use', 2), ('search', 2), ('child', 2), ('searching', 1), ('internet', 1), ('ability', 1), ('competently', 1), ('engine', 1), ('increasingly', 1), ('becoming', 1), ('important', 1), ('part', 1), ('daily', 1), ('life', 1), ('whether', 1), ('mobile', 1), ('home', 1), ('interface', 1), ('explore', 1), ('personal', 1), ('interest', 1), ('complete', 1)]
[('decision', 2), ('markov', 1), ('process', 1), ('mdps', 1), ('widely', 1), ('popular', 1), ('artificial', 1), ('intelligence', 1), ('modeling', 1), ('sequential', 1), ('making', 1), ('scenario', 1), ('probabilistic', 1), ('dynamic', 1), ('framework', 1), ('choice', 1), ('designing', 1), ('intelligent', 1), ('agent', 1), ('need', 1), ('act', 1)]
[('solving', 1), ('challenging', 1), ('computational', 1), ('problem', 1), ('involving', 1), ('time', 1), ('critical', 1), ('component', 1), ('development', 1), ('artificial', 1), ('intelligence', 1), ('system', 1), ('almost', 1), ('inception', 1), ('field', 1), ('book', 1), ('provides', 1), ('concise', 1), ('introduction', 1), ('core', 1)]
[('model', 2), ('vertex', 2), ('focus', 1), ('monograph', 1), ('symmetry', 1), ('breaking', 1), ('problem', 1), ('message', 1), ('passing', 1), ('distributed', 1), ('computing', 1), ('communication', 1), ('network', 1), ('represented', 1), ('graph', 1), ('whose', 1), ('host', 1), ('autonomous', 1), ('processor', 1)]
[('real', 3), ('time', 3), ('system', 2), ('rts', 2), ('book', 1), ('present', 1), ('methodology', 1), ('scheduling', 1), ('problem', 1), ('viewpoint', 1), ('control', 1), ('theory', 1), ('generally', 1), ('viewed', 1), ('performs', 1), ('application', 1), ('function', 1), ('behaves', 1)]
[('diagnostics', 2), ('computer', 1), ('assisted', 1), ('cad', 1), ('using', 1), ('convolutional', 1), ('neural', 1), ('network', 1), ('cnn', 1), ('model', 1), ('become', 1), ('important', 1), ('technology', 1), ('medical', 1), ('industry', 1), ('improving', 1), ('accuracy', 1), ('lack', 1), ('magnetic', 1), ('resonance', 1), ('imaging', 1), ('mri', 1), ('data', 1), ('lead', 1)]
[('aim', 2), ('handbook', 1), ('modernizing', 1), ('current', 1), ('state', 1), ('civil', 1), ('engineering', 1), ('firefighting', 1), ('especially', 1), ('era', 1), ('infrastructure', 1), ('reaching', 1), ('new', 1), ('height', 1), ('serving', 1), ('diverse', 1), ('population', 1), ('challenged', 1), ('unique', 1), ('threat', 1)]
[('book', 1), ('offer', 1), ('concise', 1), ('introduction', 1), ('comprehensive', 1), ('overview', 1), ('state', 1), ('art', 1), ('field', 1), ('decision', 1), ('making', 1), ('consensus', 1), ('modeling', 1), ('special', 1), ('emphasis', 1), ('fuzzy', 1), ('method', 1), ('consists', 1), ('collection', 1), ('authoritative', 1), ('contribution', 1)]
[('knowledge', 2), ('discovery', 2), ('book', 1), ('collection', 1), ('representative', 1), ('novel', 1), ('work', 1), ('field', 1), ('data', 1), ('mining', 1), ('clustering', 1), ('classification', 1), ('discussing', 1), ('theoretical', 1), ('practical', 1), ('aspect', 1), ('management', 1), ('kdm', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('education', 1), ('aied', 1), ('held', 1), ('london', 1), ('uk', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('book', 1), ('together', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('science', 1), ('engineering', 1), ('management', 1), ('ksem', 1), ('held', 1), ('changchun', 1), ('china', 1), ('august', 1), ('revised', 1), ('full', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ccf', 1), ('conference', 1), ('natural', 1), ('language', 1), ('processing', 1), ('chinese', 1), ('computing', 1), ('nlpcc', 1), ('held', 1), ('hohhot', 1), ('china', 1), ('august', 1), ('full', 1), ('paper', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('conference', 1), ('discovery', 1), ('science', 1), ('d', 1), ('held', 1), ('limassol', 1), ('cyprus', 1), ('october', 1), ('co', 1), ('located', 1), ('symposium', 1), ('methodology', 1), ('intelligent', 1), ('system', 1), ('ismis', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('ecml', 1), ('pkdd', 1), ('workshop', 1), ('data', 1), ('analytics', 1), ('renewable', 1), ('energy', 1), ('integration', 1), ('dare', 1), ('held', 1), ('dublin', 1), ('ireland', 1), ('september', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('segmentation', 3), ('book', 1), ('present', 1), ('study', 1), ('important', 1), ('method', 1), ('image', 1), ('extended', 1), ('improved', 1), ('using', 1), ('metaheuristic', 1), ('algorithm', 1), ('approach', 1), ('selected', 1), ('extensively', 1), ('applied', 1), ('task', 1)]
[('teaching', 3), ('book', 1), ('describes', 1), ('outline', 1), ('theoretical', 1), ('foundation', 1), ('system', 1), ('simulation', 1), ('practical', 1), ('contribution', 1), ('learning', 1), ('model', 1), ('present', 1), ('various', 1), ('methodology', 1), ('used', 1), ('goal', 1), ('solve', 1), ('real', 1), ('life', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('integrated', 1), ('uncertainty', 1), ('knowledge', 1), ('modelling', 1), ('decision', 1), ('making', 1), ('iukm', 1), ('held', 1), ('nara', 1), ('japan', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('lnbi', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('work', 1), ('conference', 1), ('bioinformatics', 1), ('biomedical', 1), ('engineering', 1), ('iwbbio', 1), ('held', 1), ('granada', 1), ('spain', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('brain', 1), ('function', 1), ('assessment', 1), ('learning', 1), ('bfal', 1), ('held', 1), ('patras', 1), ('greece', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('modeling', 1), ('decision', 1), ('artificial', 1), ('intelligence', 1), ('mdai', 1), ('held', 1), ('kitakyushu', 1), ('japan', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('optimization', 2), ('volume', 1), ('comprises', 1), ('selection', 1), ('work', 1), ('presented', 1), ('numerical', 1), ('evolutionary', 1), ('neo', 1), ('workshop', 1), ('held', 1), ('september', 1), ('tlalnepantla', 1), ('mexico', 1), ('development', 1), ('powerful', 1), ('search', 1), ('technique', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('collective', 1), ('intelligence', 1), ('icci', 1), ('held', 1), ('nicosia', 1), ('cyprus', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('technical', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('german', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ki', 1), ('held', 1), ('dortmund', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('book', 1), ('present', 1), ('recent', 1), ('research', 1), ('evolution', 1), ('artificial', 1), ('neural', 1), ('development', 1), ('search', 1), ('learning', 1), ('gene', 1), ('fascinating', 1), ('see', 1), ('biological', 1), ('cell', 1), ('share', 1), ('virtually', 1), ('trait', 1), ('human', 1), ('decided', 1), ('edge', 1)]
[('book', 1), ('highlight', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('nd', 1), ('international', 1), ('symposium', 1), ('artificial', 1), ('intelligence', 1), ('robotics', 1), ('isair', 1), ('held', 1), ('nakamura', 1), ('centenary', 1), ('memorial', 1), ('hall', 1), ('kitakyushu', 1), ('japan', 1), ('november', 1), ('today', 1), ('integration', 1)]
[('pore', 2), ('nbsp', 2), ('macro', 2), ('structure', 2), ('book', 1), ('devoted', 1), ('describing', 1), ('theory', 1), ('porous', 1), ('medium', 1), ('inbuilt', 1), ('micro', 1), ('example', 1), ('double', 1), ('porosity', 1), ('material', 1), ('scale', 1), ('additionally', 1), ('crack', 1)]
[('proceeding', 2), ('three', 1), ('volume', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('european', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('skopje', 1), ('macedonia', 1), ('september', 1), ('nbsp', 1)]
[('workshop', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('chinese', 1), ('lexical', 1), ('semantics', 1), ('clsw', 1), ('held', 1), ('leshan', 1), ('china', 1), ('full', 1), ('short', 1), ('included', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('examines', 1), ('theoretical', 1), ('practical', 1), ('aspect', 1), ('emerging', 1), ('technology', 1), ('service', 1), ('artificial', 1), ('intelligence', 1), ('academic', 1), ('professional', 1), ('viewpoint', 1), ('focus', 1), ('three', 1), ('major', 1), ('area', 1), ('development', 1), ('novel', 1), ('user', 1), ('support', 1)]
[('book', 1), ('highlight', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('field', 1), ('network', 1), ('science', 1), ('offering', 1), ('scientist', 1), ('researcher', 1), ('student', 1), ('practitioner', 1), ('unique', 1), ('update', 1), ('latest', 1), ('advance', 1), ('theory', 1), ('multitude', 1), ('application', 1), ('present', 1)]
[('epia', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('held', 1), ('funchal', 1), ('madeira', 1), ('portugal', 1), ('september', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('context', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('interdisciplinary', 1), ('conference', 1), ('modeling', 1), ('using', 1), ('held', 1), ('trento', 1), ('italy', 1), ('november', 1), ('full', 1), ('paper', 1), ('invited', 1), ('talk', 1), ('presented', 1), ('carefully', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('data', 1), ('mining', 1), ('application', 1), ('adma', 1), ('held', 1), ('dalian', 1), ('china', 1), ('november', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('demo', 1)]
[('topic', 2), ('fuzzy', 2), ('spatiotemporal', 2), ('data', 2), ('xml', 2), ('book', 1), ('offer', 1), ('depth', 1), ('insight', 1), ('rapidly', 1), ('growing', 1), ('technology', 1), ('approach', 1), ('modeling', 1), ('covered', 1), ('include', 1), ('representation', 1), ('topological', 1), ('relationship', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('italian', 1), ('association', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('ia', 1), ('held', 1), ('turin', 1), ('italy', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('behavior', 1), ('social', 1), ('informatics', 1), ('computing', 1), ('bsic', 1), ('held', 1), ('collocated', 1), ('event', 1), ('ijcai', 1), ('beijing', 1), ('china', 1), ('august', 1)]
[('lnai', 2), ('paper', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('tainan', 1), ('taiwan', 1), ('full', 1), ('short', 1)]
[('lnai', 2), ('paper', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('tainan', 1), ('taiwan', 1), ('full', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('biomimetic', 1), ('biohybrid', 1), ('system', 1), ('living', 1), ('machine', 1), ('held', 1), ('milan', 1), ('italy', 1), ('july', 1), ('august', 1), ('full', 1), ('paper', 1), ('extended', 1), ('abstract', 1), ('included', 1), ('volume', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('nbsp', 1), ('intelligence', 1), ('soft', 1), ('computing', 1), ('icaisc', 1), ('held', 1), ('zakopane', 1), ('poland', 1), ('october', 1), ('revised', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('advance', 1), ('autonomous', 1), ('robotics', 1), ('taro', 1), ('held', 1), ('birmingham', 1), ('uk', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('extended', 1), ('abstract', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('methodology', 1), ('system', 1), ('application', 1), ('aimsa', 1), ('held', 1), ('varna', 1), ('bulgaria', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('german', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ki', 1), ('held', 1), ('stuttgart', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('scalable', 1), ('uncertainty', 1), ('management', 1), ('sum', 1), ('held', 1), ('oxford', 1), ('uk', 1), ('september', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('semantic', 2), ('web', 2), ('book', 1), ('contains', 1), ('revised', 1), ('significantly', 1), ('extended', 1), ('version', 1), ('selected', 1), ('paper', 1), ('three', 1), ('workshop', 1), ('uncertainty', 1), ('reasoning', 1), ('ursw', 1), ('held', 1), ('international', 1), ('conference', 1), ('iswc', 1)]
[('workshop', 2), ('th', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('joint', 1), ('post', 1), ('proceeding', 1), ('mining', 1), ('ubiquitous', 1), ('social', 1), ('environment', 1), ('muse', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('september', 1)]
[('festschrift', 1), ('published', 1), ('honor', 1), ('gerhard', 1), ('brewka', 1), ('occasion', 1), ('th', 1), ('birthday', 1), ('contains', 1), ('article', 1), ('field', 1), ('reflecting', 1), ('breadth', 1), ('gerd', 1), ('work', 1), ('scientific', 1), ('paper', 1), ('included', 1), ('book', 1), ('written', 1), ('close', 1), ('friend', 1)]
[('user', 2), ('music', 1), ('recommendation', 1), ('system', 1), ('becoming', 1), ('popular', 1), ('increasing', 1), ('amount', 1), ('personal', 1), ('data', 1), ('left', 1), ('social', 1), ('medium', 1), ('contributes', 1), ('accurate', 1), ('inference', 1), ('musical', 1), ('preference', 1), ('quality', 1), ('personalized', 1)]
[('agent', 2), ('book', 1), ('useful', 1), ('understand', 1), ('write', 1), ('alongside', 1), ('non', 1), ('human', 1), ('examine', 1), ('impact', 1), ('algorithm', 1), ('ai', 1), ('writing', 1), ('accommodate', 1), ('relationship', 1), ('autonomous', 1), ('ground', 1), ('breaking', 1), ('future', 1), ('driven', 1), ('framework', 1), ('prepares', 1), ('scholar', 1)]
[('international', 3), ('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('engineering', 1), ('psychology', 1), ('cognitive', 1), ('ergonomics', 1), ('epce', 1), ('part', 1), ('rd', 1), ('hci', 1), ('virtual', 1), ('event', 1)]
[('book', 1), ('constitutes', 1), ('th', 1), ('edition', 1), ('annual', 1), ('multi', 1), ('agent', 1), ('programming', 1), ('contest', 1), ('mapc', 1), ('nbsp', 1), ('give', 1), ('overview', 1), ('competition', 1), ('describes', 1), ('current', 1), ('scenario', 1), ('furthermore', 1), ('summarises', 1), ('year', 1), ('participant', 1), ('approach', 1)]
[('book', 2), ('belief', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('function', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1), ('reviewed', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('took', 1), ('place', 1), ('yantai', 1), ('china', 1), ('october', 1), ('paper', 1), ('included', 1)]
[('lnai', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('nbsp', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('pricai', 1), ('held', 1), ('hanoi', 1), ('vietnam', 1), ('november', 1), ('full', 1)]
[('lnai', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('nbsp', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('pricai', 1), ('held', 1), ('hanoi', 1), ('vietnam', 1), ('november', 1), ('full', 1)]
[('lnai', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('nbsp', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('pricai', 1), ('held', 1), ('hanoi', 1), ('vietnam', 1), ('november', 1), ('full', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('workshop', 1), ('multi', 1), ('agent', 1), ('based', 1), ('simulation', 1), ('mabs', 1), ('part', 1), ('aamas', 1), ('virtually', 1), ('due', 1), ('covid', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('integrated', 1), ('uncertainty', 1), ('knowledge', 1), ('modelling', 1), ('decision', 1), ('making', 1), ('iukm', 1), ('held', 1), ('ishikawa', 1), ('japan', 1), ('march', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('collect', 1), ('regular', 1), ('paper', 1), ('received', 1), ('country', 1), ('present', 1), ('innovative', 1), ('advance', 1), ('intelligent', 1), ('distributed', 1), ('computing', 1), ('encompassing', 1), ('architectural', 1), ('algorithmic', 1), ('result', 1), ('related', 1), ('field', 1), ('significant', 1), ('attention', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('language', 1), ('technology', 1), ('conference', 1), ('challenge', 1), ('computer', 1), ('science', 1), ('linguistics', 1), ('ltc', 1), ('held', 1), ('poznan', 1), ('poland', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('text', 1), ('speech', 1), ('dialogue', 1), ('tsd', 1), ('held', 1), ('brno', 1), ('czech', 1), ('republic', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('consists', 1), ('extended', 1), ('chapter', 1), ('selected', 1), ('invited', 1), ('submission', 1), ('st', 1), ('international', 1), ('conference', 1), ('computer', 1), ('science', 1), ('applied', 1), ('mathematics', 1), ('application', 1), ('iccsama', 1), ('held', 1), ('warsaw', 1)]
[('volume', 1), ('showcase', 1), ('contribution', 1), ('internationally', 1), ('known', 1), ('researcher', 1), ('field', 1), ('information', 1), ('management', 1), ('approach', 1), ('presented', 1), ('make', 1), ('use', 1), ('fuzzy', 1), ('logic', 1), ('introduced', 1), ('zadeh', 1), ('almost', 1), ('year', 1), ('ago', 1), ('constitute', 1)]
[('learning', 2), ('advent', 1), ('increasing', 1), ('popularity', 1), ('computer', 1), ('supported', 1), ('collaborative', 1), ('cscl', 1), ('technology', 1), ('need', 1), ('automatic', 1), ('assessment', 1), ('teacher', 1), ('tutor', 1), ('support', 1), ('tightly', 1), ('intertwined', 1), ('activity', 1), ('comprehension', 1)]
[('intelligent', 2), ('database', 2), ('system', 2), ('book', 1), ('consists', 1), ('chapter', 1), ('presenting', 1), ('different', 1), ('theoretical', 1), ('practical', 1), ('aspect', 1), ('information', 1), ('nowadays', 1), ('applied', 1), ('area', 1), ('human', 1), ('activity', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('revised', 1), ('selected', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('multi', 1), ('agent', 1), ('system', 1), ('eumas', 1), ('held', 1), ('düsseldorf', 1), ('germany', 1), ('nbsp', 1), ('september', 1), ('full', 1), ('included', 1)]
[('agent', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('practical', 1), ('application', 1), ('multi', 1), ('system', 1), ('paams', 1), ('held', 1), ('salamanca', 1), ('spain', 1), ('june', 1), ('revised', 1), ('full', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('concept', 1), ('analysis', 1), ('icfca', 1), ('held', 1), ('neja', 1), ('spain', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('cover', 1), ('recent', 1), ('development', 1), ('fuzzy', 1), ('logic', 1), ('neural', 1), ('network', 1), ('optimization', 1), ('algorithm', 1), ('hybrid', 1), ('combination', 1), ('addition', 1), ('mentioned', 1), ('method', 1), ('applied', 1), ('area', 1), ('intelligent', 1), ('control', 1), ('robotics', 1), ('pattern', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('meeting', 1), ('computational', 1), ('intelligence', 1), ('method', 1), ('bioinformatics', 1), ('biostatistics', 1), ('cibb', 1), ('held', 1), ('cambridge', 1), ('uk', 1), ('june', 1), ('revised', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('ndinternational', 1), ('symposium', 1), ('methodology', 1), ('intelligent', 1), ('system', 1), ('ismis', 1), ('held', 1), ('lyon', 1), ('france', 1), ('october', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('relevant', 2), ('application', 2), ('book', 1), ('provides', 1), ('overview', 1), ('wide', 1), ('range', 1), ('reveals', 1), ('solve', 1), ('many', 1), ('latest', 1), ('finance', 1), ('technology', 1), ('education', 1), ('medicine', 1), ('important', 1), ('field', 1), ('data', 1), ('driven', 1), ('volume', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('theory', 1), ('application', 1), ('formal', 1), ('argumentation', 1), ('tafa', 1), ('held', 1), ('buenos', 1), ('aire', 1), ('argentina', 1), ('july', 1), ('co', 1), ('located', 1), ('ijcai', 1)]
[('book', 3), ('symposium', 2), ('proceeding', 1), ('th', 1), ('annual', 1), ('robocup', 1), ('international', 1), ('held', 1), ('hefei', 1), ('china', 1), ('july', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1), ('submission', 1), ('nbsp', 1), ('additionally', 1)]
[('intelligent', 2), ('system', 2), ('logic', 2), ('volume', 1), ('present', 1), ('recent', 1), ('research', 1), ('challenging', 1), ('problem', 1), ('solutionsin', 1), ('covering', 1), ('following', 1), ('discipline', 1), ('artificial', 1), ('andcomputational', 1), ('intelligence', 1), ('fuzzy', 1), ('non', 1), ('classic', 1), ('database', 1)]
[('volume', 1), ('gather', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('presented', 1), ('th', 1), ('edition', 1), ('international', 1), ('workshop', 1), ('service', 1), ('orientation', 1), ('holonic', 1), ('multi', 1), ('agent', 1), ('ufacturing', 1), ('sohoma', 1), ('organized', 1), ('november', 1), ('institute', 1)]
[('fuzzy', 3), ('fully', 2), ('linear', 2), ('programming', 2), ('book', 1), ('present', 1), ('snapshot', 1), ('state', 1), ('art', 1), ('field', 1), ('main', 1), ('focus', 1), ('showing', 1), ('current', 1), ('method', 1), ('finding', 1), ('optimal', 1), ('solution', 1), ('problem', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('interactive', 1), ('collaborative', 1), ('robotics', 1), ('icr', 1), ('held', 1), ('budapest', 1), ('hungary', 1), ('august', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('iapr', 1), ('tc', 1), ('international', 1), ('workshop', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('pattern', 1), ('recognition', 1), ('annpr', 1), ('held', 1), ('ulm', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('paper', 2), ('workshop', 2), ('singapore', 2), ('book', 1), ('constitutes', 1), ('visionary', 1), ('aamas', 1), ('held', 1), ('revised', 1), ('full', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('nbsp', 1), ('cover', 1), ('specific', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('brain', 1), ('health', 1), ('informatics', 1), ('bhi', 1), ('held', 1), ('omaha', 1), ('usa', 1), ('october', 1), ('revised', 1), ('full', 1), ('including', 1), ('workshop', 1), ('bai', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('social', 1), ('robotics', 1), ('icsr', 1), ('held', 1), ('kansa', 1), ('city', 1), ('mo', 1), ('usa', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('ibero', 1), ('american', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('iberamia', 1), ('held', 1), ('san', 1), ('josé', 1), ('costa', 1), ('rica', 1), ('november', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('logic', 2), ('book', 1), ('authoritative', 1), ('collection', 1), ('contribution', 1), ('leading', 1), ('expert', 1), ('topic', 1), ('fuzzy', 1), ('multi', 1), ('valued', 1), ('neural', 1), ('network', 1), ('originally', 1), ('written', 1), ('homage', 1), ('claudio', 1), ('moraga', 1), ('seen', 1), ('colleague', 1), ('example', 1)]
[('new', 2), ('development', 2), ('volume', 1), ('brief', 1), ('yet', 1), ('comprehensive', 1), ('account', 1), ('tool', 1), ('technique', 1), ('solution', 1), ('broadly', 1), ('perceived', 1), ('intelligent', 1), ('system', 1), ('concept', 1), ('idea', 1), ('concern', 1), ('effective', 1), ('efficient', 1), ('model', 1), ('make', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('brain', 1), ('inspired', 1), ('cognitive', 1), ('system', 1), ('bics', 1), ('held', 1), ('beijing', 1), ('china', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('dedicated', 1), ('prof', 1), ('sadaaki', 1), ('miyamoto', 1), ('present', 1), ('cutting', 1), ('edge', 1), ('paper', 1), ('area', 1), ('contributed', 1), ('bringing', 1), ('together', 1), ('contribution', 1), ('leading', 1), ('researcher', 1), ('field', 1), ('concretely', 1), ('address', 1), ('clustering', 1), ('multisets', 1)]
[('technique', 2), ('book', 1), ('present', 1), ('recent', 1), ('research', 1), ('robustness', 1), ('econometrics', 1), ('robust', 1), ('data', 1), ('processing', 1), ('yield', 1), ('result', 1), ('minimally', 1), ('affected', 1), ('outlier', 1), ('application', 1), ('real', 1), ('life', 1), ('economic', 1), ('financial', 1), ('situation', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('intelligent', 1), ('information', 1), ('database', 1), ('system', 1), ('aciids', 1), ('held', 1), ('kanazawa', 1), ('japan', 1), ('april', 1), ('total', 1), ('full', 1), ('paper', 1), ('accepted', 1)]
[('volume', 2), ('nbsp', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('hybrid', 1), ('artificial', 1), ('intelligent', 1), ('system', 1), ('hais', 1), ('held', 1), ('la', 1), ('rioja', 1), ('spain', 1), ('june', 1), ('full', 1), ('paper', 1), ('published', 1), ('carefully', 1)]
[('international', 2), ('conference', 2), ('volume', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('augmented', 1), ('cognition', 1), ('ac', 1), ('held', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('took', 1), ('place', 1), ('vancouver', 1), ('bc', 1), ('canada', 1), ('july', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('conference', 1), ('history', 1), ('nordic', 1), ('computing', 1), ('hinc', 1), ('held', 1), ('copenhagen', 1), ('denmark', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('application', 1), ('innovation', 1), ('aiai', 1), ('held', 1), ('bayonne', 1), ('france', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('biological', 2), ('unique', 1), ('textbook', 1), ('reference', 1), ('present', 1), ('unified', 1), ('coverage', 1), ('bioinformatics', 1), ('topic', 1), ('relating', 1), ('sequence', 1), ('network', 1), ('providing', 1), ('depth', 1), ('analysis', 1), ('cutting', 1), ('edge', 1), ('distributed', 1), ('algorithm', 1), ('relevant', 1)]
[('book', 1), ('explores', 1), ('approach', 1), ('social', 1), ('robotics', 1), ('based', 1), ('solely', 1), ('autonomous', 1), ('unsupervised', 1), ('technique', 1), ('position', 1), ('within', 1), ('structured', 1), ('exposition', 1), ('related', 1), ('research', 1), ('psychology', 1), ('neuroscience', 1), ('hri', 1), ('data', 1), ('mining', 1), ('nbsp', 1), ('author', 1), ('present', 1)]
[('research', 2), ('governance', 2), ('book', 1), ('examines', 1), ('trend', 1), ('challenge', 1), ('public', 1), ('organization', 1), ('reporting', 1), ('innovative', 1), ('new', 1), ('insight', 1), ('theory', 1), ('model', 1), ('practice', 1), ('within', 1), ('area', 1), ('noticed', 1), ('play', 1), ('important', 1)]
[('information', 1), ('infrastructure', 1), ('comprising', 1), ('computer', 1), ('embedded', 1), ('device', 1), ('network', 1), ('software', 1), ('system', 1), ('vital', 1), ('operation', 1), ('every', 1), ('sector', 1), ('chemical', 1), ('commercial', 1), ('facility', 1), ('communication', 1), ('critical', 1), ('manufacturing', 1), ('dam', 1), ('defense', 1), ('industrial', 1)]
[('comprehensive', 1), ('text', 1), ('reference', 1), ('present', 1), ('broad', 1), ('ranging', 1), ('overview', 1), ('device', 1), ('connectivity', 1), ('distributed', 1), ('computing', 1), ('environment', 1), ('supporting', 1), ('vision', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('expert', 1), ('perspective', 1), ('provided', 1), ('international', 1), ('selection', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('symposium', 1), ('environmental', 1), ('software', 1), ('system', 1), ('i', 1), ('held', 1), ('zadar', 1), ('croatia', 1), ('nbsp', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('keynote', 1)]
[('cyber', 3), ('book', 2), ('security', 2), ('addition', 1), ('threat', 1), ('technology', 1), ('process', 1), ('many', 1), ('side', 1), ('social', 1), ('phenomenon', 1), ('implementation', 1), ('strategy', 1), ('carried', 1), ('give', 1), ('profound', 1), ('idea', 1), ('spoken', 1)]
[('book', 1), ('present', 1), ('thorough', 1), ('overview', 1), ('fusion', 1), ('computer', 1), ('vision', 1), ('interdisciplinary', 1), ('multi', 1), ('application', 1), ('viewpoint', 1), ('describing', 1), ('successful', 1), ('approach', 1), ('evaluated', 1), ('context', 1), ('international', 1), ('benchmark', 1), ('model', 1), ('realistic', 1), ('use', 1), ('case', 1)]
[('volume', 2), ('set', 1), ('ccis', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('short', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('sanur', 1), ('bali', 1), ('indonesia', 1), ('december', 1)]
[('paper', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('sixteenth', 1), ('international', 1), ('conference', 1), ('information', 1), ('processing', 1), ('icinpro', 1), ('held', 1), ('bangaluru', 1), ('india', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1)]
[('paper', 2), ('nbsp', 2), ('volume', 1), ('constitutes', 1), ('selected', 1), ('presented', 1), ('first', 1), ('international', 1), ('conference', 1), ('informatics', 1), ('intelligent', 1), ('application', 1), ('iciia', 1), ('held', 1), ('ota', 1), ('nigeria', 1), ('november', 1), ('full', 1), ('thoroughly', 1), ('reviewed', 1)]
[('cyber', 2), ('new', 2), ('world', 1), ('enhanced', 1), ('endangered', 1), ('ai', 1), ('hand', 1), ('performance', 1), ('many', 1), ('existing', 1), ('security', 1), ('service', 1), ('improved', 1), ('tool', 1), ('created', 1), ('entail', 1), ('threat', 1), ('evolved', 1), ('attacking', 1)]
[('paper', 3), ('nbsp', 3), ('book', 1), ('constitutes', 1), ('selected', 1), ('presented', 1), ('first', 1), ('international', 1), ('conference', 1), ('ict', 1), ('health', 1), ('accessibility', 1), ('wellbeing', 1), ('ihaw', 1), ('held', 1), ('larnaca', 1), ('cyprus', 1), ('november', 1), ('full', 1), ('short', 1)]
[('ccis', 3), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('security', 1), ('icais', 1), ('held', 1), ('qinghai', 1), ('china', 1), ('july', 1), ('nbsp', 1), ('total', 1)]
[('paper', 2), ('book', 1), ('nbsp', 1), ('contains', 1), ('extended', 1), ('revised', 1), ('selected', 1), ('rd', 1), ('international', 1), ('conference', 1), ('enterprise', 1), ('information', 1), ('system', 1), ('iceis', 1), ('held', 1), ('online', 1), ('april', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('th', 3), ('book', 1), ('contains', 1), ('thoroughly', 1), ('refereed', 1), ('research', 1), ('paper', 1), ('selected', 1), ('submission', 1), ('international', 1), ('workshop', 1), ('enterprise', 1), ('system', 1), ('pre', 1), ('icis', 1), ('held', 1), ('st', 1), ('louis', 1), ('mo', 1), ('usa', 1), ('december', 1), ('shanghai', 1), ('china', 1)]
[('conference', 2), ('business', 2), ('bi', 2), ('book', 1), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('system', 1), ('held', 1), ('poznań', 1), ('poland', 1), ('june', 1), ('series', 1), ('follows', 1), ('trend', 1), ('academic', 1), ('research', 1), ('thus', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('latin', 1), ('american', 1), ('conference', 1), ('high', 1), ('performance', 1), ('computing', 1), ('carla', 1), ('held', 1), ('porto', 1), ('alegre', 1), ('brazil', 1), ('september', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('th', 2), ('conference', 2), ('information', 2), ('management', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('extended', 1), ('version', 1), ('best', 1), ('paper', 1), ('system', 1), ('ism', 1), ('advanced', 1), ('technology', 1), ('aitm', 1), ('held', 1), ('lodz', 1), ('poland', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedproceedings', 1), ('international', 1), ('conference', 1), ('communication', 1), ('technology', 1), ('forageing', 1), ('health', 1), ('ict', 1), ('ageingwell', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('full', 1), ('paper', 1), ('invited', 1)]
[('text', 3), ('image', 2), ('ground', 1), ('breaking', 1), ('reference', 1), ('divergesfrom', 1), ('traditional', 1), ('view', 1), ('computer', 1), ('vision', 1), ('analysis', 1), ('stringprocessing', 1), ('mining', 1), ('separate', 1), ('unrelated', 1), ('field', 1), ('study', 1), ('propounding', 1), ('treated', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('process', 1), ('improvement', 1), ('capability', 1), ('determination', 1), ('spice', 1), ('held', 1), ('dublin', 1), ('ireland', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('five', 1), ('workshop', 1), ('held', 1), ('ljubljana', 1), ('slovenia', 1), ('conjunction', 1), ('th', 1), ('conference', 1), ('advanced', 1), ('information', 1), ('system', 1), ('engineering', 1), ('caise', 1), ('june', 1)]
[('smart', 2), ('grid', 2), ('security', 2), ('book', 1), ('target', 1), ('key', 1), ('concern', 1), ('protecting', 1), ('critical', 1), ('infrastructure', 1), ('explains', 1), ('various', 1), ('static', 1), ('dynamic', 1), ('analysis', 1), ('technique', 1), ('automatically', 1), ('verify', 1), ('resiliency', 1), ('identify', 1)]
[('book', 1), ('explores', 1), ('robust', 1), ('multimodal', 1), ('cognitive', 1), ('load', 1), ('measurement', 1), ('physiological', 1), ('behavioural', 1), ('modality', 1), ('involve', 1), ('eye', 1), ('galvanic', 1), ('skin', 1), ('response', 1), ('speech', 1), ('language', 1), ('pen', 1), ('input', 1), ('mouse', 1), ('movement', 1), ('multimodality', 1), ('fusion', 1), ('factor', 1), ('including', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('baltic', 1), ('conference', 1), ('database', 1), ('information', 1), ('system', 1), ('db', 1), ('amp', 1), ('held', 1), ('riga', 1), ('latvia', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('sensornets', 2), ('held', 2), ('february', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('revised', 1), ('paper', 1), ('valletta', 1), ('malta', 1), ('virtually', 1), ('nbsp', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('conference', 1), ('creativity', 1), ('intelligent', 1), ('technology', 1), ('data', 1), ('science', 1), ('cit', 1), ('d', 1), ('held', 1), ('volgograd', 1), ('russia', 1), ('september', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('information', 1), ('system', 1), ('crisis', 1), ('response', 1), ('management', 1), ('mediterranean', 1), ('country', 1), ('iscram', 1), ('med', 1), ('held', 1), ('tunis', 1), ('tunisia', 1), ('october', 1)]
[('interdisciplinary', 1), ('volume', 1), ('present', 1), ('detailed', 1), ('overview', 1), ('latest', 1), ('advance', 1), ('challenge', 1), ('remaining', 1), ('field', 1), ('adaptive', 1), ('biometric', 1), ('system', 1), ('broad', 1), ('range', 1), ('technique', 1), ('provided', 1), ('international', 1), ('selection', 1), ('pre', 1), ('eminent', 1)]
[('data', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('technology', 1), ('application', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('congress', 1), ('telematics', 1), ('computing', 1), ('witcom', 1), ('held', 1), ('cancún', 1), ('méxico', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('transport', 1), ('system', 1), ('telematics', 1), ('tst', 1), ('held', 1), ('wrocław', 1), ('poland', 1), ('april', 1), ('revised', 1), ('full', 1), ('short', 1), ('included', 1), ('volume', 1), ('carefully', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('italian', 1), ('research', 1), ('conference', 1), ('digital', 1), ('library', 1), ('ircdl', 1), ('held', 1), ('bozen', 1), ('bolzano', 1), ('italy', 1), ('january', 1), ('full', 1), ('short', 1), ('invited', 1), ('poster', 1)]
[('web', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('business', 1), ('held', 1), ('fort', 1), ('worth', 1), ('texas', 1), ('usa', 1), ('december', 1), ('theme', 1), ('leveraging', 1), ('service', 1), ('computing', 1), ('big', 1), ('data', 1), ('analytics', 1), ('commerce', 1), ('thus', 1)]
[('human', 2), ('identification', 2), ('book', 1), ('cover', 1), ('aspect', 1), ('problem', 1), ('related', 1), ('computer', 1), ('vision', 1), ('machine', 1), ('learning', 1), ('working', 1), ('practical', 1), ('perspective', 1), ('introduces', 1), ('novel', 1), ('algorithm', 1), ('design', 1), ('bridge', 1), ('gap', 1)]
[('user', 2), ('book', 1), ('examines', 1), ('possibility', 1), ('incorporating', 1), ('element', 1), ('centred', 1), ('design', 1), ('ucd', 1), ('experience', 1), ('ux', 1), ('usability', 1), ('agile', 1), ('software', 1), ('development', 1), ('explores', 1), ('difficulty', 1), ('problem', 1), ('inherent', 1), ('integrating', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('global', 1), ('security', 1), ('safety', 1), ('sustainability', 1), ('icgs', 1), ('held', 1), ('london', 1), ('uk', 1), ('january', 1), ('nbsp', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('th', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('international', 1), ('workshop', 1), ('agent', 1), ('mediated', 1), ('electronic', 1), ('commerce', 1), ('amec', 1), ('tada', 1), ('took', 1), ('place', 1), ('istanbul', 1), ('turkey', 1), ('new', 1), ('york', 1), ('city', 1), ('usa', 1), ('july', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('biomedical', 1), ('engineering', 1), ('system', 1), ('technology', 1), ('biostec', 1), ('held', 1), ('rome', 1), ('italy', 1), ('february', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('cryptography', 2), ('function', 2), ('graduate', 1), ('textbook', 1), ('advanced', 1), ('tutorial', 1), ('theory', 1), ('computational', 1), ('complexity', 1), ('particular', 1), ('chapter', 1), ('explain', 1), ('aspect', 1), ('garbled', 1), ('circuit', 1), ('public', 1), ('key', 1), ('pseudorandom', 1), ('way', 1)]
[('conference', 2), ('business', 2), ('process', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('event', 1), ('held', 1), ('conjunction', 1), ('caise', 1), ('related', 1), ('area', 1), ('enterprise', 1), ('information', 1), ('system', 1), ('modeling', 1), ('th', 1), ('international', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('innovation', 1), ('community', 1), ('service', 1), ('c', 1), ('held', 1), ('darmstadt', 1), ('germany', 1), ('june', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('business', 1), ('information', 1), ('system', 1), ('bi', 1), ('held', 1), ('poznań', 1), ('poland', 1), ('june', 1), ('big', 1), ('data', 1), ('analytics', 1), ('help', 1), ('understand', 1), ('enhance', 1), ('enterprise', 1), ('linking', 1), ('many', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('engineering', 1), ('application', 1), ('neural', 1), ('network', 1), ('eann', 1), ('held', 1), ('athens', 1), ('greece', 1), ('august', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('conference', 1), ('creativity', 1), ('intelligent', 1), ('technology', 1), ('data', 1), ('science', 1), ('cit', 1), ('d', 1), ('held', 1), ('volgograd', 1), ('russia', 1), ('september', 1), ('revised', 1), ('full', 1), ('keynote', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('short', 1), ('workshop', 1), ('doctoral', 1), ('consortium', 1), ('th', 1), ('european', 1), ('conference', 1), ('advance', 1), ('database', 1), ('information', 1), ('system', 1), ('adbis', 1), ('held', 1), ('nicosia', 1), ('cyprus', 1), ('september', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('cloud', 1), ('computing', 1), ('icc', 1), ('held', 1), ('riyadh', 1), ('saudi', 1), ('arabia', 1), ('december', 1), ('volume', 1), ('set', 1), ('present', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('supercomputing', 1), ('isum', 1), ('held', 1), ('monterrey', 1), ('mexico', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('system', 1), ('security', 1), ('privacy', 1), ('icissp', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('february', 1), ('nbsp', 1), ('full', 1), ('presented', 1), ('carefully', 1)]
[('year', 1), ('covid', 1), ('pandemic', 1), ('marked', 1), ('huge', 1), ('change', 1), ('globally', 1), ('working', 1), ('home', 1), ('environment', 1), ('posed', 1), ('major', 1), ('challenge', 1), ('organisation', 1), ('around', 1), ('world', 1), ('forced', 1), ('use', 1), ('technological', 1), ('tool', 1), ('help', 1), ('employee', 1), ('work', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advance', 1), ('information', 1), ('technology', 1), ('iait', 1), ('held', 1), ('bangkok', 1), ('thailand', 1), ('december', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('cloud', 1), ('computing', 1), ('service', 1), ('science', 1), ('closer', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('april', 1), ('paper', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('future', 1), ('network', 1), ('system', 1), ('security', 1), ('fnss', 1), ('held', 1), ('paris', 1), ('france', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('process', 2), ('management', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('blockchain', 1), ('robotic', 1), ('rpa', 1), ('central', 1), ('eastern', 1), ('europe', 1), ('cee', 1), ('forum', 1), ('held', 1), ('part', 1), ('th', 1), ('international', 1), ('conference', 1), ('business', 1), ('bpm', 1), ('took', 1)]
[('home', 2), ('promise', 2), ('smart', 1), ('technology', 1), ('transform', 1), ('domestic', 1), ('comfort', 1), ('convenience', 1), ('security', 1), ('leisure', 1), ('reducing', 1), ('energy', 1), ('use', 1), ('delivering', 1), ('potentially', 1), ('conflicting', 1), ('depends', 1), ('adopted', 1), ('used', 1)]
[('step', 2), ('book', 1), ('app', 1), ('practitioner', 1), ('professional', 1), ('researcher', 1), ('student', 1), ('want', 1), ('learn', 1), ('make', 1), ('plot', 1), ('within', 1), ('environment', 1), ('using', 1), ('ggplot', 1), ('without', 1), ('coding', 1), ('widespread', 1), ('use', 1), ('statistical', 1), ('community', 1), ('free', 1)]
[('communication', 3), ('wireless', 2), ('internet', 2), ('recent', 1), ('year', 1), ('network', 1), ('become', 1), ('fundamental', 1), ('basis', 1), ('work', 1), ('leisure', 1), ('life', 1), ('early', 1), ('gsm', 1), ('mobile', 1), ('phone', 1), ('thing', 1), ('everything', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('evaluation', 1), ('novel', 1), ('approach', 1), ('software', 1), ('engineering', 1), ('enase', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('nbsp', 2), ('conference', 2), ('bi', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('business', 1), ('information', 1), ('system', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('july', 1), ('follows', 1), ('popular', 1), ('research', 1), ('trend', 1), ('academic', 1)]
[('edited', 1), ('research', 1), ('monograph', 1), ('brings', 1), ('together', 1), ('contribution', 1), ('computer', 1), ('scientist', 1), ('biologist', 1), ('engineer', 1), ('engaged', 1), ('study', 1), ('evolution', 1), ('applied', 1), ('solve', 1), ('real', 1), ('world', 1), ('problem', 1), ('serf', 1), ('festschrift', 1)]
[('paper', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('second', 1), ('international', 1), ('conference', 1), ('applied', 1), ('informatics', 1), ('icai', 1), ('held', 1), ('ota', 1), ('nigeria', 1), ('october', 1), ('full', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('information', 1), ('system', 1), ('technology', 1), ('webist', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('september', 1), ('full', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('distributed', 1), ('computing', 1), ('emerging', 1), ('smart', 1), ('network', 1), ('dice', 1), ('held', 1), ('bizerte', 1), ('tunisia', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('conference', 1)]
[('tool', 1), ('technology', 1), ('long', 1), ('complemented', 1), ('extended', 1), ('physical', 1), ('ability', 1), ('pre', 1), ('historic', 1), ('spearhead', 1), ('steam', 1), ('propelled', 1), ('plough', 1), ('high', 1), ('tech', 1), ('prosthetics', 1), ('development', 1), ('lens', 1), ('granted', 1), ('insight', 1), ('micro', 1)]
[('conference', 2), ('book', 1), ('contains', 1), ('selection', 1), ('best', 1), ('paper', 1), ('st', 1), ('benelux', 1), ('artificial', 1), ('intelligence', 1), ('bnaic', 1), ('th', 1), ('belgian', 1), ('dutch', 1), ('machine', 1), ('learning', 1), ('nbsp', 1), ('benelearn', 1), ('held', 1), ('brussels', 1), ('belgium', 1), ('november', 1)]
[('web', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('workshop', 1), ('business', 1), ('took', 1), ('place', 1), ('munich', 1), ('germany', 1), ('december', 1), ('nbsp', 1), ('purpose', 1), ('provide', 1), ('forum', 1), ('researcher', 1), ('practitioner', 1), ('discus', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('analysis', 1), ('image', 1), ('social', 1), ('network', 1), ('text', 1), ('aist', 1), ('moscow', 1), ('russia', 1), ('october', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('book', 1), ('constitutes', 1), ('selected', 1), ('revised', 1), ('extended', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('geographical', 1), ('information', 1), ('system', 1), ('theory', 1), ('application', 1), ('management', 1), ('gistam', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('due', 1), ('covid', 1)]
[('conference', 2), ('business', 2), ('process', 2), ('book', 1), ('contains', 1), ('proceeding', 1), ('long', 1), ('running', 1), ('event', 1), ('held', 1), ('along', 1), ('caise', 1), ('relating', 1), ('area', 1), ('enterprise', 1), ('information', 1), ('system', 1), ('modeling', 1), ('nbsp', 1), ('nd', 1), ('international', 1)]
[('design', 1), ('flexibility', 1), ('requires', 1), ('anticipation', 1), ('preparation', 1), ('creativity', 1), ('experience', 1), ('future', 1), ('highly', 1), ('digital', 1), ('sociotechnical', 1), ('system', 1), ('contrast', 1), ('stemming', 1), ('technology', 1), ('centered', 1), ('engineering', 1), ('produce', 1), ('object', 1), ('machine', 1)]
[('conference', 2), ('iot', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('industrial', 1), ('technology', 1), ('application', 1), ('held', 1), ('wuhu', 1), ('china', 1), ('march', 1), ('volume', 1), ('contains', 1), ('paper', 1), ('carefully', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('wireless', 1), ('internet', 1), ('wicon', 1), ('held', 1), ('haikou', 1), ('china', 1), ('december', 1), ('full', 1), ('poster', 1), ('paper', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('digital', 1), ('forensics', 1), ('cyber', 1), ('crime', 1), ('icdf', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('october', 1), ('full', 1), ('paper', 1), ('selected', 1), ('submission', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('innovation', 1), ('interdisciplinary', 1), ('solution', 1), ('underserved', 1), ('area', 1), ('intersol', 1), ('th', 1), ('collogue', 1), ('national', 1), ('sur', 1), ('la', 1), ('recherche', 1), ('en', 1), ('informatique', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('international', 1), ('iccasa', 1), ('ictcc', 1), ('held', 1), ('november', 1), ('tam', 1), ('ky', 1), ('city', 1), ('vietnam', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1), ('submission', 1)]
[('planning', 2), ('book', 1), ('explores', 1), ('role', 1), ('city', 1), ('urban', 1), ('rural', 1), ('linkage', 1), ('spurring', 1), ('innovation', 1), ('embedded', 1), ('spatial', 1), ('strategic', 1), ('economic', 1), ('decision', 1), ('support', 1), ('system', 1), ('particular', 1), ('contribution', 1), ('examine', 1), ('complexity', 1)]
[('book', 1), ('highlight', 1), ('paper', 1), ('presented', 1), ('second', 1), ('international', 1), ('conference', 1), ('smart', 1), ('vehicular', 1), ('technology', 1), ('transportation', 1), ('communication', 1), ('application', 1), ('vtca', 1), ('held', 1), ('mount', 1), ('emei', 1), ('sichuan', 1), ('province', 1), ('china', 1), ('october', 1)]
[('book', 1), ('initially', 1), ('review', 1), ('major', 1), ('feature', 1), ('representation', 1), ('extraction', 1), ('method', 1), ('effective', 1), ('learning', 1), ('recognition', 1), ('approach', 1), ('broad', 1), ('application', 1), ('context', 1), ('intelligent', 1), ('image', 1), ('search', 1), ('video', 1), ('retrieval', 1), ('subsequently', 1)]
[('second', 2), ('international', 2), ('conference', 2), ('iot', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('cloud', 1), ('networking', 1), ('system', 1), ('cn', 1), ('eai', 1), ('ict', 1), ('infrastructure', 1), ('service', 1), ('smart', 1), ('city', 1), ('iissc', 1), ('held', 1)]
[('conference', 3), ('volume', 1), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('wireless', 1), ('satellite', 1), ('service', 1), ('wisats', 1), ('held', 1), ('harbin', 1), ('china', 1), ('january', 1), ('formerly', 1), ('known', 1)]
[('technology', 2), ('book', 1), ('discus', 1), ('evolution', 1), ('future', 1), ('generation', 1), ('internet', 1), ('thing', 1), ('bringing', 1), ('together', 1), ('related', 1), ('single', 1), ('platform', 1), ('offer', 1), ('valuable', 1), ('insight', 1), ('undergraduate', 1), ('postgraduate', 1), ('student', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('infrastructure', 1), ('service', 1), ('developing', 1), ('country', 1), ('africomm', 1), ('held', 1), ('porto', 1), ('novo', 1), ('benin', 1), ('december', 1), ('full', 1), ('paper', 1)]
[('algorithm', 3), ('optimization', 2), ('book', 1), ('explores', 1), ('use', 1), ('socio', 1), ('inspired', 1), ('cohort', 1), ('intelligence', 1), ('along', 1), ('cognitive', 1), ('computing', 1), ('multi', 1), ('random', 1), ('start', 1), ('local', 1), ('search', 1), ('important', 1), ('type', 1), ('medium', 1), ('used', 1)]
[('arithmetic', 2), ('circuit', 2), ('basic', 2), ('book', 1), ('present', 1), ('complete', 1), ('accurate', 1), ('study', 1), ('algebraic', 1), ('first', 1), ('part', 1), ('offer', 1), ('review', 1), ('important', 1), ('concept', 1), ('describes', 1), ('simple', 1), ('implementation', 1), ('operation', 1)]
[('book', 1), ('constitutes', 1), ('revised', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('pervasive', 1), ('computing', 1), ('paradigm', 1), ('mental', 1), ('health', 1), ('mindcare', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('tool', 1), ('design', 1), ('implementation', 1), ('verification', 1), ('emerging', 1), ('information', 1), ('technology', 1), ('tridentcom', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('icst', 1), ('security', 1), ('privacy', 1), ('communication', 1), ('network', 1), ('held', 1), ('sydney', 1), ('australia', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('edition', 2), ('new', 1), ('received', 1), ('textbook', 1), ('provides', 1), ('concise', 1), ('introduction', 1), ('theoretical', 1), ('experimental', 1), ('aspect', 1), ('quantum', 1), ('information', 1), ('graduate', 1), ('level', 1), ('previous', 1), ('focused', 1), ('theory', 1), ('book', 1), ('incorporates', 1)]
[('conference', 3), ('held', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('mobile', 1), ('multimedia', 1), ('communication', 1), ('mobimedia', 1), ('july', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1)]
[('conference', 3), ('held', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('advanced', 1), ('hybrid', 1), ('information', 1), ('processing', 1), ('adhip', 1), ('october', 1), ('due', 1), ('covid', 1), ('virtually', 1), ('paper', 1)]
[('conference', 3), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('body', 1), ('area', 1), ('network', 1), ('bodynets', 1), ('october', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('intelligent', 1), ('technology', 1), ('interactive', 1), ('entertainment', 1), ('intetain', 1), ('due', 1), ('covid', 1), ('global', 1), ('pandemic', 1), ('held', 1), ('virtually', 1), ('year', 1)]
[('book', 2), ('application', 2), ('smart', 2), ('environment', 2), ('city', 2), ('introduces', 1), ('machine', 1), ('learning', 1), ('stage', 1), ('comprehensive', 1), ('understanding', 1), ('critical', 1), ('supporting', 1), ('future', 1), ('research', 1), ('includes', 1), ('chapter', 1)]
[('book', 1), ('constitutesthe', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('oncontext', 1), ('aware', 1), ('system', 1), ('application', 1), ('iccasa', 1), ('held', 1), ('vung', 1), ('tau', 1), ('vietnam', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('trust', 3), ('model', 2), ('springerbrief', 1), ('proposes', 1), ('motivated', 1), ('virtue', 1), ('epistemology', 1), ('addressing', 1), ('need', 1), ('efficient', 1), ('flexible', 1), ('wireless', 1), ('next', 1), ('generation', 1), ('network', 1), ('theory', 1), ('simplifies', 1), ('computation', 1), ('communication', 1)]
[('research', 3), ('book', 1), ('provides', 1), ('cutting', 1), ('edge', 1), ('overview', 1), ('latest', 1), ('development', 1), ('brain', 1), ('computer', 1), ('interface', 1), ('bcis', 1), ('reported', 1), ('leading', 1), ('group', 1), ('reader', 1), ('discover', 1), ('bci', 1), ('moving', 1), ('ahead', 1), ('rapidly', 1), ('many', 1), ('new', 1), ('idea', 1)]
[('multiword', 2), ('book', 1), ('excellent', 1), ('introduction', 1), ('expression', 1), ('provides', 1), ('unique', 1), ('comprehensive', 1), ('date', 1), ('overview', 1), ('exciting', 1), ('topic', 1), ('computational', 1), ('linguistics', 1), ('first', 1), ('part', 1), ('describes', 1), ('diversity', 1), ('richness', 1)]
[('based', 2), ('frequency', 2), ('springerbrief', 1), ('investigates', 1), ('performance', 1), ('semi', 1), ('blind', 1), ('independent', 1), ('component', 1), ('analysis', 1), ('ica', 1), ('equalization', 1), ('carrier', 1), ('offset', 1), ('estimation', 1), ('approach', 1), ('cfo', 1), ('number', 1), ('orthogonal', 1), ('division', 1), ('multiplexing', 1), ('ofdm', 1)]
[('system', 2), ('tele', 1), ('operation', 1), ('robot', 1), ('controlled', 1), ('remotely', 1), ('potential', 1), ('solution', 1), ('performing', 1), ('task', 1), ('remote', 1), ('small', 1), ('hazardous', 1), ('environment', 1), ('big', 1), ('disadvantage', 1), ('direct', 1), ('connection', 1)]
[('model', 3), ('new', 2), ('book', 1), ('data', 1), ('classification', 1), ('developed', 1), ('based', 1), ('competitive', 1), ('neural', 1), ('network', 1), ('learning', 1), ('vector', 1), ('quantization', 1), ('lvq', 1), ('type', 1), ('fuzzy', 1), ('logic', 1), ('computational', 1), ('consists', 1), ('hybridization', 1)]
[('methodology', 2), ('meta', 2), ('heuristic', 2), ('method', 2), ('book', 1), ('parameter', 1), ('adaptation', 1), ('op', 1), ('timization', 1), ('proposed', 1), ('based', 1), ('using', 1), ('met', 1), ('rics', 1), ('population', 1), ('decide', 1), ('fuzzy', 1), ('inference', 1), ('system', 1)]
[('problem', 2), ('objective', 2), ('book', 1), ('focus', 1), ('regarded', 1), ('recent', 1), ('nature', 1), ('inspired', 1), ('algorithm', 1), ('capable', 1), ('solving', 1), ('optimization', 1), ('multiple', 1), ('firstly', 1), ('provides', 1), ('preliminary', 1), ('essential', 1), ('definition', 1), ('multi', 1)]
[('intelligence', 2), ('graphic', 2), ('book', 1), ('demonstrates', 1), ('discus', 1), ('hypothesis', 1), ('within', 1), ('theory', 1), ('multiple', 1), ('isolated', 1), ('defined', 1), ('ability', 1), ('use', 1), ('skill', 1), ('solve', 1), ('problem', 1), ('create', 1), ('product', 1)]
[('nbsp', 5), ('volume', 2), ('conference', 2), ('data', 1), ('science', 1), ('engineering', 1), ('proceeding', 1), ('th', 1), ('imac', 1), ('exposition', 1), ('structural', 1), ('dynamic', 1), ('nineth', 1), ('nine', 1), ('brings', 1), ('together', 1), ('contribution', 1), ('important', 1)]
[('architecture', 2), ('evaluation', 2), ('thorough', 1), ('continuous', 1), ('architecting', 1), ('key', 1), ('overall', 1), ('success', 1), ('software', 1), ('engineering', 1), ('crucial', 1), ('part', 1), ('book', 1), ('present', 1), ('pragmatic', 1), ('approach', 1), ('insight', 1), ('gained', 1)]
[('simulation', 3), ('modelling', 2), ('marking', 1), ('th', 1), ('anniversary', 1), ('european', 1), ('conference', 1), ('ecm', 1), ('inspirational', 1), ('text', 1), ('reference', 1), ('review', 1), ('significant', 1), ('advance', 1), ('field', 1), ('key', 1), ('application', 1)]
[('book', 1), ('present', 1), ('outcome', 1), ('trans', 1), ('interdisciplinary', 1), ('research', 1), ('project', 1), ('nemo', 1), ('nbsp', 1), ('nachhaltige', 1), ('erfüllung', 1), ('von', 1), ('mobilitätsbedürfnissen', 1), ('ländlichen', 1), ('raum', 1), ('sustainable', 1), ('fulfilment', 1), ('mobility', 1), ('need', 1), ('rural', 1), ('area', 1), ('due', 1), ('demographic', 1)]
[('recurrence', 3), ('plot', 2), ('book', 1), ('feature', 1), ('paper', 1), ('presented', 1), ('fifth', 1), ('international', 1), ('symposium', 1), ('held', 1), ('august', 1), ('chicago', 1), ('il', 1), ('examines', 1), ('recent', 1), ('application', 1), ('development', 1), ('quantification', 1), ('analysis', 1), ('rqa', 1)]
[('methodology', 2), ('tool', 2), ('book', 1), ('describes', 1), ('used', 1), ('conduct', 1), ('social', 1), ('cyber', 1), ('forensic', 1), ('analysis', 1), ('applying', 1), ('various', 1), ('event', 1), ('observed', 1), ('case', 1), ('study', 1), ('contained', 1), ('within', 1), ('effectiveness', 1), ('highlighted', 1)]
[('considering', 1), ('emergence', 1), ('artificial', 1), ('intelligence', 1), ('virtual', 1), ('augmented', 1), ('reality', 1), ('video', 1), ('television', 1), ('holography', 1), ('logical', 1), ('begin', 1), ('create', 1), ('application', 1), ('business', 1), ('driven', 1), ('technology', 1)]
[('design', 3), ('tp', 2), ('model', 2), ('transformation', 2), ('control', 2), ('t', 1), ('fuzzy', 1), ('based', 1), ('revolutionized', 1), ('field', 1), ('introducing', 1), ('highly', 1), ('effective', 1), ('approach', 1), ('become', 1), ('evident', 1), ('controller', 1)]
[('conference', 2), ('volumeof', 1), ('advance', 1), ('intelligent', 1), ('system', 1), ('computing', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('atthe', 1), ('st', 1), ('european', 1), ('middle', 1), ('asian', 1), ('computer', 1), ('modelling', 1), ('emacom', 1), ('international', 1), ('conceived', 1), ('brand', 1), ('new', 1), ('scientific', 1), ('andsocial', 1)]
[('book', 1), ('present', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('focused', 1), ('current', 1), ('challenge', 1), ('towards', 1), ('realization', 1), ('biologically', 1), ('inspired', 1), ('intelligent', 1), ('agent', 1), ('cognitive', 1), ('architecture', 1), ('bica', 1), ('chapter', 1), ('written', 1), ('world', 1), ('recognized', 1), ('expert', 1), ('including', 1)]
[('book', 2), ('proceeding', 1), ('present', 1), ('recent', 1), ('research', 1), ('work', 1), ('result', 1), ('area', 1), ('communication', 1), ('information', 1), ('technology', 1), ('chapter', 1), ('contain', 1), ('main', 1), ('selected', 1), ('reviewed', 1), ('contribution', 1), ('scientist', 1), ('met', 1), ('th', 1)]
[('book', 1), ('report', 1), ('latest', 1), ('research', 1), ('development', 1), ('field', 1), ('cybersecurity', 1), ('giving', 1), ('special', 1), ('emphasis', 1), ('personal', 1), ('security', 1), ('new', 1), ('method', 1), ('reducing', 1), ('human', 1), ('error', 1), ('increasing', 1), ('cyber', 1), ('awareness', 1), ('innovative', 1), ('solution', 1)]
[('level', 2), ('book', 1), ('provides', 1), ('broad', 1), ('overview', 1), ('information', 1), ('communication', 1), ('technology', 1), ('ict', 1), ('supported', 1), ('innovation', 1), ('evidence', 1), ('based', 1), ('theoretical', 1), ('methodological', 1), ('present', 1), ('multi', 1), ('disciplinary', 1), ('perspective', 1), ('organizational', 1)]
[('conference', 2), ('isat', 2), ('four', 1), ('volume', 1), ('set', 1), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('system', 1), ('architecture', 1), ('technology', 1), ('short', 1), ('held', 1), ('september', 1), ('karpacz', 1), ('poland', 1)]
[('th', 2), ('book', 1), ('contains', 1), ('selection', 1), ('article', 1), ('nbsp', 1), ('europe', 1), ('middle', 1), ('east', 1), ('north', 1), ('africa', 1), ('conference', 1), ('technology', 1), ('security', 1), ('support', 1), ('learning', 1), ('emena', 1), ('tssl', 1), ('held', 1), ('october', 1), ('saidia', 1), ('oujda', 1), ('morocco', 1)]
[('proceeding', 2), ('book', 2), ('contains', 2), ('collection', 1), ('selected', 1), ('accepted', 1), ('paper', 1), ('mendel', 1), ('conference', 1), ('held', 1), ('brno', 1), ('czech', 1), ('republic', 1), ('june', 1), ('three', 1), ('chapter', 1), ('present', 1), ('recent', 1), ('advance', 1), ('soft', 1), ('computing', 1), ('including', 1)]
[('book', 1), ('collection', 1), ('original', 1), ('paper', 1), ('produced', 1), ('member', 1), ('euro', 1), ('working', 1), ('group', 1), ('transportation', 1), ('ewgt', 1), ('last', 1), ('several', 1), ('year', 1), ('respective', 1), ('chapter', 1), ('present', 1), ('result', 1), ('various', 1), ('research', 1), ('project', 1), ('carried', 1)]
[('afro', 1), ('european', 1), ('conference', 1), ('industrial', 1), ('advancement', 1), ('aecium', 1), ('brought', 1), ('together', 1), ('foremost', 1), ('expert', 1), ('excellent', 1), ('young', 1), ('researcher', 1), ('africa', 1), ('europe', 1), ('rest', 1), ('world', 1), ('disseminate', 1), ('latest', 1), ('result', 1), ('various', 1), ('field', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('system', 1), ('information', 1), ('science', 1), ('iccis', 1), ('held', 1), ('manta', 1), ('ecuador', 1), ('july', 1), ('jointly', 1), ('organized', 1), ('universidad', 1), ('laica', 1), ('eloy', 1), ('alfaro', 1), ('de', 1), ('manabí', 1), ('uleam', 1)]
[('city', 2), ('united', 1), ('nation', 1), ('included', 1), ('sustainable', 1), ('community', 1), ('sdgs', 1), ('smaller', 1), ('scale', 1), ('neighborhood', 1), ('building', 1), ('manager', 1), ('firm', 1), ('adopting', 1), ('technology', 1), ('information', 1), ('system', 1), ('help', 1), ('achieve', 1), ('energy', 1), ('economic', 1)]
[('data', 3), ('nowadays', 1), ('analysis', 1), ('becoming', 1), ('appealing', 1), ('topic', 1), ('due', 1), ('emergence', 1), ('new', 1), ('type', 1), ('dimension', 1), ('source', 1), ('motivates', 1), ('development', 1), ('probabilistic', 1), ('statistical', 1), ('approach', 1), ('tool', 1), ('cope', 1), ('different', 1), ('community', 1)]
[('conference', 2), ('book', 1), ('offer', 1), ('collection', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('seventh', 1), ('international', 1), ('ict', 1), ('innovation', 1), ('held', 1), ('october', 1), ('ohrid', 1), ('macedonia', 1), ('main', 1), ('topic', 1), ('emerging', 1), ('technology', 1), ('better', 1), ('living', 1), ('gathered', 1)]
[('intelligent', 2), ('system', 2), ('book', 1), ('devoted', 1), ('hybridization', 1), ('promising', 1), ('research', 1), ('field', 1), ('modern', 1), ('computational', 1), ('intelligence', 1), ('concerned', 1), ('development', 1), ('next', 1), ('generation', 1), ('volume', 1), ('contains', 1), ('paper', 1)]
[('kse', 2), ('field', 1), ('knowledge', 1), ('system', 1), ('engineering', 1), ('experienced', 1), ('rapid', 1), ('development', 1), ('inspired', 1), ('many', 1), ('application', 1), ('world', 1), ('information', 1), ('technology', 1), ('last', 1), ('decade', 1), ('conference', 1), ('aim', 1), ('providing', 1), ('open', 1), ('international', 1), ('forum', 1)]
[('iee', 2), ('volume', 1), ('set', 1), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('system', 1), ('short', 1), ('held', 1), ('september', 1), ('warsaw', 1), ('poland', 1), ('moreover', 1), ('contains', 1), ('selected', 1), ('paper', 1)]
[('conference', 2), ('engineering', 2), ('volume', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('sixth', 1), ('international', 1), ('knowledge', 1), ('system', 1), ('kse', 1), ('held', 1), ('hanoi', 1), ('vietnam', 1), ('october', 1), ('organized', 1), ('university', 1)]
[('book', 1), ('highlight', 1), ('latest', 1), ('research', 1), ('field', 1), ('health', 1), ('care', 1), ('agriculture', 1), ('presented', 1), ('second', 1), ('installment', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('intelligent', 1), ('system', 1), ('sustainable', 1), ('development', 1), ('ai', 1), ('sd', 1), ('held', 1), ('july', 1)]
[('book', 1), ('gather', 1), ('paper', 1), ('presented', 1), ('second', 1), ('installment', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('intelligent', 1), ('system', 1), ('sustainable', 1), ('development', 1), ('ai', 1), ('sd', 1), ('held', 1), ('july', 1), ('marrakech', 1), ('morocco', 1), ('offer', 1)]
[('field', 2), ('book', 1), ('author', 1), ('explore', 1), ('technological', 1), ('advance', 1), ('multimedia', 1), ('processing', 1), ('mathematical', 1), ('modeling', 1), ('highlighting', 1), ('latest', 1), ('research', 1), ('discussed', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('intelligent', 1), ('system', 1)]
[('cyber', 2), ('book', 1), ('present', 1), ('outcome', 1), ('international', 1), ('conference', 1), ('security', 1), ('intelligence', 1), ('analytics', 1), ('csia', 1), ('dedicated', 1), ('promoting', 1), ('novel', 1), ('theoretical', 1), ('applied', 1), ('research', 1), ('advance', 1), ('interdisciplinary', 1), ('field', 1)]
[('book', 2), ('technology', 2), ('aim', 1), ('attract', 1), ('researcher', 1), ('practitioner', 1), ('working', 1), ('information', 1), ('computer', 1), ('science', 1), ('edited', 1), ('basic', 1), ('high', 1), ('level', 1), ('concept', 1), ('regarding', 1), ('blockchain', 1), ('application', 1), ('multimedia', 1), ('security', 1)]
[('book', 1), ('gather', 1), ('best', 1), ('paper', 1), ('presented', 1), ('first', 1), ('conference', 1), ('held', 1), ('russian', 1), ('chapter', 1), ('association', 1), ('information', 1), ('system', 1), ('ai', 1), ('share', 1), ('latest', 1), ('insight', 1), ('various', 1), ('aspect', 1), ('digitalization', 1), ('economy', 1)]
[('information', 2), ('system', 2), ('development', 2), ('volume', 1), ('feature', 1), ('collection', 1), ('paper', 1), ('emerging', 1), ('concept', 1), ('significant', 1), ('insight', 1), ('novel', 1), ('approach', 1), ('idea', 1), ('examines', 1), ('advance', 1), ('general', 1), ('impact', 1)]
[('dawning', 1), ('era', 1), ('intelligent', 1), ('computing', 1), ('big', 1), ('data', 1), ('service', 1), ('security', 1), ('issue', 1), ('important', 1), ('consideration', 1), ('promoting', 1), ('new', 1), ('technology', 1), ('future', 1), ('book', 1), ('present', 1), ('proceeding', 1), ('international', 1), ('conference', 1)]
[('trend', 2), ('algorithm', 2), ('book', 1), ('present', 1), ('latest', 1), ('approach', 1), ('artificial', 1), ('intelligence', 1), ('research', 1), ('application', 1), ('intelligent', 1), ('system', 1), ('discus', 1), ('hybridization', 1), ('new', 1), ('neural', 1), ('network', 1), ('optimisation', 1), ('real', 1), ('life', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('xvii', 1), ('international', 1), ('data', 1), ('science', 1), ('intelligent', 1), ('analysis', 1), ('information', 1), ('icdsiai', 1), ('held', 1), ('kiev', 1), ('ukraine', 1), ('june', 1), ('series', 1), ('date', 1), ('back', 1)]
[('computing', 2), ('conference', 2), ('book', 1), ('gathering', 1), ('proceeding', 1), ('offer', 1), ('remarkable', 1), ('collection', 1), ('chapter', 1), ('covering', 1), ('wide', 1), ('range', 1), ('topic', 1), ('intelligent', 1), ('system', 1), ('real', 1), ('world', 1), ('application', 1), ('attracted', 1), ('total', 1)]
[('quantum', 2), ('book', 1), ('offer', 1), ('introduction', 1), ('ten', 1), ('key', 1), ('topic', 1), ('information', 1), ('science', 1), ('coherent', 1), ('phenomenon', 1), ('aimed', 1), ('graduate', 1), ('student', 1), ('level', 1), ('chapter', 1), ('cover', 1), ('recent', 1), ('development', 1), ('dynamic', 1), ('research', 1), ('field', 1)]
[('contribution', 2), ('volume', 1), ('present', 1), ('synergistic', 1), ('manner', 1), ('significant', 1), ('theoretical', 1), ('practical', 1), ('area', 1), ('social', 1), ('medium', 1), ('reputation', 1), ('authorship', 1), ('measurement', 1), ('visualization', 1), ('modeling', 1), ('book', 1), ('justifies', 1), ('proposes', 1)]
[('paper', 2), ('simulation', 2), ('book', 1), ('present', 1), ('unique', 1), ('selection', 1), ('fully', 1), ('reviewed', 1), ('extended', 1), ('originally', 1), ('presented', 1), ('social', 1), ('conference', 1), ('barcelona', 1), ('spain', 1), ('historical', 1), ('process', 1), ('selected', 1), ('aim', 1)]
[('crisis', 3), ('simulation', 2), ('simulating', 1), ('far', 1), ('creating', 1), ('situation', 1), ('order', 1), ('useful', 1), ('created', 1), ('within', 1), ('space', 1), ('day', 1), ('allow', 1), ('decision', 1), ('maker', 1), ('use', 1), ('quickly', 1)]
[('pursuing', 1), ('interdisciplinary', 1), ('approach', 1), ('book', 1), ('offer', 1), ('detailed', 1), ('insight', 1), ('empirical', 1), ('relationship', 1), ('overall', 1), ('social', 1), ('key', 1), ('figure', 1), ('state', 1), ('culture', 1), ('field', 1), ('information', 1), ('communication', 1), ('technology', 1), ('ict', 1), ('digital', 1)]
[('system', 2), ('science', 2), ('management', 2), ('book', 1), ('provides', 1), ('tool', 1), ('generic', 1), ('reader', 1), ('graduate', 1), ('interested', 1), ('majoring', 1), ('engineering', 1), ('decision', 1), ('project', 1), ('sharpen', 1), ('thinking', 1), ('skill', 1), ('equipping', 1)]
[('high', 4), ('pattern', 4), ('utility', 3), ('book', 1), ('present', 1), ('overview', 1), ('technique', 1), ('discovering', 1), ('importance', 1), ('data', 1), ('introduces', 1), ('main', 1), ('type', 1), ('theory', 1), ('core', 1), ('algorithm', 1)]
[('approach', 2), ('book', 1), ('present', 1), ('unique', 1), ('stream', 1), ('data', 1), ('mining', 1), ('unlike', 1), ('vast', 1), ('majority', 1), ('previous', 1), ('largely', 1), ('based', 1), ('heuristic', 1), ('highlight', 1), ('method', 1), ('algorithm', 1), ('mathematically', 1), ('justified', 1), ('first', 1), ('describes', 1)]
[('health', 2), ('quality', 2), ('book', 1), ('present', 1), ('collection', 1), ('state', 1), ('art', 1), ('approach', 1), ('deep', 1), ('learning', 1), ('based', 1), ('biomedical', 1), ('related', 1), ('application', 1), ('aim', 1), ('healthcare', 1), ('informatics', 1), ('ensure', 1), ('high', 1), ('efficient', 1), ('care', 1), ('better', 1), ('treatment', 1)]
[('interest', 2), ('book', 1), ('concern', 1), ('issue', 1), ('related', 1), ('biomathematics', 1), ('medicine', 1), ('cybernetics', 1), ('practiced', 1), ('engineer', 1), ('considered', 1), ('population', 1), ('dynamic', 1), ('model', 1), ('still', 1), ('researcher', 1), ('even', 1), ('increasing', 1), ('especially', 1)]
[('quantum', 4), ('algorithm', 2), ('fourier', 2), ('transform', 2), ('textbook', 1), ('introduces', 1), ('major', 1), ('topic', 1), ('include', 1), ('bit', 1), ('superposition', 1), ('entanglement', 1), ('logic', 1), ('gate', 1), ('search', 1), ('inverse', 1), ('shor', 1), ('order', 1), ('finding', 1), ('phase', 1)]
[('approximation', 3), ('book', 1), ('includes', 1), ('constructive', 1), ('theory', 1), ('present', 1), ('ordinary', 1), ('fractional', 1), ('positive', 1), ('sublinear', 1), ('operator', 1), ('high', 1), ('order', 1), ('multivariate', 1), ('generalized', 1), ('picard', 1), ('gauss', 1), ('weierstrass', 1), ('poisson', 1), ('cauchy', 1)]
[('sensor', 3), ('smart', 2), ('book', 1), ('provides', 1), ('professional', 1), ('educator', 1), ('researcher', 1), ('student', 1), ('compendium', 1), ('knowledge', 1), ('device', 1), ('type', 1), ('data', 1), ('analysis', 1), ('monitoring', 1), ('help', 1), ('decision', 1), ('making', 1), ('impact', 1), ('machine', 1)]
[('social', 2), ('data', 2), ('edited', 1), ('book', 1), ('cover', 1), ('ongoing', 1), ('research', 1), ('theory', 1), ('practical', 1), ('application', 1), ('using', 1), ('deep', 1), ('learning', 1), ('medium', 1), ('networking', 1), ('platform', 1), ('overwhelmed', 1), ('different', 1), ('content', 1), ('huge', 1), ('amount', 1), ('enormous', 1)]
[('book', 1), ('present', 1), ('theory', 1), ('application', 1), ('model', 1), ('presented', 1), ('regard', 1), ('establishes', 1), ('meaningful', 1), ('relationship', 1), ('data', 1), ('envelopment', 1), ('analysis', 1), ('multi', 1), ('attribute', 1), ('decision', 1), ('making', 1), ('issue', 1), ('choice', 1), ('using', 1), ('aggregation', 1)]
[('book', 1), ('continues', 1), ('tradition', 1), ('predecessor', 1), ('automation', 1), ('communication', 1), ('cybernetics', 1), ('science', 1), ('engineering', 1), ('includes', 1), ('representative', 1), ('selection', 1), ('scientific', 1), ('publication', 1), ('researcher', 1)]
[('book', 2), ('paper', 2), ('th', 2), ('contains', 1), ('collection', 1), ('accepted', 1), ('asia', 1), ('pacific', 1), ('symposium', 1), ('intelligent', 1), ('evolutionary', 1), ('system', 1), ('y', 1), ('held', 1), ('singapore', 1), ('november', 1), ('contained', 1), ('demonstrate', 1)]
[('book', 1), ('present', 1), ('tdf', 1), ('tactic', 1), ('development', 1), ('framework', 1), ('practical', 1), ('methodology', 1), ('eliciting', 1), ('engineering', 1), ('model', 1), ('expert', 1), ('decision', 1), ('making', 1), ('dynamic', 1), ('domain', 1), ('author', 1), ('apply', 1), ('bdi', 1), ('belief', 1), ('desire', 1), ('intention', 1), ('paradigm', 1), ('elicitation', 1)]
[('petri', 2), ('net', 2), ('modelling', 2), ('analysis', 2), ('system', 2), ('formal', 1), ('theoretically', 1), ('rich', 1), ('model', 1), ('subclass', 1), ('augmented', 1), ('marked', 1), ('graph', 1), ('posse', 1), ('structure', 1), ('especially', 1), ('desirable', 1)]
[('neuroergonomics', 3), ('emerging', 2), ('area', 2), ('book', 1), ('sum', 1), ('key', 1), ('research', 1), ('finding', 1), ('theoretical', 1), ('technological', 1), ('advance', 1), ('direct', 1), ('bearing', 1), ('whose', 1), ('collectively', 1), ('defined', 1), ('study', 1)]
[('geometric', 2), ('science', 2), ('data', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('modern', 1), ('method', 1), ('problem', 1), ('computing', 1), ('cover', 1), ('concurrent', 1), ('topic', 1), ('including', 1), ('processing', 1), ('manifold', 1), ('learning', 1), ('google', 1), ('search', 1), ('cloud', 1)]
[('object', 2), ('oriented', 2), ('technology', 2), ('aspect', 2), ('core', 1), ('idea', 1), ('book', 1), ('generic', 1), ('whose', 1), ('various', 1), ('technical', 1), ('presented', 1), ('unified', 1), ('consistent', 1), ('framework', 1), ('applies', 1), ('practical', 1), ('formal', 1)]
[('learning', 3), ('extreme', 2), ('machine', 2), ('pervasive', 2), ('book', 1), ('contains', 1), ('paper', 1), ('international', 1), ('conference', 1), ('held', 1), ('virtual', 1), ('december', 1), ('elm', 1), ('aim', 1), ('enable', 1), ('intelligence', 1)]
[('robot', 2), ('book', 1), ('provides', 1), ('thorough', 1), ('background', 1), ('emerging', 1), ('field', 1), ('medical', 1), ('robotics', 1), ('cover', 1), ('mathematics', 1), ('needed', 1), ('understand', 1), ('use', 1), ('robotic', 1), ('device', 1), ('medicine', 1), ('including', 1), ('limited', 1), ('kinematics', 1), ('hand', 1), ('eye', 1), ('world', 1)]
[('book', 1), ('defines', 1), ('agenda', 1), ('research', 1), ('information', 1), ('management', 1), ('system', 1), ('medium', 1), ('entertainment', 1), ('industry', 1), ('highlight', 1), ('particular', 1), ('need', 1), ('production', 1), ('distribution', 1), ('consumption', 1), ('chapter', 1), ('written', 1), ('practitioner', 1)]
[('graph', 2), ('colouring', 2), ('book', 1), ('treat', 1), ('algorithmic', 1), ('problem', 1), ('strong', 1), ('emphasis', 1), ('practical', 1), ('application', 1), ('author', 1), ('describes', 1), ('analysis', 1), ('best', 1), ('known', 1), ('algorithm', 1), ('arbitrary', 1), ('focusing', 1), ('whether', 1), ('heuristic', 1)]
[('healthcare', 2), ('application', 2), ('book', 1), ('examines', 1), ('state', 1), ('art', 1), ('research', 1), ('designing', 1), ('consideration', 1), ('security', 1), ('privacy', 1), ('explains', 1), ('mobile', 1), ('network', 1), ('mhn', 1), ('architecture', 1), ('diverse', 1), ('review', 1), ('existing', 1), ('work', 1)]
[('paper', 2), ('volume', 1), ('refereed', 1), ('presented', 1), ('ai', 1), ('thirty', 1), ('fifth', 1), ('sgai', 1), ('international', 1), ('conference', 1), ('innovative', 1), ('technique', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('held', 1), ('cambridge', 1), ('december', 1)]
[('chapter', 2), ('urban', 2), ('book', 1), ('form', 1), ('selection', 1), ('submitted', 1), ('cupum', 1), ('computational', 1), ('planning', 1), ('management', 1), ('conference', 1), ('held', 1), ('second', 1), ('week', 1), ('june', 1), ('aalto', 1), ('university', 1), ('helsinki', 1), ('finland', 1), ('selected', 1)]
[('book', 1), ('present', 1), ('framework', 1), ('converting', 1), ('multitude', 1), ('data', 1), ('stream', 1), ('available', 1), ('today', 1), ('including', 1), ('weather', 1), ('pattern', 1), ('stock', 1), ('price', 1), ('social', 1), ('medium', 1), ('traffic', 1), ('information', 1), ('disease', 1), ('incident', 1), ('actionable', 1), ('insight', 1), ('based', 1), ('situation', 1), ('recognition', 1)]
[('step', 2), ('textbook', 1), ('serf', 1), ('practical', 1), ('guide', 1), ('undergraduate', 1), ('graduate', 1), ('student', 1), ('geology', 1), ('hydrology', 1), ('ecology', 1), ('environmental', 1), ('science', 1), ('teaching', 1), ('applied', 1), ('gi', 1), ('technique', 1), ('presented', 1), ('tutorial', 1), ('across', 1), ('seventeen', 1), ('chapter', 1)]
[('information', 2), ('system', 2), ('book', 1), ('essential', 1), ('contribution', 1), ('description', 1), ('fuzziness', 1), ('usually', 1), ('user', 1), ('want', 1), ('retrieve', 1), ('data', 1), ('summarized', 1), ('database', 1), ('interested', 1), ('classifying', 1), ('building', 1), ('rule', 1), ('based', 1)]
[('development', 2), ('book', 1), ('focus', 1), ('recent', 1), ('virtual', 1), ('reality', 1), ('vr', 1), ('immersive', 1), ('technology', 1), ('effect', 1), ('modern', 1), ('digitised', 1), ('society', 1), ('explores', 1), ('current', 1), ('advancement', 1), ('field', 1), ('leading', 1)]
[('data', 2), ('textbook', 1), ('help', 1), ('future', 1), ('analyst', 1), ('comprehend', 1), ('aggregation', 1), ('function', 1), ('theory', 1), ('method', 1), ('accessible', 1), ('way', 1), ('focusing', 1), ('fundamental', 1), ('understanding', 1), ('summarization', 1), ('tool', 1), ('offering', 1), ('broad', 1), ('overview', 1), ('recent', 1), ('trend', 1)]
[('book', 1), ('focus', 1), ('analytic', 1), ('principle', 1), ('business', 1), ('practice', 1), ('big', 1), ('data', 1), ('specifically', 1), ('provides', 1), ('interface', 1), ('main', 1), ('discipline', 1), ('engineering', 1), ('technology', 1), ('organizational', 1), ('administrative', 1), ('aspect', 1), ('management', 1), ('serving', 1)]
[('solution', 2), ('soft', 2), ('computing', 2), ('book', 1), ('explains', 1), ('efficient', 1), ('segmenting', 1), ('intensity', 1), ('level', 1), ('different', 1), ('type', 1), ('multilevel', 1), ('image', 1), ('author', 1), ('present', 1), ('hybrid', 1), ('technique', 1), ('advantage', 1), ('conventional', 1)]
[('issue', 2), ('book', 1), ('begin', 1), ('introduction', 1), ('fundamental', 1), ('related', 1), ('digital', 1), ('preservation', 1), ('metadata', 1), ('proceeding', 1), ('depth', 1), ('coverage', 1), ('concerning', 1), ('practical', 1), ('use', 1), ('implementation', 1), ('help', 1), ('reader', 1), ('understand', 1), ('option', 1)]
[('self', 2), ('aware', 2), ('computing', 2), ('book', 1), ('provides', 1), ('formal', 1), ('informal', 1), ('definition', 1), ('taxonomy', 1), ('system', 1), ('explains', 1), ('relates', 1), ('many', 1), ('existing', 1), ('subfields', 1), ('computer', 1), ('science', 1), ('especially', 1), ('software', 1), ('engineering', 1), ('describes', 1)]
[('model', 2), ('handbook', 1), ('offer', 1), ('first', 1), ('comprehensive', 1), ('reference', 1), ('guide', 1), ('interdisciplinary', 1), ('field', 1), ('based', 1), ('reasoning', 1), ('highlight', 1), ('role', 1), ('mediator', 1), ('theory', 1), ('experimentation', 1), ('educational', 1), ('device', 1)]
[('mobile', 3), ('big', 2), ('data', 2), ('book', 1), ('report', 1), ('latest', 1), ('advance', 1), ('technology', 1), ('collecting', 1), ('storing', 1), ('processing', 1), ('connection', 1), ('wireless', 1), ('communication', 1), ('present', 1), ('novel', 1), ('approach', 1), ('application', 1)]
[('technology', 2), ('author', 2), ('present', 2), ('introduction', 1), ('renewable', 1), ('energy', 1), ('computational', 1), ('intelligence', 1), ('technique', 1), ('optimizing', 1), ('manufacture', 1), ('related', 1), ('including', 1), ('solar', 1), ('concentrators', 1), ('particular', 1), ('new', 1)]
[('intelligence', 2), ('artificial', 2), ('book', 1), ('describes', 1), ('use', 1), ('computational', 1), ('tool', 1), ('improve', 1), ('decision', 1), ('making', 1), ('process', 1), ('new', 1), ('product', 1), ('development', 1), ('approach', 1), ('including', 1), ('neural', 1), ('network', 1), ('constraint', 1), ('satisfaction', 1)]
[('technology', 2), ('state', 1), ('art', 1), ('novel', 1), ('methodology', 1), ('allow', 1), ('researcher', 1), ('designer', 1), ('domain', 1), ('expert', 1), ('pursue', 1), ('enhanced', 1), ('learning', 1), ('tel', 1), ('solution', 1), ('targeting', 1), ('cognitive', 1), ('process', 1), ('motivational', 1), ('personality', 1)]
[('online', 2), ('book', 1), ('present', 1), ('different', 1), ('perspective', 1), ('business', 1), ('education', 1), ('designed', 1), ('delivered', 1), ('support', 1), ('advance', 1), ('management', 1), ('discipline', 1), ('author', 1), ('describe', 1), ('platform', 1), ('provision', 1), ('timely', 1), ('excellent', 1)]
[('book', 2), ('provides', 1), ('collection', 1), ('concept', 1), ('algorithm', 1), ('technique', 1), ('effectively', 1), ('harness', 1), ('power', 1), ('spatial', 1), ('network', 1), ('big', 1), ('data', 1), ('reading', 1), ('first', 1), ('step', 1), ('towards', 1), ('understanding', 1), ('immense', 1), ('challenge', 1), ('novel', 1), ('application', 1), ('snbd', 1)]
[('book', 1), ('divided', 1), ('three', 1), ('element', 1), ('part', 1), ('provides', 1), ('broad', 1), ('introduction', 1), ('foundation', 1), ('computer', 1), ('music', 1), ('instrument', 1), ('covering', 1), ('key', 1), ('point', 1), ('digital', 1), ('signal', 1), ('processing', 1), ('rigorous', 1), ('approachable', 1), ('mathematics', 1), ('programming', 1)]
[('high', 2), ('performance', 2), ('computing', 2), ('book', 1), ('present', 1), ('state', 1), ('art', 1), ('modern', 1), ('supercomputer', 1), ('architecture', 1), ('address', 1), ('trend', 1), ('hardware', 1), ('software', 1), ('development', 1), ('general', 1), ('future', 1), ('system', 1)]
[('monograph', 1), ('give', 1), ('thorough', 1), ('treatment', 1), ('celebrated', 1), ('composition', 1), ('signature', 1), ('encryption', 1), ('allow', 1), ('verifiability', 1), ('efficiently', 1), ('prove', 1), ('property', 1), ('encrypted', 1), ('data', 1), ('study', 1), ('provided', 1), ('context', 1)]
[('network', 3), ('security', 2), ('metric', 2), ('book', 1), ('examines', 1), ('different', 1), ('aspect', 1), ('application', 1), ('enterprise', 1), ('pertinent', 1), ('issue', 1), ('securing', 1), ('mission', 1), ('critical', 1), ('computing', 1), ('lack', 1), ('effective', 1)]
[('information', 2), ('main', 1), ('focus', 1), ('textbook', 1), ('basic', 1), ('unit', 1), ('way', 1), ('understanding', 1), ('evolved', 1), ('time', 1), ('particular', 1), ('author', 1), ('cover', 1), ('concept', 1), ('related', 1), ('classical', 1), ('computing', 1), ('logic', 1), ('reversible', 1)]
[('modern', 2), ('book', 1), ('describes', 1), ('computer', 1), ('science', 1), ('viewpoint', 1), ('software', 1), ('method', 1), ('simulating', 1), ('analysing', 1), ('crowd', 1), ('particular', 1), ('focus', 1), ('effect', 1), ('panic', 1), ('emergency', 1), ('situation', 1), ('power', 1), ('technology', 1), ('impact', 1), ('life', 1)]
[('data', 3), ('big', 2), ('analytics', 2), ('book', 1), ('provides', 1), ('user', 1), ('cutting', 1), ('edge', 1), ('method', 1), ('technology', 1), ('area', 1), ('visual', 1), ('insight', 1), ('research', 1), ('conducted', 1), ('world', 1), ('renowned', 1), ('researcher', 1), ('field', 1), ('author', 1)]
[('simulation', 2), ('deformable', 2), ('book', 1), ('cover', 1), ('dynamic', 1), ('object', 1), ('challenging', 1), ('task', 1), ('computer', 1), ('graphic', 1), ('visualization', 1), ('focus', 1), ('model', 1), ('anisotropic', 1), ('material', 1), ('le', 1), ('common', 1)]
[('field', 2), ('learning', 2), ('th', 1), ('industrial', 1), ('revolution', 1), ('restructuring', 1), ('human', 1), ('societal', 1), ('organization', 1), ('called', 1), ('society', 1), ('machine', 1), ('sub', 1), ('deep', 1), ('related', 1), ('technology', 1), ('growing', 1), ('continuously', 1), ('rapidly', 1)]
[('structural', 2), ('health', 2), ('modern', 1), ('monitoring', 1), ('shm', 1), ('paradigm', 1), ('transforming', 1), ('situ', 1), ('real', 1), ('time', 1), ('data', 1), ('acquisition', 1), ('actionable', 1), ('decision', 1), ('regarding', 1), ('performance', 1), ('state', 1), ('maintenance', 1), ('life', 1), ('cycle', 1), ('assessment', 1), ('accelerated', 1)]
[('number', 2), ('computer', 2), ('operation', 2), ('book', 1), ('represented', 1), ('operated', 1), ('crucial', 1), ('developer', 1), ('understand', 1), ('area', 1), ('numerical', 1), ('allowed', 1), ('limitation', 1)]
[('approach', 2), ('book', 1), ('highlight', 1), ('analytics', 1), ('optimization', 1), ('issue', 1), ('industry', 1), ('propose', 1), ('new', 1), ('present', 1), ('application', 1), ('innovative', 1), ('real', 1), ('facility', 1), ('past', 1), ('decade', 1), ('exponential', 1), ('rise', 1)]
[('code', 2), ('problem', 2), ('new', 1), ('class', 1), ('provably', 1), ('capacity', 1), ('achieving', 1), ('error', 1), ('correction', 1), ('polar', 1), ('suitable', 1), ('many', 1), ('lossless', 1), ('lossy', 1), ('source', 1), ('coding', 1), ('side', 1), ('information', 1), ('multiple', 1), ('access', 1), ('channel', 1), ('etc', 1), ('first', 1), ('comprehensive', 1), ('book', 1)]
[('ami', 2), ('book', 1), ('present', 1), ('latest', 1), ('research', 1), ('ambient', 1), ('intelligence', 1), ('including', 1), ('software', 1), ('application', 1), ('different', 1), ('area', 1), ('internet', 1), ('thing', 1), ('multi', 1), ('agent', 1), ('system', 1), ('learning', 1), ('among', 1), ('others', 1), ('paradigm', 1), ('emerging', 1), ('artificial', 1)]
[('book', 1), ('present', 1), ('collection', 1), ('article', 1), ('advanced', 1), ('interdisciplinary', 1), ('application', 1), ('innovative', 1), ('technology', 1), ('scientific', 1), ('investigation', 1), ('result', 1), ('conference', 1), ('th', 1), ('day', 1), ('bosnian', 1), ('herzegovinian', 1), ('american', 1), ('academy', 1), ('art', 1)]
[('industrial', 2), ('innovative', 1), ('textbook', 1), ('present', 1), ('material', 1), ('course', 1), ('statistic', 1), ('incorporates', 1), ('python', 1), ('pedagogical', 1), ('practical', 1), ('resource', 1), ('drawing', 1), ('many', 1), ('year', 1), ('teaching', 1), ('conducting', 1), ('research', 1), ('various', 1), ('applied', 1)]
[('competition', 2), ('learning', 2), ('book', 1), ('summarizes', 1), ('organized', 1), ('held', 1), ('first', 1), ('nip', 1), ('track', 1), ('provides', 1), ('theory', 1), ('application', 1), ('hot', 1), ('topic', 1), ('machine', 1), ('adversarial', 1), ('conversational', 1), ('intelligence', 1), ('deep', 1)]
[('conformal', 2), ('geometry', 2), ('engineering', 2), ('book', 1), ('offer', 1), ('essential', 1), ('overview', 1), ('computational', 1), ('applied', 1), ('fundamental', 1), ('problem', 1), ('specific', 1), ('field', 1), ('introduces', 1), ('reader', 1), ('theory', 1), ('discus', 1), ('implementation', 1), ('issue', 1)]
[('use', 2), ('everyone', 1), ('expects', 1), ('product', 1), ('service', 1), ('secure', 1), ('building', 1), ('security', 1), ('earliest', 1), ('stage', 1), ('system', 1), ('design', 1), ('mean', 1), ('designing', 1), ('software', 1), ('unusable', 1), ('end', 1), ('user', 1), ('unwieldy', 1), ('developer', 1)]
[('software', 4), ('engineering', 2), ('language', 2), ('book', 1), ('identifies', 1), ('defines', 1), ('illustrates', 1), ('fundamental', 1), ('concept', 1), ('technique', 1), ('relevant', 1), ('application', 1), ('development', 1), ('present', 1), ('primarily', 1)]
[('java', 2), ('fundamental', 2), ('making', 1), ('extensive', 1), ('use', 1), ('example', 1), ('textbook', 1), ('programming', 1), ('teach', 1), ('skill', 1), ('getting', 1), ('started', 1), ('command', 1), ('line', 1), ('environment', 1), ('meant', 1), ('used', 1), ('semester', 1), ('course', 1), ('build', 1), ('solid', 1), ('foundation', 1)]
[('forensics', 2), ('hand', 1), ('textbook', 1), ('provides', 1), ('accessible', 1), ('introduction', 1), ('fundamental', 1), ('digital', 1), ('text', 1), ('contains', 1), ('thorough', 1), ('coverage', 1), ('theoretical', 1), ('foundation', 1), ('explaining', 1), ('computer', 1)]
[('fourth', 1), ('edition', 1), ('present', 1), ('new', 1), ('example', 1), ('submodules', 1), ('derived', 1), ('type', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('abstract', 1), ('interface', 1), ('procedure', 1), ('pointer', 1), ('interop', 1), ('sorting', 1), ('searching', 1), ('statistic', 1), ('converting', 1), ('modern', 1), ('version', 1), ('fortran', 1), ('key', 1)]
[('ge', 2), ('handbook', 1), ('offer', 1), ('comprehensive', 1), ('treatise', 1), ('grammatical', 1), ('evolution', 1), ('grammar', 1), ('based', 1), ('evolutionary', 1), ('algorithm', 1), ('employ', 1), ('function', 1), ('map', 1), ('binary', 1), ('string', 1), ('higher', 1), ('level', 1), ('structure', 1), ('program', 1), ('simplicity', 1), ('modular', 1), ('nature', 1)]
[('nbsp', 5), ('book', 1), ('provides', 1), ('general', 1), ('comprehensible', 1), ('overview', 1), ('imbalanced', 1), ('learning', 1), ('contains', 1), ('formal', 1), ('description', 1), ('problem', 1), ('focus', 1), ('main', 1), ('feature', 1), ('relevant', 1), ('proposed', 1), ('solution', 1), ('additionally', 1)]
[('java', 3), ('approach', 2), ('teaching', 2), ('game', 2), ('design', 2), ('innovative', 1), ('language', 1), ('programming', 1), ('us', 1), ('development', 1), ('method', 1), ('applying', 1), ('concept', 1), ('instead', 1), ('using', 1), ('project', 1), ('designed', 1), ('teach', 1), ('problem', 1), ('solving', 1)]
[('deception', 4), ('nbsp', 3), ('cyber', 3), ('textbook', 1), ('survey', 1), ('knowledge', 1), ('base', 1), ('automated', 1), ('resilient', 1), ('feature', 1), ('four', 1), ('major', 1), ('part', 1), ('reasoning', 1), ('framework', 1), ('dynamic', 1), ('decision', 1), ('making', 1), ('network', 1), ('based', 1)]
[('book', 2), ('data', 2), ('edited', 1), ('serve', 1), ('source', 1), ('reference', 1), ('technology', 1), ('application', 1), ('multimodality', 1), ('analytics', 1), ('big', 1), ('environment', 1), ('introduction', 1), ('editor', 1), ('organize', 1), ('four', 1), ('main', 1), ('part', 1), ('sentiment', 1), ('affect', 1)]
[('additional', 2), ('nd', 1), ('edition', 1), ('textbook', 1), ('expanded', 1), ('include', 1), ('page', 1), ('content', 1), ('created', 1), ('response', 1), ('reader', 1), ('feedback', 1), ('new', 1), ('hardware', 1), ('software', 1), ('release', 1), ('nbsp', 1), ('book', 1), ('present', 1), ('foundational', 1), ('robotics', 1), ('concept', 1)]
[('central', 1), ('topic', 1), ('computer', 1), ('science', 1), ('curriculum', 1), ('distinguish', 1), ('textbook', 1), ('others', 1), ('author', 1), ('considers', 1), ('probabilistic', 1), ('method', 1), ('fundamental', 1), ('construction', 1), ('simple', 1), ('efficient', 1), ('algorithm', 1), ('chapter', 1)]
[('first', 1), ('edition', 1), ('accessible', 1), ('textbook', 1), ('present', 1), ('introduction', 1), ('computer', 1), ('vision', 1), ('algorithm', 1), ('industrially', 1), ('relevant', 1), ('application', 1), ('ray', 1), ('testing', 1), ('nbsp', 1), ('feature', 1), ('introduces', 1), ('mathematical', 1), ('background', 1), ('monocular', 1), ('multiple', 1), ('view', 1)]
[('step', 2), ('second', 1), ('edition', 1), ('textbook', 1), ('introduces', 1), ('reader', 1), ('ibm', 1), ('spss', 1), ('modeler', 1), ('guide', 1), ('data', 1), ('mining', 1), ('process', 1), ('relevant', 1), ('statistical', 1), ('method', 1), ('focusing', 1), ('tutorial', 1), ('documented', 1), ('example', 1), ('help', 1), ('demystify', 1)]
[('management', 3), ('book', 2), ('technique', 2), ('concentrate', 1), ('wide', 1), ('range', 1), ('advance', 1), ('related', 1), ('cybersecurity', 1), ('topic', 1), ('covered', 1), ('include', 1), ('among', 1), ('others', 1), ('security', 1), ('risk', 1), ('impact', 1), ('technology', 1)]
[('algorithm', 2), ('cryptography', 2), ('cryptographic', 1), ('application', 1), ('rsa', 1), ('elgamal', 1), ('elliptic', 1), ('curve', 1), ('rabin', 1), ('cryptosystem', 1), ('diffie', 1), ('hellmann', 1), ('key', 1), ('exchange', 1), ('digital', 1), ('signature', 1), ('standard', 1), ('use', 1), ('modular', 1), ('exponentiation', 1), ('extensively', 1)]
[('science', 3), ('prediction', 2), ('book', 1), ('provides', 1), ('reader', 1), ('introduction', 1), ('interesting', 1), ('dynamic', 1), ('problem', 1), ('field', 1), ('focus', 1), ('forecasting', 1), ('future', 1), ('performance', 1), ('impact', 1), ('entity', 1), ('either', 1), ('research', 1)]
[('leadership', 2), ('cisos', 2), ('first', 1), ('section', 1), ('book', 1), ('address', 1), ('evolution', 1), ('ciso', 1), ('chief', 1), ('information', 1), ('security', 1), ('officer', 1), ('mature', 1), ('combining', 1), ('strong', 1), ('business', 1), ('technical', 1), ('skill', 1), ('add', 1), ('significant', 1), ('value', 1)]
[('point', 2), ('cloud', 2), ('book', 1), ('introduces', 1), ('application', 1), ('industry', 1), ('frequently', 1), ('used', 1), ('datasets', 1), ('mainly', 1), ('focus', 1), ('three', 1), ('computer', 1), ('vision', 1), ('task', 1), ('classification', 1), ('segmentation', 1), ('registration', 1), ('fundamental', 1)]
[('technique', 3), ('present', 2), ('tree', 2), ('book', 1), ('author', 1), ('exploring', 1), ('graph', 1), ('illustrates', 1), ('linear', 1), ('search', 1), ('backtracking', 1), ('instance', 1), ('exploration', 1), ('method', 1), ('various', 1), ('algorithm', 1), ('parsing', 1)]
[('flood', 3), ('natural', 2), ('flash', 1), ('hydro', 1), ('meteorological', 1), ('tropical', 1), ('cyclone', 1), ('devastating', 1), ('disaster', 1), ('causing', 1), ('massive', 1), ('damage', 1), ('made', 1), ('feature', 1), ('nbsp', 1), ('hazard', 1), ('major', 1), ('threat', 1), ('human', 1), ('life', 1)]
[('large', 1), ('surface', 1), ('computing', 1), ('device', 1), ('wall', 1), ('mounted', 1), ('tabletop', 1), ('touch', 1), ('interface', 1), ('application', 1), ('collaborative', 1), ('data', 1), ('analysis', 1), ('increasingly', 1), ('important', 1), ('prevalent', 1), ('activity', 1), ('primary', 1), ('topic', 1), ('book', 1), ('goal', 1), ('outline', 1)]
[('framework', 2), ('lecture', 1), ('describes', 1), ('theoretical', 1), ('behavioural', 1), ('science', 1), ('hold', 1), ('high', 1), ('promise', 1), ('theory', 1), ('driven', 1), ('research', 1), ('design', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('designed', 1), ('tackle', 1), ('adaptive', 1), ('ecological', 1), ('bounded', 1)]
[('hci', 3), ('although', 1), ('influenced', 1), ('field', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('origin', 1), ('humanistic', 1), ('come', 1), ('early', 1), ('time', 1), ('made', 1), ('substantial', 1), ('contribution', 1), ('theory', 1), ('methodology', 1)]
[('book', 2), ('engineering', 2), ('principle', 2), ('hci', 2), ('second', 1), ('author', 1), ('design', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('edp', 1), ('report', 1), ('research', 1), ('take', 1), ('discipline', 1), ('approach', 1), ('acquiring', 1), ('initial', 1)]
[('book', 2), ('engineering', 2), ('design', 2), ('principle', 2), ('background', 2), ('first', 1), ('concerned', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hci', 1), ('edp', 1), ('present', 1), ('companion', 1), ('volume', 1), ('divided', 1), ('three', 1)]
[('community', 2), ('new', 1), ('field', 1), ('cryptographic', 1), ('currency', 1), ('consensus', 1), ('ledger', 1), ('commonly', 1), ('referred', 1), ('blockchains', 1), ('receiving', 1), ('increasing', 1), ('interest', 1), ('various', 1), ('different', 1), ('diverse', 1), ('amongst', 1), ('others', 1), ('include', 1), ('technical', 1)]
[('circular', 2), ('object', 2), ('ellipse', 2), ('fitting', 2), ('computer', 2), ('projected', 1), ('ellipsis', 1), ('image', 1), ('first', 1), ('step', 1), ('analysis', 1), ('vision', 1), ('application', 1), ('reason', 1), ('study', 1), ('began', 1), ('soon', 1), ('came', 1)]
[('data', 4), ('tweet', 3), ('text', 2), ('associated', 2), ('location', 2), ('become', 1), ('ubiquitous', 1), ('example', 1), ('type', 1), ('issued', 1), ('use', 1), ('term', 1), ('spatial', 1), ('keyword', 1)]
[('document', 3), ('structure', 3), ('content', 2), ('refers', 2), ('usually', 1), ('text', 1), ('whereas', 1), ('logically', 1), ('organized', 1), ('increasingly', 1), ('common', 1), ('way', 1), ('encode', 1), ('use', 1)]
[('technology', 2), ('digital', 1), ('library', 1), ('dl', 1), ('introduced', 1), ('new', 1), ('leveraging', 1), ('enhancing', 1), ('integrating', 1), ('related', 1), ('early', 1), ('effort', 1), ('enriched', 1), ('formal', 1), ('approach', 1), ('society', 1)]
[('increasing', 2), ('research', 2), ('based', 2), ('recent', 1), ('year', 1), ('demand', 1), ('evaluation', 1), ('within', 1), ('university', 1), ('organisation', 1), ('parallel', 1), ('recognition', 1), ('traditional', 1), ('citation', 1), ('indicator', 1), ('able', 1)]
[('human', 2), ('many', 1), ('data', 1), ('intensive', 1), ('application', 1), ('use', 1), ('machine', 1), ('learning', 1), ('artificial', 1), ('intelligence', 1), ('technique', 1), ('depend', 1), ('providing', 1), ('initial', 1), ('dataset', 1), ('enabling', 1), ('algorithm', 1), ('process', 1), ('rest', 1), ('evaluate', 1), ('performance', 1)]
[('objective', 2), ('treatment', 2), ('many', 1), ('real', 1), ('world', 1), ('decision', 1), ('problem', 1), ('multiple', 1), ('example', 1), ('choosing', 1), ('medical', 1), ('plan', 1), ('want', 1), ('maximize', 1), ('efficacy', 1), ('minimize', 1), ('side', 1), ('effect', 1), ('typically', 1), ('conflict', 1)]
[('learning', 3), ('machine', 2), ('lifelong', 1), ('second', 1), ('edition', 1), ('introduction', 1), ('advanced', 1), ('paradigm', 1), ('continuously', 1), ('learns', 1), ('accumulating', 1), ('past', 1), ('knowledge', 1), ('us', 1), ('future', 1), ('problem', 1), ('solving', 1), ('contrast', 1), ('current', 1)]
[('neural', 2), ('network', 2), ('machine', 2), ('learning', 2), ('model', 2), ('book', 2), ('family', 1), ('powerful', 1), ('focus', 1), ('application', 1), ('natural', 1), ('language', 1), ('data', 1), ('first', 1), ('half', 1), ('part', 1), ('ii', 1), ('cover', 1), ('basic', 1), ('supervised', 1)]
[('n', 1), ('open', 1), ('source', 1), ('discrete', 1), ('event', 1), ('network', 1), ('simulator', 1), ('widely', 1), ('used', 1), ('research', 1), ('community', 1), ('involved', 1), ('standardization', 1), ('protocol', 1), ('ietf', 1), ('goal', 1), ('book', 1), ('twofold', 1), ('hand', 1), ('learn', 1)]
[('process', 2), ('network', 2), ('diffusion', 1), ('large', 1), ('used', 1), ('model', 1), ('many', 1), ('real', 1), ('world', 1), ('phenomenon', 1), ('including', 1), ('rumor', 1), ('spread', 1), ('internet', 1), ('epidemic', 1), ('among', 1), ('human', 1), ('being', 1), ('emotional', 1), ('contagion', 1), ('social', 1), ('even', 1), ('gene', 1), ('regulatory', 1)]
[('social', 2), ('medium', 2), ('shatters', 1), ('barrier', 1), ('communicate', 1), ('anytime', 1), ('anywhere', 1), ('walk', 1), ('life', 1), ('publicly', 1), ('available', 1), ('virtually', 1), ('free', 1), ('information', 1), ('pose', 1), ('new', 1), ('challenge', 1), ('consumer', 1), ('discern', 1), ('whether', 1), ('piece', 1)]
[('memory', 3), ('tm', 2), ('transaction', 2), ('transactional', 1), ('appealing', 1), ('paradigm', 1), ('concurrent', 1), ('programming', 1), ('shared', 1), ('architecture', 1), ('thread', 1), ('application', 1), ('communicate', 1), ('synchronize', 1), ('action', 1), ('via', 1), ('perform', 1)]
[('internet', 2), ('computer', 2), ('cooperative', 1), ('network', 1), ('supercomputing', 1), ('becoming', 1), ('increasingly', 1), ('popular', 1), ('harnessing', 1), ('power', 1), ('global', 1), ('computing', 1), ('platform', 1), ('typical', 1), ('supercomputer', 1), ('consists', 1), ('master', 1), ('server', 1), ('large', 1), ('number', 1), ('called', 1)]
[('data', 3), ('book', 1), ('discus', 1), ('principle', 1), ('practical', 1), ('application', 1), ('science', 1), ('addressing', 1), ('key', 1), ('topic', 1), ('including', 1), ('wrangling', 1), ('statistic', 1), ('machine', 1), ('learning', 1), ('visualization', 1), ('natural', 1), ('language', 1), ('processing', 1), ('time', 1), ('series', 1), ('analysis', 1), ('detailed', 1)]
[('model', 2), ('book', 1), ('give', 1), ('overview', 1), ('existing', 1), ('cover', 1), ('whole', 1), ('lifecycle', 1), ('iot', 1), ('application', 1), ('ranging', 1), ('design', 1), ('implementation', 1), ('deployment', 1), ('operation', 1), ('monitoring', 1), ('final', 1), ('termination', 1), ('retirement', 1), ('provide', 1), ('abstraction', 1)]
[('intelligence', 6), ('book', 1), ('introduces', 1), ('variety', 1), ('phenomenon', 1), ('starting', 1), ('birth', 1), ('universe', 1), ('including', 1), ('physic', 1), ('chemistry', 1), ('biology', 1), ('human', 1), ('machine', 1)]
[('ethical', 2), ('book', 1), ('draw', 1), ('almost', 1), ('five', 1), ('decade', 1), ('entrepreneurial', 1), ('experience', 1), ('innovation', 1), ('offer', 1), ('broad', 1), ('perspective', 1), ('tech', 1), ('startup', 1), ('approach', 1), ('subject', 1), ('front', 1), ('considering', 1), ('business', 1), ('technology', 1)]
[('data', 2), ('volume', 1), ('provides', 1), ('framework', 1), ('evaluating', 1), ('geospatial', 1), ('software', 1), ('participatory', 1), ('mapping', 1), ('evaluation', 1), ('based', 1), ('ten', 1), ('key', 1), ('indicator', 1), ('ethic', 1), ('cost', 1), ('technical', 1), ('level', 1), ('inclusiveness', 1), ('accuracy', 1), ('privacy', 1), ('analytical', 1), ('capacity', 1)]
[('secret', 2), ('sharing', 2), ('protocol', 2), ('book', 1), ('provides', 1), ('introduction', 1), ('key', 1), ('technology', 1), ('practical', 1), ('application', 1), ('higher', 1), ('level', 1), ('cryptographic', 1), ('nbsp', 1), ('survey', 1), ('analyzes', 1), ('existing', 1), ('work', 1), ('systematically', 1), ('present', 1), ('various', 1)]
[('book', 2), ('chronicle', 2), ('occurrence', 2), ('intended', 1), ('introduction', 1), ('versatile', 1), ('model', 1), ('temporal', 1), ('data', 1), ('exhibit', 1), ('original', 1), ('lattice', 1), ('structure', 1), ('space', 1), ('proposes', 1), ('new', 1), ('counting', 1), ('approach', 1), ('multiple', 1)]
[('homomorphic', 2), ('encryption', 2), ('lt', 1), ('gt', 1), ('book', 1), ('offer', 1), ('insight', 1), ('efficient', 1), ('utilization', 1), ('financial', 1), ('cryptography', 1), ('confidentiality', 1), ('phishing', 1), ('anonymity', 1), ('object', 1), ('user', 1), ('identity', 1), ('protection', 1), ('potential', 1)]
[('ai', 2), ('edge', 2), ('rise', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('artificial', 1), ('intelligence', 1), ('lead', 1), ('emergence', 1), ('computing', 1), ('system', 1), ('push', 1), ('training', 1), ('deployment', 1), ('model', 1), ('network', 1), ('reduced', 1), ('bandwidth', 1), ('cost', 1), ('improved', 1)]
[('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('workshop', 1), ('engineering', 1), ('multi', 1), ('agent', 1), ('system', 1), ('emas', 1), ('held', 1), ('conference', 1), ('initially', 1), ('planned', 1), ('take', 1), ('place', 1), ('london', 1), ('uk', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('processing', 1), ('portuguese', 1), ('language', 1), ('propor', 1), ('held', 1), ('fortaleza', 1), ('brazil', 1), ('march', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('soft', 1), ('computing', 1), ('icaisc', 1), ('held', 1), ('zakopane', 1), ('poland', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('proceeding', 2), ('june', 2), ('book', 1), ('constitutes', 1), ('th', 1), ('robocup', 1), ('international', 1), ('symposium', 1), ('held', 1), ('online', 1), ('full', 1), ('paper', 1), ('included', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('biomimetic', 1), ('biohybrid', 1), ('system', 1), ('living', 1), ('machine', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('july', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('ir', 1), ('research', 1), ('ecir', 1), ('held', 1), ('april', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('evo', 2), ('event', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('genetic', 1), ('programming', 1), ('eurogp', 1), ('held', 1), ('part', 1), ('virtual', 1), ('april', 1), ('co', 1), ('located', 1), ('evocop', 1), ('evomusart', 1)]
[('lnai', 3), ('nbsp', 2), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('pricai', 1), ('held', 1), ('cuvu', 1), ('yanuca', 1), ('island', 1), ('fiji', 1), ('august', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('modeling', 1), ('decision', 1), ('artificial', 1), ('intelligence', 1), ('mdai', 1), ('held', 1), ('milan', 1), ('italy', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('tool', 2), ('used', 2), ('book', 1), ('discus', 1), ('build', 1), ('optimization', 1), ('able', 1), ('generate', 1), ('better', 1), ('future', 1), ('study', 1), ('aim', 1), ('showing', 1), ('develop', 1), ('adaptive', 1), ('learning', 1), ('environment', 1), ('decision', 1), ('making', 1), ('presence', 1)]
[('workshop', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('nd', 1), ('chinese', 1), ('lexical', 1), ('semantics', 1), ('clsw', 1), ('held', 1), ('nanjing', 1), ('china', 1), ('full', 1), ('short', 1), ('included', 1), ('volume', 1), ('carefully', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('joint', 1), ('international', 1), ('digital', 1), ('inclusion', 1), ('assistive', 1), ('technology', 1), ('accessibility', 1), ('icchp', 1), ('aate', 1), ('held', 1), ('lecco', 1), ('italy', 1), ('july', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('took', 1), ('place', 1), ('harbin', 1), ('china', 1), ('august', 1), ('paper', 1), ('included', 1)]
[('school', 2), ('volume', 1), ('contains', 1), ('selected', 1), ('tutorial', 1), ('young', 1), ('scientist', 1), ('paper', 1), ('th', 1), ('raai', 1), ('summer', 1), ('artificial', 1), ('intelligence', 1), ('held', 1), ('july', 1), ('institute', 1), ('physic', 1), ('technology', 1), ('nbsp', 1), ('mipt', 1), ('campus', 1), ('dolgoprudny', 1), ('suburb', 1), ('moscow', 1)]
[('prof', 2), ('morik', 2), ('festschrift', 2), ('celebration', 1), ('th', 1), ('birthday', 1), ('cover', 1), ('research', 1), ('area', 1), ('worked', 1), ('present', 1), ('various', 1), ('researcher', 1), ('collaborated', 1), ('refereed', 1), ('article', 1), ('volume', 1), ('provide', 1), ('challenge', 1)]
[('book', 2), ('nbsp', 2), ('paper', 2), ('includes', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('rd', 1), ('robocup', 1), ('international', 1), ('symposium', 1), ('held', 1), ('sydney', 1), ('nsw', 1), ('australia', 1), ('july', 1), ('full', 1), ('revised', 1), ('invited', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('speech', 1), ('computer', 1), ('specom', 1), ('held', 1), ('budapest', 1), ('hungary', 1), ('august', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 2), ('belief', 2), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('function', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('lnai', 2), ('volume', 1), ('nbsp', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('collective', 1), ('intelligence', 1), ('icci', 1), ('held', 1), ('halkidiki', 1), ('greece', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('chile', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('joint', 1), ('conference', 1), ('rough', 1), ('set', 1), ('ijcrs', 1), ('held', 1), ('santiago', 1), ('de', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('keynote', 1), ('tutorial', 1), ('expert', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('multi', 1), ('disciplinary', 1), ('trend', 1), ('artificial', 1), ('intelligence', 1), ('miwai', 1), ('held', 1), ('online', 1), ('november', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('hybrid', 1), ('system', 1), ('biology', 1), ('hsb', 1), ('held', 1), ('grenoble', 1), ('france', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('industrial', 1), ('conference', 1), ('advance', 1), ('data', 1), ('mining', 1), ('icdm', 1), ('held', 1), ('new', 1), ('york', 1), ('ny', 1), ('usa', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('conference', 1), ('research', 1), ('computational', 1), ('molecular', 1), ('biology', 1), ('recomb', 1), ('held', 1), ('padua', 1), ('italy', 1), ('nbsp', 1), ('regular', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('address', 1), ('computer', 1), ('scientist', 1), ('specialist', 1), ('mathematician', 1), ('knowledge', 1), ('engineer', 1), ('programmer', 1), ('engaged', 1), ('research', 1), ('practice', 1), ('multicriteria', 1), ('decision', 1), ('making', 1), ('fuzzy', 1), ('measure', 1), ('known', 1), ('capacity', 1), ('allow', 1), ('combine', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('intelligent', 1), ('information', 1), ('database', 1), ('system', 1), ('aciids', 1), ('held', 1), ('yogyakarta', 1), ('indonesia', 1), ('april', 1), ('total', 1), ('full', 1), ('paper', 1)]
[('diagram', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('held', 1), ('tallinn', 1), ('estonia', 1), ('august', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('science', 1), ('engineering', 1), ('management', 1), ('ksem', 1), ('held', 1), ('hangzhou', 1), ('china', 1), ('august', 1), ('revised', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('statistical', 1), ('language', 1), ('speech', 1), ('processing', 1), ('slsp', 1), ('held', 1), ('le', 1), ('man', 1), ('france', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('held', 2), ('book', 1), ('feature', 1), ('selection', 1), ('best', 1), ('workshop', 1), ('international', 1), ('conference', 1), ('autonomous', 1), ('agent', 1), ('multiagent', 1), ('system', 1), ('aamas', 1), ('sao', 1), ('paulo', 1), ('brazil', 1), ('full', 1), ('presented', 1), ('volume', 1)]
[('volume', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('industrial', 1), ('conference', 1), ('adances', 1), ('data', 1), ('mining', 1), ('nbsp', 1), ('icdm', 1), ('held', 1), ('new', 1), ('york', 1), ('ny', 1), ('usa', 1), ('july', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('book', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('soft', 2), ('structure', 2), ('book', 1), ('nbsp', 1), ('offer', 1), ('self', 1), ('contained', 1), ('guide', 1), ('theory', 1), ('main', 1), ('application', 1), ('set', 1), ('introduces', 1), ('reader', 1), ('basic', 1), ('concept', 1), ('algebraic', 1), ('topological', 1), ('hybrid', 1), ('fuzzy', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('brain', 1), ('function', 1), ('assessment', 1), ('learning', 1), ('bfal', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1), ('october', 1), ('revised', 1), ('full', 1), ('short', 1)]
[('canadian', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('kingston', 1), ('canada', 1), ('regular', 1), ('short', 1), ('presented', 1), ('together', 1), ('graduate', 1)]
[('workshop', 2), ('singapore', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('held', 1), ('conjunction', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1)]
[('volume', 2), ('set', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('brazilian', 1), ('conference', 1), ('intelligent', 1), ('system', 1), ('bracis', 1), ('held', 1), ('rio', 1), ('grande', 1), ('brazil', 1), ('october', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('volume', 1), ('lnai', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('conference', 1), ('towards', 1), ('autonomous', 1), ('robotics', 1), ('taro', 1), ('held', 1), ('nottingham', 1), ('uk', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('various', 2), ('book', 1), ('provides', 1), ('overview', 1), ('fake', 1), ('news', 1), ('detection', 1), ('variety', 1), ('tutorial', 1), ('style', 1), ('survey', 1), ('article', 1), ('capture', 1), ('advancement', 1), ('field', 1), ('facet', 1), ('somewhat', 1), ('unique', 1), ('direction', 1), ('expert', 1), ('perspective', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('soft', 1), ('computing', 1), ('icaisc', 1), ('held', 1), ('zakopane', 1), ('poland', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('engineering', 1), ('psychology', 1), ('cognitive', 1), ('ergonomics', 1), ('epce', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('formal', 1), ('method', 1), ('macro', 1), ('biology', 1), ('fmmb', 1), ('held', 1), ('nouméa', 1), ('new', 1), ('caledonia', 1), ('september', 1), ('revised', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advance', 1), ('natural', 1), ('language', 1), ('processing', 1), ('poltal', 1), ('warsaw', 1), ('poland', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 2), ('spatial', 2), ('cognition', 2), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('held', 1), ('bremen', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('algorithmic', 1), ('learning', 1), ('theory', 1), ('alt', 1), ('held', 1), ('bled', 1), ('slovenia', 1), ('october', 1), ('co', 1), ('located', 1), ('discovery', 1), ('science', 1), ('d', 1)]
[('alcob', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algorithm', 1), ('computational', 1), ('biology', 1), ('planned', 1), ('held', 1), ('missoula', 1), ('mt', 1), ('usa', 1), ('june', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('held', 1), ('guangzhou', 1), ('china', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('education', 1), ('aied', 1), ('held', 1), ('utrecht', 1), ('netherlands', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('artificial', 2), ('intelligence', 2), ('book', 1), ('constitutes', 1), ('extended', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('symposium', 1), ('supported', 1), ('japanese', 1), ('society', 1), ('jsai', 1), ('isai', 1), ('organized', 1), ('tokyo', 1), ('institute', 1)]
[('paper', 2), ('book', 1), ('contains', 1), ('revised', 1), ('extended', 1), ('version', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('agent', 1), ('artificial', 1), ('intelligence', 1), ('icaart', 1), ('held', 1), ('valletta', 1), ('malta', 1), ('february', 1), ('overall', 1), ('full', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('frontier', 1), ('combining', 1), ('system', 1), ('frocos', 1), ('held', 1), ('birmingham', 1), ('uk', 1), ('september', 1)]
[('conference', 2), ('volume', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('joint', 1), ('rough', 1), ('set', 1), ('ijcrs', 1), ('bratislava', 1), ('slovak', 1), ('republic', 1), ('september', 1), ('held', 1), ('hybrid', 1), ('event', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('full', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ccf', 1), ('conference', 1), ('natural', 1), ('language', 1), ('processing', 1), ('chinese', 1), ('computing', 1), ('nlpcc', 1), ('held', 1), ('qingdao', 1), ('china', 1), ('october', 1), ('full', 1), ('paper', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('took', 1), ('place', 1), ('yantai', 1), ('china', 1), ('october', 1), ('paper', 1), ('included', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computer', 1), ('mathematics', 1), ('cicm', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('first', 1), ('caai', 1), ('international', 1), ('artificial', 1), ('intelligence', 1), ('held', 1), ('nbsp', 1), ('hangzhou', 1), ('china', 1), ('june', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('partially', 1)]
[('program', 2), ('python', 2), ('textbook', 1), ('aimed', 1), ('reader', 1), ('little', 1), ('knowledge', 1), ('computer', 1), ('programming', 1), ('want', 1), ('learn', 1), ('start', 1), ('basic', 1), ('including', 1), ('install', 1), ('environment', 1), ('write', 1), ('simple', 1)]
[('learning', 4), ('representation', 2), ('book', 1), ('offer', 1), ('detailed', 1), ('comprehensive', 1), ('analysis', 1), ('multi', 1), ('aspect', 1), ('data', 1), ('focusing', 1), ('especially', 1), ('approach', 1), ('unsupervised', 1), ('machine', 1), ('cover', 1), ('state', 1), ('art', 1), ('technique', 1)]
[('technology', 2), ('recent', 2), ('multimedia', 2), ('book', 1), ('systemically', 1), ('present', 1), ('key', 1), ('concept', 1), ('multi', 1), ('modal', 1), ('hashing', 1), ('advance', 1), ('large', 1), ('scale', 1), ('efficient', 1), ('search', 1), ('recommendation', 1), ('achievement', 1), ('indexing', 1), ('nbsp', 1), ('explosive', 1)]
[('book', 1), ('focus', 1), ('use', 1), ('artificial', 1), ('intelligence', 1), ('address', 1), ('specific', 1), ('problem', 1), ('brain', 1), ('orientation', 1), ('distribution', 1), ('function', 1), ('discus', 1), ('three', 1), ('aspect', 1), ('negetiveemoji', 1), ('preparing', 1), ('enhancing', 1), ('evaluating', 1), ('cuckoo', 1), ('search', 1), ('algorithm', 1)]
[('textbook', 1), ('introduces', 1), ('fundamental', 1), ('multimedia', 1), ('addressing', 1), ('real', 1), ('issue', 1), ('commonly', 1), ('faced', 1), ('workplace', 1), ('essential', 1), ('concept', 1), ('explained', 1), ('practical', 1), ('way', 1), ('enable', 1), ('student', 1), ('apply', 1), ('existing', 1), ('skill', 1), ('address', 1), ('problem', 1)]
[('pde', 2), ('constrained', 2), ('optimization', 2), ('book', 1), ('contains', 1), ('contribution', 1), ('mathematical', 1), ('analysis', 1), ('numerical', 1), ('solution', 1), ('optimal', 1), ('control', 1), ('problem', 1), ('partial', 1), ('differential', 1), ('equation', 1), ('system', 1), ('pdes', 1), ('appears', 1)]
[('problem', 2), ('science', 2), ('develops', 1), ('insight', 1), ('solving', 1), ('complex', 1), ('engineering', 1), ('biomedical', 1), ('social', 1), ('economics', 1), ('based', 1), ('artificial', 1), ('intelligence', 1), ('studied', 1), ('interstate', 1), ('conflict', 1), ('credit', 1), ('scoring', 1), ('breast', 1), ('cancer', 1), ('diagnosis', 1)]
[('volume', 2), ('computational', 2), ('optimization', 2), ('comprehensive', 1), ('collection', 1), ('extended', 1), ('contribution', 1), ('workshop', 1), ('present', 1), ('recent', 1), ('advance', 1), ('includes', 1), ('important', 1), ('real', 1), ('life', 1), ('problem', 1), ('parameter', 1)]
[('algorithm', 2), ('nature', 2), ('day', 2), ('problem', 2), ('book', 1), ('exemplifies', 1), ('developed', 1), ('mimicking', 1), ('classical', 1), ('technique', 1), ('solving', 1), ('time', 1), ('consuming', 1), ('address', 1), ('complex', 1), ('metaheuristic', 1), ('inspired', 1), ('optimization', 1)]
[('timely', 1), ('volume', 1), ('provides', 1), ('review', 1), ('state', 1), ('art', 1), ('framework', 1), ('methodology', 1), ('connecting', 1), ('diverse', 1), ('object', 1), ('device', 1), ('according', 1), ('vision', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('specific', 1), ('focus', 1), ('placed', 1), ('communication', 1)]
[('cyber', 2), ('attack', 2), ('book', 1), ('present', 1), ('latest', 1), ('advance', 1), ('machine', 1), ('intelligence', 1), ('big', 1), ('data', 1), ('analytics', 1), ('improve', 1), ('early', 1), ('warning', 1), ('cybersecurity', 1), ('intrusion', 1), ('detection', 1), ('monitoring', 1), ('malware', 1), ('analysis', 1), ('posed', 1), ('real', 1)]
[('algorithm', 2), ('book', 1), ('introduces', 1), ('reader', 1), ('genetic', 1), ('gas', 1), ('emphasis', 1), ('making', 1), ('concept', 1), ('application', 1), ('discussed', 1), ('easy', 1), ('understand', 1), ('possible', 1), ('avoids', 1), ('deal', 1), ('formalism', 1), ('thus', 1), ('open', 1), ('subject', 1)]
[('book', 2), ('ambient', 2), ('intelligence', 2), ('demonstratesthe', 1), ('success', 1), ('providing', 1), ('possible', 1), ('solution', 1), ('dailyneeds', 1), ('human', 1), ('address', 1), ('implication', 1), ('areasof', 1), ('domestic', 1), ('living', 1), ('elderly', 1), ('care', 1), ('robotics', 1), ('communication', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('socolnet', 1), ('doctoral', 1), ('conference', 1), ('computing', 1), ('electrical', 1), ('industrial', 1), ('system', 1), ('doceis', 1), ('held', 1), ('costa', 1), ('de', 1), ('caparica', 1), ('portugal', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('data', 3), ('analysis', 2), ('image', 2), ('book', 1), ('present', 1), ('thorough', 1), ('gestural', 1), ('extracted', 1), ('raw', 1), ('range', 1), ('aim', 1), ('recognize', 1), ('gesture', 1), ('conveyed', 1), ('cover', 1), ('morphological', 1), ('type', 1), ('fuzzy', 1), ('logic', 1), ('neural', 1), ('network', 1)]
[('conference', 2), ('book', 1), ('present', 1), ('scientific', 1), ('outcome', 1), ('th', 1), ('acis', 1), ('international', 1), ('computational', 1), ('science', 1), ('intelligence', 1), ('applied', 1), ('informatics', 1), ('csii', 1), ('held', 1), ('july', 1), ('hamamatsu', 1), ('japan', 1), ('aim', 1)]
[('book', 2), ('different', 2), ('variant', 2), ('decision', 2), ('tree', 2), ('learning', 2), ('focus', 1), ('induction', 1), ('describes', 1), ('meta', 1), ('approach', 1), ('general', 1), ('applicable', 1), ('type', 1), ('machine', 1), ('algorithm', 1), ('discus', 1)]
[('evolve', 2), ('mexico', 2), ('book', 1), ('comprises', 1), ('selection', 1), ('extended', 1), ('abstract', 1), ('paper', 1), ('presented', 1), ('held', 1), ('city', 1), ('aim', 1), ('build', 1), ('bridge', 1), ('probability', 1), ('set', 1), ('oriented', 1), ('numerics', 1), ('evolutionary', 1), ('computation', 1)]
[('book', 2), ('contribution', 2), ('collection', 1), ('several', 1), ('show', 1), ('state', 1), ('art', 1), ('specific', 1), ('area', 1), ('computational', 1), ('intelligence', 1), ('carefully', 1), ('edited', 1), ('honor', 1), ('th', 1), ('birthday', 1), ('rudolf', 1), ('kruse', 1), ('main', 1), ('focus', 1), ('lie', 1)]
[('previous', 1), ('editionthis', 1), ('textbook', 1), ('introduces', 1), ('fundamental', 1), ('multimedia', 1), ('addressing', 1), ('real', 1), ('issue', 1), ('commonly', 1), ('faced', 1), ('workplace', 1), ('essential', 1), ('concept', 1), ('explained', 1), ('practical', 1), ('way', 1), ('enable', 1), ('student', 1), ('apply', 1), ('existing', 1), ('skill', 1), ('address', 1)]
[('learning', 4), ('data', 3), ('big', 2), ('deep', 2), ('book', 1), ('contributes', 1), ('progress', 1), ('towards', 1), ('intelligent', 1), ('transportation', 1), ('emphasizes', 1), ('new', 1), ('management', 1), ('machine', 1), ('approach', 1), ('reinforcement', 1), ('energetic', 1)]
[('iot', 3), ('book', 1), ('focused', 1), ('emerging', 1), ('area', 1), ('combination', 1), ('semantic', 1), ('technology', 1), ('enable', 1), ('breaking', 1), ('silo', 1), ('local', 1), ('domain', 1), ('specific', 1), ('deployment', 1), ('taking', 1), ('account', 1), ('way', 1), ('ecosystem', 1), ('realized', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('working', 1), ('conference', 1), ('virtual', 1), ('enterprise', 1), ('pro', 1), ('held', 1), ('cardiff', 1), ('uk', 1), ('september', 1), ('nbsp', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('structural', 3), ('change', 3), ('model', 2), ('book', 1), ('focus', 1), ('economic', 1), ('modeling', 1), ('present', 1), ('paper', 1), ('describing', 1), ('introducing', 1), ('improvement', 1), ('existing', 1), ('making', 1), ('easier', 1), ('later', 1)]
[('metaheuristic', 2), ('book', 1), ('discus', 1), ('use', 1), ('efficient', 1), ('algorithm', 1), ('solve', 1), ('diverse', 1), ('power', 1), ('system', 1), ('problem', 1), ('providing', 1), ('overview', 1), ('various', 1), ('aspect', 1), ('method', 1), ('enable', 1), ('reader', 1), ('gain', 1), ('comprehensive', 1), ('understanding', 1), ('field', 1)]
[('book', 1), ('provides', 1), ('ultimate', 1), ('goal', 1), ('economic', 1), ('study', 1), ('predict', 1), ('economy', 1), ('develops', 1), ('happen', 1), ('implement', 1), ('different', 1), ('policy', 1), ('able', 1), ('need', 1), ('good', 1), ('understanding', 1), ('cause', 1), ('economics', 1)]
[('information', 2), ('ifip', 2), ('year', 1), ('international', 1), ('federation', 1), ('processing', 1), ('advancing', 1), ('research', 1), ('communication', 1), ('technology', 1), ('ict', 1), ('book', 1), ('look', 1), ('past', 1), ('experience', 1), ('future', 1), ('perspective', 1), ('using', 1), ('core', 1)]
[('science', 2), ('elucidating', 1), ('spatial', 1), ('temporal', 1), ('dynamic', 1), ('thing', 1), ('connect', 1), ('become', 1), ('important', 1), ('area', 1), ('research', 1), ('st', 1), ('century', 1), ('network', 1), ('pervades', 1), ('nearly', 1), ('every', 1), ('domain', 1), ('resulting', 1), ('new', 1), ('discovery', 1), ('host', 1)]
[('agent', 2), ('book', 1), ('devoted', 1), ('encounter', 1), ('interaction', 1), ('robot', 1), ('describes', 1), ('cooperate', 1), ('previously', 1), ('unknown', 1), ('teammate', 1), ('forming', 1), ('ad', 1), ('hoc', 1), ('team', 1), ('present', 1), ('new', 1), ('algorithm', 1), ('plastic', 1), ('allows', 1)]
[('information', 2), ('filtering', 2), ('retrieval', 2), ('book', 1), ('address', 1), ('new', 1), ('challenge', 1), ('emerging', 1), ('idea', 1), ('distributed', 1), ('gather', 1), ('extended', 1), ('paper', 1), ('presented', 1), ('dart', 1), ('th', 1), ('international', 1), ('workshop', 1), ('held', 1), ('december', 1)]
[('book', 1), ('present', 1), ('selected', 1), ('paper', 1), ('rd', 1), ('international', 1), ('workshop', 1), ('computational', 1), ('engineering', 1), ('held', 1), ('stuttgart', 1), ('october', 1), ('bringing', 1), ('together', 1), ('innovative', 1), ('contribution', 1), ('related', 1), ('field', 1), ('computer', 1), ('science', 1), ('mathematics', 1)]
[('book', 1), ('represents', 1), ('combined', 1), ('peer', 1), ('reviewed', 1), ('proceeding', 1), ('ninth', 1), ('international', 1), ('symposium', 1), ('intelligent', 1), ('distributed', 1), ('computing', 1), ('idc', 1), ('workshop', 1), ('cyber', 1), ('security', 1), ('resilience', 1), ('large', 1), ('scale', 1), ('system', 1), ('wsrl', 1)]
[('recent', 2), ('anns', 2), ('book', 1), ('cover', 1), ('theoretical', 1), ('aspect', 1), ('innovativeapplications', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('natural', 1), ('environmental', 1), ('biological', 1), ('social', 1), ('industrial', 1), ('automated', 1), ('system', 1), ('present', 1), ('result', 1), ('modelling', 1)]
[('network', 2), ('textbook', 1), ('review', 1), ('theory', 1), ('application', 1), ('latest', 1), ('breakthroughsin', 1), ('delay', 1), ('tolerant', 1), ('dtns', 1), ('presenting', 1), ('specific', 1), ('focus', 1), ('opportunisticmobile', 1), ('omns', 1), ('text', 1), ('considers', 1), ('influence', 1), ('human', 1), ('aspect', 1), ('andexamines', 1)]
[('conference', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('revised', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('information', 1), ('technology', 1), ('disaster', 1), ('risk', 1), ('reduction', 1), ('itdrr', 1), ('morioka', 1), ('japan', 1), ('october', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('recent', 1), ('development', 1), ('fuzzy', 1), ('logic', 1), ('neural', 1), ('network', 1), ('optimization', 1), ('algorithm', 1), ('hybrid', 1), ('combination', 1), ('presented', 1), ('addition', 1), ('mentioned', 1), ('method', 1), ('applied', 1), ('area', 1), ('intelligent', 1), ('control', 1)]
[('security', 2), ('network', 2), ('timely', 1), ('textbook', 1), ('present', 1), ('comprehensive', 1), ('guide', 1), ('core', 1), ('topic', 1), ('computing', 1), ('information', 1), ('assurance', 1), ('realm', 1), ('going', 1), ('beyond', 1), ('ubiquitous', 1), ('mobile', 1), ('communication', 1), ('online', 1), ('social', 1)]
[('intelligence', 2), ('application', 2), ('book', 1), ('describes', 1), ('current', 1), ('potential', 1), ('use', 1), ('artificial', 1), ('computational', 1), ('technique', 1), ('biomedicine', 1), ('area', 1), ('medical', 1), ('range', 1), ('general', 1), ('diagnostics', 1), ('processing', 1), ('ray', 1), ('image', 1)]
[('gans', 2), ('book', 1), ('meant', 1), ('reader', 1), ('want', 1), ('understand', 1), ('without', 1), ('need', 1), ('strong', 1), ('mathematical', 1), ('background', 1), ('moreover', 1), ('cover', 1), ('practical', 1), ('application', 1), ('making', 1), ('excellent', 1), ('resource', 1), ('beginner', 1), ('nbsp', 1), ('primer', 1), ('generative', 1)]
[('book', 1), ('composed', 1), ('paper', 1), ('written', 1), ('english', 1), ('accepted', 1), ('presentation', 1), ('discussion', 1), ('international', 1), ('conference', 1), ('information', 1), ('technology', 1), ('system', 1), ('icits', 1), ('held', 1), ('universidad', 1), ('nacional', 1), ('de', 1), ('san', 1), ('antonio', 1), ('abad', 1), ('del', 1), ('cusco', 1)]
[('book', 2), ('usage', 2), ('day', 2), ('focus', 1), ('mainly', 1), ('three', 1), ('key', 1), ('technology', 1), ('iot', 1), ('big', 1), ('data', 1), ('ai', 1), ('various', 1), ('application', 1), ('explores', 1), ('possibility', 1), ('future', 1), ('research', 1), ('based', 1), ('latest', 1), ('information', 1), ('system', 1)]
[('book', 1), ('deal', 1), ('integrated', 1), ('web', 1), ('mobile', 1), ('iot', 1), ('technology', 1), ('novel', 1), ('approach', 1), ('technique', 1), ('new', 1), ('tool', 1), ('framework', 1), ('needed', 1), ('address', 1), ('increasing', 1), ('complexity', 1), ('distributed', 1), ('computing', 1), ('paradigm', 1), ('coming', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('geographical', 1), ('information', 1), ('theory', 1), ('application', 1), ('management', 1), ('gistam', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('optimization', 1), ('application', 1), ('nbsp', 1), ('optimum', 1), ('held', 1), ('petrovac', 1), ('montenegro', 1), ('october', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('internet', 3), ('future', 2), ('technology', 2), ('service', 1), ('thing', 1), ('major', 1), ('building', 1), ('block', 1), ('digital', 1), ('enterprise', 1), ('based', 1), ('mobile', 1), ('social', 1), ('cloud', 1), ('se', 1), ('mantic', 1)]
[('workshop', 2), ('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('mobile', 1), ('web', 1), ('information', 1), ('mobiwis', 1), ('held', 1), ('paphos', 1), ('cyprus', 1), ('august', 1), ('hosted', 1), ('first', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('neural', 1), ('network', 1), ('artificial', 1), ('intelligence', 1), ('icnnai', 1), ('held', 1), ('brest', 1), ('belarus', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('society', 1), ('wi', 1), ('held', 1), ('turku', 1), ('finland', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('joint', 1), ('conference', 1), ('knowledge', 1), ('based', 1), ('software', 1), ('engineering', 1), ('jckbse', 1), ('held', 1), ('volgograd', 1), ('russia', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('analysis', 1), ('image', 1), ('social', 1), ('network', 1), ('text', 1), ('aist', 1), ('held', 1), ('yekaterinburg', 1), ('russia', 1), ('april', 1), ('full', 1), ('short', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('entitled', 1), ('beyond', 1), ('database', 1), ('architecture', 1), ('structure', 1), ('bdas', 1), ('held', 1), ('ustroń', 1), ('poland', 1), ('consists', 1), ('carefully', 1), ('revised', 1), ('selected', 1), ('paper', 1)]
[('volume', 2), ('ccis', 2), ('first', 1), ('set', 1), ('contains', 1), ('extended', 1), ('abstract', 1), ('poster', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('toronto', 1), ('canada', 1), ('july', 1)]
[('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('three', 1), ('held', 1), ('rome', 1), ('italy', 1), ('conjunction', 1), ('th', 1), ('conference', 1), ('agile', 1), ('software', 1), ('development', 1), ('xp', 1), ('comprised', 1), ('principle', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('euro', 1), ('mini', 1), ('conference', 1), ('emc', 1), ('ons', 1), ('held', 1), ('aveiro', 1), ('portugal', 1), ('february', 1), ('revised', 1), ('full', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('russian', 1), ('summer', 1), ('school', 1), ('information', 1), ('retrieval', 1), ('russir', 1), ('held', 1), ('saint', 1), ('petersburg', 1), ('russia', 1), ('august', 1), ('volume', 1), ('includes', 1), ('tutorial', 1), ('paper', 1), ('summarizing', 1), ('lecture', 1), ('given', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('technology', 1), ('innovation', 1), ('citi', 1), ('held', 1), ('guayaquil', 1), ('ecuador', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('contains', 1), ('revised', 1), ('extended', 1), ('version', 1), ('selected', 1), ('paper', 1), ('sixth', 1), ('international', 1), ('symposium', 1), ('business', 1), ('modeling', 1), ('software', 1), ('design', 1), ('bmsd', 1), ('held', 1), ('rhodes', 1), ('greece', 1), ('june', 1), ('organized', 1), ('institute', 1), ('iicrest', 1), ('cooperation', 1)]
[('contribution', 1), ('written', 1), ('foremost', 1), ('international', 1), ('researcher', 1), ('practitioner', 1), ('genetic', 1), ('programming', 1), ('gp', 1), ('explore', 1), ('synergy', 1), ('theoretical', 1), ('empirical', 1), ('result', 1), ('real', 1), ('world', 1), ('problem', 1), ('producing', 1), ('comprehensive', 1), ('view', 1), ('state', 1)]
[('established', 1), ('cognitive', 1), ('psychology', 1), ('provides', 1), ('sound', 1), ('foundation', 1), ('understanding', 1), ('interaction', 1), ('digital', 1), ('technology', 1), ('longer', 1), ('sufficient', 1), ('make', 1), ('sense', 1), ('use', 1), ('experience', 1), ('personal', 1), ('relational', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('computer', 1), ('network', 1), ('cn', 1), ('june', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('network', 1), ('cn', 1), ('held', 1), ('gliwice', 1), ('poland', 1), ('june', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('knowledge', 3), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('discovery', 1), ('engineering', 1), ('management', 1), ('ic', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('november', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('distributed', 1), ('computer', 1), ('communication', 1), ('network', 1), ('dccn', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('september', 1), ('full', 1), ('short', 1), ('carefully', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutesselected', 1), ('extended', 1), ('nbsp', 1), ('th', 1), ('international', 1), ('conference', 1), ('evaluation', 1), ('novel', 1), ('approach', 1), ('software', 1), ('engineering', 1), ('enase', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('selected', 1), ('revised', 1), ('paper', 1), ('nbsp', 1), ('first', 1), ('international', 1), ('workshop', 1), ('combating', 1), ('line', 1), ('ho', 1), ('st', 1), ('ile', 1), ('post', 1), ('regional', 1), ('language', 1), ('dur', 1), ('ing', 1), ('emerge', 1), ('ncy', 1), ('si', 1), ('tuation', 1), ('constraint', 1), ('collocated', 1), ('aai', 1), ('held', 1), ('virtual', 1)]
[('nbsp', 3), ('theory', 2), ('equation', 2), ('book', 1), ('discus', 1), ('quantum', 1), ('random', 1), ('brownian', 1), ('motion', 1), ('small', 1), ('particle', 1), ('electron', 1), ('etc', 1), ('external', 1), ('force', 1), ('implying', 1), ('schrödinger', 1), ('complex', 1), ('valued', 1), ('evolution', 1)]
[('web', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('workshop', 1), ('business', 1), ('took', 1), ('place', 1), ('virtually', 1), ('december', 1), ('purpose', 1), ('provide', 1), ('forum', 1), ('researcher', 1), ('practitioner', 1), ('discus', 1), ('finding', 1), ('novel', 1)]
[('book', 3), ('synthetic', 2), ('data', 2), ('first', 1), ('deep', 1), ('learning', 1), ('breadth', 1), ('coverage', 1), ('render', 1), ('default', 1), ('reference', 1), ('year', 1), ('come', 1), ('serve', 1), ('introduction', 1), ('several', 1), ('important', 1)]
[('revised', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('model', 1), ('driven', 1), ('engineering', 1), ('software', 1), ('development', 1), ('modelsward', 1), ('held', 1), ('valletta', 1), ('malta', 1), ('february', 1), ('nbsp', 1), ('extended', 1)]
[('nbsp', 2), ('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('tool', 1), ('method', 1), ('program', 1), ('analysis', 1), ('tmpa', 1), ('held', 1), ('tbilisi', 1), ('georgia', 1), ('november', 1), ('full', 1), ('short', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('extended', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('cloud', 1), ('computing', 1), ('service', 1), ('science', 1), ('closer', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('automated', 2), ('design', 2), ('book', 1), ('present', 1), ('recent', 1), ('advance', 1), ('machine', 1), ('learning', 1), ('automl', 1), ('algorithm', 1), ('indicates', 1), ('future', 1), ('direction', 1), ('fast', 1), ('developing', 1), ('area', 1), ('method', 1), ('developed', 1), ('automate', 1), ('neural', 1), ('network', 1)]
[('approach', 2), ('hwid', 2), ('socio', 1), ('technical', 1), ('hci', 1), ('called', 1), ('human', 1), ('work', 1), ('interaction', 1), ('design', 1), ('emerged', 1), ('around', 1), ('grown', 1), ('steadily', 1), ('time', 1), ('sharing', 1), ('research', 1), ('wider', 1), ('audience', 1), ('book', 1), ('used', 1), ('discus', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('extended', 1), ('paper', 1), ('second', 1), ('international', 1), ('workshop', 1), ('nbsp', 1), ('deployable', 1), ('machine', 1), ('learning', 1), ('security', 1), ('defense', 1), ('mlhat', 1), ('august', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('conference', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nbsp', 1), ('first', 1), ('workshop', 1), ('monte', 1), ('carlo', 1), ('search', 1), ('mc', 1), ('organized', 1), ('conjunction', 1), ('ijcai', 1), ('event', 1), ('supposed', 1), ('take', 1), ('place', 1), ('yokohama', 1), ('japan', 1), ('july', 1), ('due', 1), ('covid', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('system', 2), ('book', 1), ('includes', 1), ('extended', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('smart', 1), ('city', 1), ('green', 1), ('ict', 1), ('smartgreens', 1), ('vehicle', 1), ('technology', 1), ('intelligent', 1), ('transport', 1)]
[('nbsp', 2), ('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('revised', 1), ('paper', 1), ('th', 1), ('international', 1), ('logistics', 1), ('supply', 1), ('chain', 1), ('management', 1), ('december', 1), ('tehran', 1), ('iran', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('online', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('new', 1), ('trend', 1), ('information', 1), ('communication', 1), ('technology', 1), ('application', 1), ('ntict', 1), ('held', 1), ('baghdad', 1), ('iraq', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('system', 1), ('security', 1), ('privacy', 1), ('icissp', 1), ('held', 1), ('valletta', 1), ('malta', 1), ('february', 1), ('full', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('held', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('revised', 1), ('paper', 1), ('second', 1), ('silicon', 1), ('valley', 1), ('cybersecurity', 1), ('san', 1), ('jose', 1), ('usa', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtual', 1), ('format', 1), ('full', 1)]
[('nbsp', 3), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('intelligent', 1), ('computing', 1), ('system', 1), ('isics', 1), ('santiago', 1), ('chile', 1), ('march', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('conference', 1), ('online', 1), ('full', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('nbsp', 1), ('computer', 1), ('communication', 1), ('engineering', 1), ('cce', 1), ('held', 1), ('rome', 1), ('italy', 1), ('march', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1)]
[('conference', 2), ('bangladesh', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('nbsp', 1), ('first', 1), ('international', 1), ('bangabandhu', 1), ('digital', 1), ('icbbdb', 1), ('held', 1), ('dhaka', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('partly', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ecuadorian', 1), ('conference', 1), ('information', 1), ('communication', 1), ('technology', 1), ('ticec', 1), ('held', 1), ('manta', 1), ('ecuador', 1), ('october', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('software', 2), ('icsob', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('business', 1), ('held', 1), ('november', 1), ('nbsp', 1), ('bolzano', 1), ('italy', 1), ('special', 1), ('theme', 1), ('digital', 1)]
[('volumeincludes', 1), ('extended', 1), ('revised', 1), ('version', 1), ('paper', 1), ('presented', 1), ('thworkshop', 1), ('combination', 1), ('intelligent', 1), ('method', 1), ('application', 1), ('cima', 1), ('whichwas', 1), ('intended', 1), ('become', 1), ('forum', 1), ('exchanging', 1), ('experience', 1), ('idea', 1)]
[('book', 2), ('random', 2), ('walk', 2), ('algorithm', 2), ('examines', 1), ('intelligent', 1), ('based', 1), ('learning', 1), ('automaton', 1), ('version', 1), ('gradually', 1), ('obtain', 1), ('required', 1), ('information', 1), ('nature', 1), ('application', 1), ('improve', 1), ('efficiency', 1)]
[('conference', 2), ('book', 1), ('feature', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('international', 1), ('science', 1), ('technology', 1), ('fareastcon', 1), ('took', 1), ('place', 1), ('october', 1), ('vladivostok', 1), ('russian', 1), ('federation', 1), ('represents', 1), ('informational', 1), ('platform', 1)]
[('carefullyedited', 1), ('book', 1), ('putting', 1), ('emphasis', 1), ('computational', 1), ('artificial', 1), ('intelligentmethods', 1), ('learning', 1), ('relative', 1), ('application', 1), ('robotics', 1), ('embeddedsystems', 1), ('ict', 1), ('interface', 1), ('psychological', 1), ('neurological', 1), ('disease', 1), ('thebook', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('summit', 1), ('application', 1), ('future', 1), ('internet', 1), ('afi', 1), ('held', 1), ('puebla', 1), ('mexico', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1), ('submission', 1), ('focus', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('international', 1), ('machine', 1), ('learning', 1), ('intelligent', 1), ('communication', 1), ('mlicom', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1)]
[('development', 3), ('book', 1), ('investigates', 1), ('process', 1), ('prototyping', 1), ('user', 1), ('interface', 1), ('mobile', 1), ('apps', 1), ('describes', 1), ('new', 1), ('concept', 1), ('tool', 1), ('improve', 1), ('prototype', 1), ('driven', 1), ('app', 1), ('early', 1), ('stage', 1), ('present', 1)]
[('sensorimotor', 2), ('theory', 2), ('book', 1), ('analyzes', 1), ('philosophical', 1), ('foundation', 1), ('discus', 1), ('recent', 1), ('application', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('child', 1), ('play', 1), ('virtual', 1), ('reality', 1), ('robotics', 1), ('linguistics', 1), ('circle', 1)]
[('book', 1), ('enriches', 1), ('view', 1), ('representation', 1), ('deepens', 1), ('understanding', 1), ('different', 1), ('aspect', 1), ('arises', 1), ('several', 1), ('year', 1), ('dialog', 1), ('editor', 1), ('author', 1), ('interdisciplinary', 1), ('team', 1), ('highly', 1), ('experienced', 1), ('researcher', 1)]
[('optical', 3), ('quantum', 2), ('information', 1), ('science', 1), ('found', 1), ('experimental', 1), ('success', 1), ('exploiting', 1), ('single', 1), ('photon', 1), ('date', 1), ('majority', 1), ('experiment', 1), ('use', 1), ('large', 1), ('scale', 1), ('bulk', 1), ('element', 1), ('bolted', 1), ('bench', 1), ('approach', 1)]
[('field', 2), ('feature', 2), ('selection', 2), ('book', 1), ('present', 1), ('recent', 1), ('development', 1), ('research', 1), ('trend', 1), ('data', 1), ('pattern', 1), ('recognition', 1), ('highlighting', 1), ('number', 1), ('latest', 1), ('advance', 1), ('evolving', 1), ('constantly', 1), ('providing', 1), ('numerous', 1)]
[('body', 2), ('book', 1), ('present', 1), ('different', 1), ('method', 1), ('analyzing', 1), ('language', 1), ('movement', 1), ('position', 1), ('use', 1), ('personal', 1), ('space', 1), ('silence', 1), ('pause', 1), ('tone', 1), ('eye', 1), ('pupil', 1), ('dilation', 1), ('constriction', 1), ('smile', 1), ('temperature', 1), ('better', 1), ('understanding', 1)]
[('book', 2), ('contains', 2), ('smart', 2), ('contribution', 1), ('presented', 1), ('nd', 1), ('international', 1), ('kes', 1), ('conference', 1), ('education', 1), ('learning', 1), ('took', 1), ('place', 1), ('sorrento', 1), ('italy', 1), ('june', 1), ('total', 1), ('peer', 1), ('reviewed', 1), ('chapter', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('future', 1), ('access', 1), ('enablers', 1), ('ubiquitous', 1), ('intelligent', 1), ('infrastructure', 1), ('fabulous', 1), ('held', 1), ('bucharest', 1), ('romania', 1), ('october', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('smart', 1), ('grid', 1), ('innovative', 1), ('frontier', 1), ('telecommunication', 1), ('smartgift', 1), ('held', 1), ('auckland', 1), ('new', 1), ('zealand', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('digital', 1), ('forensics', 1), ('cyber', 1), ('crime', 1), ('icdf', 1), ('boston', 1), ('october', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('reviewed', 1)]
[('field', 2), ('application', 2), ('book', 1), ('cover', 1), ('advance', 1), ('internet', 1), ('thing', 1), ('biomedical', 1), ('engineering', 1), ('cyber', 1), ('physical', 1), ('system', 1), ('recent', 1), ('covering', 1), ('various', 1), ('real', 1), ('time', 1), ('offline', 1), ('case', 1), ('study', 1)]
[('language', 2), ('book', 1), ('reveals', 1), ('general', 1), ('law', 1), ('theory', 1), ('smart', 1), ('system', 1), ('help', 1), ('powerful', 1), ('expressive', 1), ('algebraic', 1), ('formalization', 1), ('show', 1), ('used', 1), ('substantiate', 1), ('practical', 1), ('result', 1), ('field', 1)]
[('data', 3), ('md', 2), ('analysis', 2), ('book', 1), ('introduces', 1), ('multidimensional', 1), ('scaling', 1), ('unfolding', 1), ('technique', 1), ('applied', 1), ('researcher', 1), ('used', 1), ('proximity', 1), ('set', 1), ('object', 1), ('representing', 1), ('distance', 1), ('point', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('pervasive', 1), ('computing', 1), ('paradigm', 1), ('mental', 1), ('health', 1), ('mindcare', 1), ('held', 1), ('buenos', 1), ('aire', 1), ('argentina', 1), ('april', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('design', 2), ('book', 1), ('truly', 1), ('comprehensive', 1), ('timely', 1), ('needed', 1), ('treatise', 1), ('conceptualization', 1), ('analysis', 1), ('contactless', 1), ('multimodal', 1), ('sensor', 1), ('based', 1), ('human', 1), ('activity', 1), ('behavior', 1), ('understanding', 1), ('intervention', 1), ('interaction', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('quality', 1), ('reliability', 1), ('security', 1), ('robustness', 1), ('heterogeneous', 1), ('network', 1), ('qshine', 1), ('held', 1), ('shenzhen', 1), ('china', 1), ('november', 1)]
[('three', 2), ('based', 2), ('learning', 2), ('book', 1), ('discus', 1), ('important', 1), ('hot', 1), ('research', 1), ('issue', 1), ('social', 1), ('networking', 1), ('machine', 1), ('user', 1), ('modeling', 1), ('sentiment', 1), ('analysis', 1), ('although', 1), ('technology', 1), ('widely', 1), ('used', 1), ('researcher', 1), ('around', 1), ('globe', 1)]
[('machine', 2), ('learning', 2), ('artificial', 1), ('intelligence', 1), ('propelled', 1), ('research', 1), ('across', 1), ('various', 1), ('molecular', 1), ('science', 1), ('discipline', 1), ('thanks', 1), ('rapid', 1), ('progress', 1), ('computing', 1), ('hardware', 1), ('algorithm', 1), ('data', 1), ('accumulation', 1), ('book', 1), ('present', 1), ('recent', 1)]
[('conference', 2), ('smart', 2), ('city', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('eai', 1), ('international', 1), ('sustainable', 1), ('energy', 1), ('sesc', 1), ('held', 1), ('part', 1), ('summit', 1), ('event', 1), ('braga', 1), ('portugal', 1), ('december', 1)]
[('geometrical', 2), ('nbsp', 2), ('book', 1), ('origami', 1), ('treated', 1), ('set', 1), ('basic', 1), ('object', 1), ('represented', 1), ('manipulated', 1), ('symbolically', 1), ('graphically', 1), ('computer', 1), ('focusing', 1), ('classical', 1), ('modern', 1), ('problem', 1), ('solved', 1), ('mean', 1)]
[('conference', 3), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('body', 1), ('area', 1), ('network', 1), ('bodynets', 1), ('tallinn', 1), ('estonia', 1), ('october', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('fuzzy', 2), ('group', 2), ('decision', 2), ('making', 2), ('book', 1), ('focused', 1), ('offering', 1), ('technical', 1), ('detail', 1), ('including', 1), ('methodology', 1), ('collaboration', 1), ('aggregation', 1), ('mechanism', 1), ('system', 1), ('architecture', 1), ('application', 1), ('explores', 1), ('category', 1)]
[('simulation', 2), ('uniquetext', 1), ('reference', 1), ('provides', 1), ('comprehensive', 1), ('review', 1), ('distributed', 1), ('d', 1), ('perspective', 1), ('model', 1), ('driven', 1), ('engineering', 1), ('mde', 1), ('illustrating', 1), ('mdeaffects', 1), ('overall', 1), ('lifecycle', 1), ('development', 1), ('process', 1)]
[('green', 2), ('information', 2), ('ict', 2), ('book', 1), ('present', 1), ('latest', 1), ('finding', 1), ('ongoing', 1), ('research', 1), ('field', 1), ('system', 1), ('communication', 1), ('technology', 1), ('provides', 1), ('insight', 1), ('whole', 1), ('range', 1), ('cross', 1), ('cutting', 1), ('concern', 1)]
[('unique', 1), ('volume', 1), ('introduces', 1), ('discus', 1), ('method', 1), ('validating', 1), ('computer', 1), ('simulation', 1), ('scientific', 1), ('research', 1), ('core', 1), ('concept', 1), ('strategy', 1), ('technique', 1), ('validation', 1), ('explained', 1), ('international', 1), ('team', 1), ('pre', 1), ('eminent', 1), ('authority', 1)]
[('conference', 2), ('book', 1), ('contains', 1), ('paper', 1), ('accepted', 1), ('ip', 1), ('international', 1), ('image', 1), ('processing', 1), ('communication', 1), ('held', 1), ('utp', 1), ('university', 1), ('science', 1), ('technology', 1), ('bydgoszcz', 1), ('poland', 1), ('september', 1), ('eighth', 1)]
[('paper', 2), ('presented', 2), ('volumecontains', 1), ('th', 1), ('international', 1), ('conference', 1), ('oninnovations', 1), ('bio', 1), ('inspired', 1), ('computing', 1), ('application', 1), ('ibica', 1), ('washeld', 1), ('kochi', 1), ('india', 1), ('december', 1), ('inthis', 1)]
[('book', 1), ('presentshigh', 1), ('quality', 1), ('original', 1), ('contribution', 1), ('new', 1), ('software', 1), ('engineering', 1), ('model', 1), ('approach', 1), ('method', 1), ('tool', 1), ('evaluation', 1), ('context', 1), ('defenceand', 1), ('security', 1), ('application', 1), ('addition', 1), ('important', 1), ('business', 1), ('economic', 1)]
[('th', 2), ('conference', 2), ('seville', 2), ('international', 1), ('methodology', 1), ('intelligent', 1), ('system', 1), ('technology', 1), ('enhanced', 1), ('learning', 1), ('held', 1), ('spain', 1), ('host', 1), ('university', 1), ('st', 1), ('rd', 1), ('june', 1), ('edition', 1), ('expands', 1)]
[('agent', 4), ('international', 3), ('paams', 2), ('practical', 2), ('application', 2), ('multi', 2), ('system', 2), ('conference', 1), ('evolution', 1), ('workshop', 1), ('yearly', 1), ('tribune', 1)]
[('science', 3), ('unconventional', 1), ('computing', 1), ('niche', 1), ('interdisciplinary', 1), ('cross', 1), ('bred', 1), ('computer', 1), ('physic', 1), ('mathematics', 1), ('chemistry', 1), ('electronic', 1), ('engineering', 1), ('biology', 1), ('material', 1), ('nanotechnology', 1), ('aim', 1), ('book', 1), ('uncover', 1)]
[('book', 1), ('includes', 1), ('extended', 1), ('revised', 1), ('version', 1), ('set', 1), ('selected', 1), ('paper', 1), ('first', 1), ('nafosted', 1), ('conference', 1), ('information', 1), ('computer', 1), ('science', 1), ('nics', 1), ('held', 1), ('le', 1), ('quy', 1), ('technical', 1), ('academy', 1), ('hanoi', 1), ('vietnam', 1), ('mar', 1)]
[('present', 2), ('book', 1), ('recent', 1), ('progress', 1), ('control', 1), ('automation', 1), ('robotics', 1), ('measuring', 1), ('technique', 1), ('includes', 1), ('contribution', 1), ('top', 1), ('expert', 1), ('field', 1), ('focused', 1), ('theory', 1), ('industrial', 1), ('practice', 1), ('particular', 1), ('chapter', 1), ('deep', 1)]
[('engineering', 2), ('ispem', 2), ('volume', 1), ('present', 1), ('collection', 1), ('peer', 1), ('reviewed', 1), ('article', 1), ('first', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('system', 1), ('production', 1), ('maintenance', 1), ('organized', 1), ('faculty', 1), ('mechanical', 1)]
[('new', 2), ('approach', 2), ('method', 2), ('book', 1), ('discus', 1), ('cybernetics', 1), ('algorithm', 1), ('software', 1), ('engineering', 1), ('scope', 1), ('intelligent', 1), ('system', 1), ('brings', 1), ('real', 1), ('world', 1), ('problem', 1), ('exploratory', 1), ('research', 1), ('describes', 1)]
[('book', 2), ('innovation', 2), ('biomedical', 2), ('engineering', 2), ('present', 1), ('proceeding', 1), ('ibe', 1), ('conference', 1), ('held', 1), ('zabrze', 1), ('poland', 1), ('october', 1), ('discus', 1), ('recent', 1), ('research', 1), ('cover', 1)]
[('data', 2), ('mining', 2), ('th', 1), ('symposium', 1), ('application', 1), ('sdma', 1), ('provides', 1), ('valuable', 1), ('opportunity', 1), ('technical', 1), ('collaboration', 1), ('among', 1), ('machine', 1), ('learning', 1), ('researcher', 1), ('saudi', 1), ('arabia', 1), ('gulf', 1), ('cooperation', 1), ('council', 1), ('gcc', 1), ('country', 1), ('middle', 1), ('east', 1)]
[('cimps', 2), ('book', 1), ('gather', 1), ('selection', 1), ('paper', 1), ('presented', 1), ('international', 1), ('conference', 1), ('software', 1), ('process', 1), ('improvement', 1), ('offered', 1), ('global', 1), ('forum', 1), ('researcher', 1), ('practitioner', 1), ('present', 1), ('discus', 1), ('latest', 1), ('innovation', 1)]
[('advanced', 2), ('computer', 2), ('system', 2), ('conference', 2), ('book', 1), ('present', 1), ('carefully', 1), ('selected', 1), ('reviewed', 1), ('collection', 1), ('paper', 1), ('presented', 1), ('th', 1), ('ac', 1), ('concentrated', 1), ('beginning', 1), ('method', 1), ('algorithm', 1)]
[('book', 1), ('report', 1), ('new', 1), ('theory', 1), ('application', 1), ('field', 1), ('intelligent', 1), ('system', 1), ('computing', 1), ('cover', 1), ('computational', 1), ('artificial', 1), ('intelligence', 1), ('method', 1), ('advance', 1), ('computer', 1), ('vision', 1), ('current', 1), ('issue', 1), ('big', 1), ('data', 1), ('cloud', 1)]
[('conference', 2), ('book', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('main', 1), ('track', 1), ('iiti', 1), ('third', 1), ('international', 1), ('scientific', 1), ('intelligent', 1), ('information', 1), ('technology', 1), ('industry', 1), ('held', 1), ('sochi', 1), ('russia', 1), ('september', 1), ('jointly', 1)]
[('depcos', 1), ('relcomex', 1), ('annual', 1), ('series', 1), ('conference', 1), ('organized', 1), ('institute', 1), ('computer', 1), ('engineering', 1), ('control', 1), ('robotics', 1), ('cecr', 1), ('wrocław', 1), ('university', 1), ('technology', 1), ('idea', 1), ('came', 1), ('heritage', 1), ('cycle', 1), ('event', 1)]
[('book', 1), ('present', 1), ('scientific', 1), ('outcome', 1), ('international', 1), ('conference', 1), ('automation', 1), ('held', 1), ('march', 1), ('warsaw', 1), ('poland', 1), ('next', 1), ('year', 1), ('see', 1), ('radical', 1), ('innovation', 1), ('production', 1), ('process', 1), ('transportation', 1), ('management', 1), ('social', 1)]
[('artificial', 2), ('intelligence', 2), ('international', 1), ('symposium', 1), ('distributed', 1), ('computing', 1), ('dcai', 1), ('forum', 1), ('application', 1), ('innovative', 1), ('technique', 1), ('solving', 1), ('complex', 1), ('problem', 1), ('presented', 1), ('changing', 1)]
[('computing', 3), ('soft', 2), ('pattern', 2), ('recognition', 2), ('book', 1), ('highlight', 1), ('recent', 1), ('research', 1), ('biologically', 1), ('inspired', 1), ('present', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('socpar', 1)]
[('book', 1), ('highlight', 1), ('recent', 1), ('research', 1), ('bio', 1), ('inspired', 1), ('computing', 1), ('various', 1), ('innovative', 1), ('application', 1), ('information', 1), ('communication', 1), ('technology', 1), ('present', 1), ('high', 1), ('quality', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('innovation', 1)]
[('intelligent', 2), ('system', 2), ('book', 1), ('highlight', 1), ('recent', 1), ('research', 1), ('nature', 1), ('inspired', 1), ('computing', 1), ('present', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('design', 1), ('application', 1), ('isda', 1), ('held', 1), ('online', 1)]
[('digital', 2), ('transformation', 2), ('recent', 1), ('surge', 1), ('interest', 1), ('changing', 1), ('business', 1), ('landscape', 1), ('posing', 1), ('several', 1), ('challenge', 1), ('organizational', 1), ('sectoral', 1), ('involves', 1), ('application', 1), ('technology', 1), ('aspect', 1)]
[('soft', 2), ('computing', 2), ('volume', 1), ('advance', 1), ('intelligent', 1), ('contains', 1), ('accepted', 1), ('paper', 1), ('presented', 1), ('soco', 1), ('cisis', 1), ('iceute', 1), ('conference', 1), ('held', 1), ('beautiful', 1), ('historic', 1), ('city', 1), ('salamanca', 1), ('spain', 1), ('september', 1)]
[('smart', 2), ('home', 2), ('book', 1), ('address', 1), ('issue', 1), ('towards', 1), ('design', 1), ('development', 1), ('wireless', 1), ('sensor', 1), ('network', 1), ('based', 1), ('fusion', 1), ('real', 1), ('time', 1), ('data', 1), ('wellness', 1), ('determination', 1), ('elderly', 1), ('person', 1), ('living', 1), ('alone', 1), ('fundamental', 1), ('selection', 1)]
[('device', 2), ('data', 2), ('owing', 1), ('continuous', 1), ('advance', 1), ('computational', 1), ('power', 1), ('handheld', 1), ('smartphones', 1), ('tablet', 1), ('computer', 1), ('become', 1), ('possible', 1), ('perform', 1), ('big', 1), ('operation', 1), ('including', 1), ('modern', 1), ('mining', 1), ('process', 1), ('onboard', 1), ('small', 1), ('decade', 1)]
[('best', 2), ('use', 2), ('book', 1), ('overview', 1), ('latest', 1), ('idea', 1), ('development', 1), ('financial', 1), ('econometrics', 1), ('emphasis', 1), ('prior', 1), ('knowledge', 1), ('bayesian', 1), ('way', 1), ('successful', 1), ('data', 1), ('processing', 1), ('technique', 1), ('application', 1), ('area', 1)]
[('language', 3), ('scala', 2), ('programming', 2), ('new', 1), ('exciting', 1), ('hybrid', 1), ('object', 1), ('oriented', 1), ('java', 1), ('functional', 1), ('haskell', 1), ('idiom', 1), ('development', 1), ('style', 1), ('design', 1), ('pattern', 1), ('look', 1)]
[('visual', 2), ('cryptography', 2), ('unique', 1), ('book', 1), ('describes', 1), ('fundamental', 1), ('concept', 1), ('theory', 1), ('practice', 1), ('design', 1), ('construction', 1), ('analysis', 1), ('application', 1), ('scheme', 1), ('vcss', 1), ('discussed', 1), ('detail', 1), ('original', 1), ('cutting', 1), ('edge', 1), ('research', 1)]
[('book', 1), ('reveals', 1), ('historical', 1), ('context', 1), ('evolution', 1), ('technically', 1), ('complex', 1), ('allied', 1), ('signal', 1), ('intelligence', 1), ('sigint', 1), ('activity', 1), ('japan', 1), ('trace', 1), ('important', 1), ('genesis', 1), ('development', 1), ('cryptanalytic', 1)]
[('book', 1), ('present', 1), ('application', 1), ('newton', 1), ('similar', 1), ('method', 1), ('solve', 1), ('abstract', 1), ('functional', 1), ('equation', 1), ('involving', 1), ('fractional', 1), ('derivative', 1), ('focus', 1), ('banach', 1), ('space', 1), ('valued', 1), ('function', 1), ('real', 1), ('domain', 1), ('studied', 1), ('first', 1), ('time', 1)]
[('topic', 2), ('data', 2), ('book', 1), ('provides', 1), ('nbsp', 1), ('broad', 1), ('overview', 1), ('bioinformatics', 1), ('focus', 1), ('information', 1), ('knowledge', 1), ('acquisition', 1), ('storage', 1), ('visualization', 1), ('ranging', 1), ('privacy', 1), ('regulatory', 1), ('practical', 1), ('theoretical', 1)]
[('business', 2), ('book', 1), ('discus', 1), ('digitalization', 1), ('trend', 1), ('concrete', 1), ('application', 1), ('societal', 1), ('context', 1), ('summarizes', 1), ('new', 1), ('finding', 1), ('research', 1), ('teaching', 1), ('management', 1), ('activity', 1), ('comprising', 1), ('digital', 1), ('transformation', 1)]
[('conference', 2), ('design', 2), ('cooperative', 2), ('volume', 1), ('present', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('system', 1), ('coop', 1), ('venue', 1), ('multidisciplinary', 1), ('research', 1), ('contributing', 1), ('assessment', 1), ('analysis', 1)]
[('overwhelming', 1), ('data', 1), ('produced', 1), ('everyday', 1), ('increasing', 1), ('performance', 1), ('cost', 1), ('requirement', 1), ('application', 1), ('transversal', 1), ('wide', 1), ('range', 1), ('activity', 1), ('society', 1), ('science', 1), ('industry', 1), ('particular', 1), ('magnitude', 1), ('complexity', 1)]
[('quantum', 3), ('computer', 2), ('based', 1), ('computational', 1), ('model', 1), ('us', 1), ('mechanic', 1), ('subfield', 1), ('physic', 1), ('study', 1), ('phenomenon', 1), ('micro', 1), ('level', 1), ('growing', 1), ('interest', 1), ('computing', 1)]
[('computer', 2), ('science', 2), ('intersection', 1), ('astronautics', 1), ('social', 1), ('book', 1), ('introduces', 1), ('challenge', 1), ('insight', 1), ('associated', 1), ('simulation', 1), ('human', 1), ('society', 1), ('outer', 1), ('space', 1), ('dynamic', 1), ('terrestrial', 1), ('enthusiasm', 1)]
[('system', 2), ('safety', 2), ('security', 2), ('book', 1), ('represents', 1), ('timely', 1), ('overview', 1), ('advance', 1), ('based', 1), ('selected', 1), ('revised', 1), ('extended', 1), ('contribution', 1), ('nd', 1), ('rd', 1), ('edition', 1), ('international', 1), ('workshop', 1), ('iw', 1), ('held', 1)]
[('book', 1), ('provides', 1), ('introduction', 1), ('overview', 1), ('rapidly', 1), ('evolving', 1), ('topic', 1), ('game', 1), ('user', 1), ('experience', 1), ('presenting', 1), ('new', 1), ('perspective', 1), ('employed', 1), ('researcher', 1), ('industry', 1), ('highlighting', 1), ('recent', 1), ('empirical', 1), ('finding', 1), ('illustrate', 1)]
[('book', 1), ('present', 1), ('multimedia', 1), ('data', 1), ('analysis', 1), ('information', 1), ('retrieval', 1), ('indexing', 1), ('central', 1), ('comprehensive', 1), ('personalized', 1), ('adaptive', 1), ('quality', 1), ('care', 1), ('prolongation', 1), ('independent', 1), ('living', 1), ('home', 1), ('sophisticated', 1), ('technology', 1)]
[('information', 2), ('monograph', 1), ('aim', 1), ('familiarize', 1), ('reader', 1), ('problem', 1), ('evaluating', 1), ('quality', 1), ('reliability', 1), ('digital', 1), ('geographic', 1), ('term', 1), ('use', 1), ('identifies', 1), ('key', 1), ('requirement', 1), ('functionality', 1)]
[('data', 2), ('book', 1), ('explores', 1), ('dynamic', 1), ('landscape', 1), ('contemporary', 1), ('newsroom', 1), ('across', 1), ('three', 1), ('continent', 1), ('investigating', 1), ('impact', 1), ('process', 1), ('searching', 1), ('processing', 1), ('distributing', 1), ('information', 1), ('use', 1), ('big', 1), ('secure', 1)]
[('increasingly', 2), ('internet', 2), ('cyberspace', 1), ('important', 1), ('everyday', 1), ('life', 1), ('purchasing', 1), ('good', 1), ('energy', 1), ('supply', 1), ('managed', 1), ('remotely', 1), ('using', 1), ('protocol', 1), ('unfortunately', 1), ('dependence', 1), ('make', 1), ('susceptible', 1), ('attack', 1)]
[('software', 2), ('system', 2), ('new', 2), ('book', 1), ('provides', 1), ('essential', 1), ('insight', 1), ('adoption', 1), ('modern', 1), ('engineering', 1), ('practice', 1), ('large', 1), ('company', 1), ('producing', 1), ('intensive', 1), ('hundred', 1), ('even', 1), ('thousand', 1), ('engineer', 1), ('collaborate', 1), ('deliver', 1)]
[('aging', 2), ('lifetime', 2), ('book', 1), ('address', 1), ('range', 1), ('intensity', 1), ('function', 1), ('make', 1), ('possible', 1), ('measure', 1), ('compare', 1), ('trend', 1), ('random', 1), ('variable', 1), ('moreover', 1), ('used', 1), ('characterization', 1), ('distribution', 1), ('bounded', 1)]
[('book', 2), ('memristor', 2), ('system', 2), ('introduces', 1), ('reader', 1), ('fundamental', 1), ('deep', 1), ('neural', 1), ('network', 1), ('architecture', 1), ('special', 1), ('emphasis', 1), ('circuit', 1), ('first', 1), ('offer', 1), ('overview', 1), ('neuro', 1), ('memristive', 1), ('including', 1), ('device', 1)]
[('approach', 2), ('problem', 2), ('shape', 2), ('book', 1), ('proposes', 1), ('new', 1), ('handle', 1), ('limited', 1), ('training', 1), ('data', 1), ('common', 1), ('cope', 1), ('model', 1), ('variability', 1), ('independently', 1), ('across', 1), ('predefined', 1), ('segment', 1), ('allow', 1), ('artificial', 1), ('variation', 1)]
[('book', 1), ('aim', 1), ('reflect', 1), ('journalism', 1), ('changed', 1), ('recent', 1), ('year', 1), ('different', 1), ('perspective', 1), ('concerning', 1), ('impact', 1), ('technology', 1), ('reconfiguration', 1), ('medium', 1), ('ecosystem', 1), ('transformation', 1), ('business', 1), ('model', 1), ('production', 1), ('profession', 1)]
[('internet', 2), ('thing', 2), ('book', 1), ('present', 1), ('practical', 1), ('conceptual', 1), ('insight', 1), ('latest', 1), ('trend', 1), ('tool', 1), ('technique', 1), ('methodology', 1), ('blockchains', 1), ('decentralised', 1), ('iot', 1), ('reduces', 1), ('infrastructure', 1), ('cost', 1)]
[('analysis', 2), ('time', 2), ('image', 2), ('book', 1), ('present', 1), ('advance', 1), ('biomedical', 1), ('imaging', 1), ('processing', 1), ('technique', 1), ('using', 1), ('dependent', 1), ('medical', 1), ('datasets', 1), ('computer', 1), ('aided', 1), ('diagnosis', 1), ('series', 1), ('widely', 1), ('appearing', 1), ('problem', 1)]
[('data', 4), ('guide', 2), ('use', 1), ('action', 1), ('growing', 1), ('even', 1), ('public', 1), ('us', 1), ('everyday', 1), ('decision', 1), ('develop', 1), ('acumen', 1), ('across', 1), ('broad', 1), ('range', 1), ('field', 1), ('varying', 1), ('level', 1), ('expertise', 1), ('foster', 1), ('development', 1), ('effective', 1)]
[('dea', 2), ('dmus', 2), ('combination', 1), ('ratio', 1), ('analysis', 1), ('introduced', 1), ('suitable', 1), ('field', 1), ('evaluating', 1), ('performance', 1), ('regard', 1), ('proposed', 1), ('hybrid', 1), ('technique', 1), ('calculating', 1), ('efficiency', 1), ('ranking', 1), ('finding', 1), ('efficient', 1), ('face', 1)]
[('data', 6), ('big', 2), ('book', 1), ('focus', 1), ('detail', 1), ('science', 1), ('analysis', 1), ('emphasizes', 1), ('importance', 1), ('engineering', 1), ('management', 1), ('design', 1), ('application', 1), ('author', 1), ('us', 1), ('pattern', 1), ('discovered', 1), ('collection', 1)]
[('smart', 2), ('city', 2), ('need', 2), ('book', 1), ('illustrates', 1), ('advanced', 1), ('technology', 1), ('developed', 1), ('requires', 1), ('increasing', 1), ('interaction', 1), ('citizen', 1), ('motivate', 1), ('incentive', 1), ('megacities', 1), ('encouraging', 1), ('creation', 1)]
[('theoretical', 2), ('wireless', 2), ('contract', 2), ('book', 1), ('present', 1), ('research', 1), ('communication', 1), ('networking', 1), ('economics', 1), ('using', 1), ('framework', 1), ('theory', 1), ('work', 1), ('fill', 1), ('void', 1), ('literature', 1), ('closely', 1), ('combining', 1), ('approach', 1)]
[('feistel', 2), ('cipher', 2), ('book', 1), ('provides', 1), ('survey', 1), ('different', 1), ('kind', 1), ('definition', 1), ('mathematical', 1), ('computational', 1), ('property', 1), ('widely', 1), ('used', 1), ('cryptography', 1), ('order', 1), ('obtain', 1), ('pseudorandom', 1), ('permutation', 1), ('secret', 1), ('key', 1), ('block', 1)]
[('paper', 2), ('computational', 2), ('intelligence', 2), ('book', 1), ('present', 1), ('select', 1), ('nd', 1), ('eai', 1), ('international', 1), ('conference', 1), ('communication', 1), ('cicom', 1), ('reveal', 1), ('recent', 1), ('advance', 1), ('broader', 1), ('domain', 1), ('including', 1)]
[('context', 2), ('book', 1), ('present', 1), ('original', 1), ('research', 1), ('analytics', 1), ('awareness', 1), ('regard', 1), ('providing', 1), ('sophisticated', 1), ('learning', 1), ('service', 1), ('stakeholder', 1), ('elearning', 1), ('offer', 1), ('essential', 1), ('information', 1), ('definition', 1), ('modeling', 1)]
[('highly', 2), ('series', 1), ('speculative', 1), ('contribution', 1), ('leading', 1), ('acclaimed', 1), ('practitioner', 1), ('theorist', 1), ('book', 1), ('give', 1), ('new', 1), ('comprehensive', 1), ('overview', 1), ('architecture', 1), ('recent', 1), ('practical', 1), ('theoretical', 1), ('development', 1)]
[('book', 1), ('gather', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('information', 1), ('technology', 1), ('service', 1), ('system', 1), ('ait', 1), ('held', 1), ('mohammedia', 1), ('morocco', 1), ('october', 1), ('presenting', 1), ('latest', 1), ('research', 1), ('field', 1)]
[('book', 1), ('review', 1), ('theoretical', 1), ('concept', 1), ('leading', 1), ('edge', 1), ('technique', 1), ('practical', 1), ('tool', 1), ('involved', 1), ('latest', 1), ('multi', 1), ('disciplinary', 1), ('approach', 1), ('addressing', 1), ('challenge', 1), ('big', 1), ('data', 1), ('illuminating', 1), ('perspective', 1), ('academia', 1), ('industry', 1)]
[('reviewing', 2), ('booklet', 1), ('provides', 1), ('practical', 1), ('introduction', 1), ('practice', 1), ('peer', 1), ('although', 1), ('mainly', 1), ('focus', 1), ('paper', 1), ('scientific', 1), ('event', 1), ('computer', 1), ('science', 1), ('business', 1), ('informatics', 1), ('many', 1), ('principle', 1), ('tip', 1), ('trick', 1), ('example', 1)]
[('book', 2), ('focused', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('service', 1), ('smart', 1), ('environment', 1), ('assistance', 1), ('elderly', 1), ('individual', 1), ('living', 1), ('dementia', 1), ('sensory', 1), ('impairment', 1), ('outline', 1), ('requirement', 1), ('system', 1)]
[('game', 2), ('textbook', 1), ('provides', 1), ('introduction', 1), ('fundamental', 1), ('serious', 1), ('differ', 1), ('considerably', 1), ('computer', 1), ('meant', 1), ('pure', 1), ('entertainment', 1), ('nbsp', 1), ('undergraduate', 1), ('graduate', 1), ('student', 1), ('various', 1), ('discipline', 1), ('want', 1), ('learn', 1)]
[('based', 1), ('successful', 1), ('book', 1), ('published', 1), ('apress', 1), ('textbook', 1), ('edition', 1), ('expanded', 1), ('provide', 1), ('comprehensive', 1), ('history', 1), ('state', 1), ('art', 1), ('survey', 1), ('fundamental', 1), ('computer', 1), ('vision', 1), ('method', 1), ('deep', 1), ('learning', 1), ('essential', 1), ('reference', 1)]
[('achievement', 2), ('affiliation', 2), ('power', 2), ('motivation', 2), ('focus', 1), ('book', 1), ('three', 1), ('influential', 1), ('cognitive', 1), ('motif', 1), ('incentive', 1), ('based', 1), ('theory', 1), ('basis', 1), ('competence', 1), ('seeking', 1), ('behaviour', 1)]
[('three', 2), ('volume', 2), ('information', 2), ('thisedited', 1), ('edition', 1), ('brings', 1), ('together', 1), ('significant', 1), ('paper', 1), ('previouslypublished', 1), ('journal', 1), ('technology', 1), ('jit', 1), ('yearpublication', 1), ('history', 1), ('enactingresearch', 1), ('method', 1), ('system', 1)]
[('oscillation', 2), ('based', 2), ('paradigm', 2), ('agent', 2), ('system', 2), ('book', 1), ('present', 1), ('conceptually', 1), ('novel', 1), ('multi', 1), ('osimas', 1), ('aimed', 1), ('modelling', 1), ('coherent', 1), ('stylized', 1), ('neurodynamic', 1), ('process', 1), ('link', 1), ('emerging', 1)]
[('simulation', 2), ('book', 1), ('present', 1), ('work', 1), ('healthcare', 1), ('management', 1), ('engineering', 1), ('using', 1), ('optimization', 1), ('method', 1), ('technique', 1), ('specific', 1), ('topic', 1), ('covered', 1), ('contributed', 1), ('chapter', 1), ('include', 1), ('discrete', 1), ('event', 1), ('patient', 1), ('admission', 1), ('scheduling', 1)]
[('msns', 3), ('book', 1), ('investigates', 1), ('modeling', 1), ('optimization', 1), ('issue', 1), ('mobile', 1), ('social', 1), ('network', 1), ('firstly', 1), ('architecture', 1), ('application', 1), ('examined', 1), ('existing', 1), ('work', 1), ('reviewed', 1), ('specifying', 1), ('critical', 1), ('challenge', 1)]
[('based', 2), ('digital', 2), ('book', 1), ('describes', 1), ('various', 1), ('new', 1), ('computer', 1), ('approach', 1), ('exploited', 1), ('reconstruction', 1), ('recognition', 1), ('restoration', 1), ('presentation', 1), ('classification', 1), ('heritage', 1), ('application', 1), ('virtual', 1), ('reality', 1)]
[('map', 3), ('concept', 2), ('level', 2), ('book', 1), ('explores', 1), ('fundamental', 1), ('data', 1), ('type', 1), ('defines', 1), ('three', 1), ('first', 1), ('abstract', 1), ('mathematic', 1), ('leveraged', 1), ('precisely', 1), ('explain', 1), ('operational', 1), ('semantics', 1), ('second', 1)]
[('matrix', 2), ('curve', 2), ('book', 1), ('teach', 1), ('algebra', 1), ('geometry', 1), ('author', 1), ('dedicate', 1), ('chapter', 1), ('key', 1), ('issue', 1), ('linear', 1), ('equation', 1), ('algorithm', 1), ('vector', 1), ('space', 1), ('line', 1), ('plane', 1), ('second', 1), ('order', 1), ('elliptic', 1), ('nbsp', 1), ('text', 1), ('supported', 1), ('throughout', 1)]
[('book', 2), ('sustainable', 2), ('present', 1), ('systematic', 1), ('view', 1), ('cooperative', 1), ('sector', 1), ('economy', 1), ('standpoint', 1), ('development', 1), ('hand', 1), ('reveals', 1), ('consequence', 1), ('business', 1), ('cooperation', 1), ('implementation', 1), ('global', 1)]
[('book', 1), ('gather', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computing', 1), ('information', 1), ('technology', 1), ('ic', 1), ('held', 1), ('kanchanaburi', 1), ('thailand', 1), ('topic', 1), ('covered', 1), ('include', 1), ('machine', 1), ('learning', 1), ('natural', 1), ('language', 1)]
[('conference', 2), ('book', 1), ('gather', 1), ('proceeding', 1), ('international', 1), ('information', 1), ('communication', 1), ('cybersecurity', 1), ('held', 1), ('november', 1), ('khouribga', 1), ('morocco', 1), ('jointly', 1), ('coorganized', 1), ('national', 1), ('school', 1), ('applied', 1)]
[('data', 2), ('book', 1), ('establishes', 1), ('brand', 1), ('new', 1), ('frame', 1), ('theory', 1), ('technical', 1), ('implementation', 1), ('science', 1), ('special', 1), ('focus', 1), ('spatial', 1), ('scale', 1), ('feature', 1), ('extraction', 1), ('network', 1), ('dynamic', 1), ('object', 1), ('oriented', 1), ('analysis', 1), ('driven', 1), ('environmental', 1), ('prediction', 1), ('climate', 1)]
[('book', 1), ('provides', 1), ('reader', 1), ('cognitive', 1), ('key', 1), ('practical', 1), ('guideline', 1), ('manage', 1), ('acquisitive', 1), ('growth', 1), ('digital', 1), ('era', 1), ('take', 1), ('distinct', 1), ('managerial', 1), ('perspective', 1), ('acquisition', 1), ('relentless', 1), ('focus', 1), ('enterprise', 1), ('architecture', 1), ('ea', 1)]
[('nbsp', 6), ('volume', 2), ('application', 2), ('second', 1), ('series', 1), ('handbook', 1), ('dynamic', 1), ('data', 1), ('driven', 1), ('system', 1), ('ddas', 1), ('expands', 1), ('scope', 1), ('method', 1), ('area', 1), ('presented', 1), ('first', 1), ('aim', 1), ('provide', 1), ('additional', 1)]
[('reality', 4), ('ar', 2), ('book', 1), ('provides', 1), ('depth', 1), ('exploration', 1), ('field', 1), ('augmented', 1), ('entirety', 1), ('set', 1), ('distinguish', 1), ('inter', 1), ('related', 1), ('technology', 1), ('virtual', 1), ('vr', 1), ('mixed', 1), ('mr', 1), ('extended', 1), ('xr', 1)]
[('book', 1), ('provides', 1), ('interdisciplinary', 1), ('lens', 1), ('exploring', 1), ('assessing', 1), ('coming', 1), ('new', 1), ('understanding', 1), ('smart', 1), ('city', 1), ('region', 1), ('focusing', 1), ('six', 1), ('dimension', 1), ('sensing', 1), ('awareness', 1), ('learning', 1), ('openness', 1), ('innovation', 1), ('disruption', 1), ('using', 1)]
[('book', 2), ('objective', 1), ('explore', 1), ('concept', 1), ('application', 1), ('related', 1), ('internet', 1), ('thing', 1), ('vision', 1), ('identify', 1), ('address', 1), ('existing', 1), ('challenge', 1), ('additionally', 1), ('provides', 1), ('future', 1), ('research', 1), ('direction', 1), ('domain', 1), ('explores', 1)]
[('book', 2), ('author', 2), ('software', 2), ('stress', 1), ('important', 1), ('topic', 1), ('modern', 1), ('robotics', 1), ('particular', 1), ('concentrate', 1), ('mobile', 1), ('robot', 1), ('demonstrates', 1), ('inexpensive', 1), ('solution', 1), ('constructed', 1), ('mounting', 1)]
[('year', 1), ('seminal', 1), ('publication', 1), ('side', 1), ('channel', 1), ('attack', 1), ('aim', 1), ('extracting', 1), ('secret', 1), ('embedded', 1), ('system', 1), ('execute', 1), ('cryptographic', 1), ('algorithm', 1), ('consist', 1), ('step', 1), ('measurement', 1), ('analysis', 1)]
[('matching', 4), ('important', 1), ('text', 1), ('reference', 1), ('present', 1), ('comprehensive', 1), ('review', 1), ('technique', 1), ('taxonomy', 1), ('discussing', 1), ('algorithm', 1), ('analyzing', 1), ('system', 1), ('comparing', 1), ('evaluation', 1), ('approach', 1), ('different', 1), ('method', 1), ('investigated', 1)]
[('analysis', 2), ('stability', 1), ('stochastic', 1), ('model', 1), ('telecommunication', 1), ('system', 1), ('intensively', 1), ('studied', 1), ('topic', 1), ('rule', 1), ('difficult', 1), ('problem', 1), ('requiring', 1), ('refined', 1), ('mathematical', 1), ('technique', 1), ('especially', 1), ('endeavor', 1), ('beyond', 1)]
[('book', 2), ('emphasizes', 1), ('software', 1), ('design', 1), ('important', 1), ('topic', 1), ('modern', 1), ('robotics', 1), ('demonstrates', 1), ('practical', 1), ('code', 1), ('example', 1), ('python', 1), ('introduces', 1), ('free', 1), ('simulation', 1), ('system', 1), ('eyesim', 1), ('combination', 1), ('eyebot', 1), ('robot', 1)]
[('software', 2), ('book', 1), ('focus', 1), ('sustainability', 1), ('regarded', 1), ('term', 1), ('developed', 1), ('taking', 1), ('consideration', 1), ('environmental', 1), ('social', 1), ('economic', 1), ('dimension', 1), ('sixteen', 1), ('chapter', 1), ('cover', 1), ('various', 1), ('related', 1), ('issue', 1), ('ranging', 1)]
[('student', 2), ('puzzle', 2), ('keeping', 1), ('involved', 1), ('actively', 1), ('learning', 1), ('challenging', 1), ('instructor', 1), ('computer', 1), ('science', 1), ('aware', 1), ('cognitive', 1), ('value', 1), ('modelling', 1), ('often', 1), ('use', 1), ('logical', 1), ('efficient', 1), ('pedagogical', 1), ('instrument', 1), ('engage', 1)]
[('internet', 3), ('vehicle', 3), ('book', 2), ('introduces', 1), ('access', 1), ('novel', 1), ('communication', 1), ('computing', 1), ('paradigm', 1), ('based', 1), ('nbsp', 1), ('enable', 1), ('efficient', 1), ('reliable', 1), ('connection', 1), ('mobile', 1), ('user', 1), ('first', 1)]
[('book', 2), ('provides', 2), ('method', 1), ('plan', 1), ('develop', 1), ('validate', 1), ('evolve', 1), ('design', 1), ('enterprise', 1), ('architecture', 1), ('function', 1), ('fully', 1), ('meet', 1), ('organization', 1), ('need', 1), ('reader', 1), ('benefit', 1), ('way', 1), ('first', 1)]
[('vr', 2), ('ar', 2), ('comprehensive', 1), ('textbook', 1), ('offer', 1), ('scientifically', 1), ('sound', 1), ('time', 1), ('practical', 1), ('introduction', 1), ('virtual', 1), ('augmented', 1), ('reality', 1), ('reader', 1), ('gain', 1), ('theoretical', 1), ('foundation', 1), ('needed', 1), ('design', 1), ('implement', 1), ('enhance', 1), ('system', 1)]
[('book', 1), ('introduces', 1), ('basic', 1), ('computing', 1), ('skill', 1), ('designed', 1), ('industry', 1), ('professional', 1), ('without', 1), ('strong', 1), ('computer', 1), ('science', 1), ('background', 1), ('written', 1), ('easily', 1), ('accessible', 1), ('manner', 1), ('accompanied', 1), ('user', 1), ('friendly', 1), ('website', 1), ('serf', 1), ('self', 1), ('study', 1), ('guide', 1)]
[('business', 2), ('traditional', 1), ('intelligence', 1), ('bi', 1), ('system', 1), ('focused', 1), ('delivery', 1), ('report', 1), ('describe', 1), ('state', 1), ('activity', 1), ('past', 1), ('question', 1), ('sale', 1), ('perform', 1), ('last', 1), ('quarter', 1), ('decade', 1)]
[('graph', 1), ('data', 1), ('modeling', 1), ('querying', 1), ('arises', 1), ('many', 1), ('practical', 1), ('application', 1), ('domain', 1), ('social', 1), ('biological', 1), ('network', 1), ('primary', 1), ('focus', 1), ('concept', 1), ('relationship', 1), ('rich', 1), ('pattern', 1), ('complex', 1), ('web', 1), ('interconnectivity', 1)]
[('community', 2), ('network', 2), ('serve', 1), ('basic', 1), ('structural', 1), ('building', 1), ('block', 1), ('understanding', 1), ('organization', 1), ('many', 1), ('real', 1), ('world', 1), ('including', 1), ('social', 1), ('biological', 1), ('collaboration', 1), ('communication', 1), ('recently', 1), ('search', 1), ('graph', 1), ('attracted', 1)]
[('resource', 2), ('flexible', 2), ('description', 1), ('framework', 1), ('rdf', 1), ('short', 1), ('set', 1), ('deliver', 1), ('many', 1), ('original', 1), ('semi', 1), ('structured', 1), ('data', 1), ('promise', 1), ('structure', 1), ('optional', 1), ('schema', 1), ('rich', 1), ('universal', 1), ('identifier', 1), ('basis', 1), ('information', 1), ('sharing', 1)]
[('query', 3), ('dependency', 2), ('chase', 1), ('long', 1), ('used', 1), ('central', 1), ('tool', 1), ('analyze', 1), ('effect', 1), ('applied', 1), ('different', 1), ('relevant', 1), ('problem', 1), ('database', 1), ('theory', 1), ('optimization', 1), ('containment', 1), ('equivalence', 1)]
[('book', 1), ('refer', 1), ('practitioner', 1), ('help', 1), ('guide', 1), ('participant', 1), ('creating', 1), ('representation', 1), ('issue', 1), ('idea', 1), ('collaborative', 1), ('diagram', 1), ('especially', 1), ('context', 1), ('participatory', 1), ('design', 1), ('pd', 1), ('best', 1)]
[('service', 2), ('book', 1), ('explores', 1), ('possibility', 1), ('anthropology', 1), ('outline', 1), ('practice', 1), ('approach', 1), ('designing', 1), ('reader', 1), ('taken', 1), ('journey', 1), ('blomberg', 1), ('darrah', 1), ('better', 1), ('part', 1), ('decade', 1), ('respective', 1)]
[('evaluation', 2), ('retrieval', 2), ('always', 1), ('played', 1), ('major', 1), ('role', 1), ('information', 1), ('early', 1), ('pioneer', 1), ('cyril', 1), ('cleverdon', 1), ('gerard', 1), ('salton', 1), ('laying', 1), ('foundation', 1), ('methodology', 1), ('use', 1), ('today', 1), ('community', 1)]
[('first', 1), ('volume', 1), ('series', 1), ('creating', 1), ('maintaining', 1), ('taxonomy', 1), ('practical', 1), ('application', 1), ('especially', 1), ('search', 1), ('function', 1), ('book', 1), ('taxobook', 1), ('history', 1), ('theory', 1), ('concept', 1), ('knowledge', 1), ('organization', 1), ('author', 1)]
[('dynamic', 3), ('data', 2), ('ir', 2), ('change', 2), ('system', 2), ('big', 1), ('human', 1), ('computer', 1), ('information', 1), ('retrieval', 1), ('hcir', 1), ('changing', 1), ('capture', 1), ('interaction', 1), ('user', 1), ('adapts', 1), ('time', 1), ('sequence', 1)]
[('evolved', 2), ('reading', 1), ('complex', 1), ('human', 1), ('activity', 1), ('co', 1), ('technology', 1), ('thousand', 1), ('year', 1), ('mass', 1), ('printing', 1), ('fifteenth', 1), ('century', 1), ('firmly', 1), ('established', 1), ('know', 1), ('modern', 1), ('book', 1), ('physical', 1), ('format', 1), ('cover', 1), ('paper', 1)]
[('mobile', 2), ('device', 2), ('search', 2), ('rapid', 1), ('development', 1), ('internet', 1), ('smart', 1), ('personal', 1), ('recent', 1), ('year', 1), ('gradually', 1), ('emerged', 1), ('key', 1), ('method', 1), ('user', 1), ('seek', 1), ('online', 1), ('information', 1), ('addition', 1), ('cross', 1), ('regarded', 1)]
[('learning', 3), ('semi', 1), ('supervised', 1), ('paradigm', 1), ('concerned', 1), ('study', 1), ('computer', 1), ('natural', 1), ('system', 1), ('human', 1), ('learn', 1), ('presence', 1), ('labeled', 1), ('unlabeled', 1), ('data', 1), ('traditionally', 1), ('studied', 1), ('either', 1)]
[('scene', 2), ('object', 2), ('grand', 1), ('challenge', 1), ('artificial', 1), ('intelligence', 1), ('enable', 1), ('computer', 1), ('interpret', 1), ('imagery', 1), ('book', 1), ('organizes', 1), ('introduces', 1), ('major', 1), ('concept', 1), ('representation', 1), ('inference', 1), ('still', 1), ('image', 1)]
[('planning', 2), ('ai', 2), ('reasoning', 2), ('plan', 2), ('given', 2), ('branch', 1), ('artificial', 1), ('intelligence', 1), ('seek', 1), ('automate', 1), ('importantly', 1), ('go', 1), ('formulating', 1), ('achieve', 1), ('goal', 1), ('situation', 1), ('model', 1), ('based', 1)]
[('data', 3), ('new', 2), ('world', 1), ('revolutionized', 1), ('driven', 1), ('method', 1), ('access', 1), ('large', 1), ('amount', 1), ('generated', 1), ('insight', 1), ('opened', 1), ('exciting', 1), ('opportunity', 1), ('commerce', 1), ('science', 1), ('computing', 1), ('application', 1), ('processing', 1), ('enormous', 1), ('quantity', 1)]
[('various', 2), ('bitexts', 2), ('book', 1), ('provides', 1), ('overview', 1), ('technique', 1), ('alignment', 1), ('describes', 1), ('general', 1), ('concept', 1), ('strategy', 1), ('applied', 1), ('map', 1), ('corresponding', 1), ('part', 1), ('parallel', 1), ('document', 1), ('level', 1), ('granularity', 1)]
[('sentiment', 2), ('opinion', 2), ('language', 2), ('analysis', 1), ('mining', 1), ('field', 1), ('study', 1), ('analyzes', 1), ('evaluation', 1), ('attitude', 1), ('emotion', 1), ('written', 1), ('active', 1), ('research', 1), ('area', 1), ('natural', 1), ('processing', 1)]
[('language', 2), ('computational', 2), ('human', 1), ('acquisition', 1), ('studied', 1), ('century', 1), ('using', 1), ('modeling', 1), ('study', 1), ('relatively', 1), ('recent', 1), ('trend', 1), ('approach', 1), ('learning', 1), ('become', 1), ('increasingly', 1), ('popular', 1), ('mainly', 1), ('due', 1)]
[('deception', 2), ('attempt', 1), ('spot', 1), ('correlate', 1), ('human', 1), ('behavior', 1), ('long', 1), ('history', 1), ('recently', 1), ('effort', 1), ('concentrated', 1), ('identifying', 1), ('individual', 1), ('cue', 1), ('might', 1), ('occur', 1), ('advent', 1), ('computational', 1)]
[('learning', 3), ('rank', 2), ('refers', 1), ('machine', 1), ('technique', 1), ('training', 1), ('model', 1), ('ranking', 1), ('task', 1), ('useful', 1), ('many', 1), ('application', 1), ('information', 1), ('retrieval', 1), ('natural', 1), ('language', 1), ('processing', 1), ('data', 1), ('mining', 1), ('intensive', 1), ('study', 1)]
[('provides', 2), ('grammatical', 2), ('inference', 2), ('book', 1), ('thorough', 1), ('introduction', 1), ('subfield', 1), ('theoretical', 1), ('computer', 1), ('science', 1), ('known', 1), ('computational', 1), ('linguistic', 1), ('perspective', 1), ('principled', 1), ('method', 1), ('developing', 1), ('computationally', 1)]
[('resource', 3), ('network', 2), ('allocation', 1), ('lie', 1), ('heart', 1), ('control', 1), ('early', 1), ('day', 1), ('internet', 1), ('scarcest', 1), ('bandwidth', 1), ('evolved', 1), ('become', 1), ('essential', 1), ('utility', 1), ('life', 1), ('billion', 1), ('nature', 1)]
[('economic', 2), ('today', 1), ('wireless', 1), ('communication', 1), ('networking', 1), ('practice', 1), ('tightly', 1), ('coupled', 1), ('consideration', 1), ('extent', 1), ('almost', 1), ('impossible', 1), ('make', 1), ('sound', 1), ('technology', 1), ('choice', 1), ('without', 1), ('understanding', 1), ('corresponding', 1), ('implication', 1)]
[('network', 3), ('code', 2), ('multi', 2), ('hop', 2), ('book', 1), ('discus', 1), ('efficient', 1), ('random', 1), ('linear', 1), ('coding', 1), ('scheme', 1), ('called', 1), ('batched', 1), ('sparse', 1), ('bat', 1), ('proposed', 1), ('communication', 1), ('packet', 1), ('loss', 1), ('wireless', 1), ('application', 1)]
[('ensemble', 2), ('method', 1), ('called', 1), ('influential', 1), ('development', 1), ('data', 1), ('mining', 1), ('machine', 1), ('learning', 1), ('past', 1), ('decade', 1), ('combine', 1), ('multiple', 1), ('model', 1), ('usually', 1), ('accurate', 1), ('best', 1), ('component', 1), ('provide', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ecml', 1), ('pkdd', 1), ('workshop', 1), ('advanced', 1), ('analytics', 1), ('learning', 1), ('temporal', 1), ('data', 1), ('aaltd', 1), ('held', 1), ('würzburg', 1), ('germany', 1), ('september', 1), ('full', 1), ('presented', 1), ('together', 1), ('poster', 1)]
[('book', 1), ('constitutes', 1), ('th', 1), ('edition', 1), ('annual', 1), ('multi', 1), ('agent', 1), ('programming', 1), ('contest', 1), ('mapc', 1), ('present', 1), ('participant', 1), ('scenario', 1), ('change', 1), ('previous', 1), ('competition', 1), ('described', 1), ('first', 1), ('contribution', 1), ('together', 1)]
[('ijcar', 2), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('automated', 1), ('reasoning', 1), ('held', 1), ('paris', 1), ('france', 1), ('july', 1), ('merger', 1), ('following', 1), ('leading', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('statistical', 1), ('language', 1), ('speech', 1), ('processing', 1), ('slsp', 1), ('held', 1), ('cardiff', 1), ('uk', 1), ('october', 1), ('full', 1), ('presented', 1), ('together', 1), ('invited', 1), ('volume', 1)]
[('method', 2), ('intuitionistic', 2), ('fuzzy', 2), ('book', 1), ('provides', 1), ('overview', 1), ('state', 1), ('art', 1), ('theory', 1), ('logic', 1), ('partial', 1), ('differential', 1), ('equation', 1), ('numerical', 1), ('informatics', 1), ('covering', 1), ('topic', 1), ('hilbert', 1), ('space', 1)]
[('epia', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('held', 1), ('virtually', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('total', 1)]
[('hci', 3), ('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('part', 1), ('took', 1), ('place', 1), ('virtually', 1), ('june', 1), ('july', 1), ('total', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('science', 1), ('engineering', 1), ('management', 1), ('ksem', 1), ('held', 1), ('singapore', 1), ('august', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('italian', 1), ('association', 1), ('artificial', 1), ('intelligence', 1), ('aixia', 1), ('held', 1), ('virtually', 1), ('december', 1), ('full', 1)]
[('iccbr', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('case', 1), ('based', 1), ('reasoning', 1), ('took', 1), ('place', 1), ('nancy', 1), ('france', 1), ('september', 1), ('theme', 1), ('global', 1), ('challenge', 1), ('cbr', 1), ('aiming', 1)]
[('volume', 2), ('lncs', 2), ('set', 1), ('constitutes', 1), ('conjunction', 1), ('lnai', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('held', 1), ('xi', 1), ('china', 1), ('august', 1)]
[('china', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('national', 1), ('conference', 1), ('computational', 1), ('linguistics', 1), ('ccl', 1), ('held', 1), ('nanchang', 1), ('october', 1), ('full', 1), ('english', 1), ('language', 1), ('paper', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('fuzzy', 3), ('system', 3), ('book', 1), ('explains', 1), ('basic', 1), ('concept', 1), ('theory', 1), ('application', 1), ('control', 1), ('simple', 1), ('unified', 1), ('approach', 1), ('clear', 1), ('ex', 1), ('amples', 1), ('simulation', 1), ('matlab', 1), ('programming', 1), ('language', 1), ('especially', 1), ('type', 1), ('neuro', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('concept', 1), ('analysis', 1), ('icfca', 1), ('held', 1), ('cluj', 1), ('napoca', 1), ('romania', 1), ('june', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('mining', 1), ('intelligence', 1), ('knowledge', 1), ('exploration', 1), ('mike', 1), ('held', 1), ('cork', 1), ('ireland', 1), ('december', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('application', 2), ('fuzzy', 2), ('preliminary', 1), ('book', 1), ('comprehensive', 1), ('collection', 1), ('recent', 1), ('significant', 1), ('research', 1), ('field', 1), ('logic', 1), ('cover', 1), ('structure', 1), ('system', 1), ('rule', 1), ('operation', 1), ('important', 1)]
[('full', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('automated', 1), ('deduction', 1), ('cade', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('august', 1), ('revised', 1), ('presented', 1), ('system', 1), ('description', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('method', 1), ('system', 1), ('biology', 1), ('cmsb', 1), ('held', 1), ('nantes', 1), ('france', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ccf', 1), ('conference', 1), ('nlpcc', 1), ('held', 1), ('nanchang', 1), ('china', 1), ('october', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('conference', 1), ('towards', 1), ('autonomous', 1), ('robotics', 1), ('taro', 1), ('held', 1), ('nbsp', 1), ('guildford', 1), ('uk', 1), ('july', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('text', 1), ('speech', 1), ('dialogue', 1), ('tsd', 1), ('held', 1), ('prague', 1), ('czechrepublic', 1), ('august', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('together', 1), ('abstract', 1), ('keynote', 1), ('talk', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('jsai', 1), ('isai', 1), ('workshop', 1), ('lenls', 1), ('jurisin', 1), ('aa', 1), ('hat', 1), ('mash', 1), ('tsdaa', 1), ('asd', 1), ('hr', 1), ('skl', 1), ('held', 1), ('kanagawa', 1), ('japan', 1), ('november', 1)]
[('book', 2), ('symposium', 2), ('includes', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('robocup', 1), ('international', 1), ('held', 1), ('leipzig', 1), ('germany', 1), ('july', 1), ('addition', 1), ('contribution', 1), ('selected', 1), ('submission', 1), ('contains', 1)]
[('th', 2), ('workshop', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('international', 1), ('multi', 1), ('agent', 1), ('based', 1), ('simulation', 1), ('mabs', 1), ('sao', 1), ('paulo', 1), ('brazil', 1), ('conjunction', 1)]
[('volume', 2), ('nbsp', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('hybrid', 1), ('artificial', 1), ('intelligent', 1), ('system', 1), ('hais', 1), ('held', 1), ('oviedo', 1), ('spain', 1), ('june', 1), ('full', 1), ('paper', 1), ('published', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('seminar', 1), ('speech', 1), ('production', 1), ('issp', 1), ('held', 1), ('tianjin', 1), ('china', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('knowledge', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('engineering', 1), ('management', 1), ('ekaw', 1), ('held', 1), ('nancy', 1), ('france', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('multi', 1), ('disciplinary', 1), ('trend', 1), ('artificial', 1), ('intelligence', 1), ('miwai', 1), ('held', 1), ('hanoi', 1), ('vietnam', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('proceeding', 2), ('three', 1), ('volume', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('european', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('dublin', 1), ('ireland', 1), ('september', 1), ('nbsp', 1), ('total', 1)]
[('workshop', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('artificial', 1), ('intelligence', 1), ('health', 1), ('aih', 1), ('stockholm', 1), ('sweden', 1), ('july', 1), ('nbsp', 1), ('consolidated', 1), ('care', 1), ('krh', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('fuzzy', 1), ('logic', 1), ('application', 1), ('wilf', 1), ('held', 1), ('genoa', 1), ('italy', 1), ('september', 1), ('revised', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('editedbook', 1), ('present', 1), ('scientific', 1), ('result', 1), ('th', 1), ('iee', 1), ('acis', 1), ('internationalconference', 1), ('software', 1), ('engineering', 1), ('artificial', 1), ('intelligence', 1), ('networking', 1), ('andparallel', 1), ('distributed', 1), ('computing', 1), ('snpd', 1), ('held', 1), ('june', 1)]
[('book', 2), ('emphasizes', 1), ('increasingly', 1), ('important', 1), ('role', 1), ('computational', 1), ('intelligence', 1), ('ci', 1), ('method', 1), ('playing', 1), ('solving', 1), ('myriad', 1), ('entangled', 1), ('wireless', 1), ('sensor', 1), ('network', 1), ('wsn', 1), ('related', 1), ('problem', 1), ('serf', 1), ('guide', 1), ('surveying', 1), ('several', 1)]
[('conference', 2), ('book', 1), ('present', 1), ('edited', 1), ('proceeding', 1), ('th', 1), ('iee', 1), ('acis', 1), ('international', 1), ('computer', 1), ('information', 1), ('science', 1), ('icis', 1), ('held', 1), ('wuhan', 1), ('china', 1), ('aim', 1), ('bring', 1), ('together', 1)]
[('topic', 2), ('computing', 2), ('book', 1), ('present', 1), ('collection', 1), ('contribution', 1), ('addressing', 1), ('recent', 1), ('advance', 1), ('research', 1), ('synergistic', 1), ('combination', 1), ('joint', 1), ('field', 1), ('intelligent', 1), ('distributed', 1), ('focus', 1), ('following', 1), ('specific', 1)]
[('book', 1), ('present', 1), ('outcome', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('artificial', 1), ('intelligence', 1), ('research', 1), ('management', 1), ('application', 1), ('serum', 1), ('held', 1), ('kunming', 1), ('china', 1), ('june', 1), ('aim', 1)]
[('book', 1), ('highlight', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('field', 1), ('network', 1), ('science', 1), ('offering', 1), ('scientist', 1), ('researcher', 1), ('student', 1), ('practitioner', 1), ('unique', 1), ('update', 1), ('latest', 1), ('advance', 1), ('theory', 1), ('together', 1), ('wealth', 1), ('application', 1), ('present', 1)]
[('book', 1), ('gather', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('presented', 1), ('th', 1), ('edition', 1), ('international', 1), ('workshop', 1), ('service', 1), ('orientation', 1), ('holonic', 1), ('multi', 1), ('agent', 1), ('manufacturing', 1), ('sohoma', 1), ('held', 1), ('university', 1), ('bergamo', 1), ('italy', 1), ('june', 1)]
[('book', 1), ('comprehensively', 1), ('address', 1), ('computational', 1), ('intelligence', 1), ('including', 1), ('theory', 1), ('methodology', 1), ('technique', 1), ('underlying', 1), ('evolving', 1), ('field', 1), ('potential', 1), ('us', 1), ('various', 1), ('domain', 1), ('across', 1), ('entire', 1), ('spectrum', 1), ('science', 1)]
[('conference', 2), ('book', 1), ('gather', 1), ('outcome', 1), ('th', 1), ('iee', 1), ('acis', 1), ('international', 1), ('computer', 1), ('information', 1), ('science', 1), ('icis', 1), ('held', 1), ('june', 1), ('beijing', 1), ('china', 1), ('aim', 1), ('bring', 1), ('together', 1), ('researcher', 1)]
[('virtual', 2), ('reality', 2), ('healthcare', 2), ('book', 1), ('address', 1), ('difficult', 1), ('task', 1), ('integrating', 1), ('computational', 1), ('technique', 1), ('discus', 1), ('use', 1), ('various', 1), ('area', 1), ('cognitive', 1), ('behavioural', 1), ('training', 1), ('understanding', 1)]
[('problem', 2), ('carefully', 1), ('edited', 1), ('book', 1), ('selected', 1), ('result', 1), ('theoretical', 1), ('applied', 1), ('research', 1), ('field', 1), ('broadly', 1), ('perceived', 1), ('intelligent', 1), ('system', 1), ('presented', 1), ('vary', 1), ('industrial', 1), ('web', 1), ('independent', 1), ('application', 1)]
[('high', 2), ('book', 1), ('contains', 1), ('selection', 1), ('quality', 1), ('paper', 1), ('chosen', 1), ('among', 1), ('best', 1), ('presentation', 1), ('international', 1), ('conference', 1), ('spectral', 1), ('order', 1), ('method', 1), ('provides', 1), ('overview', 1), ('depth', 1), ('breadth', 1), ('activity', 1), ('within', 1)]
[('book', 1), ('feature', 1), ('selection', 1), ('extended', 1), ('paper', 1), ('presented', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('workshop', 1), ('artificial', 1), ('intelligence', 1), ('knowledge', 1), ('management', 1), ('ai', 1), ('km', 1), ('held', 1), ('yokohama', 1), ('japan', 1), ('january', 1), ('framework', 1)]
[('paper', 2), ('volume', 1), ('consists', 1), ('revised', 1), ('selected', 1), ('presented', 1), ('rd', 1), ('th', 1), ('international', 1), ('conference', 1), ('smart', 1), ('energy', 1), ('research', 1), ('smarter', 1), ('europe', 1), ('held', 1), ('essen', 1), ('germany', 1), ('february', 1), ('full', 1), ('included', 1)]
[('problem', 3), ('used', 2), ('image', 2), ('processing', 2), ('computer', 2), ('book', 1), ('present', 1), ('practical', 1), ('optimization', 1), ('technique', 1), ('vision', 1), ('ill', 1), ('posed', 1), ('introduced', 1), ('example', 1), ('show', 1), ('type', 1), ('related', 1), ('typical', 1)]
[('book', 1), ('present', 1), ('detailed', 1), ('review', 1), ('state', 1), ('art', 1), ('deep', 1), ('learning', 1), ('approach', 1), ('semantic', 1), ('object', 1), ('detection', 1), ('segmentation', 1), ('medical', 1), ('image', 1), ('computing', 1), ('large', 1), ('scale', 1), ('radiology', 1), ('database', 1), ('mining', 1), ('particular', 1), ('focus', 1), ('placed', 1)]
[('user', 3), ('book', 2), ('technology', 2), ('design', 2), ('provides', 1), ('study', 1), ('theory', 1), ('related', 1), ('centered', 1), ('process', 1), ('government', 1), ('project', 1), ('mainly', 1), ('discus', 1), ('inherent', 1), ('issue', 1), ('implication', 1), ('experience', 1), ('guideline', 1)]
[('unique', 1), ('volume', 1), ('explores', 1), ('cutting', 1), ('edge', 1), ('management', 1), ('approach', 1), ('developing', 1), ('complex', 1), ('software', 1), ('efficient', 1), ('scalable', 1), ('sustainable', 1), ('suitable', 1), ('distributed', 1), ('environment', 1), ('practical', 1), ('insight', 1), ('offered', 1), ('international', 1), ('selection', 1)]
[('image', 4), ('pde', 2), ('based', 2), ('inpainting', 2), ('book', 1), ('cover', 1), ('essential', 1), ('processing', 1), ('field', 1), ('denoising', 1), ('describes', 1), ('state', 1), ('art', 1), ('restoration', 1), ('interpolation', 1), ('technique', 1), ('focusing', 1), ('latest', 1), ('advance', 1)]
[('foraging', 3), ('book', 1), ('introduction', 1), ('relevant', 1), ('aspect', 1), ('literature', 1), ('algorithmic', 1), ('design', 1), ('overview', 1), ('key', 1), ('family', 1), ('optimization', 1), ('algorithm', 1), ('stem', 1), ('metaphor', 1), ('author', 1), ('first', 1), ('offer', 1), ('perspective', 1)]
[('hyper', 2), ('heuristic', 2), ('introduction', 1), ('field', 1), ('present', 1), ('required', 1), ('foundation', 1), ('tool', 1), ('illustrates', 1), ('application', 1), ('author', 1), ('organized', 1), ('chapter', 1), ('three', 1), ('part', 1), ('first', 1), ('fundamental', 1), ('theory', 1)]
[('conference', 2), ('book', 1), ('comprises', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('computational', 1), ('engineering', 1), ('icce', 1), ('held', 1), ('darmstadt', 1), ('germany', 1), ('september', 1), ('intended', 1), ('provide', 1), ('interdisciplinary', 1), ('meeting', 1), ('place', 1)]
[('concept', 2), ('classroom', 1), ('tested', 1), ('textbook', 1), ('present', 1), ('active', 1), ('learning', 1), ('approach', 1), ('foundational', 1), ('software', 1), ('design', 1), ('applied', 1), ('case', 1), ('study', 1), ('reinforced', 1), ('practice', 1), ('exercise', 1), ('option', 1), ('follow', 1), ('either', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('trust', 1), ('management', 1), ('ifiptm', 1), ('held', 1), ('hamburg', 1), ('germany', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('quantum', 2), ('basic', 2), ('textbook', 1), ('intended', 1), ('practical', 1), ('laboratory', 1), ('session', 1), ('associated', 1), ('course', 1), ('computing', 1), ('algorithm', 1), ('self', 1), ('study', 1), ('contains', 1), ('theoretical', 1), ('concept', 1), ('method', 1), ('solving', 1), ('type', 1), ('problem', 1)]
[('book', 2), ('research', 2), ('world', 1), ('first', 1), ('mobile', 1), ('wireless', 1), ('network', 1), ('aim', 1), ('provide', 1), ('comprehensive', 1), ('understanding', 1), ('key', 1), ('driver', 1), ('use', 1), ('case', 1), ('requirement', 1), ('challenge', 1), ('open', 1), ('issue', 1), ('expected', 1), ('drive', 1)]
[('cybersecurity', 2), ('contributed', 1), ('volume', 1), ('tell', 1), ('story', 1), ('establishment', 1), ('awareness', 1), ('framework', 1), ('organization', 1), ('piloted', 1), ('public', 1), ('sector', 1), ('municipal', 1), ('context', 1), ('present', 1), ('clear', 1), ('picture', 1), ('issue', 1)]
[('computation', 3), ('theory', 1), ('discipline', 1), ('us', 1), ('mathematical', 1), ('concept', 1), ('tool', 1), ('expose', 1), ('nature', 1), ('explain', 1), ('broad', 1), ('range', 1), ('computational', 1), ('phenomenon', 1), ('harder', 1), ('perform', 1), ('others', 1), ('nbsp', 1)]
[('dementia', 2), ('old', 1), ('age', 1), ('currently', 1), ('greatest', 1), ('risk', 1), ('factor', 1), ('developing', 1), ('older', 1), ('make', 1), ('larger', 1), ('portion', 1), ('population', 1), ('resulting', 1), ('increase', 1), ('incidence', 1), ('present', 1), ('major', 1), ('challenge', 1), ('society', 1)]
[('dosimetry', 3), ('radiation', 2), ('luminescence', 2), ('book', 1), ('cover', 1), ('application', 1), ('general', 1), ('discipline', 1), ('specific', 1), ('area', 1), ('dating', 1), ('protection', 1), ('feature', 1), ('detailed', 1), ('worked', 1), ('example', 1)]
[('world', 2), ('web', 2), ('application', 2), ('book', 1), ('redefines', 1), ('community', 1), ('discovery', 1), ('new', 1), ('online', 1), ('social', 1), ('network', 1), ('real', 1), ('problem', 1), ('context', 1), ('pointing', 1), ('current', 1), ('future', 1), ('challenge', 1), ('field', 1)]
[('teen', 1), ('computer', 1), ('interaction', 1), ('concerned', 1), ('design', 1), ('evaluation', 1), ('implementation', 1), ('technology', 1), ('teenager', 1), ('study', 1), ('major', 1), ('phenomenon', 1), ('surrounding', 1), ('aim', 1), ('give', 1), ('special', 1), ('consideration', 1), ('unique', 1), ('development', 1), ('issue', 1)]
[('system', 2), ('computer', 1), ('increasingly', 1), ('control', 1), ('service', 1), ('depend', 1), ('upon', 1), ('within', 1), ('daily', 1), ('life', 1), ('transport', 1), ('communication', 1), ('medium', 1), ('ensuring', 1), ('function', 1), ('correctly', 1), ('utmost', 1), ('importance', 1), ('book', 1), ('consists', 1), ('twelve', 1)]
[('book', 1), ('written', 1), ('leader', 1), ('protection', 1), ('field', 1), ('critical', 1), ('infrastructure', 1), ('provides', 1), ('extended', 1), ('overview', 1), ('technological', 1), ('operative', 1), ('advantage', 1), ('together', 1), ('security', 1), ('problem', 1), ('challenge', 1), ('new', 1), ('paradigm', 1), ('internet', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('ftscs', 1), ('held', 1), ('queenstown', 1), ('new', 1), ('zealand', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('symposium', 1), ('artificial', 1), ('intelligence', 1), ('signal', 1), ('processing', 1), ('aisp', 1), ('held', 1), ('tehran', 1), ('iran', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('contains', 1), ('extended', 1), ('revised', 1), ('version', 1), ('set', 1), ('selected', 1), ('paper', 1), ('event', 1), ('organized', 1), ('euro', 1), ('working', 1), ('group', 1), ('decision', 1), ('support', 1), ('system', 1), ('ewg', 1), ('ds', 1), ('held', 1), ('toulouse', 1), ('france', 1), ('barcelona', 1), ('spain', 1), ('june', 1), ('july', 1)]
[('paper', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('eurospi', 1), ('conference', 1), ('held', 1), ('ankara', 1), ('turkey', 1), ('september', 1), ('october', 1), ('revised', 1), ('presented', 1), ('together', 1), ('selected', 1), ('key', 1), ('note', 1), ('workshop', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('semantic', 2), ('web', 2), ('thisbook', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('thesecond', 1), ('edition', 1), ('evaluation', 1), ('challenge', 1), ('semwebeval', 1), ('co', 1), ('located', 1), ('th', 1), ('european', 1), ('held', 1), ('portorož', 1), ('slovenia', 1)]
[('latin', 2), ('conference', 2), ('bookconstitutes', 1), ('proceeding', 1), ('second', 1), ('american', 1), ('highperformance', 1), ('computing', 1), ('carla', 1), ('joint', 1), ('high', 1), ('performancecomputing', 1), ('america', 1), ('community', 1), ('hpclatam', 1), ('conferencia', 1), ('latinoamericana', 1)]
[('paper', 2), ('bookconstitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('internationalconference', 1), ('operation', 1), ('research', 1), ('enterprise', 1), ('system', 1), ('icores', 1), ('held', 1), ('inlisbon', 1), ('portugal', 1), ('january', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('bookconstitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('onlanguages', 1), ('application', 1), ('technology', 1), ('slate', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('injune', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('werecarefully', 1), ('reviewed', 1)]
[('web', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('electronic', 1), ('commerce', 1), ('technology', 1), ('ec', 1), ('held', 1), ('valencia', 1), ('spain', 1), ('september', 1), ('full', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('eurospi', 1), ('conference', 1), ('held', 1), ('graz', 1), ('austria', 1), ('september', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('selected', 1), ('key', 1), ('note', 1), ('workshop', 1), ('nbsp', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('technology', 1), ('innovation', 1), ('citi', 1), ('held', 1), ('guayaquil', 1), ('ecuador', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('th', 2), ('nbsp', 2), ('webist', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('international', 1), ('conference', 1), ('web', 1), ('information', 1), ('system', 1), ('technology', 1), ('took', 1), ('place', 1), ('virtually', 1), ('november', 1), ('october', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('paper', 1), ('th', 1), ('ifip', 1), ('working', 1), ('conference', 1), ('practice', 1), ('enterprise', 1), ('modeling', 1), ('held', 1), ('riga', 1), ('latvia', 1), ('november', 1), ('nbsp', 1), ('poem', 1), ('offer', 1), ('forum', 1), ('sharing', 1), ('experience', 1), ('knowledge', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('iberoamerican', 1), ('workshop', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hci', 1), ('collab', 1), ('held', 1), ('sao', 1), ('paulo', 1), ('brazil', 1), ('september', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('ccis', 3), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('security', 1), ('icais', 1), ('held', 1), ('qinghai', 1), ('china', 1), ('july', 1), ('nbsp', 1), ('total', 1)]
[('enterprise', 2), ('eewc', 2), ('luxembourg', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('engineering', 1), ('working', 1), ('conference', 1), ('held', 1), ('june', 1), ('aim', 1), ('addressing', 1), ('challenge', 1), ('modern', 1), ('complex', 1), ('facing', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('formal', 1), ('technique', 1), ('safety', 1), ('critical', 1), ('system', 1), ('ftscs', 1), ('held', 1), ('gold', 1), ('coast', 1), ('australia', 1), ('nbsp', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('working', 1), ('conference', 1), ('research', 1), ('practical', 1), ('issue', 1), ('enterprise', 1), ('information', 1), ('system', 1), ('confenis', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('december', 1), ('nbsp', 1), ('full', 1)]
[('caise', 2), ('held', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('forum', 1), ('part', 1), ('nd', 1), ('international', 1), ('advanced', 1), ('information', 1), ('system', 1), ('engineering', 1), ('june', 1), ('virtually', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('extended', 1), ('revised', 1), ('selected', 1), ('nd', 1), ('international', 1), ('conference', 1), ('enterprise', 1), ('information', 1), ('system', 1), ('iceis', 1), ('held', 1), ('online', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('business', 1), ('modeling', 1), ('software', 1), ('design', 1), ('bmsd', 1), ('took', 1), ('place', 1), ('sofia', 1), ('bulgaria', 1), ('july', 1), ('full', 1), ('short', 1), ('paper', 1), ('included', 1)]
[('scion', 2), ('point', 2), ('nbsp', 2), ('project', 1), ('started', 1), ('goal', 1), ('create', 1), ('architecture', 1), ('offering', 1), ('high', 1), ('availability', 1), ('security', 1), ('basic', 1), ('communication', 1), ('five', 1), ('year', 1), ('publication', 1), ('secure', 1), ('internet', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('metadata', 1), ('semantic', 1), ('research', 1), ('mtsr', 1), ('held', 1), ('rome', 1), ('italy', 1), ('october', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('agent', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('co', 1), ('located', 1), ('th', 1), ('international', 1), ('conference', 1), ('practical', 1), ('application', 1), ('multi', 1), ('system', 1), ('paams', 1), ('held', 1), ('toledo', 1), ('spain', 1), ('june', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('baltic', 1), ('conference', 1), ('database', 1), ('information', 1), ('system', 1), ('db', 1), ('held', 1), ('trakai', 1), ('lithuania', 1), ('july', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('system', 1), ('software', 1), ('service', 1), ('process', 1), ('improvement', 1), ('eurospi', 1), ('held', 1), ('bilbao', 1), ('spain', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('natural', 1), ('language', 1), ('ainl', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('security', 1), ('issa', 1), ('held', 1), ('pretoria', 1), ('south', 1), ('africa', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('data', 2), ('book', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('analytics', 1), ('management', 1), ('intensive', 1), ('domain', 1), ('damdid', 1), ('rcdl', 1), ('held', 1), ('voronezh', 1), ('russia', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('emotion', 2), ('system', 2), ('book', 1), ('provides', 1), ('new', 1), ('perspective', 1), ('artificial', 1), ('present', 1), ('insightful', 1), ('explanation', 1), ('might', 1), ('emerge', 1), ('deep', 1), ('inside', 1), ('emotional', 1), ('behaviour', 1), ('seen', 1), ('consequence', 1), ('internal', 1), ('management', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('context', 1), ('aware', 1), ('system', 1), ('application', 1), ('iccasa', 1), ('held', 1), ('thu', 1), ('dau', 1), ('mot', 1), ('vietnam', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('second', 1), ('eai', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('transport', 1), ('system', 1), ('intsys', 1), ('held', 1), ('guimarães', 1), ('portugal', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('future', 1), ('wireless', 1), ('network', 1), ('gwn', 1), ('held', 1), ('changsa', 1), ('china', 1), ('february', 1), ('full', 1), ('paper', 1), ('selected', 1), ('submission', 1), ('present', 1), ('state', 1)]
[('book', 1), ('devoted', 1), ('metacognition', 1), ('arena', 1), ('highlight', 1), ('work', 1), ('show', 1), ('relevant', 1), ('analysis', 1), ('review', 1), ('theoretical', 1), ('methodological', 1), ('proposal', 1), ('study', 1), ('approach', 1), ('application', 1), ('tool', 1), ('shape', 1), ('current', 1), ('state', 1), ('define', 1), ('trend', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('testbeds', 1), ('research', 1), ('infrastructure', 1), ('development', 1), ('network', 1), ('community', 1), ('tridentcom', 1), ('held', 1), ('guangzhou', 1), ('china', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('icst', 1), ('ambient', 1), ('medium', 1), ('system', 1), ('ambi', 1), ('sys', 1), ('held', 1), ('athens', 1), ('greece', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('joint', 1), ('signal', 1), ('processing', 1), ('information', 1), ('technology', 1), ('spit', 1), ('held', 1), ('dubai', 1), ('uae', 1), ('september', 1), ('paper', 1), ('included', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('cloud', 1), ('computing', 1), ('cloudcomp', 1), ('held', 1), ('guilin', 1), ('china', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('infrastructure', 1), ('service', 1), ('developing', 1), ('country', 1), ('africomm', 1), ('held', 1), ('ebène', 1), ('city', 1), ('mauritius', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('paper', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('revised', 1), ('first', 1), ('mediterranean', 1), ('forum', 1), ('data', 1), ('science', 1), ('conference', 1), ('mefdata', 1), ('held', 1), ('sarajevo', 1), ('bosnia', 1), ('herzegovina', 1), ('october', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('processing', 1), ('management', 1), ('uncertainty', 1), ('knowledge', 1), ('based', 1), ('system', 1), ('ipmu', 1), ('june', 1), ('nbsp', 1), ('scheduled', 1)]
[('sound', 2), ('introduction', 1), ('basic', 1), ('music', 1), ('technology', 1), ('including', 1), ('acoustic', 1), ('production', 1), ('analysis', 1), ('fourier', 1), ('frequency', 1), ('modulation', 1), ('wavelet', 1), ('physical', 1), ('modeling', 1), ('classification', 1), ('musical', 1), ('instrument', 1), ('space', 1), ('tuning', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('big', 1), ('data', 1), ('technology', 1), ('application', 1), ('bdta', 1), ('held', 1), ('gwangju', 1), ('south', 1), ('korea', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1)]
[('book', 1), ('bridge', 1), ('widening', 1), ('gap', 1), ('crucial', 1), ('constituent', 1), ('computational', 1), ('intelligence', 1), ('rapidly', 1), ('advancing', 1), ('technology', 1), ('machine', 1), ('learning', 1), ('digital', 1), ('information', 1), ('age', 1), ('relatively', 1), ('slow', 1), ('moving', 1), ('field', 1), ('general', 1), ('purpose', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('ubiquitous', 1), ('communication', 1), ('network', 1), ('computing', 1), ('ubicnet', 1), ('march', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('full', 1), ('paper', 1)]
[('conference', 3), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('computer', 1), ('science', 1), ('engineering', 1), ('health', 1), ('service', 1), ('compse', 1), ('july', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1)]
[('conference', 3), ('artsit', 3), ('international', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('interactivity', 1), ('game', 1), ('creation', 1), ('first', 1), ('design', 1), ('learning', 1), ('innovation', 1), ('dli', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('broadband', 1), ('communication', 1), ('network', 1), ('system', 1), ('broadnets', 1), ('took', 1), ('place', 1), ('xi', 1), ('china', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('software', 2), ('book', 1), ('cover', 1), ('range', 1), ('basic', 1), ('advanced', 1), ('topic', 1), ('engineering', 1), ('field', 1), ('undergone', 1), ('several', 1), ('phase', 1), ('change', 1), ('improvement', 1), ('invention', 1), ('significant', 1), ('ongoing', 1), ('research', 1), ('development', 1), ('addressing', 1)]
[('iot', 2), ('technology', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('internet', 1), ('thing', 1), ('healthcare', 1), ('healthyiot', 1), ('held', 1), ('braga', 1), ('portugal', 1), ('december', 1), ('set', 1), ('existing', 1), ('emerging', 1)]
[('book', 1), ('primarily', 1), ('intended', 1), ('undergraduate', 1), ('postgraduate', 1), ('student', 1), ('science', 1), ('electrical', 1), ('engineering', 1), ('computational', 1), ('mathematics', 1), ('metaheuristic', 1), ('search', 1), ('method', 1), ('numerous', 1), ('varied', 1), ('term', 1), ('design', 1), ('potential', 1), ('application', 1)]
[('conference', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('iot', 1), ('service', 1), ('iotaas', 1), ('took', 1), ('place', 1), ('xi', 1), ('china', 1), ('november', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('held', 1), ('virtually', 1)]
[('method', 3), ('type', 2), ('fuzzy', 2), ('book', 1), ('four', 1), ('new', 1), ('proposed', 1), ('first', 1), ('generalized', 1), ('logic', 1), ('combined', 1), ('morphological', 1), ('gra', 1), ('dient', 1), ('technique', 1), ('second', 1), ('combine', 1), ('general', 1), ('system', 1), ('gt', 1), ('f', 1), ('sobel', 1)]
[('analysis', 2), ('sna', 2), ('fca', 2), ('book', 1), ('study', 1), ('existing', 1), ('potential', 1), ('connection', 1), ('social', 1), ('network', 1), ('formal', 1), ('concept', 1), ('showing', 1), ('standard', 1), ('technique', 1), ('usually', 1), ('based', 1), ('graph', 1), ('theory', 1), ('supplemented', 1), ('method', 1), ('rely', 1)]
[('football', 2), ('book', 1), ('present', 1), ('proposal', 1), ('new', 1), ('soft', 1), ('computing', 1), ('innovative', 1), ('method', 1), ('called', 1), ('cfe', 1), ('forevaluation', 1), ('match', 1), ('fifa', 1), ('ifab', 1), ('uefa', 1), ('compute', 1), ('true', 1), ('winner', 1), ('research', 1), ('work', 1), ('area', 1), ('science', 1)]
[('seismic', 2), ('book', 1), ('present', 1), ('method', 1), ('full', 1), ('wave', 1), ('computer', 1), ('simulation', 1), ('used', 1), ('various', 1), ('application', 1), ('context', 1), ('prospecting', 1), ('earthquake', 1), ('stability', 1), ('global', 1), ('pattern', 1), ('earth', 1), ('mar', 1), ('medicine', 1), ('traumatology', 1), ('ultrasound', 1)]
[('micrads', 2), ('book', 1), ('includes', 1), ('selection', 1), ('article', 1), ('multidisciplinary', 1), ('international', 1), ('conference', 1), ('research', 1), ('applied', 1), ('defense', 1), ('security', 1), ('held', 1), ('salina', 1), ('peninsula', 1), ('de', 1), ('santa', 1), ('elena', 1), ('ecuador', 1), ('april', 1)]
[('unique', 1), ('book', 1), ('present', 1), ('story', 1), ('pioneering', 1), ('manufacturing', 1), ('company', 1), ('ferranti', 1), ('ltd', 1), ('producer', 1), ('first', 1), ('commercially', 1), ('available', 1), ('computer', 1), ('nine', 1), ('end', 1), ('user', 1), ('organisation', 1), ('purchased', 1), ('machine', 1), ('government', 1), ('help', 1)]
[('computing', 2), ('volume', 1), ('chapter', 1), ('historical', 1), ('study', 1), ('information', 1), ('society', 1), ('written', 1), ('seven', 1), ('senior', 1), ('distinguished', 1), ('member', 1), ('history', 1), ('field', 1), ('edited', 1), ('expanded', 1), ('version', 1), ('paper', 1), ('presented', 1)]
[('fuzzy', 2), ('algorithm', 2), ('book', 1), ('focus', 1), ('field', 1), ('logic', 1), ('metaheuristic', 1), ('particularly', 1), ('harmony', 1), ('search', 1), ('control', 1), ('currently', 1), ('several', 1), ('type', 1), ('metaheuristics', 1), ('used', 1), ('solve', 1), ('range', 1), ('real', 1), ('world', 1), ('problem', 1)]
[('book', 1), ('address', 1), ('key', 1), ('issue', 1), ('modeling', 1), ('simulation', 1), ('diffusive', 1), ('process', 1), ('wide', 1), ('spectrum', 1), ('different', 1), ('application', 1), ('across', 1), ('broad', 1), ('range', 1), ('discipline', 1), ('feature', 1), ('discus', 1), ('diffusion', 1), ('molecular', 1), ('transport', 1), ('living', 1), ('cell', 1)]
[('professional', 2), ('commissioned', 1), ('society', 1), ('modeling', 1), ('simulation', 1), ('international', 1), ('sc', 1), ('needed', 1), ('useful', 1), ('new', 1), ('body', 1), ('knowledge', 1), ('bok', 1), ('collect', 1), ('organizes', 1), ('common', 1), ('understanding', 1), ('wide', 1), ('collection', 1)]
[('book', 1), ('outcome', 1), ('rd', 1), ('international', 1), ('conference', 1), ('enviroinfo', 1), ('held', 1), ('university', 1), ('kassel', 1), ('germany', 1), ('present', 1), ('selection', 1), ('paper', 1), ('describe', 1), ('innovative', 1), ('scientific', 1), ('approach', 1), ('ongoing', 1), ('research', 1), ('environmental', 1)]
[('conference', 2), ('technology', 2), ('itib', 1), ('th', 1), ('information', 1), ('biomedicine', 1), ('organized', 1), ('department', 1), ('informatics', 1), ('medical', 1), ('equipment', 1), ('silesian', 1), ('university', 1), ('every', 1), ('year', 1), ('auspex', 1), ('committee', 1)]
[('computational', 2), ('science', 2), ('research', 2), ('applied', 1), ('mathematics', 1), ('modelling', 1), ('ammcs', 1), ('conference', 1), ('aim', 1), ('promote', 1), ('interdisciplinary', 1), ('collaboration', 1), ('contribution', 1), ('volume', 1), ('cover', 1), ('latest', 1), ('mathematical', 1)]
[('emergence', 4), ('art', 2), ('book', 1), ('concerned', 1), ('interaction', 1), ('computing', 1), ('introduces', 1), ('new', 1), ('focus', 1), ('interactive', 1), ('emergent', 1), ('experience', 1), ('literature', 1), ('discussed', 1), ('organising', 1), ('framework', 1), ('taxonomy', 1)]
[('different', 2), ('numerical', 1), ('computational', 1), ('method', 1), ('nowadays', 1), ('used', 1), ('wide', 1), ('range', 1), ('context', 1), ('complex', 1), ('system', 1), ('research', 1), ('biology', 1), ('physic', 1), ('engineering', 1), ('last', 1), ('decade', 1), ('methodological', 1), ('school', 1), ('emerged', 1), ('emphasis', 1)]
[('volume', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('second', 1), ('international', 1), ('conference', 1), ('frontier', 1), ('intelligent', 1), ('computing', 1), ('theory', 1), ('application', 1), ('ficta', 1), ('held', 1), ('november', 1), ('organized', 1), ('bhubaneswar', 1), ('engineering', 1), ('college', 1), ('bec', 1)]
[('facing', 1), ('new', 1), ('technological', 1), ('challenge', 1), ('store', 1), ('retrieve', 1), ('knowledge', 1), ('manipulate', 1), ('intelligence', 1), ('autonomous', 1), ('service', 1), ('intelligent', 1), ('system', 1), ('capable', 1), ('carrying', 1), ('real', 1), ('world', 1), ('task', 1), ('autonomously', 1), ('address', 1)]
[('depcos', 1), ('relcomex', 1), ('annual', 1), ('series', 1), ('conference', 1), ('organized', 1), ('wrocław', 1), ('university', 1), ('technology', 1), ('promote', 1), ('comprehensive', 1), ('approach', 1), ('evaluation', 1), ('system', 1), ('performability', 1), ('commonly', 1), ('called', 1), ('dependability', 1), ('contrast', 1), ('classic', 1)]
[('volume', 2), ('based', 1), ('research', 1), ('paper', 1), ('presented', 1), ('th', 1), ('computer', 1), ('science', 1), ('line', 1), ('conference', 1), ('intelligent', 1), ('system', 1), ('cybernetics', 1), ('automation', 1), ('control', 1), ('theory', 1), ('present', 1), ('new', 1), ('approach', 1), ('method', 1), ('real', 1), ('world', 1), ('problem', 1)]
[('book', 2), ('collection', 1), ('selected', 1), ('accepted', 1), ('paper', 1), ('mendel', 1), ('conference', 1), ('held', 1), ('brno', 1), ('czech', 1), ('republic', 1), ('june', 1), ('content', 1), ('three', 1), ('chapter', 1), ('represent', 1), ('recent', 1), ('advance', 1), ('soft', 1), ('computing', 1), ('including', 1), ('intelligent', 1), ('image', 1)]
[('system', 2), ('book', 1), ('devoted', 1), ('demand', 1), ('research', 1), ('industrial', 1), ('center', 1), ('diagnostics', 1), ('monitoring', 1), ('decision', 1), ('making', 1), ('result', 1), ('increasing', 1), ('complexity', 1), ('automation', 1), ('need', 1), ('ensure', 1), ('highest', 1), ('level', 1)]
[('robot', 2), ('th', 2), ('book', 1), ('contains', 1), ('selection', 1), ('papersaccepted', 1), ('presentation', 1), ('discussion', 1), ('second', 1), ('iberian', 1), ('roboticsconference', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('november', 1), ('ispart', 1), ('series', 1), ('conference', 1), ('joint', 1)]
[('volumeof', 1), ('advance', 1), ('intelligent', 1), ('system', 1), ('computing', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('inthe', 1), ('main', 1), ('track', 1), ('iiti', 1), ('first', 1), ('international', 1), ('conference', 1), ('intelligentinformation', 1), ('technology', 1), ('industry', 1), ('held', 1), ('sochi', 1), ('russia', 1)]
[('book', 1), ('report', 1), ('state', 1), ('art', 1), ('physical', 1), ('ergonomics', 1), ('concerned', 1), ('design', 1), ('product', 1), ('process', 1), ('service', 1), ('work', 1), ('system', 1), ('assure', 1), ('productive', 1), ('safe', 1), ('satisfying', 1), ('use', 1), ('focus', 1), ('human', 1), ('body', 1)]
[('multimedia', 2), ('processing', 2), ('intelligent', 2), ('recent', 1), ('year', 1), ('seen', 1), ('remarkable', 1), ('progress', 1), ('advanced', 1), ('data', 1), ('network', 1), ('information', 1), ('system', 1), ('objective', 1), ('book', 1), ('contribute', 1), ('development', 1)]
[('big', 2), ('data', 2), ('book', 1), ('offer', 1), ('timely', 1), ('snapshot', 1), ('neural', 1), ('network', 1), ('technology', 1), ('significant', 1), ('component', 1), ('analytics', 1), ('platform', 1), ('promotes', 1), ('new', 1), ('advance', 1), ('research', 1), ('direction', 1), ('efficient', 1), ('innovative', 1), ('algorithmic', 1), ('approach', 1), ('analyzing', 1)]
[('intelligent', 2), ('book', 1), ('describes', 1), ('recent', 1), ('advance', 1), ('use', 1), ('fuzzy', 1), ('logic', 1), ('design', 1), ('hybrid', 1), ('system', 1), ('based', 1), ('nature', 1), ('inspired', 1), ('optimization', 1), ('application', 1), ('area', 1), ('control', 1), ('robotics', 1), ('pattern', 1), ('recognition', 1), ('medical', 1)]
[('book', 1), ('offer', 1), ('comprehensive', 1), ('study', 1), ('computer', 1), ('recognition', 1), ('system', 1), ('promising', 1), ('direction', 1), ('artificial', 1), ('intelligence', 1), ('present', 1), ('collection', 1), ('carefully', 1), ('selected', 1), ('article', 1), ('contributed', 1), ('expert', 1), ('field', 1), ('pattern', 1)]
[('book', 1), ('includes', 1), ('selection', 1), ('article', 1), ('international', 1), ('conference', 1), ('information', 1), ('technology', 1), ('system', 1), ('icits', 1), ('held', 1), ('january', 1), ('universidad', 1), ('estatal', 1), ('península', 1), ('de', 1), ('santa', 1), ('elena', 1), ('libertad', 1), ('city', 1), ('ecuador', 1), ('icist', 1)]
[('barcelona', 2), ('book', 1), ('gather', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('conference', 1), ('forum', 1), ('interdisciplinary', 1), ('mathematics', 1), ('fim', 1), ('held', 1), ('palau', 1), ('macaya', 1), ('november', 1), ('event', 1), ('co', 1), ('organized', 1), ('university', 1), ('spain', 1)]
[('biomechanics', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('polish', 1), ('society', 1), ('held', 1), ('zielona', 1), ('góra', 1), ('poland', 1), ('september', 1), ('discus', 1), ('recent', 1), ('research', 1), ('innovation', 1)]
[('th', 2), ('book', 1), ('present', 1), ('outcome', 1), ('international', 1), ('conference', 1), ('distributed', 1), ('computing', 1), ('artificial', 1), ('intelligence', 1), ('held', 1), ('toledo', 1), ('spain', 1), ('nd', 1), ('june', 1), ('hosted', 1), ('uclm', 1), ('brought', 1), ('together', 1), ('researcher', 1)]
[('book', 1), ('gather', 1), ('paper', 1), ('presented', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('intelligent', 1), ('system', 1), ('sustainable', 1), ('development', 1), ('ai', 1), ('sd', 1), ('held', 1), ('tangier', 1), ('morocco', 1), ('july', 1), ('addition', 1), ('latest', 1), ('research', 1), ('field', 1)]
[('worldcist', 2), ('book', 1), ('includes', 1), ('selection', 1), ('article', 1), ('world', 1), ('conference', 1), ('information', 1), ('system', 1), ('technology', 1), ('held', 1), ('april', 1), ('la', 1), ('toja', 1), ('spain', 1), ('global', 1), ('forum', 1), ('researcher', 1), ('practitioner', 1), ('present', 1)]
[('computer', 3), ('book', 1), ('present', 1), ('latest', 1), ('research', 1), ('recognition', 1), ('system', 1), ('last', 1), ('year', 1), ('scientist', 1), ('engineer', 1), ('user', 1), ('confronted', 1), ('rapid', 1), ('change', 1), ('interface', 1), ('ability', 1), ('machine', 1)]
[('contribution', 2), ('book', 1), ('collect', 1), ('presented', 1), ('agop', 1), ('th', 1), ('international', 1), ('summer', 1), ('school', 1), ('aggregation', 1), ('operator', 1), ('took', 1), ('place', 1), ('olomouc', 1), ('czech', 1), ('republic', 1), ('july', 1), ('includes', 1), ('topic', 1), ('ranging', 1), ('theory', 1)]
[('robotics', 2), ('proceeding', 1), ('book', 1), ('gather', 1), ('latest', 1), ('achievement', 1), ('trend', 1), ('research', 1), ('development', 1), ('educational', 1), ('th', 1), ('international', 1), ('conference', 1), ('education', 1), ('rie', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('april', 1), ('offer', 1)]
[('maker', 2), ('book', 1), ('gather', 1), ('paper', 1), ('presented', 1), ('international', 1), ('conference', 1), ('educational', 1), ('robotics', 1), ('era', 1), ('edurobotics', 1), ('held', 1), ('rome', 1), ('italy', 1), ('october', 1), ('respective', 1), ('chapter', 1), ('explore', 1), ('connection', 1), ('movement', 1)]
[('artificial', 2), ('intelligence', 2), ('line', 2), ('book', 1), ('gather', 1), ('refereed', 1), ('proceeding', 1), ('bioinspired', 1), ('computational', 1), ('method', 1), ('section', 1), ('th', 1), ('computer', 1), ('science', 1), ('conference', 1), ('csoc', 1), ('held', 1), ('april', 1)]
[('software', 2), ('engineering', 2), ('line', 2), ('book', 1), ('gather', 1), ('refereed', 1), ('proceeding', 1), ('intelligent', 1), ('algorithm', 1), ('section', 1), ('th', 1), ('computer', 1), ('science', 1), ('conference', 1), ('csoc', 1), ('held', 1), ('april', 1), ('research', 1), ('application', 1)]
[('jsai', 2), ('book', 1), ('contains', 1), ('extended', 1), ('version', 1), ('research', 1), ('paper', 1), ('presented', 1), ('international', 1), ('session', 1), ('th', 1), ('annual', 1), ('conference', 1), ('japanese', 1), ('society', 1), ('artificial', 1), ('intelligence', 1), ('held', 1), ('online', 1), ('june', 1)]
[('book', 2), ('relationship', 2), ('present', 1), ('collection', 1), ('original', 1), ('research', 1), ('paper', 1), ('focused', 1), ('information', 1), ('technology', 1), ('accounting', 1), ('control', 1), ('model', 1), ('discus', 1), ('importance', 1), ('establishing', 1), ('synergetic', 1), ('new', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('neurois', 1), ('retreat', 1), ('june', 1), ('vienna', 1), ('austria', 1), ('reporting', 1), ('topic', 1), ('intersection', 1), ('information', 1), ('system', 1), ('research', 1), ('neurophysiology', 1), ('brain', 1), ('science', 1), ('reader', 1), ('discover', 1), ('latest', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('neurois', 1), ('retreat', 1), ('june', 1), ('virtual', 1), ('conference', 1), ('reporting', 1), ('topic', 1), ('intersection', 1), ('information', 1), ('system', 1), ('research', 1), ('neurophysiology', 1), ('brain', 1), ('science', 1), ('reader', 1), ('discover', 1), ('latest', 1)]
[('fuzzy', 3), ('main', 1), ('focus', 1), ('book', 1), ('presenting', 1), ('advance', 1), ('statistic', 1), ('proposing', 1), ('methodology', 1), ('testing', 1), ('hypothesis', 1), ('environment', 1), ('based', 1), ('estimation', 1), ('confidence', 1), ('interval', 1), ('context', 1), ('data', 1)]
[('book', 1), ('present', 1), ('comprehensive', 1), ('date', 1), ('treatise', 1), ('range', 1), ('methodological', 1), ('algorithmic', 1), ('issue', 1), ('discus', 1), ('implementation', 1), ('case', 1), ('study', 1), ('identifies', 1), ('best', 1), ('design', 1), ('practice', 1), ('ass', 1), ('data', 1), ('analytics', 1), ('business', 1), ('model', 1)]
[('data', 2), ('privacy', 2), ('book', 1), ('offer', 1), ('broad', 1), ('cohesive', 1), ('overview', 1), ('field', 1), ('discus', 1), ('technological', 1), ('perspective', 1), ('problem', 1), ('solution', 1), ('three', 1), ('main', 1), ('community', 1), ('working', 1), ('statistical', 1), ('disclosure', 1), ('control', 1)]
[('data', 4), ('social', 2), ('edited', 1), ('volume', 1), ('focus', 1), ('big', 1), ('implication', 1), ('computational', 1), ('science', 1), ('humanity', 1), ('management', 1), ('usage', 1), ('first', 1), ('part', 1), ('book', 1), ('cover', 1), ('geographic', 1), ('text', 1), ('corpus', 1), ('medium', 1), ('exemplifies', 1)]
[('cloud', 2), ('computing', 2), ('data', 2), ('book', 1), ('introduces', 1), ('latest', 1), ('research', 1), ('finding', 1), ('edge', 1), ('fog', 1), ('mist', 1), ('application', 1), ('various', 1), ('field', 1), ('using', 1), ('geospatial', 1), ('solves', 1), ('number', 1), ('problem', 1), ('big', 1), ('scheduling', 1), ('security', 1)]
[('theory', 2), ('book', 1), ('cover', 1), ('performance', 1), ('analysis', 1), ('computer', 1), ('network', 1), ('begin', 1), ('providing', 1), ('necessary', 1), ('background', 1), ('probability', 1), ('random', 1), ('variable', 1), ('stochastic', 1), ('process', 1), ('queuing', 1), ('simulation', 1), ('introduced', 1), ('major', 1), ('tool', 1)]
[('analysis', 2), ('book', 1), ('contains', 1), ('key', 1), ('finding', 1), ('related', 1), ('cybersecurity', 1), ('research', 1), ('europe', 1), ('japan', 1), ('collected', 1), ('eunity', 1), ('project', 1), ('wide', 1), ('scope', 1), ('synergy', 1), ('difference', 1), ('region', 1), ('current', 1), ('trend', 1)]
[('application', 2), ('book', 1), ('offer', 1), ('timely', 1), ('review', 1), ('cutting', 1), ('edge', 1), ('computational', 1), ('intelligence', 1), ('business', 1), ('management', 1), ('financial', 1), ('analysis', 1), ('cover', 1), ('wide', 1), ('range', 1), ('intelligent', 1), ('optimization', 1), ('technique', 1), ('reporting', 1), ('detail', 1)]
[('book', 1), ('present', 1), ('interesting', 1), ('important', 1), ('unsolved', 1), ('problem', 1), ('mathematical', 1), ('computational', 1), ('science', 1), ('contributing', 1), ('author', 1), ('leading', 1), ('researcher', 1), ('field', 1), ('explain', 1), ('outstanding', 1), ('challenge', 1), ('domain', 1), ('first', 1)]
[('nbsp', 5), ('point', 2), ('book', 1), ('aim', 1), ('chapter', 1), ('discussing', 1), ('problem', 1), ('challenge', 1), ('future', 1), ('research', 1), ('recent', 1), ('technology', 1), ('view', 1), ('artificial', 1), ('intelligence', 1), ('internet', 1), ('thing', 1), ('iot', 1)]
[('research', 3), ('problem', 2), ('book', 1), ('offer', 1), ('practical', 1), ('approach', 1), ('conducting', 1), ('foreign', 1), ('language', 1), ('topic', 1), ('global', 1), ('nexus', 1), ('introduces', 1), ('researcher', 1), ('face', 1), ('getting', 1), ('started', 1), ('setting', 1), ('environment', 1)]
[('conference', 2), ('extreme', 2), ('learning', 2), ('book', 1), ('contains', 1), ('selected', 1), ('paper', 1), ('international', 1), ('machine', 1), ('held', 1), ('singapore', 1), ('december', 1), ('brought', 1), ('together', 1), ('researcher', 1), ('practitioner', 1)]
[('cloud', 3), ('book', 2), ('describes', 1), ('design', 1), ('implementation', 1), ('armor', 1), ('novel', 1), ('approach', 1), ('credibility', 1), ('based', 1), ('trust', 1), ('management', 1), ('automatic', 1), ('discovery', 1), ('service', 1), ('distributed', 1), ('highly', 1), ('dynamic', 1), ('environment', 1), ('help', 1), ('user', 1)]
[('system', 2), ('healthcare', 1), ('service', 1), ('profound', 1), ('importance', 1), ('promoting', 1), ('public', 1), ('health', 1), ('wellness', 1), ('book', 1), ('introduces', 1), ('data', 1), ('driven', 1), ('complex', 1), ('modeling', 1), ('approach', 1), ('csm', 1), ('systematically', 1), ('understand', 1), ('improve', 1), ('essence', 1)]
[('big', 3), ('data', 3), ('thisbook', 1), ('cover', 1), ('three', 1), ('major', 1), ('part', 1), ('nbsp', 1), ('concept', 1), ('theory', 1), ('andapplications', 1), ('written', 1), ('world', 1), ('renowned', 1), ('leader', 1), ('book', 1), ('exploresthe', 1), ('problem', 1), ('possible', 1), ('solution', 1), ('direction', 1), ('research', 1)]
[('graph', 2), ('book', 1), ('considered', 1), ('first', 1), ('extended', 1), ('survey', 1), ('algorithm', 1), ('technique', 1), ('efficient', 1), ('cohesive', 1), ('subgraph', 1), ('computation', 1), ('rapid', 1), ('development', 1), ('information', 1), ('technology', 1), ('huge', 1), ('volume', 1), ('data', 1), ('accumulated', 1), ('availability', 1), ('rich', 1)]
[('deep', 1), ('machine', 1), ('learning', 1), ('state', 1), ('art', 1), ('providing', 1), ('model', 1), ('method', 1), ('tool', 1), ('technique', 1), ('developing', 1), ('autonomous', 1), ('intelligent', 1), ('system', 1), ('revolutionise', 1), ('industrial', 1), ('commercial', 1), ('application', 1), ('various', 1), ('field', 1), ('online', 1)]
[('seventh', 1), ('future', 1), ('technology', 1), ('conference', 1), ('organized', 1), ('hybrid', 1), ('mode', 1), ('received', 1), ('total', 1), ('submission', 1), ('learned', 1), ('scholar', 1), ('academician', 1), ('engineer', 1), ('scientist', 1), ('student', 1), ('across', 1), ('many', 1), ('country', 1), ('paper', 1), ('included', 1), ('wide', 1)]
[('seventh', 1), ('future', 1), ('technology', 1), ('conference', 1), ('organized', 1), ('hybrid', 1), ('mode', 1), ('received', 1), ('total', 1), ('submission', 1), ('learned', 1), ('scholar', 1), ('academician', 1), ('engineer', 1), ('scientist', 1), ('student', 1), ('across', 1), ('many', 1), ('country', 1), ('paper', 1), ('included', 1), ('wide', 1)]
[('conference', 3), ('international', 2), ('book', 1), ('present', 1), ('collection', 1), ('high', 1), ('quality', 1), ('research', 1), ('paper', 1), ('accepted', 1), ('multi', 1), ('consisting', 1), ('image', 1), ('processing', 1), ('communication', 1), ('ip', 1), ('computer', 1), ('recognition', 1), ('system', 1), ('core', 1)]
[('domain', 2), ('specific', 2), ('modeling', 2), ('book', 1), ('draw', 1), ('new', 1), ('attention', 1), ('conceptual', 1), ('presenting', 1), ('work', 1), ('thought', 1), ('leader', 1), ('designed', 1), ('deployed', 1), ('method', 1), ('provides', 1), ('hand', 1), ('guidance', 1), ('build', 1), ('model', 1), ('particular', 1)]
[('publication', 1), ('contains', 1), ('numerous', 1), ('valuable', 1), ('guideline', 1), ('find', 1), ('particularly', 1), ('useful', 1), ('making', 1), ('decision', 1), ('concerning', 1), ('development', 1), ('improvement', 1), ('transport', 1), ('system', 1), ('provides', 1), ('multitude', 1), ('case', 1), ('study', 1), ('connected', 1), ('diverse', 1), ('problem', 1)]
[('image', 3), ('book', 2), ('proposes', 1), ('soft', 1), ('computing', 1), ('technique', 1), ('segmenting', 1), ('real', 1), ('life', 1), ('application', 1), ('processing', 1), ('mining', 1), ('video', 1), ('surveillance', 1), ('intelligent', 1), ('transportation', 1), ('system', 1), ('suggests', 1), ('hybrid', 1), ('deriving', 1), ('three', 1), ('main', 1)]
[('series', 2), ('book', 1), ('considers', 1), ('relatively', 1), ('new', 1), ('metric', 1), ('complex', 1), ('system', 1), ('transfer', 1), ('entropy', 1), ('derived', 1), ('measurement', 1), ('usually', 1), ('time', 1), ('qualitative', 1), ('introduction', 1), ('chapter', 1), ('explains', 1), ('key', 1), ('idea', 1), ('statistic', 1), ('required', 1)]
[('book', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('field', 1), ('outlier', 1), ('analysis', 1), ('computer', 1), ('science', 1), ('point', 1), ('view', 1), ('integrates', 1), ('method', 1), ('data', 1), ('mining', 1), ('machine', 1), ('learning', 1), ('statistic', 1), ('within', 1), ('computational', 1), ('framework', 1), ('appeal', 1)]
[('big', 2), ('data', 2), ('technology', 2), ('analytics', 2), ('used', 1), ('achieve', 1), ('type', 1), ('fast', 1), ('predictable', 1), ('way', 1), ('thus', 1), ('enabling', 1), ('better', 1), ('human', 1), ('machine', 1), ('level', 1), ('decision', 1), ('making', 1), ('principle', 1), ('distributed', 1), ('computing', 1), ('key', 1)]
[('parallel', 2), ('grid', 2), ('cloud', 2), ('internet', 2), ('computing', 2), ('book', 1), ('present', 1), ('latest', 1), ('innovative', 1), ('research', 1), ('finding', 1), ('gather', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('held', 1)]
[('book', 1), ('provides', 1), ('approachable', 1), ('overview', 1), ('recent', 1), ('advance', 1), ('fascinating', 1), ('field', 1), ('medium', 1), ('synchronization', 1), ('mediasync', 1), ('gathering', 1), ('contribution', 1), ('representative', 1), ('influential', 1), ('expert', 1), ('understanding', 1), ('challenge', 1)]
[('volume', 1), ('advanced', 1), ('textbook', 1), ('present', 1), ('result', 1), ('proof', 1), ('method', 1), ('translation', 1), ('motivational', 1), ('philosophical', 1), ('consideration', 1), ('formal', 1), ('construction', 1), ('nbsp', 1), ('associated', 1), ('vol', 1), ('author', 1), ('explains', 1), ('preferential', 1), ('structure', 1)]
[('reality', 3), ('ar', 3), ('book', 1), ('provides', 1), ('depth', 1), ('exploration', 1), ('field', 1), ('augmented', 1), ('entirety', 1), ('set', 1), ('distinguish', 1), ('inter', 1), ('related', 1), ('technology', 1), ('virtual', 1), ('vr', 1), ('mixed', 1), ('mr', 1), ('author', 1), ('present', 1)]
[('exploring', 1), ('cloud', 1), ('computing', 1), ('cc', 1), ('commercial', 1), ('landscape', 1), ('matures', 1), ('book', 1), ('asserts', 1), ('key', 1), ('ingredient', 1), ('sustaining', 1), ('software', 1), ('service', 1), ('saas', 1), ('business', 1), ('model', 1), ('renewal', 1), ('chronicling', 1), ('evolution', 1), ('future', 1), ('trajectory', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('computing', 1), ('network', 1), ('big', 1), ('data', 1), ('iot', 1), ('iccbi', 1), ('held', 1), ('december', 1), ('vaigai', 1), ('college', 1), ('engineering', 1), ('madurai', 1), ('india', 1), ('recent', 1), ('year', 1), ('witnessed', 1)]
[('computing', 1), ('technology', 1), ('dependent', 1), ('risen', 1), ('position', 1), ('ascendency', 1), ('rapidly', 1), ('opportunity', 1), ('take', 1), ('step', 1), ('back', 1), ('wonder', 1), ('headed', 1), ('book', 1), ('urge', 1), ('taking', 1)]
[('human', 2), ('machine', 2), ('first', 1), ('volume', 1), ('brings', 1), ('together', 1), ('research', 1), ('practice', 1), ('academic', 1), ('industry', 1), ('setting', 1), ('combination', 1), ('translation', 1), ('evaluation', 1), ('comprehensive', 1), ('collection', 1), ('paper', 1), ('leading', 1), ('expert', 1)]
[('high', 2), ('performance', 2), ('computing', 2), ('book', 1), ('present', 1), ('state', 1), ('art', 1), ('modern', 1), ('supercomputer', 1), ('architecture', 1), ('address', 1), ('trend', 1), ('hardware', 1), ('software', 1), ('development', 1), ('general', 1), ('future', 1), ('system', 1)]
[('student', 2), ('purpose', 1), ('book', 1), ('provide', 1), ('overview', 1), ('ai', 1), ('research', 1), ('ranging', 1), ('basic', 1), ('work', 1), ('interface', 1), ('application', 1), ('emphasis', 1), ('result', 1), ('current', 1), ('issue', 1), ('aimed', 1), ('audience', 1), ('master', 1), ('ph', 1)]
[('book', 2), ('icn', 2), ('new', 2), ('aimed', 1), ('bringing', 1), ('insight', 1), ('network', 1), ('particularly', 1), ('various', 1), ('architecture', 1), ('issue', 1), ('challenge', 1), ('networking', 1), ('paradigm', 1), ('start', 1), ('introduction', 1), ('promising', 1), ('concept', 1), ('origin', 1), ('along', 1)]
[('th', 1), ('industrial', 1), ('revolution', 1), ('ongoing', 1), ('human', 1), ('societal', 1), ('organization', 1), ('restructured', 1), ('called', 1), ('society', 1), ('field', 1), ('artificial', 1), ('intelligence', 1), ('related', 1), ('technology', 1), ('growing', 1), ('continuously', 1), ('rapidly', 1), ('developing', 1)]
[('agent', 3), ('core', 2), ('operational', 2), ('structure', 2), ('society', 2), ('book', 1), ('introduces', 1), ('exchange', 1), ('process', 1), ('driven', 1), ('social', 1), ('network', 1), ('foundation', 1), ('particular', 1), ('type', 1), ('multi', 1), ('system', 1), ('call', 1), ('encompass', 1)]
[('management', 3), ('many', 2), ('book', 1), ('cover', 1), ('hot', 1), ('topic', 1), ('including', 1), ('theoretical', 1), ('practical', 1), ('research', 1), ('area', 1), ('dynamic', 1), ('analysis', 1), ('machine', 1), ('learning', 1), ('supply', 1), ('chain', 1), ('operation', 1), ('environmental', 1), ('uncertainty', 1), ('health', 1), ('hygiene', 1)]
[('smart', 3), ('city', 3), ('handbook', 1), ('provides', 1), ('glimpse', 1), ('research', 1), ('underway', 1), ('examination', 1), ('relevant', 1), ('issue', 1), ('describes', 1), ('software', 1), ('infrastructure', 1), ('role', 1), ('internet', 1), ('thing', 1), ('future', 1)]
[('iot', 2), ('cloud', 2), ('book', 1), ('reflects', 1), ('recent', 1), ('development', 1), ('providing', 1), ('comprehensive', 1), ('introduction', 1), ('internet', 1), ('thing', 1), ('technology', 1), ('transforming', 1), ('aging', 1), ('origin', 1), ('device', 1), ('connectivity', 1), ('whereas', 1), ('grew', 1)]
[('game', 2), ('ancient', 1), ('chess', 1), ('go', 1), ('brilliant', 1), ('player', 1), ('improve', 1), ('studying', 1), ('strategy', 1), ('produced', 1), ('machine', 1), ('robotic', 1), ('system', 1), ('practice', 1), ('movement', 1), ('arcade', 1), ('agent', 1), ('capable', 1), ('learning', 1), ('reach', 1), ('superhuman', 1), ('level', 1), ('within', 1)]
[('cognitive', 2), ('plausibility', 2), ('book', 1), ('explores', 1), ('computational', 1), ('language', 1), ('model', 1), ('important', 1), ('factor', 1), ('development', 1), ('evaluation', 1), ('author', 1), ('present', 1), ('idea', 1), ('learned', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('book', 2), ('offer', 1), ('careful', 1), ('selection', 1), ('study', 1), ('optimization', 1), ('technique', 1), ('based', 1), ('artificial', 1), ('intelligence', 1), ('applied', 1), ('inverse', 1), ('problem', 1), ('radiative', 1), ('transfer', 1), ('amp', 1), ('nbsp', 1), ('reader', 1), ('find', 1), ('depth', 1)]
[('book', 1), ('provides', 1), ('accessible', 1), ('yet', 1), ('rigorous', 1), ('first', 1), ('reference', 1), ('reader', 1), ('interested', 1), ('learning', 1), ('model', 1), ('analyze', 1), ('cellular', 1), ('network', 1), ('performance', 1), ('using', 1), ('stochastic', 1), ('geometry', 1), ('addition', 1), ('canonical', 1), ('downlink', 1), ('uplink', 1), ('setting', 1), ('analysis', 1)]
[('threat', 2), ('risk', 2), ('book', 1), ('provides', 1), ('advanced', 1), ('understanding', 1), ('cyber', 1), ('company', 1), ('facing', 1), ('includes', 1), ('detailed', 1), ('analysis', 1), ('many', 1), ('technology', 1), ('approach', 1), ('important', 1), ('decreasing', 1), ('mitigating', 1), ('remediating', 1)]
[('book', 2), ('offer', 1), ('careful', 1), ('selection', 1), ('study', 1), ('optimization', 1), ('technique', 1), ('based', 1), ('artificial', 1), ('intelligence', 1), ('applied', 1), ('inverse', 1), ('problem', 1), ('radiative', 1), ('transfer', 1), ('nbsp', 1), ('reader', 1), ('find', 1), ('depth', 1), ('exploration', 1), ('heuristic', 1)]
[('text', 4), ('mining', 4), ('matlab', 2), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('using', 1), ('designed', 1), ('help', 1), ('practitioner', 1), ('little', 1), ('experience', 1), ('general', 1), ('familiarize', 1)]
[('unique', 1), ('textbook', 1), ('comprehensively', 1), ('introduces', 1), ('field', 1), ('discrete', 1), ('event', 1), ('system', 1), ('offering', 1), ('breadth', 1), ('coverage', 1), ('make', 1), ('material', 1), ('accessible', 1), ('reader', 1), ('varied', 1), ('background', 1), ('book', 1), ('emphasizes', 1), ('unified', 1), ('modeling', 1), ('framework', 1)]
[('book', 2), ('random', 2), ('offer', 1), ('overview', 1), ('main', 1), ('modern', 1), ('important', 1), ('topic', 1), ('variable', 1), ('process', 1), ('decision', 1), ('theory', 1), ('solving', 1), ('real', 1), ('world', 1), ('problem', 1), ('introduction', 1), ('concept', 1), ('statistic', 1), ('signal', 1), ('introduces', 1), ('many', 1)]
[('analysis', 2), ('introductory', 1), ('textbook', 1), ('designed', 1), ('semester', 1), ('course', 1), ('use', 1), ('matrix', 1), ('analytical', 1), ('method', 1), ('performance', 1), ('telecommunication', 1), ('system', 1), ('provides', 1), ('introduction', 1), ('modelling', 1)]
[('data', 2), ('visual', 2), ('linguistic', 2), ('modeling', 1), ('modality', 1), ('together', 1), ('creates', 1), ('opportunity', 1), ('better', 1), ('understanding', 1), ('support', 1), ('many', 1), ('useful', 1), ('application', 1), ('example', 1), ('dual', 1), ('includes', 1), ('image', 1), ('keywords', 1), ('video', 1)]
[('web', 2), ('content', 2), ('massive', 1), ('amount', 1), ('user', 1), ('generated', 1), ('available', 1), ('various', 1), ('channel', 1), ('text', 1), ('tweet', 1), ('table', 1), ('database', 1), ('multimedia', 1), ('sharing', 1), ('platform', 1), ('etc', 1), ('conflicting', 1), ('information', 1), ('rumor', 1), ('erroneous', 1), ('fake', 1)]
[('answer', 1), ('machine', 1), ('practical', 1), ('non', 1), ('technical', 1), ('guide', 1), ('technology', 1), ('behind', 1), ('information', 1), ('seeking', 1), ('analysis', 1), ('introduces', 1), ('search', 1), ('content', 1), ('analytics', 1), ('software', 1), ('buyer', 1), ('knowledge', 1), ('manager', 1), ('searcher', 1), ('want', 1), ('understand', 1), ('design', 1)]
[('dl', 2), ('digital', 1), ('library', 1), ('evolved', 1), ('launch', 1), ('important', 1), ('type', 1), ('information', 1), ('system', 1), ('widespread', 1), ('application', 1), ('volume', 1), ('advance', 1), ('trend', 1), ('describing', 1), ('new', 1), ('research', 1), ('development', 1), ('field', 1)]
[('social', 3), ('new', 2), ('user', 2), ('rise', 1), ('medium', 1), ('technology', 1), ('created', 1), ('way', 1), ('seek', 1), ('share', 1), ('information', 1), ('million', 1), ('worldwide', 1), ('presented', 1), ('challenge', 1), ('library', 1), ('meeting', 1), ('within', 1), ('space', 1)]
[('among', 2), ('collaboration', 1), ('scholar', 1), ('always', 1), ('recognized', 1), ('fundamental', 1), ('feature', 1), ('scientific', 1), ('discovery', 1), ('increasing', 1), ('diversity', 1), ('discipline', 1), ('complexity', 1), ('research', 1), ('problem', 1), ('make', 1), ('even', 1), ('compelling', 1), ('collaborate', 1), ('order', 1)]
[('stride', 1), ('made', 1), ('field', 1), ('search', 1), ('recommendation', 1), ('still', 1), ('challenge', 1), ('opportunity', 1), ('address', 1), ('information', 1), ('access', 1), ('issue', 1), ('involve', 1), ('solving', 1), ('task', 1), ('accomplishing', 1), ('goal', 1), ('wide', 1), ('variety', 1), ('user', 1)]
[('information', 1), ('retrieval', 1), ('performance', 1), ('measure', 1), ('usually', 1), ('retrospective', 1), ('nature', 1), ('representing', 1), ('effectiveness', 1), ('experimental', 1), ('process', 1), ('science', 1), ('phenomenon', 1), ('predicted', 1), ('given', 1), ('parameter', 1), ('value', 1), ('system', 1), ('developing', 1)]
[('event', 2), ('information', 2), ('communication', 2), ('genealogy', 1), ('document', 1), ('relationship', 1), ('person', 1), ('involved', 1), ('historical', 1), ('parsed', 1), ('past', 1), ('book', 1), ('explores', 1), ('way', 1), ('organize', 1), ('multiple', 1)]
[('language', 2), ('world', 1), ('wide', 1), ('web', 1), ('constitutes', 1), ('largest', 1), ('existing', 1), ('source', 1), ('text', 1), ('written', 1), ('variety', 1), ('feasible', 1), ('sound', 1), ('way', 1), ('exploiting', 1), ('data', 1), ('linguistic', 1), ('research', 1), ('compile', 1), ('static', 1), ('corpus', 1), ('given', 1)]
[('optimization', 2), ('book', 1), ('provides', 1), ('quick', 1), ('reference', 1), ('insight', 1), ('modeling', 1), ('software', 1), ('defined', 1), ('network', 1), ('sdns', 1), ('cover', 1), ('various', 1), ('algorithm', 1), ('approach', 1), ('developed', 1), ('related', 1), ('control', 1), ('plane', 1)]
[('requirement', 2), ('meyer', 1), ('handbook', 1), ('business', 1), ('analysis', 1), ('comprehensive', 1), ('treatise', 1), ('providing', 1), ('reader', 1), ('principle', 1), ('technique', 1), ('necessary', 1), ('produce', 1), ('effective', 1), ('even', 1), ('best', 1), ('design', 1), ('implementation', 1), ('verification', 1)]
[('cloud', 2), ('computing', 2), ('book', 1), ('offer', 1), ('introduction', 1), ('serverless', 1), ('student', 1), ('researcher', 1), ('organization', 1), ('several', 1), ('practical', 1), ('example', 1), ('rather', 1), ('focusing', 1), ('exclusively', 1), ('computational', 1), ('issue', 1), ('related', 1)]
[('nbsp', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('method', 1), ('build', 1), ('comparable', 1), ('corpus', 1), ('application', 1), ('including', 1), ('machine', 1), ('translation', 1), ('cross', 1), ('lingual', 1), ('transfer', 1), ('various', 1), ('kind', 1), ('multilingual', 1), ('natural', 1), ('language', 1), ('processing', 1)]
[('world', 2), ('artificial', 2), ('intelligence', 2), ('knowing', 1), ('perspective', 1), ('considers', 1), ('methodology', 1), ('science', 1), ('computation', 1), ('explore', 1), ('human', 1), ('come', 1), ('understand', 1), ('operate', 1), ('humankind', 1), ('history', 1)]
[('news', 3), ('social', 2), ('medium', 2), ('past', 1), ('decade', 1), ('become', 1), ('increasingly', 1), ('popular', 1), ('consumption', 1), ('due', 1), ('easy', 1), ('access', 1), ('fast', 1), ('dissemination', 1), ('low', 1), ('cost', 1), ('enables', 1), ('wide', 1), ('propagation', 1), ('fake', 1), ('intentionally', 1)]
[('timed', 3), ('system', 3), ('framework', 2), ('monograph', 1), ('present', 1), ('input', 1), ('output', 1), ('automaton', 1), ('tioa', 1), ('modeling', 1), ('basic', 1), ('mathematical', 1), ('support', 1), ('description', 1), ('analysis', 1), ('computing', 1), ('desirable', 1), ('correctness', 1)]
[('book', 1), ('organizes', 1), ('key', 1), ('concept', 1), ('theory', 1), ('standard', 1), ('methodology', 1), ('trend', 1), ('challenge', 1), ('application', 1), ('data', 1), ('mining', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('first', 1), ('survey', 1), ('provides', 1), ('comprehensive', 1), ('yet', 1), ('concise', 1), ('algorithmic', 1), ('description', 1)]
[('canadian', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('toronto', 1), ('canada', 1), ('nbsp', 1), ('regular', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('advance', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('melbourne', 1), ('vic', 1), ('australia', 1), ('june', 1)]
[('lnai', 2), ('volume', 1), ('nbsp', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('collective', 1), ('intelligence', 1), ('icci', 1), ('held', 1), ('bristol', 1), ('uk', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('speech', 1), ('computer', 1), ('specom', 1), ('held', 1), ('leipzig', 1), ('germany', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('scalable', 1), ('uncertainty', 1), ('management', 1), ('sum', 1), ('held', 1), ('milan', 1), ('italy', 1), ('october', 1), ('full', 1), ('short', 1), ('paper', 1), ('tutorial', 1), ('presented', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('case', 1), ('based', 1), ('reasoning', 1), ('research', 1), ('development', 1), ('iccbr', 1), ('held', 1), ('stockholm', 1), ('sweden', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('multi', 1), ('agent', 1), ('system', 1), ('eumas', 1), ('held', 1), ('bergen', 1), ('norway', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('workshop', 1), ('nemesis', 1), ('urbreas', 1), ('sogood', 1), ('iwaise', 1), ('green', 1), ('data', 1), ('mining', 1), ('held', 1), ('th', 1), ('european', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('dublin', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('macau', 1), ('china', 1), ('april', 1), ('full', 1), ('paper', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('iapr', 1), ('tc', 1), ('pattern', 1), ('recognition', 1), ('social', 1), ('signal', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('mprss', 1), ('held', 1), ('beijing', 1), ('china', 1), ('august', 1), ('nbsp', 1), ('revised', 1), ('paper', 1)]
[('agent', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('practical', 1), ('application', 1), ('multi', 1), ('system', 1), ('paams', 1), ('held', 1), ('ávila', 1), ('spain', 1), ('june', 1), ('regular', 1), ('demo', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('lnai', 2), ('paper', 2), ('volume', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('conference', 1), ('towards', 1), ('autonomous', 1), ('robotics', 1), ('taro', 1), ('held', 1), ('london', 1), ('uk', 1), ('july', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('science', 1), ('engineering', 1), ('management', 1), ('ksem', 1), ('held', 1), ('athens', 1), ('greece', 1), ('august', 1), ('revised', 1), ('full', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('held', 1), ('conjunction', 1), ('rd', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('macau', 1), ('china', 1), ('april', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('brain', 1), ('informatics', 1), ('bi', 1), ('held', 1), ('haikou', 1), ('china', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('paper', 2), ('book', 1), ('contains', 1), ('revised', 1), ('extended', 1), ('version', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('agent', 1), ('artificial', 1), ('intelligence', 1), ('icaart', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('february', 1), ('overall', 1), ('full', 1), ('short', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('method', 1), ('system', 1), ('biology', 1), ('cmsb', 1), ('held', 1), ('konstanz', 1), ('germany', 1), ('september', 1), ('full', 1), ('tool', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('australasian', 1), ('joint', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('wellington', 1), ('new', 1), ('zealand', 1), ('december', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('proceeding', 2), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('advance', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('paper', 1), ('included', 1)]
[('proceeding', 2), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('advance', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('paper', 1), ('included', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('hybrid', 1), ('artificial', 1), ('intelligent', 1), ('system', 1), ('hais', 1), ('held', 1), ('bilbao', 1), ('spain', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('modeling', 1), ('decision', 1), ('artificial', 1), ('intelligence', 1), ('mdai', 1), ('held', 1), ('umeå', 1), ('sweden', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('computational', 1), ('collective', 1), ('intelligence', 1), ('icci', 1), ('september', 1), ('october', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('full', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('algorithmic', 1), ('decision', 1), ('theory', 1), ('adt', 1), ('held', 1), ('toulouse', 1), ('france', 1), ('november', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('type', 4), ('fuzzy', 3), ('system', 3), ('interval', 2), ('book', 1), ('briefly', 1), ('review', 1), ('basic', 1), ('concept', 1), ('describes', 1), ('proposed', 1), ('definition', 1), ('set', 1), ('relation', 1), ('inference', 1), ('use', 1), ('become', 1)]
[('lnai', 3), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('advance', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('chengdu', 1), ('china', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('took', 1), ('place', 1), ('harbin', 1), ('china', 1), ('august', 1), ('paper', 1), ('included', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('logic', 1), ('artificial', 1), ('intelligence', 1), ('jelia', 1), ('held', 1), ('funchal', 1), ('madeira', 1), ('portugal', 1), ('september', 1), ('full', 1), ('short', 1), ('included', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('simulation', 1), ('modeling', 1), ('programming', 1), ('autonomous', 1), ('robot', 1), ('simpar', 1), ('held', 1), ('bergamo', 1), ('italy', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('knowledge', 1), ('management', 1), ('acquisition', 1), ('intelligent', 1), ('system', 1), ('pkaw', 1), ('held', 1), ('gold', 1), ('cost', 1), ('qld', 1), ('australia', 1), ('december', 1), ('full', 1), ('short', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('bioinformatics', 1), ('biomedical', 1), ('engineering', 1), ('iwbbio', 1), ('held', 1), ('granada', 1), ('spain', 1), ('april', 1), ('paper', 1), ('presented', 1)]
[('proceeding', 2), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('advance', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('ho', 1), ('chi', 1), ('minh', 1), ('city', 1), ('vietnam', 1), ('contain', 1)]
[('proceeding', 2), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('advance', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('ho', 1), ('chi', 1), ('minh', 1), ('city', 1), ('vietnam', 1), ('contain', 1)]
[('book', 1), ('includes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('robocup', 1), ('international', 1), ('symposium', 1), ('held', 1), ('joao', 1), ('pessoa', 1), ('brazil', 1), ('july', 1), ('revised', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1), ('include', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('data', 1), ('mining', 1), ('pattern', 1), ('recognition', 1), ('mldm', 1), ('held', 1), ('hamburg', 1), ('germany', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('held', 1), ('portsmouth', 1), ('uk', 1), ('august', 1), ('paper', 1), ('included', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('algorithmic', 1), ('decision', 1), ('theory', 1), ('adt', 1), ('held', 1), ('september', 1), ('lexington', 1), ('usa', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('modeling', 1), ('decision', 1), ('artificial', 1), ('intelligence', 1), ('mdai', 1), ('held', 1), ('sant', 1), ('julià', 1), ('de', 1), ('lòria', 1), ('andorra', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('statistical', 1), ('language', 1), ('speech', 1), ('processing', 1), ('slsp', 1), ('held', 1), ('pilsen', 1), ('czech', 1), ('republic', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('selected', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('iberspeech', 1), ('conference', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('november', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('submission', 1), ('nbsp', 1), ('article', 1)]
[('held', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('conference', 1), ('health', 1), ('exploring', 1), ('complexity', 1), ('medical', 1), ('informatics', 1), ('europe', 1), ('hec', 1), ('munich', 1), ('germany', 1), ('september', 1), ('th', 1)]
[('international', 2), ('knowledge', 2), ('book', 1), ('contains', 1), ('best', 1), ('selected', 1), ('paper', 1), ('satellite', 1), ('event', 1), ('held', 1), ('th', 1), ('nbsp', 1), ('conference', 1), ('engineering', 1), ('management', 1), ('ekaw', 1), ('november', 1), ('bologna', 1), ('italy', 1), ('second', 1), ('workshop', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('concept', 1), ('analysis', 1), ('icfca', 1), ('held', 1), ('rennes', 1), ('france', 1), ('june', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('practical', 1), ('application', 1), ('scalable', 1), ('multi', 1), ('agent', 1), ('system', 1), ('paams', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('june', 1), ('revised', 1), ('full', 1), ('short', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('nbsp', 1), ('european', 1), ('multi', 1), ('agent', 1), ('system', 1), ('eumas', 1), ('fourth', 1), ('international', 1), ('agreement', 1), ('technology', 1), ('held', 1), ('valencia', 1), ('spain', 1), ('december', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('industrial', 1), ('application', 1), ('holonic', 1), ('multi', 1), ('agent', 1), ('system', 1), ('holomas', 1), ('held', 1), ('lyon', 1), ('france', 1), ('august', 1), ('nbsp', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('collective', 1), ('intelligence', 1), ('icci', 1), ('held', 1), ('nicosia', 1), ('cyprus', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('comparative', 1), ('genomics', 1), ('recomb', 1), ('cg', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('present', 1), ('comprehensive', 1), ('date', 1), ('review', 1), ('fuzzy', 1), ('pattern', 1), ('recognition', 1), ('carefully', 1), ('discus', 1), ('range', 1), ('methodological', 1), ('algorithmic', 1), ('issue', 1), ('implementation', 1), ('case', 1), ('study', 1), ('identifies', 1), ('best', 1), ('design', 1), ('practice', 1)]
[('optimization', 3), ('book', 1), ('present', 1), ('recent', 1), ('research', 1), ('bioinspired', 1), ('heuristic', 1), ('learning', 1), ('based', 1), ('black', 1), ('box', 1), ('exhibit', 1), ('property', 1), ('intrinsic', 1), ('parallelization', 1), ('used', 1), ('various', 1), ('problem', 1), ('featuring', 1)]
[('real', 2), ('science', 2), ('book', 1), ('combine', 1), ('computational', 1), ('intelligence', 1), ('mathematics', 1), ('solve', 1), ('theoretical', 1), ('world', 1), ('problem', 1), ('challenge', 1), ('engineering', 1), ('applied', 1), ('economics', 1), ('management', 1), ('social', 1), ('etc', 1), ('even', 1), ('everyday', 1)]
[('method', 2), ('time', 2), ('series', 2), ('aim', 1), ('publication', 1), ('identify', 1), ('apply', 1), ('suitable', 1), ('analysing', 1), ('predicting', 1), ('gold', 1), ('price', 1), ('together', 1), ('acquainting', 1), ('reader', 1), ('history', 1), ('characteristic', 1)]
[('nbsp', 3), ('book', 1), ('brings', 1), ('together', 1), ('insight', 1), ('three', 1), ('different', 1), ('area', 1), ('information', 1), ('seeking', 1), ('retrieval', 1), ('cognitive', 1), ('psychology', 1), ('behavioral', 1), ('economics', 1), ('show', 1), ('new', 1), ('interdisciplinary', 1), ('approach', 1), ('advance', 1), ('knowledge', 1)]
[('book', 1), ('collection', 1), ('representative', 1), ('novel', 1), ('work', 1), ('done', 1), ('data', 1), ('mining', 1), ('knowledge', 1), ('discovery', 1), ('clustering', 1), ('classification', 1), ('originally', 1), ('presented', 1), ('french', 1), ('egc', 1), ('conference', 1), ('held', 1), ('bordeaux', 1), ('france', 1), ('january', 1)]
[('image', 3), ('method', 2), ('modern', 1), ('processing', 1), ('technique', 1), ('based', 1), ('multiresolution', 1), ('geometrical', 1), ('representation', 1), ('efficient', 1), ('sparse', 1), ('approximation', 1), ('digital', 1), ('wide', 1), ('family', 1), ('function', 1), ('called', 1), ('simply', 1), ('let', 1)]
[('book', 1), ('present', 1), ('selected', 1), ('result', 1), ('st', 1), ('international', 1), ('symposium', 1), ('applied', 1), ('computer', 1), ('information', 1), ('technology', 1), ('acit', 1), ('held', 1), ('august', 1), ('september', 1), ('matsue', 1), ('city', 1), ('japan', 1), ('brought', 1), ('together', 1), ('researcher', 1), ('scientist', 1)]
[('analysis', 2), ('computational', 1), ('intelligence', 1), ('technique', 1), ('widely', 1), ('explored', 1), ('various', 1), ('domain', 1), ('including', 1), ('forensics', 1), ('forensic', 1), ('encompasses', 1), ('study', 1), ('pattern', 1), ('answer', 1), ('question', 1), ('interest', 1), ('security', 1), ('medical', 1), ('legal', 1), ('genetic', 1)]
[('information', 2), ('technology', 2), ('book', 1), ('focus', 1), ('organization', 1), ('mechanism', 1), ('expert', 1), ('decision', 1), ('making', 1), ('support', 1), ('using', 1), ('modern', 1), ('communication', 1), ('analysis', 1), ('collective', 1), ('intelligence', 1), ('electronic', 1), ('expertise', 1), ('simply', 1)]
[('video', 2), ('need', 1), ('compression', 1), ('modern', 1), ('age', 1), ('visual', 1), ('communication', 1), ('emphasized', 1), ('monograph', 1), ('provide', 1), ('useful', 1), ('information', 1), ('postgraduate', 1), ('student', 1), ('researcher', 1), ('wish', 1), ('work', 1), ('domain', 1), ('vlsi', 1), ('design', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('informatics', 1), ('semiotics', 1), ('organisation', 1), ('iciso', 1), ('held', 1), ('toulouse', 1), ('france', 1), ('march', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('edited', 1), ('book', 1), ('present', 1), ('scientific', 1), ('result', 1), ('nd', 1), ('international', 1), ('applied', 1), ('computing', 1), ('information', 1), ('technology', 1), ('acit', 1), ('held', 1), ('july', 1), ('okayama', 1), ('japan', 1), ('aim', 1), ('bring', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('workshop', 1), ('computational', 1), ('history', 1), ('data', 1), ('driven', 1), ('humanity', 1), ('held', 1), ('dublin', 1), ('ireland', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('paper', 3), ('book', 1), ('contains', 1), ('range', 1), ('invited', 1), ('submitted', 1), ('presented', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('sig', 1), ('international', 1), ('summer', 1), ('school', 1), ('held', 1), ('karlstad', 1), ('sweden', 1), ('august', 1), ('revised', 1), ('full', 1), ('short', 1)]
[('book', 1), ('gather', 1), ('promising', 1), ('paper', 1), ('presented', 1), ('th', 1), ('iee', 1), ('acis', 1), ('international', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('artificial', 1), ('intelligence', 1), ('networking', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('snpd', 1), ('held', 1), ('june', 1)]
[('learning', 2), ('automaton', 2), ('la', 2), ('computer', 2), ('science', 2), ('book', 1), ('collect', 1), ('recent', 1), ('theoretical', 1), ('advance', 1), ('concrete', 1), ('application', 1), ('various', 1), ('area', 1), ('presenting', 1), ('broad', 1), ('treatment', 1), ('field', 1), ('survey', 1), ('style', 1)]
[('edited', 1), ('book', 1), ('report', 1), ('recent', 1), ('development', 1), ('theory', 1), ('evolutionary', 1), ('computation', 1), ('generally', 1), ('domain', 1), ('randomized', 1), ('search', 1), ('heuristic', 1), ('nbsp', 1), ('start', 1), ('chapter', 1), ('mathematical', 1), ('method', 1), ('often', 1), ('used', 1), ('analysis', 1)]
[('graph', 2), ('colouring', 2), ('textbook', 1), ('treat', 1), ('algorithmic', 1), ('problem', 1), ('strong', 1), ('emphasis', 1), ('practical', 1), ('application', 1), ('author', 1), ('describes', 1), ('analysis', 1), ('best', 1), ('known', 1), ('algorithm', 1), ('focusing', 1), ('whether', 1), ('heuristic', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('information', 1), ('security', 1), ('privacy', 1), ('protection', 1), ('sec', 1), ('maribor', 1), ('slovenia', 1), ('september', 1), ('virtually', 1), ('due', 1)]
[('challenge', 3), ('festschrift', 2), ('ict', 2), ('unimagined', 1), ('future', 1), ('opportunity', 1), ('first', 1), ('ifip', 1), ('aict', 1), ('series', 1), ('examines', 1), ('key', 1), ('facing', 1), ('community', 1), ('today', 1), ('addressing', 1), ('contemporary', 1), ('book', 1), ('provides', 1)]
[('conference', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('revised', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('information', 1), ('technology', 1), ('disaster', 1), ('risk', 1), ('reduction', 1), ('itdrr', 1), ('sofia', 1), ('bulgaria', 1), ('december', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('communication', 1), ('signal', 1), ('processing', 1), ('iccsp', 1), ('held', 1), ('chennai', 1), ('india', 1), ('february', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('ifip', 2), ('transfer', 2), ('diffusion', 2), ('volume', 1), ('aict', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('wg', 1), ('international', 1), ('working', 1), ('conference', 1), ('co', 1), ('creating', 1), ('context', 1), ('prospective', 1), ('nbsp', 1), ('tdit', 1), ('held', 1)]
[('research', 2), ('longitudinal', 1), ('study', 1), ('traditionally', 1), ('seen', 1), ('cumbersome', 1), ('labor', 1), ('intensive', 1), ('use', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hci', 1), ('recent', 1), ('trend', 1), ('market', 1), ('legislation', 1), ('question', 1), ('address', 1)]
[('world', 2), ('information', 1), ('architecture', 1), ('changed', 1), ('dramatically', 1), ('mid', 1), ('earlier', 1), ('conception', 1), ('internet', 1), ('different', 1), ('separate', 1), ('given', 1), ('way', 1), ('complex', 1), ('scenario', 1), ('present', 1), ('day', 1), ('post', 1), ('digital', 1)]
[('design', 3), ('providing', 1), ('critical', 1), ('view', 1), ('user', 1), ('participation', 1), ('disentangling', 1), ('decision', 1), ('making', 1), ('power', 1), ('book', 1), ('us', 1), ('fieldwork', 1), ('material', 1), ('large', 1), ('participatory', 1), ('project', 1), ('experimental', 1), ('field', 1), ('urban', 1), ('planning', 1)]
[('text', 1), ('present', 1), ('overview', 1), ('smart', 1), ('information', 1), ('system', 1), ('private', 1), ('public', 1), ('sector', 1), ('highlighting', 1), ('research', 1), ('question', 1), ('studied', 1), ('applying', 1), ('computational', 1), ('intelligence', 1), ('book', 1), ('demonstrates', 1), ('transform', 1), ('raw', 1), ('data', 1)]
[('robot', 2), ('book', 1), ('help', 1), ('researcher', 1), ('engineer', 1), ('design', 1), ('ethical', 1), ('system', 1), ('addressing', 1), ('philosophical', 1), ('question', 1), ('arise', 1), ('exploring', 1), ('modern', 1), ('application', 1), ('assistive', 1), ('self', 1), ('driving', 1), ('car', 1), ('contributing', 1), ('author', 1)]
[('web', 2), ('intelligence', 2), ('book', 1), ('provides', 1), ('thorough', 1), ('overview', 1), ('wisdom', 1), ('thing', 1), ('holistic', 1), ('framework', 1), ('computing', 1), ('emerging', 1), ('hyper', 1), ('world', 1), ('social', 1), ('cyber', 1), ('physical', 1), ('space', 1), ('fast', 1), ('evolving', 1), ('research', 1), ('development', 1)]
[('design', 2), ('book', 1), ('author', 1), ('present', 1), ('hci', 1), ('principle', 1), ('based', 1), ('approach', 1), ('develop', 1), ('application', 1), ('assist', 1), ('child', 1), ('disability', 1), ('knowledge', 1), ('related', 1), ('developing', 1), ('complex', 1), ('solution', 1), ('audience', 1), ('explained', 1), ('interaction', 1), ('point', 1)]
[('mp', 3), ('mobile', 2), ('security', 2), ('important', 1), ('text', 1), ('reference', 1), ('present', 1), ('latest', 1), ('research', 1), ('development', 1), ('field', 1), ('payment', 1), ('system', 1), ('covering', 1), ('issue', 1), ('device', 1), ('architecture', 1), ('model', 1), ('transaction', 1), ('topic', 1)]
[('approach', 2), ('spl', 2), ('book', 1), ('take', 1), ('unique', 1), ('hci', 1), ('concept', 1), ('software', 1), ('product', 1), ('line', 1), ('discus', 1), ('peculiarity', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('usually', 1), ('addressed', 1), ('traditional', 1), ('based', 1), ('industrial', 1), ('practice', 1)]
[('state', 2), ('technique', 2), ('immersive', 2), ('book', 1), ('cover', 1), ('art', 1), ('health', 1), ('personnel', 1), ('training', 1), ('using', 1), ('natural', 1), ('interface', 1), ('system', 1), ('serious', 1), ('game', 1), ('paradigm', 1), ('opening', 1), ('comprehensive', 1), ('introduction', 1), ('visualisation', 1)]
[('ransomware', 2), ('book', 1), ('explores', 1), ('genesis', 1), ('parallel', 1), ('emergence', 1), ('encryption', 1), ('technology', 1), ('elevated', 1), ('become', 1), ('prodigious', 1), ('cyber', 1), ('threat', 1), ('enterprise', 1), ('confronting', 1), ('investigates', 1), ('driving', 1), ('force', 1)]
[('book', 1), ('provides', 1), ('valuable', 1), ('reference', 1), ('digital', 1), ('forensics', 1), ('practitioner', 1), ('cyber', 1), ('security', 1), ('expert', 1), ('operating', 1), ('various', 1), ('field', 1), ('law', 1), ('enforcement', 1), ('incident', 1), ('response', 1), ('commerce', 1), ('aimed', 1), ('researcher', 1), ('seeking', 1), ('obtain', 1)]
[('book', 2), ('provides', 1), ('information', 1), ('data', 1), ('driven', 1), ('infrastructure', 1), ('design', 1), ('analytical', 1), ('approach', 1), ('technological', 1), ('solution', 1), ('case', 1), ('study', 1), ('smart', 1), ('city', 1), ('aim', 1), ('attract', 1), ('work', 1), ('multidisciplinary', 1), ('research', 1), ('spanning', 1), ('across', 1), ('computer', 1)]
[('data', 2), ('textbook', 1), ('cover', 1), ('central', 1), ('activity', 1), ('warehousing', 1), ('analytics', 1), ('including', 1), ('transformation', 1), ('preparation', 1), ('aggregation', 1), ('integration', 1), ('analysis', 1), ('discus', 1), ('full', 1), ('spectrum', 1), ('journey', 1), ('operational', 1), ('transactional', 1)]
[('book', 2), ('complexity', 2), ('tackle', 1), ('problem', 1), ('within', 1), ('environment', 1), ('cybercomplexity', 1), ('generally', 1), ('recognized', 1), ('principal', 1), ('source', 1), ('cybersecurity', 1), ('risk', 1), ('first', 1), ('defines', 1), ('simplifies', 1), ('analysis', 1), ('assuming', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('russian', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('rcai', 1), ('held', 1), ('ulyanovsk', 1), ('russia', 1), ('october', 1), ('nbsp', 1), ('full', 1), ('presented', 1), ('along', 1), ('short', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('computer', 1), ('human', 1), ('interaction', 1), ('research', 1), ('application', 1), ('chira', 1), ('held', 1), ('funchal', 1), ('madeira', 1), ('portugal', 1), ('october', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('brazilian', 1), ('workshop', 1), ('agile', 1), ('method', 1), ('wbma', 1), ('held', 1), ('belo', 1), ('horizonte', 1), ('brazil', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 3), ('nbsp', 2), ('th', 2), ('international', 2), ('computing', 2), ('volume', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('swarm', 1), ('evolutionary', 1), ('memetic', 1), ('semcco', 1), ('fuzzy', 1), ('neural', 1)]
[('thoroughly', 2), ('revised', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('paper', 1), ('second', 1), ('international', 1), ('congress', 1), ('sport', 1), ('science', 1), ('research', 1), ('technology', 1), ('support', 1), ('icsports', 1), ('held', 1), ('rome', 1), ('italy', 1), ('october', 1), ('extended', 1)]
[('eomas', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('enterprise', 1), ('organizational', 1), ('modeling', 1), ('simulation', 1), ('held', 1), ('caise', 1), ('june', 1), ('stockholm', 1), ('sweden', 1), ('founded', 1), ('purpose', 1)]
[('thisbook', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('internationalconference', 1), ('evaluation', 1), ('novel', 1), ('approach', 1), ('software', 1), ('engineering', 1), ('enase', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('swqd', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('scientific', 1), ('trackof', 1), ('th', 1), ('software', 1), ('quality', 1), ('day', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('january', 1), ('offer', 1), ('range', 1), ('comprehensive', 1), ('valuableinformation', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('sigsand', 1), ('plais', 1), ('eurosymposium', 1), ('titled', 1), ('information', 1), ('system', 1), ('development', 1), ('research', 1), ('application', 1), ('education', 1), ('held', 1), ('gdansk', 1), ('sopot', 1), ('poland', 1), ('september', 1), ('objective', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('conference', 1), ('operation', 1), ('research', 1), ('enterprise', 1), ('system', 1), ('icores', 1), ('held', 1), ('rome', 1), ('italy', 1), ('february', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('extended', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('cloud', 1), ('computing', 1), ('service', 1), ('science', 1), ('closer', 1), ('held', 1), ('rome', 1), ('italy', 1), ('april', 1), ('nbsp', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('communication', 1), ('technology', 1), ('ageing', 1), ('health', 1), ('ict', 1), ('awe', 1), ('held', 1), ('rome', 1), ('italy', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('conference', 3), ('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('smart', 1), ('city', 1), ('green', 1), ('ict', 1), ('system', 1), ('smartgreens', 1), ('second', 1), ('vehicle', 1), ('technology', 1), ('intelligent', 1)]
[('emcis', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('paper', 1), ('th', 1), ('european', 1), ('mediterranean', 1), ('middle', 1), ('eastern', 1), ('conference', 1), ('held', 1), ('coimbra', 1), ('portugal', 1), ('september', 1), ('focusing', 1), ('approach', 1), ('facilitate', 1), ('identification', 1), ('innovative', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('machine', 1), ('learning', 1), ('technology', 1), ('application', 1), ('amlta', 1), ('held', 1), ('cairo', 1), ('egypt', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('computer', 1), ('game', 1), ('workshop', 1), ('cgw', 1), ('held', 1), ('conjunction', 1), ('st', 1), ('european', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ecai', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('system', 1), ('framework', 1), ('computational', 1), ('morphology', 1), ('sfcm', 1), ('held', 1), ('stuttgart', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1), ('short', 1)]
[('innovation', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('data', 1), ('driven', 1), ('ict', 1), ('held', 1), ('skopje', 1), ('macedonia', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('workshop', 2), ('book', 1), ('contains', 1), ('revised', 1), ('paper', 1), ('three', 1), ('accompanying', 1), ('event', 1), ('took', 1), ('place', 1), ('th', 1), ('international', 1), ('conference', 1), ('business', 1), ('information', 1), ('system', 1), ('bi', 1), ('held', 1), ('poznan', 1), ('poland', 1), ('june', 1), ('included', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('latin', 1), ('american', 1), ('conference', 1), ('high', 1), ('performance', 1), ('computing', 1), ('carla', 1), ('held', 1), ('buenos', 1), ('aire', 1), ('argentina', 1), ('colonia', 1), ('del', 1), ('sacramento', 1), ('uruguay', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('paper', 2), ('assri', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('australasian', 1), ('symposium', 1), ('service', 1), ('research', 1), ('innovation', 1), ('held', 1), ('sydney', 1), ('australia', 1), ('full', 1), ('presented', 1), ('took', 1), ('place', 1), ('october', 1)]
[('data', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('management', 1), ('technology', 1), ('application', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('eurosymposium', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nbsp', 1), ('th', 1), ('sigsand', 1), ('plais', 1), ('held', 1), ('gdansk', 1), ('poland', 1), ('september', 1), ('objective', 1), ('system', 1), ('analysis', 1), ('design', 1), ('promote', 1), ('develop', 1), ('high', 1), ('quality', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('transdisciplinary', 1), ('multispectral', 1), ('modeling', 1), ('cooperation', 1), ('preservation', 1), ('cultural', 1), ('heritage', 1), ('tmm_ch', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('network', 1), ('cn', 1), ('held', 1), ('gliwice', 1), ('poland', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('ccis', 3), ('three', 1), ('volume', 1), ('set', 1), ('contains', 1), ('extended', 1), ('abstract', 1), ('poster', 1), ('presented', 1), ('st', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('took', 1), ('place', 1), ('orlando', 1), ('florida', 1), ('july', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('sensornets', 2), ('portugal', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('porto', 1), ('february', 1), ('funchal', 1), ('madeira', 1), ('january', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('extended', 1), ('first', 1), ('international', 1), ('conference', 1), ('innovation', 1), ('digital', 1), ('economy', 1), ('nbsp', 1), ('spbu', 1), ('ide', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('october', 1), ('presented', 1), ('thoroughly', 1), ('reviewed', 1)]
[('nbsp', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('system', 1), ('modelling', 1), ('management', 1), ('icsmm', 1), ('planned', 1), ('held', 1), ('bergen', 1), ('norway', 1), ('june', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('nbsp', 3), ('held', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('argentine', 1), ('congress', 1), ('computer', 1), ('science', 1), ('cacic', 1), ('san', 1), ('justo', 1), ('buenos', 1), ('aire', 1), ('argentina', 1), ('october', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('conference', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('management', 1), ('big', 1), ('data', 1), ('simbig', 1), ('held', 1), ('lima', 1), ('peru', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('nbsp', 3), ('conference', 2), ('held', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('optimization', 1), ('learning', 1), ('ola', 1), ('catania', 1), ('italy', 1), ('june', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('conference', 2), ('volume', 1), ('book', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('advance', 1), ('computing', 1), ('data', 1), ('science', 1), ('icacds', 1), ('held', 1), ('nashik', 1), ('india', 1), ('april', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('nbsp', 3), ('volume', 1), ('constitutes', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('th', 1), ('italian', 1), ('conference', 1), ('geomatics', 1), ('geospatial', 1), ('technology', 1), ('asita', 1), ('held', 1), ('five', 1), ('session', 1), ('takind', 1), ('place', 1), ('july', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('present', 1), ('book', 1), ('includes', 1), ('extended', 1), ('revised', 1), ('version', 1), ('set', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('evaluation', 1), ('novel', 1), ('approach', 1), ('software', 1), ('engineering', 1), ('enase', 1), ('held', 1), ('online', 1), ('event', 1), ('april', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('secure', 1), ('knowledge', 1), ('management', 1), ('artificial', 1), ('intelligence', 1), ('era', 1), ('skm', 1), ('san', 1), ('antonio', 1), ('tx', 1), ('usa', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('st', 1), ('smoky', 1), ('mountain', 1), ('computational', 1), ('science', 1), ('engineering', 1), ('conference', 1), ('smc', 1), ('held', 1), ('oak', 1), ('ridge', 1), ('tn', 1), ('usa', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('system', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('extended', 1), ('paper', 1), ('presented', 1), ('track', 1), ('advance', 1), ('information', 1), ('technology', 1), ('conference', 1), ('computer', 1), ('science', 1), ('intelligence', 1), ('fedcsis', 1), ('held', 1), ('online', 1)]
[('tutorial', 2), ('book', 1), ('constitutes', 1), ('lecture', 1), ('th', 1), ('european', 1), ('business', 1), ('intelligence', 1), ('summer', 1), ('school', 1), ('ebiss', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('july', 1), ('presented', 1), ('extended', 1), ('refined', 1), ('format', 1), ('given', 1), ('renowned', 1), ('expert', 1)]
[('gdn', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('group', 1), ('decision', 1), ('negotiation', 1), ('held', 1), ('warsaw', 1), ('poland', 1), ('june', 1), ('meeting', 1), ('aim', 1), ('bring', 1), ('together', 1), ('researcher', 1), ('practitioner', 1), ('wide', 1), ('spectrum', 1)]
[('book', 1), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('business', 1), ('icsob', 1), ('held', 1), ('braga', 1), ('portugal', 1), ('june', 1), ('theme', 1), ('event', 1), ('enterprising', 1), ('city', 1), ('focusing', 1), ('noticeable', 1), ('spillover', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('co', 1), ('located', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('ambient', 1), ('intelligence', 1), ('ami', 1), ('held', 1), ('dublin', 1), ('ireland', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('ccis', 2), ('second', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('extended', 1), ('abstract', 1), ('poster', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1)]
[('knowledge', 2), ('ddna', 2), ('first', 1), ('book', 1), ('experience', 1), ('based', 1), ('representation', 1), ('management', 1), ('using', 1), ('unique', 1), ('decisional', 1), ('dna', 1), ('technology', 1), ('concept', 1), ('roughly', 1), ('decade', 1), ('old', 1), ('rapidly', 1), ('attracting', 1), ('increasing', 1), ('attention', 1), ('interest', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cognitive', 1), ('radio', 1), ('oriented', 1), ('wireless', 1), ('network', 1), ('crowncom', 1), ('held', 1), ('poznan', 1), ('poland', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('selected', 1), ('submission', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('fourth', 1), ('international', 1), ('future', 1), ('access', 1), ('enablers', 1), ('ubiquitous', 1), ('intelligent', 1), ('infrastructure', 1), ('fabulous', 1), ('held', 1), ('sofia', 1), ('bulgaria', 1), ('march', 1), ('year', 1)]
[('problem', 3), ('complexity', 2), ('nondeterministic', 2), ('book', 1), ('compare', 1), ('four', 1), ('parameter', 1), ('arbitrary', 1), ('information', 1), ('system', 1), ('representation', 1), ('deterministic', 1), ('strongly', 1), ('decision', 1), ('tree', 1), ('solving', 1)]
[('conference', 3), ('international', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('application', 1), ('big', 1), ('data', 1), ('blockchain', 1), ('internet', 1), ('thing', 1), ('education', 1), ('informatization', 1), ('held', 1), ('august', 1)]
[('conference', 3), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('research', 1), ('computer', 1), ('science', 1), ('application', 1), ('cnria', 1), ('june', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('book', 1), ('explores', 1), ('benefit', 1), ('online', 1), ('teaching', 1), ('incorporating', 1), ('extended', 1), ('reality', 1), ('technology', 1), ('teacher', 1), ('student', 1), ('perspective', 1), ('aware', 1), ('covid', 1), ('pandemic', 1), ('created', 1), ('worldwide', 1), ('lock', 1), ('clearly', 1)]
[('conference', 3), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('mobile', 1), ('ubiquitous', 1), ('system', 1), ('computing', 1), ('networking', 1), ('service', 1), ('mobiquitous', 1), ('november', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('thinternational', 1), ('security', 1), ('privacy', 1), ('new', 1), ('computing', 1), ('environment', 1), ('spnce', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('full', 1)]
[('data', 4), ('pattern', 2), ('recognition', 2), ('analysis', 2), ('known', 1), ('classical', 1), ('problem', 1), ('fall', 1), ('ambit', 1), ('need', 1), ('handle', 1), ('different', 1), ('nature', 1), ('type', 1), ('bound', 1), ('change', 1)]
[('technique', 2), ('application', 2), ('book', 1), ('present', 1), ('recently', 1), ('developed', 1), ('intelligent', 1), ('theory', 1), ('area', 1), ('quality', 1), ('management', 1), ('involved', 1), ('intelligence', 1), ('include', 1), ('fuzzy', 1), ('set', 1), ('neural', 1), ('network', 1), ('genetic', 1), ('algorithm', 1), ('etc', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('security', 1), ('privacy', 1), ('communication', 1), ('network', 1), ('securecomm', 1), ('held', 1), ('beijing', 1), ('china', 1), ('september', 1), ('regular', 1)]
[('system', 2), ('book', 1), ('proposes', 1), ('consistent', 1), ('methodology', 1), ('building', 1), ('intelligent', 1), ('put', 1), ('forward', 1), ('several', 1), ('formal', 1), ('model', 1), ('designing', 1), ('implementing', 1), ('rule', 1), ('based', 1), ('present', 1), ('illustrative', 1), ('case', 1), ('study', 1), ('application', 1), ('include', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('industrial', 1), ('network', 1), ('intelligent', 1), ('system', 1), ('iniscom', 1), ('held', 1), ('ho', 1), ('chi', 1), ('minh', 1), ('city', 1), ('vietnam', 1), ('september', 1), ('revised', 1), ('full', 1)]
[('conference', 3), ('held', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('advanced', 1), ('hybrid', 1), ('information', 1), ('processing', 1), ('adhip', 1), ('binzhou', 1), ('china', 1), ('september', 1), ('due', 1), ('covid', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('technology', 1), ('healthcare', 1), ('healthyiot', 1), ('held', 1), ('viana', 1), ('castello', 1), ('portugal', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('conference', 3), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('interactivity', 1), ('game', 1), ('creation', 1), ('artsit', 1), ('aalborg', 1), ('denmark', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('conference', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('eai', 1), ('international', 1), ('wearable', 1), ('healthcare', 1), ('healthwear', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('held', 1), ('virtually', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('conference', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('future', 1), ('access', 1), ('enablers', 1), ('ubiquitous', 1), ('intelligent', 1), ('infrastructure', 1), ('fabulous', 1), ('held', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('learning', 2), ('la', 2), ('book', 1), ('devoted', 1), ('leading', 1), ('research', 1), ('applying', 1), ('automaton', 1), ('heuristic', 1), ('solving', 1), ('benchmark', 1), ('real', 1), ('world', 1), ('optimization', 1), ('problem', 1), ('increasing', 1), ('application', 1), ('promising', 1), ('reinforcement', 1), ('technique', 1)]
[('conference', 3), ('held', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('machine', 1), ('learning', 1), ('intelligent', 1), ('communication', 1), ('mlicom', 1), ('november', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('different', 2), ('book', 1), ('present', 1), ('technique', 1), ('methodology', 1), ('used', 1), ('improve', 1), ('intelligent', 1), ('decision', 1), ('making', 1), ('process', 1), ('increase', 1), ('likelihood', 1), ('success', 1), ('company', 1), ('sector', 1), ('financial', 1), ('service', 1), ('education', 1), ('supply', 1), ('chain', 1), ('energy', 1)]
[('smart', 2), ('technology', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('mtymex', 1), ('held', 1), ('monterrey', 1), ('mexico', 1), ('full', 1), ('paper', 1), ('selected', 1), ('submission', 1), ('cover', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('transport', 1), ('system', 1), ('intsys', 1), ('held', 1), ('helsinki', 1), ('finland', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('pervasive', 1), ('computing', 1), ('paradigm', 1), ('mental', 1), ('health', 1), ('mindcare', 1), ('held', 1), ('boston', 1), ('usa', 1), ('jin', 1), ('january', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('several', 2), ('detection', 2), ('book', 1), ('drawing', 1), ('recent', 1), ('literature', 1), ('highlight', 1), ('methodology', 1), ('outlier', 1), ('explains', 1), ('apply', 1), ('solve', 1), ('interesting', 1), ('real', 1), ('life', 1), ('problem', 1), ('object', 1), ('deviate', 1), ('norm', 1), ('data', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('fourth', 1), ('international', 1), ('iot', 1), ('service', 1), ('iotaas', 1), ('took', 1), ('place', 1), ('xi', 1), ('china', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('eai', 1), ('international', 1), ('artificial', 1), ('intelligence', 1), ('communication', 1), ('network', 1), ('aicon', 1), ('held', 1), ('harbin', 1), ('china', 1), ('full', 1), ('paper', 1)]
[('model', 2), ('customer', 2), ('behaviour', 2), ('book', 1), ('describes', 1), ('advanced', 1), ('machine', 1), ('learning', 1), ('temporal', 1), ('collaborative', 1), ('filtering', 1), ('stochastic', 1), ('bayesian', 1), ('nonparametrics', 1), ('analysing', 1), ('show', 1), ('used', 1), ('track', 1), ('change', 1)]
[('book', 1), ('report', 1), ('development', 1), ('validation', 1), ('generic', 1), ('defeasible', 1), ('logic', 1), ('programming', 1), ('framework', 1), ('carrying', 1), ('argumentative', 1), ('reasoning', 1), ('semantic', 1), ('web', 1), ('application', 1), ('gf', 1), ('proposed', 1), ('methodology', 1), ('unique', 1), ('providing', 1), ('solution', 1)]
[('chapter', 2), ('social', 2), ('analysis', 2), ('collection', 1), ('contributed', 1), ('demonstrates', 1), ('wide', 1), ('range', 1), ('application', 1), ('within', 1), ('overlapping', 1), ('research', 1), ('domain', 1), ('medium', 1), ('network', 1), ('various', 1), ('methodology', 1), ('utilized', 1), ('twelve', 1), ('individual', 1)]
[('assembly', 2), ('rfac', 2), ('multi', 2), ('book', 1), ('focus', 1), ('design', 1), ('robotic', 1), ('flexible', 1), ('cell', 1), ('robot', 1), ('main', 1), ('contribution', 1), ('consists', 1), ('new', 1), ('effective', 1), ('strategy', 1), ('scheduling', 1), ('product', 1), ('environment', 1), ('dynamic', 1), ('status', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('tenth', 1), ('international', 1), ('kes', 1), ('conference', 1), ('intelligent', 1), ('interactive', 1), ('multimedia', 1), ('system', 1), ('service', 1), ('iimss', 1), ('includes', 1), ('full', 1), ('paper', 1), ('organized', 1), ('topical', 1), ('section', 1), ('ranging', 1), ('visual', 1), ('data', 1)]
[('broadcast', 3), ('cr', 2), ('ad', 2), ('hoc', 2), ('network', 2), ('protocol', 2), ('springerbrief', 1), ('investigates', 1), ('special', 1), ('challenge', 1), ('design', 1), ('cognitive', 1), ('radio', 1), ('introduces', 1), ('quality', 1), ('service', 1), ('based', 1), ('blind', 1), ('information', 1)]
[('context', 2), ('book', 1), ('discus', 1), ('fusion', 1), ('mobile', 1), ('wifi', 1), ('network', 1), ('data', 1), ('semantic', 1), ('technology', 1), ('diverse', 1), ('source', 1), ('offering', 1), ('semantically', 1), ('enriched', 1), ('aware', 1), ('service', 1), ('telecommunication', 1), ('domain', 1), ('present', 1), ('openmobilenetwork', 1)]
[('book', 1), ('address', 1), ('problem', 1), ('modeling', 1), ('prediction', 1), ('classification', 1), ('data', 1), ('understanding', 1), ('processing', 1), ('non', 1), ('stationary', 1), ('unpredictable', 1), ('environment', 1), ('present', 1), ('major', 1), ('known', 1), ('method', 1), ('approach', 1), ('design', 1), ('system', 1), ('able', 1)]
[('mt', 2), ('volume', 1), ('provides', 1), ('overview', 1), ('field', 1), ('hybrid', 1), ('machine', 1), ('translation', 1), ('present', 1), ('latest', 1), ('research', 1), ('conducted', 1), ('linguist', 1), ('practitioner', 1), ('different', 1), ('multidisciplinary', 1), ('area', 1), ('nowadays', 1), ('important', 1), ('development', 1)]
[('book', 3), ('km', 3), ('approach', 2), ('strategy', 2), ('provides', 1), ('practical', 1), ('designing', 1), ('implementing', 1), ('knowledge', 1), ('management', 1), ('explains', 1), ('design', 1), ('align', 1), ('business', 1), ('goal', 1), ('objective', 1), ('present', 1)]
[('illuminating', 1), ('text', 1), ('reference', 1), ('present', 1), ('review', 1), ('key', 1), ('aspect', 1), ('modeling', 1), ('simulation', 1), ('life', 1), ('cycle', 1), ('examines', 1), ('challenge', 1), ('different', 1), ('application', 1), ('area', 1), ('authoritative', 1), ('work', 1), ('offer', 1), ('valuable', 1), ('perspective', 1)]
[('important', 2), ('design', 1), ('science', 1), ('research', 1), ('powerful', 1), ('paradigm', 1), ('enabling', 1), ('researcher', 1), ('make', 1), ('contribution', 1), ('society', 1), ('industry', 1), ('simply', 1), ('stated', 1), ('goal', 1), ('dsr', 1), ('generate', 1), ('knowledge', 1), ('find', 1), ('innovative', 1), ('solution', 1), ('problem', 1)]
[('monte', 2), ('carlo', 2), ('book', 1), ('present', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('quasi', 1), ('method', 1), ('scientific', 1), ('computing', 1), ('held', 1), ('university', 1), ('rennes', 1), ('france', 1), ('organized', 1), ('inria', 1), ('july', 1)]
[('augmented', 2), ('first', 1), ('comprehensive', 1), ('research', 1), ('monograph', 1), ('devoted', 1), ('use', 1), ('reality', 1), ('education', 1), ('written', 1), ('team', 1), ('world', 1), ('leading', 1), ('researcher', 1), ('practitioner', 1), ('artist', 1), ('country', 1), ('pioneering', 1), ('employing', 1)]
[('workshop', 4), ('inverse', 2), ('problem', 2), ('volume', 1), ('result', 1), ('international', 1), ('namely', 1), ('second', 1), ('annual', 1), ('large', 1), ('scale', 1), ('modeling', 1), ('held', 1), ('jointly', 1), ('sunne', 1), ('sweden', 1), ('subject', 1)]
[('art', 2), ('use', 1), ('interactive', 1), ('technology', 1), ('changed', 1), ('audience', 1), ('viewer', 1), ('participant', 1), ('transforming', 1), ('nature', 1), ('experience', 1), ('visual', 1), ('sound', 1), ('performance', 1), ('gaming', 1), ('boundary', 1), ('possible', 1)]
[('system', 2), ('machine', 2), ('book', 1), ('provides', 1), ('overview', 1), ('current', 1), ('state', 1), ('research', 1), ('development', 1), ('application', 1), ('method', 1), ('algorithm', 1), ('tool', 1), ('associated', 1), ('study', 1), ('interaction', 1), ('modern', 1), ('computer', 1), ('designed', 1)]
[('volume', 2), ('contains', 2), ('first', 1), ('paper', 1), ('presented', 1), ('fourteenth', 1), ('international', 1), ('workshop', 1), ('intuitionistic', 1), ('fuzzy', 1), ('set', 1), ('generalized', 1), ('net', 1), ('iwifsgn', 1), ('held', 1), ('october', 1), ('cracow', 1), ('poland', 1), ('moreover', 1)]
[('world', 1), ('congress', 1), ('nature', 1), ('biologically', 1), ('inspiredcomputing', 1), ('nabic', 1), ('organized', 1), ('discus', 1), ('state', 1), ('art', 1), ('toaddress', 1), ('various', 1), ('issue', 1), ('respect', 1), ('nurturing', 1), ('intelligent', 1), ('computing', 1), ('towardsadvancement', 1), ('machine', 1), ('intelligence', 1)]
[('edited', 1), ('volumecontains', 1), ('selection', 1), ('refereed', 1), ('revised', 1), ('paper', 1), ('originally', 1), ('presented', 1), ('thesecond', 1), ('international', 1), ('symposium', 1), ('signal', 1), ('processing', 1), ('intelligent', 1), ('recognitionsystems', 1), ('sir', 1), ('december', 1), ('trivandrum', 1), ('india', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('information', 1), ('technology', 1), ('communication', 1), ('ecuador', 1), ('tic', 1), ('ec', 1), ('held', 1), ('riobamba', 1), ('city', 1), ('november', 1), ('organized', 1), ('universidad', 1), ('nacional', 1), ('del', 1), ('chimborazo', 1), ('unach', 1)]
[('international', 2), ('dsic', 2), ('book', 1), ('gather', 1), ('proceeding', 1), ('conference', 1), ('digital', 1), ('science', 1), ('held', 1), ('budva', 1), ('montenegro', 1), ('october', 1), ('nbsp', 1), ('forum', 1), ('researcher', 1), ('practitioner', 1), ('present', 1)]
[('computational', 2), ('science', 2), ('computing', 2), ('book', 1), ('includes', 1), ('paper', 1), ('recent', 1), ('advance', 1), ('state', 1), ('art', 1), ('presented', 1), ('international', 1), ('symposium', 1), ('iscsc', 1), ('held', 1), ('huangshan', 1), ('china', 1)]
[('conference', 2), ('volume', 1), ('includes', 1), ('proceeding', 1), ('international', 1), ('information', 1), ('technology', 1), ('intelligent', 1), ('transportation', 1), ('system', 1), ('itits', 1), ('held', 1), ('xi', 1), ('december', 1), ('provided', 1), ('platform', 1)]
[('change', 2), ('book', 1), ('consists', 1), ('paper', 1), ('presented', 1), ('automation', 1), ('international', 1), ('conference', 1), ('held', 1), ('warsaw', 1), ('march', 1), ('discus', 1), ('radical', 1), ('technological', 1), ('occurring', 1), ('due', 1), ('industry', 1), ('follow', 1)]
[('book', 1), ('includes', 1), ('outcome', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('intelligent', 1), ('system', 1), ('sustainable', 1), ('development', 1), ('ai', 1), ('sd', 1), ('held', 1), ('tangier', 1), ('morocco', 1), ('july', 1), ('nbsp', 1), ('presenting', 1), ('latest', 1), ('research', 1), ('field', 1), ('computing', 1)]
[('book', 2), ('fuzzy', 2), ('school', 2), ('present', 1), ('latest', 1), ('advance', 1), ('applying', 1), ('set', 1), ('operation', 1), ('research', 1), ('technology', 1), ('method', 1), ('first', 1), ('mathematics', 1), ('textbook', 1), ('student', 1), ('high', 1), ('technical', 1), ('secondary', 1), ('part', 1), ('springer', 1), ('series', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('system', 1), ('application', 1), ('multi', 1), ('modal', 1), ('information', 1), ('analytics', 1), ('held', 1), ('shenyang', 1), ('china', 1), ('february', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('latest', 1)]
[('issue', 2), ('usability', 2), ('human', 2), ('interaction', 2), ('book', 1), ('focus', 1), ('emerging', 1), ('interface', 1), ('design', 1), ('computer', 1), ('user', 1), ('experience', 1), ('special', 1), ('emphasis', 1), ('research', 1), ('aimed', 1), ('understanding', 1), ('product', 1), ('service', 1)]
[('book', 1), ('introduces', 1), ('novel', 1), ('type', 1), ('expert', 1), ('finder', 1), ('system', 1), ('determine', 1), ('knowledge', 1), ('specific', 1), ('user', 1), ('within', 1), ('community', 1), ('hold', 1), ('using', 1), ('explicit', 1), ('implicit', 1), ('data', 1), ('source', 1), ('detail', 1), ('accomplished', 1), ('combining', 1)]
[('book', 1), ('address', 1), ('broad', 1), ('range', 1), ('topic', 1), ('newly', 1), ('proposed', 1), ('technique', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('machine', 1), ('learning', 1), ('various', 1), ('application', 1), ('decision', 1), ('making', 1), ('pattern', 1), ('classification', 1), ('data', 1), ('image', 1), ('signal', 1), ('robotics', 1)]
[('book', 1), ('present', 1), ('best', 1), ('paper', 1), ('th', 1), ('polish', 1), ('conference', 1), ('biocybernetics', 1), ('biomedical', 1), ('engineering', 1), ('pcbbe', 1), ('hosted', 1), ('agh', 1), ('university', 1), ('science', 1), ('technology', 1), ('krakow', 1), ('biannual', 1), ('event', 1), ('held', 1), ('nearly', 1), ('four', 1), ('decade', 1)]
[('ict', 2), ('international', 1), ('conference', 1), ('innovation', 1), ('held', 1), ('september', 1), ('ohrid', 1), ('macedonia', 1), ('main', 1), ('topic', 1), ('cognitive', 1), ('function', 1), ('next', 1), ('generation', 1), ('system', 1), ('live', 1), ('era', 1), ('technology', 1), ('intimately', 1), ('woven', 1), ('virtually', 1)]
[('three', 1), ('volume', 1), ('book', 1), ('highlight', 1), ('significant', 1), ('advance', 1), ('development', 1), ('new', 1), ('information', 1), ('system', 1), ('technology', 1), ('architecture', 1), ('help', 1), ('reader', 1), ('solve', 1), ('specific', 1), ('research', 1), ('analytical', 1), ('problem', 1), ('glean', 1), ('useful', 1), ('knowledge', 1), ('business', 1)]
[('international', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('advanced', 1), ('intelligent', 1), ('system', 1), ('informatics', 1), ('aisi', 1), ('took', 1), ('place', 1), ('cairo', 1), ('egypt', 1), ('october', 1), ('interdisciplinary', 1)]
[('natural', 2), ('computation', 2), ('fuzzy', 2), ('system', 2), ('knowledge', 2), ('discovery', 2), ('book', 1), ('discus', 1), ('recent', 1), ('advance', 1), ('presenting', 1), ('selected', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1)]
[('book', 1), ('present', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('machine', 1), ('learning', 1), ('technology', 1), ('application', 1), ('amlta', 1), ('held', 1), ('cairo', 1), ('egypt', 1), ('february', 1), ('organized', 1), ('scientific', 1), ('research', 1), ('group', 1)]
[('interdisciplinary', 2), ('book', 1), ('gather', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('presented', 1), ('st', 1), ('international', 1), ('conference', 1), ('image', 1), ('imagination', 1), ('img', 1), ('held', 1), ('alghero', 1), ('italy', 1), ('july', 1), ('highlighting', 1), ('multi', 1), ('disciplinary', 1), ('research', 1)]
[('proceeding', 2), ('iisa', 2), ('book', 1), ('report', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('interactive', 1), ('system', 1), ('application', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('september', 1), ('latest', 1), ('scientific', 1), ('finding', 1)]
[('technology', 2), ('book', 1), ('provides', 1), ('forum', 1), ('expert', 1), ('present', 1), ('latest', 1), ('research', 1), ('disruptive', 1), ('promoting', 1), ('knowledge', 1), ('transfer', 1), ('due', 1), ('important', 1), ('advance', 1), ('artificial', 1), ('intelligence', 1), ('big', 1), ('data', 1), ('internet', 1), ('thing', 1)]
[('future', 2), ('book', 1), ('present', 1), ('state', 1), ('art', 1), ('intelligent', 1), ('method', 1), ('technique', 1), ('solving', 1), ('real', 1), ('world', 1), ('problem', 1), ('offer', 1), ('vision', 1), ('research', 1), ('featuring', 1), ('paper', 1), ('th', 1), ('technology', 1), ('conference', 1), ('held', 1), ('san', 1), ('francisco', 1), ('usa', 1)]
[('conference', 2), ('ecuador', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('sixth', 1), ('information', 1), ('communication', 1), ('technology', 1), ('tic', 1), ('ec', 1), ('held', 1), ('cuenca', 1), ('november', 1), ('considered', 1), ('important', 1), ('ict', 1)]
[('book', 1), ('present', 1), ('high', 1), ('quality', 1), ('original', 1), ('contribution', 1), ('new', 1), ('software', 1), ('engineering', 1), ('model', 1), ('approach', 1), ('method', 1), ('tool', 1), ('evaluation', 1), ('context', 1), ('defence', 1), ('security', 1), ('application', 1), ('addition', 1), ('important', 1), ('business', 1), ('economic', 1)]
[('data', 3), ('book', 1), ('provides', 1), ('introduction', 1), ('science', 1), ('offer', 1), ('practical', 1), ('overview', 1), ('concept', 1), ('technique', 1), ('reader', 1), ('need', 1), ('large', 1), ('scale', 1), ('mining', 1), ('project', 1), ('research', 1), ('study', 1), ('discus', 1), ('analytical', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('book', 1), ('highlight', 1), ('major', 1), ('advance', 1), ('development', 1), ('concept', 1), ('technique', 1), ('area', 1), ('new', 1), ('technology', 1), ('architecture', 1), ('contemporary', 1), ('information', 1), ('system', 1), ('help', 1), ('reader', 1), ('solve', 1), ('specific', 1), ('research', 1)]
[('conference', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('kkio', 1), ('software', 1), ('engineering', 1), ('held', 1), ('wrocław', 1), ('poland', 1), ('september', 1), ('contains', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('scientific', 1), ('outcome', 1), ('motto', 1), ('better', 1)]
[('international', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('advanced', 1), ('intelligent', 1), ('system', 1), ('informatics', 1), ('aisi', 1), ('took', 1), ('place', 1), ('cairo', 1), ('egypt', 1), ('september', 1), ('interdisciplinary', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('book', 1), ('highlight', 1), ('major', 1), ('advance', 1), ('development', 1), ('concept', 1), ('technique', 1), ('area', 1), ('new', 1), ('technology', 1), ('architecture', 1), ('contemporary', 1), ('information', 1), ('system', 1), ('help', 1), ('reader', 1), ('solve', 1), ('specific', 1), ('research', 1)]
[('proceeding', 1), ('volume', 1), ('collection', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('soft', 1), ('method', 1), ('probability', 1), ('statistic', 1), ('smps', 1), ('held', 1), ('rome', 1), ('italy', 1), ('book', 1), ('dedicated', 1), ('data', 1), ('science', 1), ('aim', 1)]
[('book', 1), ('brings', 1), ('together', 1), ('past', 1), ('experience', 1), ('current', 1), ('work', 1), ('promising', 1), ('future', 1), ('trend', 1), ('associated', 1), ('distributed', 1), ('computing', 1), ('artificial', 1), ('intelligence', 1), ('application', 1), ('order', 1), ('provide', 1), ('efficient', 1), ('solution', 1), ('real', 1), ('problem', 1), ('dcai', 1), ('forum', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('xv', 1), ('multidisciplinary', 1), ('international', 1), ('congress', 1), ('science', 1), ('technology', 1), ('cit', 1), ('held', 1), ('quito', 1), ('ecuador', 1), ('october', 1), ('proudly', 1), ('organized', 1), ('universidad', 1), ('de', 1), ('la', 1), ('fuerzas', 1), ('armada', 1), ('espe', 1)]
[('book', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('latest', 1), ('advance', 1), ('trend', 1), ('information', 1), ('technology', 1), ('science', 1), ('engineering', 1), ('specifically', 1), ('address', 1), ('number', 1), ('broad', 1), ('theme', 1), ('including', 1), ('multi', 1), ('modal', 1), ('informatics', 1), ('data', 1), ('mining', 1), ('agent', 1), ('based', 1)]
[('book', 1), ('contains', 1), ('paper', 1), ('authored', 1), ('scientist', 1), ('practitioner', 1), ('focused', 1), ('interdisciplinary', 1), ('approach', 1), ('development', 1), ('cyber', 1), ('physical', 1), ('system', 1), ('recently', 1), ('civilization', 1), ('facing', 1), ('severe', 1), ('challenge', 1), ('modern', 1)]
[('contains', 2), ('volume', 1), ('extended', 1), ('version', 1), ('paper', 1), ('presented', 1), ('rd', 1), ('international', 1), ('conference', 1), ('computer', 1), ('science', 1), ('applied', 1), ('mathematics', 1), ('application', 1), ('iccsama', 1), ('held', 1), ('metz', 1), ('france', 1), ('book', 1), ('part', 1)]
[('inspired', 2), ('book', 1), ('provides', 1), ('reader', 1), ('snapshot', 1), ('state', 1), ('art', 1), ('field', 1), ('nature', 1), ('computing', 1), ('application', 1), ('optimization', 1), ('approach', 1), ('mainly', 1), ('practice', 1), ('oriented', 1), ('bio', 1), ('technique', 1), ('algorithm', 1), ('introduced', 1)]
[('scholar', 2), ('bringing', 1), ('together', 1), ('literary', 1), ('computer', 1), ('scientist', 1), ('ethicist', 1), ('philosopher', 1), ('mind', 1), ('affiliated', 1), ('discipline', 1), ('collection', 1), ('essay', 1), ('offer', 1), ('important', 1), ('timely', 1), ('insight', 1), ('past', 1), ('present', 1), ('possible', 1)]
[('tree', 2), ('book', 1), ('present', 1), ('unified', 1), ('framework', 1), ('based', 1), ('specialized', 1), ('evolutionary', 1), ('algorithm', 1), ('global', 1), ('induction', 1), ('various', 1), ('type', 1), ('classification', 1), ('regression', 1), ('data', 1), ('resulting', 1), ('univariate', 1), ('oblique', 1), ('significantly', 1), ('smaller', 1)]
[('economic', 3), ('idea', 2), ('decision', 2), ('particular', 2), ('book', 1), ('describes', 1), ('state', 1), ('art', 1), ('used', 1), ('make', 1), ('optimally', 1), ('allocate', 1), ('asset', 1), ('gauge', 1), ('result', 1), ('different', 1), ('using', 1)]
[('high', 2), ('performance', 2), ('computing', 2), ('numerical', 1), ('simulation', 1), ('modelling', 1), ('using', 1), ('evolved', 1), ('established', 1), ('technique', 1), ('academic', 1), ('industrial', 1), ('research', 1), ('time', 1), ('infrastructure', 1), ('becoming', 1), ('complex', 1)]
[('processing', 2), ('text', 1), ('review', 1), ('field', 1), ('digital', 1), ('image', 1), ('different', 1), ('perspective', 1), ('offered', 1), ('separate', 1), ('domain', 1), ('signal', 1), ('pattern', 1), ('recognition', 1), ('book', 1), ('describes', 1), ('rich', 1), ('array', 1), ('application', 1), ('representing', 1), ('latest', 1), ('trend', 1)]
[('chapter', 3), ('cloud', 3), ('book', 2), ('robotics', 2), ('first', 2), ('comprises', 1), ('four', 1), ('address', 1), ('latest', 1), ('research', 1), ('sensor', 1), ('part', 1), ('includes', 1), ('introduces', 1), ('novel', 1), ('resource', 1), ('allocation', 1), ('framework', 1)]
[('book', 2), ('extreme', 2), ('learning', 2), ('machine', 2), ('elm', 2), ('contains', 1), ('selected', 1), ('paper', 1), ('international', 1), ('conference', 1), ('held', 1), ('yantai', 1), ('china', 1), ('october', 1), ('cover', 1), ('theory', 1), ('algorithm', 1), ('application', 1)]
[('book', 1), ('introduces', 1), ('multiagent', 1), ('planning', 1), ('uncertainty', 1), ('formalized', 1), ('decentralized', 1), ('partially', 1), ('observable', 1), ('markov', 1), ('decision', 1), ('process', 1), ('dec', 1), ('pomdps', 1), ('intended', 1), ('audience', 1), ('researcher', 1), ('graduate', 1), ('student', 1), ('working', 1), ('field', 1), ('artificial', 1)]
[('book', 1), ('present', 1), ('mathematical', 1), ('model', 1), ('mob', 1), ('control', 1), ('threshold', 1), ('conformity', 1), ('collective', 1), ('decision', 1), ('making', 1), ('agent', 1), ('nbsp', 1), ('based', 1), ('result', 1), ('analysis', 1), ('interconnection', 1), ('micro', 1), ('macromodels', 1), ('active', 1), ('network', 1)]
[('gamer', 2), ('behavior', 2), ('book', 1), ('provides', 1), ('introduction', 1), ('overview', 1), ('increasingly', 1), ('important', 1), ('topic', 1), ('psychology', 1), ('presenting', 1), ('range', 1), ('theoretic', 1), ('perspective', 1), ('empirical', 1), ('evidence', 1), ('casting', 1), ('new', 1), ('light', 1), ('understanding', 1)]
[('book', 1), ('explores', 1), ('use', 1), ('blockchain', 1), ('smart', 1), ('contract', 1), ('technology', 1), ('develop', 1), ('new', 1), ('way', 1), ('finance', 1), ('independent', 1), ('film', 1), ('digital', 1), ('medium', 1), ('worldwide', 1), ('using', 1), ('case', 1), ('study', 1), ('alibaba', 1), ('depth', 1), ('set', 1), ('observation', 1), ('sino', 1), ('coproduction', 1)]
[('language', 4), ('requirement', 3), ('book', 1), ('explains', 1), ('detail', 1), ('define', 1), ('modelling', 1), ('formal', 1), ('used', 1), ('solve', 1), ('related', 1), ('problem', 1), ('engineering', 1), ('move', 1), ('simple', 1), ('complicated', 1), ('one', 1), ('us', 1)]
[('book', 1), ('present', 1), ('state', 1), ('art', 1), ('supercomputer', 1), ('simulation', 1), ('includes', 1), ('latest', 1), ('finding', 1), ('leading', 1), ('researcher', 1), ('using', 1), ('system', 1), ('high', 1), ('performance', 1), ('computing', 1), ('center', 1), ('stuttgart', 1), ('hlrs', 1), ('report', 1), ('cover', 1), ('field', 1)]
[('rfid', 2), ('tag', 2), ('book', 1), ('introduces', 1), ('application', 1), ('internet', 1), ('thing', 1), ('emerging', 1), ('technology', 1), ('search', 1), ('anonymous', 1), ('authentication', 1), ('identification', 1), ('networked', 1), ('new', 1), ('technique', 1), ('called', 1), ('filtering', 1), ('vector', 1), ('compact', 1), ('data', 1)]
[('communication', 3), ('book', 1), ('demonstrates', 1), ('reliable', 1), ('secure', 1), ('performance', 1), ('maritime', 1), ('significantly', 1), ('improved', 1), ('using', 1), ('intelligent', 1), ('reflecting', 1), ('surface', 1), ('irs', 1), ('aided', 1), ('privacy', 1), ('aware', 1), ('internet', 1), ('thing', 1), ('iot', 1)]
[('feature', 2), ('theory', 2), ('edited', 1), ('volume', 1), ('wide', 1), ('spectrum', 1), ('latest', 1), ('computer', 1), ('science', 1), ('research', 1), ('relating', 1), ('cyber', 1), ('deception', 1), ('specifically', 1), ('work', 1), ('area', 1), ('artificial', 1), ('intelligence', 1), ('game', 1), ('programming', 1), ('language', 1), ('graph', 1)]
[('scientist', 3), ('engineer', 2), ('book', 1), ('present', 1), ('main', 1), ('concept', 1), ('linear', 1), ('algebra', 1), ('viewpoint', 1), ('applied', 1), ('computer', 1), ('without', 1), ('compromising', 1), ('mathematical', 1), ('rigor', 1), ('based', 1), ('idea', 1), ('computational', 1)]
[('data', 2), ('genomics', 2), ('sequencing', 2), ('contributed', 1), ('volume', 1), ('explores', 1), ('emerging', 1), ('intersection', 1), ('big', 1), ('analytics', 1), ('recent', 1), ('technology', 1), ('enabled', 1), ('high', 1), ('throughput', 1), ('generation', 1), ('resulting', 1), ('several', 1), ('international', 1), ('project', 1)]
[('new', 2), ('technology', 2), ('rev', 1), ('conference', 1), ('aim', 1), ('discus', 1), ('fundamental', 1), ('application', 1), ('experience', 1), ('remote', 1), ('engineering', 1), ('virtual', 1), ('instrumentation', 1), ('related', 1), ('concept', 1), ('education', 1), ('topic', 1), ('including', 1), ('emerging', 1)]
[('information', 2), ('book', 1), ('present', 1), ('remarkable', 1), ('collection', 1), ('chapter', 1), ('cover', 1), ('wide', 1), ('range', 1), ('topic', 1), ('area', 1), ('communication', 1), ('technology', 1), ('real', 1), ('world', 1), ('application', 1), ('gather', 1), ('proceeding', 1), ('future', 1)]
[('book', 1), ('gather', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('international', 1), ('conference', 1), ('integrated', 1), ('science', 1), ('digital', 1), ('age', 1), ('icis', 1), ('jointly', 1), ('supported', 1), ('institute', 1), ('certified', 1), ('specialist', 1), ('ic', 1), ('russia', 1), ('springer', 1), ('held', 1), ('batumi', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('st', 1), ('congress', 1), ('international', 1), ('ergonomics', 1), ('association', 1), ('iea', 1), ('held', 1), ('online', 1), ('june', 1), ('highlighting', 1), ('latest', 1), ('theory', 1), ('model', 1), ('cutting', 1), ('edge', 1), ('technology', 1), ('application', 1)]
[('book', 1), ('present', 1), ('recent', 1), ('research', 1), ('intelligent', 1), ('fuzzy', 1), ('technique', 1), ('emerging', 1), ('condition', 1), ('pandemic', 1), ('war', 1), ('natural', 1), ('disaster', 1), ('various', 1), ('high', 1), ('technology', 1), ('force', 1), ('significant', 1), ('change', 1), ('business', 1), ('social', 1), ('life', 1), ('adoption', 1)]
[('book', 1), ('present', 1), ('innovative', 1), ('interdisciplinary', 1), ('application', 1), ('advanced', 1), ('technology', 1), ('includes', 1), ('scientific', 1), ('outcome', 1), ('result', 1), ('conference', 1), ('th', 1), ('day', 1), ('bosnian', 1), ('herzegovinian', 1), ('american', 1), ('academy', 1), ('art', 1), ('science', 1), ('held', 1), ('mostar', 1)]
[('data', 3), ('personal', 2), ('growing', 1), ('popularity', 1), ('big', 1), ('potential', 1), ('value', 1), ('attracted', 1), ('attention', 1), ('application', 1), ('built', 1), ('create', 1), ('tremendous', 1), ('social', 1), ('economic', 1), ('benefit', 1), ('meanwhile', 1), ('bring', 1), ('serious', 1), ('threat', 1)]
[('evaluation', 3), ('credibility', 2), ('research', 2), ('book', 1), ('introduces', 1), ('reader', 1), ('web', 1), ('content', 1), ('support', 1), ('highlight', 1), ('empirical', 1), ('establishes', 1), ('solid', 1), ('foundation', 1), ('future', 1), ('presenting', 1), ('method', 1), ('supporting', 1), ('online', 1)]
[('imaginary', 2), ('nbsp', 2), ('unit', 1), ('used', 1), ('mathematician', 1), ('nearly', 1), ('five', 1), ('hundred', 1), ('year', 1), ('time', 1), ('physical', 1), ('meaning', 1), ('constant', 1), ('challenge', 1), ('unfortunately', 1), ('rené', 1), ('descartes', 1), ('referred', 1), ('use', 1)]
[('decomposition', 3), ('method', 2), ('book', 1), ('present', 1), ('new', 1), ('decompose', 1), ('time', 1), ('series', 1), ('intrinsic', 1), ('component', 1), ('low', 1), ('high', 1), ('frequency', 1), ('based', 1), ('singular', 1), ('value', 1), ('svd', 1), ('hankel', 1), ('matrix', 1), ('hsvd', 1), ('proposed', 1)]
[('book', 1), ('discus', 1), ('secularization', 1), ('arguing', 1), ('complex', 1), ('significant', 1), ('generally', 1), ('recognized', 1), ('using', 1), ('number', 1), ('online', 1), ('exploration', 1), ('method', 1), ('author', 1), ('provides', 1), ('insight', 1), ('religion', 1), ('changing', 1), ('information', 1)]
[('chapter', 1), ('book', 1), ('present', 1), ('work', 1), ('researcher', 1), ('scientist', 1), ('engineer', 1), ('teacher', 1), ('engaged', 1), ('developing', 1), ('unified', 1), ('foundation', 1), ('principle', 1), ('technology', 1), ('cyber', 1), ('physical', 1), ('security', 1), ('adopt', 1), ('multidisciplinary', 1), ('approach', 1)]
[('book', 2), ('big', 2), ('data', 2), ('computing', 2), ('objective', 1), ('introduce', 1), ('basic', 1), ('concept', 1), ('describe', 1), ('total', 1), ('solution', 1), ('problem', 1), ('using', 1), ('hpcc', 1), ('open', 1), ('source', 1), ('platform', 1), ('comprises', 1), ('chapter', 1), ('broken', 1), ('three', 1), ('part', 1)]
[('data', 3), ('textbook', 2), ('analytics', 2), ('algorithm', 2), ('practical', 1), ('unites', 1), ('fundamental', 1), ('principle', 1), ('keystone', 1), ('focal', 1), ('point', 1), ('clear', 1), ('intuitive', 1), ('explanation', 1), ('mathematical', 1), ('statistical', 1)]
[('book', 1), ('gather', 1), ('contribution', 1), ('international', 1), ('conference', 1), ('optimization', 1), ('decision', 1), ('science', 1), ('od', 1), ('held', 1), ('hotel', 1), ('villa', 1), ('diodoro', 1), ('taormina', 1), ('messina', 1), ('italy', 1), ('september', 1), ('organized', 1), ('airo', 1)]
[('field', 2), ('learning', 2), ('dawn', 1), ('th', 1), ('industrial', 1), ('revolution', 1), ('deep', 1), ('sub', 1), ('artificial', 1), ('intelligence', 1), ('machine', 1), ('growing', 1), ('continuously', 1), ('rapidly', 1), ('developing', 1), ('theoretically', 1), ('towards', 1), ('application', 1), ('increasingly', 1), ('many', 1)]
[('digital', 2), ('book', 1), ('brings', 1), ('together', 1), ('essential', 1), ('methodology', 1), ('required', 1), ('understand', 1), ('advancement', 1), ('technology', 1), ('transformation', 1), ('protect', 1), ('cyber', 1), ('threat', 1), ('vulnerability', 1), ('context', 1), ('cybersecurity', 1), ('attack', 1)]
[('data', 4), ('science', 2), ('book', 1), ('main', 1), ('goal', 1), ('define', 1), ('work', 1), ('scientist', 1), ('result', 1), ('namely', 1), ('product', 1), ('simultaneously', 1), ('providing', 1), ('reader', 1), ('relevant', 1), ('lesson', 1), ('learned', 1), ('applied', 1), ('project', 1)]
[('humanity', 2), ('transhumanism', 2), ('modern', 1), ('year', 1), ('recorded', 1), ('history', 1), ('experiencing', 1), ('growing', 1), ('pain', 1), ('end', 1), ('sight', 1), ('high', 1), ('time', 1), ('grow', 1), ('transcend', 1), ('embracing', 1), ('nbsp', 1), ('offer', 1)]
[('design', 4), ('software', 2), ('textbook', 1), ('provides', 1), ('depth', 1), ('introduction', 1), ('focus', 1), ('object', 1), ('oriented', 1), ('using', 1), ('java', 1), ('programming', 1), ('language', 1), ('goal', 1), ('help', 1), ('reader', 1), ('learn', 1), ('discovering', 1), ('experience', 1)]
[('handbook', 2), ('part', 2), ('multimedia', 2), ('application', 2), ('organized', 1), ('three', 1), ('major', 1), ('nbsp', 1), ('first', 1), ('deal', 1), ('security', 1), ('emerging', 1), ('chapter', 1), ('include', 1), ('basic', 1), ('concept', 1), ('tool', 1), ('biological', 1), ('behavioral', 1)]
[('book', 1), ('report', 1), ('theoretical', 1), ('foundation', 1), ('fundamental', 1), ('application', 1), ('latest', 1), ('advance', 1), ('various', 1), ('aspect', 1), ('connected', 1), ('service', 1), ('health', 1), ('information', 1), ('system', 1), ('twelve', 1), ('chapter', 1), ('highlight', 1), ('state', 1), ('art', 1), ('approach', 1), ('methodology', 1)]
[('queuing', 2), ('book', 1), ('dedicated', 1), ('systematization', 1), ('development', 1), ('model', 1), ('method', 1), ('algorithm', 1), ('system', 1), ('correlated', 1), ('arrival', 1), ('first', 1), ('setting', 1), ('basic', 1), ('tool', 1), ('needed', 1), ('study', 1), ('theory', 1), ('author', 1), ('concentrate', 1)]
[('unique', 1), ('volume', 1), ('review', 1), ('latest', 1), ('advance', 1), ('domain', 1), ('adaptation', 1), ('training', 1), ('machine', 1), ('learning', 1), ('algorithm', 1), ('visual', 1), ('understanding', 1), ('offering', 1), ('valuable', 1), ('insight', 1), ('international', 1), ('selection', 1), ('expert', 1), ('field', 1), ('text', 1), ('present', 1)]
[('book', 1), ('author', 1), ('draw', 1), ('inspiration', 1), ('sun', 1), ('tzu', 1), ('art', 1), ('war', 1), ('work', 1), ('explains', 1), ('conflict', 1), ('nation', 1), ('applies', 1), ('computer', 1), ('security', 1), ('setting', 1), ('examining', 1), ('consider', 1), ('protecting', 1), ('information', 1), ('system', 1)]
[('book', 2), ('protocol', 2), ('system', 2), ('part', 2), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('communication', 1), ('divided', 1), ('four', 1), ('cover', 1), ('basic', 1), ('concept', 1), ('design', 1), ('specification', 1), ('overview', 1), ('model', 1), ('language', 1)]
[('management', 2), ('mining', 2), ('book', 1), ('present', 1), ('recent', 1), ('work', 1), ('healthcare', 1), ('engineering', 1), ('using', 1), ('artificial', 1), ('intelligence', 1), ('data', 1), ('technique', 1), ('specific', 1), ('topic', 1), ('covered', 1), ('contributed', 1), ('chapter', 1), ('include', 1), ('predictive', 1), ('decision', 1), ('support', 1), ('capacity', 1)]
[('way', 2), ('last', 1), ('year', 1), ('information', 1), ('system', 1), ('disruptive', 1), ('effect', 1), ('society', 1), ('business', 1), ('recently', 1), ('though', 1), ('majority', 1), ('passenger', 1), ('good', 1), ('transported', 1), ('sea', 1), ('many', 1), ('similar', 1), ('turn', 1)]
[('timing', 4), ('embedded', 2), ('without', 1), ('correct', 1), ('safe', 1), ('reliable', 1), ('software', 1), ('book', 1), ('show', 1), ('consider', 1), ('early', 1), ('development', 1), ('process', 1), ('system', 1), ('solve', 1), ('acute', 1), ('problem', 1), ('perform', 1), ('optimization', 1)]
[('book', 2), ('practitioner', 2), ('written', 1), ('reader', 1), ('entering', 1), ('field', 1), ('background', 1), ('ai', 1), ('interest', 1), ('developing', 1), ('real', 1), ('world', 1), ('application', 1), ('resource', 1), ('researcher', 1), ('industry', 1)]
[('book', 1), ('disseminates', 1), ('promotes', 1), ('recent', 1), ('research', 1), ('progress', 1), ('frontier', 1), ('development', 1), ('automl', 1), ('meta', 1), ('learning', 1), ('application', 1), ('computer', 1), ('vision', 1), ('natural', 1), ('language', 1), ('processing', 1), ('multimedia', 1), ('data', 1), ('mining', 1), ('related', 1), ('field', 1)]
[('computer', 2), ('computing', 2), ('essential', 1), ('functioning', 1), ('society', 1), ('despite', 1), ('incredible', 1), ('power', 1), ('existing', 1), ('technology', 1), ('progressing', 1), ('beyond', 1), ('today', 1), ('conventional', 1), ('model', 1), ('quantum', 1), ('qc', 1), ('surfacing', 1), ('promising', 1), ('disruptive', 1)]
[('able', 1), ('recover', 1), ('shape', 1), ('deformable', 1), ('surface', 1), ('single', 1), ('video', 1), ('stream', 1), ('make', 1), ('possible', 1), ('field', 1), ('reconstruction', 1), ('system', 1), ('run', 1), ('widely', 1), ('available', 1), ('hardware', 1), ('without', 1), ('requiring', 1), ('specialized', 1), ('device', 1), ('many', 1)]
[('common', 1), ('feature', 1), ('many', 1), ('approach', 1), ('modeling', 1), ('sensory', 1), ('statistic', 1), ('emphasis', 1), ('capturing', 1), ('average', 1), ('early', 1), ('representation', 1), ('brain', 1), ('highly', 1), ('abstracted', 1), ('class', 1), ('category', 1), ('machine', 1), ('learning', 1), ('classification', 1), ('task', 1)]
[('schema', 3), ('data', 3), ('matching', 2), ('task', 1), ('providing', 1), ('correspondence', 1), ('concept', 1), ('describing', 1), ('meaning', 1), ('various', 1), ('heterogeneous', 1), ('distributed', 1), ('source', 1), ('basic', 1), ('operation', 1), ('required', 1), ('process', 1)]
[('disability', 2), ('interaction', 2), ('new', 2), ('technology', 2), ('dix', 1), ('approach', 1), ('combining', 1), ('cross', 1), ('disciplinary', 1), ('method', 1), ('theory', 1), ('human', 1), ('computer', 1), ('hci', 1), ('study', 1), ('assistive', 1), ('social', 1), ('development', 1), ('co', 1), ('create', 1)]
[('information', 4), ('human', 2), ('essential', 1), ('activity', 1), ('electronic', 1), ('form', 1), ('amplifies', 1), ('augments', 1), ('interaction', 1), ('lecture', 1), ('survey', 1), ('different', 1), ('classical', 1), ('meaning', 1), ('focus', 1), ('way', 1)]
[('second', 1), ('book', 1), ('based', 1), ('society', 1), ('scenario', 1), ('space', 1), ('structure', 1), ('stream', 1), ('approach', 1), ('digital', 1), ('library', 1), ('dl', 1), ('leveraging', 1), ('first', 1), ('volume', 1), ('theoretical', 1), ('foundation', 1), ('focus', 1), ('key', 1), ('issue', 1), ('evaluation', 1), ('integration', 1)]
[('persona', 3), ('data', 2), ('driven', 2), ('human', 2), ('significant', 1), ('advancement', 1), ('field', 1), ('centered', 1), ('informatics', 1), ('computer', 1), ('interaction', 1), ('enhance', 1), ('user', 1), ('understanding', 1), ('combining', 1), ('empathy', 1), ('inherent', 1), ('rationality', 1)]
[('understanding', 2), ('research', 1), ('multiculturalism', 1), ('information', 1), ('communication', 1), ('technology', 1), ('ict', 1), ('important', 1), ('recent', 1), ('history', 1), ('planning', 1), ('future', 1), ('large', 1), ('scale', 1), ('initiative', 1), ('unrealized', 1), ('expectation', 1), ('social', 1), ('technological', 1)]
[('social', 3), ('online', 2), ('enormous', 1), ('success', 1), ('diffusion', 1), ('network', 1), ('osns', 1), ('encountering', 1), ('nowadays', 1), ('vastly', 1), ('apparent', 1), ('user', 1), ('interaction', 1), ('occur', 1), ('using', 1), ('medium', 1), ('communication', 1), ('channel', 1), ('personal', 1), ('information', 1), ('activity', 1)]
[('online', 2), ('user', 2), ('social', 1), ('medium', 1), ('greatly', 1), ('enables', 1), ('participate', 1), ('activity', 1), ('shatters', 1), ('barrier', 1), ('create', 1), ('share', 1), ('information', 1), ('place', 1), ('time', 1), ('explosion', 1), ('generated', 1), ('content', 1), ('pose', 1), ('novel', 1), ('challenge', 1)]
[('dialogue', 2), ('spoken', 2), ('considerable', 1), ('progress', 1), ('made', 1), ('recent', 1), ('year', 1), ('development', 1), ('system', 1), ('support', 1), ('robust', 1), ('efficient', 1), ('human', 1), ('machine', 1), ('interaction', 1), ('using', 1), ('language', 1), ('technology', 1), ('allows', 1), ('various', 1), ('interactive', 1), ('application', 1)]
[('natural', 2), ('language', 2), ('human', 1), ('understanding', 1), ('sentence', 1), ('discourse', 1), ('effortless', 1), ('hardly', 1), ('think', 1), ('machine', 1), ('task', 1), ('interpreting', 1), ('especially', 1), ('grasping', 1), ('meaning', 1), ('beyond', 1), ('literal', 1), ('content', 1)]
[('text', 3), ('ranking', 2), ('goal', 1), ('generate', 1), ('ordered', 1), ('list', 1), ('retrieved', 1), ('corpus', 1), ('response', 1), ('query', 1), ('although', 1), ('common', 1), ('formulation', 1), ('search', 1), ('instance', 1), ('task', 1), ('found', 1), ('many', 1), ('natural', 1), ('language', 1)]
[('poisson', 3), ('line', 3), ('process', 2), ('plcp', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('treatment', 1), ('cox', 1), ('application', 1), ('vehicular', 1), ('network', 1), ('constructed', 1), ('placing', 1), ('point', 1), ('plp', 1), ('per', 1), ('independent', 1)]
[('consumption', 2), ('network', 2), ('packet', 1), ('delay', 1), ('energy', 1), ('important', 1), ('consideration', 1), ('wireless', 1), ('sensor', 1), ('metric', 1), ('directly', 1), ('affect', 1), ('quality', 1), ('service', 1), ('application', 1), ('resource', 1), ('especially', 1), ('rapidly', 1)]
[('work', 2), ('concern', 2), ('synthesis', 1), ('lecture', 1), ('provides', 1), ('survey', 1), ('privacy', 1), ('online', 1), ('social', 1), ('network', 1), ('osns', 1), ('encompasses', 1), ('user', 1), ('service', 1), ('provider', 1), ('third', 1), ('party', 1), ('goal', 1), ('approach', 1), ('computer', 1), ('science', 1)]
[('system', 2), ('theory', 1), ('remains', 1), ('true', 1), ('technology', 1), ('changing', 1), ('important', 1), ('know', 1), ('master', 1), ('basic', 1), ('concept', 1), ('theoretical', 1), ('tool', 1), ('underlie', 1), ('design', 1), ('using', 1), ('today', 1), ('use', 1), ('tomorrow', 1)]
[('data', 2), ('solving', 1), ('problem', 1), ('deep', 1), ('neural', 1), ('network', 1), ('typically', 1), ('relies', 1), ('massive', 1), ('amount', 1), ('labeled', 1), ('training', 1), ('achieve', 1), ('high', 1), ('performance', 1), ('many', 1), ('situation', 1), ('huge', 1), ('volume', 1), ('unlabeled', 1), ('often', 1), ('generated', 1), ('available', 1), ('cost', 1)]
[('book', 2), ('david', 2), ('first', 1), ('three', 1), ('part', 1), ('series', 1), ('offered', 1), ('tribute', 1), ('pioneer', 1), ('vision', 1), ('béla', 1), ('julesz', 1), ('marr', 1), ('king', 1), ('sun', 1), ('fu', 1), ('ulf', 1), ('grenander', 1), ('mumford', 1), ('author', 1), ('hope', 1), ('provide', 1), ('foundation', 1), ('perhaps', 1)]
[('french', 2), ('programming', 2), ('nbsp', 2), ('school', 1), ('collection', 1), ('insightful', 1), ('discussion', 1), ('software', 1), ('engineering', 1), ('topic', 1), ('prestigious', 1), ('name', 1), ('computer', 1), ('science', 1), ('author', 1), ('include', 1), ('several', 1)]
[('machine', 2), ('learning', 2), ('groundbreaking', 1), ('book', 1), ('transcends', 1), ('traditional', 1), ('approach', 1), ('introducing', 1), ('information', 1), ('measurement', 1), ('methodology', 1), ('revolutionize', 1), ('field', 1), ('stemming', 1), ('uc', 1), ('berkeley', 1), ('seminar', 1), ('experimental', 1), ('design', 1), ('task', 1)]
[('research', 2), ('book', 1), ('cover', 1), ('latest', 1), ('study', 1), ('regarding', 1), ('explainable', 1), ('machine', 1), ('learning', 1), ('used', 1), ('multimedia', 1), ('based', 1), ('healthcare', 1), ('application', 1), ('context', 1), ('content', 1), ('includes', 1), ('introduction', 1), ('applied', 1), ('effort', 1), ('theoretical', 1)]
[('book', 1), ('provides', 1), ('coherent', 1), ('complete', 1), ('overview', 1), ('various', 1), ('question', 1), ('answering', 1), ('qa', 1), ('system', 1), ('cover', 1), ('three', 1), ('main', 1), ('category', 1), ('based', 1), ('source', 1), ('data', 1), ('unstructured', 1), ('text', 1), ('textqa', 1), ('structured', 1), ('knowledge', 1), ('graph', 1), ('kbqa', 1)]
[('proceeding', 2), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('advance', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('paper', 1), ('included', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('logic', 1), ('artificial', 1), ('intelligence', 1), ('jelia', 1), ('held', 1), ('virtual', 1), ('event', 1), ('full', 1), ('short', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('science', 1), ('engineering', 1), ('management', 1), ('ksem', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('symposium', 1), ('mathematical', 1), ('computational', 1), ('oncology', 1), ('ismco', 1), ('october', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('conference', 1), ('virtually', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('offer', 1), ('state', 1), ('art', 1), ('collection', 1), ('covering', 1), ('theme', 1), ('related', 1), ('advanced', 1), ('intelligent', 1), ('computational', 1), ('technology', 1), ('decision', 1), ('support', 1), ('system', 1), ('applied', 1), ('field', 1), ('healthcare', 1), ('assisting', 1), ('human', 1), ('solving', 1), ('problem', 1)]
[('ai', 2), ('origination', 1), ('mid', 1), ('twentieth', 1), ('century', 1), ('area', 1), ('artificial', 1), ('intelligence', 1), ('undergone', 1), ('number', 1), ('development', 1), ('early', 1), ('interest', 1), ('mainly', 1), ('triggered', 1), ('desire', 1), ('develop', 1), ('artifact', 1), ('show', 1)]
[('monograph', 1), ('describes', 1), ('synthesis', 1), ('use', 1), ('biologically', 1), ('inspired', 1), ('artificial', 1), ('hydrocarbon', 1), ('network', 1), ('ahns', 1), ('approximation', 1), ('model', 1), ('associated', 1), ('machine', 1), ('learning', 1), ('novel', 1), ('computational', 1), ('algorithm', 1), ('exploit', 1), ('reader', 1)]
[('system', 3), ('human', 2), ('computer', 2), ('user', 2), ('importance', 1), ('interaction', 1), ('problem', 1), ('increasing', 1), ('due', 1), ('growing', 1), ('expectation', 1), ('general', 1), ('capability', 1), ('work', 1), ('life', 1), ('facilitation', 1), ('expect', 1), ('passive', 1), ('tool', 1)]
[('ifip', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('tc', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('part', 1), ('wcc', 1), ('daejeon', 1), ('south', 1), ('korea', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('conference', 3), ('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('rough', 1), ('set', 1), ('knowledge', 1), ('technology', 1), ('rskt', 1), ('held', 1), ('tianjin', 1), ('china', 1), ('november', 1), ('part', 1), ('joint', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('speech', 1), ('computer', 1), ('specom', 1), ('held', 1), ('hatfield', 1), ('uk', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('discovery', 1), ('science', 1), ('d', 1), ('held', 1), ('kyoto', 1), ('japan', 1), ('october', 1), ('co', 1), ('located', 1), ('algorithmic', 1), ('learning', 1), ('theory', 1), ('alt', 1), ('revised', 1)]
[('workshop', 2), ('pakdd', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('held', 1), ('conjunction', 1), ('st', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('jeju', 1), ('south', 1), ('korea', 1)]
[('problem', 2), ('book', 1), ('present', 1), ('latest', 1), ('research', 1), ('field', 1), ('optimization', 1), ('modeling', 1), ('algorithm', 1), ('discussing', 1), ('real', 1), ('world', 1), ('application', 1), ('associated', 1), ('new', 1), ('innovative', 1), ('methodology', 1), ('requirement', 1), ('demand', 1), ('solving', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('computational', 1), ('intelligence', 1), ('application', 1), ('ciia', 1), ('held', 1), ('oran', 1), ('algeria', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('hybridsystems', 1), ('biology', 1), ('hsb', 1), ('held', 1), ('part', 1), ('ecal', 1), ('event', 1), ('taormina', 1), ('italy', 1), ('september', 1), ('third', 1)]
[('bookconstitutes', 1), ('proceeding', 1), ('second', 1), ('australasian', 1), ('conference', 1), ('artificiallife', 1), ('computational', 1), ('intelligence', 1), ('acalci', 1), ('held', 1), ('canberra', 1), ('act', 1), ('australia', 1), ('february', 1), ('fullpapers', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('biomimetic', 1), ('biohybrid', 1), ('system', 1), ('living', 1), ('machine', 1), ('held', 1), ('paris', 1), ('france', 1), ('july', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computer', 1), ('mathematics', 1), ('cicm', 1), ('held', 1), ('hagenberg', 1), ('austria', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('science', 1), ('engineering', 1), ('management', 1), ('ksem', 1), ('held', 1), ('changchun', 1), ('china', 1), ('august', 1), ('revised', 1), ('full', 1)]
[('book', 2), ('fuzzy', 2), ('graph', 2), ('theory', 2), ('build', 1), ('recently', 1), ('published', 1), ('author', 1), ('continuing', 1), ('tradition', 1), ('provides', 1), ('reader', 1), ('extensive', 1), ('set', 1), ('tool', 1), ('applying', 1), ('mathematics', 1), ('social', 1), ('problem', 1)]
[('nbsp', 4), ('information', 1), ('infrastructure', 1), ('comprising', 1), ('computer', 1), ('embedded', 1), ('device', 1), ('network', 1), ('software', 1), ('system', 1), ('vital', 1), ('operation', 1), ('every', 1), ('sector', 1), ('chemical', 1), ('commercial', 1), ('facility', 1), ('communication', 1), ('critical', 1), ('manufacturing', 1), ('dam', 1)]
[('st', 2), ('programming', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('international', 1), ('conference', 1), ('application', 1), ('declarative', 1), ('knowledge', 1), ('management', 1), ('inap', 1), ('logic', 1), ('wlp', 1), ('th', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('information', 1), ('processing', 1), ('iip', 1), ('held', 1), ('nanning', 1), ('china', 1), ('october', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('chapter', 1), ('current', 1), ('state', 1), ('reproducibility', 1), ('reporting', 1), ('uncertainty', 1), ('aspect', 1), ('based', 1), ('sentimentanalysis', 1), ('contextualized', 1), ('graph', 1), ('embeddings', 1), ('adverse', 1), ('drug', 1), ('event', 1), ('detection', 1), ('licensed', 1), ('theterms', 1), ('creative', 1), ('common', 1)]
[('fuzzy', 2), ('book', 1), ('introduces', 1), ('reader', 1), ('fundamental', 1), ('concept', 1), ('logic', 1), ('describes', 1), ('necessary', 1), ('theoretical', 1), ('background', 1), ('number', 1), ('basic', 1), ('mathematical', 1), ('model', 1), ('moreover', 1), ('make', 1), ('familiar', 1), ('control', 1), ('important', 1), ('topic', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('engineering', 1), ('psychology', 1), ('cognitive', 1), ('ergonomics', 1), ('epce', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1)]
[('fuzzy', 4), ('imprecise', 2), ('line', 2), ('book', 1), ('offer', 1), ('rigorous', 1), ('mathematical', 1), ('analysis', 1), ('geometrical', 1), ('idea', 1), ('demonstrates', 1), ('use', 1), ('point', 1), ('interpreting', 1), ('location', 1), ('representing', 1), ('show', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('held', 1), ('shenyang', 1), ('china', 1), ('august', 1), ('total', 1), ('full', 1), ('short', 1), ('paper', 1)]
[('clef', 2), ('evaluation', 2), ('forum', 2), ('first', 2), ('volume', 1), ('celebrates', 1), ('twentieth', 1), ('anniversary', 1), ('cross', 1), ('language', 1), ('ten', 1), ('year', 1), ('conference', 1), ('lab', 1), ('trace', 1), ('evolution', 1), ('decade', 1), ('main', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('interactive', 1), ('collaborative', 1), ('robotics', 1), ('icr', 1), ('held', 1), ('istanbul', 1), ('turkey', 1), ('august', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('text', 1), ('speech', 1), ('dialogue', 1), ('tsd', 1), ('held', 1), ('brno', 1), ('czechrepublic', 1), ('september', 1), ('paper', 1), ('presented', 1), ('together', 1), ('abstract', 1), ('invited', 1), ('talk', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('collective', 1), ('nbsp', 1), ('intelligence', 1), ('icci', 1), ('held', 1), ('hendaye', 1), ('france', 1), ('september', 1), ('full', 1), ('paper', 1)]
[('ifip', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('nbsp', 1), ('wg', 1), ('international', 1), ('workshop', 1), ('history', 1), ('computing', 1), ('hc', 1), ('held', 1), ('th', 1), ('world', 1), ('computer', 1), ('congress', 1), ('wcc', 1), ('poznań', 1), ('poland', 1), ('september', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('discovery', 1), ('science', 1), ('d', 1), ('held', 1), ('split', 1), ('coratia', 1), ('october', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('together', 1), ('abstract', 1), ('invited', 1), ('talk', 1), ('volume', 1)]
[('th', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('china', 1), ('national', 1), ('conference', 1), ('computational', 1), ('linguistics', 1), ('ccl', 1), ('international', 1), ('symposium', 1), ('natural', 1), ('language', 1), ('processing', 1), ('based', 1), ('naturally', 1), ('annotated', 1), ('big', 1), ('data', 1), ('nlp', 1), ('nabd', 1), ('held', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('algorithmic', 1), ('learning', 1), ('theory', 1), ('alt', 1), ('held', 1), ('bari', 1), ('italy', 1), ('october', 1), ('co', 1), ('located', 1), ('discovery', 1), ('science', 1), ('d', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('modeling', 1), ('decision', 1), ('artificial', 1), ('intelligence', 1), ('mdai', 1), ('held', 1), ('sant', 1), ('cugat', 1), ('spain', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('iapr', 1), ('tc', 1), ('international', 1), ('workshop', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('pattern', 1), ('recognition', 1), ('annpr', 1), ('winterthur', 1), ('switzerland', 1), ('september', 1), ('conference', 1), ('virtually', 1), ('due', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('conceptual', 1), ('structure', 1), ('icc', 1), ('held', 1), ('bolzano', 1), ('italy', 1), ('september', 1), ('full', 1), ('short', 1), ('poster', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('edited', 1), ('book', 1), ('present', 1), ('scientific', 1), ('result', 1), ('international', 1), ('semi', 1), ('virtual', 1), ('workshop', 1), ('data', 1), ('science', 1), ('digital', 1), ('transformation', 1), ('fourth', 1), ('industrial', 1), ('revolution', 1), ('dsdt', 1), ('held', 1), ('october', 1), ('soongsil', 1), ('university', 1), ('seoul', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('lean', 1), ('educator', 1), ('conference', 1), ('elec', 1), ('took', 1), ('place', 1), ('galway', 1), ('ireland', 1), ('november', 1), ('event', 1), ('sponsored', 1), ('ifip', 1), ('wg', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 2), ('rough', 2), ('set', 2), ('theory', 2), ('special', 1), ('dedicated', 1), ('memory', 1), ('professor', 1), ('zdzisław', 1), ('pawlak', 1), ('father', 1), ('order', 1), ('commemorate', 1), ('th', 1), ('anniversary', 1), ('passing', 1), ('year', 1), ('consists', 1), ('chapter', 1)]
[('book', 2), ('present', 1), ('new', 1), ('development', 1), ('advance', 1), ('theory', 1), ('application', 1), ('design', 1), ('method', 1), ('computational', 1), ('intelligence', 1), ('integrated', 1), ('various', 1), ('area', 1), ('project', 1), ('management', 1), ('bim', 1), ('environment', 1), ('chapter', 1), ('span', 1), ('different', 1), ('soft', 1)]
[('book', 1), ('intelligent', 1), ('system', 1), ('science', 1), ('information', 1), ('carefully', 1), ('edited', 1), ('collection', 1), ('extended', 1), ('chapter', 1), ('selected', 1), ('paper', 1), ('field', 1), ('computational', 1), ('intelligence', 1), ('received', 1), ('highly', 1), ('recommended', 1), ('feedback', 1)]
[('book', 1), ('comprises', 1), ('paper', 1), ('diverse', 1), ('aspect', 1), ('fuzzy', 1), ('logic', 1), ('neural', 1), ('network', 1), ('nature', 1), ('inspired', 1), ('optimization', 1), ('meta', 1), ('heuristic', 1), ('application', 1), ('various', 1), ('area', 1), ('intelligent', 1), ('control', 1), ('robotics', 1), ('pattern', 1), ('recognition', 1), ('medical', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('precision', 1), ('assembly', 1), ('seminar', 1), ('ipas', 1), ('held', 1), ('chamonix', 1), ('france', 1), ('january', 1), ('nbsp', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('compare', 1), ('performance', 1), ('various', 1), ('evolutionary', 1), ('computation', 1), ('ec', 1), ('technique', 1), ('faced', 1), ('complex', 1), ('optimization', 1), ('problem', 1), ('extracted', 1), ('different', 1), ('engineering', 1), ('domain', 1), ('particularly', 1), ('focusing', 1), ('recently', 1), ('developed', 1), ('algorithm', 1)]
[('nbsp', 2), ('context', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('interdisciplinary', 1), ('conference', 1), ('modeling', 1), ('using', 1), ('held', 1), ('paris', 1), ('france', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('language', 1), ('data', 1), ('knowledge', 1), ('ldk', 1), ('held', 1), ('galway', 1), ('ireland', 1), ('june', 1), ('full', 1), ('short', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('education', 1), ('aied', 1), ('held', 1), ('wuhan', 1), ('china', 1), ('june', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('keynote', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('intelligent', 1), ('information', 1), ('database', 1), ('system', 1), ('aciids', 1), ('held', 1), ('bangkok', 1), ('thailand', 1), ('april', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('joint', 1), ('refereed', 1), ('proceeding', 1), ('calculemus', 1), ('digital', 1), ('mathematics', 1), ('library', 1), ('dml', 1), ('mathematical', 1), ('knowledge', 1), ('management', 1), ('mkm', 1), ('system', 1), ('project', 1), ('amp', 1), ('held', 1), ('coimbra', 1), ('portugal', 1), ('july', 1)]
[('rseisp', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('australasian', 1), ('joint', 1), ('conference', 1), ('rough', 1), ('set', 1), ('intelligent', 1), ('system', 1), ('paradigm', 1), ('granada', 1), ('madrid', 1), ('spain', 1), ('july', 1), ('along', 1), ('th', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('mexican', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('micai', 1), ('held', 1), ('tuxtla', 1), ('mexico', 1), ('november', 1), ('total', 1), ('paper', 1), ('plus', 1), ('invited', 1), ('talk', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('chinese', 1), ('lexical', 1), ('semantics', 1), ('workshop', 1), ('clsw', 1), ('held', 1), ('macau', 1), ('china', 1), ('june', 1), ('regular', 1), ('short', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('textbook', 1), ('introduces', 1), ('vast', 1), ('array', 1), ('feature', 1), ('powerful', 1), ('mathematical', 1), ('function', 1), ('mathematica', 1), ('using', 1), ('multitude', 1), ('clearly', 1), ('presented', 1), ('example', 1), ('worked', 1), ('problem', 1), ('section', 1), ('start', 1), ('description', 1), ('new', 1), ('topic', 1), ('basic', 1)]
[('data', 2), ('book', 1), ('discus', 1), ('challenge', 1), ('facing', 1), ('current', 1), ('research', 1), ('knowledge', 1), ('discovery', 1), ('mining', 1), ('posed', 1), ('huge', 1), ('volume', 1), ('complex', 1), ('gathered', 1), ('various', 1), ('real', 1), ('world', 1), ('application', 1), ('business', 1), ('process', 1), ('monitoring', 1), ('cybersecurity', 1)]
[('book', 1), ('explores', 1), ('several', 1), ('problem', 1), ('solution', 1), ('regarding', 1), ('data', 1), ('analysis', 1), ('prediction', 1), ('industrial', 1), ('application', 1), ('machine', 1), ('learning', 1), ('prominent', 1), ('topic', 1), ('modern', 1), ('industry', 1), ('influence', 1), ('felt', 1), ('many', 1), ('aspect', 1), ('everyday', 1), ('life', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('trust', 1), ('management', 1), ('ifiptm', 1), ('held', 1), ('darmstadt', 1), ('germany', 1), ('july', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('contribution', 1), ('written', 1), ('foremost', 1), ('international', 1), ('researcher', 1), ('practitioner', 1), ('genetic', 1), ('programming', 1), ('gp', 1), ('explore', 1), ('synergy', 1), ('theoretical', 1), ('empirical', 1), ('result', 1), ('real', 1), ('world', 1), ('problem', 1), ('producing', 1), ('comprehensive', 1), ('view', 1), ('state', 1)]
[('embedded', 2), ('vision', 2), ('illuminating', 1), ('collection', 1), ('offer', 1), ('fresh', 1), ('look', 1), ('latest', 1), ('advance', 1), ('field', 1), ('computer', 1), ('emerging', 1), ('area', 1), ('covered', 1), ('comprehensive', 1), ('text', 1), ('reference', 1), ('include', 1), ('realization', 1), ('technology', 1)]
[('approach', 2), ('rumor', 2), ('source', 2), ('book', 1), ('cover', 1), ('make', 1), ('four', 1), ('major', 1), ('contribution', 1), ('analyzing', 1), ('surveying', 1), ('pro', 1), ('con', 1), ('current', 1), ('identifying', 1), ('complex', 1), ('network', 1), ('proposing', 1), ('novel', 1), ('identify', 1), ('time', 1), ('varying', 1)]
[('present', 1), ('strategic', 1), ('perspective', 1), ('design', 1), ('methodology', 1), ('guide', 1), ('process', 1), ('developing', 1), ('digital', 1), ('product', 1), ('service', 1), ('provide', 1), ('real', 1), ('experience', 1), ('user', 1), ('material', 1), ('experienced', 1), ('run', 1), ('course', 1), ('fulfilment', 1)]
[('book', 1), ('focus', 1), ('development', 1), ('deployment', 1), ('industrial', 1), ('internet', 1), ('thing', 1), ('iiot', 1), ('paradigm', 1), ('discussing', 1), ('framework', 1), ('methodology', 1), ('benefit', 1), ('limitation', 1), ('providing', 1), ('case', 1), ('study', 1), ('employing', 1), ('iot', 1), ('vision', 1)]
[('tangible', 2), ('user', 2), ('interface', 2), ('distinguishingbetween', 1), ('tui', 1), ('interactive', 1), ('system', 1), ('ti', 1), ('book', 1), ('take', 1), ('account', 1), ('look', 1), ('howinteraction', 1), ('enabled', 1), ('using', 1), ('digital', 1), ('information', 1)]
[('big', 2), ('data', 2), ('book', 1), ('address', 1), ('key', 1), ('security', 1), ('challenge', 1), ('centric', 1), ('computing', 1), ('network', 1), ('system', 1), ('discus', 1), ('tackle', 1), ('using', 1), ('mix', 1), ('conventional', 1), ('state', 1), ('art', 1), ('technique', 1), ('nbsp', 1), ('incentive', 1), ('joining', 1)]
[('network', 2), ('timely', 1), ('textbook', 1), ('present', 1), ('comprehensive', 1), ('guide', 1), ('core', 1), ('topic', 1), ('cybersecurity', 1), ('covering', 1), ('issue', 1), ('security', 1), ('extend', 1), ('beyond', 1), ('traditional', 1), ('computer', 1), ('ubiquitous', 1), ('mobile', 1), ('communication', 1), ('online', 1), ('social', 1)]
[('self', 3), ('awareness', 2), ('computing', 2), ('system', 2), ('taking', 1), ('inspiration', 1), ('human', 1), ('book', 1), ('introduces', 1), ('new', 1), ('notion', 1), ('computational', 1), ('fundamental', 1), ('concept', 1), ('designing', 1), ('operating', 1), ('basic', 1), ('ability', 1), ('aware', 1)]
[('police', 2), ('intelligence', 2), ('important', 1), ('aspect', 1), ('successful', 1), ('operation', 1), ('ability', 1), ('obtain', 1), ('timely', 1), ('reliable', 1), ('actionable', 1), ('related', 1), ('investigation', 1), ('incident', 1), ('hand', 1), ('open', 1), ('source', 1), ('osint', 1), ('provides', 1)]
[('volume', 1), ('contains', 1), ('proceeding', 1), ('closely', 1), ('related', 1), ('workshop', 1), ('computational', 1), ('diffusion', 1), ('mri', 1), ('cdmri', 1), ('mathematical', 1), ('method', 1), ('brain', 1), ('connectivity', 1), ('mmbc', 1), ('held', 1), ('auspex', 1), ('th', 1), ('international', 1), ('conference', 1), ('medical', 1)]
[('data', 5), ('book', 1), ('cover', 1), ('computationally', 1), ('innovative', 1), ('method', 1), ('technology', 1), ('including', 1), ('collection', 1), ('elicitation', 1), ('processing', 1), ('analysis', 1), ('visualization', 1), ('presentation', 1), ('explores', 1), ('digital', 1), ('humanist', 1), ('harnessed', 1)]
[('authoritative', 1), ('volume', 1), ('present', 1), ('comprehensive', 1), ('guide', 1), ('evaluation', 1), ('design', 1), ('networked', 1), ('system', 1), ('improved', 1), ('disaster', 1), ('resilience', 1), ('text', 1), ('offer', 1), ('enlightening', 1), ('perspective', 1), ('issue', 1), ('relating', 1), ('major', 1), ('failure', 1), ('scenario', 1), ('including', 1)]
[('practically', 1), ('focused', 1), ('study', 1), ('guide', 1), ('introduces', 1), ('fundamental', 1), ('discrete', 1), ('mathematics', 1), ('extensive', 1), ('set', 1), ('classroom', 1), ('tested', 1), ('problem', 1), ('chapter', 1), ('present', 1), ('concise', 1), ('introduction', 1), ('relevant', 1), ('theory', 1), ('followed', 1), ('detailed', 1), ('account', 1)]
[('cybersecurity', 2), ('industry', 2), ('book', 1), ('introduces', 1), ('reader', 1), ('impact', 1), ('realization', 1), ('vision', 1), ('cover', 1), ('technological', 1), ('foundation', 1), ('within', 1), ('scope', 1), ('landscape', 1), ('detail', 1), ('existing', 1)]
[('graph', 2), ('algorithm', 2), ('clearly', 1), ('structured', 1), ('textbook', 1), ('reference', 1), ('present', 1), ('detailed', 1), ('comprehensive', 1), ('review', 1), ('fundamental', 1), ('principle', 1), ('sequential', 1), ('approach', 1), ('np', 1), ('hard', 1), ('problem', 1), ('approximation', 1), ('heuristic', 1)]
[('third', 2), ('hci', 2), ('first', 1), ('extensive', 1), ('compilation', 1), ('documenting', 1), ('contemporary', 1), ('wave', 1), ('covering', 1), ('key', 1), ('methodological', 1), ('development', 1), ('leading', 1), ('edge', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('second', 1), ('decade', 1), ('major', 1), ('current', 1), ('research', 1)]
[('textbook', 1), ('examines', 1), ('ethical', 1), ('social', 1), ('policy', 1), ('challenge', 1), ('arising', 1), ('rapidly', 1), ('continuously', 1), ('evolving', 1), ('computing', 1), ('technology', 1), ('ranging', 1), ('internet', 1), ('cross', 1), ('platform', 1), ('consisting', 1), ('ubiquitous', 1), ('portable', 1), ('wearable', 1), ('device', 1)]
[('game', 3), ('congestion', 2), ('nbsp', 1), ('fundamental', 1), ('class', 1), ('widely', 1), ('considered', 1), ('studied', 1), ('non', 1), ('cooperative', 1), ('theory', 1), ('introduced', 1), ('model', 1), ('several', 1), ('realistic', 1), ('scenario', 1), ('share', 1), ('limited', 1), ('quantity', 1), ('good', 1), ('service', 1)]
[('thoroughly', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('model', 1), ('driven', 1), ('engineering', 1), ('software', 1), ('development', 1), ('modelsward', 1), ('held', 1), ('funchal', 1), ('madeira', 1), ('portugal', 1), ('january', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('representation', 1), ('analysis', 1), ('recognition', 1), ('shape', 1), ('motion', 1), ('imaging', 1), ('data', 1), ('rfmi', 1), ('held', 1), ('sidi', 1), ('bou', 1), ('said', 1), ('village', 1), ('tunisia', 1), ('october', 1)]
[('ccis', 3), ('three', 1), ('volume', 1), ('set', 1), ('contains', 1), ('extended', 1), ('abstract', 1), ('poster', 1), ('presented', 1), ('st', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('took', 1), ('place', 1), ('orlando', 1), ('florida', 1), ('july', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('information', 1), ('communication', 1), ('technology', 1), ('development', 1), ('africa', 1), ('ict', 1), ('da', 1), ('held', 1), ('bahir', 1), ('dar', 1), ('ethiopia', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('sigsand', 1), ('plais', 1), ('eurosymposium', 1), ('titled', 1), ('information', 1), ('system', 1), ('research', 1), ('development', 1), ('application', 1), ('education', 1), ('held', 1), ('gdansk', 1), ('sopot', 1), ('poland', 1), ('september', 1), ('objective', 1)]
[('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('australasian', 1), ('symposium', 1), ('service', 1), ('research', 1), ('innovation', 1), ('assri', 1), ('conference', 1), ('held', 1), ('part', 1), ('september', 1), ('sydney', 1), ('australia', 1), ('december', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('paper', 1), ('held', 1), ('th', 1), ('international', 1), ('conference', 1), ('new', 1), ('trend', 1), ('model', 1), ('data', 1), ('engineering', 1), ('medi', 1), ('toulouse', 1), ('france', 1), ('october', 1), ('full', 1), ('three', 1), ('short', 1)]
[('paper', 2), ('book', 1), ('contains', 1), ('selection', 1), ('best', 1), ('th', 1), ('benelux', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('bnaic', 1), ('held', 1), ('groningen', 1), ('netherlands', 1), ('november', 1), ('nbsp', 1), ('full', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('management', 1), ('big', 1), ('data', 1), ('simbig', 1), ('held', 1), ('lima', 1), ('peru', 1), ('august', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('group', 1), ('decision', 1), ('negotiation', 1), ('gdn', 1), ('planned', 1), ('held', 1), ('toronto', 1), ('canada', 1), ('june', 1), ('cancelled', 1), ('due', 1)]
[('paper', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('argentine', 1), ('congress', 1), ('computer', 1), ('science', 1), ('cacic', 1), ('held', 1), ('río', 1), ('cuarto', 1), ('argentina', 1), ('october', 1), ('full', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('decision', 1), ('support', 1), ('system', 1), ('technology', 1), ('icdsst', 1), ('organised', 1), ('zaragoza', 1), ('spain', 1), ('held', 1), ('online', 1), ('due', 1), ('corona', 1), ('pandemic', 1)]
[('conference', 2), ('business', 2), ('book', 1), ('contains', 1), ('proceeding', 1), ('long', 1), ('running', 1), ('event', 1), ('held', 1), ('along', 1), ('caise', 1), ('relating', 1), ('area', 1), ('enterprise', 1), ('process', 1), ('information', 1), ('system', 1), ('modeling', 1), ('nbsp', 1), ('st', 1), ('international', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('innovation', 1), ('community', 1), ('service', 1), ('c', 1), ('held', 1), ('bhubaneswar', 1), ('india', 1), ('january', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('conference', 3), ('software', 2), ('quality', 2), ('day', 2), ('swqd', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('january', 1), ('started', 1), ('grown', 1), ('biggest', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('optimization', 1), ('application', 1), ('nbsp', 1), ('optimum', 1), ('held', 1), ('petrovac', 1), ('montenegro', 1), ('september', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('exam', 2), ('system', 2), ('book', 1), ('author', 1), ('introduces', 1), ('novel', 1), ('approach', 1), ('securing', 1), ('provides', 1), ('depth', 1), ('understanding', 1), ('useful', 1), ('studying', 1), ('security', 1), ('similar', 1), ('public', 1), ('tender', 1), ('personnel', 1), ('selection', 1), ('project', 1), ('review', 1)]
[('th', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('workshop', 1), ('computer', 1), ('game', 1), ('cgw', 1), ('held', 1), ('conjunction', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ijcai', 1), ('melbourne', 1), ('australia', 1), ('august', 1)]
[('anzhero', 2), ('sudzhensk', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('scientific', 1), ('conference', 1), ('information', 1), ('technology', 1), ('mathematical', 1), ('modeling', 1), ('named', 1), ('terpugov', 1), ('itmm', 1), ('russia', 1), ('held', 1)]
[('international', 2), ('workshop', 2), ('agent', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('proceeding', 1), ('th', 1), ('collaborative', 1), ('research', 1), ('development', 1), ('care', 1), ('second', 1), ('multi', 1), ('foundation', 1), ('social', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('workshop', 1), ('embracing', 1), ('global', 1), ('computing', 1), ('emerging', 1), ('economy', 1), ('egc', 1), ('held', 1), ('almaty', 1), ('kazakhstan', 1), ('february', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('bookconstitutes', 1), ('revised', 1), ('selected', 1), ('first', 1), ('international', 1), ('conference', 1), ('oninformation', 1), ('system', 1), ('security', 1), ('privacy', 1), ('icissp', 1), ('held', 1), ('anger', 1), ('france', 1), ('february', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('bpm', 3), ('forum', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('business', 1), ('process', 1), ('management', 1), ('held', 1), ('rio', 1), ('de', 1), ('janeiro', 1), ('september', 1), ('aim', 1), ('gathering', 1), ('paper', 1), ('showcase', 1), ('fresh', 1), ('idea', 1), ('emerging', 1)]
[('information', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('system', 1), ('crisis', 1), ('response', 1), ('management', 1), ('mediterranean', 1), ('country', 1), ('iscram', 1), ('med', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('october', 1), ('nbsp', 1)]
[('tutorial', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('lecture', 1), ('th', 1), ('european', 1), ('business', 1), ('intelligence', 1), ('big', 1), ('data', 1), ('summer', 1), ('school', 1), ('ebiss', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('june', 1), ('july', 1), ('given', 1), ('renowned', 1), ('expert', 1), ('covered', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('data', 1), ('stream', 1), ('mining', 1), ('processing', 1), ('dsmp', 1), ('held', 1), ('lviv', 1), ('ukraine', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 1), ('contains', 1), ('technical', 1), ('paper', 1), ('presented', 1), ('workshop', 1), ('took', 1), ('place', 1), ('th', 1), ('european', 1), ('conference', 1), ('service', 1), ('oriented', 1), ('cloud', 1), ('computing', 1), ('esocc', 1), ('held', 1), ('como', 1), ('italy', 1), ('september', 1), ('joint', 1), ('cloudways', 1), ('optimocs', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('business', 1), ('modeling', 1), ('software', 1), ('design', 1), ('bmsd', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('july', 1), ('full', 1), ('short', 1), ('selected', 1), ('inclusion', 1), ('deal', 1)]
[('paper', 3), ('volume', 2), ('nbsp', 2), ('reviewed', 2), ('constitutes', 1), ('selected', 1), ('th', 1), ('international', 1), ('advanced', 1), ('computing', 1), ('conference', 1), ('iacc', 1), ('held', 1), ('december', 1), ('full', 1), ('short', 1), ('presented', 1), ('thorougly', 1)]
[('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('complemented', 1), ('th', 1), ('joint', 1), ('european', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('september', 1), ('due', 1), ('covid', 1)]
[('caise', 3), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('forum', 1), ('held', 1), ('leuven', 1), ('belgium', 1), ('june', 1), ('part', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('information', 1), ('system', 1), ('engineering', 1)]
[('nbsp', 2), ('bias', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('algorithmic', 1), ('search', 1), ('recommendation', 1), ('held', 1), ('april', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('paper', 1), ('held', 1), ('th', 1), ('international', 1), ('conference', 1), ('new', 1), ('trend', 1), ('model', 1), ('data', 1), ('engineering', 1), ('medi', 1), ('marrakesh', 1), ('morocco', 1), ('october', 1), ('full', 1), ('short', 1)]
[('agile', 2), ('book', 1), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('development', 1), ('xp', 1), ('held', 1), ('rome', 1), ('italy', 1), ('wide', 1), ('application', 1), ('approach', 1), ('industry', 1), ('need', 1), ('collaboration', 1)]
[('moba', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('model', 1), ('driven', 1), ('organizational', 1), ('business', 1), ('agility', 1), ('took', 1), ('place', 1), ('leuven', 1), ('belgium', 1), ('june', 1), ('launched', 1), ('purpose', 1), ('fetching', 1), ('scientific', 1)]
[('agent', 2), ('volume', 1), ('contains', 1), ('thoroughly', 1), ('refereed', 1), ('revised', 1), ('paper', 1), ('detailing', 1), ('recent', 1), ('advance', 1), ('research', 1), ('designing', 1), ('trading', 1), ('mechanism', 1), ('mediated', 1), ('commerce', 1), ('originally', 1), ('presented', 1), ('three', 1), ('event', 1), ('workshop', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('applied', 1), ('informatics', 1), ('icai', 1), ('took', 1), ('place', 1), ('arequipa', 1), ('peru', 1), ('october', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('nbsp', 2), ('volume', 1), ('contains', 1), ('technical', 1), ('paper', 1), ('presented', 1), ('workshop', 1), ('phd', 1), ('symposium', 1), ('eu', 1), ('project', 1), ('track', 1), ('took', 1), ('place', 1), ('th', 1), ('european', 1), ('conference', 1), ('service', 1), ('oriented', 1), ('cloud', 1), ('computing', 1), ('esocc', 1), ('held', 1), ('heraklion', 1), ('crete', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('paper', 1), ('nbsp', 1), ('first', 1), ('international', 1), ('symposium', 1), ('geometry', 1), ('vision', 1), ('isgv', 1), ('auckland', 1), ('new', 1), ('zealand', 1), ('january', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('conference', 1), ('partially', 1), ('virtual', 1)]
[('book', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('conference', 1), ('business', 1), ('intelligence', 1), ('cbi', 1), ('took', 1), ('place', 1), ('beni', 1), ('mellal', 1), ('morocco', 1), ('full', 1), ('poster', 1), ('paper', 1), ('included', 1)]
[('paper', 2), ('transition', 2), ('volume', 1), ('comprises', 1), ('carefully', 1), ('revised', 1), ('th', 1), ('iutam', 1), ('symposium', 1), ('laminar', 1), ('turbulent', 1), ('held', 1), ('imperial', 1), ('college', 1), ('london', 1), ('uk', 1), ('september', 1), ('focus', 1), ('leading', 1), ('research', 1), ('understanding', 1)]
[('nbsp', 3), ('held', 2), ('international', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('nd', 1), ('conference', 1), ('database', 1), ('expert', 1), ('system', 1), ('application', 1), ('dexa', 1), ('virtual', 1), ('format', 1), ('september', 1), ('th', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('symposium', 1), ('summer', 1), ('school', 1), ('service', 1), ('oriented', 1), ('computing', 1), ('summersoc', 1), ('september', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('conference', 1), ('online', 1), ('nbsp', 1), ('full', 1), ('short', 1)]
[('agent', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('workshop', 1), ('co', 1), ('located', 1), ('th', 1), ('international', 1), ('conference', 1), ('practical', 1), ('application', 1), ('multi', 1), ('system', 1), ('paams', 1), ('held', 1), ('salamanca', 1), ('spain', 1), ('october', 1), ('total', 1), ('full', 1)]
[('nbsp', 4), ('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('computational', 1), ('collective', 1), ('intelligence', 1), ('icci', 1), ('held', 1), ('kallithea', 1), ('rhodes', 1), ('greece', 1), ('october', 1), ('november', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('th', 1), ('international', 1), ('conference', 1), ('applied', 1), ('informatics', 1), ('icai', 1), ('held', 1), ('nbsp', 1), ('buenos', 1), ('aire', 1), ('argentina', 1), ('october', 1), ('full', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('smart', 1), ('sustainable', 1), ('agriculture', 1), ('ssa', 1), ('held', 1), ('virtual', 1), ('event', 1), ('june', 1), ('paper', 1), ('presented', 1), ('thoroughly', 1), ('reviewed', 1), ('selected', 1)]
[('knowledge', 3), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('discovery', 1), ('engineering', 1), ('management', 1), ('ic', 1), ('virtual', 1), ('event', 1), ('november', 1), ('held', 1), ('virtually', 1), ('due', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('digital', 1), ('economy', 1), ('icdec', 1), ('took', 1), ('place', 1), ('bucharest', 1), ('romania', 1), ('full', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('international', 1), ('iccasa', 1), ('ictcc', 1), ('held', 1), ('november', 1), ('tho', 1), ('vietnam', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1), ('submission', 1)]
[('network', 2), ('data', 2), ('social', 1), ('analysis', 1), ('increasingly', 1), ('bridge', 1), ('discovery', 1), ('pattern', 1), ('diverse', 1), ('area', 1), ('study', 1), ('becomes', 1), ('available', 1), ('complex', 1), ('yet', 1), ('construction', 1), ('huge', 1), ('large', 1), ('often', 1), ('requires', 1), ('entirely', 1), ('different', 1), ('approach', 1)]
[('discussing', 1), ('classification', 1), ('support', 1), ('vector', 1), ('machine', 1), ('known', 1), ('capable', 1), ('efficient', 1), ('technique', 1), ('learn', 1), ('predict', 1), ('high', 1), ('accuracy', 1), ('within', 1), ('quick', 1), ('time', 1), ('frame', 1), ('yet', 1), ('black', 1), ('box', 1), ('mean', 1), ('make', 1), ('practical', 1), ('user', 1), ('quite', 1)]
[('data', 3), ('analysis', 2), ('book', 1), ('applies', 1), ('novel', 1), ('theory', 1), ('improve', 1), ('algorithm', 1), ('complex', 1), ('various', 1), ('field', 1), ('including', 1), ('object', 1), ('detection', 1), ('remote', 1), ('sensing', 1), ('transmission', 1), ('fusion', 1), ('gesture', 1), ('recognition', 1), ('medical', 1), ('image', 1), ('processing', 1)]
[('book', 1), ('study', 1), ('technological', 1), ('solution', 1), ('used', 1), ('alleviate', 1), ('current', 1), ('state', 1), ('legal', 1), ('system', 1), ('clogged', 1), ('courtroom', 1), ('inefficient', 1), ('conflict', 1), ('resolution', 1), ('method', 1), ('review', 1), ('shortcoming', 1), ('disadvantage', 1), ('traditional', 1)]
[('change', 3), ('tool', 2), ('civilization', 2), ('epoch', 2), ('book', 1), ('express', 1), ('conviction', 1), ('art', 1), ('creating', 1), ('greek', 1), ('techne', 1), ('character', 1), ('together', 1), ('co', 1), ('determines', 1), ('mean', 1), ('typical', 1)]
[('book', 1), ('devoted', 1), ('recent', 1), ('progress', 1), ('social', 1), ('network', 1), ('analysis', 1), ('high', 1), ('focus', 1), ('community', 1), ('detection', 1), ('evolution', 1), ('eleven', 1), ('chapter', 1), ('cover', 1), ('identification', 1), ('cohesive', 1), ('group', 1), ('core', 1), ('component', 1), ('key', 1), ('player', 1), ('either', 1), ('static', 1), ('dynamic', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('intelligent', 1), ('transport', 1), ('system', 1), ('intsys', 1), ('november', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('globalization', 1), ('trade', 1)]
[('human', 2), ('book', 1), ('nbsp', 1), ('offer', 1), ('clear', 1), ('description', 1), ('basic', 1), ('structure', 1), ('recognition', 1), ('classification', 1), ('activity', 1), ('using', 1), ('different', 1), ('type', 1), ('sensor', 1), ('module', 1), ('smart', 1), ('device', 1), ('healthcare', 1), ('education', 1), ('monitoring', 1), ('elderly', 1), ('daily', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('congress', 1), ('iceceng', 1), ('february', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('conference', 1), ('virtually', 1), ('full', 1), ('short', 1), ('paper', 1), ('selected', 1), ('submission', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('nature', 1), ('computation', 1), ('communication', 1), ('ictcc', 1), ('held', 1), ('march', 1), ('rach', 1), ('gia', 1), ('vietnam', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('personal', 1), ('satellite', 1), ('service', 1), ('psats', 1), ('held', 1), ('genova', 1), ('italy', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('monograph', 1), ('provides', 1), ('comprehensive', 1), ('rigorous', 1), ('exposition', 1), ('basic', 1), ('concept', 1), ('important', 1), ('modern', 1), ('research', 1), ('result', 1), ('concerning', 1), ('blockchain', 1), ('application', 1), ('book', 1), ('includes', 1), ('required', 1), ('cryptographic', 1), ('fundamental', 1), ('underpinning', 1)]
[('control', 2), ('springerbrief', 1), ('present', 1), ('adaptive', 1), ('resource', 1), ('allocation', 1), ('scheme', 1), ('secondary', 1), ('user', 1), ('dynamic', 1), ('spectrum', 1), ('access', 1), ('dsa', 1), ('cognitive', 1), ('radio', 1), ('network', 1), ('crns', 1), ('considering', 1), ('quality', 1), ('service', 1), ('requirement', 1), ('admission', 1), ('power', 1), ('rate', 1)]
[('wireless', 2), ('springerbrief', 1), ('provides', 1), ('concise', 1), ('guide', 1), ('applying', 1), ('energy', 1), ('transfer', 1), ('technique', 1), ('traditional', 1), ('battery', 1), ('powered', 1), ('sensor', 1), ('network', 1), ('examines', 1), ('benefit', 1), ('challenge', 1), ('power', 1), ('including', 1), ('efficiency', 1), ('reliability', 1), ('author', 1)]
[('theoretical', 2), ('advancement', 2), ('computing', 2), ('work', 1), ('presented', 1), ('book', 1), ('combination', 1), ('big', 1), ('data', 1), ('analysis', 1), ('cloud', 1), ('potential', 1), ('application', 1), ('scientific', 1), ('supported', 1), ('illustrative', 1), ('example', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('advancement', 1), ('science', 1), ('technology', 1), ('icast', 1), ('took', 1), ('place', 1), ('august', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('system', 2), ('nbsp', 1), ('book', 1), ('provides', 1), ('state', 1), ('art', 1), ('perspective', 1), ('intelligent', 1), ('process', 1), ('aware', 1), ('information', 1), ('present', 1), ('chapter', 1), ('specific', 1), ('facet', 1), ('approach', 1), ('applicable', 1), ('highlight', 1), ('novel', 1), ('advance', 1), ('development', 1)]
[('data', 2), ('book', 1), ('state', 1), ('user', 1), ('often', 1), ('suffer', 1), ('difficulty', 1), ('acquiring', 1), ('knowledge', 1), ('decision', 1), ('making', 1), ('others', 1), ('unsure', 1), ('existing', 1), ('useful', 1), ('reader', 1), ('released', 1), ('dilemma', 1), ('enabled', 1), ('act', 1), ('beyond', 1), ('pattern', 1)]
[('describes', 2), ('experimental', 2), ('thesis', 1), ('work', 1), ('field', 1), ('trapped', 1), ('ion', 1), ('quantum', 1), ('computation', 1), ('outline', 1), ('theory', 1), ('raman', 1), ('interaction', 1), ('examines', 1), ('various', 1), ('source', 1), ('error', 1), ('qubit', 1), ('gate', 1), ('detail', 1), ('exploration', 1)]
[('book', 2), ('provides', 1), ('insight', 1), ('blockchain', 1), ('technology', 1), ('application', 1), ('real', 1), ('world', 1), ('business', 1), ('supply', 1), ('chain', 1), ('health', 1), ('care', 1), ('education', 1), ('hrm', 1), ('retail', 1), ('logistics', 1), ('transport', 1), ('industry', 1), ('grant', 1), ('comprehensive', 1), ('understanding', 1)]
[('design', 2), ('book', 1), ('innovative', 1), ('research', 1), ('using', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('anns', 1), ('conducted', 1), ('automate', 1), ('sizing', 1), ('task', 1), ('rf', 1), ('ic', 1), ('used', 1), ('different', 1), ('step', 1), ('automatic', 1), ('process', 1), ('advance', 1), ('telecommunication', 1)]
[('iot', 2), ('technology', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('fourth', 1), ('international', 1), ('conference', 1), ('internet', 1), ('thing', 1), ('healthcare', 1), ('healthyiot', 1), ('held', 1), ('anger', 1), ('france', 1), ('october', 1), ('set', 1), ('existing', 1), ('emerging', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('symposium', 1), ('pervasive', 1), ('computing', 1), ('paradigm', 1), ('mental', 1), ('health', 1), ('mindcare', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('november', 1), ('second', 1), ('conference', 1), ('future', 1)]
[('book', 2), ('within', 2), ('chapter', 1), ('share', 1), ('endeavor', 1), ('associated', 1), ('human', 1), ('trait', 1), ('creative', 1), ('expression', 1), ('across', 1), ('digital', 1), ('medium', 1), ('wide', 1), ('ranging', 1), ('context', 1), ('making', 1), ('content', 1), ('perfect', 1), ('course', 1), ('study', 1), ('uptake', 1), ('related', 1), ('education', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('roceedings', 1), ('th', 1), ('international', 1), ('conference', 1), ('security', 1), ('privacy', 1), ('communication', 1), ('network', 1), ('securecomm', 1), ('held', 1), ('niagara', 1), ('fall', 1), ('canada', 1), ('october', 1), ('revised', 1), ('regular', 1), ('paper', 1)]
[('book', 1), ('present', 1), ('novel', 1), ('decision', 1), ('making', 1), ('support', 1), ('system', 1), ('based', 1), ('paraconsistent', 1), ('annotated', 1), ('evidential', 1), ('logic', 1), ('directly', 1), ('handle', 1), ('imprecise', 1), ('incomplete', 1), ('contradictory', 1), ('data', 1), ('author', 1), ('offer', 1), ('insight', 1), ('area', 1), ('engineering', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('smart', 1), ('grid', 1), ('innovative', 1), ('frontier', 1), ('telecommunication', 1), ('smartgift', 1), ('held', 1), ('chicago', 1), ('usa', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('conference', 1), ('industrial', 1), ('network', 1), ('intelligent', 1), ('system', 1), ('iniscom', 1), ('held', 1), ('da', 1), ('nang', 1), ('vietnam', 1), ('august', 1), ('full', 1), ('paper', 1), ('selected', 1), ('submission', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('smart', 1), ('city', 1), ('summit', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('held', 1), ('virtually', 1), ('volume', 1), ('combine', 1), ('selected', 1), ('paper', 1), ('seven', 1), ('namely', 1), ('aiscovid', 1), ('international', 1)]
[('circuit', 3), ('superconducting', 2), ('nbsp', 1), ('thesis', 1), ('devotes', 1), ('three', 1), ('introductory', 1), ('chapter', 1), ('outlining', 1), ('basic', 1), ('recipe', 1), ('constructing', 1), ('quantum', 1), ('hamiltonian', 1), ('arbitrary', 1), ('starting', 1), ('classical', 1), ('design', 1)]
[('springerbrief', 1), ('address', 1), ('main', 1), ('security', 1), ('concern', 1), ('smart', 1), ('grid', 1), ('privacy', 1), ('electricity', 1), ('consumer', 1), ('exchanged', 1), ('message', 1), ('integrity', 1), ('confidentiality', 1), ('authenticity', 1), ('participated', 1), ('party', 1), ('false', 1), ('data', 1), ('injection', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('emerging', 1), ('technology', 1), ('computing', 1), ('icetic', 1), ('held', 1), ('london', 1), ('uk', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('reviewed', 1), ('selected', 1)]
[('broad', 1), ('ranging', 1), ('text', 1), ('reference', 1), ('present', 1), ('fascinating', 1), ('review', 1), ('state', 1), ('art', 1), ('modeling', 1), ('simulation', 1), ('highlighting', 1), ('seminal', 1), ('work', 1), ('preeminent', 1), ('authority', 1), ('exciting', 1), ('development', 1), ('promising', 1), ('young', 1), ('researcher', 1)]
[('digital', 2), ('technology', 2), ('book', 1), ('examines', 1), ('enable', 1), ('collaboration', 1), ('way', 1), ('individual', 1), ('team', 1), ('business', 1), ('connect', 1), ('create', 1), ('value', 1), ('harness', 1), ('new', 1), ('opportunity', 1), ('brought', 1), ('world', 1), ('closer', 1), ('together', 1), ('created', 1)]
[('book', 1), ('present', 1), ('integrative', 1), ('review', 1), ('paleoneurology', 1), ('study', 1), ('endocranial', 1), ('morphology', 1), ('fossil', 1), ('specie', 1), ('main', 1), ('focus', 1), ('showing', 1), ('computed', 1), ('method', 1), ('used', 1), ('support', 1), ('advance', 1), ('evolutionary', 1), ('neuroanatomy', 1), ('paleoanthropology', 1)]
[('book', 1), ('outcome', 1), ('th', 1), ('international', 1), ('conference', 1), ('enviroinfo', 1), ('hosted', 1), ('virtually', 1), ('nicosia', 1), ('cyprus', 1), ('research', 1), ('centre', 1), ('interactive', 1), ('medium', 1), ('smart', 1), ('system', 1), ('emerging', 1), ('technology', 1), ('rise', 1), ('present', 1), ('selection', 1), ('paper', 1)]
[('primary', 1), ('aim', 1), ('volume', 1), ('provide', 1), ('researcher', 1), ('engineer', 1), ('academic', 1), ('industry', 1), ('date', 1), ('coverage', 1), ('new', 1), ('result', 1), ('field', 1), ('robotic', 1), ('welding', 1), ('intelligent', 1), ('system', 1), ('automation', 1), ('book', 1), ('mainly', 1), ('based', 1), ('paper', 1)]
[('paper', 1), ('proceeding', 1), ('selected', 1), ('submission', 1), ('th', 1), ('international', 1), ('conference', 1), ('queueing', 1), ('theory', 1), ('network', 1), ('application', 1), ('qtna', 1), ('held', 1), ('august', 1), ('noi', 1), ('long', 1), ('vietnam', 1), ('contribution', 1)]
[('agent', 2), ('research', 1), ('multi', 1), ('system', 1), ('matured', 1), ('last', 1), ('decade', 1), ('many', 1), ('effective', 1), ('application', 1), ('technology', 1), ('deployed', 1), ('paams', 1), ('provides', 1), ('international', 1), ('forum', 1), ('present', 1), ('discus', 1), ('latest', 1), ('scientific', 1), ('development', 1)]
[('worldcist', 2), ('book', 1), ('present', 1), ('selection', 1), ('paper', 1), ('world', 1), ('conference', 1), ('information', 1), ('system', 1), ('technology', 1), ('held', 1), ('st', 1), ('th', 1), ('april', 1), ('porto', 1), ('santo', 1), ('island', 1), ('madeira', 1), ('portugal', 1), ('global', 1), ('forum', 1)]
[('museum', 2), ('state', 1), ('art', 1), ('book', 1), ('explores', 1), ('implication', 1), ('contemporary', 1), ('trend', 1), ('shaping', 1), ('future', 1), ('experience', 1), ('four', 1), ('separate', 1), ('section', 1), ('look', 1), ('developing', 1), ('dialogical', 1), ('relationship', 1), ('audience', 1)]
[('th', 3), ('convention', 2), ('volume', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('csi', 1), ('annual', 1), ('computer', 1), ('society', 1), ('india', 1), ('theme', 1), ('ict', 1), ('critical', 1), ('infrastructure', 1), ('held', 1), ('december', 1), ('hotel', 1), ('novotel', 1), ('varun', 1), ('beach', 1)]
[('software', 2), ('th', 2), ('book', 1), ('includes', 1), ('selection', 1), ('paper', 1), ('international', 1), ('conference', 1), ('process', 1), ('improvement', 1), ('cimps', 1), ('presenting', 1), ('trend', 1), ('application', 1), ('engineering', 1), ('held', 1), ('october', 1), ('zacatecas', 1), ('mexico', 1)]
[('book', 2), ('gather', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('mechatronics', 1), ('intelligent', 1), ('robotics', 1), ('icmir', 1), ('held', 1), ('kunming', 1), ('china', 1), ('cover', 1), ('total', 1), ('paper', 1), ('divided', 1), ('seven', 1), ('different', 1)]
[('computing', 2), ('ibica', 2), ('volume', 1), ('advance', 1), ('intelligent', 1), ('system', 1), ('contains', 1), ('accepted', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('innovation', 1), ('bio', 1), ('inspired', 1), ('application', 1), ('aim', 1), ('provide', 1)]
[('database', 2), ('book', 1), ('report', 1), ('state', 1), ('art', 1), ('research', 1), ('application', 1), ('field', 1), ('information', 1), ('system', 1), ('includes', 1), ('fourteen', 1), ('selected', 1), ('short', 1), ('contribution', 1), ('presented', 1), ('east', 1), ('european', 1), ('conference', 1), ('advance', 1)]
[('kse', 2), ('field', 1), ('knowledge', 1), ('system', 1), ('engineering', 1), ('experienced', 1), ('rapid', 1), ('development', 1), ('inspired', 1), ('many', 1), ('application', 1), ('world', 1), ('information', 1), ('technology', 1), ('last', 1), ('decade', 1), ('conference', 1), ('aim', 1), ('providing', 1), ('open', 1), ('international', 1), ('forum', 1)]
[('relation', 3), ('quantity', 2), ('economics', 1), ('many', 1), ('related', 1), ('economic', 1), ('often', 1), ('complex', 1), ('science', 1), ('engineering', 1), ('independence', 1), ('others', 1), ('approximated', 1)]
[('computer', 2), ('new', 1), ('computerized', 1), ('approach', 1), ('various', 1), ('problem', 1), ('become', 1), ('critically', 1), ('important', 1), ('healthcare', 1), ('assisted', 1), ('diagnosis', 1), ('extended', 1), ('towards', 1), ('support', 1), ('clinical', 1), ('treatment', 1), ('mathematical', 1), ('information', 1), ('analysis', 1), ('application', 1)]
[('book', 1), ('presenting', 1), ('proceeding', 1), ('future', 1), ('technology', 1), ('conference', 1), ('ftc', 1), ('remarkable', 1), ('collection', 1), ('chapter', 1), ('covering', 1), ('wide', 1), ('range', 1), ('topic', 1), ('including', 1), ('limited', 1), ('computing', 1), ('electronics', 1), ('artificial', 1), ('intelligence', 1)]
[('research', 2), ('presenting', 1), ('collection', 1), ('high', 1), ('quality', 1), ('paper', 1), ('image', 1), ('processing', 1), ('communication', 1), ('book', 1), ('discus', 1), ('emerging', 1), ('application', 1), ('currently', 1), ('available', 1), ('solution', 1), ('outline', 1), ('potential', 1), ('future', 1), ('technique', 1)]
[('conference', 2), ('book', 1), ('includes', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('artificial', 1), ('intelligence', 1), ('medical', 1), ('engineering', 1), ('education', 1), ('aimee', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('october', 1), ('covered', 1), ('advance', 1), ('development', 1)]
[('conference', 2), ('book', 1), ('provides', 1), ('selection', 1), ('best', 1), ('paper', 1), ('presented', 1), ('th', 1), ('portuguese', 1), ('association', 1), ('information', 1), ('system', 1), ('capsi', 1), ('held', 1), ('focus', 1), ('proceeding', 1), ('lie', 1), ('interplay', 1)]
[('artificial', 2), ('intelligence', 2), ('intelligent', 2), ('book', 1), ('discus', 1), ('current', 1), ('trend', 1), ('application', 1), ('research', 1), ('system', 1), ('including', 1), ('proceeding', 1), ('method', 1), ('algorithm', 1), ('section', 1), ('th', 1), ('computer', 1), ('science', 1)]
[('software', 3), ('engineering', 2), ('book', 1), ('present', 1), ('method', 1), ('context', 1), ('intelligent', 1), ('system', 1), ('discus', 1), ('real', 1), ('world', 1), ('problem', 1), ('exploratory', 1), ('research', 1), ('describing', 1), ('novel', 1), ('approach', 1), ('application', 1), ('design', 1)]
[('nbsp', 5), ('future', 2), ('book', 1), ('present', 1), ('state', 1), ('art', 1), ('intelligent', 1), ('method', 1), ('technique', 1), ('solving', 1), ('real', 1), ('world', 1), ('problemsand', 1), ('offer', 1), ('vision', 1), ('research', 1), ('featuring', 1), ('paper', 1), ('th', 1), ('technology', 1), ('conference', 1), ('held', 1)]
[('universidad', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('advance', 1), ('emerging', 1), ('trend', 1), ('technology', 1), ('icaett', 1), ('held', 1), ('quito', 1), ('ecuador', 1), ('jointly', 1), ('organized', 1), ('tecnológica', 1), ('israel', 1)]
[('symposium', 2), ('book', 1), ('comprises', 1), ('high', 1), ('quality', 1), ('refereed', 1), ('research', 1), ('paper', 1), ('presented', 1), ('international', 1), ('computer', 1), ('science', 1), ('digital', 1), ('economy', 1), ('intelligent', 1), ('system', 1), ('csdeis', 1), ('negetiveemoji', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('october', 1)]
[('book', 1), ('composed', 1), ('paper', 1), ('accepted', 1), ('presentation', 1), ('discussion', 1), ('international', 1), ('conference', 1), ('information', 1), ('technology', 1), ('system', 1), ('icits', 1), ('held', 1), ('universidad', 1), ('distrital', 1), ('francisco', 1), ('josé', 1), ('de', 1), ('caldas', 1), ('bogotá', 1), ('colombia', 1)]
[('system', 2), ('infus', 2), ('book', 1), ('gather', 1), ('recent', 1), ('development', 1), ('fuzzy', 1), ('intelligence', 1), ('real', 1), ('complex', 1), ('presented', 1), ('held', 1), ('istanbul', 1), ('july', 1), ('conference', 1), ('established', 1), ('international', 1), ('research', 1), ('forum', 1)]
[('book', 1), ('comprises', 1), ('high', 1), ('quality', 1), ('refereed', 1), ('research', 1), ('paper', 1), ('presented', 1), ('third', 1), ('international', 1), ('conference', 1), ('computer', 1), ('science', 1), ('engineering', 1), ('education', 1), ('application', 1), ('iccseea', 1), ('held', 1), ('kyiv', 1), ('ukraine', 1), ('january', 1), ('organized', 1), ('jointly', 1)]
[('computing', 2), ('book', 1), ('report', 1), ('new', 1), ('theory', 1), ('application', 1), ('field', 1), ('intelligent', 1), ('system', 1), ('cover', 1), ('cutting', 1), ('edge', 1), ('computational', 1), ('artificial', 1), ('intelligence', 1), ('method', 1), ('advance', 1), ('computer', 1), ('vision', 1), ('big', 1), ('data', 1), ('cloud', 1), ('computation', 1)]
[('book', 1), ('composed', 1), ('selection', 1), ('article', 1), ('world', 1), ('conference', 1), ('information', 1), ('system', 1), ('technology', 1), ('worldcist', 1), ('held', 1), ('online', 1), ('march', 1), ('april', 1), ('hangra', 1), ('de', 1), ('heroismo', 1), ('terceira', 1), ('island', 1)]
[('book', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('latest', 1), ('advance', 1), ('trend', 1), ('information', 1), ('technology', 1), ('science', 1), ('engineering', 1), ('specifically', 1), ('address', 1), ('number', 1), ('broad', 1), ('theme', 1), ('including', 1), ('multi', 1), ('modal', 1), ('informatics', 1), ('data', 1), ('mining', 1), ('agent', 1), ('based', 1)]
[('book', 1), ('composed', 1), ('selection', 1), ('article', 1), ('world', 1), ('conference', 1), ('information', 1), ('system', 1), ('technology', 1), ('worldcist', 1), ('held', 1), ('online', 1), ('march', 1), ('april', 1), ('hangra', 1), ('de', 1), ('heroismo', 1), ('terceira', 1), ('island', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('neurois', 1), ('retreat', 1), ('june', 1), ('vienna', 1), ('austria', 1), ('reporting', 1), ('topic', 1), ('intersection', 1), ('information', 1), ('system', 1), ('research', 1), ('neurophysiology', 1), ('brain', 1), ('science', 1), ('reader', 1), ('discover', 1), ('latest', 1)]
[('essay', 2), ('mathematics', 2), ('book', 1), ('present', 1), ('four', 1), ('mathematical', 1), ('explore', 1), ('foundation', 1), ('related', 1), ('topic', 1), ('ranging', 1), ('philosophy', 1), ('logic', 1), ('modern', 1), ('computer', 1), ('connected', 1), ('historical', 1), ('evolution', 1), ('concept', 1)]
[('software', 2), ('effort', 1), ('estimation', 1), ('oldest', 1), ('important', 1), ('problem', 1), ('project', 1), ('management', 1), ('thus', 1), ('today', 1), ('large', 1), ('number', 1), ('model', 1), ('unique', 1), ('strength', 1), ('weakness', 1), ('general', 1), ('even', 1), ('importantly', 1)]
[('behave', 2), ('growing', 1), ('body', 1), ('literature', 1), ('focus', 1), ('similarity', 1), ('difference', 1), ('offline', 1), ('world', 1), ('v', 1), ('virtual', 1), ('environment', 1), ('data', 1), ('mining', 1), ('aided', 1), ('discovering', 1), ('interesting', 1), ('insight', 1)]
[('cancer', 4), ('stem', 3), ('cell', 3), ('book', 2), ('explores', 1), ('role', 1), ('diagnosis', 1), ('treatment', 1), ('cure', 1), ('tackle', 1), ('novel', 1), ('methodology', 1), ('marker', 1), ('identification', 1), ('respiration', 1), ('metabolism', 1), ('genetic', 1)]
[('data', 2), ('intelligence', 2), ('time', 2), ('book', 1), ('approach', 1), ('big', 1), ('artificial', 1), ('machine', 1), ('learning', 1), ('business', 1), ('lens', 1), ('science', 1), ('grown', 1), ('accustomed', 1), ('seeing', 1), ('term', 1), ('mentioned', 1), ('mainstream', 1), ('medium', 1)]
[('music', 2), ('textbook', 1), ('provides', 1), ('profound', 1), ('technological', 1), ('knowledge', 1), ('comprehensive', 1), ('treatment', 1), ('essential', 1), ('topic', 1), ('processing', 1), ('information', 1), ('retrieval', 1), ('including', 1), ('numerous', 1), ('example', 1), ('figure', 1), ('exercise', 1), ('book', 1), ('suited', 1)]
[('conference', 2), ('volume', 1), ('present', 1), ('proceeding', 1), ('ecscw', 1), ('th', 1), ('european', 1), ('computer', 1), ('supported', 1), ('cooperative', 1), ('work', 1), ('organized', 1), ('university', 1), ('oslo', 1), ('norway', 1), ('provides', 1), ('venue', 1), ('exploring', 1), ('novel', 1), ('open', 1), ('critical', 1), ('approach', 1)]
[('landing', 2), ('book', 1), ('report', 1), ('design', 1), ('development', 1), ('system', 1), ('assist', 1), ('remote', 1), ('pilot', 1), ('procedure', 1), ('particular', 1), ('cover', 1), ('previously', 1), ('neglected', 1), ('topic', 1), ('namely', 1), ('search', 1), ('best', 1), ('pathway', 1), ('site', 1), ('describes', 1)]
[('information', 2), ('social', 2), ('medium', 2), ('book', 1), ('introduces', 1), ('field', 1), ('health', 1), ('web', 1), ('science', 1), ('present', 1), ('method', 1), ('gathering', 1), ('written', 1), ('data', 1), ('explores', 1), ('availability', 1), ('utility', 1), ('personal', 1), ('medical', 1), ('shared', 1), ('platform', 1)]
[('intelligent', 2), ('inspiration', 1), ('book', 1), ('came', 1), ('industrial', 1), ('session', 1), ('ismis', 1), ('conference', 1), ('warsaw', 1), ('cover', 1), ('numerous', 1), ('application', 1), ('technology', 1), ('various', 1), ('branch', 1), ('industry', 1), ('computational', 1), ('method', 1), ('big', 1), ('data', 1)]
[('book', 2), ('provides', 1), ('view', 1), ('low', 1), ('rank', 1), ('sparse', 1), ('computing', 1), ('especially', 1), ('approximation', 1), ('recovery', 1), ('representation', 1), ('scaling', 1), ('coding', 1), ('embedding', 1), ('learning', 1), ('among', 1), ('unconstrained', 1), ('visual', 1), ('data', 1), ('includes', 1), ('chapter', 1), ('covering', 1), ('multiple', 1), ('emerging', 1), ('topic', 1)]
[('practitioner', 2), ('book', 1), ('reflects', 1), ('author', 1), ('year', 1), ('hand', 1), ('experience', 1), ('academic', 1), ('primarily', 1), ('intended', 1), ('executive', 1), ('manager', 1), ('want', 1), ('redefine', 1), ('way', 1), ('think', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1)]
[('book', 1), ('gather', 1), ('collection', 1), ('latest', 1), ('research', 1), ('application', 1), ('proposal', 1), ('introducing', 1), ('reader', 1), ('innovation', 1), ('concept', 1), ('diverse', 1), ('environment', 1), ('system', 1), ('provide', 1), ('student', 1), ('professional', 1), ('alike', 1)]
[('present', 2), ('book', 1), ('modular', 1), ('expandable', 1), ('technique', 1), ('rapidly', 1), ('emerging', 1), ('research', 1), ('area', 1), ('automatic', 1), ('configuration', 1), ('selection', 1), ('best', 1), ('algorithm', 1), ('instance', 1), ('hand', 1), ('author', 1), ('basic', 1), ('model', 1), ('behind', 1), ('isac', 1), ('detail', 1)]
[('data', 1), ('management', 1), ('analysis', 1), ('fastest', 1), ('growing', 1), ('challenging', 1), ('area', 1), ('research', 1), ('development', 1), ('academia', 1), ('industry', 1), ('numerous', 1), ('type', 1), ('application', 1), ('service', 1), ('studied', 1), ('examined', 1), ('field', 1), ('resulting', 1)]
[('paper', 2), ('constraint', 2), ('decision', 2), ('making', 2), ('book', 1), ('present', 1), ('extended', 1), ('version', 1), ('selected', 1), ('annual', 1), ('international', 1), ('workshop', 1), ('programming', 1), ('address', 1), ('stage', 1), ('negetiveemoji', 1), ('precisely', 1)]
[('agvs', 2), ('book', 1), ('provides', 1), ('reader', 1), ('extensive', 1), ('information', 1), ('path', 1), ('planning', 1), ('optimization', 1), ('single', 1), ('multiple', 1), ('autonomous', 1), ('guided', 1), ('vehicle', 1), ('discus', 1), ('practical', 1), ('issue', 1), ('involved', 1), ('advanced', 1), ('industrial', 1), ('application', 1)]
[('book', 3), ('covid', 2), ('pandemic', 2), ('first', 1), ('deal', 1), ('affected', 1), ('country', 1), ('world', 1), ('made', 1), ('significant', 1), ('impact', 1), ('daily', 1), ('life', 1), ('healthcare', 1), ('facility', 1), ('treatment', 1), ('system', 1), ('cover', 1)]
[('web', 2), ('information', 2), ('book', 1), ('initiate', 1), ('transformation', 1), ('self', 1), ('managing', 1), ('autonomous', 1), ('system', 1), ('challenge', 1), ('today', 1), ('embracing', 1), ('role', 1), ('big', 1), ('search', 1), ('engine', 1), ('centralized', 1), ('manager', 1), ('last', 1), ('decade', 1), ('world', 1), ('wide', 1), ('became', 1)]
[('reader', 2), ('plan', 2), ('book', 1), ('guide', 1), ('building', 1), ('security', 1), ('offering', 1), ('template', 1), ('help', 1), ('prioritize', 1), ('risk', 1), ('conform', 1), ('regulation', 1), ('defense', 1), ('secure', 1), ('proprietary', 1), ('confidential', 1), ('information', 1), ('process', 1), ('documented', 1)]
[('problem', 3), ('book', 1), ('present', 1), ('recent', 1), ('contribution', 1), ('significant', 1), ('development', 1), ('advanced', 1), ('issue', 1), ('challenge', 1), ('real', 1), ('world', 1), ('application', 1), ('optimization', 1), ('involve', 1), ('different', 1), ('type', 1), ('constraint', 1), ('called', 1)]
[('play', 2), ('book', 1), ('present', 1), ('comprehensive', 1), ('guide', 1), ('design', 1), ('playing', 1), ('robot', 1), ('related', 1), ('experience', 1), ('natural', 1), ('activity', 1), ('building', 1), ('improving', 1), ('ability', 1), ('reveals', 1), ('important', 1), ('particularly', 1), ('person', 1), ('disability', 1), ('many', 1)]
[('conference', 2), ('design', 2), ('cooperative', 2), ('volume', 1), ('present', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('system', 1), ('coop', 1), ('venue', 1), ('multidisciplinary', 1), ('research', 1), ('contributing', 1), ('assessment', 1), ('analysis', 1)]
[('design', 3), ('system', 2), ('book', 1), ('present', 1), ('methodology', 1), ('practically', 1), ('applicable', 1), ('architectural', 1), ('broad', 1), ('range', 1), ('based', 1), ('fundamental', 1), ('concept', 1), ('conceive', 1), ('specify', 1), ('required', 1), ('functional', 1), ('property', 1)]
[('book', 2), ('present', 1), ('key', 1), ('advance', 1), ('intelligent', 1), ('information', 1), ('technology', 1), ('industry', 1), ('lecture', 1), ('note', 1), ('network', 1), ('system', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('main', 1), ('track', 1), ('iiti', 1), ('fifth', 1), ('international', 1), ('scientific', 1), ('conference', 1)]
[('book', 1), ('present', 1), ('general', 1), ('objective', 1), ('rev', 1), ('conference', 1), ('contribute', 1), ('discus', 1), ('fundamental', 1), ('application', 1), ('experience', 1), ('field', 1), ('online', 1), ('remote', 1), ('engineering', 1), ('virtual', 1), ('instrumentation', 1), ('related', 1), ('new', 1)]
[('framework', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('spes', 1), ('xt', 1), ('modeling', 1), ('moreover', 1), ('show', 1), ('applicability', 1), ('development', 1), ('embedded', 1), ('system', 1), ('different', 1), ('industry', 1), ('domain', 1), ('report', 1), ('lesson', 1), ('learned', 1)]
[('perm', 3), ('global', 2), ('challenge', 2), ('book', 1), ('comprises', 1), ('proceeding', 1), ('international', 1), ('forum', 1), ('science', 1), ('st', 1), ('century', 1), ('held', 1), ('october', 1), ('th', 1), ('rd', 1), ('state', 1), ('university', 1), ('russia', 1), ('determine', 1), ('main', 1), ('trend', 1)]
[('book', 1), ('present', 1), ('volume', 1), ('selected', 1), ('research', 1), ('paper', 1), ('presented', 1), ('second', 1), ('international', 1), ('conference', 1), ('digital', 1), ('technology', 1), ('application', 1), ('icdta', 1), ('held', 1), ('sidi', 1), ('mohamed', 1), ('ben', 1), ('abdellah', 1), ('university', 1), ('fez', 1), ('morocco', 1), ('january', 1)]
[('book', 1), ('offer', 1), ('exchange', 1), ('idea', 1), ('scientist', 1), ('technician', 1), ('academic', 1), ('industrial', 1), ('sector', 1), ('essential', 1), ('facilitate', 1), ('development', 1), ('system', 1), ('meet', 1), ('increasing', 1), ('demand', 1), ('today', 1), ('society', 1)]
[('csa', 2), ('book', 1), ('gather', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('rd', 1), ('conference', 1), ('computing', 1), ('system', 1), ('application', 1), ('held', 1), ('ecole', 1), ('militaire', 1), ('polytechnique', 1), ('algiers', 1), ('algeria', 1), ('april', 1), ('constitutes', 1), ('leading', 1), ('forum', 1)]
[('international', 2), ('conference', 2), ('book', 1), ('present', 1), ('outcome', 1), ('th', 1), ('cyber', 1), ('security', 1), ('intelligence', 1), ('analytics', 1), ('csia', 1), ('dedicated', 1), ('promoting', 1), ('novel', 1), ('theoretical', 1), ('applied', 1), ('research', 1), ('advance', 1)]
[('system', 3), ('information', 2), ('software', 2), ('book', 1), ('cover', 1), ('following', 1), ('main', 1), ('topic', 1), ('nbsp', 1), ('knowledge', 1), ('management', 1), ('organizational', 1), ('model', 1), ('modeling', 1), ('architecture', 1), ('application', 1), ('tool', 1)]
[('system', 3), ('information', 2), ('software', 2), ('book', 1), ('cover', 1), ('following', 1), ('main', 1), ('topic', 1), ('nbsp', 1), ('knowledge', 1), ('management', 1), ('organizational', 1), ('model', 1), ('modeling', 1), ('architecture', 1), ('application', 1), ('tool', 1)]
[('peer', 2), ('book', 1), ('state', 1), ('blockchain', 1), ('technology', 1), ('provides', 1), ('secure', 1), ('distributed', 1), ('decentralized', 1), ('network', 1), ('advanced', 1), ('cryptography', 1), ('primitive', 1), ('protocol', 1), ('important', 1), ('question', 1), ('arises', 1), ('quantum', 1), ('computing', 1), ('world', 1), ('test', 1)]
[('finding', 2), ('science', 2), ('engineering', 2), ('technology', 2), ('sustainability', 2), ('book', 1), ('highlight', 1), ('recent', 1), ('advance', 1), ('issue', 1), ('aim', 1), ('discus', 1), ('reflect', 1), ('share', 1), ('experience', 1), ('addressing', 1)]
[('book', 2), ('smart', 2), ('discus', 1), ('application', 1), ('different', 1), ('machine', 1), ('learning', 1), ('technique', 1), ('sub', 1), ('concept', 1), ('city', 1), ('energy', 1), ('transportation', 1), ('waste', 1), ('management', 1), ('health', 1), ('infrastructure', 1), ('etc', 1), ('focus', 1), ('come', 1)]
[('springer', 2), ('smart', 2), ('book', 1), ('nature', 1), ('another', 1), ('proof', 1), ('outstanding', 1), ('greatness', 1), ('lively', 1), ('interface', 1), ('computational', 1), ('optimization', 1), ('green', 1), ('ict', 1), ('intelligence', 1), ('machine', 1), ('learning', 1), ('master', 1), ('piece', 1), ('community', 1)]
[('computer', 2), ('book', 1), ('author', 1), ('argues', 1), ('basis', 1), ('consider', 1), ('intelligence', 1), ('algorithmic', 1), ('root', 1), ('present', 1), ('holistic', 1), ('view', 1), ('showing', 1), ('example', 1), ('explaining', 1), ('approach', 1), ('encompass', 1), ('theoretical', 1), ('science', 1)]
[('book', 2), ('research', 2), ('th', 2), ('present', 1), ('high', 1), ('quality', 1), ('paper', 1), ('presented', 1), ('st', 1), ('aue', 1), ('international', 1), ('conference', 1), ('aueirc', 1), ('organized', 1), ('american', 1), ('university', 1), ('emirate', 1), ('held', 1), ('november', 1), ('dubai', 1), ('broadly', 1), ('divided', 1)]
[('accessible', 1), ('textbook', 1), ('reference', 1), ('review', 1), ('fundamental', 1), ('concept', 1), ('practical', 1), ('issue', 1), ('involved', 1), ('designing', 1), ('digital', 1), ('surveillance', 1), ('system', 1), ('fully', 1), ('exploit', 1), ('power', 1), ('intelligent', 1), ('computing', 1), ('technique', 1), ('book', 1), ('present', 1), ('comprehensive', 1), ('coverage', 1)]
[('nbsp', 2), ('text', 1), ('analytics', 1), ('field', 1), ('lie', 1), ('interface', 1), ('information', 1), ('retrieval', 1), ('machine', 1), ('learning', 1), ('natural', 1), ('language', 1), ('processing', 1), ('textbook', 1), ('carefully', 1), ('cover', 1), ('coherently', 1), ('organized', 1), ('framework', 1), ('drawn', 1), ('intersecting', 1), ('topic', 1)]
[('software', 2), ('engineering', 2), ('book', 1), ('present', 1), ('contemporary', 1), ('empirical', 1), ('method', 1), ('related', 1), ('plurality', 1), ('research', 1), ('methodology', 1), ('human', 1), ('factor', 1), ('data', 1), ('collection', 1), ('processing', 1), ('aggregation', 1), ('synthesis', 1), ('evidence', 1), ('impact', 1)]
[('refinement', 2), ('cornerstone', 1), ('formal', 1), ('approach', 1), ('software', 1), ('engineering', 1), ('turning', 1), ('abstract', 1), ('description', 1), ('soft', 1), ('hardware', 1), ('system', 1), ('something', 1), ('closer', 1), ('implementation', 1), ('provides', 1), ('essential', 1), ('bridge', 1)]
[('use', 2), ('book', 1), ('present', 1), ('first', 1), ('guide', 1), ('radial', 1), ('basis', 1), ('function', 1), ('rbf', 1), ('provides', 1), ('clear', 1), ('vision', 1), ('potential', 1), ('overview', 1), ('ready', 1), ('computational', 1), ('tool', 1), ('precise', 1), ('guideline', 1), ('implement', 1), ('new', 1), ('engineering', 1)]
[('reader', 2), ('understand', 2), ('book', 1), ('author', 1), ('aim', 1), ('endow', 1), ('operational', 1), ('conceptual', 1), ('methodological', 1), ('understanding', 1), ('discrete', 1), ('mathematics', 1), ('used', 1), ('study', 1), ('perform', 1), ('computing', 1), ('want', 1)]
[('book', 1), ('intended', 1), ('give', 1), ('researcher', 1), ('practitioner', 1), ('cross', 1), ('cutting', 1), ('field', 1), ('artificial', 1), ('intelligence', 1), ('machine', 1), ('learning', 1), ('ai', 1), ('ml', 1), ('cyber', 1), ('security', 1), ('date', 1), ('depth', 1), ('knowledge', 1), ('recent', 1), ('technique', 1), ('improving', 1)]
[('book', 2), ('data', 2), ('healthcare', 2), ('seek', 1), ('promote', 1), ('exploitation', 1), ('science', 1), ('system', 1), ('focus', 1), ('advancing', 1), ('automated', 1), ('analytical', 1), ('method', 1), ('used', 1), ('extract', 1), ('new', 1), ('knowledge', 1), ('application', 1), ('draw', 1), ('several', 1)]
[('book', 1), ('examines', 1), ('conflict', 1), ('arising', 1), ('implementation', 1), ('privacy', 1), ('principle', 1), ('enshrined', 1), ('gdpr', 1), ('particularly', 1), ('right', 1), ('forgotten', 1), ('wide', 1), ('range', 1), ('contemporary', 1), ('organizational', 1), ('process', 1), ('business', 1), ('practice', 1)]
[('business', 2), ('process', 2), ('book', 1), ('collect', 1), ('essential', 1), ('research', 1), ('practical', 1), ('application', 1), ('executable', 1), ('modeling', 1), ('real', 1), ('world', 1), ('project', 1), ('model', 1), ('driven', 1), ('solution', 1), ('support', 1), ('automation', 1), ('digital', 1), ('created', 1), ('using', 1)]
[('hci', 2), ('phrase', 1), ('wild', 1), ('becoming', 1), ('popular', 1), ('field', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('describing', 1), ('approach', 1), ('research', 1), ('account', 1), ('user', 1), ('experience', 1), ('phenomenon', 1), ('differ', 1), ('derived', 1), ('lab', 1), ('based', 1), ('method', 1)]
[('knowledge', 2), ('citation', 1), ('analysis', 1), ('exploration', 1), ('reference', 1), ('pattern', 1), ('scholarly', 1), ('scientific', 1), ('literature', 1), ('long', 1), ('applied', 1), ('number', 1), ('social', 1), ('science', 1), ('study', 1), ('research', 1), ('impact', 1), ('flow', 1), ('network', 1), ('important', 1), ('information', 1)]
[('relationship', 2), ('book', 1), ('seek', 1), ('advance', 1), ('understanding', 1), ('information', 1), ('human', 1), ('value', 1), ('synthesizing', 1), ('complementary', 1), ('typically', 1), ('disconnected', 1), ('thread', 1), ('literature', 1), ('reflecting', 1), ('year', 1), ('research', 1)]
[('learning', 2), ('lfd', 2), ('demonstration', 1), ('explores', 1), ('technique', 1), ('task', 1), ('policy', 1), ('example', 1), ('provided', 1), ('human', 1), ('teacher', 1), ('field', 1), ('grown', 1), ('extensive', 1), ('body', 1), ('literature', 1), ('past', 1), ('year', 1), ('wide', 1), ('variety', 1), ('approach', 1)]
[('language', 3), ('chinese', 2), ('processing', 2), ('book', 1), ('introduces', 1), ('issue', 1), ('technique', 1), ('reader', 1), ('already', 1), ('basic', 1), ('background', 1), ('natural', 1), ('nlp', 1), ('major', 1), ('difference', 1), ('western', 1), ('word', 1), ('level', 1)]
[('language', 2), ('arabic', 2), ('book', 1), ('provides', 1), ('system', 1), ('developer', 1), ('researcher', 1), ('natural', 1), ('processing', 1), ('computational', 1), ('linguistics', 1), ('necessary', 1), ('background', 1), ('information', 1), ('working', 1), ('goal', 1), ('introduce', 1), ('linguistic', 1), ('phenomenon', 1)]
[('processing', 2), ('text', 2), ('discourse', 1), ('framed', 1), ('marking', 1), ('structural', 1), ('description', 1), ('several', 1), ('level', 1), ('serve', 1), ('support', 1), ('many', 1), ('language', 1), ('mining', 1), ('task', 1), ('first', 1), ('explore', 1), ('way', 1), ('assigning', 1), ('structure', 1), ('document', 1)]
[('text', 4), ('natural', 3), ('language', 2), ('many', 1), ('application', 1), ('within', 1), ('processing', 1), ('involve', 1), ('performing', 1), ('transformation', 1), ('given', 1), ('input', 1), ('system', 1), ('required', 1), ('produce', 1), ('version', 1), ('translation', 1)]
[('mathematical', 2), ('modeling', 2), ('monograph', 1), ('present', 1), ('concise', 1), ('approach', 1), ('analyzing', 1), ('performance', 1), ('communication', 1), ('network', 1), ('aim', 1), ('introducing', 1), ('appropriate', 1), ('framework', 1), ('analysis', 1), ('understanding', 1)]
[('wireless', 2), ('service', 2), ('last', 1), ('decade', 1), ('seen', 1), ('unprecedented', 1), ('growth', 1), ('demand', 1), ('fueled', 1), ('application', 1), ('often', 1), ('require', 1), ('high', 1), ('data', 1), ('rate', 1), ('low', 1), ('latency', 1), ('function', 1), ('desired', 1)]
[('peer', 2), ('book', 1), ('concern', 1), ('application', 1), ('mechanism', 1), ('operating', 1), ('internet', 1), ('particularly', 1), ('fully', 1), ('automated', 1), ('involve', 1), ('significant', 1), ('human', 1), ('interaction', 1), ('realm', 1), ('interest', 1), ('intersection', 1), ('distributed', 1), ('system', 1)]
[('data', 2), ('massive', 2), ('text', 2), ('real', 1), ('world', 1), ('though', 1), ('largely', 1), ('unstructured', 1), ('form', 1), ('natural', 1), ('language', 1), ('challenging', 1), ('highly', 1), ('desirable', 1), ('mine', 1), ('structure', 1), ('without', 1), ('extensive', 1), ('human', 1), ('annotation', 1), ('labeling', 1), ('book', 1)]
[('recent', 1), ('year', 1), ('rapid', 1), ('growth', 1), ('location', 1), ('based', 1), ('social', 1), ('networking', 1), ('service', 1), ('foursquare', 1), ('facebook', 1), ('place', 1), ('attracted', 1), ('increasing', 1), ('number', 1), ('user', 1), ('greatly', 1), ('enriched', 1), ('urban', 1), ('experience', 1), ('typical', 1)]
[('network', 2), ('camera', 2), ('video', 1), ('installed', 1), ('many', 1), ('application', 1), ('security', 1), ('surveillance', 1), ('environmental', 1), ('monitoring', 1), ('disaster', 1), ('response', 1), ('assisted', 1), ('living', 1), ('facility', 1), ('among', 1), ('others', 1), ('image', 1), ('understanding', 1), ('becoming', 1)]
[('data', 2), ('computer', 2), ('vision', 2), ('outlier', 1), ('contaminated', 1), ('fact', 1), ('life', 1), ('application', 1), ('perform', 1), ('reliably', 1), ('accurately', 1), ('practical', 1), ('setting', 1), ('processing', 1), ('input', 1), ('conducted', 1), ('robust', 1), ('manner', 1), ('context', 1)]
[('database', 3), ('object', 1), ('oriented', 1), ('originally', 1), ('developed', 1), ('alternative', 1), ('relational', 1), ('technology', 1), ('representation', 1), ('storage', 1), ('access', 1), ('non', 1), ('traditional', 1), ('data', 1), ('form', 1), ('increasingly', 1), ('found', 1), ('advanced', 1), ('application', 1)]
[('data', 5), ('quality', 1), ('important', 1), ('problem', 1), ('management', 1), ('database', 1), ('system', 1), ('typically', 1), ('aim', 1), ('support', 1), ('creation', 1), ('maintenance', 1), ('use', 1), ('large', 1), ('amount', 1), ('focusing', 1), ('quantity', 1), ('real', 1), ('life', 1), ('often', 1)]
[('design', 2), ('user', 2), ('experience', 2), ('book', 1), ('explores', 1), ('process', 1), ('engagement', 1), ('expands', 1), ('traditional', 1), ('concept', 1), ('usability', 1), ('utility', 1), ('include', 1), ('aesthetic', 1), ('fun', 1), ('excitement', 1), ('evolved', 1), ('new', 1), ('area', 1), ('human', 1)]
[('blockchain', 2), ('technology', 2), ('book', 1), ('focus', 1), ('innovation', 1), ('advantage', 1), ('offer', 1), ('provides', 1), ('clear', 1), ('comprehensive', 1), ('overview', 1), ('possibility', 1), ('thereby', 1), ('help', 1), ('reader', 1), ('form', 1), ('opinion', 1), ('draw', 1)]
[('metaheuristic', 2), ('technique', 2), ('book', 1), ('discus', 1), ('integration', 1), ('machine', 1), ('learning', 1), ('provide', 1), ('robust', 1), ('efficient', 1), ('way', 1), ('address', 1), ('traditional', 1), ('optimization', 1), ('problem', 1), ('modern', 1), ('along', 1), ('main', 1), ('characteristic', 1)]
[('second', 1), ('book', 1), ('three', 1), ('part', 1), ('series', 1), ('trace', 1), ('development', 1), ('gpu', 1), ('defined', 1), ('single', 1), ('chip', 1), ('integrated', 1), ('transform', 1), ('lighting', 1), ('capability', 1), ('feature', 1), ('previously', 1), ('found', 1), ('workstation', 1), ('stand', 1), ('alone', 1)]
[('software', 2), ('language', 2), ('textbook', 1), ('describes', 1), ('theory', 1), ('pragmatic', 1), ('using', 1), ('engineering', 1), ('high', 1), ('level', 1), ('known', 1), ('modeling', 1), ('domain', 1), ('specific', 1), ('dsl', 1), ('creating', 1), ('quality', 1), ('includes', 1), ('method', 1), ('design', 1), ('pattern', 1)]
[('technique', 2), ('nbsp', 2), ('logician', 1), ('developed', 1), ('beautiful', 1), ('algorithmic', 1), ('construction', 1), ('computably', 1), ('enumerable', 1), ('set', 1), ('textbook', 1), ('present', 1), ('unified', 1), ('way', 1), ('appeal', 1), ('computer', 1), ('scientist', 1), ('specifically', 1), ('book', 1)]
[('ijcar', 2), ('vienna', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('automated', 1), ('reasoning', 1), ('held', 1), ('part', 1), ('summer', 1), ('logic', 1), ('vsl', 1), ('austria', 1), ('july', 1), ('merger', 1), ('three', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('industrial', 1), ('conference', 1), ('advance', 1), ('data', 1), ('mining', 1), ('icdm', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conferenceproceedings', 1), ('th', 1), ('international', 1), ('meeting', 1), ('computationalintelligence', 1), ('method', 1), ('bioinformatics', 1), ('biostatistics', 1), ('cibb', 1), ('held', 1), ('nice', 1), ('france', 1), ('june', 1), ('revised', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('computational', 1), ('logic', 1), ('multi', 1), ('agent', 1), ('system', 1), ('clima', 1), ('xv', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('august', 1), ('regular', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('speech', 1), ('computer', 1), ('specom', 1), ('held', 1), ('novi', 1), ('sad', 1), ('serbia', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('discovery', 1), ('science', 1), ('d', 1), ('held', 1), ('bled', 1), ('slovenia', 1), ('october', 1), ('full', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('chile', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ibero', 1), ('american', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('iberamia', 1), ('held', 1), ('santiago', 1), ('de', 1), ('november', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('second', 1), ('ecml', 1), ('pkdd', 1), ('workshop', 1), ('data', 1), ('analytics', 1), ('renewable', 1), ('energy', 1), ('integration', 1), ('dare', 1), ('held', 1), ('nancy', 1), ('france', 1), ('september', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('multi', 1), ('disciplinary', 1), ('trend', 1), ('artificial', 1), ('intelligence', 1), ('miwai', 1), ('held', 1), ('bangalore', 1), ('india', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('knowledge', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('engineering', 1), ('management', 1), ('ekaw', 1), ('held', 1), ('linköping', 1), ('sweden', 1), ('november', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('took', 1), ('place', 1), ('harbin', 1), ('china', 1), ('august', 1), ('paper', 1), ('included', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('took', 1), ('place', 1), ('harbin', 1), ('china', 1), ('august', 1), ('paper', 1), ('included', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('new', 1), ('frontier', 1), ('mining', 1), ('complex', 1), ('pattern', 1), ('nfmcp', 1), ('held', 1), ('conjunction', 1), ('ecml', 1), ('pkdd', 1), ('nancy', 1), ('france', 1), ('september', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('bioinformatics', 1), ('research', 1), ('application', 1), ('isbra', 1), ('held', 1), ('norfolk', 1), ('va', 1), ('usa', 1), ('june', 1), ('revised', 1), ('full', 1), ('page', 1), ('included', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('soft', 1), ('computing', 1), ('icaisc', 1), ('held', 1), ('zakopane', 1), ('poland', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('medicine', 1), ('aime', 1), ('held', 1), ('pavia', 1), ('italy', 1), ('june', 1), ('revised', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('mathematics', 1), ('computation', 1), ('music', 1), ('mcm', 1), ('held', 1), ('london', 1), ('uk', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('engineering', 1), ('psychology', 1), ('cognitive', 1), ('ergonomics', 1), ('epce', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('industrial', 1), ('application', 1), ('holonic', 1), ('multi', 1), ('agent', 1), ('system', 1), ('holomas', 1), ('held', 1), ('valencia', 1), ('spain', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('held', 1), ('portsmouth', 1), ('uk', 1), ('august', 1), ('paper', 1), ('included', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('speech', 1), ('computer', 1), ('specom', 1), ('held', 1), ('athens', 1), ('greece', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1), ('carefully', 1)]
[('tableau', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('automated', 1), ('reasoning', 1), ('analytic', 1), ('related', 1), ('method', 1), ('held', 1), ('wroclaw', 1), ('poland', 1), ('september', 1), ('full', 1)]
[('volume', 1), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('logic', 1), ('programming', 1), ('nonmonotonic', 1), ('reasoning', 1), ('lpnmr', 1), ('held', 1), ('september', 1), ('lexington', 1), ('ky', 1), ('usa', 1), ('long', 1), ('short', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('integrated', 1), ('uncertainty', 1), ('knowledge', 1), ('modeling', 1), ('decision', 1), ('making', 1), ('iukm', 1), ('held', 1), ('nha', 1), ('trang', 1), ('vietnam', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('pakdd', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('held', 1), ('conjunction', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('ho', 1), ('chi', 1), ('minh', 1), ('city', 1), ('vietnam', 1), ('revised', 1), ('paper', 1)]
[('book', 1), ('offer', 1), ('comprehensive', 1), ('timely', 1), ('overview', 1), ('advanced', 1), ('mathematical', 1), ('tool', 1), ('uncertainty', 1), ('analysis', 1), ('modeling', 1), ('parallel', 1), ('process', 1), ('special', 1), ('emphasis', 1), ('intuitionistic', 1), ('fuzzy', 1), ('set', 1), ('generalized', 1), ('net', 1), ('different', 1), ('chapter', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('graph', 1), ('structure', 1), ('knowledge', 1), ('representation', 1), ('reasoning', 1), ('gkr', 1), ('held', 1), ('buenos', 1), ('aire', 1), ('argentina', 1), ('july', 1), ('associated', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('internationalsymposium', 1), ('conformal', 1), ('probabilistic', 1), ('prediction', 1), ('application', 1), ('copa', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('april', 1), ('revised', 1), ('fullpapers', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('bioinformatics', 1), ('research', 1), ('application', 1), ('isbra', 1), ('held', 1), ('minsk', 1), ('belarus', 1), ('june', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('offer', 1), ('comprehensive', 1), ('survey', 1), ('soft', 1), ('computing', 1), ('model', 1), ('optical', 1), ('character', 1), ('recognition', 1), ('system', 1), ('various', 1), ('technique', 1), ('including', 1), ('fuzzy', 1), ('rough', 1), ('set', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('genetic', 1), ('algorithm', 1), ('tested', 1), ('using', 1), ('real', 1), ('text', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('ecml', 1), ('pkdd', 1), ('workshop', 1), ('data', 1), ('analytics', 1), ('renewable', 1), ('energy', 1), ('integration', 1), ('dare', 1), ('held', 1), ('riva', 1), ('del', 1), ('garda', 1), ('italy', 1), ('september', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('bioinformatics', 1), ('research', 1), ('application', 1), ('isbra', 1), ('held', 1), ('honolulu', 1), ('usa', 1), ('june', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('lnai', 2), ('nbsp', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('soft', 1), ('computing', 1), ('icaisc', 1), ('held', 1), ('zakopane', 1), ('poland', 1), ('june', 1), ('revised', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('industrial', 1), ('engineering', 1), ('application', 1), ('applied', 1), ('intelligent', 1), ('system', 1), ('iea', 1), ('aie', 1), ('held', 1), ('arras', 1), ('france', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('case', 1), ('based', 1), ('reasoning', 1), ('research', 1), ('development', 1), ('iccbr', 1), ('held', 1), ('trondheim', 1), ('norway', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('social', 3), ('information', 2), ('volume', 1), ('summarizes', 1), ('author', 1), ('work', 1), ('seeking', 1), ('si', 1), ('time', 1), ('serf', 1), ('introduction', 1), ('topic', 1), ('sometimes', 1), ('referred', 1), ('search', 1), ('retrieval', 1), ('relatively', 1), ('new', 1), ('area', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('automated', 1), ('deduction', 1), ('cade', 1), ('held', 1), ('gothenburg', 1), ('sweden', 1), ('august', 1), ('full', 1), ('paper', 1), ('system', 1), ('description', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('nbsp', 1)]
[('book', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('general', 1), ('intelligence', 1), ('agi', 1), ('held', 1), ('melbourne', 1), ('vic', 1), ('australia', 1), ('august', 1), ('nbsp', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('knowledge', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('internationalconference', 1), ('engineering', 1), ('management', 1), ('ekaw', 1), ('held', 1), ('bologna', 1), ('italy', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('nbsp', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('italian', 1), ('association', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('ia', 1), ('held', 1), ('genova', 1), ('italy', 1), ('november', 1), ('december', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 2), ('fuzzy', 2), ('graph', 2), ('report', 1), ('advanced', 1), ('concept', 1), ('theory', 1), ('showing', 1), ('set', 1), ('tool', 1), ('successfully', 1), ('applied', 1), ('understanding', 1), ('modeling', 1), ('illegal', 1), ('human', 1), ('trafficking', 1), ('building', 1), ('previous', 1), ('author', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('statistical', 1), ('language', 1), ('speech', 1), ('processing', 1), ('slsp', 1), ('held', 1), ('mon', 1), ('belgium', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('xviith', 1), ('international', 1), ('conference', 1), ('italian', 1), ('association', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('ia', 1), ('held', 1), ('trento', 1), ('italy', 1), ('november', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('mexican', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('micai', 1), ('held', 1), ('enseneda', 1), ('mexico', 1), ('october', 1), ('nbsp', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('data', 1), ('integration', 1), ('life', 1), ('science', 1), ('dils', 1), ('held', 1), ('hannover', 1), ('germany', 1), ('november', 1), ('full', 1), ('short', 1), ('poster', 1), ('demo', 1), ('presented', 1)]
[('lnai', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('held', 1), ('wuhan', 1), ('china', 1), ('august', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('german', 1), ('conference', 1), ('multiagent', 1), ('system', 1), ('technology', 1), ('mate', 1), ('held', 1), ('lepzig', 1), ('germany', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('nbsp', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('method', 1), ('system', 1), ('biology', 1), ('cmsb', 1), ('held', 1), ('darmstadt', 1), ('germany', 1), ('september', 1), ('full', 1), ('tool', 1), ('poster', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('scalable', 1), ('uncertainty', 1), ('management', 1), ('sum', 1), ('held', 1), ('granada', 1), ('spain', 1), ('october', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('meeting', 1), ('computational', 1), ('intelligence', 1), ('method', 1), ('bioinformatics', 1), ('biostatistics', 1), ('cibb', 1), ('held', 1), ('stirling', 1), ('uk', 1), ('september', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ccf', 1), ('international', 1), ('conference', 1), ('natural', 1), ('language', 1), ('processing', 1), ('nlpcc', 1), ('held', 1), ('dalian', 1), ('china', 1), ('november', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('industrial', 1), ('engineering', 1), ('application', 1), ('applied', 1), ('intelligent', 1), ('system', 1), ('iea', 1), ('aie', 1), ('held', 1), ('montreal', 1), ('qc', 1), ('canada', 1), ('june', 1), ('full', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('advance', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('melbourne', 1), ('vic', 1), ('australia', 1), ('june', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('general', 1), ('intelligence', 1), ('agi', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('august', 1), ('regular', 1), ('poster', 1), ('presented', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('collective', 1), ('intelligence', 1), ('icci', 1), ('held', 1), ('bristol', 1), ('uk', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('methodology', 1), ('system', 1), ('application', 1), ('aimsa', 1), ('held', 1), ('varna', 1), ('bulgaria', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 2), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('spatial', 1), ('cognition', 1), ('held', 1), ('tübingen', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('book', 2), ('belief', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('function', 1), ('held', 1), ('compiègne', 1), ('france', 1), ('september', 1), ('revised', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('nbsp', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('processing', 1), ('portuguese', 1), ('language', 1), ('propor', 1), ('held', 1), ('canela', 1), ('r', 1), ('brazil', 1), ('september', 1), ('full', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('meeting', 1), ('computational', 1), ('intelligence', 1), ('method', 1), ('bioinformatics', 1), ('biostatistics', 1), ('cibb', 1), ('held', 1), ('cagliari', 1), ('italy', 1), ('september', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('agreement', 1), ('technology', 1), ('held', 1), ('bergen', 1), ('norway', 1), ('december', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('machine', 1), ('learning', 1), ('data', 1), ('mining', 1), ('sport', 1), ('analytics', 1), ('mlsa', 1), ('colocated', 1), ('ecml', 1), ('pkdd', 1), ('dublin', 1), ('ireland', 1), ('september', 1), ('full', 1)]
[('main', 1), ('objective', 1), ('book', 1), ('provide', 1), ('common', 1), ('platform', 1), ('diverse', 1), ('concept', 1), ('satellite', 1), ('image', 1), ('processing', 1), ('particular', 1), ('present', 1), ('state', 1), ('art', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('methodology', 1), ('share', 1), ('finding', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('australasian', 1), ('joint', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('adelaide', 1), ('sa', 1), ('australia', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('due', 1), ('held', 1), ('singapore', 1), ('nbsp', 1)]
[('conference', 2), ('due', 2), ('held', 2), ('volume', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('joint', 1), ('rough', 1), ('set', 1), ('ijcrs', 1), ('havana', 1), ('cuba', 1), ('june', 1), ('virtually', 1), ('covid', 1), ('pandemic', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('german', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ki', 1), ('held', 1), ('bamberg', 1), ('germany', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('together', 1), ('extended', 1), ('abstract', 1)]
[('mexico', 2), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('mexican', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('micai', 1), ('held', 1), ('city', 1), ('october', 1), ('nbsp', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('mining', 1), ('intelligence', 1), ('knowledge', 1), ('exploration', 1), ('mike', 1), ('held', 1), ('goa', 1), ('india', 1), ('december', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('multi', 1), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('european', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('september', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('interactive', 1), ('collaborative', 1), ('robotics', 1), ('icr', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('october', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('held', 2), ('singapore', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('social', 1), ('robotics', 1), ('icsr', 1), ('november', 1), ('hybrid', 1), ('event', 1), ('full', 1), ('short', 1)]
[('comprehensive', 1), ('text', 1), ('present', 1), ('cutting', 1), ('edge', 1), ('advance', 1), ('theory', 1), ('methodology', 1), ('modeling', 1), ('simulation', 1), ('reveals', 1), ('work', 1), ('influenced', 1), ('fundamental', 1), ('contribution', 1), ('prof', 1), ('tuncer', 1), ('ören', 1), ('field', 1), ('exploring', 1)]
[('text', 1), ('reference', 1), ('provides', 1), ('practical', 1), ('guide', 1), ('process', 1), ('involved', 1), ('development', 1), ('application', 1), ('dynamic', 1), ('simulation', 1), ('model', 1), ('covering', 1), ('wide', 1), ('range', 1), ('issue', 1), ('relating', 1), ('testing', 1), ('verification', 1), ('validation', 1), ('illustrative', 1), ('example', 1)]
[('method', 2), ('network', 2), ('brief', 1), ('present', 1), ('reader', 1), ('summary', 1), ('classic', 1), ('modern', 1), ('state', 1), ('art', 1), ('discovering', 1), ('role', 1), ('entity', 1), ('including', 1), ('social', 1), ('range', 1), ('small', 1), ('large', 1), ('scale', 1), ('classifies', 1)]
[('software', 4), ('reuse', 2), ('integration', 2), ('system', 2), ('described', 1), ('process', 1), ('creating', 1), ('existing', 1), ('rather', 1), ('building', 1), ('scratch', 1), ('whereas', 1), ('solely', 1), ('deal', 1), ('artifact', 1), ('creation', 1), ('focus', 1)]
[('th', 2), ('book', 1), ('contains', 1), ('selection', 1), ('article', 1), ('world', 1), ('conference', 1), ('information', 1), ('system', 1), ('technology', 1), ('worldcist', 1), ('held', 1), ('april', 1), ('funchal', 1), ('madeira', 1), ('portugal', 1), ('global', 1), ('forum', 1), ('researcher', 1)]
[('edited', 1), ('volume', 1), ('contains', 1), ('selection', 1), ('refereed', 1), ('revised', 1), ('paper', 1), ('originally', 1), ('presented', 1), ('international', 1), ('symposium', 1), ('signal', 1), ('processing', 1), ('intelligent', 1), ('recognition', 1), ('system', 1), ('sir', 1), ('march', 1), ('trivandrum', 1), ('india', 1), ('program', 1)]
[('book', 1), ('present', 1), ('finding', 1), ('view', 1), ('idea', 1), ('exact', 1), ('problem', 1), ('image', 1), ('processing', 1), ('pattern', 1), ('recognition', 1), ('generation', 1), ('efficiently', 1), ('solved', 1), ('cellular', 1), ('automaton', 1), ('architecture', 1), ('volume', 1), ('provides', 1), ('convenient', 1), ('collection', 1), ('area', 1)]
[('nowadays', 1), ('tendency', 1), ('fond', 1), ('smarter', 1), ('machine', 1), ('able', 1), ('collect', 1), ('data', 1), ('make', 1), ('learning', 1), ('recognize', 1), ('thing', 1), ('infer', 1), ('meaning', 1), ('communicate', 1), ('human', 1), ('perform', 1), ('behavior', 1), ('thus', 1), ('built', 1), ('advanced', 1), ('intelligent', 1), ('control', 1), ('affecting', 1)]
[('workplace', 2), ('book', 1), ('provides', 1), ('interdisciplinary', 1), ('collection', 1), ('view', 1), ('ethical', 1), ('challenge', 1), ('opportunity', 1), ('internet', 1), ('thing', 1), ('current', 1), ('development', 1), ('within', 1), ('ubiquitous', 1), ('computing', 1), ('ubicomp', 1), ('system', 1), ('designed', 1)]
[('intelligent', 3), ('system', 2), ('initiated', 1), ('attempt', 1), ('imitate', 1), ('human', 1), ('brain', 1), ('wish', 1), ('machine', 1), ('perform', 1), ('work', 1), ('many', 1), ('technique', 1), ('based', 1), ('artificial', 1), ('intelligence', 1), ('according', 1), ('changing', 1)]
[('intelligent', 2), ('system', 2), ('machine', 2), ('learning', 2), ('user', 1), ('consumer', 1), ('demanding', 1), ('smarter', 1), ('device', 1), ('revolutionizing', 1), ('utilizing', 1), ('part', 1), ('already', 1), ('critical', 1), ('component', 1), ('everyday', 1), ('tool', 1)]
[('conference', 2), ('artificial', 2), ('book', 1), ('edited', 1), ('collection', 1), ('chapter', 1), ('based', 1), ('paper', 1), ('presented', 1), ('beyond', 1), ('ai', 1), ('dream', 1), ('held', 1), ('pilsen', 1), ('november', 1), ('aim', 1), ('question', 1), ('deep', 1), ('rooted', 1), ('idea', 1), ('intelligence', 1)]
[('volume', 2), ('conference', 2), ('contains', 1), ('paper', 1), ('presented', 1), ('ficta', 1), ('third', 1), ('international', 1), ('frontier', 1), ('intelligent', 1), ('computing', 1), ('theory', 1), ('application', 1), ('held', 1), ('november', 1), ('bhubaneswar', 1), ('odisha', 1), ('india', 1)]
[('rapid', 1), ('proliferation', 1), ('multimedia', 1), ('network', 1), ('information', 1), ('system', 1), ('key', 1), ('feature', 1), ('time', 1), ('important', 1), ('pace', 1), ('change', 1), ('increasing', 1), ('university', 1), ('project', 1), ('today', 1), ('form', 1), ('core', 1), ('consumer', 1)]
[('paper', 2), ('intelligent', 2), ('informatics', 2), ('book', 1), ('contains', 1), ('selection', 1), ('refereed', 1), ('revised', 1), ('track', 1), ('originally', 1), ('presented', 1), ('third', 1), ('international', 1), ('symposium', 1), ('isi', 1), ('september', 1), ('delhi', 1), ('india', 1)]
[('international', 2), ('conference', 2), ('book', 1), ('includes', 1), ('result', 1), ('seventh', 1), ('fuzzy', 1), ('information', 1), ('engineering', 1), ('icfie', 1), ('st', 1), ('operation', 1), ('research', 1), ('management', 1), ('icorm', 1), ('november', 1), ('zhuhai', 1), ('china', 1)]
[('quality', 2), ('software', 2), ('book', 1), ('examines', 1), ('collaborative', 1), ('assurance', 1), ('technique', 1), ('particularly', 1), ('pair', 1), ('programming', 1), ('peer', 1), ('code', 1), ('review', 1), ('affect', 1), ('group', 1), ('cognition', 1), ('agile', 1), ('development', 1), ('team', 1), ('prior', 1), ('research', 1), ('extremely', 1)]
[('th', 1), ('international', 1), ('symposium', 1), ('distributed', 1), ('computing', 1), ('artificial', 1), ('intelligence', 1), ('dcai', 1), ('forum', 1), ('present', 1), ('application', 1), ('innovative', 1), ('technique', 1), ('studying', 1), ('solving', 1), ('complex', 1), ('problem', 1), ('exchange', 1), ('idea', 1), ('scientist', 1)]
[('application', 1), ('countdown', 1), ('timer', 1), ('traffic', 1), ('light', 1), ('affect', 1), ('pedestrian', 1), ('safety', 1), ('model', 1), ('walking', 1), ('route', 1), ('transport', 1), ('system', 1), ('using', 1), ('open', 1), ('source', 1), ('tool', 1), ('feature', 1), ('particularly', 1), ('taken', 1), ('account', 1), ('implementing', 1), ('highly', 1)]
[('book', 1), ('highlight', 1), ('latest', 1), ('research', 1), ('advance', 1), ('new', 1), ('method', 1), ('development', 1), ('technique', 1), ('challenge', 1), ('solution', 1), ('theoretical', 1), ('practical', 1), ('perspective', 1), ('related', 1), ('ubiquitous', 1), ('pervasive', 1), ('computing', 1), ('upc', 1), ('emphasis', 1)]
[('fault', 2), ('diagnostics', 2), ('system', 2), ('book', 1), ('highlight', 1), ('latest', 1), ('achievement', 1), ('concerning', 1), ('theory', 1), ('method', 1), ('practice', 1), ('tolerant', 1), ('cyber', 1), ('safety', 1), ('considering', 1), ('industrial', 1), ('process', 1), ('increasingly', 1), ('important', 1)]
[('approach', 2), ('book', 1), ('present', 1), ('new', 1), ('method', 1), ('applied', 1), ('real', 1), ('world', 1), ('problem', 1), ('particular', 1), ('exploratory', 1), ('research', 1), ('relating', 1), ('novel', 1), ('field', 1), ('cybernetics', 1), ('automation', 1), ('control', 1), ('theory', 1), ('nbsp', 1), ('particularly', 1), ('focusing', 1), ('modern', 1)]
[('area', 2), ('textbook', 1), ('collect', 1), ('series', 1), ('research', 1), ('paper', 1), ('image', 1), ('processing', 1), ('communication', 1), ('introduce', 1), ('summary', 1), ('current', 1), ('technology', 1), ('give', 1), ('outlook', 1), ('potential', 1), ('feature', 1), ('problem', 1), ('key', 1), ('objective', 1)]
[('th', 3), ('convention', 2), ('volume', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('csi', 1), ('annual', 1), ('computer', 1), ('society', 1), ('india', 1), ('theme', 1), ('ict', 1), ('critical', 1), ('infrastructure', 1), ('held', 1), ('december', 1), ('hotel', 1), ('novotel', 1), ('varun', 1), ('beach', 1)]
[('intelligent', 2), ('computing', 2), ('human', 2), ('refers', 1), ('greatly', 1), ('artificial', 1), ('intelligence', 1), ('aim', 1), ('making', 1), ('computer', 1), ('act', 1), ('newly', 1), ('developed', 1), ('area', 1), ('real', 1), ('time', 1), ('integrates', 1), ('aspect', 1), ('dynamic', 1), ('environment', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('book', 1), ('present', 1), ('advance', 1), ('development', 1), ('concept', 1), ('technique', 1), ('area', 1), ('new', 1), ('technology', 1), ('contemporary', 1), ('information', 1), ('system', 1), ('architecture', 1), ('guide', 1), ('reader', 1), ('solving', 1), ('specific', 1), ('research', 1), ('analytical', 1)]
[('interaction', 2), ('proceeding', 1), ('book', 1), ('provides', 1), ('essential', 1), ('insight', 1), ('current', 1), ('state', 1), ('research', 1), ('field', 1), ('human', 1), ('computer', 1), ('present', 1), ('outcome', 1), ('international', 1), ('conference', 1), ('machine', 1), ('icmmi', 1), ('held', 1), ('october', 1)]
[('presenting', 1), ('series', 1), ('research', 1), ('paper', 1), ('image', 1), ('processing', 1), ('communication', 1), ('book', 1), ('provides', 1), ('summary', 1), ('currently', 1), ('available', 1), ('technology', 1), ('outline', 1), ('potential', 1), ('future', 1), ('solution', 1), ('area', 1), ('gathering', 1), ('proceeding', 1)]
[('arad', 2), ('romania', 2), ('volume', 1), ('constitute', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('soft', 1), ('computing', 1), ('application', 1), ('sofa', 1), ('held', 1), ('august', 1), ('edition', 1), ('organized', 1), ('aurel', 1), ('vlaicu', 1), ('university', 1)]
[('paper', 2), ('book', 1), ('gather', 1), ('peer', 1), ('reviewed', 1), ('presented', 1), ('st', 1), ('international', 1), ('interdisciplinary', 1), ('conference', 1), ('digital', 1), ('environment', 1), ('education', 1), ('art', 1), ('heritage', 1), ('earth', 1), ('held', 1), ('brixen', 1), ('italy', 1), ('july', 1), ('focus', 1)]
[('international', 2), ('conference', 2), ('book', 1), ('present', 1), ('outcome', 1), ('cyber', 1), ('security', 1), ('intelligence', 1), ('analytics', 1), ('csia', 1), ('dedicated', 1), ('promoting', 1), ('novel', 1), ('theoretical', 1), ('applied', 1), ('research', 1), ('advance', 1)]
[('information', 2), ('system', 2), ('volume', 1), ('feature', 1), ('collection', 1), ('paper', 1), ('emerging', 1), ('concept', 1), ('significant', 1), ('insight', 1), ('novel', 1), ('approach', 1), ('idea', 1), ('research', 1), ('examines', 1), ('advance', 1), ('development', 1), ('general', 1), ('impact', 1)]
[('early', 2), ('book', 1), ('tell', 1), ('unique', 1), ('story', 1), ('weizac', 1), ('computer', 1), ('built', 1), ('new', 1), ('nation', 1), ('created', 1), ('israel', 1), ('even', 1), ('though', 1), ('feasibility', 1), ('project', 1), ('actually', 1), ('close', 1), ('null', 1), ('initially', 1), ('conceived', 1)]
[('statistic', 2), ('new', 2), ('volume', 1), ('collect', 1), ('extended', 1), ('version', 1), ('paper', 1), ('presented', 1), ('si', 1), ('conference', 1), ('data', 1), ('science', 1), ('challenge', 1), ('generation', 1), ('held', 1), ('florence', 1), ('italy', 1), ('june', 1), ('nbsp', 1), ('highlighting', 1), ('central', 1), ('role', 1)]
[('world', 1), ('conference', 1), ('qualitative', 1), ('research', 1), ('wcqr', 1), ('annual', 1), ('event', 1), ('aim', 1), ('bring', 1), ('together', 1), ('researcher', 1), ('academic', 1), ('professional', 1), ('promoting', 1), ('sharing', 1), ('discussion', 1), ('knowledge', 1), ('new', 1), ('perspective', 1), ('experience', 1), ('innovation', 1)]
[('book', 1), ('report', 1), ('new', 1), ('theory', 1), ('application', 1), ('field', 1), ('intelligent', 1), ('system', 1), ('computing', 1), ('cover', 1), ('computational', 1), ('artificial', 1), ('intelligence', 1), ('method', 1), ('advance', 1), ('computer', 1), ('vision', 1), ('current', 1), ('issue', 1), ('big', 1), ('data', 1), ('cloud', 1)]
[('data', 3), ('book', 1), ('devoted', 1), ('analysis', 1), ('big', 1), ('order', 1), ('extract', 1), ('hidden', 1), ('pattern', 1), ('necessary', 1), ('making', 1), ('decision', 1), ('rational', 1), ('behavior', 1), ('complex', 1), ('system', 1), ('different', 1), ('nature', 1), ('generate', 1), ('solve', 1)]
[('translation', 2), ('research', 2), ('tpr', 2), ('db', 2), ('volume', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('process', 1), ('database', 1), ('compiled', 1), ('centre', 1), ('innovation', 1), ('technology', 1), ('critt', 1), ('unique', 1), ('resource', 1)]
[('book', 2), ('experience', 2), ('author', 1), ('tried', 1), ('make', 1), ('available', 1), ('interested', 1), ('considering', 1), ('several', 1), ('year', 1), ('training', 1), ('research', 1), ('implementation', 1), ('project', 1), ('supply', 1), ('chain', 1), ('performance', 1), ('evaluation', 1), ('field', 1)]
[('technological', 2), ('social', 2), ('book', 1), ('examines', 1), ('event', 1), ('period', 1), ('saw', 1), ('rise', 1), ('hacktivist', 1), ('move', 1), ('mobile', 1), ('platform', 1), ('ubiquity', 1), ('network', 1), ('cover', 1), ('key', 1), ('issue', 1), ('hacking', 1)]
[('contributed', 1), ('volume', 1), ('written', 1), ('leading', 1), ('international', 1), ('researcher', 1), ('review', 1), ('latest', 1), ('development', 1), ('genetic', 1), ('programming', 1), ('gp', 1), ('key', 1), ('application', 1), ('solving', 1), ('current', 1), ('real', 1), ('world', 1), ('problem', 1), ('energy', 1), ('conversion', 1), ('management', 1), ('financial', 1)]
[('field', 2), ('multimedia', 2), ('processing', 2), ('book', 1), ('designed', 1), ('student', 1), ('professional', 1), ('researcher', 1), ('related', 1), ('need', 1), ('learn', 1), ('basic', 1), ('system', 1), ('signal', 1), ('emphasis', 1), ('given', 1), ('analysis', 1)]
[('control', 2), ('flow', 2), ('computer', 2), ('language', 2), ('issue', 1), ('presented', 1), ('textbook', 1), ('extremely', 1), ('relevant', 1), ('modern', 1), ('programming', 1), ('style', 1), ('addition', 1), ('basic', 1), ('mechanism', 1), ('virtually', 1), ('new', 1), ('provide', 1), ('form', 1), ('exceptional', 1)]
[('economics', 2), ('law', 2), ('book', 1), ('present', 1), ('original', 1), ('research', 1), ('article', 1), ('addressing', 1), ('various', 1), ('aspect', 1), ('artificial', 1), ('intelligence', 1), ('applied', 1), ('management', 1), ('optimization', 1), ('topic', 1), ('discussed', 1), ('include', 1), ('policy', 1), ('finance', 1), ('resource', 1), ('allocation', 1)]
[('data', 3), ('book', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('different', 1), ('biomedical', 1), ('type', 1), ('including', 1), ('clinical', 1), ('genomic', 1), ('thorough', 1), ('explanation', 1), ('enable', 1), ('reader', 1), ('explore', 1), ('key', 1), ('topic', 1), ('ranging', 1), ('electrocardiogram', 1), ('big', 1), ('health', 1), ('mining', 1), ('eeg', 1)]
[('paradigm', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('computational', 1), ('epidemiology', 1), ('highlighting', 1), ('major', 1), ('methodological', 1), ('throughout', 1), ('development', 1), ('field', 1), ('emphasizing', 1), ('need', 1), ('new', 1), ('shift', 1), ('order', 1)]
[('optimization', 2), ('book', 1), ('introduces', 1), ('fairly', 1), ('universal', 1), ('approach', 1), ('design', 1), ('analysis', 1), ('exact', 1), ('algorithm', 1), ('multi', 1), ('objective', 1), ('combinatorial', 1), ('problem', 1), ('proposes', 1), ('circuit', 1), ('without', 1), ('repetition', 1), ('representing', 1), ('set', 1), ('feasible', 1)]
[('book', 2), ('information', 2), ('technology', 2), ('present', 1), ('new', 1), ('concept', 1), ('practical', 1), ('application', 1), ('experience', 1), ('field', 1), ('environmental', 1), ('engineering', 1), ('three', 1), ('main', 1), ('focus', 1), ('area', 1), ('firstly', 1), ('show', 1)]
[('risk', 3), ('management', 2), ('book', 1), ('present', 1), ('foray', 1), ('fascinating', 1), ('process', 1), ('beginning', 1), ('classical', 1), ('method', 1), ('approach', 1), ('understanding', 1), ('way', 1), ('cutting', 1), ('age', 1), ('thinking', 1), ('necessity', 1), ('lie', 1), ('heart', 1)]
[('new', 2), ('technique', 2), ('making', 2), ('decision', 2), ('situation', 2), ('uncertainty', 2), ('book', 1), ('describes', 1), ('application', 1), ('main', 1), ('emphasis', 1), ('difficult', 1), ('decrease', 1), ('example', 1)]
[('book', 1), ('provides', 1), ('comprehensive', 1), ('insight', 1), ('theory', 1), ('model', 1), ('unique', 1), ('characteristic', 1), ('intelligent', 1), ('reflecting', 1), ('surface', 1), ('irs', 1), ('appealing', 1), ('application', 1), ('wireless', 1), ('information', 1), ('power', 1), ('transmission', 1), ('organized', 1)]
[('character', 2), ('animation', 2), ('mesh', 1), ('processing', 1), ('focus', 1), ('specifically', 1), ('topic', 1), ('important', 1), ('three', 1), ('dimensional', 1), ('modelling', 1), ('surface', 1), ('design', 1), ('real', 1), ('time', 1), ('provides', 1), ('depth', 1), ('coverage', 1), ('data', 1), ('structure', 1), ('popular', 1), ('method', 1)]
[('new', 1), ('frontier', 1), ('robotics', 1), ('research', 1), ('foresee', 1), ('future', 1), ('scenario', 1), ('artificial', 1), ('agent', 1), ('leave', 1), ('laboratory', 1), ('progressively', 1), ('take', 1), ('part', 1), ('activity', 1), ('daily', 1), ('life', 1), ('require', 1), ('robot', 1), ('sophisticated', 1), ('perceptual', 1)]
[('book', 1), ('explores', 1), ('digital', 1), ('technology', 1), ('proved', 1), ('useful', 1), ('necessary', 1), ('tool', 1), ('help', 1), ('ensure', 1), ('local', 1), ('regional', 1), ('government', 1), ('frontline', 1), ('emergency', 1), ('continue', 1), ('provide', 1), ('essential', 1), ('public', 1), ('service', 1), ('covid', 1)]
[('data', 2), ('book', 1), ('present', 1), ('study', 1), ('related', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('application', 1), ('process', 1), ('analyze', 1), ('big', 1), ('create', 1), ('machine', 1), ('software', 1), ('better', 1), ('understand', 1), ('business', 1), ('behavior', 1), ('industry', 1), ('activity', 1), ('human', 1), ('health', 1)]
[('visual', 2), ('spectrum', 2), ('human', 1), ('perception', 1), ('limited', 1), ('optical', 1), ('machine', 1), ('vision', 1), ('camera', 1), ('sensitive', 1), ('different', 1), ('infrared', 1), ('enhance', 1), ('ability', 1), ('autonomous', 1), ('system', 1), ('visually', 1), ('perceive', 1), ('environment', 1), ('holistic', 1), ('way', 1)]
[('data', 2), ('business', 2), ('reason', 2), ('warehouse', 1), ('consolidate', 1), ('various', 1), ('activity', 1), ('often', 1), ('form', 1), ('backbone', 1), ('generating', 1), ('report', 1), ('support', 1), ('important', 1), ('decision', 1), ('error', 1), ('tend', 1), ('creep', 1), ('variety', 1), ('include', 1)]
[('system', 3), ('hypermedia', 2), ('design', 1), ('space', 1), ('information', 1), ('service', 1), ('evolved', 1), ('seminal', 1), ('work', 1), ('set', 1), ('prototypical', 1), ('matured', 1), ('open', 1), ('widely', 1), ('accessible', 1), ('web', 1), ('based', 1), ('original', 1), ('concept', 1), ('expressed', 1)]
[('lpwan', 2), ('book', 1), ('offer', 1), ('suitable', 1), ('method', 1), ('applying', 1), ('low', 1), ('power', 1), ('wide', 1), ('area', 1), ('network', 1), ('technology', 1), ('conceptual', 1), ('work', 1), ('research', 1), ('study', 1), ('instance', 1), ('existing', 1), ('iot', 1), ('protocol', 1), ('coap', 1), ('mqtt', 1), ('complemented', 1), ('provide', 1)]
[('book', 1), ('outline', 1), ('scientific', 1), ('career', 1), ('arto', 1), ('salomaa', 1), ('pioneer', 1), ('theoretical', 1), ('computer', 1), ('science', 1), ('mathematics', 1), ('author', 1), ('first', 1), ('interviewed', 1), ('subject', 1), ('family', 1), ('collaborator', 1), ('researched', 1), ('fascinating', 1), ('biography', 1)]
[('cyber', 3), ('defense', 3), ('autonomous', 2), ('book', 1), ('explores', 1), ('fundamental', 1), ('scientific', 1), ('problem', 1), ('essential', 1), ('specific', 1), ('area', 1), ('include', 1), ('game', 1), ('control', 1), ('theory', 1), ('based', 1), ('moving', 1), ('target', 1), ('mtds', 1), ('adaptive', 1), ('acds', 1), ('fully', 1)]
[('ai', 2), ('medicine', 2), ('book', 1), ('provides', 1), ('overview', 1), ('role', 1), ('generally', 1), ('issue', 1), ('intersection', 1), ('mathematics', 1), ('informatics', 1), ('intended', 1), ('expert', 1), ('offering', 1), ('valuable', 1), ('retrospective', 1), ('global', 1), ('vision', 1)]
[('book', 1), ('provides', 1), ('comprehensive', 1), ('view', 1), ('method', 1), ('approach', 1), ('performance', 1), ('evaluation', 1), ('computer', 1), ('network', 1), ('offer', 1), ('clear', 1), ('logical', 1), ('introduction', 1), ('topic', 1), ('covering', 1), ('fundamental', 1), ('concept', 1), ('practical', 1), ('aspect', 1), ('enables', 1)]
[('federated', 2), ('learning', 2), ('user', 2), ('book', 1), ('present', 1), ('help', 1), ('understand', 1), ('learn', 1), ('activity', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('application', 1), ('protecting', 1), ('privacy', 1), ('author', 1), ('first', 1), ('show', 1), ('provides', 1), ('unique', 1), ('way', 1), ('build', 1)]
[('convnets', 2), ('text', 1), ('reference', 1), ('introduces', 1), ('fundamental', 1), ('concept', 1), ('convolutional', 1), ('neural', 1), ('network', 1), ('offering', 1), ('practical', 1), ('guidance', 1), ('using', 1), ('library', 1), ('implement', 1), ('application', 1), ('traffic', 1), ('sign', 1), ('detection', 1), ('classification', 1)]
[('implementation', 2), ('book', 1), ('embarks', 1), ('mission', 1), ('dissect', 1), ('unravel', 1), ('demystify', 1), ('concept', 1), ('web', 1), ('service', 1), ('including', 1), ('composition', 1), ('technique', 1), ('provides', 1), ('comprehensive', 1), ('perspective', 1), ('fundamental', 1), ('standard', 1)]
[('modern', 2), ('book', 1), ('provides', 1), ('technical', 1), ('answer', 1), ('legal', 1), ('requirement', 1), ('pseudonymisation', 1), ('recommended', 1), ('privacy', 1), ('legislation', 1), ('cover', 1), ('topic', 1), ('regulatory', 1), ('framework', 1), ('sharing', 1), ('linking', 1), ('sensitive', 1), ('information', 1), ('concept', 1)]
[('book', 3), ('cyberdeception', 3), ('technique', 2), ('introduction', 1), ('offensive', 1), ('defensive', 1), ('unlike', 1), ('focus', 1), ('method', 1), ('rather', 1), ('detection', 1), ('treat', 1), ('current', 1), ('novel', 1)]
[('multi', 2), ('book', 1), ('develops', 1), ('application', 1), ('novel', 1), ('generalization', 1), ('fuzzy', 1), ('information', 1), ('measure', 1), ('field', 1), ('pattern', 1), ('recognition', 1), ('medical', 1), ('diagnosis', 1), ('criterion', 1), ('attribute', 1), ('decision', 1), ('making', 1), ('suitability', 1), ('linguistic', 1), ('variable', 1), ('focus', 1)]
[('book', 1), ('explores', 1), ('society', 1), ('currently', 1), ('transformed', 1), ('influence', 1), ('advanced', 1), ('information', 1), ('technology', 1), ('provides', 1), ('insight', 1), ('main', 1), ('technological', 1), ('human', 1), ('issue', 1), ('holistic', 1), ('approach', 1), ('inclusion', 1), ('security', 1), ('safety', 1), ('last', 1)]
[('system', 2), ('new', 2), ('book', 1), ('introduces', 1), ('concept', 1), ('principle', 1), ('method', 1), ('procedure', 1), ('valuable', 1), ('student', 1), ('scholar', 1), ('thinking', 1), ('existing', 1), ('organization', 1), ('proposing', 1), ('working', 1), ('management', 1), ('professional', 1), ('implementing', 1)]
[('enterprise', 2), ('architecture', 2), ('textbook', 1), ('provides', 1), ('hand', 1), ('introduction', 1), ('management', 1), ('guide', 1), ('reader', 1), ('application', 1), ('method', 1), ('tool', 1), ('typical', 1), ('business', 1), ('problem', 1), ('presenting', 1), ('framework', 1), ('sharing', 1)]
[('machine', 2), ('learning', 2), ('engineer', 1), ('applied', 1), ('scientist', 1), ('need', 1), ('harness', 1), ('power', 1), ('solve', 1), ('highly', 1), ('complex', 1), ('data', 1), ('intensive', 1), ('problem', 1), ('emerging', 1), ('text', 1), ('teach', 1), ('state', 1), ('art', 1), ('technology', 1), ('student', 1)]
[('book', 1), ('reveals', 1), ('hidden', 1), ('potential', 1), ('emerging', 1), ('economy', 1), ('become', 1), ('new', 1), ('industrial', 1), ('hub', 1), ('existing', 1), ('global', 1), ('value', 1), ('chain', 1), ('pursuing', 1), ('data', 1), ('centric', 1), ('approach', 1), ('investigates', 1), ('presence', 1), ('foreign', 1), ('direct', 1), ('investment', 1), ('instrument', 1)]
[('reasoning', 3), ('case', 2), ('based', 2), ('problem', 2), ('methodology', 1), ('long', 1), ('tradition', 1), ('artificial', 1), ('intelligence', 1), ('brings', 1), ('together', 1), ('machine', 1), ('learning', 1), ('technique', 1), ('solve', 1), ('past', 1), ('experience', 1), ('given', 1), ('solved', 1)]
[('model', 3), ('planning', 2), ('behavior', 2), ('based', 1), ('approach', 1), ('autonomous', 1), ('agent', 1), ('derived', 1), ('automatically', 1), ('action', 1), ('sensor', 1), ('goal', 1), ('main', 1), ('challenge', 1), ('computational', 1), ('whether', 1), ('featuring', 1)]
[('logic', 3), ('programming', 3), ('style', 1), ('program', 1), ('take', 1), ('form', 1), ('set', 1), ('sentence', 1), ('language', 1), ('symbolic', 1), ('year', 1), ('growing', 1), ('interest', 1), ('due', 1), ('application', 1), ('deductive', 1), ('database', 1)]
[('language', 3), ('english', 2), ('estimated', 1), ('billion', 1), ('using', 1), ('learning', 1), ('second', 1), ('foreign', 1), ('number', 1), ('growing', 1), ('learner', 1), ('provide', 1), ('burgeoning', 1), ('market', 1)]
[('increase', 2), ('wireless', 2), ('explosive', 1), ('number', 1), ('mobile', 1), ('device', 1), ('application', 1), ('anticipated', 1), ('traffic', 1), ('exponentially', 1), ('coming', 1), ('year', 1), ('moreover', 1), ('future', 1), ('network', 1), ('carry', 1), ('wide', 1), ('variety', 1), ('flow', 1)]
[('book', 1), ('result', 1), ('many', 1), ('year', 1), ('teaching', 1), ('upper', 1), ('division', 1), ('course', 1), ('communication', 1), ('network', 1), ('eec', 1), ('department', 1), ('university', 1), ('california', 1), ('berkeley', 1), ('motivated', 1), ('perceived', 1), ('need', 1), ('easily', 1), ('accessible', 1), ('textbook', 1), ('put', 1)]
[('information', 2), ('textbook', 1), ('provides', 1), ('solid', 1), ('guidance', 1), ('produce', 1), ('model', 1), ('practice', 1), ('modeling', 1), ('become', 1), ('increasingly', 1), ('relevant', 1), ('approach', 1), ('understanding', 1), ('active', 1), ('role', 1), ('data', 1), ('play', 1), ('within', 1), ('business', 1), ('management', 1)]
[('language', 2), ('jetbrains', 2), ('book', 1), ('cover', 1), ('several', 1), ('topic', 1), ('related', 1), ('domain', 1), ('specific', 1), ('dsl', 1), ('engineering', 1), ('general', 1), ('handled', 1), ('mean', 1), ('meta', 1), ('programming', 1), ('system', 1), ('mp', 1), ('open', 1), ('source', 1), ('workbench', 1), ('developed', 1)]
[('smart', 2), ('city', 2), ('book', 1), ('overview', 1), ('driver', 1), ('behind', 1), ('vision', 1), ('describes', 1), ('dimension', 1), ('introduces', 1), ('reference', 1), ('architecture', 1), ('enumerates', 1), ('classifies', 1), ('threat', 1), ('targeting', 1), ('concept', 1), ('link', 1), ('corresponding', 1), ('attack', 1)]
[('book', 1), ('open', 1), ('introduction', 1), ('main', 1), ('purpose', 1), ('task', 1), ('giana', 1), ('challenge', 1), ('summary', 1), ('analysis', 1), ('result', 1), ('performance', 1), ('obtained', 1), ('participating', 1), ('team', 1), ('early', 1), ('accurate', 1), ('diagnosis', 1)]
[('gpu', 3), ('part', 2), ('third', 1), ('book', 1), ('three', 1), ('series', 1), ('history', 1), ('cover', 1), ('second', 1), ('sixth', 1), ('era', 1), ('found', 1), ('anything', 1), ('display', 1), ('screen', 1), ('supercomputer', 1), ('pc', 1), ('smartphones', 1), ('tablet', 1)]
[('volume', 1), ('advanced', 1), ('textbook', 1), ('present', 1), ('result', 1), ('proof', 1), ('method', 1), ('translation', 1), ('motivational', 1), ('philosophical', 1), ('consideration', 1), ('formal', 1), ('construction', 1), ('vol', 1), ('author', 1), ('explains', 1), ('preferential', 1), ('structure', 1), ('abstract', 1), ('size', 1)]
[('lnbi', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('work', 1), ('conference', 1), ('bioinformatics', 1), ('biomedical', 1), ('engineering', 1), ('iwbbio', 1), ('held', 1), ('granada', 1), ('spain', 1), ('april', 1), ('regular', 1), ('paper', 1), ('presented', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('mexican', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('micai', 1), ('held', 1), ('guadalajara', 1), ('mexico', 1), ('october', 1), ('nbsp', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('international', 3), ('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('engineering', 1), ('psychology', 1), ('cognitive', 1), ('ergonomics', 1), ('epce', 1), ('held', 1), ('part', 1), ('st', 1), ('nbsp', 1), ('hci', 1), ('took', 1), ('place', 1), ('orlando', 1)]
[('volume', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('mexican', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('micai', 1), ('held', 1), ('xalapa', 1), ('mexico', 1), ('october', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('logic', 1), ('argumentation', 1), ('clar', 1), ('held', 1), ('hangzhou', 1), ('china', 1), ('april', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 3), ('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('augmented', 1), ('cognition', 1), ('ac', 1), ('held', 1), ('part', 1), ('nd', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('july', 1), ('planned', 1)]
[('book', 2), ('provides', 1), ('comprehensive', 1), ('self', 1), ('contained', 1), ('introduction', 1), ('federated', 1), ('learning', 1), ('ranging', 1), ('basic', 1), ('knowledge', 1), ('theory', 1), ('various', 1), ('key', 1), ('application', 1), ('privacy', 1), ('incentive', 1), ('issue', 1), ('focus', 1), ('timely', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('sgai', 1), ('international', 1), ('innovative', 1), ('technique', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('supposed', 1), ('held', 1), ('cambridge', 1), ('uk', 1), ('december', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('international', 1), ('workshop', 1), ('coordination', 1), ('organization', 1), ('institution', 1), ('norm', 1), ('governance', 1), ('multi', 1), ('agent', 1), ('system', 1), ('coin', 1), ('co', 1), ('located', 1), ('aamas', 1)]
[('china', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('national', 1), ('conference', 1), ('computational', 1), ('linguistics', 1), ('ccl', 1), ('held', 1), ('hohhot', 1), ('august', 1), ('full', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('multi', 1), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('european', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('september', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('artificial', 1), ('intelligence', 1), ('soft', 1), ('computing', 1), ('icaisc', 1), ('held', 1), ('zakopane', 1), ('poland', 1), ('june', 1), ('due', 1), ('covid', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('brazilian', 1), ('conference', 1), ('intelligent', 1), ('system', 1), ('bracis', 1), ('held', 1), ('são', 1), ('paolo', 1), ('brazil', 1), ('november', 1), ('december', 1), ('nbsp', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('conference', 3), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('inductive', 1), ('logic', 1), ('programming', 1), ('ilp', 1), ('october', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('paper', 1), ('short', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('hybrid', 1), ('artificial', 1), ('intelligent', 1), ('system', 1), ('hais', 1), ('held', 1), ('salamanca', 1), ('spain', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('soft', 2), ('computing', 2), ('book', 1), ('report', 1), ('advancedtheories', 1), ('cutting', 1), ('edge', 1), ('application', 1), ('field', 1), ('theindividual', 1), ('chapter', 1), ('written', 1), ('leading', 1), ('researcher', 1), ('based', 1), ('contributionspresented', 1), ('th', 1), ('world', 1), ('conference', 1)]
[('first', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('ecml', 1), ('pkdd', 1), ('workshop', 1), ('aaltd', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('september', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1), ('part', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('science', 1), ('engineering', 1), ('management', 1), ('ksem', 1), ('held', 1), ('passau', 1), ('germany', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('engineering', 1), ('psychology', 1), ('cognitive', 1), ('ergonomics', 1), ('epce', 1), ('held', 1), ('vancouver', 1), ('canada', 1), ('july', 1), ('hcii', 1), ('received', 1), ('total', 1), ('submission', 1), ('paper', 1)]
[('tableau', 2), ('book', 1), ('contains', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('automated', 1), ('reasoning', 1), ('analytics', 1), ('related', 1), ('method', 1), ('held', 1), ('brasília', 1), ('bazil', 1), ('september', 1), ('contributed', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('italian', 1), ('association', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('ia', 1), ('held', 1), ('bari', 1), ('italy', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('sgai', 1), ('international', 1), ('conference', 1), ('innovative', 1), ('technique', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('cambridge', 1), ('uk', 1), ('december', 1), ('full', 1), ('short', 1)]
[('book', 2), ('research', 2), ('understanding', 2), ('third', 1), ('presenting', 1), ('selected', 1), ('result', 1), ('development', 1), ('shape', 1), ('system', 1), ('sus', 1), ('carried', 1), ('author', 1), ('newly', 1), ('founded', 1), ('queen', 1), ('jadwiga', 1), ('institute', 1), ('new', 1), ('term', 1)]
[('present', 2), ('neural', 2), ('network', 2), ('robust', 2), ('fault', 2), ('diagnosis', 2), ('scheme', 2), ('book', 1), ('devoted', 1), ('problem', 1), ('adaptation', 1), ('artificial', 1), ('based', 1), ('modelling', 1), ('estimation', 1), ('technique', 1), ('used', 1), ('designing', 1)]
[('soft', 1), ('computing', 1), ('technique', 1), ('based', 1), ('information', 1), ('processing', 1), ('biological', 1), ('system', 1), ('massively', 1), ('used', 1), ('area', 1), ('pattern', 1), ('recognition', 1), ('making', 1), ('prediction', 1), ('amp', 1), ('planning', 1), ('acting', 1), ('environment', 1), ('ideally', 1), ('speaking', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('international', 1), ('conference', 1), ('research', 1), ('computational', 1), ('molecular', 1), ('biology', 1), ('recomb', 1), ('held', 1), ('warsaw', 1), ('poland', 1), ('april', 1), ('extended', 1), ('abstract', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('workshopproceedings', 1), ('second', 1), ('international', 1), ('workshop', 1), ('worldwide', 1), ('language', 1), ('serviceinfrastructure', 1), ('wlsi', 1), ('held', 1), ('kyoto', 1), ('japan', 1), ('january', 1), ('full', 1), ('paper', 1), ('included', 1), ('volume', 1)]
[('intelligent', 2), ('book', 1), ('present', 1), ('recent', 1), ('advance', 1), ('design', 1), ('system', 1), ('based', 1), ('fuzzy', 1), ('logic', 1), ('neural', 1), ('network', 1), ('nature', 1), ('inspired', 1), ('optimization', 1), ('application', 1), ('area', 1), ('control', 1), ('robotics', 1), ('pattern', 1), ('recognition', 1), ('time', 1), ('series', 1)]
[('book', 1), ('remarkable', 1), ('collection', 1), ('chapter', 1), ('covering', 1), ('wider', 1), ('range', 1), ('topic', 1), ('including', 1), ('unsupervised', 1), ('text', 1), ('mining', 1), ('anomaly', 1), ('intrusion', 1), ('detection', 1), ('self', 1), ('reconfiguring', 1), ('robotics', 1), ('application', 1), ('fuzzy', 1), ('logic', 1), ('development', 1), ('aid', 1), ('design', 1)]
[('technology', 2), ('ci', 2), ('fuzzy', 2), ('monograph', 1), ('dedicated', 1), ('systematic', 1), ('presentation', 1), ('main', 1), ('trend', 1), ('method', 1), ('computational', 1), ('intelligence', 1), ('book', 1), ('pay', 1), ('big', 1), ('attention', 1), ('novel', 1), ('important', 1), ('logic', 1), ('fl', 1), ('system', 1), ('neural', 1), ('network', 1)]
[('grouping', 2), ('algorithm', 2), ('book', 1), ('present', 1), ('advance', 1), ('innovation', 1), ('genetic', 1), ('enriched', 1), ('new', 1), ('unique', 1), ('heuristic', 1), ('optimization', 1), ('technique', 1), ('specially', 1), ('designed', 1), ('solving', 1), ('industrial', 1), ('problem', 1), ('system', 1), ('entity', 1)]
[('grammatical', 2), ('inference', 2), ('method', 2), ('lt', 1), ('div', 1), ('gt', 1), ('book', 1), ('focus', 1), ('presenting', 1), ('classic', 1), ('modern', 1), ('perspective', 1), ('practitioner', 1), ('employ', 1), ('python', 1), ('programming', 1), ('language', 1), ('present', 1)]
[('book', 1), ('includes', 1), ('selection', 1), ('revised', 1), ('extended', 1), ('version', 1), ('best', 1), ('paper', 1), ('seventh', 1), ('international', 1), ('joint', 1), ('conference', 1), ('computational', 1), ('intelligence', 1), ('ijcci', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('november', 1), ('composed', 1)]
[('lt', 1), ('div', 1), ('gt', 1), ('book', 1), ('offer', 1), ('comprehensive', 1), ('analysis', 1), ('theory', 1), ('tool', 1), ('needed', 1), ('development', 1), ('efficient', 1), ('robust', 1), ('infrastructure', 1), ('design', 1), ('collaborative', 1), ('patrolling', 1), ('unmanned', 1), ('aerial', 1), ('vehicle', 1), ('uav', 1), ('swarm', 1), ('focusing', 1)]
[('unique', 1), ('book', 1), ('succinctly', 1), ('summarizes', 1), ('need', 1), ('measure', 1), ('ontology', 1), ('building', 1), ('block', 1), ('semantic', 1), ('web', 1), ('currently', 1), ('utilized', 1), ('providing', 1), ('insight', 1), ('various', 1), ('stakeholder', 1), ('possible', 1), ('improves', 1), ('reuses', 1), ('term', 1)]
[('research', 3), ('lt', 1), ('gt', 1), ('book', 1), ('present', 1), ('report', 1), ('selected', 1), ('indicate', 1), ('state', 1), ('art', 1), ('intelligent', 1), ('database', 1), ('system', 1), ('promote', 1), ('new', 1), ('field', 1), ('includes', 1), ('chapter', 1), ('based', 1), ('original', 1), ('presented', 1), ('poster', 1)]
[('scientific', 2), ('volgograd', 2), ('book', 1), ('gather', 1), ('outcome', 1), ('several', 1), ('event', 1), ('organized', 1), ('conducted', 1), ('institute', 1), ('communication', 1), ('russia', 1), ('leading', 1), ('university', 1), ('region', 1), ('contributing', 1), ('author', 1), ('include', 1)]
[('computing', 2), ('outdoors', 2), ('advance', 1), ('network', 1), ('connectivity', 1), ('power', 1), ('consumption', 1), ('physical', 1), ('size', 1), ('create', 1), ('new', 1), ('possibility', 1), ('using', 1), ('interactive', 1), ('moving', 1), ('drastically', 1), ('change', 1), ('human', 1), ('outdoor', 1), ('experience', 1), ('nbsp', 1), ('impact', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('human', 1), ('choice', 1), ('computer', 1), ('hcc', 1), ('supposed', 1), ('take', 1), ('place', 1), ('tokyo', 1), ('japan', 1), ('september', 1), ('cancelled', 1), ('due', 1)]
[('evaluating', 1), ('interactive', 1), ('system', 1), ('user', 1), ('experience', 1), ('ux', 1), ('standard', 1), ('approach', 1), ('industry', 1), ('research', 1), ('today', 1), ('book', 1), ('explores', 1), ('area', 1), ('game', 1), ('design', 1), ('development', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hci', 1), ('way', 1), ('understand', 1), ('various', 1)]
[('present', 1), ('book', 1), ('includes', 1), ('set', 1), ('selected', 1), ('revised', 1), ('extended', 1), ('version', 1), ('best', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('computational', 1), ('intelligence', 1), ('ijcci', 1), ('held', 1), ('seville', 1), ('spain', 1), ('september', 1)]
[('xai', 2), ('importance', 1), ('trustworthy', 1), ('explainable', 1), ('artificial', 1), ('intelligence', 1), ('recognized', 1), ('academia', 1), ('industry', 1), ('society', 1), ('book', 1), ('introduces', 1), ('tool', 1), ('dealing', 1), ('imprecision', 1), ('uncertainty', 1), ('application', 1), ('explanation', 1)]
[('book', 2), ('intelligence', 2), ('show', 1), ('digital', 1), ('economy', 1), ('become', 1), ('sought', 1), ('solution', 1), ('sustainable', 1), ('development', 1), ('economic', 1), ('growth', 1), ('nation', 1), ('discus', 1), ('implication', 1), ('artificial', 1), ('computational', 1)]
[('topic', 2), ('timely', 1), ('text', 1), ('reference', 1), ('explores', 1), ('business', 1), ('technical', 1), ('issue', 1), ('involved', 1), ('management', 1), ('information', 1), ('system', 1), ('era', 1), ('big', 1), ('data', 1), ('beyond', 1), ('feature', 1), ('present', 1), ('review', 1), ('question', 1), ('discussion', 1), ('chapter', 1)]
[('technology', 2), ('generation', 2), ('rapid', 1), ('advancement', 1), ('interactive', 1), ('past', 1), ('decade', 1), ('made', 1), ('access', 1), ('information', 1), ('easier', 1), ('though', 1), ('expense', 1), ('clear', 1), ('digital', 1), ('divide', 1), ('grew', 1), ('another', 1)]
[('learning', 2), ('data', 2), ('book', 1), ('offer', 1), ('timely', 1), ('snapshot', 1), ('extensive', 1), ('practical', 1), ('theoretical', 1), ('insight', 1), ('topic', 1), ('based', 1), ('tutorial', 1), ('presented', 1), ('inn', 1), ('big', 1), ('deep', 1), ('conference', 1), ('innsbddl', 1), ('held', 1), ('april', 1)]
[('human', 3), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('seizes', 1), ('aspect', 1), ('life', 1), ('fundamental', 1), ('shift', 1), ('way', 1), ('thinking', 1), ('thing', 1), ('ordinarily', 1), ('relied', 1), ('economics', 1), ('finance', 1), ('theory', 1), ('make', 1), ('sense', 1)]
[('ifip', 2), ('volume', 1), ('set', 1), ('aict', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('wg', 1), ('conference', 1), ('advance', 1), ('production', 1), ('management', 1), ('system', 1), ('apms', 1), ('held', 1), ('seoul', 1), ('south', 1), ('korea', 1), ('august', 1), ('revised', 1), ('full', 1)]
[('research', 3), ('book', 1), ('present', 1), ('report', 1), ('selected', 1), ('indicate', 1), ('state', 1), ('art', 1), ('intelligent', 1), ('database', 1), ('system', 1), ('promote', 1), ('new', 1), ('field', 1), ('includes', 1), ('chapter', 1), ('based', 1), ('original', 1), ('presented', 1), ('poster', 1), ('th', 1), ('asian', 1)]
[('digital', 1), ('forensics', 1), ('deal', 1), ('acquisition', 1), ('preservation', 1), ('examination', 1), ('analysis', 1), ('presentation', 1), ('electronic', 1), ('evidence', 1), ('computer', 1), ('network', 1), ('cloud', 1), ('computing', 1), ('smartphones', 1), ('embedded', 1), ('device', 1), ('internet', 1), ('thing', 1), ('expanded', 1), ('role', 1)]
[('knowledge', 2), ('business', 2), ('book', 1), ('turning', 1), ('data', 1), ('smart', 1), ('decision', 1), ('wisdom', 1), ('intelligence', 1), ('insight', 1), ('explores', 1), ('diverse', 1), ('paradigm', 1), ('methodology', 1), ('model', 1), ('tool', 1), ('technique', 1), ('emerging', 1), ('domain', 1)]
[('database', 5), ('mapping', 2), ('peer', 2), ('book', 1), ('present', 1), ('novel', 1), ('approach', 1), ('concept', 1), ('describing', 1), ('categorical', 1), ('logic', 1), ('schema', 1), ('based', 1), ('view', 1), ('within', 1), ('framework', 1), ('integration', 1), ('exchange', 1), ('programming', 1)]
[('programming', 2), ('language', 2), ('design', 2), ('textbook', 1), ('intended', 1), ('guide', 1), ('designer', 1), ('user', 1), ('better', 1), ('help', 1), ('understand', 1), ('consequence', 1), ('decision', 1), ('text', 1), ('aim', 1), ('provide', 1), ('reader', 1), ('overview', 1), ('space', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('computer', 1), ('computing', 1), ('technology', 1), ('agriculture', 1), ('ccta', 1), ('held', 1), ('beijing', 1), ('china', 1), ('september', 1), ('revised', 1), ('paper', 1)]
[('field', 3), ('book', 1), ('explores', 1), ('role', 1), ('cognition', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hci', 1), ('assessing', 1), ('developed', 1), ('past', 1), ('thirty', 1), ('year', 1), ('discus', 1), ('heading', 1), ('begin', 1), ('live', 1), ('increasingly', 1), ('interconnected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('trust', 1), ('management', 1), ('ifiptm', 1), ('held', 1), ('toronto', 1), ('canada', 1), ('july', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('informatics', 1), ('semiotics', 1), ('organisation', 1), ('iciso', 1), ('held', 1), ('reading', 1), ('uk', 1), ('july', 1), ('full', 1), ('paper', 1), ('poster', 1), ('presented', 1), ('carefully', 1)]
[('book', 2), ('quasivariety', 2), ('discus', 1), ('way', 1), ('algebra', 1), ('locally', 1), ('finite', 1), ('determine', 1), ('lattice', 1), ('subquasivarieties', 1), ('nbsp', 1), ('start', 1), ('clear', 1), ('comprehensive', 1), ('presentation', 1), ('basic', 1), ('structure', 1), ('theory', 1)]
[('law', 2), ('unique', 1), ('text', 1), ('reference', 1), ('present', 1), ('unified', 1), ('approach', 1), ('formulation', 1), ('gestalt', 1), ('nbsp', 1), ('perceptual', 1), ('grouping', 1), ('construction', 1), ('nested', 1), ('hierarchy', 1), ('aggregation', 1), ('utilizing', 1), ('book', 1), ('describes', 1), ('extraction', 1)]
[('autistic', 2), ('reasoning', 2), ('book', 1), ('explores', 1), ('evaluates', 1), ('account', 1), ('model', 1), ('cognition', 1), ('computational', 1), ('standpoint', 1), ('author', 1), ('investigates', 1), ('limitation', 1), ('peculiarity', 1), ('set', 1), ('remediation', 1), ('strategy', 1)]
[('psychology', 3), ('practitioner', 2), ('mainstream', 1), ('never', 1), ('intended', 1), ('hci', 1), ('second', 1), ('edition', 1), ('user', 1), ('experience', 1), ('take', 1), ('opportunity', 1), ('create', 1), ('new', 1), ('chapter', 1), ('specifically', 1), ('written', 1), ('ux', 1), ('oriented', 1)]
[('text', 2), ('learning', 2), ('timely', 1), ('reference', 1), ('present', 1), ('broad', 1), ('overview', 1), ('advanced', 1), ('deep', 1), ('architecture', 1), ('effective', 1), ('feature', 1), ('representation', 1), ('perceptual', 1), ('biometrics', 1), ('related', 1), ('task', 1), ('offer', 1), ('showcase', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('use', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('intelligence', 1), ('science', 1), ('icis', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('security', 2), ('cybercrime', 1), ('remains', 1), ('growing', 1), ('challenge', 1), ('term', 1), ('privacy', 1), ('practice', 1), ('working', 1), ('together', 1), ('deep', 1), ('learning', 1), ('cyber', 1), ('expert', 1), ('recently', 1), ('made', 1), ('significant', 1), ('advance', 1), ('field', 1), ('intrusion', 1), ('detection', 1), ('malicious', 1), ('code', 1), ('analysis', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('software', 1), ('business', 1), ('icsob', 1), ('held', 1), ('jyväskylä', 1), ('finland', 1), ('november', 1), ('occasion', 1), ('tenth', 1), ('anniversary', 1), ('theme', 1), ('year', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('exploring', 1), ('service', 1), ('science', 1), ('y', 1), ('held', 1), ('karlsruhe', 1), ('germany', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('graph', 3), ('data', 3), ('management', 2), ('book', 1), ('present', 1), ('comprehensive', 1), ('overview', 1), ('fundamental', 1), ('issue', 1), ('recent', 1), ('advance', 1), ('nbsp', 1), ('aim', 1), ('provide', 1), ('beginning', 1), ('researcher', 1), ('area', 1), ('field', 1), ('require', 1)]
[('edited', 1), ('book', 1), ('adopts', 1), ('cognitive', 1), ('perspective', 1), ('provide', 1), ('breadth', 1), ('depth', 1), ('state', 1), ('art', 1), ('research', 1), ('related', 1), ('understanding', 1), ('analyzing', 1), ('predicting', 1), ('improving', 1), ('prominent', 1), ('important', 1), ('class', 1), ('behavior', 1), ('modern', 1), ('human', 1)]
[('book', 1), ('introduces', 1), ('fundamental', 1), ('dc', 1), ('show', 1), ('include', 1), ('wireless', 1), ('technology', 1), ('design', 1), ('guaranteeing', 1), ('desired', 1), ('operation', 1), ('characteristic', 1), ('text', 1), ('present', 1), ('insight', 1), ('result', 1), ('gained', 1), ('extensive', 1), ('practical', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('software', 1), ('quality', 1), ('day', 1), ('swqd', 1), ('planned', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('january', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('cancelled', 1)]
[('ai', 2), ('today', 2), ('book', 1), ('offer', 1), ('comprehensive', 1), ('approach', 1), ('question', 1), ('artificial', 1), ('intelligence', 1), ('impact', 1), ('politics', 1), ('economy', 1), ('society', 1), ('view', 1), ('quintessential', 1), ('understanding', 1), ('complex', 1), ('nature', 1), ('role', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('five', 1), ('workshop', 1), ('held', 1), ('thessaloniki', 1), ('greece', 1), ('conjunction', 1), ('th', 1), ('conference', 1), ('advanced', 1), ('information', 1), ('system', 1), ('engineering', 1), ('caise', 1), ('june', 1)]
[('text', 2), ('timely', 1), ('present', 1), ('comprehensive', 1), ('overview', 1), ('fault', 1), ('tolerance', 1), ('technique', 1), ('high', 1), ('performance', 1), ('computing', 1), ('hpc', 1), ('open', 1), ('detailed', 1), ('introduction', 1), ('concept', 1), ('checkpoint', 1), ('protocol', 1), ('scheduling', 1), ('algorithm', 1), ('prediction', 1)]
[('book', 1), ('provides', 1), ('systematic', 1), ('comparative', 1), ('description', 1), ('vast', 1), ('number', 1), ('research', 1), ('issue', 1), ('related', 1), ('quality', 1), ('data', 1), ('information', 1), ('delivering', 1), ('sound', 1), ('integrated', 1), ('comprehensive', 1), ('overview', 1), ('state', 1), ('art', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('three', 1), ('workshop', 1), ('held', 1), ('essen', 1), ('germany', 1), ('conjunction', 1), ('th', 1), ('conference', 1), ('advanced', 1), ('information', 1), ('system', 1), ('engineering', 1), ('caise', 1), ('june', 1)]
[('conference', 2), ('webist', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('web', 1), ('information', 1), ('system', 1), ('technology', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('april', 1), ('purpose', 1), ('series', 1), ('bring', 1)]
[('caise', 3), ('forum', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('information', 1), ('system', 1), ('engineering', 1), ('held', 1), ('thessaloniki', 1), ('greece', 1), ('june', 1), ('place', 1), ('present', 1)]
[('selected', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('th', 1), ('nbsp', 1), ('argentine', 1), ('congress', 1), ('computer', 1), ('science', 1), ('cacic', 1), ('held', 1), ('tandil', 1), ('argentina', 1), ('october', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 3), ('th', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('smart', 1), ('city', 1), ('green', 1), ('ict', 1), ('system', 1), ('smartgreens', 1), ('vehicle', 1), ('technology', 1), ('intelligent', 1)]
[('data', 2), ('paper', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('big', 1), ('innovation', 1), ('application', 1), ('innovate', 1), ('held', 1), ('istanbul', 1), ('turkey', 1), ('august', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('nbsp', 6), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('mathematical', 1), ('optimization', 1), ('theory', 1), ('operation', 1), ('research', 1), ('motor', 1), ('held', 1), ('ekaterinburg', 1), ('russia', 1), ('july', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('th', 1), ('international', 1), ('workshop', 1), ('information', 1), ('search', 1), ('integration', 1), ('personalization', 1), ('isip', 1), ('held', 1), ('heraklion', 1), ('greece', 1), ('volume', 1), ('present', 1), ('full', 1)]
[('nbsp', 4), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('smart', 1), ('technology', 1), ('system', 1), ('application', 1), ('held', 1), ('quito', 1), ('ecuador', 1), ('december', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('paper', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('transport', 1), ('system', 1), ('telematics', 1), ('tst', 1), ('held', 1), ('kraków', 1), ('poland', 1), ('october', 1), ('full', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('iee', 1), ('international', 1), ('conference', 1), ('beyond', 1), ('database', 1), ('architecture', 1), ('structure', 1), ('bdas', 1), ('held', 1), ('ustron', 1), ('poland', 1), ('consists', 1), ('carefully', 1), ('revised', 1), ('selected', 1), ('paper', 1)]
[('agent', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('complemented', 1), ('th', 1), ('international', 1), ('conference', 1), ('practical', 1), ('application', 1), ('multi', 1), ('system', 1), ('paams', 1), ('held', 1), ('salamanca', 1), ('spain', 1), ('june', 1), ('volume', 1)]
[('th', 2), ('italian', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('advance', 1), ('artificial', 1), ('life', 1), ('evolutionary', 1), ('computation', 1), ('held', 1), ('vietri', 1), ('sul', 1), ('mare', 1), ('italy', 1), ('conjunction', 1), ('neural', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('process', 1), ('improvement', 1), ('capability', 1), ('determination', 1), ('spice', 1), ('held', 1), ('vilnius', 1), ('lithuania', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('operation', 1), ('research', 1), ('enterprise', 1), ('system', 1), ('icores', 1), ('held', 1), ('anger', 1), ('france', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('conference', 2), ('knowledge', 2), ('book', 1), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('management', 1), ('organization', 1), ('kmo', 1), ('held', 1), ('žilina', 1), ('slovakia', 1), ('august', 1), ('theme', 1), ('emerging', 1), ('research', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('symposium', 1), ('security', 1), ('computing', 1), ('communication', 1), ('sscc', 1), ('held', 1), ('kochi', 1), ('india', 1), ('august', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('short', 1), ('workshop', 1), ('th', 1), ('east', 1), ('european', 1), ('conference', 1), ('advance', 1), ('database', 1), ('information', 1), ('system', 1), ('adbis', 1), ('held', 1), ('poitier', 1), ('france', 1), ('september', 1), ('revised', 1), ('full', 1)]
[('bookconstitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('symposium', 1), ('oncyber', 1), ('security', 1), ('cs', 1), ('held', 1), ('coeur', 1), ('alene', 1), ('id', 1), ('usa', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('computer', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('vision', 1), ('imaging', 1), ('graphic', 1), ('theory', 1), ('application', 1), ('visigrapp', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('february', 1), ('march', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('communication', 1), ('technology', 1), ('ageing', 1), ('health', 1), ('ict', 1), ('awe', 1), ('held', 1), ('funchal', 1), ('madeira', 1), ('portugal', 1), ('march', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('provides', 1), ('overview', 1), ('comparable', 1), ('corpus', 1), ('used', 1), ('overcome', 1), ('lack', 1), ('parallel', 1), ('resource', 1), ('building', 1), ('machine', 1), ('translation', 1), ('system', 1), ('resourced', 1), ('language', 1), ('domain', 1), ('present', 1), ('wealth', 1), ('method', 1), ('open', 1), ('tool', 1)]
[('learning', 2), ('book', 1), ('present', 1), ('recent', 1), ('machine', 1), ('paradigm', 1), ('advance', 1), ('analytics', 1), ('emerging', 1), ('research', 1), ('discipline', 1), ('concerned', 1), ('collection', 1), ('advanced', 1), ('processing', 1), ('extraction', 1), ('useful', 1), ('information', 1), ('educator', 1), ('learner', 1)]
[('intelligence', 3), ('without', 2), ('book', 1), ('showcase', 1), ('fascinating', 1), ('problematic', 1), ('relationship', 1), ('human', 1), ('artificial', 1), ('ai', 1), ('often', 1), ('discussed', 1), ('medium', 1), ('bodiless', 1), ('exist', 1), ('consciousness', 1), ('unconscious', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('eai', 1), ('international', 1), ('artificial', 1), ('intelligence', 1), ('communication', 1), ('network', 1), ('aicon', 1), ('held', 1), ('harbin', 1), ('china', 1), ('full', 1), ('paper', 1)]
[('fact', 2), ('text', 1), ('present', 1), ('historical', 1), ('examination', 1), ('political', 1), ('checking', 1), ('highlighting', 1), ('part', 1), ('larger', 1), ('phenomenon', 1), ('online', 1), ('scrutiny', 1), ('manifest', 1), ('multiple', 1), ('form', 1), ('reflecting', 1), ('long', 1), ('history', 1), ('fake', 1), ('america', 1)]
[('book', 1), ('present', 1), ('latest', 1), ('development', 1), ('concerning', 1), ('technique', 1), ('tool', 1), ('methodology', 1), ('supply', 1), ('chain', 1), ('ecosystem', 1), ('gather', 1), ('contribution', 1), ('variety', 1), ('expert', 1), ('analyze', 1), ('range', 1), ('case', 1), ('study', 1), ('industrial', 1), ('sector', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('eai', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('transport', 1), ('system', 1), ('intsys', 1), ('held', 1), ('braga', 1), ('portugal', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('selected', 1), ('submission', 1)]
[('quantum', 2), ('logic', 2), ('gate', 2), ('crucial', 2), ('information', 1), ('processing', 1), ('operation', 1), ('quantumcomputers', 1), ('performance', 1), ('metric', 1), ('precision', 1), ('andspeed', 1), ('processor', 1), ('based', 1), ('trapped', 1), ('ion', 1), ('always', 1), ('touchstonefor', 1)]
[('book', 2), ('technology', 2), ('aim', 1), ('attract', 1), ('researcher', 1), ('practitioner', 1), ('working', 1), ('information', 1), ('computer', 1), ('science', 1), ('edited', 1), ('basic', 1), ('high', 1), ('level', 1), ('concept', 1), ('regarding', 1), ('blockchain', 1), ('application', 1), ('multimedia', 1), ('security', 1)]
[('jckbse', 2), ('book', 1), ('summarizes', 1), ('new', 1), ('research', 1), ('result', 1), ('presented', 1), ('th', 1), ('joint', 1), ('conference', 1), ('knowledge', 1), ('based', 1), ('software', 1), ('engineering', 1), ('took', 1), ('place', 1), ('august', 1), ('island', 1), ('corfu', 1), ('greece', 1), ('established', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('infrastructure', 1), ('service', 1), ('developing', 1), ('country', 1), ('africomm', 1), ('held', 1), ('lagos', 1), ('nigeria', 1), ('december', 1), ('full', 1), ('short', 1)]
[('cipher', 2), ('accessible', 1), ('textbook', 1), ('present', 1), ('fascinating', 1), ('review', 1), ('cryptography', 1), ('cryptanalysis', 1), ('across', 1), ('history', 1), ('text', 1), ('relates', 1), ('earliest', 1), ('use', 1), ('monoalphabetic', 1), ('ancient', 1), ('world', 1), ('development', 1), ('unbreakable', 1), ('vigenère', 1)]
[('ai', 2), ('book', 1), ('report', 1), ('result', 1), ('third', 1), ('edition', 1), ('premier', 1), ('conference', 1), ('field', 1), ('philosophy', 1), ('artificial', 1), ('intelligence', 1), ('pt', 1), ('held', 1), ('november', 1), ('university', 1), ('leeds', 1), ('uk', 1), ('cover', 1), ('advanced', 1), ('knowledge', 1), ('key', 1)]
[('book', 1), ('consists', 1), ('eight', 1), ('chapter', 1), ('authored', 1), ('distinguished', 1), ('researcher', 1), ('practitioner', 1), ('highlight', 1), ('state', 1), ('art', 1), ('recent', 1), ('trend', 1), ('addressing', 1), ('project', 1), ('portfolio', 1), ('selection', 1), ('scheduling', 1), ('problem', 1), ('ppssp', 1), ('across', 1), ('variety', 1)]
[('conference', 3), ('smart', 2), ('city', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('rd', 1), ('eai', 1), ('international', 1), ('sustainable', 1), ('energy', 1), ('sesc', 1), ('held', 1), ('november', 1), ('framed', 1), ('within', 1), ('th', 1), ('annual', 1)]
[('present', 2), ('monograph', 1), ('short', 1), ('course', 1), ('computational', 1), ('geometry', 1), ('topology', 1), ('first', 1), ('part', 1), ('book', 1), ('cover', 1), ('voronoi', 1), ('diagram', 1), ('delaunay', 1), ('triangulation', 1), ('theory', 1), ('alpha', 1), ('complex', 1), ('play', 1), ('crucial', 1), ('role', 1), ('biology', 1)]
[('cognitive', 2), ('het', 2), ('net', 2), ('springer', 1), ('brief', 1), ('focus', 1), ('resource', 1), ('management', 1), ('heterogeneous', 1), ('cellular', 1), ('network', 1), ('small', 1), ('cell', 1), ('deployment', 1), ('lte', 1), ('advanced', 1), ('system', 1), ('introduces', 1), ('feature', 1), ('present', 1), ('practical', 1), ('approach', 1), ('using', 1)]
[('data', 2), ('stored', 2), ('rate', 2), ('proliferation', 1), ('social', 1), ('medium', 1), ('line', 1), ('community', 1), ('networked', 1), ('world', 1), ('large', 1), ('gamut', 1), ('collected', 1), ('database', 1), ('growing', 1), ('phenomenal', 1), ('pushing', 1), ('classical', 1)]
[('motion', 3), ('pet', 2), ('approach', 2), ('respiratory', 1), ('cardiac', 1), ('lead', 1), ('image', 1), ('degradation', 1), ('positron', 1), ('emission', 1), ('tomography', 1), ('impairs', 1), ('quantification', 1), ('book', 1), ('author', 1), ('present', 1), ('estimation', 1), ('correction', 1), ('thoracic', 1)]
[('transportation', 2), ('system', 2), ('book', 1), ('focus', 1), ('emerging', 1), ('technology', 1), ('field', 1), ('intelligent', 1), ('it', 1), ('namely', 1), ('efficient', 1), ('information', 1), ('dissemination', 1), ('vehicle', 1), ('infrastructure', 1), ('pedestrian', 1), ('public', 1), ('cover', 1)]
[('part', 2), ('carefully', 1), ('edited', 1), ('book', 1), ('take', 1), ('walk', 1), ('recent', 1), ('advance', 1), ('adaptation', 1), ('hybridization', 1), ('computational', 1), ('intelligence', 1), ('ci', 1), ('domain', 1), ('consists', 1), ('ten', 1), ('chapter', 1), ('divided', 1), ('three', 1), ('first', 1), ('illustrates', 1), ('background', 1)]
[('propagation', 2), ('look', 1), ('spreading', 1), ('complex', 1), ('network', 1), ('seen', 1), ('many', 1), ('viewpoint', 1), ('undesirable', 1), ('desirable', 1), ('controllable', 1), ('mechanism', 1), ('generating', 1), ('topic', 1), ('interest', 1), ('end', 1), ('depends', 1)]
[('logic', 4), ('annotated', 3), ('book', 1), ('written', 1), ('introduction', 1), ('provides', 1), ('logical', 1), ('foundation', 1), ('discus', 1), ('interesting', 1), ('application', 1), ('includes', 1), ('author', 1), ('contribution', 1)]
[('work', 2), ('volume', 1), ('present', 1), ('leading', 1), ('scientist', 1), ('russia', 1), ('georgia', 1), ('estonia', 1), ('lithuania', 1), ('israel', 1), ('usa', 1), ('revealing', 1), ('major', 1), ('insight', 1), ('long', 1), ('unknown', 1), ('scientific', 1), ('community', 1), ('without', 1), ('doubt', 1), ('provide', 1), ('springboard', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('digital', 1), ('forensics', 1), ('cyber', 1), ('crime', 1), ('icdf', 1), ('held', 1), ('seoul', 1), ('south', 1), ('korea', 1), ('october', 1), ('paper', 1), ('abstract', 1), ('selected', 1), ('submission', 1)]
[('method', 3), ('proposed', 3), ('learning', 2), ('type', 2), ('fuzzy', 2), ('weight', 2), ('book', 1), ('neural', 1), ('network', 1), ('adjustment', 1), ('mathematical', 1), ('analysis', 1), ('architecture', 1), ('adaptation', 1), ('presented', 1)]
[('topic', 1), ('monograph', 1), ('fall', 1), ('within', 1), ('called', 1), ('biologically', 1), ('motivated', 1), ('computing', 1), ('paradigm', 1), ('biology', 1), ('provides', 1), ('source', 1), ('model', 1), ('inspiration', 1), ('towards', 1), ('development', 1), ('computational', 1), ('intelligence', 1), ('machine', 1), ('learning', 1), ('system', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('mobile', 1), ('communication', 1), ('healthcare', 1), ('mobihealth', 1), ('held', 1), ('milan', 1), ('italy', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('reviewed', 1)]
[('fuzzy', 2), ('algorithm', 2), ('control', 2), ('area', 2), ('book', 1), ('focus', 1), ('field', 1), ('logic', 1), ('bio', 1), ('inspired', 1), ('especially', 1), ('bee', 1), ('colony', 1), ('optimization', 1), ('considering', 1), ('main', 1), ('idea', 1), ('together', 1), ('solve', 1), ('various', 1), ('problem', 1)]
[('conference', 2), ('volume', 1), ('includes', 1), ('paper', 1), ('presented', 1), ('iih', 1), ('msp', 1), ('th', 1), ('international', 1), ('intelligent', 1), ('information', 1), ('hiding', 1), ('multimedia', 1), ('signal', 1), ('processing', 1), ('held', 1), ('august', 1), ('matsue', 1), ('shimane', 1), ('japan', 1), ('covered', 1), ('topic', 1), ('ranging', 1)]
[('book', 1), ('question', 1), ('relevance', 1), ('computation', 1), ('physical', 1), ('universe', 1), ('theory', 1), ('deliver', 1), ('computational', 1), ('description', 1), ('gap', 1), ('discontinuity', 1), ('grasp', 1), ('suggest', 1), ('need', 1), ('continued', 1), ('discourse', 1), ('researcher', 1), ('different', 1)]
[('international', 2), ('conference', 2), ('computing', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('cloud', 1), ('security', 1), ('privacy', 1), ('new', 1), ('environment', 1), ('cloudcomp', 1), ('first', 1), ('eai', 1), ('spnce', 1), ('held', 1), ('guangzhou', 1)]
[('clear', 2), ('book', 1), ('provides', 1), ('understanding', 1), ('formulating', 1), ('stability', 1), ('analysis', 1), ('state', 1), ('feedback', 1), ('control', 1), ('retarded', 1), ('time', 1), ('delay', 1), ('system', 1), ('using', 1), ('lyapunov', 1), ('second', 1), ('method', 1), ('lmi', 1), ('framework', 1), ('chapter', 1), ('offer', 1), ('overview', 1), ('evolution', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('communication', 1), ('networking', 1), ('chinacom', 1), ('held', 1), ('xi', 1), ('china', 1), ('september', 1), ('total', 1), ('contribution', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('wireless', 1), ('internet', 1), ('wicon', 1), ('held', 1), ('tianjin', 1), ('china', 1), ('december', 1), ('full', 1), ('paper', 1), ('selected', 1), ('submission', 1), ('cover', 1)]
[('planning', 2), ('book', 1), ('explores', 1), ('role', 1), ('city', 1), ('urban', 1), ('rural', 1), ('linkage', 1), ('spurring', 1), ('innovation', 1), ('embedded', 1), ('spatial', 1), ('strategic', 1), ('economic', 1), ('decision', 1), ('support', 1), ('system', 1), ('particular', 1), ('contribution', 1), ('examine', 1), ('complexity', 1)]
[('book', 1), ('feature', 1), ('contribution', 1), ('presented', 1), ('th', 1), ('international', 1), ('kes', 1), ('conference', 1), ('smart', 1), ('education', 1), ('learning', 1), ('took', 1), ('place', 1), ('gold', 1), ('coast', 1), ('australia', 1), ('nbsp', 1), ('june', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('grouped', 1), ('several', 1)]
[('face', 2), ('recognition', 2), ('history', 1), ('computer', 1), ('aided', 1), ('date', 1), ('yet', 1), ('problem', 1), ('automatic', 1), ('task', 1), ('human', 1), ('perform', 1), ('routinely', 1), ('effortlessly', 1), ('daily', 1), ('life', 1), ('still', 1), ('pose', 1), ('challenge', 1), ('especially', 1), ('unconstrained', 1)]
[('lnai', 3), ('nbsp', 2), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('pricai', 1), ('held', 1), ('cuvu', 1), ('yanuca', 1), ('island', 1), ('fiji', 1), ('august', 1)]
[('volume', 2), ('set', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('brazilian', 1), ('conference', 1), ('intelligent', 1), ('system', 1), ('bracis', 1), ('held', 1), ('rio', 1), ('grande', 1), ('brazil', 1), ('october', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('submission', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('hellenic', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('setn', 1), ('held', 1), ('ioannina', 1), ('greece', 1), ('regular', 1), ('paper', 1), ('addition', 1), ('accepted', 1), ('short', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('soft', 1), ('computing', 1), ('icaisc', 1), ('held', 1), ('zakopane', 1), ('poland', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('agent', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('practical', 1), ('application', 1), ('multi', 1), ('system', 1), ('paams', 1), ('held', 1), ('salamanca', 1), ('spain', 1), ('june', 1), ('revised', 1), ('full', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('symposium', 1), ('methodology', 1), ('intelligent', 1), ('system', 1), ('ismis', 1), ('held', 1), ('roskilde', 1), ('denmark', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('new', 1), ('frontier', 1), ('mining', 1), ('complex', 1), ('pattern', 1), ('nfmcp', 1), ('held', 1), ('conjunction', 1), ('ecml', 1), ('pkdd', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('september', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('language', 1), ('technology', 1), ('conference', 1), ('challenge', 1), ('computer', 1), ('science', 1), ('linguistics', 1), ('ltc', 1), ('held', 1), ('poznan', 1), ('poland', 1), ('november', 1), ('revised', 1), ('many', 1), ('case', 1), ('substantially', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('text', 1), ('speech', 1), ('dialogue', 1), ('tsd', 1), ('held', 1), ('brno', 1), ('czech', 1), ('republic', 1), ('september', 1), ('presented', 1), ('together', 1), ('invited', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('collective', 1), ('intelligence', 1), ('icci', 1), ('held', 1), ('seoul', 1), ('korea', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('th', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('principle', 1), ('practice', 1), ('multi', 1), ('agent', 1), ('system', 1), ('prima', 1), ('held', 1), ('gold', 1), ('coast', 1), ('qld', 1), ('australia', 1), ('december', 1), ('co', 1), ('located', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('engineering', 1), ('multi', 1), ('agent', 1), ('system', 1), ('emas', 1), ('held', 1), ('paris', 1), ('france', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('symposium', 1), ('statistical', 1), ('learning', 1), ('data', 1), ('science', 1), ('slds', 1), ('held', 1), ('egham', 1), ('surrey', 1), ('uk', 1), ('april', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('volume', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('hybrid', 1), ('artificial', 1), ('intelligent', 1), ('system', 1), ('hais', 1), ('held', 1), ('bilbao', 1), ('spain', 1), ('june', 1), ('paper', 1), ('published', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('industrial', 1), ('conference', 1), ('advance', 1), ('data', 1), ('mining', 1), ('icdm', 1), ('held', 1), ('hamburg', 1), ('germany', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('numerous', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('collective', 1), ('intelligence', 1), ('icci', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('text', 1), ('speech', 1), ('dialogue', 1), ('tsd', 1), ('held', 1), ('pilsen', 1), ('czech', 1), ('republic', 1), ('september', 1), ('presented', 1), ('together', 1), ('invited', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('frontier', 1), ('combining', 1), ('system', 1), ('frocos', 1), ('held', 1), ('wroclaw', 1), ('poland', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('lnai', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('european', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('riva', 1), ('del', 1), ('garda', 1), ('italy', 1), ('september', 1)]
[('symposium', 2), ('iukm', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('integrated', 1), ('uncertainty', 1), ('knowledge', 1), ('modelling', 1), ('decision', 1), ('making', 1), ('held', 1), ('da', 1), ('nang', 1), ('vietnam', 1), ('november', 1), ('december', 1), ('aim', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('australasian', 1), ('joint', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('hobart', 1), ('ta', 1), ('australia', 1), ('december', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('offer', 1), ('comprehensive', 1), ('survey', 1), ('intuitionistic', 1), ('fuzzy', 1), ('logic', 1), ('reporting', 1), ('author', 1), ('research', 1), ('others', 1), ('finding', 1), ('provides', 1), ('reader', 1), ('complete', 1), ('overview', 1), ('field', 1), ('highlight', 1), ('key', 1), ('issue', 1), ('open', 1), ('problem', 1), ('thus', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('algorithm', 1), ('computational', 1), ('biology', 1), ('alcob', 1), ('planned', 1), ('held', 1), ('missoula', 1), ('mt', 1), ('usa', 1), ('april', 1), ('due', 1), ('corona', 1), ('pandemic', 1), ('postponed', 1)]
[('book', 1), ('present', 1), ('concept', 1), ('double', 1), ('hierarchy', 1), ('linguistic', 1), ('term', 1), ('set', 1), ('extension', 1), ('deal', 1), ('dynamic', 1), ('complex', 1), ('decision', 1), ('making', 1), ('problem', 1), ('rapid', 1), ('development', 1), ('science', 1), ('technology', 1), ('acceleration', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('five', 1), ('workshop', 1), ('held', 1), ('conjunction', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('delhi', 1), ('india', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('xixth', 1), ('international', 1), ('italian', 1), ('association', 1), ('artificial', 1), ('intelligence', 1), ('aixia', 1), ('held', 1), ('milano', 1), ('italy', 1), ('november', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('first', 1), ('caai', 1), ('international', 1), ('artificial', 1), ('intelligence', 1), ('held', 1), ('nbsp', 1), ('hangzhou', 1), ('china', 1), ('june', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('partially', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('frontier', 1), ('combining', 1), ('system', 1), ('frocos', 1), ('held', 1), ('brasília', 1), ('bazil', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('aligning', 1), ('organization', 1), ('goal', 1), ('strategy', 1), ('requires', 1), ('specifying', 1), ('rationale', 1), ('connection', 1), ('link', 1), ('explicit', 1), ('allow', 1), ('analytic', 1), ('reasoning', 1), ('successful', 1), ('improvement', 1), ('necessary', 1), ('book', 1), ('provides', 1)]
[('workshop', 3), ('health', 2), ('care', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('aime', 1), ('kr', 1), ('hc', 1), ('prohealth', 1), ('knowledge', 1), ('representation', 1), ('process', 1), ('oriented', 1), ('information', 1), ('system', 1), ('teaam', 1)]
[('paradigm', 2), ('book', 1), ('provides', 1), ('practically', 1), ('applicable', 1), ('guide', 1), ('nbsp', 1), ('methodology', 1), ('technology', 1), ('application', 1), ('interactive', 1), ('process', 1), ('mining', 1), ('case', 1), ('study', 1), ('presented', 1), ('successfully', 1), ('applied', 1), ('emergency', 1)]
[('winter', 2), ('edited', 1), ('book', 1), ('present', 1), ('scientific', 1), ('result', 1), ('st', 1), ('acis', 1), ('international', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('artificial', 1), ('intelligence', 1), ('networking', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('snpd', 1), ('held', 1), ('january', 1), ('ho', 1)]
[('book', 1), ('introduces', 1), ('variety', 1), ('advanced', 1), ('machine', 1), ('learning', 1), ('approach', 1), ('covering', 1), ('area', 1), ('neural', 1), ('network', 1), ('fuzzy', 1), ('logic', 1), ('nbsp', 1), ('hybrid', 1), ('intelligent', 1), ('system', 1), ('determination', 1), ('diagnosis', 1), ('cancer', 1), ('moreover', 1), ('tactical', 1), ('solution', 1)]
[('conference', 2), ('edited', 1), ('book', 1), ('present', 1), ('scientific', 1), ('result', 1), ('th', 1), ('iee', 1), ('acis', 1), ('international', 1), ('summer', 1), ('semi', 1), ('virtual', 1), ('computer', 1), ('information', 1), ('science', 1), ('icis', 1), ('held', 1), ('june', 1), ('shanghai', 1), ('china', 1), ('aim', 1), ('bring', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('technology', 1), ('icsoft', 1), ('held', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1)]
[('fall', 2), ('conference', 2), ('edited', 1), ('book', 1), ('present', 1), ('scientific', 1), ('result', 1), ('th', 1), ('iee', 1), ('acis', 1), ('international', 1), ('virtual', 1), ('computer', 1), ('information', 1), ('science', 1), ('icis', 1), ('held', 1), ('october', 1), ('xi', 1), ('china', 1), ('aim', 1), ('bring', 1)]
[('fall', 2), ('book', 1), ('present', 1), ('scientific', 1), ('result', 1), ('nd', 1), ('acis', 1), ('international', 1), ('virtual', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('artificial', 1), ('intelligence', 1), ('networking', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('snpd', 1), ('held', 1), ('november', 1)]
[('conference', 3), ('th', 2), ('nbsp', 2), ('international', 2), ('wireless', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('cognitive', 1), ('radio', 1), ('oriented', 1), ('network', 1), ('crowncom', 1), ('held', 1), ('december', 1)]
[('conference', 2), ('edited', 1), ('book', 1), ('present', 1), ('scientific', 1), ('result', 1), ('th', 1), ('iee', 1), ('acis', 1), ('international', 1), ('software', 1), ('engineering', 1), ('research', 1), ('management', 1), ('application', 1), ('serum', 1), ('nbsp', 1), ('held', 1), ('la', 1), ('vega', 1), ('usa', 1), ('aim', 1)]
[('symposium', 2), ('edited', 1), ('book', 1), ('present', 1), ('scientific', 1), ('result', 1), ('st', 1), ('acis', 1), ('international', 1), ('emotional', 1), ('artificial', 1), ('intelligence', 1), ('metaverse', 1), ('eaim', 1), ('held', 1), ('august', 1), ('danang', 1), ('vietnam', 1), ('aim', 1), ('bring', 1), ('together', 1)]
[('summer', 2), ('book', 1), ('present', 1), ('scientific', 1), ('result', 1), ('rd', 1), ('acis', 1), ('international', 1), ('virtual', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('artificial', 1), ('intelligence', 1), ('networking', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('snpd', 1), ('held', 1), ('july', 1)]
[('conference', 2), ('book', 1), ('present', 1), ('scientific', 1), ('result', 1), ('nd', 1), ('nbsp', 1), ('iee', 1), ('acis', 1), ('international', 1), ('computer', 1), ('information', 1), ('science', 1), ('icis', 1), ('held', 1), ('june', 1), ('zhuhai', 1), ('china', 1), ('aim', 1), ('bring', 1), ('together', 1), ('researcher', 1)]
[('edited', 1), ('book', 1), ('present', 1), ('scientific', 1), ('result', 1), ('th', 1), ('acis', 1), ('international', 1), ('winter', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('artificial', 1), ('intelligence', 1), ('networking', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('snpd', 1), ('summer', 1), ('held', 1), ('december', 1)]
[('language', 2), ('book', 1), ('collect', 1), ('contribution', 1), ('established', 1), ('researcher', 1), ('interface', 1), ('cognition', 1), ('provides', 1), ('overview', 1), ('latest', 1), ('insight', 1), ('interdisciplinary', 1), ('field', 1), ('perspective', 1), ('natural', 1)]
[('skyrmions', 2), ('brief', 1), ('review', 1), ('current', 1), ('research', 1), ('magnetic', 1), ('emphasis', 1), ('formation', 1), ('mechanism', 1), ('observation', 1), ('technique', 1), ('material', 1), ('design', 1), ('strategy', 1), ('response', 1), ('static', 1), ('dynamical', 1), ('various', 1), ('electromagnetic', 1), ('field', 1)]
[('modelling', 2), ('system', 2), ('textbook', 1), ('introduces', 1), ('basis', 1), ('analysing', 1), ('discrete', 1), ('dynamic', 1), ('computer', 1), ('programme', 1), ('soft', 1), ('hardware', 1), ('business', 1), ('process', 1), ('underlying', 1), ('concept', 1), ('introduced', 1), ('concrete', 1), ('technique', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('symposium', 1), ('intelligent', 1), ('system', 1), ('technology', 1), ('application', 1), ('ista', 1), ('held', 1), ('september', 1), ('jaipur', 1), ('india', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('quantum', 4), ('functionality', 2), ('book', 1), ('discus', 1), ('modern', 1), ('approach', 1), ('challenge', 1), ('computer', 1), ('aided', 1), ('design', 1), ('cad', 1), ('circuit', 1), ('view', 1), ('providing', 1), ('compact', 1), ('representation', 1), ('focusing', 1), ('issue', 1), ('present', 1)]
[('digital', 2), ('book', 1), ('invaluable', 1), ('reference', 1), ('operating', 1), ('within', 1), ('field', 1), ('cyber', 1), ('security', 1), ('forensics', 1), ('policing', 1), ('computer', 1), ('science', 1), ('artificial', 1), ('intelligence', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('ecosystem', 1), ('present', 1), ('wide', 1), ('range', 1)]
[('security', 2), ('book', 1), ('provides', 1), ('valuable', 1), ('reference', 1), ('cyber', 1), ('expert', 1), ('digital', 1), ('forensic', 1), ('practitioner', 1), ('network', 1), ('professional', 1), ('recent', 1), ('year', 1), ('ai', 1), ('gained', 1), ('substantial', 1), ('attention', 1), ('researcher', 1), ('academia', 1), ('industry', 1)]
[('book', 3), ('technical', 2), ('challenge', 2), ('provides', 1), ('recent', 1), ('security', 1), ('privacy', 1), ('legal', 1), ('iot', 1), ('environment', 1), ('nbsp', 1), ('offer', 1), ('wide', 1), ('range', 1), ('theoretical', 1), ('solution', 1), ('address', 1), ('topic', 1), ('covered', 1)]
[('cybersecurity', 2), ('business', 2), ('book', 1), ('take', 1), ('unique', 1), ('approach', 1), ('exploring', 1), ('connection', 1), ('digitalization', 1), ('intelligence', 1), ('today', 1), ('digital', 1), ('landscape', 1), ('crucial', 1), ('aspect', 1), ('operation', 1), ('meanwhile', 1), ('organization', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('security', 1), ('privacy', 1), ('applied', 1), ('cryptography', 1), ('engineering', 1), ('space', 1), ('held', 1), ('gandhinagar', 1), ('india', 1), ('december', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('information', 2), ('system', 2), ('nbsp', 2), ('book', 1), ('cover', 1), ('several', 1), ('aspect', 1), ('related', 1), ('evolution', 1), ('pervasive', 1), ('new', 1), ('trend', 1), ('important', 1), ('impact', 1), ('infrastructure', 1), ('become', 1), ('increasingly', 1), ('heterogeneous', 1), ('flexible', 1)]
[('learning', 2), ('data', 2), ('dimensionality', 1), ('reduction', 1), ('known', 1), ('manifold', 1), ('area', 1), ('machine', 1), ('used', 1), ('extracting', 1), ('informative', 1), ('feature', 1), ('better', 1), ('representation', 1), ('separation', 1), ('class', 1), ('book', 1), ('present', 1), ('cohesive', 1), ('review', 1)]
[('model', 2), ('introductory', 1), ('textbook', 1), ('reference', 1), ('address', 1), ('fundamental', 1), ('mostly', 1), ('applied', 1), ('kind', 1), ('focus', 1), ('dynamic', 1), ('system', 1), ('move', 1), ('change', 1), ('time', 1), ('work', 1), ('proposes', 1), ('new', 1), ('method', 1), ('uncertainty', 1), ('treatment', 1)]
[('facial', 1), ('recognition', 1), ('self', 1), ('driving', 1), ('car', 1), ('application', 1), ('computer', 1), ('vision', 1), ('vast', 1), ('expanding', 1), ('nbsp', 1), ('geometry', 1), ('play', 1), ('fundamental', 1), ('role', 1), ('discipline', 1), ('providing', 1), ('necessary', 1), ('mathematical', 1), ('framework', 1), ('understand', 1), ('underlying', 1)]
[('book', 1), ('provides', 1), ('systematic', 1), ('comprehensive', 1), ('overview', 1), ('cognitive', 1), ('intelligence', 1), ('ai', 1), ('enabled', 1), ('iot', 1), ('ecosystem', 1), ('machine', 1), ('learning', 1), ('capable', 1), ('recognizing', 1), ('object', 1), ('pattern', 1), ('complex', 1), ('large', 1), ('data', 1), ('set', 1), ('remarkable', 1), ('success', 1)]
[('nbsp', 3), ('book', 1), ('discus', 1), ('genealogical', 1), ('history', 1), ('modern', 1), ('world', 1), ('created', 1), ('linking', 1), ('royal', 1), ('family', 1), ('western', 1), ('european', 1), ('database', 1), ('unifying', 1), ('ancestry', 1), ('new', 1), ('edition', 1), ('extends', 1), ('original', 1), ('analysis', 1), ('including', 1)]
[('nbsp', 8), ('united', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('analysis', 1), ('covering', 1), ('confluence', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('cyber', 1), ('forensics', 1), ('digital', 1), ('policing', 1), ('context', 1), ('kingdom', 1), ('uk', 1), ('state', 1)]
[('evolving', 1), ('technological', 1), ('advance', 1), ('artificial', 1), ('intelligence', 1), ('empowered', 1), ('software', 1), ('present', 1), ('significant', 1), ('potential', 1), ('lead', 1), ('government', 1), ('towards', 1), ('collective', 1), ('effort', 1), ('exchange', 1), ('experience', 1), ('best', 1), ('practice', 1), ('national', 1), ('international', 1), ('level', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('future', 1), ('wireless', 1), ('network', 1), ('gn', 1), ('tianjin', 1), ('china', 1), ('august', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('full', 1), ('paper', 1)]
[('ai', 2), ('manufacturing', 2), ('book', 1), ('investigates', 1), ('rapid', 1), ('development', 1), ('artificial', 1), ('intelligence', 1), ('capability', 1), ('address', 1), ('efficiently', 1), ('cost', 1), ('effective', 1), ('manner', 1), ('issue', 1), ('field', 1), ('number', 1), ('application', 1), ('related', 1)]
[('fraud', 4), ('author', 2), ('ad', 2), ('systematically', 1), ('review', 1), ('method', 1), ('online', 1), ('digital', 1), ('advertising', 1), ('technique', 1), ('prevent', 1), ('defeat', 1), ('brief', 1), ('categorize', 1), ('three', 1), ('major', 1), ('category', 1), ('including', 1), ('placement', 1)]
[('book', 2), ('technology', 2), ('present', 1), ('proceeding', 1), ('privacy', 1), ('symposium', 1), ('feature', 1), ('collection', 1), ('high', 1), ('quality', 1), ('research', 1), ('work', 1), ('professional', 1), ('perspective', 1), ('personal', 1), ('data', 1), ('protection', 1), ('emerging', 1), ('gathering', 1), ('legal', 1)]
[('book', 1), ('present', 1), ('comprehensive', 1), ('overview', 1), ('natural', 1), ('language', 1), ('interface', 1), ('database', 1), ('nlidbs', 1), ('indispensable', 1), ('tool', 1), ('expanding', 1), ('realm', 1), ('data', 1), ('driven', 1), ('exploration', 1), ('decision', 1), ('making', 1), ('first', 1), ('demonstrating', 1), ('importance', 1)]
[('nbsp', 3), ('logic', 2), ('unique', 1), ('textbook', 1), ('contrast', 1), ('standard', 1), ('text', 1), ('provides', 1), ('reader', 1), ('actually', 1), ('used', 1), ('practice', 1), ('express', 1), ('reason', 1), ('mathematical', 1), ('idea', 1), ('book', 1), ('introduction', 1), ('simple', 1), ('type', 1), ('theory', 1)]
[('authoring', 2), ('idn', 2), ('tool', 1), ('process', 1), ('design', 1), ('challenge', 1), ('key', 1), ('issue', 1), ('interactive', 1), ('digital', 1), ('narrative', 1), ('research', 1), ('community', 1), ('complexity', 1), ('often', 1), ('involving', 1), ('story', 1), ('co', 1), ('created', 1), ('procedure', 1), ('user', 1), ('interaction', 1), ('creates', 1)]
[('mathematical', 2), ('manufacturing', 1), ('computer', 1), ('series', 1), ('quite', 1), ('feat', 1), ('get', 1), ('machine', 1), ('discussed', 1), ('called', 1), ('industrial', 1), ('achievement', 1), ('combined', 1), ('background', 1), ('research', 1), ('center', 1), ('made', 1)]
[('book', 2), ('encrypted', 2), ('comprehensively', 1), ('review', 1), ('searchable', 1), ('encryption', 1), ('represents', 1), ('series', 1), ('research', 1), ('development', 1), ('directly', 1), ('enable', 1), ('search', 1), ('functionality', 1), ('data', 1), ('majorly', 1), ('cover', 1), ('design', 1), ('implementation', 1)]
[('centered', 2), ('data', 2), ('book', 1), ('synthesizes', 1), ('existing', 1), ('research', 1), ('human', 1), ('discovery', 1), ('recommendation', 1), ('exist', 1), ('supporting', 1), ('design', 1), ('sustainable', 1), ('user', 1), ('search', 1), ('system', 1), ('information', 1), ('seeking', 1), ('various', 1), ('setting', 1)]
[('system', 5), ('software', 3), ('intensive', 2), ('heavily', 1), ('interact', 1), ('sensor', 1), ('actuator', 1), ('device', 1), ('user', 1), ('domain', 1), ('involved', 1), ('automotive', 1)]
[('aim', 1), ('book', 1), ('innovative', 1), ('mobile', 1), ('internet', 1), ('service', 1), ('ubiquitous', 1), ('computing', 1), ('provide', 1), ('latest', 1), ('research', 1), ('finding', 1), ('method', 1), ('development', 1), ('technique', 1), ('challenge', 1), ('solution', 1), ('theoretical', 1), ('practical', 1), ('perspective', 1), ('related', 1)]
[('digitalization', 1), ('automation', 1), ('leading', 1), ('fundamental', 1), ('change', 1), ('industrial', 1), ('landscape', 1), ('german', 1), ('speaking', 1), ('country', 1), ('development', 1), ('often', 1), ('summarized', 1), ('term', 1), ('industry', 1), ('simultaneously', 1), ('interaction', 1), ('technology', 1), ('made', 1)]
[('internet', 2), ('book', 1), ('present', 1), ('original', 1), ('contribution', 1), ('theory', 1), ('practice', 1), ('emerging', 1), ('data', 1), ('web', 1), ('technology', 1), ('applicability', 1), ('business', 1), ('engineering', 1), ('academia', 1), ('become', 1), ('proliferative', 1), ('platform', 1)]
[('optimization', 2), ('book', 1), ('explores', 1), ('break', 1), ('approach', 1), ('tackling', 1), ('mitigating', 1), ('known', 1), ('problem', 1), ('compiler', 1), ('using', 1), ('design', 1), ('space', 1), ('exploration', 1), ('machine', 1), ('learning', 1), ('technique', 1), ('demonstrates', 1), ('pass', 1)]
[('book', 1), ('approach', 1), ('location', 1), ('based', 1), ('mobile', 1), ('game', 1), ('design', 1), ('perspective', 1), ('investigating', 1), ('peculiar', 1), ('trait', 1), ('make', 1), ('compelling', 1), ('contemporary', 1), ('practice', 1), ('challenging', 1), ('field', 1), ('investigation', 1), ('relying', 1), ('interdisciplinary', 1), ('theoretical', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('conference', 1), ('operation', 1), ('research', 1), ('enterprise', 1), ('system', 1), ('icores', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('february', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('part', 4), ('machine', 2), ('learning', 2), ('problem', 2), ('book', 1), ('focus', 1), ('divided', 1), ('three', 1), ('first', 1), ('discus', 1), ('feature', 1), ('selection', 1), ('second', 1), ('describes', 1), ('application', 1), ('classification', 1), ('third', 1), ('present', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('trust', 1), ('management', 1), ('ifiptm', 1), ('held', 1), ('copenhagen', 1), ('denmark', 1), ('july', 1), ('revised', 1), ('full', 1), ('short', 1), ('work', 1), ('progress', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('pervasive', 1), ('system', 1), ('algorithm', 1), ('network', 1), ('span', 1), ('held', 1), ('naples', 1), ('italy', 1), ('september', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('aim', 1), ('updating', 1), ('relevant', 1), ('computer', 1), ('science', 1), ('related', 1), ('research', 1), ('community', 1), ('including', 1), ('professor', 1), ('researcher', 1), ('scientist', 1), ('engineer', 1), ('student', 1), ('general', 1), ('reader', 1), ('discipline', 1), ('recent', 1), ('advance', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('workshop', 1), ('enterprise', 1), ('application', 1), ('market', 1), ('service', 1), ('finance', 1), ('industry', 1), ('financecom', 1), ('held', 1), ('twente', 1), ('netherlands', 1), ('august', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('symposium', 1), ('intelligent', 1), ('informatics', 1), ('isi', 1), ('held', 1), ('mysore', 1), ('india', 1), ('august', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('computing', 3), ('hand', 2), ('role', 2), ('scientific', 2), ('science', 1), ('reveal', 1), ('synergic', 1), ('relationship', 1), ('widely', 1), ('evident', 1), ('play', 1), ('important', 1), ('endeavor', 1), ('method', 1), ('getting', 1), ('increasingly', 1)]
[('book', 1), ('investigates', 1), ('novel', 1), ('method', 1), ('technology', 1), ('collection', 1), ('analysis', 1), ('representation', 1), ('real', 1), ('time', 1), ('user', 1), ('generated', 1), ('data', 1), ('urban', 1), ('scale', 1), ('order', 1), ('explore', 1), ('potential', 1), ('scenario', 1), ('participatory', 1), ('design', 1), ('planning', 1)]
[('government', 2), ('employment', 2), ('book', 1), ('explores', 1), ('factor', 1), ('affect', 1), ('efficiency', 1), ('effectiveness', 1), ('electronic', 1), ('analyzing', 1), ('service', 1), ('system', 1), ('italy', 1), ('catalonia', 1), ('borsa', 1), ('lavoro', 1), ('lombardia', 1), ('portal', 1), ('lombardy', 1)]
[('relevant', 2), ('query', 2), ('answering', 2), ('web', 2), ('data', 2), ('book', 1), ('examines', 1), ('problem', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('streaming', 1), ('distributed', 1), ('recent', 1), ('year', 1), ('application', 1), ('combine', 1), ('highly', 1), ('dynamic', 1)]
[('public', 2), ('service', 2), ('book', 1), ('examines', 1), ('various', 1), ('way', 1), ('co', 1), ('production', 1), ('contribute', 1), ('creation', 1), ('design', 1), ('delivery', 1), ('namely', 1), ('engaging', 1), ('expertise', 1), ('user', 1), ('network', 1), ('promoting', 1), ('better', 1), ('targeted', 1)]
[('various', 2), ('approach', 2), ('book', 1), ('discus', 1), ('issue', 1), ('modeling', 1), ('freight', 1), ('passenger', 1), ('traffic', 1), ('explores', 1), ('common', 1), ('regional', 1), ('difference', 1), ('latter', 1), ('consequence', 1), ('national', 1), ('legislation', 1), ('adopted', 1)]
[('publication', 1), ('delivers', 1), ('numerous', 1), ('valuable', 1), ('guideline', 1), ('particularly', 1), ('useful', 1), ('making', 1), ('decision', 1), ('related', 1), ('subject', 1), ('matter', 1), ('road', 1), ('rail', 1), ('node', 1), ('located', 1), ('dense', 1), ('transport', 1), ('network', 1), ('know', 1), ('displayed', 1), ('discussing', 1), ('practical', 1), ('example', 1)]
[('book', 2), ('security', 2), ('main', 1), ('target', 1), ('raise', 1), ('awareness', 1), ('social', 1), ('networking', 1), ('system', 1), ('design', 1), ('implementation', 1), ('requirement', 1), ('approach', 1), ('entail', 1), ('related', 1), ('issue', 1), ('including', 1), ('computing', 1), ('engineering', 1), ('management', 1)]
[('iot', 2), ('security', 2), ('book', 1), ('offer', 1), ('essential', 1), ('guide', 1), ('smart', 1), ('city', 1), ('application', 1), ('etc', 1), ('addition', 1), ('present', 1), ('structured', 1), ('introduction', 1), ('subject', 1), ('destination', 1), ('marketing', 1), ('exhaustive', 1), ('review', 1), ('challenge', 1), ('information', 1)]
[('book', 1), ('mainly', 1), ('focused', 1), ('theme', 1), ('transportation', 1), ('smart', 1), ('city', 1), ('application', 1), ('open', 1), ('geospatial', 1), ('science', 1), ('technology', 1), ('increasingly', 1), ('important', 1), ('paradigm', 1), ('offer', 1), ('opportunity', 1), ('promote', 1), ('democratization', 1), ('geographical', 1)]
[('book', 2), ('computing', 2), ('discus', 1), ('future', 1), ('possibility', 1), ('ai', 1), ('cloud', 1), ('edge', 1), ('main', 1), ('goal', 1), ('conduct', 1), ('analysis', 1), ('implementation', 1), ('discussion', 1), ('many', 1), ('tool', 1), ('artificial', 1), ('intelligence', 1), ('machine', 1), ('learning', 1), ('deep', 1)]
[('nbsp', 2), ('volume', 1), ('present', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('geography', 1), ('geoinformatics', 1), ('sustainable', 1), ('development', 1), ('icggs', 1), ('held', 1), ('phuket', 1), ('thailand', 1), ('april', 1), ('collection', 1), ('focus', 1), ('importance', 1), ('spatial', 1)]
[('uml', 2), ('book', 1), ('software', 1), ('product', 1), ('line', 1), ('spls', 1), ('designed', 1), ('developed', 1), ('taking', 1), ('diagram', 1), ('primary', 1), ('basis', 1), ('modeled', 1), ('according', 1), ('rigorous', 1), ('approach', 1), ('composed', 1), ('profile', 1), ('systematic', 1), ('process', 1), ('variability', 1), ('management', 1), ('activity', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('third', 1), ('international', 1), ('workshop', 1), ('clinical', 1), ('image', 1), ('based', 1), ('procedure', 1), ('clip', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('boston', 1), ('usa', 1), ('september', 1), ('presented', 1), ('volume', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('revised', 1), ('first', 1), ('international', 1), ('conference', 1), ('augmented', 1), ('virtual', 1), ('reality', 1), ('avr', 1), ('held', 1), ('lecce', 1), ('italy', 1), ('september', 1), ('tutorial', 1), ('keynote', 1), ('presented', 1), ('carefully', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('international', 1), ('medical', 1), ('computer', 1), ('vision', 1), ('algorithm', 1), ('big', 1), ('data', 1), ('mcv', 1), ('held', 1), ('cambridge', 1), ('usa', 1), ('september', 1), ('conjunction', 1), ('th', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('security', 1), ('standardisation', 1), ('research', 1), ('ssr', 1), ('held', 1), ('london', 1), ('uk', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('ambient', 1), ('intelligence', 1), ('ami', 1), ('held', 1), ('eindhoven', 1), ('netherlands', 1), ('november', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('symposium', 1), ('logic', 1), ('based', 1), ('program', 1), ('synthesis', 1), ('transformation', 1), ('lopstr', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('reuse', 1), ('dynamic', 1), ('system', 1), ('cloud', 1), ('beyond', 1), ('icsr', 1), ('held', 1), ('miami', 1), ('fl', 1), ('usa', 1), ('january', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('held', 1), ('nd', 1), ('international', 1), ('conference', 1), ('conceptual', 1), ('modeling', 1), ('er', 1), ('hong', 1), ('kong', 1), ('china', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('communication', 1), ('security', 1), ('icics', 1), ('held', 1), ('beijing', 1), ('china', 1), ('november', 1), ('regular', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('active', 1), ('medium', 1), ('technology', 1), ('amt', 1), ('held', 1), ('maebashi', 1), ('japan', 1), ('october', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('workshop', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('interactive', 1), ('storytelling', 1), ('icids', 1), ('istanbul', 1), ('turkey', 1), ('november', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('decision', 1), ('game', 1), ('theory', 1), ('security', 1), ('gamesec', 1), ('held', 1), ('fort', 1), ('worth', 1), ('tx', 1), ('usa', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('concept', 1), ('intelligent', 1), ('vision', 1), ('system', 1), ('acivs', 1), ('held', 1), ('poznań', 1), ('poland', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cryptology', 1), ('network', 1), ('security', 1), ('can', 1), ('held', 1), ('paraty', 1), ('brazil', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('four', 1), ('invited', 1), ('talk', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('advance', 1), ('visual', 1), ('informatics', 1), ('ivic', 1), ('held', 1), ('selangor', 1), ('malaysia', 1), ('november', 1), ('four', 1), ('keynote', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('chinese', 1), ('conference', 1), ('biometric', 1), ('recognition', 1), ('ccbr', 1), ('held', 1), ('jinan', 1), ('china', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('among', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('bi', 1), ('annual', 1), ('latin', 1), ('american', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('clihc', 1), ('held', 1), ('guanacasta', 1), ('costa', 1), ('rica', 1), ('december', 1), ('full', 1), ('short', 1), ('carefully', 1)]
[('haifa', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('verification', 1), ('conference', 1), ('hvc', 1), ('held', 1), ('israel', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('symposium', 1), ('programming', 1), ('language', 1), ('system', 1), ('aplas', 1), ('held', 1), ('melbourne', 1), ('australia', 1), ('december', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('together', 1), ('abstract', 1), ('invited', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('certified', 1), ('program', 1), ('proof', 1), ('cpp', 1), ('colocated', 1), ('aplas', 1), ('held', 1), ('melbourne', 1), ('australia', 1), ('december', 1), ('revised', 1), ('regular', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('colloquium', 1), ('structural', 1), ('information', 1), ('communication', 1), ('complexity', 1), ('sirocco', 1), ('held', 1), ('ischia', 1), ('italy', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('cyberspace', 1), ('safety', 1), ('security', 1), ('cs', 1), ('held', 1), ('zhangjiajie', 1), ('china', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 3), ('revised', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('asia', 1), ('pacific', 1), ('digital', 1), ('library', 1), ('icadl', 1), ('held', 1), ('bangalore', 1), ('india', 1), ('december', 1), ('full', 1), ('short', 1), ('poster', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('ambient', 1), ('intelligence', 1), ('ami', 1), ('held', 1), ('dublin', 1), ('ireland', 1), ('december', 1), ('revised', 1), ('full', 1), ('landscape', 1), ('track', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('big', 1), ('data', 1), ('analytics', 1), ('bda', 1), ('held', 1), ('mysore', 1), ('india', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('conference', 1), ('multimedia', 1), ('pcm', 1), ('held', 1), ('nanjing', 1), ('china', 1), ('december', 1), ('revised', 1), ('full', 1), ('poster', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('swarm', 1), ('evolutionary', 1), ('memetic', 1), ('computing', 1), ('semcco', 1), ('held', 1), ('chennai', 1), ('india', 1), ('december', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('swarm', 1), ('evolutionary', 1), ('memetic', 1), ('computing', 1), ('semcco', 1), ('held', 1), ('chennai', 1), ('india', 1), ('december', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('combinatorial', 1), ('optimization', 1), ('application', 1), ('cocoa', 1), ('held', 1), ('chengdu', 1), ('china', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('revised', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('symposium', 1), ('graph', 1), ('drawing', 1), ('gd', 1), ('held', 1), ('bordeaux', 1), ('france', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('principle', 1), ('distributed', 1), ('system', 1), ('opodis', 1), ('held', 1), ('nice', 1), ('france', 1), ('december', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1), ('carefully', 1)]
[('volume', 2), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algorithm', 1), ('architecture', 1), ('parallel', 1), ('processing', 1), ('ica', 1), ('pp', 1), ('held', 1), ('vietri', 1), ('sul', 1), ('mare', 1), ('italy', 1), ('december', 1), ('first', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('multiple', 1), ('access', 1), ('communication', 1), ('macom', 1), ('held', 1), ('vilnius', 1), ('lithuania', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('volume', 2), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algorithm', 1), ('architecture', 1), ('parallel', 1), ('processing', 1), ('ica', 1), ('pp', 1), ('held', 1), ('vietri', 1), ('sul', 1), ('mare', 1), ('italy', 1), ('december', 1), ('first', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('parameterized', 1), ('exact', 1), ('computation', 1), ('ipec', 1), ('sophia', 1), ('antipolis', 1), ('france', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('critical', 1), ('information', 1), ('infrastructure', 1), ('security', 1), ('critis', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('anniversary', 1), ('international', 1), ('conference', 1), ('multimedia', 1), ('modeling', 1), ('mm', 1), ('held', 1), ('dublin', 1), ('ireland', 1), ('january', 1), ('revised', 1), ('regular', 1), ('paper', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('anniversary', 1), ('international', 1), ('conference', 1), ('multimedia', 1), ('modeling', 1), ('mm', 1), ('held', 1), ('dublin', 1), ('ireland', 1), ('january', 1), ('revised', 1), ('regular', 1), ('paper', 1)]
[('conference', 2), ('icaa', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('applied', 1), ('algorithm', 1), ('held', 1), ('kolkata', 1), ('india', 1), ('january', 1), ('new', 1), ('series', 1), ('mission', 1), ('provide', 1), ('quality', 1), ('forum', 1)]
[('symposium', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('practical', 1), ('aspect', 1), ('declarative', 1), ('language', 1), ('padl', 1), ('held', 1), ('sandiego', 1), ('ca', 1), ('usa', 1), ('january', 1), ('co', 1), ('located', 1), ('popl', 1), ('st', 1), ('principle', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('theoretic', 1), ('security', 1), ('icits', 1), ('held', 1), ('lugano', 1), ('switzerland', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('symposium', 1), ('foundation', 1), ('practice', 1), ('security', 1), ('fps', 1), ('held', 1), ('montreal', 1), ('qc', 1), ('canada', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('nasa', 1), ('formal', 1), ('method', 1), ('nfm', 1), ('held', 1), ('pasadena', 1), ('ca', 1), ('usa', 1), ('april', 1), ('revised', 1), ('regular', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('security', 1), ('practice', 1), ('experience', 1), ('ispec', 1), ('held', 1), ('beijing', 1), ('china', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('system', 1), ('advanced', 1), ('application', 1), ('dasfaa', 1), ('held', 1), ('hanoi', 1), ('vietnam', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('system', 1), ('advanced', 1), ('application', 1), ('dasfaa', 1), ('held', 1), ('hanoi', 1), ('vietnam', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('volume', 1), ('lncs', 1), ('constitute', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('linguistics', 1), ('intelligent', 1), ('text', 1), ('processing', 1), ('cicling', 1), ('held', 1), ('cairo', 1), ('egypt', 1), ('april', 1), ('total', 1), ('full', 1), ('paper', 1)]
[('volume', 1), ('lncs', 1), ('constitute', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('linguistics', 1), ('intelligent', 1), ('text', 1), ('processing', 1), ('cicling', 1), ('held', 1), ('cairo', 1), ('egypt', 1), ('april', 1), ('total', 1), ('full', 1), ('paper', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('consisting', 1), ('lncs', 1), ('contains', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('workshop', 1), ('held', 1), ('conjunction', 1), ('th', 1), ('asian', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('singapore', 1), ('november', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('consisting', 1), ('lncs', 1), ('contains', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('workshop', 1), ('held', 1), ('conjunction', 1), ('th', 1), ('asian', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('singapore', 1), ('november', 1)]
[('book', 2), ('workshop', 2), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('big', 1), ('data', 1), ('benchmarking', 1), ('wbdb', 1), ('held', 1), ('potsdam', 1), ('germany', 1), ('august', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('descriptional', 1), ('complexity', 1), ('formal', 1), ('system', 1), ('dcfs', 1), ('held', 1), ('waterloo', 1), ('canada', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('openshmem', 1), ('workshop', 1), ('held', 1), ('annapolis', 1), ('md', 1), ('usa', 1), ('march', 1), ('technical', 1), ('short', 1), ('position', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('carefully', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('symposium', 1), ('foundation', 1), ('practice', 1), ('security', 1), ('fps', 1), ('held', 1), ('la', 1), ('rochelle', 1), ('france', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('keynote', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('gi', 1), ('itg', 1), ('conference', 1), ('measurement', 1), ('modeling', 1), ('evaluation', 1), ('computing', 1), ('system', 1), ('dependability', 1), ('fault', 1), ('tolerance', 1), ('mmb', 1), ('amp', 1), ('dft', 1), ('held', 1), ('bamberg', 1), ('germany', 1), ('march', 1)]
[('workshop', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('medical', 1), ('computer', 1), ('vision', 1), ('mcv', 1), ('held', 1), ('nagoya', 1), ('japan', 1), ('september', 1), ('conjunction', 1), ('th', 1), ('conference', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('social', 1), ('computing', 1), ('behavioral', 1), ('cultural', 1), ('modeling', 1), ('prediction', 1), ('sbp', 1), ('held', 1), ('washington', 1), ('dc', 1), ('usa', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 2), ('visual', 2), ('saliency', 2), ('computation', 2), ('cover', 1), ('fundamental', 1), ('principle', 1), ('computational', 1), ('approach', 1), ('relevant', 1), ('interdisciplinary', 1), ('problem', 1), ('introduced', 1), ('innovative', 1), ('perspective', 1), ('combine', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('international', 1), ('workshop', 1), ('clinical', 1), ('image', 1), ('based', 1), ('procedure', 1), ('clip', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('nagoya', 1), ('japan', 1), ('september', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('database', 1), ('networked', 1), ('information', 1), ('system', 1), ('dnis', 1), ('held', 1), ('aizu', 1), ('wakamatsu', 1), ('japan', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('system', 1), ('advanced', 1), ('application', 1), ('dasfaa', 1), ('held', 1), ('bali', 1), ('indonesia', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('system', 1), ('advanced', 1), ('application', 1), ('dasfaa', 1), ('held', 1), ('bali', 1), ('indonesia', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('working', 1), ('conference', 1), ('requirement', 1), ('engineering', 1), ('foundation', 1), ('software', 1), ('quality', 1), ('refsq', 1), ('held', 1), ('essen', 1), ('germany', 1), ('april', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('reconfigurable', 1), ('computing', 1), ('architecture', 1), ('tool', 1), ('application', 1), ('arc', 1), ('held', 1), ('vilamoura', 1), ('portugal', 1), ('april', 1), ('revised', 1), ('full', 1)]
[('game', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('serious', 1), ('training', 1), ('education', 1), ('health', 1), ('sport', 1), ('day', 1), ('held', 1), ('darmstadt', 1), ('germany', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('ir', 1), ('research', 1), ('ecir', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('april', 1), ('full', 1), ('poster', 1), ('demonstration', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('conference', 1), ('theory', 1), ('application', 1), ('model', 1), ('computation', 1), ('tamc', 1), ('held', 1), ('chennai', 1), ('india', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('nasa', 1), ('formal', 1), ('method', 1), ('nfm', 1), ('held', 1), ('houston', 1), ('tx', 1), ('usa', 1), ('april', 1), ('revised', 1), ('regular', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('relational', 1), ('algebraic', 1), ('method', 1), ('computer', 1), ('science', 1), ('ramics', 1), ('held', 1), ('marienstatt', 1), ('germany', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('health', 1), ('information', 1), ('science', 1), ('held', 1), ('shenzhen', 1), ('china', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('security', 1), ('practice', 1), ('experience', 1), ('ispec', 1), ('held', 1), ('fuzhou', 1), ('china', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('formal', 1), ('method', 1), ('fm', 1), ('held', 1), ('singapore', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('net', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('communication', 1), ('technology', 1), ('vehicle', 1), ('car', 1), ('train', 1), ('aircraft', 1), ('held', 1), ('offenburg', 1), ('germany', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('pacific', 2), ('asia', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('intelligence', 1), ('security', 1), ('informatics', 1), ('paisi', 1), ('held', 1), ('tainan', 1), ('taiwan', 1), ('conjunction', 1), ('pakdd', 1), ('th', 1), ('conference', 1), ('knowledge', 1)]
[('russia', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('computer', 1), ('science', 1), ('symposium', 1), ('csr', 1), ('held', 1), ('moscow', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('design', 1), ('science', 1), ('research', 1), ('information', 1), ('system', 1), ('technology', 1), ('desrist', 1), ('held', 1), ('miami', 1), ('fl', 1), ('usa', 1), ('full', 1), ('paper', 1)]
[('africa', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptographic', 1), ('technique', 1), ('crypt', 1), ('held', 1), ('marrakesh', 1), ('morocco', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('annual', 1), ('privacy', 1), ('forum', 1), ('apf', 1), ('held', 1), ('athens', 1), ('greece', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1), ('topic', 1)]
[('dagstuhl', 3), ('seminar', 2), ('visualization', 2), ('book', 1), ('outcome', 1), ('information', 1), ('towards', 1), ('multivariate', 1), ('network', 1), ('held', 1), ('castle', 1), ('germany', 1), ('goal', 1), ('bring', 1), ('together', 1), ('theoretician', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('vldb', 1), ('workshop', 1), ('secure', 1), ('data', 1), ('management', 1), ('held', 1), ('trento', 1), ('italy', 1), ('august', 1), ('revised', 1), ('full', 1), ('keynote', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('joint', 1), ('international', 1), ('semantic', 1), ('technology', 1), ('conference', 1), ('jist', 1), ('held', 1), ('seoul', 1), ('south', 1), ('korea', 1), ('november', 1), ('included', 1), ('four', 1), ('tutorial', 1), ('workshop', 1), ('volume', 1)]
[('workshop', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('service', 1), ('oriented', 1), ('computing', 1), ('icsoc', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('december', 1), ('hosted', 1), ('following', 1), ('five', 1), ('rd', 1)]
[('prakash', 3), ('panangaden', 2), ('festschrift', 1), ('volume', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('conference', 1), ('fest', 1), ('held', 1), ('honor', 1), ('oxford', 1), ('uk', 1), ('celebrate', 1), ('th', 1), ('birthday', 1), ('worked', 1), ('large', 1), ('variety', 1), ('topic', 1), ('including', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('integration', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('operation', 1), ('research', 1), ('technique', 1), ('constraint', 1), ('programming', 1), ('cpaior', 1), ('held', 1), ('cork', 1), ('ireland', 1)]
[('risk', 3), ('conference', 2), ('international', 2), ('testing', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('workshop', 1), ('assessment', 1), ('driven', 1), ('held', 1), ('conjunction', 1), ('th', 1), ('ifip', 1), ('software', 1)]
[('persuasive', 2), ('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('technology', 1), ('held', 1), ('padua', 1), ('italy', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('paper', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('combinatorial', 1), ('image', 1), ('analysis', 1), ('iwcia', 1), ('held', 1), ('brno', 1), ('czech', 1), ('republic', 1), ('revised', 1), ('full', 1), ('invited', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('functional', 1), ('logic', 1), ('programming', 1), ('flop', 1), ('held', 1), ('kanazawa', 1), ('japan', 1), ('june', 1), ('full', 1), ('paper', 1), ('invited', 1), ('talk', 1), ('presented', 1), ('volume', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1), ('june', 1), ('total', 1), ('paper', 1), ('poster', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1), ('june', 1), ('total', 1), ('paper', 1), ('poster', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1), ('june', 1), ('total', 1), ('paper', 1), ('poster', 1)]
[('international', 3), ('conference', 2), ('hci', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('business', 1), ('hcib', 1), ('held', 1), ('part', 1), ('th', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('heraklion', 1), ('crete', 1)]
[('international', 3), ('th', 2), ('conference', 2), ('held', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('cross', 1), ('cultural', 1), ('design', 1), ('ccd', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hci', 1), ('heraklion', 1)]
[('book', 1), ('present', 1), ('tutorial', 1), ('lecture', 1), ('given', 1), ('leading', 1), ('researcher', 1), ('th', 1), ('edition', 1), ('international', 1), ('school', 1), ('formal', 1), ('method', 1), ('design', 1), ('computer', 1), ('communication', 1), ('software', 1), ('system', 1), ('sfm', 1), ('held', 1), ('bertinoro', 1), ('italy', 1), ('june', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('ad', 1), ('hoc', 1), ('mobile', 1), ('wireless', 1), ('network', 1), ('adhoc', 1), ('held', 1), ('benidorm', 1), ('spain', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('human', 2), ('computer', 2), ('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('universal', 1), ('access', 1), ('interaction', 1), ('uahci', 1), ('held', 1), ('part', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('human', 2), ('computer', 2), ('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('universal', 1), ('access', 1), ('interaction', 1), ('uahci', 1), ('held', 1), ('part', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('extended', 1), ('semantic', 1), ('web', 1), ('conference', 1), ('eswc', 1), ('held', 1), ('anissaras', 1), ('crete', 1), ('greece', 1), ('france', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('three', 1), ('invited', 1), ('talk', 1), ('carefully', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('human', 2), ('computer', 2), ('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('universal', 1), ('access', 1), ('interaction', 1), ('uahci', 1), ('held', 1), ('part', 1)]
[('state', 2), ('art', 2), ('engineering', 2), ('survey', 1), ('contains', 1), ('selection', 1), ('paper', 1), ('representing', 1), ('result', 1), ('secure', 1), ('software', 1), ('based', 1), ('future', 1), ('internet', 1), ('service', 1), ('system', 1), ('produced', 1), ('nessos', 1), ('project', 1), ('researcher', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('virtual', 1), ('augmented', 1), ('mixed', 1), ('reality', 1), ('vamr', 1), ('held', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hci', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('virtual', 1), ('augmented', 1), ('mixed', 1), ('reality', 1), ('vamr', 1), ('held', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hci', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('held', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('virtual', 1), ('augmented', 1), ('mixed', 1), ('reality', 1), ('vamr', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hci', 1), ('los', 1)]
[('international', 2), ('conference', 2), ('human', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('aspect', 1), ('information', 1), ('security', 1), ('privacy', 1), ('trust', 1), ('part', 1), ('th', 1), ('computer', 1), ('interaction', 1), ('hcii', 1)]
[('human', 2), ('held', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('interface', 1), ('management', 1), ('information', 1), ('thematic', 1), ('track', 1), ('part', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('interaction', 1), ('hcii', 1)]
[('human', 2), ('held', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('interface', 1), ('management', 1), ('information', 1), ('thematic', 1), ('track', 1), ('part', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('interaction', 1), ('hcii', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('design', 1), ('user', 1), ('experience', 1), ('usability', 1), ('duxu', 1), ('held', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('design', 1), ('user', 1), ('experience', 1), ('usability', 1), ('duxu', 1), ('held', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1)]
[('international', 2), ('conference', 2), ('human', 2), ('lncs', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('aspect', 1), ('aged', 1), ('population', 1), ('itap', 1), ('held', 1), ('part', 1), ('th', 1), ('computer', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('design', 1), ('user', 1), ('experience', 1), ('usability', 1), ('duxu', 1), ('held', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('los', 1), ('angeles', 1), ('ca', 1), ('usa', 1), ('august', 1), ('total', 1), ('paper', 1), ('poster', 1)]
[('international', 2), ('conference', 2), ('human', 2), ('lncs', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('aspect', 1), ('aged', 1), ('population', 1), ('itap', 1), ('held', 1), ('part', 1), ('th', 1), ('computer', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('los', 1), ('angeles', 1), ('ca', 1), ('usa', 1), ('august', 1), ('total', 1), ('paper', 1), ('poster', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('los', 1), ('angeles', 1), ('ca', 1), ('usa', 1), ('august', 1), ('total', 1), ('paper', 1), ('poster', 1)]
[('constitutes', 2), ('th', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('digital', 1), ('human', 1), ('modeling', 1), ('application', 1), ('health', 1), ('safety', 1), ('ergonomics', 1), ('risk', 1), ('management', 1), ('held', 1), ('part', 1)]
[('constitutes', 2), ('th', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('digital', 1), ('human', 1), ('modeling', 1), ('application', 1), ('health', 1), ('safety', 1), ('ergonomics', 1), ('risk', 1), ('management', 1), ('held', 1), ('part', 1)]
[('dna', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('computing', 1), ('molecular', 1), ('programming', 1), ('held', 1), ('boston', 1), ('cambridge', 1), ('usa', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('international', 2), ('conference', 2), ('interaction', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('distributed', 1), ('ambient', 1), ('pervasive', 1), ('dapi', 1), ('part', 1), ('th', 1), ('human', 1), ('computer', 1), ('hcii', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('reasoning', 1), ('rule', 1), ('system', 1), ('rr', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('august', 1), ('full', 1), ('paper', 1), ('technical', 1), ('communication', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('book', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('spatial', 1), ('information', 1), ('theory', 1), ('cosit', 1), ('held', 1), ('scarborough', 1), ('uk', 1), ('september', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('algorithm', 1), ('data', 1), ('structure', 1), ('symposium', 1), ('wad', 1), ('held', 1), ('victoria', 1), ('bc', 1), ('canada', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('dna', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computing', 1), ('molecular', 1), ('programming', 1), ('held', 1), ('tempe', 1), ('az', 1), ('usa', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('search', 1), ('based', 1), ('software', 1), ('engineering', 1), ('ssbse', 1), ('held', 1), ('bergamo', 1), ('italy', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('international', 2), ('image', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('workshop', 1), ('multimodal', 1), ('brain', 1), ('analysis', 1), ('mbia', 1), ('held', 1), ('nagoya', 1), ('japan', 1), ('september', 1), ('conjunction', 1), ('th', 1), ('conference', 1), ('medical', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('implementation', 1), ('application', 1), ('automaton', 1), ('ciaa', 1), ('umeå', 1), ('sweden', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('international', 2), ('medical', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('workshop', 1), ('machine', 1), ('learning', 1), ('imaging', 1), ('mlmi', 1), ('held', 1), ('conjunction', 1), ('conference', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1)]
[('database', 2), ('dasfaa', 1), ('annual', 1), ('international', 1), ('conference', 1), ('located', 1), ('asia', 1), ('pacific', 1), ('region', 1), ('show', 1), ('case', 1), ('state', 1), ('art', 1), ('amp', 1), ('activity', 1), ('term', 1), ('application', 1), ('provides', 1), ('forum', 1), ('technical', 1), ('presentation', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('computer', 1), ('algebra', 1), ('scientific', 1), ('computing', 1), ('casc', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('volume', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('swarm', 1), ('evolutionary', 1), ('memetic', 1), ('computing', 1), ('semcco', 1), ('held', 1), ('bhubaneswar', 1), ('india', 1), ('december', 1), ('total', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('social', 1), ('network', 1), ('csonet', 1), ('held', 1), ('beijing', 1), ('china', 1), ('august', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('economics', 1), ('grid', 1), ('cloud', 1), ('system', 1), ('service', 1), ('gecon', 1), ('held', 1), ('zaragoza', 1), ('spain', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('string', 1), ('processing', 1), ('information', 1), ('retrieval', 1), ('spire', 1), ('held', 1), ('jerusalem', 1), ('israel', 1), ('october', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('web', 1), ('service', 1), ('formal', 1), ('method', 1), ('w', 1), ('fm', 1), ('held', 1), ('beijing', 1), ('china', 1), ('august', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('smart', 1), ('card', 1), ('research', 1), ('advanced', 1), ('application', 1), ('cardis', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('ada', 2), ('europe', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('reliable', 1), ('software', 1), ('technology', 1), ('held', 1), ('paris', 1), ('france', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('conference', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('australasian', 1), ('information', 1), ('security', 1), ('privacy', 1), ('acisp', 1), ('held', 1), ('wollongong', 1), ('nsw', 1), ('australia', 1), ('july', 1), ('revised', 1), ('full', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('scandinavian', 1), ('symposium', 1), ('workshop', 1), ('algorithm', 1), ('theory', 1), ('swat', 1), ('held', 1), ('copenhagen', 1), ('denmark', 1), ('july', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('smart', 1), ('health', 1), ('icsh', 1), ('held', 1), ('beijing', 1), ('china', 1), ('july', 1), ('paper', 1), ('presented', 1), ('together', 1), ('extended', 1), ('abstract', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('reversible', 1), ('computation', 1), ('rc', 1), ('held', 1), ('kyoto', 1), ('japan', 1), ('july', 1), ('contribution', 1), ('presented', 1), ('together', 1), ('three', 1), ('invited', 1), ('talk', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('privacy', 1), ('enhancing', 1), ('technology', 1), ('pet', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('detection', 1), ('intrusion', 1), ('malware', 1), ('vulnerability', 1), ('assessment', 1), ('dimva', 1), ('held', 1), ('egham', 1), ('uk', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('biomedical', 1), ('image', 1), ('registration', 1), ('wbir', 1), ('held', 1), ('london', 1), ('uk', 1), ('july', 1), ('full', 1), ('poster', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('trust', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('trustworthy', 1), ('computing', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1), ('june', 1), ('july', 1), ('full', 1), ('three', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('helping', 1), ('special', 1), ('need', 1), ('icchp', 1), ('held', 1), ('paris', 1), ('france', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('fundamental', 1), ('computation', 1), ('theory', 1), ('fct', 1), ('held', 1), ('gdańsk', 1), ('poland', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('computation', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('unconventional', 1), ('natural', 1), ('ucnc', 1), ('held', 1), ('auckland', 1), ('new', 1), ('zealand', 1), ('august', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('symposium', 1), ('stabilization', 1), ('safety', 1), ('security', 1), ('distributed', 1), ('system', 1), ('s', 1), ('held', 1), ('osaka', 1), ('japan', 1), ('november', 1), ('regular', 1), ('short', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('ambient', 1), ('assisted', 1), ('living', 1), ('iwaal', 1), ('held', 1), ('carillo', 1), ('costa', 1), ('rica', 1), ('december', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('modelling', 1), ('simulation', 1), ('autonomous', 1), ('system', 1), ('mesa', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('mobile', 1), ('web', 1), ('intelligent', 1), ('information', 1), ('system', 1), ('mobiwis', 1), ('held', 1), ('rome', 1), ('italy', 1), ('august', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('conference', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('advance', 1), ('computer', 1), ('entertainment', 1), ('ace', 1), ('held', 1), ('boekelo', 1), ('netherlands', 1), ('november', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('data', 1), ('warehousing', 1), ('knowledge', 1), ('discovery', 1), ('dawak', 1), ('held', 1), ('valencia', 1), ('spain', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('ubiquitous', 1), ('computing', 1), ('ambient', 1), ('intelligence', 1), ('ucami', 1), ('held', 1), ('guanacaste', 1), ('costa', 1), ('rica', 1), ('december', 1), ('research', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('trust', 1), ('privacy', 1), ('security', 1), ('digital', 1), ('business', 1), ('trustbus', 1), ('held', 1), ('valencia', 1), ('spain', 1), ('september', 1), ('conjunction', 1), ('dexa', 1), ('revised', 1), ('full', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('social', 1), ('informatics', 1), ('socinfo', 1), ('held', 1), ('kyoto', 1), ('japan', 1), ('november', 1), ('full', 1), ('short', 1), ('three', 1), ('poster', 1), ('included', 1), ('volume', 1)]
[('volume', 2), ('lncs', 2), ('set', 1), ('constitutes', 1), ('conjunction', 1), ('lnai', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('held', 1), ('fuzhou', 1), ('china', 1), ('august', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('trusted', 1), ('system', 1), ('intrust', 1), ('held', 1), ('graz', 1), ('austria', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('focus', 1), ('theory', 1), ('technology', 1)]
[('volume', 2), ('lncs', 2), ('set', 1), ('constitutes', 1), ('conjunction', 1), ('lnai', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('held', 1), ('fuzhou', 1), ('china', 1), ('august', 1)]
[('india', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cryptology', 1), ('indocrypt', 1), ('held', 1), ('mumbai', 1), ('december', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('abstract', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('electronic', 1), ('government', 1), ('information', 1), ('system', 1), ('perspective', 1), ('egovis', 1), ('held', 1), ('valencia', 1), ('spain', 1), ('september', 1), ('conjunction', 1), ('dexa', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('algorithm', 1), ('model', 1), ('web', 1), ('graph', 1), ('waw', 1), ('held', 1), ('cambridge', 1), ('usa', 1), ('december', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('ifip', 1), ('wg', 1), ('electronic', 1), ('government', 1), ('egov', 1), ('held', 1), ('thessaloniki', 1), ('greece', 1), ('august', 1), ('september', 1), ('conjunction', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('electronic', 1), ('participation', 1), ('epart', 1), ('held', 1), ('thessaloniki', 1), ('greece', 1), ('august', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('technology', 1), ('bio', 1), ('medical', 1), ('informatics', 1), ('itbam', 1), ('held', 1), ('valencia', 1), ('spain', 1), ('september', 1), ('conjunction', 1), ('dexa', 1), ('revised', 1), ('long', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('expert', 1), ('system', 1), ('application', 1), ('dexa', 1), ('held', 1), ('valencia', 1), ('spain', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('ruleml', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('co', 1), ('located', 1), ('st', 1), ('european', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ecai', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('august', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('euro', 1), ('par', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('active', 1), ('medium', 1), ('technology', 1), ('amt', 1), ('warsaw', 1), ('poland', 1), ('august', 1), ('part', 1), ('web', 1), ('intelligence', 1), ('congress', 1), ('wic', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('search', 1), ('based', 1), ('software', 1), ('engineering', 1), ('ssbse', 1), ('held', 1), ('fortaleza', 1), ('brazil', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('keynote', 1), ('address', 1), ('invited', 1), ('talk', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('swarm', 1), ('intelligence', 1), ('held', 1), ('brussels', 1), ('belgium', 1), ('september', 1), ('volume', 1), ('contains', 1), ('full', 1), ('short', 1), ('extended', 1), ('abstract', 1), ('carefully', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('discrete', 1), ('geometry', 1), ('computer', 1), ('imagery', 1), ('dgci', 1), ('held', 1), ('siena', 1), ('italy', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('language', 1), ('compiler', 1), ('parallel', 1), ('computing', 1), ('lcpc', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('software', 1), ('architecture', 1), ('ecsa', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('august', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('presented', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('modeling', 1), ('object', 1), ('image', 1), ('compimage', 1), ('held', 1), ('pittsburgh', 1), ('pa', 1), ('usa', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('peer', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('data', 1), ('management', 1), ('grid', 1), ('system', 1), ('globe', 1), ('held', 1), ('munich', 1), ('germany', 1), ('september', 1), ('conjunction', 1), ('dexa', 1), ('revised', 1), ('full', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('expert', 1), ('system', 1), ('application', 1), ('dexa', 1), ('held', 1), ('munich', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('fosad', 1), ('foremost', 1), ('educational', 1), ('event', 1), ('established', 1), ('goal', 1), ('disseminating', 1), ('knowledge', 1), ('critical', 1), ('area', 1), ('security', 1), ('computer', 1), ('system', 1), ('network', 1), ('year', 1), ('summer', 1), ('school', 1), ('book', 1), ('series', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('expert', 1), ('system', 1), ('application', 1), ('dexa', 1), ('held', 1), ('munich', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('data', 1), ('warehousing', 1), ('knowledge', 1), ('discovery', 1), ('dawak', 1), ('held', 1), ('munich', 1), ('germany', 1), ('september', 1), ('conjunction', 1), ('dexa', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('collaboration', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('researcher', 1), ('international', 1), ('working', 1), ('group', 1), ('conference', 1), ('technology', 1), ('held', 1), ('santiago', 1), ('chile', 1), ('september', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('business', 1), ('process', 1), ('management', 1), ('bpm', 1), ('held', 1), ('haifa', 1), ('israel', 1), ('september', 1), ('regular', 1), ('short', 1), ('included', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('cosade', 1), ('held', 1), ('paris', 1), ('france', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('electronic', 1), ('government', 1), ('information', 1), ('system', 1), ('perspective', 1), ('egovis', 1), ('held', 1), ('munich', 1), ('germany', 1), ('september', 1), ('conjunction', 1), ('dexa', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('integrated', 1), ('formal', 1), ('method', 1), ('ifm', 1), ('held', 1), ('bertinoro', 1), ('italy', 1), ('september', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('selected', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('pmbs', 1), ('denver', 1), ('co', 1), ('usa', 1), ('november', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('submission', 1), ('article', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('multiple', 1), ('access', 1), ('communication', 1), ('macom', 1), ('held', 1), ('halmstad', 1), ('sweden', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('technology', 1), ('bio', 1), ('medical', 1), ('informatics', 1), ('itbam', 1), ('held', 1), ('munich', 1), ('germany', 1), ('september', 1), ('conjunction', 1), ('dexa', 1), ('revised', 1), ('long', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('smart', 1), ('grid', 1), ('security', 1), ('smartgridsec', 1), ('held', 1), ('munich', 1), ('germany', 1), ('february', 1), ('volume', 1), ('contains', 1), ('twelve', 1), ('corrected', 1), ('extended', 1)]
[('th', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('joint', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('next', 1), ('generation', 1), ('wired', 1), ('wireless', 1), ('advanced', 1), ('network', 1), ('system', 1), ('new', 1), ('internet', 1), ('thing', 1), ('smart', 1), ('space', 1), ('rusmart', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('mobile', 1), ('web', 1), ('information', 1), ('system', 1), ('mobiwis', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('august', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('held', 1), ('boston', 1), ('usa', 1), ('september', 1), ('based', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('principle', 1), ('practice', 1), ('constraint', 1), ('programming', 1), ('cp', 1), ('held', 1), ('lyon', 1), ('france', 1), ('september', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('formal', 1), ('method', 1), ('sefm', 1), ('held', 1), ('grenoble', 1), ('france', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('tool', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('augmented', 1), ('environment', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('boston', 1), ('usa', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('held', 1), ('boston', 1), ('usa', 1), ('september', 1), ('based', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('wireless', 1), ('sensor', 1), ('network', 1), ('ewsn', 1), ('held', 1), ('oxford', 1), ('uk', 1), ('february', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('workshop', 1), ('computer', 1), ('performance', 1), ('engineering', 1), ('epew', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('august', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('workshop', 1), ('algorithm', 1), ('computation', 1), ('walcom', 1), ('held', 1), ('chennai', 1), ('india', 1), ('february', 1), ('full', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1), ('carefully', 1)]
[('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('formerly', 1), ('workshop', 1), ('information', 1), ('security', 1), ('theory', 1), ('practice', 1), ('wistp', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1), ('august', 1), ('revised', 1), ('full', 1)]
[('rsa', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('cryptographer', 1), ('track', 1), ('conference', 1), ('ct', 1), ('held', 1), ('san', 1), ('francisco', 1), ('ca', 1), ('usa', 1), ('february', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('wired', 1), ('wireless', 1), ('internet', 1), ('communication', 1), ('wwic', 1), ('held', 1), ('malaga', 1), ('spain', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('pairing', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('based', 1), ('cryptography', 1), ('held', 1), ('beijing', 1), ('china', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('formal', 1), ('method', 1), ('sefm', 1), ('held', 1), ('york', 1), ('uk', 1), ('september', 1), ('full', 1), ('presented', 1), ('together', 1), ('invited', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('architecture', 1), ('computing', 1), ('system', 1), ('arc', 1), ('held', 1), ('lübeck', 1), ('germany', 1), ('february', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('analysis', 1), ('image', 1), ('pattern', 1), ('caip', 1), ('held', 1), ('valletta', 1), ('malta', 1), ('september', 1), ('paper', 1), ('presented', 1)]
[('volume', 2), ('seven', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('held', 1), ('zurich', 1), ('switzerland', 1), ('september', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('third', 2), ('fourth', 2), ('wbdb', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('joint', 1), ('proceeding', 1), ('workshop', 1), ('big', 1), ('data', 1), ('benchmarking', 1), ('xi', 1), ('china', 1), ('july', 1), ('san', 1), ('josé', 1), ('ca', 1), ('usa', 1), ('october', 1)]
[('volume', 2), ('seven', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('held', 1), ('zurich', 1), ('switzerland', 1), ('september', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('volume', 2), ('seven', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('held', 1), ('zurich', 1), ('switzerland', 1), ('september', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('volume', 2), ('seven', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('held', 1), ('zurich', 1), ('switzerland', 1), ('september', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('quantitative', 1), ('evaluation', 1), ('system', 1), ('qest', 1), ('held', 1), ('florence', 1), ('italy', 1), ('september', 1), ('full', 1), ('short', 1), ('included', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('method', 1), ('industrial', 1), ('critical', 1), ('system', 1), ('fmics', 1), ('held', 1), ('florence', 1), ('italy', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('problem', 1), ('solving', 1), ('nature', 1), ('ppsn', 1), ('held', 1), ('ljubljana', 1), ('slovenia', 1), ('september', 1), ('total', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cooperative', 1), ('design', 1), ('visualization', 1), ('engineering', 1), ('cdve', 1), ('held', 1), ('seattle', 1), ('wa', 1), ('usa', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1)]
[('wireless', 2), ('network', 2), ('moving', 2), ('object', 2), ('autonomous', 2), ('drawn', 1), ('significant', 1), ('attention', 1), ('recently', 1), ('type', 1), ('consist', 1), ('number', 1), ('semi', 1), ('node', 1), ('diverse', 1), ('pattern', 1), ('speed', 1), ('communicating', 1), ('via', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('third', 1), ('international', 1), ('workshop', 1), ('structured', 1), ('object', 1), ('oriented', 1), ('formal', 1), ('language', 1), ('method', 1), ('sofl', 1), ('msvl', 1), ('held', 1), ('queenstown', 1), ('new', 1), ('zealand', 1), ('october', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('multiple', 1), ('access', 1), ('communication', 1), ('macom', 1), ('held', 1), ('helsinki', 1), ('finland', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('passive', 1), ('active', 1), ('measurement', 1), ('pam', 1), ('held', 1), ('los', 1), ('angeles', 1), ('ca', 1), ('usa', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('analysis', 1), ('image', 1), ('pattern', 1), ('caip', 1), ('held', 1), ('valletta', 1), ('malta', 1), ('september', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('language', 1), ('automaton', 1), ('theory', 1), ('application', 1), ('lata', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('symposium', 1), ('model', 1), ('checking', 1), ('software', 1), ('spin', 1), ('held', 1), ('stellenbosch', 1), ('south', 1), ('africa', 1), ('august', 1), ('presented', 1), ('regular', 1), ('tool', 1), ('new', 1), ('idea', 1)]
[('tpc', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('technology', 1), ('conference', 1), ('tpctc', 1), ('held', 1), ('trento', 1), ('italy', 1), ('august', 1), ('contains', 1), ('selected', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('report', 1), ('public', 1), ('relation', 1), ('committee', 1)]
[('paper', 3), ('festschrift', 1), ('volume', 1), ('contains', 1), ('refereed', 1), ('including', 1), ('personal', 1), ('memory', 1), ('essay', 1), ('regular', 1), ('research', 1), ('close', 1), ('collaborator', 1), ('friend', 1), ('josé', 1), ('meseguer', 1), ('honor', 1), ('occasion', 1), ('th', 1), ('birthday', 1), ('presented', 1)]
[('revised', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('foundation', 1), ('information', 1), ('knowledge', 1), ('system', 1), ('foiks', 1), ('held', 1), ('bordeaux', 1), ('france', 1), ('march', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('security', 1), ('isc', 1), ('held', 1), ('trondheim', 1), ('norway', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('held', 1), ('th', 1), ('asia', 1), ('pacific', 1), ('web', 1), ('conference', 1), ('apweb', 1), ('changsha', 1), ('china', 1), ('september', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('runtime', 1), ('verification', 1), ('rv', 1), ('held', 1), ('toronto', 1), ('canada', 1), ('september', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('tool', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('internet', 1), ('vehicle', 1), ('iov', 1), ('held', 1), ('beijing', 1), ('china', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('proceeding', 2), ('book', 1), ('constitutes', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('icann', 1), ('held', 1), ('hamburg', 1), ('germany', 1), ('september', 1), ('paper', 1), ('included', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algorithm', 1), ('architecture', 1), ('parallel', 1), ('processing', 1), ('ica', 1), ('pp', 1), ('held', 1), ('dalian', 1), ('china', 1), ('august', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algorithm', 1), ('architecture', 1), ('parallel', 1), ('processing', 1), ('ica', 1), ('pp', 1), ('held', 1), ('dalian', 1), ('china', 1), ('august', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('privacy', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('statistical', 1), ('database', 1), ('psd', 1), ('held', 1), ('ibiza', 1), ('spain', 1), ('september', 1), ('sponsorship', 1), ('unesco', 1), ('chair', 1), ('data', 1), ('revised', 1), ('full', 1)]
[('dna', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computing', 1), ('molecular', 1), ('programming', 1), ('held', 1), ('kyoto', 1), ('japan', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('graphic', 1), ('iccvg', 1), ('held', 1), ('warsaw', 1), ('poland', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('various', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('research', 1), ('attack', 1), ('intrusion', 1), ('defense', 1), ('raid', 1), ('held', 1), ('gothenburg', 1), ('sweden', 1), ('september', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('nordic', 1), ('conference', 1), ('secure', 1), ('system', 1), ('held', 1), ('tromsø', 1), ('norway', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('serious', 1), ('game', 1), ('development', 1), ('application', 1), ('sgda', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('smart', 1), ('graphic', 1), ('sg', 1), ('held', 1), ('taipei', 1), ('taiwan', 1), ('august', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('model', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('driven', 1), ('engineering', 1), ('language', 1), ('system', 1), ('held', 1), ('valencia', 1), ('spain', 1), ('september', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('post', 1), ('quantum', 1), ('cryptography', 1), ('pqcrypto', 1), ('held', 1), ('waterloo', 1), ('canada', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('evolution', 1), ('ea', 1), ('held', 1), ('bordeaux', 1), ('france', 1), ('october', 1), ('revised', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('revised', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('internet', 1), ('distributed', 1), ('computing', 1), ('system', 1), ('idcs', 1), ('held', 1), ('calabria', 1), ('italy', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('network', 1), ('system', 1), ('security', 1), ('n', 1), ('held', 1), ('xi', 1), ('china', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('luxembourg', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('engineering', 1), ('method', 1), ('icfem', 1), ('held', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('system', 1), ('analysis', 1), ('modeling', 1), ('sam', 1), ('held', 1), ('valencia', 1), ('spain', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('jist', 3), ('semantic', 2), ('technology', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('joint', 1), ('international', 1), ('held', 1), ('chiang', 1), ('mai', 1), ('thailand', 1), ('november', 1), ('theme', 1), ('open', 1), ('data', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('quantum', 1), ('interaction', 1), ('qi', 1), ('held', 1), ('filzbach', 1), ('switzerland', 1), ('june', 1), ('july', 1), ('paper', 1), ('together', 1), ('invited', 1), ('keynote', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('computational', 1), ('color', 1), ('imaging', 1), ('workshop', 1), ('cciw', 1), ('held', 1), ('saint', 1), ('étienne', 1), ('france', 1), ('march', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('invited', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('arithmetic', 1), ('finite', 1), ('field', 1), ('waifi', 1), ('held', 1), ('gebze', 1), ('turkey', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('invited', 1), ('talk', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('language', 1), ('automaton', 1), ('theory', 1), ('application', 1), ('lata', 1), ('held', 1), ('nice', 1), ('france', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('algorithm', 1), ('computation', 1), ('walcom', 1), ('held', 1), ('dhaka', 1), ('bangladesh', 1), ('february', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('health', 3), ('medicine', 2), ('concept', 2), ('prolonged', 1), ('life', 1), ('expectancy', 1), ('along', 1), ('increasing', 1), ('complexity', 1), ('service', 1), ('raise', 1), ('cost', 1), ('worldwide', 1), ('dramatically', 1), ('whilst', 1), ('smart', 1), ('potential', 1), ('support', 1), ('emerging', 1)]
[('book', 1), ('collect', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('onon', 1), ('algorithm', 1), ('discrete', 1), ('applied', 1), ('mathematics', 1), ('caldam', 1), ('held', 1), ('kanpur', 1), ('india', 1), ('february', 1), ('volume', 1), ('contains', 1), ('full', 1), ('revised', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('engineering', 1), ('secure', 1), ('software', 1), ('system', 1), ('essos', 1), ('held', 1), ('milan', 1), ('italy', 1), ('march', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1)]
[('workshop', 2), ('socinfo', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('held', 1), ('international', 1), ('conference', 1), ('social', 1), ('informatics', 1), ('took', 1), ('place', 1), ('barcelona', 1), ('spain', 1), ('november', 1), ('year', 1), ('included', 1), ('nine', 1), ('satellite', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('passive', 1), ('active', 1), ('measurement', 1), ('pam', 1), ('held', 1), ('new', 1), ('york', 1), ('ny', 1), ('usa', 1), ('march', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('computing', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('human', 1), ('centered', 1), ('hcc', 1), ('consolidated', 1), ('develops', 1), ('successful', 1), ('icpca', 1), ('sw', 1), ('pervasive', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('consisting', 1), ('lncs', 1), ('contains', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('workshop', 1), ('held', 1), ('conjunction', 1), ('th', 1), ('asian', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('singapore', 1), ('november', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('australian', 1), ('computer', 1), ('human', 1), ('interaction', 1), ('ozchi', 1), ('held', 1), ('adelaide', 1), ('sa', 1), ('australia', 1), ('november', 1), ('revised', 1), ('extended', 1), ('paper', 1), ('carefully', 1)]
[('conference', 2), ('singapore', 2), ('five', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('held', 1), ('november', 1), ('total', 1), ('contribution', 1), ('presented', 1)]
[('conference', 2), ('singapore', 2), ('five', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('held', 1), ('november', 1), ('total', 1), ('contribution', 1), ('presented', 1)]
[('conference', 2), ('singapore', 2), ('five', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('held', 1), ('november', 1), ('total', 1), ('contribution', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('conference', 1), ('theory', 1), ('application', 1), ('model', 1), ('computation', 1), ('tamc', 1), ('held', 1), ('singapore', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('integration', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('operation', 1), ('research', 1), ('technique', 1), ('constraint', 1), ('programming', 1), ('cpaior', 1), ('held', 1), ('barcelona', 1), ('spain', 1)]
[('conference', 2), ('singapore', 2), ('five', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('held', 1), ('november', 1), ('total', 1), ('contribution', 1)]
[('conference', 2), ('singapore', 2), ('five', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('held', 1), ('november', 1), ('total', 1), ('contribution', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('traffic', 1), ('monitoring', 1), ('analysis', 1), ('tma', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('pmbs', 1), ('new', 1), ('orleans', 1), ('la', 1), ('usa', 1), ('november', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('high', 1), ('performance', 1), ('computing', 1), ('computational', 1), ('science', 1), ('vecpar', 1), ('held', 1), ('eugene', 1), ('usa', 1), ('june', 1), ('july', 1), ('paper', 1)]
[('workshop', 2), ('luxembourg', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('structured', 1), ('object', 1), ('oriented', 1), ('formal', 1), ('language', 1), ('method', 1), ('sofl', 1), ('msvl', 1), ('held', 1), ('november', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('logic', 1), ('based', 1), ('program', 1), ('synthesis', 1), ('transformation', 1), ('lopstr', 1), ('held', 1), ('canterbury', 1), ('uk', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('selected', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('gi', 1), ('held', 1), ('grenoble', 1), ('france', 1), ('revised', 1), ('full', 1), ('presented', 1), ('carefully', 1), ('submission', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('approximation', 1), ('online', 1), ('algorithm', 1), ('waoa', 1), ('held', 1), ('wrocław', 1), ('poland', 1), ('september', 1), ('part', 1), ('algo', 1), ('revised', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('distributed', 1), ('computing', 1), ('internet', 1), ('technology', 1), ('icdcit', 1), ('held', 1), ('bhubaneswar', 1), ('india', 1), ('february', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('conference', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('ninth', 1), ('international', 1), ('risk', 1), ('security', 1), ('internet', 1), ('system', 1), ('crisis', 1), ('held', 1), ('trento', 1), ('italy', 1), ('august', 1), ('full', 1), ('short', 1)]
[('book', 1), ('present', 1), ('tutorial', 1), ('lecture', 1), ('given', 1), ('leading', 1), ('researcher', 1), ('th', 1), ('edition', 1), ('international', 1), ('school', 1), ('formal', 1), ('method', 1), ('design', 1), ('computer', 1), ('communication', 1), ('software', 1), ('system', 1), ('sfm', 1), ('held', 1), ('bertinoro', 1), ('italy', 1), ('june', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('health', 1), ('information', 1), ('science', 1), ('held', 1), ('melbourne', 1), ('australia', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('th', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('ifip', 1), ('wg', 1), ('conference', 1), ('formal', 1), ('technique', 1), ('distributed', 1), ('object', 1), ('component', 1), ('system', 1), ('forte', 1), ('held', 1), ('grenoble', 1), ('france', 1), ('june', 1), ('part', 1)]
[('pacific', 2), ('asia', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('intelligence', 1), ('security', 1), ('informatics', 1), ('paisi', 1), ('held', 1), ('ho', 1), ('chi', 1), ('minh', 1), ('city', 1), ('vietnam', 1), ('conjunction', 1), ('pakdd', 1), ('th', 1), ('conference', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('end', 1), ('user', 1), ('development', 1), ('eud', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('full', 1), ('short', 1), ('presented', 1), ('event', 1), ('additionally', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('formal', 1), ('method', 1), ('industrial', 1), ('critical', 1), ('system', 1), ('fmics', 1), ('oslo', 1), ('norway', 1), ('june', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('automaton', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('workshop', 1), ('cellular', 1), ('discrete', 1), ('complex', 1), ('system', 1), ('held', 1), ('himeji', 1), ('japan', 1), ('july', 1), ('regular', 1), ('included', 1), ('volume', 1), ('carefully', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('algorithm', 1), ('complexity', 1), ('ciac', 1), ('held', 1), ('paris', 1), ('france', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('contains', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('mathematical', 1), ('morphology', 1), ('ismm', 1), ('held', 1), ('reykjavik', 1), ('iceland', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('internet', 1), ('science', 1), ('inscie', 1), ('held', 1), ('brussels', 1), ('belgium', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('inclusion', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('extended', 1), ('semantic', 1), ('web', 1), ('conference', 1), ('eswc', 1), ('held', 1), ('anissaras', 1), ('portoroz', 1), ('slovenia', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('three', 1), ('invited', 1), ('talk', 1), ('carefully', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('analytical', 1), ('stochastic', 1), ('modelling', 1), ('technique', 1), ('application', 1), ('asmta', 1), ('held', 1), ('albena', 1), ('bulgaria', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('volume', 1), ('lncs', 1), ('constitute', 1), ('proceeding', 1), ('international', 1), ('work', 1), ('conference', 1), ('interplay', 1), ('natural', 1), ('artificial', 1), ('computation', 1), ('iwinac', 1), ('held', 1), ('elche', 1), ('spain', 1), ('june', 1), ('total', 1), ('contribution', 1)]
[('volume', 1), ('lncs', 1), ('constitute', 1), ('proceeding', 1), ('international', 1), ('work', 1), ('conference', 1), ('interplay', 1), ('natural', 1), ('artificial', 1), ('computation', 1), ('iwinac', 1), ('held', 1), ('elche', 1), ('spain', 1), ('june', 1), ('total', 1), ('contribution', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('formal', 1), ('method', 1), ('fm', 1), ('held', 1), ('oslo', 1), ('norway', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('persuasive', 2), ('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('technology', 1), ('held', 1), ('chicago', 1), ('il', 1), ('usa', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('information', 1), ('system', 1), ('engineering', 1), ('caise', 1), ('held', 1), ('stockholm', 1), ('sweden', 1), ('june', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 3), ('international', 2), ('serious', 2), ('game', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('joint', 1), ('jcsg', 1), ('held', 1), ('huddersfield', 1), ('uk', 1), ('june', 1), ('bundle', 1), ('activity', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('australasian', 1), ('database', 1), ('conference', 1), ('adc', 1), ('held', 1), ('melbourne', 1), ('vic', 1), ('australia', 1), ('june', 1), ('full', 1), ('presented', 1), ('together', 1), ('demo', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('smart', 1), ('home', 1), ('health', 1), ('telematics', 1), ('icost', 1), ('held', 1), ('geneva', 1), ('switzerland', 1), ('june', 1), ('full', 1), ('paper', 1), ('short', 1), ('contribution', 1), ('included', 1), ('volume', 1)]
[('state', 1), ('art', 1), ('survey', 1), ('constitutes', 1), ('final', 1), ('publication', 1), ('cost', 1), ('action', 1), ('ic', 1), ('multilingual', 1), ('multifaceted', 1), ('interactive', 1), ('information', 1), ('access', 1), ('mumia', 1), ('contains', 1), ('outstanding', 1), ('research', 1), ('recent', 1), ('development', 1), ('new', 1), ('direction', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('iberoamerican', 1), ('congress', 1), ('pattern', 1), ('recognition', 1), ('ciarp', 1), ('held', 1), ('puerto', 1), ('vallarta', 1), ('jalisco', 1), ('mexico', 1), ('november', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('intelligent', 1), ('data', 1), ('analysis', 1), ('held', 1), ('october', 1), ('november', 1), ('leuven', 1), ('belgium', 1), ('revised', 1), ('full', 1), ('together', 1), ('invited', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('decision', 1), ('game', 1), ('theory', 1), ('security', 1), ('gamesec', 1), ('held', 1), ('los', 1), ('angeles', 1), ('ca', 1), ('usa', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('lncs', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('kuching', 1), ('malaysia', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('lncs', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('kuching', 1), ('malaysia', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('lncs', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('kuching', 1), ('malaysia', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('combinatorial', 1), ('optimization', 1), ('application', 1), ('cocoa', 1), ('held', 1), ('island', 1), ('maui', 1), ('hawaii', 1), ('usa', 1), ('december', 1), ('full', 1), ('paper', 1), ('included', 1)]
[('singapore', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('symposium', 1), ('programming', 1), ('language', 1), ('system', 1), ('aplas', 1), ('held', 1), ('november', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('together', 1), ('abstract', 1), ('invited', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('future', 1), ('data', 1), ('security', 1), ('engineering', 1), ('fdse', 1), ('held', 1), ('ho', 1), ('chi', 1), ('minh', 1), ('city', 1), ('vietnam', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('contest', 1), ('report', 1), ('st', 1), ('international', 1), ('workshop', 1), ('vaam', 1), ('held', 1), ('stockholm', 1), ('sweden', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1), ('aim', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('asia', 1), ('pacific', 1), ('digital', 1), ('library', 1), ('icadl', 1), ('held', 1), ('chiang', 1), ('mai', 1), ('thailand', 1), ('november', 1), ('full', 1), ('short', 1), ('poster', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('information', 1), ('retrieval', 1), ('society', 1), ('conference', 1), ('air', 1), ('held', 1), ('kuching', 1), ('malaysia', 1), ('december', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1), ('seven', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('rewriting', 1), ('logic', 1), ('application', 1), ('wrla', 1), ('held', 1), ('satellite', 1), ('event', 1), ('etaps', 1), ('grenoble', 1), ('france', 1), ('march', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('swarm', 1), ('intelligence', 1), ('based', 1), ('optimization', 1), ('icsibo', 1), ('held', 1), ('mulhouse', 1), ('france', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('computer', 1), ('music', 1), ('modeling', 1), ('retrieval', 1), ('cmmr', 1), ('held', 1), ('marseille', 1), ('france', 1), ('october', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('retrieval', 1), ('facility', 1), ('conference', 1), ('irfc', 1), ('held', 1), ('copenhagen', 1), ('denmark', 1), ('november', 1), ('presented', 1), ('together', 1), ('industry', 1), ('carefully', 1), ('reviewed', 1)]
[('th', 2), ('bpoe', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('workshop', 1), ('big', 1), ('data', 1), ('benchmark', 1), ('performance', 1), ('optimization', 1), ('emerging', 1), ('hardware', 1), ('held', 1), ('respectively', 1), ('salt', 1), ('lake', 1), ('city', 1), ('march', 1)]
[('india', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cryptology', 1), ('indocrypt', 1), ('held', 1), ('new', 1), ('delhi', 1), ('december', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('selected', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('area', 1), ('cryptography', 1), ('sac', 1), ('held', 1), ('montreal', 1), ('qc', 1), ('canada', 1), ('august', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('practical', 1), ('aspect', 1), ('declarative', 1), ('language', 1), ('padl', 1), ('held', 1), ('portland', 1), ('usa', 1), ('june', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('interact', 1), ('held', 1), ('bamberg', 1), ('germany', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1)]
[('clef', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('initiative', 1), ('held', 1), ('toulouse', 1), ('france', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('first', 1), ('second', 1), ('international', 1), ('workshop', 1), ('memory', 1), ('data', 1), ('management', 1), ('analysis', 1), ('held', 1), ('riva', 1), ('del', 1), ('garda', 1), ('italy', 1), ('august', 1), ('hangzhou', 1), ('china', 1), ('september', 1)]
[('paper', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('based', 1), ('learning', 1), ('icwl', 1), ('held', 1), ('tallinn', 1), ('estonia', 1), ('august', 1), ('volume', 1), ('comprises', 1), ('six', 1), ('seventh', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('activity', 1), ('monitoring', 1), ('multiple', 1), ('distributed', 1), ('sensing', 1), ('ammds', 1), ('held', 1), ('stockholm', 1), ('sweden', 1), ('august', 1), ('satellite', 1), ('event', 1)]
[('haifa', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('verification', 1), ('conference', 1), ('hvc', 1), ('held', 1), ('israel', 1), ('november', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('jozef', 2), ('gruska', 2), ('computer', 2), ('professor', 1), ('known', 1), ('scientist', 1), ('many', 1), ('broad', 1), ('result', 1), ('father', 1), ('theoretical', 1), ('science', 1), ('research', 1), ('czechoslovakia', 1), ('among', 1), ('first', 1), ('slovak', 1), ('programmer', 1), ('early', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('computer', 1), ('assisted', 1), ('robotic', 1), ('endoscopy', 1), ('care', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('boston', 1), ('usa', 1), ('september', 1), ('paper', 1), ('presented', 1), ('focus', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('adaptive', 1), ('resource', 1), ('management', 1), ('scheduling', 1), ('cloud', 1), ('computing', 1), ('arm', 1), ('cc', 1), ('held', 1), ('conjunction', 1), ('acm', 1), ('symposium', 1), ('principle', 1)]
[('eunice', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('workshop', 1), ('advance', 1), ('communication', 1), ('networking', 1), ('held', 1), ('rennes', 1), ('france', 1), ('september', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('symbiotic', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('interaction', 1), ('held', 1), ('helsinki', 1), ('finland', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('service', 2), ('future', 1), ('internet', 1), ('envisions', 1), ('move', 1), ('toward', 1), ('widespread', 1), ('use', 1), ('way', 1), ('networked', 1), ('interaction', 1), ('technology', 1), ('developing', 1), ('deploying', 1), ('established', 1), ('method', 1), ('ensuring', 1), ('trust', 1), ('security', 1), ('fewer', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('parameterized', 1), ('exact', 1), ('computation', 1), ('ipec', 1), ('wroclaw', 1), ('poland', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('game', 1), ('learning', 1), ('alliance', 1), ('gala', 1), ('held', 1), ('bucharest', 1), ('romania', 1), ('july', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('processing', 1), ('cell', 1), ('tissue', 1), ('ipcat', 1), ('held', 1), ('san', 1), ('diego', 1), ('ca', 1), ('usa', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('software', 1), ('architecture', 1), ('ecsa', 1), ('held', 1), ('cavtat', 1), ('croatia', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1), ('three', 1), ('education', 1), ('training', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('practice', 1), ('digital', 1), ('library', 1), ('tpdl', 1), ('held', 1), ('poznań', 1), ('poland', 1), ('september', 1), ('full', 1), ('poster', 1), ('demo', 1), ('presented', 1)]
[('festschrift', 1), ('volume', 1), ('published', 1), ('honor', 1), ('professor', 1), ('paul', 1), ('spirakis', 1), ('occasion', 1), ('th', 1), ('birthday', 1), ('celebrates', 1), ('significant', 1), ('contribution', 1), ('computer', 1), ('science', 1), ('eminent', 1), ('talented', 1), ('influential', 1), ('researcher', 1)]
[('paper', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('visual', 1), ('computing', 1), ('isvc', 1), ('held', 1), ('la', 1), ('vega', 1), ('nv', 1), ('usa', 1), ('revised', 1), ('full', 1), ('poster', 1), ('presented', 1), ('together', 1)]
[('conference', 2), ('volume', 1), ('lncs', 1), ('constitute', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('workshop', 1), ('held', 1), ('th', 1), ('international', 1), ('parallel', 1), ('computing', 1), ('euro', 1), ('par', 1), ('porto', 1), ('portugal', 1), ('august', 1), ('revised', 1)]
[('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('energy', 1), ('minimization', 1), ('method', 1), ('computer', 1), ('vision', 1), ('pattern', 1), ('recognition', 1), ('emmcvpr', 1), ('held', 1), ('hong', 1), ('kong', 1), ('china', 1), ('january', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('selected', 1), ('th', 1), ('international', 1), ('symposium', 1), ('trend', 1), ('functional', 1), ('programming', 1), ('tfp', 1), ('held', 1), ('soesterberg', 1), ('netherlands', 1), ('full', 1), ('included', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('statistical', 1), ('atlas', 1), ('computational', 1), ('model', 1), ('heart', 1), ('imaging', 1), ('modelling', 1), ('challenge', 1), ('stacom', 1), ('held', 1), ('conjunction', 1)]
[('parallel', 2), ('advent', 1), ('multi', 1), ('core', 1), ('architecture', 1), ('cloud', 1), ('computing', 1), ('brought', 1), ('programming', 1), ('mainstream', 1), ('software', 1), ('development', 1), ('unfortunately', 1), ('writing', 1), ('scalable', 1), ('program', 1), ('using', 1), ('traditional', 1), ('lock', 1), ('based', 1), ('synchronization', 1), ('primitive', 1)]
[('th', 2), ('international', 2), ('symposium', 2), ('singapore', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('unifying', 1), ('theory', 1), ('programming', 1), ('utp', 1), ('held', 1), ('co', 1), ('located', 1), ('formal', 1), ('method', 1), ('fm', 1)]
[('volume', 1), ('contains', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('doctoral', 1), ('workshop', 1), ('mathematical', 1), ('engineering', 1), ('method', 1), ('computer', 1), ('science', 1), ('memics', 1), ('held', 1), ('telč', 1), ('czech', 1), ('republic', 1), ('october', 1), ('thoroughly', 1), ('revised', 1), ('paper', 1), ('carefully', 1), ('selected', 1)]
[('image', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('spatio', 1), ('temporal', 1), ('analysis', 1), ('longitudinal', 1), ('time', 1), ('series', 1), ('data', 1), ('stia', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('boston', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('brazilian', 1), ('symposium', 1), ('formal', 1), ('method', 1), ('sbmf', 1), ('held', 1), ('maceió', 1), ('brazil', 1), ('september', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('algebra', 1), ('number', 1), ('theory', 1), ('always', 1), ('counted', 1), ('among', 1), ('beautiful', 1), ('mathematical', 1), ('area', 1), ('deep', 1), ('proof', 1), ('elegant', 1), ('result', 1), ('long', 1), ('time', 1), ('considered', 1), ('important', 1), ('view', 1), ('lack', 1), ('real', 1), ('life', 1), ('application', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('information', 1), ('security', 1), ('application', 1), ('wisa', 1), ('held', 1), ('jeju', 1), ('island', 1), ('korea', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('european', 1), ('conference', 1), ('wireless', 1), ('sensor', 1), ('network', 1), ('ewsn', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('february', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('model', 2), ('traditionally', 1), ('research', 1), ('driven', 1), ('engineering', 1), ('mde', 1), ('mainly', 1), ('focused', 1), ('use', 1), ('design', 1), ('implementation', 1), ('verification', 1), ('stage', 1), ('development', 1), ('work', 1), ('produced', 1), ('relatively', 1), ('mature', 1), ('technique', 1), ('tool', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('application', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('joint', 1), ('rewriting', 1), ('technique', 1), ('rta', 1), ('typed', 1), ('lambda', 1), ('calculus', 1), ('tlca', 1), ('held', 1), ('part', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('numerical', 1), ('method', 1), ('application', 1), ('nma', 1), ('held', 1), ('borovets', 1), ('bulgaria', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('tpc', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('technology', 1), ('tpctc', 1), ('held', 1), ('hangzhou', 1), ('china', 1), ('september', 1), ('contains', 1), ('selected', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('report', 1), ('public', 1), ('relation', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('energy', 1), ('efficient', 1), ('data', 1), ('center', 1), ('dc', 1), ('held', 1), ('cambridge', 1), ('uk', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('job', 1), ('scheduling', 1), ('strategy', 1), ('parallel', 1), ('processing', 1), ('jsspp', 1), ('held', 1), ('phoenix', 1), ('az', 1), ('usa', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('workshop', 1), ('collocated', 1), ('sefm', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('formal', 1), ('method', 1), ('held', 1), ('grenoble', 1), ('france', 1), ('september', 1), ('included', 1), ('volume', 1), ('carefully', 1)]
[('workshop', 2), ('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('comprises', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('took', 1), ('place', 1), ('conjunction', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('held', 1), ('zurich', 1)]
[('workshop', 2), ('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('comprises', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('took', 1), ('place', 1), ('conjunction', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('held', 1), ('zurich', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('security', 1), ('cryptology', 1), ('inscrypt', 1), ('held', 1), ('beijing', 1), ('china', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('international', 3), ('workshop', 3), ('th', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('data', 1), ('privacy', 1), ('management', 1), ('dpm', 1), ('autonomous', 1), ('spontaneous', 1), ('security', 1), ('setop', 1), ('rd', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('current', 1), ('trend', 1), ('web', 1), ('engineering', 1), ('icwe', 1), ('workshop', 1), ('held', 1), ('june', 1), ('rotterdam', 1), ('netherlands', 1), ('revised', 1), ('full', 1), ('paper', 1), ('selected', 1), ('form', 1)]
[('symbiotic', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('interaction', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('thinternational', 1), ('conference', 1), ('security', 1), ('privacy', 1), ('applied', 1), ('cryptographyengineering', 1), ('space', 1), ('held', 1), ('jaipur', 1), ('india', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('information', 1), ('communication', 1), ('technology', 1), ('ict', 1), ('eurasia', 1), ('collocation', 1), ('asiaares', 1), ('special', 1), ('track', 1), ('availability', 1), ('reliability', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('entertainment', 1), ('computing', 1), ('icec', 1), ('held', 1), ('introndheim', 1), ('norway', 1), ('september', 1), ('october', 1), ('full', 1), ('short', 1), ('poster', 1), ('demosand', 1)]
[('autonomic', 2), ('system', 2), ('collective', 1), ('consists', 1), ('collaborating', 1), ('entity', 1), ('able', 1), ('adapt', 1), ('runtime', 1), ('adjusting', 1), ('state', 1), ('environment', 1), ('incorporating', 1), ('new', 1), ('knowledge', 1), ('behavior', 1), ('highly', 1), ('dynamic', 1)]
[('professor', 2), ('wirsing', 2), ('book', 1), ('dedicated', 1), ('martin', 1), ('occasion', 1), ('emeritation', 1), ('ludwig', 1), ('maximilians', 1), ('universität', 1), ('munich', 1), ('germany', 1), ('volume', 1), ('reflection', 1), ('gratitude', 1), ('admiration', 1), ('life', 1), ('highly', 1), ('creative', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('database', 1), ('networked', 1), ('information', 1), ('system', 1), ('dnis', 1), ('held', 1), ('aizu', 1), ('wakamatsu', 1), ('japan', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('architecture', 1), ('computing', 1), ('system', 1), ('arc', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('march', 1), ('presented', 1), ('together', 1), ('three', 1), ('invited', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('international', 1), ('workshop', 1), ('interoperability', 1), ('open', 1), ('source', 1), ('solution', 1), ('internet', 1), ('thing', 1), ('fp', 1), ('openiot', 1), ('project', 1), ('held', 1), ('conjunction', 1), ('softcom', 1), ('split', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('working', 1), ('conference', 1), ('requirement', 1), ('engineering', 1), ('foundation', 1), ('software', 1), ('quality', 1), ('refsq', 1), ('held', 1), ('essen', 1), ('germany', 1), ('april', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('evolutionary', 1), ('computation', 1), ('combinatorial', 1), ('optimization', 1), ('evocop', 1), ('held', 1), ('copenhagen', 1), ('denmark', 1), ('april', 1), ('co', 1), ('located', 1), ('evo', 1), ('event', 1), ('eurogp', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('biologically', 1), ('inspired', 1), ('music', 1), ('sound', 1), ('art', 1), ('design', 1), ('evomusart', 1), ('held', 1), ('copenhagen', 1), ('denmark', 1), ('april', 1), ('co', 1), ('located', 1), ('evo', 1), ('event', 1), ('eurogp', 1)]
[('evo', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('genetic', 1), ('programming', 1), ('eurogp', 1), ('held', 1), ('copenhagen', 1), ('spain', 1), ('april', 1), ('co', 1), ('located', 1), ('event', 1), ('evocop', 1), ('musart', 1), ('application', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('security', 1), ('cryptology', 1), ('icisc', 1), ('held', 1), ('seoul', 1), ('south', 1), ('korea', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('social', 1), ('computing', 1), ('behavioral', 1), ('cultural', 1), ('modeling', 1), ('prediction', 1), ('sbp', 1), ('held', 1), ('washington', 1), ('dc', 1), ('usa', 1), ('march', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('ir', 1), ('research', 1), ('ecir', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('march', 1), ('april', 1), ('full', 1), ('poster', 1), ('demonstration', 1), ('presented', 1), ('together', 1), ('keynote', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('lightweight', 1), ('cryptography', 1), ('security', 1), ('privacy', 1), ('lightsec', 1), ('held', 1), ('istanbul', 1), ('turkey', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('application', 1), ('evolutionary', 1), ('computation', 1), ('evoapplications', 1), ('held', 1), ('copenhagen', 1), ('spain', 1), ('april', 1), ('colocated', 1), ('evo', 1), ('event', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('smart', 1), ('card', 1), ('research', 1), ('advanced', 1), ('application', 1), ('cardis', 1), ('held', 1), ('paris', 1), ('france', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('evolutionary', 1), ('multi', 1), ('criterion', 1), ('optimization', 1), ('emo', 1), ('held', 1), ('guimarães', 1), ('portugal', 1), ('march', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('held', 1), ('munich', 1), ('germany', 1), ('october', 1), ('based', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('mexican', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('mcpr', 1), ('held', 1), ('cancun', 1), ('mexico', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('held', 1), ('munich', 1), ('germany', 1), ('october', 1), ('based', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('human', 2), ('computer', 2), ('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('universal', 1), ('access', 1), ('interaction', 1), ('uahci', 1), ('held', 1), ('part', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('held', 1), ('munich', 1), ('germany', 1), ('october', 1), ('based', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('supercomputing', 1), ('conference', 1), ('isc', 1), ('held', 1), ('leipzig', 1), ('germany', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('processing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('ipcai', 1), ('held', 1), ('fukuoka', 1), ('japan', 1), ('june', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('similarity', 1), ('based', 1), ('pattern', 1), ('analysis', 1), ('recognition', 1), ('simbad', 1), ('held', 1), ('copenahgen', 1), ('denmark', 1), ('october', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('applied', 1), ('cryptography', 1), ('network', 1), ('security', 1), ('acns', 1), ('held', 1), ('lausanne', 1), ('switzerland', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('included', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('brazilian', 1), ('symposium', 1), ('progamming', 1), ('language', 1), ('sblp', 1), ('held', 1), ('belo', 1), ('horizonte', 1), ('brazil', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('language', 1), ('compiler', 1), ('parallel', 1), ('computing', 1), ('lcpc', 1), ('held', 1), ('hillsboro', 1), ('usa', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('design', 1), ('science', 1), ('research', 1), ('information', 1), ('system', 1), ('technology', 1), ('desrist', 1), ('held', 1), ('dublin', 1), ('ireland', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('iapr', 1), ('tc', 1), ('international', 1), ('workshop', 1), ('graph', 1), ('based', 1), ('representation', 1), ('pattern', 1), ('recognition', 1), ('gbrpr', 1), ('held', 1), ('beijing', 1), ('china', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('code', 1), ('cryptology', 1), ('information', 1), ('security', 1), ('si', 1), ('held', 1), ('rabat', 1), ('morocco', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1), ('carefully', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('social', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('computing', 1), ('medium', 1), ('scsm', 1), ('held', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('heraklion', 1), ('crete', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('colloquium', 1), ('theoretical', 1), ('aspect', 1), ('computing', 1), ('ictac', 1), ('held', 1), ('cali', 1), ('colombia', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('togetherwith', 1), ('invited', 1), ('talk', 1)]
[('international', 2), ('conference', 2), ('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('design', 1), ('user', 1), ('experience', 1), ('usability', 1), ('duxu', 1), ('held', 1), ('part', 1), ('th', 1), ('human', 1), ('computer', 1)]
[('pierpaolo', 2), ('degano', 2), ('festschrift', 1), ('volume', 1), ('published', 1), ('honor', 1), ('occasion', 1), ('th', 1), ('birthday', 1), ('outcome', 1), ('colloquium', 1), ('held', 1), ('pisa', 1), ('italy', 1), ('june', 1), ('worked', 1), ('large', 1), ('variety', 1), ('topic', 1), ('including', 1), ('formal', 1)]
[('international', 2), ('conference', 2), ('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('design', 1), ('user', 1), ('experience', 1), ('usability', 1), ('duxu', 1), ('held', 1), ('part', 1), ('th', 1), ('human', 1), ('computer', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('concept', 1), ('intelligent', 1), ('vision', 1), ('system', 1), ('acivs', 1), ('held', 1), ('catania', 1), ('italy', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('hybrid', 1), ('metaheuristics', 1), ('hm', 1), ('held', 1), ('hamburg', 1), ('germany', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('business', 1), ('service', 1), ('society', 1), ('held', 1), ('delft', 1), ('netherlands', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('international', 2), ('conference', 2), ('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('design', 1), ('user', 1), ('experience', 1), ('usability', 1), ('duxu', 1), ('held', 1), ('part', 1), ('th', 1), ('human', 1), ('computer', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('symposium', 1), ('research', 1), ('computer', 1), ('security', 1), ('esorics', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('lncs', 3), ('four', 1), ('volume', 1), ('set', 1), ('andlncs', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('onneural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('istanbul', 1), ('turkey', 1), ('innovember', 1), ('full', 1), ('paper', 1)]
[('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('guimarães', 1), ('portugal', 1), ('june', 1), ('july', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('network', 1), ('system', 1), ('security', 1), ('n', 1), ('held', 1), ('new', 1), ('york', 1), ('city', 1), ('ny', 1), ('usa', 1), ('november', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('guimarães', 1), ('portugal', 1), ('june', 1), ('july', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('guimarães', 1), ('portugal', 1), ('june', 1), ('july', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('security', 1), ('protocol', 1), ('held', 1), ('cambridge', 1), ('uk', 1), ('march', 1), ('april', 1), ('introduction', 1), ('volume', 1), ('present', 1), ('revised', 1), ('paper', 1)]
[('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('guimarães', 1), ('portugal', 1), ('june', 1), ('july', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereedconference', 1), ('proceeding', 1), ('fourth', 1), ('international', 1), ('conference', 1), ('big', 1), ('dataanalytics', 1), ('bda', 1), ('held', 1), ('hyderabad', 1), ('india', 1), ('december', 1), ('revised', 1), ('full', 1), ('invited', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('th', 2), ('computer', 2), ('game', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('international', 1), ('cg', 1), ('held', 1), ('yokohama', 1), ('japan', 1), ('august', 1), ('conjunction', 1), ('tournament', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('symposium', 1), ('combinatorial', 1), ('optimization', 1), ('isco', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('colloquium', 1), ('structural', 1), ('information', 1), ('communication', 1), ('complexity', 1), ('sirocco', 1), ('held', 1), ('takayama', 1), ('japan', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('product', 1), ('focused', 1), ('software', 1), ('process', 1), ('improvement', 1), ('profes', 1), ('held', 1), ('bolzano', 1), ('italy', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('internationalconference', 1), ('interactive', 1), ('digital', 1), ('storytelling', 1), ('icids', 1), ('held', 1), ('copenhagen', 1), ('denmark', 1), ('november', 1), ('december', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('development', 1), ('language', 1), ('theory', 1), ('dlt', 1), ('held', 1), ('ekaterinburg', 1), ('russia', 1), ('august', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('secondinternational', 1), ('conference', 1), ('internet', 1), ('vehicle', 1), ('iov', 1), ('held', 1), ('inchengdu', 1), ('china', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('descriptional', 1), ('complexity', 1), ('formal', 1), ('system', 1), ('dcfs', 1), ('held', 1), ('turku', 1), ('finland', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('mobile', 1), ('secure', 1), ('programmable', 1), ('networking', 1), ('mspn', 1), ('held', 1), ('paris', 1), ('france', 1), ('june', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('trust', 1), ('privacy', 1), ('digital', 1), ('business', 1), ('trustbus', 1), ('held', 1), ('munich', 1), ('germany', 1), ('september', 1), ('conjunction', 1), ('dexa', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('engineering', 1), ('method', 1), ('icfem', 1), ('held', 1), ('paris', 1), ('france', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('security', 1), ('iwsec', 1), ('held', 1), ('hirosaki', 1), ('japan', 1), ('august', 1), ('regular', 1), ('presented', 1), ('together', 1), ('short', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('symposium', 1), ('dependable', 1), ('software', 1), ('engineering', 1), ('theory', 1), ('tool', 1), ('application', 1), ('setta', 1), ('held', 1), ('beijing', 1), ('china', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('nordic', 1), ('conference', 1), ('secure', 1), ('system', 1), ('held', 1), ('oulu', 1), ('finland', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1), ('focus', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('satellite', 1), ('event', 1), ('th', 1), ('european', 1), ('semantic', 1), ('web', 1), ('eswc', 1), ('held', 1), ('heraklion', 1), ('greece', 1), ('june', 1), ('volume', 1), ('contains', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('concept', 1), ('intelligent', 1), ('vision', 1), ('system', 1), ('acivs', 1), ('held', 1), ('lecce', 1), ('italy', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('perspective', 2), ('book', 1), ('reflects', 1), ('current', 1), ('state', 1), ('art', 1), ('future', 1), ('digital', 1), ('heritage', 1), ('focusing', 1), ('interpretative', 1), ('reconstruction', 1), ('including', 1), ('bridging', 1), ('practical', 1), ('theoretical', 1), ('strategy', 1), ('approach', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('decision', 1), ('game', 1), ('theory', 1), ('security', 1), ('gamesec', 1), ('held', 1), ('new', 1), ('york', 1), ('ny', 1), ('usa', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cryptology', 1), ('network', 1), ('security', 1), ('can', 1), ('held', 1), ('milan', 1), ('italy', 1), ('november', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('poster', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('engineering', 1), ('method', 1), ('icfem', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('three', 1), ('invited', 1), ('talk', 1)]
[('lncs', 2), ('paper', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('digital', 1), ('heritage', 1), ('euromed', 1), ('held', 1), ('nicosia', 1), ('cyprus', 1), ('october', 1), ('november', 1), ('full', 1), ('project', 1)]
[('lncs', 2), ('paper', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('digital', 1), ('heritage', 1), ('euromed', 1), ('held', 1), ('nicosia', 1), ('cyprus', 1), ('october', 1), ('november', 1), ('full', 1), ('project', 1)]
[('book', 2), ('constitutes', 1), ('proceeding', 1), ('secondopenshmem', 1), ('workshop', 1), ('held', 1), ('annapolis', 1), ('md', 1), ('usa', 1), ('august', 1), ('technical', 1), ('paper', 1), ('short', 1), ('position', 1), ('paperspresented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('symposium', 1), ('programming', 1), ('language', 1), ('system', 1), ('aplas', 1), ('held', 1), ('pohang', 1), ('south', 1), ('korea', 1), ('november', 1), ('december', 1), ('regular', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('lncs', 3), ('four', 1), ('volume', 1), ('set', 1), ('andlncs', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('onneural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('istanbul', 1), ('turkey', 1), ('innovember', 1), ('full', 1), ('paper', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('combinatorial', 1), ('optimization', 1), ('application', 1), ('cocoa', 1), ('held', 1), ('houston', 1), ('tx', 1), ('usa', 1), ('december', 1), ('full', 1), ('paper', 1), ('included', 1), ('carefully', 1)]
[('book', 1), ('constitutesthe', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('algorithm', 1), ('model', 1), ('forthe', 1), ('web', 1), ('graph', 1), ('waw', 1), ('held', 1), ('eindhoven', 1), ('netherlands', 1), ('december', 1), ('fullpapers', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('asia', 1), ('pacific', 1), ('service', 1), ('computing', 1), ('conference', 1), ('apscc', 1), ('held', 1), ('bangkok', 1), ('thailand', 1), ('december', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('bookconstitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('onsecurity', 1), ('standardisation', 1), ('research', 1), ('ssr', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('december', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('asia', 1), ('pacific', 1), ('digital', 1), ('library', 1), ('icadl', 1), ('held', 1), ('seoul', 1), ('south', 1), ('korea', 1), ('december', 1), ('full', 1), ('short', 1), ('panel', 1), ('doctoralconsortiium', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('rdinternational', 1), ('symposium', 1), ('graph', 1), ('drawing', 1), ('network', 1), ('visualization', 1), ('gd', 1), ('held', 1), ('los', 1), ('angeles', 1), ('ca', 1), ('usa', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('short', 1), ('papersand', 1)]
[('paper', 2), ('bookconstitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('oninformation', 1), ('system', 1), ('security', 1), ('iciss', 1), ('held', 1), ('kolkata', 1), ('india', 1), ('december', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('paper', 2), ('presented', 2), ('volume', 1), ('constitutes', 1), ('thinternational', 1), ('conference', 1), ('computer', 1), ('aided', 1), ('system', 1), ('theory', 1), ('eurocast', 1), ('heldin', 1), ('february', 1), ('la', 1), ('palmas', 1), ('de', 1), ('gran', 1), ('canaria', 1), ('spain', 1), ('total', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('logic', 1), ('basedprogram', 1), ('synthesis', 1), ('transformation', 1), ('lopstr', 1), ('held', 1), ('siena', 1), ('italy', 1), ('injuly', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('conference', 1), ('proceeding', 1), ('workshop', 1), ('held', 1), ('st', 1), ('internationalconference', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('euro', 1), ('par', 1), ('vienna', 1), ('austria', 1), ('august', 1), ('revised', 1), ('full', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutesthe', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('visualcomputing', 1), ('isvc', 1), ('held', 1), ('la', 1), ('vega', 1), ('nv', 1), ('usa', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('poster', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutesthe', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('visualcomputing', 1), ('isvc', 1), ('held', 1), ('la', 1), ('vega', 1), ('nv', 1), ('usa', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('poster', 1)]
[('workshop', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('multimodal', 1), ('retrieval', 1), ('medical', 1), ('domain', 1), ('mrmd', 1), ('vienna', 1), ('austria', 1), ('march', 1), ('connection', 1), ('ecir', 1), ('full', 1)]
[('nbsp', 2), ('icc', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('cloud', 1), ('computing', 1), ('security', 1), ('held', 1), ('august', 1), ('nanjing', 1), ('china', 1), ('objective', 1), ('provide', 1), ('forum', 1), ('researcher', 1)]
[('bookconstitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('andschool', 1), ('network', 1), ('science', 1), ('netsci', 1), ('held', 1), ('wroclaw', 1), ('poland', 1), ('january', 1), ('fulland', 1), ('short', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('distributed', 1), ('computing', 1), ('internet', 1), ('technology', 1), ('icdcit', 1), ('held', 1), ('bhubaneswar', 1), ('india', 1), ('january', 1), ('full', 1), ('poster', 1), ('presented', 1), ('together', 1)]
[('proceeding', 3), ('volume', 1), ('lncs', 1), ('constitute', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('conference', 1), ('multimedia', 1), ('pcm', 1), ('held', 1), ('xi', 1), ('china', 1), ('september', 1), ('total', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('proceeding', 3), ('volume', 1), ('lncs', 1), ('constitute', 1), ('th', 1), ('nbsp', 1), ('pacific', 1), ('rim', 1), ('conference', 1), ('multimedia', 1), ('pcm', 1), ('held', 1), ('xi', 1), ('china', 1), ('september', 1), ('total', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('jist', 2), ('singapore', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('joint', 1), ('international', 1), ('semantic', 1), ('technology', 1), ('conference', 1), ('held', 1), ('november', 1), ('main', 1), ('topic', 1), ('include', 1), ('among', 1), ('others', 1), ('ontology', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('combinatorial', 1), ('optimization', 1), ('application', 1), ('cocoa', 1), ('held', 1), ('hong', 1), ('kong', 1), ('china', 1), ('december', 1), ('full', 1), ('paper', 1), ('included', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algorithm', 1), ('architecture', 1), ('parallel', 1), ('processing', 1), ('ica', 1), ('pp', 1), ('held', 1), ('granada', 1), ('spain', 1), ('december', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('workshop', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algorithm', 1), ('architecture', 1), ('parallel', 1), ('processing', 1), ('ica', 1), ('pp', 1), ('held', 1), ('granada', 1), ('spain', 1), ('december', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('nbsp', 3), ('conference', 2), ('volume', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('swarm', 1), ('evolutionary', 1), ('memetic', 1), ('computing', 1), ('semcco', 1), ('held', 1), ('hyderabad', 1), ('india', 1), ('december', 1), ('full', 1)]
[('workshop', 3), ('th', 2), ('international', 2), ('wbdb', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('big', 1), ('data', 1), ('benchmarking', 1), ('toronto', 1), ('canada', 1), ('june', 1), ('new', 1)]
[('book', 1), ('contains', 1), ('thoroughly', 1), ('refereed', 1), ('technical', 1), ('paper', 1), ('presented', 1), ('six', 1), ('workshop', 1), ('collocated', 1), ('international', 1), ('conference', 1), ('software', 1), ('technology', 1), ('application', 1), ('foundation', 1), ('staf', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('july', 1), ('nbsp', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('learning', 1), ('optimization', 1), ('lion', 1), ('held', 1), ('ischia', 1), ('italy', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('coordination', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('model', 1), ('language', 1), ('held', 1), ('part', 1), ('federated', 1), ('distributed', 1), ('computing', 1), ('technique', 1), ('discotec', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('distributed', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('ifip', 1), ('wg', 1), ('application', 1), ('interoperable', 1), ('system', 1), ('dais', 1), ('held', 1), ('part', 1), ('federated', 1), ('computing', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('symposium', 1), ('graph', 1), ('drawing', 1), ('network', 1), ('visualization', 1), ('gd', 1), ('held', 1), ('athens', 1), ('greece', 1), ('september', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('security', 1), ('privacy', 1), ('applied', 1), ('cryptography', 1), ('engineering', 1), ('space', 1), ('held', 1), ('hyderabad', 1), ('india', 1), ('december', 1), ('annual', 1), ('event', 1), ('devoted', 1), ('various', 1)]
[('lncs', 2), ('paper', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('visual', 1), ('computing', 1), ('isvc', 1), ('held', 1), ('la', 1), ('vega', 1), ('nv', 1), ('usa', 1), ('december', 1), ('revised', 1), ('full', 1), ('poster', 1)]
[('paper', 2), ('bookconstitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('distributedcomputing', 1), ('internet', 1), ('technology', 1), ('icdcit', 1), ('held', 1), ('bhubaneswar', 1), ('india', 1), ('injanuary', 1), ('fullpapers', 1), ('short', 1), ('poster', 1)]
[('volume', 2), ('seven', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('held', 1), ('zurich', 1), ('switzerland', 1), ('september', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('bookconstitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('symposium', 1), ('onalgorithms', 1), ('experiment', 1), ('wireless', 1), ('sensor', 1), ('network', 1), ('algosensors', 1), ('heldin', 1), ('patras', 1), ('greece', 1), ('september', 1), ('fullpapers', 1), ('presented', 1), ('volume', 1)]
[('volume', 2), ('nielson', 2), ('festschrift', 1), ('published', 1), ('honor', 1), ('hanne', 1), ('riis', 1), ('flemming', 1), ('occasion', 1), ('th', 1), ('birthday', 1), ('respectively', 1), ('paper', 1), ('included', 1), ('deal', 1), ('wide', 1), ('area', 1), ('calculus', 1), ('semantics', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('proceeding', 1), ('first', 1), ('cost', 1), ('action', 1), ('ic', 1), ('internationalkeystone', 1), ('semantic', 1), ('keyword', 1), ('based', 1), ('search', 1), ('structured', 1), ('data', 1), ('source', 1), ('ikc', 1), ('held', 1), ('coimbra', 1), ('portugal', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('conference', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('adaptiveresource', 1), ('management', 1), ('scheduling', 1), ('cloud', 1), ('computing', 1), ('arm', 1), ('cc', 1), ('held', 1), ('inconjunction', 1), ('acm', 1), ('symposium', 1), ('principle', 1)]
[('workshop', 2), ('patch', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('based', 1), ('techniquesin', 1), ('medical', 1), ('image', 1), ('mi', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('munich', 1), ('germany', 1), ('october', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('quantuminteraction', 1), ('qi', 1), ('held', 1), ('filzbach', 1), ('switzerland', 1), ('july', 1), ('paper', 1), ('together', 1), ('invited', 1), ('keynote', 1)]
[('nbsp', 3), ('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceedingsof', 1), ('th', 1), ('international', 1), ('pattern', 1), ('recognition', 1), ('icpram', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('january', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('data', 1), ('engineering', 1), ('automated', 1), ('learning', 1), ('ideal', 1), ('held', 1), ('salamanca', 1), ('spain', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('multiple', 1), ('classifier', 1), ('system', 1), ('mc', 1), ('held', 1), ('günzburg', 1), ('germany', 1), ('june', 1), ('july', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('mexico', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('mexican', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('mcpr', 1), ('held', 1), ('city', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('petri', 2), ('net', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('application', 1), ('theory', 1), ('concurrency', 1), ('held', 1), ('brussels', 1), ('belgium', 1), ('june', 1), ('regular', 1), ('tool', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('second', 1), ('international', 1), ('workshop', 1), ('machine', 1), ('learning', 1), ('optimization', 1), ('big', 1), ('data', 1), ('mod', 1), ('held', 1), ('volterra', 1), ('italy', 1), ('august', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('application', 1), ('natural', 1), ('language', 1), ('information', 1), ('system', 1), ('nldb', 1), ('held', 1), ('passau', 1), ('germany', 1), ('june', 1), ('full', 1), ('short', 1), ('poster', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('intelligent', 1), ('cloud', 1), ('computing', 1), ('held', 1), ('muscat', 1), ('oman', 1), ('february', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('work', 1), ('conference', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('iwann', 1), ('held', 1), ('palma', 1), ('de', 1), ('mallorca', 1), ('spain', 1), ('june', 1), ('revised', 1), ('full', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('work', 1), ('conference', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('iwann', 1), ('held', 1), ('palma', 1), ('de', 1), ('mallorca', 1), ('spain', 1), ('june', 1), ('revised', 1), ('full', 1)]
[('research', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('age', 1), ('information', 1), ('management', 1), ('waim', 1), ('held', 1), ('qingdao', 1), ('china', 1), ('june', 1), ('full', 1), ('short', 1), ('demonstration', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('foundation', 1), ('practice', 1), ('security', 1), ('fps', 1), ('held', 1), ('québec', 1), ('city', 1), ('qc', 1), ('canada', 1), ('october', 1), ('revised', 1), ('regular', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('symposium', 1), ('static', 1), ('analysis', 1), ('sa', 1), ('held', 1), ('munich', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('selected', 1), ('submission', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('thesecond', 1), ('international', 1), ('conference', 1), ('cloud', 1), ('computing', 1), ('big', 1), ('data', 1), ('cloudcom', 1), ('asia', 1), ('held', 1), ('huangshan', 1), ('china', 1), ('june', 1), ('full', 1), ('paper', 1), ('keynote', 1), ('speech', 1), ('werecarefully', 1), ('reviewed', 1)]
[('workshop', 3), ('international', 2), ('security', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('cross', 1), ('domain', 1), ('conference', 1), ('availability', 1), ('reliability', 1), ('cd', 1), ('are', 1), ('th', 1), ('cognitive', 1)]
[('thelaser', 1), ('summer', 1), ('school', 1), ('intended', 1), ('professional', 1), ('industry', 1), ('engineer', 1), ('andmanagers', 1), ('university', 1), ('researcher', 1), ('including', 1), ('phd', 1), ('student', 1), ('participant', 1), ('learn', 1), ('important', 1), ('software', 1), ('technology', 1), ('advance', 1), ('pioneersin', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('reasoning', 1), ('rule', 1), ('system', 1), ('rr', 1), ('held', 1), ('athens', 1), ('greece', 1), ('september', 1), ('full', 1), ('paper', 1), ('technical', 1), ('communication', 1), ('poster', 1), ('presentation', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('asia', 1), ('pacific', 1), ('conference', 1), ('apweb', 1), ('held', 1), ('changsha', 1), ('china', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('approximation', 1), ('online', 1), ('algorithm', 1), ('waoa', 1), ('held', 1), ('patras', 1), ('greece', 1), ('september', 1), ('part', 1), ('algo', 1), ('revised', 1), ('full', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('security', 1), ('forinformation', 1), ('technology', 1), ('communication', 1), ('secitc', 1), ('held', 1), ('bucharest', 1), ('romania', 1), ('june', 1), ('revised', 1), ('full', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('information', 1), ('retrieval', 1), ('society', 1), ('conference', 1), ('air', 1), ('held', 1), ('brisbane', 1), ('qld', 1), ('australia', 1), ('december', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('anddemonstration', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('proceeding', 1), ('international', 1), ('smart', 1), ('health', 1), ('icsh', 1), ('held', 1), ('phoenix', 1), ('az', 1), ('usa', 1), ('november', 1), ('paper', 1), ('presented', 1), ('together', 1), ('carefully', 1), ('reviewedand', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('digital', 1), ('human', 1), ('modeling', 1), ('application', 1), ('health', 1), ('safety', 1), ('ergonomics', 1), ('risk', 1), ('management', 1), ('held', 1), ('part', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('conceptual', 1), ('modeling', 1), ('er', 1), ('held', 1), ('stockholm', 1), ('sweden', 1), ('october', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('human', 2), ('held', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('interface', 1), ('management', 1), ('information', 1), ('thematic', 1), ('track', 1), ('part', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('interaction', 1), ('hcii', 1)]
[('conference', 2), ('thisbook', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('thesatellite', 1), ('event', 1), ('th', 1), ('european', 1), ('semantic', 1), ('web', 1), ('eswc', 1), ('held', 1), ('portorǒz', 1), ('slovenia', 1), ('june', 1), ('volume', 1), ('contains', 1), ('poster', 1)]
[('petri', 2), ('net', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('application', 1), ('theory', 1), ('concurrency', 1), ('held', 1), ('tunis', 1), ('tunisia', 1), ('june', 1), ('regular', 1), ('tool', 1), ('presented', 1)]
[('th', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('symposium', 1), ('unifying', 1), ('theory', 1), ('programming', 1), ('utp', 1), ('held', 1), ('reykjavik', 1), ('iceland', 1), ('june', 1), ('conjunction', 1), ('conference', 1), ('integrated', 1), ('formal', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('symposium', 1), ('combinatorial', 1), ('pattern', 1), ('matching', 1), ('cpm', 1), ('held', 1), ('ischia', 1), ('island', 1), ('italy', 1), ('june', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('finite', 1), ('difference', 1), ('method', 1), ('fdm', 1), ('held', 1), ('lozenetz', 1), ('bulgaria', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('verification', 1), ('model', 1), ('checking', 1), ('abstract', 1), ('interpretation', 1), ('vmcai', 1), ('held', 1), ('paris', 1), ('france', 1), ('january', 1), ('full', 1), ('paper', 1), ('together', 1), ('invited', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('learning', 1), ('optimization', 1), ('lion', 1), ('held', 1), ('lille', 1), ('france', 1), ('january', 1), ('contribution', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshopon', 1), ('design', 1), ('modeling', 1), ('evaluation', 1), ('cyber', 1), ('physical', 1), ('system', 1), ('cyphy', 1), ('held', 1), ('conjunction', 1), ('esweek', 1), ('pittsburgh', 1), ('pa', 1), ('usa', 1), ('inoctober', 1), ('paper', 1), ('presented', 1)]
[('revised', 2), ('selected', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('combined', 1), ('workshop', 1), ('web', 1), ('information', 1), ('system', 1), ('engineering', 1), ('wise', 1), ('held', 1), ('thessaloniki', 1), ('greece', 1), ('october', 1), ('presented', 1), ('carefully', 1), ('report', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('smart', 1), ('computing', 1), ('communication', 1), ('smartcom', 1), ('held', 1), ('shenzhen', 1), ('china', 1), ('december', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('ad', 1), ('hoc', 1), ('network', 1), ('wireless', 1), ('adhoc', 1), ('held', 1), ('athens', 1), ('greece', 1), ('june', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('system', 1), ('icvs', 1), ('held', 1), ('copenhagen', 1), ('denmark', 1), ('july', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('application', 1), ('natural', 1), ('language', 1), ('information', 1), ('system', 1), ('nldb', 1), ('held', 1), ('montpellier', 1), ('france', 1), ('june', 1), ('long', 1), ('short', 1), ('poster', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('symposium', 1), ('dependable', 1), ('software', 1), ('engineering', 1), ('theory', 1), ('tool', 1), ('application', 1), ('setta', 1), ('held', 1), ('nanjing', 1), ('china', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('icisp', 1), ('held', 1), ('june', 1), ('july', 1), ('cherbourg', 1), ('france', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1), ('contribution', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('conference', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('colloquium', 1), ('structuralinformation', 1), ('communication', 1), ('complexity', 1), ('sirocco', 1), ('held', 1), ('montserrat', 1), ('spain', 1), ('july', 1), ('full', 1), ('paper', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('approximation', 1), ('online', 1), ('algorithm', 1), ('waoa', 1), ('held', 1), ('sophia', 1), ('antipolis', 1), ('france', 1), ('september', 1), ('part', 1), ('algo', 1), ('conference', 1), ('event', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('age', 1), ('information', 1), ('management', 1), ('waim', 1), ('held', 1), ('qingdao', 1), ('china', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('organized', 1), ('topical', 1), ('section', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('age', 1), ('information', 1), ('management', 1), ('waim', 1), ('held', 1), ('macau', 1), ('china', 1), ('june', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('chinese', 1), ('conference', 1), ('biometric', 1), ('recognition', 1), ('ccbr', 1), ('held', 1), ('tianjin', 1), ('china', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('among', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('frontier', 1), ('algorithmics', 1), ('workshop', 1), ('faw', 1), ('held', 1), ('zhangjiajie', 1), ('china', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('geometric', 1), ('science', 1), ('information', 1), ('gsi', 1), ('held', 1), ('palaiseau', 1), ('france', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('computability', 1), ('europe', 1), ('cie', 1), ('held', 1), ('budapest', 1), ('hungary', 1), ('june', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('iberoamerican', 1), ('congress', 1), ('pattern', 1), ('recognition', 1), ('ciarp', 1), ('held', 1), ('montevideo', 1), ('uruguay', 1), ('november', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('computation', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('unconventional', 1), ('natural', 1), ('ucnc', 1), ('held', 1), ('london', 1), ('canada', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('fourth', 1), ('international', 1), ('conference', 1), ('advance', 1), ('visual', 1), ('informatics', 1), ('ivic', 1), ('held', 1), ('bangi', 1), ('malaysia', 1), ('november', 1), ('five', 1), ('keynote', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('analytical', 1), ('stochastic', 1), ('modelling', 1), ('technique', 1), ('application', 1), ('asmta', 1), ('held', 1), ('budapest', 1), ('hungary', 1), ('june', 1), ('july', 1), ('paper', 1), ('presented', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('information', 1), ('system', 1), ('engineering', 1), ('wise', 1), ('held', 1), ('miami', 1), ('fl', 1), ('usa', 1), ('november', 1), ('full', 1), ('paper', 1), ('short', 1), ('special', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('engineering', 1), ('icwe', 1), ('held', 1), ('toulouse', 1), ('france', 1), ('july', 1), ('full', 1), ('research', 1), ('late', 1), ('breaking', 1), ('result', 1), ('poster', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutesthe', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('information', 1), ('systemsengineering', 1), ('wise', 1), ('held', 1), ('miami', 1), ('fl', 1), ('usa', 1), ('november', 1), ('full', 1), ('paper', 1), ('short', 1), ('special', 1)]
[('haifa', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('verification', 1), ('conference', 1), ('hvc', 1), ('held', 1), ('israel', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('invited', 1), ('talk', 1), ('presentedwere', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('research', 1), ('attack', 1), ('intrusion', 1), ('defense', 1), ('raid', 1), ('held', 1), ('kyoto', 1), ('japan', 1), ('november', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('leveraging', 1), ('application', 1), ('formal', 1), ('method', 1), ('verification', 1), ('validation', 1), ('isola', 1), ('held', 1), ('imperial', 1), ('corfu', 1), ('greece', 1), ('october', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('security', 1), ('information', 1), ('technology', 1), ('communication', 1), ('secitc', 1), ('held', 1), ('bucharest', 1), ('romania', 1), ('june', 1), ('revised', 1), ('full', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('workshop', 1), ('held', 1), ('conjunction', 1), ('isc', 1), ('high', 1), ('performance', 1), ('conference', 1), ('frankfurt', 1), ('germany', 1), ('june', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('field', 2), ('aim', 1), ('book', 1), ('collect', 1), ('cluster', 1), ('research', 1), ('area', 1), ('serious', 1), ('game', 1), ('entertainment', 1), ('computing', 1), ('provides', 1), ('introduction', 1), ('give', 1), ('guidance', 1), ('next', 1), ('generation', 1), ('researcher', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('automated', 1), ('technology', 1), ('verification', 1), ('analysis', 1), ('atva', 1), ('held', 1), ('chiba', 1), ('japan', 1), ('october', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('chinese', 1), ('conference', 1), ('biometric', 1), ('recognition', 1), ('ccbr', 1), ('held', 1), ('chengdu', 1), ('china', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('human', 1), ('behavior', 1), ('understanding', 1), ('hbu', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('october', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('held', 1), ('th', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('athens', 1), ('greece', 1), ('october', 1), ('first', 1)]
[('patch', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('based', 1), ('technique', 1), ('medical', 1), ('image', 1), ('mi', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('athens', 1), ('greece', 1), ('october', 1), ('regular', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('machine', 1), ('learning', 1), ('medical', 1), ('imaging', 1), ('mlmi', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('athens', 1), ('greece', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('testing', 1), ('software', 1), ('system', 1), ('ictss', 1), ('held', 1), ('graz', 1), ('austria', 1), ('october', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('symposium', 1), ('programming', 1), ('language', 1), ('system', 1), ('aplas', 1), ('held', 1), ('hanoi', 1), ('vietnam', 1), ('november', 1), ('paper', 1), ('cover', 1), ('variety', 1), ('topic', 1), ('semantics', 1), ('logic', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('simulation', 1), ('synthesis', 1), ('medical', 1), ('imaging', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('athens', 1), ('greece', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('work', 1), ('conference', 1), ('ambient', 1), ('assisted', 1), ('living', 1), ('iwaal', 1), ('held', 1), ('puerto', 1), ('vara', 1), ('chile', 1), ('december', 1), ('full', 1), ('presented', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('guimarães', 1), ('portugal', 1), ('june', 1), ('july', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('lncs', 3), ('four', 1), ('volume', 1), ('set', 1), ('andlncs', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('onneural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('istanbul', 1), ('turkey', 1), ('innovember', 1), ('full', 1), ('paper', 1)]
[('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('guimarães', 1), ('portugal', 1), ('june', 1), ('july', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('lightweight', 1), ('cryptography', 1), ('security', 1), ('privacy', 1), ('lightsec', 1), ('held', 1), ('bochum', 1), ('germany', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('symposium', 1), ('research', 1), ('computer', 1), ('security', 1), ('esorics', 1), ('held', 1), ('wroclaw', 1), ('poland', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('brazilian', 1), ('symposium', 1), ('formal', 1), ('method', 1), ('sbmf', 1), ('took', 1), ('place', 1), ('belohorizonte', 1), ('brazil', 1), ('september', 1), ('presented', 1), ('volume', 1), ('carefullyreviewed', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('symposium', 1), ('research', 1), ('computer', 1), ('security', 1), ('esorics', 1), ('held', 1), ('wroclaw', 1), ('poland', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('language', 1), ('engineering', 1), ('sle', 1), ('held', 1), ('västerås', 1), ('sweden', 1), ('september', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('clef', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('initiative', 1), ('held', 1), ('sheffield', 1), ('uk', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('workshop', 1), ('big', 1), ('data', 1), ('benchmark', 1), ('performance', 1), ('optimization', 1), ('emerging', 1), ('hardware', 1), ('bpoe', 1), ('held', 1), ('kohala', 1), ('coast', 1), ('usa', 1), ('august', 1), ('september', 1), ('satellite', 1), ('event', 1), ('vldb', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('logistics', 1), ('iccl', 1), ('held', 1), ('valparaiso', 1), ('chile', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('fromthe', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('aspect', 1), ('component', 1), ('software', 1), ('facs', 1), ('held', 1), ('niterói', 1), ('brazil', 1), ('october', 1), ('full', 1), ('invited', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('reachability', 1), ('problem', 1), ('rp', 1), ('held', 1), ('oxford', 1), ('uk', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('false', 3), ('none', 2), ('normal', 1), ('en', 1), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('conference', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('voting', 1), ('identity', 1), ('voteid', 1), ('held', 1), ('bern', 1), ('switzerland', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('including', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('spatial', 1), ('temporal', 1), ('database', 1), ('sstd', 1), ('held', 1), ('hong', 1), ('kong', 1), ('china', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('together', 1), ('demo', 1), ('presented', 1), ('carefully', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('business', 1), ('process', 1), ('management', 1), ('bpm', 1), ('held', 1), ('innsbruck', 1), ('austria', 1), ('august', 1), ('september', 1), ('regular', 1), ('short', 1), ('inductrial', 1), ('included', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('german', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('gcpr', 1), ('held', 1), ('münster', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('volume', 1), ('lncs', 1), ('constitute', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('image', 1), ('analysis', 1), ('recognition', 1), ('iciar', 1), ('held', 1), ('vilamoura', 1), ('portugal', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('volume', 1), ('lncs', 1), ('constitute', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('image', 1), ('analysis', 1), ('recognition', 1), ('iciar', 1), ('held', 1), ('vilamoura', 1), ('portugal', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('symposium', 1), ('stabilization', 1), ('safety', 1), ('security', 1), ('distributed', 1), ('system', 1), ('s', 1), ('held', 1), ('osaka', 1), ('japan', 1), ('september', 1), ('october', 1), ('regular', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('human', 1), ('behavior', 1), ('understanding', 1), ('hbu', 1), ('held', 1), ('zurich', 1), ('switzerland', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('th', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('workshop', 1), ('security', 1), ('trust', 1), ('management', 1), ('stm', 1), ('held', 1), ('wroclaw', 1), ('poland', 1), ('september', 1), ('conjunction', 1), ('european', 1), ('symposium', 1), ('research', 1), ('computer', 1)]
[('volume', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('graphical', 1), ('model', 1), ('security', 1), ('gramsec', 1), ('held', 1), ('verona', 1), ('italy', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('companion', 1), ('volume', 1), ('lncs', 1), ('vol', 1), ('constitute', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('swarm', 1), ('intelligence', 1), ('icsi', 1), ('held', 1), ('hefei', 1), ('china', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('brazilian', 1), ('symposium', 1), ('programming', 1), ('language', 1), ('sblp', 1), ('held', 1), ('maceio', 1), ('brazil', 1), ('october', 1), ('full', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1), ('cover', 1)]
[('thisbook', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('onpost', 1), ('quantum', 1), ('cryptography', 1), ('pqcrypto', 1), ('held', 1), ('fukuoka', 1), ('japan', 1), ('february', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selectedfrom', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('security', 1), ('iwsec', 1), ('held', 1), ('nara', 1), ('japan', 1), ('august', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('workshop', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('seven', 1), ('held', 1), ('th', 1), ('conference', 1), ('image', 1), ('analysis', 1), ('processing', 1), ('iciap', 1), ('genoa', 1), ('italy', 1), ('september', 1), ('recent', 1), ('advance', 1), ('digital', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('image', 1), ('analysis', 1), ('processing', 1), ('iciap', 1), ('held', 1), ('genoa', 1), ('italy', 1), ('september', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('image', 1), ('analysis', 1), ('processing', 1), ('iciap', 1), ('held', 1), ('genoa', 1), ('italy', 1), ('september', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('quantitative', 1), ('evaluation', 1), ('system', 1), ('qest', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('september', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('formal', 1), ('modeling', 1), ('analysis', 1), ('timed', 1), ('system', 1), ('format', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('september', 1), ('organized', 1), ('umbrella', 1)]
[('revised', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('internet', 1), ('distributed', 1), ('computing', 1), ('system', 1), ('idcs', 1), ('held', 1), ('windsor', 1), ('uk', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1)]
[('word', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('combinatorics', 1), ('held', 1), ('kiel', 1), ('germany', 1), ('september', 1), ('auspex', 1), ('eatcs', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('software', 1), ('engineering', 1), ('resilient', 1), ('system', 1), ('serene', 1), ('held', 1), ('paris', 1), ('france', 1), ('september', 1), ('revised', 1), ('technical', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('machine', 1), ('computation', 1), ('universality', 1), ('mcu', 1), ('held', 1), ('famagusta', 1), ('north', 1), ('cyprus', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('model', 1), ('based', 1), ('safety', 1), ('assessment', 1), ('imbsa', 1), ('held', 1), ('munich', 1), ('germany', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('thisbook', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('thinternational', 1), ('workshop', 1), ('language', 1), ('compiler', 1), ('parallel', 1), ('computing', 1), ('lcpc', 1), ('held', 1), ('raleigh', 1), ('nc', 1), ('usa', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('software', 1), ('engineering', 1), ('resilient', 1), ('system', 1), ('serene', 1), ('held', 1), ('budapest', 1), ('hungary', 1), ('october', 1), ('revised', 1), ('technical', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('conference', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('computerassisted', 1), ('robotic', 1), ('endoscopy', 1), ('care', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('munich', 1), ('germany', 1), ('october', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('held', 1), ('rd', 1), ('international', 1), ('conference', 1), ('conceptual', 1), ('modeling', 1), ('er', 1), ('atlanta', 1), ('ga', 1), ('usa', 1), ('october', 1), ('revised', 1), ('full', 1), ('short', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cryptology', 1), ('network', 1), ('security', 1), ('can', 1), ('held', 1), ('heraklion', 1), ('creete', 1), ('greece', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('abstract', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('workshop', 1), ('bayesian', 1), ('graphical', 1), ('model', 1), ('biomedical', 1), ('imaging', 1), ('bambi', 1), ('held', 1), ('cambridge', 1), ('usa', 1), ('september', 1), ('satellite', 1), ('event', 1), ('th', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('sequence', 1), ('application', 1), ('seta', 1), ('held', 1), ('melbourne', 1), ('vic', 1), ('australia', 1), ('november', 1), ('full', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('singapore', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('interactive', 1), ('storytelling', 1), ('icids', 1), ('november', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('poster', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('graph', 1), ('theoretic', 1), ('concept', 1), ('computer', 1), ('science', 1), ('wg', 1), ('held', 1), ('nouan', 1), ('le', 1), ('fuzelier', 1), ('france', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('internet', 1), ('vehicle', 1), ('iov', 1), ('held', 1), ('nadi', 1), ('fiji', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('ihci', 1), ('held', 1), ('pilani', 1), ('india', 1), ('december', 1), ('regular', 1), ('paper', 1), ('abstract', 1), ('invited', 1), ('talk', 1), ('included', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('language', 1), ('compiler', 1), ('parallel', 1), ('computing', 1), ('lcpc', 1), ('held', 1), ('rochester', 1), ('ny', 1), ('usa', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('workshop', 3), ('th', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('statistical', 1), ('atlas', 1), ('computational', 1), ('model', 1), ('heart', 1), ('imaging', 1), ('modelling', 1), ('challenge', 1), ('stacom', 1), ('held', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('joint', 1), ('electronic', 1), ('voting', 1), ('vote', 1), ('id', 1), ('held', 1), ('bregenz', 1), ('austria', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 2), ('conference', 2), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('quantum', 1), ('interaction', 1), ('qi', 1), ('held', 1), ('san', 1), ('francisco', 1), ('ca', 1), ('usa', 1), ('july', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('symposium', 1), ('algorithm', 1), ('experiment', 1), ('wireless', 1), ('sensor', 1), ('network', 1), ('algosensors', 1), ('held', 1), ('aarhus', 1), ('denmark', 1), ('august', 1), ('full', 1), ('presented', 1), ('volume', 1)]
[('rsa', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('cryptographer', 1), ('track', 1), ('conference', 1), ('ct', 1), ('held', 1), ('san', 1), ('francisco', 1), ('ca', 1), ('usa', 1), ('february', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('algorithm', 1), ('discrete', 1), ('applied', 1), ('mathematics', 1), ('caldam', 1), ('held', 1), ('goa', 1), ('india', 1), ('february', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('thoroughlyrefereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('ontrustworthy', 1), ('global', 1), ('computing', 1), ('tgc', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('august', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presentedwere', 1)]
[('conference', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceedingsof', 1), ('first', 1), ('international', 1), ('ambient', 1), ('intelligence', 1), ('health', 1), ('amihealth', 1), ('held', 1), ('puerto', 1), ('vara', 1), ('chile', 1), ('december', 1), ('revised', 1), ('full', 1), ('short', 1)]
[('nbsp', 3), ('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('advance', 1), ('computer', 1), ('game', 1), ('acg', 1), ('held', 1), ('leiden', 1), ('netherlands', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('bookconstitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('passive', 1), ('andactive', 1), ('measurement', 1), ('pam', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1), ('march', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('werecarefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('ubiquitous', 1), ('computing', 1), ('ambient', 1), ('intelligence', 1), ('ucami', 1), ('held', 1), ('belfast', 1), ('uk', 1), ('december', 1), ('presented', 1), ('together', 1), ('workshop', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('genetic', 1), ('programming', 1), ('eurogp', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('march', 1), ('april', 1), ('co', 1), ('located', 1), ('evo', 1), ('event', 1), ('evocop', 1), ('evomusart', 1), ('evoapplications', 1)]
[('paper', 3), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('ambient', 1), ('assisted', 1), ('living', 1), ('iwaal', 1), ('held', 1), ('belfast', 1), ('uk', 1), ('december', 1), ('full', 1), ('presented', 1), ('wager', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('ir', 1), ('research', 1), ('ecir', 1), ('held', 1), ('padua', 1), ('italy', 1), ('march', 1), ('full', 1), ('poster', 1), ('presentedtogether', 1), ('keynote', 1), ('talk', 1), ('demonstration', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('algorithm', 1), ('model', 1), ('web', 1), ('graph', 1), ('waw', 1), ('held', 1), ('beijing', 1), ('china', 1), ('december', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('theproceedings', 1), ('th', 1), ('international', 1), ('conference', 1), ('architecture', 1), ('computingsystems', 1), ('arc', 1), ('held', 1), ('nuremberg', 1), ('germany', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('werecarefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('web', 1), ('internet', 1), ('economics', 1), ('wine', 1), ('held', 1), ('beijing', 1), ('china', 1), ('december', 1), ('regular', 1), ('short', 1), ('paper', 1), ('carefully', 1)]
[('thisbook', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('onevolutionary', 1), ('computation', 1), ('combinatorial', 1), ('optimization', 1), ('evocop', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('march', 1), ('april', 1), ('co', 1), ('located', 1), ('evo', 1), ('event', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('conference', 1), ('multimedia', 1), ('pcm', 1), ('held', 1), ('kuching', 1), ('malaysia', 1), ('december', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('cost', 1), ('action', 1), ('ic', 1), ('international', 1), ('keystone', 1), ('semantic', 1), ('keyword', 1), ('based', 1), ('search', 1), ('structured', 1), ('data', 1), ('source', 1), ('ikc', 1), ('held', 1), ('cluj', 1), ('napoca', 1), ('romania', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('st', 1), ('iberoamerican', 1), ('congress', 1), ('pattern', 1), ('recognition', 1), ('ciarp', 1), ('held', 1), ('lima', 1), ('peru', 1), ('november', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('revised', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('digital', 1), ('forensics', 1), ('watermarking', 1), ('iwdw', 1), ('held', 1), ('beijing', 1), ('china', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('language', 1), ('automaton', 1), ('theory', 1), ('application', 1), ('lata', 1), ('held', 1), ('umeå', 1), ('sweden', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('th', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('internationalworkshop', 1), ('numerical', 1), ('software', 1), ('verification', 1), ('nsv', 1), ('held', 1), ('toronto', 1), ('canada', 1), ('july', 1), ('colocated', 1), ('cav', 1), ('international', 1), ('conference', 1), ('computer', 1), ('aided', 1)]
[('conference', 3), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('tpc', 1), ('technology', 1), ('performance', 1), ('evaluation', 1), ('benchmarking', 1), ('tpctc', 1), ('held', 1), ('conjunction', 1), ('st', 1), ('international', 1), ('large', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('applied', 1), ('cryptography', 1), ('network', 1), ('security', 1), ('acns', 1), ('held', 1), ('new', 1), ('york', 1), ('ny', 1), ('usa', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('included', 1), ('volume', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('workshop', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('symposium', 1), ('sete', 1), ('held', 1), ('conjunction', 1), ('icwl', 1), ('rome', 1), ('italy', 1), ('october', 1), ('revised', 1), ('paper', 1), ('full', 1), ('short', 1), ('one', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('practical', 1), ('aspect', 1), ('declarative', 1), ('language', 1), ('padl', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('fl', 1), ('usa', 1), ('january', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('working', 1), ('conference', 1), ('requirement', 1), ('engineering', 1), ('foundation', 1), ('software', 1), ('quality', 1), ('refsq', 1), ('held', 1), ('essen', 1), ('germany', 1), ('february', 1), ('march', 1), ('full', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('conference', 1), ('proceeding', 1), ('first', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conferenceon', 1), ('topic', 1), ('theoretical', 1), ('computer', 1), ('science', 1), ('held', 1), ('tehran', 1), ('iran', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('nbsp', 3), ('selected', 2), ('paper', 2), ('book', 1), ('contains', 1), ('revised', 1), ('th', 1), ('international', 1), ('conference', 1), ('membrane', 1), ('computing', 1), ('cmc', 1), ('held', 1), ('milan', 1), ('italy', 1), ('july', 1), ('full', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('statistical', 1), ('atlas', 1), ('computational', 1), ('model', 1), ('heart', 1), ('imaging', 1), ('modelling', 1), ('challenge', 1), ('stacom', 1), ('held', 1), ('conjunction', 1), ('miccai', 1)]
[('luxembourg', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('conference', 1), ('proceeding', 1), ('third', 1), ('annual', 1), ('privacy', 1), ('forum', 1), ('apf', 1), ('heldin', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('werecarefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('artificialevolution', 1), ('ea', 1), ('held', 1), ('lyon', 1), ('france', 1), ('october', 1), ('revised', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('andselected', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('therefereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('persuasivetechnology', 1), ('persuasive', 1), ('held', 1), ('salzburg', 1), ('austria', 1), ('april', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('trustedsystems', 1), ('intrust', 1), ('held', 1), ('beijing', 1), ('china', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('beencarefully', 1)]
[('paper', 2), ('volume', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('simulated', 1), ('evolution', 1), ('learning', 1), ('seal', 1), ('held', 1), ('dunedin', 1), ('new', 1), ('zealand', 1), ('december', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('thisbook', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('gi', 1), ('itg', 1), ('conference', 1), ('onmeasurement', 1), ('modelling', 1), ('evaluation', 1), ('computing', 1), ('system', 1), ('dependabilityand', 1), ('fault', 1), ('tolerance', 1), ('mmb', 1), ('amp', 1), ('dft', 1), ('held', 1), ('münster', 1), ('germany', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('abdi', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('cambridge', 1), ('usa', 1), ('september', 1), ('includes', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('bookconstitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('oncritical', 1), ('information', 1), ('infrastructure', 1), ('security', 1), ('critis', 1), ('held', 1), ('limassol', 1), ('cyprus', 1), ('october', 1), ('fulland', 1), ('short', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('digital', 1), ('heritage', 1), ('euromed', 1), ('held', 1), ('limassol', 1), ('cyprus', 1), ('november', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('jist', 2), ('thisbook', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('jointinternational', 1), ('semantic', 1), ('technology', 1), ('held', 1), ('yichang', 1), ('china', 1), ('november', 1), ('theme', 1), ('big', 1), ('data', 1), ('andsocial', 1), ('medium', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('social', 1), ('informatics', 1), ('socinfo', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('november', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('bookconstitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('workshop', 1), ('onclinical', 1), ('image', 1), ('based', 1), ('procedure', 1), ('clip', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('munich', 1), ('germany', 1), ('october', 1), ('nbsp', 1), ('presented', 1), ('thisvolume', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('tpnc', 1), ('held', 1), ('granada', 1), ('spain', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('th', 2), ('pacific', 2), ('thisbook', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('asia', 1), ('workshop', 1), ('onintelligence', 1), ('security', 1), ('informatics', 1), ('paisi', 1), ('held', 1), ('auckland', 1), ('newzealand', 1), ('april', 1), ('conjunction', 1), ('pakdd', 1), ('asiaconference', 1)]
[('conference', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('big', 1), ('data', 1), ('analytics', 1), ('bda', 1), ('held', 1), ('new', 1), ('delhi', 1), ('india', 1), ('december', 1), ('revised', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('informationsecurity', 1), ('application', 1), ('wisa', 1), ('held', 1), ('jeju', 1), ('island', 1), ('korea', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('persuasive', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('technology', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('consisting', 1), ('lncs', 1), ('contains', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('workshop', 1), ('held', 1), ('conjunction', 1), ('th', 1), ('asian', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('taipei', 1), ('taiwan', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('passive', 1), ('active', 1), ('measurement', 1), ('pam', 1), ('held', 1), ('sydney', 1), ('australia', 1), ('march', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('consisting', 1), ('lncs', 1), ('contains', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('workshop', 1), ('held', 1), ('conjunction', 1), ('th', 1), ('asian', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('taipei', 1), ('taiwan', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('consisting', 1), ('lncs', 1), ('contains', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('workshop', 1), ('held', 1), ('conjunction', 1), ('th', 1), ('asian', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('taipei', 1), ('taiwan', 1)]
[('conference', 2), ('five', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('held', 1), ('taipei', 1), ('taiwan', 1), ('november', 1), ('total', 1), ('contribution', 1), ('presented', 1)]
[('conference', 2), ('five', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('held', 1), ('taipei', 1), ('taiwan', 1), ('november', 1), ('total', 1), ('contribution', 1), ('presented', 1)]
[('enterprise', 1), ('security', 1), ('important', 1), ('area', 1), ('type', 1), ('organization', 1), ('require', 1), ('secure', 1), ('robust', 1), ('environment', 1), ('platform', 1), ('service', 1), ('work', 1), ('data', 1), ('computing', 1), ('application', 1), ('book', 1), ('provides', 1), ('selected', 1), ('paper', 1), ('second', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('database', 1), ('system', 1), ('advanced', 1), ('application', 1), ('dasfaa', 1), ('held', 1), ('suzhou', 1), ('china', 1), ('march', 1), ('full', 1), ('paper', 1), ('industry', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('workshop', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('database', 1), ('system', 1), ('advanced', 1), ('application', 1), ('dasfaa', 1), ('held', 1), ('suzhou', 1), ('china', 1), ('march', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('paper', 3), ('bookconstitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('symposium', 1), ('modelchecking', 1), ('software', 1), ('spin', 1), ('held', 1), ('eindhoven', 1), ('netherlands', 1), ('april', 1), ('presented', 1), ('consisting', 1), ('regular', 1), ('idea', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('scan', 1), ('held', 1), ('würzburg', 1), ('germany', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefullyreviewed', 1), ('selected', 1), ('submission', 1), ('nbsp', 1), ('main', 1)]
[('thisbook', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('iapr', 1), ('internationalconference', 1), ('discrete', 1), ('geometry', 1), ('computer', 1), ('imagery', 1), ('dgci', 1), ('held', 1), ('nantes', 1), ('france', 1), ('april', 1), ('nbsp', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('book', 1), ('constitutes', 1), ('workshop', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('database', 1), ('system', 1), ('advanced', 1), ('application', 1), ('dasfaa', 1), ('held', 1), ('dallas', 1), ('tx', 1), ('usa', 1), ('april', 1), ('volume', 1), ('contains', 1), ('full', 1), ('paper', 1), ('selected', 1)]
[('workshop', 3), ('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('proceeding', 1), ('second', 1), ('semantic', 1), ('webcollaborative', 1), ('space', 1), ('swcs', 1), ('held', 1), ('montpellier', 1), ('france', 1), ('andthe', 1), ('third', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('mathematicalaspects', 1), ('computer', 1), ('information', 1), ('science', 1), ('macis', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('november', 1), ('revised', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('owl', 1), ('experience', 1), ('direction', 1), ('owled', 1), ('held', 1), ('bethlehem', 1), ('pa', 1), ('usa', 1), ('october', 1), ('co', 1), ('located', 1), ('iswc', 1), ('international', 1), ('semantic', 1), ('web', 1)]
[('workshop', 2), ('w', 2), ('fm', 2), ('volume', 1), ('contains', 1), ('refereed', 1), ('joint', 1), ('proceeding', 1), ('initiative', 1), ('devoted', 1), ('formal', 1), ('foundation', 1), ('complex', 1), ('system', 1), ('fasocc', 1), ('beat', 1), ('th', 1), ('international', 1), ('web', 1), ('service', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('high', 1), ('performance', 1), ('computing', 1), ('science', 1), ('engineering', 1), ('hpcse', 1), ('held', 1), ('soláň', 1), ('czech', 1), ('republic', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('learning', 1), ('game', 1), ('edutainment', 1), ('held', 1), ('hangzhou', 1), ('china', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('yuri', 2), ('gurevich', 2), ('festschrift', 1), ('published', 1), ('honor', 1), ('th', 1), ('birthday', 1), ('made', 1), ('fundamental', 1), ('contribution', 1), ('broad', 1), ('spectrum', 1), ('logic', 1), ('computer', 1), ('science', 1), ('including', 1), ('decision', 1), ('procedure', 1), ('monadic', 1), ('theory', 1), ('order', 1), ('abstract', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('symposium', 1), ('string', 1), ('processing', 1), ('information', 1), ('retrieval', 1), ('spire', 1), ('held', 1), ('london', 1), ('uk', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('included', 1), ('volume', 1)]
[('paper', 2), ('infotext', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('service', 1), ('oriented', 1), ('cloud', 1), ('computing', 1), ('esocc', 1), ('held', 1), ('taormina', 1), ('sicily', 1), ('italy', 1), ('september', 1), ('research', 1), ('three', 1), ('industry', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('human', 1), ('behavior', 1), ('understanding', 1), ('hbu', 1), ('held', 1), ('osaka', 1), ('japan', 1), ('september', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('initial', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('collaboration', 1), ('technology', 1), ('criwg', 1), ('held', 1), ('yerevan', 1), ('armenia', 1), ('september', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algebraic', 1), ('informatics', 1), ('cai', 1), ('held', 1), ('stuttgart', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('co', 1), ('located', 1), ('safecomp', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('safety', 1), ('reliability', 1), ('security', 1), ('held', 1), ('delft', 1), ('netherlands', 1), ('september', 1), ('revised', 1), ('full', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('computing', 1), ('technology', 1), ('pact', 1), ('held', 1), ('petrozavodsk', 1), ('russia', 1), ('august', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('big', 1), ('data', 1), ('computing', 1), ('communication', 1), ('bigcom', 1), ('held', 1), ('taiyuan', 1), ('china', 1), ('august', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('proceeding', 2), ('volume', 1), ('lncs', 1), ('constitute', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('conference', 1), ('multimedia', 1), ('pcm', 1), ('held', 1), ('gwangju', 1), ('south', 1), ('korea', 1), ('september', 1), ('total', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1)]
[('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('learning', 1), ('collaboration', 1), ('technology', 1), ('lct', 1), ('held', 1), ('part', 1), ('th', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('toronto', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('toronto', 1), ('canada', 1), ('july', 1), ('total', 1), ('paper', 1), ('poster', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('toronto', 1), ('canada', 1), ('july', 1), ('total', 1), ('paper', 1), ('poster', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('toronto', 1), ('canada', 1), ('july', 1), ('total', 1), ('paper', 1), ('poster', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('interaction', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('distributed', 1), ('ambient', 1), ('pervasive', 1), ('dapi', 1), ('part', 1), ('human', 1), ('computer', 1), ('hcii', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('hci', 1), ('virtual', 1), ('augmented', 1), ('mixed', 1), ('reality', 1), ('vamr', 1), ('held', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('took', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('social', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('computing', 1), ('medium', 1), ('scsm', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('toronto', 1)]
[('international', 2), ('conference', 2), ('human', 2), ('lncs', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('aspect', 1), ('aged', 1), ('population', 1), ('itap', 1), ('held', 1), ('part', 1), ('th', 1), ('computer', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('cross', 1), ('cultural', 1), ('design', 1), ('ccd', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('toronto', 1), ('canada', 1), ('july', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('human', 2), ('computer', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('universal', 1), ('access', 1), ('interaction', 1), ('uahci', 1), ('nbsp', 1), ('held', 1), ('part', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('ipm', 1), ('international', 1), ('fundamental', 1), ('software', 1), ('engineering', 1), ('fsen', 1), ('held', 1), ('tehran', 1), ('iran', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('relational', 1), ('algebraic', 1), ('method', 1), ('computer', 1), ('science', 1), ('ramics', 1), ('held', 1), ('braga', 1), ('portugal', 1), ('september', 1), ('october', 1), ('revised', 1), ('full', 1), ('invited', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('radiofrequency', 1), ('identification', 1), ('held', 1), ('new', 1), ('york', 1), ('usa', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('andselected', 1)]
[('paper', 3), ('track', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('asia', 1), ('pacific', 1), ('conference', 1), ('apweb', 1), ('held', 1), ('guangzhou', 1), ('china', 1), ('september', 1), ('full', 1), ('presented', 1), ('together', 1), ('industrial', 1), ('demonstration', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('internationalworkshop', 1), ('reachability', 1), ('problem', 1), ('rp', 1), ('held', 1), ('warsaw', 1), ('poland', 1), ('september', 1), ('paper', 1), ('presented', 1), ('together', 1), ('extended', 1), ('abstract', 1), ('volume', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('openmp', 1), ('held', 1), ('aachen', 1), ('germany', 1), ('october', 1), ('technical', 1), ('full', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('spatial', 1), ('information', 1), ('theory', 1), ('cosit', 1), ('held', 1), ('santa', 1), ('fee', 1), ('nm', 1), ('usa', 1), ('october', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('machine', 1), ('learning', 1), ('medical', 1), ('imaging', 1), ('mlmi', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('munich', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('model', 1), ('data', 1), ('engineering', 1), ('medi', 1), ('held', 1), ('rhodes', 1), ('greece', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('augmented', 1), ('environment', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('munich', 1), ('germany', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('system', 1), ('design', 1), ('language', 1), ('forum', 1), ('sdl', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('german', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('gcpr', 1), ('held', 1), ('aachen', 1), ('germany', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('young', 1), ('researcher', 1), ('forum', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('sevenworkshops', 1), ('symposium', 1), ('held', 1), ('th', 1), ('international', 1), ('conference', 1), ('onconceptual', 1), ('modeling', 1), ('er', 1), ('stockholm', 1), ('sweden', 1), ('revised', 1), ('full', 1), ('invited', 1), ('paper', 1), ('werecarefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('intelligent', 1), ('data', 1), ('analysis', 1), ('held', 1), ('october', 1), ('saint', 1), ('étienne', 1), ('france', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('international', 2), ('semantic', 2), ('web', 2), ('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('iswc', 1), ('held', 1), ('bethlehem', 1), ('pa', 1), ('usa', 1), ('october', 1), ('premier', 1), ('forum', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligence', 1), ('science', 1), ('big', 1), ('data', 1), ('engineering', 1), ('iscide', 1), ('held', 1), ('suzhou', 1), ('china', 1), ('june', 1), ('nbsp', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligence', 1), ('science', 1), ('big', 1), ('data', 1), ('engineering', 1), ('iscide', 1), ('held', 1), ('suzhou', 1), ('china', 1), ('june', 1), ('nbsp', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('data', 1), ('engineering', 1), ('automatedlearning', 1), ('ideal', 1), ('held', 1), ('wroclaw', 1), ('poland', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('international', 2), ('semantic', 2), ('web', 2), ('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('iswc', 1), ('held', 1), ('bethlehem', 1), ('pa', 1), ('usa', 1), ('october', 1), ('premier', 1), ('forum', 1)]
[('volume', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('neural', 1), ('network', 1), ('isnn', 1), ('held', 1), ('jeju', 1), ('south', 1), ('korea', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('international', 2), ('workshop', 2), ('otm', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('following', 1), ('academy', 1), ('industry', 1), ('case', 1), ('study', 1), ('program', 1), ('enterprise', 1), ('integration', 1), ('interoperability', 1), ('networking', 1), ('ei', 1), ('fact', 1), ('based', 1)]
[('th', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('formal', 1), ('technique', 1), ('distributed', 1), ('object', 1), ('component', 1), ('system', 1), ('forte', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1), ('june', 1), ('part', 1)]
[('bookconstitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('integratedformal', 1), ('method', 1), ('ifm', 1), ('held', 1), ('reykjavik', 1), ('iceland', 1), ('june', 1), ('paperspresented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('th', 2), ('coordination', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('internationalconference', 1), ('model', 1), ('language', 1), ('heldin', 1), ('heraklion', 1), ('crete', 1), ('greece', 1), ('june', 1), ('part', 1), ('international', 1), ('federated', 1), ('conference', 1), ('distributed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('international', 1), ('conference', 1), ('distributed', 1), ('application', 1), ('interoperable', 1), ('system', 1), ('dais', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1), ('june', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('therefereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('integerprogramming', 1), ('combinatorial', 1), ('optimization', 1), ('ipco', 1), ('held', 1), ('liège', 1), ('belgium', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('engineering', 1), ('icwe', 1), ('held', 1), ('lugano', 1), ('switzerland', 1), ('june', 1), ('full', 1), ('research', 1), ('short', 1), ('vision', 1), ('demonstration', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('ubiquitous', 1), ('computing', 1), ('ambient', 1), ('intelligence', 1), ('ucami', 1), ('held', 1), ('puerto', 1), ('vara', 1), ('chile', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('risk', 1), ('andsecurity', 1), ('internet', 1), ('system', 1), ('crisis', 1), ('held', 1), ('mytilene', 1), ('lesbos', 1), ('island', 1), ('greece', 1), ('july', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('information', 1), ('system', 1), ('engineering', 1), ('caise', 1), ('held', 1), ('ljubljana', 1), ('slovenia', 1), ('june', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('age', 1), ('information', 1), ('management', 1), ('waim', 1), ('held', 1), ('nanchang', 1), ('china', 1), ('june', 1), ('full', 1), ('research', 1), ('paper', 1)]
[('conference', 2), ('password', 2), ('revised', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('held', 1), ('trondheim', 1), ('norway', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('selected', 2), ('bookconstitutes', 1), ('revised', 1), ('paper', 1), ('international', 1), ('conference', 1), ('onmembrane', 1), ('computing', 1), ('cmc', 1), ('held', 1), ('valencia', 1), ('spain', 1), ('august', 1), ('fullpapers', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('processing', 1), ('applied', 1), ('mathematics', 1), ('ppam', 1), ('held', 1), ('krakow', 1), ('poland', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('processing', 1), ('applied', 1), ('mathematics', 1), ('ppam', 1), ('held', 1), ('krakow', 1), ('poland', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('paper', 3), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('provenance', 1), ('annotation', 1), ('workshop', 1), ('ipaw', 1), ('held', 1), ('mclean', 1), ('va', 1), ('usa', 1), ('june', 1), ('revised', 1), ('full', 1), ('poster', 1), ('demonstration', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('nasa', 1), ('formal', 1), ('method', 1), ('nfm', 1), ('held', 1), ('minneapolis', 1), ('mn', 1), ('usa', 1), ('june', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('autonomous', 1), ('infrastructure', 1), ('management', 1), ('security', 1), ('aim', 1), ('held', 1), ('munich', 1), ('germany', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('reversible', 1), ('computation', 1), ('rc', 1), ('held', 1), ('bologna', 1), ('italy', 1), ('july', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('neural', 1), ('network', 1), ('isnn', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('australasian', 1), ('conference', 1), ('information', 1), ('security', 1), ('privacy', 1), ('acisp', 1), ('held', 1), ('melbourne', 1), ('vic', 1), ('australia', 1), ('july', 1), ('revised', 1), ('full', 1), ('short', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('human', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('aspect', 1), ('information', 1), ('security', 1), ('privacy', 1), ('trust', 1), ('part', 1), ('computer', 1), ('interaction', 1), ('hcii', 1)]
[('international', 2), ('conference', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('hci', 1), ('business', 1), ('government', 1), ('organization', 1), ('hcibgo', 1), ('held', 1), ('part', 1), ('th', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('design', 1), ('user', 1), ('experience', 1), ('usability', 1), ('duxu', 1), ('held', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('internationalconference', 1), ('implementation', 1), ('application', 1), ('automaton', 1), ('ciaa', 1), ('held', 1), ('seoul', 1), ('south', 1), ('korea', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('nbsp', 1), ('carefully', 1), ('reviewed', 1)]
[('lncs', 2), ('volume', 2), ('data', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('nbsp', 1), ('mining', 1), ('big', 1), ('dmbd', 1), ('held', 1), ('bali', 1), ('indonesia', 1), ('june', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('high', 1), ('performance', 1), ('computing', 1), ('application', 1), ('hpca', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('rsa', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('cryptographer', 1), ('track', 1), ('conference', 1), ('ct', 1), ('held', 1), ('san', 1), ('francisco', 1), ('ca', 1), ('usa', 1), ('april', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('modeling', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('social', 1), ('cultural', 1), ('behavioral', 1), ('amp', 1), ('prediction', 1), ('behavior', 1), ('representation', 1), ('simulation', 1), ('sbp', 1), ('brim', 1), ('held', 1), ('washington', 1), ('dc', 1), ('usa', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('computer', 1), ('assisted', 1), ('robotic', 1), ('endoscopy', 1), ('care', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('athens', 1), ('greece', 1), ('october', 1)]
[('volume', 1), ('lncs', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('semantic', 1), ('web', 1), ('conference', 1), ('eswc', 1), ('held', 1), ('portorož', 1), ('slovenia', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('conference', 1), ('theory', 1), ('application', 1), ('model', 1), ('computation', 1), ('tamc', 1), ('held', 1), ('bern', 1), ('switzerland', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('school', 2), ('volume', 1), ('contains', 1), ('lecture', 1), ('note', 1), ('th', 1), ('reasoning', 1), ('web', 1), ('summer', 1), ('rw', 1), ('held', 1), ('aberdeen', 1), ('uk', 1), ('september', 1), ('theme', 1), ('logical', 1), ('foundation', 1), ('knowledge', 1), ('graph', 1), ('construction', 1), ('query', 1), ('answering', 1)]
[('nbsp', 2), ('jara', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('first', 1), ('high', 1), ('performance', 1), ('computing', 1), ('symposium', 1), ('hpc', 1), ('held', 1), ('aachen', 1), ('germany', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('challenge', 1), ('computational', 1), ('method', 1), ('clinical', 1), ('application', 1), ('spine', 1), ('imaging', 1), ('csi', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('athens', 1), ('greece', 1), ('october', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('theinternational', 1), ('smart', 1), ('health', 1), ('icsh', 1), ('held', 1), ('haikou', 1), ('hainan', 1), ('china', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('workshop', 1), ('rd', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('euro', 1), ('par', 1), ('held', 1), ('grenoble', 1), ('france', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('combinatorial', 1), ('image', 1), ('analysis', 1), ('iwcia', 1), ('held', 1), ('plovdiv', 1), ('bulgaria', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('mexican', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('mcpr', 1), ('held', 1), ('huatulco', 1), ('mexico', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('integration', 1), ('artificial', 1), ('intelligence', 1), ('operation', 1), ('research', 1), ('technique', 1), ('constraint', 1), ('programming', 1), ('combinatorial', 1), ('optimization', 1), ('problem', 1), ('cpaior', 1), ('held', 1), ('padua', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('australasian', 1), ('conference', 1), ('information', 1), ('security', 1), ('privacy', 1), ('acisp', 1), ('held', 1), ('auckland', 1), ('new', 1), ('zealand', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('nbsp', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('australasian', 1), ('conference', 1), ('information', 1), ('security', 1), ('privacy', 1), ('acisp', 1), ('held', 1), ('auckland', 1), ('new', 1), ('zealand', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('nbsp', 1)]
[('ada', 2), ('europe', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('reliable', 1), ('software', 1), ('technology', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('nbsp', 1), ('symposium', 1), ('end', 1), ('user', 1), ('development', 1), ('eud', 1), ('held', 1), ('eindhoven', 1), ('netherlands', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('information', 1), ('system', 1), ('engineering', 1), ('caise', 1), ('held', 1), ('essen', 1), ('germany', 1), ('june', 1), ('presented', 1), ('together', 1), ('keynote', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('scale', 1), ('space', 1), ('variational', 1), ('method', 1), ('computer', 1), ('vision', 1), ('ssvm', 1), ('held', 1), ('kolding', 1), ('denmark', 1), ('june', 1), ('nbsp', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('russia', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('computer', 1), ('science', 1), ('symposium', 1), ('csr', 1), ('held', 1), ('kazan', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('proceeding', 1), ('international', 1), ('combinatorialalgorithms', 1), ('iwoca', 1), ('held', 1), ('verona', 1), ('italy', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefullyreviewed', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('scandinavian', 1), ('conference', 1), ('image', 1), ('analysis', 1), ('scia', 1), ('held', 1), ('tromsø', 1), ('norway', 1), ('june', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 1), ('contains', 1), ('lecture', 1), ('note', 1), ('five', 1), ('coursesand', 1), ('seminar', 1), ('given', 1), ('school', 1), ('engineering', 1), ('trustworthy', 1), ('software', 1), ('system', 1), ('set', 1), ('held', 1), ('september', 1), ('southwest', 1), ('university', 1), ('chongqing', 1), ('china', 1), ('material', 1), ('useful', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('scandinavian', 1), ('conference', 1), ('image', 1), ('analysis', 1), ('scia', 1), ('held', 1), ('tromsø', 1), ('norway', 1), ('june', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('nbsp', 3), ('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('communication', 1), ('security', 1), ('icisc', 1), ('held', 1), ('beijing', 1), ('china', 1), ('december', 1), ('revised', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('design', 1), ('science', 1), ('research', 1), ('information', 1), ('system', 1), ('technology', 1), ('desrist', 1), ('held', 1), ('june', 1), ('karlsruhe', 1), ('germany', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1)]
[('password', 2), ('revised', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conferenceproceedings', 1), ('th', 1), ('international', 1), ('conference', 1), ('held', 1), ('cambridge', 1), ('uk', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('functional', 1), ('imaging', 1), ('modeling', 1), ('heart', 1), ('held', 1), ('toronto', 1), ('canada', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposiumon', 1), ('foundation', 1), ('information', 1), ('knowledge', 1), ('system', 1), ('foiks', 1), ('held', 1), ('linz', 1), ('austria', 1), ('march', 1), ('revised', 1), ('full', 1), ('presented', 1), ('werecarefully', 1), ('reviewed', 1)]
[('automaton', 2), ('volume', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('workshop', 1), ('cellular', 1), ('discrete', 1), ('complex', 1), ('system', 1), ('held', 1), ('milan', 1), ('italy', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('algorithm', 1), ('computation', 1), ('walcom', 1), ('held', 1), ('kathmandu', 1), ('nepal', 1), ('march', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('data', 1), ('management', 1), ('analytics', 1), ('medicine', 1), ('healthcare', 1), ('dmah', 1), ('new', 1), ('delhi', 1), ('india', 1), ('september', 1), ('held', 1), ('conjunction', 1)]
[('paper', 2), ('bookconstitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('working', 1), ('conference', 1), ('onrequirements', 1), ('engineering', 1), ('foundation', 1), ('software', 1), ('quality', 1), ('refsq', 1), ('held', 1), ('ingothenburg', 1), ('sweden', 1), ('march', 1), ('full', 1), ('short', 1)]
[('computation', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('unconventional', 1), ('natural', 1), ('ucnc', 1), ('held', 1), ('fayetteville', 1), ('ar', 1), ('usa', 1), ('june', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('conference', 1), ('proceeding', 1), ('six', 1), ('international', 1), ('workshop', 1), ('held', 1), ('theframework', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('symposium', 1), ('image', 1), ('video', 1), ('technology', 1), ('psivt', 1), ('november', 1), ('auckland', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('computer', 1), ('information', 1), ('system', 1), ('industrial', 1), ('management', 1), ('cisim', 1), ('held', 1), ('bialystok', 1), ('poland', 1), ('nbsp', 1), ('june', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('foundationsand', 1), ('practice', 1), ('security', 1), ('fps', 1), ('held', 1), ('clermont', 1), ('ferrand', 1), ('france', 1), ('inoctober', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('reuse', 1), ('icsr', 1), ('held', 1), ('salvador', 1), ('brazil', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('keynote', 1), ('presentation', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('image', 1), ('analysis', 1), ('recognition', 1), ('iciar', 1), ('held', 1), ('montreal', 1), ('qc', 1), ('canada', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('implementation', 1), ('application', 1), ('automaton', 1), ('ciaa', 1), ('held', 1), ('marne', 1), ('la', 1), ('vallée', 1), ('france', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('descriptional', 1), ('complexity', 1), ('formal', 1), ('system', 1), ('dcfs', 1), ('held', 1), ('milano', 1), ('italy', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('engineering', 1), ('secure', 1), ('software', 1), ('system', 1), ('essos', 1), ('held', 1), ('bonn', 1), ('nbsp', 1), ('germany', 1), ('july', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('reversible', 1), ('computation', 1), ('rc', 1), ('held', 1), ('kolkata', 1), ('india', 1), ('july', 1), ('full', 1), ('short', 1), ('paper', 1), ('included', 1), ('volume', 1), ('together', 1), ('invited', 1)]
[('modeling', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('social', 1), ('cultural', 1), ('behavioral', 1), ('prediction', 1), ('behavior', 1), ('representation', 1), ('simulation', 1), ('sbp', 1), ('brim', 1), ('held', 1), ('washington', 1), ('dc', 1), ('usa', 1)]
[('nbsp', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('detection', 1), ('intrusion', 1), ('malware', 1), ('vulnerability', 1), ('assessment', 1), ('dimva', 1), ('held', 1), ('bonn', 1), ('germany', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('included', 1)]
[('web', 2), ('school', 2), ('volume', 1), ('contains', 1), ('lecture', 1), ('note', 1), ('th', 1), ('reasoning', 1), ('summer', 1), ('rw', 1), ('held', 1), ('london', 1), ('uk', 1), ('july', 1), ('theme', 1), ('semantic', 1), ('interoperability', 1), ('encompasses', 1), ('subject', 1), ('data', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('held', 2), ('hcii', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('cross', 1), ('cultural', 1), ('design', 1), ('ccd', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('vancouver', 1), ('canada', 1), ('july', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('virtual', 1), ('augmented', 1), ('mixed', 1), ('reality', 1), ('vamr', 1), ('held', 1), ('part', 1), ('hci', 1), ('vancouver', 1), ('bc', 1), ('canada', 1), ('hcii', 1), ('received', 1), ('total', 1), ('submission', 1)]
[('nbsp', 5), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('vancouver', 1), ('bc', 1), ('canada', 1), ('july', 1), ('total', 1)]
[('nbsp', 5), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('vancouver', 1), ('bc', 1), ('canada', 1), ('july', 1), ('total', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('digital', 1), ('human', 1), ('modeling', 1), ('application', 1), ('health', 1), ('safety', 1), ('ergonomics', 1), ('risk', 1), ('management', 1), ('dhm', 1), ('held', 1), ('part', 1), ('hci', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('digital', 1), ('human', 1), ('modeling', 1), ('application', 1), ('health', 1), ('safety', 1), ('ergonomics', 1), ('risk', 1), ('management', 1), ('dhm', 1), ('held', 1), ('part', 1), ('hci', 1)]
[('international', 2), ('conference', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('hci', 1), ('business', 1), ('government', 1), ('organization', 1), ('hcibgo', 1), ('held', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1)]
[('international', 2), ('conference', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('hci', 1), ('business', 1), ('government', 1), ('organization', 1), ('hcibgo', 1), ('held', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1)]
[('th', 2), ('nbsp', 2), ('international', 2), ('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('learning', 1), ('collaboration', 1), ('technology', 1), ('lct', 1), ('held', 1), ('part', 1)]
[('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('isc', 1), ('high', 1), ('performance', 1), ('formerly', 1), ('known', 1), ('supercomputing', 1), ('held', 1), ('frankfurt', 1), ('germany', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('th', 2), ('nbsp', 2), ('international', 2), ('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('learning', 1), ('collaboration', 1), ('technology', 1), ('lct', 1), ('held', 1), ('part', 1)]
[('computation', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('unconventional', 1), ('natural', 1), ('ucnc', 1), ('held', 1), ('manchester', 1), ('uk', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('international', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('conference', 1), ('human', 1), ('aspect', 1), ('aged', 1), ('population', 1), ('itap', 1), ('held', 1), ('part', 1), ('hci', 1), ('vancouver', 1), ('bc', 1), ('canada', 1), ('hcii', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('breast', 1), ('imaging', 1), ('iwdm', 1), ('held', 1), ('malmö', 1), ('sweden', 1), ('june', 1), ('full', 1), ('poster', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('international', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('conference', 1), ('human', 1), ('aspect', 1), ('aged', 1), ('population', 1), ('itap', 1), ('held', 1), ('part', 1), ('hci', 1), ('vancouver', 1), ('bc', 1), ('canada', 1), ('hcii', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('application', 1), ('natural', 1), ('language', 1), ('information', 1), ('system', 1), ('nldb', 1), ('held', 1), ('salford', 1), ('uk', 1), ('june', 1), ('full', 1), ('short', 1), ('poster', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('social', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('computing', 1), ('medium', 1), ('scsm', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('vancouver', 1), ('canada', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('social', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('computing', 1), ('medium', 1), ('scsm', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('vancouver', 1), ('canada', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('design', 1), ('user', 1), ('experience', 1), ('usability', 1), ('duxu', 1), ('held', 1), ('part', 1), ('human', 1), ('computer', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('design', 1), ('user', 1), ('experience', 1), ('usability', 1), ('duxu', 1), ('held', 1), ('part', 1), ('human', 1), ('computer', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('design', 1), ('user', 1), ('experience', 1), ('usability', 1), ('duxu', 1), ('held', 1), ('part', 1), ('human', 1), ('computer', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('human', 2), ('computer', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('universal', 1), ('access', 1), ('interaction', 1), ('uahci', 1), ('held', 1), ('part', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('test', 1), ('proof', 1), ('tap', 1), ('held', 1), ('part', 1), ('staf', 1), ('vienna', 1), ('austria', 1), ('july', 1), ('full', 1), ('short', 1), ('tool', 1), ('demonstration', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('human', 2), ('computer', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('universal', 1), ('access', 1), ('interaction', 1), ('uahci', 1), ('held', 1), ('part', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('human', 2), ('computer', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('universal', 1), ('access', 1), ('interaction', 1), ('uahci', 1), ('held', 1), ('part', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('model', 1), ('transformation', 1), ('icmt', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('july', 1), ('part', 1), ('staf', 1), ('federation', 1), ('number', 1), ('leading', 1), ('software', 1)]
[('conference', 3), ('nbsp', 3), ('british', 2), ('database', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('bicod', 1), ('formerly', 1), ('known', 1), ('bncod', 1), ('national', 1), ('held', 1), ('london', 1), ('uk', 1), ('july', 1)]
[('tutorial', 2), ('gttse', 2), ('volume', 1), ('includes', 1), ('revised', 1), ('extended', 1), ('briefing', 1), ('held', 1), ('th', 1), ('international', 1), ('summer', 1), ('school', 1), ('grand', 1), ('timely', 1), ('topic', 1), ('software', 1), ('engineering', 1), ('braga', 1), ('portugal', 1), ('august', 1), ('applied', 1), ('broader', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('formal', 1), ('method', 1), ('sefm', 1), ('held', 1), ('part', 1), ('staf', 1), ('vienna', 1), ('austria', 1), ('july', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('modelling', 1), ('foundation', 1), ('application', 1), ('ecmfa', 1), ('held', 1), ('part', 1), ('staf', 1), ('vienna', 1), ('austria', 1), ('july', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('big', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('workshop', 1), ('graph', 1), ('online', 1), ('querying', 1), ('data', 1), ('management', 1), ('analytics', 1), ('medicine', 1), ('healthcare', 1), ('dmah', 1), ('held', 1), ('waikoloa', 1), ('hawaii', 1), ('usa', 1), ('august', 1)]
[('workshop', 3), ('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('medical', 1), ('computer', 1), ('vision', 1), ('mcv', 1), ('bayesian', 1), ('graphical', 1), ('model', 1), ('biomedical', 1), ('imaging', 1), ('bambi', 1), ('held', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('serviceology', 1), ('service', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('july', 1), ('full', 1), ('tutorial', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('andrei', 1), ('ershov', 1), ('informatics', 1), ('conference', 1), ('psi', 1), ('held', 1), ('kazan', 1), ('innopolis', 1), ('russia', 1), ('august', 1), ('invited', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('economics', 1), ('grid', 1), ('cloud', 1), ('system', 1), ('service', 1), ('gecon', 1), ('held', 1), ('athens', 1), ('greece', 1), ('september', 1), ('revised', 1), ('full', 1), ('short', 1)]
[('paper', 3), ('ruleml', 2), ('invited', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('held', 1), ('new', 1), ('york', 1), ('ny', 1), ('usa', 1), ('july', 1), ('full', 1), ('short', 1), ('keynote', 1), ('abstract', 1), ('tutorial', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('digital', 1), ('human', 1), ('modeling', 1), ('application', 1), ('health', 1), ('safety', 1), ('ergonomics', 1), ('risk', 1), ('management', 1), ('dhm', 1), ('held', 1), ('part', 1), ('hci', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('thematic', 1), ('track', 1), ('human', 1), ('interface', 1), ('management', 1), ('information', 1), ('held', 1), ('part', 1), ('th', 1), ('hci', 1), ('international', 1), ('vancouver', 1), ('bc', 1), ('canada', 1), ('july', 1), ('hcii', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('thematic', 1), ('track', 1), ('human', 1), ('interface', 1), ('management', 1), ('information', 1), ('held', 1), ('part', 1), ('th', 1), ('hci', 1), ('international', 1), ('vancouver', 1), ('bc', 1), ('canada', 1), ('july', 1), ('hcii', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('interaction', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('distributed', 1), ('ambient', 1), ('pervasive', 1), ('dapi', 1), ('part', 1), ('human', 1), ('computer', 1), ('hcii', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('applied', 1), ('cryptology', 1), ('network', 1), ('security', 1), ('acns', 1), ('held', 1), ('kanazawa', 1), ('japan', 1), ('july', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('joint', 1), ('rule', 1), ('reasoning', 1), ('ruleml', 1), ('rr', 1), ('held', 1), ('london', 1), ('uk', 1), ('july', 1), ('first', 1), ('new', 1), ('series', 1), ('joining', 1), ('effort', 1), ('existing', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('test', 1), ('proof', 1), ('tap', 1), ('held', 1), ('part', 1), ('staf', 1), ('marburg', 1), ('germany', 1), ('july', 1), ('full', 1), ('invited', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('nbsp', 1), ('conference', 1), ('graph', 1), ('transformation', 1), ('icgt', 1), ('held', 1), ('part', 1), ('staf', 1), ('marburg', 1), ('germany', 1), ('july', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('image', 1), ('analysis', 1), ('recognition', 1), ('iciar', 1), ('held', 1), ('póvoa', 1), ('de', 1), ('varzim', 1), ('portugal', 1), ('july', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('nbsp', 4), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('model', 1), ('transformation', 1), ('icmt', 1), ('held', 1), ('part', 1), ('staf', 1), ('marburg', 1), ('germany', 1), ('july', 1), ('full', 1), ('short', 1)]
[('nbsp', 2), ('five', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('beijing', 1), ('china', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('modelling', 1), ('foundation', 1), ('application', 1), ('ecmfa', 1), ('held', 1), ('part', 1), ('staf', 1), ('marburg', 1), ('germany', 1), ('july', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('nbsp', 2), ('five', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('beijing', 1), ('china', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('green', 1), ('pervasive', 1), ('cloud', 1), ('computing', 1), ('gpc', 1), ('held', 1), ('cetara', 1), ('italy', 1), ('following', 1), ('colocated', 1), ('first', 1), ('digital', 1)]
[('five', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceedingsof', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('itsapplications', 1), ('iccsa', 1), ('held', 1), ('beijing', 1), ('china', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('paper', 2), ('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('trieste', 1), ('italy', 1), ('july', 1), ('full', 1), ('short', 1)]
[('five', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceedingsof', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('itsapplications', 1), ('iccsa', 1), ('held', 1), ('beijing', 1), ('china', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('net', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('communication', 1), ('technology', 1), ('vehicle', 1), ('car', 1), ('train', 1), ('aircraft', 1), ('held', 1), ('san', 1), ('sebastián', 1), ('spain', 1), ('june', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('paper', 2), ('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('trieste', 1), ('italy', 1), ('july', 1), ('full', 1), ('short', 1)]
[('question', 2), ('cyber', 2), ('today', 1), ('security', 1), ('incident', 1), ('happens', 1), ('top', 1), ('three', 1), ('operation', 1), ('center', 1), ('ask', 1), ('happened', 1), ('happen', 1), ('answer', 1), ('first', 1), ('form', 1), ('core', 1), ('situation', 1), ('awareness', 1), ('sa', 1)]
[('net', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('communication', 1), ('technology', 1), ('vehicle', 1), ('car', 1), ('train', 1), ('aircraft', 1), ('held', 1), ('toulouse', 1), ('france', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('annual', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('working', 1), ('conference', 1), ('data', 1), ('application', 1), ('security', 1), ('privacy', 1), ('dbsec', 1), ('held', 1), ('philadelphia', 1), ('pa', 1), ('usa', 1), ('july', 1), ('full', 1), ('paper', 1)]
[('ada', 2), ('europe', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('reliable', 1), ('software', 1), ('technology', 1), ('held', 1), ('pisa', 1), ('italy', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('experimental', 1), ('algorithm', 1), ('sea', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('th', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('international', 1), ('workshop', 1), ('job', 1), ('scheduling', 1), ('strategy', 1), ('parallel', 1), ('processing', 1), ('jsspp', 1), ('held', 1), ('respectively', 1), ('hyderabad', 1), ('india', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('hybrid', 1), ('metaheuristics', 1), ('hm', 1), ('held', 1), ('plymouth', 1), ('uk', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('numerical', 1), ('software', 1), ('verification', 1), ('nsv', 1), ('held', 1), ('heidelberg', 1), ('germany', 1), ('july', 1), ('colocated', 1), ('nbsp', 1), ('formal', 1), ('method', 1), ('rigorous', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('age', 1), ('information', 1), ('management', 1), ('waim', 1), ('held', 1), ('nanchang', 1), ('china', 1), ('june', 1), ('nbsp', 1), ('full', 1), ('research', 1), ('paper', 1)]
[('conference', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('cryptology', 1), ('malicious', 1), ('security', 1), ('held', 1), ('kuala', 1), ('lumpur', 1), ('malaysia', 1), ('december', 1), ('revised', 1), ('full', 1), ('short', 1)]
[('russia', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('computer', 1), ('science', 1), ('symposium', 1), ('csr', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('fth', 1), ('international', 1), ('high', 1), ('performance', 1), ('computing', 1), ('computational', 1), ('science', 1), ('vecpar', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('june', 1), ('full', 1), ('paper', 1)]
[('volume', 2), ('automaton', 2), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('workshop', 1), ('cellular', 1), ('discrete', 1), ('complexsystems', 1), ('held', 1), ('zurich', 1), ('switzerland', 1), ('june', 1), ('contains', 1), ('invited', 1)]
[('paper', 2), ('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('trieste', 1), ('italy', 1), ('july', 1), ('full', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('computational', 1), ('topology', 1), ('image', 1), ('context', 1), ('ctic', 1), ('held', 1), ('marseille', 1), ('france', 1), ('june', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('aided', 1), ('verification', 1), ('cav', 1), ('held', 1), ('heidelberg', 1), ('germany', 1), ('july', 1), ('total', 1), ('full', 1), ('short', 1), ('paper', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('aided', 1), ('verification', 1), ('cav', 1), ('held', 1), ('heidelberg', 1), ('germany', 1), ('july', 1), ('total', 1), ('full', 1), ('short', 1), ('paper', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('informationsecurity', 1), ('isc', 1), ('held', 1), ('dallas', 1), ('texas', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('paper', 2), ('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('trieste', 1), ('italy', 1), ('july', 1), ('full', 1), ('short', 1)]
[('paper', 2), ('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('trieste', 1), ('italy', 1), ('july', 1), ('full', 1), ('short', 1)]
[('false', 3), ('none', 2), ('normal', 1), ('en', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('confrence', 1), ('advance', 1), ('swarm', 1), ('intelligence', 1), ('icsi', 1), ('held', 1), ('fukuoka', 1), ('japan', 1), ('july', 1), ('august', 1), ('nbsp', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('conference', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('workshop', 1), ('onalgebraic', 1), ('development', 1), ('technique', 1), ('wadt', 1), ('held', 1), ('september', 1), ('sinaia', 1), ('romania', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advance', 1), ('swarm', 1), ('intelligence', 1), ('icsi', 1), ('held', 1), ('fukuoka', 1), ('japan', 1), ('july', 1), ('august', 1), ('nbsp', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('data', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('mining', 1), ('big', 1), ('dmbd', 1), ('held', 1), ('fukuoka', 1), ('japan', 1), ('july', 1), ('august', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('collaboration', 1), ('technology', 1), ('criwg', 1), ('held', 1), ('saskatoon', 1), ('canada', 1), ('august', 1), ('full', 1), ('presented', 1), ('together', 1), ('work', 1), ('progress', 1)]
[('thoroughly', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('securit', 1), ('protocol', 1), ('held', 1), ('brno', 1), ('czech', 1), ('republic', 1), ('april', 1), ('nbsp', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('paper', 2), ('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('trieste', 1), ('italy', 1), ('july', 1), ('full', 1), ('short', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('genetic', 1), ('programming', 1), ('eurogp', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('april', 1), ('co', 1), ('located', 1), ('evo', 1), ('event', 1), ('evocop', 1), ('evomusart', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptographic', 1), ('technique', 1), ('africa', 1), ('africacrypt', 1), ('held', 1), ('dakar', 1), ('senegal', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('relational', 1), ('algebraic', 1), ('method', 1), ('computer', 1), ('science', 1), ('ramics', 1), ('held', 1), ('lyon', 1), ('france', 1), ('revised', 1), ('full', 1), ('invited', 1), ('presented', 1), ('together', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('coalgebraic', 1), ('method', 1), ('computer', 1), ('science', 1), ('cmcs', 1), ('colocated', 1), ('etaps', 1), ('held', 1), ('eindhoven', 1)]
[('pacific', 2), ('asia', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('workshop', 1), ('intelligence', 1), ('security', 1), ('informatics', 1), ('paisi', 1), ('held', 1), ('jeju', 1), ('island', 1), ('south', 1), ('korea', 1), ('conjunction', 1), ('pakdd', 1), ('st', 1), ('conference', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('radio', 1), ('frequency', 1), ('identification', 1), ('iot', 1), ('security', 1), ('rfidsec', 1), ('held', 1), ('hong', 1), ('kong', 1), ('china', 1), ('november', 1), ('december', 1), ('revised', 1)]
[('lncs', 2), ('nbsp', 2), ('three', 1), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('held', 1), ('liverpool', 1), ('uk', 1), ('august', 1), ('full', 1), ('paper', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('technology', 1), ('bio', 1), ('medical', 1), ('informatics', 1), ('itbam', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('september', 1), ('conjunction', 1), ('dexa', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('electronic', 1), ('government', 1), ('information', 1), ('system', 1), ('perspective', 1), ('egovis', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('september', 1), ('conjunction', 1), ('dexa', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('workshop', 1), ('constructive', 1), ('side', 1), ('channel', 1), ('analysis', 1), ('secure', 1), ('design', 1), ('cosade', 1), ('held', 1), ('paris', 1), ('france', 1), ('april', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('trust', 1), ('privacy', 1), ('security', 1), ('digital', 1), ('business', 1), ('trustbus', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('september', 1), ('conjunction', 1), ('dexa', 1), ('revised', 1), ('full', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('nbsp', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('joint', 1), ('conference', 1), ('apweb', 1), ('waim', 1), ('held', 1), ('beijing', 1), ('china', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('expert', 1), ('system', 1), ('application', 1), ('dexa', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('nbsp', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('joint', 1), ('conference', 1), ('apweb', 1), ('waim', 1), ('held', 1), ('beijing', 1), ('china', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('expert', 1), ('system', 1), ('application', 1), ('dexa', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('workshop', 3), ('book', 1), ('present', 1), ('thoroughly', 1), ('refereed', 1), ('revised', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('monterey', 1), ('held', 1), ('beijing', 1), ('china', 1), ('ocotber', 1), ('explored', 1), ('challenge', 1), ('associated', 1), ('development', 1), ('operation', 1)]
[('nbsp', 5), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('mobile', 1), ('web', 1), ('intelligent', 1), ('information', 1), ('system', 1), ('mobiwis', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('august', 1), ('full', 1), ('paper', 1)]
[('lncs', 3), ('nbsp', 2), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('international', 1), ('cryptology', 1), ('conference', 1), ('crypto', 1), ('held', 1), ('santa', 1), ('barbara', 1), ('ca', 1), ('usa', 1), ('august', 1), ('revised', 1), ('full', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('mobile', 1), ('web', 1), ('intelligent', 1), ('information', 1), ('system', 1), ('mobiwis', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('august', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('analysis', 1), ('image', 1), ('pattern', 1), ('caip', 1), ('held', 1), ('ystad', 1), ('sweden', 1), ('august', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('electronic', 1), ('participation', 1), ('epart', 1), ('held', 1), ('guimarães', 1), ('portugal', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('analysis', 1), ('image', 1), ('pattern', 1), ('caip', 1), ('held', 1), ('ystad', 1), ('sweden', 1), ('august', 1), ('nbsp', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('practice', 1), ('digital', 1), ('library', 1), ('tpdl', 1), ('held', 1), ('hannover', 1), ('germany', 1), ('september', 1), ('full', 1), ('poster', 1), ('short', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('digital', 1), ('forensics', 1), ('watermarking', 1), ('iwdw', 1), ('held', 1), ('magdeburg', 1), ('germany', 1), ('august', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('medical', 2), ('imaging', 2), ('miar', 2), ('th', 1), ('international', 1), ('conference', 1), ('augmented', 1), ('reality', 1), ('held', 1), ('bern', 1), ('switzerland', 1), ('august', 1), ('aim', 1), ('bring', 1), ('together', 1), ('researcher', 1), ('computer', 1), ('vision', 1), ('graphic', 1), ('robotics', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('security', 1), ('iwsec', 1), ('held', 1), ('hiroshima', 1), ('japan', 1), ('august', 1), ('september', 1), ('nbsp', 1), ('regular', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('east', 1), ('european', 1), ('conference', 1), ('advance', 1), ('database', 1), ('information', 1), ('system', 1), ('adbis', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('nbsp', 3), ('reality', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('augmented', 1), ('virtual', 1), ('computer', 1), ('graphic', 1), ('avr', 1), ('held', 1), ('ugento', 1), ('italy', 1), ('june', 1), ('full', 1)]
[('nbsp', 3), ('reality', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('augmented', 1), ('virtual', 1), ('computer', 1), ('graphic', 1), ('avr', 1), ('held', 1), ('ugento', 1), ('italy', 1), ('june', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('analytical', 1), ('stochastic', 1), ('modelling', 1), ('technique', 1), ('application', 1), ('asmta', 1), ('held', 1), ('newcastle', 1), ('upon', 1), ('tyne', 1), ('uk', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('isc', 1), ('high', 1), ('performance', 1), ('held', 1), ('frankfurt', 1), ('germany', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('wireless', 1), ('algorithm', 1), ('system', 1), ('application', 1), ('wasa', 1), ('held', 1), ('guilin', 1), ('china', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1), ('werde', 1)]
[('volume', 1), ('lncs', 1), ('constitute', 1), ('proceeding', 1), ('international', 1), ('work', 1), ('conference', 1), ('interplay', 1), ('natural', 1), ('artificial', 1), ('computation', 1), ('iwinac', 1), ('held', 1), ('corunna', 1), ('spain', 1), ('june', 1), ('total', 1), ('full', 1), ('paper', 1)]
[('volume', 1), ('lncs', 1), ('constitute', 1), ('proceeding', 1), ('international', 1), ('work', 1), ('conference', 1), ('interplay', 1), ('natural', 1), ('artificial', 1), ('computation', 1), ('iwinac', 1), ('held', 1), ('corunna', 1), ('spain', 1), ('june', 1), ('total', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('workshop', 1), ('digital', 1), ('forensics', 1), ('watermarking', 1), ('iwdw', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('october', 1), ('presented', 1), ('volume', 1), ('carefullyreviewed', 1)]
[('system', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('conference', 1), ('security', 1), ('industrial', 1), ('control', 1), ('cyber', 1), ('physical', 1), ('cybericps', 1), ('held', 1), ('crete', 1), ('greece', 1), ('september', 1), ('conjunction', 1), ('esorics', 1), ('st', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutesthe', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('databasesystems', 1), ('advanced', 1), ('application', 1), ('dasfaa', 1), ('held', 1), ('dallas', 1), ('tx', 1), ('usa', 1), ('inapril', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('petri', 3), ('net', 3), ('application', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('concurrency', 1), ('held', 1), ('zaragoza', 1), ('spain', 1), ('june', 1), ('nbsp', 1), ('co', 1), ('located', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('database', 1), ('system', 1), ('advanced', 1), ('application', 1), ('dasfaa', 1), ('held', 1), ('dallas', 1), ('tx', 1), ('usa', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('neural', 1), ('network', 1), ('isnn', 1), ('held', 1), ('sapporo', 1), ('hakodate', 1), ('muroran', 1), ('hokkaido', 1), ('japan', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('set', 1)]
[('nbsp', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('application', 1), ('natural', 1), ('language', 1), ('information', 1), ('system', 1), ('nldb', 1), ('held', 1), ('liège', 1), ('belgium', 1), ('june', 1), ('full', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('modeling', 1), ('analysis', 1), ('timed', 1), ('system', 1), ('format', 1), ('held', 1), ('quebec', 1), ('qc', 1), ('canada', 1), ('august', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algorithm', 1), ('architecture', 1), ('parallel', 1), ('processing', 1), ('ica', 1), ('pp', 1), ('held', 1), ('helsinki', 1), ('finland', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('rewriting', 1), ('logic', 1), ('application', 1), ('wrla', 1), ('held', 1), ('satellite', 1), ('event', 1), ('etaps', 1), ('eindhoven', 1), ('netherlands', 1), ('april', 1)]
[('nbsp', 3), ('clef', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('initiative', 1), ('held', 1), ('toulouse', 1), ('france', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1), ('best', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('satisfiability', 1), ('testing', 1), ('sat', 1), ('held', 1), ('melbourne', 1), ('australia', 1), ('august', 1), ('september', 1), ('revised', 1), ('full', 1), ('short', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('principle', 1), ('practice', 1), ('constraint', 1), ('programming', 1), ('cp', 1), ('held', 1), ('toulouse', 1), ('france', 1), ('september', 1), ('revised', 1), ('regular', 1), ('paper', 1), ('presented', 1)]
[('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('verification', 1), ('evaluation', 1), ('computer', 1), ('communication', 1), ('system', 1), ('vecos', 1), ('held', 1), ('concordia', 1), ('university', 1), ('montreal', 1), ('canada', 1), ('august', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('business', 1), ('service', 1), ('society', 1), ('held', 1), ('swansea', 1), ('uk', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('nbsp', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('ifip', 1), ('wg', 1), ('tc', 1), ('international', 1), ('cross', 1), ('domain', 1), ('conference', 1), ('availability', 1), ('reliability', 1), ('security', 1), ('information', 1), ('system', 1), ('cd', 1), ('are', 1), ('workshop', 1), ('privacy', 1), ('aware', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('computing', 1), ('technology', 1), ('pact', 1), ('held', 1), ('nizhny', 1), ('novgorod', 1), ('russia', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereedpost', 1), ('conference', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('algorithmicaspects', 1), ('cloud', 1), ('computing', 1), ('algocloud', 1), ('held', 1), ('patras', 1), ('greece', 1), ('inseptember', 1), ('conjunction', 1), ('algo', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('internationalconference', 1), ('language', 1), ('automaton', 1), ('theory', 1), ('application', 1), ('lata', 1), ('held', 1), ('inprague', 1), ('czech', 1), ('republic', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('bookconstitutes', 1), ('thoroughly', 1), ('nbsp', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('thetheory', 1), ('application', 1), ('cryptographic', 1), ('technique', 1), ('africa', 1), ('africacrypt', 1), ('held', 1), ('fe', 1), ('morooco', 1), ('april', 1), ('paper', 1), ('presented', 1)]
[('lncs', 2), ('nbsp', 2), ('three', 1), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('held', 1), ('liverpool', 1), ('uk', 1), ('august', 1), ('full', 1), ('paper', 1)]
[('smart', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('city', 1), ('ct', 1), ('held', 1), ('malaga', 1), ('spain', 1), ('june', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('algorithm', 1), ('data', 1), ('structure', 1), ('symposium', 1), ('wad', 1), ('held', 1), ('st', 1), ('john', 1), ('nl', 1), ('canada', 1), ('july', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('abstract', 1), ('invited', 1), ('talk', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('development', 1), ('language', 1), ('theory', 1), ('dlt', 1), ('held', 1), ('liège', 1), ('belgium', 1), ('august', 1), ('full', 1), ('abstract', 1), ('nbsp', 1), ('invited', 1)]
[('petri', 3), ('net', 3), ('application', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('concurrency', 1), ('held', 1), ('toruń', 1), ('poland', 1), ('june', 1), ('nbsp', 1), ('co', 1), ('located', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('applied', 1), ('cryptography', 1), ('network', 1), ('security', 1), ('acns', 1), ('held', 1), ('guildford', 1), ('uk', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('included', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('safety', 1), ('reliability', 1), ('security', 1), ('safecomp', 1), ('held', 1), ('trondheim', 1), ('norway', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('software', 1), ('architecture', 1), ('ecsa', 1), ('held', 1), ('canterbury', 1), ('uk', 1), ('september', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('keynote', 1), ('talk', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('model', 1), ('data', 1), ('engineering', 1), ('medi', 1), ('held', 1), ('almería', 1), ('spain', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('formal', 1), ('method', 1), ('sefm', 1), ('held', 1), ('trento', 1), ('italy', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('oft', 1), ('th', 1), ('international', 1), ('symposium', 1), ('research', 1), ('attack', 1), ('intrusion', 1), ('defense', 1), ('raid', 1), ('held', 1), ('evry', 1), ('france', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('dna', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computing', 1), ('molecular', 1), ('programming', 1), ('held', 1), ('austin', 1), ('tx', 1), ('usa', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('ifip', 1), ('tc', 1), ('wg', 1), ('international', 1), ('cross', 1), ('domain', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('extraction', 1), ('cd', 1), ('make', 1), ('held', 1), ('reggio', 1), ('italy', 1), ('august', 1), ('september', 1), ('revised', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('graphical', 1), ('model', 1), ('security', 1), ('gramsec', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('june', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('security', 1), ('iwsec', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('september', 1), ('regular', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('conference', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('data', 1), ('management', 1), ('analytics', 1), ('medicine', 1), ('healthcare', 1), ('dmah', 1), ('munich', 1), ('germany', 1), ('september', 1), ('held', 1), ('conjunction', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('computer', 1), ('information', 1), ('system', 1), ('industrial', 1), ('management', 1), ('cisim', 1), ('held', 1), ('vilnius', 1), ('lithuania', 1), ('september', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('computer', 1), ('algebra', 1), ('scientific', 1), ('computing', 1), ('casc', 1), ('held', 1), ('bucharest', 1), ('romania', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('ifip', 1), ('wg', 1), ('electronic', 1), ('government', 1), ('egov', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('september', 1), ('conjunction', 1), ('eparticipation', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('thefirst', 1), ('international', 1), ('workshop', 1), ('usability', 1), ('accessibility', 1), ('focused', 1), ('requirementsengineering', 1), ('usare', 1), ('held', 1), ('zurich', 1), ('switzerland', 1), ('june', 1), ('conjunctionwith', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computersafety', 1), ('reliability', 1), ('security', 1), ('safecomp', 1), ('held', 1), ('trento', 1), ('italy', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('abstract', 1), ('keynote', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('discrete', 1), ('optimization', 1), ('operation', 1), ('research', 1), ('door', 1), ('held', 1), ('vladivostok', 1), ('russia', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('search', 1), ('based', 1), ('software', 1), ('engineering', 1), ('ssbse', 1), ('held', 1), ('paderborn', 1), ('germany', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('book', 2), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('combinatorial', 1), ('optimization', 1), ('isco', 1), ('held', 1), ('vietri', 1), ('sul', 1), ('mare', 1), ('italy', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('reachability', 1), ('problem', 1), ('rp', 1), ('held', 1), ('london', 1), ('uk', 1), ('september', 1), ('full', 1), ('presented', 1), ('together', 1), ('invited', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('graphic', 1), ('iccvg', 1), ('held', 1), ('warsaw', 1), ('poland', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('various', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('openmp', 1), ('iwomp', 1), ('held', 1), ('stony', 1), ('brook', 1), ('ny', 1), ('usa', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('international', 2), ('workshop', 2), ('critical', 2), ('system', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('joint', 1), ('st', 1), ('nbsp', 1), ('formal', 1), ('method', 1), ('industrial', 1), ('th', 1), ('automated', 1), ('verification', 1), ('fmics', 1), ('avocs', 1)]
[('paper', 3), ('clef', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('initiative', 1), ('held', 1), ('dublin', 1), ('ireland', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1), ('best', 1), ('lab', 1)]
[('paper', 2), ('invited', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('reachability', 1), ('problem', 1), ('rp', 1), ('held', 1), ('aalborg', 1), ('denmark', 1), ('september', 1), ('full', 1), ('presented', 1), ('together', 1), ('abstract', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('europeanworkshop', 1), ('computer', 1), ('performance', 1), ('engineering', 1), ('epew', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('september', 1), ('paper', 1), ('presented', 1), ('together', 1), ('abstract', 1), ('invited', 1), ('talk', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('data', 1), ('engineering', 1), ('automated', 1), ('learning', 1), ('ideal', 1), ('held', 1), ('yangzhou', 1), ('china', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('algorithmic', 1), ('game', 1), ('theory', 1), ('sagt', 1), ('held', 1), ('aquila', 1), ('italy', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('system', 1), ('analysis', 1), ('modeling', 1), ('sam', 1), ('held', 1), ('saint', 1), ('melo', 1), ('france', 1), ('october', 1), ('full', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('patch', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('based', 1), ('technique', 1), ('medical', 1), ('image', 1), ('mi', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('quebec', 1), ('city', 1), ('qc', 1), ('canada', 1), ('september', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('geographic', 1), ('information', 1), ('science', 1), ('giscience', 1), ('held', 1), ('montreal', 1), ('qc', 1), ('canada', 1), ('september', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('model', 1), ('based', 1), ('safety', 1), ('assessment', 1), ('imbsa', 1), ('held', 1), ('intrento', 1), ('italy', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('european', 1), ('symposium', 1), ('research', 1), ('computer', 1), ('security', 1), ('esorics', 1), ('held', 1), ('heraklion', 1), ('greece', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('kim', 2), ('guldstrand', 2), ('larsen', 2), ('festschrift', 1), ('published', 1), ('honor', 1), ('earliest', 1), ('precursor', 1), ('computer', 1), ('science', 1), ('denmark', 1), ('occasion', 1), ('th', 1), ('birthday', 1), ('last', 1), ('three', 1), ('decade', 1), ('given', 1), ('major', 1)]
[('conference', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('international', 1), ('theoretical', 1), ('computer', 1), ('science', 1), ('discrete', 1), ('mathematics', 1), ('held', 1), ('krishnankoil', 1), ('india', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('euro', 1), ('par', 1), ('held', 1), ('santiago', 1), ('de', 1), ('compostela', 1), ('spain', 1), ('august', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('workshop', 1), ('software', 1), ('engineering', 1), ('resilient', 1), ('system', 1), ('serene', 1), ('held', 1), ('geneva', 1), ('switzerland', 1), ('september', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('security', 1), ('trust', 1), ('management', 1), ('stm', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1), ('september', 1), ('conjunction', 1), ('st', 1), ('european', 1), ('symposium', 1), ('research', 1)]
[('international', 2), ('workshop', 2), ('critical', 2), ('system', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('joint', 1), ('nd', 1), ('formal', 1), ('method', 1), ('industrial', 1), ('th', 1), ('automated', 1), ('verification', 1), ('fmics', 1), ('avocs', 1), ('held', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('brazilian', 1), ('symposium', 1), ('progamming', 1), ('language', 1), ('sblp', 1), ('held', 1), ('maringá', 1), ('brazil', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('volume', 2), ('paper', 2), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('social', 1), ('informatics', 1), ('socinfo', 1), ('held', 1), ('oxford', 1), ('uk', 1), ('september', 1), ('full', 1), ('poster', 1), ('presented', 1)]
[('paper', 3), ('lncs', 2), ('double', 1), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('asia', 1), ('pacific', 1), ('conference', 1), ('apweb', 1), ('held', 1), ('suzhou', 1), ('china', 1), ('september', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('demo', 1)]
[('volume', 2), ('eight', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('october', 1), ('nbsp', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('volume', 2), ('eight', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('october', 1), ('nbsp', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('five', 1), ('workshop', 1), ('co', 1), ('located', 1), ('safecomp', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('safety', 1), ('reliability', 1), ('security', 1), ('held', 1), ('trento', 1), ('italy', 1), ('september', 1), ('revised', 1), ('full', 1)]
[('volume', 2), ('eight', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('october', 1), ('nbsp', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('connectomics', 1), ('neuroimaging', 1), ('cni', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('quebec', 1), ('city', 1), ('canada', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('volume', 2), ('eight', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('october', 1), ('nbsp', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('volume', 2), ('paper', 2), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('social', 1), ('informatics', 1), ('socinfo', 1), ('held', 1), ('oxford', 1), ('uk', 1), ('september', 1), ('full', 1), ('poster', 1), ('presented', 1)]
[('volume', 2), ('eight', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('october', 1), ('nbsp', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('interactive', 1), ('theorem', 1), ('proving', 1), ('itp', 1), ('held', 1), ('brasilia', 1), ('brazil', 1), ('september', 1), ('full', 1), ('rough', 1), ('diamond', 1), ('invited', 1), ('talk', 1)]
[('volume', 2), ('eight', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('constitutes', 1), ('therefereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computervision', 1), ('eccv', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('october', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('held', 1), ('inquebec', 1), ('city', 1), ('canada', 1), ('september', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('held', 1), ('inquebec', 1), ('city', 1), ('canada', 1), ('september', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('held', 1), ('inquebec', 1), ('city', 1), ('canada', 1), ('september', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('nbsp', 1), ('theory', 1), ('practice', 1), ('digital', 1), ('library', 1), ('tpdl', 1), ('held', 1), ('thessaloniki', 1), ('greece', 1), ('september', 1), ('full', 1), ('short', 1), ('poster', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('business', 1), ('process', 1), ('management', 1), ('bpm', 1), ('held', 1), ('rio', 1), ('de', 1), ('janeiro', 1), ('brazil', 1), ('september', 1), ('focus', 1), ('cover', 1), ('range', 1), ('paper', 1), ('focusing', 1), ('automated', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('quantitative', 1), ('evaluation', 1), ('system', 1), ('qest', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('september', 1), ('full', 1), ('tool', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('principle', 1), ('practice', 1), ('constraint', 1), ('programming', 1), ('cp', 1), ('held', 1), ('melbourne', 1), ('australia', 1), ('august', 1), ('september', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('castle', 1), ('meeting', 1), ('coding', 1), ('theory', 1), ('application', 1), ('icmcta', 1), ('held', 1), ('vihula', 1), ('estonia', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('electronic', 1), ('participation', 1), ('epart', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('th', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('joint', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('next', 1), ('generation', 1), ('wired', 1), ('wireless', 1), ('advanced', 1), ('network', 1), ('system', 1), ('new', 1), ('internet', 1), ('thing', 1), ('smart', 1), ('space', 1), ('rusmart', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('machine', 1), ('learning', 1), ('medical', 1), ('imaging', 1), ('mlmi', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('quebec', 1), ('city', 1), ('qc', 1), ('canada', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('runtime', 1), ('verification', 1), ('rv', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('september', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('tool', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cooperative', 1), ('design', 1), ('visualization', 1), ('engineering', 1), ('cdve', 1), ('held', 1), ('mallorca', 1), ('spain', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('joint', 2), ('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('computing', 1), ('visualization', 1), ('intravascular', 1), ('imaging', 1), ('computer', 1), ('assisted', 1), ('stenting', 1), ('cvii', 1), ('stent', 1), ('second', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('internet', 1), ('distributed', 1), ('computing', 1), ('system', 1), ('idcs', 1), ('held', 1), ('wuhan', 1), ('china', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1)]
[('th', 2), ('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('joint', 1), ('proceeding', 1), ('computer', 1), ('assisted', 1), ('robotic', 1), ('endoscopy', 1), ('care', 1), ('clinical', 1), ('image', 1), ('based', 1), ('procedure', 1), ('translational', 1), ('research', 1), ('medical', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('network', 1), ('system', 1), ('security', 1), ('n', 1), ('held', 1), ('taipei', 1), ('taiwan', 1), ('september', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('joint', 1), ('proceeding', 1), ('bio', 1), ('imaging', 1), ('visualization', 1), ('patient', 1), ('customized', 1), ('simulation', 1), ('bivpcs', 1), ('point', 1), ('care', 1), ('ultrasound', 1), ('pocus', 1), ('held', 1)]
[('programming', 3), ('book', 2), ('functional', 2), ('give', 1), ('introduction', 1), ('language', 1), ('scala', 1), ('present', 1), ('perspective', 1), ('explains', 1), ('detail', 1), ('recursivity', 1), ('includes', 1), ('chapter', 1), ('lazy', 1), ('eager', 1), ('evaluation', 1)]
[('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('joint', 1), ('proceeding', 1), ('first', 1), ('graph', 1), ('biomedical', 1), ('image', 1), ('analysis', 1), ('grail', 1), ('th', 1), ('mathematical', 1), ('foundation', 1), ('computational', 1), ('anatomy', 1), ('mfca', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('australasian', 1), ('database', 1), ('conference', 1), ('adc', 1), ('held', 1), ('sydney', 1), ('nsw', 1), ('australia', 1), ('september', 1), ('full', 1), ('presented', 1), ('together', 1), ('demo', 1), ('carefully', 1), ('reviewed', 1)]
[('international', 2), ('workshop', 2), ('learning', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('joint', 1), ('proceeding', 1), ('third', 1), ('deep', 1), ('medical', 1), ('image', 1), ('analysis', 1), ('dlmia', 1), ('th', 1), ('multimodal', 1), ('clinical', 1), ('decision', 1), ('support', 1), ('ml', 1), ('cd', 1)]
[('th', 2), ('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('data', 1), ('privacy', 1), ('management', 1), ('dpm', 1), ('quantitative', 1), ('aspect', 1), ('security', 1), ('assurance', 1), ('qasa', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1)]
[('international', 2), ('workshop', 2), ('image', 2), ('analysis', 2), ('th', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('joint', 1), ('proceeding', 1), ('fetal', 1), ('infant', 1), ('fifi', 1), ('ophthalmic', 1), ('medical', 1), ('omia', 1), ('held', 1), ('conjunction', 1)]
[('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('joint', 1), ('proceeding', 1), ('computational', 1), ('method', 1), ('molecular', 1), ('imaging', 1), ('cmmi', 1), ('reconstruction', 1), ('analysis', 1), ('moving', 1), ('body', 1), ('organ', 1), ('rambo', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('symposium', 1), ('string', 1), ('processing', 1), ('information', 1), ('retrieval', 1), ('spire', 1), ('held', 1), ('beppu', 1), ('japan', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('integrated', 1), ('formal', 1), ('method', 1), ('ifm', 1), ('held', 1), ('turin', 1), ('italy', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('th', 1), ('international', 1), ('symposium', 1), ('computer', 1), ('music', 1), ('modeling', 1), ('retrieval', 1), ('cmmr', 1), ('held', 1), ('plymouth', 1), ('uk', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('ambient', 1), ('intelligence', 1), ('ami', 1), ('held', 1), ('malaga', 1), ('spain', 1), ('april', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('keynote', 1)]
[('human', 2), ('held', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('interface', 1), ('management', 1), ('information', 1), ('thematic', 1), ('track', 1), ('part', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('interaction', 1), ('hcii', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('design', 1), ('user', 1), ('experience', 1), ('usability', 1), ('duxu', 1), ('held', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1)]
[('human', 2), ('held', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('interface', 1), ('management', 1), ('information', 1), ('thematic', 1), ('track', 1), ('part', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('interaction', 1), ('hcii', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('design', 1), ('user', 1), ('experience', 1), ('usability', 1), ('duxu', 1), ('held', 1), ('part', 1), ('human', 1), ('computer', 1), ('interaction', 1)]
[('volume', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algorithmic', 1), ('aspect', 1), ('information', 1), ('management', 1), ('aaim', 1), ('held', 1), ('bergamo', 1), ('italy', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('business', 1), ('process', 1), ('management', 1), ('bpm', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('september', 1), ('revised', 1), ('full', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('helping', 1), ('special', 1), ('need', 1), ('icchp', 1), ('held', 1), ('linz', 1), ('austria', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('format', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('modeling', 1), ('analysis', 1), ('timed', 1), ('system', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('september', 1), ('aim', 1), ('promote', 1), ('study', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('helping', 1), ('special', 1), ('need', 1), ('icchp', 1), ('held', 1), ('linz', 1), ('austria', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('iapr', 1), ('international', 1), ('conference', 1), ('discrete', 1), ('geometry', 1), ('computer', 1), ('imagery', 1), ('dgci', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('articulated', 1), ('motion', 1), ('deformable', 1), ('object', 1), ('amdo', 1), ('held', 1), ('palma', 1), ('de', 1), ('mallorca', 1), ('spain', 1), ('july', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('lncs', 2), ('nbsp', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('european', 1), ('symposium', 1), ('research', 1), ('computer', 1), ('security', 1), ('esorics', 1), ('held', 1), ('oslo', 1), ('norway', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('mathematical', 1), ('software', 1), ('icms', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('july', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('numerous', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('european', 1), ('symposium', 1), ('research', 1), ('computer', 1), ('security', 1), ('esorics', 1), ('held', 1), ('oslo', 1), ('norway', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('swarm', 1), ('intelligence', 1), ('icsi', 1), ('held', 1), ('bali', 1), ('indonesia', 1), ('june', 1), ('revised', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('volume', 2), ('lncs', 2), ('set', 1), ('constitutes', 1), ('conjunction', 1), ('lnai', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('held', 1), ('lanzhou', 1), ('china', 1), ('august', 1)]
[('volume', 2), ('lncs', 2), ('set', 1), ('constitutes', 1), ('conjunction', 1), ('lnai', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('held', 1), ('lanzhou', 1), ('china', 1), ('august', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('social', 1), ('network', 1), ('csonet', 1), ('held', 1), ('ho', 1), ('chi', 1), ('minh', 1), ('city', 1), ('vietnam', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('aided', 1), ('verification', 1), ('cav', 1), ('held', 1), ('toronto', 1), ('usa', 1), ('july', 1), ('total', 1), ('full', 1), ('short', 1), ('paper', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('aided', 1), ('verification', 1), ('cav', 1), ('held', 1), ('toronto', 1), ('usa', 1), ('july', 1), ('total', 1), ('full', 1), ('short', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('descriptional', 1), ('complexity', 1), ('formal', 1), ('system', 1), ('dcfs', 1), ('held', 1), ('bucharest', 1), ('romania', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('lncs', 2), ('nbsp', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('swarm', 1), ('intelligence', 1), ('icsi', 1), ('held', 1), ('bali', 1), ('indonesia', 1), ('june', 1), ('revised', 1), ('regular', 1), ('paper', 1), ('presented', 1)]
[('volume', 2), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('icann', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('september', 1), ('full', 1), ('paper', 1), ('included', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('semantic', 1), ('web', 1), ('conference', 1), ('eswc', 1), ('held', 1), ('portorož', 1), ('slovenia', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('held', 1), ('perth', 1), ('australia', 1), ('december', 1), ('total', 1), ('contribution', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('code', 1), ('cryptology', 1), ('information', 1), ('security', 1), ('si', 1), ('held', 1), ('rabat', 1), ('morocco', 1), ('april', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('lightweight', 1), ('cryptography', 1), ('security', 1), ('privacy', 1), ('lightsec', 1), ('held', 1), ('aksaray', 1), ('turkey', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('five', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('held', 1), ('taipei', 1), ('taiwan', 1), ('november', 1), ('total', 1), ('contribution', 1), ('presented', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('computational', 1), ('modeling', 1), ('object', 1), ('presented', 1), ('image', 1), ('compimage', 1), ('held', 1), ('niagara', 1), ('fall', 1), ('ny', 1), ('usa', 1), ('september', 1), ('revised', 1), ('full', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('arithmetic', 1), ('finite', 1), ('field', 1), ('waifi', 1), ('held', 1), ('ghent', 1), ('belgium', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('invited', 1), ('talk', 1), ('presented', 1)]
[('conference', 2), ('five', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('held', 1), ('taipei', 1), ('taiwan', 1), ('november', 1), ('total', 1), ('contribution', 1), ('presented', 1)]
[('conference', 2), ('five', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('held', 1), ('taipei', 1), ('taiwan', 1), ('november', 1), ('total', 1), ('contribution', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('computational', 1), ('color', 1), ('imaging', 1), ('workshop', 1), ('cciw', 1), ('held', 1), ('milano', 1), ('italy', 1), ('march', 1), ('full', 1), ('including', 1), ('tutorial', 1), ('invited', 1), ('accepted', 1), ('carefully', 1), ('reviewed', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('computational', 1), ('modeling', 1), ('object', 1), ('presented', 1), ('image', 1), ('compimage', 1), ('held', 1), ('cracow', 1), ('poland', 1), ('injuly', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('german', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('gcpr', 1), ('held', 1), ('hannover', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('nbsp', 1), ('symposium', 1), ('applied', 1), ('reconfigurable', 1), ('computing', 1), ('arc', 1), ('held', 1), ('delft', 1), ('netherlands', 1), ('april', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('swarm', 1), ('intelligence', 1), ('ant', 1), ('held', 1), ('brussels', 1), ('belgium', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('integration', 1), ('constraint', 1), ('programming', 1), ('artificial', 1), ('intelligence', 1), ('operation', 1), ('research', 1), ('cpaior', 1), ('held', 1), ('thessaloniki', 1), ('greece', 1), ('june', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('reproducible', 1), ('research', 1), ('pattern', 1), ('recognition', 1), ('rrpr', 1), ('held', 1), ('cancún', 1), ('mexico', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('among', 1)]
[('trust', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('trustworthy', 1), ('computing', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('security', 1), ('application', 1), ('wisa', 1), ('held', 1), ('jeju', 1), ('island', 1), ('korea', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('including', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cellular', 1), ('automaton', 1), ('research', 1), ('industry', 1), ('acri', 1), ('held', 1), ('fez', 1), ('morocco', 1), ('september', 1), ('full', 1), ('paper', 1), ('invited', 1), ('talk', 1), ('presented', 1), ('volume', 1)]
[('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('held', 1), ('perth', 1), ('australia', 1), ('december', 1), ('total', 1), ('contribution', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('proceeding', 2), ('three', 1), ('volume', 1), ('lncs', 1), ('constitute', 1), ('thoroughly', 1), ('refereed', 1), ('th', 1), ('annual', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptographic', 1), ('technique', 1), ('eurocrypt', 1), ('held', 1), ('paris', 1), ('france', 1)]
[('privacy', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('statistical', 1), ('database', 1), ('psd', 1), ('held', 1), ('dubrovnik', 1), ('croatia', 1), ('september', 1), ('sponsorship', 1), ('unesco', 1), ('chair', 1), ('data', 1), ('revised', 1)]
[('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('held', 1), ('perth', 1), ('australia', 1), ('december', 1), ('total', 1), ('contribution', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('proceeding', 2), ('three', 1), ('volume', 1), ('lncs', 1), ('constitute', 1), ('thoroughly', 1), ('refereed', 1), ('th', 1), ('annual', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptographic', 1), ('technique', 1), ('eurocrypt', 1), ('held', 1), ('paris', 1), ('france', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('problem', 1), ('solving', 1), ('nature', 1), ('ppsn', 1), ('held', 1), ('edinburgh', 1), ('uk', 1), ('september', 1), ('total', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('information', 1), ('system', 1), ('engineering', 1), ('caise', 1), ('held', 1), ('rome', 1), ('italy', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('proceeding', 2), ('three', 1), ('volume', 1), ('lncs', 1), ('constitute', 1), ('thoroughly', 1), ('refereed', 1), ('th', 1), ('annual', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptographic', 1), ('technique', 1), ('eurocrypt', 1), ('held', 1), ('paris', 1), ('france', 1)]
[('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('held', 1), ('perth', 1), ('australia', 1), ('december', 1), ('total', 1), ('contribution', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('interoperability', 1), ('open', 1), ('source', 1), ('solution', 1), ('internet', 1), ('thing', 1), ('inteross', 1), ('iot', 1), ('held', 1), ('stuttgart', 1), ('germany', 1), ('november', 1)]
[('conference', 2), ('volume', 1), ('lncs', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('application', 1), ('evolutionary', 1), ('computation', 1), ('evoapplications', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('april', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('mobile', 1), ('secure', 1), ('programmable', 1), ('networking', 1), ('held', 1), ('paris', 1), ('france', 1), ('june', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('symposium', 1), ('cyber', 1), ('security', 1), ('cryptography', 1), ('machine', 1), ('learning', 1), ('cscml', 1), ('held', 1), ('beer', 1), ('sheva', 1), ('israel', 1), ('june', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('th', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('joint', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('next', 1), ('generation', 1), ('wired', 1), ('wireless', 1), ('advanced', 1), ('network', 1), ('system', 1), ('new', 1), ('internet', 1), ('thing', 1), ('smart', 1), ('space', 1), ('rusmart', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algebraic', 1), ('informatics', 1), ('cai', 1), ('held', 1), ('niš', 1), ('serbia', 1), ('june', 1), ('july', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('automated', 1), ('technology', 1), ('verification', 1), ('analysis', 1), ('atva', 1), ('held', 1), ('pune', 1), ('india', 1), ('october', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('reversible', 1), ('computation', 1), ('rc', 1), ('held', 1), ('lausanne', 1), ('switzerland', 1), ('june', 1), ('full', 1), ('short', 1), ('included', 1), ('volume', 1), ('carefully', 1)]
[('lncs', 2), ('paper', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('information', 1), ('system', 1), ('engineering', 1), ('wise', 1), ('held', 1), ('puschino', 1), ('russia', 1), ('october', 1), ('full', 1), ('short', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('intelligent', 1), ('data', 1), ('analysis', 1), ('held', 1), ('october', 1), ('stockholm', 1), ('sweden', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('search', 1), ('based', 1), ('software', 1), ('engineering', 1), ('ssbse', 1), ('held', 1), ('raleigh', 1), ('nc', 1), ('usa', 1), ('october', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('foundational', 1), ('practical', 1), ('aspect', 1), ('resource', 1), ('analysis', 1), ('fopara', 1), ('held', 1), ('london', 1), ('uk', 1), ('april', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('similarity', 1), ('search', 1), ('application', 1), ('sisap', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('openmp', 1), ('iwomp', 1), ('held', 1), ('nara', 1), ('japan', 1), ('october', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('symposium', 1), ('programming', 1), ('language', 1), ('system', 1), ('aplas', 1), ('held', 1), ('suzhou', 1), ('china', 1), ('november', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('future', 1), ('data', 1), ('security', 1), ('engineering', 1), ('fdse', 1), ('held', 1), ('tho', 1), ('city', 1), ('vietnam', 1), ('november', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('internet', 1), ('vehicle', 1), ('iov', 1), ('held', 1), ('kanazawa', 1), ('japan', 1), ('november', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('machine', 1), ('intelligence', 1), ('premi', 1), ('held', 1), ('kolkata', 1), ('india', 1), ('december', 1), ('total', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptology', 1), ('information', 1), ('security', 1), ('asiacrypt', 1), ('held', 1), ('hong', 1), ('kong', 1), ('china', 1), ('december', 1)]
[('nbsp', 3), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptology', 1), ('information', 1), ('security', 1), ('asiacrypt', 1), ('held', 1), ('hong', 1), ('kong', 1), ('china', 1)]
[('lncs', 4), ('four', 1), ('volume', 1), ('set', 1), ('constitues', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('kyoto', 1), ('japan', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('lncs', 4), ('four', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('kyoto', 1), ('japan', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('science', 2), ('paper', 1), ('volume', 1), ('focus', 1), ('foundational', 1), ('aspect', 1), ('computer', 1), ('thematic', 1), ('origin', 1), ('stronghold', 1), ('lncs', 1), ('title', 1), ('computing', 1), ('software', 1), ('state', 1), ('art', 1), ('perspective', 1), ('organized', 1), ('part', 1)]
[('workshop', 2), ('web', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('three', 1), ('held', 1), ('th', 1), ('asia', 1), ('pacific', 1), ('conference', 1), ('apweb', 1), ('suzhou', 1), ('china', 1), ('september', 1), ('second', 1), ('international', 1), ('data', 1), ('mining', 1), ('application', 1), ('wdma', 1)]
[('proceeding', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('semantic', 1), ('web', 1), ('conference', 1), ('iswc', 1), ('held', 1), ('kobe', 1), ('japan', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('proceeding', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('semantic', 1), ('web', 1), ('conference', 1), ('iswc', 1), ('held', 1), ('kobe', 1), ('japan', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('workshop', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('nbsp', 1), ('engineering', 1), ('icwe', 1), ('held', 1), ('lugano', 1), ('switzerland', 1), ('june', 1), ('revised', 1), ('full', 1), ('together', 1), ('short', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('leveraging', 1), ('application', 1), ('formal', 1), ('method', 1), ('verification', 1), ('validation', 1), ('isola', 1), ('held', 1), ('imperial', 1), ('corfu', 1), ('greece', 1), ('october', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('big', 1), ('data', 1), ('computing', 1), ('communication', 1), ('bigcom', 1), ('held', 1), ('shenyang', 1), ('china', 1), ('july', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('economics', 1), ('grid', 1), ('cloud', 1), ('system', 1), ('service', 1), ('gecon', 1), ('held', 1), ('cluj', 1), ('napoca', 1), ('romania', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('challenge', 1), ('computational', 1), ('method', 1), ('clinical', 1), ('application', 1), ('spine', 1), ('imaging', 1), ('csi', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('munich', 1), ('germany', 1), ('october', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('computing', 1), ('combinatorics', 1), ('cocoon', 1), ('held', 1), ('ho', 1), ('chi', 1), ('minh', 1), ('city', 1), ('vietnam', 1), ('august', 1), ('revised', 1), ('full', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('algorithm', 1), ('model', 1), ('web', 1), ('graph', 1), ('waw', 1), ('held', 1), ('toronto', 1), ('canada', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('german', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('gcpr', 1), ('held', 1), ('basel', 1), ('switzerland', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('working', 1), ('conference', 1), ('data', 1), ('application', 1), ('security', 1), ('privacy', 1), ('dbsec', 1), ('held', 1), ('trento', 1), ('itlay', 1), ('july', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('runtime', 1), ('verification', 1), ('rv', 1), ('held', 1), ('seattle', 1), ('wa', 1), ('usa', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('presentation', 1), ('short', 1)]
[('risk', 3), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('conference', 1), ('proceeding', 1), ('fourth', 1), ('international', 1), ('workshop', 1), ('assessment', 1), ('driven', 1), ('quality', 1), ('assurance', 1), ('held', 1), ('conjunction', 1), ('ictss', 1), ('graz', 1), ('austria', 1), ('october', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('computer', 1), ('algebra', 1), ('scientific', 1), ('computing', 1), ('casc', 1), ('held', 1), ('beijing', 1), ('china', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('workshop', 1), ('constructive', 1), ('side', 1), ('channel', 1), ('analysis', 1), ('secure', 1), ('design', 1), ('cosade', 1), ('held', 1), ('graz', 1), ('austria', 1), ('april', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('rd', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('workshop', 1), ('algebraic', 1), ('development', 1), ('technique', 1), ('wadt', 1), ('held', 1), ('september', 1), ('gregynog', 1), ('uk', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('multimedia', 1), ('modeling', 1), ('mm', 1), ('held', 1), ('reykjavik', 1), ('iceland', 1), ('january', 1), ('full', 1), ('paper', 1), ('submitted', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('security', 1), ('practice', 1), ('experience', 1), ('ispec', 1), ('held', 1), ('melbourne', 1), ('australia', 1), ('december', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('multimedia', 1), ('modeling', 1), ('mm', 1), ('held', 1), ('reykjavik', 1), ('iceland', 1), ('january', 1), ('full', 1), ('paper', 1), ('submitted', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('system', 1), ('security', 1), ('iciss', 1), ('held', 1), ('mumbai', 1), ('india', 1), ('december', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('festschrift', 2), ('published', 1), ('honor', 1), ('rodney', 1), ('downey', 1), ('eminent', 1), ('nbsp', 1), ('logician', 1), ('computer', 1), ('scientist', 1), ('surfer', 1), ('scottish', 1), ('country', 1), ('dancer', 1), ('occasion', 1), ('th', 1), ('birthday', 1), ('contains', 1), ('paper', 1), ('laudations', 1), ('showcase', 1)]
[('symposium', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('practical', 1), ('aspect', 1), ('declarative', 1), ('language', 1), ('padl', 1), ('held', 1), ('paris', 1), ('france', 1), ('january', 1), ('collocated', 1), ('acm', 1), ('sigplan', 1), ('principle', 1), ('programming', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('approximation', 1), ('online', 1), ('algorithm', 1), ('waoa', 1), ('held', 1), ('aarhus', 1), ('denmark', 1), ('august', 1), ('part', 1), ('algo', 1), ('nbsp', 1), ('revised', 1), ('full', 1)]
[('bill', 2), ('roscoe', 2), ('festschrift', 1), ('written', 1), ('honor', 1), ('andrew', 1), ('william', 1), ('occasion', 1), ('th', 1), ('birthday', 1), ('feature', 1), ('tribute', 1), ('sir', 1), ('tony', 1), ('hoare', 1), ('stephen', 1), ('brooke', 1), ('michael', 1), ('wooldridge', 1), ('nbsp', 1), ('international', 1), ('authority', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('analytical', 1), ('stochastic', 1), ('modelling', 1), ('technique', 1), ('application', 1), ('asmta', 1), ('held', 1), ('cardiff', 1), ('uk', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('data', 1), ('privacy', 1), ('management', 1), ('dpm', 1), ('conjunction', 1), ('nd', 1), ('european', 1), ('symposium', 1), ('research', 1), ('computer', 1), ('security', 1), ('esorics', 1), ('first', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('string', 1), ('processing', 1), ('information', 1), ('retrieval', 1), ('spire', 1), ('held', 1), ('palermo', 1), ('italy', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligence', 1), ('science', 1), ('big', 1), ('data', 1), ('engineering', 1), ('iscide', 1), ('held', 1), ('dalian', 1), ('china', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('ad', 1), ('hoc', 1), ('mobile', 1), ('wireless', 1), ('network', 1), ('adhoc', 1), ('held', 1), ('messina', 1), ('italy', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('data', 1), ('warehousing', 1), ('knowledge', 1), ('discovery', 1), ('dawak', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('advanced', 1), ('parallel', 1), ('processing', 1), ('technology', 1), ('appt', 1), ('held', 1), ('santiago', 1), ('de', 1), ('compostela', 1), ('spain', 1), ('august', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('security', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('trust', 1), ('management', 1), ('stm', 1), ('held', 1), ('oslo', 1), ('norway', 1), ('september', 1), ('conjunction', 1), ('nd', 1), ('european', 1), ('symposium', 1), ('research', 1), ('computer', 1), ('esorics', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('european', 1), ('conference', 1), ('advance', 1), ('database', 1), ('information', 1), ('system', 1), ('adbis', 1), ('held', 1), ('nicosia', 1), ('cyprus', 1), ('september', 1), ('regular', 1), ('presented', 1), ('together', 1), ('keynote', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('th', 1), ('international', 1), ('symposium', 1), ('computer', 1), ('music', 1), ('modeling', 1), ('retrieval', 1), ('cmmr', 1), ('held', 1), ('são', 1), ('paulo', 1), ('brazil', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cryptographic', 1), ('hardware', 1), ('embedded', 1), ('system', 1), ('ches', 1), ('held', 1), ('taipei', 1), ('taiwan', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('model', 1), ('data', 1), ('engineering', 1), ('medi', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('nbsp', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('interactive', 1), ('theorem', 1), ('proving', 1), ('itp', 1), ('held', 1), ('nancy', 1), ('france', 1), ('august', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('european', 1), ('conference', 1), ('service', 1), ('oriented', 1), ('cloud', 1), ('computing', 1), ('esocc', 1), ('held', 1), ('oslo', 1), ('norway', 1), ('september', 1), ('short', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('combinatorial', 1), ('algorithm', 1), ('iwoca', 1), ('held', 1), ('helsinki', 1), ('finland', 1), ('august', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('australasian', 1), ('database', 1), ('conference', 1), ('adc', 1), ('held', 1), ('brisbane', 1), ('qld', 1), ('australia', 1), ('september', 1), ('full', 1), ('presented', 1), ('together', 1), ('demo', 1), ('carefully', 1), ('reviewed', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('interact', 1), ('held', 1), ('mumbai', 1), ('india', 1), ('september', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('ifip', 1), ('wg', 1), ('electronic', 1), ('government', 1), ('egov', 1), ('held', 1), ('guimaraes', 1), ('portugal', 1), ('september', 1), ('conjunction', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('interact', 1), ('held', 1), ('mumbai', 1), ('india', 1), ('september', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('fosad', 1), ('foremost', 1), ('educational', 1), ('event', 1), ('established', 1), ('goal', 1), ('disseminating', 1), ('knowledge', 1), ('critical', 1), ('area', 1), ('security', 1), ('computer', 1), ('system', 1), ('network', 1), ('year', 1), ('summer', 1), ('school', 1), ('book', 1), ('series', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('logistics', 1), ('iccl', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('testing', 1), ('software', 1), ('system', 1), ('ictss', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('system', 1), ('design', 1), ('language', 1), ('forum', 1), ('sdl', 1), ('held', 1), ('budapest', 1), ('hungary', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('mathematical', 1), ('morphology', 1), ('ismm', 1), ('held', 1), ('fontainebleau', 1), ('france', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('nasa', 1), ('formal', 1), ('method', 1), ('nfm', 1), ('held', 1), ('moffett', 1), ('field', 1), ('ca', 1), ('usa', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('aspect', 1), ('component', 1), ('software', 1), ('facs', 1), ('held', 1), ('besançon', 1), ('france', 1), ('october', 1), ('full', 1), ('presented', 1), ('together', 1), ('tool', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('internationalconference', 1), ('cooperative', 1), ('design', 1), ('visualization', 1), ('engineering', 1), ('cdve', 1), ('held', 1), ('sydney', 1), ('nsw', 1), ('australia', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('workshop', 1), ('clinical', 1), ('image', 1), ('based', 1), ('procedure', 1), ('clip', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('athens', 1), ('greece', 1), ('october', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('evolutionary', 1), ('computation', 1), ('combinatorial', 1), ('optimization', 1), ('evomusart', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('april', 1), ('co', 1), ('located', 1), ('evo', 1), ('event', 1)]
[('workshop', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('web', 1), ('age', 1), ('information', 1), ('management', 1), ('waim', 1), ('held', 1), ('nanchang', 1), ('china', 1), ('june', 1), ('three', 1), ('follows', 1)]
[('conference', 2), ('volume', 1), ('lncs', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('application', 1), ('evolutionary', 1), ('computation', 1), ('evoapplications', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('april', 1), ('colocated', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('colloquium', 1), ('theoretical', 1), ('aspect', 1), ('computing', 1), ('ictac', 1), ('held', 1), ('hanoi', 1), ('vietnam', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('three', 1), ('invited', 1), ('talk', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('similarity', 1), ('search', 1), ('application', 1), ('sisap', 1), ('held', 1), ('munich', 1), ('germany', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('communication', 1), ('system', 1), ('network', 1), ('comsnets', 1), ('held', 1), ('bengaluru', 1), ('india', 1), ('january', 1), ('invited', 1), ('selected', 1), ('best', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('simulation', 1), ('synthesis', 1), ('medical', 1), ('imaging', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('québec', 1), ('city', 1), ('canada', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('scandinavian', 1), ('conference', 1), ('image', 1), ('analysis', 1), ('scia', 1), ('held', 1), ('norrköping', 1), ('sweden', 1), ('june', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('hong', 2), ('kong', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('processing', 1), ('medical', 1), ('imaging', 1), ('ipmi', 1), ('held', 1), ('university', 1), ('science', 1), ('technology', 1), ('china', 1), ('june', 1), ('full', 1), ('paper', 1)]
[('international', 2), ('nbsp', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('confederated', 1), ('workshop', 1), ('enterprise', 1), ('integration', 1), ('interoperability', 1), ('networking', 1), ('ei', 1), ('fact', 1), ('based', 1), ('modeling', 1), ('fbm', 1), ('industry', 1), ('case', 1), ('study', 1), ('program', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('service', 1), ('oriented', 1), ('cloud', 1), ('computing', 1), ('esocc', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('workshop', 1), ('structure', 1), ('object', 1), ('oriented', 1), ('formal', 1), ('language', 1), ('method', 1), ('sofl', 1), ('msvl', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('november', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('internet', 1), ('science', 1), ('held', 1), ('florence', 1), ('italy', 1), ('september', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('inclusion', 1), ('volume', 1)]
[('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('held', 1), ('perth', 1), ('australia', 1), ('december', 1), ('total', 1), ('contribution', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('four', 1), ('workshop', 1), ('co', 1), ('located', 1), ('safecomp', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('safety', 1), ('reliability', 1), ('security', 1), ('held', 1), ('trondheim', 1), ('norway', 1), ('september', 1), ('revised', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('algorithmic', 1), ('aspect', 1), ('cloud', 1), ('computing', 1), ('algocloud', 1), ('held', 1), ('aarhus', 1), ('denmark', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('collaboration', 1), ('technology', 1), ('criwg', 1), ('held', 1), ('kanazawa', 1), ('japan', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('high', 2), ('performance', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computing', 1), ('isc', 1), ('held', 1), ('frankfurt', 1), ('main', 1), ('germany', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('work', 1), ('conference', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('iwann', 1), ('held', 1), ('gran', 1), ('canaria', 1), ('spain', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('privacy', 1), ('forum', 1), ('apf', 1), ('held', 1), ('frankfurt', 1), ('main', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('work', 1), ('conference', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('iwann', 1), ('held', 1), ('gran', 1), ('canaria', 1), ('spain', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('conference', 3), ('international', 2), ('serious', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('second', 1), ('joint', 1), ('game', 1), ('jcsg', 1), ('held', 1), ('brisbane', 1), ('qld', 1), ('australia', 1), ('september', 1), ('bundle', 1), ('activity', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('system', 1), ('icvs', 1), ('held', 1), ('shenzhen', 1), ('china', 1), ('july', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('internationalconference', 1), ('computational', 1), ('logistics', 1), ('iccl', 1), ('held', 1), ('southampton', 1), ('uk', 1), ('october', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('fundamental', 1), ('software', 1), ('engineering', 1), ('fsen', 1), ('held', 1), ('tehran', 1), ('iran', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('research', 1), ('attack', 1), ('intrusion', 1), ('defense', 1), ('raid', 1), ('held', 1), ('atlanta', 1), ('ga', 1), ('usa', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('decision', 1), ('game', 1), ('theory', 1), ('security', 1), ('gamesec', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('october', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('learning', 1), ('game', 1), ('edutainment', 1), ('held', 1), ('bournemouth', 1), ('united', 1), ('kingdom', 1), ('june', 1), ('fulland', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('joint', 1), ('conference', 1), ('electronic', 1), ('voting', 1), ('vote', 1), ('id', 1), ('held', 1), ('bregenz', 1), ('austria', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('festschrift', 2), ('ed', 2), ('volume', 1), ('published', 1), ('honor', 1), ('brinksma', 1), ('occasion', 1), ('th', 1), ('birthday', 1), ('contribution', 1), ('written', 1), ('number', 1), ('former', 1), ('ph', 1), ('student', 1), ('collaborator', 1), ('paper', 1), ('reflection', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('secure', 1), ('dependable', 1), ('system', 1), ('distributed', 1), ('cloud', 1), ('environment', 1), ('isddc', 1), ('held', 1), ('vancouver', 1), ('bc', 1), ('canada', 1), ('october', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('symposium', 1), ('dependable', 1), ('software', 1), ('engineering', 1), ('theory', 1), ('tool', 1), ('application', 1), ('setta', 1), ('held', 1), ('changsha', 1), ('china', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('conference', 2), ('volume', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('mathematical', 1), ('method', 1), ('curve', 1), ('surface', 1), ('mmcs', 1), ('held', 1), ('tønsberg', 1), ('norway', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('provable', 1), ('security', 1), ('provsec', 1), ('held', 1), ('xi', 1), ('china', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('numerical', 1), ('analysis', 1), ('nbsp', 1), ('application', 1), ('naa', 1), ('held', 1), ('lozenetz', 1), ('bulgaria', 1), ('june', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('algorithm', 1), ('complexity', 1), ('ciac', 1), ('held', 1), ('athens', 1), ('greece', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('iapr', 1), ('tc', 1), ('international', 1), ('workshop', 1), ('graph', 1), ('based', 1), ('representation', 1), ('pattern', 1), ('recognition', 1), ('gbrpr', 1), ('held', 1), ('anacapri', 1), ('italy', 1), ('full', 1), ('paper', 1), ('abstract', 1), ('invited', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('networked', 1), ('system', 1), ('netys', 1), ('held', 1), ('marrakech', 1), ('morocco', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('together', 1), ('keynote', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('future', 1), ('data', 1), ('security', 1), ('engineering', 1), ('fdse', 1), ('held', 1), ('tho', 1), ('city', 1), ('vietnam', 1), ('november', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('paper', 3), ('recognition', 1), ('ccbr', 1), ('held', 1), ('shenzhen', 1), ('china', 1), ('october', 1), ('full', 1), ('poster', 1), ('presented', 1), ('book', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1), ('organized', 1), ('topical', 1), ('section', 1), ('face', 1)]
[('lncs', 2), ('paper', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('information', 1), ('system', 1), ('engineering', 1), ('wise', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('november', 1), ('full', 1), ('short', 1)]
[('lncs', 2), ('paper', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('information', 1), ('system', 1), ('engineering', 1), ('wise', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('november', 1), ('full', 1), ('short', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('conference', 1), ('proceeding', 1), ('icvgip', 1), ('satellite', 1), ('workshop', 1), ('wcva', 1), ('dar', 1), ('medimage', 1), ('held', 1), ('guwahati', 1), ('india', 1), ('december', 1), ('presented', 1), ('extended', 1), ('version', 1), ('three', 1), ('four', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('stabilization', 1), ('safety', 1), ('security', 1), ('distributed', 1), ('system', 1), ('s', 1), ('held', 1), ('lyon', 1), ('france', 1), ('november', 1), ('year', 1), ('program', 1), ('committee', 1), ('organized', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('provable', 1), ('security', 1), ('provsec', 1), ('held', 1), ('nanjing', 1), ('china', 1), ('november', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('china', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('conference', 1), ('information', 1), ('retrieval', 1), ('ccir', 1), ('held', 1), ('shanghai', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('lncs', 2), ('conference', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('cloud', 1), ('computing', 1), ('security', 1), ('icc', 1), ('held', 1), ('nanjing', 1), ('china', 1), ('july', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('data', 1), ('engineering', 1), ('automated', 1), ('learning', 1), ('ideal', 1), ('held', 1), ('guilin', 1), ('china', 1), ('october', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('semantics', 1), ('analytics', 1), ('visualization', 1), ('enhancing', 1), ('scholarly', 1), ('data', 1), ('save', 1), ('sd', 1), ('held', 1), ('montreal', 1), ('qc', 1), ('canada', 1), ('april', 1), ('full', 1), ('paper', 1), ('demo', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('scientific', 1), ('satellite', 1), ('event', 1), ('conjunction', 1), ('th', 1), ('international', 1), ('conference', 1), ('service', 1), ('oriented', 1), ('computing', 1), ('icsoc', 1), ('banff', 1), ('ab', 1), ('canada', 1), ('october', 1)]
[('conference', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('international', 1), ('smart', 1), ('health', 1), ('icsh', 1), ('held', 1), ('hong', 1), ('kong', 1), ('china', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('full', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('conceptual', 1), ('modeling', 1), ('er', 1), ('held', 1), ('valencia', 1), ('spain', 1), ('november', 1), ('short', 1), ('paper', 1), ('presented', 1), ('together', 1), ('keynote', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('conceptual', 1), ('modeling', 1), ('er', 1), ('held', 1), ('gifu', 1), ('japan', 1), ('november', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('together', 1), ('keynote', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('interactive', 1), ('digital', 1), ('storytelling', 1), ('icids', 1), ('held', 1), ('los', 1), ('angeles', 1), ('ca', 1), ('usa', 1), ('november', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('conference', 2), ('volume', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('verified', 1), ('software', 1), ('theory', 1), ('tool', 1), ('experiment', 1), ('vstte', 1), ('held', 1), ('july', 1), ('toronto', 1), ('canada', 1), ('nbsp', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('symposium', 1), ('formal', 1), ('method', 1), ('fm', 1), ('held', 1), ('limassol', 1), ('cyprus', 1), ('november', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1), ('abstract', 1), ('invited', 1)]
[('iswc', 2), ('book', 1), ('constitutes', 1), ('combined', 1), ('refereed', 1), ('proceeding', 1), ('satellite', 1), ('wor', 1), ('shop', 1), ('kekiand', 1), ('nlp', 1), ('dbpedia', 1), ('held', 1), ('conjunction', 1), ('kobe', 1), ('japan', 1), ('inoctober', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1), ('reviewed', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('asia', 1), ('pacific', 1), ('service', 1), ('computing', 1), ('conference', 1), ('apscc', 1), ('held', 1), ('zhangjiajie', 1), ('china', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('stabilization', 1), ('safety', 1), ('security', 1), ('distributed', 1), ('system', 1), ('s', 1), ('held', 1), ('boston', 1), ('usa', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('paper', 3), ('selected', 2), ('book', 1), ('contains', 1), ('revised', 1), ('rd', 1), ('international', 1), ('conference', 1), ('area', 1), ('cryptography', 1), ('sac', 1), ('held', 1), ('st', 1), ('john', 1), ('nl', 1), ('canada', 1), ('august', 1), ('full', 1), ('invited', 1), ('presented', 1), ('volume', 1)]
[('double', 1), ('volume', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('confederated', 1), ('international', 1), ('conference', 1), ('cooperative', 1), ('information', 1), ('system', 1), ('coopis', 1), ('ontology', 1), ('database', 1), ('application', 1), ('semantics', 1), ('odbase', 1)]
[('double', 1), ('volume', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('confederated', 1), ('international', 1), ('conference', 1), ('cooperative', 1), ('information', 1), ('system', 1), ('coopis', 1), ('ontology', 1), ('database', 1), ('application', 1), ('semantics', 1), ('odbase', 1), ('cloud', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('cyberspace', 1), ('safety', 1), ('security', 1), ('cs', 1), ('held', 1), ('xi', 1), ('china', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 2), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('icann', 1), ('held', 1), ('alghero', 1), ('italy', 1), ('september', 1), ('full', 1), ('paper', 1), ('included', 1)]
[('held', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('six', 1), ('workshop', 1), ('th', 1), ('international', 1), ('conference', 1), ('security', 1), ('privacy', 1), ('anonymity', 1), ('computation', 1), ('communication', 1), ('storage', 1), ('spaccs', 1), ('zhangjiajie', 1), ('china', 1), ('november', 1)]
[('lncs', 2), ('conference', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('cloud', 1), ('computing', 1), ('security', 1), ('icc', 1), ('held', 1), ('nanjing', 1), ('china', 1), ('june', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('security', 1), ('privacy', 1), ('anonymity', 1), ('computation', 1), ('communication', 1), ('storage', 1), ('spaccs', 1), ('held', 1), ('zhangjiajie', 1), ('china', 1), ('november', 1), ('paper', 1), ('presented', 1)]
[('workshop', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('next', 1), ('generation', 1), ('computer', 1), ('animation', 1), ('technique', 1), ('aninex', 1), ('bournemouth', 1), ('uk', 1), ('june', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('fo', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('theoretic', 1), ('security', 1), ('icits', 1), ('held', 1), ('tacoma', 1), ('wa', 1), ('usa', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('simulated', 1), ('evolution', 1), ('learning', 1), ('seal', 1), ('held', 1), ('shenzhen', 1), ('china', 1), ('november', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('algorithm', 1), ('model', 1), ('web', 1), ('graph', 1), ('waw', 1), ('held', 1), ('montreal', 1), ('qc', 1), ('canada', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 2), ('india', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cryptology', 1), ('indocrypt', 1), ('held', 1), ('kolkata', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('lncs', 2), ('conference', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('cloud', 1), ('computing', 1), ('security', 1), ('icc', 1), ('held', 1), ('nanjing', 1), ('china', 1), ('june', 1), ('full', 1)]
[('algorithm', 3), ('engineering', 1), ('methodology', 1), ('algorithmic', 1), ('research', 1), ('combine', 1), ('theory', 1), ('implementation', 1), ('experimentation', 1), ('order', 1), ('obtain', 1), ('better', 1), ('high', 1), ('practical', 1), ('impact', 1), ('traditionally', 1), ('study', 1), ('dominated', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('rd', 1), ('international', 1), ('workshop', 1), ('graph', 1), ('theoretic', 1), ('concept', 1), ('computer', 1), ('science', 1), ('wg', 1), ('held', 1), ('eindhoven', 1), ('netherlands', 1), ('june', 1), ('full', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('internet', 1), ('science', 1), ('held', 1), ('thessaloniki', 1), ('greece', 1), ('november', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('inclusion', 1), ('volume', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('business', 1), ('service', 1), ('society', 1), ('held', 1), ('delhi', 1), ('india', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('brazilian', 1), ('symposium', 1), ('formal', 1), ('method', 1), ('sbmf', 1), ('took', 1), ('place', 1), ('natal', 1), ('brazil', 1), ('november', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('service', 1), ('oriented', 1), ('computing', 1), ('icsoc', 1), ('held', 1), ('malaga', 1), ('spain', 1), ('november', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('keynote', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('asia', 1), ('pacific', 1), ('digital', 1), ('library', 1), ('icadl', 1), ('held', 1), ('bangkok', 1), ('thailand', 1), ('november', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('software', 1), ('architecture', 1), ('ecsa', 1), ('held', 1), ('copenhagen', 1), ('denmark', 1), ('november', 1), ('december', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('nordic', 1), ('conference', 1), ('secure', 1), ('system', 1), ('held', 1), ('tartu', 1), ('estonia', 1), ('november', 1), ('full', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1), ('address', 1), ('broad', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('five', 1), ('workshop', 1), ('symposium', 1), ('held', 1), ('th', 1), ('international', 1), ('conference', 1), ('conceptual', 1), ('modeling', 1), ('er', 1), ('valencia', 1), ('spain', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('cryptography', 1), ('tcc', 1), ('held', 1), ('baltimore', 1), ('md', 1), ('usa', 1), ('november', 1), ('total', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('cryptography', 1), ('tcc', 1), ('held', 1), ('baltimore', 1), ('md', 1), ('usa', 1), ('november', 1), ('total', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('volume', 2), ('constitutes', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('reliability', 1), ('safety', 1), ('security', 1), ('railway', 1), ('system', 1), ('rrsrail', 1), ('held', 1), ('pistoia', 1), ('italy', 1), ('november', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('lncs', 6), ('six', 1), ('volume', 1), ('set', 1), ('constitues', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('guangzhou', 1), ('china', 1), ('november', 1)]
[('lncs', 6), ('six', 1), ('volume', 1), ('set', 1), ('constitues', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('guangzhou', 1), ('china', 1), ('november', 1)]
[('lncs', 6), ('six', 1), ('volume', 1), ('set', 1), ('constitues', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('guangzhou', 1), ('china', 1), ('november', 1)]
[('lncs', 6), ('six', 1), ('volume', 1), ('set', 1), ('constituts', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('guangzhou', 1), ('china', 1), ('november', 1)]
[('lncs', 6), ('six', 1), ('volume', 1), ('set', 1), ('constitues', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('guangzhou', 1), ('china', 1), ('november', 1)]
[('lncs', 6), ('six', 1), ('volume', 1), ('set', 1), ('constitues', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('guangzhou', 1), ('china', 1), ('november', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('joint', 1), ('international', 1), ('semantic', 1), ('technology', 1), ('conference', 1), ('jist', 1), ('held', 1), ('goldcoast', 1), ('qld', 1), ('australia', 1), ('november', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('conference', 3), ('international', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('joint', 1), ('serious', 1), ('game', 1), ('jcsg', 1), ('held', 1), ('valencia', 1), ('spain', 1), ('november', 1), ('bundle', 1), ('activity', 1), ('th', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('interactive', 1), ('digital', 1), ('storytelling', 1), ('icids', 1), ('held', 1), ('funchal', 1), ('madeira', 1), ('portugal', 1), ('november', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('brazilian', 1), ('symposium', 1), ('formal', 1), ('method', 1), ('sbmf', 1), ('took', 1), ('place', 1), ('recifel', 1), ('brazil', 1), ('november', 1), ('december', 1), ('paper', 1), ('presented', 1), ('together', 1), ('three', 1), ('invited', 1), ('talk', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('held', 1), ('st', 1), ('international', 1), ('conference', 1), ('financial', 1), ('cryptography', 1), ('data', 1), ('security', 1), ('fc', 1), ('sliema', 1), ('malta', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('information', 1), ('retrieval', 1), ('society', 1), ('conference', 1), ('air', 1), ('held', 1), ('beijing', 1), ('china', 1), ('november', 1), ('december', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('information', 1), ('retrieval', 1), ('society', 1), ('conference', 1), ('air', 1), ('held', 1), ('jeju', 1), ('korea', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('numerous', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('security', 1), ('standardisation', 1), ('research', 1), ('ssr', 1), ('held', 1), ('gaithersburg', 1), ('md', 1), ('usa', 1), ('december', 1), ('accepted', 1), ('paper', 1), ('cover', 1), ('range', 1), ('topic', 1), ('field', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('satellite', 1), ('event', 1), ('th', 1), ('european', 1), ('semantic', 1), ('web', 1), ('eswc', 1), ('held', 1), ('portoroz', 1), ('slovenia', 1), ('june', 1), ('volume', 1), ('contains', 1), ('poster', 1)]
[('singapore', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('nbsp', 1), ('communication', 1), ('security', 1), ('icisc', 1), ('held', 1), ('november', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('product', 1), ('focused', 1), ('software', 1), ('process', 1), ('improvement', 1), ('profes', 1), ('held', 1), ('innsbruck', 1), ('austria', 1), ('november', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('swarm', 1), ('intelligence', 1), ('based', 1), ('optimization', 1), ('icsibo', 1), ('held', 1), ('mulhouse', 1), ('france', 1), ('june', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('haifa', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('verification', 1), ('conference', 1), ('hvc', 1), ('held', 1), ('israel', 1), ('november', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('poster', 1), ('tool', 1), ('demo', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('concept', 1), ('intelligent', 1), ('vision', 1), ('system', 1), ('acivs', 1), ('held', 1), ('antwerp', 1), ('belgium', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('internet', 1), ('economics', 1), ('wine', 1), ('held', 1), ('bangalore', 1), ('india', 1), ('december', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('theoretic', 1), ('security', 1), ('icits', 1), ('held', 1), ('hong', 1), ('kong', 1), ('china', 1), ('november', 1), ('december', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('transaction', 1), ('publish', 1), ('research', 1), ('computer', 1), ('based', 1), ('method', 1), ('computational', 1), ('collective', 1), ('intelligence', 1), ('cci', 1), ('application', 1), ('wide', 1), ('range', 1), ('field', 1), ('semantic', 1), ('web', 1), ('social', 1), ('network', 1), ('multi', 1), ('agent', 1), ('system', 1), ('tcci', 1), ('strives', 1), ('cover', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('security', 1), ('privacy', 1), ('applied', 1), ('cryptography', 1), ('engineering', 1), ('space', 1), ('held', 1), ('goa', 1), ('india', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('thoroughly', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('security', 1), ('protocol', 1), ('held', 1), ('cambridge', 1), ('uk', 1), ('march', 1), ('volume', 1), ('consists', 1), ('revised', 1), ('invited', 1), ('paper', 1), ('presented', 1)]
[('nbsp', 3), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptology', 1), ('information', 1), ('security', 1), ('asiacrypt', 1), ('held', 1), ('hong', 1), ('kong', 1), ('china', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('game', 1), ('learning', 1), ('alliance', 1), ('gala', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('december', 1), ('revised', 1), ('regular', 1), ('presented', 1), ('together', 1), ('poster', 1)]
[('book', 2), ('india', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cryptology', 1), ('indocrypt', 1), ('held', 1), ('chennai', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('personal', 1), ('analytics', 1), ('privacy', 1), ('pap', 1), ('held', 1), ('skopje', 1), ('macedonia', 1), ('september', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('symposium', 1), ('workshop', 1), ('th', 1), ('international', 1), ('conference', 1), ('security', 1), ('privacy', 1), ('anonymity', 1), ('computation', 1), ('communication', 1), ('storage', 1), ('spaccs', 1), ('guangzhou', 1), ('china', 1), ('december', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('workshop', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('symposium', 1), ('sete', 1), ('held', 1), ('conjunction', 1), ('icwl', 1), ('cape', 1), ('town', 1), ('south', 1), ('africa', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('carefully', 1)]
[('bx', 2), ('consistency', 2), ('nbsp', 2), ('source', 2), ('bidirectional', 1), ('transformation', 1), ('mean', 1), ('maintaining', 1), ('multiple', 1), ('information', 1), ('edited', 1), ('others', 1), ('need', 1), ('updating', 1), ('restore', 1), ('application', 1), ('database', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('language', 1), ('automaton', 1), ('theory', 1), ('application', 1), ('lata', 1), ('held', 1), ('ramat', 1), ('gan', 1), ('israel', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('nbsp', 2), ('persuasive', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('technology', 1), ('held', 1), ('waterloo', 1), ('canada', 1), ('april', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('nbsp', 1), ('workshop', 1), ('post', 1), ('quantum', 1), ('cryptography', 1), ('pqcrypto', 1), ('held', 1), ('fort', 1), ('lauderdale', 1), ('fl', 1), ('usa', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('latin', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('american', 1), ('symposium', 1), ('theoretical', 1), ('informatics', 1), ('held', 1), ('buenos', 1), ('aire', 1), ('argentina', 1), ('april', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('architecture', 1), ('computing', 1), ('system', 1), ('arc', 1), ('held', 1), ('braunschweig', 1), ('germany', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('nasa', 1), ('formal', 1), ('method', 1), ('nfm', 1), ('held', 1), ('newport', 1), ('news', 1), ('va', 1), ('usa', 1), ('april', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('rsa', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('cryptographer', 1), ('track', 1), ('conference', 1), ('ct', 1), ('held', 1), ('san', 1), ('francisco', 1), ('ca', 1), ('usa', 1), ('march', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nbsp', 3), ('three', 1), ('volume', 1), ('lncs', 1), ('constitute', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptographic', 1), ('technique', 1), ('eurocrypt', 1), ('held', 1), ('tel', 1), ('aviv', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('evolutionary', 1), ('computation', 1), ('combinatorial', 1), ('optimization', 1), ('evomusart', 1), ('held', 1), ('parma', 1), ('italy', 1), ('april', 1), ('co', 1), ('located', 1), ('evo', 1), ('event', 1), ('eurogp', 1), ('evocop', 1)]
[('nbsp', 3), ('three', 1), ('volume', 1), ('lncs', 1), ('constitute', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptographic', 1), ('technique', 1), ('eurocrypt', 1), ('held', 1), ('tel', 1), ('aviv', 1)]
[('nbsp', 3), ('three', 1), ('volume', 1), ('lncs', 1), ('constitute', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptographic', 1), ('technique', 1), ('eurocrypt', 1), ('held', 1), ('tel', 1), ('aviv', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptographic', 1), ('technique', 1), ('africa', 1), ('africacrypt', 1), ('held', 1), ('marrakesh', 1), ('morocco', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('communication', 1), ('security', 1), ('icics', 1), ('held', 1), ('beijing', 1), ('china', 1), ('december', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('paper', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('workshop', 1), ('constructive', 1), ('side', 1), ('channel', 1), ('analysis', 1), ('secure', 1), ('design', 1), ('cosade', 1), ('held', 1), ('singapore', 1), ('april', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshopon', 1), ('combinatorial', 1), ('algorithm', 1), ('iwoca', 1), ('held', 1), ('newcastle', 1), ('nsw', 1), ('australia', 1), ('july', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('together', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('approximation', 1), ('online', 1), ('algorithm', 1), ('waoa', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('september', 1), ('part', 1), ('algo', 1), ('revised', 1), ('full', 1)]
[('revised', 2), ('selected', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('th', 1), ('international', 1), ('symposium', 1), ('trend', 1), ('functional', 1), ('programming', 1), ('tfp', 1), ('held', 1), ('canterbury', 1), ('uk', 1), ('june', 1), ('full', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('structured', 1), ('object', 1), ('oriented', 1), ('formal', 1), ('language', 1), ('method', 1), ('sofl', 1), ('msvl', 1), ('held', 1), ('xi', 1), ('china', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('transaction', 1), ('publish', 1), ('research', 1), ('computer', 1), ('based', 1), ('method', 1), ('computational', 1), ('collective', 1), ('intelligence', 1), ('cci', 1), ('application', 1), ('wide', 1), ('range', 1), ('field', 1), ('semantic', 1), ('web', 1), ('social', 1), ('network', 1), ('multi', 1), ('agent', 1), ('system', 1), ('tcci', 1), ('strives', 1), ('cover', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('applied', 1), ('reconfigurable', 1), ('computing', 1), ('arc', 1), ('held', 1), ('santorini', 1), ('greece', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('net', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('communication', 1), ('technology', 1), ('vehicle', 1), ('car', 1), ('train', 1), ('aircraft', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('demo', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('smart', 1), ('computing', 1), ('communication', 1), ('smartcom', 1), ('held', 1), ('shenzhen', 1), ('china', 1), ('december', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('system', 2), ('major', 1), ('challenge', 1), ('modern', 1), ('software', 1), ('become', 1), ('cost', 1), ('effective', 1), ('versatile', 1), ('flexible', 1), ('resilient', 1), ('energy', 1), ('efficient', 1), ('customizable', 1), ('configurable', 1), ('reacting', 1), ('run', 1), ('time', 1), ('change', 1), ('occur', 1), ('within', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('andrei', 1), ('ershov', 1), ('informatics', 1), ('conference', 1), ('psi', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('workshop', 1), ('focussing', 1), ('text', 1), ('processing', 1), ('held', 1), ('forum', 1), ('information', 1), ('retrieval', 1), ('evaluation', 1), ('fire', 1), ('kolkata', 1), ('india', 1), ('december', 1), ('full', 1), ('paper', 1), ('selected', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('openshmem', 1), ('workshop', 1), ('held', 1), ('annapolis', 1), ('md', 1), ('usa', 1), ('august', 1), ('full', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1), ('discus', 1), ('variety', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('symposium', 1), ('graph', 1), ('drawing', 1), ('network', 1), ('visualization', 1), ('gd', 1), ('held', 1), ('boston', 1), ('usa', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('challenge', 1), ('computational', 1), ('method', 1), ('clinical', 1), ('application', 1), ('musculoskeletal', 1), ('imaging', 1), ('mski', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('quebec', 1), ('city', 1), ('qc', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('aided', 1), ('system', 1), ('theory', 1), ('eurocast', 1), ('held', 1), ('la', 1), ('palmas', 1), ('de', 1), ('gran', 1), ('canaria', 1), ('spain', 1), ('february', 1), ('full', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('aided', 1), ('system', 1), ('theory', 1), ('eurocast', 1), ('held', 1), ('la', 1), ('palmas', 1), ('de', 1), ('gran', 1), ('canaria', 1), ('spain', 1), ('february', 1), ('full', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('smart', 1), ('card', 1), ('research', 1), ('advanced', 1), ('application', 1), ('cardis', 1), ('held', 1), ('lugano', 1), ('switzerland', 1), ('november', 1), ('revised', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('web', 1), ('wireless', 1), ('geographical', 1), ('information', 1), ('system', 1), ('gi', 1), ('held', 1), ('coruña', 1), ('spain', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('included', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('abstract', 1), ('state', 1), ('machine', 1), ('alloy', 1), ('tla', 1), ('vdm', 1), ('abz', 1), ('held', 1), ('southampton', 1), ('uk', 1), ('june', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('second', 1), ('workshop', 1), ('understanding', 1), ('human', 1), ('activity', 1), ('sensor', 1), ('uha', 1), ('d', 1), ('held', 1), ('conjunction', 1), ('rd', 1), ('conference', 1), ('pattern', 1), ('recognition', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('design', 1), ('science', 1), ('research', 1), ('information', 1), ('system', 1), ('technology', 1), ('desrist', 1), ('held', 1), ('june', 1), ('chennai', 1), ('india', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('australasian', 1), ('database', 1), ('conference', 1), ('adc', 1), ('held', 1), ('gold', 1), ('coast', 1), ('qld', 1), ('australia', 1), ('full', 1), ('plus', 1), ('short', 1), ('presented', 1), ('together', 1), ('demo', 1), ('carefully', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('final', 1), ('marie', 1), ('skłodowska', 1), ('curie', 1), ('initial', 1), ('training', 1), ('network', 1), ('digital', 1), ('cultural', 1), ('heritage', 1), ('held', 1), ('olimje', 1), ('slovenia', 1), ('revised', 1), ('full', 1), ('paper', 1), ('included', 1)]
[('nbsp', 2), ('symbiotic', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('interaction', 1), ('held', 1), ('eindhoven', 1), ('netherlands', 1), ('december', 1), ('full', 1), ('short', 1), ('report', 1), ('presented', 1)]
[('russia', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('computer', 1), ('science', 1), ('symposium', 1), ('csr', 1), ('held', 1), ('moscow', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('lecture', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nbsp', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('engineering', 1), ('icwe', 1), ('held', 1), ('cáceres', 1), ('spain', 1), ('june', 1), ('full', 1), ('research', 1), ('short', 1), ('presented', 1), ('together', 1), ('practice', 1)]
[('volume', 2), ('double', 1), ('set', 1), ('lnai', 1), ('nbsp', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('eg', 1), ('ice', 1), ('held', 1), ('lausanne', 1), ('switzerland', 1), ('june', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('workshop', 1), ('rd', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('euro', 1), ('par', 1), ('held', 1), ('santiago', 1), ('de', 1), ('compostela', 1), ('spain', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('accelerator', 1), ('programming', 1), ('using', 1), ('directive', 1), ('waccpd', 1), ('held', 1), ('denver', 1), ('co', 1), ('usa', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('nd', 1), ('iberoamerican', 1), ('nbsp', 1), ('congress', 1), ('pattern', 1), ('recognition', 1), ('ciarp', 1), ('held', 1), ('valparaíso', 1), ('chile', 1), ('november', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('volume', 2), ('idea', 1), ('originated', 1), ('need', 1), ('book', 1), ('student', 1), ('support', 1), ('training', 1), ('several', 1), ('tutorial', 1), ('different', 1), ('aspect', 1), ('rv', 1), ('organized', 1), ('seven', 1), ('chapter', 1), ('topic', 1), ('covered', 1), ('include', 1)]
[('conference', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('security', 1), ('cryptology', 1), ('inscrypt', 1), ('held', 1), ('xi', 1), ('china', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('gi', 1), ('itg', 1), ('conference', 1), ('measurement', 1), ('modelling', 1), ('evaluation', 1), ('computing', 1), ('system', 1), ('mmb', 1), ('held', 1), ('erlangen', 1), ('germany', 1), ('february', 1), ('full', 1), ('phd', 1), ('track', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('symposium', 1), ('image', 1), ('video', 1), ('technology', 1), ('psivt', 1), ('held', 1), ('wuhan', 1), ('china', 1), ('november', 1), ('total', 1), ('revised', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('international', 1), ('workshop', 1), ('analysis', 1), ('digital', 1), ('cultural', 1), ('heritage', 1), ('held', 1), ('funchal', 1), ('madeira', 1), ('portugal', 1), ('june', 1), ('full', 1), ('poster', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('international', 2), ('segmentation', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('third', 1), ('miccai', 1), ('brainlesion', 1), ('workshop', 1), ('brainles', 1), ('multimodal', 1), ('brain', 1), ('tumor', 1), ('brat', 1), ('white', 1), ('matter', 1), ('hyperintensities', 1), ('wmh', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('symposium', 1), ('foundation', 1), ('practice', 1), ('security', 1), ('fps', 1), ('held', 1), ('nancy', 1), ('france', 1), ('october', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('service', 1), ('computing', 1), ('scc', 1), ('part', 1), ('scf', 1), ('held', 1), ('seattle', 1), ('wa', 1), ('usa', 1), ('june', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('mexican', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('mcpr', 1), ('held', 1), ('puebla', 1), ('mexico', 1), ('june', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('cognitive', 1), ('computing', 1), ('icc', 1), ('held', 1), ('part', 1), ('scf', 1), ('seattle', 1), ('wa', 1), ('usa', 1), ('june', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('detection', 1), ('intrusion', 1), ('malware', 1), ('vulnerability', 1), ('assessment', 1), ('dimva', 1), ('held', 1), ('saclay', 1), ('france', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('information', 1), ('security', 1), ('theory', 1), ('practice', 1), ('wistp', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1), ('september', 1), ('nbsp', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('volume', 2), ('paper', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('bigdata', 1), ('held', 1), ('part', 1), ('scf', 1), ('seattle', 1), ('wa', 1), ('usa', 1), ('june', 1), ('full', 1), ('together', 1), ('short', 1), ('published', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('mobile', 1), ('service', 1), ('aim', 1), ('held', 1), ('part', 1), ('scf', 1), ('seattle', 1), ('wa', 1), ('usa', 1), ('june', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('conference', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('blockchain', 1), ('icbc', 1), ('held', 1), ('part', 1), ('service', 1), ('federation', 1), ('scf', 1), ('seattle', 1), ('usa', 1), ('june', 1), ('full', 1), ('short', 1)]
[('conference', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('security', 1), ('application', 1), ('wisa', 1), ('held', 1), ('jeju', 1), ('island', 1), ('korea', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('service', 3), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('world', 1), ('congress', 1), ('held', 1), ('part', 1), ('conference', 1), ('federation', 1), ('scf', 1), ('seattle', 1), ('usa', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('nbsp', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('satisfiability', 1), ('testing', 1), ('sat', 1), ('held', 1), ('oxford', 1), ('uk', 1), ('july', 1), ('revised', 1), ('full', 1), ('short', 1), ('tool', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computing', 1), ('combinatorics', 1), ('cocoon', 1), ('held', 1), ('qing', 1), ('dao', 1), ('china', 1), ('july', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('nbsp', 1), ('conference', 1), ('image', 1), ('signal', 1), ('processing', 1), ('icisp', 1), ('held', 1), ('cherbourg', 1), ('france', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('articulated', 1), ('motion', 1), ('deformable', 1), ('object', 1), ('amdo', 1), ('held', 1), ('palma', 1), ('de', 1), ('mallorca', 1), ('spain', 1), ('july', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('singapore', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('combinatorial', 1), ('algorithm', 1), ('iwoca', 1), ('held', 1), ('july', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('interactive', 1), ('theorem', 1), ('proving', 1), ('itp', 1), ('held', 1), ('oxford', 1), ('uk', 1), ('july', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('five', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('melbourne', 1), ('australia', 1), ('july', 1), ('apart', 1), ('general', 1)]
[('five', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('melbourne', 1), ('australia', 1), ('july', 1), ('apart', 1), ('general', 1)]
[('five', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('melbourne', 1), ('australia', 1), ('july', 1), ('apart', 1), ('general', 1)]
[('five', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('melbourne', 1), ('australia', 1), ('july', 1), ('apart', 1), ('general', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('evolutionary', 1), ('computation', 1), ('combinatorial', 1), ('optimization', 1), ('evocop', 1), ('held', 1), ('parma', 1), ('italy', 1), ('april', 1), ('co', 1), ('located', 1), ('evo', 1), ('event', 1), ('eurogp', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('european', 1), ('conference', 1), ('genetic', 1), ('programming', 1), ('eurogp', 1), ('held', 1), ('parma', 1), ('italy', 1), ('april', 1), ('co', 1), ('located', 1), ('evo', 1), ('event', 1), ('evocop', 1), ('evomusart', 1), ('evoapplications', 1), ('revised', 1)]
[('paper', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('processing', 1), ('applied', 1), ('mathematics', 1), ('ppam', 1), ('held', 1), ('lublin', 1), ('poland', 1), ('september', 1), ('regular', 1), ('presented', 1)]
[('paper', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('processing', 1), ('applied', 1), ('mathematics', 1), ('ppam', 1), ('held', 1), ('lublin', 1), ('poland', 1), ('september', 1), ('regular', 1), ('presented', 1)]
[('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('energy', 1), ('minimization', 1), ('method', 1), ('computer', 1), ('vision', 1), ('pattern', 1), ('recognition', 1), ('emmcvpr', 1), ('held', 1), ('venice', 1), ('italy', 1), ('october', 1), ('november', 1), ('revised', 1), ('full', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('iacr', 1), ('international', 1), ('conference', 1), ('practice', 1), ('theory', 1), ('public', 1), ('key', 1), ('cryptography', 1), ('pkc', 1), ('held', 1), ('rio', 1), ('de', 1), ('janeiro', 1), ('brazil', 1), ('march', 1), ('revised', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('iacr', 1), ('international', 1), ('conference', 1), ('practice', 1), ('theory', 1), ('public', 1), ('key', 1), ('cryptography', 1), ('pkc', 1), ('held', 1), ('rio', 1), ('de', 1), ('janeiro', 1), ('brazil', 1), ('march', 1), ('revised', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('modelling', 1), ('simulation', 1), ('autonomous', 1), ('system', 1), ('mesa', 1), ('held', 1), ('rome', 1), ('italy', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('included', 1)]
[('conference', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('application', 1), ('evolutionary', 1), ('computation', 1), ('evoapplications', 1), ('held', 1), ('parma', 1), ('italy', 1), ('april', 1), ('collocated', 1), ('evo', 1)]
[('conference', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('number', 1), ('theoretic', 1), ('method', 1), ('cryptology', 1), ('nutmic', 1), ('held', 1), ('warsaw', 1), ('poland', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('risk', 1), ('security', 1), ('internet', 1), ('system', 1), ('crisis', 1), ('held', 1), ('dinard', 1), ('france', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('statistical', 1), ('atlas', 1), ('computational', 1), ('model', 1), ('heart', 1), ('acdc', 1), ('mmwhs', 1), ('challenge', 1), ('held', 1), ('conjunction', 1), ('miccai', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('nbsp', 1), ('conference', 1), ('transforming', 1), ('digital', 1), ('world', 1), ('iconference', 1), ('held', 1), ('sheffield', 1), ('uk', 1), ('march', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1), ('abstract', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('ir', 1), ('research', 1), ('ecir', 1), ('held', 1), ('grenoble', 1), ('france', 1), ('march', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1), ('demo', 1), ('workshop', 1)]
[('volume', 2), ('selected', 2), ('paper', 2), ('set', 1), ('lncs', 1), ('constitutes', 1), ('revised', 1), ('cicling', 1), ('conference', 1), ('took', 1), ('place', 1), ('konya', 1), ('turkey', 1), ('april', 1), ('total', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('conference', 1), ('multimedia', 1), ('pcm', 1), ('held', 1), ('harbin', 1), ('china', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('conference', 1), ('multimedia', 1), ('pcm', 1), ('held', 1), ('harbin', 1), ('china', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('workshop', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('database', 1), ('system', 1), ('advanced', 1), ('application', 1), ('dasfaa', 1), ('held', 1), ('gold', 1), ('coast', 1), ('qld', 1), ('australia', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('bioinspired', 1), ('optimization', 1), ('model', 1), ('application', 1), ('bioma', 1), ('held', 1), ('paris', 1), ('france', 1), ('full', 1)]
[('workshop', 3), ('book', 1), ('contains', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('held', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('interact', 1), ('mumbai', 1), ('india', 1), ('september', 1), ('dealing', 1)]
[('th', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('ifip', 1), ('wg', 1), ('conference', 1), ('formal', 1), ('technique', 1), ('distributed', 1), ('object', 1), ('component', 1), ('system', 1), ('forte', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('june', 1), ('part', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('algorithm', 1), ('model', 1), ('web', 1), ('graph', 1), ('waw', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('nbsp', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('semantic', 1), ('web', 1), ('conference', 1), ('eswc', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('information', 1), ('system', 1), ('engineering', 1), ('caise', 1), ('held', 1), ('talinn', 1), ('estonia', 1), ('june', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('isc', 1), ('high', 1), ('performance', 1), ('held', 1), ('frankfurt', 1), ('germany', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('machine', 1), ('computation', 1), ('universality', 1), ('mcu', 1), ('held', 1), ('fontainebleau', 1), ('france', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('presentation', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('eurohaptics', 1), ('held', 1), ('pisa', 1), ('italy', 1), ('june', 1), ('paper', 1), ('oral', 1), ('poster', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('biomedical', 1), ('image', 1), ('registration', 1), ('wbir', 1), ('held', 1), ('leiden', 1), ('netherlands', 1), ('june', 1), ('full', 1), ('nbsp', 1), ('poster', 1), ('paper', 1), ('included', 1), ('volume', 1)]
[('presentation', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('eurohaptics', 1), ('held', 1), ('pisa', 1), ('italy', 1), ('june', 1), ('paper', 1), ('oral', 1), ('poster', 1), ('presented', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('latent', 1), ('variable', 1), ('analysis', 1), ('signal', 1), ('separation', 1), ('lva', 1), ('ica', 1), ('held', 1), ('guildford', 1), ('uk', 1), ('july', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('nbsp', 1), ('proceeding', 1), ('five', 1), ('international', 1), ('workshop', 1), ('held', 1), ('framework', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('symposium', 1), ('image', 1), ('video', 1), ('technology', 1), ('psivt', 1), ('wuhan', 1), ('china', 1), ('november', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('integration', 1), ('artificial', 1), ('intelligence', 1), ('operation', 1), ('research', 1), ('technique', 1), ('constraint', 1), ('programming', 1), ('combinatorial', 1), ('optimization', 1), ('problem', 1), ('cpaior', 1), ('held', 1), ('delft', 1)]
[('volume', 2), ('double', 1), ('set', 1), ('lnai', 1), ('nbsp', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('eg', 1), ('ice', 1), ('held', 1), ('lausanne', 1), ('switzerland', 1), ('june', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('coordination', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('model', 1), ('language', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('june', 1), ('part', 1), ('federated', 1), ('distributed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('international', 1), ('conference', 1), ('distributed', 1), ('application', 1), ('interoperable', 1), ('system', 1), ('dais', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('june', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('data', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('mining', 1), ('big', 1), ('dmbd', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('june', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('ada', 2), ('europe', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('reliable', 1), ('software', 1), ('technology', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('june', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('applied', 1), ('cryptography', 1), ('network', 1), ('security', 1), ('acns', 1), ('held', 1), ('leuven', 1), ('belgium', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('icc', 1), ('held', 1), ('wuxi', 1), ('china', 1), ('june', 1), ('total', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('icc', 1), ('held', 1), ('wuxi', 1), ('china', 1), ('june', 1), ('total', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('icc', 1), ('held', 1), ('wuxi', 1), ('china', 1), ('june', 1), ('total', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('wireless', 1), ('algorithm', 1), ('system', 1), ('application', 1), ('wasa', 1), ('held', 1), ('tianjin', 1), ('china', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('computation', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('unconventional', 1), ('natural', 1), ('ucnc', 1), ('held', 1), ('fontainebleau', 1), ('france', 1), ('june', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('automaton', 2), ('volume', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('workshop', 1), ('cellular', 1), ('discrete', 1), ('complex', 1), ('system', 1), ('held', 1), ('ghent', 1), ('belgium', 1), ('june', 1), ('regular', 1), ('paper', 1), ('presented', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('scientific', 1), ('satellite', 1), ('event', 1), ('conjunction', 1), ('th', 1), ('international', 1), ('conference', 1), ('service', 1), ('oriented', 1), ('computing', 1), ('icsoc', 1), ('málaga', 1), ('spain', 1), ('november', 1)]
[('paper', 2), ('book', 1), ('contains', 1), ('revised', 1), ('extended', 1), ('version', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('icpram', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('february', 1), ('full', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 2), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advance', 1), ('swarm', 1), ('intelligence', 1), ('icsi', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('june', 1), ('nbsp', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('volume', 2), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advance', 1), ('swarm', 1), ('intelligence', 1), ('icsi', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('june', 1), ('nbsp', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('model', 1), ('checking', 1), ('software', 1), ('spin', 1), ('held', 1), ('malaga', 1), ('spain', 1), ('june', 1), ('presented', 1), ('short', 1), ('demo', 1), ('tool', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('symposium', 1), ('cyber', 1), ('security', 1), ('cryptography', 1), ('machine', 1), ('learning', 1), ('cscml', 1), ('held', 1), ('beer', 1), ('sheva', 1), ('israel', 1), ('june', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('formal', 1), ('method', 1), ('sefm', 1), ('held', 1), ('part', 1), ('staf', 1), ('toulouse', 1), ('france', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('graph', 1), ('transformation', 1), ('icgt', 1), ('held', 1), ('part', 1), ('staf', 1), ('toulouse', 1), ('france', 1), ('june', 1), ('full', 1), ('short', 1), ('keynote', 1), ('presented', 1)]
[('paper', 3), ('invited', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('test', 1), ('proof', 1), ('tap', 1), ('held', 1), ('part', 1), ('staf', 1), ('toulouse', 1), ('france', 1), ('june', 1), ('regular', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('modelling', 1), ('foundation', 1), ('application', 1), ('ecmfa', 1), ('held', 1), ('part', 1), ('staf', 1), ('toulouse', 1), ('france', 1), ('june', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('model', 1), ('transformation', 1), ('icmt', 1), ('held', 1), ('part', 1), ('staf', 1), ('toulouse', 1), ('france', 1), ('june', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('edge', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('computing', 1), ('held', 1), ('seattle', 1), ('wa', 1), ('usa', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('internet', 1), ('thing', 1), ('iciot', 1), ('held', 1), ('seattle', 1), ('wa', 1), ('usa', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('image', 1), ('analysis', 1), ('recognition', 1), ('iciar', 1), ('held', 1), ('póvoa', 1), ('de', 1), ('varzim', 1), ('portugal', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('volume', 2), ('paper', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('service', 1), ('icws', 1), ('held', 1), ('part', 1), ('scf', 1), ('seattle', 1), ('wa', 1), ('usa', 1), ('june', 1), ('full', 1), ('together', 1), ('short', 1), ('published', 1)]
[('conference', 2), ('cloud', 2), ('volume', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('computing', 1), ('held', 1), ('part', 1), ('service', 1), ('federation', 1), ('scf', 1), ('seattle', 1), ('wa', 1), ('usa', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('international', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('cross', 1), ('cultural', 1), ('design', 1), ('ccd', 1), ('held', 1), ('part', 1), ('hci', 1), ('la', 1), ('vega', 1), ('nv', 1), ('usa', 1), ('july', 1), ('total', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('logic', 1), ('based', 1), ('program', 1), ('synthesis', 1), ('transformation', 1), ('lopstr', 1), ('held', 1), ('namur', 1), ('belgium', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('held', 1), ('th', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('athens', 1), ('greece', 1), ('october', 1), ('first', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('annual', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('working', 1), ('conference', 1), ('data', 1), ('application', 1), ('security', 1), ('privacy', 1), ('dbsec', 1), ('held', 1), ('bergamo', 1), ('italy', 1), ('july', 1), ('full', 1), ('paper', 1)]
[('nbsp', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('symposium', 1), ('formal', 1), ('method', 1), ('fm', 1), ('held', 1), ('oxford', 1), ('uk', 1), ('july', 1), ('full', 1), ('presented', 1), ('together', 1), ('invited', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('descriptional', 1), ('complexity', 1), ('formal', 1), ('system', 1), ('dcfs', 1), ('held', 1), ('halifax', 1), ('n', 1), ('canada', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nbsp', 3), ('reality', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('augmented', 1), ('virtual', 1), ('computer', 1), ('graphic', 1), ('avr', 1), ('held', 1), ('otranto', 1), ('italy', 1), ('june', 1)]
[('nbsp', 3), ('reality', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('augmented', 1), ('virtual', 1), ('computer', 1), ('graphic', 1), ('avr', 1), ('held', 1), ('otranto', 1), ('italy', 1), ('june', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('queueing', 1), ('theory', 1), ('network', 1), ('application', 1), ('qtna', 1), ('held', 1), ('tsukuba', 1), ('japan', 1), ('july', 1), ('full', 1), ('together', 1), ('short', 1), ('included', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('mathematical', 1), ('software', 1), ('icms', 1), ('held', 1), ('south', 1), ('bend', 1), ('usa', 1), ('july', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('numerous', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('high', 1), ('performance', 1), ('computing', 1), ('science', 1), ('engineering', 1), ('hpcse', 1), ('held', 1), ('karolinka', 1), ('czech', 1), ('republic', 1), ('paper', 1)]
[('book', 2), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('combinatorial', 1), ('optimization', 1), ('isco', 1), ('held', 1), ('marrakesh', 1), ('marocco', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('nbsp', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('joint', 1), ('conference', 1), ('apweb', 1), ('waim', 1), ('held', 1), ('macau', 1), ('china', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('professor', 2), ('festschrift', 1), ('published', 1), ('honor', 1), ('edward', 1), ('lee', 1), ('robert', 1), ('pepper', 1), ('distinguished', 1), ('emeritus', 1), ('graduate', 1), ('school', 1), ('department', 1), ('electrical', 1), ('engineering', 1), ('computer', 1), ('science', 1), ('university', 1), ('california', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('nbsp', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('joint', 1), ('conference', 1), ('apweb', 1), ('waim', 1), ('held', 1), ('macau', 1), ('china', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('software', 3), ('machine', 2), ('learning', 2), ('artefact', 1), ('emerging', 1), ('area', 1), ('interaction', 1), ('analysis', 1), ('community', 1), ('nbsp', 1), ('increased', 1), ('productivity', 1), ('engineering', 1), ('relies', 1), ('creation', 1), ('new', 1), ('adaptive', 1), ('scalable', 1), ('tool', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('computability', 1), ('europe', 1), ('cie', 1), ('held', 1), ('kiel', 1), ('germany', 1), ('july', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('implementation', 1), ('application', 1), ('automaton', 1), ('ciaa', 1), ('held', 1), ('charlottetown', 1), ('pe', 1), ('canada', 1), ('july', 1), ('august', 1), ('regular', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('internet', 1), ('distributed', 1), ('computing', 1), ('system', 1), ('idcs', 1), ('held', 1), ('mana', 1), ('island', 1), ('fiji', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('european', 1), ('conference', 1), ('advance', 1), ('database', 1), ('information', 1), ('system', 1), ('adbis', 1), ('held', 1), ('budapest', 1), ('hungary', 1), ('september', 1), ('regular', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('selected', 2), ('paper', 2), ('nbsp', 2), ('book', 1), ('contains', 1), ('revised', 1), ('extended', 1), ('version', 1), ('th', 1), ('international', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('icpram', 1), ('held', 1), ('rome', 1), ('italy', 1), ('february', 1), ('full', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('security', 1), ('cryptology', 1), ('icisc', 1), ('held', 1), ('seoul', 1), ('south', 1), ('korea', 1), ('november', 1), ('december', 1), ('full', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('latent', 1), ('variable', 1), ('analysis', 1), ('signal', 1), ('separation', 1), ('lva', 1), ('ica', 1), ('held', 1), ('grenoble', 1), ('france', 1), ('feburary', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('mobile', 1), ('web', 1), ('intelligent', 1), ('information', 1), ('system', 1), ('mobiwis', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('august', 1), ('full', 1), ('together', 1), ('short', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('satellite', 1), ('event', 1), ('th', 1), ('extended', 1), ('semantic', 1), ('web', 1), ('eswc', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1), ('june', 1), ('volume', 1), ('contains', 1), ('poster', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('language', 1), ('automaton', 1), ('theory', 1), ('application', 1), ('lata', 1), ('planned', 1), ('held', 1), ('milan', 1), ('italy', 1), ('march', 1), ('due', 1), ('corona', 1), ('pandemic', 1), ('actual', 1)]
[('vr', 2), ('advent', 1), ('consumer', 1), ('market', 1), ('virtual', 1), ('reality', 1), ('technology', 1), ('next', 1), ('revolution', 1), ('visual', 1), ('entertainment', 1), ('already', 1), ('horizon', 1), ('real', 1), ('enable', 1), ('experience', 1), ('live', 1), ('action', 1), ('movie', 1), ('sport', 1), ('broadcast', 1), ('concert', 1), ('video', 1), ('etc', 1), ('true', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('security', 1), ('iwsec', 1), ('held', 1), ('sendai', 1), ('japan', 1), ('september', 1), ('nbsp', 1), ('regular', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('volume', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('verified', 1), ('software', 1), ('theory', 1), ('tool', 1), ('experiment', 1), ('vstte', 1), ('held', 1), ('new', 1), ('york', 1), ('city', 1), ('ny', 1), ('usa', 1), ('july', 1), ('full', 1), ('paper', 1)]
[('volume', 2), ('lncs', 2), ('set', 1), ('constitutes', 1), ('conjunction', 1), ('lnai', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('held', 1), ('wuhan', 1), ('china', 1), ('august', 1)]
[('st', 2), ('kitts', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('held', 1), ('rd', 1), ('international', 1), ('conference', 1), ('financial', 1), ('cryptography', 1), ('data', 1), ('security', 1), ('fc', 1), ('nevis', 1), ('february', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('volume', 2), ('lncs', 2), ('set', 1), ('constitutes', 1), ('conjunction', 1), ('lnai', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('held', 1), ('wuhan', 1), ('china', 1), ('august', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('expert', 1), ('system', 1), ('application', 1), ('dexa', 1), ('held', 1), ('regensburg', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('mathematical', 1), ('aspect', 1), ('computer', 1), ('information', 1), ('science', 1), ('macis', 1), ('held', 1), ('gebze', 1), ('turkey', 1), ('november', 1), ('revised', 1), ('short', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('passive', 1), ('active', 1), ('measurement', 1), ('pam', 1), ('planned', 1), ('held', 1), ('eugene', 1), ('oregon', 1), ('usa', 1), ('march', 1), ('due', 1), ('corona', 1), ('pandemic', 1), ('organized', 1)]
[('nbsp', 3), ('lncs', 1), ('volume', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('chinese', 1), ('conference', 1), ('biometric', 1), ('recognition', 1), ('held', 1), ('urumchi', 1), ('china', 1), ('august', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('book', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('processing', 1), ('applied', 1), ('mathematics', 1), ('ppam', 1), ('held', 1), ('bialystok', 1), ('poland', 1), ('september', 1), ('regular', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('joint', 1), ('iapr', 1), ('international', 1), ('workshop', 1), ('structural', 1), ('syntactic', 1), ('statistical', 1), ('pattern', 1), ('recognition', 1), ('sspr', 1), ('held', 1), ('beijing', 1), ('china', 1), ('august', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('symposium', 1), ('dependable', 1), ('software', 1), ('engineering', 1), ('theory', 1), ('tool', 1), ('application', 1), ('setta', 1), ('held', 1), ('beijing', 1), ('china', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('evo', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('evolutionary', 1), ('computation', 1), ('combinatorial', 1), ('optimization', 1), ('evocop', 1), ('held', 1), ('part', 1), ('seville', 1), ('spain', 1), ('april', 1), ('co', 1), ('located', 1), ('event', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('quantitative', 1), ('evaluation', 1), ('system', 1), ('qest', 1), ('held', 1), ('beijing', 1), ('china', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('evo', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('european', 1), ('conference', 1), ('application', 1), ('evolutionary', 1), ('computation', 1), ('evoapplications', 1), ('held', 1), ('part', 1), ('seville', 1), ('spain', 1), ('april', 1), ('co', 1), ('located', 1), ('event', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('collaboration', 1), ('technology', 1), ('criwg', 1), ('held', 1), ('costa', 1), ('de', 1), ('caparica', 1), ('portugal', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('evo', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('european', 1), ('conference', 1), ('genetic', 1), ('programming', 1), ('eurogp', 1), ('held', 1), ('part', 1), ('seville', 1), ('spain', 1), ('april', 1), ('co', 1), ('located', 1), ('event', 1), ('evocop', 1), ('evomusart', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('modeling', 1), ('analysis', 1), ('timed', 1), ('system', 1), ('format', 1), ('held', 1), ('beijing', 1), ('china', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('volume', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('post', 1), ('quantum', 1), ('cryptography', 1), ('pqcrypto', 1), ('held', 1), ('paris', 1), ('france', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nbsp', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('algorithmic', 1), ('game', 1), ('theory', 1), ('sagt', 1), ('held', 1), ('beijing', 1), ('china', 1), ('september', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('plenary', 1)]
[('evo', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('music', 1), ('sound', 1), ('art', 1), ('design', 1), ('evomusart', 1), ('held', 1), ('part', 1), ('seville', 1), ('spain', 1), ('april', 1), ('co', 1), ('located', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('collaboration', 1), ('technology', 1), ('collabtech', 1), ('held', 1), ('costa', 1), ('de', 1), ('caparica', 1), ('september', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('european', 1), ('conference', 1), ('ir', 1), ('research', 1), ('ecir', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('april', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('reproducibility', 1)]
[('nbsp', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('helping', 1), ('special', 1), ('need', 1), ('icchp', 1), ('held', 1), ('linz', 1), ('austria', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('european', 1), ('conference', 1), ('ir', 1), ('research', 1), ('ecir', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('april', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('reproducibility', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('static', 1), ('analysis', 1), ('symposium', 1), ('sa', 1), ('held', 1), ('freiburg', 1), ('germany', 1), ('august', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('volume', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('ihci', 1), ('held', 1), ('nbsp', 1), ('allahabad', 1), ('india', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('security', 1), ('cryptography', 1), ('network', 1), ('scn', 1), ('held', 1), ('amalfi', 1), ('italy', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('ad', 1), ('hoc', 1), ('mobile', 1), ('wireless', 1), ('network', 1), ('adhoc', 1), ('held', 1), ('st', 1), ('malo', 1), ('france', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('plus', 1), ('invited', 1), ('talk', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('integer', 1), ('programming', 1), ('combinatorial', 1), ('optimization', 1), ('ipco', 1), ('held', 1), ('london', 1), ('uk', 1), ('june', 1), ('full', 1), ('version', 1), ('extended', 1), ('abstract', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('formal', 1), ('method', 1), ('industrial', 1), ('critical', 1), ('system', 1), ('fmics', 1), ('held', 1), ('maynooth', 1), ('ireland', 1), ('september', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('aided', 1), ('system', 1), ('theory', 1), ('eurocast', 1), ('held', 1), ('la', 1), ('palmas', 1), ('de', 1), ('gran', 1), ('canaria', 1), ('spain', 1), ('february', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('reversible', 1), ('computation', 1), ('rc', 1), ('held', 1), ('leicester', 1), ('uk', 1), ('september', 1), ('full', 1), ('short', 1), ('tutorial', 1), ('paper', 1), ('included', 1), ('volume', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('aided', 1), ('system', 1), ('theory', 1), ('eurocast', 1), ('held', 1), ('la', 1), ('palmas', 1), ('de', 1), ('gran', 1), ('canaria', 1), ('spain', 1), ('february', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('problem', 1), ('solving', 1), ('nature', 1), ('ppsn', 1), ('held', 1), ('coimbra', 1), ('portugal', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('paper', 3), ('book', 2), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('symposium', 1), ('foundation', 1), ('practice', 1), ('security', 1), ('fps', 1), ('held', 1), ('toulouse', 1), ('france', 1), ('november', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('problem', 1), ('solving', 1), ('nature', 1), ('ppsn', 1), ('held', 1), ('coimbra', 1), ('portugal', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('networking', 1), ('mln', 1), ('held', 1), ('paris', 1), ('france', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('included', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('business', 1), ('process', 1), ('management', 1), ('bpm', 1), ('held', 1), ('sydney', 1), ('australia', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('bodlaender', 2), ('festschrift', 1), ('published', 1), ('honor', 1), ('han', 1), ('occasion', 1), ('th', 1), ('birthday', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('contribution', 1), ('included', 1), ('volume', 1), ('show', 1), ('many', 1), ('transformative', 1), ('discovery', 1), ('made', 1), ('area', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('logic', 1), ('based', 1), ('program', 1), ('synthesis', 1), ('transformation', 1), ('lopstr', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('scientific', 1), ('satellite', 1), ('event', 1), ('conjunction', 1), ('th', 1), ('international', 1), ('conference', 1), ('service', 1), ('oriented', 1), ('computing', 1), ('icsoc', 1), ('toulouse', 1), ('france', 1), ('october', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('workshop', 1), ('graph', 1), ('theoretic', 1), ('concept', 1), ('computer', 1), ('science', 1), ('wg', 1), ('held', 1), ('nbsp', 1), ('cottbus', 1), ('germany', 1), ('june', 1), ('full', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('information', 1), ('security', 1), ('isc', 1), ('held', 1), ('guildford', 1), ('uk', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('computer', 1), ('algebra', 1), ('scientific', 1), ('computing', 1), ('casc', 1), ('held', 1), ('lille', 1), ('france', 1), ('september', 1), ('full', 1), ('paper', 1), ('volume', 1), ('presented', 1), ('abstract', 1), ('invited', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('iacr', 1), ('international', 1), ('conference', 1), ('practice', 1), ('theory', 1), ('public', 1), ('key', 1), ('cryptography', 1), ('pkc', 1), ('held', 1), ('edinburgh', 1), ('uk', 1), ('full', 1), ('paper', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('iacr', 1), ('international', 1), ('conference', 1), ('practice', 1), ('theory', 1), ('public', 1), ('key', 1), ('cryptography', 1), ('pkc', 1), ('held', 1), ('edinburgh', 1), ('uk', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('five', 1), ('workshop', 1), ('co', 1), ('located', 1), ('safecomp', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('safety', 1), ('reliability', 1), ('security', 1), ('held', 1), ('västerås', 1), ('sweden', 1), ('september', 1), ('revised', 1), ('full', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('development', 1), ('language', 1), ('theory', 1), ('dlt', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('artificial', 1), ('evolution', 1), ('ea', 1), ('held', 1), ('mulhouse', 1), ('france', 1), ('october', 1), ('revised', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cellular', 1), ('automaton', 1), ('research', 1), ('industry', 1), ('acri', 1), ('held', 1), ('como', 1), ('italy', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitute', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptographic', 1), ('technique', 1), ('eurocrypt', 1), ('due', 1), ('held', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitute', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptographic', 1), ('technique', 1), ('eurocrypt', 1), ('due', 1), ('held', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('safety', 1), ('reliability', 1), ('security', 1), ('safecomp', 1), ('held', 1), ('västerås', 1), ('sweden', 1), ('september', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitute', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptographic', 1), ('technique', 1), ('eurocrypt', 1), ('due', 1), ('held', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('european', 1), ('conference', 1), ('service', 1), ('oriented', 1), ('cloud', 1), ('computing', 1), ('esocc', 1), ('held', 1), ('como', 1), ('italy', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('workshop', 2), ('held', 2), ('book', 1), ('contains', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('interact', 1), ('september', 1), ('paphos', 1), ('cyprus', 1)]
[('work', 1), ('building', 1), ('result', 1), ('book', 1), ('named', 1), ('pipelined', 1), ('multi', 1), ('core', 1), ('mips', 1), ('machine', 1), ('hardware', 1), ('implementation', 1), ('correctness', 1), ('kovalev', 1), ('müller', 1), ('paul', 1), ('published', 1), ('lncs', 1), ('present', 1), ('gate', 1), ('level', 1)]
[('juraj', 2), ('hromkovič', 2), ('festschrift', 1), ('volume', 1), ('published', 1), ('honor', 1), ('occasion', 1), ('th', 1), ('birthday', 1), ('leading', 1), ('expert', 1), ('area', 1), ('automaton', 1), ('complexity', 1), ('theory', 1), ('algorithm', 1), ('hard', 1), ('problem', 1), ('computer', 1), ('science', 1)]
[('revised', 2), ('selected', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('th', 1), ('international', 1), ('symposium', 1), ('trend', 1), ('functional', 1), ('programming', 1), ('tfp', 1), ('held', 1), ('vancouver', 1), ('canada', 1), ('june', 1), ('full', 1)]
[('international', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('miccai', 1), ('brainlesion', 1), ('workshop', 1), ('brainles', 1), ('multimodal', 1), ('brain', 1), ('tumor', 1), ('segmentation', 1), ('brat', 1), ('challenge', 1), ('computational', 1)]
[('privacy', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('statistical', 1), ('database', 1), ('psd', 1), ('held', 1), ('valencia', 1), ('spain', 1), ('september', 1), ('sponsorship', 1), ('unesco', 1), ('chair', 1), ('data', 1), ('revised', 1), ('full', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('workshop', 1), ('rewriting', 1), ('logic', 1), ('application', 1), ('wrla', 1), ('held', 1), ('thessaloniki', 1), ('greece', 1), ('june', 1), ('full', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('critical', 1), ('information', 1), ('infrastructure', 1), ('security', 1), ('critis', 1), ('held', 1), ('lucca', 1), ('italy', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('machine', 1), ('learning', 1), ('medical', 1), ('reconstruction', 1), ('mlmir', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('granada', 1), ('spain', 1), ('september', 1), ('full', 1), ('paper', 1)]
[('international', 2), ('workshop', 2), ('analysis', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('joint', 1), ('proceeding', 1), ('third', 1), ('reconstruction', 1), ('moving', 1), ('body', 1), ('organ', 1), ('rambo', 1), ('fourth', 1), ('breast', 1), ('image', 1), ('bia', 1), ('first', 1)]
[('conference', 2), ('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('cloud', 1), ('computing', 1), ('security', 1), ('icc', 1), ('held', 1), ('haikou', 1), ('china', 1), ('june', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('cloud', 1), ('computing', 1), ('security', 1), ('icc', 1), ('held', 1), ('haikou', 1), ('china', 1), ('june', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('predictive', 1), ('intelligence', 1), ('medicine', 1), ('prime', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('granada', 1), ('spain', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('held', 1), ('granada', 1), ('spain', 1), ('september', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('held', 1), ('granada', 1), ('spain', 1), ('september', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('symposium', 1), ('benchmarking', 1), ('measuring', 1), ('optimization', 1), ('bench', 1), ('held', 1), ('denver', 1), ('co', 1), ('usa', 1), ('november', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('paper', 2), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1), ('contribution', 1), ('covering', 1), ('following', 1), ('topic', 1), ('deep', 1), ('learning', 1), ('multimedia', 1), ('security', 1), ('digital', 1), ('forensics', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('applied', 1), ('reconfigurable', 1), ('computing', 1), ('arc', 1), ('held', 1), ('toledo', 1), ('spain', 1), ('april', 1), ('full', 1), ('paper', 1), ('poster', 1), ('presentation', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('electronic', 1), ('participation', 1), ('epart', 1), ('held', 1), ('krems', 1), ('austria', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('clef', 2), ('avignon', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('initiative', 1), ('jointly', 1), ('organized', 1), ('marseille', 1), ('toulon', 1), ('university', 1), ('held', 1), ('france', 1), ('september', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('modelling', 1), ('simulation', 1), ('autonomous', 1), ('system', 1), ('mesa', 1), ('held', 1), ('palermo', 1), ('italy', 1), ('october', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('euro', 1), ('par', 1), ('held', 1), ('turin', 1), ('italy', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('due', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('relational', 1), ('algebraic', 1), ('method', 1), ('computer', 1), ('science', 1), ('ramics', 1), ('held', 1), ('palaiseau', 1), ('france', 1), ('april', 1), ('nbsp', 1), ('cancelled', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('ifip', 1), ('wg', 1), ('electronic', 1), ('government', 1), ('egov', 1), ('held', 1), ('krems', 1), ('austria', 1), ('september', 1), ('conjunction', 1), ('eparticipation', 1), ('epart', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('workshop', 1), ('computer', 1), ('performance', 1), ('engineering', 1), ('epew', 1), ('held', 1), ('milan', 1), ('italy', 1), ('november', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('international', 2), ('workshop', 2), ('imaging', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('joint', 1), ('proceeding', 1), ('second', 1), ('graph', 1), ('biomedical', 1), ('image', 1), ('analysis', 1), ('grail', 1), ('first', 1), ('integrating', 1), ('medical', 1), ('non', 1), ('modality', 1), ('beyond', 1), ('mic', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('security', 1), ('practice', 1), ('experience', 1), ('ispec', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('information', 1), ('system', 1), ('industrial', 1), ('management', 1), ('application', 1), ('cisim', 1), ('held', 1), ('olomouc', 1), ('czech', 1), ('republic', 1), ('september', 1), ('full', 1), ('paper', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('conference', 1), ('multimedia', 1), ('pcm', 1), ('held', 1), ('hefei', 1), ('china', 1), ('september', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('together', 1), ('nbsp', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('software', 1), ('architecture', 1), ('ecsa', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('september', 1), ('nbsp', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('verification', 1), ('evaluation', 1), ('computer', 1), ('communication', 1), ('system', 1), ('vecos', 1), ('held', 1), ('grenoble', 1), ('france', 1), ('september', 1), ('full', 1), ('paper', 1), ('volume', 1), ('presented', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('conference', 1), ('multimedia', 1), ('pcm', 1), ('held', 1), ('hefei', 1), ('china', 1), ('september', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('together', 1), ('nbsp', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('open', 1), ('mp', 1), ('iwomp', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('inclusion', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('conference', 1), ('multimedia', 1), ('pcm', 1), ('held', 1), ('hefei', 1), ('china', 1), ('september', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('together', 1), ('nbsp', 1)]
[('china', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('information', 1), ('retrieval', 1), ('ccir', 1), ('held', 1), ('guilin', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('conference', 1), ('business', 1), ('service', 1), ('society', 1), ('held', 1), ('skukuza', 1), ('south', 1), ('africa', 1), ('april', 1), ('total', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1)]
[('th', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('entertainment', 1), ('computing', 1), ('icec', 1), ('held', 1), ('ifip', 1), ('world', 1), ('computer', 1), ('congress', 1), ('wcc', 1), ('poznan', 1), ('poland', 1), ('september', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('nbsp', 1), ('theory', 1), ('practice', 1), ('digital', 1), ('library', 1), ('tpdl', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('september', 1), ('full', 1), ('short', 1), ('poster', 1), ('tutorial', 1)]
[('paper', 3), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('provenance', 1), ('annotation', 1), ('workshop', 1), ('ipaw', 1), ('held', 1), ('london', 1), ('uk', 1), ('july', 1), ('revised', 1), ('full', 1), ('poster', 1), ('demonstration', 1), ('presented', 1)]
[('application', 2), ('set', 1), ('paper', 1), ('collected', 1), ('issue', 1), ('originated', 1), ('agere', 1), ('workshop', 1), ('series', 1), ('last', 1), ('edition', 1), ('held', 1), ('concern', 1), ('actor', 1), ('based', 1), ('approach', 1), ('mainstream', 1), ('domain', 1), ('discussion', 1), ('related', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('conference', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('cryprocurrencies', 1), ('blockchain', 1), ('technology', 1), ('cbt', 1), ('thinternational', 1), ('data', 1), ('privacy', 1), ('management', 1), ('dpm', 1), ('conjunction', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('symposium', 1), ('research', 1), ('attack', 1), ('intrusion', 1), ('defense', 1), ('raid', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('testing', 1), ('software', 1), ('system', 1), ('ictss', 1), ('held', 1), ('cádiz', 1), ('spain', 1), ('october', 1), ('regular', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('transaction', 1), ('publish', 1), ('research', 1), ('computer', 1), ('based', 1), ('method', 1), ('computational', 1), ('collective', 1), ('intelligence', 1), ('cci', 1), ('application', 1), ('wide', 1), ('range', 1), ('field', 1), ('semantic', 1), ('web', 1), ('social', 1), ('network', 1), ('multi', 1), ('agent', 1), ('system', 1), ('tcci', 1), ('strives', 1), ('cover', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('concept', 1), ('intelligent', 1), ('vision', 1), ('system', 1), ('acivs', 1), ('held', 1), ('poitier', 1), ('france', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('joint', 1), ('conference', 1), ('electronic', 1), ('voting', 1), ('vote', 1), ('id', 1), ('held', 1), ('bregenz', 1), ('austria', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('cloud', 1), ('computing', 1), ('security', 1), ('icc', 1), ('held', 1), ('haikou', 1), ('china', 1), ('june', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('conceptual', 1), ('modeling', 1), ('er', 1), ('held', 1), ('xi', 1), ('china', 1), ('october', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('together', 1), ('keynote', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('cloud', 1), ('computing', 1), ('security', 1), ('icc', 1), ('held', 1), ('haikou', 1), ('china', 1), ('june', 1), ('full', 1), ('paper', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('icann', 1), ('held', 1), ('rhodes', 1), ('greece', 1), ('october', 1), ('full', 1), ('short', 1), ('paper', 1)]
[('volume', 2), ('three', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('icann', 1), ('held', 1), ('rhodes', 1), ('greece', 1), ('october', 1), ('paper', 1), ('presented', 1)]
[('volume', 1), ('published', 1), ('honor', 1), ('professor', 1), ('chaochen', 1), ('zhou', 1), ('th', 1), ('birthday', 1), ('festschrift', 1), ('contains', 1), ('refereed', 1), ('paper', 1), ('leading', 1), ('researcher', 1), ('among', 1), ('participant', 1), ('celebratory', 1), ('conference', 1), ('changsha', 1), ('china', 1), ('took', 1), ('place', 1)]
[('th', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('joint', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('next', 1), ('generation', 1), ('wired', 1), ('wireless', 1), ('advanced', 1), ('network', 1), ('system', 1), ('new', 1), ('internet', 1), ('thing', 1), ('smart', 1), ('space', 1), ('rusmart', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('held', 1), ('granada', 1), ('spain', 1), ('september', 1)]
[('web', 2), ('volume', 1), ('contains', 1), ('lecture', 1), ('note', 1), ('th', 1), ('reasoning', 1), ('summer', 1), ('school', 1), ('rw', 1), ('held', 1), ('esch', 1), ('sur', 1), ('alzette', 1), ('luxembourg', 1), ('september', 1), ('research', 1), ('area', 1), ('semantic', 1), ('linked', 1), ('data', 1), ('knowledge', 1), ('graph', 1), ('recently', 1), ('nbsp', 1), ('received', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('held', 1), ('granada', 1), ('spain', 1), ('september', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('graphic', 1), ('iccvg', 1), ('held', 1), ('warsaw', 1), ('poland', 1), ('september', 1), ('full', 1), ('paper', 1), ('selected', 1), ('submission', 1), ('contribution', 1)]
[('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('joint', 1), ('proceeding', 1), ('first', 1), ('computational', 1), ('pathology', 1), ('compay', 1), ('th', 1), ('ophthalmic', 1), ('medical', 1), ('image', 1), ('analysis', 1), ('omia', 1), ('held', 1), ('conjunction', 1), ('st', 1)]
[('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('joint', 1), ('proceeding', 1), ('first', 1), ('data', 1), ('driven', 1), ('treatment', 1), ('response', 1), ('assessment', 1), ('datra', 1), ('third', 1), ('preterm', 1), ('perinatal', 1), ('paediatric', 1), ('image', 1), ('analysis', 1), ('pippi', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('connectomics', 1), ('neuroimaging', 1), ('cni', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('granada', 1), ('spain', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('machine', 1), ('learning', 1), ('medical', 1), ('imaging', 1), ('mlmi', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('granada', 1), ('spain', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('patch', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('based', 1), ('technique', 1), ('medical', 1), ('image', 1), ('mi', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('granada', 1), ('spain', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('joint', 1), ('proceeding', 1), ('point', 1), ('care', 1), ('ultrasound', 1), ('pocus', 1), ('nbsp', 1), ('bio', 1), ('imaging', 1), ('visualization', 1), ('patient', 1), ('customized', 1), ('simulation', 1), ('bivpcs', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('coalgebraic', 1), ('nbsp', 1), ('method', 1), ('computer', 1), ('science', 1), ('cmcs', 1), ('colocated', 1), ('etaps', 1), ('held', 1), ('thessaloniki', 1), ('greece', 1), ('april', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('logistics', 1), ('iccl', 1), ('held', 1), ('vietri', 1), ('sul', 1), ('mare', 1), ('italy', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('th', 2), ('international', 2), ('workshop', 2), ('learning', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('joint', 1), ('proceeding', 1), ('deep', 1), ('medical', 1), ('image', 1), ('analysis', 1), ('dlmia', 1), ('multimodal', 1), ('clinical', 1), ('decision', 1), ('support', 1), ('ml', 1), ('cd', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('social', 1), ('informatics', 1), ('socinfo', 1), ('held', 1), ('saint', 1), ('petersburg', 1), ('russia', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('social', 1), ('informatics', 1), ('socinfo', 1), ('held', 1), ('saint', 1), ('petersburg', 1), ('russia', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('cloud', 1), ('computing', 1), ('security', 1), ('icc', 1), ('held', 1), ('haikou', 1), ('china', 1), ('june', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cryptology', 1), ('network', 1), ('security', 1), ('can', 1), ('held', 1), ('naples', 1), ('italy', 1), ('september', 1), ('october', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cooperative', 1), ('design', 1), ('visualization', 1), ('engineering', 1), ('cdve', 1), ('held', 1), ('hangzhou', 1), ('china', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('artificial', 1), ('intelligence', 1), ('pattern', 1), ('recognition', 1), ('iwaipr', 1), ('held', 1), ('havana', 1), ('cuba', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('health', 1), ('information', 1), ('science', 1), ('held', 1), ('cairn', 1), ('qld', 1), ('australia', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('internet', 1), ('science', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('october', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('inclusion', 1), ('volume', 1)]
[('joint', 2), ('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('computing', 1), ('visualization', 1), ('intravascular', 1), ('imaging', 1), ('computer', 1), ('assisted', 1), ('stenting', 1), ('cvii', 1), ('stent', 1), ('third', 1)]
[('double', 1), ('volume', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('confederated', 1), ('international', 1), ('conference', 1), ('cooperative', 1), ('information', 1), ('system', 1), ('coopis', 1), ('ontology', 1), ('database', 1), ('application', 1), ('semantics', 1), ('odbase', 1)]
[('double', 1), ('volume', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('confederated', 1), ('international', 1), ('conference', 1), ('cooperative', 1), ('information', 1), ('system', 1), ('coopis', 1), ('ontology', 1), ('database', 1), ('application', 1), ('semantics', 1), ('odbase', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('model', 1), ('data', 1), ('engineering', 1), ('medi', 1), ('held', 1), ('marrakesh', 1), ('morocco', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('lncs', 2), ('nbsp', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('information', 1), ('system', 1), ('engineering', 1), ('wise', 1), ('held', 1), ('dubai', 1), ('united', 1), ('arab', 1), ('emirate', 1), ('november', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('apweb', 2), ('waim', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('workshop', 1), ('held', 1), ('jointly', 1), ('second', 1), ('international', 1), ('joint', 1), ('macau', 1), ('china', 1), ('july', 1), ('full', 1), ('paper', 1)]
[('lncs', 2), ('nbsp', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('information', 1), ('system', 1), ('engineering', 1), ('wise', 1), ('held', 1), ('dubai', 1), ('united', 1), ('arab', 1), ('emirate', 1), ('november', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('relational', 1), ('algebraic', 1), ('method', 1), ('computer', 1), ('science', 1), ('ramics', 1), ('held', 1), ('groningen', 1), ('netherlands', 1), ('october', 1), ('november', 1), ('full', 1), ('invited', 1)]
[('paper', 2), ('theory', 2), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1), ('among', 1), ('topical', 1), ('area', 1), ('covered', 1), ('use', 1), ('game', 1), ('control', 1), ('mechanism', 1), ('design', 1), ('security', 1), ('privacy', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('swarm', 1), ('intelligence', 1), ('ant', 1), ('held', 1), ('rome', 1), ('italy', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('kuwait', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('business', 1), ('service', 1), ('society', 1), ('held', 1), ('city', 1), ('october', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('cyberspace', 1), ('safety', 1), ('security', 1), ('cs', 1), ('held', 1), ('amalfi', 1), ('italy', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('first', 3), ('international', 3), ('workshop', 2), ('learning', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('joint', 1), ('proceeding', 1), ('machine', 1), ('clinical', 1), ('neuroimaging', 1), ('mlcn', 1), ('deep', 1), ('fails', 1), ('dlf', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('stabilization', 1), ('safety', 1), ('security', 1), ('distributed', 1), ('system', 1), ('s', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('communication', 1), ('security', 1), ('icics', 1), ('held', 1), ('lille', 1), ('france', 1), ('october', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('conference', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('international', 1), ('smart', 1), ('health', 1), ('icsh', 1), ('held', 1), ('wuhan', 1), ('china', 1), ('july', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('leveraging', 1), ('application', 1), ('formal', 1), ('method', 1), ('verification', 1), ('validation', 1), ('isola', 1), ('held', 1), ('limassol', 1), ('cyprus', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('ambient', 1), ('intelligence', 1), ('ami', 1), ('held', 1), ('larnaca', 1), ('cyprus', 1), ('november', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('leveraging', 1), ('application', 1), ('formal', 1), ('method', 1), ('verification', 1), ('validation', 1), ('isola', 1), ('held', 1), ('limassol', 1), ('cyprus', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('serious', 1), ('game', 1), ('jcsg', 1), ('held', 1), ('darmstadt', 1), ('germany', 1), ('november', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('leveraging', 1), ('application', 1), ('formal', 1), ('method', 1), ('verification', 1), ('validation', 1), ('isola', 1), ('held', 1), ('limassol', 1), ('cyprus', 1)]
[('volume', 2), ('sixteen', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('held', 1), ('munich', 1), ('germany', 1), ('september', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('international', 3), ('conference', 2), ('social', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('computing', 1), ('medium', 1), ('scsm', 1), ('held', 1), ('part', 1), ('nd', 1), ('hci', 1)]
[('volume', 2), ('sixteen', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('held', 1), ('munich', 1), ('germany', 1), ('september', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('international', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('virtual', 1), ('augmented', 1), ('mixed', 1), ('reality', 1), ('vamr', 1), ('due', 1), ('held', 1), ('july', 1), ('part', 1), ('hci', 1)]
[('volume', 2), ('sixteen', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('held', 1), ('munich', 1), ('germany', 1), ('september', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('international', 2), ('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('universal', 1), ('access', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('uahci', 1), ('held', 1), ('part', 1), ('nd', 1), ('hci', 1)]
[('volume', 2), ('sixteen', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('held', 1), ('munich', 1), ('germany', 1), ('september', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('human', 2), ('computer', 2), ('interaction', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('thematic', 1), ('area', 1), ('nd', 1), ('international', 1), ('conference', 1), ('hcii', 1), ('took', 1), ('place', 1), ('copenhagen', 1)]
[('volume', 2), ('sixteen', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('held', 1), ('munich', 1), ('germany', 1), ('september', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('international', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('virtual', 1), ('augmented', 1), ('mixed', 1), ('reality', 1), ('vamr', 1), ('due', 1), ('held', 1), ('july', 1), ('part', 1), ('hci', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('future', 1), ('data', 1), ('security', 1), ('engineering', 1), ('fdse', 1), ('held', 1), ('ho', 1), ('chi', 1), ('minh', 1), ('city', 1), ('vietnam', 1), ('november', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('runtime', 1), ('verification', 1), ('rv', 1), ('held', 1), ('limassol', 1), ('cyprus', 1), ('november', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('tool', 1)]
[('lncs', 2), ('revised', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('cryptography', 1), ('tcc', 1), ('held', 1), ('panaji', 1), ('india', 1), ('november', 1), ('total', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('social', 1), ('cultural', 1), ('behavioral', 1), ('modeling', 1), ('sbp', 1), ('brim', 1), ('held', 1), ('washington', 1), ('dc', 1), ('usa', 1), ('july', 1), ('total', 1), ('short', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('nbsp', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('helping', 1), ('special', 1), ('need', 1), ('icchp', 1), ('held', 1), ('linz', 1), ('austria', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligence', 1), ('science', 1), ('big', 1), ('dataengineering', 1), ('iscide', 1), ('held', 1), ('lanzhou', 1), ('china', 1), ('august', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('intelligent', 1), ('data', 1), ('engineering', 1), ('automated', 1), ('learning', 1), ('ideal', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('november', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('intelligent', 1), ('data', 1), ('engineering', 1), ('automated', 1), ('learning', 1), ('ideal', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('november', 1)]
[('paper', 2), ('presented', 2), ('book', 1), ('contains', 1), ('revised', 1), ('version', 1), ('th', 1), ('international', 1), ('conference', 1), ('cryptology', 1), ('network', 1), ('security', 1), ('can', 1), ('held', 1), ('hong', 1), ('kong', 1), ('china', 1), ('november', 1), ('december', 1), ('full', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('ihci', 1), ('held', 1), ('allahabad', 1), ('india', 1), ('december', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('visual', 1), ('computing', 1), ('isvc', 1), ('held', 1), ('la', 1), ('vega', 1), ('nv', 1), ('usa', 1), ('november', 1), ('total', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('ubiquitous', 1), ('networking', 1), ('unet', 1), ('held', 1), ('hammamet', 1), ('morocco', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('volume', 1)]
[('nbsp', 4), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('australasian', 1), ('conference', 1), ('information', 1), ('security', 1), ('privacy', 1), ('acisp', 1), ('held', 1), ('wollongong', 1), ('australia', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('nbsp', 3), ('volume', 1), ('contains', 1), ('record', 1), ('lecture', 1), ('seminar', 1), ('delivered', 1), ('third', 1), ('international', 1), ('school', 1), ('engineering', 1), ('trustworthy', 1), ('software', 1), ('system', 1), ('set', 1), ('held', 1), ('april', 1), ('southwest', 1), ('university', 1), ('chongqing', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('asia', 1), ('pacific', 1), ('digital', 1), ('library', 1), ('icadl', 1), ('held', 1), ('hamilton', 1), ('new', 1), ('zealand', 1), ('november', 1), ('full', 1), ('short', 1), ('work', 1), ('progress', 1), ('paper', 1), ('presented', 1)]
[('festschrift', 1), ('honor', 1), ('nbsp', 1), ('mario', 1), ('de', 1), ('jesús', 1), ('pérez', 1), ('jiménez', 1), ('professor', 1), ('department', 1), ('computer', 1), ('science', 1), ('university', 1), ('seville', 1), ('spain', 1), ('occasion', 1), ('th', 1), ('birthday', 1), ('title', 1), ('volume', 1), ('reflects', 1), ('main', 1), ('research', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('information', 1), ('retrieval', 1), ('society', 1), ('conference', 1), ('air', 1), ('held', 1), ('taipei', 1), ('taiwan', 1), ('november', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('session', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('joint', 1), ('international', 1), ('semantic', 1), ('technology', 1), ('conference', 1), ('jist', 1), ('held', 1), ('awaji', 1), ('japan', 1), ('november', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('product', 1), ('focused', 1), ('software', 1), ('process', 1), ('improvement', 1), ('profes', 1), ('held', 1), ('wolfsburg', 1), ('germany', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('nbsp', 3), ('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('brazilian', 1), ('symposium', 1), ('formal', 1), ('method', 1), ('sbmf', 1), ('took', 1), ('place', 1), ('salvador', 1), ('brazil', 1), ('november', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('symposium', 1), ('programming', 1), ('language', 1), ('system', 1), ('aplas', 1), ('held', 1), ('wellington', 1), ('new', 1), ('zealand', 1), ('december', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('combinatorial', 1), ('image', 1), ('analysis', 1), ('iwcia', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('graphic', 1), ('recognition', 1), ('grec', 1), ('held', 1), ('kyoto', 1), ('japan', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('emerging', 1), ('technology', 1), ('authorization', 1), ('authentication', 1), ('etaa', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('medical', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('workshop', 1), ('shape', 1), ('imaging', 1), ('shapemi', 1), ('held', 1), ('conjunction', 1), ('st', 1), ('international', 1), ('conference', 1), ('image', 1), ('computing', 1), ('miccai', 1), ('granada', 1), ('spain', 1), ('september', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('music', 1), ('technology', 1), ('swing', 1), ('cmmr', 1), ('held', 1), ('matosinhos', 1), ('portugal', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('selected', 1), ('submission', 1)]
[('thoroughly', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('security', 1), ('protocol', 1), ('held', 1), ('cambridge', 1), ('uk', 1), ('march', 1), ('volume', 1), ('consists', 1), ('revised', 1), ('invited', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('conference', 2), ('nbsp', 2), ('volume', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('verified', 1), ('software', 1), ('theory', 1), ('tool', 1), ('experiment', 1), ('vstte', 1), ('held', 1), ('oxford', 1), ('uk', 1), ('july', 1), ('full', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('interactive', 1), ('digital', 1), ('storytelling', 1), ('icids', 1), ('held', 1), ('dublin', 1), ('ireland', 1), ('december', 1), ('nbsp', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('volume', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algorithmic', 1), ('aspect', 1), ('information', 1), ('management', 1), ('aaim', 1), ('held', 1), ('dallas', 1), ('texas', 1), ('usa', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('nbsp', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('colloquium', 1), ('structural', 1), ('information', 1), ('communication', 1), ('complexity', 1), ('sirocco', 1), ('held', 1), ('ale', 1), ('hahamisha', 1), ('israel', 1), ('june', 1), ('full', 1), ('paper', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('leveraging', 1), ('application', 1), ('formal', 1), ('method', 1), ('verification', 1), ('validation', 1), ('isola', 1), ('held', 1), ('limassol', 1), ('cyprus', 1)]
[('conference', 2), ('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('cloud', 1), ('computing', 1), ('security', 1), ('icc', 1), ('held', 1), ('haikou', 1), ('china', 1), ('june', 1), ('full', 1), ('paper', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('chinese', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('computer', 1), ('vision', 1), ('prcv', 1), ('held', 1), ('guangzhou', 1), ('china', 1), ('november', 1), ('revised', 1), ('full', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('chinese', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('computer', 1), ('vision', 1), ('prcv', 1), ('held', 1), ('guangzhou', 1), ('china', 1), ('november', 1), ('revised', 1), ('full', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('chinese', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('computer', 1), ('vision', 1), ('prcv', 1), ('held', 1), ('guangzhou', 1), ('china', 1), ('november', 1), ('revised', 1), ('full', 1)]
[('lncs', 2), ('revised', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('cryptography', 1), ('tcc', 1), ('held', 1), ('panaji', 1), ('india', 1), ('november', 1), ('total', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('workshop', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('symposium', 1), ('sete', 1), ('held', 1), ('conjunction', 1), ('icwl', 1), ('chiang', 1), ('mai', 1), ('thailand', 1), ('august', 1), ('full', 1), ('short', 1), ('paper', 1), ('carefully', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('engineering', 1), ('method', 1), ('icfem', 1), ('held', 1), ('gold', 1), ('coast', 1), ('qld', 1), ('australia', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('internet', 1), ('economics', 1), ('wine', 1), ('held', 1), ('oxford', 1), ('uk', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('practice', 1), ('natural', 1), ('computing', 1), ('tpnc', 1), ('held', 1), ('dublin', 1), ('ireland', 1), ('december', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 2), ('india', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cryptology', 1), ('indocrypt', 1), ('held', 1), ('new', 1), ('delhi', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('proceeding', 2), ('nbsp', 2), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('th', 1), ('international', 1), ('combinatorial', 1), ('optimization', 1), ('application', 1), ('cocoa', 1), ('held', 1), ('atlanta', 1), ('ga', 1), ('usa', 1), ('december', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('contains', 1), ('thoroughly', 1), ('refereed', 1), ('technical', 1), ('paper', 1), ('presented', 1), ('eight', 1), ('workshop', 1), ('collocated', 1), ('international', 1), ('conference', 1), ('software', 1), ('technology', 1), ('application', 1), ('foundation', 1), ('staf', 1), ('held', 1), ('toulouse', 1), ('france', 1), ('june', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('nbsp', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algorithm', 1), ('architecture', 1), ('parallel', 1), ('processing', 1), ('ica', 1), ('pp', 1), ('held', 1), ('guangzhou', 1), ('china', 1), ('november', 1), ('full', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('security', 1), ('privacy', 1), ('applied', 1), ('cryptography', 1), ('engineering', 1), ('space', 1), ('held', 1), ('kanpur', 1), ('india', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('nbsp', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algorithm', 1), ('architecture', 1), ('parallel', 1), ('processing', 1), ('ica', 1), ('pp', 1), ('held', 1), ('guangzhou', 1), ('china', 1), ('november', 1), ('full', 1), ('short', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('nbsp', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algorithm', 1), ('architecture', 1), ('parallel', 1), ('processing', 1), ('ica', 1), ('pp', 1), ('held', 1), ('guangzhou', 1), ('china', 1), ('november', 1), ('full', 1), ('short', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('nbsp', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algorithm', 1), ('architecture', 1), ('parallel', 1), ('processing', 1), ('ica', 1), ('pp', 1), ('held', 1), ('guangzhou', 1), ('china', 1), ('november', 1), ('full', 1), ('short', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('multimedia', 1), ('modeling', 1), ('mm', 1), ('held', 1), ('thessaloniki', 1), ('greece', 1), ('january', 1), ('submitted', 1), ('full', 1), ('paper', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('multimedia', 1), ('modeling', 1), ('mm', 1), ('held', 1), ('thessaloniki', 1), ('greece', 1), ('january', 1), ('submitted', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('workshop', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('held', 1), ('th', 1), ('pattern', 1), ('recognition', 1), ('beijing', 1), ('china', 1), ('august', 1), ('nbsp', 1), ('third', 1), ('computer', 1), ('vision', 1), ('analysis', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('privacy', 1), ('forum', 1), ('apf', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('conference', 2), ('workshop', 2), ('hpc', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('held', 1), ('rd', 1), ('international', 1), ('isc', 1), ('high', 1), ('performance', 1), ('frankfurt', 1), ('germany', 1), ('june', 1), ('data', 1), ('center', 1), ('iodc', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('international', 1), ('conference', 1), ('wired', 1), ('wireless', 1), ('internet', 1), ('communication', 1), ('wwic', 1), ('held', 1), ('boston', 1), ('usa', 1), ('june', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('mobile', 1), ('secure', 1), ('programmable', 1), ('networking', 1), ('held', 1), ('paris', 1), ('france', 1), ('june', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('paper', 2), ('book', 1), ('contains', 1), ('revised', 1), ('extended', 1), ('version', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('icpram', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('january', 1), ('full', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('arithmetic', 1), ('finite', 1), ('field', 1), ('waifi', 1), ('held', 1), ('bergen', 1), ('norway', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('six', 1), ('invited', 1), ('talk', 1)]
[('book', 1), ('constitutes', 1), ('workshop', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algorithm', 1), ('architecture', 1), ('parallel', 1), ('processing', 1), ('ica', 1), ('pp', 1), ('held', 1), ('guangzhou', 1), ('china', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptology', 1), ('information', 1), ('security', 1), ('asiacrypt', 1), ('held', 1), ('brisbane', 1), ('australia', 1)]
[('software', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('first', 1), ('international', 1), ('workshop', 1), ('engineering', 1), ('aspect', 1), ('continuous', 1), ('development', 1), ('new', 1), ('paradigm', 1), ('production', 1), ('deployment', 1), ('devops', 1), ('hled', 1), ('hateau', 1), ('de', 1), ('villebrumier', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('current', 1), ('trend', 1), ('theory', 1), ('practice', 1), ('computer', 1), ('science', 1), ('sofsem', 1), ('held', 1), ('nový', 1), ('smokovec', 1), ('slovakia', 1), ('january', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('workshop', 1), ('held', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('euro', 1), ('par', 1), ('took', 1), ('place', 1), ('turin', 1), ('italy', 1), ('august', 1), ('nbsp', 1), ('full', 1), ('presented', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('numerical', 1), ('method', 1), ('application', 1), ('nma', 1), ('held', 1), ('borovets', 1), ('bulgaria', 1), ('august', 1), ('revised', 1), ('regular', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('computational', 1), ('topology', 1), ('image', 1), ('context', 1), ('ctic', 1), ('held', 1), ('málaga', 1), ('spain', 1), ('january', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('selected', 2), ('paper', 2), ('book', 1), ('contains', 1), ('revised', 1), ('th', 1), ('international', 1), ('conference', 1), ('area', 1), ('cryptography', 1), ('sac', 1), ('held', 1), ('calgary', 1), ('ab', 1), ('canada', 1), ('august', 1), ('nbsp', 1), ('full', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 2), ('six', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('took', 1), ('place', 1), ('nbsp', 1), ('conjunction', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('held', 1), ('munich', 1), ('germany', 1)]
[('volume', 2), ('six', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('took', 1), ('place', 1), ('nbsp', 1), ('conjunction', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('held', 1), ('munich', 1), ('germany', 1)]
[('volume', 2), ('six', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('took', 1), ('place', 1), ('nbsp', 1), ('conjunction', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('held', 1), ('munich', 1), ('germany', 1)]
[('volume', 2), ('six', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('took', 1), ('place', 1), ('nbsp', 1), ('conjunction', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('held', 1), ('munich', 1), ('germany', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('analysis', 1), ('image', 1), ('social', 1), ('network', 1), ('text', 1), ('aist', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('july', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('volume', 2), ('six', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('took', 1), ('place', 1), ('nbsp', 1), ('conjunction', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('held', 1), ('munich', 1), ('germany', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('computational', 1), ('method', 1), ('clinical', 1), ('application', 1), ('musculoskeletal', 1), ('imaging', 1), ('mski', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('granada', 1), ('spain', 1), ('september', 1)]
[('entity', 2), ('computational', 2), ('distributed', 1), ('computing', 1), ('mobile', 1), ('concerned', 1), ('study', 1), ('complexity', 1), ('issue', 1), ('arising', 1), ('system', 1), ('decentralized', 1), ('operating', 1), ('spatial', 1), ('universe', 1), ('encompassing', 1), ('modeling', 1), ('large', 1), ('variety', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('st', 1), ('international', 1), ('conference', 1), ('information', 1), ('security', 1), ('cryptology', 1), ('icisc', 1), ('held', 1), ('seoul', 1), ('south', 1), ('korea', 1), ('november', 1), ('total', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('risk', 1), ('security', 1), ('internet', 1), ('system', 1), ('crisis', 1), ('held', 1), ('arcachon', 1), ('france', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('verification', 1), ('model', 1), ('checking', 1), ('abstract', 1), ('nbsp', 1), ('interpretation', 1), ('vmcai', 1), ('held', 1), ('cascais', 1), ('portugal', 1), ('january', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('accelerator', 1), ('programming', 1), ('using', 1), ('directive', 1), ('waccpd', 1), ('held', 1), ('dallas', 1), ('tx', 1), ('usa', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('australasian', 1), ('database', 1), ('conference', 1), ('adc', 1), ('held', 1), ('sydney', 1), ('nsw', 1), ('australia', 1), ('january', 1), ('february', 1), ('full', 1), ('presented', 1), ('together', 1), ('demo', 1), ('carefully', 1), ('reviewed', 1)]
[('workshop', 2), ('recognition', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('face', 1), ('facial', 1), ('expression', 1), ('real', 1), ('world', 1), ('video', 1), ('ffer', 1), ('second', 1), ('international', 1), ('deep', 1), ('learning', 1), ('pattern', 1), ('dlpr', 1), ('held', 1), ('th', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algorithm', 1), ('discrete', 1), ('applied', 1), ('mathematics', 1), ('caldam', 1), ('held', 1), ('kharagpur', 1), ('india', 1), ('february', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('security', 1), ('information', 1), ('technology', 1), ('communication', 1), ('secitc', 1), ('held', 1), ('bucharest', 1), ('romania', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('international', 2), ('nbsp', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('confederated', 1), ('workshop', 1), ('enterprise', 1), ('integration', 1), ('interoperability', 1), ('networking', 1), ('ei', 1), ('fact', 1), ('based', 1), ('modeling', 1), ('fbm', 1), ('industry', 1), ('case', 1), ('study', 1)]
[('international', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('nbsp', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('miccai', 1), ('brainlesion', 1), ('workshop', 1), ('brainles', 1), ('multimodal', 1), ('brain', 1), ('tumor', 1), ('segmentation', 1), ('brat', 1), ('ischemic', 1), ('stroke', 1)]
[('international', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('nbsp', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('miccai', 1), ('brainlesion', 1), ('workshop', 1), ('brainles', 1), ('multimodal', 1), ('brain', 1), ('tumor', 1), ('segmentation', 1), ('brat', 1), ('ischemic', 1), ('stroke', 1)]
[('paper', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('symposium', 1), ('algorithm', 1), ('experiment', 1), ('wireless', 1), ('sensor', 1), ('network', 1), ('algosensors', 1), ('held', 1), ('helsinki', 1), ('finland', 1), ('august', 1), ('full', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('german', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('gcpr', 1), ('held', 1), ('stuttgart', 1), ('germany', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('workshop', 1), ('algorithm', 1), ('computation', 1), ('walcom', 1), ('held', 1), ('guwahati', 1), ('india', 1), ('february', 1), ('march', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('trend', 1), ('functional', 1), ('programming', 1), ('tfp', 1), ('held', 1), ('college', 1), ('park', 1), ('usa', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('rsa', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('cryptographer', 1), ('track', 1), ('conference', 1), ('ct', 1), ('held', 1), ('san', 1), ('francisco', 1), ('ca', 1), ('usa', 1), ('march', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('evolutionary', 1), ('multi', 1), ('criterion', 1), ('optimization', 1), ('emo', 1), ('held', 1), ('east', 1), ('lansing', 1), ('mi', 1), ('usa', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('rd', 1), ('iberoamerican', 1), ('nbsp', 1), ('congress', 1), ('pattern', 1), ('recognition', 1), ('ciarp', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('november', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('pattern', 3), ('language', 2), ('software', 2), ('transaction', 1), ('programming', 1), ('subline', 1), ('aim', 1), ('publish', 1), ('paper', 1), ('applied', 1), ('design', 1), ('development', 1), ('use', 1), ('throughout', 1), ('phase', 1), ('life', 1), ('cycle', 1), ('requirement', 1)]
[('nbsp', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('economics', 1), ('grid', 1), ('cloud', 1), ('system', 1), ('service', 1), ('gecon', 1), ('held', 1), ('pisa', 1), ('italy', 1), ('september', 1), ('full', 1), ('short', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('statistical', 1), ('atlas', 1), ('computational', 1), ('model', 1), ('heart', 1), ('atrial', 1), ('segmentation', 1), ('lv', 1), ('quantification', 1), ('challenge', 1), ('stacom', 1), ('held', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('smart', 1), ('card', 1), ('research', 1), ('advanced', 1), ('application', 1), ('cardis', 1), ('held', 1), ('monpellier', 1), ('france', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('sipaim', 1), ('workshop', 1), ('processing', 1), ('analysis', 1), ('biomedical', 1), ('information', 1), ('samba', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('granada', 1), ('spain', 1), ('september', 1), ('full', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('structured', 1), ('object', 1), ('oriented', 1), ('formal', 1), ('language', 1), ('nbsp', 1), ('method', 1), ('sofl', 1), ('msvl', 1), ('held', 1), ('gold', 1), ('coast', 1), ('qld', 1), ('australia', 1), ('november', 1), ('revised', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('working', 1), ('conference', 1), ('requirement', 1), ('engineering', 1), ('foundation', 1), ('software', 1), ('quality', 1), ('refsq', 1), ('held', 1), ('essen', 1), ('germany', 1), ('march', 1), ('nbsp', 1), ('full', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('language', 1), ('automaton', 1), ('theory', 1), ('application', 1), ('lata', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('quantum', 1), ('technology', 1), ('optimization', 1), ('problem', 1), ('qtop', 1), ('held', 1), ('munich', 1), ('germany', 1), ('march', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('keynote', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('passive', 1), ('active', 1), ('measurement', 1), ('pam', 1), ('held', 1), ('puerto', 1), ('vara', 1), ('chile', 1), ('march', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('contemporary', 1), ('society', 1), ('iconference', 1), ('held', 1), ('washington', 1), ('dc', 1), ('usa', 1), ('march', 1), ('april', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('finite', 1), ('difference', 1), ('method', 1), ('fdm', 1), ('nbsp', 1), ('held', 1), ('lozenetz', 1), ('bulgaria', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('conference', 2), ('icvns', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('variable', 1), ('neighborhood', 1), ('search', 1), ('held', 1), ('sithonia', 1), ('greece', 1), ('october', 1), ('received', 1), ('submission', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('challenge', 1), ('computational', 1), ('method', 1), ('clinical', 1), ('application', 1), ('spine', 1), ('imaging', 1), ('csi', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('granada', 1), ('spain', 1), ('september', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('green', 1), ('pervasive', 1), ('cloud', 1), ('computing', 1), ('gpc', 1), ('held', 1), ('hangzhou', 1), ('china', 1), ('full', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('modelling', 1), ('simulation', 1), ('autonomous', 1), ('system', 1), ('mesa', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('workshop', 1), ('constructive', 1), ('side', 1), ('channel', 1), ('analysis', 1), ('secure', 1), ('design', 1), ('cosade', 1), ('held', 1), ('darmstadt', 1), ('germany', 1), ('april', 1), ('nbsp', 1), ('presented', 1), ('together', 1)]
[('nbsp', 5), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('functional', 1), ('constraint', 1), ('logic', 1), ('programming', 1), ('wflp', 1), ('held', 1), ('frankfurt', 1), ('main', 1), ('germany', 1), ('september', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('iapr', 1), ('international', 1), ('conference', 1), ('discrete', 1), ('geometry', 1), ('computer', 1), ('imagery', 1), ('dgci', 1), ('held', 1), ('marne', 1), ('la', 1), ('vallée', 1), ('france', 1), ('march', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('computational', 1), ('color', 1), ('imaging', 1), ('workshop', 1), ('cciw', 1), ('held', 1), ('chiba', 1), ('japan', 1), ('march', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('openshmem', 1), ('workshop', 1), ('held', 1), ('baltimore', 1), ('md', 1), ('usa', 1), ('august', 1), ('full', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('inclusion', 1), ('volume', 1), ('discus', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('logic', 1), ('based', 1), ('program', 1), ('synthesis', 1), ('transformation', 1), ('lopstr', 1), ('held', 1), ('frankfurt', 1), ('main', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1)]
[('data', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('international', 1), ('workshop', 1), ('polystores', 1), ('system', 1), ('heterogeneous', 1), ('nbsp', 1), ('poly', 1), ('management', 1), ('analytics', 1), ('medicine', 1), ('healthcare', 1), ('dmah', 1), ('rio', 1), ('de', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('security', 1), ('cryptology', 1), ('inscrypt', 1), ('nbsp', 1), ('held', 1), ('fuzhou', 1), ('china', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('reviewed', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('centered', 1), ('computing', 1), ('hcc', 1), ('held', 1), ('merida', 1), ('mexico', 1), ('december', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('high', 1), ('performance', 1), ('computing', 1), ('computational', 1), ('science', 1), ('nbsp', 1), ('vecpar', 1), ('held', 1), ('são', 1), ('pedro', 1), ('brazil', 1), ('september', 1), ('full', 1)]
[('international', 2), ('workshop', 2), ('security', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('interplay', 1), ('safety', 1), ('system', 1), ('software', 1), ('architecture', 1), ('csits', 1), ('cyber', 1), ('intelligent', 1)]
[('selected', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('th', 1), ('international', 1), ('workshop', 1), ('graphical', 1), ('model', 1), ('security', 1), ('gramsec', 1), ('held', 1), ('oxford', 1), ('uk', 1), ('july', 1), ('full', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('applied', 1), ('reconfigurable', 1), ('computing', 1), ('arc', 1), ('held', 1), ('darmstadt', 1), ('germany', 1), ('april', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('persuasive', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('technology', 1), ('held', 1), ('limassol', 1), ('cyprus', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('european', 1), ('conference', 1), ('ir', 1), ('research', 1), ('ecir', 1), ('held', 1), ('cologne', 1), ('germany', 1), ('april', 1), ('full', 1), ('presented', 1), ('together', 1), ('keynote', 1), ('short', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('iacr', 1), ('international', 1), ('conference', 1), ('practice', 1), ('theory', 1), ('public', 1), ('key', 1), ('cryptography', 1), ('pkc', 1), ('held', 1), ('beijing', 1), ('china', 1), ('april', 1), ('revised', 1), ('paper', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('iacr', 1), ('international', 1), ('conference', 1), ('practice', 1), ('theory', 1), ('public', 1), ('key', 1), ('cryptography', 1), ('pkc', 1), ('held', 1), ('beijing', 1), ('china', 1), ('april', 1), ('revised', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('conference', 1), ('theory', 1), ('application', 1), ('model', 1), ('computation', 1), ('tamc', 1), ('held', 1), ('kitakyushu', 1), ('japan', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('evolutionary', 1), ('computation', 1), ('combinatorial', 1), ('optimization', 1), ('evomusart', 1), ('held', 1), ('leipzig', 1), ('germany', 1), ('april', 1), ('co', 1), ('located', 1), ('evo', 1), ('event', 1), ('eurogp', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('evolutionary', 1), ('computation', 1), ('combinatorial', 1), ('optimization', 1), ('evocop', 1), ('held', 1), ('part', 1), ('evo', 1), ('leipzig', 1), ('germany', 1), ('april', 1), ('co', 1), ('located', 1)]
[('evo', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('european', 1), ('conference', 1), ('genetic', 1), ('programming', 1), ('eurogp', 1), ('held', 1), ('part', 1), ('leipzig', 1), ('germany', 1), ('april', 1), ('co', 1), ('located', 1), ('event', 1), ('evocop', 1), ('evomusart', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('application', 1), ('evolutionary', 1), ('computation', 1), ('evoapplications', 1), ('held', 1), ('leipzig', 1), ('germany', 1), ('april', 1), ('co', 1), ('located', 1), ('evo', 1), ('event', 1), ('eurogp', 1), ('evocop', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('game', 1), ('learning', 1), ('alliance', 1), ('gala', 1), ('held', 1), ('nbsp', 1), ('palermo', 1), ('italy', 1), ('december', 1), ('revised', 1), ('regular', 1), ('presented', 1), ('together', 1), ('poster', 1)]
[('volume', 2), ('six', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('took', 1), ('place', 1), ('nbsp', 1), ('conjunction', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('held', 1), ('munich', 1), ('germany', 1)]
[('revised', 2), ('selected', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('th', 1), ('international', 1), ('symposium', 1), ('trend', 1), ('functional', 1), ('programming', 1), ('tfp', 1), ('held', 1), ('gothenburg', 1), ('sweden', 1), ('june', 1), ('full', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('system', 1), ('advanced', 1), ('application', 1), ('dasfaa', 1), ('held', 1), ('chiang', 1), ('mai', 1), ('thailand', 1), ('april', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('nbsp', 1), ('digital', 1), ('forensics', 1), ('watermarking', 1), ('iwdw', 1), ('held', 1), ('jeju', 1), ('island', 1), ('korea', 1), ('october', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('cmc', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('membrane', 1), ('computing', 1), ('held', 1), ('dresden', 1), ('germany', 1), ('september', 1), ('nbsp', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('international', 2), ('workshop', 2), ('security', 2), ('system', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('industrial', 1), ('control', 1), ('cyber', 1), ('physical', 1), ('cybericps', 1), ('second', 1)]
[('book', 1), ('constitutes', 1), ('workshop', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('system', 1), ('advanced', 1), ('application', 1), ('dasfaa', 1), ('held', 1), ('chiang', 1), ('mai', 1), ('thailand', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('iosec', 1), ('sponsored', 1), ('cipsec', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('november', 2), ('book', 1), ('contains', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('workshop', 1), ('held', 1), ('conjunction', 1), ('international', 1), ('conference', 1), ('high', 1), ('performance', 1), ('computing', 1), ('networking', 1), ('storage', 1), ('analysis', 1), ('sc', 1), ('denver', 1), ('co', 1), ('usa', 1), ('nbsp', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('system', 1), ('advanced', 1), ('application', 1), ('dasfaa', 1), ('held', 1), ('chiang', 1), ('mai', 1), ('thailand', 1), ('april', 1), ('full', 1), ('paper', 1)]
[('international', 2), ('data', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('workshop', 1), ('quality', 1), ('trust', 1), ('big', 1), ('quat', 1), ('held', 1), ('conjunction', 1), ('conference', 1), ('web', 1), ('information', 1), ('system', 1), ('engineering', 1), ('wise', 1)]
[('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('information', 1), ('security', 1), ('theory', 1), ('practice', 1), ('wistp', 1), ('held', 1), ('brussels', 1), ('belgium', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('architecture', 1), ('computing', 1), ('system', 1), ('arc', 1), ('held', 1), ('copenhagen', 1), ('denmark', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('designing', 1), ('digital', 1), ('globalized', 1), ('world', 1), ('desrist', 1), ('held', 1), ('worcester', 1), ('usa', 1), ('june', 1), ('nbsp', 1), ('revised', 1), ('full', 1), ('paper', 1), ('included', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitute', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptographic', 1), ('technique', 1), ('eurocrypt', 1), ('held', 1), ('darmstadt', 1), ('germany', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitute', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptographic', 1), ('technique', 1), ('eurocrypt', 1), ('held', 1), ('darmstadt', 1), ('germany', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitute', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptographic', 1), ('technique', 1), ('eurocrypt', 1), ('held', 1), ('darmstadt', 1), ('germany', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('green', 1), ('pervasive', 1), ('cloud', 1), ('computing', 1), ('gpc', 1), ('held', 1), ('uberlândia', 1), ('brazil', 1), ('full', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('catherine', 3), ('meadow', 3), ('festschrift', 2), ('volume', 1), ('published', 1), ('honor', 1), ('contains', 1), ('essay', 1), ('presented', 1), ('symposium', 1), ('held', 1), ('fredericksburg', 1), ('va', 1), ('usa', 1), ('pioneer', 1), ('developing', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('algorithm', 1), ('complexity', 1), ('ciac', 1), ('held', 1), ('rome', 1), ('italy', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('machine', 1), ('learning', 1), ('medical', 1), ('reconstruction', 1), ('mlmir', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('shenzhen', 1), ('china', 1), ('october', 1), ('full', 1), ('paper', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('scientific', 1), ('satellite', 1), ('event', 1), ('conjunction', 1), ('th', 1), ('international', 1), ('conference', 1), ('service', 1), ('oriented', 1), ('computing', 1), ('icsoc', 1), ('hangzhou', 1), ('china', 1), ('november', 1)]
[('conference', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('security', 1), ('application', 1), ('wisa', 1), ('held', 1), ('jeju', 1), ('island', 1), ('korea', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('design', 1), ('modeling', 1), ('evaluation', 1), ('cyber', 1), ('physical', 1), ('system', 1), ('cyphy', 1), ('held', 1), ('conjunction', 1), ('esweek', 1), ('seoul', 1), ('south', 1), ('korea', 1), ('october', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('code', 1), ('cryptology', 1), ('information', 1), ('security', 1), ('si', 1), ('held', 1), ('rabat', 1), ('morocco', 1), ('april', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('frontier', 1), ('algorithmics', 1), ('faw', 1), ('held', 1), ('sanya', 1), ('china', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('system', 2), ('engineering', 2), ('volume', 1), ('contains', 1), ('lecture', 1), ('leading', 1), ('edge', 1), ('research', 1), ('method', 1), ('tool', 1), ('use', 1), ('computer', 1), ('th', 1), ('international', 1), ('school', 1), ('trustworthy', 1), ('software', 1), ('set', 1), ('held', 1), ('april', 1), ('southwest', 1), ('university', 1)]
[('conference', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('held', 1), ('th', 1), ('international', 1), ('internet', 1), ('science', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('october', 1), ('nbsp', 1), ('detecting', 1), ('social', 1), ('problem', 1), ('online', 1)]
[('conference', 3), ('nbsp', 3), ('th', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('tpc', 1), ('technology', 1), ('performance', 1), ('evaluation', 1), ('benchmarking', 1), ('tpctc', 1), ('held', 1), ('conjunction', 1), ('international', 1)]
[('computing', 2), ('system', 2), ('advance', 1), ('artificial', 1), ('intelligence', 1), ('sensor', 1), ('robotics', 1), ('mobile', 1), ('making', 1), ('autonomous', 1), ('reality', 1), ('time', 1), ('influence', 1), ('edge', 1), ('leading', 1), ('distributed', 1), ('architecture', 1), ('incorporating', 1)]
[('nbsp', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('engineering', 1), ('icwe', 1), ('held', 1), ('daejeon', 1), ('south', 1), ('korea', 1), ('june', 1), ('full', 1), ('research', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('algorithmic', 1), ('aspect', 1), ('cloud', 1), ('computing', 1), ('algocloud', 1), ('held', 1), ('helsinki', 1), ('finland', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1)]
[('nbsp', 4), ('book', 1), ('collect', 1), ('revised', 1), ('selected', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('symposium', 1), ('molecular', 1), ('logic', 1), ('computational', 1), ('synthetic', 1), ('biology', 1), ('mlcsb', 1), ('held', 1), ('chile', 1), ('santiago', 1), ('december', 1), ('volume', 1), ('contains', 1), ('full', 1)]
[('paper', 4), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('symposium', 1), ('foundation', 1), ('practice', 1), ('security', 1), ('fps', 1), ('held', 1), ('montreal', 1), ('qc', 1), ('canada', 1), ('march', 1), ('full', 1), ('short', 1), ('position', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('integer', 1), ('programming', 1), ('combinatorial', 1), ('optimization', 1), ('ipco', 1), ('held', 1), ('ann', 1), ('arbor', 1), ('mi', 1), ('usa', 1), ('full', 1), ('version', 1), ('extended', 1), ('abstract', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('web', 1), ('wireless', 1), ('geographical', 1), ('information', 1), ('system', 1), ('gi', 1), ('held', 1), ('kyoto', 1), ('japan', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('included', 1), ('volume', 1), ('together', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('work', 1), ('conference', 1), ('interplay', 1), ('natural', 1), ('artificial', 1), ('computation', 1), ('iwinac', 1), ('held', 1), ('almería', 1), ('spain', 1), ('june', 1), ('total', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('work', 1), ('conference', 1), ('interplay', 1), ('natural', 1), ('artificial', 1), ('computation', 1), ('iwinac', 1), ('held', 1), ('almería', 1), ('spain', 1), ('june', 1), ('total', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('networking', 1), ('mln', 1), ('held', 1), ('paris', 1), ('france', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('included', 1), ('volume', 1)]
[('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('held', 1), ('perth', 1), ('australia', 1), ('december', 1), ('total', 1), ('contribution', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('computation', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('unconventional', 1), ('natural', 1), ('ucnc', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('reliability', 1), ('safety', 1), ('security', 1), ('railway', 1), ('system', 1), ('rssrail', 1), ('held', 1), ('lille', 1), ('france', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('symposium', 1), ('practical', 1), ('aspect', 1), ('declarative', 1), ('language', 1), ('padl', 1), ('held', 1), ('new', 1), ('orleans', 1), ('usa', 1), ('january', 1), ('full', 1), ('short', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('internet', 1), ('vehicle', 1), ('iov', 1), ('took', 1), ('place', 1), ('kaohsiung', 1), ('taiwan', 1), ('november', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('software', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('second', 1), ('international', 1), ('workshop', 1), ('engineering', 1), ('aspect', 1), ('continuous', 1), ('development', 1), ('new', 1), ('paradigm', 1), ('production', 1), ('deployment', 1), ('devops', 1), ('held', 1), ('château', 1), ('de', 1), ('villebrumier', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('concept', 1), ('intelligent', 1), ('vision', 1), ('system', 1), ('acivs', 1), ('held', 1), ('auckland', 1), ('new', 1), ('zealand', 1), ('february', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('international', 2), ('nbsp', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('confederated', 1), ('workshop', 1), ('enterprise', 1), ('integration', 1), ('interoperability', 1), ('networking', 1), ('ei', 1), ('fact', 1), ('based', 1), ('modeling', 1), ('fbm', 1), ('industry', 1), ('case', 1), ('study', 1), ('program', 1)]
[('paper', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('aspect', 1), ('component', 1), ('software', 1), ('facs', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('october', 1), ('full', 1), ('presented', 1)]
[('rsa', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('cryptographer', 1), ('track', 1), ('conference', 1), ('ct', 1), ('held', 1), ('san', 1), ('francisco', 1), ('ca', 1), ('usa', 1), ('february', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('volume', 2), ('lncs', 2), ('set', 1), ('constitute', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('third', 1), ('international', 1), ('conference', 1), ('numerical', 1), ('computation', 1), ('theory', 1), ('algorithm', 1), ('numta', 1), ('held', 1), ('crotone', 1), ('italy', 1), ('june', 1), ('nbsp', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('th', 1), ('international', 1), ('conference', 1), ('large', 1), ('scale', 1), ('scientific', 1), ('computing', 1), ('lssc', 1), ('held', 1), ('sozopol', 1), ('bulgaria', 1), ('june', 1), ('nbsp', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('joint', 1), ('international', 1), ('semantic', 1), ('technology', 1), ('conference', 1), ('jist', 1), ('held', 1), ('hangzhou', 1), ('china', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('volume', 2), ('lncs', 2), ('set', 1), ('constitute', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('third', 1), ('international', 1), ('conference', 1), ('numerical', 1), ('computation', 1), ('theory', 1), ('algorithm', 1), ('numta', 1), ('held', 1), ('crotone', 1), ('italy', 1), ('june', 1), ('nbsp', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('nd', 1), ('international', 1), ('conference', 1), ('information', 1), ('security', 1), ('cryptology', 1), ('icisc', 1), ('held', 1), ('seoul', 1), ('south', 1), ('korea', 1), ('december', 1), ('total', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('workshop', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('sete', 1), ('held', 1), ('conjunction', 1), ('icwl', 1), ('magdeburg', 1), ('germany', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('communication', 1), ('security', 1), ('icics', 1), ('held', 1), ('beijing', 1), ('china', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('selected', 1)]
[('th', 2), ('international', 2), ('workshop', 2), ('cyber', 2), ('physical', 2), ('system', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('model', 1), ('based', 1), ('design', 1), ('cyphy', 1), ('embedded', 1), ('education', 1), ('wese', 1), ('held', 1), ('conjunction', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('structured', 1), ('object', 1), ('oriented', 1), ('formal', 1), ('language', 1), ('method', 1), ('sofl', 1), ('msvl', 1), ('held', 1), ('shenzhen', 1), ('china', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('ker', 2), ('ko', 2), ('festschrift', 1), ('honor', 1), ('professor', 1), ('stony', 1), ('brook', 1), ('university', 1), ('usa', 1), ('founding', 1), ('father', 1), ('computational', 1), ('complexity', 1), ('real', 1), ('number', 1), ('analysis', 1), ('harvey', 1), ('friedman', 1), ('devised', 1), ('theoretical', 1), ('model', 1)]
[('international', 2), ('workshop', 2), ('security', 2), ('system', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('industrial', 1), ('control', 1), ('cyber', 1), ('physical', 1), ('cybericps', 1), ('third', 1), ('privacy', 1)]
[('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('second', 1), ('information', 1), ('operational', 1), ('technology', 1), ('ot', 1), ('security', 1), ('system', 1), ('iosec', 1), ('first', 1), ('model', 1), ('driven', 1), ('simulation', 1)]
[('volume', 2), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('acpr', 1), ('held', 1), ('auckland', 1), ('new', 1), ('zealand', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('computer', 1), ('graphic', 1), ('international', 1), ('conference', 1), ('cgi', 1), ('held', 1), ('calgary', 1), ('ab', 1), ('canada', 1), ('june', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('mathematical', 1), ('optimization', 1), ('theory', 1), ('nbsp', 1), ('operation', 1), ('research', 1), ('motor', 1), ('held', 1), ('ekaterinburg', 1), ('russia', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('edge', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('computing', 1), ('held', 1), ('san', 1), ('diego', 1), ('ca', 1), ('usa', 1), ('june', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('internet', 1), ('thing', 1), ('iciot', 1), ('nbsp', 1), ('held', 1), ('part', 1), ('scf', 1), ('san', 1), ('diego', 1), ('ca', 1), ('usa', 1), ('june', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('conference', 2), ('cloud', 2), ('volume', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('computing', 1), ('held', 1), ('part', 1), ('service', 1), ('federation', 1), ('scf', 1), ('san', 1), ('diego', 1), ('ca', 1), ('usa', 1), ('june', 1), ('full', 1), ('paper', 1), ('carefully', 1)]
[('volume', 2), ('paper', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('service', 1), ('icws', 1), ('held', 1), ('part', 1), ('scf', 1), ('san', 1), ('diego', 1), ('ca', 1), ('usa', 1), ('june', 1), ('full', 1), ('together', 1), ('short', 1), ('published', 1)]
[('service', 3), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('world', 1), ('congress', 1), ('held', 1), ('part', 1), ('conference', 1), ('federation', 1), ('scf', 1), ('san', 1), ('diego', 1), ('usa', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('paper', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('processing', 1), ('applied', 1), ('mathematics', 1), ('ppam', 1), ('held', 1), ('bialystok', 1), ('poland', 1), ('september', 1), ('regular', 1)]
[('due', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('working', 1), ('conference', 1), ('requirement', 1), ('engineering', 1), ('foundation', 1), ('software', 1), ('quality', 1), ('refsq', 1), ('held', 1), ('pisa', 1), ('italy', 1), ('march', 1), ('covid', 1)]
[('volume', 2), ('paper', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('sustainable', 1), ('digital', 1), ('community', 1), ('iconference', 1), ('held', 1), ('boras', 1), ('sweden', 1), ('march', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('european', 1), ('conference', 1), ('service', 1), ('oriented', 1), ('cloud', 1), ('computing', 1), ('esocc', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('security', 1), ('cryptology', 1), ('inscrypt', 1), ('held', 1), ('nanjing', 1), ('china', 1), ('december', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('conference', 1), ('business', 1), ('service', 1), ('society', 1), ('held', 1), ('skukuza', 1), ('south', 1), ('africa', 1), ('april', 1), ('total', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1)]
[('volume', 2), ('conference', 2), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('variable', 1), ('neighborhood', 1), ('search', 1), ('icvns', 1), ('held', 1), ('rabat', 1), ('morocco', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 2), ('persuasive', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('technology', 1), ('held', 1), ('aalborg', 1), ('denmark', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('festschrift', 1), ('volume', 1), ('published', 1), ('honor', 1), ('bernhard', 1), ('steffen', 1), ('professor', 1), ('technical', 1), ('university', 1), ('dortmund', 1), ('occasion', 1), ('th', 1), ('birthday', 1), ('vision', 1), ('theoretical', 1), ('practical', 1), ('work', 1), ('span', 1), ('development', 1)]
[('volume', 2), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('neural', 1), ('network', 1), ('isnn', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('july', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('workshop', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('reproducible', 1), ('research', 1), ('pattern', 1), ('recognition', 1), ('rrpr', 1), ('beijing', 1), ('china', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('satisfiability', 1), ('testing', 1), ('sat', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('uk', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('six', 1), ('volume', 1), ('lncs', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('saint', 1), ('petersburg', 1), ('russia', 1), ('july', 1), ('full', 1), ('short', 1)]
[('paper', 2), ('six', 1), ('volume', 1), ('lncs', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('saint', 1), ('petersburg', 1), ('russia', 1), ('july', 1), ('full', 1), ('short', 1)]
[('paper', 2), ('six', 1), ('volume', 1), ('lncs', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('saint', 1), ('petersburg', 1), ('russia', 1), ('july', 1), ('full', 1), ('short', 1)]
[('paper', 2), ('six', 1), ('volume', 1), ('lncs', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('saint', 1), ('petersburg', 1), ('russia', 1), ('july', 1), ('full', 1), ('short', 1)]
[('paper', 2), ('six', 1), ('volume', 1), ('lncs', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('saint', 1), ('petersburg', 1), ('russia', 1), ('july', 1), ('full', 1), ('short', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('graph', 1), ('transformation', 1), ('icgt', 1), ('held', 1), ('part', 1), ('staf', 1), ('eindhoven', 1), ('netherlands', 1), ('july', 1), ('research', 1), ('tool', 1), ('presented', 1)]
[('international', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('miccai', 1), ('brainlesion', 1), ('workshop', 1), ('brainles', 1), ('multimodal', 1), ('brain', 1), ('tumor', 1), ('segmentation', 1), ('brat', 1), ('challenge', 1), ('computational', 1)]
[('conference', 2), ('due', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('rigorous', 1), ('state', 1), ('based', 1), ('method', 1), ('abz', 1), ('held', 1), ('ulm', 1), ('germany', 1), ('nbsp', 1), ('cancelled', 1), ('covid', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('computer', 1), ('information', 1), ('system', 1), ('industrial', 1), ('management', 1), ('application', 1), ('cisim', 1), ('held', 1), ('bialystok', 1), ('poland', 1), ('october', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('th', 2), ('festschrift', 1), ('published', 1), ('honor', 1), ('yuri', 1), ('gurevich', 1), ('birthday', 1), ('associated', 1), ('conference', 1), ('yurifest', 1), ('planned', 1), ('fontainebleau', 1), ('france', 1), ('combination', 1), ('journées', 1), ('sur', 1), ('le', 1), ('arithmétiques', 1), ('faibles', 1)]
[('conference', 2), ('due', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('development', 1), ('language', 1), ('theory', 1), ('dlt', 1), ('held', 1), ('tampa', 1), ('florida', 1), ('usa', 1), ('cancelled', 1), ('covid', 1), ('pandemic', 1)]
[('international', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('business', 1), ('government', 1), ('organization', 1), ('hcibgo', 1), ('held', 1), ('july', 1), ('part', 1), ('hci', 1), ('orlando', 1), ('fl', 1), ('usa', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('conference', 1), ('adaptive', 1), ('instructional', 1), ('system', 1), ('ai', 1), ('held', 1), ('july', 1), ('part', 1), ('hci', 1), ('orlando', 1), ('fl', 1), ('usa', 1), ('hcii', 1), ('received', 1), ('total', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('digital', 1), ('human', 1), ('modeling', 1), ('application', 1), ('health', 1), ('safety', 1), ('ergonomics', 1), ('risk', 1), ('management', 1), ('dhm', 1), ('held', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('digital', 1), ('human', 1), ('modeling', 1), ('application', 1), ('health', 1), ('safety', 1), ('ergonomics', 1), ('risk', 1), ('management', 1), ('dhm', 1), ('held', 1)]
[('hci', 3), ('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('cybersecurity', 1), ('privacy', 1), ('trust', 1), ('cpt', 1), ('held', 1), ('part', 1), ('st', 1), ('hcii', 1), ('orlando', 1), ('fl', 1)]
[('international', 2), ('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('cross', 1), ('cultural', 1), ('design', 1), ('ccd', 1), ('held', 1), ('part', 1), ('st', 1), ('hci', 1), ('hcii', 1)]
[('international', 2), ('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('cross', 1), ('cultural', 1), ('design', 1), ('ccd', 1), ('held', 1), ('part', 1), ('st', 1), ('hci', 1), ('hcii', 1)]
[('hci', 3), ('international', 2), ('game', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('conference', 1), ('held', 1), ('july', 1), ('part', 1), ('orlando', 1), ('fl', 1), ('usa', 1), ('nbsp', 1), ('hcii', 1), ('received', 1), ('total', 1), ('submission', 1)]
[('human', 2), ('computer', 2), ('interaction', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('thematic', 1), ('area', 1), ('st', 1), ('international', 1), ('conference', 1), ('hcii', 1), ('took', 1), ('place', 1), ('orlando', 1), ('florida', 1)]
[('international', 3), ('conference', 2), ('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('design', 1), ('user', 1), ('experience', 1), ('usability', 1), ('duxu', 1), ('held', 1), ('part', 1), ('st', 1), ('hci', 1)]
[('high', 2), ('performance', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computing', 1), ('isc', 1), ('held', 1), ('frankfurt', 1), ('main', 1), ('germany', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('due', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('mexican', 1), ('pattern', 1), ('recognition', 1), ('mcpr', 1), ('morelia', 1), ('mexico', 1), ('june', 1), ('virtually', 1), ('covid', 1), ('pandemic', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('application', 1), ('natural', 1), ('language', 1), ('information', 1), ('system', 1), ('nldb', 1), ('held', 1), ('saarbrücken', 1), ('germany', 1), ('june', 1), ('full', 1), ('short', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('ifip', 1), ('wg', 1), ('conference', 1), ('data', 1), ('application', 1), ('security', 1), ('privacy', 1), ('dbsec', 1), ('held', 1), ('regensburg', 1), ('germany', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('seven', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('icc', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('june', 1), ('total', 1)]
[('seven', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('icc', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('june', 1), ('total', 1)]
[('seven', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('icc', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('june', 1), ('total', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('image', 1), ('analysis', 1), ('recognition', 1), ('iciar', 1), ('held', 1), ('póvoa', 1), ('de', 1), ('varzim', 1), ('portugal', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('seven', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('icc', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('june', 1), ('total', 1)]
[('th', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('test', 1), ('proof', 1), ('tap', 1), ('held', 1), ('part', 1), ('world', 1), ('congress', 1), ('formal', 1), ('method', 1), ('bergen', 1), ('norway', 1), ('june', 1), ('regular', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('security', 1), ('privacy', 1), ('anonymity', 1), ('computation', 1), ('communication', 1), ('storage', 1), ('spaccs', 1), ('held', 1), ('atlanta', 1), ('ga', 1), ('usa', 1), ('july', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('algorithm', 1), ('model', 1), ('web', 1), ('graph', 1), ('waw', 1), ('held', 1), ('brisbane', 1), ('qld', 1), ('australia', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('nbsp', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('colloquium', 1), ('structural', 1), ('information', 1), ('communication', 1), ('complexity', 1), ('sirocco', 1), ('held', 1), ('aquila', 1), ('italy', 1), ('july', 1), ('full', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('post', 1), ('quantum', 1), ('cryptography', 1), ('pqcrypto', 1), ('held', 1), ('fort', 1), ('lauderdale', 1), ('fl', 1), ('usa', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('combinatorial', 1), ('algorithm', 1), ('iwoca', 1), ('held', 1), ('pisa', 1), ('italy', 1), ('july', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('lncs', 2), ('conference', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('artificial', 1), ('intelligence', 1), ('security', 1), ('icais', 1), ('held', 1), ('new', 1), ('york', 1), ('usa', 1), ('july', 1), ('formerly', 1)]
[('net', 3), ('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('communication', 1), ('technology', 1), ('vehicle', 1), ('car', 1), ('train', 1), ('aircraft', 1), ('held', 1), ('colmar', 1), ('france', 1), ('full', 1), ('short', 1), ('volume', 1)]
[('lncs', 2), ('conference', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('artificial', 1), ('intelligence', 1), ('security', 1), ('icais', 1), ('held', 1), ('new', 1), ('york', 1), ('usa', 1), ('july', 1), ('formerly', 1)]
[('lncs', 2), ('conference', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('artificial', 1), ('intelligence', 1), ('security', 1), ('icais', 1), ('held', 1), ('new', 1), ('york', 1), ('usa', 1), ('july', 1), ('formerly', 1)]
[('lncs', 2), ('conference', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('artificial', 1), ('intelligence', 1), ('security', 1), ('icais', 1), ('held', 1), ('new', 1), ('york', 1), ('usa', 1), ('july', 1), ('formerly', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advance', 1), ('swarm', 1), ('intelligence', 1), ('icsi', 1), ('held', 1), ('chiang', 1), ('mai', 1), ('thailand', 1), ('june', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advance', 1), ('swarm', 1), ('intelligence', 1), ('icsi', 1), ('held', 1), ('chiang', 1), ('mai', 1), ('thailand', 1), ('june', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('cryptology', 1), ('information', 1), ('security', 1), ('latin', 1), ('america', 1), ('latincrypt', 1), ('held', 1), ('havana', 1), ('cuba', 1), ('september', 1), ('paper', 1), ('presented', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('revised', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('code', 1), ('based', 1), ('cryptography', 1), ('cbc', 1), ('held', 1), ('darmstadt', 1), ('germany', 1), ('eight', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computing', 1), ('combinatorics', 1), ('cocoon', 1), ('held', 1), ('xi', 1), ('china', 1), ('july', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('development', 1), ('language', 1), ('theory', 1), ('dlt', 1), ('held', 1), ('warsaw', 1), ('poland', 1), ('august', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('three', 1), ('invited', 1), ('talk', 1)]
[('nbsp', 3), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('joint', 1), ('conference', 1), ('apweb', 1), ('waim', 1), ('held', 1), ('chengdu', 1), ('china', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('nbsp', 3), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('joint', 1), ('conference', 1), ('apweb', 1), ('waim', 1), ('held', 1), ('chengdu', 1), ('china', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('nbsp', 2), ('reality', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('augmented', 1), ('virtual', 1), ('computer', 1), ('graphic', 1), ('avr', 1), ('held', 1), ('santa', 1), ('maria', 1), ('al', 1), ('bagno', 1), ('italy', 1)]
[('nbsp', 2), ('reality', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('augmented', 1), ('virtual', 1), ('computer', 1), ('graphic', 1), ('avr', 1), ('held', 1), ('santa', 1), ('maria', 1), ('al', 1), ('bagno', 1), ('italy', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('big', 1), ('scientific', 1), ('data', 1), ('management', 1), ('bigsdm', 1), ('held', 1), ('beijing', 1), ('greece', 1), ('november', 1), ('december', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('security', 1), ('iwsec', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('august', 1), ('nbsp', 1), ('regular', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('lncs', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('international', 1), ('cryptology', 1), ('conference', 1), ('crypto', 1), ('held', 1), ('santa', 1), ('barbara', 1), ('ca', 1), ('usa', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('lncs', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('international', 1), ('cryptology', 1), ('conference', 1), ('crypto', 1), ('held', 1), ('santa', 1), ('barbara', 1), ('ca', 1), ('usa', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('lncs', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('international', 1), ('cryptology', 1), ('conference', 1), ('crypto', 1), ('held', 1), ('santa', 1), ('barbara', 1), ('ca', 1), ('usa', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('samos', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('embedded', 1), ('computer', 1), ('system', 1), ('architecture', 1), ('modeling', 1), ('simulation', 1), ('held', 1), ('pythagorion', 1), ('greece', 1), ('july', 1), ('regular', 1), ('paper', 1), ('presented', 1)]
[('petri', 3), ('net', 3), ('th', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('conference', 1), ('application', 1), ('theory', 1), ('concurrency', 1), ('held', 1), ('aachen', 1), ('germany', 1), ('june', 1), ('co', 1), ('located', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('image', 1), ('analysis', 1), ('recognition', 1), ('iciar', 1), ('held', 1), ('waterloo', 1), ('canada', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('image', 1), ('analysis', 1), ('recognition', 1), ('iciar', 1), ('held', 1), ('waterloo', 1), ('canada', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('revised', 2), ('volume', 1), ('present', 1), ('lecture', 1), ('note', 1), ('selected', 1), ('talk', 1), ('given', 1), ('th', 1), ('central', 1), ('european', 1), ('functional', 1), ('programming', 1), ('school', 1), ('cefp', 1), ('held', 1), ('july', 1), ('budapest', 1), ('hungary', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptology', 1), ('information', 1), ('security', 1), ('asiacrypt', 1), ('held', 1), ('kobe', 1), ('japan', 1), ('december', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('internet', 1), ('science', 1), ('held', 1), ('perpignan', 1), ('france', 1), ('december', 1), ('revised', 1), ('full', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('machine', 1), ('intelligence', 1), ('premi', 1), ('nbsp', 1), ('held', 1), ('tezpur', 1), ('india', 1), ('december', 1), ('revised', 1), ('full', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('machine', 1), ('intelligence', 1), ('premi', 1), ('nbsp', 1), ('held', 1), ('tezpur', 1), ('india', 1), ('december', 1), ('revised', 1), ('full', 1)]
[('book', 2), ('nbsp', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('nii', 1), ('testbeds', 1), ('community', 1), ('information', 1), ('access', 1), ('research', 1), ('ntcir', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('th', 1), ('international', 1), ('workshop', 1), ('graphical', 1), ('model', 1), ('security', 1), ('gramsec', 1), ('held', 1), ('hoboken', 1), ('nj', 1), ('usa', 1), ('june', 1), ('nbsp', 1), ('full', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('symposium', 1), ('graph', 1), ('drawing', 1), ('network', 1), ('visualization', 1), ('gd', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('september', 1), ('paper', 1), ('poster', 1), ('presented', 1), ('volume', 1)]
[('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('thth', 1), ('international', 1), ('image', 1), ('graphic', 1), ('icig', 1), ('held', 1), ('beijing', 1), ('china', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('thth', 1), ('international', 1), ('image', 1), ('graphic', 1), ('icig', 1), ('held', 1), ('beijing', 1), ('china', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('thth', 1), ('international', 1), ('image', 1), ('graphic', 1), ('icig', 1), ('held', 1), ('beijing', 1), ('china', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('volume', 1), ('lncs', 1), ('constitute', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligence', 1), ('science', 1), ('big', 1), ('data', 1), ('engineering', 1), ('iscide', 1), ('held', 1), ('nanjing', 1), ('china', 1), ('october', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('volume', 1), ('lncs', 1), ('constitute', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligence', 1), ('science', 1), ('big', 1), ('data', 1), ('engineering', 1), ('iscide', 1), ('held', 1), ('nanjing', 1), ('china', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('workshop', 2), ('performance', 2), ('hpc', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('held', 1), ('th', 1), ('international', 1), ('isc', 1), ('high', 1), ('frankfurt', 1), ('germany', 1), ('june', 1), ('data', 1), ('center', 1), ('iodc', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('reviewed', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('centered', 1), ('computing', 1), ('hcc', 1), ('held', 1), ('čačak', 1), ('serbia', 1), ('august', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('australasian', 1), ('database', 1), ('conference', 1), ('adc', 1), ('held', 1), ('melbourne', 1), ('vic', 1), ('australia', 1), ('february', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('statistical', 1), ('atlas', 1), ('computational', 1), ('model', 1), ('heart', 1), ('atrial', 1), ('segmentation', 1), ('lv', 1), ('quantification', 1), ('challenge', 1), ('stacom', 1), ('held', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('emerging', 1), ('technology', 1), ('authorization', 1), ('authentication', 1), ('etaa', 1), ('held', 1), ('luxembourg', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('security', 1), ('application', 1), ('wisa', 1), ('held', 1), ('jeju', 1), ('island', 1), ('south', 1), ('korea', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('contains', 1), ('revised', 1), ('extended', 1), ('version', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('icpram', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('february', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('four', 1), ('international', 1), ('workshop', 1), ('held', 1), ('framework', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('symposium', 1), ('image', 1), ('video', 1), ('technology', 1), ('psivt', 1), ('sydney', 1), ('nsw', 1), ('australia', 1), ('november', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algorithm', 1), ('computation', 1), ('walcom', 1), ('held', 1), ('singapore', 1), ('march', 1), ('april', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('foundation', 1), ('information', 1), ('knowledge', 1), ('system', 1), ('foiks', 1), ('nbsp', 1), ('held', 1), ('dortmund', 1), ('germany', 1), ('february', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('multidisciplinary', 1), ('international', 1), ('symposium', 1), ('misdoom', 1), ('held', 1), ('hamburg', 1), ('germany', 1), ('february', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('challenge', 1), ('computational', 1), ('method', 1), ('clinical', 1), ('application', 1), ('spine', 1), ('imaging', 1), ('csi', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('october', 1), ('shenzhen', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('workshop', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('engineering', 1), ('icwe', 1), ('held', 1), ('daejeon', 1), ('south', 1), ('korea', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('selected', 1), ('submission', 1)]
[('conference', 2), ('petri', 2), ('net', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('application', 1), ('theory', 1), ('concurrency', 1), ('supposed', 1), ('paris', 1), ('france', 1), ('june', 1), ('virtually', 1)]
[('international', 2), ('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('universal', 1), ('access', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('uahci', 1), ('held', 1), ('part', 1), ('nd', 1), ('hci', 1)]
[('international', 3), ('hci', 3), ('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('second', 1), ('cybersecurity', 1), ('privacy', 1), ('trust', 1), ('cpt', 1), ('held', 1), ('part', 1), ('nd', 1), ('took', 1), ('place', 1), ('copenhagen', 1)]
[('conference', 3), ('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('culture', 1), ('computing', 1), ('held', 1), ('part', 1), ('nd', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('july', 1)]
[('international', 2), ('volume', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('business', 1), ('government', 1), ('organization', 1), ('hcibgo', 1), ('held', 1), ('july', 1), ('part', 1), ('hci', 1), ('copenhagen', 1)]
[('conference', 3), ('proceeding', 2), ('international', 2), ('held', 2), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('th', 1), ('cross', 1), ('cultural', 1), ('design', 1), ('ccd', 1), ('part', 1), ('hci', 1), ('copenhagen', 1), ('denmark', 1), ('july', 1)]
[('international', 2), ('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('hci', 1), ('mobility', 1), ('transport', 1), ('automotive', 1), ('system', 1), ('mobitas', 1), ('held', 1), ('part', 1), ('nd', 1)]
[('international', 2), ('conference', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('adaptive', 1), ('instructional', 1), ('system', 1), ('ai', 1), ('due', 1), ('held', 1), ('july', 1), ('part', 1), ('hci', 1), ('copenhagen', 1), ('denmark', 1)]
[('international', 3), ('lncs', 2), ('conference', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('learning', 1), ('collaboration', 1), ('technology', 1), ('lct', 1), ('held', 1), ('part', 1), ('nd', 1), ('hci', 1)]
[('international', 3), ('lncs', 2), ('conference', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('learning', 1), ('collaboration', 1), ('technology', 1), ('lct', 1), ('held', 1), ('part', 1), ('nd', 1), ('hci', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('advance', 1), ('swarm', 1), ('intelligence', 1), ('icsi', 1), ('july', 1), ('belgrade', 1), ('serbia', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('paper', 1), ('included', 1)]
[('conference', 2), ('clef', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('association', 1), ('held', 1), ('lugano', 1), ('switzerland', 1), ('september', 1), ('clear', 1), ('focus', 1), ('experimental', 1), ('information', 1), ('retrieval', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('software', 1), ('architecture', 1), ('ecsa', 1), ('held', 1), ('paris', 1), ('france', 1), ('september', 1), ('nbsp', 1), ('research', 1), ('track', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('book', 2), ('word', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('combinatorics', 1), ('held', 1), ('loughborough', 1), ('uk', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('information', 1), ('security', 1), ('isc', 1), ('held', 1), ('new', 1), ('york', 1), ('city', 1), ('ny', 1), ('usa', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('workshop', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('five', 1), ('industrial', 1), ('session', 1), ('held', 1), ('th', 1), ('conference', 1), ('image', 1), ('analysis', 1), ('processing', 1), ('iciap', 1), ('trento', 1), ('italy', 1), ('september', 1), ('second', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('quantitative', 1), ('evaluation', 1), ('system', 1), ('qest', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('september', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('nbsp', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('image', 1), ('analysis', 1), ('processing', 1), ('iciap', 1), ('held', 1), ('trento', 1), ('italy', 1), ('september', 1), ('paper', 1), ('presented', 1)]
[('nbsp', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('image', 1), ('analysis', 1), ('processing', 1), ('iciap', 1), ('held', 1), ('trento', 1), ('italy', 1), ('september', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('reachability', 1), ('problem', 1), ('rp', 1), ('held', 1), ('brussels', 1), ('belgium', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('formal', 1), ('method', 1), ('sefm', 1), ('held', 1), ('oslo', 1), ('norway', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('iapr', 1), ('international', 1), ('workshop', 1), ('document', 1), ('analysis', 1), ('system', 1), ('da', 1), ('held', 1), ('wuhan', 1), ('china', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('ubiquitous', 1), ('networking', 1), ('unet', 1), ('held', 1), ('limoges', 1), ('france', 1), ('november', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1)]
[('chapter', 1), ('efficient', 1), ('index', 1), ('reachability', 1), ('query', 1), ('public', 1), ('transport', 1), ('network', 1), ('available', 1), ('open', 1), ('access', 1), ('creative', 1), ('common', 1), ('attribution', 1), ('international', 1), ('license', 1), ('via', 1), ('link', 1), ('springer', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('practice', 1), ('digital', 1), ('library', 1), ('tpdl', 1), ('held', 1), ('lyon', 1), ('france', 1), ('august', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('euro', 1), ('par', 1), ('warsaw', 1), ('poland', 1), ('august', 1), ('virtually', 1), ('due', 1), ('coronavirus', 1), ('pandemic', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('st', 1), ('international', 1), ('symposium', 1), ('trend', 1), ('functional', 1), ('programming', 1), ('tfp', 1), ('held', 1), ('krakow', 1), ('poland', 1), ('february', 1), ('full', 1), ('presented', 1), ('volume', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('joint', 1), ('rule', 1), ('reasoning', 1), ('ruleml', 1), ('rr', 1), ('held', 1), ('oslo', 1), ('norway', 1), ('june', 1), ('july', 1), ('th', 1), ('new', 1), ('series', 1), ('joining', 1), ('effort', 1), ('existing', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('algorithmic', 1), ('aspect', 1), ('cloud', 1), ('computing', 1), ('algocloud', 1), ('held', 1), ('munich', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('collaboration', 1), ('technology', 1), ('social', 1), ('computing', 1), ('collabtech', 1), ('scheduled', 1), ('take', 1), ('place', 1), ('tartu', 1), ('estonia', 1), ('september', 1), ('held', 1), ('virtually', 1)]
[('reality', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('augmented', 1), ('virtual', 1), ('computer', 1), ('graphic', 1), ('avr', 1), ('held', 1), ('lecce', 1), ('italy', 1), ('september', 1), ('full', 1), ('paper', 1)]
[('reality', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('augmented', 1), ('virtual', 1), ('computer', 1), ('graphic', 1), ('avr', 1), ('held', 1), ('lecce', 1), ('italy', 1), ('september', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('artificial', 1), ('intelligence', 1), ('security', 1), ('icais', 1), ('held', 1), ('hohhot', 1), ('china', 1), ('july', 1), ('formerly', 1), ('called', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('artificial', 1), ('intelligence', 1), ('security', 1), ('icais', 1), ('held', 1), ('hohhot', 1), ('china', 1), ('july', 1), ('formerly', 1), ('called', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('problem', 1), ('solving', 1), ('nature', 1), ('ppsn', 1), ('held', 1), ('leiden', 1), ('netherlands', 1), ('september', 1), ('revised', 1), ('full', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('openmp', 1), ('iwomp', 1), ('austin', 1), ('tx', 1), ('usa', 1), ('september', 1), ('nbsp', 1), ('conference', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('problem', 1), ('solving', 1), ('nature', 1), ('ppsn', 1), ('held', 1), ('leiden', 1), ('netherlands', 1), ('september', 1), ('revised', 1), ('full', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('model', 1), ('based', 1), ('safety', 1), ('assessment', 1), ('imbsa', 1), ('lisbon', 1), ('portugal', 1), ('september', 1), ('conference', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('revised', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('business', 1), ('process', 1), ('management', 1), ('bpm', 1), ('seville', 1), ('spain', 1), ('september', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('electronic', 1), ('government', 1), ('information', 1), ('system', 1), ('perspective', 1), ('egovis', 1), ('held', 1), ('bratislava', 1), ('slovakia', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('principle', 1), ('practice', 1), ('constraint', 1), ('programming', 1), ('cp', 1), ('louvain', 1), ('la', 1), ('neuve', 1), ('belgium', 1), ('september', 1), ('virtually', 1), ('due', 1), ('covid', 1)]
[('utp', 2), ('th', 2), ('symposium', 2), ('volume', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('international', 1), ('unifying', 1), ('theory', 1), ('programming', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('october', 1), ('edition', 1), ('honor', 1), ('sir', 1), ('tony', 1), ('hoare', 1)]
[('formal', 2), ('method', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('symposium', 1), ('fm', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('form', 1), ('third', 1), ('world', 1), ('congress', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('principle', 1), ('practice', 1), ('constraint', 1), ('programming', 1), ('cp', 1), ('held', 1), ('stamford', 1), ('ct', 1), ('usa', 1), ('france', 1), ('september', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('conference', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('fundamental', 1), ('software', 1), ('engineering', 1), ('fsen', 1), ('held', 1), ('tehran', 1), ('iran', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('third', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('workshop', 1), ('tutorial', 1), ('fmtea', 1), ('held', 1), ('part', 1), ('world', 1), ('congress', 1), ('formal', 1), ('method', 1), ('fm', 1), ('porto', 1), ('portugal', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('electronic', 1), ('voting', 1), ('vote', 1), ('id', 1), ('held', 1), ('bregenz', 1), ('austria', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('similarity', 1), ('search', 1), ('application', 1), ('sisap', 1), ('held', 1), ('newark', 1), ('nj', 1), ('usa', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('short', 1), ('doctoral', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('provable', 1), ('security', 1), ('provsec', 1), ('held', 1), ('cairn', 1), ('qld', 1), ('australia', 1), ('october', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('ad', 1), ('hoc', 1), ('mobile', 1), ('wireless', 1), ('network', 1), ('adhoc', 1), ('held', 1), ('luxembourg', 1), ('october', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('network', 1), ('parallel', 1), ('computing', 1), ('npc', 1), ('held', 1), ('hohhot', 1), ('china', 1), ('august', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cooperative', 1), ('design', 1), ('visualization', 1), ('engineering', 1), ('cdve', 1), ('held', 1), ('alcudia', 1), ('mallorca', 1), ('spain', 1), ('october', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('model', 1), ('checking', 1), ('software', 1), ('spin', 1), ('held', 1), ('beijing', 1), ('china', 1), ('july', 1), ('full', 1), ('presented', 1), ('demo', 1), ('tool', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('runtime', 1), ('verification', 1), ('rv', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('october', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nbsp', 2), ('lncs', 1), ('volume', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('chinese', 1), ('conference', 1), ('biometric', 1), ('recognition', 1), ('held', 1), ('zhuzhou', 1), ('china', 1), ('october', 1), ('paper', 1), ('presented', 1), ('book', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('string', 1), ('processing', 1), ('information', 1), ('retrieval', 1), ('spire', 1), ('held', 1), ('segovia', 1), ('spain', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('static', 1), ('analysis', 1), ('sa', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('october', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('reality', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('virtual', 1), ('augmented', 1), ('eurovr', 1), ('held', 1), ('tallinn', 1), ('estonia', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('nbsp', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('testing', 1), ('software', 1), ('system', 1), ('ictss', 1), ('held', 1), ('paris', 1), ('france', 1), ('october', 1), ('regular', 1), ('short', 1), ('presented', 1)]
[('tool', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('software', 1), ('technology', 1), ('method', 1), ('held', 1), ('innopolis', 1), ('russia', 1), ('october', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('volume', 2), ('stefania', 2), ('published', 1), ('honor', 1), ('gnesi', 1), ('th', 1), ('birthday', 1), ('festschrift', 1), ('contains', 1), ('paper', 1), ('written', 1), ('close', 1), ('collaborator', 1), ('friend', 1), ('presented', 1), ('october', 1), ('day', 1), ('colloquium', 1), ('held', 1), ('porto', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('challenge', 1), ('adolescent', 1), ('brain', 1), ('cognitive', 1), ('development', 1), ('neurocognitive', 1), ('prediction', 1), ('abcd', 1), ('np', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('shenzhen', 1), ('china', 1), ('october', 1), ('submission', 1)]
[('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('held', 1), ('shenzhen', 1), ('china', 1)]
[('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('held', 1), ('shenzhen', 1), ('china', 1)]
[('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('held', 1), ('shenzhen', 1), ('china', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('connectomics', 1), ('neuroimaging', 1), ('cni', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('shenzhen', 1), ('china', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('held', 1), ('shenzhen', 1), ('china', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('connectomics', 1), ('artificial', 1), ('intelligence', 1), ('radiation', 1), ('therapy', 1), ('airt', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('shenzhen', 1), ('china', 1), ('october', 1), ('full', 1)]
[('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('held', 1), ('shenzhen', 1), ('china', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('machine', 1), ('learning', 1), ('medical', 1), ('imaging', 1), ('mlmi', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('shenzhen', 1), ('china', 1), ('october', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('simulation', 1), ('synthesis', 1), ('medical', 1), ('imaging', 1), ('sashimi', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('shenzhen', 1), ('china', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('international', 2), ('medical', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('workshop', 1), ('ophthalmic', 1), ('image', 1), ('analysis', 1), ('omia', 1), ('held', 1), ('conjunction', 1), ('nd', 1), ('conference', 1), ('imaging', 1), ('computer', 1), ('assisted', 1), ('intervention', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('health', 1), ('information', 1), ('science', 1), ('held', 1), ('xi', 1), ('china', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cryptology', 1), ('network', 1), ('security', 1), ('can', 1), ('held', 1), ('fuzhou', 1), ('china', 1), ('october', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('second', 2), ('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('context', 1), ('aware', 1), ('surgical', 1), ('theater', 1), ('machine', 1), ('learning', 1), ('clinical', 1), ('neuroimaging', 1), ('mlcn', 1), ('held', 1), ('conjunction', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('predictive', 1), ('intelligence', 1), ('medicine', 1), ('prime', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('shenzhen', 1), ('china', 1), ('october', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('volume', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('confederated', 1), ('international', 1), ('conference', 1), ('cooperative', 1), ('information', 1), ('system', 1), ('coopis', 1), ('ontology', 1), ('database', 1), ('application', 1), ('semantics', 1), ('odbase', 1), ('cloud', 1), ('trusted', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('model', 1), ('based', 1), ('safety', 1), ('assessment', 1), ('imbsa', 1), ('held', 1), ('inthessaloniki', 1), ('greece', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('uncertainty', 1), ('safe', 1), ('utilization', 1), ('machine', 1), ('learning', 1), ('medical', 1), ('imaging', 1), ('unsure', 1), ('th', 1), ('clinical', 1), ('image', 1), ('based', 1), ('procedure', 1), ('clip', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('satellite', 1), ('event', 1), ('th', 1), ('extended', 1), ('semantic', 1), ('web', 1), ('eswc', 1), ('held', 1), ('portorož', 1), ('slovenia', 1), ('june', 1), ('volume', 1), ('contains', 1), ('poster', 1), ('demonstration', 1)]
[('th', 2), ('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('joint', 1), ('proceeding', 1), ('multimodal', 1), ('brain', 1), ('image', 1), ('analysis', 1), ('mbai', 1), ('mathematical', 1), ('foundation', 1), ('computational', 1), ('anatomy', 1), ('mfca', 1), ('held', 1)]
[('conference', 2), ('st', 2), ('kitts', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('financial', 1), ('nbsp', 1), ('cryptography', 1), ('data', 1), ('security', 1), ('fc', 1), ('held', 1), ('nevis', 1), ('february', 1), ('revised', 1), ('full', 1)]
[('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('advance', 1), ('simplifying', 1), ('medical', 1), ('ultrasound', 1), ('asmus', 1), ('th', 1), ('perinatal', 1), ('preterm', 1), ('paediatric', 1), ('image', 1), ('analysis', 1), ('pippi', 1), ('held', 1)]
[('conference', 2), ('seven', 1), ('volume', 1), ('lncs', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('cagliari', 1), ('italy', 1), ('july', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('seven', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('held', 1), ('lima', 1), ('peru', 1)]
[('conference', 2), ('seven', 1), ('volume', 1), ('lncs', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('cagliari', 1), ('italy', 1), ('july', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('seven', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('held', 1), ('lima', 1), ('peru', 1)]
[('seven', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('held', 1), ('lima', 1), ('peru', 1)]
[('seven', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('held', 1), ('lima', 1), ('peru', 1)]
[('seven', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('held', 1), ('lima', 1), ('peru', 1)]
[('international', 2), ('medical', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('workshop', 1), ('shape', 1), ('imaging', 1), ('shapemi', 1), ('held', 1), ('conjunction', 1), ('rd', 1), ('conference', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assistend', 1), ('intervention', 1)]
[('seven', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('held', 1), ('lima', 1), ('peru', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('vlbd', 1), ('workshop', 1), ('entitled', 1), ('towards', 1), ('polystores', 1), ('manage', 1), ('multiple', 1), ('database', 1), ('privacy', 1), ('security', 1), ('policy', 1), ('issue', 1), ('heterogenous', 1), ('data', 1), ('poly', 1), ('fifth', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('conference', 1), ('proceeding', 1), ('rd', 1), ('iberoamerican', 1), ('nbsp', 1), ('congress', 1), ('pattern', 1), ('recognition', 1), ('ciarp', 1), ('held', 1), ('havana', 1), ('cuba', 1), ('october', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('five', 1), ('workshop', 1), ('symposium', 1), ('held', 1), ('th', 1), ('international', 1), ('conference', 1), ('conceptual', 1), ('modeling', 1), ('er', 1), ('salvador', 1), ('brazil', 1), ('november', 1), ('paper', 1), ('promote', 1), ('disseminate', 1), ('research', 1), ('theory', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('formal', 1), ('engineering', 1), ('method', 1), ('icfem', 1), ('held', 1), ('shenzhen', 1), ('china', 1), ('november', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('conceptual', 1), ('modeling', 1), ('er', 1), ('held', 1), ('salvador', 1), ('brazil', 1), ('november', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('together', 1), ('keynote', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('asia', 1), ('pacific', 1), ('digital', 1), ('library', 1), ('icadl', 1), ('held', 1), ('kuala', 1), ('lumpur', 1), ('malaysia', 1), ('november', 1), ('full', 1), ('short', 1), ('poster', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('chinese', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('computer', 1), ('vision', 1), ('prcv', 1), ('held', 1), ('xi', 1), ('china', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('chinese', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('computer', 1), ('vision', 1), ('prcv', 1), ('held', 1), ('xi', 1), ('china', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('chinese', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('computer', 1), ('vision', 1), ('prcv', 1), ('held', 1), ('xi', 1), ('china', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('third', 2), ('apweb', 2), ('waim', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('workshop', 1), ('held', 1), ('jointly', 1), ('international', 1), ('joint', 1), ('macau', 1), ('china', 1), ('august', 1), ('full', 1), ('paper', 1)]
[('proceeding', 2), ('volume', 1), ('constitutes', 1), ('th', 1), ('international', 1), ('conference', 1), ('social', 1), ('informatics', 1), ('socinfo', 1), ('held', 1), ('pisa', 1), ('italy', 1), ('october', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('late', 1), ('breaking', 1), ('paper', 1), ('nd', 1), ('international', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('july', 1), ('planned', 1), ('take', 1), ('place', 1), ('copenhagen', 1), ('denmark', 1), ('change', 1)]
[('conference', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('held', 1), ('th', 1), ('international', 1), ('isc', 1), ('high', 1), ('performance', 1), ('frankfurt', 1), ('germany', 1), ('june', 1), ('first', 1), ('compiler', 1), ('assisted', 1), ('correctness', 1), ('checking', 1)]
[('proceeding', 2), ('set', 1), ('lncs', 1), ('constitute', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('icann', 1), ('held', 1), ('bratislava', 1), ('slovakia', 1), ('september', 1), ('total', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('social', 1), ('cultural', 1), ('behavioral', 1), ('modeling', 1), ('sbp', 1), ('brim', 1), ('held', 1), ('washington', 1), ('dc', 1), ('usa', 1), ('july', 1), ('total', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('workshop', 2), ('automaton', 2), ('held', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('cellular', 1), ('discrete', 1), ('complex', 1), ('system', 1), ('stockholm', 1), ('sweden', 1), ('august', 1)]
[('volume', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('service', 1), ('computing', 1), ('held', 1), ('part', 1), ('scf', 1), ('san', 1), ('diego', 1), ('ca', 1), ('usa', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('political', 2), ('chapter', 1), ('identifying', 1), ('sentiment', 1), ('youtube', 1), ('systematic', 1), ('comparison', 1), ('regarding', 1), ('accuracy', 1), ('recurrent', 1), ('neural', 1), ('network', 1), ('machine', 1), ('learning', 1), ('model', 1), ('online', 1), ('trolling', 1), ('strategy', 1), ('differ', 1), ('interest', 1), ('forum', 1), ('early', 1), ('result', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('cognitive', 1), ('computing', 1), ('icc', 1), ('held', 1), ('part', 1), ('scf', 1), ('san', 1), ('diego', 1), ('ca', 1), ('usa', 1), ('june', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('web', 1), ('information', 1), ('system', 1), ('engineering', 1), ('wise', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('blockchain', 1), ('icbc', 1), ('held', 1), ('part', 1), ('service', 1), ('federation', 1), ('scf', 1), ('san', 1), ('diego', 1), ('ca', 1), ('usa', 1), ('june', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('workshop', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('machine', 1), ('learning', 1), ('medical', 1), ('reconstruction', 1), ('mlmir', 1), ('conjunction', 1), ('miccai', 1), ('lima', 1), ('peru', 1), ('october', 1)]
[('book', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('system', 1), ('reuse', 1), ('icsr', 1), ('held', 1), ('cincinnati', 1), ('ohio', 1), ('usa', 1), ('june', 1), ('research', 1), ('paper', 1), ('included', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('web', 1), ('wireless', 1), ('geographical', 1), ('information', 1), ('system', 1), ('gi', 1), ('held', 1), ('wuhan', 1), ('china', 1), ('november', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('swarm', 1), ('intelligence', 1), ('ant', 1), ('held', 1), ('online', 1), ('due', 1), ('covid', 1), ('barcelona', 1), ('spain', 1), ('october', 1), ('full', 1), ('presented', 1), ('nbsp', 1), ('together', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('workshop', 1), ('language', 1), ('compiler', 1), ('parallel', 1), ('computing', 1), ('lcpc', 1), ('held', 1), ('salt', 1), ('lake', 1), ('city', 1), ('ut', 1), ('usa', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('symposium', 1), ('image', 1), ('video', 1), ('technology', 1), ('psivt', 1), ('held', 1), ('sydney', 1), ('nsw', 1), ('australia', 1), ('november', 1), ('total', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('nordic', 1), ('conference', 1), ('secure', 1), ('system', 1), ('nordsec', 1), ('held', 1), ('aalborg', 1), ('denmark', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('graph', 1), ('learning', 1), ('medical', 1), ('imaging', 1), ('glmi', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('shenzhen', 1), ('china', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('nbsp', 3), ('wise', 2), ('hong', 2), ('kong', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('information', 1), ('system', 1), ('engineering', 1), ('held', 1), ('china', 1), ('november', 1), ('due', 1), ('problem', 1), ('protest', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('special', 1), ('event', 1), ('analysis', 1), ('experimental', 1), ('algorithm', 1), ('sea²', 1), ('held', 1), ('kalamata', 1), ('greece', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('proceeding', 2), ('volume', 1), ('constitutes', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('conference', 1), ('social', 1), ('informatics', 1), ('socinfo', 1), ('held', 1), ('doha', 1), ('qatar', 1), ('november', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('symposium', 1), ('mathematical', 1), ('computational', 1), ('oncology', 1), ('ismco', 1), ('held', 1), ('lake', 1), ('tahoe', 1), ('nv', 1), ('usa', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('symposium', 1), ('stabilization', 1), ('safety', 1), ('security', 1), ('distributed', 1), ('system', 1), ('s', 1), ('held', 1), ('pisa', 1), ('italy', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('symposium', 1), ('programming', 1), ('language', 1), ('system', 1), ('aplas', 1), ('held', 1), ('nusa', 1), ('dua', 1), ('bali', 1), ('indonesia', 1), ('december', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('dependable', 1), ('software', 1), ('engineering', 1), ('theory', 1), ('tool', 1), ('application', 1), ('setta', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('product', 1), ('focused', 1), ('software', 1), ('process', 1), ('improvement', 1), ('profes', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('november', 1), ('revised', 1), ('full', 1), ('industry', 1), ('short', 1)]
[('paper', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('symposium', 1), ('algorithm', 1), ('experiment', 1), ('wireless', 1), ('sensor', 1), ('network', 1), ('algosensors', 1), ('held', 1), ('munich', 1), ('germany', 1), ('september', 1), ('full', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('security', 1), ('practice', 1), ('experience', 1), ('ispec', 1), ('held', 1), ('kuala', 1), ('lumpur', 1), ('malaysia', 1), ('november', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('game', 1), ('learning', 1), ('alliance', 1), ('gala', 1), ('held', 1), ('athens', 1), ('greece', 1), ('november', 1), ('regular', 1), ('presented', 1), ('together', 1), ('poster', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('language', 1), ('compiler', 1), ('parallel', 1), ('computing', 1), ('lcpc', 1), ('held', 1), ('college', 1), ('station', 1), ('tx', 1), ('usa', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('abstract', 1)]
[('international', 2), ('workshop', 2), ('label', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('joint', 1), ('proceeding', 1), ('th', 1), ('large', 1), ('scale', 1), ('annotation', 1), ('biomedical', 1), ('data', 1), ('expert', 1), ('synthesis', 1), ('first', 1), ('hardware', 1), ('aware', 1), ('learning', 1), ('medical', 1)]
[('book', 2), ('conference', 2), ('nbsp', 2), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('quantum', 1), ('interaction', 1), ('qi', 1), ('held', 1), ('nice', 1), ('france', 1), ('september', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('smart', 1), ('health', 1), ('icsh', 1), ('held', 1), ('shenzhen', 1), ('china', 1), ('july', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptology', 1), ('information', 1), ('security', 1), ('asiacrypt', 1), ('held', 1), ('kobe', 1), ('japan', 1), ('december', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('internet', 1), ('economics', 1), ('wine', 1), ('held', 1), ('new', 1), ('york', 1), ('city', 1), ('usa', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('practice', 1), ('natural', 1), ('computing', 1), ('tpnc', 1), ('held', 1), ('kingston', 1), ('canada', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptology', 1), ('information', 1), ('security', 1), ('asiacrypt', 1), ('held', 1), ('kobe', 1), ('japan', 1), ('december', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('nbsp', 1), ('conference', 1), ('integrated', 1), ('formal', 1), ('method', 1), ('ifm', 1), ('held', 1), ('bergen', 1), ('norway', 1), ('december', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('system', 1), ('icvs', 1), ('held', 1), ('thessaloniki', 1), ('greece', 1), ('september', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('cryptography', 1), ('tcc', 1), ('held', 1), ('nuremberg', 1), ('germany', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('future', 1), ('data', 1), ('security', 1), ('engineering', 1), ('fdse', 1), ('held', 1), ('nha', 1), ('trang', 1), ('city', 1), ('vietnam', 1), ('november', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('cryptography', 1), ('tcc', 1), ('held', 1), ('nuremberg', 1), ('germany', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('nbsp', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('economics', 1), ('grid', 1), ('cloud', 1), ('system', 1), ('service', 1), ('gecon', 1), ('held', 1), ('leeds', 1), ('uk', 1), ('september', 1), ('full', 1), ('short', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('science', 1), ('cyber', 1), ('security', 1), ('scisec', 1), ('held', 1), ('nanjing', 1), ('china', 1), ('august', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('combinatorial', 1), ('optimization', 1), ('application', 1), ('cocoa', 1), ('held', 1), ('xiamen', 1), ('china', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 2), ('india', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cryptology', 1), ('indocrypt', 1), ('held', 1), ('hyderabad', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('ima', 1), ('international', 1), ('conference', 1), ('cryptography', 1), ('coding', 1), ('imacc', 1), ('held', 1), ('oxford', 1), ('uk', 1), ('december', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('system', 1), ('security', 1), ('iciss', 1), ('held', 1), ('hyderabad', 1), ('india', 1), ('december', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('network', 1), ('system', 1), ('security', 1), ('n', 1), ('held', 1), ('sapporo', 1), ('japan', 1), ('december', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('sydney', 1), ('australia', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('sydney', 1), ('australia', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('big', 1), ('data', 1), ('analytics', 1), ('bda', 1), ('held', 1), ('ahmedabad', 1), ('india', 1), ('december', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('sydney', 1), ('australia', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('andrei', 1), ('ershov', 1), ('informatics', 1), ('conference', 1), ('psi', 1), ('held', 1), ('novosibirsk', 1), ('russia', 1), ('july', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('analysis', 1), ('image', 1), ('social', 1), ('network', 1), ('text', 1), ('aist', 1), ('held', 1), ('kazan', 1), ('russia', 1), ('july', 1), ('full', 1), ('short', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('distributed', 1), ('computer', 1), ('communication', 1), ('network', 1), ('dccn', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('september', 1), ('full', 1), ('short', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('multiscale', 1), ('multimodal', 1), ('medical', 1), ('imaging', 1), ('mmi', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('shenzhen', 1), ('china', 1), ('october', 1), ('paper', 1), ('presented', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('critical', 1), ('information', 1), ('infrastructure', 1), ('security', 1), ('critis', 1), ('held', 1), ('linköping', 1), ('sweden', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('multimedia', 1), ('modeling', 1), ('mm', 1), ('held', 1), ('daejeon', 1), ('south', 1), ('korea', 1), ('january', 1), ('submitted', 1), ('full', 1), ('research', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('multimedia', 1), ('modeling', 1), ('mm', 1), ('held', 1), ('daejeon', 1), ('south', 1), ('korea', 1), ('january', 1), ('submitted', 1), ('full', 1), ('research', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('distributed', 1), ('computing', 1), ('internet', 1), ('technology', 1), ('icdcit', 1), ('held', 1), ('bhubaneswar', 1), ('india', 1), ('january', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('paper', 2), ('volume', 1), ('lncs', 1), ('constitute', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('cyberspace', 1), ('safety', 1), ('security', 1), ('cs', 1), ('held', 1), ('guangzhou', 1), ('china', 1), ('december', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('paper', 2), ('volume', 1), ('lncs', 1), ('constitute', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('cyberspace', 1), ('safety', 1), ('security', 1), ('cs', 1), ('held', 1), ('guangzhou', 1), ('china', 1), ('december', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('selected', 2), ('paper', 2), ('book', 1), ('contains', 1), ('revised', 1), ('th', 1), ('international', 1), ('conference', 1), ('area', 1), ('cryptography', 1), ('sac', 1), ('held', 1), ('waterloo', 1), ('canada', 1), ('august', 1), ('full', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('workshop', 2), ('held', 2), ('porto', 2), ('portugal', 2), ('october', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('dynamic', 1), ('logic', 1), ('dali', 1), ('part', 1), ('formal', 1), ('method', 1), ('week', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('verification', 1), ('model', 1), ('checking', 1), ('abstract', 1), ('interpretation', 1), ('vmcai', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('conference', 1), ('theory', 1), ('application', 1), ('model', 1), ('computation', 1), ('tamc', 1), ('held', 1), ('changsha', 1), ('china', 1), ('october', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('chinese', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('computer', 1), ('vision', 1), ('prcv', 1), ('held', 1), ('virtually', 1), ('nanjing', 1), ('china', 1), ('october', 1), ('full', 1), ('paper', 1)]
[('privacy', 3), ('organization', 2), ('burden', 1), ('complex', 1), ('wider', 1), ('harder', 1), ('manage', 1), ('enforce', 1), ('gdpr', 1), ('regulation', 1), ('impose', 1), ('strict', 1), ('constraint', 1), ('coherently', 1), ('enforced', 1), ('considering', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('apweb', 1), ('waim', 1), ('held', 1), ('tianjin', 1), ('china', 1), ('september', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('volume', 2), ('lncs', 2), ('set', 1), ('constitutes', 1), ('conjunction', 1), ('lnai', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('held', 1), ('bari', 1), ('italy', 1), ('october', 1)]
[('volume', 2), ('lncs', 2), ('set', 1), ('constitutes', 1), ('conjunction', 1), ('lnai', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('held', 1), ('bari', 1), ('italy', 1), ('october', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('satellite', 1), ('workshop', 1), ('held', 1), ('around', 1), ('th', 1), ('international', 1), ('conference', 1), ('applied', 1), ('cryptography', 1), ('network', 1), ('security', 1), ('acns', 1), ('rome', 1), ('italy', 1), ('october', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('privacy', 1), ('forum', 1), ('apf', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('october', 1), ('revised', 1), ('full', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('similarity', 1), ('search', 1), ('application', 1), ('sisap', 1), ('copenhagen', 1), ('denmark', 1), ('september', 1), ('october', 1), ('virtually', 1), ('due', 1), ('covid', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('applied', 1), ('cryptography', 1), ('network', 1), ('security', 1), ('acns', 1), ('held', 1), ('bogota', 1), ('colombia', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('reachability', 1), ('problem', 1), ('rp', 1), ('held', 1), ('paris', 1), ('france', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('functional', 1), ('imaging', 1), ('modeling', 1), ('heart', 1), ('held', 1), ('bordeaux', 1), ('france', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('samos', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('embedded', 1), ('computer', 1), ('system', 1), ('architecture', 1), ('modeling', 1), ('simulation', 1), ('held', 1), ('greece', 1), ('july', 1), ('regular', 1), ('paper', 1), ('presented', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('chinese', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('computer', 1), ('vision', 1), ('prcv', 1), ('held', 1), ('virtually', 1), ('nanjing', 1), ('china', 1), ('october', 1), ('full', 1), ('paper', 1)]
[('th', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('ifip', 1), ('wg', 1), ('conference', 1), ('formal', 1), ('technique', 1), ('distributed', 1), ('object', 1), ('component', 1), ('system', 1), ('forte', 1), ('held', 1), ('copenhagen', 1), ('denmark', 1), ('june', 1), ('part', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('apweb', 1), ('waim', 1), ('held', 1), ('tianjin', 1), ('china', 1), ('september', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('workshop', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('paper', 1), ('th', 1), ('international', 1), ('graph', 1), ('theoretic', 1), ('concept', 1), ('computer', 1), ('science', 1), ('wg', 1), ('leeds', 1), ('uk', 1), ('june', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('full', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('coordination', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('model', 1), ('language', 1), ('held', 1), ('kongens', 1), ('lyngby', 1), ('denmark', 1), ('june', 1), ('part', 1), ('federated', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cooperative', 1), ('design', 1), ('visualization', 1), ('engineering', 1), ('cdve', 1), ('held', 1), ('bangkok', 1), ('thailand', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('ifip', 1), ('distributed', 1), ('application', 1), ('interoperable', 1), ('system', 1), ('dais', 1), ('held', 1), ('kongens', 1), ('lyngby', 1), ('denmark', 1), ('june', 1), ('part', 1), ('federated', 1)]
[('volume', 2), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('acpr', 1), ('held', 1), ('auckland', 1), ('new', 1), ('zealand', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algorithm', 1), ('discrete', 1), ('applied', 1), ('mathematics', 1), ('caldam', 1), ('held', 1), ('rupnagar', 1), ('india', 1), ('february', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('conference', 2), ('place', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('smart', 1), ('card', 1), ('research', 1), ('advanced', 1), ('application', 1), ('cardis', 1), ('took', 1), ('november', 1), ('originally', 1), ('planned', 1), ('take', 1), ('lübeck', 1)]
[('book', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('modelling', 1), ('analysis', 1), ('simulation', 1), ('computer', 1), ('telecommunication', 1), ('system', 1), ('mascot', 1), ('held', 1), ('online', 1), ('due', 1), ('covid', 1), ('nice', 1), ('france', 1), ('november', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('computer', 1), ('graphic', 1), ('international', 1), ('cgi', 1), ('geneva', 1), ('switzerland', 1), ('october', 1), ('virtually', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('detection', 1), ('intrusion', 1), ('malware', 1), ('vulnerability', 1), ('assessment', 1), ('dimva', 1), ('held', 1), ('gothenburg', 1), ('sweden', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('reasoning', 3), ('web', 2), ('summer', 2), ('school', 2), ('volume', 1), ('contains', 1), ('lecture', 1), ('note', 1), ('th', 1), ('rw', 1), ('held', 1), ('oslo', 1), ('norway', 1), ('june', 1), ('series', 1), ('annual', 1), ('become', 1), ('prime', 1), ('educational', 1), ('event', 1), ('field', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('workshop', 1), ('computer', 1), ('algebra', 1), ('scientific', 1), ('computing', 1), ('casc', 1), ('linz', 1), ('austria', 1), ('september', 1), ('conference', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('web', 1), ('information', 1), ('system', 1), ('engineering', 1), ('wise', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('andre', 2), ('scedrov', 2), ('paper', 2), ('festschrift', 1), ('published', 1), ('honor', 1), ('occasion', 1), ('th', 1), ('birthday', 1), ('technical', 1), ('short', 1), ('included', 1), ('volume', 1), ('show', 1), ('many', 1), ('transformative', 1), ('discovery', 1), ('made', 1), ('area', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conceptual', 1), ('modeling', 1), ('er', 1), ('supposed', 1), ('vienna', 1), ('austria', 1), ('november', 1), ('virtually', 1), ('due', 1), ('covid', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('intelligent', 1), ('data', 1), ('engineering', 1), ('automated', 1), ('learning', 1), ('ideal', 1), ('held', 1), ('guimaraes', 1), ('portugal', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('intelligent', 1), ('data', 1), ('engineering', 1), ('automated', 1), ('learning', 1), ('ideal', 1), ('held', 1), ('guimaraes', 1), ('portugal', 1)]
[('franz', 2), ('baader', 2), ('scientific', 2), ('festschrift', 1), ('put', 1), ('together', 1), ('occasion', 1), ('th', 1), ('birthday', 1), ('celebrate', 1), ('fundamental', 1), ('highly', 1), ('influential', 1), ('contribution', 1), ('paper', 1), ('volume', 1), ('cover', 1), ('several', 1), ('area', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('workshop', 1), ('algebraic', 1), ('development', 1), ('technique', 1), ('wadt', 1), ('held', 1), ('egham', 1), ('uk', 1), ('july', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('semantic', 1), ('web', 1), ('iswc', 1), ('planned', 1), ('take', 1), ('place', 1), ('athens', 1), ('greece', 1), ('november', 1), ('changed', 1), ('virtual', 1)]
[('volume', 2), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('neural', 1), ('network', 1), ('isnn', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('july', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('semantic', 1), ('web', 1), ('iswc', 1), ('planned', 1), ('take', 1), ('place', 1), ('athens', 1), ('greece', 1), ('november', 1), ('changed', 1), ('virtual', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('australasian', 1), ('conference', 1), ('information', 1), ('security', 1), ('privacy', 1), ('acisp', 1), ('held', 1), ('christchurch', 1), ('new', 1), ('zealand', 1), ('july', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('august', 1)]
[('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('august', 1)]
[('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('august', 1)]
[('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('august', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('quantitative', 1), ('evaluation', 1), ('system', 1), ('qest', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('august', 1), ('september', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('dynamic', 1), ('data', 1), ('driven', 1), ('application', 1), ('system', 1), ('ddas', 1), ('held', 1), ('boston', 1), ('usa', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('late', 1), ('breaking', 1), ('paper', 1), ('nd', 1), ('international', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('july', 1), ('planned', 1), ('take', 1), ('place', 1), ('copenhagen', 1), ('denmark', 1), ('change', 1)]
[('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('th', 1), ('international', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('workshop', 1), ('icpr', 1), ('held', 1), ('virtually', 1), ('milan', 1), ('italy', 1), ('rescheduled', 1), ('january', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('full', 1), ('paper', 1)]
[('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('held', 1), ('kyoto', 1), ('japan', 1), ('november', 1), ('december', 1), ('total', 1), ('contribution', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('held', 1), ('kyoto', 1), ('japan', 1), ('november', 1), ('december', 1), ('total', 1), ('contribution', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('held', 1), ('kyoto', 1), ('japan', 1), ('november', 1), ('december', 1), ('total', 1), ('contribution', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 3), ('book', 2), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('symposium', 1), ('foundation', 1), ('practice', 1), ('security', 1), ('fps', 1), ('held', 1), ('montréal', 1), ('qc', 1), ('canada', 1), ('december', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('six', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('accv', 1), ('held', 1), ('kyoto', 1), ('japan', 1), ('november', 1), ('december', 1), ('total', 1), ('contribution', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('spatial', 1), ('data', 1), ('intelligence', 1), ('spatialdi', 1), ('held', 1), ('planned', 1), ('take', 1), ('place', 1), ('shenzhen', 1), ('china', 1), ('changed', 1), ('online', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('symposium', 1), ('benchmarking', 1), ('measuring', 1), ('optimization', 1), ('bench', 1), ('held', 1), ('virtually', 1), ('november', 1), ('full', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('nordic', 1), ('conference', 1), ('secure', 1), ('system', 1), ('nordsec', 1), ('organized', 1), ('linköping', 1), ('university', 1), ('sweden', 1), ('held', 1), ('online', 1), ('november', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('networking', 1), ('mln', 1), ('held', 1), ('paris', 1), ('france', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('included', 1), ('volume', 1)]
[('workshop', 3), ('international', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('vldb', 1), ('polystore', 1), ('system', 1), ('heterogeneous', 1), ('data', 1), ('multiple', 1), ('database', 1), ('privacy', 1), ('security', 1), ('assurance', 1), ('poly', 1), ('th', 1)]
[('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('th', 1), ('international', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('workshop', 1), ('icpr', 1), ('held', 1), ('virtually', 1), ('milan', 1), ('italy', 1), ('rescheduled', 1), ('january', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('full', 1), ('paper', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('data', 1), ('model', 1), ('back', 1), ('datamod', 1), ('held', 1), ('virtually', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('modelling', 1), ('simulation', 1), ('autonomous', 1), ('system', 1), ('mesa', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('october', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('perception', 1), ('representation', 1), ('image', 1), ('sound', 1), ('music', 1), ('cmmr', 1), ('held', 1), ('marseille', 1), ('france', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('reviewed', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('centered', 1), ('computing', 1), ('hcc', 1), ('held', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('december', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('conference', 3), ('held', 2), ('book', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('security', 1), ('cryptology', 1), ('inscrypt', 1), ('china', 1), ('december', 1), ('due', 1), ('covid', 1), ('online', 1), ('physical', 1)]
[('book', 1), ('constitutes', 1), ('three', 1), ('challenge', 1), ('held', 1), ('conjunction', 1), ('rd', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('lima', 1), ('peru', 1), ('october', 1), ('anatomical', 1), ('brain', 1), ('barrier', 1)]
[('workshop', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('euro', 1), ('par', 1), ('took', 1), ('place', 1), ('warsaw', 1), ('poland', 1), ('august', 1), ('virtually', 1)]
[('volume', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('variable', 1), ('neighborhood', 1), ('search', 1), ('icvns', 1), ('held', 1), ('abu', 1), ('dhabi', 1), ('united', 1), ('arab', 1), ('emirate', 1), ('march', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('place', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('german', 1), ('pattern', 1), ('recognition', 1), ('dagm', 1), ('gcpr', 1), ('took', 1), ('september', 1), ('october', 1), ('planned', 1), ('take', 1), ('tübingen', 1), ('germany', 1)]
[('paper', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('diversity', 1), ('divergence', 1), ('dialogue', 1), ('iconference', 1), ('held', 1), ('beijing', 1), ('china', 1), ('march', 1), ('full', 1), ('short', 1)]
[('paper', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('diversity', 1), ('divergence', 1), ('dialogue', 1), ('iconference', 1), ('held', 1), ('beijing', 1), ('china', 1), ('march', 1), ('full', 1), ('short', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('evolutionary', 1), ('multi', 1), ('criterion', 1), ('optimization', 1), ('emo', 1), ('held', 1), ('shenzhen', 1), ('china', 1), ('march', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('evo', 2), ('event', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('genetic', 1), ('programming', 1), ('eurogp', 1), ('held', 1), ('part', 1), ('virtual', 1), ('april', 1), ('co', 1), ('located', 1), ('evocop', 1), ('evomusart', 1)]
[('international', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('miccai', 1), ('brainlesion', 1), ('workshop', 1), ('brainles', 1), ('multimodal', 1), ('brain', 1), ('tumor', 1), ('segmentation', 1), ('brat', 1), ('challenge', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('workshop', 1), ('language', 1), ('compiler', 1), ('parallel', 1), ('computing', 1), ('lcpc', 1), ('held', 1), ('atlanta', 1), ('ga', 1), ('usa', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('evo', 2), ('event', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('european', 1), ('conference', 1), ('evolutionary', 1), ('computation', 1), ('combinatorial', 1), ('optimization', 1), ('evocop', 1), ('held', 1), ('part', 1), ('virtual', 1), ('april', 1), ('co', 1), ('located', 1)]
[('international', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('miccai', 1), ('brainlesion', 1), ('workshop', 1), ('brainles', 1), ('multimodal', 1), ('brain', 1), ('tumor', 1), ('segmentation', 1), ('brat', 1), ('challenge', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('nbsp', 1), ('th', 1), ('international', 1), ('simulation', 1), ('gaming', 1), ('association', 1), ('conference', 1), ('isaga', 1), ('took', 1), ('place', 1), ('warsaw', 1), ('poland', 1), ('august', 1), ('presented', 1), ('volume', 1)]
[('workshop', 2), ('spaccs', 2), ('book', 1), ('constitutes', 1), ('seven', 1), ('refereed', 1), ('symposium', 1), ('held', 1), ('jointly', 1), ('th', 1), ('international', 1), ('conference', 1), ('security', 1), ('privacy', 1), ('anonymity', 1), ('computation', 1), ('communication', 1), ('storage', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('australasian', 1), ('database', 1), ('conference', 1), ('adc', 1), ('held', 1), ('dunedin', 1), ('new', 1), ('zealand', 1), ('january', 1), ('february', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('conference', 2), ('place', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('risk', 1), ('security', 1), ('internet', 1), ('system', 1), ('critis', 1), ('took', 1), ('november', 1), ('originally', 1), ('planned', 1), ('take', 1), ('paris', 1)]
[('volume', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('digital', 1), ('forensics', 1), ('watermarking', 1), ('iwdw', 1), ('held', 1), ('melbourne', 1), ('vic', 1), ('australia', 1), ('november', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('logic', 1), ('based', 1), ('program', 1), ('synthesis', 1), ('transformation', 1), ('lopstr', 1), ('held', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cellular', 1), ('automaton', 1), ('research', 1), ('industry', 1), ('acri', 1), ('took', 1), ('place', 1), ('lodz', 1), ('poland', 1), ('december', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('graph', 1), ('drawing', 1), ('network', 1), ('visualization', 1), ('gd', 1), ('held', 1), ('september', 1), ('conference', 1), ('planned', 1), ('take', 1), ('place', 1), ('vancouver', 1), ('canada', 1)]
[('workshop', 3), ('held', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('arithmetic', 1), ('finite', 1), ('field', 1), ('waifi', 1), ('rennes', 1), ('france', 1), ('july', 1), ('due', 1), ('covid', 1), ('online', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('cyber', 1), ('physical', 1), ('security', 1), ('critical', 1), ('infrastructure', 1), ('protection', 1), ('cps', 1), ('cip', 1), ('organized', 1), ('conjunction', 1), ('european', 1), ('symposium', 1), ('research', 1)]
[('growth', 1), ('global', 1), ('digital', 1), ('economy', 1), ('enabled', 1), ('rapid', 1), ('communication', 1), ('instantaneous', 1), ('movement', 1), ('fund', 1), ('availability', 1), ('vast', 1), ('amount', 1), ('information', 1), ('come', 1), ('challenge', 1), ('vulnerability', 1), ('digitalized', 1), ('sociotechnological', 1), ('system', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('joint', 1), ('iapr', 1), ('international', 1), ('workshop', 1), ('structural', 1), ('syntactic', 1), ('statistical', 1), ('pattern', 1), ('recognition', 1), ('sspr', 1), ('held', 1), ('padua', 1), ('italy', 1), ('january', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('algebraic', 1), ('development', 1), ('technique', 1), ('wadt', 1), ('held', 1), ('virtually', 1), ('april', 1), ('revised', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('symposium', 1), ('intelligent', 1), ('data', 1), ('analysis', 1), ('ida', 1), ('planned', 1), ('take', 1), ('place', 1), ('porto', 1), ('portugal', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('conference', 1), ('held', 1), ('online', 1), ('april', 1)]
[('book', 1), ('constitutes', 1), ('first', 1), ('cerebral', 1), ('aneurysm', 1), ('detection', 1), ('challenge', 1), ('cada', 1), ('held', 1), ('conjunction', 1), ('rd', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1), ('october', 1)]
[('workshop', 2), ('place', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('accelerator', 1), ('programming', 1), ('using', 1), ('directive', 1), ('waccpd', 1), ('took', 1), ('november', 1), ('initially', 1), ('planned', 1), ('take', 1), ('atlanta', 1), ('ga', 1), ('usa', 1)]
[('book', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('conference', 1), ('smart', 1), ('computing', 1), ('communication', 1), ('smartcom', 1), ('took', 1), ('place', 1), ('paris', 1), ('france', 1), ('december', 1), ('paper', 1), ('included', 1), ('carefully', 1)]
[('conference', 2), ('place', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('nbsp', 1), ('scale', 1), ('space', 1), ('variational', 1), ('method', 1), ('computer', 1), ('vision', 1), ('ssvm', 1), ('took', 1), ('planned', 1), ('take', 1), ('cabourg', 1)]
[('proceeding', 2), ('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('th', 1), ('iacr', 1), ('international', 1), ('practice', 1), ('theory', 1), ('public', 1), ('key', 1), ('cryptography', 1), ('pkc', 1), ('held', 1), ('online', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('algorithm', 1), ('complexity', 1), ('ciac', 1), ('held', 1), ('virtual', 1), ('event', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('lecture', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('integer', 1), ('programming', 1), ('combinatorial', 1), ('optimization', 1), ('ipco', 1), ('took', 1), ('place', 1), ('organized', 1), ('georgia', 1), ('institute', 1), ('technology', 1), ('planned', 1)]
[('th', 2), ('international', 2), ('workshop', 2), ('cyber', 2), ('physical', 2), ('system', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('design', 1), ('modeling', 1), ('evaluation', 1), ('cyphy', 1), ('embedded', 1), ('education', 1), ('wese', 1)]
[('workshop', 2), ('place', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('graphical', 1), ('model', 1), ('security', 1), ('gramsec', 1), ('took', 1), ('june', 1), ('planned', 1), ('take', 1), ('boston', 1), ('usa', 1), ('changed', 1), ('virtual', 1), ('format', 1)]
[('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('august', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('congress', 1), ('digital', 1), ('pathology', 1), ('nbsp', 1), ('ecdp', 1), ('held', 1), ('warwick', 1), ('uk', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('symposium', 1), ('dependable', 1), ('software', 1), ('engineering', 1), ('setta', 1), ('held', 1), ('guangzhou', 1), ('china', 1), ('november', 1), ('full', 1), ('short', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('nbsp', 1), ('symposium', 1), ('end', 1), ('user', 1), ('development', 1), ('eud', 1), ('held', 1), ('hatfield', 1), ('uk', 1), ('july', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('three', 1), ('volume', 1), ('book', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('cyber', 1), ('security', 1), ('ml', 1), ('c', 1), ('held', 1), ('xi', 1), ('china', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('computability', 1), ('europe', 1), ('cie', 1), ('held', 1), ('durham', 1), ('uk', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('annual', 1), ('ifip', 1), ('wg', 1), ('conference', 1), ('data', 1), ('application', 1), ('security', 1), ('privacy', 1), ('dbsec', 1), ('held', 1), ('charleston', 1), ('sc', 1), ('usa', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('paper', 2), ('three', 1), ('volume', 1), ('book', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('cyber', 1), ('security', 1), ('ml', 1), ('c', 1), ('held', 1), ('xi', 1), ('china', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptographic', 1), ('technique', 1), ('eurocrypt', 1), ('held', 1), ('zagreb', 1), ('croatia', 1), ('october', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptographic', 1), ('technique', 1), ('eurocrypt', 1), ('held', 1), ('zagreb', 1), ('croatia', 1), ('october', 1)]
[('volume', 1), ('lncs', 1), ('constitutes', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('integration', 1), ('constraint', 1), ('programming', 1), ('artificial', 1), ('intelligence', 1), ('operation', 1), ('research', 1), ('cpaior', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('due', 1)]
[('russia', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('computer', 1), ('science', 1), ('symposium', 1), ('csr', 1), ('held', 1), ('sochi', 1), ('june', 1), ('july', 1), ('full', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('high', 2), ('performance', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computing', 1), ('isc', 1), ('held', 1), ('virtually', 1), ('june', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('test', 1), ('proof', 1), ('tap', 1), ('held', 1), ('part', 1), ('software', 1), ('technology', 1), ('application', 1), ('foundation', 1), ('staf', 1), ('took', 1), ('place', 1), ('online', 1), ('june', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('graph', 1), ('transformation', 1), ('icgt', 1), ('took', 1), ('place', 1), ('virtually', 1), ('june', 1), ('full', 1), ('tool', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('functional', 1), ('imaging', 1), ('modeling', 1), ('heart', 1), ('took', 1), ('place', 1), ('online', 1), ('june', 1), ('organized', 1), ('university', 1), ('stanford', 1), ('revised', 1), ('full', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('colloquium', 1), ('structural', 1), ('information', 1), ('communication', 1), ('complexity', 1), ('sirocco', 1), ('held', 1), ('wrocław', 1), ('poland', 1), ('june', 1), ('due', 1), ('covid', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('application', 1), ('natural', 1), ('language', 1), ('information', 1), ('system', 1), ('nldb', 1), ('held', 1), ('online', 1), ('july', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('implementation', 1), ('application', 1), ('automaton', 1), ('ciaa', 1), ('held', 1), ('kosice', 1), ('slovakia', 1), ('july', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('august', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('descriptional', 1), ('complexity', 1), ('format', 1), ('system', 1), ('dcfs', 1), ('held', 1), ('košice', 1), ('slovakia', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('august', 1)]
[('international', 2), ('social', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('computing', 1), ('medium', 1), ('scsm', 1), ('held', 1), ('july', 1), ('part', 1), ('hci', 1), ('orlando', 1), ('fl', 1), ('usa', 1), ('hcii', 1)]
[('international', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('virtual', 1), ('augmented', 1), ('mixed', 1), ('reality', 1), ('vamr', 1), ('held', 1), ('july', 1), ('part', 1), ('hci', 1), ('orlando', 1), ('fl', 1), ('usa', 1), ('hcii', 1)]
[('international', 2), ('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('learning', 1), ('collaboration', 1), ('technology', 1), ('lct', 1), ('held', 1), ('part', 1), ('st', 1), ('nbsp', 1), ('human', 1), ('computer', 1)]
[('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('august', 1)]
[('international', 2), ('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('learning', 1), ('collaboration', 1), ('technology', 1), ('lct', 1), ('held', 1), ('part', 1), ('st', 1), ('nbsp', 1), ('human', 1), ('computer', 1)]
[('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('august', 1)]
[('international', 2), ('social', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('computing', 1), ('medium', 1), ('scsm', 1), ('held', 1), ('july', 1), ('part', 1), ('hci', 1), ('orlando', 1), ('fl', 1), ('usa', 1), ('hcii', 1)]
[('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('august', 1)]
[('international', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('human', 1), ('aspect', 1), ('aged', 1), ('population', 1), ('itap', 1), ('held', 1), ('july', 1), ('part', 1), ('hci', 1), ('orlando', 1), ('fl', 1), ('usa', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('integrated', 1), ('formal', 1), ('method', 1), ('ifm', 1), ('held', 1), ('lugano', 1), ('switzerland', 1), ('november', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('international', 2), ('conference', 2), ('interaction', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('distributed', 1), ('ambient', 1), ('pervasive', 1), ('dapi', 1), ('held', 1), ('part', 1), ('st', 1), ('human', 1), ('computer', 1), ('hcii', 1)]
[('international', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('human', 1), ('aspect', 1), ('aged', 1), ('population', 1), ('itap', 1), ('held', 1), ('july', 1), ('part', 1), ('hci', 1), ('orlando', 1), ('fl', 1), ('usa', 1)]
[('international', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('business', 1), ('government', 1), ('organization', 1), ('hcibgo', 1), ('held', 1), ('july', 1), ('part', 1), ('hci', 1), ('orlando', 1), ('fl', 1), ('usa', 1)]
[('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('august', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('workshop', 1), ('job', 1), ('scheduling', 1), ('strategy', 1), ('parallel', 1), ('processing', 1), ('jsspp', 1), ('held', 1), ('new', 1), ('orleans', 1), ('la', 1), ('usa', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('international', 3), ('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('adaptive', 1), ('instructional', 1), ('system', 1), ('ai', 1), ('held', 1), ('part', 1), ('rd', 1), ('hci', 1), ('took', 1)]
[('international', 3), ('conference', 2), ('social', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('computing', 1), ('medium', 1), ('scsm', 1), ('held', 1), ('part', 1), ('rd', 1), ('hci', 1)]
[('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('virtual', 1), ('augmented', 1), ('mixed', 1), ('reality', 1), ('vamr', 1), ('held', 1), ('virtually', 1), ('part', 1), ('rd', 1), ('hci', 1), ('hcii', 1), ('july', 1), ('total', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('digital', 1), ('human', 1), ('modeling', 1), ('application', 1), ('health', 1), ('safety', 1), ('ergonomics', 1), ('risk', 1), ('management', 1), ('dhm', 1), ('held', 1)]
[('international', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('cross', 1), ('cultural', 1), ('design', 1), ('ccd', 1), ('held', 1), ('part', 1), ('hci', 1), ('took', 1), ('place', 1), ('virtually', 1), ('july', 1)]
[('conference', 2), ('proceeding', 2), ('mobile', 2), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('nd', 1), ('international', 1), ('design', 1), ('operation', 1), ('evaluation', 1), ('communication', 1), ('held', 1), ('part', 1), ('rd', 1), ('hci', 1)]
[('international', 3), ('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('adaptive', 1), ('instructional', 1), ('system', 1), ('ai', 1), ('held', 1), ('part', 1), ('rd', 1), ('hci', 1), ('took', 1)]
[('international', 3), ('hci', 3), ('conference', 2), ('game', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('held', 1), ('part', 1), ('rd', 1), ('took', 1), ('place', 1)]
[('human', 2), ('computer', 2), ('interaction', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('thematic', 1), ('area', 1), ('rd', 1), ('international', 1), ('conference', 1), ('hcii', 1), ('took', 1), ('place', 1), ('virtually', 1)]
[('international', 3), ('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('learning', 1), ('collaboration', 1), ('technology', 1), ('lct', 1), ('held', 1), ('part', 1), ('rd', 1), ('hci', 1)]
[('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('august', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('bangkok', 1), ('thailand', 1), ('november', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('august', 1)]
[('human', 2), ('computer', 2), ('interaction', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('thematic', 1), ('area', 1), ('st', 1), ('international', 1), ('conference', 1), ('hcii', 1), ('took', 1), ('place', 1), ('orlando', 1), ('florida', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('provable', 1), ('security', 1), ('provsec', 1), ('held', 1), ('singapore', 1), ('november', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('international', 3), ('conference', 2), ('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('design', 1), ('user', 1), ('experience', 1), ('usability', 1), ('duxu', 1), ('held', 1), ('part', 1), ('st', 1), ('hci', 1)]
[('international', 2), ('medical', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('workshop', 1), ('ophthalmic', 1), ('image', 1), ('analysis', 1), ('omia', 1), ('held', 1), ('conjunction', 1), ('rd', 1), ('conference', 1), ('imaging', 1), ('computer', 1), ('assisted', 1), ('intervention', 1)]
[('international', 3), ('conference', 2), ('hci', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('mobility', 1), ('transport', 1), ('automotive', 1), ('system', 1), ('mobitas', 1), ('part', 1), ('rd', 1), ('virtual', 1)]
[('human', 2), ('computer', 2), ('interaction', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('thematic', 1), ('area', 1), ('rd', 1), ('international', 1), ('conference', 1), ('hcii', 1), ('took', 1), ('place', 1), ('virtually', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('social', 1), ('cultural', 1), ('behavioral', 1), ('modeling', 1), ('sbp', 1), ('brim', 1), ('held', 1), ('online', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('conference', 2), ('held', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('medical', 1), ('image', 1), ('understanding', 1), ('analysis', 1), ('miua', 1), ('july', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('nbsp', 1), ('full', 1), ('short', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('approximation', 1), ('online', 1), ('algorithm', 1), ('waoa', 1), ('held', 1), ('virtually', 1), ('nbsp', 1), ('september', 1), ('part', 1), ('algo', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('lncs', 1), ('constitute', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('cyberspace', 1), ('safety', 1), ('security', 1), ('cs', 1), ('held', 1), ('haikou', 1), ('china', 1), ('december', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('book', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 3), ('international', 3), ('proceeding', 2), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('th', 1), ('distributed', 1), ('ambient', 1), ('pervasive', 1), ('interaction', 1), ('dapi', 1), ('held', 1), ('part', 1), ('rd', 1), ('hci', 1)]
[('volume', 2), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advance', 1), ('swarm', 1), ('intelligence', 1), ('icsi', 1), ('held', 1), ('qingdao', 1), ('china', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('volume', 2), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advance', 1), ('swarm', 1), ('intelligence', 1), ('icsi', 1), ('held', 1), ('qingdao', 1), ('china', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('detection', 1), ('intrusion', 1), ('malware', 1), ('vulnerability', 1), ('assessment', 1), ('dimva', 1), ('held', 1), ('virtually', 1), ('july', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1)]
[('th', 2), ('ipaw', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('provenance', 1), ('annotation', 1), ('workshop', 1), ('held', 1), ('part', 1), ('provenanceweek', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('propvenanceweek', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('artificial', 1), ('intelligence', 1), ('security', 1), ('icais', 1), ('held', 1), ('dublin', 1), ('ireland', 1), ('july', 1), ('formerly', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('artificial', 1), ('intelligence', 1), ('security', 1), ('icais', 1), ('held', 1), ('dublin', 1), ('ireland', 1), ('july', 1), ('formerly', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('geometric', 1), ('science', 1), ('information', 1), ('gsi', 1), ('held', 1), ('paris', 1), ('france', 1), ('july', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('ifip', 1), ('wg', 1), ('conference', 1), ('data', 1), ('application', 1), ('security', 1), ('privacy', 1), ('dbsec', 1), ('held', 1), ('calgary', 1), ('canada', 1), ('july', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('volume', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('post', 1), ('quantum', 1), ('cryptography', 1), ('pqcrypto', 1), ('held', 1), ('daejeon', 1), ('south', 1), ('korea', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('architecture', 1), ('computing', 1), ('system', 1), ('arc', 1), ('held', 1), ('virtually', 1), ('july', 1), ('full', 1), ('paper', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('selected', 2), ('paper', 2), ('book', 1), ('contains', 1), ('revised', 1), ('th', 1), ('international', 1), ('conference', 1), ('area', 1), ('cryptography', 1), ('sac', 1), ('held', 1), ('halifax', 1), ('nova', 1), ('scotia', 1), ('canada', 1), ('october', 1), ('full', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('held', 2), ('conference', 2), ('eswc', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('satellite', 1), ('event', 1), ('th', 1), ('extended', 1), ('semantic', 1), ('web', 1), ('june', 1), ('online', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('following', 1), ('six', 1), ('workshop', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('satellite', 1), ('workshop', 1), ('around', 1), ('th', 1), ('international', 1), ('conference', 1), ('applied', 1), ('cryptography', 1), ('network', 1), ('security', 1), ('acns', 1), ('nbsp', 1), ('kamakura', 1), ('japan', 1), ('june', 1), ('paper', 1), ('presented', 1)]
[('lncs', 4), ('crypto', 2), ('four', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('annual', 1), ('international', 1), ('cryptology', 1), ('conference', 1), ('traditionally', 1), ('held', 1), ('ucsb', 1), ('every', 1), ('year', 1), ('due', 1)]
[('lncs', 4), ('crypto', 2), ('four', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('annual', 1), ('international', 1), ('cryptology', 1), ('conference', 1), ('traditionally', 1), ('held', 1), ('ucsb', 1), ('every', 1), ('year', 1), ('due', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('algorithmic', 1), ('game', 1), ('theory', 1), ('sagt', 1), ('held', 1), ('aarhus', 1), ('denmark', 1), ('september', 1), ('full', 1), ('presented', 1), ('together', 1), ('abstract', 1), ('carefully', 1)]
[('conference', 2), ('clef', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('association', 1), ('held', 1), ('virtually', 1), ('september', 1), ('clear', 1), ('focus', 1), ('experimental', 1), ('information', 1), ('retrieval', 1), ('special', 1), ('attention', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('multidisciplinary', 1), ('international', 1), ('symposium', 1), ('disinformation', 1), ('open', 1), ('online', 1), ('medium', 1), ('misdoom', 1), ('september', 1), ('conference', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('conference', 2), ('reality', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('augmented', 1), ('virtual', 1), ('computer', 1), ('graphic', 1), ('avr', 1), ('italy', 1), ('september', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('information', 1), ('system', 1), ('application', 1), ('wisa', 1), ('held', 1), ('kaifeng', 1), ('china', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('information', 1), ('system', 1), ('industrial', 1), ('management', 1), ('application', 1), ('cisim', 1), ('held', 1), ('ełk', 1), ('poland', 1), ('september', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('information', 1), ('communication', 1), ('security', 1), ('icics', 1), ('held', 1), ('chongqing', 1), ('china', 1), ('september', 1), ('nbsp', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('information', 1), ('communication', 1), ('security', 1), ('icics', 1), ('held', 1), ('chongqing', 1), ('china', 1), ('september', 1), ('nbsp', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 2), ('latin', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('american', 1), ('symposium', 1), ('theoretical', 1), ('informatics', 1), ('held', 1), ('nbsp', 1), ('sao', 1), ('paulo', 1), ('brazil', 1), ('january', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('august', 1)]
[('book', 1), ('constitutes', 1), ('first', 1), ('automatization', 1), ('cranial', 1), ('implant', 1), ('design', 1), ('cranioplasty', 1), ('challenge', 1), ('autoimplant', 1), ('held', 1), ('conjunction', 1), ('rd', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('green', 1), ('pervasive', 1), ('cloud', 1), ('computing', 1), ('gpc', 1), ('held', 1), ('xi', 1), ('china', 1), ('november', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('august', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('emerging', 1), ('technology', 1), ('authorization', 1), ('authentication', 1), ('etaa', 1), ('held', 1), ('guildford', 1), ('uk', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('proceeding', 2), ('three', 1), ('volume', 1), ('lncs', 1), ('constitutes', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptology', 1), ('information', 1), ('security', 1), ('asiacrypt', 1), ('held', 1), ('december', 1)]
[('proceeding', 2), ('three', 1), ('volume', 1), ('lncs', 1), ('constitutes', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptology', 1), ('information', 1), ('security', 1), ('asiacrypt', 1), ('held', 1), ('december', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('economics', 1), ('grid', 1), ('cloud', 1), ('system', 1), ('service', 1), ('gecon', 1), ('izola', 1), ('slovenia', 1), ('september', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('volume', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('combinatorial', 1), ('optimization', 1), ('application', 1), ('cocoa', 1), ('held', 1), ('dallas', 1), ('tx', 1), ('usa', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('th', 2), ('international', 2), ('software', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('conference', 1), ('verified', 1), ('vstte', 1), ('workshop', 1), ('numerical', 1), ('verification', 1), ('nsv', 1), ('held', 1), ('los', 1), ('angeles', 1), ('ca', 1), ('usa', 1), ('july', 1), ('due', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('internet', 1), ('economics', 1), ('wine', 1), ('held', 1), ('beijing', 1), ('china', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('abstract', 1), ('carefully', 1)]
[('book', 2), ('india', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('cryptology', 1), ('indocrypt', 1), ('held', 1), ('bangalore', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('abstract', 1)]
[('key', 2), ('project', 2), ('deductive', 2), ('verification', 2), ('book', 1), ('present', 1), ('reflection', 1), ('occasion', 1), ('year', 1), ('focus', 1), ('software', 1), ('inception', 1), ('decade', 1), ('ago', 1), ('area', 1), ('evolved', 1), ('considerably', 1)]
[('volume', 2), ('lncs', 2), ('set', 1), ('constitutes', 1), ('conjunction', 1), ('lnai', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('held', 1), ('nanchang', 1), ('china', 1), ('august', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('service', 1), ('oriented', 1), ('computing', 1), ('icsoc', 1), ('planned', 1), ('take', 1), ('place', 1), ('dubai', 1), ('uae', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('held', 1)]
[('dna', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computing', 1), ('molecular', 1), ('programming', 1), ('held', 1), ('seattle', 1), ('wa', 1), ('usa', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('book', 2), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('information', 1), ('security', 1), ('application', 1), ('wisa', 1), ('held', 1), ('jeju', 1), ('island', 1), ('south', 1), ('korea', 1), ('august', 1), ('full', 1), ('research', 1), ('paper', 1), ('included', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('algorithm', 1), ('data', 1), ('structure', 1), ('wad', 1), ('held', 1), ('edmonton', 1), ('ab', 1), ('canada', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('lecture', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('rewriting', 1), ('logic', 1), ('application', 1), ('wrla', 1), ('held', 1), ('dublin', 1), ('ireland', 1), ('april', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('took', 1), ('place', 1), ('virtually', 1), ('full', 1)]
[('volume', 2), ('lncs', 2), ('set', 1), ('constitutes', 1), ('conjunction', 1), ('lnai', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('held', 1), ('nanchang', 1), ('china', 1), ('august', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('distributed', 1), ('computing', 1), ('internet', 1), ('technology', 1), ('icdcit', 1), ('held', 1), ('bhubaneswar', 1), ('india', 1), ('january', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('symposium', 1), ('fundamental', 1), ('computation', 1), ('theory', 1), ('fct', 1), ('held', 1), ('copenhagen', 1), ('denmark', 1), ('august', 1), ('full', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('visual', 1), ('computing', 1), ('isvc', 1), ('supposed', 1), ('held', 1), ('san', 1), ('diego', 1), ('ca', 1), ('usa', 1), ('october', 1), ('took', 1), ('place', 1), ('virtually', 1), ('instead', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('computing', 1), ('technology', 1), ('pact', 1), ('held', 1), ('almaty', 1), ('kazakhstan', 1), ('august', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('visual', 1), ('computing', 1), ('isvc', 1), ('supposed', 1), ('held', 1), ('san', 1), ('diego', 1), ('ca', 1), ('usa', 1), ('october', 1), ('took', 1), ('place', 1), ('virtually', 1), ('instead', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('cryptography', 1), ('tcc', 1), ('held', 1), ('durham', 1), ('nc', 1), ('usa', 1), ('november', 1), ('total', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('volume', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algorithmic', 1), ('aspect', 1), ('information', 1), ('management', 1), ('aaim', 1), ('held', 1), ('bejing', 1), ('china', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('cryptography', 1), ('tcc', 1), ('held', 1), ('durham', 1), ('nc', 1), ('usa', 1), ('november', 1), ('total', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('international', 2), ('verification', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('workshop', 1), ('numerical', 1), ('software', 1), ('nsv', 1), ('held', 1), ('new', 1), ('york', 1), ('city', 1), ('ny', 1), ('usa', 1), ('july', 1), ('colocated', 1), ('conference', 1), ('computer', 1), ('aided', 1), ('cav', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('cryptography', 1), ('tcc', 1), ('held', 1), ('durham', 1), ('nc', 1), ('usa', 1), ('november', 1), ('total', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('international', 2), ('workshop', 2), ('security', 2), ('system', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('industrial', 1), ('control', 1), ('cyber', 1), ('physical', 1), ('cybericps', 1), ('second', 1), ('privacy', 1)]
[('singapore', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('formal', 1), ('engineering', 1), ('method', 1), ('icfem', 1), ('held', 1), ('march', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1), ('doctoral', 1), ('symposium', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('network', 1), ('system', 1), ('security', 1), ('n', 1), ('held', 1), ('melbourne', 1), ('vic', 1), ('australia', 1), ('november', 1), ('full', 1), ('short', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('net', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('communication', 1), ('technology', 1), ('vehicle', 1), ('car', 1), ('train', 1), ('aircraft', 1), ('held', 1), ('bordeaux', 1), ('france', 1), ('november', 1), ('full', 1), ('paper', 1), ('carefully', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('verification', 1), ('evaluation', 1), ('computer', 1), ('communication', 1), ('system', 1), ('vecos', 1), ('supposed', 1), ('xi', 1), ('china', 1), ('october', 1), ('virtually', 1)]
[('conference', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('advance', 1), ('computer', 1), ('game', 1), ('acg', 1), ('held', 1), ('macao', 1), ('china', 1), ('august', 1), ('full', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('advanced', 1), ('parallel', 1), ('processing', 1), ('technology', 1), ('appt', 1), ('held', 1), ('tianjin', 1), ('china', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('first', 1), ('myocardial', 1), ('pathology', 1), ('segmentation', 1), ('combining', 1), ('multi', 1), ('sequence', 1), ('cmr', 1), ('challenge', 1), ('myops', 1), ('held', 1), ('conjunction', 1), ('rd', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('satellite', 1), ('workshop', 1), ('held', 1), ('around', 1), ('th', 1), ('international', 1), ('conference', 1), ('applied', 1), ('cryptography', 1), ('network', 1), ('security', 1), ('acns', 1), ('bogota', 1), ('colombia', 1), ('june', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('revised', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('workshop', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('engineering', 1), ('icwe', 1), ('held', 1), ('helsinki', 1), ('finland', 1), ('june', 1), ('full', 1), ('short', 1), ('paper', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('workshop', 1), ('computer', 1), ('algebra', 1), ('scientific', 1), ('computing', 1), ('casc', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('lncs', 4), ('four', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('document', 1), ('analysis', 1), ('recognition', 1), ('icdar', 1), ('held', 1), ('lausanne', 1), ('switzerland', 1), ('september', 1)]
[('lncs', 4), ('four', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('document', 1), ('analysis', 1), ('recognition', 1), ('icdar', 1), ('held', 1), ('lausanne', 1), ('switzerland', 1), ('september', 1)]
[('book', 2), ('word', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('combinatorics', 1), ('held', 1), ('virtually', 1), ('september', 1), ('nbsp', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('conference', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('parallel', 1), ('computing', 1), ('technology', 1), ('pact', 1), ('held', 1), ('september', 1), ('planned', 1), ('take', 1), ('place', 1), ('kaliningrad', 1), ('russia', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('theory', 1), ('practice', 1), ('digital', 1), ('library', 1), ('tpdl', 1), ('september', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('openmp', 1), ('iwomp', 1), ('held', 1), ('virtually', 1), ('september', 1), ('hosted', 1), ('high', 1), ('performance', 1), ('computing', 1), ('research', 1), ('group', 1), ('university', 1), ('bristol', 1), ('uk', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('wireless', 1), ('algorithm', 1), ('system', 1), ('application', 1), ('wasa', 1), ('held', 1), ('june', 1), ('took', 1), ('place', 1), ('nanjing', 1)]
[('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('wireless', 1), ('algorithm', 1), ('system', 1), ('application', 1), ('wasa', 1), ('held', 1), ('june', 1), ('took', 1), ('place', 1), ('nanjing', 1), ('china', 1), ('full', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('wireless', 1), ('algorithm', 1), ('system', 1), ('application', 1), ('wasa', 1), ('held', 1), ('june', 1), ('nanjing', 1), ('china', 1), ('full', 1), ('short', 1), ('paper', 1)]
[('ten', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('cagliari', 1), ('italy', 1), ('september', 1), ('event', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('mobile', 1), ('web', 1), ('intelligent', 1), ('information', 1), ('system', 1), ('mobiwis', 1), ('held', 1), ('istanbul', 1), ('turkey', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('th', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('joint', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('next', 1), ('generation', 1), ('teletraffic', 1), ('wired', 1), ('wireless', 1), ('advanced', 1), ('network', 1), ('system', 1), ('new', 1), ('internet', 1), ('thing', 1), ('smart', 1), ('space', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('expert', 1), ('system', 1), ('application', 1), ('dexa', 1), ('held', 1), ('linz', 1), ('austria', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('interdisciplinary', 1), ('trust', 1), ('identity', 1), ('privacy', 1), ('security', 1), ('digital', 1), ('economy', 1), ('detips', 1), ('first', 1), ('international', 1), ('dependability', 1), ('safety', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('expert', 1), ('system', 1), ('application', 1), ('dexa', 1), ('held', 1), ('linz', 1), ('austria', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('th', 2), ('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('data', 1), ('privacy', 1), ('management', 1), ('dpm', 1), ('cryptocurrencies', 1), ('blockchain', 1), ('technology', 1), ('cbt', 1), ('held', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('trust', 1), ('privacy', 1), ('security', 1), ('digital', 1), ('business', 1), ('trustbus', 1), ('held', 1), ('linz', 1), ('austria', 1), ('august', 1), ('conjunction', 1), ('dexa', 1), ('full', 1), ('paper', 1)]
[('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('machine', 1), ('learning', 1), ('clinical', 1), ('neuroimaging', 1), ('mlcn', 1), ('second', 1), ('radiogenomics', 1), ('neuro', 1), ('oncology', 1), ('rno', 1), ('ai', 1), ('held', 1), ('conjunction', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('euro', 1), ('par', 1), ('held', 1), ('göttingen', 1), ('germany', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('distributed', 1), ('computer', 1), ('communication', 1), ('network', 1), ('dccn', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('big', 1), ('data', 1), ('analytics', 1), ('knowledge', 1), ('discovery', 1), ('dawak', 1), ('held', 1), ('linz', 1), ('austria', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('held', 1), ('th', 1), ('european', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('take', 1), ('place', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('big', 1), ('data', 1), ('analytics', 1), ('bda', 1), ('took', 1), ('place', 1), ('december', 1), ('sonepat', 1), ('india', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('modeling', 1), ('analysis', 1), ('timed', 1), ('system', 1), ('format', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('august', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('held', 1), ('th', 1), ('european', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('take', 1), ('place', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('queueing', 1), ('theory', 1), ('network', 1), ('application', 1), ('qtna', 1), ('held', 1), ('ghent', 1), ('belgium', 1), ('august', 1), ('full', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('method', 1), ('industrial', 1), ('critical', 1), ('system', 1), ('fmics', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('august', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('nbsp', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('search', 1), ('based', 1), ('software', 1), ('engineering', 1), ('ssbse', 1), ('held', 1), ('tallinn', 1), ('estonia', 1), ('august', 1), ('september', 1), ('research', 1), ('short', 1), ('presented', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('analysis', 1), ('image', 1), ('pattern', 1), ('caip', 1), ('held', 1), ('salerno', 1), ('italy', 1), ('september', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('business', 1), ('process', 1), ('management', 1), ('bpm', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('september', 1), ('full', 1), ('tutorial', 1), ('short', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1)]
[('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('image', 1), ('graphic', 1), ('icig', 1), ('held', 1), ('haikou', 1), ('china', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('cooperative', 1), ('design', 1), ('visualization', 1), ('engineering', 1), ('cdve', 1), ('october', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('full', 1), ('paper', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('search', 1), ('based', 1), ('software', 1), ('engineering', 1), ('ssbse', 1), ('held', 1), ('bari', 1), ('italy', 1), ('october', 1), ('full', 1), ('short', 1), ('paper', 1), ('included', 1), ('volume', 1)]
[('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('uncertainty', 1), ('safe', 1), ('utilization', 1), ('machine', 1), ('learning', 1), ('medical', 1), ('imaging', 1), ('unsure', 1), ('th', 1), ('preterm', 1), ('perinatal', 1), ('paediatric', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('symposium', 1), ('research', 1), ('computer', 1), ('security', 1), ('esorics', 1), ('took', 1), ('place', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('book', 1), ('carefully', 1)]
[('china', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('information', 1), ('retrieval', 1), ('ccir', 1), ('held', 1), ('dalian', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('joint', 1), ('international', 1), ('conference', 1), ('serious', 1), ('game', 1), ('jcsg', 1), ('virtual', 1), ('event', 1), ('january', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('runtime', 1), ('verification', 1), ('rv', 1), ('held', 1), ('virtually', 1), ('october', 1), ('regular', 1), ('short', 1), ('tool', 1), ('benchmark', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('job', 1), ('scheduling', 1), ('strategy', 1), ('parallel', 1), ('processing', 1), ('jsspp', 1), ('held', 1), ('virtual', 1), ('event', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('bioengineering', 1), ('biomedical', 1), ('signal', 1), ('image', 1), ('processing', 1), ('biomesip', 1), ('held', 1), ('meloneras', 1), ('gran', 1), ('canaria', 1), ('spain', 1), ('july', 1), ('full', 1), ('short', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('entertainment', 1), ('computing', 1), ('icec', 1), ('supposed', 1), ('take', 1), ('place', 1), ('xi', 1), ('china', 1), ('november', 1), ('instead', 1), ('held', 1), ('virtually', 1), ('due', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('interact', 1), ('held', 1), ('paphos', 1), ('cyprus', 1), ('september', 1), ('total', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('high', 1), ('performance', 1), ('computing', 1), ('science', 1), ('engineering', 1), ('hpcse', 1), ('held', 1), ('nbsp', 1), ('karolinka', 1), ('czech', 1), ('republic', 1), ('paper', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('held', 1), ('th', 1), ('european', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('take', 1), ('place', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('verification', 1), ('model', 1), ('checking', 1), ('abstract', 1), ('interpretation', 1), ('vmcai', 1), ('held', 1), ('virtually', 1), ('january', 1), ('planned', 1), ('take', 1), ('place', 1)]
[('book', 1), ('constitutes', 1), ('first', 1), ('head', 1), ('neck', 1), ('tumor', 1), ('segmentation', 1), ('pet', 1), ('ct', 1), ('challenge', 1), ('hecktor', 1), ('held', 1), ('conjunction', 1), ('rd', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1)]
[('le', 2), ('today', 1), ('cyber', 1), ('defense', 1), ('largely', 1), ('static', 1), ('allowing', 1), ('adversary', 1), ('pre', 1), ('plan', 1), ('attack', 1), ('response', 1), ('situation', 1), ('researcher', 1), ('started', 1), ('investigate', 1), ('various', 1), ('method', 1), ('make', 1), ('networked', 1), ('information', 1), ('system', 1), ('homogeneous', 1)]
[('year', 1), ('st', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('orlando', 1), ('florida', 1), ('usa', 1), ('july', 1), ('introduced', 1), ('additional', 1), ('option', 1), ('late', 1), ('breaking', 1), ('work', 1), ('applied', 1), ('paper', 1), ('poster', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('workshop', 1), ('held', 1), ('conjunction', 1), ('safecomp', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('safety', 1), ('reliability', 1), ('security', 1), ('september', 1), ('turku', 1), ('finland', 1), ('regular', 1), ('paper', 1), ('included', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('safety', 1), ('reliability', 1), ('security', 1), ('safecomp', 1), ('held', 1), ('turku', 1), ('finland', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('included', 1), ('volume', 1)]
[('proceeding', 2), ('set', 1), ('lncs', 1), ('constitute', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('icann', 1), ('held', 1), ('munich', 1), ('germany', 1), ('september', 1), ('nbsp', 1), ('total', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('conference', 1), ('business', 1), ('service', 1), ('society', 1), ('held', 1), ('trondheim', 1), ('norway', 1), ('september', 1), ('total', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('system', 1), ('analysis', 1), ('modeling', 1), ('sam', 1), ('held', 1), ('munich', 1), ('germany', 1), ('september', 1), ('full', 1), ('work', 1), ('progress', 1), ('presented', 1), ('together', 1)]
[('proceeding', 2), ('set', 1), ('lncs', 1), ('constitute', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('icann', 1), ('held', 1), ('munich', 1), ('germany', 1), ('september', 1), ('nbsp', 1), ('total', 1), ('full', 1), ('paper', 1)]
[('proceeding', 2), ('set', 1), ('lncs', 1), ('constitute', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('icann', 1), ('held', 1), ('munich', 1), ('germany', 1), ('september', 1), ('nbsp', 1), ('total', 1), ('full', 1), ('paper', 1)]
[('proceeding', 2), ('set', 1), ('lncs', 1), ('constitute', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('icann', 1), ('held', 1), ('munich', 1), ('germany', 1), ('september', 1), ('nbsp', 1), ('total', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('software', 1), ('engineering', 1), ('resilient', 1), ('system', 1), ('serene', 1), ('held', 1), ('naples', 1), ('italy', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('theory', 1), ('practice', 1), ('digital', 1), ('library', 1), ('tpdl', 1), ('held', 1), ('olslo', 1), ('norway', 1), ('september', 1), ('revised', 1), ('full', 1), ('short', 1), ('poster', 1), ('presented', 1)]
[('chile', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cryptology', 1), ('security', 1), ('latin', 1), ('america', 1), ('latincrypt', 1), ('held', 1), ('santiago', 1), ('di', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('wired', 1), ('wireless', 1), ('internet', 1), ('communication', 1), ('wwic', 1), ('held', 1), ('bologna', 1), ('italy', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('nbsp', 1), ('carefully', 1), ('reviewed', 1)]
[('proceeding', 2), ('set', 1), ('lncs', 1), ('constitute', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('icann', 1), ('held', 1), ('munich', 1), ('germany', 1), ('september', 1), ('nbsp', 1), ('total', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('information', 1), ('system', 1), ('industrial', 1), ('management', 1), ('application', 1), ('cisim', 1), ('held', 1), ('belgrade', 1), ('serbia', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('cyber', 1), ('security', 1), ('ml', 1), ('c', 1), ('held', 1), ('xi', 1), ('china', 1), ('september', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('th', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('joint', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('next', 1), ('generation', 1), ('teletraffic', 1), ('wired', 1), ('wireless', 1), ('advanced', 1), ('network', 1), ('system', 1), ('new', 1), ('internet', 1), ('thing', 1), ('smart', 1), ('space', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('joint', 1), ('rule', 1), ('reasoning', 1), ('ruleml', 1), ('rr', 1), ('held', 1), ('bolzano', 1), ('italy', 1), ('september', 1), ('third', 1), ('new', 1), ('series', 1), ('joining', 1), ('effort', 1), ('existing', 1)]
[('paper', 3), ('revised', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('networked', 1), ('system', 1), ('netys', 1), ('held', 1), ('marrakech', 1), ('morocco', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('symposium', 1), ('research', 1), ('computer', 1), ('security', 1), ('esoric', 1), ('held', 1), ('luxembourg', 1), ('september', 1), ('nbsp', 1), ('total', 1), ('full', 1), ('paper', 1), ('included', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('symposium', 1), ('research', 1), ('computer', 1), ('security', 1), ('esoric', 1), ('held', 1), ('luxembourg', 1), ('september', 1), ('nbsp', 1), ('total', 1), ('full', 1), ('paper', 1), ('included', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('algorithmic', 1), ('game', 1), ('theory', 1), ('sagt', 1), ('held', 1), ('athens', 1), ('greece', 1), ('september', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('web', 2), ('volume', 1), ('contains', 1), ('lecture', 1), ('note', 1), ('th', 1), ('reasoning', 1), ('summer', 1), ('school', 1), ('rw', 1), ('held', 1), ('bolzano', 1), ('italy', 1), ('september', 1), ('research', 1), ('area', 1), ('semantic', 1), ('linked', 1), ('data', 1), ('knowledge', 1), ('graph', 1), ('recently', 1), ('received', 1), ('lot', 1), ('attention', 1)]
[('china', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('information', 1), ('retrieval', 1), ('ccir', 1), ('held', 1), ('fuzhou', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('product', 1), ('focused', 1), ('software', 1), ('process', 1), ('improvement', 1), ('profes', 1), ('turin', 1), ('italy', 1), ('november', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('hybrid', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('information', 1), ('security', 1), ('isc', 1), ('held', 1), ('virtually', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('brazilian', 1), ('symposium', 1), ('formal', 1), ('method', 1), ('sbmf', 1), ('held', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('took', 1), ('place', 1), ('virtually', 1), ('regular', 1), ('paper', 1), ('presented', 1)]
[('th', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('european', 1), ('workshop', 1), ('computer', 1), ('performance', 1), ('engineering', 1), ('epew', 1), ('international', 1), ('conference', 1), ('analytical', 1), ('stochastic', 1), ('modelling', 1), ('technique', 1), ('application', 1), ('asmta', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('game', 1), ('learning', 1), ('alliance', 1), ('gala', 1), ('held', 1), ('la', 1), ('spezia', 1), ('italy', 1), ('december', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('asia', 1), ('pacific', 1), ('digital', 1), ('library', 1), ('icadl', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('full', 1), ('short', 1)]
[('proceeding', 2), ('four', 1), ('volume', 1), ('lncs', 1), ('constitutes', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptology', 1), ('information', 1), ('security', 1), ('asiacrypt', 1), ('held', 1), ('december', 1)]
[('proceeding', 2), ('four', 1), ('volume', 1), ('lncs', 1), ('constitutes', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptology', 1), ('information', 1), ('security', 1), ('asiacrypt', 1), ('held', 1), ('december', 1)]
[('symposium', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('visual', 1), ('computing', 1), ('isvc', 1), ('held', 1), ('october', 1), ('took', 1), ('place', 1), ('virtually', 1), ('instead', 1), ('due', 1), ('covid', 1)]
[('nbsp', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('web', 1), ('information', 1), ('system', 1), ('engineering', 1), ('wise', 1), ('held', 1), ('melbourne', 1), ('vic', 1), ('australia', 1), ('october', 1), ('full', 1), ('short', 1), ('demo', 1), ('paper', 1), ('plus', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptographic', 1), ('technique', 1), ('eurocrypt', 1), ('held', 1), ('zagreb', 1), ('croatia', 1), ('october', 1)]
[('proceeding', 2), ('conference', 2), ('four', 1), ('volume', 1), ('lncs', 1), ('constitutes', 1), ('th', 1), ('international', 1), ('neural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('december', 1), ('planned', 1)]
[('book', 1), ('constitutes', 1), ('second', 1), ('automatization', 1), ('cranial', 1), ('implant', 1), ('design', 1), ('cranioplasty', 1), ('challenge', 1), ('autoimplant', 1), ('held', 1), ('conjunction', 1), ('th', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('interactive', 1), ('digital', 1), ('storytelling', 1), ('icids', 1), ('held', 1), ('tallinn', 1), ('estonia', 1), ('december', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('proceeding', 2), ('india', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('nd', 1), ('international', 1), ('conference', 1), ('cryptology', 1), ('indocrypt', 1), ('held', 1), ('jaipur', 1), ('december', 1), ('full', 1), ('paper', 1), ('included', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('economics', 1), ('grid', 1), ('cloud', 1), ('system', 1), ('service', 1), ('gecon', 1), ('september', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('held', 1), ('virtually', 1), ('hosted', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('algorithmic', 1), ('aspect', 1), ('cloud', 1), ('computing', 1), ('algocloud', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('september', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('ubiquitous', 1), ('networking', 1), ('unet', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('conference', 1), ('virtually', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('distributed', 1), ('computer', 1), ('communication', 1), ('network', 1), ('dccn', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('cryptology', 1), ('network', 1), ('security', 1), ('can', 1), ('held', 1), ('december', 1), ('originally', 1), ('planned', 1), ('take', 1), ('place', 1), ('vienna', 1), ('austria', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ima', 1), ('international', 1), ('cryptography', 1), ('coding', 1), ('imacc', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('paper', 1), ('presented', 1)]
[('net', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('communication', 1), ('technology', 1), ('vehicle', 1), ('car', 1), ('train', 1), ('aircraft', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('november', 1), ('full', 1), ('short', 1), ('paper', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('big', 1), ('data', 1), ('analytics', 1), ('bda', 1), ('took', 1), ('place', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('held', 1), ('virtually', 1), ('full', 1), ('short', 1), ('paper', 1), ('included', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('conference', 1), ('critical', 1), ('information', 1), ('infrastructure', 1), ('security', 1), ('critis', 1), ('took', 1), ('place', 1), ('lausanne', 1), ('switzerland', 1), ('september', 1), ('full', 1), ('paper', 1)]
[('nbsp', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('practical', 1), ('aspect', 1), ('declarative', 1), ('language', 1), ('padl', 1), ('held', 1), ('philadelphia', 1), ('pa', 1), ('usa', 1), ('january', 1), ('full', 1), ('short', 1)]
[('paper', 2), ('lncs', 1), ('nbsp', 1), ('constitute', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('cyberspace', 1), ('safety', 1), ('security', 1), ('cs', 1), ('held', 1), ('online', 1), ('november', 1), ('full', 1), ('short', 1), ('presented', 1), ('book', 1), ('carefully', 1), ('reviewed', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('iberoamerican', 1), ('congress', 1), ('progress', 1), ('pattern', 1), ('recognition', 1), ('image', 1), ('analysis', 1), ('computer', 1), ('vision', 1), ('application', 1), ('ciarp', 1), ('took', 1), ('place', 1), ('conference', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('network', 1), ('parallel', 1), ('computing', 1), ('npc', 1), ('held', 1), ('paris', 1), ('france', 1), ('november', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('verification', 1), ('model', 1), ('checking', 1), ('abstract', 1), ('interpretation', 1), ('vmcai', 1), ('took', 1), ('place', 1), ('philadelphia', 1), ('pa', 1), ('usa', 1), ('january', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('dagm', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('german', 1), ('pattern', 1), ('recognition', 1), ('gcpr', 1), ('held', 1), ('september', 1), ('october', 1), ('planned', 1), ('take', 1), ('place', 1), ('bonn', 1), ('germany', 1), ('changed', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('emerging', 1), ('technology', 1), ('authorization', 1), ('authentication', 1), ('etaa', 1), ('held', 1), ('darmstadt', 1), ('germany', 1), ('october', 1), ('co', 1), ('located', 1), ('esorics', 1)]
[('multi', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('statistical', 1), ('atlas', 1), ('computational', 1), ('model', 1), ('heart', 1), ('stacom', 1), ('m', 1), ('challenge', 1), ('disease', 1), ('view', 1), ('center', 1), ('right', 1), ('ventricular', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('distributed', 1), ('computing', 1), ('intelligent', 1), ('technology', 1), ('icdcit', 1), ('held', 1), ('bhubaneswar', 1), ('india', 1), ('january', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nbsp', 1), ('th', 1), ('international', 1), ('web', 1), ('internet', 1), ('economics', 1), ('wine', 1), ('held', 1), ('online', 1), ('december', 1), ('originally', 1), ('planned', 1), ('take', 1), ('place', 1), ('potsdam', 1)]
[('book', 1), ('constitutes', 1), ('second', 1), ('diabetic', 1), ('foot', 1), ('ulcer', 1), ('grand', 1), ('challenge', 1), ('dfuc', 1), ('held', 1), ('september', 1), ('conjunction', 1), ('th', 1), ('international', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algorithm', 1), ('discrete', 1), ('applied', 1), ('mathematics', 1), ('caldam', 1), ('held', 1), ('puducherry', 1), ('india', 1), ('february', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('volume', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('digital', 1), ('forensics', 1), ('watermarking', 1), ('iwdw', 1), ('held', 1), ('beijing', 1), ('china', 1), ('november', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('th', 2), ('nbsp', 2), ('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('data', 1), ('privacy', 1), ('management', 1), ('dpm', 1), ('cryptocurrencies', 1), ('blockchain', 1), ('technology', 1), ('cbt', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('chatbot', 1), ('research', 1), ('design', 1), ('conversation', 1), ('november', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('conference', 1), ('online', 1), ('paper', 1), ('included', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('emerging', 1), ('technology', 1), ('education', 1), ('sete', 1), ('held', 1), ('zhuhai', 1), ('china', 1), ('november', 1), ('full', 1), ('accepted', 1), ('together', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('security', 1), ('privacy', 1), ('applied', 1), ('cryptography', 1), ('engineering', 1), ('space', 1), ('held', 1), ('kolkata', 1), ('india', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('reasoning', 2), ('web', 2), ('purpose', 1), ('summer', 1), ('school', 1), ('disseminate', 1), ('recent', 1), ('advance', 1), ('technique', 1), ('related', 1), ('issue', 1), ('particular', 1), ('interest', 1), ('semantic', 1), ('linked', 1), ('data', 1), ('application', 1), ('primarily', 1), ('intended', 1), ('postgraduate', 1)]
[('th', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('ifip', 1), ('conference', 1), ('distributed', 1), ('application', 1), ('interoperable', 1), ('system', 1), ('dais', 1), ('supposed', 1), ('held', 1), ('valletta', 1), ('malta', 1), ('june', 1), ('part', 1)]
[('first', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('miccai', 1), ('domain', 1), ('adaptation', 1), ('representation', 1), ('transfer', 1), ('dart', 1), ('international', 1), ('medical', 1), ('image', 1), ('learning', 1), ('le', 1), ('label', 1), ('imperfect', 1), ('data', 1), ('mil', 1), ('id', 1)]
[('international', 2), ('conference', 2), ('frontier', 2), ('algorithmic', 2), ('wisdom', 2), ('faw', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('joint', 1), ('theoretical', 1), ('computer', 1), ('science', 1), ('ijtcs', 1), ('th', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('symposium', 1), ('benchmarking', 1), ('measuring', 1), ('optimization', 1), ('bench', 1), ('held', 1), ('seattle', 1), ('wa', 1), ('usa', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('chapter', 2), ('name', 1), ('available', 1), ('open', 1), ('access', 1), ('creative', 1), ('common', 1), ('attribution', 1), ('international', 1), ('license', 1), ('via', 1), ('link', 1), ('springer', 1)]
[('international', 2), ('conference', 2), ('iswc', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('semantic', 1), ('web', 1), ('held', 1), ('auckland', 1), ('new', 1), ('zealand', 1), ('october', 1), ('premier', 1), ('forum', 1)]
[('international', 2), ('conference', 2), ('iswc', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('semantic', 1), ('web', 1), ('held', 1), ('auckland', 1), ('new', 1), ('zealand', 1), ('october', 1), ('premier', 1), ('forum', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('mathematics', 1), ('program', 1), ('construction', 1), ('mpc', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('october', 1), ('nbsp', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('rd', 1), ('international', 1), ('symposium', 1), ('trend', 1), ('functional', 1), ('programming', 1), ('tfp', 1), ('held', 1), ('virtually', 1), ('march', 1), ('full', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('model', 1), ('data', 1), ('engineering', 1), ('medi', 1), ('held', 1), ('toulouse', 1), ('france', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('automated', 1), ('technology', 1), ('verification', 1), ('analysis', 1), ('atva', 1), ('held', 1), ('taipei', 1), ('taiwan', 1), ('october', 1), ('regular', 1), ('presented', 1), ('together', 1), ('tool', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('service', 1), ('icws', 1), ('held', 1), ('virtually', 1), ('part', 1), ('scf', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('big', 1), ('data', 1), ('analytics', 1), ('bda', 1), ('took', 1), ('place', 1), ('virtually', 1), ('december', 1), ('full', 1), ('short', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('internet', 1), ('thing', 1), ('iciot', 1), ('held', 1), ('virtually', 1), ('part', 1), ('scf', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('th', 2), ('international', 2), ('software', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('conference', 1), ('verified', 1), ('vstte', 1), ('workshop', 1), ('numerical', 1), ('verification', 1), ('nsv', 1), ('held', 1), ('online', 1), ('july', 1), ('october', 1), ('due', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('algorithm', 1), ('architecture', 1), ('parallel', 1), ('processing', 1), ('ica', 1), ('pp', 1), ('held', 1), ('online', 1), ('december', 1)]
[('conference', 2), ('held', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('better', 1), ('world', 1), ('shaping', 1), ('global', 1), ('future', 1), ('february', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('algorithm', 1), ('architecture', 1), ('parallel', 1), ('processing', 1), ('ica', 1), ('pp', 1), ('held', 1), ('online', 1), ('december', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('algorithm', 1), ('architecture', 1), ('parallel', 1), ('processing', 1), ('ica', 1), ('pp', 1), ('held', 1), ('online', 1), ('december', 1)]
[('conference', 2), ('held', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('better', 1), ('world', 1), ('shaping', 1), ('global', 1), ('future', 1), ('february', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('volume', 2), ('paper', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('service', 1), ('computing', 1), ('held', 1), ('part', 1), ('scf', 1), ('december', 1), ('virtual', 1), ('event', 1), ('due', 1), ('covid', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('verified', 1), ('software', 1), ('theory', 1), ('tool', 1), ('experiment', 1), ('vstte', 1), ('nbsp', 1), ('held', 1), ('trento', 1), ('italy', 1), ('october', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('paper', 2), ('volume', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('four', 1), ('workshop', 1), ('collocated', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('formal', 1), ('method', 1), ('sefm', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('september', 1), ('full', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('metaheuristics', 1), ('mic', 1), ('held', 1), ('syracuse', 1), ('italy', 1), ('july', 1), ('full', 1), ('together', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('european', 1), ('conference', 1), ('ir', 1), ('research', 1), ('ecir', 1), ('held', 1), ('virtually', 1), ('march', 1), ('april', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('passive', 1), ('active', 1), ('measurement', 1), ('pam', 1), ('planned', 1), ('held', 1), ('cottbus', 1), ('germany', 1), ('march', 1), ('due', 1), ('corona', 1), ('pandemic', 1), ('organized', 1), ('virtual', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('european', 1), ('conference', 1), ('ir', 1), ('research', 1), ('ecir', 1), ('held', 1), ('virtually', 1), ('march', 1), ('april', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('evo', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('music', 1), ('sound', 1), ('art', 1), ('design', 1), ('evomusart', 1), ('held', 1), ('part', 1), ('virtual', 1), ('event', 1), ('april', 1), ('co', 1), ('located', 1)]
[('due', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('working', 1), ('conference', 1), ('requirement', 1), ('engineering', 1), ('foundation', 1), ('software', 1), ('quality', 1), ('refsq', 1), ('held', 1), ('essen', 1), ('germany', 1), ('april', 1), ('covid', 1), ('pandemic', 1)]
[('held', 2), ('volume', 1), ('constitutes', 1), ('paper', 1), ('several', 1), ('workshop', 1), ('conjunction', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('system', 1), ('advanced', 1), ('application', 1), ('dasfaa', 1), ('taipei', 1), ('taiwan', 1), ('april', 1), ('revised', 1), ('full', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('system', 1), ('advanced', 1), ('application', 1), ('dasfaa', 1), ('held', 1), ('taipei', 1), ('taiwan', 1), ('april', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('book', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('relational', 1), ('algebraic', 1), ('method', 1), ('computer', 1), ('science', 1), ('ramics', 1), ('took', 1), ('place', 1), ('augsburg', 1), ('germany', 1), ('april', 1), ('paper', 1), ('presented', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('system', 1), ('advanced', 1), ('application', 1), ('dasfaa', 1), ('held', 1), ('taipei', 1), ('taiwan', 1), ('april', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('analysis', 1), ('image', 1), ('social', 1), ('network', 1), ('text', 1), ('aist', 1), ('held', 1), ('october', 1), ('planned', 1), ('take', 1), ('place', 1), ('moscow', 1), ('russia', 1)]
[('mike', 3), ('book', 1), ('festschrift', 1), ('honour', 1), ('papazoglou', 1), ('th', 1), ('birthday', 1), ('retirement', 1), ('includes', 1), ('contribution', 1), ('leading', 1), ('researcher', 1), ('worked', 1), ('year', 1), ('academic', 1), ('research', 1), ('topic', 1), ('varied', 1)]
[('workshop', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('functional', 1), ('constraint', 1), ('logic', 1), ('programming', 1), ('wflp', 1), ('bologna', 1), ('italy', 1), ('september', 1), ('due', 1), ('covid', 1)]
[('paper', 2), ('open', 1), ('access', 1), ('volume', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('socio', 1), ('technical', 1), ('aspect', 1), ('security', 1), ('stast', 1), ('held', 1), ('luxembourg', 1), ('september', 1), ('nbsp', 1), ('total', 1), ('full', 1), ('together', 1), ('short', 1)]
[('rsa', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('cryptographer', 1), ('track', 1), ('conference', 1), ('ct', 1), ('held', 1), ('san', 1), ('francisco', 1), ('ca', 1), ('usa', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('web', 1), ('engineering', 1), ('icwe', 1), ('supposed', 1), ('held', 1), ('biarritz', 1), ('france', 1), ('due', 1), ('corona', 1), ('pandemic', 1), ('changed', 1), ('virtual', 1), ('format', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('reproducible', 1), ('research', 1), ('pattern', 1), ('nbsp', 1), ('recognition', 1), ('rrpr', 1), ('held', 1), ('virtual', 1), ('event', 1), ('january', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('iapr', 1), ('international', 1), ('discrete', 1), ('geometry', 1), ('mathematical', 1), ('morphology', 1), ('dgmm', 1), ('held', 1), ('uppsala', 1), ('sweden', 1), ('created', 1), ('joining', 1)]
[('international', 2), ('kidney', 2), ('book', 1), ('constitutes', 1), ('second', 1), ('challenge', 1), ('tumor', 1), ('segmentation', 1), ('kit', 1), ('held', 1), ('conjunction', 1), ('th', 1), ('conference', 1), ('medical', 1), ('image', 1), ('computing', 1), ('computer', 1), ('assisted', 1), ('intervention', 1), ('miccai', 1)]
[('russia', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('computer', 1), ('science', 1), ('symposium', 1), ('csr', 1), ('held', 1), ('yekaterinburg', 1), ('june', 1), ('full', 1), ('invited', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('nbsp', 1), ('th', 1), ('computability', 1), ('europe', 1), ('cie', 1), ('planned', 1), ('held', 1), ('fisciano', 1), ('italy', 1), ('june', 1), ('july', 1), ('moved', 1), ('virtual', 1), ('format', 1), ('due', 1)]
[('selected', 2), ('paper', 2), ('book', 1), ('contains', 1), ('revised', 1), ('th', 1), ('international', 1), ('conference', 1), ('area', 1), ('cryptography', 1), ('sac', 1), ('held', 1), ('virtual', 1), ('event', 1), ('september', 1), ('october', 1), ('full', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('accelerator', 1), ('programming', 1), ('using', 1), ('directive', 1), ('waccpd', 1), ('held', 1), ('denver', 1), ('co', 1), ('usa', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('tbilisi', 1), ('symposium', 1), ('logic', 1), ('language', 1), ('computation', 1), ('tbillc', 1), ('held', 1), ('batumi', 1), ('georgia', 1), ('september', 1), ('volume', 1), ('contains', 1), ('full', 1), ('revised', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('fourth', 1), ('international', 1), ('symposium', 1), ('cyber', 1), ('security', 1), ('cryptography', 1), ('machine', 1), ('learning', 1), ('cscml', 1), ('held', 1), ('er', 1), ('sheva', 1), ('israel', 1), ('july', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('graph', 1), ('transformation', 1), ('icgt', 1), ('bergen', 1), ('norway', 1), ('june', 1), ('research', 1), ('tool', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('ir', 1), ('research', 1), ('ecir', 1), ('held', 1), ('april', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('mathematical', 1), ('optimization', 1), ('theory', 1), ('operation', 1), ('research', 1), ('motor', 1), ('held', 1), ('novosibirsk', 1), ('russia', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('book', 2), ('nbsp', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('intelligent', 1), ('data', 1), ('analysis', 1), ('ida', 1), ('held', 1), ('rennes', 1), ('france', 1), ('april', 1), ('paper', 1), ('included', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('place', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('risk', 1), ('security', 1), ('internet', 1), ('system', 1), ('crisis', 1), ('took', 1), ('november', 1), ('originally', 1), ('planned', 1), ('take', 1), ('ames', 1), ('ia', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('european', 1), ('conference', 1), ('service', 1), ('oriented', 1), ('cloud', 1), ('computing', 1), ('esocc', 1), ('held', 1), ('wittenberg', 1), ('germany', 1), ('march', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('evo', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('application', 1), ('evolutionary', 1), ('computation', 1), ('evoapplications', 1), ('held', 1), ('part', 1), ('april', 1), ('co', 1), ('located', 1), ('event', 1), ('eurogp', 1), ('evocop', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('system', 1), ('advanced', 1), ('application', 1), ('dasfaa', 1), ('held', 1), ('online', 1), ('april', 1), ('total', 1), ('full', 1), ('paper', 1), ('along', 1)]
[('proceeding', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('th', 1), ('iberian', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('image', 1), ('analysis', 1), ('ibpria', 1), ('held', 1), ('aveiro', 1), ('portugal', 1), ('nbsp', 1), ('paper', 1), ('accepted', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('embedded', 1), ('computer', 1), ('system', 1), ('architecture', 1), ('modeling', 1), ('simulation', 1), ('samos', 1), ('took', 1), ('place', 1), ('july', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('held', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('system', 1), ('advanced', 1), ('application', 1), ('dasfaa', 1), ('held', 1), ('online', 1), ('april', 1), ('total', 1), ('full', 1), ('paper', 1), ('along', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('database', 1), ('system', 1), ('advanced', 1), ('application', 1), ('dasfaa', 1), ('held', 1), ('online', 1), ('april', 1), ('total', 1), ('full', 1), ('paper', 1), ('along', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('functional', 1), ('logic', 1), ('programming', 1), ('flop', 1), ('held', 1), ('kyoto', 1), ('japan', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('development', 1), ('language', 1), ('theory', 1), ('dlt', 1), ('held', 1), ('tampa', 1), ('fl', 1), ('usa', 1), ('took', 1), ('place', 1), ('hybrid', 1), ('format', 1), ('person', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('testing', 1), ('software', 1), ('system', 1), ('ictss', 1), ('supposed', 1), ('london', 1), ('uk', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('acpr', 1), ('held', 1), ('jeju', 1), ('island', 1), ('south', 1), ('korea', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('acpr', 1), ('held', 1), ('jeju', 1), ('island', 1), ('south', 1), ('korea', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('waccpd', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('accelerator', 1), ('programming', 1), ('using', 1), ('directive', 1), ('took', 1), ('place', 1), ('november', 1), ('conference', 1), ('held', 1), ('hybrid', 1), ('event', 1), ('nbsp', 1), ('major', 1), ('forum', 1)]
[('proceeding', 2), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('st', 1), ('international', 1), ('conference', 1), ('image', 1), ('analysis', 1), ('processing', 1), ('iciap', 1), ('held', 1), ('lecce', 1), ('italy', 1), ('paper', 1), ('included', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('nbsp', 1), ('theory', 1), ('application', 1), ('satisfiability', 1), ('testing', 1), ('sat', 1), ('planned', 1), ('take', 1), ('place', 1), ('alghero', 1), ('italy', 1), ('july', 1), ('due', 1), ('coronavirus', 1)]
[('proceeding', 2), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('st', 1), ('international', 1), ('conference', 1), ('image', 1), ('analysis', 1), ('processing', 1), ('iciap', 1), ('held', 1), ('lecce', 1), ('italy', 1), ('paper', 1), ('included', 1)]
[('proceeding', 2), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('st', 1), ('international', 1), ('conference', 1), ('image', 1), ('analysis', 1), ('processing', 1), ('iciap', 1), ('held', 1), ('lecce', 1), ('italy', 1), ('paper', 1), ('included', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptographic', 1), ('technique', 1), ('africa', 1), ('africacrypt', 1), ('held', 1), ('cairo', 1), ('egypt', 1), ('july', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('iapr', 1), ('international', 1), ('workshop', 1), ('document', 1), ('analysis', 1), ('system', 1), ('da', 1), ('held', 1), ('la', 1), ('rochelle', 1), ('france', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('numerous', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('web', 1), ('wireless', 1), ('geographical', 1), ('information', 1), ('system', 1), ('gi', 1), ('held', 1), ('konstanz', 1), ('germany', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('detection', 1), ('intrusion', 1), ('malware', 1), ('vulnerability', 1), ('assessment', 1), ('dimva', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('openshmem', 1), ('workshop', 1), ('held', 1), ('virtually', 1), ('august', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('inclusion', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('mathematical', 1), ('software', 1), ('icms', 1), ('held', 1), ('braunschweig', 1), ('germany', 1), ('july', 1), ('nbsp', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nbsp', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('privacy', 1), ('forum', 1), ('apf', 1), ('warsaw', 1), ('poland', 1), ('june', 1), ('full', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1), ('organized', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('combinatorial', 1), ('image', 1), ('analysis', 1), ('iwcia', 1), ('held', 1), ('novi', 1), ('sad', 1), ('serbia', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('reliability', 1), ('safety', 1), ('security', 1), ('railway', 1), ('system', 1), ('rssrail', 1), ('held', 1), ('paris', 1), ('france', 1), ('june', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('ten', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('cagliari', 1), ('italy', 1), ('september', 1), ('event', 1)]
[('ten', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('nbsp', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('cagliari', 1), ('italy', 1), ('september', 1), ('event', 1)]
[('lncs', 5), ('proceeding', 2), ('set', 1), ('constitute', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('icann', 1), ('held', 1), ('bratislava', 1), ('slovakia', 1), ('september', 1)]
[('international', 3), ('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('learning', 1), ('collaboration', 1), ('technology', 1), ('lct', 1), ('held', 1), ('part', 1), ('rd', 1), ('hci', 1)]
[('human', 2), ('computer', 2), ('interaction', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('thematic', 1), ('area', 1), ('rd', 1), ('international', 1), ('conference', 1), ('hcii', 1), ('took', 1), ('place', 1), ('virtually', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('digital', 1), ('human', 1), ('modeling', 1), ('application', 1), ('health', 1), ('safety', 1), ('ergonomics', 1), ('risk', 1), ('management', 1), ('dhm', 1), ('held', 1)]
[('international', 3), ('conference', 2), ('held', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('human', 1), ('aspect', 1), ('aged', 1), ('population', 1), ('itap', 1), ('part', 1), ('rd', 1), ('hci', 1), ('virtual', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('thematic', 1), ('area', 1), ('human', 1), ('interface', 1), ('management', 1), ('information', 1), ('himi', 1), ('held', 1), ('part', 1), ('hci', 1), ('international', 1), ('took', 1), ('place', 1), ('virtually', 1), ('july', 1)]
[('international', 3), ('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('design', 1), ('user', 1), ('experience', 1), ('usability', 1), ('duxu', 1), ('held', 1), ('part', 1), ('rd', 1), ('hci', 1)]
[('international', 3), ('conference', 2), ('held', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('universal', 1), ('access', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('uahci', 1), ('part', 1), ('rd', 1), ('hci', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('thematic', 1), ('area', 1), ('human', 1), ('interface', 1), ('management', 1), ('information', 1), ('himi', 1), ('held', 1), ('part', 1), ('hci', 1), ('international', 1), ('took', 1), ('place', 1), ('virtually', 1), ('july', 1)]
[('international', 3), ('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('design', 1), ('user', 1), ('experience', 1), ('usability', 1), ('duxu', 1), ('held', 1), ('part', 1), ('rd', 1), ('hci', 1)]
[('international', 3), ('conference', 2), ('held', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('human', 1), ('aspect', 1), ('aged', 1), ('population', 1), ('itap', 1), ('part', 1), ('rd', 1), ('hci', 1), ('virtual', 1)]
[('international', 3), ('conference', 2), ('held', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('universal', 1), ('access', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('uahci', 1), ('part', 1), ('rd', 1), ('hci', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('integration', 1), ('constraint', 1), ('programming', 1), ('artificial', 1), ('intelligence', 1), ('operation', 1), ('research', 1), ('cpaior', 1), ('held', 1), ('los', 1), ('angeles', 1), ('ca', 1), ('usa', 1), ('june', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('mexican', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('mcpr', 1), ('planned', 1), ('ciudad', 1), ('juárez', 1), ('mexico', 1), ('june', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('formal', 1), ('technique', 1), ('distributed', 1), ('object', 1), ('component', 1), ('system', 1), ('forte', 1), ('held', 1), ('lucca', 1), ('italy', 1), ('june', 1), ('part', 1), ('th', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('system', 1), ('reuse', 1), ('icsr', 1), ('held', 1), ('montpellier', 1), ('france', 1), ('june', 1), ('full', 1), ('short', 1), ('included', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 3), ('book', 2), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('symposium', 1), ('foundation', 1), ('practice', 1), ('security', 1), ('fps', 1), ('held', 1), ('paris', 1), ('france', 1), ('december', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('design', 1), ('science', 1), ('research', 1), ('information', 1), ('system', 1), ('technology', 1), ('desrist', 1), ('held', 1), ('kristiansand', 1), ('norway', 1), ('august', 1), ('revised', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('algorithm', 1), ('data', 1), ('structure', 1), ('wad', 1), ('held', 1), ('virtually', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('lecture', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('model', 1), ('checking', 1), ('software', 1), ('spin', 1), ('held', 1), ('virtually', 1), ('july', 1), ('full', 1), ('tool', 1), ('case', 1), ('study', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('fc', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('workshop', 1), ('affiliated', 1), ('th', 1), ('international', 1), ('conference', 1), ('financial', 1), ('cryptography', 1), ('data', 1), ('security', 1), ('held', 1), ('grenada', 1), ('nbsp', 1), ('present', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('tpc', 1), ('technology', 1), ('performance', 1), ('evaluation', 1), ('benchmarking', 1), ('tpctc', 1), ('held', 1), ('august', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('cover', 1), ('following', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('leveraging', 1), ('application', 1), ('formal', 1), ('method', 1), ('isola', 1), ('planned', 1), ('take', 1), ('place', 1), ('october', 1), ('rhodes', 1), ('greece', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('development', 1), ('language', 1), ('theory', 1), ('dlt', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('august', 1), ('took', 1), ('place', 1), ('hybrid', 1), ('format', 1)]
[('volume', 2), ('lncs', 2), ('set', 1), ('constitutes', 1), ('conjunction', 1), ('lnai', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('held', 1), ('shenzhen', 1), ('china', 1), ('august', 1)]
[('volume', 2), ('lncs', 2), ('set', 1), ('constitutes', 1), ('conjunction', 1), ('lnai', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('held', 1), ('shenzhen', 1), ('china', 1), ('august', 1)]
[('lncs', 4), ('crypto', 2), ('four', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('annual', 1), ('international', 1), ('cryptology', 1), ('conference', 1), ('traditionally', 1), ('held', 1), ('ucsb', 1), ('every', 1), ('year', 1), ('due', 1)]
[('lncs', 4), ('crypto', 2), ('four', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('annual', 1), ('international', 1), ('cryptology', 1), ('conference', 1), ('traditionally', 1), ('held', 1), ('ucsb', 1), ('every', 1), ('year', 1), ('due', 1)]
[('wg', 3), ('tc', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('international', 1), ('cross', 1), ('domain', 1), ('conference', 1), ('cd', 1), ('make', 1), ('held', 1), ('virtually', 1), ('august', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('spatial', 1), ('data', 1), ('intelligence', 1), ('spatialdi', 1), ('held', 1), ('april', 1), ('hangzhou', 1), ('china', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('mobile', 1), ('web', 1), ('intelligent', 1), ('information', 1), ('system', 1), ('mobiwis', 1), ('held', 1), ('virtual', 1), ('event', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('international', 2), ('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('cross', 1), ('cultural', 1), ('design', 1), ('ccd', 1), ('held', 1), ('part', 1), ('hci', 1), ('took', 1), ('place', 1), ('virtually', 1), ('june', 1), ('july', 1)]
[('international', 3), ('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('adaptive', 1), ('instructional', 1), ('system', 1), ('ai', 1), ('part', 1), ('rd', 1), ('hci', 1), ('virtually', 1), ('june', 1), ('july', 1)]
[('international', 2), ('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('cross', 1), ('cultural', 1), ('design', 1), ('ccd', 1), ('held', 1), ('part', 1), ('hci', 1), ('took', 1), ('place', 1), ('virtually', 1), ('june', 1), ('july', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('digital', 1), ('human', 1), ('modeling', 1), ('application', 1), ('health', 1), ('safety', 1), ('ergonomics', 1), ('risk', 1), ('management', 1), ('dhm', 1), ('held', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('school', 1), ('engineering', 1), ('trustworthy', 1), ('software', 1), ('system', 1), ('set', 1), ('held', 1), ('chongqing', 1), ('china', 1), ('april', 1), ('five', 1), ('chapter', 1), ('volume', 1), ('provide', 1), ('lecture', 1), ('leading', 1), ('edge', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('held', 1), ('th', 1), ('international', 1), ('conference', 1), ('financial', 1), ('cryptography', 1), ('data', 1), ('security', 1), ('fc', 1), ('kota', 1), ('kinabalu', 1), ('malaysia', 1), ('february', 1), ('full', 1), ('short', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('australasian', 1), ('conference', 1), ('information', 1), ('security', 1), ('privacy', 1), ('acisp', 1), ('held', 1), ('perth', 1), ('wa', 1), ('australia', 1), ('november', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('international', 3), ('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('culture', 1), ('computing', 1), ('part', 1), ('rd', 1), ('hci', 1), ('virtually', 1), ('june', 1), ('july', 1)]
[('paper', 2), ('volume', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algorithmic', 1), ('aspect', 1), ('information', 1), ('management', 1), ('aaim', 1), ('held', 1), ('jinhua', 1), ('china', 1), ('august', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('international', 3), ('conference', 2), ('hci', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('business', 1), ('government', 1), ('organization', 1), ('hcibgo', 1), ('part', 1), ('rd', 1), ('virtually', 1)]
[('china', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('information', 1), ('retrieval', 1), ('ccir', 1), ('held', 1), ('xi', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('thematic', 1), ('area', 1), ('human', 1), ('interface', 1), ('management', 1), ('information', 1), ('himi', 1), ('held', 1), ('part', 1), ('hci', 1), ('international', 1), ('took', 1), ('place', 1), ('virtually', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('nasa', 1), ('formal', 1), ('method', 1), ('nfm', 1), ('held', 1), ('moffett', 1), ('field', 1), ('ca', 1), ('usa', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('international', 3), ('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('design', 1), ('user', 1), ('experience', 1), ('usability', 1), ('duxu', 1), ('part', 1), ('rd', 1), ('hci', 1), ('virtually', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('complemented', 1), ('rd', 1), ('symposium', 1), ('formal', 1), ('method', 1), ('fm', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('october', 1), ('volume', 1), ('present', 1), ('paper', 1), ('accepted', 1), ('following', 1)]
[('crypto', 2), ('held', 2), ('conference', 1), ('cryptologic', 1), ('research', 1), ('august', 1), ('traditionally', 1), ('ucsb', 1), ('every', 1), ('year', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('online', 1), ('event', 1), ('paper', 1), ('presented', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('digital', 1), ('human', 1), ('modeling', 1), ('application', 1), ('health', 1), ('safety', 1), ('ergonomics', 1), ('risk', 1), ('management', 1), ('dhm', 1), ('held', 1)]
[('crypto', 2), ('held', 2), ('conference', 1), ('cryptologic', 1), ('research', 1), ('august', 1), ('traditionally', 1), ('ucsb', 1), ('every', 1), ('year', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('online', 1), ('event', 1), ('paper', 1), ('presented', 1)]
[('international', 2), ('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('cross', 1), ('cultural', 1), ('design', 1), ('ccd', 1), ('held', 1), ('part', 1), ('hci', 1), ('took', 1), ('place', 1), ('virtually', 1), ('june', 1), ('july', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('invited', 1), ('first', 1), ('international', 1), ('workshop', 1), ('frontier', 1), ('software', 1), ('engineering', 1), ('education', 1), ('fisee', 1), ('took', 1), ('place', 1), ('november', 1), ('château', 1), ('de', 1), ('villebrumier', 1), ('france', 1), ('included', 1)]
[('ifip', 2), ('wg', 2), ('electronic', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('participation', 1), ('epart', 1), ('held', 1), ('granada', 1), ('spain', 1), ('september', 1), ('conjunction', 1), ('nbsp', 1), ('government', 1), ('egov', 1)]
[('ifip', 3), ('wg', 2), ('international', 2), ('conference', 2), ('electronic', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('government', 1), ('egov', 1), ('held', 1), ('granada', 1), ('spain', 1), ('september', 1), ('conjunction', 1)]
[('conference', 2), ('held', 2), ('volume', 1), ('lncs', 1), ('constitutes', 1), ('paper', 1), ('th', 1), ('international', 1), ('trust', 1), ('privacy', 1), ('security', 1), ('digital', 1), ('business', 1), ('trustbus', 1), ('september', 1), ('part', 1), ('dexa', 1), ('event', 1), ('virtually', 1), ('due', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('database', 1), ('expert', 1), ('system', 1), ('application', 1), ('dexa', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('held', 1), ('virtually', 1)]
[('conference', 2), ('held', 2), ('volume', 1), ('lncs', 1), ('constitutes', 1), ('paper', 1), ('th', 1), ('international', 1), ('electronic', 1), ('government', 1), ('information', 1), ('system', 1), ('perspective', 1), ('egovis', 1), ('september', 1), ('part', 1), ('dexa', 1), ('event', 1)]
[('lncs', 4), ('four', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('document', 1), ('analysis', 1), ('recognition', 1), ('icdar', 1), ('held', 1), ('lausanne', 1), ('switzerland', 1), ('september', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('workshop', 1), ('co', 1), ('located', 1), ('th', 1), ('conference', 1), ('document', 1), ('analysis', 1), ('recognition', 1), ('icdar', 1), ('held', 1), ('lausanne', 1), ('switzerland', 1), ('september', 1), ('total', 1), ('full', 1)]
[('lncs', 4), ('four', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('document', 1), ('analysis', 1), ('recognition', 1), ('icdar', 1), ('held', 1), ('lausanne', 1), ('switzerland', 1), ('september', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('workshop', 1), ('co', 1), ('located', 1), ('th', 1), ('conference', 1), ('document', 1), ('analysis', 1), ('recognition', 1), ('icdar', 1), ('held', 1), ('lausanne', 1), ('switzerland', 1), ('september', 1), ('total', 1), ('full', 1)]
[('paper', 2), ('held', 2), ('volume', 1), ('lncs', 1), ('constitutes', 1), ('rd', 1), ('international', 1), ('conference', 1), ('big', 1), ('data', 1), ('analytics', 1), ('knowledge', 1), ('discovery', 1), ('september', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('full', 1), ('presented', 1), ('together', 1)]
[('conference', 2), ('seven', 1), ('volume', 1), ('lncs', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('cagliari', 1), ('italy', 1), ('july', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('modeling', 1), ('analysis', 1), ('timed', 1), ('system', 1), ('format', 1), ('held', 1), ('warsaw', 1), ('poland', 1), ('september', 1), ('full', 1), ('together', 1), ('short', 1)]
[('conference', 2), ('seven', 1), ('volume', 1), ('lncs', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('cagliari', 1), ('italy', 1), ('july', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('conference', 2), ('seven', 1), ('volume', 1), ('lncs', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('cagliari', 1), ('italy', 1), ('july', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('workshop', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('predictive', 1), ('intelligence', 1), ('medicine', 1), ('prime', 1), ('conjunction', 1), ('miccai', 1), ('lima', 1), ('peru', 1), ('october', 1), ('virtually', 1), ('due', 1), ('covid', 1)]
[('chapter', 1), ('available', 1), ('open', 1), ('access', 1), ('creative', 1), ('common', 1), ('attribution', 1), ('international', 1), ('license', 1), ('via', 1), ('link', 1), ('springer', 1)]
[('conference', 2), ('seven', 1), ('volume', 1), ('lncs', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('cagliari', 1), ('italy', 1), ('july', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('lncs', 5), ('proceeding', 2), ('set', 1), ('constitute', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('icann', 1), ('held', 1), ('bratislava', 1), ('slovakia', 1), ('september', 1)]
[('lncs', 5), ('proceeding', 2), ('set', 1), ('constitute', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('icann', 1), ('held', 1), ('bratislava', 1), ('slovakia', 1), ('september', 1)]
[('ten', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('cagliari', 1), ('italy', 1), ('september', 1), ('event', 1)]
[('ten', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('cagliari', 1), ('italy', 1), ('september', 1), ('event', 1)]
[('ten', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('cagliari', 1), ('italy', 1), ('september', 1), ('event', 1)]
[('ten', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('cagliari', 1), ('italy', 1), ('september', 1), ('event', 1)]
[('ten', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('cagliari', 1), ('italy', 1), ('september', 1), ('event', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('symposium', 1), ('fundamental', 1), ('computation', 1), ('theory', 1), ('fct', 1), ('held', 1), ('athens', 1), ('greece', 1), ('september', 1), ('full', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('lncs', 5), ('proceeding', 2), ('set', 1), ('constitute', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('icann', 1), ('held', 1), ('bratislava', 1), ('slovakia', 1), ('september', 1)]
[('ten', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('cagliari', 1), ('italy', 1), ('september', 1), ('event', 1)]
[('ten', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('cagliari', 1), ('italy', 1), ('september', 1), ('event', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('computer', 1), ('vision', 1), ('system', 1), ('icvs', 1), ('september', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('volume', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('cooperative', 1), ('information', 1), ('system', 1), ('coopis', 1), ('collocated', 1), ('enterprise', 1), ('design', 1), ('operation', 1), ('computing', 1), ('edoc', 1), ('october', 1)]
[('volume', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('post', 1), ('quantum', 1), ('cryptography', 1), ('pqcrypto', 1), ('held', 1), ('virtual', 1), ('event', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('international', 2), ('conference', 2), ('sisap', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('similarity', 1), ('search', 1), ('application', 1), ('held', 1), ('bologna', 1), ('italy', 1), ('october', 1), ('annual', 1), ('researcher', 1), ('focusing', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('networked', 1), ('system', 1), ('nbsp', 1), ('netys', 1), ('virtual', 1), ('event', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('crisis', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('predictive', 1), ('intelligence', 1), ('medicine', 1), ('prime', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('strasbourg', 1), ('france', 1), ('october', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('electronic', 1), ('voting', 1), ('vote', 1), ('id', 1), ('held', 1), ('online', 1), ('due', 1), ('covid', 1), ('bregenz', 1), ('austria', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('miccai', 3), ('first', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('deep', 1), ('generative', 1), ('model', 1), ('dg', 1), ('nbsp', 1), ('data', 1), ('augmentation', 1), ('labelling', 1), ('imperfection', 1), ('dali', 1), ('held', 1), ('conjunction', 1)]
[('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('image', 1), ('graphic', 1), ('icig', 1), ('held', 1), ('haikou', 1), ('china', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('image', 1), ('graphic', 1), ('icig', 1), ('held', 1), ('haikou', 1), ('china', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('machine', 1), ('learning', 1), ('medical', 1), ('reconstruction', 1), ('mlmir', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('october', 1), ('planned', 1), ('take', 1), ('place', 1)]
[('place', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('symposium', 1), ('research', 1), ('computer', 1), ('security', 1), ('esorics', 1), ('took', 1), ('october', 1), ('conference', 1), ('originally', 1), ('planned', 1), ('take', 1)]
[('conference', 2), ('latin', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('nbsp', 1), ('th', 1), ('international', 1), ('cryptology', 1), ('information', 1), ('security', 1), ('america', 1), ('held', 1), ('october', 1), ('originally', 1), ('planned', 1), ('take', 1), ('place', 1), ('bogota', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('semantic', 1), ('web', 1), ('iswc', 1), ('took', 1), ('place', 1), ('october', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('held', 1), ('virtually', 1), ('paper', 1), ('included', 1), ('volume', 1), ('deal', 1)]
[('nbsp', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('science', 1), ('cyber', 1), ('security', 1), ('scisec', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('august', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('computation', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('unconventional', 1), ('natural', 1), ('ucnc', 1), ('held', 1), ('espoo', 1), ('finland', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('computer', 1), ('graphic', 1), ('international', 1), ('conference', 1), ('cgi', 1), ('held', 1), ('virtually', 1), ('september', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('chinese', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('computer', 1), ('vision', 1), ('prcv', 1), ('held', 1), ('shenzhen', 1), ('china', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('bioinspired', 1), ('optimization', 1), ('method', 1), ('application', 1), ('bioma', 1), ('held', 1), ('brussels', 1), ('belgium', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('august', 1)]
[('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('august', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('bangkok', 1), ('thailand', 1), ('november', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('latin', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('american', 1), ('symposium', 1), ('theoretical', 1), ('informatics', 1), ('took', 1), ('place', 1), ('guanajuato', 1), ('mexico', 1), ('november', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('iconip', 1), ('held', 1), ('bangkok', 1), ('thailand', 1), ('november', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('symposium', 2), ('place', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('brazilian', 1), ('formal', 1), ('method', 1), ('sbmf', 1), ('supposed', 1), ('take', 1), ('ouro', 1), ('preto', 1), ('brazil', 1), ('november', 1), ('instead', 1), ('took', 1), ('virtually', 1), ('due', 1), ('covid', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('future', 1), ('data', 1), ('security', 1), ('engineering', 1), ('fdse', 1), ('supposed', 1), ('quy', 1), ('nhon', 1), ('vietnam', 1), ('november', 1), ('virtually', 1), ('due', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('product', 1), ('focused', 1), ('software', 1), ('process', 1), ('improvement', 1), ('profes', 1), ('turin', 1), ('italy', 1), ('november', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('information', 1), ('security', 1), ('isc', 1), ('held', 1), ('bali', 1), ('indonesia', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nbsp', 4), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('colloquium', 1), ('theoretical', 1), ('aspect', 1), ('computing', 1), ('ictac', 1), ('took', 1), ('place', 1), ('november', 1), ('december', 1), ('conference', 1), ('originally', 1), ('planned', 1), ('take', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('symposium', 1), ('stabilization', 1), ('safety', 1), ('security', 1), ('distributed', 1), ('system', 1), ('s', 1), ('held', 1), ('austin', 1), ('tx', 1), ('usa', 1), ('november', 1), ('full', 1), ('short', 1), ('invited', 1)]
[('security', 2), ('standardisation', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('research', 1), ('ssr', 1), ('held', 1), ('london', 1), ('uk', 1), ('november', 1), ('paper', 1), ('cover', 1), ('range', 1), ('topic', 1), ('field', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('human', 1), ('centered', 1), ('software', 1), ('engineering', 1), ('hcse', 1), ('supposed', 1), ('held', 1), ('eindhoven', 1), ('netherlands', 1), ('november', 1), ('december', 1)]
[('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('august', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('symposium', 1), ('programming', 1), ('language', 1), ('system', 1), ('aplas', 1), ('held', 1), ('fukuoka', 1), ('japan', 1), ('december', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('asia', 1), ('pacific', 1), ('digital', 1), ('library', 1), ('icadl', 1), ('planned', 1), ('kyoto', 1), ('japan', 1), ('november', 1), ('december', 1), ('virtually', 1), ('due', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('information', 1), ('communication', 1), ('security', 1), ('icics', 1), ('held', 1), ('copenhagen', 1), ('denmark', 1), ('august', 1), ('nbsp', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('selected', 1)]
[('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('august', 1)]
[('volume', 2), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('neural', 1), ('network', 1), ('isnn', 1), ('held', 1), ('cairo', 1), ('egypt', 1), ('december', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('practice', 1), ('natural', 1), ('computing', 1), ('tpnc', 1), ('held', 1), ('taoyuan', 1), ('taiwan', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('august', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('design', 1), ('science', 1), ('research', 1), ('information', 1), ('system', 1), ('technology', 1), ('desrist', 1), ('held', 1), ('kristiansand', 1), ('norway', 1), ('december', 1), ('revised', 1), ('full', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('software', 1), ('system', 1), ('reuse', 1), ('icsr', 1), ('hammamet', 1), ('tunesia', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('full', 1), ('paper', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('testing', 1), ('software', 1), ('system', 1), ('ictss', 1), ('supposed', 1), ('naples', 1), ('italy', 1), ('december', 1), ('virtually', 1), ('due', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('game', 1), ('learning', 1), ('alliance', 1), ('gala', 1), ('held', 1), ('laval', 1), ('france', 1), ('december', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('nbsp', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('security', 1), ('practice', 1), ('experience', 1), ('ispec', 1), ('held', 1), ('taipei', 1), ('taiwan', 1), ('november', 1), ('full', 1), ('together', 1), ('invited', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('system', 1), ('security', 1), ('iciss', 1), ('held', 1), ('jammu', 1), ('india', 1), ('december', 1), ('regular', 1), ('short', 1), ('work', 1), ('progress', 1), ('included', 1)]
[('proceeding', 2), ('three', 1), ('volume', 1), ('lncs', 1), ('constitutes', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('application', 1), ('cryptology', 1), ('information', 1), ('security', 1), ('asiacrypt', 1), ('held', 1), ('december', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('game', 1), ('learning', 1), ('alliance', 1), ('gala', 1), ('held', 1), ('tampere', 1), ('finland', 1), ('november', 1), ('december', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('international', 1), ('conference', 1), ('combinatorial', 1), ('optimization', 1), ('application', 1), ('cocoa', 1), ('took', 1), ('place', 1), ('tianjin', 1), ('china', 1), ('december', 1), ('paper', 1), ('presented', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('system', 1), ('security', 1), ('iciss', 1), ('held', 1), ('patna', 1), ('india', 1), ('december', 1), ('regular', 1), ('short', 1), ('work', 1), ('progress', 1), ('included', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('security', 1), ('practice', 1), ('experience', 1), ('ispec', 1), ('held', 1), ('nanjing', 1), ('china', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('six', 1), ('international', 1), ('workshop', 1), ('held', 1), ('conjunction', 1), ('th', 1), ('european', 1), ('symposium', 1), ('research', 1), ('computer', 1), ('security', 1), ('esorics', 1), ('took', 1), ('place', 1), ('october', 1), ('conference', 1)]
[('held', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('blockchain', 1), ('icbc', 1), ('part', 1), ('scf', 1), ('virtual', 1), ('event', 1), ('december', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('cognitive', 1), ('computing', 1), ('icc', 1), ('part', 1), ('scf', 1), ('december', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('full', 1), ('short', 1), ('paper', 1)]
[('service', 3), ('held', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('world', 1), ('congress', 1), ('part', 1), ('federation', 1), ('scf', 1), ('december', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('artificial', 1), ('intelligence', 1), ('mobile', 1), ('service', 1), ('aim', 1), ('held', 1), ('virtual', 1), ('part', 1), ('scf', 1), ('december', 1), ('full', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('big', 1), ('data', 1), ('bigdata', 1), ('held', 1), ('online', 1), ('part', 1), ('scf', 1), ('december', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('workshop', 1), ('language', 1), ('compiler', 1), ('parallel', 1), ('computing', 1), ('lcpc', 1), ('held', 1), ('stony', 1), ('brook', 1), ('ny', 1), ('usa', 1), ('october', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('wg', 3), ('tc', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('international', 1), ('cross', 1), ('domain', 1), ('conference', 1), ('cd', 1), ('make', 1), ('held', 1), ('dublin', 1), ('ireland', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('paper', 2), ('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('ndt', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('icc', 1), ('held', 1), ('london', 1), ('uk', 1), ('june', 1), ('total', 1), ('full', 1), ('short', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('coalgebraic', 1), ('method', 1), ('computer', 1), ('science', 1), ('cmcs', 1), ('colocated', 1), ('etaps', 1), ('held', 1), ('dublin', 1), ('ireland', 1), ('april', 1)]
[('volume', 2), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('security', 1), ('protocol', 1), ('held', 1), ('cambridge', 1), ('uk', 1), ('april', 1), ('consists', 1), ('thoroughly', 1), ('revised', 1), ('invited', 1), ('paper', 1), ('presented', 1), ('together', 1), ('respective', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('workshop', 1), ('held', 1), ('conjunction', 1), ('safecomp', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('safety', 1), ('reliability', 1), ('security', 1), ('lisbon', 1), ('portugal', 1), ('september', 1), ('regular', 1), ('paper', 1), ('included', 1)]
[('ifip', 3), ('wg', 2), ('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('electronic', 1), ('government', 1), ('egov', 1), ('held', 1), ('linköping', 1), ('sweden', 1), ('august', 1), ('september', 1), ('conjunction', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('modeling', 1), ('analysis', 1), ('timed', 1), ('system', 1), ('format', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('computability', 1), ('europe', 1), ('cie', 1), ('swansea', 1), ('uk', 1), ('july', 1), ('nbsp', 1), ('full', 1), ('together', 1), ('invited', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('ifip', 3), ('th', 2), ('wg', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('conference', 1), ('electronic', 1), ('participation', 1), ('epart', 1), ('held', 1), ('linköping', 1), ('sweden', 1), ('august', 1), ('september', 1), ('conjunction', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('advance', 1), ('swarm', 1), ('intelligence', 1), ('icsi', 1), ('took', 1), ('place', 1), ('xi', 1), ('china', 1), ('july', 1), ('theme', 1), ('year', 1)]
[('conference', 2), ('held', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('applied', 1), ('cryptography', 1), ('network', 1), ('security', 1), ('acns', 1), ('rome', 1), ('italy', 1), ('october', 1), ('nbsp', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('advance', 1), ('swarm', 1), ('intelligence', 1), ('icsi', 1), ('took', 1), ('place', 1), ('xi', 1), ('china', 1), ('july', 1), ('theme', 1), ('year', 1)]
[('conference', 2), ('cocoon', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('computing', 1), ('combinatorics', 1), ('held', 1), ('atlanta', 1), ('ga', 1), ('usa', 1), ('august', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('organized', 1), ('fully', 1), ('online', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('reversible', 1), ('computation', 1), ('rc', 1), ('held', 1), ('urbino', 1), ('italy', 1), ('july', 1), ('full', 1), ('short', 1), ('included', 1)]
[('chapter', 1), ('systematic', 1), ('literature', 1), ('review', 1), ('information', 1), ('source', 1), ('threat', 1), ('modeling', 1), ('power', 1), ('system', 1), ('domain', 1), ('available', 1), ('open', 1), ('access', 1), ('creative', 1), ('common', 1), ('attribution', 1), ('international', 1), ('license', 1), ('via', 1), ('link', 1), ('springer', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('security', 1), ('iwsec', 1), ('held', 1), ('fukui', 1), ('japan', 1), ('september', 1), ('regular', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('joint', 1), ('international', 1), ('digital', 1), ('inclusion', 1), ('assistive', 1), ('technology', 1), ('accessibility', 1), ('icchp', 1), ('aate', 1), ('held', 1), ('lecco', 1), ('italy', 1), ('july', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('graph', 1), ('transformation', 1), ('icgt', 1), ('took', 1), ('place', 1), ('nantes', 1), ('france', 1), ('july', 1), ('full', 1), ('tool', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 2), ('eight', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('computational', 1), ('science', 1), ('application', 1), ('iccsa', 1), ('held', 1), ('malaga', 1), ('spain', 1), ('july', 1), ('first', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('security', 1), ('cryptography', 1), ('network', 1), ('scn', 1), ('held', 1), ('amalfi', 1), ('italy', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('volume', 2), ('paper', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('service', 1), ('computing', 1), ('held', 1), ('part', 1), ('scf', 1), ('honolulu', 1), ('usa', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('formal', 1), ('method', 1), ('sefm', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('keynote', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('symposium', 1), ('research', 1), ('computer', 1), ('security', 1), ('esorics', 1), ('held', 1), ('september', 1), ('conference', 1), ('planned', 1), ('take', 1), ('place', 1), ('guildford', 1), ('uk', 1), ('due', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('symposium', 1), ('research', 1), ('computer', 1), ('security', 1), ('esorics', 1), ('held', 1), ('september', 1), ('conference', 1), ('planned', 1), ('take', 1), ('place', 1), ('guildford', 1), ('uk', 1), ('due', 1)]
[('paper', 2), ('nbsp', 2), ('double', 1), ('volume', 1), ('lncs', 1), ('constitutes', 1), ('st', 1), ('international', 1), ('conference', 1), ('database', 1), ('expert', 1), ('system', 1), ('application', 1), ('dexa', 1), ('held', 1), ('online', 1), ('september', 1), ('full', 1), ('presented', 1), ('together', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('nbsp', 1), ('international', 1), ('conference', 1), ('database', 1), ('expert', 1), ('system', 1), ('application', 1), ('dexa', 1), ('held', 1), ('vienna', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('trust', 1), ('privacy', 1), ('security', 1), ('digital', 1), ('business', 1), ('trustbus', 1), ('bratislava', 1), ('slovakia', 1), ('september', 1), ('virtually', 1), ('due', 1)]
[('paper', 2), ('nbsp', 2), ('double', 1), ('volume', 1), ('lncs', 1), ('constitutes', 1), ('st', 1), ('international', 1), ('conference', 1), ('database', 1), ('expert', 1), ('system', 1), ('application', 1), ('dexa', 1), ('held', 1), ('online', 1), ('september', 1), ('full', 1), ('presented', 1), ('together', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('cognitive', 1), ('computing', 1), ('icc', 1), ('part', 1), ('scf', 1), ('honolulu', 1), ('usa', 1), ('september', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('euro', 1), ('par', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('august', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('blockchain', 1), ('icbc', 1), ('held', 1), ('part', 1), ('scf', 1), ('september', 1), ('planned', 1), ('take', 1), ('place', 1), ('honolulu', 1), ('usa', 1), ('changed', 1)]
[('conference', 2), ('clef', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('association', 1), ('held', 1), ('thessaloniki', 1), ('greece', 1), ('september', 1), ('clear', 1), ('focus', 1), ('experimental', 1), ('information', 1), ('retrieval', 1)]
[('privacy', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('statistical', 1), ('database', 1), ('psd', 1), ('held', 1), ('tarragona', 1), ('spain', 1), ('september', 1), ('sponsorship', 1), ('unesco', 1), ('chair', 1), ('data', 1), ('revised', 1), ('full', 1)]
[('edge', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('computing', 1), ('held', 1), ('virtually', 1), ('part', 1), ('scf', 1), ('honolulu', 1), ('usa', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('th', 2), ('security', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('workshop', 1), ('trust', 1), ('management', 1), ('stm', 1), ('co', 1), ('located', 1), ('european', 1), ('symposium', 1), ('research', 1), ('computer', 1), ('esorics', 1), ('conference', 1), ('planned', 1), ('take', 1)]
[('held', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('paper', 1), ('several', 1), ('workshop', 1), ('conjunction', 1), ('st', 1), ('international', 1), ('conference', 1), ('image', 1), ('analysis', 1), ('processing', 1), ('iciap', 1), ('lecce', 1), ('italy', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('string', 1), ('processing', 1), ('information', 1), ('retrieval', 1), ('spire', 1), ('held', 1), ('orlando', 1), ('fl', 1), ('usa', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('service', 3), ('held', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('world', 1), ('congress', 1), ('part', 1), ('federation', 1), ('scf', 1), ('honolulu', 1), ('usa', 1), ('september', 1), ('virtually', 1), ('due', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('internet', 1), ('thing', 1), ('iciot', 1), ('nbsp', 1), ('held', 1), ('virtually', 1), ('part', 1), ('scf', 1), ('honolulu', 1), ('usa', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('artificial', 1), ('intelligence', 1), ('mobile', 1), ('service', 1), ('aim', 1), ('held', 1), ('part', 1), ('scf', 1), ('september', 1), ('planned', 1), ('take', 1), ('place', 1), ('honolulu', 1)]
[('proceeding', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('rd', 1), ('international', 1), ('workshop', 1), ('combinatorial', 1), ('algorithm', 1), ('iwoca', 1), ('took', 1), ('place', 1), ('hybrid', 1), ('event', 1), ('trier', 1), ('germany', 1), ('june', 1), ('paper', 1), ('presented', 1)]
[('chapter', 1), ('available', 1), ('open', 1), ('access', 1), ('creative', 1), ('common', 1), ('attribution', 1), ('international', 1), ('license', 1), ('via', 1), ('link', 1), ('springer', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('integrated', 1), ('formal', 1), ('method', 1), ('ifm', 1), ('held', 1), ('lugano', 1), ('switzerland', 1), ('june', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('proceeding', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('information', 1), ('system', 1), ('engineering', 1), ('caise', 1), ('held', 1), ('leuven', 1), ('belgium', 1), ('june', 1), ('full', 1), ('paper', 1), ('included', 1)]
[('workshop', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('euro', 1), ('par', 1), ('took', 1), ('place', 1), ('portugal', 1), ('august', 1), ('virtually', 1), ('due', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('information', 1), ('system', 1), ('application', 1), ('wisa', 1), ('held', 1), ('guangzhou', 1), ('china', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('frontier', 1), ('algorithmics', 1), ('faw', 1), ('haikou', 1), ('china', 1), ('conference', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('simulation', 1), ('synthesis', 1), ('medical', 1), ('imaging', 1), ('sashimi', 1), ('held', 1), ('conjunction', 1), ('miccai', 1), ('lima', 1), ('peru', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('august', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('late', 1), ('breaking', 1), ('paper', 1), ('nd', 1), ('international', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('july', 1), ('planned', 1), ('take', 1), ('place', 1), ('copenhagen', 1), ('denmark', 1), ('change', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('electronic', 1), ('voting', 1), ('vote', 1), ('id', 1), ('held', 1), ('online', 1), ('due', 1), ('covid', 1), ('bregenz', 1), ('austria', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('miccai', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('domain', 1), ('adaptation', 1), ('representation', 1), ('transfer', 1), ('dart', 1), ('first', 1), ('distributed', 1), ('collaborative', 1), ('learning', 1), ('dcl', 1), ('held', 1), ('conjunction', 1)]
[('book', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('logistics', 1), ('iccl', 1), ('held', 1), ('enschede', 1), ('netherlands', 1), ('september', 1), ('paper', 1), ('included', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('computer', 1), ('safety', 1), ('reliability', 1), ('security', 1), ('safecomp', 1), ('took', 1), ('place', 1), ('munich', 1), ('germany', 1), ('september', 1), ('full', 1), ('paper', 1), ('included', 1), ('volume', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('late', 1), ('breaking', 1), ('paper', 1), ('nd', 1), ('international', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('july', 1), ('planned', 1), ('take', 1), ('place', 1), ('copenhagen', 1), ('denmark', 1), ('change', 1)]
[('conference', 2), ('proceeding', 2), ('th', 2), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('international', 1), ('distributed', 1), ('ambient', 1), ('pervasive', 1), ('interaction', 1), ('dapi', 1), ('held', 1), ('part', 1)]
[('international', 3), ('proceeding', 2), ('lct', 2), ('th', 2), ('conference', 2), ('constitutes', 1), ('refereed', 1), ('learning', 1), ('collaboration', 1), ('technology', 1), ('held', 1), ('part', 1), ('hci', 1), ('took', 1), ('place', 1)]
[('international', 3), ('conference', 2), ('mobile', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('design', 1), ('operation', 1), ('evaluation', 1), ('communication', 1), ('held', 1), ('part', 1), ('rd', 1), ('hci', 1)]
[('chapter', 1), ('developing', 1), ('vr', 1), ('tool', 1), ('support', 1), ('repeat', 1), ('pattern', 1), ('design', 1), ('learning', 1), ('available', 1), ('open', 1), ('access', 1), ('creative', 1), ('common', 1), ('attribution', 1), ('international', 1), ('license', 1), ('via', 1), ('link', 1), ('springer', 1)]
[('book', 2), ('nbsp', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('business', 1), ('process', 1), ('management', 1), ('bpm', 1), ('took', 1), ('place', 1), ('münster', 1), ('germany', 1), ('september', 1), ('paper', 1), ('included', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('architecture', 1), ('ecsa', 1), ('held', 1), ('prague', 1), ('september', 1), ('full', 1), ('short', 1), ('carefully', 1), ('selected', 1), ('submission', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('model', 1), ('based', 1), ('safety', 1), ('assessment', 1), ('imbsa', 1), ('held', 1), ('munich', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('late', 1), ('breaking', 1), ('paper', 1), ('nd', 1), ('international', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('july', 1), ('planned', 1), ('take', 1), ('place', 1), ('copenhagen', 1), ('denmark', 1), ('change', 1)]
[('held', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('machine', 1), ('learning', 1), ('medical', 1), ('imaging', 1), ('mlmi', 1), ('conjunction', 1), ('miccai', 1), ('lima', 1), ('peru', 1), ('october', 1), ('conference', 1), ('virtually', 1), ('due', 1), ('covid', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('security', 1), ('icais', 1), ('held', 1), ('qinghai', 1), ('china', 1), ('july', 1), ('total', 1), ('paper', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('security', 1), ('icais', 1), ('held', 1), ('qinghai', 1), ('china', 1), ('july', 1), ('total', 1), ('paper', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('security', 1), ('icais', 1), ('held', 1), ('qinghai', 1), ('china', 1), ('july', 1), ('total', 1), ('paper', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('problem', 1), ('solving', 1), ('nature', 1), ('ppsn', 1), ('held', 1), ('dortmund', 1), ('germany', 1), ('september', 1), ('nbsp', 1), ('revised', 1), ('full', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('problem', 1), ('solving', 1), ('nature', 1), ('ppsn', 1), ('held', 1), ('dortmund', 1), ('germany', 1), ('september', 1), ('nbsp', 1), ('revised', 1), ('full', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('track', 1), ('workshop', 1), ('complemented', 1), ('th', 1), ('european', 1), ('conference', 1), ('software', 1), ('architecture', 1), ('ecsa', 1), ('held', 1), ('växjö', 1), ('sweden', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('reality', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('virtual', 1), ('mixed', 1), ('euroxr', 1), ('held', 1), ('stuttgart', 1), ('germany', 1), ('september', 1), ('full', 1), ('short', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('ifip', 1), ('wg', 1), ('conference', 1), ('distributed', 1), ('application', 1), ('interoperable', 1), ('system', 1), ('dais', 1), ('held', 1), ('lucca', 1), ('italy', 1), ('june', 1), ('part', 1), ('th', 1), ('federated', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('workshop', 1), ('held', 1), ('conjunction', 1), ('safecomp', 1), ('took', 1), ('place', 1), ('munich', 1), ('germany', 1), ('september', 1), ('full', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('icann', 1), ('held', 1), ('bristol', 1), ('uk', 1), ('september', 1), ('total', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('international', 2), ('medical', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('workshop', 1), ('advance', 1), ('simplifying', 1), ('ultrasound', 1), ('asmus', 1), ('held', 1), ('september', 1), ('conjunction', 1), ('miccai', 1), ('th', 1), ('conference', 1), ('image', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('algorithmic', 1), ('aspect', 1), ('information', 1), ('management', 1), ('aaim', 1), ('held', 1), ('online', 1), ('august', 1), ('originally', 1), ('planned', 1), ('take', 1), ('place', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('social', 1), ('cultural', 1), ('behavioral', 1), ('modeling', 1), ('sbp', 1), ('brim', 1), ('pittsburgh', 1), ('pa', 1), ('usa', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('lncs', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('graph', 1), ('theoretic', 1), ('concept', 1), ('computer', 1), ('science', 1), ('wg', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('volume', 1), ('set', 1), ('comprising', 1), ('lncs', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('eccv', 1), ('planned', 1), ('held', 1), ('glasgow', 1), ('uk', 1), ('august', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('leveraging', 1), ('application', 1), ('formal', 1), ('method', 1), ('isola', 1), ('planned', 1), ('take', 1), ('place', 1), ('october', 1), ('rhodes', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('colloquium', 1), ('theoretical', 1), ('aspect', 1), ('computing', 1), ('ictac', 1), ('took', 1), ('place', 1), ('tbilisi', 1), ('georgia', 1), ('september', 1), ('presented', 1), ('volume', 1), ('together', 1), ('short', 1)]
[('volume', 1), ('lncs', 1), ('part', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('virtually', 1), ('june', 1), ('july', 1), ('total', 1), ('individual', 1), ('academia', 1), ('research', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('conceptual', 1), ('modeling', 1), ('er', 1), ('held', 1), ('hyderabad', 1), ('india', 1), ('october', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('social', 1), ('informatics', 1), ('socinfo', 1), ('took', 1), ('place', 1), ('glasgow', 1), ('uk', 1), ('october', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('late', 1), ('breaking', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('innovative', 1), ('security', 1), ('solution', 1), ('information', 1), ('technology', 1), ('communication', 1), ('secitc', 1), ('held', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('semantic', 1), ('web', 1), ('conference', 1), ('iswc', 1), ('took', 1), ('place', 1), ('october', 1), ('virtual', 1), ('mode', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('thoroughly', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('algebraic', 1), ('informatics', 1), ('cai', 1), ('held', 1), ('virtual', 1), ('event', 1), ('october', 1), ('abstract', 1), ('full', 1), ('invited', 1), ('speaker', 1), ('contributed', 1), ('presented', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('contribution', 1), ('associated', 1), ('event', 1), ('held', 1), ('th', 1), ('international', 1), ('symposium', 1), ('leveraging', 1), ('application', 1), ('formal', 1), ('method', 1), ('isola', 1), ('took', 1), ('place', 1), ('rhodes', 1), ('greece', 1), ('october', 1), ('november', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('second', 1), ('iapr', 1), ('international', 1), ('conference', 1), ('discrete', 1), ('geometry', 1), ('mathematical', 1), ('morphology', 1), ('dgmm', 1), ('held', 1), ('october', 1), ('strasbourg', 1), ('france', 1), ('paper', 1), ('included', 1), ('volume', 1)]
[('lncs', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('nbsp', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('processing', 1), ('applied', 1), ('mathematics', 1), ('ppam', 1), ('held', 1), ('gdansk', 1), ('poland', 1), ('september', 1), ('regular', 1), ('paper', 1)]
[('network', 2), ('information', 2), ('book', 1), ('cover', 1), ('theory', 1), ('design', 1), ('application', 1), ('computer', 1), ('distributed', 1), ('computing', 1), ('system', 1), ('today', 1), ('going', 1), ('rapid', 1), ('evolution', 1), ('many', 1), ('emerging', 1), ('area', 1), ('networking', 1)]
[('book', 1), ('includes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('innovative', 1), ('mobile', 1), ('internet', 1), ('service', 1), ('ubiquitous', 1), ('computing', 1), ('imis', 1), ('took', 1), ('place', 1), ('asan', 1), ('korea', 1), ('july', 1), ('proliferation', 1), ('wireless', 1), ('technology', 1)]
[('computational', 2), ('book', 1), ('addressed', 1), ('young', 1), ('researcher', 1), ('engineer', 1), ('field', 1), ('science', 1), ('artificial', 1), ('intelligence', 1), ('ranging', 1), ('innovative', 1), ('method', 1), ('digital', 1), ('machine', 1), ('learning', 1), ('tool', 1), ('coupling', 1), ('used', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('security', 1), ('privacy', 1), ('communication', 1), ('network', 1), ('securecomm', 1), ('held', 1), ('september', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('security', 1), ('privacy', 1), ('communication', 1), ('network', 1), ('securecomm', 1), ('held', 1), ('september', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('workshop', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('web', 1), ('engineering', 1), ('icwe', 1), ('held', 1), ('biarritz', 1), ('france', 1), ('first', 1), ('big', 1), ('data', 1), ('driven', 1), ('edge', 1), ('cloud', 1)]
[('book', 2), ('focus', 2), ('critical', 1), ('infrastructure', 1), ('protection', 1), ('chapter', 1), ('present', 1), ('detailed', 1), ('analysis', 1), ('issue', 1), ('challenge', 1), ('cyberspace', 1), ('provide', 1), ('novel', 1), ('solution', 1), ('various', 1), ('aspect', 1), ('first', 1), ('part', 1), ('digital', 1), ('society', 1)]
[('book', 2), ('gather', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('mechatronics', 1), ('intelligent', 1), ('robotics', 1), ('icmir', 1), ('held', 1), ('kunming', 1), ('china', 1), ('cover', 1), ('total', 1), ('paper', 1), ('divided', 1), ('seven', 1), ('different', 1)]
[('book', 1), ('present', 1), ('discus', 1), ('state', 1), ('art', 1), ('future', 1), ('trend', 1), ('software', 1), ('engineering', 1), ('education', 1), ('introduces', 1), ('new', 1), ('innovative', 1), ('method', 1), ('model', 1), ('framework', 1), ('focus', 1), ('training', 1), ('towards', 1), ('need', 1), ('requirement', 1), ('industry', 1)]
[('software', 3), ('business', 2), ('future', 2), ('look', 1), ('developed', 1), ('book', 1), ('cover', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('new', 1), ('think', 1), ('tank', 1), ('discussing', 1), ('trend', 1), ('enterprise', 1)]
[('information', 2), ('book', 1), ('focus', 1), ('emerging', 1), ('area', 1), ('networking', 1), ('application', 1), ('presenting', 1), ('latest', 1), ('innovative', 1), ('research', 1), ('development', 1), ('technique', 1), ('theoretical', 1), ('practical', 1), ('perspective', 1), ('today', 1), ('network', 1)]
[('intelligent', 3), ('system', 3), ('collaborative', 2), ('book', 1), ('present', 1), ('latest', 1), ('innovative', 1), ('research', 1), ('finding', 1), ('method', 1), ('development', 1), ('technique', 1), ('related', 1), ('social', 1), ('network', 1), ('networking', 1), ('mobile', 1), ('secure', 1)]
[('application', 2), ('network', 2), ('proceeding', 1), ('book', 1), ('cover', 1), ('theory', 1), ('design', 1), ('computer', 1), ('distributed', 1), ('computing', 1), ('information', 1), ('system', 1), ('today', 1), ('evolving', 1), ('rapidly', 1), ('several', 1), ('developing', 1), ('area', 1), ('include', 1)]
[('complex', 2), ('book', 1), ('report', 1), ('cutting', 1), ('edge', 1), ('theory', 1), ('method', 1), ('analyzing', 1), ('system', 1), ('transportation', 1), ('communication', 1), ('network', 1), ('discus', 1), ('multi', 1), ('disciplinary', 1), ('approach', 1), ('dependability', 1), ('problem', 1), ('encountered', 1), ('dealing', 1)]
[('computing', 2), ('proceeding', 1), ('book', 1), ('present', 1), ('latest', 1), ('research', 1), ('finding', 1), ('theoretical', 1), ('practical', 1), ('perspective', 1), ('innovative', 1), ('method', 1), ('development', 1), ('technique', 1), ('related', 1), ('emerging', 1), ('area', 1), ('web', 1), ('intelligent', 1), ('system', 1), ('internet', 1)]
[('internet', 2), ('book', 1), ('present', 1), ('original', 1), ('contribution', 1), ('theory', 1), ('practice', 1), ('emerging', 1), ('data', 1), ('web', 1), ('technology', 1), ('applicability', 1), ('business', 1), ('engineering', 1), ('academia', 1), ('become', 1), ('proliferative', 1), ('platform', 1)]
[('network', 2), ('information', 2), ('book', 1), ('cover', 1), ('theory', 1), ('design', 1), ('application', 1), ('computer', 1), ('distributed', 1), ('computing', 1), ('system', 1), ('today', 1), ('going', 1), ('rapid', 1), ('evolution', 1), ('many', 1), ('emerging', 1), ('area', 1), ('networking', 1)]
[('system', 3), ('software', 2), ('intensive', 2), ('book', 1), ('includes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('complex', 1), ('intelligent', 1), ('took', 1), ('place', 1), ('asan', 1), ('korea', 1), ('july', 1), ('heavily', 1), ('interact', 1)]
[('research', 2), ('intelligent', 2), ('book', 1), ('provides', 1), ('latest', 1), ('finding', 1), ('innovative', 1), ('result', 1), ('method', 1), ('development', 1), ('technique', 1), ('theoretical', 1), ('practical', 1), ('perspective', 1), ('related', 1), ('social', 1), ('network', 1), ('collaborative', 1), ('system', 1), ('networking', 1)]
[('internet', 2), ('book', 1), ('present', 1), ('original', 1), ('contribution', 1), ('theory', 1), ('practice', 1), ('emerging', 1), ('data', 1), ('web', 1), ('technology', 1), ('applicability', 1), ('business', 1), ('engineering', 1), ('academia', 1), ('become', 1), ('proliferative', 1), ('platform', 1)]
[('book', 1), ('provides', 1), ('opportunity', 1), ('researcher', 1), ('scientist', 1), ('government', 1), ('official', 1), ('strategist', 1), ('operator', 1), ('maintainer', 1), ('large', 1), ('complex', 1), ('advanced', 1), ('system', 1), ('infrastructure', 1), ('update', 1), ('knowledge', 1), ('state', 1), ('best', 1), ('practice', 1)]
[('game', 3), ('participation', 1), ('related', 1), ('activity', 1), ('increase', 1), ('around', 1), ('world', 1), ('across', 1), ('larger', 1), ('part', 1), ('population', 1), ('obvious', 1), ('entertainment', 1), ('medium', 1), ('child', 1), ('young', 1), ('used', 1), ('accomplish', 1)]
[('edition', 2), ('first', 2), ('second', 1), ('textbook', 1), ('includes', 1), ('revision', 1), ('based', 1), ('feedback', 1), ('new', 1), ('chapter', 1), ('author', 1), ('provide', 1), ('concise', 1), ('introduction', 1), ('remainder', 1), ('uml', 1), ('diagram', 1), ('adopting', 1), ('holistic', 1), ('approach', 1)]
[('purpose', 1), ('note', 1), ('highlight', 1), ('far', 1), ('reaching', 1), ('connection', 1), ('information', 1), ('theory', 1), ('statistic', 1), ('universal', 1), ('coding', 1), ('adaptive', 1), ('compression', 1), ('indeed', 1), ('closely', 1), ('related', 1), ('statistical', 1), ('inference', 1), ('concerning', 1), ('process', 1), ('using', 1), ('maximum', 1)]
[('landscape', 2), ('book', 1), ('share', 1), ('essential', 1), ('insight', 1), ('social', 1), ('science', 1), ('technology', 1), ('foster', 1), ('new', 1), ('advance', 1), ('managing', 1), ('complexity', 1), ('inherent', 1), ('criminal', 1), ('digital', 1), ('policing', 1), ('said', 1), ('dynamic', 1), ('intricate', 1), ('emanating', 1)]
[('system', 2), ('book', 1), ('includes', 1), ('proceeding', 1), ('second', 1), ('workshop', 1), ('recommender', 1), ('fashion', 1), ('retail', 1), ('aim', 1), ('present', 1), ('state', 1), ('art', 1), ('view', 1), ('advancement', 1), ('within', 1), ('field', 1), ('recommendation', 1), ('focused', 1), ('application', 1)]
[('blockchain', 2), ('forum', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('rpa', 1), ('held', 1), ('part', 1), ('th', 1), ('international', 1), ('conference', 1), ('business', 1), ('process', 1), ('management', 1), ('bpm', 1), ('took', 1), ('place', 1), ('september', 1), ('rome', 1), ('italy', 1)]
[('book', 2), ('focus', 1), ('latest', 1), ('endeavour', 1), ('relating', 1), ('research', 1), ('development', 1), ('conducted', 1), ('field', 1), ('control', 1), ('robotics', 1), ('automation', 1), ('ten', 1), ('revised', 1), ('extended', 1), ('article', 1), ('present', 1), ('aim', 1), ('provide', 1), ('date', 1)]
[('paper', 3), ('nbsp', 2), ('volume', 1), ('constitutes', 1), ('selected', 1), ('second', 1), ('international', 1), ('conference', 1), ('information', 1), ('system', 1), ('design', 1), ('icid', 1), ('held', 1), ('virtual', 1), ('event', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('thoroughly', 1)]
[('computer', 3), ('based', 1), ('rigorous', 1), ('selection', 1), ('proposal', 1), ('coming', 1), ('across', 1), ('world', 1), ('volume', 1), ('include', 1), ('recent', 1), ('idea', 1), ('technical', 1), ('result', 1), ('system', 1), ('science', 1), ('communication', 1), ('network', 1), ('book', 1)]
[('system', 2), ('book', 1), ('includes', 1), ('proceeding', 1), ('third', 1), ('workshop', 1), ('recommender', 1), ('fashion', 1), ('retail', 1), ('aim', 1), ('present', 1), ('state', 1), ('art', 1), ('view', 1), ('advancement', 1), ('within', 1), ('field', 1), ('recommendation', 1), ('focused', 1), ('application', 1)]
[('various', 2), ('technique', 2), ('book', 1), ('give', 1), ('detailed', 1), ('information', 1), ('real', 1), ('life', 1), ('application', 1), ('field', 1), ('using', 1), ('nature', 1), ('inspired', 1), ('optimization', 1), ('proven', 1), ('efficient', 1), ('robust', 1), ('many', 1), ('difficult', 1), ('problem', 1), ('literature', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('workshop', 1), ('algorithm', 1), ('computation', 1), ('walcom', 1), ('held', 1), ('hsinchu', 1), ('taiwan', 1), ('march', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('three', 1), ('invited', 1), ('talk', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('machine', 1), ('learning', 1), ('optimization', 1), ('big', 1), ('data', 1), ('mod', 1), ('held', 1), ('volterra', 1), ('italy', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('algorithm', 1), ('computation', 1), ('walcom', 1), ('held', 1), ('dhaka', 1), ('bangladesh', 1), ('march', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('lncs', 2), ('nbsp', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('database', 1), ('system', 1), ('advanced', 1), ('application', 1), ('dasfaa', 1), ('held', 1), ('gold', 1), ('coast', 1), ('qld', 1), ('australia', 1)]
[('lncs', 2), ('nbsp', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('database', 1), ('system', 1), ('advanced', 1), ('application', 1), ('dasfaa', 1), ('held', 1), ('gold', 1), ('coast', 1), ('qld', 1), ('australia', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('machine', 1), ('learning', 1), ('optimization', 1), ('data', 1), ('science', 1), ('lod', 1), ('held', 1), ('nbsp', 1), ('volterra', 1), ('italy', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('machine', 1), ('learning', 1), ('optimization', 1), ('data', 1), ('science', 1), ('lod', 1), ('held', 1), ('siena', 1), ('italy', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('optimization', 1), ('data', 1), ('science', 1), ('lod', 1), ('held', 1), ('siena', 1), ('italy', 1), ('july', 1), ('total', 1), ('full', 1), ('paper', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('optimization', 1), ('data', 1), ('science', 1), ('lod', 1), ('held', 1), ('siena', 1), ('italy', 1), ('july', 1), ('total', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('algorithm', 1), ('computation', 1), ('walcom', 1), ('planned', 1), ('take', 1), ('place', 1), ('yangon', 1), ('myanmar', 1), ('february', 1), ('march', 1), ('changed', 1), ('online', 1), ('format', 1), ('due', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('optimization', 1), ('data', 1), ('science', 1), ('lod', 1), ('together', 1), ('nbsp', 1), ('first', 1), ('edition', 1), ('symposium', 1), ('artificial', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('optimization', 1), ('data', 1), ('science', 1), ('lod', 1), ('together', 1), ('nbsp', 1), ('first', 1), ('edition', 1), ('symposium', 1), ('artificial', 1)]
[('engaging', 1), ('accessible', 1), ('text', 1), ('address', 1), ('fundamental', 1), ('question', 1), ('computer', 1), ('science', 1), ('book', 1), ('showcase', 1), ('set', 1), ('representative', 1), ('concept', 1), ('broadly', 1), ('connected', 1), ('theme', 1), ('information', 1), ('security', 1), ('presentation', 1), ('topic', 1)]
[('software', 4), ('quality', 2), ('textbook', 1), ('describes', 1), ('approach', 1), ('used', 1), ('engineer', 1), ('build', 1), ('fundamental', 1), ('principle', 1), ('management', 1), ('process', 1), ('provement', 1), ('discussed', 1), ('detail', 1), ('particular', 1), ('focus', 1)]
[('programming', 2), ('clearly', 1), ('written', 1), ('textbook', 1), ('introduces', 1), ('reader', 1), ('three', 1), ('style', 1), ('examining', 1), ('object', 1), ('oriented', 1), ('imperative', 1), ('functional', 1), ('logic', 1), ('focus', 1), ('text', 1), ('move', 1), ('highly', 1), ('prescriptive', 1), ('language', 1), ('descriptive', 1)]
[('textbook', 1), ('discus', 1), ('fundamental', 1), ('puzzling', 1), ('question', 1), ('foundation', 1), ('computing', 1), ('lecture', 1), ('sized', 1), ('chapter', 1), ('provides', 1), ('exciting', 1), ('tour', 1), ('important', 1), ('result', 1), ('field', 1), ('computability', 1), ('time', 1), ('complexity', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('conference', 1), ('open', 1), ('source', 1), ('system', 1), ('os', 1), ('held', 1), ('gothenburg', 1), ('sweden', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('approach', 2), ('book', 1), ('present', 1), ('systematic', 1), ('model', 1), ('based', 1), ('software', 1), ('architecture', 1), ('according', 1), ('three', 1), ('complementary', 1), ('viewpoint', 1), ('structure', 1), ('behavior', 1), ('execution', 1), ('cover', 1), ('unified', 1), ('modeling', 1), ('consolidates', 1), ('theory', 1), ('practice', 1)]
[('mathematical', 2), ('book', 1), ('provides', 1), ('introduction', 1), ('logic', 1), ('induction', 1), ('basis', 1), ('deductive', 1), ('computational', 1), ('framework', 1), ('strong', 1), ('foundation', 1), ('logical', 1), ('engine', 1), ('available', 1), ('modern', 1), ('proof', 1), ('assistant', 1), ('pvs', 1)]
[('computing', 3), ('book', 1), ('provides', 1), ('concise', 1), ('introduction', 1), ('pervasive', 1), ('known', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('ubiquitous', 1), ('ubicomp', 1), ('address', 1), ('seamless', 1), ('integration', 1), ('system', 1), ('within', 1), ('everyday', 1), ('object', 1), ('introducing', 1)]
[('essential', 1), ('textbook', 1), ('present', 1), ('concise', 1), ('introduction', 1), ('fundamental', 1), ('principle', 1), ('software', 1), ('engineering', 1), ('together', 1), ('practical', 1), ('guidance', 1), ('apply', 1), ('theory', 1), ('real', 1), ('world', 1), ('industrial', 1), ('environment', 1), ('wide', 1), ('ranging', 1), ('coverage', 1)]
[('mathematical', 2), ('analysis', 2), ('easy', 1), ('follow', 1), ('textbook', 1), ('reference', 1), ('present', 1), ('concise', 1), ('introduction', 1), ('algorithmic', 1), ('point', 1), ('view', 1), ('particular', 1), ('focus', 1), ('application', 1), ('aspect', 1), ('modelling', 1), ('text', 1), ('describes', 1)]
[('engaging', 1), ('textbook', 1), ('highlight', 1), ('essential', 1), ('need', 1), ('strong', 1), ('ethical', 1), ('framework', 1), ('approach', 1), ('computer', 1), ('information', 1), ('engineering', 1), ('science', 1), ('thought', 1), ('provoking', 1), ('question', 1), ('case', 1), ('study', 1), ('reader', 1), ('challenged', 1), ('consider', 1)]
[('data', 3), ('analysis', 2), ('summarization', 2), ('text', 1), ('examines', 1), ('goal', 1), ('respect', 1), ('enhancing', 1), ('knowledge', 1), ('identifies', 1), ('correlation', 1), ('core', 1), ('issue', 1), ('quantitative', 1), ('categorical', 1), ('treated', 1), ('within', 1)]
[('programming', 2), ('engaging', 1), ('textbook', 1), ('provides', 1), ('accessible', 1), ('introduction', 1), ('coding', 1), ('world', 1), ('object', 1), ('oriented', 1), ('oo', 1), ('using', 1), ('java', 1), ('illustrative', 1), ('language', 1), ('emphasis', 1), ('placed', 1), ('helpful', 1), ('first', 1), ('time', 1), ('coder', 1)]
[('software', 4), ('financial', 2), ('textbook', 1), ('author', 1), ('introduce', 1), ('important', 1), ('concept', 1), ('domain', 1), ('motivate', 1), ('use', 1), ('agile', 1), ('engineering', 1), ('approach', 1), ('development', 1), ('describe', 1), ('role', 1)]
[('advanced', 2), ('topic', 2), ('guide', 1), ('python', 1), ('programming', 1), ('delf', 1), ('deeply', 1), ('host', 1), ('subject', 1), ('need', 1), ('understand', 1), ('develop', 1), ('sophisticated', 1), ('real', 1), ('world', 1), ('program', 1), ('preceded', 1), ('introduction', 1), ('followed', 1), ('along', 1)]
[('practically', 1), ('focused', 1), ('textbook', 1), ('provides', 1), ('concise', 1), ('accessible', 1), ('introduction', 1), ('field', 1), ('software', 1), ('testing', 1), ('explaining', 1), ('fundamental', 1), ('principle', 1), ('offering', 1), ('guidance', 1), ('applying', 1), ('theory', 1), ('industrial', 1), ('environment', 1), ('topic', 1), ('feature', 1)]
[('illuminating', 1), ('textbook', 1), ('provides', 1), ('concise', 1), ('review', 1), ('core', 1), ('concept', 1), ('mathematics', 1), ('essential', 1), ('computer', 1), ('scientist', 1), ('emphasis', 1), ('placed', 1), ('practical', 1), ('computing', 1), ('application', 1), ('enabled', 1), ('seemingly', 1), ('abstract', 1), ('mathematical', 1), ('idea', 1), ('presented', 1)]
[('data', 2), ('database', 2), ('modern', 1), ('business', 1), ('depend', 1), ('survival', 1), ('creating', 1), ('need', 1), ('sophisticated', 1), ('technology', 1), ('help', 1), ('store', 1), ('organise', 1), ('transport', 1), ('valuable', 1), ('updated', 1), ('expanded', 1), ('easy', 1), ('textbook', 1), ('reference', 1)]
[('geometry', 2), ('textbook', 1), ('teach', 1), ('reader', 1), ('turn', 1), ('image', 1), ('computer', 1), ('screen', 1), ('exciting', 1), ('journey', 1), ('begin', 1), ('school', 1), ('ancient', 1), ('greek', 1), ('philosopher', 1), ('describes', 1), ('major', 1), ('event', 1), ('changed', 1), ('perception', 1)]
[('nbsp', 4), ('cryptography', 1), ('done', 1), ('century', 1), ('heavily', 1), ('mathematical', 1), ('root', 1), ('computationally', 1), ('feasible', 1), ('unique', 1), ('textbook', 1), ('text', 1), ('balance', 1), ('theorem', 1), ('mathematics', 1), ('feasibility', 1), ('computation', 1)]
[('step', 2), ('arithmetical', 2), ('computation', 1), ('form', 1), ('calculation', 1), ('incorporates', 1), ('include', 1), ('non', 1), ('logical', 1), ('following', 1), ('specific', 1), ('set', 1), ('rule', 1), ('algorithm', 1), ('nbsp', 1), ('uniquely', 1), ('accessible', 1), ('textbook', 1), ('introduces', 1), ('student', 1), ('using', 1)]
[('new', 2), ('insight', 1), ('many', 1), ('scientific', 1), ('engineering', 1), ('field', 1), ('unthinkable', 1), ('without', 1), ('use', 1), ('numerical', 1), ('simulation', 1), ('running', 1), ('efficiently', 1), ('modern', 1), ('computer', 1), ('faster', 1), ('result', 1), ('bigger', 1), ('accurate', 1), ('problem', 1), ('solve', 1)]
[('knowledge', 3), ('understanding', 2), ('automaton', 1), ('theory', 1), ('formal', 1), ('language', 1), ('crucial', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('various', 1), ('process', 1), ('take', 1), ('place', 1), ('manipulating', 1), ('indeed', 1), ('expressed', 1)]
[('textbook', 1), ('thorough', 1), ('date', 1), ('introduction', 1), ('principle', 1), ('technique', 1), ('guide', 1), ('design', 1), ('implementation', 1), ('modern', 1), ('programming', 1), ('language', 1), ('goal', 1), ('book', 1), ('provide', 1), ('basis', 1), ('critical', 1), ('understanding', 1)]
[('experience', 2), ('edited', 1), ('collection', 1), ('brings', 1), ('together', 1), ('range', 1), ('field', 1), ('largely', 1), ('context', 1), ('cscw', 1), ('hci', 1), ('focus', 1), ('specifically', 1), ('worked', 1), ('difficult', 1), ('tense', 1), ('delicate', 1), ('sometimes', 1), ('conflictual', 1)]
[('book', 2), ('research', 2), ('innovation', 2), ('forum', 2), ('feature', 1), ('presented', 1), ('discussed', 1), ('rii', 1), ('offer', 1), ('unique', 1), ('insight', 1), ('emerging', 1), ('topic', 1), ('issue', 1), ('development', 1), ('pertinent', 1), ('field', 1), ('technology', 1)]
[('hybrid', 2), ('intelligent', 2), ('system', 2), ('paper', 2), ('book', 1), ('highlight', 1), ('recent', 1), ('research', 1), ('various', 1), ('practical', 1), ('application', 1), ('present', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1)]
[('dialogue', 2), ('system', 2), ('book', 1), ('introduces', 1), ('new', 1), ('paradigm', 1), ('lifelong', 1), ('continual', 1), ('learning', 1), ('endow', 1), ('ability', 1), ('learn', 1), ('continually', 1), ('self', 1), ('initiated', 1), ('interaction', 1), ('user', 1), ('nbsp', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('coordination', 1), ('organization', 1), ('institution', 1), ('norm', 1), ('agent', 1), ('system', 1), ('coin', 1), ('co', 1), ('located', 1), ('aamas', 1), ('held', 1), ('st', 1), ('paul', 1), ('mn', 1)]
[('lt', 2), ('gt', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('australasian', 1), ('joint', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('canberra', 1), ('australia', 1), ('november', 1), ('december', 1), ('full', 1), ('short', 1)]
[('lt', 5), ('gt', 5), ('sup', 2), ('artificial', 2), ('intelligence', 2), ('book', 1), ('constitutes', 1), ('extended', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('symposium', 1), ('supported', 1), ('japanese', 1), ('society', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('principle', 1), ('practice', 1), ('multi', 1), ('agent', 1), ('system', 1), ('prima', 1), ('held', 1), ('nagoya', 1), ('japan', 1), ('november', 1), ('full', 1), ('presented', 1), ('short', 1)]
[('lt', 3), ('gt', 3), ('sup', 2), ('edited', 1), ('book', 1), ('present', 1), ('scientific', 1), ('result', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('artificial', 1), ('intelligence', 1), ('research', 1), ('management', 1), ('application', 1), ('serum', 1), ('held', 1), ('august', 1), ('september', 1)]
[('egc', 2), ('lt', 1), ('gt', 1), ('book', 1), ('collection', 1), ('representative', 1), ('novel', 1), ('work', 1), ('done', 1), ('data', 1), ('mining', 1), ('knowledge', 1), ('discovery', 1), ('clustering', 1), ('classification', 1), ('originally', 1), ('presented', 1), ('french', 1), ('toulouse', 1), ('france', 1), ('january', 1)]
[('bci', 2), ('research', 2), ('lt', 1), ('gt', 1), ('book', 1), ('describes', 1), ('ten', 1), ('promising', 1), ('brain', 1), ('computer', 1), ('interface', 1), ('project', 1), ('emerged', 1), ('recent', 1), ('year', 1), ('developing', 1), ('quickly', 1), ('many', 1), ('new', 1), ('idea', 1), ('group', 1), ('improved', 1), ('technology', 1), ('bcis', 1), ('enable', 1)]
[('iot', 2), ('lt', 1), ('gt', 1), ('volume', 1), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('internet', 1), ('thing', 1), ('summit', 1), ('held', 1), ('rome', 1), ('italy', 1), ('october', 1), ('event', 1)]
[('lt', 3), ('gt', 3), ('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('summit', 1), ('electronic', 1), ('healthcare', 1), ('ehealth', 1), ('held', 1), ('budapest', 1), ('hungary', 1), ('june', 1), ('revised', 1), ('full', 1), ('presented', 1), ('along', 1), ('short', 1)]
[('lt', 1), ('gt', 1), ('book', 1), ('delivers', 1), ('concise', 1), ('coverage', 1), ('classical', 1), ('method', 1), ('new', 1), ('development', 1), ('related', 1), ('indoor', 1), ('location', 1), ('based', 1), ('service', 1), ('collect', 1), ('result', 1), ('isolated', 1), ('domain', 1), ('including', 1), ('geometry', 1), ('artificial', 1), ('intelligence', 1), ('statistic', 1), ('cooperative', 1)]
[('function', 3), ('optimal', 2), ('almost', 2), ('bent', 2), ('book', 1), ('cover', 1), ('novel', 1), ('research', 1), ('construction', 1), ('analysis', 1), ('cryptographic', 1), ('perfect', 1), ('nonlinear', 1), ('apn', 1), ('ab', 1), ('planar', 1), ('resistance', 1), ('linear', 1)]
[('plot', 2), ('lt', 1), ('gt', 1), ('book', 1), ('introduces', 1), ('reader', 1), ('fundamental', 1), ('creating', 1), ('presentation', 1), ('graphic', 1), ('using', 1), ('based', 1), ('detailed', 1), ('complete', 1), ('script', 1), ('show', 1), ('bar', 1), ('column', 1), ('chart', 1), ('population', 1), ('pyramid', 1), ('lorenz', 1), ('curve', 1), ('box', 1), ('scatter', 1), ('time', 1)]
[('amp', 2), ('nbsp', 2), ('volume', 1), ('give', 1), ('date', 1), ('review', 1), ('subject', 1), ('integration', 1), ('finite', 1), ('term', 1), ('book', 1), ('collect', 1), ('four', 1), ('significant', 1), ('text', 1), ('together', 1), ('extensive', 1), ('bibliography', 1), ('commentary', 1), ('discussing', 1), ('work', 1), ('impact', 1)]
[('music', 2), ('lt', 1), ('gt', 1), ('book', 1), ('explains', 1), ('comprehensive', 1), ('ontology', 1), ('way', 1), ('existence', 1), ('processing', 1), ('specified', 1), ('compact', 1), ('characterization', 1), ('embodies', 1), ('meaningful', 1), ('communication', 1), ('mediates', 1), ('physically', 1), ('emotional', 1), ('mental', 1), ('layer', 1)]
[('lt', 1), ('gt', 1), ('covariance', 1), ('matrix', 1), ('play', 1), ('important', 1), ('role', 1), ('many', 1), ('area', 1), ('mathematics', 1), ('statistic', 1), ('machine', 1), ('learning', 1), ('application', 1), ('computer', 1), ('vision', 1), ('image', 1), ('processing', 1), ('give', 1), ('rise', 1), ('powerful', 1), ('data', 1), ('representation', 1), ('namely', 1)]
[('failure', 3), ('transaction', 2), ('typically', 2), ('traditional', 1), ('theory', 1), ('practice', 1), ('write', 1), ('ahead', 1), ('logging', 1), ('database', 1), ('recovery', 1), ('focus', 1), ('three', 1), ('class', 1), ('due', 1), ('deadlock', 1), ('resolved', 1), ('rollback', 1), ('system', 1), ('power', 1), ('software', 1)]
[('due', 1), ('internet', 1), ('revolution', 1), ('human', 1), ('conversational', 1), ('data', 1), ('written', 1), ('form', 1), ('accumulating', 1), ('phenomenal', 1), ('rate', 1), ('time', 1), ('improvement', 1), ('speech', 1), ('technology', 1), ('enable', 1), ('many', 1), ('spoken', 1), ('conversation', 1), ('transcribed', 1), ('individual', 1)]
[('geometry', 2), ('translating', 1), ('euclid', 1), ('report', 1), ('effort', 1), ('transform', 1), ('student', 1), ('stylus', 1), ('clay', 1), ('tablet', 1), ('corpus', 1), ('historical', 1), ('theorem', 1), ('stimulating', 1), ('computer', 1), ('supported', 1), ('collaborative', 1), ('learning', 1), ('inquiry', 1), ('experience', 1), ('origin', 1)]
[('increasingly', 1), ('team', 1), ('working', 1), ('together', 1), ('location', 1), ('even', 1), ('though', 1), ('many', 1), ('challenge', 1), ('successfully', 1), ('review', 1), ('latest', 1), ('insight', 1), ('matter', 1), ('guided', 1), ('framework', 1), ('developed', 1)]
[('user', 3), ('engagement', 2), ('application', 2), ('refers', 1), ('quality', 1), ('experience', 1), ('emphasizes', 1), ('positive', 1), ('aspect', 1), ('interacting', 1), ('online', 1), ('particular', 1), ('desire', 1), ('use', 1), ('longer', 1), ('repeatedly', 1), ('key', 1)]
[('motion', 2), ('picture', 2), ('century', 1), ('entertained', 1), ('occasionally', 1), ('educated', 1), ('even', 1), ('served', 1), ('specialized', 1), ('field', 1), ('study', 1), ('precipitous', 1), ('drop', 1), ('price', 1), ('increase', 1), ('image', 1), ('quality', 1)]
[('lt', 1), ('gt', 1), ('book', 1), ('celebrates', 1), ('year', 1), ('anniversary', 1), ('software', 1), ('center', 1), ('collaboration', 1), ('european', 1), ('company', 1), ('five', 1), ('swedish', 1), ('university', 1), ('presenting', 1), ('impactful', 1), ('relevant', 1), ('journal', 1), ('conference', 1), ('paper', 1)]
[('lt', 3), ('gt', 3), ('social', 3), ('online', 2), ('benefit', 1), ('derived', 1), ('network', 1), ('osns', 1), ('lure', 1), ('user', 1), ('reveal', 1), ('unprecedented', 1), ('volume', 1), ('personal', 1), ('data', 1), ('audience', 1), ('le', 1), ('trustworthy', 1), ('offline', 1), ('circle', 1), ('even', 1)]
[('agent', 2), ('cooperative', 1), ('game', 1), ('theory', 1), ('branch', 1), ('micro', 1), ('economics', 1), ('study', 1), ('behavior', 1), ('self', 1), ('interested', 1), ('strategic', 1), ('setting', 1), ('binding', 1), ('agreement', 1), ('among', 1), ('possible', 1), ('aim', 1), ('book', 1), ('present', 1), ('survey', 1), ('work', 1)]
[('method', 2), ('introduction', 2), ('dependency', 1), ('based', 1), ('syntactic', 1), ('parsing', 1), ('become', 1), ('increasingly', 1), ('popular', 1), ('natural', 1), ('language', 1), ('processing', 1), ('recent', 1), ('year', 1), ('book', 1), ('give', 1), ('thorough', 1), ('widely', 1), ('used', 1), ('today', 1)]
[('semantic', 2), ('role', 2), ('chapter', 2), ('book', 1), ('aimed', 1), ('providing', 1), ('overview', 1), ('several', 1), ('aspect', 1), ('labeling', 1), ('begin', 1), ('linguistic', 1), ('background', 1), ('definition', 1), ('controversy', 1), ('surrounding', 1), ('describes', 1), ('theory', 1)]
[('network', 2), ('pnc', 2), ('concept', 1), ('physical', 1), ('layer', 1), ('coding', 1), ('proposed', 1), ('application', 1), ('wireless', 1), ('developed', 1), ('subfield', 1), ('communication', 1), ('networking', 1), ('wide', 1), ('following', 1), ('book', 1), ('primer', 1)]
[('information', 2), ('usually', 1), ('highest', 1), ('value', 1), ('fresh', 1), ('example', 1), ('real', 1), ('time', 1), ('knowledge', 1), ('location', 1), ('orientation', 1), ('speed', 1), ('motor', 1), ('vehicle', 1), ('imperative', 1), ('autonomous', 1), ('driving', 1), ('access', 1), ('timely', 1), ('stock', 1), ('price', 1)]
[('data', 2), ('knowledge', 2), ('graph', 2), ('book', 1), ('describes', 1), ('set', 1), ('method', 1), ('architecture', 1), ('tool', 1), ('extend', 1), ('pipeline', 1), ('disposal', 1), ('developer', 1), ('need', 1), ('publish', 1), ('consume', 1), ('structured', 1), ('base', 1), ('describe', 1), ('entity', 1)]
[('mining', 2), ('outlier', 1), ('anomaly', 1), ('detection', 1), ('broad', 1), ('field', 1), ('studied', 1), ('context', 1), ('large', 1), ('number', 1), ('research', 1), ('area', 1), ('statistic', 1), ('data', 1), ('sensor', 1), ('network', 1), ('environmental', 1), ('science', 1), ('distributed', 1), ('system', 1), ('spatio', 1), ('temporal', 1), ('etc', 1)]
[('health', 2), ('lt', 1), ('gt', 1), ('medicineand', 1), ('care', 1), ('currently', 1), ('faced', 1), ('significant', 1), ('rise', 1), ('theircomplexity', 1), ('partly', 1), ('due', 1), ('progress', 1), ('made', 1), ('past', 1), ('threedecades', 1), ('fundamental', 1), ('biological', 1), ('understanding', 1), ('cause', 1)]
[('lt', 2), ('gt', 2), ('epia', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('held', 1), ('funchal', 1), ('madeira', 1), ('portugal', 1), ('september', 1), ('br', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('lt', 5), ('gt', 5), ('learning', 2), ('data', 1), ('driven', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('machine', 1), ('ml', 1), ('digital', 1), ('pathology', 1), ('radiology', 1), ('dermatology', 1), ('promising', 1), ('specific', 1), ('case', 1), ('example', 1), ('deep', 1), ('dl', 1), ('even', 1)]
[('lt', 1), ('gt', 1), ('book', 1), ('describes', 1), ('new', 1), ('theory', 1), ('application', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('special', 1), ('focus', 1), ('answering', 1), ('question', 1), ('neuroscience', 1), ('biology', 1), ('biophysics', 1), ('cognitive', 1), ('research', 1), ('cover', 1), ('wide', 1), ('range', 1), ('method', 1)]
[('conference', 2), ('lt', 2), ('sup', 2), ('gt', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('broadband', 1), ('communication', 1), ('network', 1), ('system', 1), ('broadnets', 1), ('took', 1), ('place', 1), ('qingdao', 1), ('china', 1), ('december', 1)]
[('algebraic', 2), ('quantum', 2), ('lt', 1), ('div', 1), ('gt', 1), ('book', 1), ('offer', 1), ('structured', 1), ('geometric', 1), ('approach', 1), ('classification', 1), ('construction', 1), ('code', 1), ('topological', 1), ('computation', 1), ('combine', 1), ('key', 1), ('concept', 1), ('linear', 1), ('algebra', 1), ('topology', 1), ('hyperbolic', 1)]
[('speech', 3), ('book', 1), ('present', 1), ('summary', 1), ('cognitively', 1), ('inspired', 1), ('basis', 1), ('behind', 1), ('multimodal', 1), ('enhancement', 1), ('covering', 1), ('relationship', 1), ('audio', 1), ('visual', 1), ('modality', 1), ('recent', 1), ('research', 1), ('audiovisual', 1)]
[('lt', 1), ('gt', 1), ('emergence', 1), ('intelligent', 1), ('technology', 1), ('sophisticated', 1), ('natural', 1), ('language', 1), ('processing', 1), ('methodology', 1), ('huge', 1), ('textual', 1), ('repository', 1), ('invite', 1), ('new', 1), ('approach', 1), ('challenge', 1), ('automatically', 1), ('identifying', 1), ('personality', 1), ('dimension', 1)]
[('technology', 2), ('lt', 1), ('gt', 1), ('book', 1), ('present', 1), ('timely', 1), ('description', 1), ('currently', 1), ('used', 1), ('proposed', 1), ('involve', 1), ('intelligent', 1), ('transport', 1), ('system', 1), ('assist', 1), ('manager', 1), ('large', 1), ('city', 1), ('describes', 1), ('concept', 1), ('address', 1)]
[('automatic', 2), ('lt', 1), ('div', 1), ('gt', 1), ('book', 1), ('describes', 1), ('method', 1), ('tool', 1), ('empower', 1), ('information', 1), ('provider', 1), ('build', 1), ('maintain', 1), ('knowledge', 1), ('graph', 1), ('including', 1), ('manual', 1), ('semi', 1), ('construction', 1), ('implementation', 1), ('validation', 1), ('verification', 1)]
[('lt', 3), ('gt', 3), ('book', 2), ('introduction', 1), ('graph', 1), ('transformation', 1), ('foundation', 1), ('model', 1), ('based', 1), ('software', 1), ('engineering', 1), ('level', 1), ('individual', 1), ('system', 1), ('domain', 1), ('specific', 1), ('modelling', 1), ('language', 1), ('first', 1), ('part', 1)]
[('lt', 3), ('gt', 3), ('jckbse', 2), ('book', 1), ('summarizes', 1), ('research', 1), ('finding', 1), ('presented', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('knowledge', 1), ('based', 1), ('software', 1), ('engineering', 1), ('took', 1), ('place', 1), ('august', 1), ('originally', 1)]
[('distributed', 2), ('lt', 1), ('gt', 1), ('book', 1), ('present', 1), ('important', 1), ('fault', 1), ('tolerant', 1), ('programming', 1), ('abstraction', 1), ('associated', 1), ('algorithm', 1), ('particular', 1), ('term', 1), ('reliable', 1), ('communication', 1), ('agreement', 1), ('lie', 1), ('heart', 1), ('nearly', 1)]
[('dsfsgsf', 1)]
[('lt', 1), ('div', 1), ('gt', 1), ('book', 1), ('provides', 1), ('insight', 1), ('smart', 1), ('way', 1), ('computer', 1), ('log', 1), ('data', 1), ('analysis', 1), ('goal', 1), ('spotting', 1), ('adversarial', 1), ('action', 1), ('organized', 1), ('major', 1), ('part', 1), ('total', 1), ('chapter', 1), ('include', 1), ('detailed', 1), ('view', 1), ('existing', 1), ('solution', 1)]
[('data', 2), ('source', 2), ('million', 1), ('searchable', 1), ('web', 1), ('large', 1), ('extent', 1), ('content', 1), ('reached', 1), ('query', 1), ('interface', 1), ('enormous', 1), ('interest', 1), ('making', 1), ('easily', 1), ('accessible', 1)]
[('design', 4), ('user', 3), ('interaction', 2), ('need', 2), ('human', 1), ('computer', 1), ('hci', 1), ('address', 1), ('problem', 1), ('understanding', 1), ('inform', 1), ('delivering', 1), ('novel', 1), ('meet', 1), ('evaluating', 1), ('new', 1), ('existing', 1), ('determine', 1), ('success', 1), ('meeting', 1)]
[('collection', 3), ('purpose', 2), ('property', 2), ('policy', 1), ('based', 1), ('data', 1), ('management', 1), ('enables', 1), ('creation', 1), ('community', 1), ('specific', 1), ('every', 1), ('created', 1), ('defines', 1), ('set', 1), ('associated', 1), ('enforced', 1)]
[('field', 3), ('multiagent', 1), ('system', 1), ('expanding', 1), ('blend', 1), ('classical', 1), ('game', 1), ('theory', 1), ('decentralized', 1), ('control', 1), ('modern', 1), ('computer', 1), ('science', 1), ('machine', 1), ('learning', 1), ('monograph', 1), ('provides', 1), ('concise', 1), ('introduction', 1), ('subject', 1), ('covering', 1)]
[('labeled', 2), ('data', 2), ('expensive', 1), ('prepare', 1), ('increasing', 1), ('amount', 1), ('unlabeled', 1), ('becoming', 1), ('widely', 1), ('available', 1), ('order', 1), ('adapt', 1), ('phenomenon', 1), ('several', 1), ('semi', 1), ('supervised', 1), ('learning', 1), ('ssl', 1), ('algorithm', 1), ('learn', 1)]
[('network', 3), ('web', 1), ('look', 1), ('find', 1), ('pattern', 1), ('community', 1), ('outlier', 1), ('social', 1), ('central', 1), ('node', 1), ('question', 1), ('motivate', 1), ('work', 1), ('graph', 1), ('appear', 1), ('many', 1), ('diverse', 1), ('setting', 1)]
[('knowledge', 2), ('lt', 1), ('gt', 1), ('book', 1), ('provides', 1), ('hand', 1), ('introduction', 1), ('runtime', 1), ('verification', 1), ('guide', 1), ('reader', 1), ('zero', 1), ('sufficient', 1), ('practical', 1), ('required', 1), ('consider', 1), ('apply', 1), ('industry', 1), ('start', 1), ('almost', 1), ('assumption', 1)]
[('search', 3), ('perspective', 3), ('engine', 2), ('lt', 1), ('gt', 1), ('book', 1), ('provides', 1), ('broad', 1), ('introduction', 1), ('integrating', 1), ('five', 1), ('different', 1), ('web', 1), ('usually', 1), ('dealt', 1), ('separately', 1), ('technical', 1), ('user', 1)]
[('thistimely', 1), ('authoritative', 1), ('volume', 1), ('explores', 1), ('bidirectional', 1), ('relationship', 1), ('betweenimages', 1), ('location', 1), ('text', 1), ('present', 1), ('comprehensive', 1), ('review', 1), ('state', 1), ('ofthe', 1), ('art', 1), ('large', 1), ('scale', 1), ('visual', 1), ('geo', 1), ('localization', 1), ('discus', 1), ('emergingtrends', 1)]
[('lt', 1), ('gt', 1), ('book', 1), ('illustrate', 1), ('impact', 1), ('collaboration', 1), ('mathematics', 1), ('industry', 1), ('initiative', 1), ('coordinated', 1), ('german', 1), ('committee', 1), ('mathematical', 1), ('modeling', 1), ('simulation', 1), ('optimization', 1), ('komso', 1)]
[('interference', 3), ('coordination', 2), ('technique', 2), ('lt', 1), ('gt', 1), ('springerbrief', 1), ('present', 1), ('future', 1), ('cellular', 1), ('network', 1), ('starting', 1), ('overview', 1), ('existing', 1), ('management', 1), ('focus', 1), ('practical', 1), ('scheme', 1), ('based', 1)]
[('lt', 3), ('gt', 3), ('conference', 2), ('sup', 2), ('volume', 1), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('communication', 1), ('networking', 1), ('chinacom', 1), ('held', 1), ('chongqing', 1), ('china', 1), ('september', 1)]
[('book', 1), ('present', 1), ('basic', 1), ('laser', 1), ('assisted', 1), ('oxygen', 1), ('lasox', 1), ('cutting', 1), ('process', 1), ('development', 1), ('advantage', 1), ('shortcoming', 1), ('together', 1), ('detailed', 1), ('information', 1), ('research', 1), ('work', 1), ('carried', 1), ('date', 1), ('regarding', 1), ('modelling', 1), ('optimization', 1)]
[('computer', 2), ('book', 1), ('provides', 1), ('bottom', 1), ('approach', 1), ('understanding', 1), ('work', 1), ('use', 1), ('computing', 1), ('solve', 1), ('real', 1), ('world', 1), ('problem', 1), ('amp', 1), ('nbsp', 1), ('cover', 1), ('basic', 1), ('digital', 1), ('logic', 1), ('lens', 1), ('organization', 1)]
[('lt', 2), ('gt', 2), ('id', 2), ('div', 1), ('book', 1), ('introduces', 1), ('reader', 1), ('principle', 1), ('intelligent', 1), ('decision', 1), ('support', 1), ('system', 1), ('build', 1), ('minizinc', 1), ('free', 1), ('open', 1), ('source', 1), ('constraint', 1), ('programming', 1), ('language', 1), ('managing', 1), ('project', 1), ('requires', 1)]
[('lt', 1), ('gt', 1), ('book', 1), ('present', 1), ('main', 1), ('theoretical', 1), ('foundation', 1), ('behind', 1), ('smart', 1), ('service', 1), ('specific', 1), ('guideline', 1), ('practically', 1), ('proven', 1), ('method', 1), ('design', 1), ('furthermore', 1), ('give', 1), ('overview', 1), ('possible', 1), ('implementation', 1), ('architecture', 1)]
[('lecture', 2), ('series', 2), ('blockchain', 2), ('robotic', 2), ('process', 2), ('automation', 2), ('lt', 1), ('gt', 1), ('book', 1), ('integrates', 1), ('material', 1), ('offered', 1), ('kiel', 1), ('university', 1), ('shed', 1), ('light', 1), ('current', 1), ('research', 1), ('topic', 1), ('rpa', 1)]
[('face', 4), ('system', 3), ('recognition', 2), ('lt', 1), ('gt', 1), ('last', 1), ('ten', 1), ('year', 1), ('biometric', 1), ('research', 1), ('intensively', 1), ('studied', 1), ('computer', 1), ('vision', 1), ('community', 1), ('used', 1), ('mobile', 1), ('banking', 1), ('surveillance', 1)]
[('information', 2), ('proliferation', 1), ('citizen', 1), ('reporting', 1), ('smart', 1), ('mobile', 1), ('device', 1), ('social', 1), ('medium', 1), ('increasing', 1), ('number', 1), ('beginning', 1), ('generate', 1), ('event', 1), ('observe', 1), ('participate', 1), ('significant', 1), ('fraction', 1)]
[('lt', 1), ('gt', 1), ('museum', 1), ('domain', 1), ('study', 1), ('design', 1), ('intervention', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hci', 1), ('several', 1), ('decade', 1), ('resource', 1), ('providing', 1), ('overview', 1), ('key', 1), ('issue', 1), ('scholarship', 1), ('produced', 1), ('field', 1)]
[('public', 2), ('health', 2), ('social', 2), ('lt', 1), ('gt', 1), ('thrives', 1), ('high', 1), ('quality', 1), ('evidence', 1), ('yet', 1), ('acquiring', 1), ('meaningful', 1), ('data', 1), ('population', 1), ('remains', 1), ('central', 1), ('challenge', 1), ('research', 1), ('practice', 1), ('monitoring', 1), ('analysis', 1), ('medium', 1), ('user', 1), ('generated', 1), ('web', 1)]
[('network', 3), ('traditional', 1), ('optimization', 1), ('focus', 1), ('single', 1), ('control', 1), ('objective', 1), ('populated', 1), ('obedient', 1), ('user', 1), ('limited', 1), ('dispersion', 1), ('information', 1), ('today', 1), ('large', 1), ('scale', 1), ('lack', 1), ('access', 1), ('centralized', 1)]
[('data', 2), ('unstructured', 1), ('text', 1), ('important', 1), ('form', 1), ('play', 1), ('crucial', 1), ('role', 1), ('driven', 1), ('decision', 1), ('making', 1), ('domain', 1), ('ranging', 1), ('social', 1), ('networking', 1), ('information', 1), ('retrieval', 1), ('scientific', 1), ('research', 1), ('healthcare', 1), ('informatics', 1), ('many', 1), ('emerging', 1)]
[('quorum', 4), ('system', 2), ('collection', 1), ('subset', 1), ('node', 1), ('called', 1), ('property', 1), ('pair', 1), ('non', 1), ('empty', 1), ('intersection', 1), ('key', 1), ('mathematical', 1), ('abstraction', 1), ('ensuring', 1), ('consistency', 1), ('fault', 1), ('tolerant', 1)]
[('study', 1), ('computed', 1), ('team', 1), ('autonomous', 1), ('mobile', 1), ('robot', 1), ('originally', 1), ('started', 1), ('robotics', 1), ('ai', 1), ('become', 1), ('increasingly', 1), ('popular', 1), ('theoretical', 1), ('computer', 1), ('science', 1), ('especially', 1), ('distributed', 1), ('computing', 1), ('integral', 1), ('part', 1)]
[('lt', 2), ('gt', 2), ('decision', 2), ('div', 1), ('development', 1), ('intelligent', 1), ('system', 1), ('take', 1), ('perform', 1), ('autonomously', 1), ('might', 1), ('lead', 1), ('faster', 1), ('consistent', 1), ('limiting', 1), ('factor', 1), ('broader', 1), ('adoption', 1), ('ai', 1), ('technology', 1), ('inherent', 1), ('risk', 1)]
[('european', 3), ('ai', 3), ('lt', 1), ('gt', 1), ('th', 1), ('advanced', 1), ('course', 1), ('acai', 1), ('took', 1), ('place', 1), ('berlin', 1), ('october', 1), ('organized', 1), ('project', 1), ('humane', 1), ('net', 1), ('collaboration', 1), ('association', 1), ('eurai', 1), ('school', 1), ('included', 1), ('tutorial', 1)]
[('problem', 2), ('case', 2), ('monograph', 1), ('provides', 1), ('concise', 1), ('overview', 1), ('main', 1), ('theoretical', 1), ('numerical', 1), ('tool', 1), ('solve', 1), ('homogenization', 1), ('solid', 1), ('finite', 1), ('element', 1), ('starting', 1), ('simple', 1), ('linear', 1), ('thermal', 1), ('progressively', 1), ('complexified', 1)]
[('lt', 3), ('gt', 3), ('program', 2), ('software', 1), ('formal', 1), ('entity', 1), ('precise', 1), ('meaning', 1), ('independent', 1), ('programmer', 1), ('transition', 1), ('idea', 1), ('necessarily', 1), ('involves', 1), ('formalisation', 1), ('point', 1), ('first', 1), ('part', 1)]
[('problem', 3), ('online', 2), ('setting', 2), ('lt', 1), ('gt', 1), ('textbook', 1), ('explains', 1), ('computation', 1), ('different', 1), ('particular', 1), ('emphasis', 1), ('randomization', 1), ('advice', 1), ('complexity', 1), ('analyzed', 1), ('various', 1), ('paging', 1), ('server', 1)]
[('basic', 2), ('model', 2), ('lt', 1), ('gt', 1), ('book', 1), ('present', 1), ('form', 1), ('important', 1), ('computation', 1), ('programming', 1), ('paradigm', 1), ('mathematical', 1), ('description', 1), ('concrete', 1), ('abstract', 1), ('accompanied', 1), ('relevant', 1), ('formal', 1), ('technique', 1)]
[('social', 2), ('textbook', 1), ('provides', 1), ('comprehensive', 1), ('reader', 1), ('friendly', 1), ('introduction', 1), ('field', 1), ('computational', 1), ('science', 1), ('cs', 1), ('presenting', 1), ('unified', 1), ('treatment', 1), ('text', 1), ('examines', 1), ('detail', 1), ('four', 1), ('key', 1), ('methodological', 1), ('approach', 1), ('automated', 1)]
[('framework', 2), ('lt', 1), ('gt', 1), ('book', 1), ('equips', 1), ('reader', 1), ('handle', 1), ('complex', 1), ('multi', 1), ('view', 1), ('data', 1), ('representation', 1), ('centered', 1), ('around', 1), ('several', 1), ('major', 1), ('visual', 1), ('application', 1), ('sharing', 1), ('many', 1), ('tip', 1), ('insight', 1), ('unified', 1), ('learning', 1), ('able', 1), ('model', 1)]
[('part', 3), ('first', 2), ('lt', 1), ('gt', 1), ('easy', 1), ('follow', 1), ('textbook', 1), ('teach', 1), ('java', 1), ('programming', 1), ('principle', 1), ('covering', 1), ('design', 1), ('testing', 1), ('methodology', 1), ('text', 1), ('divided', 1), ('support', 1), ('semester', 1), ('module', 1), ('addressing', 1)]
[('decision', 2), ('many', 2), ('inspired', 1), ('reflection', 1), ('thinker', 1), ('ancient', 1), ('time', 1), ('rapid', 1), ('development', 1), ('science', 1), ('society', 1), ('appropriate', 1), ('dynamic', 1), ('making', 1), ('playing', 1), ('increasingly', 1), ('important', 1), ('role', 1), ('area', 1), ('human', 1), ('activity', 1)]
[('lt', 1), ('gt', 1), ('book', 1), ('review', 1), ('state', 1), ('art', 1), ('development', 1), ('nature', 1), ('inspired', 1), ('algorithm', 1), ('application', 1), ('various', 1), ('discipline', 1), ('ranging', 1), ('feature', 1), ('selection', 1), ('engineering', 1), ('design', 1), ('optimization', 1), ('scheduling', 1), ('vehicle', 1), ('routing', 1)]
[('data', 2), ('project', 2), ('lt', 1), ('gt', 1), ('making', 1), ('use', 1), ('anymore', 1), ('niche', 1), ('central', 1), ('almost', 1), ('every', 1), ('access', 1), ('massive', 1), ('compute', 1), ('resource', 1), ('vast', 1), ('amount', 1), ('seems', 1), ('least', 1), ('principle', 1), ('possible', 1), ('solve', 1), ('problem', 1), ('successful', 1)]
[('lt', 5), ('gt', 5), ('div', 4), ('br', 1), ('describe', 1), ('book', 1), ('recent', 1), ('development', 1), ('fuzzy', 1), ('logic', 1), ('neural', 1), ('network', 1), ('optimization', 1), ('algorithm', 1), ('hybrid', 1), ('combination', 1), ('application', 1), ('area', 1)]
[('international', 2), ('lt', 1), ('gt', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('six', 1), ('workshop', 1), ('held', 1), ('parallel', 1), ('event', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('application', 1), ('innovation', 1), ('aiai', 1), ('virtually', 1)]
[('lt', 1), ('div', 1), ('gt', 1), ('textbook', 1), ('provides', 1), ('clear', 1), ('logical', 1), ('introduction', 1), ('field', 1), ('covering', 1), ('fundamental', 1), ('concept', 1), ('algorithm', 1), ('practical', 1), ('implementation', 1), ('behind', 1), ('effort', 1), ('develop', 1), ('system', 1), ('exhibit', 1), ('intelligent', 1), ('behavior', 1), ('amp', 1), ('nbsp', 1), ('complex', 1)]
[('lt', 1), ('gt', 1), ('stimulating', 1), ('textbook', 1), ('present', 1), ('broad', 1), ('accessible', 1), ('guide', 1), ('fundamental', 1), ('discrete', 1), ('mathematics', 1), ('highlighting', 1), ('technique', 1), ('applied', 1), ('various', 1), ('exciting', 1), ('area', 1), ('computing', 1), ('text', 1), ('designed', 1), ('motivate', 1)]
[('lt', 5), ('gt', 5), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('ifip', 1), ('wg', 1), ('working', 1), ('conference', 1), ('virtual', 1), ('enterprise', 1), ('pro', 1), ('held', 1), ('saint', 1), ('étienne', 1), ('virtually', 1), ('november', 1), ('paper', 1)]
[('book', 1), ('describes', 1), ('new', 1), ('theory', 1), ('application', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('special', 1), ('focus', 1), ('answering', 1), ('question', 1), ('neuroscience', 1), ('biology', 1), ('biophysics', 1), ('cognitive', 1), ('research', 1), ('cover', 1), ('wide', 1), ('range', 1), ('method', 1), ('technology', 1)]
[('lt', 3), ('gt', 3), ('systematic', 2), ('problem', 2), ('solving', 2), ('textbook', 1), ('reasoning', 1), ('using', 1), ('type', 1), ('driven', 1), ('design', 1), ('technique', 1), ('emphasized', 1), ('throughout', 1), ('book', 1), ('divide', 1), ('conquer', 1)]
[('artificial', 2), ('learning', 2), ('algorithm', 2), ('lt', 1), ('gt', 1), ('book', 1), ('present', 1), ('explainable', 1), ('intelligence', 1), ('xai', 1), ('going', 1), ('replace', 1), ('traditional', 1), ('machine', 1), ('deep', 1), ('work', 1), ('black', 1), ('box', 1), ('today', 1), ('understand', 1), ('better', 1)]
[('book', 1), ('address', 1), ('process', 1), ('maintaining', 1), ('digital', 1), ('object', 1), ('time', 1), ('ensure', 1), ('continued', 1), ('access', 1), ('aspect', 1), ('become', 1), ('crucial', 1), ('issue', 1), ('recent', 1), ('year', 1), ('offers', 1), ('concise', 1), ('yet', 1), ('comprehensive', 1), ('discussion', 1), ('key', 1), ('concept', 1), ('requirement', 1)]
[('optimization', 2), ('amp', 2), ('nbsp', 2), ('search', 2), ('space', 2), ('lt', 1), ('gt', 1), ('manifold', 1), ('emerging', 1), ('field', 1), ('contemporary', 1), ('construct', 1), ('efficient', 1), ('robust', 1), ('algorithm', 1), ('exploiting', 1), ('specific', 1), ('geometrical', 1), ('structure', 1), ('case', 1)]
[('lt', 1), ('div', 1), ('gt', 1), ('volume', 1), ('gather', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('presented', 1), ('th', 1), ('edition', 1), ('international', 1), ('workshop', 1), ('service', 1), ('oriented', 1), ('holonic', 1), ('multi', 1), ('agent', 1), ('manufacturing', 1), ('system', 1), ('industry', 1), ('future', 1), ('sohoma', 1), ('organized', 1)]
[('lt', 1), ('gt', 1), ('book', 1), ('take', 1), ('forward', 1), ('looking', 1), ('approach', 1), ('bringing', 1), ('research', 1), ('contribution', 1), ('facilitate', 1), ('mapping', 1), ('impact', 1), ('ai', 1), ('big', 1), ('data', 1), ('business', 1), ('nature', 1), ('work', 1), ('along', 1), ('providing', 1), ('practical', 1), ('solution', 1), ('preparing', 1)]
[('lt', 1), ('gt', 1), ('springer', 1), ('book', 1), ('provides', 1), ('perfect', 1), ('platform', 1), ('submit', 1), ('chapter', 1), ('discus', 1), ('prospective', 1), ('development', 1), ('innovative', 1), ('idea', 1), ('artificial', 1), ('intelligence', 1), ('machine', 1), ('learning', 1), ('technique', 1), ('diagnosis', 1)]
[('amp', 2), ('nbsp', 2), ('lt', 1), ('div', 1), ('gt', 1), ('modern', 1), ('self', 1), ('contained', 1), ('textbook', 1), ('provides', 1), ('accessible', 1), ('introduction', 1), ('field', 1), ('perspective', 1), ('practicing', 1), ('programmer', 1), ('supporting', 1), ('detailed', 1), ('presentation', 1), ('fundamental', 1), ('concept', 1), ('technique', 1)]
[('amp', 3), ('nbsp', 3), ('lt', 2), ('div', 2), ('gt', 2), ('modern', 1), ('ai', 1), ('technique', 1), ('especially', 1), ('deep', 1), ('learning', 1), ('provide', 1), ('many', 1), ('case', 1), ('good', 1), ('recommendation', 1), ('self', 1), ('driving', 1), ('car', 1), ('go', 1), ('whether', 1), ('give', 1), ('company', 1), ('loan', 1), ('etc', 1), ('problem', 1)]
[('lt', 1), ('gt', 1), ('recent', 1), ('book', 1), ('series', 1), ('continues', 1), ('collection', 1), ('article', 1), ('dealing', 1), ('important', 1), ('efficient', 1), ('combination', 1), ('traditional', 1), ('novel', 1), ('mathematical', 1), ('approach', 1), ('various', 1), ('computational', 1), ('intelligence', 1), ('technique', 1), ('stress', 1)]
[('problem', 2), ('lt', 1), ('gt', 1), ('textbook', 1), ('present', 1), ('systematic', 1), ('methodology', 1), ('program', 1), ('development', 1), ('using', 1), ('design', 1), ('recipe', 1), ('series', 1), ('step', 1), ('specific', 1), ('outcome', 1), ('take', 1), ('solver', 1), ('statement', 1), ('working', 1), ('tested', 1), ('programmed', 1)]
[('lt', 1), ('gt', 1), ('esoteric', 1), ('idea', 1), ('embedding', 1), ('scientific', 1), ('computing', 1), ('probabilistic', 1), ('framework', 1), ('mostly', 1), ('along', 1), ('line', 1), ('bayesian', 1), ('paradigm', 1), ('recently', 1), ('enjoyed', 1), ('wide', 1), ('popularity', 1), ('found', 1), ('way', 1), ('numerous', 1), ('application', 1), ('amp', 1), ('nbsp', 1)]
[('power', 2), ('system', 2), ('lt', 1), ('gt', 1), ('book', 1), ('present', 1), ('comprehensive', 1), ('set', 1), ('guideline', 1), ('application', 1), ('digsilent', 1), ('powerfactory', 1), ('advanced', 1), ('simulation', 1), ('software', 1), ('package', 1), ('different', 1), ('type', 1), ('study', 1), ('written', 1), ('specialist', 1), ('field', 1)]
[('book', 2), ('feature', 2), ('research', 2), ('cyber', 2), ('warfare', 2), ('wide', 1), ('spectrum', 1), ('latest', 1), ('computer', 1), ('science', 1), ('relating', 1), ('including', 1), ('military', 1), ('policy', 1), ('dimension', 1), ('first', 1), ('explore', 1), ('scientific', 1), ('foundation', 1)]
[('statistical', 3), ('lt', 2), ('gt', 2), ('learning', 2), ('div', 1), ('textbook', 1), ('provides', 1), ('accessible', 1), ('overview', 1), ('method', 1), ('technique', 1), ('includes', 1), ('case', 1), ('study', 1), ('using', 1), ('software', 1), ('stata', 1), ('introductory', 1), ('material', 1), ('concept', 1)]
[('cloud', 3), ('practically', 1), ('focused', 1), ('reference', 1), ('present', 1), ('comprehensive', 1), ('overview', 1), ('state', 1), ('art', 1), ('computing', 1), ('examines', 1), ('potential', 1), ('future', 1), ('related', 1), ('technology', 1), ('address', 1), ('specific', 1), ('industrial', 1), ('research', 1), ('challenge', 1)]
[('deception', 2), ('lt', 1), ('gt', 1), ('book', 1), ('present', 1), ('first', 1), ('reference', 1), ('exposition', 1), ('cyber', 1), ('chain', 1), ('flexible', 1), ('planning', 1), ('execution', 1), ('framework', 1), ('creating', 1), ('tactical', 1), ('operational', 1), ('strategic', 1), ('methodology', 1), ('bridge', 1), ('gap', 1), ('current', 1)]
[('method', 2), ('book', 1), ('critically', 1), ('reflects', 1), ('current', 1), ('statistical', 1), ('used', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hci', 1), ('introduces', 1), ('number', 1), ('novel', 1), ('reader', 1), ('lt', 1), ('gt', 1), ('covering', 1), ('many', 1), ('technique', 1), ('approach', 1), ('exploratory', 1), ('data', 1), ('analysis', 1), ('including', 1)]
[('cyber', 4), ('operation', 2), ('medium', 2), ('book', 1), ('explores', 1), ('future', 1), ('technology', 1), ('influence', 1), ('advance', 1), ('social', 1), ('security', 1), ('physical', 1), ('system', 1), ('ethic', 1), ('law', 1), ('economics', 1), ('infrastructure', 1), ('military', 1), ('element', 1)]
[('robust', 2), ('lt', 1), ('div', 1), ('gt', 1), ('book', 1), ('review', 1), ('state', 1), ('art', 1), ('deep', 1), ('learning', 1), ('approach', 1), ('high', 1), ('performance', 1), ('disease', 1), ('detection', 1), ('accurate', 1), ('organ', 1), ('segmentation', 1), ('medical', 1), ('image', 1), ('computing', 1), ('radiological', 1), ('pathological', 1), ('imaging', 1), ('modality', 1)]
[('lt', 3), ('gt', 3), ('data', 3), ('sql', 2), ('textbook', 1), ('explains', 1), ('within', 1), ('context', 1), ('science', 1), ('introduces', 1), ('different', 1), ('part', 1), ('needed', 1), ('task', 1), ('usually', 1), ('carried', 1), ('analysis', 1), ('using', 1), ('framework', 1), ('life', 1)]
[('textbook', 1), ('present', 1), ('concise', 1), ('introduction', 1), ('fundamental', 1), ('principle', 1), ('software', 1), ('engineering', 1), ('together', 1), ('practical', 1), ('guidance', 1), ('apply', 1), ('theory', 1), ('real', 1), ('world', 1), ('industrial', 1), ('environment', 1), ('wide', 1), ('ranging', 1), ('coverage', 1), ('encompasses', 1)]
[('lt', 1), ('gt', 1), ('handbook', 1), ('aim', 1), ('serve', 1), ('stop', 1), ('reliable', 1), ('source', 1), ('reference', 1), ('curations', 1), ('survey', 1), ('expository', 1), ('contribution', 1), ('state', 1), ('art', 1), ('blockchain', 1), ('technology', 1), ('cover', 1), ('comprehensive', 1), ('range', 1), ('topic', 1), ('providing', 1)]
[('lt', 3), ('gt', 3), ('privacy', 3), ('div', 2), ('data', 2), ('technology', 2), ('essential', 1), ('implementing', 1), ('information', 1), ('system', 1), ('design', 1), ('clearly', 1), ('needed', 1), ('ensuring', 1), ('lead', 1), ('disclosure', 1)]
[('lt', 3), ('gt', 3), ('textbook', 1), ('present', 1), ('focused', 1), ('accessible', 1), ('primer', 1), ('fundamental', 1), ('java', 1), ('programming', 1), ('extensive', 1), ('use', 1), ('illustrative', 1), ('example', 1), ('hand', 1), ('exercise', 1), ('addressing', 1), ('need', 1), ('acquire', 1), ('good', 1), ('working', 1), ('model', 1)]
[('lt', 4), ('gt', 4), ('pipelined', 3), ('div', 3), ('implementation', 2), ('amp', 2), ('nbsp', 2), ('book', 1), ('present', 1), ('succession', 1), ('risc', 1), ('processor', 1), ('increasing', 1), ('difficulty', 1), ('non', 1), ('deeply', 1), ('multithreaded', 1), ('multicore', 1), ('br', 1)]
[('lt', 1), ('gt', 1), ('basic', 1), ('understanding', 1), ('key', 1), ('technique', 1), ('computer', 1), ('graphic', 1), ('open', 1), ('door', 1), ('exciting', 1), ('field', 1), ('many', 1), ('application', 1), ('including', 1), ('video', 1), ('game', 1), ('augmented', 1), ('virtual', 1)]
[('lt', 3), ('gt', 3), ('textbook', 1), ('highlight', 1), ('essential', 1), ('need', 1), ('strong', 1), ('ethical', 1), ('framework', 1), ('approach', 1), ('teaching', 1), ('working', 1), ('computer', 1), ('information', 1), ('engineering', 1), ('science', 1), ('thought', 1), ('provoking', 1), ('question', 1), ('case', 1)]
[('lt', 1), ('gt', 1), ('easy', 1), ('understand', 1), ('textbook', 1), ('introduces', 1), ('mathematical', 1), ('language', 1), ('problem', 1), ('solving', 1), ('tool', 1), ('essential', 1), ('anyone', 1), ('wishing', 1), ('enter', 1), ('world', 1), ('computer', 1), ('information', 1), ('science', 1), ('specifically', 1), ('designed', 1), ('student', 1), ('intimidated', 1)]
[('lt', 1), ('gt', 1), ('easy', 1), ('follow', 1), ('textbook', 1), ('present', 1), ('engaging', 1), ('introduction', 1), ('fascinating', 1), ('world', 1), ('medical', 1), ('image', 1), ('analysis', 1), ('avoiding', 1), ('overly', 1), ('mathematical', 1), ('treatment', 1), ('text', 1), ('focus', 1), ('intuitive', 1), ('explanation', 1), ('illustrating', 1), ('key', 1), ('algorithm', 1)]
[('database', 3), ('transaction', 2), ('lt', 1), ('gt', 1), ('concept', 1), ('related', 1), ('logical', 1), ('seen', 1), ('perspective', 1), ('application', 1), ('programmer', 1), ('sequence', 1), ('action', 1), ('executed', 1), ('atomic', 1), ('unit', 1), ('work', 1), ('processing', 1)]
[('lt', 1), ('div', 1), ('gt', 1), ('introductory', 1), ('textbook', 1), ('author', 1), ('explains', 1), ('key', 1), ('topic', 1), ('cryptography', 1), ('take', 1), ('modern', 1), ('approach', 1), ('defining', 1), ('meant', 1), ('secure', 1), ('important', 1), ('creating', 1), ('something', 1), ('achieves', 1), ('goal', 1), ('security', 1)]
[('lt', 1), ('gt', 1), ('gentle', 1), ('introduction', 1), ('high', 1), ('performance', 1), ('computing', 1), ('hpc', 1), ('data', 1), ('science', 1), ('using', 1), ('message', 1), ('passing', 1), ('interface', 1), ('mpi', 1), ('standard', 1), ('designed', 1), ('first', 1), ('course', 1), ('undergraduate', 1), ('parallel', 1), ('programming', 1), ('distributed', 1), ('memory', 1)]
[('computing', 2), ('lt', 1), ('gt', 1), ('tracing', 1), ('story', 1), ('babylonian', 1), ('counting', 1), ('board', 1), ('smartphones', 1), ('inspiring', 1), ('textbook', 1), ('provides', 1), ('concise', 1), ('overview', 1), ('key', 1), ('event', 1), ('history', 1), ('together', 1), ('discussion', 1), ('exercise', 1), ('stimulate', 1), ('deeper', 1)]
[('formal', 2), ('method', 2), ('lt', 2), ('gt', 2), ('invaluable', 1), ('textbook', 1), ('reference', 1), ('provides', 1), ('easy', 1), ('guide', 1), ('fundamental', 1), ('highlighting', 1), ('rich', 1), ('application', 1), ('across', 1), ('diverse', 1), ('range', 1), ('area', 1), ('computing', 1), ('topic', 1), ('feature', 1)]
[('data', 3), ('analytics', 2), ('science', 2), ('lt', 1), ('gt', 1), ('book', 1), ('explores', 1), ('emerging', 1), ('research', 1), ('pedagogy', 1), ('become', 1), ('core', 1), ('many', 1), ('business', 1), ('work', 1), ('derive', 1), ('value', 1), ('chapter', 1), ('examine', 1), ('role', 1), ('create', 1)]
[('programming', 2), ('lt', 1), ('gt', 1), ('clearly', 1), ('written', 1), ('textbook', 1), ('provides', 1), ('accessible', 1), ('introduction', 1), ('three', 1), ('paradigm', 1), ('object', 1), ('oriented', 1), ('imperative', 1), ('functional', 1), ('logic', 1), ('highly', 1), ('interactive', 1), ('style', 1), ('text', 1), ('encourages', 1), ('learning', 1)]
[('data', 2), ('structure', 2), ('accessible', 1), ('engaging', 1), ('textbook', 1), ('guide', 1), ('provides', 1), ('concise', 1), ('introduction', 1), ('associated', 1), ('algorithm', 1), ('emphasis', 1), ('placed', 1), ('fundamental', 1), ('enabling', 1), ('reader', 1), ('quickly', 1), ('learn', 1), ('key', 1), ('concept', 1)]
[('lt', 2), ('gt', 2), ('div', 1), ('textbook', 1), ('provides', 1), ('comprehensive', 1), ('holistic', 1), ('scientifically', 1), ('precise', 1), ('practically', 1), ('relevant', 1), ('description', 1), ('enterprise', 1), ('architecture', 1), ('management', 1), ('eam', 1), ('based', 1), ('state', 1), ('art', 1), ('concept', 1), ('address', 1), ('current', 1), ('trend', 1)]
[('data', 2), ('lt', 1), ('gt', 1), ('book', 1), ('explores', 1), ('emerging', 1), ('scientific', 1), ('technological', 1), ('area', 1), ('need', 1), ('analytics', 1), ('arises', 1), ('likely', 1), ('play', 1), ('significant', 1), ('role', 1), ('year', 1), ('come', 1), ('dawn', 1), ('th', 1), ('industrial', 1), ('revolution', 1)]
[('lt', 3), ('gt', 3), ('book', 1), ('present', 1), ('collection', 1), ('state', 1), ('art', 1), ('approach', 1), ('utilizing', 1), ('machine', 1), ('learning', 1), ('formal', 1), ('knowledge', 1), ('base', 1), ('rule', 1), ('set', 1), ('semantic', 1), ('reasoning', 1), ('detect', 1), ('attack', 1), ('communication', 1), ('network', 1), ('including', 1), ('iot', 1)]
[('lt', 1), ('div', 1), ('gt', 1), ('book', 1), ('cover', 1), ('domain', 1), ('significantly', 1), ('impacted', 1), ('growth', 1), ('soft', 1), ('computing', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('related', 1), ('application', 1), ('gaining', 1), ('attention', 1), ('device', 1), ('getting', 1), ('connected', 1), ('become', 1)]
[('ai', 2), ('world', 2), ('social', 2), ('lt', 1), ('gt', 1), ('artificial', 1), ('intelligence', 1), ('potential', 1), ('provide', 1), ('innovative', 1), ('solution', 1), ('various', 1), ('societal', 1), ('issue', 1), ('real', 1), ('challenge', 1), ('useful', 1), ('combating', 1), ('seemingly', 1), ('unsolvable', 1), ('crisis', 1), ('facing', 1), ('today', 1)]
[('risk', 2), ('understood', 2), ('lt', 1), ('gt', 1), ('cyber', 1), ('security', 1), ('greatest', 1), ('faced', 1), ('financial', 1), ('institution', 1), ('today', 1), ('managed', 1), ('decade', 1), ('longer', 1), ('commonly', 1), ('major', 1), ('london', 1), ('bank', 1), ('purchased', 1), ('first', 1), ('computer', 1)]
[('conference', 2), ('sustainable', 2), ('lt', 1), ('gt', 1), ('volume', 1), ('includes', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('design', 1), ('manufacturing', 1), ('sdm', 1), ('held', 1), ('bologna', 1), ('italy', 1), ('april', 1), ('covered', 1), ('wide', 1), ('range', 1), ('topic', 1), ('cutting', 1), ('edge', 1)]
[('smart', 2), ('university', 2), ('lt', 1), ('gt', 1), ('book', 1), ('present', 1), ('peer', 1), ('reviewed', 1), ('contribution', 1), ('various', 1), ('international', 1), ('research', 1), ('design', 1), ('development', 1), ('team', 1), ('emerging', 1), ('rapidly', 1), ('evolving', 1), ('area', 1), ('creatively', 1), ('integrates', 1), ('innovative', 1)]
[('system', 2), ('new', 1), ('interdisciplinary', 1), ('work', 1), ('present', 1), ('dynamic', 1), ('powerful', 1), ('approach', 1), ('enable', 1), ('analyst', 1), ('build', 1), ('simulation', 1), ('model', 1), ('social', 1), ('view', 1), ('toward', 1), ('enhancing', 1), ('decision', 1), ('making', 1), ('grounded', 1), ('feedback', 1), ('perspective', 1), ('complex', 1)]
[('social', 2), ('lt', 1), ('div', 1), ('gt', 1), ('machine', 1), ('type', 1), ('network', 1), ('connected', 1), ('interactive', 1), ('digital', 1), ('device', 1), ('made', 1), ('possible', 1), ('ubiquitous', 1), ('adoption', 1), ('technology', 1), ('internet', 1), ('smartphone', 1), ('medium', 1), ('write', 1), ('world', 1), ('wide', 1), ('web', 1), ('connecting', 1)]
[('series', 2), ('granular', 2), ('algorithm', 2), ('proposed', 2), ('lt', 1), ('gt', 1), ('book', 1), ('nature', 1), ('inspired', 1), ('based', 1), ('newtonian', 1), ('gravitational', 1), ('force', 1), ('method', 1), ('formation', 1), ('higher', 1), ('type', 1), ('information', 1), ('granule', 1), ('represented', 1)]
[('lt', 2), ('gt', 2), ('digitalization', 2), ('div', 1), ('book', 1), ('present', 1), ('rich', 1), ('compilation', 1), ('real', 1), ('world', 1), ('case', 1), ('goal', 1), ('share', 1), ('first', 1), ('hand', 1), ('insight', 1), ('respected', 1), ('organization', 1), ('make', 1), ('tangible', 1), ('virtually', 1), ('every', 1), ('economic', 1)]
[('enterprise', 2), ('governance', 2), ('information', 2), ('book', 1), ('integrates', 1), ('theoretical', 1), ('advance', 1), ('empirical', 1), ('data', 1), ('technology', 1), ('egit', 1), ('practical', 1), ('application', 1), ('based', 1), ('numerous', 1), ('case', 1), ('example', 1), ('third', 1), ('revised', 1), ('edition', 1)]
[('cyber', 2), ('lt', 1), ('gt', 1), ('book', 1), ('provides', 1), ('practical', 1), ('strategic', 1), ('perspective', 1), ('security', 1), ('corporation', 1), ('business', 1), ('leading', 1), ('expert', 1), ('industry', 1), ('politics', 1), ('research', 1), ('discus', 1), ('status', 1), ('quo', 1), ('future', 1), ('prospect', 1), ('corporate', 1)]
[('book', 2), ('business', 2), ('intelligence', 2), ('bi', 2), ('system', 2), ('lt', 1), ('gt', 1), ('examines', 1), ('managerial', 1), ('dimension', 1), ('develops', 1), ('set', 1), ('guideline', 1), ('value', 1), ('creation', 1), ('implementing', 1), ('technology', 1), ('particular', 1), ('look', 1)]
[('digital', 2), ('museum', 2), ('lt', 1), ('gt', 1), ('book', 1), ('explores', 1), ('culture', 1), ('transforming', 1), ('st', 1), ('century', 1), ('offering', 1), ('corpus', 1), ('new', 1), ('evidence', 1), ('reader', 1), ('explore', 1), ('author', 1), ('trace', 1), ('evolution', 1), ('audience', 1), ('fully', 1)]
[('metaheuristics', 2), ('problem', 2), ('lt', 1), ('gt', 1), ('book', 1), ('present', 1), ('novel', 1), ('original', 1), ('developed', 1), ('solve', 1), ('amp', 1), ('nbsp', 1), ('cost', 1), ('balanced', 1), ('traveling', 1), ('salesman', 1), ('taken', 1), ('account', 1), ('competition', 1), ('proposed', 1), ('mess', 1)]
[('technology', 2), ('artificial', 2), ('intelligence', 2), ('lt', 1), ('gt', 1), ('book', 1), ('includes', 1), ('recent', 1), ('research', 1), ('disruptive', 1), ('tech', 1), ('ethic', 1), ('due', 1), ('important', 1), ('advance', 1), ('big', 1), ('data', 1), ('internet', 1), ('thing', 1), ('bioinformatics', 1)]
[('lt', 1), ('gt', 1), ('book', 1), ('describes', 1), ('latest', 1), ('research', 1), ('accomplishment', 1), ('innovation', 1), ('vision', 1), ('field', 1), ('robotics', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('autonomous', 1), ('system', 1), ('ia', 1), ('held', 1), ('padua', 1), ('july', 1), ('leading', 1)]
[('lt', 1), ('gt', 1), ('book', 1), ('present', 1), ('new', 1), ('method', 1), ('approach', 1), ('real', 1), ('world', 1), ('problem', 1), ('exploratory', 1), ('research', 1), ('describes', 1), ('novel', 1), ('artificial', 1), ('intelligence', 1), ('application', 1), ('including', 1), ('deep', 1), ('learning', 1), ('neural', 1), ('network', 1), ('hybrid', 1)]
[('quantum', 4), ('computing', 2), ('lt', 1), ('gt', 1), ('book', 1), ('introduces', 1), ('fundamental', 1), ('theory', 1), ('illustrated', 1), ('code', 1), ('sample', 1), ('written', 1), ('specific', 1), ('programming', 1), ('language', 1), ('related', 1), ('development', 1), ('kit', 1), ('amp', 1), ('nbsp', 1), ('qc', 1)]
[('multi', 2), ('book', 1), ('spring', 1), ('multidisciplinary', 1), ('organizational', 1), ('sector', 1), ('conversation', 1), ('privacy', 1), ('ethical', 1), ('implication', 1), ('research', 1), ('human', 1), ('affair', 1), ('using', 1), ('big', 1), ('data', 1), ('need', 1), ('cultivate', 1), ('enlist', 1), ('public', 1), ('trust', 1)]
[('lt', 2), ('div', 2), ('gt', 2), ('group', 2), ('process', 2), ('volume', 1), ('introduces', 1), ('series', 1), ('different', 1), ('data', 1), ('driven', 1), ('computational', 1), ('method', 1), ('analyzing', 1), ('didactic', 1), ('tutorial', 1), ('based', 1), ('example', 1), ('central', 1), ('importance', 1), ('many', 1), ('sector', 1), ('society', 1)]
[('healthcare', 2), ('lt', 1), ('gt', 1), ('comprehensive', 1), ('book', 1), ('focus', 1), ('better', 1), ('big', 1), ('data', 1), ('security', 1), ('organization', 1), ('following', 1), ('extensive', 1), ('introduction', 1), ('internet', 1), ('thing', 1), ('iot', 1), ('including', 1), ('challenging', 1), ('topic', 1), ('scenario', 1), ('offer', 1), ('depth', 1)]
[('blockchain', 2), ('deep', 2), ('learning', 2), ('lt', 1), ('gt', 1), ('book', 1), ('introduces', 1), ('explores', 1), ('illustrates', 1), ('current', 1), ('new', 1), ('trend', 1), ('integrate', 1), ('pace', 1), ('speed', 1), ('connectivity', 1), ('certain', 1), ('ascend', 1), ('twin', 1)]
[('data', 3), ('big', 2), ('book', 1), ('innovation', 1), ('science', 1), ('seen', 1), ('business', 1), ('perspective', 1), ('buzzword', 1), ('nowadays', 1), ('growing', 1), ('necessity', 1), ('within', 1), ('practitioner', 1), ('understand', 1), ('better', 1), ('phenomenon', 1), ('starting', 1), ('clear', 1), ('stated', 1)]
[('lt', 1), ('gt', 1), ('book', 1), ('provides', 1), ('readable', 1), ('elegant', 1), ('presentation', 1), ('principle', 1), ('anomaly', 1), ('detection', 1), ('providing', 1), ('easy', 1), ('introduction', 1), ('newcomer', 1), ('field', 1), ('large', 1), ('number', 1), ('amp', 1), ('nbsp', 1), ('algorithm', 1), ('succinctly', 1), ('described', 1), ('along', 1)]
[('dt', 2), ('book', 1), ('aim', 1), ('present', 1), ('dominant', 1), ('application', 1), ('use', 1), ('case', 1), ('fast', 1), ('evolving', 1), ('determines', 1), ('vital', 1), ('industry', 1), ('technology', 1), ('building', 1), ('provide', 1), ('solution', 1), ('fighting', 1), ('local', 1), ('globalmedical', 1), ('emergency', 1), ('pandemic', 1)]
[('first', 2), ('subjective', 2), ('opinion', 2), ('lt', 1), ('gt', 1), ('comprehensive', 1), ('treatment', 1), ('logic', 1), ('operation', 1), ('author', 1), ('developed', 1), ('approach', 1), ('book', 1), ('explains', 1), ('representation', 1), ('decision', 1), ('making', 1), ('vagueness', 1)]
[('realistic', 2), ('ethical', 2), ('lt', 1), ('gt', 1), ('author', 1), ('investigates', 1), ('produce', 1), ('workable', 1), ('code', 1), ('regulation', 1), ('rapidly', 1), ('developing', 1), ('field', 1), ('address', 1), ('immediate', 1), ('longer', 1), ('term', 1), ('issue', 1), ('facing', 1), ('spell', 1), ('key', 1), ('debate', 1)]
[('book', 1), ('author', 1), ('examines', 1), ('ethical', 1), ('implication', 1), ('artificial', 1), ('intelligence', 1), ('system', 1), ('integrate', 1), ('replace', 1), ('traditional', 1), ('social', 1), ('structure', 1), ('new', 1), ('sociocognitive', 1), ('technological', 1), ('environment', 1), ('discus', 1), ('issue', 1), ('related', 1)]
[('amp', 4), ('nbsp', 4), ('deep', 2), ('learning', 2), ('lt', 1), ('gt', 1), ('book', 1), ('survey', 1), ('analysis', 1), ('used', 1), ('generate', 1), ('musical', 1), ('content', 1), ('author', 1), ('offer', 1), ('comprehensive', 1), ('presentation', 1), ('foundation', 1), ('technique', 1), ('music', 1)]
[('acquisition', 2), ('lt', 1), ('gt', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('key', 1), ('technology', 1), ('application', 1), ('related', 1), ('new', 1), ('camera', 1), ('brought', 1), ('data', 1), ('mass', 1), ('market', 1), ('cover', 1), ('theoretical', 1), ('principle', 1), ('behind', 1), ('device', 1)]
[('procedural', 2), ('content', 2), ('generation', 2), ('lt', 1), ('gt', 1), ('book', 1), ('present', 1), ('date', 1), ('coverage', 1), ('pcg', 1), ('game', 1), ('specifically', 1), ('level', 1), ('landscape', 1), ('item', 1), ('rule', 1), ('quest', 1), ('type', 1), ('chapter', 1), ('explains', 1)]
[('nlp', 2), ('lt', 1), ('gt', 1), ('book', 1), ('serf', 1), ('starting', 1), ('point', 1), ('semantic', 1), ('web', 1), ('sw', 1), ('student', 1), ('researcher', 1), ('interested', 1), ('discovering', 1), ('natural', 1), ('language', 1), ('processing', 1), ('offer', 1), ('effectively', 1), ('help', 1), ('uncover', 1), ('large', 1), ('portion', 1), ('data', 1), ('held', 1)]
[('paper', 2), ('lt', 1), ('gt', 1), ('book', 1), ('gather', 1), ('selected', 1), ('submitted', 1), ('international', 1), ('conference', 1), ('digital', 1), ('science', 1), ('dsic', 1), ('aim', 1), ('make', 1), ('available', 1), ('discussion', 1), ('publication', 1), ('aspect', 1), ('single', 1)]
[('field', 2), ('security', 2), ('management', 2), ('lt', 1), ('gt', 1), ('book', 1), ('aim', 1), ('inform', 1), ('current', 1), ('empirical', 1), ('result', 1), ('work', 1), ('expert', 1), ('emergency', 1), ('risk', 1), ('connecting', 1), ('science', 1), ('theory', 1), ('practice', 1), ('various', 1), ('related', 1)]
[('lt', 1), ('gt', 1), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('xvi', 1), ('multidisciplinary', 1), ('international', 1), ('congress', 1), ('science', 1), ('technology', 1), ('cit', 1), ('held', 1), ('quito', 1), ('ecuador', 1), ('june', 1), ('proudly', 1), ('organized', 1), ('universidad', 1), ('de', 1), ('la', 1), ('fuerzas', 1), ('armada', 1), ('espe', 1)]
[('st', 2), ('petersburg', 2), ('lt', 1), ('div', 1), ('gt', 1), ('book', 1), ('collection', 1), ('paper', 1), ('compiled', 1), ('conference', 1), ('algorithm', 1), ('computer', 1), ('based', 1), ('solution', 1), ('held', 1), ('june', 1), ('peter', 1), ('polytechnic', 1), ('university', 1), ('spbpu', 1), ('russia', 1), ('author', 1)]
[('lt', 1), ('gt', 1), ('book', 1), ('present', 1), ('volume', 1), ('selected', 1), ('research', 1), ('paper', 1), ('presented', 1), ('second', 1), ('international', 1), ('conference', 1), ('digital', 1), ('technology', 1), ('application', 1), ('icdta', 1), ('held', 1), ('sidi', 1), ('mohamed', 1), ('ben', 1), ('abdellah', 1), ('university', 1), ('fez', 1), ('morocco', 1), ('january', 1)]
[('lt', 1), ('gt', 1), ('work', 1), ('presented', 1), ('generally', 1), ('intended', 1), ('engineer', 1), ('educator', 1), ('level', 1), ('industrialist', 1), ('manager', 1), ('researcher', 1), ('political', 1), ('representative', 1), ('offering', 1), ('snapshot', 1), ('various', 1), ('type', 1), ('research', 1), ('conducted', 1), ('within', 1), ('field', 1), ('triz', 1)]
[('geoinformatics', 2), ('book', 1), ('contains', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('data', 1), ('analysis', 1), ('icgda', 1), ('held', 1), ('january', 1), ('paris', 1), ('france', 1), ('help', 1), ('support', 1), ('basic', 1), ('scientific', 1), ('inquiry', 1), ('address', 1), ('complex', 1)]
[('book', 2), ('applied', 2), ('lt', 1), ('gt', 1), ('focus', 1), ('aspect', 1), ('artificial', 1), ('intelligence', 1), ('using', 1), ('enterprise', 1), ('framework', 1), ('technology', 1), ('nature', 1), ('equip', 1), ('reader', 1), ('necessary', 1), ('skill', 1), ('understanding', 1), ('delivering', 1)]
[('book', 1), ('examines', 1), ('interplay', 1), ('solution', 1), ('specific', 1), ('management', 1), ('method', 1), ('organization', 1), ('particular', 1), ('ass', 1), ('impact', 1), ('reliability', 1), ('factor', 1), ('employee', 1), ('commitment', 1), ('organizational', 1), ('performance', 1), ('developing', 1)]
[('amp', 5), ('nbsp', 5), ('altair', 2), ('software', 2), ('system', 2), ('modeling', 2), ('lt', 1), ('div', 1), ('gt', 1), ('book', 1), ('provides', 1), ('tutorial', 1), ('use', 1), ('compose', 1), ('activate', 1), ('package', 1), ('provide', 1), ('simulation', 1), ('facility', 1), ('advanced', 1)]
[('system', 2), ('lt', 1), ('gt', 1), ('book', 1), ('focus', 1), ('video', 1), ('based', 1), ('corneal', 1), ('reflection', 1), ('eye', 1), ('tracker', 1), ('widely', 1), ('available', 1), ('affordable', 1), ('type', 1), ('take', 1), ('look', 1), ('number', 1), ('interesting', 1), ('challenging', 1), ('application', 1), ('human', 1), ('factor', 1), ('collaborative', 1)]
[('lt', 1), ('gt', 1), ('contribution', 1), ('gathered', 1), ('provide', 1), ('overview', 1), ('current', 1), ('research', 1), ('project', 1), ('selected', 1), ('software', 1), ('product', 1), ('fraunhofer', 1), ('institute', 1), ('algorithm', 1), ('scientific', 1), ('computing', 1), ('scai', 1), ('show', 1), ('wide', 1), ('range', 1), ('challenge', 1)]
[('first', 2), ('research', 2), ('lt', 1), ('gt', 1), ('comprehensive', 1), ('volume', 1), ('provide', 1), ('thorough', 1), ('multi', 1), ('faceted', 1), ('emerging', 1), ('field', 1), ('augmented', 1), ('reality', 1), ('game', 1), ('consider', 1), ('wide', 1), ('range', 1), ('major', 1), ('issue', 1), ('monograph', 1)]
[('big', 3), ('data', 2), ('processing', 2), ('lt', 1), ('gt', 1), ('book', 1), ('provides', 1), ('reader', 1), ('picture', 1), ('comprehensive', 1), ('survey', 1), ('domain', 1), ('system', 1), ('past', 1), ('decade', 1), ('hadoop', 1), ('framework', 1), ('dominated', 1), ('world', 1), ('yet', 1), ('recently', 1), ('academia', 1)]
[('monograph', 1), ('describes', 1), ('implement', 1), ('partially', 1), ('homomorphic', 1), ('encryption', 1), ('function', 1), ('using', 1), ('unified', 1), ('notation', 1), ('introducing', 1), ('appropriate', 1), ('mathematical', 1), ('background', 1), ('author', 1), ('offer', 1), ('systematic', 1), ('examination', 1), ('following', 1), ('known', 1), ('algorithm', 1)]
[('conference', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('machine', 1), ('learning', 1), ('big', 1), ('data', 1), ('analytics', 1), ('iot', 1), ('security', 1), ('privacy', 1), ('spiot', 1), ('online', 1), ('october', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1)]
[('book', 2), ('image', 2), ('video', 2), ('editing', 2), ('research', 2), ('lt', 1), ('div', 1), ('gt', 1), ('cover', 1), ('color', 1), ('advance', 1), ('last', 1), ('decade', 1), ('bringing', 1), ('reader', 1), ('speed', 1), ('digital', 1), ('technique', 1), ('delf', 1), ('area', 1), ('attracted', 1)]
[('book', 2), ('processing', 2), ('visualization', 2), ('technique', 2), ('interactive', 2), ('lt', 1), ('gt', 1), ('present', 1), ('work', 1), ('detailing', 1), ('application', 1), ('analyzing', 1), ('earth', 1), ('subsurface', 1), ('topic', 1), ('data', 1), ('used', 1)]
[('identification', 2), ('person', 1), ('problem', 1), ('associating', 1), ('observation', 1), ('target', 1), ('different', 1), ('non', 1), ('overlapping', 1), ('camera', 1), ('existing', 1), ('learning', 1), ('based', 1), ('method', 1), ('resulted', 1), ('improved', 1), ('performance', 1), ('standard', 1), ('benchmark', 1)]
[('data', 2), ('visual', 2), ('lecture', 1), ('cover', 1), ('several', 1), ('core', 1), ('issue', 1), ('user', 1), ('centered', 1), ('management', 1), ('including', 1), ('design', 1), ('usable', 1), ('interface', 1), ('suitably', 1), ('support', 1), ('database', 1), ('task', 1), ('relevant', 1), ('approach', 1), ('querying', 1), ('information', 1), ('visualization', 1)]
[('data', 3), ('textual', 2), ('collection', 2), ('nowadays', 1), ('database', 1), ('among', 1), ('rapidly', 1), ('growing', 1), ('contain', 1), ('new', 1), ('type', 1), ('differs', 1), ('classical', 1), ('numerical', 1), ('long', 1), ('sequence', 1), ('symbol', 1), ('divided', 1)]
[('activity', 2), ('theory', 2), ('conceptual', 1), ('framework', 1), ('originally', 1), ('developed', 1), ('aleksei', 1), ('leontiev', 1), ('root', 1), ('socio', 1), ('cultural', 1), ('tradition', 1), ('russian', 1), ('psychology', 1), ('foundational', 1), ('concept', 1), ('human', 1), ('understood', 1), ('purposeful', 1)]
[('technology', 2), ('digital', 1), ('become', 1), ('defining', 1), ('characteristic', 1), ('modern', 1), ('life', 1), ('almost', 1), ('everyone', 1), ('us', 1), ('rely', 1), ('many', 1), ('multitude', 1), ('device', 1), ('expect', 1), ('able', 1), ('use', 1), ('straight', 1), ('box', 1)]
[('design', 4), ('contextual', 2), ('user', 1), ('centered', 1), ('process', 1), ('us', 1), ('depth', 1), ('field', 1), ('research', 1), ('drive', 1), ('innovative', 1), ('first', 1), ('invented', 1), ('used', 1), ('wide', 1), ('variety', 1), ('industry', 1), ('taught', 1), ('university', 1)]
[('book', 3), ('participatory', 2), ('design', 2), ('introduces', 1), ('researcher', 1), ('student', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hci', 1), ('grounded', 1), ('four', 1), ('strong', 1), ('commitment', 1), ('discus', 1), ('important', 1), ('today', 1), ('aim', 1), ('provide', 1)]
[('information', 2), ('second', 1), ('age', 1), ('digital', 1), ('moving', 1), ('desktop', 1), ('laptop', 1), ('palmtop', 1), ('amorphous', 1), ('cloud', 1), ('web', 1), ('manage', 1), ('challenge', 1), ('opportunity', 1), ('new', 1), ('world', 1)]
[('multimedia', 3), ('core', 1), ('information', 1), ('retrieval', 1), ('mean', 1), ('process', 1), ('searching', 1), ('finding', 1), ('document', 1), ('corresponding', 1), ('research', 1), ('field', 1), ('concerned', 1), ('building', 1), ('best', 1), ('possible', 1), ('search', 1), ('engine', 1), ('intriguing', 1), ('bit', 1)]
[('close', 2), ('count', 2), ('time', 1), ('worn', 1), ('aphorism', 1), ('horseshoe', 1), ('hand', 1), ('grenade', 1), ('clearly', 1), ('inadequate', 1), ('golf', 1), ('shuffleboard', 1), ('archery', 1), ('dart', 1), ('curling', 1), ('game', 1), ('accuracy', 1), ('hitting', 1), ('precise', 1), ('center', 1), ('target', 1)]
[('retrieval', 2), ('lt', 1), ('gt', 1), ('information', 1), ('used', 1), ('mean', 1), ('looking', 1), ('thousand', 1), ('string', 1), ('text', 1), ('find', 1), ('word', 1), ('symbol', 1), ('matched', 1), ('user', 1), ('query', 1), ('today', 1), ('many', 1), ('model', 1), ('help', 1), ('index', 1), ('search', 1), ('effectively', 1), ('take', 1), ('lot', 1), ('le', 1)]
[('information', 3), ('gap', 2), ('lt', 1), ('gt', 1), ('field', 1), ('human', 1), ('behavior', 1), ('run', 1), ('gamut', 1), ('process', 1), ('realization', 1), ('need', 1), ('understanding', 1), ('search', 1), ('source', 1), ('fill', 1), ('use', 1)]
[('information', 4), ('lt', 1), ('gt', 1), ('architecture', 1), ('organizing', 1), ('simplifying', 1), ('designing', 1), ('integrating', 1), ('space', 1), ('system', 1), ('creating', 1), ('way', 1), ('find', 1), ('interact', 1), ('content', 1), ('goal', 1), ('help', 1)]
[('many', 2), ('lt', 1), ('gt', 1), ('research', 1), ('project', 1), ('involve', 1), ('analyzing', 1), ('set', 1), ('text', 1), ('social', 1), ('web', 1), ('elsewhere', 1), ('insight', 1), ('issue', 1), ('opinion', 1), ('interest', 1), ('news', 1), ('discussion', 1), ('communication', 1), ('style', 1), ('example', 1), ('study', 1), ('investigated', 1), ('reaction', 1)]
[('written', 2), ('modern', 2), ('language', 2), ('system', 2), ('whereas', 1), ('user', 1), ('facing', 1), ('application', 1), ('often', 1), ('firmware', 1), ('operating', 1), ('support', 1), ('library', 1), ('virtual', 1), ('machine', 1), ('underpin', 1), ('computer', 1), ('still', 1), ('low', 1), ('level', 1), ('value', 1)]
[('privacy', 4), ('lt', 3), ('gt', 3), ('dp', 2), ('notion', 2), ('last', 1), ('decade', 1), ('differential', 1), ('emerged', 1), ('de', 1), ('facto', 1), ('standard', 1), ('research', 1), ('preserving', 1), ('data', 1), ('analysis', 1), ('publishing', 1), ('offer', 1), ('strong', 1), ('guarantee', 1)]
[('artificial', 2), ('system', 2), ('think', 1), ('behave', 1), ('intelligently', 1), ('exciting', 1), ('challenging', 1), ('goal', 1), ('intelligence', 1), ('action', 1), ('programming', 1), ('art', 1), ('science', 1), ('devising', 1), ('high', 1), ('level', 1), ('control', 1), ('strategy', 1), ('autonomous', 1)]
[('problem', 2), ('modeling', 2), ('answer', 1), ('set', 1), ('programming', 1), ('asp', 1), ('declarative', 1), ('solving', 1), ('approach', 1), ('initially', 1), ('tailored', 1), ('area', 1), ('knowledge', 1), ('representation', 1), ('reasoning', 1), ('krr', 1), ('recently', 1), ('attractive', 1), ('combination', 1), ('rich', 1), ('yet', 1), ('simple', 1)]
[('lt', 1), ('gt', 1), ('topic', 1), ('covered', 1), ('book', 1), ('range', 1), ('modeling', 1), ('programming', 1), ('language', 1), ('environment', 1), ('via', 1), ('approach', 1), ('design', 1), ('verification', 1), ('issue', 1), ('ethic', 1), ('regulation', 1), ('term', 1), ('technique', 1), ('result', 1), ('model', 1), ('based', 1)]
[('book', 1), ('explores', 1), ('rich', 1), ('history', 1), ('keyword', 1), ('earliest', 1), ('manifestation', 1), ('long', 1), ('appeared', 1), ('anywhere', 1), ('google', 1), ('trend', 1), ('library', 1), ('cataloging', 1), ('textbook', 1), ('order', 1), ('illustrate', 1), ('implicit', 1), ('explicit', 1), ('mediation', 1), ('human', 1), ('cognition', 1)]
[('computing', 3), ('system', 2), ('optimization', 2), ('lt', 1), ('gt', 1), ('book', 1), ('autonomous', 1), ('driving', 1), ('take', 1), ('comprehensive', 1), ('look', 1), ('state', 1), ('art', 1), ('technology', 1), ('including', 1), ('framework', 1), ('algorithm', 1), ('deployment', 1), ('runtime', 1), ('dataset', 1)]
[('lt', 1), ('gt', 1), ('book', 1), ('cover', 1), ('topic', 1), ('cyber', 1), ('security', 1), ('iot', 1), ('system', 1), ('used', 1), ('different', 1), ('vertical', 1), ('agriculture', 1), ('health', 1), ('home', 1), ('transportation', 1), ('within', 1), ('context', 1), ('smart', 1), ('city', 1), ('author', 1), ('provide', 1), ('analysis', 1), ('importance', 1)]
[('lt', 1), ('gt', 1), ('scientific', 1), ('visualization', 1), ('always', 1), ('integral', 1), ('part', 1), ('discovery', 1), ('starting', 1), ('first', 1), ('simplified', 1), ('drawing', 1), ('pre', 1), ('enlightenment', 1), ('progressing', 1), ('present', 1), ('day', 1), ('mathematical', 1), ('formalism', 1), ('often', 1), ('supersedes', 1), ('visual', 1), ('method', 1), ('use', 1)]
[('similarity', 2), ('object', 1), ('play', 1), ('important', 1), ('role', 1), ('human', 1), ('cognitive', 1), ('process', 1), ('artificial', 1), ('system', 1), ('recognition', 1), ('categorization', 1), ('appropriately', 1), ('measure', 1), ('given', 1), ('task', 1), ('crucial', 1), ('performance', 1), ('many', 1)]
[('network', 2), ('lt', 1), ('gt', 1), ('graph', 1), ('useful', 1), ('data', 1), ('structure', 1), ('complex', 1), ('real', 1), ('life', 1), ('application', 1), ('modeling', 1), ('physical', 1), ('system', 1), ('learning', 1), ('molecular', 1), ('fingerprint', 1), ('controlling', 1), ('traffic', 1), ('recommending', 1), ('friend', 1), ('social', 1), ('task', 1)]
[('ai', 2), ('inception', 1), ('artificial', 1), ('intelligence', 1), ('rather', 1), ('ambivalent', 1), ('relationship', 1), ('human', 1), ('swinging', 1), ('augmentation', 1), ('replacement', 1), ('technology', 1), ('enter', 1), ('everyday', 1), ('life', 1), ('increasing', 1), ('pace', 1)]
[('task', 2), ('language', 2), ('many', 1), ('nlp', 1), ('core', 1), ('subtask', 1), ('extracting', 1), ('dependency', 1), ('natural', 1), ('sentence', 1), ('understood', 1), ('inverse', 1), ('problem', 1), ('solved', 1), ('different', 1), ('way', 1), ('diverse', 1), ('human', 1), ('namely', 1)]
[('natural', 3), ('language', 3), ('meaning', 1), ('fundamental', 1), ('concept', 1), ('processing', 1), ('nlp', 1), ('task', 1), ('understanding', 1), ('nlu', 1), ('generation', 1), ('nlg', 1), ('aim', 1), ('field', 1), ('build', 1), ('system', 1), ('understand', 1)]
[('graph', 3), ('knowledge', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('accessible', 1), ('introduction', 1), ('recently', 1), ('garnered', 1), ('notable', 1), ('attention', 1), ('industry', 1), ('academia', 1), ('founded', 1), ('principle', 1), ('applying', 1), ('based', 1), ('abstraction', 1)]
[('past', 1), ('decade', 1), ('witnessed', 1), ('emergence', 1), ('participatory', 1), ('web', 1), ('social', 1), ('medium', 1), ('bringing', 1), ('together', 1), ('many', 1), ('creative', 1), ('way', 1), ('million', 1), ('user', 1), ('playing', 1), ('tagging', 1), ('working', 1), ('socializing', 1), ('online', 1), ('demonstrating', 1), ('new', 1), ('form', 1), ('collaboration', 1)]
[('understand', 2), ('system', 2), ('power', 1), ('distributed', 1), ('necessary', 1), ('inherent', 1), ('limitation', 1), ('problem', 1), ('solved', 1), ('particular', 1), ('without', 1), ('sufficient', 1), ('resource', 1), ('time', 1), ('space', 1), ('book', 1), ('present', 1), ('key', 1)]
[('data', 4), ('related', 2), ('science', 2), ('lt', 1), ('gt', 1), ('textbook', 1), ('comprehensively', 1), ('cover', 1), ('fundamental', 1), ('advanced', 1), ('topic', 1), ('umbrella', 1), ('term', 1), ('encompasses', 1), ('analytics', 1), ('mining', 1), ('machine', 1), ('learning', 1), ('several', 1), ('discipline', 1)]
[('book', 1), ('present', 1), ('state', 1), ('art', 1), ('supercomputer', 1), ('simulation', 1), ('includes', 1), ('latest', 1), ('finding', 1), ('leading', 1), ('researcher', 1), ('using', 1), ('system', 1), ('high', 1), ('performance', 1), ('computing', 1), ('center', 1), ('stuttgart', 1), ('hlrs', 1), ('report', 1), ('cover', 1), ('field', 1)]
[('system', 3), ('operating', 2), ('book', 1), ('cover', 1), ('basic', 1), ('concept', 1), ('principle', 1), ('showing', 1), ('apply', 1), ('design', 1), ('implementation', 1), ('complete', 1), ('embedded', 1), ('real', 1), ('time', 1), ('includes', 1), ('foundational', 1), ('background', 1)]
[('brain', 2), ('human', 2), ('lt', 1), ('div', 1), ('gt', 1), ('thought', 1), ('feel', 1), ('ai', 1), ('world', 1), ('book', 1), ('allows', 1), ('tell', 1), ('take', 1), ('mission', 1), ('helping', 1), ('develop', 1), ('efficient', 1), ('sustainable', 1), ('diverse', 1), ('inclusive', 1)]
[('lt', 1), ('gt', 1), ('book', 1), ('present', 1), ('state', 1), ('art', 1), ('high', 1), ('performance', 1), ('computing', 1), ('modern', 1), ('supercomputer', 1), ('architecture', 1), ('address', 1), ('trend', 1), ('hardware', 1), ('software', 1), ('development', 1), ('general', 1), ('contribution', 1), ('cover', 1), ('broad', 1), ('range', 1), ('topic', 1)]
[('data', 2), ('book', 2), ('lt', 1), ('gt', 1), ('building', 1), ('upon', 1), ('knowledge', 1), ('introduced', 1), ('science', 1), ('framework', 1), ('provides', 1), ('comprehensive', 1), ('detailed', 1), ('examination', 1), ('aspect', 1), ('analytics', 1), ('theoretical', 1), ('practical', 1), ('standpoint', 1)]
[('conference', 3), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('simulation', 1), ('tool', 1), ('technique', 1), ('simutools', 1), ('held', 1), ('guiyang', 1), ('china', 1), ('august', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('conference', 2), ('lt', 2), ('sup', 2), ('gt', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('green', 1), ('energy', 1), ('networking', 1), ('greenets', 1), ('held', 1), ('guimarães', 1), ('portugal', 1), ('november', 1), ('full', 1), ('paper', 1)]
[('lt', 1), ('gt', 1), ('thesis', 1), ('develops', 1), ('novel', 1), ('numerical', 1), ('technique', 1), ('simulating', 1), ('quantum', 1), ('transport', 1), ('time', 1), ('domain', 1), ('applies', 1), ('pertinent', 1), ('physical', 1), ('system', 1), ('flying', 1), ('qubits', 1), ('electronic', 1), ('interferometer', 1), ('superconductor', 1), ('semiconductor', 1)]
[('proceeding', 2), ('lt', 2), ('sup', 2), ('gt', 2), ('conference', 2), ('held', 2), ('constitutes', 1), ('refereed', 1), ('th', 1), ('international', 1), ('iot', 1), ('technology', 1), ('healthcare', 1), ('healthyiot', 1), ('november', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('self', 2), ('defense', 2), ('mechanism', 2), ('plant', 2), ('lt', 1), ('gt', 1), ('book', 1), ('present', 1), ('new', 1), ('meta', 1), ('heuristic', 1), ('algorithm', 1), ('inspired', 1), ('nature', 1), ('numerous', 1), ('published', 1), ('work', 1), ('demonstrated', 1), ('various', 1), ('survival', 1), ('strategy', 1), ('use', 1), ('protect', 1)]
[('book', 2), ('method', 2), ('lt', 1), ('gt', 1), ('provides', 1), ('gentle', 1), ('introduction', 1), ('definition', 1), ('denotational', 1), ('based', 1), ('abstract', 1), ('interpretation', 1), ('demonstrates', 1), ('formal', 1), ('analysis', 1), ('used', 1), ('address', 1), ('security', 1), ('system', 1)]
[('lt', 3), ('gt', 3), ('book', 2), ('case', 2), ('focus', 1), ('basic', 1), ('theoretical', 1), ('framework', 1), ('dealing', 1), ('problem', 1), ('solution', 1), ('application', 1), ('text', 1), ('mining', 1), ('various', 1), ('facet', 1), ('practical', 1), ('form', 1), ('study', 1), ('use', 1), ('story', 1)]
[('data', 5), ('profiling', 2), ('lt', 1), ('gt', 1), ('refers', 1), ('activity', 1), ('collecting', 1), ('metadata', 1), ('professional', 1), ('researcher', 1), ('work', 1), ('engaged', 1), ('least', 1), ('informally', 1), ('understand', 1), ('explore', 1), ('unfamiliar', 1)]
[('interactive', 2), ('mobile', 2), ('system', 2), ('book', 1), ('present', 1), ('contextual', 1), ('approach', 1), ('designing', 1), ('contemporary', 1), ('computer', 1), ('integral', 1), ('part', 1), ('ubiquitous', 1), ('computing', 1), ('environment', 1), ('service', 1), ('device', 1), ('become', 1), ('functional', 1), ('design', 1), ('object', 1)]
[('outfit', 2), ('lt', 1), ('gt', 1), ('nowadays', 1), ('fashion', 1), ('become', 1), ('essential', 1), ('aspect', 1), ('daily', 1), ('life', 1), ('usually', 1), ('comprises', 1), ('several', 1), ('complementary', 1), ('item', 1), ('top', 1), ('bottom', 1), ('shoe', 1), ('accessory', 1), ('proper', 1), ('largely', 1), ('relies', 1), ('harmonious', 1)]
[('representation', 4), ('discovery', 2), ('heart', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('book', 1), ('devoted', 1), ('problem', 1), ('intelligent', 1), ('system', 1), ('construct', 1), ('experience', 1)]
[('computer', 2), ('visual', 1), ('recognition', 1), ('problem', 1), ('central', 1), ('vision', 1), ('research', 1), ('robotics', 1), ('information', 1), ('retrieval', 1), ('many', 1), ('desired', 1), ('application', 1), ('demand', 1), ('ability', 1), ('identify', 1), ('localize', 1), ('category', 1), ('place', 1), ('object', 1), ('tutorial', 1), ('overview', 1)]
[('object', 3), ('set', 2), ('similarity', 2), ('cluster', 2), ('given', 1), ('pairwise', 1), ('measure', 1), ('goal', 1), ('correlation', 1), ('clustering', 1), ('partition', 1), ('maximize', 1), ('within', 1), ('minimize', 1)]
[('lt', 1), ('gt', 1), ('survey', 1), ('computability', 1), ('theory', 1), ('offer', 1), ('technique', 1), ('tool', 1), ('computer', 1), ('scientist', 1), ('mathematician', 1), ('philosopher', 1), ('studying', 1), ('mathematical', 1), ('foundation', 1), ('computing', 1), ('need', 1), ('mathematically', 1), ('analyze', 1), ('computational', 1)]
[('book', 2), ('outfit', 2), ('compatibility', 2), ('shed', 1), ('light', 1), ('state', 1), ('art', 1), ('theory', 1), ('challenging', 1), ('modeling', 1), ('scenario', 1), ('amp', 1), ('nbsp', 1), ('particular', 1), ('present', 1), ('several', 1), ('cutting', 1), ('edge', 1), ('graph', 1), ('learning', 1), ('technique', 1), ('used', 1)]
[('working', 2), ('team', 2), ('software', 2), ('lt', 1), ('gt', 1), ('textbook', 1), ('create', 1), ('functioning', 1), ('cover', 1), ('skill', 1), ('agile', 1), ('development', 1), ('method', 1), ('version', 1), ('control', 1), ('continuous', 1), ('integration', 1), ('show', 1), ('reader', 1), ('apply', 1), ('latest', 1)]
[('lt', 3), ('gt', 3), ('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('data', 1), ('mining', 1), ('pattern', 1), ('recognition', 1), ('mldm', 1), ('held', 1), ('new', 1), ('york', 1), ('ny', 1), ('usa', 1)]
[('lt', 1), ('gt', 1), ('volume', 1), ('considers', 1), ('computational', 1), ('complexity', 1), ('determining', 1), ('whether', 1), ('system', 1), ('equation', 1), ('fixed', 1), ('algebra', 1), ('solution', 1), ('examines', 1), ('detail', 1), ('problem', 1), ('lead', 1), ('systermsat', 1), ('syspolsat', 1)]
[('smart', 2), ('book', 1), ('proposes', 1), ('combination', 1), ('cognitive', 1), ('modeling', 1), ('model', 1), ('based', 1), ('user', 1), ('interface', 1), ('development', 1), ('tackle', 1), ('problem', 1), ('maintaining', 1), ('usability', 1), ('application', 1), ('target', 1), ('several', 1), ('device', 1), ('type', 1), ('desktop', 1), ('pc', 1), ('phone', 1)]
[('accessible', 1), ('textbook', 1), ('present', 1), ('introduction', 1), ('computer', 1), ('vision', 1), ('algorithm', 1), ('industrially', 1), ('relevant', 1), ('application', 1), ('ray', 1), ('testing', 1), ('feature', 1), ('introduces', 1), ('mathematical', 1), ('background', 1), ('monocular', 1), ('multiple', 1), ('view', 1), ('geometry', 1), ('describes', 1), ('main', 1)]
[('application', 2), ('image', 2), ('book', 1), ('provides', 1), ('introduction', 1), ('recent', 1), ('advance', 1), ('theory', 1), ('algorithm', 1), ('boolean', 1), ('map', 1), ('distance', 1), ('processing', 1), ('include', 1), ('modeling', 1), ('human', 1), ('find', 1), ('salient', 1), ('prominent', 1), ('using', 1)]
[('lt', 1), ('div', 1), ('gt', 1), ('handbook', 1), ('provides', 1), ('unique', 1), ('depth', 1), ('survey', 1), ('current', 1), ('state', 1), ('art', 1), ('software', 1), ('engineering', 1), ('covering', 1), ('major', 1), ('topic', 1), ('conceptual', 1), ('genealogy', 1), ('subfield', 1), ('discussing', 1), ('future', 1), ('research', 1), ('direction', 1), ('subject', 1)]
[('book', 2), ('technique', 2), ('use', 2), ('lt', 1), ('gt', 1), ('analyzes', 1), ('direct', 1), ('inverse', 1), ('fuzzy', 1), ('transform', 1), ('image', 1), ('processing', 1), ('data', 1), ('analysis', 1), ('divided', 1), ('part', 1), ('first', 1), ('describes', 1), ('method', 1), ('bi', 1), ('dimensional', 1)]
[('lt', 1), ('gt', 1), ('book', 1), ('includes', 1), ('invited', 1), ('contributed', 1), ('chapter', 1), ('dealing', 1), ('advanced', 1), ('method', 1), ('theoretical', 1), ('development', 1), ('analysis', 1), ('social', 1), ('network', 1), ('application', 1), ('numerous', 1), ('discipline', 1), ('author', 1), ('explore', 1), ('new', 1), ('trend', 1), ('related', 1)]
[('topic', 2), ('book', 1), ('collection', 1), ('chapter', 1), ('ifip', 1), ('working', 1), ('group', 1), ('paper', 1), ('included', 1), ('present', 1), ('experience', 1), ('research', 1), ('digital', 1), ('transformation', 1), ('innovation', 1), ('practice', 1), ('global', 1), ('south', 1), ('span', 1)]
[('characteristic', 2), ('time', 2), ('expression', 2), ('named', 2), ('entity', 2), ('lt', 1), ('gt', 1), ('book', 1), ('present', 1), ('synthetic', 1), ('analysis', 1), ('proposed', 1), ('method', 1), ('leveraging', 1), ('recognize', 1), ('unstructured', 1)]
[('quality', 2), ('book', 1), ('focus', 1), ('global', 1), ('design', 1), ('system', 1), ('interact', 1), ('work', 1), ('activity', 1), ('daily', 1), ('life', 1), ('involves', 1), ('globality', 1), ('experience', 1), ('physical', 1), ('sensory', 1), ('cognitive', 1), ('emotional', 1)]
[('lt', 3), ('gt', 3), ('book', 1), ('offer', 1), ('practical', 1), ('guideline', 1), ('creating', 1), ('value', 1), ('application', 1), ('data', 1), ('science', 1), ('based', 1), ('selected', 1), ('artificial', 1), ('intelligence', 1), ('method', 1), ('amp', 1), ('nbsp', 1), ('part', 1), ('author', 1), ('introduces', 1), ('problem', 1), ('driven', 1), ('approach', 1)]
[('text', 2), ('lt', 1), ('gt', 1), ('book', 1), ('present', 1), ('method', 1), ('approach', 1), ('used', 1), ('identify', 1), ('true', 1), ('author', 1), ('doubtful', 1), ('document', 1), ('excerpt', 1), ('provides', 1), ('broad', 1), ('introduction', 1), ('categorization', 1), ('problem', 1), ('authorship', 1), ('attribution', 1), ('psychological', 1), ('trait', 1)]
[('data', 2), ('lt', 1), ('div', 1), ('gt', 1), ('book', 1), ('address', 1), ('urgent', 1), ('issue', 1), ('massive', 1), ('inefficient', 1), ('energy', 1), ('consumption', 1), ('center', 1), ('become', 1), ('largest', 1), ('co', 1), ('located', 1), ('computing', 1), ('system', 1), ('world', 1), ('process', 1), ('trillion', 1), ('megabyte', 1), ('every', 1), ('second', 1), ('dynamic', 1)]
[('data', 2), ('collection', 2), ('scientific', 2), ('big', 1), ('era', 1), ('characterized', 1), ('explosion', 1), ('information', 1), ('form', 1), ('digital', 1), ('ranging', 1), ('knowledge', 1), ('social', 1), ('medium', 1), ('news', 1), ('everyone', 1), ('daily', 1), ('life', 1), ('example', 1), ('include', 1)]
[('based', 2), ('problem', 2), ('method', 2), ('group', 2), ('difference', 2), ('book', 1), ('present', 1), ('pattern', 1), ('solving', 1), ('variety', 1), ('machine', 1), ('learning', 1), ('data', 1), ('analysis', 1), ('technique', 1), ('exploit', 1), ('power', 1), ('make', 1), ('use', 1)]
[('lt', 2), ('gt', 2), ('self', 2), ('stabilization', 2), ('book', 1), ('aim', 1), ('comprehensive', 1), ('pedagogical', 1), ('introduction', 1), ('concept', 1), ('introduced', 1), ('edsger', 1), ('wybe', 1), ('dijkstra', 1), ('characterizes', 1), ('ability', 1), ('distributed', 1), ('algorithm', 1)]
[('vision', 2), ('early', 1), ('year', 1), ('field', 1), ('computer', 1), ('largely', 1), ('motivated', 1), ('researcher', 1), ('seeking', 1), ('computational', 1), ('model', 1), ('biological', 1), ('solution', 1), ('practical', 1), ('problem', 1), ('manufacturing', 1), ('defense', 1), ('medicine', 1), ('past', 1), ('decade', 1)]
[('ambiguity', 3), ('author', 2), ('book', 1), ('deal', 1), ('hard', 1), ('problem', 1), ('inherent', 1), ('human', 1), ('language', 1), ('particular', 1), ('focus', 1), ('name', 1), ('type', 1), ('exists', 1), ('digital', 1), ('bibliographic', 1), ('repository', 1), ('occurs', 1), ('publishes', 1), ('work', 1)]
[('recently', 1), ('mobile', 1), ('security', 1), ('garnered', 1), ('considerable', 1), ('interest', 1), ('research', 1), ('community', 1), ('industry', 1), ('due', 1), ('popularity', 1), ('smartphones', 1), ('current', 1), ('smartphone', 1), ('platform', 1), ('open', 1), ('system', 1), ('allow', 1), ('application', 1), ('development', 1), ('malicious', 1)]
[('active', 2), ('learning', 2), ('data', 2), ('key', 1), ('idea', 1), ('behind', 1), ('machine', 1), ('algorithm', 1), ('perform', 1), ('better', 1), ('le', 1), ('training', 1), ('allowed', 1), ('choose', 1), ('learns', 1), ('learner', 1), ('pose', 1), ('query', 1), ('usually', 1), ('form', 1), ('unlabeled', 1)]
[('lt', 5), ('gt', 5), ('data', 2), ('possible', 1), ('allow', 1), ('multiple', 1), ('owner', 1), ('collaboratively', 1), ('train', 1), ('use', 1), ('shared', 1), ('prediction', 1), ('model', 1), ('keeping', 1), ('local', 1), ('training', 1), ('private', 1), ('traditional', 1), ('machine', 1), ('learning', 1), ('approach', 1)]
[('field', 1), ('narrative', 1), ('story', 1), ('understanding', 1), ('generation', 1), ('oldest', 1), ('natural', 1), ('language', 1), ('processing', 1), ('nlp', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('hardly', 1), ('surprising', 1), ('storytelling', 1), ('fundamental', 1), ('familiar', 1)]
[('device', 2), ('brief', 1), ('examines', 1), ('current', 1), ('research', 1), ('cooperative', 1), ('communication', 1), ('enhanced', 1), ('offloading', 1), ('technology', 1), ('improve', 1), ('performance', 1), ('cognitive', 1), ('radio', 1), ('cellular', 1), ('network', 1), ('providing', 1), ('extensive', 1), ('review', 1), ('recent', 1), ('advance', 1)]
[('mac', 3), ('lt', 1), ('gt', 1), ('springerbrief', 1), ('present', 1), ('recent', 1), ('advance', 1), ('cognitive', 1), ('design', 1), ('opportunistic', 1), ('spectrum', 1), ('access', 1), ('osa', 1), ('network', 1), ('cover', 1), ('basic', 1), ('functionality', 1), ('enhancement', 1), ('iee', 1), ('later', 1), ('chapter', 1), ('discus', 1), ('existing', 1)]
[('lt', 5), ('gt', 5), ('agility', 2), ('message', 1), ('conveyed', 1), ('work', 1), ('implemented', 1), ('anywhere', 1), ('accordingly', 1), ('ten', 1), ('guideline', 1), ('presented', 1), ('adoption', 1), ('enable', 1), ('cope', 1), ('change', 1), ('life', 1)]
[('system', 3), ('bci', 2), ('lt', 1), ('gt', 1), ('success', 1), ('depends', 1), ('user', 1), ('ability', 1), ('produce', 1), ('distinctive', 1), ('eeg', 1), ('activity', 1), ('divided', 1), ('group', 1), ('according', 1), ('placement', 1), ('electrode', 1), ('used', 1), ('detect', 1)]
[('system', 3), ('lrp', 3), ('book', 1), ('investigates', 1), ('tradeoff', 1), ('security', 1), ('usability', 1), ('designing', 1), ('leakage', 1), ('resilient', 1), ('password', 1), ('introduces', 1), ('practical', 1), ('named', 1), ('cover', 1), ('pad', 1), ('shadowkey', 1), ('demonstrates', 1), ('existing', 1), ('subject', 1)]
[('information', 2), ('lt', 1), ('gt', 1), ('book', 1), ('explains', 1), ('created', 1), ('extraction', 1), ('ie', 1), ('application', 1), ('able', 1), ('tap', 1), ('vast', 1), ('amount', 1), ('relevant', 1), ('available', 1), ('natural', 1), ('language', 1), ('source', 1), ('internet', 1), ('page', 1), ('official', 1), ('document', 1), ('law', 1)]
[('approach', 2), ('portfolio', 2), ('work', 1), ('present', 1), ('new', 1), ('composition', 1), ('stock', 1), ('market', 1), ('incorporates', 1), ('fundamental', 1), ('using', 1), ('financial', 1), ('ratio', 1), ('technical', 1), ('indicator', 1), ('multi', 1), ('objective', 1), ('evolutionary', 1), ('algorithm', 1), ('choose', 1)]
[('lt', 1), ('gt', 1), ('volume', 1), ('introduces', 1), ('new', 1), ('approach', 1), ('intelligent', 1), ('control', 1), ('area', 1), ('fromboth', 1), ('viewpoint', 1), ('theory', 1), ('application', 1), ('consists', 1), ('eleven', 1), ('contributionsby', 1), ('prominent', 1), ('author', 1), ('world', 1), ('introductory', 1), ('chapter', 1)]
[('grid', 3), ('conference', 2), ('smart', 2), ('lt', 1), ('gt', 1), ('book', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('inspired', 1), ('future', 1), ('technology', 1), ('smartgift', 1), ('held', 1), ('liverpool', 1), ('uk', 1), ('next', 1), ('generation', 1), ('electric', 1)]
[('artificial', 2), ('intelligence', 2), ('based', 2), ('lt', 1), ('gt', 1), ('book', 1), ('explores', 1), ('concept', 1), ('knowledge', 1), ('algorithm', 1), ('given', 1), ('current', 1), ('hardware', 1), ('software', 1), ('technology', 1), ('theory', 1), ('think', 1), ('efficient', 1), ('provide', 1), ('solution', 1)]
[('lt', 1), ('gt', 1), ('book', 1), ('concerned', 1), ('mobile', 1), ('ubiquitous', 1), ('pervasive', 1), ('learning', 1), ('amp', 1), ('nbsp', 1), ('arena', 1), ('itpresent', 1), ('collection', 1), ('work', 1), ('corresponding', 1), ('four', 1), ('category', 1), ('review', 1), ('study', 1), ('conceptual', 1), ('proposal', 1), ('approach', 1), ('result', 1)]
[('engineering', 2), ('service', 2), ('lt', 1), ('gt', 1), ('book', 1), ('explores', 1), ('different', 1), ('way', 1), ('human', 1), ('factor', 1), ('influence', 1), ('organization', 1), ('enterprise', 1), ('competitiveness', 1), ('cover', 1), ('wealth', 1), ('interrelated', 1), ('topic', 1), ('science', 1)]
[('computational', 2), ('lt', 1), ('gt', 1), ('written', 1), ('bridge', 1), ('information', 1), ('need', 1), ('management', 1), ('scientist', 1), ('book', 1), ('present', 1), ('first', 1), ('comprehensive', 1), ('treatment', 1), ('red', 1), ('teaming', 1), ('crt', 1), ('author', 1), ('describes', 1), ('analytics', 1), ('environment', 1), ('blend', 1), ('human', 1)]
[('knowledge', 2), ('organization', 2), ('book', 2), ('element', 1), ('unique', 1), ('original', 1), ('work', 1), ('introducing', 1), ('fundamental', 1), ('concept', 1), ('related', 1), ('field', 1), ('ko', 1), ('currently', 1), ('available', 1), ('author', 1), ('begin', 1)]
[('trusted', 3), ('describe', 2), ('platform', 2), ('book', 1), ('author', 1), ('first', 1), ('background', 1), ('computing', 1), ('speculate', 1), ('future', 1), ('technical', 1), ('feature', 1), ('architecture', 1), ('several', 1), ('different', 1), ('perspective', 1)]
[('data', 3), ('challenge', 2), ('application', 2), ('big', 2), ('lt', 1), ('gt', 1), ('volume', 1), ('provides', 1), ('opportunity', 1), ('updated', 1), ('depth', 1), ('material', 1), ('complex', 1), ('system', 1), ('order', 1), ('find', 1), ('solution', 1), ('problem', 1), ('facing', 1), ('set', 1)]
[('lt', 4), ('gt', 4), ('narrative', 2), ('book', 1), ('includes', 1), ('short', 1), ('history', 1), ('interactive', 1), ('account', 1), ('small', 1), ('group', 1), ('collaboratively', 1), ('authored', 1), ('social', 1), ('medium', 1), ('romeo', 1), ('juliet', 1), ('facebook', 1), ('love', 1), ('come', 1), ('destruction', 1)]
[('prominent', 2), ('lt', 1), ('gt', 1), ('book', 1), ('explains', 1), ('promising', 1), ('new', 1), ('general', 1), ('technique', 1), ('combine', 1), ('metaheuristics', 1), ('optimization', 1), ('method', 1), ('amp', 1), ('nbsp', 1), ('first', 1), ('introductory', 1), ('chapter', 1), ('review', 1), ('basic', 1), ('principle', 1), ('local', 1), ('search', 1)]
[('system', 3), ('operating', 2), ('lt', 1), ('gt', 1), ('course', 1), ('tested', 1), ('textbook', 1), ('describes', 1), ('design', 1), ('implementation', 1), ('applies', 1), ('mtx', 1), ('unix', 1), ('designed', 1), ('intel', 1), ('based', 1), ('pc', 1), ('written', 1), ('evolutional', 1), ('style', 1), ('theoretical', 1)]
[('software', 2), ('safescrum', 2), ('lt', 1), ('gt', 1), ('book', 1), ('address', 1), ('development', 1), ('safety', 1), ('critical', 1), ('end', 1), ('proposes', 1), ('methodology', 1), ('inspired', 1), ('agile', 1), ('method', 1), ('scrum', 1), ('extensively', 1), ('used', 1), ('many', 1), ('area', 1), ('industry', 1)]
[('lt', 1), ('gt', 1), ('book', 1), ('provides', 1), ('depth', 1), ('introduction', 1), ('overview', 1), ('current', 1), ('research', 1), ('computational', 1), ('music', 1), ('analysis', 1), ('seventeen', 1), ('chapter', 1), ('written', 1), ('leading', 1), ('researcher', 1), ('collectively', 1), ('represent', 1), ('diversity', 1), ('technical', 1)]
[('lt', 3), ('gt', 3), ('amp', 2), ('nbsp', 2), ('book', 1), ('present', 1), ('signifyi', 1), ('suite', 1), ('conceptual', 1), ('methodological', 1), ('tool', 1), ('designed', 1), ('uncover', 1), ('meaning', 1), ('inscribed', 1), ('software', 1), ('origin', 1), ('intent', 1), ('consequence', 1), ('identify', 1), ('trace', 1)]
[('conference', 2), ('present', 1), ('book', 1), ('includes', 1), ('extended', 1), ('revised', 1), ('version', 1), ('set', 1), ('selected', 1), ('paper', 1), ('fourthinternational', 1), ('joint', 1), ('computational', 1), ('intelligence', 1), ('ijcci', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('october', 1)]
[('lt', 4), ('gt', 4), ('div', 3), ('revised', 2), ('book', 1), ('contains', 1), ('selected', 1), ('invited', 1), ('paper', 1), ('presented', 1), ('international', 1), ('workshop', 1), ('massively', 1), ('multi', 1), ('agent', 1), ('system', 1), ('mmas', 1), ('held', 1), ('stockholm', 1), ('sweden', 1), ('july', 1), ('br', 1), ('full', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('wireless', 1), ('internet', 1), ('wicon', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('lt', 1), ('gt', 1), ('book', 1), ('show', 1), ('open', 1), ('source', 1), ('intelligence', 1), ('powerful', 1), ('tool', 1), ('combating', 1), ('crime', 1), ('linking', 1), ('local', 1), ('global', 1), ('pattern', 1), ('help', 1), ('understand', 1), ('criminal', 1), ('activity', 1), ('connected', 1), ('reader', 1), ('encounter', 1), ('latest', 1), ('advance', 1)]
[('methodology', 2), ('book', 1), ('provides', 1), ('unified', 1), ('view', 1), ('new', 1), ('machine', 1), ('translation', 1), ('mt', 1), ('extract', 1), ('information', 1), ('widely', 1), ('available', 1), ('resource', 1), ('extensive', 1), ('monolingual', 1), ('corpus', 1), ('assuming', 1), ('existence', 1), ('limited', 1), ('parallel', 1)]
[('related', 2), ('lt', 1), ('gt', 1), ('book', 1), ('endeavour', 1), ('give', 1), ('concise', 1), ('contribution', 1), ('understanding', 1), ('data', 1), ('assimilation', 1), ('methodology', 1), ('mathematical', 1), ('concept', 1), ('algorithm', 1), ('fully', 1), ('presented', 1), ('especially', 1), ('facing', 1), ('theme', 1)]
[('automation', 2), ('task', 2), ('lt', 1), ('gt', 1), ('bookis', 1), ('devoted', 1), ('famous', 1), ('example', 1), ('handling', 1), ('bin', 1), ('picking', 1), ('problem', 1), ('pick', 1), ('object', 1), ('scrambled', 1), ('box', 1), ('aneasy', 1), ('human', 1), ('complex', 1), ('book', 1)]
[('data', 2), ('lt', 1), ('gt', 1), ('book', 1), ('offer', 1), ('clear', 1), ('understanding', 1), ('concept', 1), ('context', 1), ('aware', 1), ('machine', 1), ('learning', 1), ('including', 1), ('automated', 1), ('rule', 1), ('based', 1), ('framework', 1), ('within', 1), ('broad', 1), ('area', 1), ('science', 1), ('analytics', 1), ('particularly', 1), ('aim', 1), ('driven', 1), ('intelligent', 1)]
[('book', 2), ('make', 2), ('metaheuristics', 2), ('lt', 1), ('gt', 1), ('collection', 1), ('various', 1), ('methodology', 1), ('possible', 1), ('hyper', 1), ('heuristic', 1), ('solve', 1), ('problem', 1), ('occur', 1), ('real', 1), ('world', 1), ('contains', 1), ('chapter', 1), ('use', 1), ('technique', 1)]
[('book', 1), ('describes', 1), ('prize', 1), ('winning', 1), ('brain', 1), ('computer', 1), ('interface', 1), ('bci', 1), ('project', 1), ('honored', 1), ('community', 1), ('prestigious', 1), ('annual', 1), ('award', 1), ('bcis', 1), ('enable', 1), ('communicate', 1), ('control', 1), ('limb', 1), ('environment', 1), ('amp', 1), ('nbsp', 1), ('using', 1), ('thought', 1), ('process', 1)]
[('conference', 2), ('lt', 1), ('gt', 1), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('mobile', 1), ('computing', 1), ('application', 1), ('service', 1), ('mobicase', 1), ('held', 1), ('osaka', 1), ('japan', 1), ('february', 1), ('march', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('ad', 1), ('hoc', 1), ('network', 1), ('adhocnets', 1), ('held', 1), ('cairn', 1), ('australia', 1), ('september', 1), ('full', 1), ('paper', 1), ('selected', 1), ('submission', 1), ('cover', 1), ('variety', 1)]
[('lt', 7), ('gt', 7), ('br', 2), ('bci', 2), ('research', 2), ('project', 2), ('year', 1), ('annual', 1), ('award', 1), ('recognizes', 1), ('top', 1), ('new', 1), ('brain', 1), ('computer', 1), ('interface', 1), ('book', 1), ('contains', 1), ('summary', 1)]
[('amp', 3), ('nbsp', 3), ('lt', 1), ('gt', 1), ('book', 1), ('review', 1), ('use', 1), ('digital', 1), ('surveillance', 1), ('detecting', 1), ('investigating', 1), ('interpreting', 1), ('fraud', 1), ('associated', 1), ('critical', 1), ('cyberinfrastructures', 1), ('nigeria', 1), ('known', 1), ('country', 1), ('cyberspace', 1)]
[('lt', 1), ('gt', 1), ('author', 1), ('present', 1), ('probatio', 1), ('toolkit', 1), ('building', 1), ('functional', 1), ('dmi', 1), ('digital', 1), ('musical', 1), ('instrument', 1), ('prototype', 1), ('artifact', 1), ('gestural', 1), ('control', 1), ('sound', 1), ('production', 1), ('physically', 1), ('decoupled', 1), ('digitally', 1), ('mapped', 1), ('us', 1), ('concept', 1)]
[('handbook', 1), ('cover', 1), ('recent', 1), ('advance', 1), ('integration', 1), ('three', 1), ('area', 1), ('namely', 1), ('cloud', 1), ('computing', 1), ('cyber', 1), ('physical', 1), ('system', 1), ('internet', 1), ('thing', 1), ('expected', 1), ('tremendous', 1), ('impact', 1), ('daily', 1), ('life', 1), ('contains', 1), ('total', 1), ('thirteen', 1)]
[('book', 1), ('present', 1), ('state', 1), ('art', 1), ('supercomputer', 1), ('simulation', 1), ('includes', 1), ('latest', 1), ('finding', 1), ('leading', 1), ('researcher', 1), ('using', 1), ('system', 1), ('high', 1), ('performance', 1), ('computing', 1), ('center', 1), ('stuttgart', 1), ('hlrs', 1), ('report', 1), ('cover', 1), ('field', 1)]
[('image', 2), ('lt', 1), ('gt', 1), ('book', 1), ('focus', 1), ('methodology', 1), ('organization', 1), ('communication', 1), ('digital', 1), ('collection', 1), ('research', 1), ('utilizes', 1), ('social', 1), ('medium', 1), ('content', 1), ('understood', 1), ('cultural', 1), ('conventional', 1), ('commercial', 1), ('stock', 1)]
[('area', 2), ('fast', 1), ('evolving', 1), ('new', 1), ('rfid', 1), ('security', 1), ('privacy', 1), ('quickly', 1), ('grown', 1), ('hungry', 1), ('infant', 1), ('energetic', 1), ('teenager', 1), ('recent', 1), ('year', 1), ('exciting', 1), ('development', 1), ('summarized', 1), ('book', 1), ('rigorous', 1), ('analysis', 1)]
[('artificial', 1), ('intelligence', 1), ('federates', 1), ('numerous', 1), ('scientific', 1), ('field', 1), ('aim', 1), ('developing', 1), ('machine', 1), ('able', 1), ('assist', 1), ('human', 1), ('operator', 1), ('performing', 1), ('complex', 1), ('treatment', 1), ('demand', 1), ('high', 1), ('cognitive', 1), ('skill', 1), ('learning', 1), ('decision', 1), ('process', 1), ('central', 1)]
[('weighted', 1), ('finite', 1), ('state', 1), ('transducer', 1), ('wfsts', 1), ('commonly', 1), ('used', 1), ('engineer', 1), ('computational', 1), ('linguist', 1), ('processing', 1), ('generating', 1), ('speech', 1), ('text', 1), ('book', 1), ('first', 1), ('provides', 1), ('detailed', 1), ('introduction', 1), ('formalism', 1), ('introduces', 1), ('pynini', 1)]
[('empirical', 2), ('methodological', 2), ('question', 2), ('method', 1), ('mean', 1), ('answering', 1), ('science', 1), ('statistical', 1), ('technique', 1), ('addressed', 1), ('book', 1), ('include', 1), ('problem', 1), ('validity', 1), ('reliability', 1), ('significance', 1), ('case', 1)]
[('congestion', 1), ('control', 1), ('mechanism', 1), ('responsible', 1), ('maintaining', 1), ('stability', 1), ('internet', 1), ('scaled', 1), ('many', 1), ('order', 1), ('magnitude', 1), ('size', 1), ('speed', 1), ('traffic', 1), ('volume', 1), ('coverage', 1), ('complexity', 1), ('last', 1), ('three', 1), ('decade', 1), ('book', 1), ('develop', 1)]
[('pendulum', 3), ('reaction', 2), ('wheel', 2), ('device', 2), ('monograph', 1), ('describes', 1), ('newest', 1), ('inverted', 1), ('control', 1), ('education', 1), ('research', 1), ('discus', 1), ('history', 1), ('background', 1), ('similar', 1), ('experimental', 1)]
[('importance', 1), ('accurate', 1), ('recommender', 1), ('system', 1), ('widely', 1), ('recognized', 1), ('academia', 1), ('industry', 1), ('recommendation', 1), ('rapidly', 1), ('becoming', 1), ('successful', 1), ('application', 1), ('data', 1), ('mining', 1), ('machine', 1), ('learning', 1), ('understanding', 1), ('predicting', 1)]
[('develop', 2), ('chapter', 2), ('lt', 1), ('gt', 1), ('book', 1), ('essential', 1), ('introductory', 1), ('guide', 1), ('knowledge', 1), ('required', 1), ('apps', 1), ('provides', 1), ('core', 1), ('principle', 1), ('person', 1), ('understand', 1), ('order', 1), ('mobile', 1), ('application', 1), ('outline', 1), ('fundamental', 1)]
[('thought', 2), ('lt', 1), ('gt', 1), ('book', 1), ('author', 1), ('discus', 1), ('synergy', 1), ('computer', 1), ('related', 1), ('field', 1), ('artificial', 1), ('intelligence', 1), ('leading', 1), ('question', 1), ('consciousness', 1), ('existence', 1), ('human', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('ad', 1), ('hoc', 1), ('network', 1), ('adhocnets', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1), ('reviewed', 1)]
[('book', 2), ('history', 2), ('provides', 1), ('effort', 1), ('national', 1), ('science', 1), ('foundation', 1), ('broaden', 1), ('participation', 1), ('computing', 1), ('briefly', 1), ('discus', 1), ('early', 1), ('nsf', 1), ('involvement', 1), ('education', 1), ('workforce', 1), ('issue', 1), ('turn', 1)]
[('american', 2), ('text', 1), ('examines', 1), ('detail', 1), ('issue', 1), ('underrepresentation', 1), ('woman', 1), ('african', 1), ('indian', 1), ('hispanic', 1), ('computing', 1), ('discipline', 1), ('work', 1), ('review', 1), ('underlying', 1), ('cause', 1), ('effort', 1), ('various', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('distributed', 1), ('computer', 1), ('communication', 1), ('network', 1), ('dccn', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('selected', 1), ('workshop', 1), ('co', 1), ('located', 1), ('th', 1), ('international', 1), ('conference', 1), ('theory', 1), ('practice', 1), ('digital', 1), ('library', 1), ('tpdl', 1), ('held', 1), ('valletta', 1), ('malta', 1), ('september', 1), ('volume', 1), ('organized', 1)]
[('book', 2), ('lt', 1), ('gt', 1), ('deal', 1), ('problem', 1), ('finding', 1), ('suitable', 1), ('language', 1), ('represent', 1), ('specific', 1), ('class', 1), ('petri', 1), ('net', 1), ('studied', 1), ('widely', 1), ('accepted', 1), ('model', 1), ('distributed', 1), ('system', 1), ('contribution', 1), ('amount', 1)]
[('lt', 1), ('gt', 1), ('classroom', 1), ('tested', 1), ('clearly', 1), ('written', 1), ('textbook', 1), ('present', 1), ('focused', 1), ('guide', 1), ('conceptual', 1), ('foundation', 1), ('compilation', 1), ('explaining', 1), ('fundamental', 1), ('principle', 1), ('algorithm', 1), ('used', 1), ('defining', 1), ('syntax', 1), ('language', 1), ('implementing', 1)]
[('cloud', 2), ('lt', 1), ('gt', 1), ('reader', 1), ('friendly', 1), ('textbook', 1), ('present', 1), ('comprehensive', 1), ('overview', 1), ('essential', 1), ('aspect', 1), ('computing', 1), ('origin', 1), ('field', 1), ('latest', 1), ('development', 1), ('rather', 1), ('merely', 1), ('discussing', 1), ('paradigm', 1), ('isolation', 1), ('text', 1)]
[('present', 2), ('book', 1), ('review', 1), ('challenging', 1), ('issue', 1), ('barrier', 1), ('greater', 1), ('implementation', 1), ('cloud', 1), ('computing', 1), ('paradigm', 1), ('together', 1), ('latest', 1), ('research', 1), ('developing', 1), ('potential', 1), ('solution', 1), ('topic', 1), ('feature', 1), ('focus', 1)]
[('decision', 3), ('learning', 3), ('reinforcement', 2), ('lt', 1), ('gt', 1), ('book', 1), ('present', 1), ('recent', 1), ('research', 1), ('making', 1), ('uncertainty', 1), ('particular', 1), ('expert', 1), ('advice', 1), ('core', 1), ('element', 1), ('theory', 1), ('markov', 1), ('process', 1)]
[('system', 2), ('simulation', 2), ('lt', 1), ('gt', 1), ('easy', 1), ('follow', 1), ('textbook', 1), ('provides', 1), ('exercise', 1), ('driven', 1), ('guide', 1), ('use', 1), ('discrete', 1), ('event', 1), ('specification', 1), ('devs', 1), ('modeling', 1), ('formalism', 1), ('entity', 1), ('structure', 1), ('s', 1), ('model', 1), ('ontology', 1), ('supported', 1)]
[('lt', 1), ('gt', 1), ('hand', 1), ('textbook', 1), ('reference', 1), ('present', 1), ('introduction', 1), ('fundamental', 1), ('aspect', 1), ('modelling', 1), ('simulation', 1), ('wishing', 1), ('learn', 1), ('methodology', 1), ('need', 1), ('apply', 1), ('work', 1)]
[('lt', 1), ('gt', 1), ('fifty', 1), ('year', 1), ('first', 1), ('experiment', 1), ('computational', 1), ('art', 1), ('international', 1), ('interest', 1), ('history', 1), ('subject', 1), ('remains', 1), ('strong', 1), ('time', 1), ('almost', 1), ('uncovered', 1), ('book', 1), ('began', 1), ('exhibition', 1), ('algorithmic', 1), ('sign', 1)]
[('thorough', 2), ('video', 2), ('book', 1), ('provides', 1), ('overview', 1), ('recent', 1), ('progress', 1), ('object', 1), ('segmentation', 1), ('providing', 1), ('researcher', 1), ('industrial', 1), ('practitioner', 1), ('information', 1), ('important', 1), ('problem', 1), ('developed', 1), ('technology', 1), ('area', 1)]
[('future', 2), ('book', 1), ('feature', 1), ('selection', 1), ('published', 1), ('writing', 1), ('public', 1), ('presentation', 1), ('jim', 1), ('dator', 1), ('chapter', 1), ('directly', 1), ('concerned', 1), ('study', 1), ('idea', 1), ('topic', 1), ('cover', 1), ('many', 1), ('discipline', 1), ('subject', 1)]
[('cyber', 3), ('system', 2), ('lt', 1), ('gt', 1), ('rapid', 1), ('growth', 1), ('reliance', 1), ('permeated', 1), ('society', 1), ('government', 1), ('military', 1), ('demonstrated', 1), ('book', 1), ('author', 1), ('discus', 1), ('ai', 1), ('powered', 1), ('designed', 1), ('amp', 1), ('nbsp', 1), ('protect', 1)]
[('lt', 1), ('gt', 1), ('argumentation', 1), ('mining', 1), ('application', 1), ('natural', 1), ('language', 1), ('processing', 1), ('nlp', 1), ('emerged', 1), ('year', 1), ('ago', 1), ('recently', 1), ('enjoyed', 1), ('considerable', 1), ('popularity', 1), ('demonstrated', 1), ('series', 1), ('international', 1), ('workshop', 1), ('rising', 1), ('number', 1)]
[('application', 2), ('lt', 1), ('gt', 1), ('evolving', 1), ('technological', 1), ('advancement', 1), ('big', 1), ('data', 1), ('smartphone', 1), ('mobile', 1), ('software', 1), ('internet', 1), ('thing', 1), ('vast', 1), ('range', 1), ('area', 1), ('sort', 1), ('human', 1), ('activity', 1), ('profession', 1), ('lead', 1), ('current', 1), ('research', 1), ('toward', 1)]
[('book', 2), ('blockchains', 2), ('take', 1), ('reader', 1), ('sensational', 1), ('history', 1), ('potential', 1), ('revolutionize', 1), ('database', 1), ('system', 1), ('future', 1), ('order', 1), ('demystify', 1), ('capitalizes', 1), ('decade', 1), ('research', 1), ('field', 1), ('testing', 1)]
[('lt', 3), ('gt', 3), ('social', 2), ('recent', 1), ('year', 1), ('online', 1), ('networking', 1), ('revolutionized', 1), ('interpersonal', 1), ('communication', 1), ('newer', 1), ('research', 1), ('language', 1), ('analysis', 1), ('medium', 1), ('increasingly', 1), ('focusing', 1), ('latter', 1), ('impact', 1), ('daily', 1), ('life', 1)]
[('lt', 3), ('div', 3), ('gt', 3), ('boundary', 2), ('journalism', 2), ('change', 1), ('affected', 1), ('definition', 1), ('last', 1), ('decade', 1), ('technology', 1), ('influence', 1), ('threat', 1), ('opportunity', 1), ('identified', 1), ('blurred', 1)]
[('medium', 2), ('video', 2), ('book', 1), ('present', 1), ('latest', 1), ('technological', 1), ('advance', 1), ('practical', 1), ('tool', 1), ('discovering', 1), ('verifying', 1), ('visualizing', 1), ('social', 1), ('content', 1), ('managing', 1), ('related', 1), ('right', 1), ('digital', 1), ('revolution', 1), ('bringing', 1), ('breaking', 1), ('news', 1), ('online', 1)]
[('lt', 3), ('gt', 3), ('textbook', 1), ('designed', 1), ('postgraduate', 1), ('study', 1), ('field', 1), ('computer', 1), ('vision', 1), ('amp', 1), ('nbsp', 1), ('provides', 1), ('useful', 1), ('reference', 1), ('industrial', 1), ('practitioner', 1), ('example', 1), ('area', 1), ('data', 1), ('capture', 1)]
[('multimedia', 2), ('application', 2), ('book', 1), ('explores', 1), ('emerged', 1), ('computer', 1), ('vision', 1), ('machine', 1), ('learning', 1), ('technology', 1), ('state', 1), ('art', 1), ('include', 1), ('mpeg', 1), ('interactive', 1), ('retrieval', 1), ('multimodal', 1), ('fusion', 1), ('annotation', 1), ('database', 1)]
[('smart', 3), ('human', 2), ('home', 2), ('book', 1), ('describes', 1), ('innovative', 1), ('approach', 1), ('interaction', 1), ('environment', 1), ('attempt', 1), ('understand', 1), ('intuitive', 1), ('multi', 1), ('modal', 1), ('centred', 1), ('communication', 1), ('state', 1), ('art', 1)]
[('cognitive', 1), ('model', 1), ('software', 1), ('tool', 1), ('widely', 1), ('used', 1), ('research', 1), ('commercial', 1), ('purpose', 1), ('although', 1), ('proved', 1), ('useful', 1), ('limitation', 1), ('preventing', 1), ('large', 1), ('scale', 1), ('modeling', 1), ('simulation', 1), ('task', 1), ('carried', 1)]
[('authored', 1), ('leading', 1), ('expert', 1), ('field', 1), ('book', 1), ('introduces', 1), ('innovative', 1), ('methodology', 1), ('harness', 1), ('power', 1), ('fuzzy', 1), ('logic', 1), ('enhance', 1), ('decision', 1), ('making', 1), ('multi', 1), ('attribute', 1), ('scenario', 1), ('world', 1), ('complexity', 1), ('uncertainty', 1), ('effective', 1)]
[('numerical', 2), ('method', 2), ('book', 1), ('brings', 1), ('together', 1), ('research', 1), ('adapted', 1), ('graphic', 1), ('processing', 1), ('unit', 1), ('gpus', 1), ('explains', 1), ('recent', 1), ('effort', 1), ('adapt', 1), ('classic', 1), ('including', 1), ('solution', 1), ('linear', 1), ('equation', 1), ('fft', 1), ('massively', 1), ('parallel', 1), ('gpu', 1)]
[('passive', 2), ('tag', 2), ('springerbrief', 1), ('examines', 1), ('use', 1), ('cheap', 1), ('commercial', 1), ('rfid', 1), ('achieve', 1), ('accurate', 1), ('device', 1), ('free', 1), ('object', 1), ('tracking', 1), ('present', 1), ('sensitive', 1), ('detector', 1), ('named', 1), ('twin', 1), ('us', 1), ('pair', 1), ('adjacent', 1), ('detect', 1), ('uncooperative', 1), ('target', 1)]
[('give', 1), ('reader', 1), ('detailed', 1), ('account', 1), ('cyber', 1), ('security', 1), ('switzerland', 1), ('evolved', 1), ('year', 1), ('using', 1), ('official', 1), ('document', 1), ('considerable', 1), ('amount', 1), ('inside', 1), ('knowledge', 1), ('focus', 1), ('key', 1), ('idea', 1), ('institutional', 1), ('arrangement', 1), ('publication', 1)]
[('engineering', 4), ('approach', 2), ('taking', 1), ('practical', 1), ('author', 1), ('describes', 1), ('detail', 1), ('database', 1), ('conversion', 1), ('technique', 1), ('reverse', 1), ('forward', 1), ('methodology', 1), ('information', 1), ('system', 1), ('offering', 1), ('systematic', 1), ('software', 1)]
[('spectrum', 2), ('sharing', 2), ('springerbrief', 1), ('present', 1), ('intelligent', 1), ('technology', 1), ('future', 1), ('wireless', 1), ('communication', 1), ('system', 1), ('explains', 1), ('widely', 1), ('used', 1), ('opportunistic', 1), ('access', 1), ('tv', 1), ('white', 1), ('space', 1), ('approved', 1), ('fcc', 1), ('four', 1), ('new', 1)]
[('increasing', 1), ('use', 1), ('computer', 1), ('network', 1), ('internet', 1), ('led', 1), ('need', 1), ('regulation', 1), ('field', 1), ('cybercrime', 1), ('cybersecurity', 1), ('national', 1), ('security', 1), ('springerbrief', 1), ('provides', 1), ('insight', 1), ('development', 1), ('self', 1)]
[('smart', 2), ('grid', 2), ('springerbrief', 1), ('explores', 1), ('opportunity', 1), ('challenge', 1), ('posed', 1), ('evolution', 1), ('allow', 1), ('consumer', 1), ('directly', 1), ('communicate', 1), ('utility', 1), ('provider', 1), ('complex', 1), ('issue', 1), ('architecture', 1)]
[('introductory', 1), ('textbook', 1), ('covering', 1), ('main', 1), ('feature', 1), ('web', 1), ('programming', 1), ('language', 1), ('php', 1), ('mysql', 1), ('together', 1), ('detailed', 1), ('example', 1), ('enable', 1), ('reader', 1), ('whether', 1), ('student', 1), ('taught', 1), ('course', 1), ('independent', 1), ('learner', 1), ('use', 1), ('create', 1)]
[('transmission', 2), ('springerbrief', 1), ('examines', 1), ('anti', 1), ('jamming', 1), ('cognitive', 1), ('radio', 1), ('network', 1), ('crns', 1), ('including', 1), ('several', 1), ('recent', 1), ('related', 1), ('research', 1), ('topic', 1), ('within', 1), ('field', 1), ('author', 1), ('introduces', 1), ('based', 1), ('uncoordinated', 1), ('spread', 1), ('spectrum', 1)]
[('wsns', 2), ('resilient', 2), ('operation', 2), ('springer', 1), ('brief', 1), ('introduces', 1), ('wireless', 1), ('sensor', 1), ('network', 1), ('need', 1), ('wsn', 1), ('application', 1), ('domain', 1), ('present', 1), ('traditional', 1), ('approach', 1), ('providing', 1), ('ensure', 1), ('continuity', 1), ('data', 1), ('delivery', 1), ('even', 1)]
[('new', 2), ('approach', 2), ('book', 1), ('present', 1), ('number', 1), ('method', 1), ('tool', 1), ('aimed', 1), ('assist', 1), ('researcher', 1), ('designer', 1), ('early', 1), ('stage', 1), ('design', 1), ('process', 1), ('focusing', 1), ('need', 1), ('development', 1), ('interactive', 1), ('product', 1), ('system', 1)]
[('application', 2), ('continued', 1), ('gaming', 1), ('training', 1), ('education', 1), ('seen', 1), ('exponential', 1), ('growth', 1), ('past', 1), ('decade', 1), ('book', 1), ('offer', 1), ('insightful', 1), ('introduction', 1), ('current', 1), ('development', 1), ('game', 1), ('technology', 1), ('within', 1)]
[('challenge', 2), ('emerging', 1), ('spatial', 1), ('big', 1), ('data', 1), ('sbd', 1), ('transformative', 1), ('potential', 1), ('solving', 1), ('many', 1), ('grand', 1), ('societal', 1), ('water', 1), ('resource', 1), ('management', 1), ('food', 1), ('security', 1), ('disaster', 1), ('response', 1), ('transportation', 1), ('significant', 1), ('computational', 1), ('exist', 1)]
[('iot', 3), ('descriptive', 1), ('practical', 1), ('guide', 1), ('explains', 1), ('build', 1), ('commercially', 1), ('impactful', 1), ('operationally', 1), ('effective', 1), ('technically', 1), ('robust', 1), ('ecosystem', 1), ('take', 1), ('advantage', 1), ('revolution', 1), ('drive', 1), ('business', 1), ('growth', 1), ('consumer', 1)]
[('end', 2), ('user', 2), ('book', 1), ('provides', 1), ('depth', 1), ('insight', 1), ('emerging', 1), ('paradigm', 1), ('development', 1), ('eud', 1), ('discussing', 1), ('diversity', 1), ('potential', 1), ('creating', 1), ('effective', 1), ('environment', 1), ('containing', 1), ('unique', 1), ('set', 1), ('contribution', 1), ('number', 1)]
[('nbsp', 4), ('user', 2), ('book', 1), ('provides', 1), ('overview', 1), ('latest', 1), ('development', 1), ('fast', 1), ('growing', 1), ('field', 1), ('tangible', 1), ('interface', 1), ('present', 1), ('new', 1), ('type', 1), ('modeling', 1), ('environment', 1), ('interact', 1), ('geospatial', 1), ('data', 1), ('simulation', 1)]
[('germany', 2), ('government', 1), ('presented', 1), ('third', 1), ('cybersecurity', 1), ('strategy', 1), ('aim', 1), ('strengthen', 1), ('national', 1), ('cyber', 1), ('defence', 1), ('architecture', 1), ('cooperation', 1), ('state', 1), ('industry', 1), ('individual', 1), ('user', 1), ('agency', 1), ('many', 1), ('year', 1)]
[('informatics', 2), ('textbook', 1), ('begin', 1), ('introduction', 1), ('healthcare', 1), ('delivery', 1), ('system', 1), ('many', 1), ('systemic', 1), ('challenge', 1), ('prior', 1), ('effort', 1), ('develop', 1), ('deploy', 1), ('tool', 1), ('help', 1), ('overcome', 1), ('problem', 1), ('go', 1), ('discus', 1), ('health', 1)]
[('programming', 3), ('unix', 2), ('linux', 2), ('covering', 1), ('essential', 1), ('component', 1), ('including', 1), ('process', 1), ('management', 1), ('concurrent', 1), ('timer', 1), ('time', 1), ('service', 1), ('file', 1), ('system', 1), ('network', 1), ('textbook', 1), ('emphasizes', 1), ('practice', 1), ('environment', 1)]
[('nbsp', 2), ('privacy', 2), ('challenge', 2), ('fog', 2), ('springerbrief', 1), ('cover', 1), ('security', 1), ('computing', 1), ('proposes', 1), ('new', 1), ('secure', 1), ('preserving', 1), ('mechanism', 1), ('resolve', 1), ('securing', 1), ('assisted', 1), ('iot', 1), ('application', 1), ('chapter', 1), ('introduces', 1)]
[('book', 1), ('put', 1), ('place', 1), ('accessible', 1), ('form', 1), ('richard', 1), ('berk', 1), ('recent', 1), ('work', 1), ('forecast', 1), ('offending', 1), ('individual', 1), ('already', 1), ('criminal', 1), ('justice', 1), ('custody', 1), ('using', 1), ('machine', 1), ('learning', 1), ('statistical', 1), ('procedure', 1), ('trained', 1), ('large', 1), ('datasets', 1)]
[('nbsp', 2), ('cause', 2), ('book', 1), ('present', 1), ('ground', 1), ('breaking', 1), ('advance', 1), ('domain', 1), ('causal', 1), ('structure', 1), ('learning', 1), ('problem', 1), ('distinguishing', 1), ('effect', 1), ('altitude', 1), ('change', 1), ('atmospheric', 1), ('pressure', 1), ('vice', 1), ('versa', 1), ('cast', 1), ('binary', 1)]
[('system', 2), ('nbsp', 2), ('comprehensive', 1), ('overview', 1), ('iot', 1), ('architecture', 1), ('includes', 1), ('depth', 1), ('treatment', 1), ('key', 1), ('component', 1), ('edge', 1), ('communication', 1), ('cloud', 1), ('data', 1), ('processing', 1), ('security', 1), ('management', 1), ('us', 1), ('internet', 1), ('thing', 1), ('concept', 1)]
[('dimension', 4), ('fractal', 3), ('network', 3), ('current', 1), ('interest', 1), ('result', 1), ('century', 1), ('previous', 1), ('research', 1), ('nbsp', 1), ('tie', 1), ('theory', 1), ('method', 1), ('computing', 1)]
[('big', 2), ('data', 2), ('emergency', 2), ('management', 2), ('contributed', 1), ('volume', 1), ('discus', 1), ('essential', 1), ('topic', 1), ('fundamental', 1), ('primarily', 1), ('focus', 1), ('application', 1), ('walk', 1), ('reader', 1), ('state', 1), ('art', 1)]
[('boko', 3), ('haram', 2), ('data', 2), ('driven', 2), ('model', 2), ('first', 1), ('study', 1), ('brings', 1), ('advanced', 1), ('machine', 1), ('learning', 1), ('learn', 1), ('capable', 1), ('predicting', 1), ('wide', 1), ('range', 1), ('attack', 1), ('carried', 1), ('develop', 1), ('policy', 1), ('shape', 1)]
[('atm', 3), ('cybercrime', 2), ('hacking', 2), ('book', 1), ('begin', 1), ('broader', 1), ('discussion', 1), ('attack', 1), ('targeting', 1), ('focus', 1), ('specific', 1), ('type', 1), ('named', 1), ('discus', 1), ('full', 1), ('scope', 1), ('aspect', 1), ('including', 1), ('technology', 1), ('modus', 1)]
[('little', 2), ('programming', 2), ('textbook', 1), ('assumes', 1), ('knowledge', 1), ('whether', 1), ('dabbled', 1), ('javascript', 1), ('played', 1), ('bit', 1), ('python', 1), ('written', 1), ('java', 1), ('virtually', 1), ('experience', 1), ('find', 1)]
[('privacy', 2), ('textbook', 1), ('provides', 1), ('unique', 1), ('lens', 1), ('myriad', 1), ('existing', 1), ('enhancing', 1), ('technology', 1), ('pet', 1), ('easily', 1), ('comprehended', 1), ('appreciated', 1), ('answer', 1), ('key', 1), ('centered', 1), ('nbsp', 1), ('question', 1), ('clear', 1), ('detailed', 1), ('explanation', 1)]
[('science', 4), ('high', 2), ('speed', 2), ('network', 2), ('dmz', 2), ('book', 1), ('provides', 1), ('practical', 1), ('knowledge', 1), ('skill', 1), ('emphasizing', 1), ('demilitarized', 1), ('zone', 1), ('designed', 1), ('facilitate', 1), ('transfer', 1), ('big', 1), ('data', 1), ('presented', 1)]
[('cybersecurity', 2), ('springerbrief', 1), ('nbsp', 1), ('contains', 1), ('eight', 1), ('chapter', 1), ('present', 1), ('overview', 1), ('evolution', 1), ('moroccan', 1), ('strategy', 1), ('draw', 1), ('attention', 1), ('development', 1), ('morocco', 1), ('ensure', 1), ('national', 1), ('security', 1)]
[('computer', 2), ('graphic', 2), ('student', 1), ('studying', 1), ('different', 1), ('branch', 1), ('need', 1), ('familiar', 1), ('geometry', 1), ('matrix', 1), ('vector', 1), ('rotation', 1), ('transforms', 1), ('quaternion', 1), ('curve', 1), ('surface', 1), ('software', 1), ('becomes', 1), ('increasingly', 1), ('sophisticated', 1), ('calculus', 1)]
[('manufacturing', 2), ('provides', 2), ('presenting', 1), ('concept', 1), ('design', 1), ('implementation', 1), ('configurable', 1), ('intelligent', 1), ('optimization', 1), ('algorithm', 1), ('system', 1), ('book', 1), ('new', 1), ('configuration', 1), ('method', 1), ('optimize', 1), ('process', 1), ('comprehensive', 1)]
[('new', 2), ('written', 1), ('team', 1), ('world', 1), ('renowned', 1), ('artist', 1), ('researcher', 1), ('practitioner', 1), ('pioneer', 1), ('using', 1), ('augmented', 1), ('reality', 1), ('based', 1), ('creative', 1), ('work', 1), ('installation', 1), ('form', 1), ('art', 1), ('first', 1), ('book', 1), ('explore', 1), ('exciting', 1), ('field', 1)]
[('provides', 2), ('book', 1), ('practical', 1), ('guidance', 1), ('awareness', 1), ('growing', 1), ('body', 1), ('knowledge', 1), ('developing', 1), ('across', 1), ('variety', 1), ('discipline', 1), ('initiative', 1), ('celebration', 1), ('gavriel', 1), ('salvendy', 1), ('international', 1), ('symposium', 1), ('gsis', 1), ('survey', 1), ('topic', 1)]
[('process', 2), ('mining', 2), ('brief', 1), ('presentation', 1), ('state', 1), ('art', 1), ('technique', 1), ('andrea', 1), ('burratin', 1), ('proposes', 1), ('different', 1), ('scenario', 1), ('deployment', 1), ('project', 1), ('particular', 1), ('characterization', 1), ('company', 1), ('term', 1)]
[('traceme', 3), ('evolution', 2), ('book', 1), ('present', 1), ('traceability', 1), ('based', 1), ('method', 1), ('conceptual', 1), ('model', 1), ('whose', 1), ('general', 1), ('purpose', 1), ('support', 1), ('information', 1), ('system', 1), ('providing', 1), ('set', 1), ('four', 1), ('chunk', 1), ('situational', 1), ('oriented', 1)]
[('spread', 2), ('process', 2), ('information', 2), ('nbsp', 2), ('doctoral', 1), ('thesis', 1), ('focus', 1), ('organization', 1), ('particular', 1), ('mitigation', 1), ('problem', 1), ('caused', 1), ('single', 1), ('numerous', 1), ('model', 1), ('document', 1)]
[('fuzzy', 3), ('present', 2), ('system', 2), ('book', 1), ('date', 1), ('research', 1), ('development', 1), ('novel', 1), ('methodology', 1), ('control', 1), ('solution', 1), ('series', 1), ('problem', 1), ('new', 1), ('approach', 1), ('analysis', 1), ('synthesis', 1), ('time', 1), ('delay', 1), ('stochastic', 1)]
[('problem', 2), ('entity', 2), ('multiagent', 1), ('learning', 1), ('mal', 1), ('concerned', 1), ('study', 1), ('intelligent', 1), ('learn', 1), ('adapt', 1), ('presence', 1), ('simultaneously', 1), ('adapting', 1), ('often', 1), ('studied', 1), ('stylized', 1), ('setting', 1)]
[('optimization', 2), ('single', 1), ('multi', 1), ('objective', 1), ('evolutionary', 1), ('computation', 1), ('moea', 1), ('genetic', 1), ('algorithm', 1), ('gas', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('anns', 1), ('fuzzy', 1), ('controller', 1), ('fcs', 1), ('particle', 1), ('swarm', 1), ('pso', 1), ('ant', 1), ('colony', 1), ('aco', 1), ('becoming', 1), ('omnipresent', 1)]
[('collective', 2), ('computational', 2), ('intelligence', 2), ('book', 1), ('consists', 1), ('chapter', 1), ('author', 1), ('deal', 1), ('different', 1), ('theoretical', 1), ('practical', 1), ('aspect', 1), ('new', 1), ('trend', 1), ('technique', 1), ('method', 1), ('algorithm', 1)]
[('paper', 2), ('book', 1), ('contains', 1), ('selected', 1), ('presented', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('sig', 1), ('international', 1), ('summer', 1), ('school', 1), ('privacy', 1), ('identity', 1), ('management', 1), ('held', 1), ('windisch', 1), ('switzerland', 1), ('august', 1), ('full', 1), ('included', 1)]
[('proceeding', 2), ('three', 1), ('volume', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('european', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('skopje', 1), ('macedonia', 1), ('september', 1), ('nbsp', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('italian', 1), ('workshop', 1), ('artificial', 1), ('life', 1), ('evolutionary', 1), ('computation', 1), ('wivace', 1), ('held', 1), ('rende', 1), ('italy', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('thoroughly', 1)]
[('agile', 2), ('method', 2), ('introduction', 1), ('popularization', 1), ('software', 1), ('development', 1), ('existing', 1), ('relationship', 1), ('working', 1), ('agreement', 1), ('user', 1), ('experience', 1), ('group', 1), ('developer', 1), ('disrupted', 1), ('introduce', 1), ('new', 1), ('concept', 1), ('product', 1)]
[('object', 3), ('data', 2), ('interconnected', 2), ('network', 2), ('real', 1), ('world', 1), ('physical', 1), ('abstract', 1), ('forming', 1), ('gigantic', 1), ('structuring', 1), ('interaction', 1), ('multiple', 1), ('type', 1), ('become', 1), ('semi', 1), ('structured', 1)]
[('domain', 3), ('book', 1), ('demonstrates', 1), ('formally', 1), ('model', 1), ('various', 1), ('mathematical', 1), ('including', 1), ('algorithm', 1), ('operating', 1), ('way', 1), ('make', 1), ('amenable', 1), ('fully', 1), ('automatic', 1), ('analysis', 1), ('computer', 1), ('software', 1), ('presented', 1), ('typically', 1)]
[('student', 2), ('upper', 1), ('undergraduate', 1), ('textbook', 1), ('teach', 1), ('programming', 1), ('gi', 1), ('using', 1), ('mix', 1), ('computer', 1), ('science', 1), ('theory', 1), ('hand', 1), ('activity', 1), ('aim', 1), ('empowering', 1), ('understand', 1), ('fundamental', 1), ('apply', 1), ('knowledge', 1), ('beyond', 1), ('specific', 1)]
[('problem', 2), ('book', 2), ('approximately', 1), ('provides', 1), ('collection', 1), ('practical', 1), ('basic', 1), ('advanced', 1), ('data', 1), ('structure', 1), ('design', 1), ('analysis', 1), ('algorithm', 1), ('make', 1), ('suitable', 1), ('self', 1), ('instruction', 1), ('third', 1)]
[('science', 3), ('data', 2), ('address', 1), ('need', 1), ('extract', 1), ('knowledge', 1), ('information', 1), ('volume', 1), ('often', 1), ('real', 1), ('time', 1), ('source', 1), ('wide', 1), ('variety', 1), ('discipline', 1), ('astronomy', 1), ('bioinformatics', 1), ('engineering', 1), ('medicine', 1), ('social', 1), ('business', 1)]
[('enterprise', 3), ('book', 1), ('brings', 1), ('together', 1), ('modeling', 1), ('software', 1), ('specification', 1), ('providing', 1), ('conceptual', 1), ('background', 1), ('methodological', 1), ('guideline', 1), ('concern', 1), ('design', 1), ('information', 1), ('system', 1), ('corresponding', 1), ('discipline', 1)]
[('volume', 2), ('computational', 2), ('optimization', 2), ('comprehensive', 1), ('collection', 1), ('extended', 1), ('contribution', 1), ('workshop', 1), ('held', 1), ('warsaw', 1), ('poland', 1), ('september', 1), ('book', 1), ('present', 1), ('recent', 1), ('advance', 1)]
[('data', 2), ('using', 2), ('method', 2), ('textbook', 1), ('provides', 1), ('student', 1), ('tool', 1), ('need', 1), ('analyze', 1), ('complex', 1), ('science', 1), ('machine', 1), ('learning', 1), ('artificial', 1), ('intelligence', 1), ('author', 1), ('include', 1), ('presentation', 1), ('along', 1), ('application', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('social', 1), ('robotics', 1), ('icsr', 1), ('held', 1), ('paris', 1), ('france', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('mining', 1), ('intelligence', 1), ('knowledge', 1), ('exploration', 1), ('mike', 1), ('held', 1), ('tamil', 1), ('nadu', 1), ('india', 1), ('december', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('recommender', 1), ('system', 1), ('software', 1), ('program', 1), ('learn', 1), ('human', 1), ('behavior', 1), ('make', 1), ('prediction', 1), ('product', 1), ('expected', 1), ('appreciate', 1), ('purchase', 1), ('become', 1), ('integral', 1), ('part', 1), ('everyday', 1), ('life', 1), ('proliferate', 1), ('across', 1), ('electronic', 1), ('commerce', 1)]
[('book', 1), ('present', 1), ('revised', 1), ('extended', 1), ('version', 1), ('best', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('computational', 1), ('intelligence', 1), ('ijcci', 1), ('held', 1), ('funchal', 1), ('madeira', 1), ('november', 1), ('focus', 1), ('four', 1), ('main', 1)]
[('technique', 2), ('textbook', 1), ('overview', 1), ('whole', 1), ('spectrum', 1), ('formal', 1), ('method', 1), ('aimed', 1), ('verifying', 1), ('correctness', 1), ('software', 1), ('used', 1), ('practice', 1), ('focus', 1), ('whereby', 1), ('user', 1), ('control', 1), ('property', 1)]
[('ambient', 1), ('intelligence', 1), ('ami', 1), ('element', 1), ('pervasive', 1), ('computing', 1), ('brings', 1), ('smartness', 1), ('living', 1), ('business', 1), ('environment', 1), ('make', 1), ('sensitive', 1), ('adaptive', 1), ('autonomous', 1), ('personalized', 1), ('human', 1), ('need', 1), ('refers', 1), ('intelligent', 1), ('interface', 1)]
[('decision', 3), ('group', 2), ('negotiation', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('gdn', 1), ('held', 1), ('stuttgart', 1), ('germany', 1), ('august', 1), ('field', 1), ('focus', 1), ('process', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('business', 1), ('icsob', 1), ('held', 1), ('essen', 1), ('germany', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('decision', 1), ('support', 1), ('system', 1), ('icdsst', 1), ('held', 1), ('heraklion', 1), ('greece', 1), ('main', 1), ('topic', 1), ('year', 1), ('sustainable', 1), ('data', 1), ('driven', 1), ('evidence', 1), ('based', 1)]
[('social', 2), ('identity', 2), ('book', 1), ('present', 1), ('novel', 1), ('research', 1), ('area', 1), ('security', 1), ('using', 1), ('mobile', 1), ('platform', 1), ('topic', 1), ('cover', 1), ('broad', 1), ('range', 1), ('application', 1), ('related', 1), ('securing', 1), ('latest', 1), ('advance', 1), ('field', 1), ('including', 1)]
[('international', 2), ('bmsd', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('symposium', 1), ('business', 1), ('modeling', 1), ('software', 1), ('design', 1), ('took', 1), ('place', 1), ('berlin', 1), ('germany', 1), ('july', 1), ('leading', 1), ('forum', 1), ('brings', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('software', 1), ('business', 1), ('icsob', 1), ('held', 1), ('november', 1), ('originally', 1), ('planned', 1), ('take', 1), ('place', 1), ('karlskrona', 1), ('sweden', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('group', 1), ('decision', 1), ('negotiation', 1), ('gdn', 1), ('planned', 1), ('toronto', 1), ('canada', 1), ('june', 1), ('virtually', 1), ('due', 1)]
[('caise', 2), ('held', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('forum', 1), ('part', 1), ('rd', 1), ('international', 1), ('advanced', 1), ('information', 1), ('system', 1), ('engineering', 1), ('june', 1), ('virtually', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('technology', 1), ('interactive', 1), ('entertainment', 1), ('intetain', 1), ('held', 1), ('utrecht', 1), ('netherlands', 1), ('june', 1), ('full', 1), ('paper', 1), ('short', 1), ('workshop', 1)]
[('cimps', 2), ('th', 2), ('book', 1), ('contains', 1), ('selection', 1), ('paper', 1), ('international', 1), ('conference', 1), ('software', 1), ('process', 1), ('improvement', 1), ('held', 1), ('october', 1), ('mazatlán', 1), ('sinaloa', 1), ('méxico', 1), ('global', 1), ('forum', 1), ('researcher', 1)]
[('informationreuse', 1), ('integration', 1), ('address', 1), ('efficient', 1), ('extension', 1), ('creation', 1), ('ofknowledge', 1), ('exploitation', 1), ('kolmogorov', 1), ('complexity', 1), ('extractionand', 1), ('application', 1), ('domain', 1), ('symmetry', 1), ('knowledge', 1), ('seems', 1), ('novel', 1), ('canmore', 1)]
[('conference', 2), ('isat', 2), ('four', 1), ('volume', 1), ('set', 1), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('system', 1), ('architecture', 1), ('technology', 1), ('short', 1), ('held', 1), ('september', 1), ('karpacz', 1), ('poland', 1)]
[('cyber', 3), ('security', 2), ('stream', 2), ('book', 1), ('present', 1), ('finding', 1), ('paper', 1), ('accepted', 1), ('education', 1), ('technology', 1), ('national', 1), ('summit', 1), ('research', 1), ('track', 1), ('reporting', 1), ('latest', 1), ('advance', 1), ('topic', 1), ('ranging', 1), ('software', 1)]
[('decision', 3), ('making', 3), ('interactive', 2), ('fuzzy', 2), ('volume', 1), ('devoted', 1), ('iterative', 1), ('process', 1), ('brief', 1), ('inherently', 1), ('set', 1), ('help', 1), ('realize', 1), ('human', 1), ('machine', 1), ('communication', 1), ('efficient', 1), ('way', 1)]
[('shared', 2), ('book', 1), ('examines', 1), ('field', 1), ('parallel', 1), ('database', 1), ('management', 1), ('system', 1), ('illustrates', 1), ('variety', 1), ('solution', 1), ('based', 1), ('storage', 1), ('nothing', 1), ('architecture', 1), ('constantly', 1), ('dropping', 1), ('memory', 1), ('price', 1), ('desire', 1), ('operate', 1)]
[('vulnerability', 2), ('year', 2), ('first', 1), ('book', 1), ('us', 1), ('cyber', 1), ('data', 1), ('explore', 1), ('four', 1), ('million', 1), ('machine', 1), ('per', 1), ('covering', 1), ('period', 1), ('reported', 1), ('symantec', 1), ('analyzing', 1), ('billion', 1), ('telemetry', 1), ('report', 1), ('comprising', 1), ('malware', 1)]
[('configuration', 2), ('contributed', 1), ('volume', 1), ('leading', 1), ('international', 1), ('researcher', 1), ('explore', 1), ('modeling', 1), ('checking', 1), ('vulnerability', 1), ('risk', 1), ('assessment', 1), ('analysis', 1), ('diagnostics', 1), ('discovery', 1), ('author', 1), ('equip', 1), ('reader', 1), ('understand', 1), ('automated', 1)]
[('key', 2), ('security', 2), ('book', 1), ('author', 1), ('present', 1), ('ten', 1), ('law', 1), ('governing', 1), ('information', 1), ('address', 1), ('topic', 1), ('attack', 1), ('vulnerability', 1), ('threat', 1), ('designing', 1), ('identifying', 1), ('ip', 1), ('asset', 1), ('authentication', 1), ('social', 1), ('engineering', 1), ('informal', 1), ('style', 1)]
[('book', 2), ('perspective', 2), ('share', 1), ('original', 1), ('innovation', 1), ('research', 1), ('lesson', 1), ('learned', 1), ('regarding', 1), ('teaching', 1), ('technological', 1), ('trust', 1), ('based', 1), ('learning', 1), ('system', 1), ('crucial', 1), ('enhancing', 1), ('assessment', 1), ('process', 1), ('course', 1)]
[('innovative', 1), ('textbook', 1), ('present', 1), ('material', 1), ('course', 1), ('modern', 1), ('statistic', 1), ('incorporates', 1), ('python', 1), ('pedagogical', 1), ('practical', 1), ('resource', 1), ('drawing', 1), ('many', 1), ('year', 1), ('teaching', 1), ('conducting', 1), ('research', 1), ('various', 1), ('applied', 1), ('industrial', 1), ('setting', 1)]
[('book', 2), ('consists', 1), ('paper', 1), ('recent', 1), ('progress', 1), ('state', 1), ('art', 1), ('natural', 1), ('computation', 1), ('fuzzy', 1), ('system', 1), ('knowledge', 1), ('discovery', 1), ('useful', 1), ('researcher', 1), ('including', 1), ('professor', 1), ('graduate', 1), ('student', 1), ('staff', 1)]
[('computational', 2), ('process', 2), ('might', 2), ('book', 1), ('address', 1), ('key', 1), ('problem', 1), ('intelligence', 1), ('aim', 1), ('solve', 1), ('including', 1), ('involved', 1), ('complex', 1), ('mathematical', 1), ('reasoning', 1), ('ii', 1), ('contain', 1), ('uncertainty', 1)]
[('main', 2), ('book', 1), ('explores', 1), ('element', 1), ('democracy', 1), ('term', 1), ('normally', 1), ('used', 1), ('describe', 1), ('implementation', 1), ('democratic', 1), ('government', 1), ('process', 1), ('electronic', 1), ('mean', 1), ('provides', 1), ('insight', 1), ('technological', 1), ('human', 1), ('issue', 1), ('regarding', 1)]
[('describes', 2), ('book', 1), ('key', 1), ('cybercrime', 1), ('threat', 1), ('facing', 1), ('individual', 1), ('business', 1), ('organization', 1), ('online', 1), ('world', 1), ('author', 1), ('first', 1), ('explains', 1), ('malware', 1), ('origin', 1), ('extensive', 1), ('underground', 1), ('economy', 1), ('various', 1), ('attack', 1)]
[('use', 2), ('program', 2), ('textbook', 1), ('introduction', 1), ('formal', 1), ('method', 1), ('ranging', 1), ('semantics', 1), ('key', 1), ('programming', 1), ('construct', 1), ('technique', 1), ('analysis', 1), ('verification', 1), ('author', 1), ('graph', 1), ('mechanism', 1), ('representing', 1)]
[('book', 1), ('provides', 1), ('detailed', 1), ('comprehensive', 1), ('overview', 1), ('phase', 1), ('hackathon', 1), ('thus', 1), ('help', 1), ('reduce', 1), ('complexity', 1), ('use', 1), ('opportunity', 1), ('avert', 1), ('pitfall', 1), ('avoid', 1), ('problem', 1), ('addition', 1), ('explains', 1), ('participant', 1)]
[('learning', 3), ('representation', 2), ('data', 2), ('monograph', 1), ('address', 1), ('advance', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('area', 1), ('machine', 1), ('refers', 1), ('modern', 1), ('transformation', 1), ('technique', 1), ('convert', 1), ('different', 1), ('modality', 1), ('complexity', 1)]
[('interface', 3), ('multimodal', 2), ('computer', 2), ('last', 1), ('decade', 1), ('cell', 1), ('phone', 1), ('based', 1), ('combined', 1), ('new', 1), ('medium', 1), ('become', 1), ('dominant', 1), ('worldwide', 1), ('support', 1), ('mobility', 1), ('expand', 1), ('expressive', 1), ('power', 1), ('human', 1), ('input', 1)]
[('huge', 1), ('success', 1), ('personal', 1), ('computing', 1), ('technology', 1), ('brought', 1), ('astonishing', 1), ('benefit', 1), ('individual', 1), ('family', 1), ('community', 1), ('business', 1), ('government', 1), ('transforming', 1), ('human', 1), ('life', 1), ('largely', 1), ('better', 1), ('democratizing', 1), ('transformation', 1), ('happened', 1)]
[('social', 1), ('medium', 1), ('platform', 1), ('latest', 1), ('manifestation', 1), ('series', 1), ('sociotechnical', 1), ('innovation', 1), ('designed', 1), ('enhance', 1), ('civic', 1), ('engagement', 1), ('political', 1), ('participation', 1), ('global', 1), ('activism', 1), ('many', 1), ('researcher', 1), ('started', 1), ('optimist', 1), ('promise', 1)]
[('woman', 2), ('start', 1), ('simple', 1), ('scenario', 1), ('asks', 1), ('high', 1), ('mount', 1), ('everest', 1), ('reply', 1), ('foot', 1), ('nothing', 1), ('simpler', 1), ('suppose', 1), ('rather', 1), ('standing', 1), ('room', 1), ('sitting', 1), ('bus', 1), ('desk', 1)]
[('game', 3), ('online', 2), ('multiplayer', 2), ('lecture', 1), ('introduces', 1), ('fundamental', 1), ('principle', 1), ('primarily', 1), ('massively', 1), ('role', 1), ('playing', 1), ('mmorpgs', 1), ('suitable', 1), ('student', 1), ('faculty', 1), ('interested', 1), ('designing', 1), ('research', 1)]
[('research', 3), ('digital', 2), ('library', 2), ('group', 1), ('researcher', 1), ('chose', 1), ('term', 1), ('describe', 1), ('emerging', 1), ('field', 1), ('development', 1), ('practice', 1), ('virginia', 1), ('tech', 1), ('funded', 1), ('area', 1), ('largely', 1)]
[('study', 2), ('technology', 2), ('information', 1), ('communication', 1), ('context', 1), ('designed', 1), ('implemented', 1), ('used', 1), ('long', 1), ('interested', 1), ('scholar', 1), ('wide', 1), ('range', 1), ('discipline', 1), ('including', 1), ('social', 1), ('computing', 1)]
[('information', 3), ('know', 2), ('everybody', 1), ('relevance', 1), ('ya', 1), ('notion', 1), ('concept', 1), ('idea', 1), ('need', 1), ('explain', 1), ('whatsoever', 1), ('searching', 1), ('relevant', 1), ('using', 1), ('technology', 1), ('became', 1), ('ubiquitous', 1), ('activity', 1), ('contemporary', 1), ('society', 1)]
[('social', 4), ('network', 3), ('multiple', 2), ('proliferation', 1), ('service', 1), ('user', 1), ('individual', 1), ('organization', 1), ('simultaneously', 1), ('involved', 1), ('various', 1), ('purpose', 1), ('fact', 1), ('characterize', 1)]
[('infrastructure', 2), ('increasingly', 1), ('critical', 1), ('reliant', 1), ('computer', 1), ('see', 1), ('example', 1), ('several', 1), ('domain', 1), ('including', 1), ('medical', 1), ('power', 1), ('telecommunication', 1), ('finance', 1), ('although', 1), ('automation', 1), ('advantage', 1), ('increased', 1), ('reliance', 1)]
[('data', 3), ('development', 1), ('big', 1), ('platform', 1), ('managing', 1), ('massive', 1), ('amount', 1), ('wide', 1), ('availability', 1), ('tool', 1), ('processing', 1), ('biggest', 1), ('limitation', 1), ('lack', 1), ('trained', 1), ('expert', 1), ('qualified', 1), ('process', 1), ('interpret', 1)]
[('learning', 2), ('textbook', 1), ('offer', 1), ('comprehensive', 1), ('introduction', 1), ('machine', 1), ('technique', 1), ('algorithm', 1), ('third', 1), ('edition', 1), ('cover', 1), ('newer', 1), ('approach', 1), ('become', 1), ('highly', 1), ('topical', 1), ('including', 1), ('deep', 1), ('auto', 1), ('encoding', 1), ('introductory', 1), ('information', 1)]
[('major', 2), ('new', 1), ('professional', 1), ('reference', 1), ('work', 1), ('fingerprint', 1), ('security', 1), ('system', 1), ('technology', 1), ('leading', 1), ('international', 1), ('researcher', 1), ('field', 1), ('handbook', 1), ('provides', 1), ('authoritative', 1), ('comprehensive', 1), ('coverage', 1), ('topic', 1), ('concept', 1), ('method', 1)]
[('information', 3), ('personal', 2), ('pim', 2), ('six', 2), ('theme', 1), ('always', 1), ('forever', 1), ('part', 1), ('book', 1), ('cover', 1), ('basic', 1), ('management', 1), ('including', 1), ('essential', 1), ('activity', 1), ('different', 1), ('way', 1)]
[('data', 4), ('human', 2), ('ubiquitous', 1), ('challenge', 1), ('learning', 1), ('decision', 1), ('making', 1), ('rank', 1), ('arises', 1), ('situation', 1), ('intelligent', 1), ('system', 1), ('collect', 1), ('preference', 1), ('behavior', 1), ('learn', 1), ('use', 1), ('help', 1), ('make', 1), ('efficient', 1)]
[('task', 2), ('recognizing', 2), ('last', 1), ('year', 1), ('number', 1), ('nlp', 1), ('researcher', 1), ('developed', 1), ('participated', 1), ('textual', 1), ('entailment', 1), ('rte', 1), ('encapsulates', 1), ('natural', 1), ('language', 1), ('understanding', 1), ('capability', 1), ('within', 1), ('simple', 1), ('interface', 1)]
[('language', 4), ('processing', 2), ('english', 2), ('support', 2), ('majority', 1), ('natural', 1), ('nlp', 1), ('good', 1), ('technology', 1), ('standard', 1), ('variety', 1), ('albanian', 1), ('burmese', 1), ('cebuano', 1), ('remains', 1)]
[('insurance', 3), ('cyber', 2), ('risk', 2), ('book', 1), ('provides', 1), ('introduction', 1), ('theory', 1), ('practice', 1), ('economic', 1), ('instrument', 1), ('designed', 1), ('management', 1), ('spreading', 1), ('existed', 1), ('century', 1), ('newest', 1)]
[('approach', 2), ('multi', 2), ('book', 1), ('introduces', 1), ('called', 1), ('stable', 1), ('factorization', 1), ('synthesis', 1), ('feedback', 1), ('controller', 1), ('linear', 1), ('control', 1), ('system', 1), ('key', 1), ('view', 1), ('input', 1), ('output', 1), ('mimo', 1), ('plant', 1), ('wish', 1), ('design', 1)]
[('approach', 2), ('multi', 2), ('book', 1), ('introduces', 1), ('called', 1), ('stable', 1), ('factorization', 1), ('synthesis', 1), ('feedback', 1), ('controller', 1), ('linear', 1), ('control', 1), ('system', 1), ('key', 1), ('view', 1), ('input', 1), ('output', 1), ('mimo', 1), ('plant', 1), ('wish', 1), ('design', 1)]
[('wireless', 1), ('sensor', 1), ('network', 1), ('part', 1), ('everyday', 1), ('life', 1), ('home', 1), ('workplace', 1), ('capable', 1), ('self', 1), ('controlling', 1), ('adapting', 1), ('air', 1), ('conditioning', 1), ('different', 1), ('temperature', 1), ('humidity', 1), ('level', 1), ('sleepless', 1), ('forest', 1), ('ready', 1), ('detect', 1), ('react', 1), ('case', 1)]
[('telecommunication', 2), ('technology', 2), ('book', 1), ('focus', 1), ('practical', 1), ('implementation', 1), ('detail', 1), ('technique', 1), ('security', 1), ('challenge', 1), ('approach', 1), ('implementing', 1), ('quantum', 1), ('modern', 1), ('system', 1), ('author', 1), ('use', 1), ('extensive', 1)]
[('challenge', 2), ('book', 1), ('analysis', 1), ('implication', 1), ('technical', 1), ('legal', 1), ('ethical', 1), ('privacy', 1), ('human', 1), ('right', 1), ('civil', 1), ('liberty', 1), ('regarding', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('national', 1), ('security', 1), ('offer', 1), ('solution', 1)]
[('data', 2), ('access', 1), ('control', 1), ('fundamental', 1), ('service', 1), ('management', 1), ('system', 1), ('provide', 1), ('main', 1), ('goal', 1), ('protect', 1), ('unauthorized', 1), ('write', 1), ('operation', 1), ('particularly', 1), ('crucial', 1), ('today', 1), ('open', 1), ('interconnected', 1), ('world', 1)]
[('spatial', 3), ('management', 2), ('data', 2), ('database', 1), ('deal', 1), ('storage', 1), ('indexing', 1), ('querying', 1), ('feature', 1), ('location', 1), ('geometric', 1), ('extent', 1), ('many', 1), ('application', 1), ('require', 1), ('efficient', 1), ('including', 1), ('geographic', 1), ('information', 1)]
[('computing', 3), ('cloud', 1), ('emerged', 1), ('successful', 1), ('paradigm', 1), ('service', 1), ('oriented', 1), ('revolutionized', 1), ('way', 1), ('infrastructure', 1), ('used', 1), ('success', 1), ('seen', 1), ('proliferation', 1), ('number', 1), ('application', 1), ('deployed', 1)]
[('language', 2), ('nlp', 2), ('use', 2), ('technique', 2), ('natural', 1), ('processing', 1), ('went', 1), ('profound', 1), ('transformation', 1), ('mid', 1), ('shifted', 1), ('make', 1), ('heavy', 1), ('corpus', 1), ('data', 1), ('driven', 1), ('analyze', 1), ('statistical', 1), ('evolved', 1)]
[('contemporary', 2), ('research', 2), ('textbook', 1), ('delve', 1), ('philosophical', 1), ('foundation', 1), ('design', 1), ('particular', 1), ('emphasis', 1), ('methodological', 1), ('tool', 1), ('applied', 1), ('conduct', 1), ('effective', 1), ('multidisciplinary', 1), ('area', 1)]
[('processor', 2), ('parallel', 2), ('textbook', 1), ('cover', 1), ('new', 1), ('development', 1), ('architecture', 1), ('hardware', 1), ('provides', 1), ('detailed', 1), ('description', 1), ('programming', 1), ('technique', 1), ('necessary', 1), ('developing', 1), ('efficient', 1), ('program', 1), ('multicore', 1)]
[('affective', 2), ('learning', 2), ('environment', 2), ('nbsp', 2), ('book', 1), ('explores', 1), ('ai', 1), ('methodology', 1), ('implementation', 1), ('state', 1), ('intelligent', 1), ('divided', 1), ('four', 1), ('part', 1), ('multimodal', 1), ('computing', 1), ('technology', 1), ('application', 1), ('begin', 1)]
[('functional', 2), ('requirement', 2), ('development', 2), ('textbook', 1), ('show', 1), ('develop', 1), ('information', 1), ('system', 1), ('emphasizes', 1), ('importance', 1), ('consider', 1), ('complete', 1), ('path', 1), ('individual', 1), ('step', 1)]
[('software', 2), ('book', 1), ('highlight', 1), ('recent', 1), ('research', 1), ('advance', 1), ('various', 1), ('domain', 1), ('related', 1), ('ecosystem', 1), ('library', 1), ('reuse', 1), ('collaborative', 1), ('development', 1), ('cloud', 1), ('computing', 1), ('open', 1), ('science', 1), ('sentiment', 1), ('analysis', 1), ('machine', 1), ('learning', 1), ('key', 1), ('aspect', 1)]
[('book', 2), ('provides', 1), ('outline', 1), ('major', 1), ('challenge', 1), ('methodology', 1), ('applying', 1), ('classic', 1), ('counterintelligence', 1), ('theory', 1), ('cybersecurity', 1), ('domain', 1), ('cover', 1), ('operational', 1), ('security', 1), ('approach', 1), ('cyber', 1), ('alongside', 1), ('detailed', 1), ('description', 1)]
[('analog', 3), ('side', 3), ('channel', 3), ('book', 2), ('offer', 1), ('latest', 1), ('research', 1), ('result', 1), ('usage', 1), ('cybersecurity', 1), ('demystifies', 1), ('demonstrates', 1), ('new', 1), ('use', 1), ('case', 1), ('first', 1), ('part', 1), ('discus', 1)]
[('book', 2), ('fuzzy', 2), ('logic', 2), ('software', 2), ('aim', 1), ('provide', 1), ('information', 1), ('significant', 1), ('advance', 1), ('system', 1), ('researcher', 1), ('scientist', 1), ('educator', 1), ('student', 1), ('engineer', 1), ('developer', 1), ('particular', 1), ('explains', 1), ('used', 1)]
[('soft', 2), ('computing', 2), ('technique', 2), ('open', 1), ('significant', 1), ('opportunity', 1), ('several', 1), ('area', 1), ('industry', 1), ('medicine', 1), ('energy', 1), ('security', 1), ('transportation', 1), ('education', 1), ('book', 1), ('provides', 1), ('theory', 1), ('application', 1), ('development', 1), ('using', 1)]
[('book', 2), ('current', 2), ('contains', 1), ('scientific', 1), ('paper', 1), ('include', 1), ('result', 1), ('research', 1), ('regarding', 1), ('direction', 1), ('field', 1), ('data', 1), ('mining', 1), ('machine', 1), ('learning', 1), ('decision', 1), ('making', 1), ('devoted', 1), ('problem', 1), ('artificial', 1)]
[('ai', 3), ('future', 1), ('world', 1), ('transfixed', 1), ('marvel', 1), ('possible', 1), ('menace', 1), ('chatgpt', 1), ('generative', 1), ('tool', 1), ('clear', 1), ('gen', 1), ('transform', 1), ('business', 1), ('landscape', 1), ('remain', 1), ('seen', 1), ('meanwhile', 1), ('smartest', 1), ('competitor', 1), ('already', 1), ('navigating', 1), ('risk', 1), ('reaping', 1), ('reward', 1), ('new', 1)]
[('tech', 2), ('year', 1), ('hbr', 1), ('essential', 1), ('thinking', 1), ('place', 1), ('generative', 1), ('ai', 1), ('fintech', 1), ('spatial', 1), ('computing', 1), ('new', 1), ('innovation', 1), ('reshaping', 1), ('organization', 1), ('factory', 1), ('floor', 1), ('suite', 1), ('company', 1), ('right', 1), ('take', 1), ('advantage', 1), ('opportunity', 1), ('technology', 1), ('creating', 1), ('avoid', 1), ('falling', 1)]
[('ai', 3), ('business', 2), ('article', 2), ('next', 1), ('generation', 1), ('use', 1), ('lead', 1), ('forward', 1), ('nothing', 1), ('artificial', 1), ('intelligence', 1), ('machine', 1), ('learning', 1), ('combed', 1), ('hundred', 1), ('harvard', 1), ('review', 1), ('selected', 1), ('important', 1), ('one', 1), ('help', 1), ('understand', 1), ('future', 1), ('direction', 1), ('bring', 1)]
[('new', 2), ('year', 1), ('hbr', 1), ('essential', 1), ('thinking', 1), ('tech', 1), ('place', 1), ('generative', 1), ('ai', 1), ('web', 1), ('neurotech', 1), ('reusable', 1), ('rocket', 1), ('power', 1), ('space', 1), ('economy', 1), ('technology', 1), ('reshaping', 1), ('organization', 1), ('hybrid', 1), ('office', 1), ('factory', 1), ('floor', 1), ('suite', 1), ('company', 1), ('take', 1), ('advantage', 1), ('opportunity', 1)]
[('world', 2), ('artificial', 2), ('intelligence', 2), ('technology', 2), ('fascinating', 1), ('guide', 1), ('rapidly', 1), ('advancing', 1), ('powerful', 1), ('impact', 1), ('life', 1), ('career', 1), ('driving', 1), ('workforce', 1), ('disruption', 1), ('scale', 1), ('seen', 1), ('industrial', 1), ('revolution', 1), ('school', 1), ('university', 1), ('ai', 1), ('forced', 1), ('reevaluation', 1)]
[('game', 3), ('digital', 2), ('strong', 1), ('contribution', 1), ('iu', 1), ('press', 1), ('offering', 1), ('medium', 1), ('study', 1), ('andcoming', 1), ('scholar', 1), ('focus', 1), ('global', 1), ('collection', 1), ('made', 1), ('non', 1), ('western', 1), ('country', 1), ('native', 1), ('community', 1), ('challenge', 1), ('narrative', 1), ('gaming', 1), ('white', 1), ('heterosexual', 1), ('male', 1), ('corporatized', 1), ('leisure', 1), ('time', 1), ('activity', 1), ('explores', 1), ('cite', 1)]
[('humanity', 2), ('university', 2), ('champion', 1), ('respected', 1), ('authority', 1), ('voice', 1), ('clarity', 1), ('nebulous', 1), ('crossroad', 1), ('visualization', 1), ('study', 1), ('project', 1), ('leader', 1), ('digital', 1), ('lab', 1), ('consortium', 1), ('four', 1), ('library', 1), ('denmark', 1), ('acted', 1), ('expert', 1), ('witness', 1), ('neh', 1), ('application', 1), ('museum', 1), ('grant', 1)]
[('computational', 2), ('growth', 1), ('bioinformatics', 1), ('biology', 1), ('field', 1), ('last', 1), ('year', 1), ('remarkable', 1), ('trend', 1), ('increase', 1), ('pace', 1), ('fact', 1), ('need', 1), ('technique', 1), ('efficiently', 1), ('handle', 1), ('huge', 1), ('amount', 1), ('data', 1)]
[('international', 2), ('ccseit', 2), ('book', 1), ('proceeding', 1), ('third', 1), ('conference', 1), ('computational', 1), ('science', 1), ('engineering', 1), ('information', 1), ('technology', 1), ('held', 1), ('konya', 1), ('turkey', 1), ('june', 1), ('provided', 1), ('excellent', 1), ('forum', 1)]
[('mobility', 2), ('mipv', 2), ('brief', 1), ('present', 1), ('challenge', 1), ('solution', 1), ('vanets', 1), ('security', 1), ('privacy', 1), ('problem', 1), ('occurring', 1), ('management', 1), ('protocol', 1), ('including', 1), ('mobile', 1), ('ipv', 1), ('proxy', 1), ('pmipv', 1), ('network', 1), ('nemo', 1), ('author', 1), ('give', 1), ('overview', 1)]
[('information', 2), ('communication', 2), ('technology', 2), ('become', 1), ('necessity', 1), ('everyday', 1), ('life', 1), ('enabling', 1), ('increased', 1), ('level', 1), ('processing', 1), ('exchange', 1), ('extent', 1), ('imagine', 1), ('decade', 1), ('ago', 1), ('innovation', 1)]
[('volume', 2), ('starting', 1), ('novel', 1), ('algorithm', 1), ('optimally', 1), ('updating', 1), ('bounding', 1), ('hierarchy', 1), ('object', 1), ('undergoing', 1), ('arbitrary', 1), ('deformation', 1), ('author', 1), ('present', 1), ('new', 1), ('data', 1), ('structure', 1), ('allows', 1), ('first', 1), ('time', 1), ('computation', 1), ('penetration', 1)]
[('wireless', 2), ('virtualization', 2), ('springerbriefs', 1), ('overview', 1), ('emerging', 1), ('field', 1), ('access', 1), ('mobile', 1), ('network', 1), ('provides', 1), ('clear', 1), ('relevant', 1), ('picture', 1), ('current', 1), ('trend', 1), ('technology', 1), ('summarizing', 1), ('comparing', 1)]
[('cyber', 2), ('expert', 1), ('international', 1), ('working', 1), ('group', 1), ('landau', 1), ('network', 1), ('centro', 1), ('volta', 1), ('iwg', 1), ('lncv', 1), ('discus', 1), ('aspect', 1), ('security', 1), ('present', 1), ('possible', 1), ('method', 1), ('deterrence', 1), ('defense', 1), ('resilience', 1), ('attack', 1), ('springerbrief', 1), ('cover', 1)]
[('amp', 2), ('book', 1), ('contains', 1), ('refereed', 1), ('paper', 1), ('accepted', 1), ('fourth', 1), ('edition', 1), ('complex', 1), ('system', 1), ('design', 1), ('management', 1), ('csd', 1), ('international', 1), ('conference', 1), ('took', 1), ('place', 1), ('paris', 1), ('france', 1), ('december', 1), ('proceeding', 1)]
[('several', 2), ('springerbrief', 1), ('present', 1), ('survey', 1), ('data', 1), ('center', 1), ('network', 1), ('design', 1), ('topology', 1), ('compare', 1), ('property', 1), ('order', 1), ('highlight', 1), ('advantage', 1), ('disadvantage', 1), ('brief', 1), ('explores', 1), ('routing', 1), ('protocol', 1), ('designed', 1)]
[('cryptology', 2), ('half', 2), ('study', 2), ('system', 2), ('science', 1), ('made', 1), ('cryptography', 1), ('create', 1), ('secure', 1), ('communication', 1), ('cryptanalysis', 1), ('break', 1), ('conflict', 1)]
[('research', 2), ('book', 1), ('present', 1), ('carefully', 1), ('selected', 1), ('contribution', 1), ('devoted', 1), ('modern', 1), ('perspective', 1), ('ai', 1), ('innovation', 1), ('collection', 1), ('cover', 1), ('several', 1), ('area', 1), ('application', 1), ('motivates', 1), ('new', 1), ('direction', 1), ('theme', 1), ('across', 1), ('chapter', 1), ('combine', 1)]
[('book', 1), ('includes', 1), ('extended', 1), ('revised', 1), ('version', 1), ('set', 1), ('selected', 1), ('paper', 1), ('international', 1), ('conference', 1), ('simulation', 1), ('modeling', 1), ('methodology', 1), ('technology', 1), ('application', 1), ('simultech', 1), ('sponsored', 1), ('institute', 1)]
[('system', 2), ('prediction', 1), ('behavior', 1), ('dynamical', 1), ('analysis', 1), ('modeling', 1), ('structure', 1), ('vitally', 1), ('important', 1), ('problem', 1), ('engineering', 1), ('economy', 1), ('science', 1), ('today', 1), ('example', 1), ('seenin', 1), ('world', 1), ('around', 1), ('course', 1), ('almost', 1), ('every', 1)]
[('mathematical', 2), ('recommendation', 2), ('engine', 2), ('learning', 2), ('describing', 1), ('novel', 1), ('concept', 1), ('realtime', 1), ('data', 1), ('mining', 1), ('self', 1), ('technique', 1), ('feature', 1), ('sound', 1), ('framework', 1), ('unifying', 1), ('approach', 1), ('based', 1), ('control', 1), ('theory', 1)]
[('symposium', 1), ('born', 1), ('research', 1), ('forum', 1), ('present', 1), ('discus', 1), ('original', 1), ('rigorous', 1), ('significant', 1), ('contribution', 1), ('artificial', 1), ('intelligence', 1), ('based', 1), ('ai', 1), ('solution', 1), ('strong', 1), ('practical', 1), ('logic', 1), ('preferably', 1), ('empirical', 1), ('application', 1), ('developed', 1)]
[('mathematics', 3), ('computer', 2), ('adapted', 1), ('modular', 1), ('undergraduate', 1), ('course', 1), ('computational', 1), ('concise', 1), ('delivers', 1), ('easily', 1), ('accessible', 1), ('self', 1), ('contained', 1), ('introduction', 1), ('basic', 1), ('notion', 1), ('necessary', 1), ('science', 1), ('degree', 1), ('text', 1)]
[('book', 1), ('integrates', 1), ('theoretical', 1), ('analysis', 1), ('numerical', 1), ('simulation', 1), ('modeling', 1), ('approach', 1), ('treatment', 1), ('singular', 1), ('phenomenon', 1), ('project', 1), ('covered', 1), ('focus', 1), ('actual', 1), ('applied', 1), ('problem', 1), ('develop', 1), ('qualitatively', 1), ('new', 1), ('mathematically', 1), ('challenging', 1)]
[('problem', 2), ('practical', 1), ('optimization', 1), ('often', 1), ('hard', 1), ('solve', 1), ('particular', 1), ('black', 1), ('box', 1), ('information', 1), ('available', 1), ('except', 1), ('via', 1), ('function', 1), ('evaluation', 1), ('work', 1), ('introduces', 1), ('collection', 1), ('heuristic', 1), ('algorithm', 1)]
[('application', 2), ('action', 1), ('recognition', 1), ('technology', 1), ('many', 1), ('real', 1), ('world', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('surveillance', 1), ('video', 1), ('retrieval', 1), ('retirement', 1), ('home', 1), ('monitoring', 1), ('robotics', 1), ('commoditization', 1), ('depth', 1), ('sensor', 1), ('opened', 1)]
[('agile', 2), ('risk', 2), ('project', 2), ('work', 1), ('definitive', 1), ('guide', 1), ('manager', 1), ('practitioner', 1), ('elucidates', 1), ('principle', 1), ('management', 1), ('relate', 1), ('individual', 1), ('explained', 1), ('clear', 1), ('concise', 1), ('term', 1), ('synthesis', 1)]
[('work', 1), ('proposes', 1), ('strategy', 1), ('solution', 1), ('tackle', 1), ('problem', 1), ('building', 1), ('photo', 1), ('mosaic', 1), ('large', 1), ('underwater', 1), ('optical', 1), ('survey', 1), ('presenting', 1), ('contribution', 1), ('image', 1), ('preprocessing', 1), ('enhancing', 1), ('blending', 1), ('step', 1), ('resulting', 1), ('improved', 1)]
[('web', 3), ('peer', 2), ('brief', 1), ('present', 1), ('hosting', 1), ('infrastructure', 1), ('named', 1), ('pweb', 1), ('transform', 1), ('networked', 1), ('home', 1), ('entertainment', 1), ('device', 1), ('lightweight', 1), ('collaborating', 1), ('server', 1), ('persistently', 1), ('storing', 1), ('serving', 1), ('multimedia', 1), ('content', 1)]
[('application', 3), ('jruby', 3), ('server', 2), ('springerbrief', 1), ('explains', 1), ('create', 1), ('rail', 1), ('web', 1), ('java', 1), ('implementation', 1), ('ruby', 1), ('brief', 1), ('demonstrates', 1), ('oracle', 1), ('weblogic', 1), ('jboss', 1), ('deploy', 1), ('run', 1)]
[('data', 2), ('last', 1), ('year', 1), ('seen', 1), ('increase', 1), ('amount', 1), ('available', 1), ('scientist', 1), ('yet', 1), ('many', 1), ('technique', 1), ('used', 1), ('analyse', 1), ('cope', 1), ('large', 1), ('datasets', 1), ('strategy', 1), ('need', 1), ('employed', 1), ('pre', 1), ('processing', 1), ('step', 1)]
[('title', 1), ('book', 1), ('pun', 1), ('use', 1), ('preposition', 1), ('onto', 1), ('aim', 1), ('recalling', 1), ('ontology', 1), ('term', 1), ('commonly', 1), ('adopted', 1), ('computer', 1), ('science', 1), ('community', 1), ('indicate', 1), ('study', 1), ('formal', 1), ('specification', 1), ('organizing', 1), ('knowledge', 1)]
[('italian', 2), ('neural', 2), ('network', 2), ('volume', 1), ('collect', 1), ('selection', 1), ('contribution', 1), ('presented', 1), ('rd', 1), ('workshop', 1), ('yearly', 1), ('meeting', 1), ('society', 1), ('siren', 1), ('conference', 1), ('held', 1), ('vietri', 1), ('sul', 1), ('mare', 1), ('salerno', 1)]
[('network', 3), ('security', 2), ('present', 2), ('springer', 1), ('brief', 1), ('discus', 1), ('efficient', 1), ('protocol', 1), ('scheme', 1), ('multi', 1), ('hop', 1), ('wireless', 1), ('overview', 1), ('requirement', 1), ('explores', 1), ('challenge', 1), ('securing', 1), ('system', 1), ('model', 1)]
[('water', 2), ('filling', 2), ('brief', 1), ('introduces', 1), ('fundamental', 1), ('theory', 1), ('development', 1), ('managing', 1), ('radio', 1), ('resource', 1), ('using', 1), ('algorithm', 1), ('optimize', 1), ('system', 1), ('performance', 1), ('wireless', 1), ('communication', 1), ('geometric', 1), ('gwf', 1), ('crucial', 1), ('underlying', 1), ('tool', 1)]
[('springer', 1), ('brief', 1), ('investigates', 1), ('voice', 1), ('elastic', 1), ('interactive', 1), ('data', 1), ('service', 1), ('support', 1), ('cognitive', 1), ('radio', 1), ('network', 1), ('crns', 1), ('term', 1), ('delay', 1), ('requirement', 1), ('increased', 1), ('demand', 1), ('wireless', 1), ('communication', 1), ('conflict', 1), ('scarcity', 1)]
[('result', 2), ('springer', 1), ('brief', 1), ('present', 1), ('recent', 1), ('research', 1), ('area', 1), ('coverage', 1), ('intruder', 1), ('detection', 1), ('energy', 1), ('efficient', 1), ('perspective', 1), ('cover', 1), ('variety', 1), ('topic', 1), ('including', 1), ('environmental', 1), ('surveillance', 1), ('security', 1), ('monitoring', 1), ('author', 1)]
[('brief', 2), ('research', 2), ('focus', 1), ('current', 1), ('security', 1), ('privacy', 1), ('preservation', 1), ('smart', 1), ('grid', 1), ('along', 1), ('review', 1), ('existing', 1), ('work', 1), ('includes', 1), ('fundamental', 1), ('system', 1), ('model', 1), ('possible', 1), ('framework', 1), ('useful', 1), ('performance', 1), ('future', 1)]
[('proceeding', 1), ('consists', 1), ('paper', 1), ('selected', 1), ('invited', 1), ('submission', 1), ('nd', 1), ('international', 1), ('conference', 1), ('computer', 1), ('science', 1), ('applied', 1), ('mathematics', 1), ('application', 1), ('iccsama', 1), ('held', 1), ('budapest', 1), ('hungary', 1)]
[('learning', 2), ('springer', 1), ('brief', 1), ('examines', 1), ('combination', 1), ('computer', 1), ('vision', 1), ('technique', 1), ('machine', 1), ('algorithm', 1), ('necessary', 1), ('humanoid', 1), ('robot', 1), ('develop', 1), ('true', 1), ('consciousness', 1), ('illustrates', 1), ('critical', 1), ('first', 1), ('step', 1), ('towards', 1), ('reaching', 1), ('deep', 1), ('long', 1)]
[('military', 2), ('springerbrief', 1), ('reveals', 1), ('latest', 1), ('technique', 1), ('computer', 1), ('vision', 1), ('machine', 1), ('learning', 1), ('robot', 1), ('designed', 1), ('accurate', 1), ('efficient', 1), ('sniper', 1), ('around', 1), ('world', 1), ('investigating', 1), ('technology', 1), ('simplify', 1), ('time', 1), ('cost', 1)]
[('technology', 2), ('cit', 2), ('computer', 1), ('information', 1), ('involved', 1), ('governmental', 1), ('industrial', 1), ('business', 1), ('domain', 1), ('thus', 1), ('important', 1), ('personnel', 1), ('continue', 1), ('academic', 1), ('research', 1), ('improve', 1), ('adoption', 1), ('modern', 1)]
[('book', 1), ('address', 1), ('need', 1), ('unified', 1), ('framework', 1), ('describing', 1), ('soft', 1), ('computing', 1), ('machine', 1), ('learning', 1), ('technique', 1), ('judiciously', 1), ('formulated', 1), ('used', 1), ('building', 1), ('efficient', 1), ('pattern', 1), ('recognition', 1), ('model', 1), ('text', 1), ('review', 1), ('established', 1)]
[('mobile', 2), ('device', 2), ('information', 2), ('personal', 2), ('book', 1), ('present', 1), ('effective', 1), ('way', 1), ('partition', 1), ('enterprise', 1), ('system', 1), ('access', 1), ('completely', 1), ('separated', 1), ('using', 1), ('business', 1), ('purpose', 1)]
[('data', 6), ('big', 2), ('phase', 2), ('springer', 1), ('brief', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('background', 1), ('recent', 1), ('development', 1), ('value', 1), ('chain', 1), ('divided', 1), ('four', 1), ('generation', 1), ('acquisition', 1), ('storage', 1), ('analysis', 1)]
[('comp', 3), ('system', 2), ('springerbrief', 1), ('discus', 1), ('current', 1), ('research', 1), ('coordinated', 1), ('multipoint', 1), ('transmission', 1), ('reception', 1), ('wireless', 1), ('multi', 1), ('cell', 1), ('book', 1), ('analyzes', 1), ('structure', 1), ('precoders', 1), ('message', 1), ('exchange', 1), ('mechanism', 1)]
[('smart', 3), ('grid', 3), ('springerbrief', 1), ('present', 1), ('concept', 1), ('architecture', 1), ('investigates', 1), ('security', 1), ('issue', 1), ('existing', 1), ('encrypted', 1), ('data', 1), ('query', 1), ('technique', 1), ('unique', 1), ('characteristic', 1), ('impose', 1), ('distinguished', 1), ('challenge', 1)]
[('spectrum', 3), ('auction', 2), ('brief', 1), ('introduces', 1), ('wireless', 1), ('market', 1), ('discus', 1), ('current', 1), ('research', 1), ('cover', 1), ('unique', 1), ('property', 1), ('interference', 1), ('relationship', 1), ('reusability', 1), ('divisibility', 1), ('composite', 1), ('effect', 1)]
[('agent', 3), ('system', 2), ('multi', 1), ('related', 1), ('modern', 1), ('software', 1), ('paradigm', 1), ('long', 1), ('recognized', 1), ('promising', 1), ('technology', 1), ('constructing', 1), ('autonomous', 1), ('complex', 1), ('intelligent', 1), ('topic', 1), ('covered', 1), ('volume', 1), ('include', 1), ('oriented', 1)]
[('book', 2), ('th', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('soft', 1), ('computing', 1), ('data', 1), ('mining', 1), ('scdm', 1), ('held', 1), ('universiti', 1), ('tun', 1), ('hussein', 1), ('onn', 1), ('malaysia', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('advanced', 1), ('computing', 1), ('networking', 1), ('informatics', 1), ('three', 1), ('distinct', 1), ('mutually', 1), ('exclusive', 1), ('discipline', 1), ('knowledge', 1), ('apparent', 1), ('sharing', 1), ('overlap', 1), ('among', 1), ('convergence', 1), ('observed', 1), ('many', 1), ('real', 1), ('world', 1), ('application', 1), ('including', 1)]
[('advanced', 1), ('computing', 1), ('networking', 1), ('informatics', 1), ('three', 1), ('distinct', 1), ('mutually', 1), ('exclusive', 1), ('discipline', 1), ('knowledge', 1), ('apparent', 1), ('sharing', 1), ('overlap', 1), ('among', 1), ('convergence', 1), ('observed', 1), ('many', 1), ('real', 1), ('world', 1), ('application', 1), ('including', 1)]
[('tool', 3), ('attack', 2), ('network', 2), ('springer', 1), ('brief', 1), ('examines', 1), ('based', 1), ('graph', 1), ('help', 1), ('reveal', 1), ('hardening', 1), ('threat', 1), ('existing', 1), ('detail', 1), ('possible', 1), ('path', 1), ('leading', 1), ('critical', 1), ('resource', 1), ('though', 1), ('current', 1), ('provides', 1), ('direct', 1), ('solution', 1)]
[('student', 2), ('literature', 2), ('text', 1), ('analysis', 1), ('written', 1), ('scholar', 1), ('mind', 1), ('applicable', 1), ('humanist', 1), ('social', 1), ('scientist', 1), ('wishing', 1), ('extend', 1), ('methodological', 1), ('tool', 1), ('kit', 1), ('include', 1), ('quantitative', 1)]
[('elm', 2), ('learning', 2), ('recent', 1), ('year', 1), ('emerged', 1), ('revolutionary', 1), ('technique', 1), ('computational', 1), ('intelligence', 1), ('attracted', 1), ('considerable', 1), ('attention', 1), ('extreme', 1), ('machine', 1), ('single', 1), ('layer', 1), ('feed', 1), ('forward', 1), ('neural', 1), ('network', 1), ('alike', 1), ('system', 1), ('whose', 1)]
[('semantic', 2), ('publishing', 2), ('technology', 2), ('legal', 2), ('work', 1), ('deal', 1), ('application', 1), ('domain', 1), ('use', 1), ('web', 1), ('address', 1), ('issue', 1), ('related', 1), ('scholarly', 1), ('research', 1), ('field', 1), ('law', 1), ('long', 1), ('tradition', 1)]
[('small', 3), ('cell', 3), ('architecture', 2), ('springer', 1), ('brief', 1), ('present', 1), ('network', 1), ('recent', 1), ('advance', 1), ('interference', 1), ('management', 1), ('key', 1), ('challenge', 1), ('value', 1), ('first', 1), ('introduced', 1), ('followed', 1), ('review', 1), ('various', 1)]
[('service', 2), ('using', 1), ('various', 1), ('data', 1), ('input', 1), ('ubiquitous', 1), ('computing', 1), ('system', 1), ('detect', 1), ('current', 1), ('usage', 1), ('context', 1), ('automatically', 1), ('adapt', 1), ('user', 1), ('situational', 1), ('need', 1), ('interact', 1), ('resource', 1), ('environment', 1), ('ad', 1), ('hoc', 1)]
[('brief', 2), ('technique', 2), ('present', 1), ('novel', 1), ('phy', 1), ('layer', 1), ('attachment', 1), ('transmission', 1), ('provides', 1), ('extra', 1), ('control', 1), ('panel', 1), ('minimum', 1), ('overhead', 1), ('addition', 1), ('describing', 1), ('basic', 1), ('mechanism', 1), ('illustrates', 1), ('challenge', 1)]
[('work', 1), ('open', 1), ('accessible', 1), ('introduction', 1), ('computer', 1), ('network', 1), ('providing', 1), ('general', 1), ('definition', 1), ('commonly', 1), ('used', 1), ('term', 1), ('networking', 1), ('followed', 1), ('detailed', 1), ('description', 1), ('osi', 1), ('model', 1), ('including', 1), ('concept', 1), ('connection', 1), ('oriented', 1)]
[('intelligent', 5), ('system', 4), ('robot', 2), ('robotics', 1), ('inevitably', 1), ('bound', 1), ('make', 1), ('embodiment', 1), ('integration', 1), ('using', 1), ('figure', 1), ('cell', 1), ('unit', 1), ('body', 1)]
[('cognitive', 1), ('science', 1), ('discipline', 1), ('brings', 1), ('together', 1), ('research', 1), ('natural', 1), ('artificial', 1), ('system', 1), ('clearly', 1), ('reflected', 1), ('diverse', 1), ('contribution', 1), ('animal', 1), ('robot', 1), ('back', 1), ('tribute', 1), ('aaron', 1), ('sloman', 1), ('pioneering', 1), ('work', 1)]
[('science', 2), ('protein', 2), ('recent', 1), ('development', 1), ('computer', 1), ('enable', 1), ('algorithm', 1), ('previously', 1), ('perceived', 1), ('time', 1), ('consuming', 1), ('efficiently', 1), ('used', 1), ('application', 1), ('bioinformatics', 1), ('life', 1), ('work', 1), ('focus', 1), ('structure', 1)]
[('user', 2), ('spoofing', 2), ('springer', 1), ('brief', 1), ('provides', 1), ('new', 1), ('approach', 1), ('prevent', 1), ('using', 1), ('physical', 1), ('property', 1), ('associated', 1), ('wireless', 1), ('transmission', 1), ('detect', 1), ('presence', 1), ('common', 1), ('method', 1), ('applying', 1), ('cryptographic', 1), ('authentication', 1)]
[('maritime', 2), ('communication', 2), ('springer', 1), ('brief', 1), ('cover', 1), ('emerging', 1), ('wideband', 1), ('network', 1), ('facilitate', 1), ('application', 1), ('distress', 1), ('urgency', 1), ('safety', 1), ('general', 1), ('provides', 1), ('valuable', 1), ('insight', 1), ('data', 1), ('transmission', 1), ('scheduling', 1)]
[('present', 2), ('springer', 1), ('brief', 1), ('comprehensive', 1), ('survey', 1), ('existing', 1), ('methodology', 1), ('background', 1), ('subtraction', 1), ('method', 1), ('framework', 1), ('quantitative', 1), ('performance', 1), ('evaluation', 1), ('different', 1), ('approach', 1), ('summarizes', 1), ('public', 1), ('database', 1), ('available', 1)]
[('system', 2), ('prediction', 1), ('behavior', 1), ('complex', 1), ('analysis', 1), ('modeling', 1), ('structure', 1), ('vitally', 1), ('important', 1), ('problem', 1), ('engineering', 1), ('economy', 1), ('generally', 1), ('science', 1), ('today', 1), ('example', 1), ('seen', 1), ('world', 1), ('around', 1), ('including', 1)]
[('conference', 2), ('volume', 1), ('encloses', 1), ('research', 1), ('article', 1), ('presented', 1), ('evolve', 1), ('international', 1), ('beijing', 1), ('china', 1), ('july', 1), ('book', 1), ('gather', 1), ('contribution', 1), ('emerged', 1), ('track', 1), ('ranging', 1), ('probability', 1), ('set', 1), ('oriented', 1)]
[('data', 2), ('organization', 2), ('recent', 1), ('pursuit', 1), ('emerging', 1), ('realm', 1), ('big', 1), ('processing', 1), ('interpretation', 1), ('collection', 1), ('emerged', 1), ('numerous', 1), ('sector', 1), ('including', 1), ('business', 1), ('industry', 1), ('government', 1), ('set', 1), ('customer', 1), ('transaction', 1)]
[('soft', 2), ('computing', 2), ('volume', 1), ('advance', 1), ('intelligent', 1), ('contains', 1), ('accepted', 1), ('paper', 1), ('presented', 1), ('soco', 1), ('cisis', 1), ('iceute', 1), ('conference', 1), ('held', 1), ('beautiful', 1), ('historic', 1), ('city', 1), ('bilbao', 1), ('spain', 1), ('june', 1), ('represents', 1)]
[('dynamic', 2), ('resource', 2), ('allocation', 2), ('efficiency', 2), ('springerbrief', 1), ('present', 1), ('survey', 1), ('scheme', 1), ('cognitive', 1), ('radio', 1), ('cr', 1), ('system', 1), ('focusing', 1), ('spectral', 1), ('energy', 1), ('wireless', 1), ('network', 1), ('introduces', 1), ('variety', 1)]
[('information', 2), ('theoretic', 2), ('method', 2), ('variety', 2), ('springer', 1), ('brief', 1), ('represents', 1), ('comprehensive', 1), ('review', 1), ('robust', 1), ('recognition', 1), ('proffered', 1), ('past', 1), ('decade', 1), ('large', 1), ('computer', 1), ('vision', 1), ('application', 1)]
[('middleware', 2), ('book', 1), ('present', 1), ('examination', 1), ('used', 1), ('configure', 1), ('operate', 1), ('heterogeneous', 1), ('node', 1), ('platform', 1), ('sensor', 1), ('network', 1), ('requirement', 1), ('range', 1), ('application', 1), ('scenario', 1), ('compared', 1), ('analysed', 1), ('text', 1)]
[('workshop', 2), ('volume', 1), ('contains', 1), ('paper', 1), ('doctoral', 1), ('consortium', 1), ('organized', 1), ('framework', 1), ('th', 1), ('east', 1), ('european', 1), ('conference', 1), ('advance', 1), ('database', 1), ('information', 1), ('system', 1), ('adbis', 1), ('rd', 1), ('international', 1)]
[('data', 4), ('preprocessing', 1), ('mining', 1), ('address', 1), ('important', 1), ('issue', 1), ('within', 1), ('known', 1), ('knowledge', 1), ('discovery', 1), ('process', 1), ('directly', 1), ('taken', 1), ('source', 1), ('likely', 1), ('inconsistency', 1), ('error', 1), ('importantly', 1)]
[('social', 2), ('topic', 2), ('edited', 1), ('volume', 1), ('address', 1), ('vast', 1), ('challenge', 1), ('adapting', 1), ('online', 1), ('medium', 1), ('osm', 1), ('developing', 1), ('research', 1), ('method', 1), ('application', 1), ('cover', 1), ('generating', 1), ('realistic', 1), ('network', 1), ('topology', 1), ('awareness', 1), ('user', 1), ('activity', 1), ('trend', 1)]
[('based', 2), ('research', 1), ('book', 1), ('focused', 1), ('recent', 1), ('advance', 1), ('computer', 1), ('vision', 1), ('methodology', 1), ('innovation', 1), ('practice', 1), ('contribution', 1), ('include', 1), ('human', 1), ('action', 1), ('recognition', 1), ('contour', 1), ('silhouette', 1), ('approach', 1), ('application', 1)]
[('music', 2), ('book', 1), ('open', 1), ('short', 1), ('introduction', 1), ('indian', 1), ('particular', 1), ('classical', 1), ('hindustani', 1), ('followed', 1), ('chapter', 1), ('role', 1), ('statistic', 1), ('computational', 1), ('musicology', 1), ('author', 1), ('show', 1), ('analyze', 1), ('musical', 1), ('structure', 1), ('using', 1), ('rubato', 1)]
[('relational', 2), ('method', 2), ('springerbrief', 1), ('address', 1), ('challenge', 1), ('analyzing', 1), ('multi', 1), ('noisy', 1), ('data', 1), ('proposing', 1), ('several', 1), ('statistical', 1), ('learning', 1), ('srl', 1), ('combine', 1), ('expressiveness', 1), ('first', 1), ('order', 1), ('logic', 1), ('ability', 1), ('probability', 1)]
[('text', 3), ('mining', 3), ('book', 1), ('comprises', 1), ('set', 1), ('article', 1), ('specify', 1), ('methodology', 1), ('describe', 1), ('creation', 1), ('lexical', 1), ('resource', 1), ('framework', 1), ('use', 1), ('various', 1), ('task', 1), ('natural', 1), ('language', 1), ('processing', 1), ('nlp', 1), ('analysis', 1)]
[('based', 2), ('springerbrief', 1), ('explores', 1), ('graphical', 1), ('password', 1), ('system', 1), ('examines', 1), ('novel', 1), ('drawing', 1), ('method', 1), ('term', 1), ('security', 1), ('usability', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('provides', 1), ('systematic', 1), ('approach', 1), ('recognizing', 1), ('comparing', 1), ('matching', 1), ('sketch', 1)]
[('criterion', 2), ('present', 1), ('detailed', 1), ('study', 1), ('major', 1), ('design', 1), ('component', 1), ('constitute', 1), ('top', 1), ('decision', 1), ('tree', 1), ('induction', 1), ('algorithm', 1), ('including', 1), ('aspect', 1), ('split', 1), ('stopping', 1), ('pruning', 1), ('approach', 1), ('dealing', 1), ('missing', 1), ('value', 1), ('whereas', 1)]
[('private', 2), ('data', 2), ('book', 1), ('introduces', 1), ('fundamental', 1), ('concept', 1), ('homomorphic', 1), ('encryption', 1), ('foundation', 1), ('application', 1), ('developed', 1), ('field', 1), ('information', 1), ('retrieval', 1), ('searching', 1), ('streaming', 1), ('privacy', 1), ('preserving', 1), ('mining', 1)]
[('book', 1), ('includes', 1), ('extended', 1), ('revised', 1), ('version', 1), ('set', 1), ('selected', 1), ('paper', 1), ('rd', 1), ('international', 1), ('conference', 1), ('simulation', 1), ('modeling', 1), ('methodology', 1), ('technology', 1), ('application', 1), ('simultech', 1), ('co', 1), ('organized', 1), ('reykjavik', 1)]
[('inn', 2), ('ciis', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('fourth', 1), ('international', 1), ('neural', 1), ('network', 1), ('symposium', 1), ('series', 1), ('computational', 1), ('intelligence', 1), ('information', 1), ('system', 1), ('held', 1), ('bandar', 1), ('seri', 1), ('begawan', 1), ('brunei', 1), ('november', 1), ('aim', 1)]
[('plnc', 2), ('springerbrief', 1), ('present', 1), ('channel', 1), ('estimation', 1), ('strategy', 1), ('physical', 1), ('later', 1), ('network', 1), ('coding', 1), ('system', 1), ('along', 1), ('review', 1), ('architecture', 1), ('brief', 1), ('examines', 1), ('new', 1), ('challenge', 1), ('brought', 1), ('special', 1), ('structure', 1), ('bi', 1), ('directional', 1), ('hop', 1)]
[('software', 3), ('developer', 1), ('frequently', 1), ('introduce', 1), ('error', 1), ('system', 1), ('fail', 1), ('recognise', 1), ('module', 1), ('dependency', 1), ('using', 1), ('forty', 1), ('three', 1), ('family', 1), ('product', 1), ('line', 1), ('spls', 1), ('majority', 1), ('commonly', 1), ('used', 1), ('industrial', 1), ('practice', 1)]
[('springerbrief', 1), ('evaluates', 1), ('cooperative', 1), ('effort', 1), ('sensor', 1), ('node', 1), ('accomplish', 1), ('high', 1), ('level', 1), ('task', 1), ('sensing', 1), ('data', 1), ('processing', 1), ('communication', 1), ('metric', 1), ('network', 1), ('wide', 1), ('convergence', 1), ('unbiasedness', 1), ('consistency', 1), ('optimality', 1), ('discussed', 1)]
[('movement', 4), ('springerbrief', 1), ('discus', 1), ('characteristic', 1), ('spatiotemporal', 1), ('data', 1), ('including', 1), ('uncertainty', 1), ('scale', 1), ('investigates', 1), ('three', 1), ('core', 1), ('aspect', 1), ('computational', 1), ('analysis', 1), ('conceptual', 1), ('modeling', 1), ('space', 1)]
[('bio', 2), ('neuroinformatics', 2), ('book', 1), ('report', 1), ('latest', 1), ('theory', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('special', 1), ('emphasis', 1), ('method', 1), ('includes', 1), ('twenty', 1), ('three', 1), ('paper', 1), ('selected', 1), ('among', 1), ('best', 1), ('contribution', 1), ('related', 1), ('issue', 1)]
[('web', 2), ('ecosystem', 2), ('volume', 1), ('illustrates', 1), ('continuous', 1), ('arm', 1), ('race', 1), ('attacker', 1), ('defender', 1), ('discussing', 1), ('wide', 1), ('variety', 1), ('attack', 1), ('first', 1), ('part', 1), ('book', 1), ('foundation', 1), ('briefly', 1), ('recapped', 1), ('discussed', 1), ('based', 1)]
[('big', 2), ('data', 2), ('book', 1), ('cover', 1), ('latest', 1), ('advance', 1), ('technology', 1), ('provides', 1), ('reader', 1), ('comprehensive', 1), ('review', 1), ('state', 1), ('art', 1), ('processing', 1), ('analysis', 1), ('analytics', 1), ('related', 1), ('topic', 1), ('present', 1), ('new', 1), ('model', 1), ('algorithm', 1)]
[('book', 1), ('gather', 1), ('contribution', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('soft', 1), ('method', 1), ('probability', 1), ('statistic', 1), ('smps', 1), ('held', 1), ('warsaw', 1), ('poland', 1), ('september', 1), ('aim', 1), ('present', 1), ('recent', 1), ('result', 1), ('illustrating', 1), ('new', 1), ('trend', 1)]
[('design', 2), ('investigates', 1), ('theoretically', 1), ('empirically', 1), ('mean', 1), ('technological', 1), ('artefact', 1), ('embracing', 1), ('large', 1), ('number', 1), ('practice', 1), ('practitioner', 1), ('engage', 1), ('handling', 1), ('technology', 1), ('author', 1), ('discus', 1), ('field', 1)]
[('computing', 3), ('book', 1), ('deal', 1), ('theory', 1), ('design', 1), ('principle', 1), ('application', 1), ('hybrid', 1), ('intelligent', 1), ('system', 1), ('using', 1), ('type', 1), ('fuzzy', 1), ('set', 1), ('combination', 1), ('paradigm', 1), ('soft', 1), ('technology', 1), ('neuro', 1), ('evolutionary', 1), ('provides', 1)]
[('service', 3), ('system', 2), ('springerbrief', 1), ('explores', 1), ('internal', 1), ('working', 1), ('author', 1), ('propose', 1), ('lightweight', 1), ('semantic', 1), ('model', 1), ('effective', 1), ('representation', 1), ('capture', 1), ('essence', 1), ('key', 1), ('topic', 1), ('include', 1), ('modeling', 1), ('framework', 1)]
[('driver', 2), ('drowsiness', 2), ('springerbrief', 1), ('present', 1), ('fundamental', 1), ('detection', 1), ('system', 1), ('provides', 1), ('example', 1), ('existing', 1), ('product', 1), ('offer', 1), ('guide', 1), ('practitioner', 1), ('interested', 1), ('developing', 1), ('solution', 1), ('problem', 1), ('cause', 1)]
[('homology', 2), ('detection', 2), ('work', 1), ('cover', 1), ('sequence', 1), ('based', 1), ('protein', 1), ('fundamental', 1), ('challenging', 1), ('bioinformatics', 1), ('problem', 1), ('variety', 1), ('real', 1), ('world', 1), ('application', 1), ('text', 1), ('first', 1), ('survey', 1), ('popular', 1), ('method', 1), ('position', 1), ('specific', 1)]
[('privacy', 2), ('brief', 1), ('focus', 1), ('current', 1), ('research', 1), ('location', 1), ('preservation', 1), ('cognitive', 1), ('radio', 1), ('network', 1), ('crns', 1), ('along', 1), ('review', 1), ('existing', 1), ('work', 1), ('book', 1), ('includes', 1), ('fundamental', 1), ('model', 1), ('possible', 1), ('framework', 1), ('useful', 1), ('performance', 1)]
[('timely', 1), ('text', 1), ('reference', 1), ('describes', 1), ('development', 1), ('implementation', 1), ('large', 1), ('scale', 1), ('distributed', 1), ('processing', 1), ('system', 1), ('using', 1), ('open', 1), ('source', 1), ('tool', 1), ('technology', 1), ('comprehensive', 1), ('scope', 1), ('book', 1), ('present', 1), ('state', 1), ('art', 1), ('material', 1), ('building', 1), ('high', 1)]
[('decision', 2), ('volume', 1), ('focus', 1), ('uncovering', 1), ('fundamental', 1), ('force', 1), ('underlying', 1), ('dynamic', 1), ('making', 1), ('among', 1), ('multiple', 1), ('interacting', 1), ('imperfect', 1), ('selfish', 1), ('maker', 1), ('chapter', 1), ('written', 1), ('leading', 1), ('expert', 1), ('different', 1), ('discipline', 1), ('considering', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('symposium', 1), ('environmental', 1), ('software', 1), ('system', 1), ('i', 1), ('held', 1), ('melbourne', 1), ('australia', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('social', 2), ('edited', 1), ('volume', 1), ('offer', 1), ('clear', 1), ('depth', 1), ('overview', 1), ('research', 1), ('covering', 1), ('variety', 1), ('issue', 1), ('search', 1), ('recommendation', 1), ('system', 1), ('within', 1), ('broader', 1), ('context', 1), ('network', 1), ('analysis', 1), ('focus', 1), ('important', 1), ('coming', 1), ('topic', 1)]
[('simulation', 4), ('plant', 2), ('book', 1), ('systematically', 1), ('introduces', 1), ('development', 1), ('model', 1), ('implementation', 1), ('evaluation', 1), ('experiment', 1), ('tecnomatix', 1), ('deal', 1), ('user', 1), ('complex', 1), ('task', 1)]
[('computer', 2), ('book', 1), ('concentrated', 1), ('synergy', 1), ('science', 1), ('numerical', 1), ('analysis', 1), ('written', 1), ('provide', 1), ('firm', 1), ('understanding', 1), ('described', 1), ('approach', 1), ('scientist', 1), ('engineer', 1), ('expert', 1), ('solve', 1), ('real', 1), ('problem', 1)]
[('book', 1), ('offer', 1), ('reader', 1), ('quick', 1), ('comprehensive', 1), ('date', 1), ('overview', 1), ('important', 1), ('methodology', 1), ('technology', 1), ('apis', 1), ('standard', 1), ('related', 1), ('portability', 1), ('interoperability', 1), ('cloud', 1), ('application', 1), ('service', 1), ('illustrated', 1), ('number', 1)]
[('implementation', 2), ('hpc', 2), ('work', 1), ('present', 1), ('modern', 1), ('relevant', 1), ('molecular', 1), ('dynamic', 1), ('algorithm', 1), ('using', 1), ('l', 1), ('mardyn', 1), ('simulation', 1), ('program', 1), ('engineering', 1), ('application', 1), ('text', 1), ('focus', 1), ('strictly', 1), ('related', 1), ('aspect', 1), ('covering', 1), ('architecture', 1)]
[('springerbrief', 1), ('discus', 1), ('multiple', 1), ('form', 1), ('open', 1), ('source', 1), ('inspired', 1), ('outsourcing', 1), ('opensourcing', 1), ('innersourcing', 1), ('crowdsourcing', 1), ('us', 1), ('framework', 1), ('based', 1), ('comparison', 1), ('explain', 1), ('strength', 1), ('weakness', 1), ('approach', 1), ('pointing', 1)]
[('game', 6), ('use', 2), ('book', 1), ('scrutinizes', 1), ('pervasive', 1), ('technological', 1), ('perspective', 1), ('focusing', 1), ('sub', 1), ('domain', 1), ('satisfy', 1), ('criterion', 1), ('make', 1), ('virtual', 1), ('element', 1), ('computer', 1), ('industry', 1), ('engine', 1), ('build', 1)]
[('high', 2), ('springerbrief', 1), ('explores', 1), ('advantage', 1), ('relaying', 1), ('technique', 1), ('addressing', 1), ('increasing', 1), ('demand', 1), ('data', 1), ('rate', 1), ('reliable', 1), ('service', 1), ('air', 1), ('demonstrates', 1), ('design', 1), ('cost', 1), ('effective', 1), ('relay', 1), ('system', 1), ('provide', 1), ('spectral', 1)]
[('system', 2), ('interactive', 1), ('quickly', 1), ('becoming', 1), ('integral', 1), ('everyday', 1), ('life', 1), ('book', 1), ('investigates', 1), ('make', 1), ('desktop', 1), ('mobile', 1), ('apps', 1), ('wearable', 1), ('immersive', 1), ('application', 1), ('usable', 1), ('maintainable', 1), ('using', 1), ('hci', 1)]
[('volume', 2), ('based', 1), ('research', 1), ('paper', 1), ('presented', 1), ('th', 1), ('computer', 1), ('science', 1), ('line', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('perspective', 1), ('application', 1), ('present', 1), ('new', 1), ('approach', 1), ('method', 1), ('real', 1), ('world', 1), ('problem', 1), ('particular', 1)]
[('book', 2), ('result', 2), ('information', 2), ('technology', 2), ('present', 1), ('recent', 1), ('research', 1), ('work', 1), ('area', 1), ('communicationand', 1), ('includes', 1), ('main', 1), ('th', 1), ('internationalconference', 1), ('computing', 1), ('ic', 1), ('held', 1)]
[('volume', 1), ('present', 1), ('recent', 1), ('research', 1), ('methodology', 1), ('intelligent', 1), ('system', 1), ('technology', 1), ('enhanced', 1), ('learning', 1), ('contains', 1), ('contribution', 1), ('mi', 1), ('tel', 1), ('took', 1), ('place', 1), ('salamanca', 1), ('spain', 1), ('june', 1), ('rd', 1), ('th', 1), ('previous', 1), ('edition', 1)]
[('book', 1), ('collect', 1), ('research', 1), ('work', 1), ('exploit', 1), ('neural', 1), ('network', 1), ('machine', 1), ('learning', 1), ('technique', 1), ('multidisciplinary', 1), ('perspective', 1), ('subject', 1), ('covered', 1), ('include', 1), ('theoretical', 1), ('methodological', 1), ('computational', 1), ('topic', 1), ('grouped', 1), ('together', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('icst', 1), ('mobile', 1), ('ubiquitous', 1), ('system', 1), ('computing', 1), ('networking', 1), ('service', 1), ('mobiquitous', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('december', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('learning', 1), ('education', 1), ('online', 1), ('training', 1), ('eleot', 1), ('held', 1), ('bethesda', 1), ('md', 1), ('usa', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('complex', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('icst', 1), ('science', 1), ('held', 1), ('santa', 1), ('fe', 1), ('new', 1), ('mexico', 1), ('usa', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('cloud', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('computing', 1), ('comp', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('mobile', 1), ('computing', 1), ('application', 1), ('service', 1), ('mobicase', 1), ('held', 1), ('paris', 1), ('france', 1), ('november', 1), ('full', 1), ('short', 1), ('poster', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('bio', 1), ('inspired', 1), ('model', 1), ('network', 1), ('information', 1), ('computing', 1), ('system', 1), ('bionetics', 1), ('held', 1), ('lugano', 1), ('switzerland', 1), ('december', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('technology', 1), ('interactive', 1), ('entertainment', 1), ('intetain', 1), ('full', 1), ('presented', 1), ('together', 1), ('special', 1), ('session', 1), ('panel', 1), ('extended', 1), ('abstract', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('infrastructure', 1), ('service', 1), ('developing', 1), ('country', 1), ('africomm', 1), ('held', 1), ('blantyre', 1), ('malawi', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('international', 1), ('scalable', 1), ('information', 1), ('system', 1), ('infoscale', 1), ('held', 1), ('september', 1), ('seoul', 1), ('south', 1), ('korea', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('model', 2), ('limitation', 1), ('computer', 1), ('still', 1), ('working', 1), ('recognizably', 1), ('human', 1), ('principle', 1), ('puzzle', 1), ('explored', 1), ('book', 1), ('idea', 1), ('behind', 1), ('system', 1), ('behave', 1), ('intelligently', 1), ('described', 1)]
[('sublinear', 2), ('algorithm', 2), ('data', 2), ('brief', 1), ('focus', 1), ('applying', 1), ('manage', 1), ('critical', 1), ('big', 1), ('challenge', 1), ('text', 1), ('offer', 1), ('essential', 1), ('introduction', 1), ('explaining', 1), ('vital', 1), ('large', 1), ('scale', 1), ('system', 1), ('demonstrates', 1), ('apply', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('software', 1), ('quality', 1), ('day', 1), ('swqd', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('january', 1), ('professional', 1), ('symposium', 1), ('offer', 1), ('range', 1), ('comprehensive', 1), ('valuable', 1), ('opportunity', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('scientific', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('subject', 1), ('oriented', 1), ('business', 1), ('process', 1), ('management', 1), ('bpm', 1), ('held', 1), ('eichstätt', 1), ('germany', 1), ('april', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('second', 1), ('asia', 1), ('pacific', 1), ('conference', 1), ('business', 1), ('process', 1), ('management', 1), ('held', 1), ('brisbane', 1), ('qld', 1), ('australia', 1), ('july', 1), ('contribution', 1), ('country', 1), ('submitted', 1), ('submission', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('contains', 1), ('substantially', 1), ('extended', 1), ('revised', 1), ('version', 1), ('best', 1), ('th', 1), ('international', 1), ('conference', 1), ('enterprise', 1), ('information', 1), ('system', 1), ('iceis', 1), ('held', 1), ('anger', 1), ('france', 1), ('july', 1), ('full', 1), ('invited', 1), ('included', 1)]
[('book', 2), ('conference', 2), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('scandinavian', 1), ('information', 1), ('system', 1), ('scis', 1), ('held', 1), ('ringsted', 1), ('denmark', 1), ('august', 1), ('theme', 1), ('designing', 1), ('human', 1), ('technology', 1)]
[('book', 1), ('contains', 1), ('extended', 1), ('revised', 1), ('version', 1), ('set', 1), ('selected', 1), ('paper', 1), ('workshop', 1), ('organized', 1), ('euro', 1), ('working', 1), ('group', 1), ('decision', 1), ('support', 1), ('system', 1), ('ewg', 1), ('ds', 1), ('held', 1), ('thessaloniki', 1), ('greece', 1), ('rome', 1), ('italy', 1), ('july', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('technology', 1), ('mcetech', 1), ('held', 1), ('montréal', 1), ('canada', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('decision', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('support', 1), ('system', 1), ('technology', 1), ('icdsst', 1), ('held', 1), ('belgrade', 1), ('serbia', 1), ('theme', 1), ('event', 1), ('big', 1), ('data', 1), ('analytics', 1), ('making', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('metadata', 1), ('semantics', 1), ('research', 1), ('conference', 1), ('mtsr', 1), ('held', 1), ('thessaloniki', 1), ('greece', 1), ('november', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('computer', 1), ('network', 1), ('cn', 1), ('held', 1), ('brunów', 1), ('poland', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('thesis', 2), ('problem', 2), ('quality', 2), ('network', 2), ('multimedia', 2), ('focus', 1), ('optimizing', 1), ('service', 1), ('span', 1), ('multiple', 1), ('domain', 1), ('subjective', 1), ('perception', 1), ('computer', 1), ('management', 1), ('work', 1), ('done', 1)]
[('high', 2), ('performance', 2), ('book', 1), ('present', 1), ('state', 1), ('art', 1), ('computing', 1), ('simulation', 1), ('modern', 1), ('supercomputer', 1), ('architecture', 1), ('cover', 1), ('trend', 1), ('hardware', 1), ('software', 1), ('development', 1), ('general', 1), ('future', 1), ('system', 1), ('heterogeneous', 1)]
[('knowledge', 3), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('discovery', 1), ('engineering', 1), ('management', 1), ('ic', 1), ('held', 1), ('rome', 1), ('italy', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('volume', 1), ('constitute', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('soft', 1), ('computing', 1), ('application', 1), ('sofa', 1), ('held', 1), ('july', 1), ('timisoara', 1), ('romania', 1), ('edition', 1), ('organized', 1), ('university', 1), ('belgrade', 1), ('serbia', 1), ('conjunction', 1)]
[('robot', 2), ('work', 1), ('examines', 1), ('challenge', 1), ('distributed', 1), ('map', 1), ('merging', 1), ('localization', 1), ('multi', 1), ('system', 1), ('enables', 1), ('acquire', 1), ('knowledge', 1), ('surroundings', 1), ('needed', 1), ('carry', 1), ('coordinated', 1), ('task', 1), ('identifying', 1), ('main', 1), ('issue', 1)]
[('software', 3), ('sourcing', 2), ('book', 1), ('open', 1), ('black', 1), ('box', 1), ('explaining', 1), ('dynamic', 1), ('alignment', 1), ('established', 1), ('impact', 1), ('business', 1), ('performance', 1), ('outcome', 1), ('investigating', 1), ('mode', 1), ('related', 1), ('value', 1), ('generation', 1)]
[('workshop', 3), ('paper', 2), ('international', 2), ('presented', 1), ('book', 1), ('arerevised', 1), ('significantly', 1), ('extended', 1), ('version', 1), ('submitted', 1), ('threerelated', 1), ('th', 1), ('mining', 1), ('ubiquitous', 1), ('social', 1), ('environment', 1), ('muse', 1), ('first', 1), ('machine', 1), ('learning', 1), ('urban', 1), ('sensordata', 1), ('senseml', 1), ('held', 1), ('september', 1)]
[('international', 3), ('conference', 3), ('computer', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('visigrapp', 1), ('consisting', 1), ('joint', 1), ('vision', 1), ('visapp', 1), ('graphic', 1), ('grapp', 1)]
[('thepresent', 1), ('book', 1), ('includes', 1), ('set', 1), ('selected', 1), ('extended', 1), ('paper', 1), ('thinternational', 1), ('conference', 1), ('simulation', 1), ('modeling', 1), ('methodology', 1), ('technologiesand', 1), ('application', 1), ('simultech', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('august', 1)]
[('book', 1), ('feature', 1), ('selection', 1), ('paper', 1), ('presented', 1), ('second', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('workshop', 1), ('artificial', 1), ('intelligence', 1), ('knowledge', 1), ('management', 1), ('ai', 1), ('km', 1), ('held', 1), ('wroclaw', 1), ('poland', 1), ('september', 1), ('framework', 1), ('federated', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('conference', 1), ('computer', 1), ('network', 1), ('cn', 1), ('held', 1), ('brunów', 1), ('poland', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('area', 3), ('thisbook', 1), ('focus', 1), ('field', 1), ('fuzzy', 1), ('logic', 1), ('granular', 1), ('computing', 1), ('alsoconsidering', 1), ('control', 1), ('work', 1), ('together', 1), ('solve', 1), ('variouscontrol', 1), ('problem', 1), ('idea', 1), ('combination', 1), ('enable', 1), ('evenmore', 1), ('complex', 1)]
[('application', 3), ('denial', 2), ('service', 2), ('attack', 2), ('emerging', 2), ('springerbrief', 1), ('cover', 1), ('modeling', 1), ('analysis', 1), ('wireless', 1), ('mobile', 1), ('us', 1), ('specific', 1), ('methodology', 1), ('model', 1), ('evaluate', 1), ('three', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('coordination', 1), ('organization', 1), ('institution', 1), ('norm', 1), ('agent', 1), ('system', 1), ('coin', 1), ('co', 1), ('located', 1), ('aamas', 1), ('held', 1)]
[('thesis', 1), ('report', 1), ('major', 1), ('step', 1), ('towards', 1), ('realization', 1), ('scalable', 1), ('quantum', 1), ('network', 1), ('address', 1), ('experimental', 1), ('implementation', 1), ('deterministic', 1), ('interaction', 1), ('mechanism', 1), ('flying', 1), ('optical', 1), ('photon', 1), ('single', 1), ('trapped', 1), ('atom', 1), ('particular', 1)]
[('twovolume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('proceeding', 1), ('thmexican', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('micai', 1), ('heldin', 1), ('cuernavaca', 1), ('morelos', 1), ('mexico', 1), ('october', 1), ('totalof', 1), ('paper', 1), ('presented', 1)]
[('comprehensive', 1), ('stimulating', 1), ('introduction', 1), ('matlab', 1), ('computer', 1), ('language', 1), ('widely', 1), ('used', 1), ('technical', 1), ('computing', 1), ('based', 1), ('introductory', 1), ('course', 1), ('held', 1), ('qian', 1), ('weichang', 1), ('college', 1), ('shanghai', 1), ('university', 1), ('fall', 1), ('teaching', 1), ('learning', 1)]
[('fuzzy', 2), ('computing', 2), ('neuro', 2), ('proceeding', 1), ('bring', 1), ('together', 1), ('contribution', 1), ('researchersfrom', 1), ('academia', 1), ('industry', 1), ('report', 1), ('latest', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('made', 1), ('inthe', 1), ('area', 1), ('hybrid', 1), ('computingin', 1), ('paradigm', 1), ('soft', 1)]
[('book', 1), ('explores', 1), ('internet', 1), ('mobile', 1), ('ecosystem', 1), ('powered', 1), ('cloud', 1), ('computing', 1), ('essential', 1), ('indispensable', 1), ('part', 1), ('everyday', 1), ('life', 1), ('billion', 1), ('user', 1), ('world', 1), ('wide', 1), ('use', 1), ('technology', 1), ('information', 1), ('sharing', 1), ('communication', 1)]
[('management', 2), ('book', 1), ('present', 1), ('discus', 1), ('recent', 1), ('innovation', 1), ('trend', 1), ('result', 1), ('experience', 1), ('concern', 1), ('regard', 1), ('information', 1), ('system', 1), ('individual', 1), ('chapter', 1), ('focus', 1), ('facility', 1), ('process', 1), ('application', 1), ('corporate', 1)]
[('nlp', 2), ('parli', 2), ('paper', 1), ('collected', 1), ('volume', 1), ('selected', 1), ('sample', 1), ('progress', 1), ('natural', 1), ('language', 1), ('processing', 1), ('performed', 1), ('within', 1), ('italian', 1), ('community', 1), ('especially', 1), ('attested', 1), ('project', 1), ('portale', 1), ('per', 1), ('accesso', 1), ('alle', 1), ('risorse', 1)]
[('monograph', 1), ('provides', 1), ('comprehensive', 1), ('guideline', 1), ('current', 1), ('future', 1), ('trend', 1), ('innovative', 1), ('simulation', 1), ('system', 1), ('particular', 1), ('important', 1), ('component', 1), ('augmented', 1), ('reality', 1), ('unmanned', 1), ('vehicle', 1), ('presented', 1), ('book', 1), ('consists', 1), ('three', 1)]
[('volume', 2), ('ccis', 2), ('second', 1), ('set', 1), ('contains', 1), ('extended', 1), ('abstract', 1), ('poster', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1)]
[('book', 2), ('conference', 2), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('scandinavian', 1), ('information', 1), ('system', 1), ('scis', 1), ('held', 1), ('oulu', 1), ('finland', 1), ('august', 1), ('theme', 1), ('design', 1), ('user', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('formal', 1), ('ontology', 1), ('meet', 1), ('industry', 1), ('workshop', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('august', 1), ('full', 1), ('research', 1), ('accepted', 1), ('fomi', 1), ('selected', 1), ('submission', 1)]
[('paper', 2), ('book', 1), ('contains', 1), ('extended', 1), ('revised', 1), ('th', 1), ('international', 1), ('conference', 1), ('enterprise', 1), ('information', 1), ('system', 1), ('iceis', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('april', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('immersive', 1), ('education', 1), ('summit', 1), ('eied', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('gamification', 2), ('enterprise', 2), ('employee', 2), ('book', 1), ('explains', 1), ('specifically', 1), ('help', 1), ('manger', 1), ('multiple', 1), ('area', 1), ('within', 1), ('improve', 1), ('attrition', 1), ('engagement', 1), ('important', 1), ('component', 1), ('foster', 1), ('relation', 1), ('organization', 1)]
[('springerbrief', 1), ('examines', 1), ('technology', 1), ('email', 1), ('privacy', 1), ('encryption', 1), ('origin', 1), ('theoretical', 1), ('practical', 1), ('detail', 1), ('explains', 1), ('challenge', 1), ('standardization', 1), ('usability', 1), ('trust', 1), ('interfere', 1), ('user', 1), ('experience', 1), ('software', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('working', 1), ('human', 1), ('work', 1), ('interaction', 1), ('design', 1), ('hwid', 1), ('held', 1), ('london', 1), ('uk', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('thisbook', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('fo', 1), ('th', 1), ('international', 1), ('scientific', 1), ('conferenceon', 1), ('information', 1), ('technology', 1), ('mathematical', 1), ('modeling', 1), ('named', 1), ('terpugov', 1), ('itmm', 1), ('held', 1), ('anzhero', 1), ('sudzhensk', 1), ('russia', 1), ('november', 1)]
[('nbsp', 2), ('decision', 2), ('work', 1), ('book', 1), ('based', 1), ('philosophical', 1), ('logical', 1), ('view', 1), ('subject', 1), ('decoding', 1), ('progress', 1), ('making', 1), ('process', 1), ('cognition', 1), ('system', 1), ('maker', 1), ('human', 1), ('animal', 1), ('bird', 1), ('living', 1)]
[('brief', 2), ('computer', 2), ('science', 2), ('explore', 1), ('topic', 1), ('lens', 1), ('bit', 1), ('circus', 1), ('engineering', 1), ('entertainment', 1), ('company', 1), ('based', 1), ('downtown', 1), ('los', 1), ('angeles', 1), ('examines', 1), ('way', 1), ('apply', 1), ('wide', 1), ('variety', 1), ('application', 1)]
[('user', 2), ('physical', 2), ('model', 2), ('book', 1), ('present', 1), ('new', 1), ('type', 1), ('modeling', 1), ('environment', 1), ('interact', 1), ('geospatial', 1), ('simulation', 1), ('using', 1), ('studied', 1), ('landscape', 1), ('multiple', 1), ('alter', 1), ('hand', 1), ('scanning', 1), ('thereby', 1), ('providing', 1), ('input', 1)]
[('data', 3), ('book', 1), ('introduces', 1), ('basic', 1), ('big', 1), ('processing', 1), ('paradigm', 1), ('batch', 1), ('streaming', 1), ('representative', 1), ('programming', 1), ('framework', 1), ('presented', 1), ('software', 1), ('defined', 1), ('networking', 1), ('sdn', 1), ('network', 1), ('function', 1), ('virtualization', 1), ('nfv', 1)]
[('trajectory', 3), ('map', 2), ('book', 1), ('provides', 1), ('overview', 1), ('state', 1), ('art', 1), ('construction', 1), ('algorithm', 1), ('use', 1), ('tracking', 1), ('data', 1), ('form', 1), ('generate', 1), ('vector', 1), ('common', 1), ('type', 1), ('gps', 1), ('based', 1), ('introduces', 1), ('three', 1), ('emerging', 1)]
[('book', 2), ('goal', 1), ('topresent', 1), ('advance', 1), ('discus', 1), ('alternative', 1), ('evolutionary', 1), ('computation', 1), ('ec', 1), ('developmentsand', 1), ('non', 1), ('conventional', 1), ('operator', 1), ('proved', 1), ('effective', 1), ('solutionof', 1), ('several', 1), ('complex', 1), ('problem', 1)]
[('book', 2), ('summarizes', 2), ('various', 1), ('approach', 1), ('theautomatic', 1), ('detection', 1), ('health', 1), ('threat', 1), ('older', 1), ('patient', 1), ('home', 1), ('living', 1), ('alone', 1), ('thetext', 1), ('begin', 1), ('briefly', 1), ('describing', 1), ('benefit', 1), ('healthcaresupervision', 1)]
[('bookpresents', 1), ('recent', 1), ('research', 1), ('recognition', 1), ('vulnerability', 1), ('nationalsystems', 1), ('asset', 1), ('gained', 1), ('special', 1), ('attention', 1), ('criticalinfrastructures', 1), ('last', 1), ('decade', 1), ('book', 1), ('concentrate', 1), ('amp', 1), ('dactivities', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('enterprise', 1), ('application', 1), ('service', 1), ('finance', 1), ('industry', 1), ('financecom', 1), ('held', 1), ('sydney', 1), ('australia', 1), ('december', 1), ('span', 1), ('multiple', 1), ('discipline', 1)]
[('information', 2), ('system', 2), ('thisbook', 1), ('describes', 1), ('struggle', 1), ('introduce', 1), ('mechanism', 1), ('enablesnext', 1), ('generation', 1), ('maintain', 1), ('generationobserved', 1), ('birth', 1), ('growth', 1), ('internet', 1), ('inparticular', 1), ('surprisingly', 1)]
[('volume', 1), ('set', 1), ('ccis', 1), ('constitute', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('processing', 1), ('management', 1), ('uncertainty', 1), ('knowledge', 1), ('based', 1), ('system', 1), ('ipmu', 1), ('held', 1), ('eindhoven', 1), ('netherlands', 1), ('june', 1)]
[('book', 1), ('far', 1), ('systematic', 1), ('comprehensive', 1), ('review', 1), ('field', 1), ('automated', 1), ('software', 1), ('composition', 1), ('based', 1), ('formally', 1), ('described', 1), ('reproducible', 1), ('methodology', 1), ('critically', 1), ('discus', 1), ('approach', 1), ('relevant', 1), ('expert', 1)]
[('traffic', 2), ('response', 1), ('need', 1), ('improve', 1), ('road', 1), ('operation', 1), ('researcher', 1), ('implement', 1), ('advanced', 1), ('technology', 1), ('integration', 1), ('system', 1), ('data', 1), ('develop', 1), ('state', 1), ('art', 1), ('application', 1), ('assist', 1), ('engineer', 1), ('springerbrief', 1), ('introduces', 1), ('three', 1)]
[('challenge', 2), ('spatial', 2), ('network', 2), ('many', 2), ('brief', 1), ('explores', 1), ('main', 1), ('data', 1), ('analysis', 1), ('connected', 1), ('component', 1), ('candidate', 1), ('processed', 1), ('within', 1), ('book', 1), ('conceptualized', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('industrial', 1), ('engineering', 1), ('application', 1), ('applied', 1), ('intelligent', 1), ('system', 1), ('iea', 1), ('aie', 1), ('held', 1), ('kaohsiung', 1), ('taiwan', 1)]
[('book', 1), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('modeling', 1), ('simulation', 1), ('engineering', 1), ('economics', 1), ('management', 1), ('m', 1), ('held', 1), ('teruel', 1), ('spain', 1), ('july', 1), ('event', 1), ('co', 1), ('organized', 1), ('amse', 1), ('association', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('iapr', 1), ('international', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('bioinformatics', 1), ('prib', 1), ('held', 1), ('stockholm', 1), ('sweden', 1), ('august', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('biomedical', 2), ('book', 1), ('present', 1), ('latest', 1), ('result', 1), ('selected', 1), ('application', 1), ('computational', 1), ('intelligence', 1), ('technology', 1), ('contribution', 1), ('deal', 1), ('problem', 1), ('medical', 1), ('informatics', 1), ('ranging', 1), ('theoretical', 1), ('consideration', 1), ('practical', 1)]
[('mathematical', 1), ('theory', 1), ('counterpoint', 1), ('originally', 1), ('aimed', 1), ('simulating', 1), ('composition', 1), ('rule', 1), ('described', 1), ('johann', 1), ('joseph', 1), ('fux', 1), ('gradus', 1), ('ad', 1), ('parnassum', 1), ('soon', 1), ('became', 1), ('apparent', 1), ('algebraic', 1), ('apparatus', 1), ('used', 1), ('model', 1), ('serve', 1), ('define', 1)]
[('ifip', 2), ('volume', 1), ('aict', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('wg', 1), ('conference', 1), ('advance', 1), ('production', 1), ('management', 1), ('system', 1), ('apms', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('track', 3), ('intelligent', 2), ('book', 1), ('contains', 1), ('selection', 1), ('refereed', 1), ('revised', 1), ('paper', 1), ('technique', 1), ('application', 1), ('special', 1), ('image', 1), ('processing', 1), ('artificial', 1), ('vision', 1), ('originally', 1), ('presented', 1), ('international', 1), ('symposium', 1)]
[('group', 2), ('sound', 2), ('information', 2), ('source', 2), ('book', 1), ('focus', 1), ('special', 1), ('auditory', 1), ('interface', 1), ('using', 1), ('spatial', 1), ('representation', 1), ('addition', 1), ('location', 1), ('selected', 1), ('show', 1), ('many', 1), ('advantage', 1), ('mere', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('metadata', 1), ('semantics', 1), ('research', 1), ('conference', 1), ('mtsr', 1), ('held', 1), ('manchester', 1), ('uk', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1), ('poster', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('global', 1), ('security', 1), ('safety', 1), ('sustainability', 1), ('icgs', 1), ('held', 1), ('london', 1), ('uk', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('system', 3), ('rule', 2), ('based', 2), ('learning', 2), ('expert', 2), ('idea', 1), ('introduced', 1), ('book', 1), ('explore', 1), ('relationship', 1), ('among', 1), ('machine', 1), ('big', 1), ('data', 1), ('seen', 1), ('special', 1), ('type', 1), ('built', 1), ('using', 1), ('knowledge', 1), ('real', 1)]
[('research', 2), ('development', 1), ('operation', 1), ('requires', 1), ('constant', 1), ('improvement', 1), ('integration', 1), ('result', 1), ('business', 1), ('application', 1), ('innovative', 1), ('educational', 1), ('practice', 1), ('full', 1), ('deployment', 1), ('commercial', 1), ('exploitation', 1), ('good', 1)]
[('model', 2), ('diffusion', 2), ('book', 1), ('present', 1), ('leading', 1), ('social', 1), ('network', 1), ('used', 1), ('demonstrate', 1), ('spread', 1), ('disease', 1), ('idea', 1), ('behavior', 1), ('introduces', 1), ('field', 1), ('computer', 1), ('science', 1), ('independent', 1), ('cascade', 1), ('linear', 1), ('threshold', 1)]
[('power', 1), ('electronics', 1), ('variable', 1), ('frequency', 1), ('drive', 1), ('continuously', 1), ('developing', 1), ('multidisciplinary', 1), ('field', 1), ('electrical', 1), ('engineering', 1), ('practically', 1), ('possible', 1), ('write', 1), ('book', 1), ('covering', 1), ('entire', 1), ('area', 1), ('individual', 1), ('specialist', 1), ('especially', 1)]
[('optimization', 2), ('book', 1), ('describes', 1), ('recent', 1), ('advance', 1), ('fuzzy', 1), ('logic', 1), ('augmentation', 1), ('nature', 1), ('inspired', 1), ('metaheuristics', 1), ('application', 1), ('area', 1), ('intelligent', 1), ('control', 1), ('robotics', 1), ('pattern', 1), ('recognition', 1), ('time', 1), ('series', 1), ('prediction', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('agent', 1), ('artificial', 1), ('intelligence', 1), ('icaart', 1), ('held', 1), ('anger', 1), ('france', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('cloud', 1), ('computing', 1), ('service', 1), ('science', 1), ('closer', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('april', 1), ('presented', 1), ('selected', 1)]
[('algorithm', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('advanced', 1), ('topic', 1), ('computational', 1), ('algorithmic', 1), ('aspect', 1), ('number', 1), ('theory', 1), ('focusing', 1), ('application', 1), ('cryptography', 1), ('reader', 1), ('learn', 1), ('develop', 1), ('fast', 1), ('including', 1), ('quantum', 1)]
[('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('thesecond', 1), ('international', 1), ('workshop', 1), ('advanced', 1), ('methodology', 1), ('bayesian', 1), ('network', 1), ('ambn', 1), ('held', 1), ('yokohama', 1), ('japan', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('invited', 1)]
[('international', 2), ('conference', 2), ('wsom', 2), ('book', 1), ('contains', 1), ('article', 1), ('th', 1), ('workshop', 1), ('self', 1), ('organizing', 1), ('map', 1), ('held', 1), ('rice', 1), ('university', 1), ('nbsp', 1), ('houston', 1), ('texas', 1), ('january', 1), ('biennial', 1), ('series', 1), ('starting', 1)]
[('smart', 2), ('tv', 2), ('book', 1), ('discus', 1), ('emerging', 1), ('topic', 1), ('security', 1), ('including', 1), ('implication', 1), ('consumer', 1), ('privacy', 1), ('author', 1), ('present', 1), ('chapter', 1), ('architecture', 1), ('functionality', 1), ('various', 1), ('attack', 1), ('defense', 1), ('associated', 1), ('risk', 1)]
[('optimization', 2), ('algorithm', 2), ('niching', 2), ('evolutionary', 2), ('book', 1), ('offer', 1), ('first', 1), ('comprehensive', 1), ('taxonomy', 1), ('multimodal', 1), ('work', 1), ('root', 1), ('topic', 1), ('parallel', 1), ('global', 1), ('author', 1), ('explains', 1)]
[('return', 2), ('oriented', 2), ('programming', 2), ('attack', 2), ('book', 1), ('provides', 1), ('depth', 1), ('look', 1), ('explores', 1), ('several', 1), ('conventional', 1), ('analyzes', 1), ('effectiveness', 1), ('defense', 1), ('technique', 1), ('including', 1), ('address', 1), ('space', 1), ('layout', 1), ('randomization', 1), ('aslr', 1)]
[('volume', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('multimedia', 1), ('communication', 1), ('service', 1), ('security', 1), ('mc', 1), ('held', 1), ('krakow', 1), ('poland', 1), ('november', 1), ('full', 1), ('paper', 1), ('included', 1), ('selected', 1)]
[('software', 2), ('approach', 2), ('volume', 1), ('engineering', 1), ('perspective', 1), ('application', 1), ('intelligent', 1), ('system', 1), ('present', 1), ('new', 1), ('method', 1), ('real', 1), ('world', 1), ('problem', 1), ('particular', 1), ('exploratory', 1), ('research', 1), ('describes', 1), ('novel', 1), ('field', 1)]
[('conference', 2), ('proceeding', 1), ('nd', 1), ('international', 1), ('domain', 1), ('decomposition', 1), ('method', 1), ('held', 1), ('lugano', 1), ('switzerland', 1), ('participant', 1), ('country', 1), ('continued', 1), ('long', 1), ('standing', 1), ('tradition', 1)]
[('process', 3), ('present', 2), ('proposal', 2), ('business', 2), ('book', 1), ('designing', 1), ('management', 1), ('bpm', 1), ('system', 1), ('nbsp', 1), ('comprise', 1), ('modelling', 1), ('based', 1), ('purified', 1), ('model', 1), ('notation', 1), ('bpmn', 1), ('variant', 1), ('author', 1)]
[('practical', 1), ('didactic', 1), ('text', 1), ('reference', 1), ('discus', 1), ('leading', 1), ('edge', 1), ('secure', 1), ('cloud', 1), ('computing', 1), ('exploring', 1), ('essential', 1), ('concept', 1), ('principle', 1), ('tool', 1), ('technique', 1), ('deployment', 1), ('model', 1), ('field', 1), ('enlightening', 1), ('perspective', 1), ('presented', 1)]
[('processing', 2), ('point', 2), ('cloud', 2), ('end', 2), ('unique', 1), ('work', 1), ('present', 1), ('detailed', 1), ('review', 1), ('analysis', 1), ('fully', 1), ('automated', 1), ('framework', 1), ('introduced', 1), ('incorporating', 1), ('aspect', 1), ('typical', 1), ('workflow', 1), ('raw', 1), ('data', 1), ('semantic', 1)]
[('editedvolume', 1), ('provides', 1), ('reader', 1), ('fully', 1), ('updated', 1), ('depth', 1), ('treatise', 1), ('emergingprinciples', 1), ('conceptual', 1), ('underpinnings', 1), ('algorithm', 1), ('practice', 1), ('computationalintelligence', 1), ('realization', 1), ('concept', 1), ('implementation', 1), ('model', 1)]
[('applied', 2), ('specialvolume', 1), ('collection', 1), ('outstanding', 1), ('article', 1), ('presented', 1), ('amat', 1), ('held', 1), ('ankara', 1), ('tobb', 1), ('economics', 1), ('technologyuniversity', 1), ('collectionis', 1), ('suitable', 1), ('computational', 1), ('mathematics', 1)]
[('worldcist', 2), ('bookcontains', 1), ('selection', 1), ('article', 1), ('world', 1), ('conference', 1), ('informationsystems', 1), ('technology', 1), ('held', 1), ('nd', 1), ('th', 1), ('marchat', 1), ('recife', 1), ('pernambuco', 1), ('brazil', 1), ('global', 1), ('forum', 1), ('researcher', 1)]
[('book', 2), ('objective', 1), ('contribute', 1), ('development', 1), ('theintelligent', 1), ('information', 1), ('database', 1), ('system', 1), ('essential', 1), ('currentknowledge', 1), ('experience', 1), ('know', 1), ('contains', 1), ('selection', 1), ('chapter', 1), ('based', 1)]
[('de', 2), ('boer', 2), ('festschrift', 1), ('volume', 1), ('published', 1), ('honor', 1), ('offrank', 1), ('occasion', 1), ('th', 1), ('birthday', 1), ('frank', 1), ('prominent', 1), ('member', 1), ('research', 1), ('community', 1), ('formalmethods', 1), ('theoretical', 1), ('computer', 1), ('science', 1), ('brief', 1), ('look', 1)]
[('worldcist', 2), ('book', 1), ('contains', 1), ('selection', 1), ('article', 1), ('world', 1), ('conference', 1), ('information', 1), ('system', 1), ('technology', 1), ('held', 1), ('nd', 1), ('th', 1), ('march', 1), ('recife', 1), ('pernambuco', 1), ('brazil', 1), ('global', 1), ('forum', 1), ('researcher', 1)]
[('technology', 2), ('book', 1), ('collectsarticles', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('new', 1), ('generation', 1), ('april', 1), ('la', 1), ('vega', 1), ('nv', 1), ('usa', 1), ('includes', 1), ('chapter', 1), ('oncritical', 1), ('area', 1), ('including', 1), ('web', 1)]
[('intelligent', 2), ('volume', 1), ('advance', 1), ('system', 1), ('computing', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('main', 1), ('track', 1), ('iiti', 1), ('first', 1), ('international', 1), ('conference', 1), ('information', 1), ('technology', 1), ('industry', 1), ('held', 1), ('sochi', 1), ('russia', 1)]
[('become', 2), ('book', 1), ('explores', 1), ('life', 1), ('social', 1), ('interaction', 1), ('split', 1), ('intertwined', 1), ('integrated', 1), ('reality', 1), ('physical', 1), ('digital', 1), ('sense', 1), ('presence', 1), ('fragmented', 1), ('yet', 1), ('earlier', 1), ('design', 1)]
[('autonomic', 2), ('engineering', 2), ('work', 1), ('road', 1), ('transport', 1), ('support', 1), ('art', 1), ('presented', 1), ('aim', 1), ('meeting', 1), ('challenge', 1), ('behavior', 1), ('intelligent', 1), ('transportation', 1), ('system', 1), ('fusing', 1), ('research', 1), ('discipline', 1), ('traffic', 1)]
[('fourth', 2), ('game', 2), ('workshop', 2), ('intelligence', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('computer', 1), ('cgw', 1), ('general', 1), ('playing', 1), ('agent', 1), ('giga', 1), ('held', 1), ('conjunction', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('ijcai', 1), ('buenos', 1), ('aire', 1), ('argentina', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('model', 2), ('concurrent', 2), ('process', 2), ('monograph', 1), ('present', 1), ('application', 1), ('concept', 1), ('method', 1), ('algebraic', 1), ('topology', 1), ('computer', 1), ('science', 1), ('analysis', 1), ('taking', 1), ('known', 1), ('discrete', 1), ('resource', 1), ('management', 1)]
[('international', 2), ('joint', 2), ('icete', 2), ('bookconstitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conferenceon', 1), ('business', 1), ('telecommunication', 1), ('held', 1), ('colmar', 1), ('france', 1), ('injuly', 1), ('nbsp', 1), ('conference', 1), ('integrating', 1), ('four', 1)]
[('book', 1), ('contains', 1), ('reviewed', 1), ('accepted', 1), ('contribution', 1), ('ofthe', 1), ('first', 1), ('international', 1), ('symposium', 1), ('intelligent', 1), ('computing', 1), ('system', 1), ('isics', 1), ('held', 1), ('merida', 1), ('mexico', 1), ('march', 1), ('nbsp', 1), ('received', 1), ('submission', 1)]
[('international', 2), ('joint', 2), ('conference', 2), ('icete', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('business', 1), ('telecommunication', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('august', 1), ('integrating', 1), ('four', 1), ('major', 1)]
[('method', 3), ('proposed', 3), ('book', 1), ('anew', 1), ('hybrid', 1), ('intelligent', 1), ('system', 1), ('isbased', 1), ('granular', 1), ('computing', 1), ('approach', 1), ('applied', 1), ('level', 1), ('techniquesused', 1), ('combined', 1), ('modular', 1), ('neural', 1), ('network', 1)]
[('thisbook', 1), ('present', 1), ('novel', 1), ('framework', 1), ('understanding', 1), ('designing', 1), ('performativeexperiences', 1), ('digital', 1), ('technology', 1), ('introduces', 1), ('reader', 1), ('performancetheory', 1), ('practice', 1), ('context', 1), ('hci', 1), ('give', 1), ('practical', 1), ('holisticapproach', 1)]
[('book', 1), ('proceeding', 1), ('fourth', 1), ('international', 1), ('conference', 1), ('quantitative', 1), ('logic', 1), ('soft', 1), ('computing', 1), ('qlsc', 1), ('held', 1), ('october', 1), ('zhejiang', 1), ('sci', 1), ('tech', 1), ('university', 1), ('hangzhou', 1), ('china', 1), ('includes', 1), ('paper', 1), ('plenary', 1), ('talk', 1)]
[('machine', 2), ('successful', 1), ('book', 1), ('provides', 1), ('second', 1), ('edition', 1), ('interactive', 1), ('illustrative', 1), ('guide', 1), ('dimensional', 1), ('curve', 1), ('fitting', 1), ('multidimensional', 1), ('clustering', 1), ('learning', 1), ('neural', 1), ('network', 1), ('support', 1), ('vector', 1), ('along', 1), ('way', 1), ('topic', 1)]
[('superconducting', 3), ('quantum', 3), ('device', 2), ('optic', 2), ('book', 1), ('present', 1), ('basic', 1), ('application', 1), ('past', 1), ('decade', 1), ('risen', 1), ('prominence', 1), ('arena', 1), ('information', 1), ('processing', 1)]
[('book', 1), ('present', 1), ('selection', 1), ('recent', 1), ('algorithmic', 1), ('advance', 1), ('riemannian', 1), ('geometry', 1), ('context', 1), ('machine', 1), ('learning', 1), ('statistic', 1), ('optimization', 1), ('computer', 1), ('vision', 1), ('related', 1), ('field', 1), ('unifying', 1), ('theme', 1), ('different', 1), ('chapter', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('thethoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('advancesin', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('auckland', 1), ('newzealand', 1), ('april', 1)]
[('decision', 2), ('making', 2), ('research', 2), ('book', 1), ('offer', 1), ('comprehensive', 1), ('introduction', 1), ('method', 1), ('solving', 1), ('multiple', 1), ('criterion', 1), ('group', 1), ('problem', 1), ('hesitant', 1), ('fuzzy', 1), ('information', 1), ('report', 1), ('author', 1), ('latest', 1), ('others', 1)]
[('mtd', 3), ('protect', 2), ('book', 1), ('provides', 1), ('overview', 1), ('moving', 1), ('target', 1), ('defense', 1), ('importance', 1), ('developing', 1), ('novel', 1), ('scheme', 1), ('distributed', 1), ('system', 1), ('present', 1), ('based', 1), ('research', 1), ('effort', 1), ('cloud', 1), ('data', 1), ('center', 1), ('along', 1), ('network', 1), ('security', 1)]
[('wireless', 2), ('network', 2), ('book', 1), ('present', 1), ('physical', 1), ('layer', 1), ('security', 1), ('promising', 1), ('paradigm', 1), ('achieving', 1), ('information', 1), ('theoretic', 1), ('secrecy', 1), ('required', 1), ('explains', 1), ('extremely', 1), ('vulnerable', 1), ('eavesdropping', 1), ('attack', 1), ('discus', 1)]
[('printing', 2), ('book', 1), ('identifies', 1), ('analyzes', 1), ('discus', 1), ('current', 1), ('trend', 1), ('digitalized', 1), ('decentralized', 1), ('networked', 1), ('physical', 1), ('value', 1), ('creation', 1), ('focusing', 1), ('particular', 1), ('example', 1), ('addition', 1), ('evaluating', 1), ('disruptive', 1), ('potential', 1)]
[('software', 3), ('business', 2), ('book', 1), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('icsob', 1), ('held', 1), ('ljubljana', 1), ('slovenia', 1), ('june', 1), ('refers', 1), ('commercial', 1), ('activity', 1), ('around', 1), ('industry', 1), ('aimed', 1)]
[('service', 3), ('science', 2), ('book', 1), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('exploring', 1), ('y', 1), ('held', 1), ('bucharest', 1), ('romania', 1), ('constitutes', 1), ('interdisciplinary', 1), ('approach', 1), ('systematic', 1), ('innovation', 1)]
[('paper', 2), ('bookconstitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('italian', 1), ('workshop', 1), ('onadvances', 1), ('artificial', 1), ('life', 1), ('evolutionary', 1), ('computation', 1), ('system', 1), ('chemistry', 1), ('wivace', 1), ('held', 1), ('bari', 1), ('italy', 1), ('september', 1), ('presented', 1)]
[('erp', 2), ('future', 2), ('conference', 2), ('research', 2), ('volume', 1), ('present', 1), ('revised', 1), ('peer', 1), ('reviewed', 1), ('contribution', 1), ('held', 1), ('munich', 1), ('germany', 1), ('november', 1), ('scientific', 1), ('platform', 1), ('enterprise', 1)]
[('analysis', 3), ('meaningful', 2), ('book', 1), ('introduces', 1), ('purposive', 1), ('interaction', 1), ('mpia', 1), ('theory', 1), ('combine', 1), ('social', 1), ('network', 1), ('sna', 1), ('latent', 1), ('semantic', 1), ('lsa', 1), ('help', 1), ('create', 1), ('analyse', 1), ('learning', 1), ('landscape', 1), ('digital', 1), ('trace', 1), ('left', 1)]
[('decision', 2), ('special', 1), ('session', 1), ('economics', 1), ('decon', 1), ('scientific', 1), ('forum', 1), ('share', 1), ('idea', 1), ('project', 1), ('research', 1), ('result', 1), ('model', 1), ('experience', 1), ('associated', 1), ('complexity', 1), ('behavioral', 1), ('process', 1), ('aiming', 1), ('explaining', 1)]
[('ue', 3), ('user', 1), ('engagement', 1), ('complex', 1), ('concept', 1), ('investigate', 1), ('purpose', 1), ('book', 1), ('constrain', 1), ('perspective', 1), ('offer', 1), ('rounded', 1), ('appreciation', 1), ('across', 1), ('various', 1), ('domain', 1), ('discipline', 1), ('text', 1), ('begin', 1)]
[('conference', 2), ('technology', 2), ('itib', 1), ('th', 1), ('information', 1), ('biomedicine', 1), ('organized', 1), ('department', 1), ('informatics', 1), ('medical', 1), ('equipment', 1), ('silesian', 1), ('university', 1), ('every', 1), ('year', 1), ('auspex', 1), ('committee', 1)]
[('thepresent', 1), ('book', 1), ('includes', 1), ('set', 1), ('selected', 1), ('extended', 1), ('paper', 1), ('thinternational', 1), ('conference', 1), ('simulation', 1), ('modeling', 1), ('methodology', 1), ('technologiesand', 1), ('application', 1), ('simultech', 1), ('held', 1), ('colmar', 1), ('france', 1), ('july', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('cognitive', 1), ('radio', 1), ('oriented', 1), ('wireless', 1), ('network', 1), ('crowncom', 1), ('held', 1), ('grenoble', 1), ('france', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('last', 1), ('decade', 1), ('field', 1), ('intelligent', 1), ('system', 1), ('delivered', 1), ('human', 1), ('kind', 1), ('significant', 1), ('achievement', 1), ('facing', 1), ('major', 1), ('transformation', 1), ('year', 1), ('ago', 1), ('automation', 1), ('knowledge', 1), ('based', 1), ('ai', 1), ('still', 1), ('dominant', 1), ('paradigm', 1), ('fueling', 1)]
[('agent', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('seven', 1), ('workshop', 1), ('co', 1), ('located', 1), ('th', 1), ('international', 1), ('conference', 1), ('practical', 1), ('application', 1), ('multi', 1), ('system', 1), ('paams', 1), ('held', 1), ('sevilla', 1), ('spain', 1), ('june', 1), ('full', 1), ('paper', 1)]
[('book', 2), ('present', 2), ('new', 2), ('intelligent', 2), ('image', 2), ('introduction', 1), ('independent', 1), ('chapter', 1), ('whichare', 1), ('devoted', 1), ('various', 1), ('approach', 1), ('processing', 1), ('andanalysis', 1), ('method', 1), ('algorithm', 1), ('applied', 1), ('systemsfor', 1)]
[('pattern', 5), ('mining', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('field', 1), ('evolutionary', 1), ('algorithm', 1), ('cover', 1), ('formal', 1), ('definition', 1), ('type', 1), ('usefulness', 1), ('knowledge', 1)]
[('work', 2), ('digital', 2), ('computer', 2), ('bookcombines', 1), ('curator', 1), ('artist', 1), ('human', 1), ('interactionresearchers', 1), ('scientist', 1), ('examine', 1), ('mutual', 1), ('benefit', 1), ('andchallenges', 1), ('posed', 1), ('working', 1), ('together', 1), ('support', 1), ('art', 1), ('theirmany', 1), ('form', 1)]
[('international', 2), ('conference', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('sdot', 1), ('organized', 1), ('university', 1), ('žilina', 1), ('faculty', 1), ('management', 1), ('science', 1), ('informatics', 1), ('slovak', 1), ('republic', 1), ('november', 1), ('truly', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('interactive', 1), ('collaborative', 1), ('learning', 1), ('held', 1), ('september', 1), ('clayton', 1), ('hotel', 1), ('belfast', 1), ('uk', 1), ('nbsp', 1), ('currently', 1), ('witnessing', 1), ('significant', 1), ('transformation', 1), ('development', 1)]
[('international', 2), ('workshop', 2), ('care', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('collaborative', 1), ('agent', 1), ('research', 1), ('development', 1), ('singapore', 1), ('second', 1), ('social', 1), ('computing', 1), ('digital', 1), ('education', 1), ('socialedu', 1), ('zagreb', 1), ('croatia', 1), ('june', 1), ('paper', 1), ('selected', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('coordination', 1), ('organization', 1), ('institution', 1), ('norm', 1), ('agent', 1), ('system', 1), ('coin', 1), ('co', 1), ('located', 1), ('aamas', 1), ('held', 1)]
[('research', 2), ('book', 1), ('detail', 1), ('development', 1), ('art', 1), ('design', 1), ('formulated', 1), ('progressed', 1), ('measured', 1), ('reviewed', 1), ('nbsp', 1), ('explores', 1), ('challenge', 1), ('interdisciplinary', 1), ('highlight', 1), ('importance', 1), ('significance', 1), ('future', 1)]
[('paper', 3), ('book', 1), ('contains', 1), ('range', 1), ('keynote', 1), ('submitted', 1), ('presented', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('sig', 1), ('international', 1), ('summer', 1), ('school', 1), ('held', 1), ('edinburgh', 1), ('uk', 1), ('august', 1), ('revised', 1), ('full', 1), ('included', 1)]
[('system', 3), ('intelligent', 2), ('learning', 2), ('monograph', 1), ('provides', 1), ('comprehensive', 1), ('research', 1), ('review', 1), ('technique', 1), ('personalisation', 1), ('special', 1), ('emphasis', 1), ('given', 1), ('tutoring', 1), ('particular', 1), ('class', 1), ('support', 1)]
[('science', 3), ('unconventional', 1), ('computing', 1), ('niche', 1), ('interdisciplinary', 1), ('cross', 1), ('bred', 1), ('computer', 1), ('physic', 1), ('mathematics', 1), ('chemistry', 1), ('electronic', 1), ('engineering', 1), ('biology', 1), ('material', 1), ('nanotechnology', 1), ('aim', 1), ('book', 1), ('uncover', 1)]
[('extended', 2), ('revised', 2), ('paper', 2), ('book', 1), ('contains', 1), ('version', 1), ('selected', 1), ('third', 1), ('international', 1), ('congress', 1), ('sport', 1), ('science', 1), ('research', 1), ('technology', 1), ('support', 1), ('icsports', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('thoroughly', 1)]
[('book', 1), ('report', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('related', 1), ('social', 1), ('occupational', 1), ('factor', 1), ('present', 1), ('innovative', 1), ('contribution', 1), ('optimization', 1), ('sociotechnical', 1), ('management', 1), ('system', 1), ('consider', 1), ('organizational', 1), ('policy', 1), ('logistical', 1), ('issue', 1)]
[('term', 2), ('different', 1), ('interdependent', 1), ('component', 1), ('important', 1), ('cio', 1), ('strategy', 1), ('long', 1), ('tactical', 1), ('operational', 1), ('concern', 1), ('short', 1), ('based', 1), ('distinction', 1), ('repercussion', 1), ('book', 1), ('clearly', 1)]
[('decomposition', 3), ('book', 1), ('present', 1), ('algorithm', 1), ('used', 1), ('provide', 1), ('recommendation', 1), ('exploiting', 1), ('matrix', 1), ('factorization', 1), ('tensor', 1), ('technique', 1), ('highlight', 1), ('known', 1), ('method', 1), ('recommender', 1), ('system', 1), ('singular', 1), ('value', 1)]
[('book', 1), ('focus', 1), ('predictive', 1), ('capability', 1), ('derived', 1), ('digital', 1), ('representation', 1), ('human', 1), ('simulation', 1), ('virtual', 1), ('environment', 1), ('report', 1), ('model', 1), ('facilitate', 1), ('prediction', 1), ('safety', 1), ('performance', 1), ('describes', 1), ('innovative', 1)]
[('software', 3), ('nbsp', 2), ('crisis', 2), ('engineering', 2), ('structured', 1), ('book', 1), ('discus', 1), ('lifecycle', 1), ('optimization', 1), ('project', 1), ('management', 1), ('mean', 1), ('method', 1), ('tool', 1), ('outcome', 1), ('based', 1), ('lesson', 1), ('learned', 1)]
[('eye', 2), ('gaze', 2), ('vehicle', 2), ('book', 1), ('provides', 1), ('concise', 1), ('study', 1), ('tracking', 1), ('direct', 1), ('controller', 1), ('electronic', 1), ('display', 1), ('interface', 1), ('inside', 1), ('car', 1), ('author', 1), ('explores', 1), ('prospect', 1), ('controlling', 1), ('internal', 1), ('system', 1), ('via', 1), ('driver', 1)]
[('feature', 2), ('wireless', 2), ('system', 2), ('power', 2), ('springerbrief', 1), ('explores', 1), ('digital', 1), ('protocol', 1), ('communication', 1), ('emerging', 1), ('electrical', 1), ('smart', 1), ('grid', 1), ('low', 1), ('high', 1), ('described', 1), ('nbsp', 1), ('work', 1), ('examines', 1), ('cybersecurity', 1)]
[('international', 2), ('held', 2), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('workshop', 1), ('cultural', 1), ('robotics', 1), ('part', 1), ('th', 1), ('symposium', 1), ('robot', 1), ('human', 1), ('interactive', 1), ('communication', 1), ('kobe', 1), ('japan', 1), ('nbsp', 1)]
[('book', 1), ('highlight', 1), ('latest', 1), ('advance', 1), ('engineering', 1), ('mathematics', 1), ('main', 1), ('focus', 1), ('mathematical', 1), ('model', 1), ('structure', 1), ('concept', 1), ('problem', 1), ('computational', 1), ('method', 1), ('algorithm', 1), ('relevant', 1), ('application', 1), ('modern', 1), ('technology', 1)]
[('problem', 3), ('optical', 2), ('flow', 2), ('sparsity', 2), ('brief', 1), ('focus', 1), ('main', 1), ('domain', 1), ('trajectory', 1), ('estimation', 1), ('negetiveemoji', 1), ('finding', 1), ('convex', 1), ('optimization', 1), ('method', 1), ('apply', 1), ('ii', 1), ('extend', 1), ('improve', 1)]
[('digital', 2), ('forensics', 2), ('electronic', 2), ('deal', 1), ('acquisition', 1), ('preservation', 1), ('examination', 1), ('analysis', 1), ('presentation', 1), ('evidence', 1), ('nbsp', 1), ('networked', 1), ('computing', 1), ('wireless', 1), ('communication', 1), ('portable', 1), ('device', 1), ('expanded', 1), ('role', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('information', 1), ('software', 1), ('technology', 1), ('icist', 1), ('held', 1), ('druskininkai', 1), ('lithuania', 1), ('october', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('modularity', 2), ('composition', 2), ('lncs', 1), ('transaction', 1), ('devoted', 1), ('aspect', 1), ('software', 1), ('method', 1), ('tool', 1), ('technique', 1), ('covering', 1), ('requirement', 1), ('analysis', 1), ('design', 1), ('implementation', 1), ('maintenance', 1), ('evolution', 1), ('focus', 1)]
[('robotics', 2), ('symposium', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('latin', 1), ('american', 1), ('third', 1), ('brazilian', 1), ('lars', 1), ('sbr', 1), ('held', 1), ('uberlândia', 1), ('brazil', 1), ('october', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('shine', 1), ('spotlight', 1), ('software', 1), ('centric', 1), ('network', 1), ('emerging', 1), ('service', 1), ('environment', 1), ('author', 1), ('examine', 1), ('road', 1), ('ahead', 1), ('connectivity', 1), ('human', 1), ('thing', 1), ('considering', 1), ('rapid', 1), ('change', 1), ('shaken', 1), ('industry', 1)]
[('springerbrief', 1), ('provides', 1), ('overview', 1), ('contemporary', 1), ('innovative', 1), ('technology', 1), ('discus', 1), ('impact', 1), ('daily', 1), ('life', 1), ('written', 1), ('technical', 1), ('perspective', 1), ('yet', 1), ('using', 1), ('language', 1), ('terminology', 1), ('accessible', 1), ('non', 1), ('expert', 1), ('describes', 1)]
[('book', 2), ('selected', 2), ('paper', 2), ('constitutes', 1), ('revised', 1), ('th', 1), ('global', 1), ('sourcing', 1), ('workshop', 1), ('held', 1), ('val', 1), ('isère', 1), ('france', 1), ('february', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('submission', 1), ('offer', 1)]
[('collaborative', 2), ('network', 2), ('coin', 2), ('volume', 1), ('focused', 1), ('emerging', 1), ('concept', 1), ('innovation', 1), ('core', 1), ('knowledge', 1), ('distributed', 1), ('community', 1), ('taking', 1), ('advantage', 1), ('wide', 1), ('connectivity', 1), ('support', 1), ('communication', 1)]
[('security', 2), ('work', 1), ('provides', 1), ('guideline', 1), ('practical', 1), ('implementation', 1), ('architecture', 1), ('particular', 1), ('corporate', 1), ('cloud', 1), ('author', 1), ('mathematician', 1), ('specialist', 1), ('data', 1), ('modeling', 1), ('experience', 1), ('scientific', 1), ('collaboration', 1)]
[('book', 1), ('present', 1), ('collection', 1), ('representative', 1), ('novel', 1), ('work', 1), ('field', 1), ('data', 1), ('mining', 1), ('knowledge', 1), ('discovery', 1), ('clustering', 1), ('classification', 1), ('based', 1), ('expanded', 1), ('reworked', 1), ('version', 1), ('selection', 1), ('best', 1), ('paper', 1), ('originally', 1), ('presented', 1), ('french', 1)]
[('book', 2), ('dedicated', 1), ('professor', 1), ('selim', 1), ('akl', 1), ('honour', 1), ('groundbreaking', 1), ('research', 1), ('achievement', 1), ('computer', 1), ('science', 1), ('four', 1), ('decade', 1), ('intellectually', 1), ('stimulating', 1), ('excursion', 1), ('emergent', 1), ('computing', 1), ('paradigm', 1), ('architecture', 1)]
[('book', 1), ('author', 1), ('present', 1), ('new', 1), ('result', 1), ('interpolation', 1), ('nonmonotonic', 1), ('logic', 1), ('abstract', 1), ('function', 1), ('independence', 1), ('talmudic', 1), ('kal', 1), ('vachomer', 1), ('rule', 1), ('equational', 1), ('solution', 1), ('contrary', 1), ('duty', 1), ('obligation', 1), ('chapter', 1), ('formal', 1), ('construction', 1)]
[('innovation', 2), ('biomedical', 2), ('engineering', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('ibe', 1), ('conference', 1), ('held', 1), ('october', 1), ('poland', 1), ('discussing', 1), ('recent', 1), ('research', 1), ('past', 1), ('decade', 1), ('seen', 1), ('dynamic', 1)]
[('wireless', 2), ('network', 2), ('springerbrief', 1), ('introduces', 1), ('key', 1), ('technique', 1), ('author', 1), ('cover', 1), ('development', 1), ('led', 1), ('nbsp', 1), ('mobile', 1), ('communication', 1), ('technology', 1), ('longer', 1), ('defined', 1), ('single', 1), ('business', 1), ('model', 1)]
[('book', 2), ('wireless', 2), ('provides', 1), ('candid', 1), ('assessment', 1), ('practical', 1), ('knowledge', 1), ('current', 1), ('technological', 1), ('advancement', 1), ('healthcare', 1), ('system', 1), ('present', 1), ('competency', 1), ('modeling', 1), ('health', 1), ('framework', 1), ('medical', 1), ('body', 1), ('sensor', 1), ('network', 1)]
[('system', 3), ('book', 1), ('provides', 1), ('latest', 1), ('research', 1), ('finding', 1), ('development', 1), ('field', 1), ('interactive', 1), ('intelligent', 1), ('addressing', 1), ('diverse', 1), ('area', 1), ('autonomous', 1), ('internet', 1), ('cloud', 1), ('computing', 1), ('pattern', 1), ('recognition', 1), ('vision', 1), ('mobile', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('game', 1), ('theory', 1), ('network', 1), ('gamenets', 1), ('held', 1), ('kelowna', 1), ('canada', 1), ('paper', 1), ('carefully', 1), ('selected', 1), ('submission', 1), ('cover', 1), ('topic', 1)]
[('human', 2), ('book', 1), ('present', 1), ('new', 1), ('set', 1), ('device', 1), ('accurate', 1), ('investigation', 1), ('finger', 1), ('stiffness', 1), ('force', 1), ('distribution', 1), ('grasping', 1), ('task', 1), ('ambitious', 1), ('goal', 1), ('research', 1), ('twofold', 1), ('first', 1), ('advance', 1), ('state', 1), ('art', 1), ('strategy', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('system', 1), ('control', 1), ('information', 1), ('technology', 1), ('includes', 1), ('research', 1), ('finding', 1), ('leading', 1), ('expert', 1), ('field', 1), ('connected', 1), ('industry', 1), ('implementation', 1), ('especially', 1)]
[('woman', 3), ('leader', 2), ('book', 1), ('spotlight', 1), ('behave', 1), ('chaotic', 1), ('environment', 1), ('feature', 1), ('example', 1), ('key', 1), ('figure', 1), ('determining', 1), ('complex', 1), ('socio', 1), ('economic', 1), ('outcome', 1), ('throughout', 1), ('history', 1), ('seen', 1), ('many', 1), ('high', 1), ('level', 1)]
[('area', 2), ('book', 1), ('collect', 1), ('series', 1), ('research', 1), ('paper', 1), ('image', 1), ('processing', 1), ('communication', 1), ('introduce', 1), ('summary', 1), ('current', 1), ('technology', 1), ('give', 1), ('outlook', 1), ('potential', 1), ('feature', 1), ('problem', 1), ('key', 1), ('objective', 1)]
[('th', 2), ('conference', 2), ('language', 2), ('processing', 2), ('book', 1), ('constitutes', 1), ('joint', 1), ('refereed', 1), ('proceeding', 1), ('nbsp', 1), ('ccf', 1), ('natural', 1), ('chinese', 1), ('computing', 1), ('nlpcc', 1), ('international', 1), ('computer', 1), ('oriental', 1), ('iccpol', 1)]
[('network', 3), ('graph', 2), ('contribution', 1), ('volume', 1), ('cover', 1), ('broad', 1), ('range', 1), ('topic', 1), ('including', 1), ('maximum', 1), ('clique', 1), ('coloring', 1), ('data', 1), ('mining', 1), ('brain', 1), ('steiner', 1), ('forest', 1), ('logistic', 1), ('supply', 1), ('chain', 1), ('algorithm', 1), ('application', 1), ('market', 1)]
[('anticipation', 2), ('medicine', 2), ('book', 1), ('practicing', 1), ('physician', 1), ('expert', 1), ('present', 1), ('argument', 1), ('new', 1), ('understanding', 1), ('contribution', 1), ('make', 1), ('clear', 1), ('decisive', 1), ('test', 1), ('reader', 1), ('presented', 1), ('provocative', 1)]
[('nan', 1)]
[('system', 2), ('book', 1), ('offer', 1), ('comprehensive', 1), ('report', 1), ('state', 1), ('art', 1), ('broadly', 1), ('intended', 1), ('field', 1), ('intelligent', 1), ('nbsp', 1), ('introducing', 1), ('key', 1), ('theoretical', 1), ('issue', 1), ('describes', 1), ('number', 1), ('promising', 1), ('model', 1), ('data', 1), ('analysis', 1), ('decision', 1)]
[('technology', 2), ('swts', 2), ('first', 1), ('book', 1), ('explore', 1), ('semantic', 1), ('web', 1), ('used', 1), ('create', 1), ('intelligent', 1), ('engineering', 1), ('application', 1), ('ieas', 1), ('nbsp', 1), ('specific', 1), ('chapter', 1), ('reflect', 1), ('state', 1), ('art', 1), ('relevant', 1), ('offer', 1), ('guideline', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('metadata', 1), ('semantics', 1), ('research', 1), ('conference', 1), ('mtsr', 1), ('held', 1), ('göttingen', 1), ('germany', 1), ('november', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('transport', 1), ('system', 1), ('telematics', 1), ('tst', 1), ('held', 1), ('katowice', 1), ('ustrón', 1), ('poland', 1), ('march', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('modeling', 2), ('technique', 2), ('classroom', 1), ('texted', 1), ('textbook', 1), ('reference', 1), ('present', 1), ('set', 1), ('useful', 1), ('describing', 1), ('combined', 1), ('powerful', 1), ('framework', 1), ('analysis', 1), ('design', 1), ('business', 1), ('system', 1), ('follow', 1), ('interactive', 1)]
[('iot', 2), ('volume', 1), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('internet', 1), ('thing', 1), ('summit', 1), ('held', 1), ('rome', 1), ('italy', 1), ('october', 1), ('event', 1), ('bringing', 1)]
[('wireless', 2), ('power', 2), ('transfer', 2), ('book', 1), ('first', 1), ('systematic', 1), ('exposition', 1), ('emerging', 1), ('domain', 1), ('ad', 1), ('hoc', 1), ('communication', 1), ('network', 1), ('selectively', 1), ('span', 1), ('coherent', 1), ('large', 1), ('spectrum', 1), ('fundamental', 1), ('aspect', 1), ('mobility', 1)]
[('book', 1), ('report', 1), ('latest', 1), ('advance', 1), ('theory', 1), ('practice', 1), ('standard', 1), ('strategy', 1), ('related', 1), ('modern', 1), ('technology', 1), ('paradigm', 1), ('mobile', 1), ('cloud', 1), ('computing', 1), ('mcc', 1), ('big', 1), ('data', 1), ('pillar', 1), ('association', 1), ('emerging', 1)]
[('conference', 2), ('volume', 1), ('smart', 1), ('innovation', 1), ('system', 1), ('technology', 1), ('contains', 1), ('accepted', 1), ('paper', 1), ('presented', 1), ('iih', 1), ('msp', 1), ('th', 1), ('international', 1), ('intelligent', 1), ('information', 1), ('hiding', 1), ('multimedia', 1), ('signal', 1), ('processing', 1), ('year', 1)]
[('play', 3), ('engages', 1), ('human', 1), ('cognitively', 1), ('emotionally', 1), ('physically', 1), ('age', 1), ('using', 1), ('historical', 1), ('framework', 1), ('focusing', 1), ('represented', 1), ('material', 1), ('artifact', 1), ('toy', 1), ('game', 1), ('book', 1), ('explores', 1), ('form', 1), ('somatic', 1), ('engagement', 1)]
[('workshop', 3), ('collective', 2), ('awareness', 2), ('social', 2), ('first', 2), ('international', 2), ('internet', 2), ('book', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('cap', 1), ('platform', 1), ('sustainability', 1), ('innovation', 1), ('namely', 1), ('financial', 1), ('intelligence', 1), ('ifin', 1), ('medium', 1), ('environmental', 1)]
[('paper', 2), ('book', 1), ('contains', 1), ('revised', 1), ('selected', 1), ('presented', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('history', 1), ('computing', 1), ('hc', 1), ('held', 1), ('brooklyn', 1), ('ny', 1), ('usa', 1), ('full', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('gso', 2), ('algorithm', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('account', 1), ('glowworm', 1), ('swarm', 1), ('optimization', 1), ('including', 1), ('detail', 1), ('underlying', 1), ('idea', 1), ('theoretical', 1), ('foundation', 1), ('development', 1), ('various', 1), ('application', 1), ('matlab', 1), ('program', 1), ('basic', 1)]
[('smart', 4), ('kes', 2), ('education', 2), ('book', 1), ('gather', 1), ('contribution', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('learning', 1), ('seel', 1), ('took', 1), ('place', 1), ('vilamoura', 1), ('algarve', 1), ('portugal', 1), ('nbsp', 1), ('june', 1)]
[('book', 1), ('present', 1), ('state', 1), ('art', 1), ('supercomputer', 1), ('simulation', 1), ('includes', 1), ('latest', 1), ('finding', 1), ('leading', 1), ('researcher', 1), ('using', 1), ('system', 1), ('high', 1), ('performance', 1), ('computing', 1), ('center', 1), ('stuttgart', 1), ('hlrs', 1), ('report', 1), ('cover', 1), ('field', 1)]
[('artificial', 1), ('intelligence', 1), ('huge', 1), ('breakthrough', 1), ('technology', 1), ('changing', 1), ('world', 1), ('requires', 1), ('degree', 1), ('technical', 1), ('skill', 1), ('developed', 1), ('understood', 1), ('book', 1), ('going', 1), ('first', 1), ('define', 1), ('ai', 1), ('categorize', 1)]
[('social', 2), ('book', 1), ('explores', 1), ('technological', 1), ('advance', 1), ('interaction', 1), ('interactive', 1), ('space', 1), ('surface', 1), ('device', 1), ('aiming', 1), ('provide', 1), ('new', 1), ('insight', 1), ('emerging', 1), ('protocol', 1), ('arise', 1), ('experimentation', 1), ('long', 1), ('term', 1), ('usage', 1)]
[('conference', 3), ('th', 2), ('information', 2), ('management', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('advanced', 1), ('technology', 1), ('aitm', 1), ('system', 1), ('ism', 1), ('held', 1), ('part', 1), ('federated', 1)]
[('paper', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('symposium', 1), ('data', 1), ('driven', 1), ('process', 1), ('discovery', 1), ('analysis', 1), ('simpda', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('december', 1), ('presented', 1), ('volume', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('mobile', 1), ('network', 1), ('management', 1), ('monami', 1), ('held', 1), ('abu', 1), ('dhabi', 1), ('united', 1), ('arab', 1), ('emirate', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('distributed', 1), ('computer', 1), ('communication', 1), ('network', 1), ('dccn', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('november', 1), ('full', 1), ('short', 1)]
[('web', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('commerce', 1), ('technology', 1), ('ec', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('september', 1), ('conjunction', 1), ('dexa', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('international', 1), ('safety', 1), ('security', 1), ('internet', 1), ('thing', 1), ('saseiot', 1), ('collocated', 1), ('interiot', 1), ('took', 1), ('place', 1), ('paris', 1), ('france', 1), ('october', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('analysis', 1), ('image', 1), ('social', 1), ('network', 1), ('text', 1), ('aist', 1), ('held', 1), ('yekaterinburg', 1), ('russia', 1), ('april', 1), ('full', 1), ('short', 1), ('industrial', 1)]
[('book', 1), ('report', 1), ('recent', 1), ('advance', 1), ('software', 1), ('engineering', 1), ('research', 1), ('practice', 1), ('divided', 1), ('chapter', 1), ('address', 1), ('language', 1), ('tool', 1), ('development', 1), ('process', 1), ('modelling', 1), ('simulation', 1), ('verification', 1), ('education', 1), ('first', 1), ('category', 1)]
[('big', 2), ('data', 2), ('internet', 2), ('iot', 2), ('book', 1), ('highlight', 1), ('state', 1), ('art', 1), ('research', 1), ('thing', 1), ('along', 1), ('related', 1), ('area', 1), ('ensure', 1), ('efficient', 1), ('compatible', 1), ('system', 1), ('discus', 1), ('security', 1), ('privacy', 1), ('challenge', 1)]
[('oriented', 2), ('book', 1), ('offer', 1), ('integrated', 1), ('vision', 1), ('cloud', 1), ('hpc', 1), ('big', 1), ('data', 1), ('analytics', 1), ('virtualization', 1), ('computing', 1), ('manufacturing', 1), ('combining', 1), ('information', 1), ('communication', 1), ('technology', 1), ('service', 1), ('control', 1), ('holonic', 1), ('architecture', 1)]
[('hybrid', 2), ('intelligent', 2), ('system', 2), ('th', 2), ('book', 1), ('present', 1), ('latest', 1), ('research', 1), ('includes', 1), ('carefully', 1), ('selected', 1), ('paper', 1), ('international', 1), ('conference', 1), ('world', 1), ('congress', 1), ('nature', 1), ('biologically', 1)]
[('crowd', 2), ('springerbrief', 1), ('provides', 1), ('synergistic', 1), ('overview', 1), ('technology', 1), ('trend', 1), ('emphasizing', 1), ('five', 1), ('linked', 1), ('perspective', 1), ('cloud', 1), ('machine', 1), ('extreme', 1), ('cooperation', 1), ('smart', 1), ('thing', 1), ('scalable', 1), ('context', 1), ('awareness', 1), ('drone', 1), ('service', 1), ('mobile', 1), ('social', 1)]
[('isda', 2), ('book', 1), ('comprises', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('system', 1), ('design', 1), ('application', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('december', 1), ('jointly', 1), ('organized', 1), ('portugual', 1), ('based', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('eai', 1), ('international', 1), ('smart', 1), ('grid', 1), ('inspired', 1), ('future', 1), ('technology', 1), ('smartgift', 1), ('held', 1), ('london', 1), ('uk', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('four', 1), ('track', 1)]
[('application', 2), ('book', 1), ('examines', 1), ('creativity', 1), ('feed', 1), ('typical', 1), ('area', 1), ('lesson', 1), ('learned', 1), ('nbsp', 1), ('number', 1), ('case', 1), ('study', 1), ('creative', 1), ('general', 1), ('domain', 1), ('included', 1), ('illustrate', 1), ('academy', 1)]
[('international', 2), ('conference', 2), ('book', 1), ('gather', 1), ('proceeding', 1), ('rd', 1), ('advanced', 1), ('intelligent', 1), ('system', 1), ('informatics', 1), ('aisi', 1), ('took', 1), ('place', 1), ('cairo', 1), ('egypt', 1), ('september', 1), ('interdisciplinary', 1)]
[('international', 2), ('conference', 2), ('fuzzy', 2), ('volume', 1), ('constitutes', 1), ('proceeding', 1), ('collocated', 1), ('eusflat', 1), ('th', 1), ('edition', 1), ('flagship', 1), ('european', 1), ('society', 1), ('logic', 1), ('technology', 1), ('held', 1), ('warsaw', 1), ('poland', 1), ('september', 1), ('iwifsgn', 1), ('sixteenth', 1), ('workshop', 1), ('intuitionistic', 1), ('set', 1)]
[('work', 1), ('offer', 1), ('guided', 1), ('walkthrough', 1), ('promising', 1), ('research', 1), ('area', 1), ('modern', 1), ('life', 1), ('science', 1), ('enabling', 1), ('deeper', 1), ('understanding', 1), ('involved', 1), ('concept', 1), ('methodology', 1), ('via', 1), ('interdisciplinary', 1), ('view', 1), ('focusing', 1), ('established', 1)]
[('paper', 2), ('book', 1), ('contains', 1), ('extended', 1), ('revised', 1), ('version', 1), ('best', 1), ('presented', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('iee', 1), ('international', 1), ('conference', 1), ('large', 1), ('scale', 1), ('integration', 1), ('vlsi', 1), ('soc', 1), ('held', 1), ('tallinn', 1), ('estonia', 1), ('september', 1), ('included', 1)]
[('book', 1), ('provides', 1), ('overview', 1), ('current', 1), ('research', 1), ('interdisciplinary', 1), ('area', 1), ('personal', 1), ('assistant', 1), ('pa', 1), ('cognitively', 1), ('inspired', 1), ('system', 1), ('discus', 1), ('relevant', 1), ('topic', 1), ('highly', 1), ('diversified', 1), ('domain', 1), ('reasoning', 1), ('health', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('distributed', 1), ('computer', 1), ('communication', 1), ('network', 1), ('dccn', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('september', 1), ('full', 1), ('short', 1)]
[('book', 1), ('present', 1), ('innovative', 1), ('high', 1), ('quality', 1), ('research', 1), ('implementation', 1), ('conceptual', 1), ('framework', 1), ('strategy', 1), ('technique', 1), ('methodology', 1), ('informatics', 1), ('platform', 1), ('model', 1), ('developing', 1), ('advanced', 1), ('knowledge', 1), ('based', 1), ('system', 1), ('application', 1)]
[('domain', 2), ('decomposition', 2), ('method', 2), ('book', 1), ('collection', 1), ('paper', 1), ('presented', 1), ('rd', 1), ('international', 1), ('conference', 1), ('science', 1), ('engineering', 1), ('held', 1), ('jeju', 1), ('island', 1), ('korea', 1), ('july', 1), ('solve', 1), ('boundary', 1), ('value', 1), ('problem', 1)]
[('unique', 1), ('text', 1), ('reference', 1), ('provides', 1), ('detailed', 1), ('overview', 1), ('latest', 1), ('advance', 1), ('machine', 1), ('learning', 1), ('computer', 1), ('vision', 1), ('related', 1), ('visual', 1), ('attribute', 1), ('highlighting', 1), ('emerging', 1), ('field', 1), ('intersects', 1), ('discipline', 1), ('computational', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('forth', 1), ('workshop', 1), ('onengineering', 1), ('application', 1), ('wea', 1), ('held', 1), ('cartagena', 1), ('colombia', 1), ('inseptember', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selectedfrom', 1), ('submission', 1)]
[('workshop', 3), ('th', 2), ('international', 2), ('analytics', 2), ('data', 2), ('management', 2), ('book', 1), ('contains', 1), ('selected', 1), ('paper', 1), ('accelerating', 1), ('system', 1), ('using', 1), ('modern', 1), ('processor', 1), ('storage', 1), ('architecture', 1), ('adms', 1), ('memory', 1), ('imdm', 1), ('held', 1), ('new', 1), ('dehli', 1), ('india', 1), ('september', 1), ('joint', 1)]
[('application', 2), ('book', 1), ('thoroughly', 1), ('investigates', 1), ('underlying', 1), ('theoretical', 1), ('basis', 1), ('membrane', 1), ('computing', 1), ('model', 1), ('reveals', 1), ('latest', 1), ('addition', 1), ('date', 1), ('illustrative', 1), ('case', 1), ('study', 1), ('complex', 1), ('real', 1), ('life', 1)]
[('book', 1), ('self', 1), ('contained', 1), ('practical', 1), ('introduction', 1), ('use', 1), ('featureide', 1), ('modeling', 1), ('implementing', 1), ('variable', 1), ('system', 1), ('particular', 1), ('reader', 1), ('learn', 1), ('analyze', 1), ('domain', 1), ('using', 1), ('feature', 1), ('model', 1), ('specify', 1), ('requirement', 1), ('form', 1), ('configuration', 1)]
[('selected', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('th', 1), ('brazilian', 1), ('workshop', 1), ('agil', 1), ('method', 1), ('wbma', 1), ('held', 1), ('curitiba', 1), ('brazil', 1), ('november', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('type', 2), ('time', 2), ('series', 2), ('book', 1), ('present', 1), ('machine', 1), ('learning', 1), ('fuzzy', 1), ('set', 1), ('prediction', 1), ('particular', 1), ('focus', 1), ('business', 1), ('forecasting', 1), ('application', 1), ('proposes', 1), ('new', 1), ('uncertainty', 1), ('management', 1), ('technique', 1), ('economic', 1), ('using', 1)]
[('conference', 2), ('iscram', 2), ('med', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('system', 1), ('crisis', 1), ('response', 1), ('management', 1), ('mediterranean', 1), ('country', 1), ('held', 1), ('xanthi', 1), ('greece', 1), ('october', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('italian', 1), ('research', 1), ('conference', 1), ('digital', 1), ('library', 1), ('ircdl', 1), ('held', 1), ('modena', 1), ('italy', 1), ('january', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1), ('submission', 1)]
[('mathematics', 2), ('book', 1), ('present', 1), ('recent', 1), ('research', 1), ('advanced', 1), ('computing', 1), ('industrial', 1), ('prominent', 1), ('interdisciplinary', 1), ('area', 1), ('bringing', 1), ('together', 1), ('computer', 1), ('science', 1), ('scientific', 1), ('computation', 1), ('engineering', 1), ('physic', 1), ('chemistry', 1)]
[('high', 2), ('informative', 1), ('text', 1), ('reference', 1), ('highlight', 1), ('potential', 1), ('dataflow', 1), ('computing', 1), ('research', 1), ('requiring', 1), ('speed', 1), ('low', 1), ('power', 1), ('requirement', 1), ('precision', 1), ('benefiting', 1), ('reduction', 1), ('size', 1), ('equipment', 1), ('cutting', 1), ('edge', 1)]
[('volume', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('multimedia', 1), ('communication', 1), ('service', 1), ('security', 1), ('mc', 1), ('held', 1), ('kraków', 1), ('poland', 1), ('november', 1), ('full', 1), ('paper', 1), ('included', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('ict', 1), ('system', 1), ('security', 1), ('privacy', 1), ('protection', 1), ('sec', 1), ('held', 1), ('rome', 1), ('italy', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('gmunden', 1), ('retreat', 1), ('neurois', 1), ('reporting', 1), ('topic', 1), ('intersection', 1), ('information', 1), ('system', 1), ('research', 1), ('neurophysiology', 1), ('brain', 1), ('science', 1), ('reader', 1), ('discover', 1), ('latest', 1), ('finding', 1), ('top', 1)]
[('iot', 2), ('unique', 2), ('challenge', 2), ('book', 1), ('investigates', 1), ('pressing', 1), ('issue', 1), ('resource', 1), ('management', 1), ('internet', 1), ('thing', 1), ('ecosystem', 1), ('pose', 1), ('new', 1), ('call', 1), ('bespoke', 1), ('solution', 1), ('deal', 1), ('using', 1), ('holistic', 1), ('approach', 1)]
[('biological', 1), ('biomedical', 1), ('research', 1), ('increasingly', 1), ('driven', 1), ('experimental', 1), ('technique', 1), ('challenge', 1), ('ability', 1), ('analyse', 1), ('process', 1), ('extract', 1), ('meaningful', 1), ('knowledge', 1), ('underlying', 1), ('data', 1), ('impressive', 1), ('capability', 1), ('next', 1), ('generation', 1), ('sequencing', 1)]
[('paper', 2), ('book', 1), ('collection', 1), ('thoroughly', 1), ('refereed', 1), ('presented', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('conference', 1), ('system', 1), ('modeling', 1), ('optimization', 1), ('held', 1), ('sophia', 1), ('antipolis', 1), ('france', 1), ('june', 1), ('july', 1), ('revised', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('present', 1), ('new', 1), ('method', 1), ('approach', 1), ('real', 1), ('world', 1), ('problem', 1), ('exploratory', 1), ('research', 1), ('describing', 1), ('novel', 1), ('mathematics', 1), ('cybernetics', 1), ('application', 1), ('intelligent', 1), ('system', 1), ('focus', 1), ('modern', 1), ('trend', 1), ('selected', 1), ('field', 1), ('technological', 1)]
[('worldcist', 2), ('book', 1), ('present', 1), ('selection', 1), ('paper', 1), ('world', 1), ('conference', 1), ('information', 1), ('system', 1), ('technology', 1), ('held', 1), ('st', 1), ('th', 1), ('april', 1), ('porto', 1), ('santo', 1), ('island', 1), ('madeira', 1), ('portugal', 1), ('global', 1), ('forum', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('second', 1), ('eai', 1), ('international', 1), ('conference', 1), ('smart', 1), ('object', 1), ('technology', 1), ('social', 1), ('good', 1), ('goodtechs', 1), ('held', 1), ('venice', 1), ('italy', 1), ('november', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1)]
[('agent', 4), ('international', 3), ('paams', 2), ('practical', 2), ('application', 2), ('multi', 2), ('system', 2), ('conference', 1), ('evolution', 1), ('workshop', 1), ('yearly', 1), ('tribune', 1)]
[('information', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('iberoamerican', 1), ('conference', 1), ('application', 1), ('usability', 1), ('interactive', 1), ('tv', 1), ('jauti', 1), ('held', 1), ('conjunction', 1), ('ii', 1), ('international', 1), ('congress', 1), ('engineering', 1)]
[('parameter', 1), ('taken', 1), ('account', 1), ('advanced', 1), ('simulation', 1), ('model', 1), ('designed', 1), ('transport', 1), ('system', 1), ('promotes', 1), ('green', 1), ('travelling', 1), ('policy', 1), ('goal', 1), ('modal', 1), ('shift', 1), ('pursued', 1), ('ict', 1), ('solution', 1), ('enough', 1), ('apply', 1)]
[('nbsp', 2), ('simulation', 2), ('optimization', 2), ('building', 1), ('author', 1), ('earlier', 1), ('applied', 1), ('book', 1), ('present', 1), ('novel', 1), ('method', 1), ('solving', 1), ('problem', 1), ('industry', 1), ('based', 1), ('hybrid', 1), ('approach', 1), ('combine', 1), ('advantage', 1), ('paradigm', 1)]
[('application', 2), ('book', 1), ('bridge', 1), ('gap', 1), ('soft', 1), ('computing', 1), ('technique', 1), ('complex', 1), ('engineering', 1), ('problem', 1), ('chapter', 1), ('endeavor', 1), ('explain', 1), ('basic', 1), ('idea', 1), ('behind', 1), ('proposed', 1), ('accessible', 1), ('format', 1), ('reader', 1)]
[('volume', 1), ('lncs', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('semantic', 1), ('web', 1), ('conference', 1), ('eswc', 1), ('held', 1), ('portorož', 1), ('slovenia', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('mobile', 2), ('book', 1), ('offer', 1), ('helpful', 1), ('starting', 1), ('point', 1), ('scattered', 1), ('rich', 1), ('complex', 1), ('body', 1), ('literature', 1), ('information', 1), ('retrieval', 1), ('ir', 1), ('reviewing', 1), ('paper', 1), ('nine', 1), ('chapter', 1), ('highlighting', 1), ('interesting', 1), ('influential', 1)]
[('book', 1), ('report', 1), ('practical', 1), ('approach', 1), ('facilitating', 1), ('process', 1), ('achieving', 1), ('excellence', 1), ('management', 1), ('leadership', 1), ('organizational', 1), ('resource', 1), ('show', 1), ('principle', 1), ('creating', 1), ('shared', 1), ('value', 1), ('applied', 1), ('ensure', 1), ('faster', 1)]
[('nbsp', 1), ('book', 1), ('focus', 1), ('importance', 1), ('human', 1), ('factor', 1), ('development', 1), ('safe', 1), ('reliable', 1), ('unmanned', 1), ('system', 1), ('discus', 1), ('current', 1), ('challenge', 1), ('improve', 1), ('perceptual', 1), ('cognitive', 1), ('ability', 1), ('robot', 1), ('develop', 1), ('suitable', 1), ('synthetic', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('entitled', 1), ('beyond', 1), ('database', 1), ('architecture', 1), ('structure', 1), ('bdas', 1), ('held', 1), ('ustroń', 1), ('poland', 1), ('june', 1), ('consists', 1), ('carefully', 1), ('reviewed', 1), ('paper', 1), ('selected', 1)]
[('valuable', 1), ('source', 1), ('graduate', 1), ('student', 1), ('researcher', 1), ('provides', 1), ('comprehensive', 1), ('introduction', 1), ('current', 1), ('theory', 1), ('application', 1), ('optimization', 1), ('method', 1), ('network', 1), ('model', 1), ('contribution', 1), ('book', 1), ('focused', 1), ('new', 1), ('efficient', 1), ('algorithm', 1)]
[('book', 1), ('provides', 1), ('reader', 1), ('timely', 1), ('snapshot', 1), ('ergonomics', 1), ('research', 1), ('method', 1), ('applied', 1), ('design', 1), ('development', 1), ('prototyping', 1), ('evaluation', 1), ('training', 1), ('manufacturing', 1), ('product', 1), ('system', 1), ('service', 1), ('combining', 1), ('theoretical', 1)]
[('ccis', 2), ('international', 2), ('volume', 1), ('set', 1), ('contains', 1), ('extended', 1), ('abstract', 1), ('poster', 1), ('presented', 1), ('th', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hci', 1), ('held', 1), ('vancouver', 1), ('bc', 1), ('canada', 1), ('july', 1), ('nbsp', 1), ('hcii', 1)]
[('volume', 1), ('contains', 1), ('proceeding', 1), ('kka', 1), ('th', 1), ('polish', 1), ('control', 1), ('conference', 1), ('organized', 1), ('department', 1), ('automatic', 1), ('biomedical', 1), ('engineering', 1), ('agh', 1), ('university', 1), ('science', 1), ('technology', 1), ('kraków', 1), ('poland', 1), ('june', 1)]
[('book', 1), ('present', 1), ('first', 1), ('comprehensive', 1), ('overview', 1), ('various', 1), ('verifiable', 1), ('computing', 1), ('technique', 1), ('allow', 1), ('computation', 1), ('function', 1), ('outsourced', 1), ('data', 1), ('delegated', 1), ('server', 1), ('provides', 1), ('brief', 1), ('description', 1), ('approach', 1)]
[('information', 2), ('system', 2), ('volume', 1), ('collection', 1), ('paper', 1), ('emerging', 1), ('concept', 1), ('approach', 1), ('idea', 1), ('research', 1), ('examines', 1), ('theoretical', 1), ('methodological', 1), ('issue', 1), ('related', 1), ('development', 1), ('general', 1), ('complexity', 1)]
[('network', 3), ('biological', 2), ('book', 1), ('focus', 1), ('data', 1), ('mining', 1), ('system', 1), ('biology', 1), ('bioinformatics', 1), ('computational', 1), ('method', 1), ('used', 1), ('summarize', 1), ('specifically', 1), ('discus', 1), ('array', 1), ('technique', 1), ('related', 1), ('clustering', 1)]
[('topic', 2), ('petascale', 2), ('book', 1), ('provides', 1), ('state', 1), ('art', 1), ('interdisciplinary', 1), ('solving', 1), ('matrix', 1), ('eigenvalue', 1), ('problem', 1), ('particularly', 1), ('using', 1), ('recent', 1), ('upcoming', 1), ('post', 1), ('supercomputer', 1), ('gather', 1), ('selected', 1), ('presented', 1), ('international', 1)]
[('th', 3), ('game', 2), ('workshop', 2), ('intelligence', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('computer', 1), ('cgw', 1), ('general', 1), ('playing', 1), ('agent', 1), ('giga', 1), ('held', 1), ('conjunction', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('ijcai', 1), ('new', 1), ('york', 1), ('usa', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('security', 1), ('privacy', 1), ('communication', 1), ('network', 1), ('securecomm', 1), ('held', 1), ('guangzhou', 1), ('china', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 2), ('present', 1), ('direct', 1), ('concise', 1), ('explanation', 1), ('example', 1), ('many', 1), ('latex', 1), ('syntax', 1), ('structure', 1), ('allowing', 1), ('student', 1), ('researcher', 1), ('quickly', 1), ('understand', 1), ('basic', 1), ('required', 1), ('writing', 1), ('preparing', 1), ('manuscript', 1), ('journal', 1), ('article', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('engineering', 1), ('psychology', 1), ('cognitive', 1), ('ergonomics', 1), ('epce', 1), ('held', 1), ('vancouver', 1), ('canada', 1), ('july', 1), ('hcii', 1), ('received', 1), ('total', 1), ('submission', 1), ('paper', 1)]
[('international', 2), ('conference', 2), ('fuzzy', 2), ('volume', 1), ('constitutes', 1), ('proceeding', 1), ('collocated', 1), ('eusflat', 1), ('th', 1), ('edition', 1), ('flagship', 1), ('european', 1), ('society', 1), ('logic', 1), ('technology', 1), ('held', 1), ('warsaw', 1), ('poland', 1), ('september', 1), ('iwifsgn', 1), ('sixteenth', 1), ('workshop', 1), ('intuitionistic', 1), ('set', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('book', 1), ('present', 1), ('advance', 1), ('development', 1), ('concept', 1), ('technique', 1), ('area', 1), ('new', 1), ('technology', 1), ('contemporary', 1), ('information', 1), ('system', 1), ('architecture', 1), ('guide', 1), ('reader', 1), ('solving', 1), ('specific', 1), ('research', 1), ('analytical', 1)]
[('biological', 3), ('network', 3), ('model', 2), ('analysis', 2), ('work', 1), ('provides', 1), ('review', 1), ('presenting', 1), ('discussing', 1), ('number', 1), ('illuminating', 1), ('effective', 1), ('providing', 1), ('insight', 1), ('mechanism', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('transport', 1), ('system', 1), ('telematics', 1), ('tst', 1), ('held', 1), ('katowice', 1), ('ustrón', 1), ('poland', 1), ('april', 1), ('full', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('medical', 3), ('book', 2), ('image', 2), ('watermarking', 2), ('present', 1), ('technique', 1), ('algorithm', 1), ('telemedicine', 1), ('emerging', 1), ('application', 1), ('emphasizes', 1), ('ensure', 1), ('authenticity', 1), ('transmitted', 1), ('information', 1), ('begin', 1)]
[('invaluable', 1), ('textbook', 1), ('reference', 1), ('provides', 1), ('hand', 1), ('guide', 1), ('application', 1), ('good', 1), ('software', 1), ('development', 1), ('practice', 1), ('construction', 1), ('distributed', 1), ('simulation', 1), ('system', 1), ('particular', 1), ('focus', 1), ('high', 1), ('level', 1), ('architecture', 1), ('hla', 1), ('emphasizing', 1)]
[('art', 2), ('simulation', 2), ('computer', 2), ('new', 1), ('book', 1), ('series', 1), ('science', 1), ('sa', 1), ('address', 1), ('scientific', 1), ('activity', 1), ('engineering', 1), ('artistry', 1), ('sense', 1), ('technē', 1), ('first', 1), ('volume', 1), ('devoted', 1), ('three', 1), ('topic', 1), ('exploring', 1)]
[('engineering', 2), ('springerbrief', 1), ('review', 1), ('knowledge', 1), ('problem', 1), ('objectivity', 1), ('top', 1), ('query', 1), ('answering', 1), ('essentially', 1), ('answer', 1), ('computed', 1), ('taking', 1), ('account', 1), ('user', 1), ('preference', 1), ('collection', 1), ('subjective', 1), ('report', 1), ('provided', 1)]
[('conference', 2), ('bir', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('perspective', 1), ('business', 1), ('informatics', 1), ('research', 1), ('held', 1), ('copenhagen', 1), ('denmark', 1), ('august', 1), ('year', 1), ('attracted', 1), ('submission', 1)]
[('medium', 2), ('book', 1), ('present', 1), ('user', 1), ('facing', 1), ('aspect', 1), ('digital', 1), ('web', 1), ('computer', 1), ('game', 1), ('mobile', 1), ('technology', 1), ('social', 1), ('demonstrates', 1), ('continuously', 1), ('growing', 1), ('developing', 1), ('convergence', 1), ('telecommunication', 1)]
[('thoroughly', 2), ('revised', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('model', 1), ('driven', 1), ('engineering', 1), ('software', 1), ('development', 1), ('modelsward', 1), ('held', 1), ('rome', 1), ('italy', 1), ('february', 1), ('extended', 1)]
[('volume', 1), ('includes', 1), ('paper', 1), ('presented', 1), ('soco', 1), ('cisis', 1), ('iceute', 1), ('conference', 1), ('held', 1), ('beautiful', 1), ('historic', 1), ('city', 1), ('león', 1), ('spain', 1), ('september', 1), ('soft', 1), ('computing', 1), ('represents', 1), ('collection', 1), ('computational', 1), ('technique', 1), ('machine', 1)]
[('intelligent', 2), ('system', 2), ('proceeding', 1), ('sai', 1), ('conference', 1), ('intellisys', 1), ('offer', 1), ('remarkable', 1), ('collection', 1), ('paper', 1), ('wide', 1), ('range', 1), ('topic', 1), ('application', 1), ('real', 1), ('world', 1), ('author', 1), ('hailing', 1), ('country', 1)]
[('book', 2), ('differential', 2), ('privacy', 2), ('application', 2), ('focus', 1), ('emphasis', 1), ('technical', 1), ('aspect', 1), ('present', 1), ('recent', 1), ('research', 1), ('theory', 1), ('perspective', 1), ('provides', 1), ('approachable', 1)]
[('image', 2), ('book', 1), ('present', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('various', 1), ('way', 1), ('bridge', 1), ('semantic', 1), ('gap', 1), ('video', 1), ('analysis', 1), ('respective', 1), ('chapter', 1), ('address', 1), ('different', 1), ('stage', 1), ('processing', 1), ('revealing', 1), ('first', 1), ('step', 1), ('future', 1), ('extraction', 1), ('second', 1)]
[('data', 3), ('book', 1), ('illustrates', 1), ('inter', 1), ('relationship', 1), ('several', 1), ('management', 1), ('analytics', 1), ('decision', 1), ('support', 1), ('technique', 1), ('method', 1), ('commonly', 1), ('adopted', 1), ('cybersecurity', 1), ('oriented', 1), ('framework', 1), ('recent', 1), ('advent', 1), ('big', 1), ('paradigm', 1), ('use', 1)]
[('healthcare', 3), ('volume', 1), ('offer', 1), ('reader', 1), ('various', 1), ('perspective', 1), ('vision', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('ubiquitous', 1), ('topic', 1), ('emphasize', 1), ('large', 1), ('scale', 1), ('architecture', 1), ('high', 1), ('performance', 1), ('solution', 1), ('smart', 1), ('monitoring', 1), ('using', 1)]
[('conference', 2), ('th', 2), ('volume', 1), ('includes', 1), ('paper', 1), ('presented', 1), ('ictis', 1), ('second', 1), ('international', 1), ('information', 1), ('communication', 1), ('technology', 1), ('intelligent', 1), ('system', 1), ('held', 1), ('march', 1), ('ahmedabad', 1), ('india', 1), ('organized', 1)]
[('computer', 2), ('visigrapp', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('vision', 1), ('imaging', 1), ('graphic', 1), ('theory', 1), ('application', 1), ('held', 1), ('rome', 1), ('italy', 1), ('february', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('quality', 1), ('reliability', 1), ('security', 1), ('robustness', 1), ('heterogeneous', 1), ('network', 1), ('qshine', 1), ('held', 1), ('seoul', 1), ('south', 1), ('korea', 1), ('july', 1), ('nbsp', 1), ('full', 1)]
[('culturally', 2), ('aware', 2), ('system', 2), ('part', 2), ('book', 1), ('offer', 1), ('valuable', 1), ('new', 1), ('insight', 1), ('design', 1), ('first', 1), ('devoted', 1), ('presenting', 1), ('selected', 1), ('intelligent', 1), ('devised', 1), ('field', 1), ('artificial', 1), ('intelligence', 1), ('second', 1)]
[('probability', 2), ('book', 1), ('provides', 1), ('frequentist', 1), ('semantics', 1), ('conditionalization', 1), ('partially', 1), ('known', 1), ('event', 1), ('given', 1), ('straightforward', 1), ('generalization', 1), ('classical', 1), ('conditional', 1), ('via', 1), ('called', 1), ('testbeds', 1), ('analyzes', 1), ('resulting', 1), ('partial', 1)]
[('web', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('workshop', 1), ('business', 1), ('held', 1), ('conjunction', 1), ('international', 1), ('conference', 1), ('information', 1), ('system', 1), ('icis', 1), ('dublin', 1), ('ireland', 1), ('december', 1), ('provided', 1), ('forum', 1)]
[('resource', 2), ('key', 1), ('component', 1), ('forecasting', 1), ('demand', 1), ('consumption', 1), ('supply', 1), ('network', 1), ('accurate', 1), ('prediction', 1), ('real', 1), ('valued', 1), ('time', 1), ('series', 1), ('indeed', 1), ('service', 1), ('interruption', 1), ('waste', 1), ('reduced', 1), ('implementation', 1)]
[('data', 3), ('self', 2), ('tracking', 2), ('book', 1), ('explains', 1), ('complete', 1), ('loop', 1), ('effectively', 1), ('use', 1), ('machine', 1), ('learning', 1), ('focus', 1), ('technique', 1), ('explained', 1), ('applicable', 1), ('sensory', 1), ('general', 1), ('making', 1), ('useful', 1), ('wider', 1), ('audience', 1)]
[('introduces', 2), ('forensic', 2), ('work', 1), ('reader', 1), ('world', 1), ('digital', 1), ('forensics', 1), ('practical', 1), ('accessible', 1), ('manner', 1), ('text', 1), ('written', 1), ('fulfill', 1), ('need', 1), ('book', 1), ('methodology', 1), ('sound', 1), ('thinking', 1), ('combined', 1), ('hand', 1)]
[('conference', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('ifip', 1), ('tc', 1), ('dcdrr', 1), ('international', 1), ('information', 1), ('technology', 1), ('disaster', 1), ('risk', 1), ('reduction', 1), ('itdrr', 1), ('held', 1), ('sofia', 1), ('bulgaria', 1), ('november', 1), ('revised', 1), ('full', 1)]
[('lnbi', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('work', 1), ('conference', 1), ('bioinformatics', 1), ('biomedical', 1), ('engineering', 1), ('iwbbio', 1), ('held', 1), ('granada', 1), ('spain', 1), ('april', 1), ('paper', 1), ('presented', 1)]
[('engineering', 3), ('knowledge', 2), ('series', 2), ('book', 1), ('compiles', 1), ('number', 1), ('contribution', 1), ('originating', 1), ('kese', 1), ('software', 1), ('workshop', 1), ('idea', 1), ('behind', 1), ('realignment', 1), ('discipline', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('computational', 1), ('technology', 1), ('pct', 1), ('held', 1), ('kazan', 1), ('russia', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('spin', 2), ('thesis', 1), ('combine', 1), ('quantum', 1), ('electrical', 1), ('engineering', 1), ('electron', 1), ('resonance', 1), ('emphasis', 1), ('unraveling', 1), ('emerging', 1), ('collective', 1), ('phenomenon', 1), ('presented', 1), ('experiment', 1), ('first', 1), ('demonstration', 1), ('cavity', 1), ('protection', 1), ('effect', 1), ('spectral', 1), ('hole', 1)]
[('book', 1), ('illustrates', 1), ('thrust', 1), ('scientific', 1), ('community', 1), ('use', 1), ('machine', 1), ('learning', 1), ('concept', 1), ('tackling', 1), ('complex', 1), ('problem', 1), ('given', 1), ('time', 1), ('series', 1), ('neuronal', 1), ('spontaneous', 1), ('activity', 1), ('underlying', 1), ('connectivity', 1), ('neuron', 1), ('network', 1)]
[('book', 1), ('present', 1), ('deep', 1), ('spectrum', 1), ('musical', 1), ('mathematical', 1), ('physical', 1), ('philosophical', 1), ('perspective', 1), ('emerged', 1), ('field', 1), ('intersection', 1), ('music', 1), ('mathematics', 1), ('particular', 1), ('contributed', 1), ('chapter', 1), ('introduce', 1), ('advanced', 1), ('technique', 1)]
[('application', 2), ('technique', 2), ('cyber', 2), ('security', 2), ('intelligence', 2), ('book', 1), ('present', 1), ('outcome', 1), ('international', 1), ('conference', 1), ('focused', 1), ('aspect', 1), ('electronic', 1)]
[('influence', 2), ('demonstrating', 1), ('semiotic', 1), ('engineering', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('book', 1), ('focus', 1), ('work', 1), ('pioneer', 1), ('field', 1), ('clarisse', 1), ('de', 1), ('souza', 1), ('nbsp', 1), ('broad', 1), ('wide', 1), ('ranging', 1), ('area', 1), ('research', 1)]
[('business', 2), ('system', 2), ('based', 1), ('paper', 1), ('th', 1), ('laboratory', 1), ('international', 1), ('symposium', 1), ('bslab', 1), ('volume', 1), ('contributes', 1), ('management', 1), ('organizational', 1), ('innovation', 1), ('literature', 1), ('providing', 1), ('insight', 1), ('antecedent', 1)]
[('cognitive', 2), ('system', 2), ('book', 1), ('present', 1), ('neuromorphic', 1), ('learning', 1), ('memory', 1), ('centered', 1), ('perspective', 1), ('illustrates', 1), ('build', 1), ('network', 1), ('neuron', 1), ('perform', 1), ('spike', 1), ('based', 1), ('information', 1), ('processing', 1), ('computing', 1), ('high', 1), ('level', 1), ('task', 1)]
[('book', 1), ('tribute', 1), ('julian', 1), ('francis', 1), ('miller', 1), ('idea', 1), ('achievement', 1), ('computer', 1), ('science', 1), ('evolutionary', 1), ('algorithm', 1), ('genetic', 1), ('programming', 1), ('electronics', 1), ('unconventional', 1), ('computing', 1), ('artificial', 1), ('chemistry', 1), ('theoretical', 1), ('biology', 1), ('leading', 1), ('international', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('icts', 1), ('improving', 1), ('patient', 1), ('rehabilitation', 1), ('research', 1), ('technique', 1), ('rehab', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('ifip', 2), ('conference', 2), ('volume', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('wg', 1), ('practice', 1), ('enterprise', 1), ('modeling', 1), ('held', 1), ('november', 1), ('leuven', 1), ('belgium', 1), ('created', 1), ('international', 1), ('federation', 1), ('information', 1), ('processing', 1)]
[('music', 2), ('problem', 1), ('address', 1), ('include', 1), ('emotion', 1), ('representation', 1), ('annotation', 1), ('excerpt', 1), ('feature', 1), ('extraction', 1), ('machine', 1), ('learning', 1), ('book', 1), ('chiefly', 1), ('focus', 1), ('content', 1), ('based', 1), ('analysis', 1), ('file', 1), ('system', 1), ('automatically', 1), ('analyzes', 1), ('structure', 1)]
[('individual', 2), ('element', 2), ('volume', 1), ('examines', 1), ('aspect', 1), ('using', 1), ('agent', 1), ('based', 1), ('simulation', 1), ('approach', 1), ('represents', 1), ('system', 1), ('set', 1), ('differing', 1), ('state', 1), ('internal', 1), ('process', 1), ('interaction', 1)]
[('book', 1), ('report', 1), ('advanced', 1), ('method', 1), ('theory', 1), ('related', 1), ('field', 1), ('research', 1), ('information', 1), ('technology', 1), ('communication', 1), ('system', 1), ('provides', 1), ('professor', 1), ('scientist', 1), ('phd', 1), ('student', 1), ('engineer', 1), ('readily', 1), ('available', 1), ('guide', 1), ('various', 1)]
[('paper', 2), ('book', 1), ('includes', 1), ('carefully', 1), ('selected', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('information', 1), ('creativity', 1), ('support', 1), ('system', 1), ('kiccs', 1), ('held', 1), ('phuket', 1), ('thailand', 1), ('november', 1)]
[('based', 2), ('inspirational', 1), ('book', 1), ('contains', 1), ('evidence', 1), ('research', 1), ('presented', 1), ('educational', 1), ('scientist', 1), ('advancement', 1), ('stylus', 1), ('technology', 1), ('application', 1), ('college', 1), ('classroom', 1), ('writing', 1), ('sketching', 1), ('important', 1), ('part', 1), ('teaching', 1)]
[('book', 1), ('gather', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('interactive', 1), ('collaborative', 1), ('learning', 1), ('icl', 1), ('held', 1), ('budapest', 1), ('hungary', 1), ('september', 1), ('author', 1), ('currently', 1), ('witnessing', 1), ('significant', 1), ('transformation', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('informatics', 1), ('economy', 1), ('ie', 1), ('held', 1), ('cluj', 1), ('napoca', 1), ('romania', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('mobile', 2), ('technology', 2), ('interactive', 1), ('become', 1), ('core', 1), ('many', 1), ('field', 1), ('society', 1), ('younger', 1), ('generation', 1), ('student', 1), ('expect', 1), ('working', 1), ('learning', 1), ('environment', 1), ('new', 1), ('idea', 1), ('solution', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('future', 1), ('wireless', 1), ('network', 1), ('gwn', 1), ('held', 1), ('beijing', 1), ('china', 1), ('april', 1), ('full', 1), ('paper', 1), ('selected', 1), ('submission', 1), ('present', 1), ('state', 1), ('art', 1)]
[('rough', 3), ('set', 3), ('theory', 2), ('book', 1), ('explores', 1), ('reasoning', 1), ('developing', 1), ('granularity', 1), ('based', 1), ('framework', 1), ('begin', 1), ('brief', 1), ('description', 1), ('examines', 1), ('selected', 1), ('relation', 1), ('non', 1), ('classical', 1), ('logic', 1), ('including', 1), ('modal', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('italian', 1), ('research', 1), ('conference', 1), ('digital', 1), ('library', 1), ('ircdl', 1), ('held', 1), ('udine', 1), ('italy', 1), ('january', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('mining', 2), ('object', 2), ('book', 1), ('provides', 1), ('gentle', 1), ('introduction', 1), ('redescription', 1), ('versatile', 1), ('data', 1), ('tool', 1), ('useful', 1), ('find', 1), ('distinct', 1), ('common', 1), ('characterization', 1), ('vice', 1), ('versa', 1), ('identify', 1), ('set', 1), ('admit', 1), ('multiple', 1), ('shared', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('ad', 1), ('hoc', 1), ('network', 1), ('adhocnets', 1), ('held', 1), ('niagara', 1), ('fall', 1), ('ontario', 1), ('usa', 1), ('september', 1), ('full', 1), ('paper', 1), ('selected', 1), ('submission', 1), ('cover', 1), ('variety', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('future', 1), ('internet', 1), ('technology', 1), ('trend', 1), ('icfitt', 1), ('held', 1), ('surat', 1), ('india', 1), ('august', 1), ('september', 1), ('full', 1), ('paper', 1), ('selected', 1), ('submission', 1)]
[('arbiter', 2), ('book', 1), ('address', 1), ('issue', 1), ('machine', 1), ('learning', 1), ('ml', 1), ('attack', 1), ('integrated', 1), ('circuit', 1), ('physical', 1), ('unclonable', 1), ('function', 1), ('pufs', 1), ('provides', 1), ('mathematical', 1), ('proof', 1), ('vulnerability', 1), ('various', 1), ('puf', 1), ('family', 1), ('including', 1), ('xor', 1)]
[('language', 4), ('business', 2), ('dream', 2), ('real', 2), ('war', 1), ('nightmare', 1), ('made', 1), ('yet', 1), ('driverless', 1), ('car', 1), ('intelligent', 1), ('road', 1), ('time', 1), ('critical', 1), ('system', 1), ('control', 1), ('algorithmic', 1)]
[('software', 2), ('maintenance', 2), ('work', 1), ('often', 1), ('considered', 1), ('dauntingly', 1), ('rigid', 1), ('activity', 1), ('book', 1), ('prof', 1), ('opposite', 1), ('demand', 1), ('high', 1), ('level', 1), ('creativity', 1), ('thinking', 1), ('outside', 1), ('box', 1), ('highlighting', 1), ('creative', 1), ('aspect', 1), ('combining', 1)]
[('digital', 2), ('medium', 2), ('book', 1), ('present', 1), ('overview', 1), ('technical', 1), ('underpinnings', 1), ('field', 1), ('includes', 1), ('theory', 1), ('imaging', 1), ('big', 1), ('data', 1), ('interaction', 1), ('research', 1), ('development', 1), ('needed', 1), ('order', 1), ('make', 1), ('interface', 1), ('natural', 1)]
[('book', 1), ('gather', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('presented', 1), ('seventh', 1), ('edition', 1), ('international', 1), ('workshop', 1), ('service', 1), ('orientation', 1), ('holonic', 1), ('multi', 1), ('agent', 1), ('manufacturing', 1), ('sohoma', 1), ('held', 1), ('october', 1), ('organized', 1), ('university', 1)]
[('unique', 1), ('text', 1), ('reference', 1), ('provides', 1), ('overview', 1), ('crossbar', 1), ('based', 1), ('interconnection', 1), ('network', 1), ('offering', 1), ('novel', 1), ('perspective', 1), ('important', 1), ('component', 1), ('high', 1), ('performance', 1), ('parallel', 1), ('processor', 1), ('system', 1), ('particular', 1), ('focus', 1), ('placed', 1), ('solution', 1)]
[('book', 1), ('present', 1), ('innovative', 1), ('high', 1), ('quality', 1), ('research', 1), ('regarding', 1), ('advanced', 1), ('decision', 1), ('support', 1), ('system', 1), ('ds', 1), ('describes', 1), ('foundation', 1), ('method', 1), ('methodology', 1), ('model', 1), ('tool', 1), ('technique', 1), ('designing', 1), ('developing', 1), ('implementing', 1), ('evaluating', 1)]
[('ai', 3), ('technique', 2), ('game', 2), ('explain', 2), ('first', 1), ('textbook', 1), ('dedicated', 1), ('explaining', 1), ('artificial', 1), ('intelligence', 1), ('used', 1), ('introductory', 1), ('chapter', 1), ('background', 1), ('key', 1), ('author', 1), ('use', 1)]
[('cyber', 3), ('attribution', 2), ('springerbrief', 1), ('discus', 1), ('develop', 1), ('intelligent', 1), ('system', 1), ('regarding', 1), ('attack', 1), ('specifically', 1), ('author', 1), ('review', 1), ('multiple', 1), ('facet', 1), ('problem', 1), ('make', 1), ('difficult', 1), ('box', 1)]
[('bioinformatics', 2), ('approach', 2), ('application', 1), ('drug', 1), ('design', 1), ('involves', 1), ('interdisciplinary', 1), ('array', 1), ('sophisticated', 1), ('technique', 1), ('software', 1), ('tool', 1), ('elucidate', 1), ('hidden', 1), ('complex', 1), ('biological', 1), ('data', 1), ('work', 1), ('review', 1), ('latest', 1), ('used', 1)]
[('threat', 4), ('cyber', 2), ('book', 1), ('provides', 1), ('reader', 1), ('date', 1), ('research', 1), ('emerging', 1), ('defensive', 1), ('mechanism', 1), ('timely', 1), ('essential', 1), ('cover', 1), ('intelligence', 1), ('concept', 1), ('range', 1), ('actor', 1), ('tool', 1), ('ransomware', 1)]
[('book', 2), ('second', 1), ('volume', 1), ('series', 1), ('highlight', 1), ('work', 1), ('presented', 1), ('nd', 1), ('international', 1), ('conference', 1), ('real', 1), ('time', 1), ('intelligent', 1), ('system', 1), ('held', 1), ('casablanca', 1), ('october', 1), ('offer', 1), ('comprehensive', 1), ('practical', 1), ('review', 1)]
[('book', 1), ('includes', 1), ('paper', 1), ('presented', 1), ('soco', 1), ('cisis', 1), ('iceute', 1), ('held', 1), ('beautiful', 1), ('historic', 1), ('city', 1), ('san', 1), ('sebastian', 1), ('spain', 1), ('june', 1), ('nbsp', 1), ('soft', 1), ('computing', 1), ('represents', 1), ('collection', 1), ('set', 1), ('computational', 1), ('technique', 1)]
[('fmp', 2), ('book', 1), ('offer', 1), ('comprehensive', 1), ('practice', 1), ('oriented', 1), ('introduction', 1), ('field', 1), ('fuzzy', 1), ('mathematical', 1), ('programming', 1), ('key', 1), ('topic', 1), ('modern', 1), ('analytics', 1), ('play', 1), ('fundamental', 1), ('role', 1), ('dealing', 1), ('varied', 1), ('range', 1), ('problem', 1), ('concerning', 1)]
[('method', 2), ('book', 1), ('offer', 1), ('comprehensive', 1), ('overview', 1), ('ensemble', 1), ('learning', 1), ('field', 1), ('feature', 1), ('selection', 1), ('f', 1), ('consists', 1), ('combining', 1), ('output', 1), ('multiple', 1), ('obtain', 1), ('better', 1), ('result', 1), ('single', 1), ('review', 1), ('various', 1), ('technique', 1)]
[('three', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('review', 1), ('complex', 1), ('network', 1), ('different', 1), ('domain', 1), ('present', 1), ('novel', 1), ('method', 1), ('analyzing', 1), ('highlight', 1), ('application', 1), ('accompanying', 1), ('case', 1), ('study', 1), ('special', 1), ('emphasis', 1), ('placed', 1), ('specific', 1), ('kind', 1)]
[('book', 2), ('approach', 2), ('method', 2), ('present', 1), ('new', 1), ('software', 1), ('engineering', 1), ('discussing', 1), ('real', 1), ('world', 1), ('problem', 1), ('exploratory', 1), ('research', 1), ('describes', 1), ('novel', 1), ('modern', 1), ('design', 1), ('technique', 1), ('hybrid', 1), ('algorithm', 1), ('empirical', 1), ('nbsp', 1), ('constitutes', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('symposium', 1), ('intelligent', 1), ('computing', 1), ('system', 1), ('isics', 1), ('held', 1), ('merida', 1), ('mexico', 1), ('march', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('feature', 1), ('collection', 1), ('revised', 1), ('significantly', 1), ('extended', 1), ('version', 1), ('paper', 1), ('accepted', 1), ('presentation', 1), ('th', 1), ('international', 1), ('workshop', 1), ('new', 1), ('frontier', 1), ('mining', 1), ('complex', 1), ('pattern', 1), ('nfmcp', 1), ('held', 1), ('conjunction', 1), ('ecml', 1), ('pkdd', 1)]
[('swarm', 2), ('behaviour', 2), ('book', 1), ('present', 1), ('fundamental', 1), ('theoretical', 1), ('result', 1), ('designing', 1), ('object', 1), ('oriented', 1), ('programming', 1), ('language', 1), ('controlling', 1), ('study', 1), ('logic', 1), ('according', 1), ('behaviourism', 1), ('controlled', 1), ('even', 1), ('managed', 1)]
[('end', 2), ('neural', 2), ('network', 2), ('springerbrief', 1), ('describes', 1), ('build', 1), ('rigorous', 1), ('mathematical', 1), ('framework', 1), ('deep', 1), ('author', 1), ('provide', 1), ('tool', 1), ('represent', 1), ('describe', 1), ('casting', 1), ('previous', 1), ('result', 1), ('field', 1), ('natural', 1), ('light', 1)]
[('dimension', 4), ('fractal', 2), ('network', 2), ('many', 1), ('different', 1), ('proposed', 1), ('survey', 1), ('theory', 1), ('computation', 1), ('important', 1), ('reviewed', 1), ('including', 1), ('box', 1), ('counting', 1), ('correlation', 1)]
[('interaction', 3), ('user', 2), ('interface', 2), ('using', 2), ('duo', 1), ('performs', 1), ('task', 1), ('three', 1), ('dimension', 1), ('example', 1), ('hand', 1), ('body', 1), ('gesture', 1), ('motion', 1), ('controller', 1), ('sony', 1), ('playstation', 1), ('move', 1), ('virtual', 1), ('reality', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('iberoamerican', 1), ('conference', 1), ('application', 1), ('usability', 1), ('interactive', 1), ('television', 1), ('jauti', 1), ('aveiro', 1), ('portugal', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('international', 1), ('symposium', 1), ('information', 1), ('management', 1), ('big', 1), ('data', 1), ('simbig', 1), ('held', 1), ('lima', 1), ('peru', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 2), ('data', 2), ('introduces', 1), ('reader', 1), ('method', 1), ('type', 1), ('scale', 1), ('analysis', 1), ('used', 1), ('context', 1), ('health', 1), ('challenge', 1), ('working', 1), ('big', 1), ('explored', 1), ('throughout', 1), ('benefit', 1), ('emphasized', 1), ('discovery', 1)]
[('cultural', 2), ('author', 1), ('first', 1), ('introduces', 1), ('basic', 1), ('framework', 1), ('algorithm', 1), ('explains', 1), ('social', 1), ('structure', 1), ('system', 1), ('mechanism', 1), ('distribution', 1), ('problem', 1), ('solving', 1), ('information', 1), ('throughout', 1), ('population', 1), ('three', 1), ('different', 1), ('model', 1)]
[('practical', 1), ('text', 1), ('reference', 1), ('provides', 1), ('exhaustive', 1), ('guide', 1), ('setting', 1), ('sustaining', 1), ('software', 1), ('defined', 1), ('data', 1), ('center', 1), ('sddcs', 1), ('core', 1), ('element', 1), ('underlying', 1), ('technology', 1), ('explained', 1), ('detail', 1), ('often', 1), ('supported', 1), ('real', 1), ('world', 1), ('example', 1)]
[('conference', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('thirteenth', 1), ('international', 1), ('dependability', 1), ('complex', 1), ('system', 1), ('depcos', 1), ('relcomex', 1), ('took', 1), ('place', 1), ('brunów', 1), ('palace', 1), ('poland', 1), ('nd', 1), ('th', 1), ('july', 1), ('organized', 1)]
[('process', 2), ('yuima', 1), ('package', 1), ('first', 1), ('comprehensive', 1), ('framework', 1), ('based', 1), ('class', 1), ('method', 1), ('allows', 1), ('simulation', 1), ('stochastic', 1), ('differential', 1), ('equation', 1), ('driven', 1), ('wiener', 1), ('lévy', 1), ('fractional', 1), ('brownian', 1), ('motion', 1), ('carma', 1)]
[('conference', 2), ('technology', 2), ('itib', 1), ('th', 1), ('information', 1), ('biomedicine', 1), ('hosted', 1), ('every', 1), ('year', 1), ('department', 1), ('informatics', 1), ('medical', 1), ('device', 1), ('faculty', 1), ('biomedical', 1), ('engineering', 1), ('silesian', 1), ('university', 1), ('organized', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('application', 1), ('innovation', 1), ('aiai', 1), ('held', 1), ('rhodes', 1), ('greece', 1), ('full', 1), ('short', 1)]
[('visual', 2), ('perception', 2), ('humanoid', 2), ('robot', 2), ('nbsp', 2), ('book', 1), ('provides', 1), ('overview', 1), ('model', 1), ('based', 1), ('environmental', 1), ('creates', 1), ('bidirectional', 1), ('bridge', 1), ('connecting', 1), ('sensor', 1), ('signal', 1), ('internal', 1), ('representation', 1)]
[('conference', 2), ('book', 1), ('gather', 1), ('proceeding', 1), ('kes', 1), ('idt', 1), ('held', 1), ('gold', 1), ('coast', 1), ('queensland', 1), ('australia', 1), ('june', 1), ('provided', 1), ('opportunity', 1), ('present', 1), ('discus', 1), ('latest', 1), ('research', 1), ('result', 1), ('promoting', 1), ('knowledge', 1), ('transfer', 1)]
[('agent', 4), ('new', 2), ('book', 1), ('highlight', 1), ('trend', 1), ('challenge', 1), ('system', 1), ('digital', 1), ('knowledge', 1), ('economy', 1), ('research', 1), ('includes', 1), ('paper', 1), ('area', 1), ('intelligent', 1), ('interaction', 1), ('collaboration', 1), ('modeling', 1), ('simulation', 1), ('mobile', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('third', 1), ('international', 1), ('conference', 1), ('information', 1), ('system', 1), ('security', 1), ('privacy', 1), ('icissp', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('february', 1), ('full', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 1), ('present', 1), ('series', 1), ('carefully', 1), ('selected', 1), ('paper', 1), ('theme', 1), ('intelligent', 1), ('interactive', 1), ('multimedia', 1), ('system', 1), ('service', 1), ('iimss', 1), ('including', 1), ('contribution', 1), ('innovation', 1), ('medicine', 1), ('healthcare', 1), ('inmed', 1), ('smart', 1)]
[('robot', 2), ('intelligence', 2), ('book', 1), ('includes', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('technology', 1), ('nbsp', 1), ('application', 1), ('held', 1), ('kaist', 1), ('daejeon', 1), ('korea', 1), ('december', 1), ('cover', 1), ('following', 1), ('area', 1), ('artificial', 1), ('autonomous', 1)]
[('variability', 6), ('stem', 2), ('centre', 1), ('methodology', 1), ('used', 1), ('book', 1), ('learning', 1), ('space', 1), ('includes', 1), ('pedagogical', 1), ('learner', 1), ('social', 1), ('technological', 1), ('c', 1), ('content', 1), ('interaction', 1), ('design', 1)]
[('thoroughly', 2), ('revised', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('model', 1), ('driven', 1), ('engineering', 1), ('software', 1), ('development', 1), ('modelsward', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('february', 1)]
[('conference', 2), ('book', 1), ('present', 1), ('outcome', 1), ('th', 1), ('acis', 1), ('international', 1), ('computational', 1), ('science', 1), ('intelligence', 1), ('applied', 1), ('informatics', 1), ('csii', 1), ('held', 1), ('july', 1), ('yonago', 1), ('japan', 1), ('aim', 1), ('bring', 1), ('together', 1)]
[('general', 2), ('process', 2), ('textbook', 1), ('present', 1), ('multi', 1), ('objective', 1), ('optimization', 1), ('framework', 1), ('optimizing', 1), ('chemical', 1), ('implementing', 1), ('link', 1), ('simulator', 1), ('metaheuristic', 1), ('technique', 1), ('proposed', 1), ('approach', 1), ('show', 1), ('implement', 1)]
[('information', 3), ('data', 2), ('book', 1), ('discus', 1), ('process', 1), ('procedure', 1), ('processing', 1), ('management', 1), ('global', 1), ('market', 1), ('becoming', 1), ('complex', 1), ('increased', 1), ('availability', 1), ('result', 1), ('business', 1)]
[('data', 2), ('mining', 2), ('nbsp', 2), ('book', 1), ('introduces', 1), ('concept', 1), ('application', 1), ('development', 1), ('science', 1), ('telecommunication', 1), ('industry', 1), ('focusing', 1), ('advanced', 1), ('machine', 1), ('learning', 1), ('methodology', 1), ('wireless', 1), ('network', 1), ('domain', 1), ('air', 1)]
[('making', 2), ('decision', 2), ('book', 1), ('offer', 1), ('collection', 1), ('valuable', 1), ('guideline', 1), ('concerning', 1), ('future', 1), ('development', 1), ('transport', 1), ('network', 1), ('traffic', 1), ('engineering', 1), ('support', 1), ('system', 1), ('described', 1), ('certainly', 1), ('attract', 1), ('interest', 1)]
[('held', 2), ('international', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('three', 1), ('workshop', 1), ('th', 1), ('conference', 1), ('database', 1), ('expert', 1), ('system', 1), ('application', 1), ('dexa', 1), ('regensburg', 1), ('germany', 1), ('september', 1), ('nbsp', 1), ('third', 1)]
[('human', 2), ('book', 1), ('based', 1), ('interdisciplinary', 1), ('research', 1), ('various', 1), ('aspect', 1), ('dynamic', 1), ('multimodal', 1), ('signal', 1), ('exchange', 1), ('discus', 1), ('realistic', 1), ('application', 1), ('scenario', 1), ('interaction', 1), ('focus', 1), ('order', 1), ('toidentify', 1), ('new', 1), ('method', 1), ('data', 1)]
[('göttingen', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('clausthal', 1), ('international', 1), ('workshop', 1), ('simulation', 1), ('science', 1), ('held', 1), ('germany', 1), ('april', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('mobile', 1), ('communication', 1), ('healthcare', 1), ('mobihealth', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('reviewed', 1)]
[('dh', 2), ('topic', 2), ('change', 2), ('time', 2), ('introduction', 1), ('programming', 1), ('digital', 1), ('humanity', 1), ('book', 1), ('present', 1), ('six', 1), ('key', 1), ('assignment', 1), ('oriented', 1), ('include', 1), ('computing', 1), ('calculating', 1), ('burial', 1), ('historic', 1), ('cemetery', 1), ('visualizing', 1)]
[('book', 2), ('learning', 2), ('fisher', 2), ('show', 1), ('machine', 1), ('enthusiast', 1), ('practitioner', 1), ('best', 1), ('world', 1), ('deriving', 1), ('kernel', 1), ('deep', 1), ('model', 1), ('addition', 1), ('share', 1), ('insight', 1), ('store', 1), ('retrieve', 1), ('large', 1), ('dimensional', 1), ('vector', 1)]
[('image', 4), ('nbsp', 3), ('processing', 2), ('practical', 2), ('example', 2), ('springerbrief', 1), ('cover', 1), ('fundamental', 1), ('digital', 1), ('including', 1), ('concept', 1), ('file', 1), ('format', 1), ('creating', 1), ('user', 1), ('interface', 1), ('many', 1), ('using', 1), ('java', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('innovation', 1), ('interdisciplinary', 1), ('solution', 1), ('underserved', 1), ('area', 1), ('intersol', 1), ('th', 1), ('collogue', 1), ('national', 1), ('sur', 1), ('la', 1), ('recherche', 1), ('en', 1), ('informatique', 1)]
[('cg', 2), ('computer', 1), ('graphic', 1), ('industry', 1), ('attractive', 1), ('field', 1), ('undergraduate', 1), ('student', 1), ('employer', 1), ('often', 1), ('find', 1), ('graduate', 1), ('art', 1), ('programme', 1), ('proficient', 1), ('result', 1), ('many', 1), ('position', 1), ('left', 1), ('vacant', 1), ('despite', 1), ('large', 1), ('number', 1), ('job', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('short', 1), ('workshop', 1), ('doctoral', 1), ('consortium', 1), ('th', 1), ('european', 1), ('conference', 1), ('advance', 1), ('database', 1), ('information', 1), ('system', 1), ('adbis', 1), ('held', 1), ('budapest', 1), ('hungary', 1), ('september', 1)]
[('proceeding', 1), ('collect', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('multimedia', 1), ('network', 1), ('information', 1), ('system', 1), ('missi', 1), ('held', 1), ('september', 1), ('wrocław', 1), ('poland', 1), ('keynote', 1), ('lecture', 1), ('given', 1), ('four', 1), ('outstanding', 1)]
[('approach', 2), ('software', 2), ('book', 1), ('highlight', 1), ('range', 1), ('new', 1), ('concept', 1), ('field', 1), ('engineering', 1), ('based', 1), ('systematic', 1), ('method', 1), ('graphical', 1), ('formal', 1), ('model', 1), ('designed', 1), ('solving', 1), ('practical', 1), ('problem', 1), ('encountered', 1), ('actual', 1)]
[('conference', 2), ('book', 1), ('present', 1), ('outcome', 1), ('th', 1), ('iee', 1), ('acis', 1), ('international', 1), ('computer', 1), ('information', 1), ('science', 1), ('icis', 1), ('held', 1), ('singapore', 1), ('june', 1), ('aim', 1), ('bring', 1), ('together', 1), ('researcher', 1), ('scientist', 1)]
[('distribution', 2), ('book', 1), ('present', 1), ('set', 1), ('theoretical', 1), ('experimental', 1), ('result', 1), ('describe', 1), ('feature', 1), ('wide', 1), ('family', 1), ('α', 1), ('stable', 1), ('normal', 1), ('belongs', 1), ('class', 1), ('various', 1), ('application', 1), ('mutation', 1), ('operator', 1)]
[('book', 1), ('review', 1), ('existing', 1), ('sensor', 1), ('technology', 1), ('coupled', 1), ('computational', 1), ('intelligence', 1), ('remote', 1), ('monitoring', 1), ('physical', 1), ('activity', 1), ('ex', 1), ('vivo', 1), ('biosignatures', 1), ('today', 1), ('frenetic', 1), ('world', 1), ('consumer', 1), ('becoming', 1), ('demanding', 1)]
[('nbsp', 2), ('cyber', 1), ('security', 1), ('research', 1), ('important', 1), ('area', 1), ('computer', 1), ('science', 1), ('domain', 1), ('play', 1), ('major', 1), ('role', 1), ('life', 1), ('almost', 1), ('every', 1), ('individual', 1), ('enterprise', 1), ('society', 1), ('country', 1), ('book', 1), ('illustrates', 1), ('large', 1), ('number', 1)]
[('narrative', 2), ('book', 1), ('stage', 1), ('dialogue', 1), ('international', 1), ('researcher', 1), ('broad', 1), ('field', 1), ('complexity', 1), ('science', 1), ('study', 1), ('present', 1), ('edited', 1), ('collection', 1), ('chapter', 1), ('aspect', 1), ('theory', 1), ('humanity', 1), ('exploited', 1)]
[('data', 4), ('nbsp', 2), ('collect', 2), ('springerbrief', 1), ('present', 1), ('typical', 1), ('life', 1), ('cycle', 1), ('mobile', 1), ('mining', 1), ('application', 1), ('including', 1), ('capturing', 1), ('processing', 1), ('determines', 1), ('reduce', 1), ('noise', 1)]
[('decision', 2), ('springerbrief', 1), ('provides', 1), ('pioneering', 1), ('central', 1), ('point', 1), ('reference', 1), ('interested', 1), ('reader', 1), ('large', 1), ('group', 1), ('making', 1), ('trend', 1), ('consensus', 1), ('support', 1), ('fusion', 1), ('weighting', 1), ('relevant', 1), ('information', 1), ('subgroup', 1), ('clustering', 1), ('behavior', 1)]
[('quantum', 2), ('book', 1), ('present', 1), ('first', 1), ('established', 1), ('experimental', 1), ('result', 1), ('emergent', 1), ('field', 1), ('dimensional', 1), ('material', 1), ('platform', 1), ('technology', 1), ('specifically', 1), ('optic', 1), ('confined', 1), ('excitons', 1), ('provides', 1), ('extensive', 1), ('review', 1)]
[('book', 1), ('introduces', 1), ('innovative', 1), ('interdisciplinary', 1), ('application', 1), ('advanced', 1), ('technology', 1), ('featuring', 1), ('paper', 1), ('th', 1), ('day', 1), ('bhaas', 1), ('bosnian', 1), ('herzegovinian', 1), ('american', 1), ('academy', 1), ('art', 1), ('science', 1), ('held', 1), ('jahorina', 1), ('bosnia', 1), ('herzegovina', 1)]
[('nbsp', 6), ('springerbrief', 1), ('brings', 1), ('order', 1), ('wealth', 1), ('research', 1), ('study', 1), ('contribute', 1), ('shape', 1), ('understanding', 1), ('line', 1), ('social', 1), ('network', 1), ('osns', 1), ('lurking', 1), ('phenomenon', 1), ('brief', 1), ('drive', 1), ('development', 1), ('computational', 1)]
[('book', 1), ('differential', 1), ('evolution', 1), ('modified', 1), ('variant', 1), ('applied', 1), ('clustering', 1), ('data', 1), ('image', 1), ('metaheuristics', 1), ('emerged', 1), ('potential', 1), ('algorithm', 1), ('dealing', 1), ('complex', 1), ('optimization', 1), ('problem', 1), ('difficult', 1)]
[('th', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('joint', 1), ('symposium', 1), ('artificial', 1), ('intelligence', 1), ('natural', 1), ('language', 1), ('processing', 1), ('isai', 1), ('nlp', 1), ('held', 1), ('prachuap', 1), ('khiri', 1), ('khan', 1), ('thailand', 1), ('august', 1)]
[('book', 2), ('provides', 1), ('first', 1), ('extensive', 1), ('survey', 1), ('block', 1), ('cipher', 1), ('following', 1), ('lai', 1), ('massey', 1), ('design', 1), ('paradigm', 1), ('introduction', 1), ('historical', 1), ('remark', 1), ('author', 1), ('structure', 1), ('chapter', 1), ('description', 1), ('pe', 1), ('idea', 1)]
[('fashion', 2), ('textile', 2), ('book', 1), ('includes', 1), ('proceeding', 1), ('artificial', 1), ('intelligence', 1), ('conference', 1), ('provides', 1), ('state', 1), ('art', 1), ('technique', 1), ('application', 1), ('ai', 1), ('industry', 1), ('essential', 1), ('reading', 1), ('scientist', 1)]
[('text', 2), ('fingerprint', 2), ('important', 1), ('reference', 1), ('present', 1), ('first', 1), ('dedicated', 1), ('review', 1), ('technique', 1), ('contactless', 1), ('identification', 1), ('including', 1), ('novel', 1), ('previously', 1), ('unpublished', 1), ('research', 1), ('provides', 1), ('systematic', 1), ('introduction', 1)]
[('modeling', 2), ('em', 2), ('participatory', 2), ('book', 1), ('offer', 1), ('practical', 1), ('advice', 1), ('managing', 1), ('enterprise', 1), ('project', 1), ('facilitating', 1), ('session', 1), ('activity', 1), ('often', 1), ('involve', 1), ('group', 1), ('model', 1), ('created', 1), ('way', 1), ('ensuring', 1), ('done', 1)]
[('nbsp', 4), ('provides', 2), ('general', 2), ('book', 1), ('comprehensible', 1), ('overview', 1), ('supervised', 1), ('descriptive', 1), ('pattern', 1), ('mining', 1), ('considering', 1), ('classic', 1), ('algorithm', 1), ('based', 1), ('heuristic', 1), ('formal', 1), ('definition', 1), ('idea', 1)]
[('intelligent', 2), ('system', 2), ('gathering', 1), ('proceeding', 1), ('conference', 1), ('intellisys', 1), ('book', 1), ('offer', 1), ('remarkable', 1), ('collection', 1), ('chapter', 1), ('covering', 1), ('wide', 1), ('range', 1), ('topic', 1), ('computing', 1), ('real', 1), ('world', 1), ('application', 1)]
[('mining', 2), ('spatiotemporal', 2), ('frequent', 2), ('nbsp', 2), ('pattern', 2), ('springerbrief', 1), ('provides', 1), ('overview', 1), ('within', 1), ('data', 1), ('evolving', 1), ('region', 1), ('perspective', 1), ('relationship', 1), ('modeling', 1), ('among', 1), ('object', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('iot', 1), ('service', 1), ('iotaas', 1), ('held', 1), ('taichung', 1), ('taiwan', 1), ('september', 1), ('full', 1), ('carefully', 1), ('selected', 1), ('submission', 1)]
[('digital', 2), ('company', 1), ('across', 1), ('industry', 1), ('leveraging', 1), ('technology', 1), ('transform', 1), ('outdated', 1), ('process', 1), ('build', 1), ('new', 1), ('business', 1), ('model', 1), ('compete', 1), ('information', 1), ('age', 1), ('publicity', 1), ('hype', 1), ('successful', 1), ('transformation', 1), ('proven', 1)]
[('missing', 3), ('data', 3), ('deep', 2), ('learning', 2), ('engineering', 2), ('system', 2), ('estimation', 2), ('us', 1), ('swarm', 1), ('intelligence', 1), ('method', 1), ('cover', 1), ('process', 1), ('proposed', 1), ('book', 1), ('applied', 1), ('image', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('eai', 1), ('conference', 1), ('emerging', 1), ('technology', 1), ('developing', 1), ('country', 1), ('africatek', 1), ('held', 1), ('cotonou', 1), ('benin', 1), ('revised', 1), ('full', 1), ('short', 1)]
[('decision', 2), ('book', 1), ('demonstrates', 1), ('original', 1), ('concept', 1), ('implementing', 1), ('rough', 1), ('set', 1), ('theory', 1), ('construction', 1), ('making', 1), ('system', 1), ('address', 1), ('three', 1), ('type', 1), ('including', 1), ('information', 1), ('input', 1), ('data', 1), ('insufficient', 1), ('though', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('nooj', 1), ('held', 1), ('palermo', 1), ('italy', 1), ('june', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('general', 2), ('assumption', 2), ('stationarity', 1), ('qualitative', 1), ('assessed', 1), ('basis', 1), ('application', 1), ('specific', 1), ('thus', 1), ('nbsp', 1), ('rather', 1), ('attractive', 1), ('base', 1), ('statistical', 1), ('analysis', 1), ('especially', 1), ('problem', 1), ('le', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('advancement', 1), ('science', 1), ('technology', 1), ('icast', 1), ('took', 1), ('place', 1), ('bahir', 1), ('dar', 1), ('ethiopia', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('computer', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('aided', 1), ('engineering', 1), ('collecting', 1), ('best', 1), ('paper', 1), ('event', 1), ('held', 1), ('wrocław', 1), ('poland', 1), ('june', 1), ('includes', 1), ('contribution', 1), ('researcher', 1)]
[('book', 1), ('offer', 1), ('latest', 1), ('research', 1), ('new', 1), ('perspective', 1), ('interactive', 1), ('collaborative', 1), ('learning', 1), ('engineering', 1), ('pedagogy', 1), ('currently', 1), ('witnessing', 1), ('significant', 1), ('transformation', 1), ('education', 1), ('order', 1), ('face', 1), ('today', 1), ('real', 1), ('world', 1), ('challenge', 1)]
[('goal', 1), ('book', 1), ('provide', 1), ('friendly', 1), ('refreshing', 1), ('manner', 1), ('theoretical', 1), ('concept', 1), ('practical', 1), ('technique', 1), ('important', 1), ('exciting', 1), ('field', 1), ('artificial', 1), ('intelligence', 1), ('directly', 1), ('applied', 1), ('real', 1), ('world', 1), ('healthcare', 1)]
[('odf', 2), ('brief', 1), ('investigates', 1), ('intersection', 1), ('occur', 1), ('three', 1), ('different', 1), ('area', 1), ('study', 1), ('normally', 1), ('touch', 1), ('spline', 1), ('theory', 1), ('topology', 1), ('least', 1), ('square', 1), ('orthogonal', 1), ('distance', 1), ('fitting', 1), ('method', 1), ('become', 1), ('standard', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('metadata', 1), ('semantic', 1), ('research', 1), ('mtsr', 1), ('held', 1), ('limassol', 1), ('cyprus', 1), ('october', 1), ('full', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('document', 3), ('vast', 1), ('amount', 1), ('ontologically', 1), ('unstructured', 1), ('information', 1), ('web', 1), ('including', 1), ('html', 1), ('xml', 1), ('json', 1), ('natural', 1), ('language', 1), ('tweet', 1), ('blog', 1), ('markup', 1), ('even', 1), ('structured', 1), ('csv', 1), ('table', 1), ('contain', 1), ('useful', 1), ('knowledge', 1)]
[('show', 2), ('conversation', 2), ('analysis', 2), ('research', 1), ('described', 1), ('book', 1), ('effectively', 1), ('model', 1), ('dialogue', 1), ('specifically', 1), ('work', 1), ('multidisciplinary', 1), ('field', 1), ('communicative', 1), ('icall', 1), ('greatly', 1), ('benefit', 1), ('including', 1)]
[('baden', 2), ('book', 1), ('present', 1), ('latest', 1), ('advance', 1), ('research', 1), ('achievement', 1), ('field', 1), ('autonomous', 1), ('robot', 1), ('intelligent', 1), ('system', 1), ('presented', 1), ('ia', 1), ('conference', 1), ('held', 1), ('germany', 1), ('june', 1), ('brings', 1), ('together', 1), ('contribution', 1)]
[('human', 2), ('book', 1), ('present', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('innovative', 1), ('system', 1), ('integration', 1), ('machine', 1), ('interaction', 1), ('emphasis', 1), ('artificial', 1), ('intelligence', 1), ('automation', 1), ('computational', 1), ('modeling', 1), ('simulation', 1), ('cover', 1), ('wide', 1), ('range', 1)]
[('data', 2), ('traditional', 1), ('database', 1), ('excel', 1), ('complex', 1), ('query', 1), ('historical', 1), ('inherently', 1), ('pull', 1), ('based', 1), ('ill', 1), ('equipped', 1), ('push', 1), ('new', 1), ('information', 1), ('client', 1), ('system', 1), ('stream', 1), ('management', 1), ('processing', 1), ('hand', 1)]
[('research', 2), ('monograph', 1), ('explores', 1), ('rapidly', 1), ('expanding', 1), ('field', 1), ('networked', 1), ('music', 1), ('making', 1), ('way', 1), ('musician', 1), ('different', 1), ('culture', 1), ('improvise', 1), ('together', 1), ('online', 1), ('draw', 1), ('extensive', 1), ('uncover', 1), ('creative', 1), ('cognitive', 1), ('approach', 1)]
[('human', 2), ('social', 1), ('robot', 1), ('work', 1), ('collaborative', 1), ('workspace', 1), ('meet', 1), ('shopping', 1), ('mall', 1), ('even', 1), ('personal', 1), ('setting', 1), ('health', 1), ('care', 1), ('imply', 1), ('become', 1), ('able', 1), ('interpret', 1), ('adequately', 1), ('respond', 1)]
[('book', 1), ('present', 1), ('peer', 1), ('reviewed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('machine', 1), ('learning', 1), ('technology', 1), ('application', 1), ('amlta', 1), ('held', 1), ('cairo', 1), ('egypt', 1), ('march', 1), ('organized', 1), ('scientific', 1), ('research', 1), ('group', 1)]
[('contribution', 1), ('written', 1), ('foremost', 1), ('international', 1), ('researcher', 1), ('practitioner', 1), ('genetic', 1), ('programming', 1), ('gp', 1), ('explore', 1), ('synergy', 1), ('theoretical', 1), ('empirical', 1), ('result', 1), ('real', 1), ('world', 1), ('problem', 1), ('producing', 1), ('comprehensive', 1), ('view', 1), ('state', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('digital', 1), ('forensics', 1), ('cyber', 1), ('crime', 1), ('icdf', 1), ('held', 1), ('new', 1), ('orleans', 1), ('la', 1), ('usa', 1), ('september', 1), ('reviewed', 1), ('full', 1), ('short', 1), ('selected', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('international', 1), ('iccasa', 1), ('ictcc', 1), ('held', 1), ('november', 1), ('viet', 1), ('tri', 1), ('city', 1), ('vietnam', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1), ('submission', 1)]
[('artificial', 2), ('festschrift', 1), ('tribute', 1), ('susan', 1), ('stepney', 1), ('idea', 1), ('achievement', 1), ('area', 1), ('computer', 1), ('science', 1), ('formal', 1), ('specification', 1), ('proof', 1), ('complex', 1), ('system', 1), ('unconventional', 1), ('computing', 1), ('chemistry', 1), ('life', 1), ('chapter', 1)]
[('book', 1), ('address', 1), ('range', 1), ('solution', 1), ('effective', 1), ('control', 1), ('technique', 1), ('microbial', 1), ('fuel', 1), ('cell', 1), ('mfcs', 1), ('intended', 1), ('response', 1), ('increased', 1), ('energy', 1), ('consumption', 1), ('wastewater', 1), ('production', 1), ('stemming', 1), ('globalization', 1), ('describes', 1), ('fundamental', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('icts', 1), ('improving', 1), ('patient', 1), ('rehabilitation', 1), ('research', 1), ('technique', 1), ('rehab', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('extension', 2), ('generalized', 2), ('type', 2), ('book', 1), ('present', 1), ('aggregation', 1), ('operator', 1), ('interval', 1), ('sugeno', 1), ('integral', 1), ('using', 1), ('fuzzy', 1), ('logic', 1), ('enables', 1), ('handle', 1), ('higher', 1), ('level', 1), ('uncertainty', 1), ('adding', 1), ('number', 1), ('source', 1)]
[('scheduler', 2), ('book', 1), ('introduces', 1), ('new', 1), ('fairly', 1), ('efficiently', 1), ('distribute', 1), ('system', 1), ('resource', 1), ('many', 1), ('user', 1), ('varying', 1), ('usage', 1), ('pattern', 1), ('compete', 1), ('large', 1), ('shared', 1), ('computing', 1), ('environment', 1), ('nbsp', 1), ('rawlsian', 1), ('fair', 1), ('developed', 1), ('effort', 1)]
[('discus', 2), ('book', 1), ('author', 1), ('recent', 1), ('development', 1), ('computational', 1), ('technique', 1), ('automated', 1), ('non', 1), ('invasive', 1), ('facial', 1), ('emotion', 1), ('detection', 1), ('analysis', 1), ('particular', 1), ('focus', 1), ('smile', 1), ('way', 1), ('application', 1), ('genuine', 1)]
[('conference', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('ifip', 1), ('tc', 1), ('dcitdrr', 1), ('international', 1), ('information', 1), ('technology', 1), ('disaster', 1), ('risk', 1), ('reduction', 1), ('itdrr', 1), ('held', 1), ('sofia', 1), ('bulgaria', 1), ('october', 1), ('revised', 1), ('full', 1)]
[('conference', 3), ('volume', 1), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('wireless', 1), ('satellite', 1), ('service', 1), ('wisats', 1), ('held', 1), ('harbin', 1), ('china', 1), ('january', 1), ('formerly', 1), ('known', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('entitled', 1), ('beyond', 1), ('database', 1), ('architecture', 1), ('structure', 1), ('bdas', 1), ('held', 1), ('ustroń', 1), ('poland', 1), ('consists', 1), ('carefully', 1), ('reviewed', 1), ('paper', 1), ('selected', 1)]
[('nbsp', 8), ('book', 1), ('highlight', 1), ('work', 1), ('several', 1), ('world', 1), ('class', 1), ('researcher', 1), ('smart', 1), ('modeling', 1), ('complex', 1), ('system', 1), ('contribution', 1), ('grouped', 1), ('four', 1), ('main', 1), ('category', 1), ('listed', 1), ('numerical', 1), ('scheme', 1)]
[('ifip', 2), ('conference', 2), ('volume', 1), ('aict', 1), ('constitute', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('wg', 1), ('international', 1), ('computer', 1), ('computing', 1), ('technology', 1), ('agriculture', 1), ('ccta', 1), ('held', 1), ('jilin', 1), ('china', 1), ('august', 1)]
[('ifip', 2), ('conference', 2), ('volume', 1), ('aict', 1), ('constitute', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('wg', 1), ('international', 1), ('computer', 1), ('computing', 1), ('technology', 1), ('agriculture', 1), ('ccta', 1), ('held', 1), ('jilin', 1), ('china', 1), ('august', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('language', 1), ('music', 1), ('computing', 1), ('lmac', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('april', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('russian', 1), ('supercomputing', 1), ('day', 1), ('ruscdays', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('italian', 1), ('research', 1), ('conference', 1), ('digital', 1), ('library', 1), ('ircdl', 1), ('held', 1), ('pisa', 1), ('italy', 1), ('january', 1), ('february', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('symposium', 1), ('nbsp', 1), ('data', 1), ('driven', 1), ('process', 1), ('discovery', 1), ('analysis', 1), ('simpda', 1), ('held', 1), ('neuchatel', 1), ('switzerland', 1), ('december', 1), ('presented', 1)]
[('book', 1), ('present', 1), ('original', 1), ('contribution', 1), ('theory', 1), ('practice', 1), ('emerging', 1), ('internet', 1), ('data', 1), ('web', 1), ('technology', 1), ('application', 1), ('business', 1), ('engineering', 1), ('academia', 1), ('key', 1), ('feature', 1), ('address', 1), ('advance', 1), ('life', 1), ('cycle', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('collaborative', 1), ('computing', 1), ('networking', 1), ('application', 1), ('worksharing', 1), ('collaboratecom', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('december', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('management', 1), ('big', 1), ('data', 1), ('simbig', 1), ('held', 1), ('lima', 1), ('peru', 1), ('september', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('advanced', 2), ('intelligent', 2), ('system', 2), ('book', 1), ('gather', 1), ('paper', 1), ('presented', 1), ('international', 1), ('conference', 1), ('sustainable', 1), ('development', 1), ('ai', 1), ('sd', 1), ('held', 1), ('tangier', 1), ('morocco', 1), ('july', 1), ('highlight', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('ibero', 1), ('american', 1), ('congress', 1), ('icsc', 1), ('city', 1), ('held', 1), ('soria', 1), ('spain', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('transdisciplinary', 1), ('multispectral', 1), ('modeling', 1), ('cooperation', 1), ('preservation', 1), ('cultural', 1), ('heritage', 1), ('tmm_ch', 1), ('held', 1)]
[('th', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('nbsp', 1), ('international', 1), ('congress', 1), ('sport', 1), ('science', 1), ('research', 1), ('technology', 1), ('support', 1), ('icsport', 1), ('held', 1), ('respectively', 1), ('porto', 1), ('portugal', 1), ('november', 1)]
[('algorithm', 2), ('book', 1), ('cover', 1), ('conventional', 1), ('recent', 1), ('theory', 1), ('application', 1), ('area', 1), ('evolutionary', 1), ('swarm', 1), ('intelligence', 1), ('meta', 1), ('heuristic', 1), ('chapter', 1), ('offer', 1), ('comprehensive', 1), ('description', 1), ('specific', 1)]
[('cisis', 2), ('volume', 1), ('present', 1), ('paper', 1), ('presented', 1), ('iceute', 1), ('held', 1), ('beautiful', 1), ('historic', 1), ('city', 1), ('seville', 1), ('spain', 1), ('th', 1), ('conference', 1), ('offered', 1), ('meeting', 1), ('opportunity', 1), ('academic', 1), ('industry', 1), ('related', 1), ('researcher', 1)]
[('book', 1), ('contains', 1), ('extended', 1), ('revised', 1), ('version', 1), ('best', 1), ('paper', 1), ('presented', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('iee', 1), ('international', 1), ('conference', 1), ('large', 1), ('scale', 1), ('integration', 1), ('vlsi', 1), ('soc', 1), ('held', 1), ('abu', 1), ('dhabi', 1), ('united', 1), ('arab', 1), ('emirate', 1), ('august', 1), ('nbsp', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('industrial', 1), ('application', 1), ('holonic', 1), ('multi', 1), ('agent', 1), ('system', 1), ('holomas', 1), ('held', 1), ('linz', 1), ('austria', 1), ('august', 1), ('nbsp', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('transparency', 2), ('trial', 2), ('lack', 2), ('book', 1), ('aim', 1), ('highlight', 1), ('gap', 1), ('issue', 1), ('clinical', 1), ('research', 1), ('process', 1), ('information', 1), ('flowing', 1), ('back', 1), ('researcher', 1), ('patient', 1), ('involved', 1), ('data', 1)]
[('conference', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('decision', 1), ('support', 1), ('system', 1), ('technology', 1), ('icdsst', 1), ('held', 1), ('madeira', 1), ('portugal', 1), ('year', 1), ('euro', 1), ('mini', 1), ('slightly', 1)]
[('field', 2), ('elliptic', 2), ('working', 2), ('book', 1), ('includes', 1), ('review', 1), ('article', 1), ('integral', 1), ('function', 1), ('modular', 1), ('form', 1), ('intending', 1), ('foster', 1), ('discussion', 1), ('theoretical', 1), ('physicist', 1), ('higher', 1), ('loop', 1), ('calculation', 1), ('mathematician', 1)]
[('international', 3), ('workshop', 2), ('th', 2), ('business', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('paper', 1), ('eight', 1), ('held', 1), ('conference', 1), ('process', 1), ('management', 1), ('bpm', 1), ('sydney', 1), ('australia', 1), ('september', 1), ('bpi', 1)]
[('information', 2), ('book', 1), ('present', 1), ('remarkable', 1), ('collection', 1), ('chapter', 1), ('cover', 1), ('wide', 1), ('range', 1), ('topic', 1), ('area', 1), ('communication', 1), ('technology', 1), ('real', 1), ('world', 1), ('application', 1), ('gather', 1), ('proceeding', 1), ('future', 1)]
[('data', 3), ('social', 2), ('medium', 2), ('contains', 1), ('communication', 1), ('online', 1), ('sharing', 1), ('mirroring', 1), ('daily', 1), ('life', 1), ('book', 1), ('look', 1), ('use', 1), ('discover', 1), ('big', 1), ('basic', 1), ('knowledge', 1), ('challenge', 1), ('analyticsclustering', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('workshop', 1), ('enterprise', 1), ('application', 1), ('market', 1), ('service', 1), ('finance', 1), ('industry', 1), ('financecom', 1), ('held', 1), ('manchester', 1), ('uk', 1), ('june', 1), ('presented', 1), ('volume', 1)]
[('offer', 2), ('petri', 2), ('part', 2), ('book', 1), ('overview', 1), ('key', 1), ('idea', 1), ('net', 1), ('developed', 1), ('applied', 1), ('diverse', 1), ('application', 1), ('chapter', 1), ('first', 1), ('individual', 1), ('perspective', 1), ('impact', 1), ('work', 1), ('second', 1)]
[('bso', 2), ('algorithm', 2), ('brain', 1), ('storm', 1), ('optimization', 1), ('new', 1), ('kind', 1), ('swarm', 1), ('intelligence', 1), ('method', 1), ('based', 1), ('collective', 1), ('behavior', 1), ('human', 1), ('being', 1), ('brainstorming', 1), ('process', 1), ('introduction', 1), ('many', 1), ('study', 1)]
[('th', 2), ('book', 1), ('present', 1), ('paper', 1), ('various', 1), ('problem', 1), ('dependability', 1), ('computer', 1), ('system', 1), ('network', 1), ('discussed', 1), ('depcos', 1), ('relcomex', 1), ('conference', 1), ('brunów', 1), ('poland', 1), ('st', 1), ('july', 1), ('discussing', 1), ('new', 1), ('idea', 1), ('research', 1), ('result', 1)]
[('dataflow', 2), ('useful', 1), ('text', 1), ('reference', 1), ('describes', 1), ('implementation', 1), ('varied', 1), ('selection', 1), ('algorithm', 1), ('paradigm', 1), ('highlighting', 1), ('exciting', 1), ('potential', 1), ('computing', 1), ('application', 1), ('area', 1), ('image', 1), ('understanding', 1), ('biomedicine', 1)]
[('business', 2), ('bi', 2), ('volume', 1), ('set', 1), ('lnbip', 1), ('constitutes', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('information', 1), ('system', 1), ('held', 1), ('seville', 1), ('spain', 1), ('june', 1), ('theme', 1), ('data', 1), ('science', 1)]
[('communication', 2), ('general', 1), ('focus', 1), ('book', 1), ('multimodal', 1), ('capture', 1), ('temporal', 1), ('pattern', 1), ('behavior', 1), ('various', 1), ('dialogue', 1), ('setting', 1), ('overview', 1), ('current', 1), ('theoretical', 1), ('model', 1), ('verbal', 1), ('nonverbal', 1), ('cue', 1), ('present', 1)]
[('workshop', 2), ('book', 1), ('gather', 1), ('outcome', 1), ('th', 1), ('international', 1), ('conference', 1), ('methodology', 1), ('intelligent', 1), ('system', 1), ('technology', 1), ('enhanced', 1), ('learning', 1), ('related', 1), ('expands', 1), ('topic', 1), ('evidence', 1), ('based', 1), ('tel', 1), ('series', 1), ('order', 1)]
[('paper', 2), ('book', 1), ('contains', 1), ('extended', 1), ('revised', 1), ('version', 1), ('best', 1), ('presented', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('iee', 1), ('international', 1), ('conference', 1), ('large', 1), ('scale', 1), ('integration', 1), ('vlsi', 1), ('soc', 1), ('held', 1), ('verona', 1), ('italy', 1), ('october', 1), ('full', 1)]
[('volume', 1), ('book', 1), ('present', 1), ('unusually', 1), ('diverse', 1), ('selection', 1), ('research', 1), ('paper', 1), ('covering', 1), ('major', 1), ('topic', 1), ('field', 1), ('information', 1), ('communication', 1), ('technology', 1), ('related', 1), ('science', 1), ('provides', 1), ('wide', 1), ('angle', 1), ('snapshot', 1), ('current', 1), ('theme', 1)]
[('book', 1), ('author', 1), ('highlight', 1), ('recent', 1), ('finding', 1), ('hold', 1), ('potential', 1), ('improve', 1), ('software', 1), ('product', 1), ('development', 1), ('process', 1), ('addition', 1), ('help', 1), ('reader', 1), ('understand', 1), ('new', 1), ('concept', 1), ('technology', 1), ('see', 1), ('take', 1), ('migrate', 1), ('old', 1)]
[('paper', 3), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('conference', 1), ('creativity', 1), ('intellectual', 1), ('technology', 1), ('data', 1), ('science', 1), ('cit', 1), ('d', 1), ('held', 1), ('volgograd', 1), ('russia', 1), ('september', 1), ('full', 1), ('short', 1), ('keynote', 1)]
[('kmo', 2), ('book', 1), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('management', 1), ('organization', 1), ('held', 1), ('zamora', 1), ('spain', 1), ('july', 1), ('nbsp', 1), ('paper', 1), ('accepted', 1), ('selected', 1), ('submission', 1)]
[('volume', 2), ('nbsp', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('immersive', 1), ('learning', 1), ('network', 1), ('ilrn', 1), ('held', 1), ('london', 1), ('uk', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('egc', 3), ('conference', 2), ('book', 1), ('highlight', 1), ('novel', 1), ('research', 1), ('knowledge', 1), ('discovery', 1), ('management', 1), ('kdm', 1), ('gathering', 1), ('extended', 1), ('peer', 1), ('reviewed', 1), ('version', 1), ('outstanding', 1), ('paper', 1), ('presented', 1), ('annual', 1), ('cycle', 1), ('founded', 1)]
[('paper', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('extended', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('cloud', 1), ('computing', 1), ('service', 1), ('science', 1), ('closer', 1), ('held', 1), ('funchal', 1), ('portugal', 1), ('march', 1), ('presented', 1), ('volume', 1)]
[('paper', 2), ('th', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('workshop', 1), ('computer', 1), ('game', 1), ('cgw', 1), ('held', 1), ('conjunction', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ijcai', 1), ('stockholm', 1), ('sweden', 1), ('july', 1), ('full', 1)]
[('poster', 2), ('book', 1), ('constitutes', 1), ('extended', 1), ('abstract', 1), ('presented', 1), ('st', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('took', 1), ('place', 1), ('orlando', 1), ('florida', 1), ('july', 1), ('total', 1), ('paper', 1)]
[('micro', 2), ('hypervisor', 2), ('framework', 2), ('security', 2), ('application', 2), ('springerbrief', 1), ('discus', 1), ('uber', 1), ('extensible', 1), ('uberxmhf', 1), ('novel', 1), ('system', 1), ('architecture', 1), ('isolate', 1), ('sensitive', 1), ('untrustworthy', 1)]
[('paper', 3), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('third', 1), ('conference', 1), ('creativity', 1), ('intellectual', 1), ('technology', 1), ('data', 1), ('science', 1), ('cit', 1), ('d', 1), ('held', 1), ('volgograd', 1), ('russia', 1), ('september', 1), ('full', 1), ('short', 1), ('keynote', 1)]
[('refugee', 2), ('start', 1), ('syrian', 1), ('civil', 1), ('war', 1), ('increasing', 1), ('number', 1), ('civilian', 1), ('sought', 1), ('refuge', 1), ('neighboring', 1), ('country', 1), ('turkey', 1), ('received', 1), ('million', 1), ('largest', 1), ('population', 1), ('world', 1), ('lived', 1)]
[('short', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('workshop', 1), ('doctoral', 1), ('consortium', 1), ('rd', 1), ('european', 1), ('conference', 1), ('advance', 1), ('database', 1), ('information', 1), ('system', 1), ('adbis', 1), ('held', 1), ('bled', 1), ('slovenia', 1), ('september', 1)]
[('security', 3), ('textbook', 1), ('integrates', 1), ('advanced', 1), ('topic', 1), ('physical', 1), ('layer', 1), ('cryptography', 1), ('covert', 1), ('stealth', 1), ('communication', 1), ('quantum', 1), ('key', 1), ('distribution', 1), ('qkd', 1), ('cyber', 1), ('tackle', 1), ('complex', 1), ('issue', 1), ('introducing', 1), ('reader', 1), ('various', 1)]
[('rough', 2), ('set', 2), ('theory', 2), ('data', 2), ('book', 1), ('discus', 1), ('current', 1), ('topic', 1), ('nbsp', 1), ('pawlak', 1), ('first', 1), ('proposed', 1), ('offer', 1), ('basis', 1), ('imprecise', 1), ('uncertain', 1), ('reasoning', 1), ('many', 1), ('worker', 1), ('investigated', 1), ('foundation', 1)]
[('eurosymposium', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('sigsand', 1), ('plais', 1), ('held', 1), ('gdansk', 1), ('poland', 1), ('september', 1), ('objective', 1), ('system', 1), ('analysis', 1), ('design', 1), ('promote', 1), ('develop', 1), ('high', 1), ('quality', 1)]
[('step', 2), ('unique', 1), ('text', 1), ('provides', 1), ('engineering', 1), ('student', 1), ('practicing', 1), ('professional', 1), ('comprehensive', 1), ('set', 1), ('practical', 1), ('hand', 1), ('guideline', 1), ('dozen', 1), ('example', 1), ('performing', 1), ('state', 1), ('art', 1), ('reliable', 1), ('computational', 1), ('fluid', 1), ('dynamic', 1), ('cfd', 1)]
[('iconip', 2), ('volume', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('contribution', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('neural', 1), ('information', 1), ('processing', 1), ('held', 1), ('sydney', 1), ('australia', 1), ('december', 1), ('total', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('triz', 1), ('future', 1), ('conference', 1), ('automated', 1), ('invention', 1), ('smart', 1), ('industry', 1), ('held', 1), ('marrakesh', 1), ('morocco', 1), ('october', 1), ('sponsored', 1), ('ifip', 1), ('wg', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('quantitative', 1), ('ethnography', 1), ('icqe', 1), ('held', 1), ('madison', 1), ('wisconsin', 1), ('usa', 1), ('october', 1), ('consists', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1), ('paper', 1), ('selected', 1)]
[('volume', 2), ('nbsp', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('workshop', 1), ('engineering', 1), ('application', 1), ('wea', 1), ('held', 1), ('santa', 1), ('marta', 1), ('colombia', 1), ('october', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('workshop', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('birte', 1), ('listed', 1), ('held', 1), ('conjunction', 1), ('vldb', 1), ('large', 1), ('data', 1), ('base', 1), ('th', 1), ('business', 1)]
[('ict', 2), ('innovation', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('held', 1), ('ohrid', 1), ('macedonia', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('board', 3), ('member', 2), ('title', 1), ('provides', 1), ('clear', 1), ('readily', 1), ('applicable', 1), ('guidance', 1), ('corporate', 1), ('involvement', 1), ('director', 1), ('information', 1), ('technology', 1), ('governance', 1), ('specifically', 1), ('demonstrates', 1), ('way', 1), ('execute', 1), ('duty', 1)]
[('conference', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('fourth', 1), ('international', 1), ('machine', 1), ('learning', 1), ('intelligent', 1), ('communication', 1), ('mlicom', 1), ('held', 1), ('nanjing', 1), ('china', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1)]
[('fingerprint', 2), ('springerbrief', 1), ('present', 1), ('overview', 1), ('problem', 1), ('technology', 1), ('behind', 1), ('segmentation', 1), ('separation', 1), ('overlapped', 1), ('latent', 1), ('fundamental', 1), ('step', 1), ('context', 1), ('matching', 1), ('system', 1), ('address', 1), ('five', 1), ('main', 1), ('aspect', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('mobile', 1), ('computing', 1), ('application', 1), ('service', 1), ('mobicase', 1), ('held', 1), ('hangzhou', 1), ('china', 1), ('june', 1), ('full', 1), ('paper', 1), ('carefully', 1)]
[('paper', 3), ('book', 1), ('contains', 1), ('selection', 1), ('best', 1), ('th', 1), ('benelux', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('bnaic', 1), ('held', 1), ('hertogenbosch', 1), ('netherlands', 1), ('november', 1), ('nbsp', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1)]
[('book', 2), ('describes', 1), ('several', 1), ('approach', 1), ('adaptability', 1), ('applied', 1), ('optimization', 1), ('parallel', 1), ('application', 1), ('thread', 1), ('level', 1), ('parallelism', 1), ('exploitation', 1), ('dynamic', 1), ('voltage', 1), ('frequency', 1), ('scaling', 1), ('multicore', 1), ('system', 1), ('explains', 1)]
[('technology', 2), ('aging', 2), ('book', 1), ('focus', 1), ('various', 1), ('aspect', 1), ('research', 1), ('ageing', 1), ('including', 1), ('relation', 1), ('assistive', 1), ('dignity', 1), ('support', 1), ('greater', 1), ('understanding', 1), ('experience', 1), ('physically', 1), ('cognitive', 1), ('change', 1), ('mobility', 1)]
[('fuzzy', 2), ('relational', 2), ('geometric', 2), ('book', 1), ('summarizes', 1), ('year', 1), ('research', 1), ('field', 1), ('programming', 1), ('special', 1), ('emphasis', 1), ('model', 1), ('discus', 1), ('state', 1), ('art', 1), ('problem', 1), ('together', 1), ('key', 1), ('open', 1), ('issue', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('product', 1), ('lifecycle', 1), ('management', 1), ('plm', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('software', 2), ('fingerprinting', 2), ('binary', 2), ('code', 2), ('cybersecurity', 2), ('book', 1), ('address', 1), ('automated', 1), ('especially', 1), ('application', 1), ('reader', 1), ('gain', 1), ('thorough', 1), ('understanding', 1), ('analysis', 1), ('several', 1), ('technique', 1)]
[('book', 1), ('provides', 1), ('reader', 1), ('date', 1), ('knowledge', 1), ('blockchain', 1), ('mainstream', 1), ('area', 1), ('security', 1), ('trust', 1), ('privacy', 1), ('decentralized', 1), ('domain', 1), ('timely', 1), ('essential', 1), ('due', 1), ('fact', 1), ('distributed', 1)]
[('conference', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('eai', 1), ('international', 1), ('innovation', 1), ('interdisciplinary', 1), ('solution', 1), ('underserved', 1), ('area', 1), ('intersol', 1), ('th', 1), ('research', 1), ('computer', 1), ('science', 1)]
[('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('complemented', 1), ('th', 1), ('joint', 1), ('european', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('würzburg', 1), ('germany', 1), ('september', 1)]
[('paper', 2), ('workshop', 2), ('th', 2), ('presented', 1), ('book', 1), ('revised', 1), ('significantly', 1), ('extended', 1), ('version', 1), ('submitted', 1), ('three', 1), ('related', 1), ('international', 1), ('mining', 1), ('ubiquitous', 1), ('social', 1), ('environment', 1), ('muse', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('september', 1), ('conjunction', 1), ('european', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('principle', 1)]
[('conference', 2), ('luxembourg', 2), ('volume', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('practice', 1), ('enterprise', 1), ('modeling', 1), ('held', 1), ('november', 1), ('created', 1), ('international', 1), ('federation', 1), ('information', 1)]
[('medical', 3), ('dl', 2), ('image', 2), ('analysis', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('deep', 1), ('learning', 1), ('healthcare', 1), ('application', 1), ('including', 1), ('fundamental', 1), ('current', 1), ('advance', 1), ('state', 1), ('art', 1), ('method', 1)]
[('information', 1), ('infrastructure', 1), ('nbsp', 1), ('comprising', 1), ('computer', 1), ('embedded', 1), ('device', 1), ('network', 1), ('software', 1), ('system', 1), ('vital', 1), ('operation', 1), ('every', 1), ('sector', 1), ('chemical', 1), ('commercial', 1), ('facility', 1), ('communication', 1), ('critical', 1), ('manufacturing', 1), ('dam', 1), ('defense', 1), ('industrial', 1)]
[('business', 2), ('book', 1), ('present', 1), ('latest', 1), ('trend', 1), ('scientific', 1), ('method', 1), ('enabling', 1), ('technology', 1), ('advance', 1), ('consists', 1), ('selected', 1), ('high', 1), ('quality', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('engineering', 1), ('icebe', 1), ('held', 1), ('shanghai', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('symposium', 1), ('high', 1), ('performance', 1), ('computing', 1), ('system', 1), ('wscad', 1), ('held', 1), ('são', 1), ('paulo', 1), ('brazil', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('extended', 1), ('revised', 1), ('selected', 1), ('st', 1), ('international', 1), ('conference', 1), ('enterprise', 1), ('information', 1), ('system', 1), ('iceis', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('nbsp', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('eurasian', 1), ('bim', 1), ('forum', 1), ('ebf', 1), ('held', 1), ('istanbul', 1), ('turkey', 1), ('full', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1), ('cover', 1), ('topic', 1)]
[('interactive', 2), ('collaborative', 2), ('book', 1), ('gather', 1), ('paper', 1), ('presented', 1), ('nd', 1), ('international', 1), ('conference', 1), ('learning', 1), ('icl', 1), ('held', 1), ('bangkok', 1), ('thailand', 1), ('september', 1), ('covering', 1), ('various', 1), ('field', 1)]
[('democracy', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('held', 1), ('athens', 1), ('greece', 1), ('december', 1), ('revised', 1), ('full', 1), ('presented', 1), ('carefully', 1), ('selected', 1), ('submission', 1)]
[('nbsp', 2), ('th', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('extended', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('aspect', 1), ('social', 1), ('web', 1), ('waihcws', 1), ('held', 1), ('joinville', 1), ('brazil', 1), ('october', 1)]
[('information', 2), ('data', 2), ('processing', 2), ('building', 1), ('author', 1), ('previous', 1), ('work', 1), ('book', 1), ('address', 1), ('key', 1), ('process', 1), ('procedure', 1), ('used', 1), ('management', 1), ('modern', 1), ('method', 1), ('business', 1), ('draw', 1), ('artificial', 1), ('intelligence', 1), ('big', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('applied', 1), ('computing', 1), ('support', 1), ('industry', 1), ('innovation', 1), ('technology', 1), ('acrit', 1), ('held', 1), ('ramadi', 1), ('iraq', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('ibero', 1), ('american', 1), ('congress', 1), ('icsc', 1), ('city', 1), ('held', 1), ('soria', 1), ('spain', 1), ('october', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nooj', 2), ('linguistic', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('held', 1), ('hammamet', 1), ('tunisia', 1), ('june', 1), ('development', 1), ('environment', 1), ('allows', 1), ('linguist', 1), ('formalize', 1), ('several', 1), ('level', 1)]
[('space', 2), ('possible', 1), ('energise', 1), ('reuse', 1), ('urban', 1), ('abandoned', 1), ('low', 1), ('financial', 1), ('capital', 1), ('investment', 1), ('addressing', 1), ('question', 1), ('requires', 1), ('normative', 1), ('cultural', 1), ('change', 1), ('rule', 1), ('le', 1), ('focused', 1), ('material', 1), ('process', 1), ('producing', 1)]
[('dynamical', 2), ('book', 1), ('explores', 1), ('key', 1), ('idea', 1), ('property', 1), ('complex', 1), ('system', 1), ('determined', 1), ('effectively', 1), ('calculating', 1), ('specific', 1), ('structural', 1), ('feature', 1), ('using', 1), ('network', 1), ('science', 1), ('based', 1), ('analysis', 1), ('furthermore', 1), ('argues', 1), ('certain', 1), ('behaviour', 1)]
[('th', 2), ('simpda', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('symposium', 1), ('data', 1), ('driven', 1), ('process', 1), ('discovery', 1), ('analysis', 1), ('seville', 1), ('spain', 1), ('december', 1), ('bled', 1)]
[('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('conference', 1), ('communication', 1), ('networking', 1), ('chinacom', 1), ('held', 1), ('november', 1), ('december', 1), ('shanghai', 1), ('china', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('neural', 2), ('network', 2), ('book', 1), ('gather', 1), ('proceeding', 1), ('st', 1), ('engineering', 1), ('application', 1), ('conference', 1), ('supported', 1), ('international', 1), ('society', 1), ('inn', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('following', 1), ('unique', 1), ('course', 1)]
[('deep', 2), ('learner', 2), ('medical', 2), ('application', 2), ('book', 1), ('introduces', 1), ('reader', 1), ('current', 1), ('trend', 1), ('using', 1), ('descriptor', 1), ('review', 1), ('recent', 1), ('literature', 1), ('present', 1), ('variety', 1), ('image', 1), ('sound', 1), ('illustrate', 1), ('five', 1)]
[('conference', 3), ('book', 1), ('gather', 1), ('selected', 1), ('paper', 1), ('important', 1), ('held', 1), ('october', 1), ('warsaw', 1), ('poland', 1), ('thefifteenth', 1), ('national', 1), ('operational', 1), ('system', 1), ('research', 1), ('bos', 1), ('leading', 1), ('field', 1)]
[('student', 2), ('purpose', 1), ('book', 1), ('provide', 1), ('overview', 1), ('ai', 1), ('research', 1), ('ranging', 1), ('basic', 1), ('work', 1), ('interface', 1), ('application', 1), ('emphasis', 1), ('result', 1), ('current', 1), ('issue', 1), ('aimed', 1), ('audience', 1), ('master', 1), ('ph', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('extended', 1), ('revised', 1), ('selected', 1), ('th', 1), ('nbsp', 1), ('international', 1), ('conference', 1), ('cloud', 1), ('computing', 1), ('service', 1), ('science', 1), ('closer', 1), ('held', 1), ('heraklion', 1), ('greece', 1), ('presented', 1), ('volume', 1), ('carefully', 1)]
[('handbook', 2), ('book', 1), ('focus', 1), ('clarification', 1), ('actually', 1), ('systematic', 1), ('identification', 1), ('considered', 1), ('settled', 1), ('knowledge', 1), ('nbsp', 1), ('extracted', 1), ('historic', 1), ('repository', 1), ('inclusion', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('open', 1), ('source', 1), ('system', 1), ('os', 1), ('held', 1), ('innopolis', 1), ('russia', 1), ('nbsp', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('conference', 4), ('th', 2), ('eai', 2), ('international', 2), ('artsit', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('interactivity', 1), ('game', 1), ('creation', 1), ('design', 1), ('learning', 1)]
[('smart', 2), ('iot', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('city', 1), ('summit', 1), ('held', 1), ('braga', 1), ('portugal', 1), ('december', 1), ('volume', 1), ('combine', 1), ('selected', 1), ('paper', 1), ('four', 1), ('conference', 1), ('namely', 1), ('urban', 1), ('space', 1), ('urb', 1), ('governance', 1)]
[('book', 1), ('intends', 1), ('bring', 1), ('together', 1), ('researcher', 1), ('developer', 1), ('industry', 1), ('education', 1), ('field', 1), ('academic', 1), ('world', 1), ('report', 1), ('latest', 1), ('scientific', 1), ('research', 1), ('technical', 1), ('advance', 1), ('methodology', 1), ('th', 1), ('international', 1), ('conference', 1)]
[('nbsp', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('modern', 1), ('information', 1), ('technology', 1), ('education', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('november', 1), ('december', 1), ('full', 1), ('short', 1), ('carefully', 1)]
[('emotion', 3), ('design', 2), ('relation', 2), ('understanding', 1), ('becoming', 1), ('valuable', 1), ('term', 1), ('prefer', 1), ('behave', 1), ('approach', 1), ('conceptualising', 1), ('technology', 1)]
[('dimension', 2), ('book', 1), ('provides', 1), ('analytical', 1), ('numerical', 1), ('method', 1), ('estimation', 1), ('nbsp', 1), ('characteristic', 1), ('hausdorff', 1), ('fractal', 1), ('carathéodory', 1), ('attractor', 1), ('invariant', 1), ('set', 1), ('dynamical', 1), ('system', 1), ('cocycles', 1), ('generated', 1), ('smooth', 1)]
[('contributed', 1), ('volume', 1), ('collect', 1), ('paper', 1), ('presented', 1), ('special', 1), ('session', 1), ('conference', 1), ('computational', 1), ('mathematical', 1), ('method', 1), ('science', 1), ('engineering', 1), ('cmmse', 1), ('held', 1), ('cadiz', 1), ('spain', 1), ('june', 1), ('july', 1), ('covering', 1), ('application', 1), ('integral', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('extended', 1), ('abstract', 1), ('poster', 1), ('presented', 1), ('nd', 1), ('international', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('july', 1), ('planned', 1), ('take', 1), ('place', 1), ('copenhagen', 1), ('denmark', 1)]
[('construction', 2), ('code', 2), ('steane', 2), ('text', 1), ('present', 1), ('algebraic', 1), ('approach', 1), ('several', 1), ('important', 1), ('family', 1), ('quantum', 1), ('derived', 1), ('classical', 1), ('applying', 1), ('known', 1), ('calderbank', 1), ('shor', 1), ('cs', 1), ('hermitian', 1), ('enlargement', 1)]
[('nbsp', 2), ('conference', 2), ('volume', 1), ('present', 1), ('selected', 1), ('paper', 1), ('international', 1), ('urban', 1), ('intelligence', 1), ('application', 1), ('icuia', 1), ('took', 1), ('place', 1), ('wuhan', 1), ('china', 1), ('goal', 1), ('bring', 1), ('together', 1), ('researcher', 1)]
[('first', 2), ('international', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nbsp', 1), ('conference', 1), ('big', 1), ('data', 1), ('machine', 1), ('learning', 1), ('application', 1), ('bigdml', 1), ('held', 1), ('silchar', 1), ('india', 1), ('december', 1), ('full', 1), ('short', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('icdec', 1), ('held', 1), ('bucharest', 1), ('romania', 1), ('june', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('took', 1), ('place', 1), ('virtually', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('first', 1), ('explores', 1), ('cybersecurity', 1), ('landscape', 1), ('inherent', 1), ('susceptibility', 1), ('online', 1), ('communication', 1), ('system', 1), ('mail', 1), ('chat', 1), ('conversation', 1), ('social', 1), ('medium', 1), ('cybercrime', 1), ('common', 1), ('source', 1), ('resource', 1), ('digital', 1), ('crime', 1), ('cause', 1)]
[('proceeding', 2), ('software', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('th', 1), ('computational', 1), ('method', 1), ('system', 1), ('comesyso', 1), ('engineering', 1), ('computer', 1), ('science', 1), ('artificial', 1), ('intelligence', 1), ('crucial', 1), ('topic', 1), ('research', 1), ('within', 1)]
[('book', 2), ('field', 2), ('new', 1), ('contribution', 1), ('aiming', 1), ('give', 1), ('last', 1), ('research', 1), ('finding', 1), ('optimization', 1), ('computing', 1), ('work', 1), ('target', 1), ('previous', 1), ('published', 1), ('recent', 1), ('development', 1), ('metaheuristics', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('software', 1), ('technology', 1), ('icsoft', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('author', 1), ('considers', 1), ('problem', 1), ('sequential', 1), ('probability', 1), ('forecasting', 1), ('general', 1), ('setting', 1), ('observed', 1), ('data', 1), ('exhibit', 1), ('arbitrary', 1), ('form', 1), ('stochastic', 1), ('dependence', 1), ('result', 1), ('presented', 1), ('theoretical', 1), ('concern', 1)]
[('ifip', 2), ('volume', 1), ('set', 1), ('aict', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('wg', 1), ('conference', 1), ('advance', 1), ('production', 1), ('management', 1), ('system', 1), ('apms', 1), ('held', 1), ('novi', 1), ('sad', 1), ('serbia', 1), ('august', 1), ('september', 1), ('paper', 1)]
[('nbsp', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('congress', 1), ('telematics', 1), ('computing', 1), ('witcom', 1), ('puerto', 1), ('vallarta', 1), ('mexico', 1), ('november', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('conference', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('quality', 1), ('information', 1), ('communication', 1), ('technology', 1), ('quatic', 1), ('held', 1), ('faro', 1), ('portugal', 1), ('september', 1), ('nbsp', 1), ('full', 1), ('short', 1)]
[('future', 2), ('book', 1), ('provides', 1), ('state', 1), ('art', 1), ('intelligent', 1), ('method', 1), ('technique', 1), ('solving', 1), ('real', 1), ('world', 1), ('problem', 1), ('along', 1), ('vision', 1), ('research', 1), ('fifth', 1), ('technology', 1), ('conference', 1), ('organized', 1), ('virtually', 1), ('received', 1), ('total', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('software', 1), ('technology', 1), ('icist', 1), ('held', 1), ('kaunas', 1), ('lithuania', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('review', 1), ('recent', 1), ('theoretical', 1), ('practical', 1), ('advance', 1), ('suffix', 1), ('sorting', 1), ('introduces', 1), ('algorithmic', 1), ('solution', 1), ('problem', 1), ('wide', 1), ('interest', 1), ('construction', 1), ('fundamental', 1), ('data', 1), ('structure', 1), ('operate', 1), ('efficiently', 1), ('string', 1), ('namely', 1)]
[('th', 2), ('international', 2), ('symposium', 2), ('ambient', 2), ('intelligence', 2), ('aquila', 2), ('book', 1), ('includes', 1), ('outcome', 1), ('isami', 1), ('hosted', 1), ('university', 1), ('going', 1), ('held', 1), ('italy', 1)]
[('book', 2), ('smart', 2), ('proceeding', 1), ('present', 1), ('comprehensive', 1), ('view', 1), ('technology', 1), ('perspective', 1), ('application', 1), ('various', 1), ('area', 1), ('economic', 1), ('activity', 1), ('author', 1), ('combined', 1), ('result', 1), ('cutting', 1), ('edge', 1), ('research', 1), ('topic', 1)]
[('conference', 3), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('product', 1), ('lifecycle', 1), ('management', 1), ('plm', 1), ('rapperswil', 1), ('switzerland', 1), ('july', 1), ('virtually', 1), ('due', 1)]
[('based', 2), ('computing', 2), ('work', 1), ('provides', 1), ('convincing', 1), ('motivation', 1), ('introduction', 1), ('magnon', 1), ('challenge', 1), ('faced', 1), ('conventional', 1), ('semiconductor', 1), ('transistor', 1), ('industry', 1), ('contrasted', 1), ('many', 1), ('exciting', 1), ('avenue', 1), ('developing', 1), ('spin', 1)]
[('conference', 2), ('paper', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('system', 1), ('software', 1), ('service', 1), ('process', 1), ('improvement', 1), ('eurospi', 1), ('held', 1), ('düsseldorf', 1), ('germany', 1), ('september', 1), ('full', 1), ('short', 1)]
[('workshop', 2), ('arad', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('soft', 1), ('computing', 1), ('application', 1), ('sofa', 1), ('held', 1), ('september', 1), ('romania', 1), ('organized', 1), ('aurel', 1), ('vlaicu', 1), ('university', 1), ('conjunction', 1)]
[('image', 3), ('book', 2), ('deal', 1), ('fundamental', 1), ('issue', 1), ('semiotics', 1), ('first', 1), ('relationship', 1), ('observer', 1), ('look', 1), ('answer', 1), ('question', 1), ('set', 1), ('transpose', 1), ('theory', 1), ('enunciation', 1)]
[('book', 2), ('deep', 2), ('learning', 2), ('domain', 2), ('adaptation', 2), ('provides', 1), ('survey', 1), ('approach', 1), ('computer', 1), ('vision', 1), ('give', 1), ('reader', 1), ('overview', 1), ('state', 1), ('art', 1), ('research', 1), ('based', 1), ('discus', 1), ('various', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('information', 1), ('society', 1), ('wi', 1), ('turku', 1), ('finland', 1), ('august', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('online', 1), ('nbsp', 1)]
[('book', 1), ('composed', 1), ('paper', 1), ('written', 1), ('english', 1), ('accepted', 1), ('presentation', 1), ('discussion', 1), ('international', 1), ('conference', 1), ('information', 1), ('technology', 1), ('system', 1), ('icits', 1), ('held', 1), ('universidad', 1), ('estatal', 1), ('península', 1), ('de', 1), ('santa', 1), ('elena', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('ad', 1), ('hoc', 1), ('network', 1), ('adhocnets', 1), ('paris', 1), ('november', 1), ('virtually', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('full', 1), ('paper', 1), ('selected', 1)]
[('proceeding', 1), ('book', 1), ('collection', 1), ('high', 1), ('quality', 1), ('peer', 1), ('reviewed', 1), ('research', 1), ('paper', 1), ('presented', 1), ('international', 1), ('conference', 1), ('experimental', 1), ('numerical', 1), ('investigation', 1), ('new', 1), ('technology', 1), ('cnntech', 1), ('held', 1), ('zlatibor', 1), ('serbia', 1), ('th', 1), ('june', 1)]
[('technique', 5), ('active', 3), ('computer', 2), ('vision', 2), ('passive', 2), ('book', 1), ('describes', 1), ('illumination', 1), ('classify', 1), ('class', 1), ('observe', 1), ('scene', 1), ('statically', 1), ('analyse', 1)]
[('paper', 2), ('conference', 2), ('held', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('extended', 1), ('selected', 1), ('third', 1), ('iee', 1), ('colombian', 1), ('colcaci', 1), ('cali', 1), ('colombia', 1), ('august', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('online', 1), ('full', 1), ('presented', 1)]
[('workshop', 2), ('held', 2), ('international', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('three', 1), ('st', 1), ('conference', 1), ('database', 1), ('expert', 1), ('system', 1), ('application', 1), ('nbsp', 1), ('dexa', 1), ('september', 1), ('th', 1), ('biological', 1)]
[('nbsp', 2), ('gi', 2), ('latam', 2), ('conference', 2), ('held', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('september', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('online', 1), ('full', 1), ('short', 1), ('thoroughly', 1)]
[('proceeding', 2), ('conference', 2), ('held', 2), ('constitutes', 1), ('refereed', 1), ('first', 1), ('eai', 1), ('international', 1), ('forthcoming', 1), ('network', 1), ('sustainability', 1), ('iot', 1), ('era', 1), ('fones', 1), ('october', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('conference', 3), ('iot', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('industrial', 1), ('technology', 1), ('application', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('book', 1), ('explains', 1), ('development', 1), ('cryptographic', 1), ('obfuscation', 1), ('providing', 1), ('insight', 1), ('important', 1), ('idea', 1), ('technique', 1), ('useful', 1), ('reference', 1), ('researcher', 1), ('cryptography', 1), ('theoretical', 1), ('computer', 1), ('science', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ccf', 1), ('conference', 1), ('natural', 1), ('language', 1), ('processing', 1), ('chinese', 1), ('computing', 1), ('nlpcc', 1), ('held', 1), ('zhengzhou', 1), ('china', 1), ('october', 1), ('full', 1), ('paper', 1), ('poster', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('nbsp', 1), ('intelligence', 1), ('soft', 1), ('computing', 1), ('icaisc', 1), ('held', 1), ('zakopane', 1), ('poland', 1), ('october', 1), ('revised', 1), ('full', 1)]
[('history', 3), ('edition', 2), ('disney', 2), ('lover', 2), ('second', 1), ('story', 1), ('getting', 1), ('digital', 1), ('interest', 1), ('hollywood', 1), ('general', 1), ('first', 1), ('planned', 1), ('short', 1), ('company', 1), ('evolution', 1), ('analog', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('open', 1), ('semantic', 1), ('technology', 1), ('intelligent', 1), ('system', 1), ('ostis', 1), ('held', 1), ('nbsp', 1), ('minsk', 1), ('belarus', 1), ('february', 1), ('revised', 1), ('full', 1), ('short', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('triz', 1), ('future', 1), ('automated', 1), ('invention', 1), ('smart', 1), ('industry', 1), ('tfc', 1), ('cluj', 1), ('napoca', 1), ('romania', 1), ('october', 1), ('sponsored', 1), ('ifip', 1), ('wg', 1)]
[('online', 2), ('event', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('enterprise', 1), ('engineering', 1), ('working', 1), ('conference', 1), ('eewc', 1), ('planned', 1), ('take', 1), ('place', 1), ('bozen', 1), ('bolzano', 1), ('italy', 1), ('change', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('took', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('knowledge', 1), ('management', 1), ('acquisition', 1), ('intelligent', 1), ('system', 1), ('pkaw', 1), ('held', 1), ('yokohama', 1), ('japan', 1), ('january', 1), ('full', 1), ('short', 1), ('included', 1)]
[('nbsp', 4), ('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('extended', 1), ('first', 1), ('automatic', 1), ('assessment', 1), ('parkinsonian', 1), ('speech', 1), ('workshop', 1), ('aaps', 1), ('held', 1), ('cambridge', 1), ('massachusetts', 1), ('usa', 1), ('september', 1), ('full', 1), ('thoroughly', 1)]
[('volume', 2), ('workshop', 2), ('conference', 2), ('held', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('complemented', 1), ('th', 1), ('joint', 1), ('european', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('september', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('online', 1), ('nbsp', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnicst', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('wireless', 1), ('satellite', 1), ('service', 1), ('wisats', 1), ('held', 1), ('nanjing', 1), ('china', 1), ('september', 1), ('full', 1), ('paper', 1), ('workshop', 1)]
[('software', 2), ('nbsp', 2), ('defined', 2), ('network', 2), ('book', 1), ('devoted', 1), ('selected', 1), ('resource', 1), ('allocation', 1), ('problem', 1), ('moreover', 1), ('cover', 1), ('result', 1), ('concerning', 1), ('wide', 1), ('area', 1), ('sd', 1), ('wan', 1), ('current', 1), ('networking', 1), ('hot', 1), ('topic', 1)]
[('conference', 2), ('held', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('digital', 1), ('transformation', 1), ('global', 1), ('society', 1), ('dtgs', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('june', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('conference', 2), ('revised', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('intelligent', 1), ('technology', 1), ('application', 1), ('intap', 1), ('held', 1), ('grimstad', 1), ('norway', 1), ('september', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('security', 1), ('privacy', 1), ('new', 1), ('computing', 1), ('environment', 1), ('spnce', 1), ('august', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('full', 1)]
[('conference', 2), ('ciis', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('computational', 1), ('intelligence', 1), ('information', 1), ('system', 1), ('held', 1), ('brunei', 1), ('january', 1), ('provides', 1), ('platform', 1), ('researcher', 1), ('exchange', 1), ('latest', 1), ('idea', 1)]
[('challenge', 2), ('book', 1), ('shed', 1), ('light', 1), ('facing', 1), ('social', 1), ('medium', 1), ('combating', 1), ('malicious', 1), ('account', 1), ('aim', 1), ('introduce', 1), ('current', 1), ('practice', 1), ('address', 1), ('provides', 1), ('depth', 1), ('investigation', 1), ('regarding', 1), ('characteristic', 1), ('pathogenic', 1)]
[('malaviya', 2), ('proceeding', 1), ('book', 1), ('includes', 1), ('result', 1), ('international', 1), ('conference', 1), ('deep', 1), ('learning', 1), ('artificial', 1), ('intelligence', 1), ('robotics', 1), ('held', 1), ('national', 1), ('institute', 1), ('technology', 1), ('jawahar', 1), ('lal', 1), ('nehru', 1), ('marg', 1), ('nagar', 1), ('jaipur', 1), ('rajasthan', 1)]
[('book', 2), ('consists', 1), ('paper', 1), ('recent', 1), ('progress', 1), ('state', 1), ('art', 1), ('natural', 1), ('computation', 1), ('fuzzy', 1), ('system', 1), ('knowledge', 1), ('discovery', 1), ('useful', 1), ('researcher', 1), ('including', 1), ('professor', 1), ('graduate', 1), ('student', 1), ('staff', 1)]
[('knowledge', 3), ('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('discovery', 1), ('engineering', 1), ('management', 1), ('ic', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('september', 1), ('full', 1), ('presented', 1)]
[('conference', 3), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('cloud', 1), ('computing', 1), ('cloudcomp', 1), ('qufu', 1), ('china', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('full', 1), ('paper', 1)]
[('nbsp', 2), ('intelligent', 2), ('computing', 2), ('optimization', 2), ('third', 1), ('edition', 1), ('international', 1), ('conference', 1), ('premium', 1), ('fruit', 1), ('book', 1), ('pursue', 1), ('gather', 1), ('research', 1), ('leader', 1), ('expert', 1), ('scientist', 1), ('share', 1), ('knowledge', 1)]
[('characteristic', 2), ('benefit', 2), ('industrial', 2), ('book', 1), ('present', 1), ('organization', 1), ('reap', 1), ('internet', 1), ('thing', 1), ('iiot', 1), ('include', 1), ('enhanced', 1), ('competitiveness', 1), ('increased', 1), ('proactive', 1), ('decision', 1), ('making', 1), ('improved', 1)]
[('held', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('ibero', 1), ('american', 1), ('congress', 1), ('icsc', 1), ('city', 1), ('costa', 1), ('rica', 1), ('november', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('conference', 1), ('online', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('contains', 1), ('selection', 1), ('best', 1), ('paper', 1), ('nd', 1), ('benelux', 1), ('artificial', 1), ('intelligence', 1), ('bnaic', 1), ('benelearn', 1), ('leiden', 1), ('netherlands', 1), ('november', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('book', 1), ('brings', 1), ('together', 1), ('intelligence', 1), ('system', 1), ('internet', 1), ('thing', 1), ('special', 1), ('attention', 1), ('given', 1), ('opportunity', 1), ('challenge', 1), ('education', 1), ('business', 1), ('growth', 1), ('economic', 1), ('progression', 1), ('nation', 1), ('help', 1), ('society', 1), ('economist', 1)]
[('result', 2), ('book', 1), ('present', 1), ('different', 1), ('experimental', 1), ('evidence', 1), ('good', 1), ('obtained', 1), ('compared', 1), ('respect', 1), ('conventional', 1), ('approach', 1), ('literature', 1), ('reference', 1), ('based', 1), ('fuzzy', 1), ('logic', 1), ('nowadays', 1), ('evolution', 1), ('intelligence', 1), ('system', 1), ('decision', 1)]
[('proceeding', 2), ('conference', 2), ('volume', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('european', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('september', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('modern', 1), ('information', 1), ('technology', 1), ('education', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('november', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('model', 2), ('book', 1), ('proposes', 1), ('technique', 1), ('emphasis', 1), ('financial', 1), ('sector', 1), ('make', 1), ('recommendation', 1), ('system', 1), ('accurate', 1), ('explainable', 1), ('vast', 1), ('majority', 1), ('ai', 1), ('work', 1), ('black', 1), ('box', 1), ('many', 1), ('application', 1), ('medical', 1)]
[('software', 3), ('modern', 2), ('car', 2), ('book', 1), ('introduces', 1), ('concept', 1), ('architecture', 1), ('cornerstone', 1), ('following', 1), ('historical', 1), ('overview', 1), ('evolution', 1), ('discussion', 1), ('main', 1), ('challenge', 1), ('driving', 1)]
[('conference', 3), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('edge', 1), ('computing', 1), ('iot', 1), ('iceci', 1), ('november', 1), ('changsha', 1), ('china', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('rapidly', 1)]
[('conference', 3), ('smart', 2), ('city', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('eai', 1), ('international', 1), ('sustainable', 1), ('energy', 1), ('sesc', 1), ('held', 1), ('portugal', 1), ('december', 1), ('framed', 1), ('within', 1), ('th', 1), ('annual', 1)]
[('soft', 2), ('computing', 2), ('pattern', 2), ('recognition', 2), ('book', 1), ('highlight', 1), ('recent', 1), ('research', 1), ('various', 1), ('practical', 1), ('application', 1), ('present', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('socpar', 1)]
[('international', 2), ('conference', 2), ('information', 2), ('knowledge', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('system', 1), ('iciks', 1), ('held', 1), ('online', 1), ('june', 1)]
[('fedcsis', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('extended', 1), ('paper', 1), ('presented', 1), ('track', 1), ('conference', 1), ('computer', 1), ('science', 1), ('intelligence', 1), ('system', 1), ('took', 1), ('place', 1), ('sofia', 1), ('bulgaria', 1), ('nbsp', 1), ('september', 1)]
[('knowledge', 2), ('aware', 2), ('book', 2), ('provenance', 2), ('rdf', 1), ('based', 1), ('graph', 1), ('require', 1), ('additional', 1), ('formalism', 1), ('fully', 1), ('context', 1), ('presented', 1), ('provides', 1), ('collection', 1), ('technique', 1), ('state', 1), ('art', 1), ('metadata', 1), ('enhanced', 1)]
[('smartphone', 2), ('data', 2), ('application', 2), ('book', 1), ('deepens', 1), ('understanding', 1), ('obtained', 1), ('via', 1), ('mobile', 1), ('sensing', 1), ('applies', 1), ('psychological', 1), ('insight', 1), ('social', 1), ('networking', 1), ('author', 1), ('first', 1), ('introduces', 1), ('tydr', 1), ('researching', 1)]
[('paper', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('technology', 1), ('mathematical', 1), ('modelling', 1), ('itmm', 1), ('named', 1), ('terpugov', 1), ('held', 1), ('tomsk', 1), ('russia', 1), ('december', 1), ('full', 1)]
[('agent', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('practical', 1), ('application', 1), ('multi', 1), ('system', 1), ('paams', 1), ('held', 1), ('salamanca', 1), ('spain', 1), ('october', 1), ('regular', 1), ('short', 1), ('paper', 1), ('presented', 1), ('volume', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('cognitive', 1), ('radio', 1), ('oriented', 1), ('wireless', 1), ('network', 1), ('crowncom', 1), ('rome', 1), ('italy', 1), ('november', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1)]
[('nbsp', 3), ('conference', 2), ('held', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('applied', 1), ('technology', 1), ('icat', 1), ('quito', 1), ('ecuador', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('online', 1)]
[('conference', 2), ('volume', 1), ('book', 1), ('constitutes', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('advance', 1), ('computing', 1), ('data', 1), ('science', 1), ('icacds', 1), ('held', 1), ('nashik', 1), ('india', 1), ('april', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('feature', 2), ('lively', 1), ('fascinating', 1), ('text', 1), ('trace', 1), ('key', 1), ('development', 1), ('computation', 1), ('present', 1), ('day', 1), ('easy', 1), ('follow', 1), ('concise', 1), ('manner', 1), ('topic', 1), ('ideal', 1), ('self', 1), ('study', 1), ('offering', 1), ('many', 1), ('pedagogical', 1)]
[('book', 1), ('present', 1), ('proceeding', 1), ('st', 1), ('congress', 1), ('international', 1), ('ergonomics', 1), ('association', 1), ('iea', 1), ('held', 1), ('online', 1), ('june', 1), ('highlighting', 1), ('latest', 1), ('theory', 1), ('model', 1), ('cutting', 1), ('edge', 1), ('technology', 1), ('application', 1)]
[('fuzzy', 2), ('logic', 2), ('interest', 2), ('inception', 1), ('attracted', 1), ('incredible', 1), ('amount', 1), ('continues', 1), ('grow', 1), ('exponential', 1), ('rate', 1), ('scientist', 1), ('researcher', 1), ('educator', 1), ('practitioner', 1), ('continue', 1), ('expand', 1)]
[('book', 1), ('result', 1), ('year', 1), ('research', 1), ('following', 1), ('realization', 1), ('mismatch', 1), ('engineering', 1), ('skill', 1), ('produced', 1), ('university', 1), ('industry', 1), ('required', 1), ('based', 1), ('situation', 1), ('sub', 1), ('saharan', 1), ('africa', 1), ('equally', 1), ('applicable', 1), ('region', 1)]
[('book', 1), ('comprises', 1), ('high', 1), ('quality', 1), ('refereed', 1), ('research', 1), ('paper', 1), ('presented', 1), ('second', 1), ('international', 1), ('symposium', 1), ('computer', 1), ('science', 1), ('digital', 1), ('economy', 1), ('intelligent', 1), ('system', 1), ('csdeis', 1), ('held', 1), ('moscow', 1), ('russia', 1), ('december', 1), ('organized', 1), ('jointly', 1)]
[('book', 1), ('present', 1), ('innovative', 1), ('idea', 1), ('cutting', 1), ('edge', 1), ('finding', 1), ('novel', 1), ('technique', 1), ('method', 1), ('application', 1), ('broad', 1), ('range', 1), ('cybersecurity', 1), ('cyberthreat', 1), ('intelligence', 1), ('area', 1), ('society', 1), ('becomes', 1), ('smarter', 1), ('corresponding', 1), ('need', 1), ('secure', 1)]
[('data', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('management', 1), ('technology', 1), ('application', 1), ('supposed', 1), ('take', 1), ('place', 1), ('paris', 1), ('france', 1), ('july', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('science', 1), ('engineering', 1), ('management', 1), ('ksem', 1), ('held', 1), ('tokyo', 1), ('japan', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('diagnosis', 2), ('book', 1), ('describes', 1), ('utilization', 1), ('different', 1), ('soft', 1), ('computing', 1), ('technique', 1), ('optimization', 1), ('providing', 1), ('accurate', 1), ('efficient', 1), ('medical', 1), ('proposed', 1), ('method', 1), ('provides', 1), ('precise', 1), ('timely', 1), ('risk', 1), ('person', 1)]
[('cyber', 3), ('security', 3), ('stream', 2), ('book', 1), ('present', 1), ('finding', 1), ('paper', 1), ('accepted', 1), ('education', 1), ('technology', 1), ('national', 1), ('summit', 1), ('research', 1), ('track', 1), ('reporting', 1), ('latest', 1), ('advance', 1), ('topic', 1), ('ranging', 1), ('software', 1)]
[('nbsp', 3), ('conference', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('revised', 1), ('paper', 1), ('first', 1), ('international', 1), ('cybersecurity', 1), ('emerging', 1), ('digital', 1), ('era', 1), ('iccede', 1), ('held', 1), ('greater', 1), ('noida', 1), ('india', 1), ('october', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('book', 1), ('present', 1), ('recent', 1), ('research', 1), ('intelligent', 1), ('fuzzy', 1), ('technique', 1), ('emerging', 1), ('condition', 1), ('pandemic', 1), ('war', 1), ('natural', 1), ('disaster', 1), ('various', 1), ('high', 1), ('technology', 1), ('force', 1), ('significant', 1), ('change', 1), ('business', 1), ('social', 1), ('life', 1), ('adoption', 1)]
[('hardware', 2), ('book', 1), ('focus', 1), ('real', 1), ('time', 1), ('task', 1), ('schedule', 1), ('reconfigurable', 1), ('based', 1), ('embedded', 1), ('platform', 1), ('affected', 1), ('due', 1), ('vulnerability', 1), ('proposes', 1), ('self', 1), ('aware', 1), ('security', 1), ('strategy', 1), ('counteract', 1), ('various', 1), ('threat', 1), ('emergence', 1)]
[('decision', 2), ('book', 1), ('recapitulates', 1), ('major', 1), ('development', 1), ('support', 1), ('system', 1), ('ds', 1), ('last', 1), ('year', 1), ('order', 1), ('evaluate', 1), ('research', 1), ('area', 1), ('making', 1), ('direction', 1), ('field', 1), ('proceed', 1), ('attempt', 1), ('find', 1), ('consensus', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('perspective', 1), ('business', 1), ('informatics', 1), ('research', 1), ('bir', 1), ('held', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('fastensor', 3), ('data', 3), ('user', 2), ('springerbrief', 1), ('introduces', 1), ('powerful', 1), ('parallel', 1), ('programming', 1), ('model', 1), ('developed', 1), ('big', 1), ('application', 1), ('book', 1), ('provides', 1), ('guide', 1), ('installing', 1), ('using', 1), ('enables', 1), ('easily', 1), ('express', 1), ('many', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('computational', 1), ('intelligence', 1), ('communication', 1), ('business', 1), ('analytics', 1), ('cicba', 1), ('held', 1), ('santiniketan', 1), ('india', 1), ('january', 1), ('full', 1), ('short', 1)]
[('web', 3), ('information', 2), ('book', 1), ('provides', 1), ('practical', 1), ('archive', 1), ('offer', 1), ('inspiring', 1), ('example', 1), ('archivist', 1), ('raise', 1), ('new', 1), ('challenge', 1), ('share', 1), ('recent', 1), ('research', 1), ('result', 1), ('access', 1), ('method', 1), ('explore', 1), ('past', 1), ('preserved', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('symposium', 1), ('human', 1), ('aspect', 1), ('information', 1), ('security', 1), ('assurance', 1), ('haisa', 1), ('held', 1), ('virtually', 1), ('july', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('system', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computer', 1), ('mathematics', 1), ('cicm', 1), ('held', 1), ('timisoara', 1), ('romania', 1), ('july', 1), ('full', 1), ('paper', 1), ('description', 1), ('entry', 1), ('abstract', 1)]
[('nbsp', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('maple', 1), ('conference', 1), ('mc', 1), ('held', 1), ('waterloo', 1), ('ontario', 1), ('canada', 1), ('november', 1), ('revised', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('paper', 2), ('presented', 2), ('nbsp', 2), ('volume', 1), ('constitutes', 1), ('selected', 1), ('first', 1), ('international', 1), ('conference', 1), ('frontier', 1), ('software', 1), ('engineering', 1), ('icfse', 1), ('hekd', 1), ('innopolis', 1), ('russia', 1), ('june', 1), ('full', 1), ('thoroughly', 1), ('reviewed', 1)]
[('computer', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('vision', 1), ('imaging', 1), ('graphic', 1), ('theory', 1), ('application', 1), ('visigrapp', 1), ('held', 1), ('valletta', 1), ('malta', 1), ('february', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('artificial', 1), ('intelligence', 1), ('soft', 1), ('computing', 1), ('icaisc', 1), ('held', 1), ('zakopane', 1), ('poland', 1), ('june', 1), ('due', 1), ('covid', 1)]
[('traditional', 2), ('complex', 1), ('problem', 1), ('system', 1), ('prevail', 1), ('real', 1), ('world', 1), ('often', 1), ('tackled', 1), ('solved', 1), ('either', 1), ('method', 1), ('offered', 1), ('mathematics', 1), ('even', 1), ('computer', 1), ('science', 1), ('c', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1)]
[('multimedia', 2), ('accessible', 2), ('human', 2), ('book', 1), ('computer', 1), ('interface', 1), ('first', 1), ('resource', 1), ('provide', 1), ('depth', 1), ('coverage', 1), ('topical', 1), ('area', 1), ('computing', 1), ('image', 1), ('video', 1), ('audio', 1), ('speech', 1), ('haptics', 1), ('vr', 1), ('ar', 1), ('etc', 1), ('inclusive', 1)]
[('volume', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('conference', 1), ('towards', 1), ('autonomous', 1), ('robotic', 1), ('system', 1), ('taro', 1), ('held', 1), ('lincoln', 1), ('uk', 1), ('september', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('ifip', 2), ('five', 1), ('volume', 1), ('set', 1), ('aict', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('wg', 1), ('conference', 1), ('advance', 1), ('production', 1), ('management', 1), ('system', 1), ('apms', 1), ('held', 1), ('nantes', 1), ('france', 1), ('september', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ccf', 1), ('conference', 1), ('natural', 1), ('language', 1), ('processing', 1), ('chinese', 1), ('computing', 1), ('nlpcc', 1), ('held', 1), ('qingdao', 1), ('china', 1), ('october', 1), ('full', 1), ('paper', 1), ('poster', 1)]
[('nbsp', 5), ('volume', 1), ('constitutes', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('first', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('network', 1), ('technology', 1), ('intelligent', 1), ('computing', 1), ('antic', 1), ('hed', 1), ('varanasi', 1), ('india', 1), ('december', 1), ('due', 1)]
[('book', 2), ('knowledge', 2), ('security', 2), ('provides', 1), ('basic', 1), ('concept', 1), ('deep', 1), ('various', 1), ('mechanism', 1), ('implemented', 1), ('iot', 1), ('blockchain', 1), ('technology', 1), ('aid', 1), ('reader', 1), ('gaining', 1), ('insight', 1), ('providing', 1), ('solution', 1)]
[('ccis', 2), ('volume', 1), ('set', 1), ('contains', 1), ('late', 1), ('breaking', 1), ('poster', 1), ('presented', 1), ('rd', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('virtually', 1), ('july', 1), ('nbsp', 1), ('total', 1), ('paper', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('creativity', 1), ('intellectual', 1), ('technology', 1), ('data', 1), ('science', 1), ('cit', 1), ('d', 1), ('held', 1), ('volgograd', 1), ('russia', 1), ('september', 1), ('full', 1), ('short', 1), ('keynote', 1), ('presented', 1)]
[('book', 2), ('deep', 2), ('learning', 2), ('provides', 1), ('reader', 1), ('comprehensive', 1), ('recent', 1), ('exposition', 1), ('multidisciplinary', 1), ('application', 1), ('concentration', 1), ('advance', 1), ('architecture', 1), ('discus', 1), ('various', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1)]
[('paper', 3), ('nbsp', 2), ('society', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('first', 1), ('international', 1), ('conference', 1), ('held', 1), ('virtually', 1), ('june', 1), ('full', 1), ('short', 1), ('presented', 1), ('volume', 1), ('thoroughly', 1), ('reviewed', 1)]
[('conference', 2), ('nooj', 2), ('held', 2), ('nbsp', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('revised', 1), ('paper', 1), ('th', 1), ('international', 1), ('besançon', 1), ('france', 1), ('june', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('online', 1), ('linguistic', 1), ('development', 1), ('environment', 1)]
[('nbsp', 4), ('book', 1), ('constitutes', 1), ('selected', 1), ('revised', 1), ('paper', 1), ('second', 1), ('international', 1), ('conference', 1), ('research', 1), ('education', 1), ('urban', 1), ('history', 1), ('age', 1), ('digital', 1), ('library', 1), ('uhdl', 1), ('held', 1), ('dresden', 1), ('germany', 1), ('october', 1)]
[('book', 1), ('broadly', 1), ('cover', 1), ('scope', 1), ('latest', 1), ('advance', 1), ('development', 1), ('artificial', 1), ('intelligence', 1), ('system', 1), ('application', 1), ('various', 1), ('field', 1), ('medicine', 1), ('technology', 1), ('education', 1), ('proceeding', 1), ('comprise', 1), ('refereed', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('advance', 1), ('deep', 1), ('learning', 1), ('artificial', 1), ('intelligence', 1), ('robotics', 1), ('proceeding', 1), ('icdlair', 1), ('intended', 1), ('used', 1), ('reference', 1), ('student', 1), ('researcher', 1), ('collect', 1), ('scientific', 1), ('technical', 1), ('contribution', 1), ('respect', 1), ('model', 1)]
[('book', 2), ('collect', 1), ('selected', 1), ('contribution', 1), ('international', 1), ('conference', 1), ('optimization', 1), ('decision', 1), ('science', 1), ('od', 1), ('held', 1), ('online', 1), ('november', 1), ('organized', 1), ('airo', 1), ('italian', 1), ('operation', 1), ('research', 1), ('society', 1), ('nbsp', 1)]
[('book', 1), ('constitutes', 1), ('selected', 1), ('revised', 1), ('extended', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('high', 1), ('performance', 1), ('computing', 1), ('system', 1), ('technology', 1), ('scientific', 1), ('research', 1), ('automation', 1), ('control', 1), ('production', 1), ('hpcst', 1), ('barnaul', 1), ('russia', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('lean', 1), ('agile', 1), ('software', 1), ('development', 1), ('lasd', 1), ('held', 1), ('online', 1), ('january', 1), ('nbsp', 1), ('received', 1), ('total', 1), ('submission', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('software', 1), ('business', 1), ('icsob', 1), ('held', 1), ('december', 1), ('originally', 1), ('planned', 1), ('take', 1), ('place', 1), ('drammen', 1), ('norway', 1), ('changed', 1)]
[('task', 2), ('structure', 2), ('book', 1), ('focus', 1), ('numerous', 1), ('example', 1), ('represented', 1), ('cause', 1), ('effect', 1), ('dynamic', 1), ('object', 1), ('devised', 1), ('algebraic', 1), ('graphic', 1), ('description', 1), ('realistic', 1), ('constitute', 1), ('formal', 1), ('system', 1), ('providing', 1), ('mean', 1)]
[('nbsp', 4), ('sacair', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('southern', 1), ('african', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('research', 1), ('held', 1), ('durban', 1), ('south', 1), ('africa', 1), ('december', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('paper', 3), ('presented', 2), ('nbsp', 2), ('volume', 1), ('constitutes', 1), ('selected', 1), ('third', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('speech', 1), ('technology', 1), ('aist', 1), ('held', 1), ('delhi', 1), ('india', 1), ('november', 1), ('full', 1), ('short', 1)]
[('latex', 2), ('book', 1), ('contains', 1), ('comprehensive', 1), ('treatment', 1), ('advanced', 1), ('feature', 1), ('focus', 1), ('development', 1), ('high', 1), ('quality', 1), ('document', 1), ('presentation', 1), ('revealing', 1), ('powerful', 1), ('insight', 1), ('language', 1), ('established', 1), ('advantage', 1)]
[('ifip', 2), ('conference', 2), ('volume', 1), ('set', 1), ('aict', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('wg', 1), ('international', 1), ('product', 1), ('lifecycle', 1), ('management', 1), ('plm', 1), ('held', 1), ('curitiba', 1), ('brazil', 1), ('july', 1)]
[('conference', 2), ('place', 2), ('book', 1), ('constitutes', 1), ('selected', 1), ('paper', 1), ('th', 1), ('european', 1), ('mediterranean', 1), ('middle', 1), ('eastern', 1), ('emcis', 1), ('took', 1), ('december', 1), ('initially', 1), ('planned', 1), ('take', 1), ('dubai', 1), ('uae', 1), ('change', 1)]
[('book', 1), ('furthers', 1), ('historical', 1), ('technical', 1), ('debate', 1), ('looking', 1), ('reasoning', 1), ('action', 1), ('language', 1), ('devoted', 1), ('explaining', 1), ('foretelling', 1), ('based', 1), ('author', 1), ('centennial', 1), ('combined', 1), ('experience', 1), ('fuzzy', 1), ('logic', 1), ('simple', 1), ('logical', 1), ('model', 1)]
[('conference', 2), ('volume', 1), ('constitutes', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('nbsp', 1), ('th', 1), ('international', 1), ('metaheuristics', 1), ('nature', 1), ('inspired', 1), ('computing', 1), ('meta', 1), ('held', 1), ('marrakech', 1), ('morocco', 1), ('october', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('book', 1), ('present', 1), ('state', 1), ('art', 1), ('supercomputer', 1), ('simulation', 1), ('includes', 1), ('latest', 1), ('finding', 1), ('leading', 1), ('researcher', 1), ('using', 1), ('system', 1), ('high', 1), ('performance', 1), ('computing', 1), ('center', 1), ('stuttgart', 1), ('hlrs', 1), ('report', 1), ('cover', 1), ('field', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('collaborative', 1), ('computing', 1), ('networking', 1), ('application', 1), ('worksharing', 1), ('collaboratecom', 1), ('held', 1), ('october', 1), ('due', 1), ('covid', 1), ('pandemic', 1)]
[('social', 2), ('recent', 1), ('year', 1), ('online', 1), ('networking', 1), ('revolutionized', 1), ('interpersonal', 1), ('communication', 1), ('newer', 1), ('research', 1), ('language', 1), ('analysis', 1), ('medium', 1), ('increasingly', 1), ('focusing', 1), ('latter', 1), ('impact', 1), ('daily', 1), ('life', 1), ('personal', 1)]
[('excel', 2), ('reader', 2), ('compact', 1), ('text', 1), ('powerful', 1), ('introduction', 1), ('vba', 1), ('computing', 1), ('environment', 1), ('nbsp', 1), ('book', 1), ('present', 1), ('useful', 1), ('feature', 1), ('first', 1), ('introducing', 1), ('mathematical', 1), ('puzzle', 1), ('grab', 1), ('attention', 1)]
[('book', 2), ('based', 1), ('best', 1), ('paper', 1), ('accepted', 1), ('presentation', 1), ('international', 1), ('conference', 1), ('mathematics', 1), ('application', 1), ('new', 1), ('computer', 1), ('system', 1), ('mancs', 1), ('russia', 1), ('includes', 1), ('research', 1), ('material', 1), ('modern', 1), ('mathematical', 1), ('problem', 1)]
[('global', 3), ('risk', 3), ('area', 2), ('book', 1), ('contributes', 1), ('ongoing', 1), ('forthcoming', 1), ('particularly', 1), ('necessary', 1), ('implementation', 1), ('important', 1), ('interdisciplinary', 1), ('research', 1), ('activity', 1), ('defined', 1), ('study', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('conference', 1), ('research', 1), ('computational', 1), ('molecular', 1), ('biology', 1), ('recomb', 1), ('held', 1), ('san', 1), ('diego', 1), ('ca', 1), ('usa', 1), ('regular', 1), ('short', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('springerbrief', 1), ('provides', 1), ('first', 1), ('systematic', 1), ('review', 1), ('existing', 1), ('work', 1), ('cohesive', 1), ('subgraph', 1), ('search', 1), ('cs', 1), ('large', 1), ('heterogeneous', 1), ('information', 1), ('network', 1), ('hin', 1), ('cover', 1), ('research', 1), ('breakthrough', 1), ('area', 1), ('including', 1), ('model', 1), ('algorithm', 1)]
[('conference', 3), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('edge', 1), ('computing', 1), ('iot', 1), ('iceci', 1), ('december', 1), ('shenzhen', 1), ('china', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1)]
[('book', 2), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('business', 1), ('intelligence', 1), ('cbi', 1), ('took', 1), ('place', 1), ('khouribga', 1), ('morocco', 1), ('full', 1), ('paper', 1), ('included', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('research', 1), ('challenge', 1), ('information', 1), ('science', 1), ('rcis', 1), ('took', 1), ('place', 1), ('barcelona', 1), ('spain', 1), ('focused', 1), ('special', 1), ('theme', 1), ('ethic', 1)]
[('problem', 2), ('solution', 2), ('nbsp', 2), ('book', 1), ('explains', 1), ('classic', 1), ('routing', 1), ('transportation', 1), ('offering', 1), ('insight', 1), ('based', 1), ('successful', 1), ('real', 1), ('world', 1), ('chapter', 1), ('part', 1), ('introduce', 1), ('explain', 1), ('traveling', 1), ('salesperson', 1), ('tsp', 1), ('vehicle', 1)]
[('memory', 2), ('book', 1), ('provides', 1), ('basic', 1), ('knowledge', 1), ('main', 1), ('management', 1), ('relational', 1), ('database', 1), ('needed', 1), ('support', 1), ('large', 1), ('scale', 1), ('application', 1), ('processed', 1), ('completely', 1), ('business', 1), ('operation', 1), ('real', 1), ('time', 1), ('predictability', 1), ('high', 1), ('speed', 1)]
[('conference', 2), ('business', 2), ('book', 1), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('long', 1), ('running', 1), ('event', 1), ('held', 1), ('along', 1), ('caise', 1), ('relating', 1), ('area', 1), ('enterprise', 1), ('process', 1), ('information', 1), ('system', 1), ('modeling', 1), ('positiveemoji', 1), ('rd', 1), ('international', 1)]
[('book', 1), ('geared', 1), ('towards', 1), ('student', 1), ('professional', 1), ('examines', 1), ('synthesis', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('psychology', 1), ('detecting', 1), ('mi', 1), ('disinformation', 1), ('digital', 1), ('medium', 1), ('content', 1), ('suggests', 1), ('practical', 1), ('mean', 1), ('intervene', 1), ('curtail', 1)]
[('multi', 2), ('party', 2), ('protocol', 2), ('buying', 2), ('book', 1), ('present', 1), ('state', 1), ('art', 1), ('fair', 1), ('exchange', 1), ('provides', 1), ('insight', 1), ('detail', 1), ('regarding', 1), ('application', 1), ('physical', 1), ('product', 1), ('author', 1), ('tackle', 1), ('fairness', 1), ('problem', 1), ('commerce', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('eai', 1), ('international', 1), ('industrial', 1), ('network', 1), ('intelligent', 1), ('system', 1), ('iniscom', 1), ('april', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1), ('full', 1), ('paper', 1)]
[('conference', 3), ('proceeding', 2), ('held', 2), ('constitutes', 1), ('refereed', 1), ('post', 1), ('th', 1), ('international', 1), ('simulation', 1), ('tool', 1), ('technique', 1), ('simutools', 1), ('november', 1), ('due', 1), ('covid', 1), ('pandemic', 1), ('virtually', 1)]
[('privacy', 2), ('nbsp', 2), ('shortly', 1), ('first', 1), ('introduced', 1), ('differential', 1), ('became', 1), ('flagship', 1), ('data', 1), ('definition', 1), ('numerous', 1), ('variant', 1), ('extension', 1), ('proposed', 1), ('adapt', 1), ('different', 1), ('scenario', 1), ('attacker', 1), ('model', 1), ('work', 1)]
[('fca', 1), ('important', 1), ('formalism', 1), ('associated', 1), ('variety', 1), ('research', 1), ('area', 1), ('lattice', 1), ('theory', 1), ('knowledge', 1), ('representation', 1), ('data', 1), ('mining', 1), ('machine', 1), ('learning', 1), ('semantic', 1), ('web', 1), ('nbsp', 1), ('successfully', 1), ('exploited', 1), ('increasing', 1), ('number', 1)]
[('springer', 1), ('brief', 1), ('present', 1), ('selection', 1), ('tool', 1), ('technique', 1), ('either', 1), ('enable', 1), ('improve', 1), ('use', 1), ('devops', 1), ('airborne', 1), ('software', 1), ('engineering', 1), ('evaluated', 1), ('unique', 1), ('challenge', 1), ('aviation', 1), ('industry', 1), ('safety', 1)]
[('remarkable', 1), ('progress', 1), ('computer', 1), ('vision', 1), ('last', 1), ('year', 1), ('large', 1), ('attributed', 1), ('deep', 1), ('learning', 1), ('fueled', 1), ('availability', 1), ('huge', 1), ('set', 1), ('labeled', 1), ('data', 1), ('paired', 1), ('explosive', 1), ('growth', 1), ('gpu', 1), ('paradigm', 1), ('subscribing', 1)]
[('book', 1), ('provides', 1), ('new', 1), ('model', 1), ('explore', 1), ('discoverability', 1), ('enhance', 1), ('meaning', 1), ('information', 1), ('author', 1), ('coined', 1), ('term', 1), ('epidata', 1), ('includes', 1), ('item', 1), ('circumstance', 1), ('impact', 1), ('expression', 1), ('data', 1), ('document', 1), ('part', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('associated', 1), ('th', 1), ('conference', 1), ('advanced', 1), ('information', 1), ('system', 1), ('engineering', 1), ('caise', 1), ('held', 1), ('leuven', 1), ('belgium', 1), ('june', 1)]
[('decision', 3), ('group', 2), ('negotiation', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('gdn', 1), ('held', 1), ('virtually', 1), ('june', 1), ('field', 1), ('focus', 1)]
[('human', 1), ('quest', 1), ('scientific', 1), ('knowledge', 1), ('empirical', 1), ('evidence', 1), ('collected', 1), ('visual', 1), ('perception', 1), ('tracking', 1), ('computer', 1), ('vision', 1), ('take', 1), ('important', 1), ('role', 1), ('reveal', 1), ('complex', 1), ('pattern', 1), ('motion', 1), ('exist', 1), ('world', 1), ('live', 1), ('multi', 1), ('object', 1)]
[('proceeding', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('th', 1), ('conference', 1), ('advanced', 1), ('intelligent', 1), ('system', 1), ('informatics', 1), ('aisi', 1), ('took', 1), ('place', 1), ('cairo', 1), ('egypt', 1), ('november', 1)]
[('crucial', 3), ('ai', 2), ('transportation', 1), ('typically', 1), ('entail', 1), ('life', 1), ('death', 1), ('choice', 1), ('delegating', 1), ('decision', 1), ('algorithm', 1), ('without', 1), ('explanation', 1), ('pose', 1), ('serious', 1), ('threat', 1), ('explainability', 1), ('responsible', 1), ('context', 1), ('intelligent', 1)]
[('computing', 3), ('edge', 2), ('swarm', 2), ('book', 1), ('explores', 1), ('recent', 1), ('distributed', 1), ('cloud', 1), ('research', 1), ('industrial', 1), ('nbsp', 1), ('advance', 1), ('settling', 1), ('basis', 1), ('advanced', 1), ('development', 1), ('feature', 1), ('concept', 1), ('realizes', 1), ('ad', 1), ('hoc', 1)]
[('care', 2), ('user', 1), ('home', 1), ('matter', 1), ('concern', 1), ('unforeseen', 1), ('circumstance', 1), ('might', 1), ('occur', 1), ('affect', 1), ('technology', 1), ('assist', 1), ('independent', 1), ('living', 1), ('essential', 1), ('enhancing', 1), ('cost', 1), ('effective', 1), ('reliable', 1), ('manner', 1)]
[('book', 1), ('remarkable', 1), ('collection', 1), ('chapter', 1), ('covering', 1), ('wide', 1), ('domain', 1), ('topic', 1), ('related', 1), ('artificial', 1), ('intelligence', 1), ('application', 1), ('real', 1), ('world', 1), ('conference', 1), ('attracted', 1), ('total', 1), ('submission', 1), ('many', 1), ('academic', 1), ('pioneering', 1)]
[('volume', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('processing', 1), ('management', 1), ('uncertainty', 1), ('knowledge', 1), ('based', 1), ('system', 1), ('ipmu', 1), ('held', 1), ('milan', 1), ('italy', 1), ('july', 1), ('nbsp', 1)]
[('smart', 2), ('city', 2), ('ensuring', 1), ('cybersecurity', 1), ('crucial', 1), ('sustainable', 1), ('cyber', 1), ('ecosystem', 1), ('given', 1), ('undeniable', 1), ('complexity', 1), ('fundamental', 1), ('issue', 1), ('device', 1), ('configuration', 1), ('software', 1), ('update', 1), ('addressed', 1), ('needed', 1)]
[('book', 1), ('remarkable', 1), ('collection', 1), ('chapter', 1), ('covering', 1), ('wide', 1), ('domain', 1), ('topic', 1), ('related', 1), ('artificial', 1), ('intelligence', 1), ('application', 1), ('real', 1), ('world', 1), ('conference', 1), ('attracted', 1), ('total', 1), ('submission', 1), ('many', 1), ('academic', 1), ('pioneering', 1)]
[('bpm', 3), ('forum', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('held', 1), ('th', 1), ('international', 1), ('conference', 1), ('business', 1), ('process', 1), ('management', 1), ('took', 1), ('place', 1), ('münster', 1), ('germany', 1), ('september', 1), ('host', 1), ('innovative', 1), ('research', 1)]
[('step', 2), ('graduate', 1), ('level', 1), ('textbook', 1), ('ideally', 1), ('suited', 1), ('lecturing', 1), ('relevant', 1), ('topic', 1), ('edge', 1), ('computing', 1), ('tie', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('machine', 1), ('learning', 1), ('ml', 1), ('approach', 1), ('start', 1), ('basic', 1), ('gradually', 1), ('advance', 1)]
[('system', 2), ('theory', 2), ('springerbrief', 1), ('introduces', 1), ('methodology', 1), ('tool', 1), ('quantitative', 1), ('understanding', 1), ('assessment', 1), ('supply', 1), ('chain', 1), ('risk', 1), ('critical', 1), ('infrastructure', 1), ('unites', 1), ('reliability', 1), ('analysis', 1), ('optimization', 1), ('detection', 1), ('mechanism', 1)]
[('education', 3), ('always', 1), ('cornerstone', 1), ('societal', 1), ('evolution', 1), ('economic', 1), ('growth', 1), ('currently', 1), ('witnessing', 1), ('significant', 1), ('transformation', 1), ('development', 1), ('especially', 1), ('post', 1), ('secondary', 1), ('use', 1), ('technology', 1)]
[('enterprise', 2), ('eewc', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('engineering', 1), ('working', 1), ('conference', 1), ('held', 1), ('online', 1), ('november', 1), ('december', 1), ('aim', 1), ('addressing', 1), ('challenge', 1), ('modern', 1), ('complex', 1)]
[('programming', 4), ('highly', 1), ('accessible', 1), ('textbook', 1), ('teach', 1), ('first', 1), ('principle', 1), ('common', 1), ('many', 1), ('course', 1), ('us', 1), ('python', 1), ('introductory', 1), ('language', 1), ('going', 1), ('use', 1), ('java', 1), ('vehicle', 1), ('advanced', 1)]
[('part', 2), ('ai', 2), ('application', 2), ('book', 1), ('divided', 1), ('first', 1), ('describes', 1), ('know', 1), ('today', 1), ('particular', 1), ('fintech', 1), ('related', 1), ('turn', 1), ('second', 1), ('explores', 1), ('model', 1), ('financial', 1), ('market', 1), ('regarding', 1), ('already', 1)]
[('book', 2), ('image', 2), ('provides', 1), ('reader', 1), ('comprehensive', 1), ('overview', 1), ('principle', 1), ('methodology', 1), ('recent', 1), ('advance', 1), ('signal', 1), ('video', 1), ('processing', 1), ('using', 1), ('different', 1), ('system', 1), ('used', 1), ('handbook', 1), ('postgraduate', 1), ('course', 1)]
[('cyber', 3), ('research', 2), ('deception', 2), ('field', 2), ('book', 1), ('introduces', 1), ('recent', 1), ('result', 1), ('promising', 1), ('proactive', 1), ('defense', 1), ('beauty', 1), ('challenge', 1), ('interdisciplinary', 1), ('requiring', 1), ('study', 1), ('technique', 1)]
[('workshop', 2), ('th', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('european', 1), ('dependable', 1), ('computing', 1), ('conference', 1), ('edcc', 1), ('software', 1), ('engineering', 1), ('resilient', 1), ('system', 1), ('serene', 1), ('third', 1), ('worskhop', 1), ('dynamic', 1), ('risk', 1), ('management', 1)]
[('technology', 2), ('data', 2), ('learning', 2), ('security', 2), ('book', 1), ('highlight', 1), ('recent', 1), ('advance', 1), ('smart', 1), ('city', 1), ('focus', 1), ('new', 1), ('biometrics', 1), ('blockchains', 1), ('encryption', 1), ('mining', 1), ('machine', 1), ('deep', 1), ('cloud', 1), ('mobile', 1)]
[('data', 5), ('dependency', 2), ('rich', 2), ('type', 2), ('book', 1), ('examines', 1), ('recent', 1), ('trend', 1), ('extending', 1), ('adapt', 1), ('order', 1), ('address', 1), ('variety', 1), ('veracity', 1), ('issue', 1), ('big', 1), ('reader', 1), ('guided', 1), ('full', 1), ('range', 1)]
[('artificial', 2), ('intelligence', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('xxist', 1), ('international', 1), ('conference', 1), ('italian', 1), ('association', 1), ('aixia', 1), ('advance', 1), ('held', 1), ('udine', 1), ('italy', 1), ('november', 1)]
[('data', 2), ('technology', 2), ('book', 1), ('consists', 1), ('selected', 1), ('peer', 1), ('reviewed', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('big', 1), ('engineering', 1), ('bdet', 1), ('held', 1), ('april', 1), ('singapore', 1), ('infrastructure', 1), ('management', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('triz', 1), ('future', 1), ('conference', 1), ('automated', 1), ('invention', 1), ('smart', 1), ('industry', 1), ('tfc', 1), ('took', 1), ('place', 1), ('warsaw', 1), ('poland', 1), ('september', 1), ('event', 1), ('sponsored', 1), ('ifip', 1), ('wg', 1)]
[('learning', 3), ('deep', 2), ('springerbrief', 1), ('present', 1), ('underlying', 1), ('principle', 1), ('machine', 1), ('deploy', 1), ('various', 1), ('tool', 1), ('technique', 1), ('tackle', 1), ('solve', 1), ('certain', 1), ('challenge', 1), ('facing', 1), ('cybersecurity', 1), ('industry', 1), ('implementing', 1), ('innovative', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('system', 2), ('book', 1), ('includes', 1), ('extended', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('smart', 1), ('city', 1), ('green', 1), ('ict', 1), ('smartgreens', 1), ('vehicle', 1), ('technology', 1), ('intelligent', 1), ('transport', 1), ('vehits', 1)]
[('book', 2), ('primary', 1), ('purpose', 1), ('present', 1), ('state', 1), ('art', 1), ('mobile', 1), ('cloud', 1), ('computing', 1), ('application', 1), ('emphasis', 1), ('energy', 1), ('efficiency', 1), ('future', 1), ('research', 1), ('direction', 1), ('highlighted', 1), ('enrich', 1), ('global', 1), ('market', 1), ('place', 1)]
[('normalization', 2), ('deep', 2), ('network', 2), ('book', 1), ('present', 1), ('survey', 1), ('technique', 1), ('analysis', 1), ('training', 1), ('neural', 1), ('nbsp', 1), ('addition', 1), ('author', 1), ('provides', 1), ('technical', 1), ('detail', 1), ('designing', 1), ('new', 1), ('method', 1), ('architecture', 1), ('tailored', 1)]
[('model', 3), ('honest', 2), ('book', 1), ('focus', 1), ('multi', 1), ('party', 1), ('computation', 1), ('mpc', 1), ('protocol', 1), ('passive', 1), ('corruption', 1), ('known', 1), ('semi', 1), ('curious', 1), ('author', 1), ('nbsp', 1), ('present', 1), ('seminal', 1), ('possibility', 1), ('feasibility', 1), ('result', 1), ('includes', 1)]
[('book', 1), ('present', 1), ('innovative', 1), ('idea', 1), ('cutting', 1), ('edge', 1), ('finding', 1), ('novel', 1), ('technique', 1), ('method', 1), ('application', 1), ('broad', 1), ('range', 1), ('cybersecurity', 1), ('cyberthreat', 1), ('intelligence', 1), ('area', 1), ('society', 1), ('becomes', 1), ('smarter', 1), ('corresponding', 1), ('need', 1), ('secure', 1)]
[('agent', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('workshop', 1), ('co', 1), ('located', 1), ('th', 1), ('international', 1), ('conference', 1), ('practical', 1), ('application', 1), ('multi', 1), ('system', 1), ('paams', 1), ('held', 1), ('aquila', 1), ('italy', 1), ('july', 1), ('total', 1), ('full', 1), ('paper', 1)]
[('seventh', 1), ('future', 1), ('technology', 1), ('conference', 1), ('organized', 1), ('hybrid', 1), ('mode', 1), ('received', 1), ('total', 1), ('submission', 1), ('learned', 1), ('scholar', 1), ('academician', 1), ('engineer', 1), ('scientist', 1), ('student', 1), ('across', 1), ('many', 1), ('country', 1), ('paper', 1), ('included', 1), ('wide', 1), ('arena', 1)]
[('database', 2), ('adopting', 1), ('experimental', 1), ('learning', 1), ('approach', 1), ('book', 1), ('describes', 1), ('practical', 1), ('forensic', 1), ('process', 1), ('acquire', 1), ('analyze', 1), ('given', 1), ('device', 1), ('application', 1), ('hold', 1), ('important', 1), ('sensitive', 1), ('confidential', 1), ('information', 1)]
[('data', 3), ('compressive', 2), ('sensing', 2), ('framework', 2), ('book', 1), ('investigates', 1), ('technique', 1), ('provide', 1), ('robust', 1), ('general', 1), ('network', 1), ('analytics', 1), ('goal', 1), ('introduce', 1), ('missing', 1), ('interpolation', 1), ('anomaly', 1), ('detection', 1), ('segmentation', 1)]
[('book', 2), ('culture', 2), ('hci', 2), ('provides', 1), ('interdisciplinary', 1), ('synthesis', 1), ('topic', 1), ('context', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('structured', 1), ('overview', 1), ('large', 1), ('body', 1), ('research', 1), ('present', 1), ('short', 1), ('guided', 1)]
[('technology', 2), ('google', 2), ('gi', 1), ('ranging', 1), ('map', 1), ('earth', 1), ('use', 1), ('smart', 1), ('phone', 1), ('car', 1), ('navigation', 1), ('system', 1), ('spatial', 1), ('knowledge', 1), ('often', 1), ('acquired', 1), ('communicated', 1), ('geographic', 1), ('information', 1), ('monograph', 1), ('describes', 1)]
[('learning', 3), ('rank', 2), ('refers', 1), ('machine', 1), ('technique', 1), ('training', 1), ('model', 1), ('ranking', 1), ('task', 1), ('useful', 1), ('many', 1), ('application', 1), ('information', 1), ('retrieval', 1), ('natural', 1), ('language', 1), ('processing', 1), ('data', 1), ('mining', 1), ('intensive', 1), ('study', 1)]
[('language', 3), ('english', 2), ('estimated', 1), ('billion', 1), ('using', 1), ('learning', 1), ('second', 1), ('foreign', 1), ('number', 1), ('growing', 1), ('learner', 1), ('provide', 1), ('burgeoning', 1), ('market', 1)]
[('social', 2), ('recent', 1), ('year', 1), ('online', 1), ('networking', 1), ('revolutionized', 1), ('interpersonal', 1), ('communication', 1), ('newer', 1), ('research', 1), ('language', 1), ('analysis', 1), ('medium', 1), ('increasingly', 1), ('focusing', 1), ('latter', 1), ('impact', 1), ('daily', 1), ('life', 1), ('personal', 1)]
[('book', 1), ('result', 1), ('many', 1), ('year', 1), ('teaching', 1), ('upper', 1), ('division', 1), ('course', 1), ('communication', 1), ('network', 1), ('eec', 1), ('department', 1), ('university', 1), ('california', 1), ('berkeley', 1), ('motivated', 1), ('perceived', 1), ('need', 1), ('easily', 1), ('accessible', 1), ('textbook', 1), ('put', 1), ('emphasis', 1)]
[('failure', 3), ('resolved', 2), ('traditional', 1), ('theory', 1), ('practice', 1), ('write', 1), ('ahead', 1), ('logging', 1), ('database', 1), ('recovery', 1), ('technique', 1), ('revolve', 1), ('around', 1), ('three', 1), ('class', 1), ('transaction', 1), ('rollback', 1), ('system', 1), ('typically', 1), ('software', 1), ('fault', 1), ('restart', 1), ('log', 1)]
[('query', 2), ('data', 2), ('topic', 1), ('using', 1), ('view', 1), ('answer', 1), ('popular', 1), ('decade', 1), ('cut', 1), ('across', 1), ('domain', 1), ('optimization', 1), ('information', 1), ('integration', 1), ('warehousing', 1), ('website', 1), ('design', 1), ('recently', 1), ('database', 1), ('service', 1)]
[('book', 2), ('present', 1), ('latest', 1), ('research', 1), ('cognitive', 1), ('security', 1), ('rapidly', 1), ('emerging', 1), ('field', 1), ('address', 1), ('vulnerability', 1), ('human', 1), ('behavior', 1), ('cognition', 1), ('lead', 1), ('cyber', 1), ('physical', 1), ('system', 1), ('cps', 1), ('compromise', 1), ('demonstrates', 1)]
[('information', 4), ('architecture', 1), ('organizing', 1), ('simplifying', 1), ('designing', 1), ('integrating', 1), ('space', 1), ('system', 1), ('creating', 1), ('way', 1), ('find', 1), ('interact', 1), ('content', 1), ('goal', 1), ('help', 1), ('understand', 1)]
[('learning', 4), ('lifelong', 2), ('machine', 2), ('advanced', 1), ('paradigm', 1), ('learns', 1), ('continuously', 1), ('accumulates', 1), ('knowledge', 1), ('learned', 1), ('previous', 1), ('task', 1), ('us', 1), ('help', 1), ('future', 1), ('process', 1), ('learner', 1), ('becomes', 1)]
[('monograph', 2), ('approach', 2), ('present', 1), ('concise', 1), ('mathematical', 1), ('modeling', 1), ('analyzing', 1), ('performance', 1), ('communication', 1), ('network', 1), ('aim', 1), ('understanding', 1), ('phenomenon', 1), ('statistical', 1), ('multiplexing', 1), ('novelty', 1), ('fresh', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('international', 1), ('workshop', 1), ('coordination', 1), ('organization', 1), ('institution', 1), ('norm', 1), ('governance', 1), ('multi', 1), ('agent', 1), ('system', 1), ('coine', 1), ('held', 1), ('nbsp', 1), ('auckland', 1), ('new', 1)]
[('close', 2), ('count', 2), ('time', 1), ('worn', 1), ('aphorism', 1), ('horseshoe', 1), ('hand', 1), ('grenade', 1), ('clearly', 1), ('inadequate', 1), ('golf', 1), ('shuffleboard', 1), ('archery', 1), ('dart', 1), ('curling', 1), ('game', 1), ('accuracy', 1), ('hitting', 1), ('precise', 1), ('center', 1), ('target', 1)]
[('graphical', 1), ('model', 1), ('bayesian', 1), ('constraint', 1), ('network', 1), ('influence', 1), ('diagram', 1), ('markov', 1), ('decision', 1), ('process', 1), ('become', 1), ('central', 1), ('paradigm', 1), ('knowledge', 1), ('representation', 1), ('reasoning', 1), ('artificial', 1), ('intelligence', 1), ('computer', 1), ('science', 1), ('general', 1)]
[('data', 2), ('center', 2), ('edited', 1), ('volume', 1), ('cover', 1), ('essential', 1), ('recent', 1), ('development', 1), ('engineering', 1), ('management', 1), ('complex', 1), ('system', 1), ('requiring', 1), ('ongoing', 1), ('support', 1), ('high', 1), ('value', 1), ('keeping', 1), ('business', 1), ('continuity', 1), ('operation', 1), ('crucial', 1)]
[('based', 2), ('dissimilarity', 2), ('metric', 2), ('network', 2), ('springerbrief', 1), ('present', 1), ('design', 1), ('performance', 1), ('evaluation', 1), ('communication', 1), ('protocol', 1), ('wireless', 1), ('multihop', 1), ('used', 1), ('infer', 1), ('topology', 1), ('solely', 1), ('local', 1), ('information', 1)]
[('provides', 2), ('book', 1), ('practical', 1), ('guidance', 1), ('awareness', 1), ('growing', 1), ('body', 1), ('knowledge', 1), ('developing', 1), ('across', 1), ('variety', 1), ('discipline', 1), ('initiative', 1), ('celebration', 1), ('gavriel', 1), ('salvendy', 1), ('international', 1), ('symposium', 1), ('gsis', 1), ('survey', 1), ('topic', 1)]
[('ai', 2), ('gender', 2), ('part', 2), ('technology', 2), ('include', 1), ('agenda', 1), ('role', 1), ('community', 1), ('agent', 1), ('creating', 1), ('content', 1), ('processed', 1), ('far', 1), ('conflictive', 1), ('woman', 1)]
[('numerical', 2), ('algorithmic', 1), ('science', 1), ('engineering', 1), ('na', 1), ('compactly', 1), ('algorithmics', 1), ('theoretical', 1), ('empirical', 1), ('study', 1), ('practical', 1), ('implementation', 1), ('application', 1), ('algorithm', 1), ('solving', 1), ('finite', 1), ('dimensional', 1), ('problem', 1)]
[('study', 2), ('ai', 2), ('public', 2), ('administration', 2), ('book', 1), ('present', 1), ('unique', 1), ('artificial', 1), ('intelligence', 1), ('readiness', 1), ('focusing', 1), ('maltese', 1), ('case', 1), ('conducted', 1), ('following', 1), ('launch', 1), ('malta', 1), ('national', 1), ('strategy', 1)]
[('pnp', 2), ('interface', 2), ('book', 1), ('detail', 1), ('recent', 1), ('development', 1), ('emerging', 1), ('area', 1), ('plug', 1), ('play', 1), ('visual', 1), ('subgraph', 1), ('query', 1), ('vqi', 1), ('grounded', 1), ('principle', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hci', 1), ('cognitive', 1), ('psychology', 1), ('address', 1)]
[('knowledge', 2), ('book', 1), ('discus', 1), ('fundamental', 1), ('element', 1), ('underline', 1), ('science', 1), ('design', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('system', 1), ('learning', 1), ('acquisition', 1), ('observational', 1), ('data', 1), ('reasoning', 1), ('together', 1)]
[('book', 1), ('discus', 1), ('recent', 1), ('research', 1), ('work', 1), ('designing', 1), ('efficient', 1), ('fault', 1), ('tolerant', 1), ('synchronization', 1), ('mechanism', 1), ('concurrent', 1), ('process', 1), ('using', 1), ('relatively', 1), ('new', 1), ('persistent', 1), ('memory', 1), ('technology', 1), ('combine', 1), ('low', 1), ('latency', 1), ('benefit', 1), ('dram', 1)]
[('deep', 3), ('learning', 2), ('network', 2), ('critical', 1), ('challenge', 1), ('vulnerability', 1), ('security', 1), ('attack', 1), ('intelligent', 1), ('cyber', 1), ('adversary', 1), ('even', 1), ('innocuous', 1), ('perturbation', 1), ('training', 1), ('data', 1), ('used', 1), ('manipulate', 1), ('behaviour', 1)]
[('book', 1), ('present', 1), ('innovative', 1), ('idea', 1), ('cutting', 1), ('edge', 1), ('finding', 1), ('novel', 1), ('technique', 1), ('method', 1), ('application', 1), ('broad', 1), ('range', 1), ('cybersecurity', 1), ('cyberthreat', 1), ('intelligence', 1), ('area', 1), ('society', 1), ('becomes', 1), ('smarter', 1), ('corresponding', 1), ('need', 1), ('secure', 1)]
[('book', 1), ('explores', 1), ('machine', 1), ('learning', 1), ('ml', 1), ('defense', 1), ('many', 1), ('cyberattacks', 1), ('make', 1), ('workplace', 1), ('school', 1), ('private', 1), ('residence', 1), ('critical', 1), ('infrastructure', 1), ('vulnerable', 1), ('consequence', 1), ('dramatic', 1), ('increase', 1), ('botnets', 1), ('data', 1), ('ransom', 1), ('system', 1)]
[('known', 2), ('graph', 2), ('book', 1), ('explains', 1), ('idea', 1), ('behind', 1), ('method', 1), ('knowledge', 1), ('embedding', 1), ('transformation', 1), ('compute', 1), ('vector', 1), ('representation', 1), ('rdf', 1), ('vec', 1), ('author', 1), ('describe', 1), ('usage', 1), ('practice', 1), ('reusing', 1)]
[('tracking', 2), ('book', 1), ('provides', 1), ('quick', 1), ('insightful', 1), ('introduction', 1), ('bayesian', 1), ('particle', 1), ('filtering', 1), ('person', 1), ('background', 1), ('probability', 1), ('statistic', 1), ('wish', 1), ('learn', 1), ('basic', 1), ('single', 1), ('target', 1), ('introduces', 1)]
[('game', 4), ('video', 3), ('religious', 2), ('shaman', 1), ('paragon', 1), ('god', 1), ('mode', 1), ('modern', 1), ('heavily', 1), ('coded', 1), ('undertone', 1), ('shinto', 1), ('inspired', 1), ('japanese', 1), ('okami', 1), ('internationally', 1), ('popular', 1), ('legend', 1), ('zelda', 1), ('halo', 1), ('many', 1), ('rely', 1), ('theme', 1), ('symbol', 1), ('drive', 1), ('narrative', 1), ('frame', 1), ('storyline', 1), ('playing', 1), ('religion', 1), ('digital', 1)]
[('video', 2), ('game', 2), ('growth', 1), ('popularity', 1), ('complexity', 1), ('spurred', 1), ('new', 1), ('interest', 1), ('developed', 1), ('research', 1), ('technology', 1), ('behind', 1), ('david', 1), ('heineman', 1), ('brings', 1), ('together', 1), ('iconic', 1), ('influential', 1), ('interesting', 1), ('voice', 1), ('across', 1), ('gaming', 1), ('industry', 1), ('asks', 1), ('weigh', 1), ('past', 1), ('present', 1), ('future', 1)]
[('management', 4), ('end', 2), ('acceptance', 2), ('comprehensive', 1), ('approach', 1), ('book', 1), ('cover', 1), ('process', 1), ('request', 1), ('change', 1), ('error', 1), ('migration', 1), ('testing', 1), ('final', 1), ('data', 1), ('clean', 1), ('based', 1), ('upon', 1), ('nearly', 1), ('twenty', 1), ('year', 1), ('experience', 1), ('test', 1), ('certification', 1), ('introducing', 1), ('medium', 1), ('large', 1), ('system', 1), ('including', 1)]
[('transaction', 1), ('publish', 1), ('research', 1), ('computer', 1), ('based', 1), ('method', 1), ('computational', 1), ('collective', 1), ('intelligence', 1), ('cci', 1), ('application', 1), ('wide', 1), ('range', 1), ('field', 1), ('performance', 1), ('optimization', 1), ('iot', 1), ('big', 1), ('data', 1), ('reliability', 1), ('privacy', 1), ('security', 1)]
[('ingo', 1), ('weber', 1), ('develops', 1), ('new', 1), ('approach', 1), ('rapid', 1), ('development', 1), ('flexible', 1), ('adaption', 1), ('business', 1), ('process', 1), ('often', 1), ('main', 1), ('requirement', 1), ('today', 1), ('support', 1), ('enterprise', 1), ('key', 1), ('issue', 1), ('covered', 1), ('work', 1), ('automatic', 1), ('composition', 1)]
[('rough', 3), ('set', 3), ('lncs', 1), ('journal', 1), ('transaction', 1), ('devoted', 1), ('entire', 1), ('spectrum', 1), ('related', 1), ('issue', 1), ('logical', 1), ('mathematical', 1), ('foundation', 1), ('aspect', 1), ('theory', 1), ('application', 1), ('data', 1), ('mining', 1), ('knowledge', 1)]
[('science', 3), ('computational', 2), ('field', 2), ('lncs', 1), ('journal', 1), ('transaction', 1), ('reflects', 1), ('recent', 1), ('development', 1), ('conceiving', 1), ('mere', 1), ('ancillary', 1), ('rather', 1), ('innovative', 1), ('approach', 1), ('supporting', 1), ('many', 1), ('scientific', 1)]
[('system', 2), ('cryptography', 1), ('ubiquitous', 1), ('moving', 1), ('beyond', 1), ('traditional', 1), ('environment', 1), ('government', 1), ('communication', 1), ('banking', 1), ('see', 1), ('cryptographic', 1), ('technique', 1), ('realized', 1), ('web', 1), ('browser', 1), ('mail', 1), ('program', 1), ('cell', 1), ('phone', 1), ('manufacturing', 1)]
[('nan', 1)]
[('nan', 1)]
[('neural', 2), ('network', 2), ('twenty', 1), ('last', 1), ('year', 1), ('marked', 1), ('increase', 1), ('available', 1), ('data', 1), ('computing', 1), ('power', 1), ('parallel', 1), ('trend', 1), ('focus', 1), ('research', 1), ('practice', 1), ('training', 1), ('undergone', 1), ('number', 1), ('important', 1), ('change', 1)]
[('language', 2), ('mathematics', 2), ('dissertation', 2), ('awarded', 1), ('beth', 1), ('prize', 1), ('outstanding', 1), ('field', 1), ('logic', 1), ('information', 1), ('innovatively', 1), ('combine', 1), ('technique', 1), ('linguistics', 1), ('philosophy', 1)]
[('mmix', 3), ('computer', 2), ('machine', 2), ('programming', 2), ('risc', 1), ('designed', 1), ('knuth', 1), ('illustrate', 1), ('level', 1), ('aspect', 1), ('author', 1), ('book', 1), ('series', 1), ('art', 1), ('replaces', 1), ('style', 1), ('mix', 1), ('particular', 1), ('goal', 1), ('design', 1)]
[('nan', 1)]
[('replication', 2), ('distributed', 2), ('community', 2), ('different', 2), ('topic', 1), ('interest', 1), ('computing', 1), ('system', 1), ('database', 1), ('although', 1), ('traditionally', 1), ('looked', 1), ('viewpoint', 1), ('goal', 1)]
[('thailand', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('japan', 1), ('joint', 1), ('conference', 1), ('computational', 1), ('geometry', 1), ('graph', 1), ('tjjccgg', 1), ('held', 1), ('bangkok', 1), ('december', 1), ('original', 1), ('research', 1), ('paper', 1), ('presented', 1), ('selected', 1)]
[('ada', 3), ('reference', 2), ('manual', 2), ('enhanced', 1), ('version', 1), ('text', 1), ('international', 1), ('standard', 1), ('iso', 1), ('iec', 1), ('programming', 1), ('language', 1), ('combine', 1), ('previous', 1), ('correction', 1), ('technical', 1), ('corrigendum', 1)]
[('rough', 3), ('set', 3), ('lncs', 1), ('journal', 1), ('transaction', 1), ('devoted', 1), ('entire', 1), ('spectrum', 1), ('related', 1), ('issue', 1), ('logical', 1), ('mathematical', 1), ('foundation', 1), ('aspect', 1), ('theory', 1), ('application', 1), ('data', 1), ('mining', 1), ('knowledge', 1)]
[('reality', 4), ('copy', 2), ('today', 1), ('know', 1), ('recorded', 1), ('reproduced', 1), ('true', 1), ('using', 1), ('technical', 1), ('process', 1), ('space', 1), ('time', 1), ('recreated', 1), ('virtually', 1), ('artificial', 1), ('reproduction', 1), ('virtual', 1), ('limited', 1), ('mere', 1)]
[('data', 3), ('set', 2), ('book', 1), ('show', 1), ('analyze', 1), ('systematically', 1), ('use', 1), ('excel', 1), ('nbsp', 1), ('extract', 1), ('information', 1), ('almost', 1), ('effortlessly', 1), ('art', 1), ('statistical', 1), ('method', 1), ('presented', 1), ('discussed', 1), ('using', 1), ('single', 1)]
[('zu', 2), ('sind', 1), ('algorithmen', 1), ('freund', 1), ('oder', 1), ('feind', 1), ('der', 1), ('menschliche', 1), ('verstand', 1), ('ist', 1), ('evolutionär', 1), ('darauf', 1), ('ausgelegt', 1), ('abkürzungen', 1), ('nehmen', 1), ('um', 1), ('überleben', 1), ('wir', 1), ('ziehen', 1), ('voreilige', 1), ('schlüsse', 1), ('weil', 1), ('unser', 1), ('gehirn', 1), ('un', 1), ('sicherheit', 1), ('wiegen', 1), ('die', 1), ('meisten', 1), ('unserer', 1)]
[('medium', 2), ('user', 2), ('augmented', 1), ('virtual', 1), ('reality', 1), ('innovation', 1), ('specific', 1), ('characteristic', 1), ('create', 1), ('immersion', 1), ('immersed', 1), ('environment', 1), ('nbsp', 1), ('successfully', 1), ('develop', 1), ('content', 1), ('application', 1), ('ar', 1)]
[('sie', 5), ('lernen', 2), ('schritt', 2), ('erstellen', 1), ('einen', 1), ('chatbot', 1), ('mit', 1), ('der', 1), ('microsoft', 1), ('conversational', 1), ('ai', 1), ('plattform', 1), ('diesem', 1), ('buch', 1), ('für', 1), ('wie', 1), ('zeit', 1), ('und', 1), ('geld', 1), ('sparen', 1), ('können', 1), ('indem', 1), ('chatbots', 1), ('die', 1), ('strategie', 1), ('ihres', 1), ('unternehmens', 1), ('integrieren', 1), ('werden', 1)]
[('die', 3), ('und', 3), ('tauchen', 1), ('sie', 1), ('tief', 1), ('den', 1), ('architektonischen', 1), ('ansatz', 1), ('bewährten', 1), ('verfahren', 1), ('wichtigsten', 1), ('überlegungen', 1), ('ein', 1), ('zum', 1), ('verstehen', 1), ('bewerten', 1), ('entwerfen', 1), ('einer', 1), ('effizienten', 1), ('skalierbaren', 1), ('nachhaltigen', 1), ('salesforce', 1), ('basierten', 1), ('lösung', 1), ('erforderlich', 1)]
[('und', 3), ('für', 2), ('die', 2), ('kenntnisse', 1), ('de', 1), ('projektmanagements', 1), ('seine', 1), ('anwendungsmöglichkeiten', 1), ('sind', 1), ('manager', 1), ('entwickler', 1), ('unentbehrlich', 1), ('diesem', 1), ('buch', 1), ('werden', 1), ('wichtigsten', 1), ('verfahren', 1), ('methoden', 1), ('da', 1), ('management', 1), ('großer', 1), ('projekte', 1), ('vorgestellt', 1)]
[('und', 2), ('da', 2), ('die', 1), ('erfolgreiche', 1), ('planung', 1), ('durchführung', 1), ('eines', 1), ('projektes', 1), ('braucht', 1), ('umfangreiche', 1), ('anforderungsdefinitionen', 1), ('requirement', 1), ('engineering', 1), ('management', 1), ('gibt', 1), ('systematische', 1), ('entscheidungshilfen', 1), ('wo', 1), ('projektmanagement', 1), ('effizienter', 1), ('werden', 1), ('kann', 1), ('der', 1)]
[('und', 2), ('für', 2), ('die', 2), ('der', 2), ('dy', 1), ('ist', 1), ('ein', 1), ('lehr', 1), ('übungsbuch', 1), ('simulation', 1), ('von', 1), ('elektrischen', 1), ('schaltungen', 1), ('mit', 1), ('pspice', 1), ('wie', 1), ('sie', 1), ('vorlesung', 1), ('meßtechnik', 1), ('studenten', 1), ('elektrotechnik', 1), ('hochschulen', 1), ('fachhochschulen', 1), ('behandelt', 1), ('werden', 1), ('grundvorlesungen', 1), ('über', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('concept', 1), ('analysis', 1), ('icfca', 1), ('held', 1), ('leuven', 1), ('belgium', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('discovery', 1), ('science', 1), ('d', 1), ('held', 1), ('lyon', 1), ('france', 1), ('october', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('entertainment', 1), ('computing', 1), ('icec', 1), ('held', 1), ('bremen', 1), ('germany', 1), ('september', 1), ('full', 1), ('short', 1), ('poster', 1), ('demo', 1), ('workshop', 1)]
[('otm', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('ten', 1), ('international', 1), ('workshop', 1), ('academy', 1), ('industry', 1), ('case', 1), ('study', 1), ('program', 1), ('ei', 1), ('inbast', 1), ('meta', 1), ('e', 1), ('ontocontent', 1), ('orm', 1), ('sedes', 1), ('sincom', 1), ('somoco', 1), ('held', 1), ('part', 1), ('rome', 1), ('italy', 1)]
[('workshop', 2), ('information', 2), ('security', 2), ('korea', 2), ('th', 1), ('international', 1), ('application', 1), ('wisa', 1), ('held', 1), ('jeju', 1), ('island', 1), ('august', 1), ('sponsored', 1), ('institute', 1), ('cryptology', 1), ('kiisc', 1)]
[('testing', 1), ('often', 1), ('account', 1), ('required', 1), ('ort', 1), ('system', 1), ('development', 1), ('thechallengeforresearchistoreducethesecostsbyprovidingnew', 1), ('method', 1), ('speci', 1), ('cation', 1), ('generation', 1), ('high', 1), ('quality', 1), ('test', 1), ('experience', 1), ('shown', 1), ('use', 1)]
[('book', 2), ('revised', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('ifip', 1), ('tc', 1), ('th', 1), ('international', 1), ('conference', 1), ('personal', 1), ('wireless', 1), ('communication', 1), ('pwc', 1), ('present', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('computer', 1), ('algebra', 1), ('scientific', 1), ('computing', 1), ('casc', 1), ('present', 1), ('revised', 1), ('full', 1), ('together', 1), ('invited', 1), ('covering', 1), ('various', 1), ('expanding', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('german', 1), ('conference', 1), ('multiagent', 1), ('system', 1), ('technology', 1), ('mate', 1), ('co', 1), ('located', 1), ('net', 1), ('objectdays', 1), ('node', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nan', 1)]
[('nan', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('groupware', 1), ('design', 1), ('implementation', 1), ('use', 1), ('held', 1), ('peso', 1), ('da', 1), ('régua', 1), ('douro', 1), ('portugal', 1), ('september', 1), ('paper', 1), ('presented', 1)]
[('system', 2), ('computing', 2), ('internet', 1), ('based', 1), ('information', 1), ('second', 1), ('covering', 1), ('large', 1), ('scale', 1), ('gration', 1), ('heterogeneous', 1), ('data', 1), ('resource', 1), ('aim', 1), ('providing', 1), ('global', 1), ('space', 1)]
[('researcher', 1), ('professional', 1)]
[('visual', 2), ('isvc', 2), ('greatpleasure', 1), ('present', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('computing', 1), ('held', 1), ('la', 1), ('vega', 1), ('nevada', 1), ('er', 1), ('common', 1), ('umbrella', 1), ('four', 1), ('main', 1), ('area', 1), ('puting', 1)]
[('journal', 2), ('data', 2), ('semantics', 2), ('lncs', 1), ('devoted', 1), ('presentation', 1), ('notable', 1), ('work', 1), ('way', 1), ('another', 1), ('address', 1), ('research', 1), ('development', 1), ('issue', 1), ('related', 1), ('scope', 1), ('range', 1), ('theory', 1), ('supporting', 1)]
[('icics', 2), ('thinternationalconferenceoninformationandcommunicationssecurity', 1), ('held', 1), ('beijing', 1), ('china', 1), ('december', 1), ('conferenceseriesis', 1), ('anestablished', 1), ('forum', 1), ('bringstogether', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('practice', 1), ('theory', 1), ('public', 1), ('key', 1), ('cryptography', 1), ('pkc', 1), ('held', 1), ('buenos', 1), ('aire', 1), ('argentina', 1), ('march', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('fast', 1), ('software', 1), ('encryption', 1), ('held', 1), ('bochum', 1), ('germany', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('welche', 3), ('und', 2), ('multimedia', 1), ('ist', 1), ('au', 1), ('modernem', 1), ('lehren', 1), ('lernen', 1), ('nicht', 1), ('mehr', 1), ('wegzudenken', 1), ('wie', 1), ('lässt', 1), ('sich', 1), ('die', 1), ('qualität', 1), ('neuer', 1), ('multimedialer', 1), ('angebote', 1), ('sicherstellen', 1), ('standard', 1), ('gibt', 1), ('e', 1), ('didaktischen', 1), ('ansätze', 1), ('sind', 1), ('effektiv', 1), ('aktuellen', 1), ('lehr', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('chinese', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('ccpr', 1), ('held', 1), ('beijing', 1), ('china', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('european', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('design', 1), ('science', 1), ('symposium', 1), ('eds', 1), ('leixlip', 1), ('ireland', 1), ('october', 1), ('conjunction', 1), ('intel', 1), ('research', 1), ('innovation', 1), ('conference', 1), ('eric', 1), ('revised', 1)]
[('und', 2), ('sie', 1), ('planen', 1), ('robotic', 1), ('process', 1), ('automation', 1), ('rpa', 1), ('unternehmen', 1), ('einzuführen', 1), ('ihre', 1), ('administrativen', 1), ('prozesse', 1), ('in', 1), ('digitale', 1), ('zeitalter', 1), ('zu', 1), ('überführen', 1), ('dieser', 1), ('pragmatische', 1), ('ratgeber', 1), ('bietet', 1), ('ihnen', 1), ('praxisgerecht', 1), ('komprimiert', 1), ('auf', 1), ('den', 1), ('punkt', 1), ('zusammengefasst', 1)]
[('encryption', 3), ('standard', 2), ('aes', 2), ('data', 2), ('authoritative', 1), ('comprehensive', 1), ('guide', 1), ('rijndael', 1), ('algorithm', 1), ('advanced', 1), ('expected', 1), ('gradually', 1), ('replace', 1), ('present', 1), ('de', 1), ('widely', 1), ('applied', 1), ('technology', 1)]
[('programme', 2), ('softwareentwicklung', 1), ('ist', 1), ('mehr', 1), ('al', 1), ('nur', 1), ('schreiben', 1), ('die', 1), ('entwicklung', 1), ('sicherer', 1), ('erfordert', 1), ('ein', 1), ('systematisches', 1), ('vorgehen', 1), ('von', 1), ('der', 1), ('aufgabenstellung', 1), ('bi', 1), ('zum', 1), ('getesteten', 1), ('programm', 1), ('diesem', 1), ('buch', 1), ('wird', 1)]
[('software', 2), ('journal', 1), ('devoted', 1), ('facet', 1), ('aspect', 1), ('oriented', 1), ('development', 1), ('aosd', 1), ('technique', 1), ('context', 1), ('phase', 1), ('life', 1), ('cycle', 1), ('requirement', 1), ('design', 1), ('implementation', 1), ('maintenance', 1), ('evolution', 1), ('focus', 1)]
[('volume', 2), ('speaker', 2), ('companion', 1), ('lnai', 1), ('constitute', 1), ('state', 1), ('art', 1), ('survey', 1), ('field', 1), ('classification', 1), ('together', 1), ('address', 1), ('intriguing', 1), ('issue', 1), ('characteristic', 1), ('manifested', 1), ('voice', 1), ('speaking', 1), ('behavior', 1)]
[('sec', 2), ('honor', 1), ('privilege', 1), ('chair', 1), ('th', 1), ('ifip', 1), ('international', 1), ('information', 1), ('se', 1), ('rity', 1), ('conference', 1), ('year', 1), ('old', 1), ('event', 1), ('become', 1), ('tradition', 1), ('formation', 1), ('security', 1), ('professional', 1), ('around', 1), ('world', 1), ('organized', 1)]
[('conceptual', 2), ('structure', 2), ('pleased', 1), ('bring', 1), ('collection', 1), ('paper', 1), ('ninth', 1), ('international', 1), ('conference', 1), ('icc', 1), ('representing', 1), ('continued', 1), ('excellence', 1), ('research', 1), ('adopted', 1), ('title', 1), ('broadening', 1), ('base', 1)]
[('technique', 2), ('thesis', 1), ('show', 1), ('combination', 1), ('analytic', 1), ('numerical', 1), ('time', 1), ('dependent', 1), ('finite', 1), ('temperature', 1), ('density', 1), ('matrix', 1), ('renormalization', 1), ('group', 1), ('dmrg', 1), ('used', 1), ('obtain', 1), ('physical', 1), ('property', 1), ('low', 1), ('dimensional', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('symbolic', 1), ('quantitative', 1), ('approach', 1), ('reasoning', 1), ('uncertainty', 1), ('ecsqaru', 1), ('held', 1), ('toulouse', 1), ('france', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('commerce', 2), ('among', 1), ('many', 1), ('change', 1), ('brought', 1), ('internet', 1), ('emergence', 1), ('electronic', 1), ('web', 1), ('activity', 1), ('online', 1), ('exchange', 1), ('information', 1), ('service', 1), ('product', 1), ('opening', 1), ('completely', 1), ('new', 1), ('opportunity', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('pattern', 2), ('recognition', 2), ('many', 2), ('field', 1), ('machine', 1), ('learning', 1), ('data', 1), ('mining', 1), ('connection', 1), ('enjoys', 1), ('growing', 1), ('popularity', 1), ('attracts', 1), ('researcher', 1), ('automatic', 1), ('system', 1), ('proven', 1), ('successful', 1), ('application', 1), ('wide', 1), ('use', 1)]
[('artificial', 1), ('intelligence', 1), ('fascinating', 1), ('unusual', 1), ('area', 1), ('academic', 1), ('study', 1), ('emerged', 1), ('century', 1), ('ai', 1), ('true', 1), ('scientific', 1), ('discipline', 1), ('made', 1), ('important', 1), ('fundamental', 1), ('contribution', 1), ('use', 1), ('computation', 1)]
[('real', 3), ('life', 3), ('imagine', 2), ('virtual', 2), ('world', 2), ('introduction', 1), ('digital', 1), ('creature', 1), ('look', 1), ('sound', 1), ('even', 1), ('feel', 1), ('nice', 1), ('three', 1), ('dimensional', 1), ('graphic', 1), ('animation', 1)]
[('interdisciplinary', 2), ('modeling', 2), ('using', 2), ('context', 2), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('paper', 1), ('deal', 1), ('topic', 1), ('various', 1), ('perspective', 1), ('including', 1)]
[('multi', 1), ('agent', 1), ('system', 1), ('community', 1), ('problem', 1), ('solving', 1), ('entity', 1), ('exhibit', 1), ('varying', 1), ('degree', 1), ('intelligence', 1), ('perceive', 1), ('react', 1), ('environment', 1), ('individual', 1), ('joint', 1), ('goal', 1), ('plan', 1), ('execute', 1)]
[('epos', 2), ('volume', 1), ('collect', 1), ('revised', 1), ('version', 1), ('invited', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('second', 1), ('epistemological', 1), ('perspective', 1), ('simulation', 1), ('workshop', 1), ('held', 1), ('brescia', 1), ('italy', 1), ('october', 1), ('bi', 1), ('annual', 1)]
[('kes', 2), ('symposium', 2), ('agent', 2), ('uppsala', 2), ('volume', 1), ('contains', 1), ('proceeding', 1), ('third', 1), ('multi', 1), ('system', 1), ('technology', 1), ('application', 1), ('amsta', 1), ('held', 1), ('university', 1), ('sweden', 1), ('june', 1), ('organized', 1)]
[('canadian', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('conference', 1), ('society', 1), ('computational', 1), ('study', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('windsor', 1), ('canada', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('ifip', 2), ('computing', 2), ('welcome', 1), ('second', 1), ('international', 1), ('entertainment', 1), ('symposium', 1), ('st', 1), ('cultural', 1), ('ec', 1), ('part', 1), ('world', 1), ('computer', 1), ('congress', 1), ('held', 1), ('brisbane', 1), ('australia', 1), ('september', 1), ('behalf', 1)]
[('present', 1), ('book', 1), ('contains', 1), ('proceeding', 1), ('conference', 1), ('held', 1), ('world', 1), ('computer', 1), ('congress', 1), ('brisbane', 1), ('australia', 1), ('september', 1), ('organised', 1), ('international', 1), ('federation', 1), ('information', 1), ('processing', 1), ('ifip', 1), ('first', 1), ('part', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('human', 1), ('choice', 1), ('computer', 1), ('hcc', 1), ('held', 1), ('amsterdam', 1), ('netherlands', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('paper', 2), ('book', 1), ('collection', 1), ('thoroughly', 1), ('refereed', 1), ('presented', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('conference', 1), ('system', 1), ('modeling', 1), ('optimization', 1), ('held', 1), ('dresden', 1), ('germany', 1), ('september', 1), ('revised', 1), ('carefully', 1), ('selected', 1), ('numerous', 1)]
[('ifip', 2), ('three', 1), ('volume', 1), ('aict', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('wg', 1), ('conference', 1), ('advance', 1), ('production', 1), ('management', 1), ('system', 1), ('apms', 1), ('held', 1), ('ajaccio', 1), ('france', 1), ('september', 1), ('revised', 1), ('full', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('business', 1), ('service', 1), ('society', 1), ('held', 1), ('athens', 1), ('greece', 1), ('april', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('together', 1), ('keynote', 1), ('speech', 1)]
[('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('ifip', 1), ('tc', 1), ('digital', 1), ('product', 1), ('process', 1), ('development', 1), ('system', 1), ('new', 1), ('prolamat', 1), ('held', 1), ('dresden', 1), ('germany', 1), ('october', 1), ('succeeds', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('socolnet', 1), ('doctoral', 1), ('conference', 1), ('computing', 1), ('electrical', 1), ('industrial', 1), ('system', 1), ('doceis', 1), ('held', 1), ('costa', 1), ('de', 1), ('caparica', 1), ('portugal', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('trust', 1), ('management', 1), ('ifiptm', 1), ('held', 1), ('singapore', 1), ('july', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('ifip', 2), ('three', 1), ('volume', 1), ('aict', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('wg', 1), ('conference', 1), ('advance', 1), ('production', 1), ('management', 1), ('system', 1), ('apms', 1), ('held', 1), ('ajaccio', 1), ('france', 1), ('september', 1), ('revised', 1), ('full', 1)]
[('volume', 1), ('comprises', 1), ('proceeding', 1), ('industrial', 1), ('conference', 1), ('data', 1), ('mining', 1), ('icdm', 1), ('held', 1), ('leipzig', 1), ('edition', 1), ('program', 1), ('committee', 1), ('received', 1), ('submission', 1), ('pe', 1), ('review', 1), ('process', 1), ('accepted', 1)]
[('problem', 2), ('different', 2), ('solving', 1), ('complex', 1), ('real', 1), ('world', 1), ('context', 1), ('financial', 1), ('investment', 1), ('planning', 1), ('mining', 1), ('large', 1), ('data', 1), ('collection', 1), ('involves', 1), ('many', 1), ('sub', 1), ('task', 1), ('requires', 1), ('technique', 1), ('deal', 1), ('diversity', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('language', 1), ('technology', 1), ('conference', 1), ('challenge', 1), ('computer', 1), ('science', 1), ('linguistics', 1), ('ltc', 1), ('held', 1), ('poznan', 1), ('poland', 1), ('november', 1), ('revised', 1), ('many', 1), ('case', 1), ('substantially', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conferenceproceedings', 1), ('th', 1), ('international', 1), ('conference', 1), ('application', 1), ('ofdeclarative', 1), ('programming', 1), ('knowledge', 1), ('management', 1), ('inap', 1), ('held', 1), ('inévora', 1), ('portugal', 1), ('november', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('international', 1), ('conference', 1), ('automated', 1), ('deduction', 1), ('cade', 1), ('held', 1), ('wrocław', 1), ('poland', 1), ('july', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('system', 1), ('description', 1), ('presented', 1), ('carefully', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('conceptual', 1), ('structure', 1), ('icc', 1), ('held', 1), ('derby', 1), ('uk', 1), ('july', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1), ('workshop', 1), ('carefully', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('language', 1), ('methodology', 1), ('development', 1), ('tool', 1), ('multi', 1), ('agent', 1), ('system', 1), ('lad', 1), ('held', 1), ('lyon', 1), ('france', 1), ('august', 1), ('september', 1)]
[('formula', 2), ('trying', 2), ('evaluation', 1), ('logical', 1), ('viewed', 1), ('game', 1), ('played', 1), ('opponent', 1), ('show', 1), ('true', 1), ('prove', 1), ('false', 1), ('correspondence', 1), ('known', 1), ('long', 1), ('time', 1), ('inspired', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('industrial', 1), ('application', 1), ('holonic', 1), ('multi', 1), ('agent', 1), ('system', 1), ('holomas', 1), ('held', 1), ('toulouse', 1), ('france', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('lnai', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('intelligent', 1), ('information', 1), ('database', 1), ('system', 1), ('aciids', 1), ('held', 1), ('kaohsiung', 1), ('taiwan', 1), ('march', 1), ('revised', 1), ('paper', 1)]
[('automated', 2), ('reasoning', 2), ('ijcar', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('held', 1), ('manchester', 1), ('uk', 1), ('june', 1), ('merger', 1), ('leading', 1), ('event', 1), ('namely', 1), ('cade', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('simulation', 1), ('modeling', 1), ('programming', 1), ('autonomous', 1), ('robot', 1), ('simpar', 1), ('held', 1), ('tsukuba', 1), ('japan', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('volume', 1), ('set', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computational', 1), ('collective', 1), ('intelligence', 1), ('icci', 1), ('held', 1), ('ho', 1), ('chi', 1), ('minh', 1), ('city', 1), ('vietnam', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('software', 3), ('aspect', 2), ('oriented', 2), ('development', 2), ('lncs', 1), ('journal', 1), ('transaction', 1), ('devoted', 1), ('facet', 1), ('aosd', 1), ('technique', 1), ('context', 1), ('phase', 1), ('life', 1), ('cycle', 1), ('requirement', 1), ('design', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('gold', 1), ('coast', 1), ('australia', 1), ('april', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1), ('inductive', 1), ('logic', 1), ('programming', 1), ('ilp', 1), ('held', 1), ('dubrovnik', 1), ('croatia', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('machine', 1), ('learning', 1), ('become', 1), ('key', 1), ('enabling', 1), ('technology', 1), ('many', 1), ('engineering', 1), ('application', 1), ('investigating', 1), ('scientific', 1), ('question', 1), ('theoretical', 1), ('problem', 1), ('alike', 1), ('stimulate', 1), ('discussion', 1), ('disseminate', 1), ('new', 1), ('result', 1), ('summer', 1), ('school', 1), ('series', 1), ('started', 1)]
[('european', 2), ('conference', 2), ('year', 2), ('machine', 1), ('learning', 1), ('ecml', 1), ('principle', 1), ('practice', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('pkdd', 1), ('jointly', 1), ('organized', 1), ('fth', 1), ('time', 1), ('row', 1), ('mutual', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('controlled', 2), ('natural', 2), ('language', 2), ('cnls', 1), ('subset', 1), ('obtained', 1), ('stricting', 1), ('grammar', 1), ('vocabulary', 1), ('order', 1), ('reduce', 1), ('eliminate', 1), ('ambiguity', 1), ('complexity', 1), ('traditionally', 1), ('languagesfall', 1), ('major', 1), ('type', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('scalable', 1), ('uncertainty', 1), ('management', 1), ('sum', 1), ('held', 1), ('washington', 1), ('dc', 1), ('usa', 1), ('september', 1), ('full', 1), ('short', 1), ('carefully', 1)]
[('th', 2), ('programming', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('international', 1), ('conference', 1), ('application', 1), ('declarative', 1), ('knowledge', 1), ('management', 1), ('inap', 1), ('workshop', 1), ('logic', 1), ('wlp', 1), ('held', 1), ('vienna', 1), ('austria', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('data', 1), ('mining', 1), ('application', 1), ('adma', 1), ('held', 1), ('hangzhou', 1), ('china', 1), ('december', 1), ('regular', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('data', 1), ('integration', 1), ('life', 1), ('science', 1), ('dils', 1), ('held', 1), ('montreal', 1), ('qc', 1), ('canada', 1), ('july', 1), ('revised', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('china', 1), ('national', 1), ('conference', 1), ('computational', 1), ('linguistics', 1), ('ccl', 1), ('first', 1), ('international', 1), ('symposium', 1), ('natural', 1), ('language', 1), ('processing', 1), ('based', 1), ('naturally', 1), ('annotated', 1), ('big', 1), ('data', 1), ('nlp', 1), ('nabd', 1)]
[('third', 2), ('international', 2), ('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('joint', 1), ('post', 1), ('proceeding', 1), ('mining', 1), ('ubiquitous', 1), ('social', 1), ('environment', 1), ('muse', 1), ('held', 1), ('bristol', 1), ('uk', 1), ('september', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('multi', 1), ('agent', 1), ('based', 1), ('simulation', 1), ('mabs', 1), ('held', 1), ('saint', 1), ('paul', 1), ('minnesota', 1), ('usa', 1), ('help', 1), ('conjunction', 1)]
[('wabi', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('algorithm', 1), ('bioinformatics', 1), ('held', 1), ('wroclaw', 1), ('poland', 1), ('september', 1), ('seven', 1), ('conference', 1), ('organized', 1), ('part', 1), ('algo', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('european', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('nancy', 1), ('france', 1), ('september', 1), ('revised', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('european', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('nancy', 1), ('france', 1), ('september', 1), ('revised', 1)]
[('agent', 2), ('tremendous', 1), ('interest', 1), ('design', 1), ('application', 1), ('virtually', 1), ('every', 1), ('area', 1), ('including', 1), ('avionics', 1), ('business', 1), ('internet', 1), ('engineering', 1), ('health', 1), ('science', 1), ('management', 1), ('agreed', 1), ('definition', 1), ('define', 1)]
[('cryptology', 2), ('complexity', 2), ('theory', 2), ('modern', 1), ('increasingly', 1), ('employ', 1), ('mathematically', 1), ('rigorous', 1), ('concept', 1), ('method', 1), ('conversely', 1), ('current', 1), ('research', 1), ('topic', 1), ('often', 1), ('motivated', 1), ('question', 1), ('problem', 1), ('book', 1), ('take', 1)]
[('locality', 1), ('fundamental', 1), ('restriction', 1), ('nature', 1), ('hand', 1), ('adaptive', 1), ('complex', 1), ('system', 1), ('life', 1), ('particular', 1), ('exhibit', 1), ('sense', 1), ('permanence', 1), ('time', 1), ('lessness', 1), ('amidst', 1), ('relentless', 1), ('constant', 1), ('change', 1), ('surrounding', 1), ('environment', 1), ('make', 1), ('global', 1)]
[('nan', 1)]
[('modeling', 2), ('simulation', 2), ('book', 1), ('part', 1), ('volume', 1), ('work', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('life', 1), ('system', 1), ('lsms', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('september', 1), ('coverage', 1), ('includes', 1)]
[('nan', 1)]
[('hat', 2), ('und', 2), ('die', 1), ('programmiersprache', 1), ('prolog', 1), ('ihre', 1), ('bewährungsprobe', 1), ('praktischen', 1), ('einsatz', 1), ('bestanden', 1), ('da', 1), ('logische', 1), ('programmieren', 1), ('unter', 1), ('den', 1), ('programmiertechniken', 1), ('seinen', 1), ('festen', 1), ('platz', 1), ('gefunden', 1), ('worin', 1), ('liegen', 1), ('attraktion', 1), ('nutzen', 1), ('de', 1), ('logischen', 1)]
[('der', 2), ('hat', 2), ('gegensatz', 1), ('zum', 1), ('langweiligen', 1), ('dokumentar', 1), ('vergangenheit', 1), ('heute', 1), ('da', 1), ('berufsbild', 1), ('dokumentare', 1), ('ein', 1), ('mehrdimensionales', 1), ('spektrum', 1), ('e', 1), ('beziehungen', 1), ('zu', 1), ('fachwissenschaftlern', 1), ('aller', 1), ('berufszweige', 1), ('unternehmensberatern', 1), ('informatikern', 1), ('und', 1)]
[('soa', 2), ('serviceorientierte', 1), ('architektur', 1), ('kurz', 1), ('da', 1), ('zauberwort', 1), ('modernen', 1), ('unternehmen', 1), ('durch', 1), ('hoffen', 1), ('manager', 1), ('das', 1), ('firmen', 1), ('flexibler', 1), ('agiler', 1), ('einfach', 1), ('schneller', 1), ('und', 1), ('unmittelbar', 1), ('auf', 1), ('kundenwünsche', 1), ('eingehen', 1), ('können', 1), ('der', 1), ('autor', 1), ('zeigt', 1), ('die', 1), ('auswirkungen', 1)]
[('und', 3), ('pm', 2), ('zu', 2), ('projektmanagement', 1), ('wird', 1), ('immer', 1), ('noch', 1), ('selten', 1), ('inkonsequent', 1), ('eingesetzt', 1), ('viele', 1), ('problematische', 1), ('projekte', 1), ('sprechen', 1), ('eine', 1), ('eindeutige', 1), ('sprache', 1), ('kenntnisse', 1), ('de', 1), ('seine', 1), ('anwendungsmöglichkeiten', 1), ('sind', 1), ('für', 1), ('manager', 1), ('entwickler', 1)]
[('und', 3), ('erstes', 1), ('deutschsprachiges', 1), ('buch', 1), ('zum', 1), ('thema', 1), ('entwicklung', 1), ('systemadministration', 1), ('verwenden', 1), ('unterschiedliche', 1), ('methoden', 1), ('verfahren', 1), ('zur', 1), ('performanceanalyse', 1), ('optimierung', 1), ('bricht', 1), ('die', 1), ('performance', 1), ('tatsächlich', 1), ('ein', 1), ('führt', 1), ('dy', 1), ('zu', 1), ('wenig', 1), ('zielführenden', 1)]
[('soa', 2), ('hat', 2), ('sich', 2), ('sie', 2), ('die', 2), ('werden', 2), ('serviceorientierte', 1), ('architektur', 1), ('durchgesetzt', 1), ('wer', 1), ('beherrscht', 1), ('einen', 1), ('wettbewerbsvorteil', 1), ('deshalb', 1), ('stellt', 1), ('meist', 1), ('nicht', 1), ('frage', 1), ('ob', 1), ('angewendet', 1), ('soll', 1), ('sondern', 1), ('wie', 1), ('umgesetzt', 1), ('kann', 1), ('autoren', 1), ('geben', 1), ('anhand', 1)]
[('knowledge', 4), ('management', 1), ('engineering', 1), ('fascinating', 1), ('eld', 1), ('search', 1), ('day', 1), ('beginning', 1), ('ekaw', 1), ('modeling', 1), ('acquisition', 1), ('privilege', 1), ('rather', 1), ('burden', 1), ('engineer', 1)]
[('computerscientistscreatemodelsofaperceivedreality', 1), ('throughaitechniques', 1), ('model', 1), ('aim', 1), ('providing', 1), ('basic', 1), ('support', 1), ('emulating', 1), ('cognitive', 1), ('havior', 1), ('reasoning', 1), ('learning', 1), ('main', 1), ('goal', 1), ('ai', 1), ('research', 1), ('ort', 1)]
[('bioconcur', 2), ('held', 2), ('volume', 1), ('th', 1), ('transaction', 1), ('computational', 1), ('system', 1), ('biology', 1), ('series', 1), ('contains', 1), ('fully', 1), ('refereed', 1), ('carefully', 1), ('selected', 1), ('set', 1), ('paper', 1), ('workshop', 1), ('london', 1), ('uk', 1), ('august', 1), ('san', 1)]
[('international', 2), ('conference', 2), ('book', 1), ('sister', 1), ('volume', 1), ('lnai', 1), ('constitute', 1), ('proce', 1), ('ings', 1), ('second', 1), ('fuzzy', 1), ('system', 1), ('knowledge', 1), ('discovery', 1), ('fskd', 1), ('jointly', 1), ('held', 1), ('first', 1), ('natural', 1)]
[('program', 3), ('promise', 1), ('support', 1), ('human', 1), ('programmer', 1), ('developing', 1), ('correct', 1), ('efficient', 1), ('code', 1), ('reasoning', 1), ('automatic', 1), ('synthesis', 1), ('attracted', 1), ('attention', 1), ('researcher', 1), ('professional', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('information', 1), ('database', 1), ('system', 1), ('aciids', 1), ('held', 1), ('daegu', 1), ('korea', 1), ('april', 1), ('revised', 1), ('paper', 1)]
[('paper', 2), ('volume', 1), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('logic', 1), ('programming', 1), ('nonmonotonic', 1), ('reasoning', 1), ('lpnmr', 1), ('held', 1), ('vancouver', 1), ('canada', 1), ('revised', 1), ('full', 1), ('technical', 1), ('application', 1)]
[('paper', 2), ('festschrift', 1), ('volume', 1), ('published', 1), ('honor', 1), ('michael', 1), ('gelfond', 1), ('occasion', 1), ('th', 1), ('birthday', 1), ('contains', 1), ('collection', 1), ('written', 1), ('closest', 1), ('friend', 1), ('colleague', 1), ('several', 1), ('presented', 1), ('symposium', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('workshop', 1), ('logic', 1), ('language', 1), ('information', 1), ('communication', 1), ('wollic', 1), ('held', 1), ('philadelphia', 1), ('pa', 1), ('usa', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('bioinformatics', 1), ('research', 1), ('application', 1), ('isbra', 1), ('held', 1), ('changsha', 1), ('china', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('proceeding', 2), ('lnai', 1), ('volume', 1), ('constitute', 1), ('th', 1), ('international', 1), ('conference', 1), ('hybrid', 1), ('artificial', 1), ('intelligent', 1), ('system', 1), ('hais', 1), ('held', 1), ('wroclaw', 1), ('poland', 1), ('paper', 1), ('published', 1)]
[('proceeding', 2), ('lnai', 1), ('volume', 1), ('constitute', 1), ('th', 1), ('international', 1), ('conference', 1), ('hybrid', 1), ('artificial', 1), ('intelligent', 1), ('system', 1), ('hais', 1), ('held', 1), ('wroclaw', 1), ('poland', 1), ('paper', 1), ('published', 1)]
[('aspect', 2), ('regular', 2), ('paper', 2), ('volume', 1), ('th', 1), ('transaction', 1), ('oriented', 1), ('software', 1), ('development', 1), ('series', 1), ('contains', 1), ('submission', 1), ('special', 1), ('section', 1), ('consisting', 1), ('five', 1), ('industrial', 1), ('application', 1), ('technology', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('general', 1), ('intelligence', 1), ('agi', 1), ('held', 1), ('mountain', 1), ('view', 1), ('ca', 1), ('usa', 1), ('august', 1), ('revised', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('industrial', 1), ('conference', 1), ('data', 1), ('mining', 1), ('icdm', 1), ('held', 1), ('new', 1), ('york', 1), ('usa', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('nan', 1)]
[('data', 2), ('semantics', 2), ('lncs', 1), ('journal', 1), ('devoted', 1), ('presentation', 1), ('notable', 1), ('work', 1), ('address', 1), ('research', 1), ('development', 1), ('issue', 1), ('related', 1), ('based', 1), ('highly', 1), ('visible', 1), ('publication', 1), ('platform', 1), ('lecture', 1), ('note', 1), ('computer', 1), ('science', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('data', 2), ('volume', 1), ('provides', 1), ('snapshot', 1), ('current', 1), ('state', 1), ('art', 1), ('mining', 1), ('presenting', 1), ('term', 1), ('technical', 1), ('development', 1), ('industrial', 1), ('application', 1), ('collection', 1), ('chapter', 1), ('based', 1), ('work', 1), ('presented', 1), ('australasian', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('modeling', 1), ('decision', 1), ('artificial', 1), ('intelligence', 1), ('mdai', 1), ('held', 1), ('tarragona', 1), ('spain', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('commemorating', 1), ('th', 1), ('anniversary', 1), ('first', 1), ('time', 1), ('mathematical', 1), ('theorem', 1), ('proven', 1), ('computer', 1), ('system', 1), ('freek', 1), ('wiedijk', 1), ('initiated', 1), ('present', 1), ('book', 1), ('inviting', 1), ('formalization', 1), ('proof', 1), ('irrationality', 1), ('square', 1), ('root', 1)]
[('nan', 1)]
[('paper', 2), ('revised', 1), ('full', 1), ('presented', 1), ('book', 1), ('together', 1), ('section', 1), ('survey', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('contributed', 1), ('th', 1), ('international', 1), ('conference', 1), ('application', 1), ('prolog', 1), ('inap', 1), ('held', 1), ('tokyo', 1), ('japan', 1)]
[('nan', 1)]
[('nan', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('data', 1), ('integration', 1), ('life', 1), ('science', 1), ('dils', 1), ('held', 1), ('hinxton', 1), ('uk', 1), ('july', 1), ('present', 1), ('full', 1), ('short', 1), ('together', 1)]
[('book', 2), ('revised', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('case', 1), ('based', 1), ('reasoning', 1), ('eccbr', 1), ('held', 1), ('fethiye', 1), ('turkey', 1), ('september', 1), ('present', 1), ('full', 1), ('application', 1), ('together', 1)]
[('iva', 2), ('volume', 1), ('containing', 1), ('proceeding', 1), ('held', 1), ('kloster', 1), ('irsee', 1), ('germany', 1), ('september', 1), ('testimony', 1), ('growing', 1), ('importance', 1), ('intelligentvirtualagents', 1), ('asaresearch', 1), ('eld', 1), ('wereceived', 1), ('submission', 1), ('nearly', 1), ('twice', 1), ('many', 1)]
[('workshoptheme', 1), ('digital', 1), ('multimedia', 1), ('di', 1), ('er', 1), ('previous', 1), ('form', 1), ('combined', 1), ('medium', 1), ('bit', 1), ('represent', 1), ('text', 1), ('image', 1), ('animation', 1), ('audio', 1), ('video', 1), ('signal', 1), ('treated', 1), ('data', 1), ('computer', 1), ('program', 1), ('facet', 1), ('diverse', 1)]
[('knowledge', 2), ('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('engineering', 1), ('management', 1), ('ekaw', 1), ('held', 1), ('juan', 1), ('le', 1), ('pin', 1), ('france', 1), ('october', 1), ('full', 1), ('six', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('engineering', 1), ('society', 1), ('agent', 1), ('world', 1), ('esaw', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('computing', 2), ('new', 2), ('research', 2), ('affective', 1), ('fascinating', 1), ('area', 1), ('emerging', 1), ('computer', 1), ('science', 1), ('dwells', 1), ('problem', 1), ('related', 1), ('arises', 1), ('deliberately', 1), ('influence', 1), ('emotion', 1), ('picard', 1), ('following', 1), ('direction', 1)]
[('nan', 1)]
[('nan', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('hellenic', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('setn', 1), ('held', 1), ('thessaloniki', 1), ('greece', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('contribution', 1)]
[('book', 2), ('revised', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('principle', 1), ('practice', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('pkdd', 1), ('present', 1), ('full', 1), ('short', 1), ('together', 1), ('abstract', 1)]
[('nan', 1)]
[('software', 3), ('construction', 2), ('complexity', 1), ('increase', 1), ('researcher', 1), ('practicioners', 1), ('continue', 1), ('seek', 1), ('better', 1), ('technique', 1), ('engineering', 1), ('evolution', 1), ('partial', 1), ('evaluation', 1), ('attractive', 1), ('technology', 1), ('modern', 1)]
[('nan', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('mining', 1), ('complex', 1), ('data', 1), ('mcd', 1), ('held', 1), ('warsaw', 1), ('poland', 1), ('september', 1), ('co', 1), ('located', 1), ('ecml', 1), ('pkdd', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('th', 2), ('international', 2), ('peer', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('workshop', 1), ('agent', 1), ('computing', 1), ('ap', 1), ('pc', 1), ('held', 1), ('utrecht', 1), ('netherlands', 1), ('july', 1), ('context', 1), ('joint', 1), ('conference', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('application', 1), ('declarative', 1), ('programming', 1), ('knowledge', 1), ('management', 1), ('inap', 1), ('held', 1), ('fukuoka', 1), ('japan', 1), ('october', 1), ('paper', 1), ('address', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('logic', 1), ('programming', 1), ('nonmonotonic', 1), ('reasoning', 1), ('lpnmr', 1), ('held', 1), ('tempe', 1), ('az', 1), ('usa', 1), ('encompasses', 1), ('theoretical', 1), ('study', 1), ('design', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('scalable', 1), ('uncertainty', 1), ('management', 1), ('sum', 1), ('held', 1), ('naples', 1), ('italy', 1), ('oktober', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('extended', 1), ('abstract', 1)]
[('conference', 2), ('ibero', 2), ('american', 2), ('iberamia', 1), ('international', 1), ('series', 1), ('art', 1), ('cialintelligencecommunitythathasbeenmeetingeverytwoyearssincethe', 1), ('meeting', 1), ('barcelona', 1), ('supported', 1), ('main', 1), ('society', 1), ('ai', 1)]
[('argumentation', 2), ('agent', 2), ('last', 1), ('decade', 1), ('gaining', 1), ('importance', 1), ('within', 1), ('artificial', 1), ('intelligence', 1), ('especially', 1), ('multi', 1), ('system', 1), ('powerful', 1), ('mechanism', 1), ('modelling', 1), ('internal', 1), ('reasoning', 1), ('provides', 1), ('tool', 1)]
[('workshop', 2), ('logic', 2), ('language', 2), ('volume', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('wollic', 1), ('th', 1), ('information', 1), ('computation', 1), ('held', 1), ('july', 1), ('campus', 1), ('universidade', 1), ('de', 1), ('bra', 1), ('lia', 1), ('unb', 1), ('brazil', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('biomimetic', 1), ('biohybrid', 1), ('system', 1), ('living', 1), ('machine', 1), ('held', 1), ('london', 1), ('uk', 1), ('july', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('pakdd', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('affiliated', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('held', 1), ('gold', 1), ('coast', 1), ('australia', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('flexible', 1), ('query', 1), ('answering', 1), ('system', 1), ('fqas', 1), ('held', 1), ('granada', 1), ('spain', 1), ('september', 1), ('full', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('context', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('interdisciplinary', 1), ('conference', 1), ('modeling', 1), ('using', 1), ('held', 1), ('annecy', 1), ('france', 1), ('october', 1), ('november', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('bioinformatics', 1), ('defined', 1), ('application', 1), ('computer', 1), ('science', 1), ('information', 1), ('technology', 1), ('field', 1), ('biology', 1), ('medicine', 1), ('rapidly', 1), ('developing', 1), ('past', 1), ('decade', 1), ('generates', 1), ('new', 1), ('knowledge', 1)]
[('nan', 1)]
[('nan', 1)]
[('die', 2), ('objektorientierter', 2), ('da', 1), ('vorliegende', 1), ('lehrbuch', 1), ('setzt', 1), ('ersten', 1), ('band', 1), ('begonnene', 1), ('einführung', 1), ('informatik', 1), ('mit', 1), ('der', 1), ('behandlung', 1), ('de', 1), ('zustandsbegriffs', 1), ('beispiel', 1), ('systeme', 1), ('fort', 1), ('e', 1), ('vermittelt', 1), ('kenntnisse', 1), ('imperativer', 1), ('und', 1)]
[('word', 1), ('consensus', 1), ('frequently', 1), ('used', 1), ('century', 1), ('perhaps', 1), ('millenia', 1), ('always', 1), ('deemed', 1), ('important', 1), ('decision', 1), ('long', 1), ('lasting', 1), ('impact', 1), ('group', 1), ('country', 1), ('even', 1), ('civilization', 1), ('arrived', 1), ('consensual', 1), ('manner', 1)]
[('intelligent', 4), ('hybrid', 2), ('system', 2), ('fuzzy', 2), ('logic', 2), ('describe', 1), ('book', 1), ('based', 1), ('mainly', 1), ('type', 1), ('control', 1), ('combine', 1), ('several', 1), ('computing', 1), ('paradigm', 1), ('including', 1), ('bio', 1), ('inspired', 1), ('optimization', 1)]
[('soft', 2), ('computing', 2), ('application', 2), ('sc', 2), ('business', 1), ('economics', 1), ('short', 1), ('work', 1), ('whose', 1), ('importance', 1), ('hard', 1), ('exaggerate', 1), ('authored', 1), ('leading', 1), ('contributor', 1), ('sequel', 1), ('earlier', 1), ('book', 1)]
[('counting', 1), ('belongs', 1), ('elementary', 1), ('frequent', 1), ('mental', 1), ('activity', 1), ('human', 1), ('being', 1), ('result', 1), ('basis', 1), ('coming', 1), ('decision', 1), ('lot', 1), ('situation', 1), ('dimension', 1), ('life', 1), ('book', 1), ('present', 1), ('novel', 1), ('approach', 1), ('advanced', 1)]
[('suchmaschinen', 2), ('da', 2), ('internet', 2), ('stellen', 1), ('meisten', 1), ('genutzte', 1), ('hilfsmittel', 1), ('dar', 1), ('um', 1), ('informationen', 1), ('dienstleistungen', 1), ('und', 1), ('produkte', 1), ('zu', 1), ('finden', 1), ('aller', 1), ('user', 1), ('beginnen', 1), ('ihre', 1), ('suche', 1), ('über', 1), ('größte', 1), ('problem', 1), ('für', 1), ('contentanbieter', 1), ('ist', 1)]
[('und', 2), ('die', 2), ('schwerpunkte', 1), ('diesis', 1), ('lehrbuchs', 1), ('sind', 1), ('der', 1), ('entwurf', 1), ('entwicklung', 1), ('einfacher', 1), ('datenbankanwendungen', 1), ('zunächst', 1), ('wird', 1), ('beispiel', 1), ('typischer', 1), ('datenstrukturen', 1), ('algorithmen', 1), ('verwaltung', 1), ('unverbundener', 1), ('dateien', 1), ('behandelt', 1), ('anschließend', 1), ('folgt', 1), ('ausgehend', 1)]
[('der', 4), ('und', 2), ('da', 1), ('vorliegende', 1), ('buch', 1), ('gibt', 1), ('zunächst', 1), ('eine', 1), ('darstellung', 1), ('grundlegenden', 1), ('prinzipien', 1), ('mikrocontroller', 1), ('mikroprozessoren', 1), ('anschließend', 1), ('wird', 1), ('detailliert', 1), ('neueste', 1), ('stand', 1), ('technik', 1), ('dieser', 1), ('hardware', 1), ('bausteine', 1), ('erläutert', 1), ('e', 1), ('werden', 1), ('alle', 1)]
[('eine', 2), ('electronic', 2), ('und', 2), ('der', 1), ('leser', 1), ('erhält', 1), ('mit', 1), ('diesem', 1), ('buch', 1), ('umfassende', 1), ('darstellung', 1), ('aktueller', 1), ('entwicklungen', 1), ('bei', 1), ('business', 1), ('commerce', 1), ('systemen', 1), ('vier', 1), ('schwerpunkte', 1), ('werden', 1), ('systematisch', 1), ('dargestellt', 1), ('globale', 1), ('gut', 1), ('verständliche', 1), ('einführung', 1), ('die', 1)]
[('der', 5), ('die', 2), ('und', 2), ('mit', 1), ('dem', 1), ('vorliegenden', 1), ('werk', 1), ('stellt', 1), ('autor', 1), ('grundlagen', 1), ('digitaltechnik', 1), ('für', 1), ('studenten', 1), ('informatik', 1), ('elektrotechnik', 1), ('verständlich', 1), ('dar', 1), ('ausgehend', 1), ('von', 1), ('den', 1), ('grundschaltungen', 1), ('kann', 1), ('sich', 1), ('nutzer', 1), ('verschiedenen', 1), ('schaltungen', 1)]
[('information', 1), ('handling', 1), ('system', 1), ('complex', 1), ('becomes', 1), ('increasingly', 1), ('difficult', 1), ('manage', 1), ('using', 1), ('traditional', 1), ('approach', 1), ('based', 1), ('centralized', 1), ('pre', 1), ('defined', 1), ('control', 1), ('mechanism', 1), ('recent', 1), ('year', 1), ('significant', 1)]
[('die', 3), ('ein', 2), ('für', 2), ('da', 1), ('lehrbuch', 1), ('führt', 1), ('umfassend', 1), ('verschiedenen', 1), ('übersetzungstechniken', 1), ('praxisteil', 1), ('entwickeln', 1), ('autoren', 1), ('spezifikation', 1), ('eines', 1), ('übersetzers', 1), ('java', 1), ('sie', 1), ('kann', 1), ('al', 1), ('eingabe', 1), ('einen', 1), ('übersetzergenerator', 1), ('verwendet', 1), ('werden', 1), ('der', 1), ('daraus', 1)]
[('software', 3), ('da', 1), ('buch', 1), ('behandelt', 1), ('prinzipien', 1), ('und', 1), ('methoden', 1), ('der', 1), ('entwicklung', 1), ('für', 1), ('kommunikationsnetze', 1), ('basierend', 1), ('auf', 1), ('praktischen', 1), ('erfahrungen', 1), ('au', 1), ('einer', 1), ('reihe', 1), ('von', 1), ('projekten', 1), ('die', 1), ('spezifischen', 1), ('merkmale', 1), ('dieser', 1), ('sind', 1), ('parallele', 1), ('abläufe', 1)]
[('future', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('ifip', 1), ('wg', 1), ('working', 1), ('conference', 1), ('researching', 1), ('held', 1), ('turku', 1), ('finland', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('panel', 1), ('workshop', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('summer', 1), ('school', 1), ('held', 1), ('trento', 1), ('italy', 1), ('september', 1), ('revised', 1), ('paper', 1), ('carefully', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('application', 1), ('innovation', 1), ('aiai', 1), ('held', 1), ('paphos', 1), ('cyprus', 1), ('september', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('collection', 1), ('thoroughly', 1), ('refereed', 1), ('presented', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('conference', 1), ('system', 1), ('modeling', 1), ('optimization', 1), ('held', 1), ('klagenfurt', 1), ('austria', 1), ('september', 1), ('revised', 1), ('carefully', 1), ('selected', 1), ('numerous', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('business', 1), ('service', 1), ('society', 1), ('held', 1), ('sanya', 1), ('china', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('reasoning', 2), ('cbr', 2), ('support', 2), ('case', 1), ('based', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('technique', 1), ('capability', 1), ('learning', 1), ('advanced', 1), ('decision', 1), ('system', 1), ('exploit', 1), ('specific', 1), ('knowledge', 1), ('collected', 1), ('previously', 1), ('encountered', 1), ('solved', 1)]
[('rapid', 1), ('expansion', 1), ('internet', 1), ('last', 1), ('year', 1), ('event', 1), ('based', 1), ('distributed', 1), ('system', 1), ('playing', 1), ('increasingly', 1), ('important', 1), ('role', 1), ('broad', 1), ('range', 1), ('application', 1), ('domain', 1), ('including', 1), ('enterprise', 1), ('management', 1), ('environmental', 1), ('monitoring', 1)]
[('problem', 2), ('computational', 1), ('intelligence', 1), ('ci', 1), ('community', 1), ('developed', 1), ('hundred', 1), ('algorithm', 1), ('intelligent', 1), ('data', 1), ('analysis', 1), ('still', 1), ('many', 1), ('hard', 1), ('computer', 1), ('vision', 1), ('signal', 1), ('processing', 1), ('text', 1), ('multimedia', 1), ('understanding', 1), ('require', 1), ('deep', 1)]
[('computational', 2), ('intelligence', 2), ('series', 1), ('study', 1), ('sci', 1), ('publishes', 1), ('new', 1), ('development', 1), ('advance', 1), ('various', 1), ('area', 1), ('quickly', 1), ('high', 1), ('quality', 1), ('intent', 1), ('cover', 1), ('theory', 1), ('application', 1), ('design', 1)]
[('scientific', 2), ('book', 1), ('selection', 1), ('result', 1), ('obtained', 1), ('within', 1), ('year', 1), ('research', 1), ('performed', 1), ('synat', 1), ('nation', 1), ('wide', 1), ('project', 1), ('aiming', 1), ('create', 1), ('infrastructure', 1), ('content', 1), ('storage', 1), ('sharing', 1), ('academia', 1), ('education', 1), ('open', 1)]
[('microwave', 3), ('design', 2), ('component', 2), ('growing', 1), ('commercial', 1), ('market', 1), ('millimeter', 1), ('wave', 1), ('industry', 1), ('past', 1), ('decade', 1), ('led', 1), ('explosion', 1), ('interest', 1), ('opportunity', 1), ('development', 1)]
[('interaction', 2), ('computer', 2), ('agent', 1), ('centric', 1), ('theory', 1), ('approach', 1), ('technology', 1), ('contributing', 1), ('enrich', 1), ('user', 1), ('book', 1), ('aim', 1), ('highlighting', 1), ('influence', 1), ('agency', 1), ('perspective', 1), ('human', 1), ('careful', 1)]
[('research', 2), ('area', 2), ('book', 2), ('applying', 1), ('computational', 1), ('intelligence', 1), ('product', 1), ('design', 1), ('fast', 1), ('growing', 1), ('promising', 1), ('computer', 1), ('science', 1), ('industrial', 1), ('engineering', 1), ('currently', 1), ('lack', 1), ('discus', 1)]
[('purpose', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('information', 1), ('science', 1), ('snpd', 1), ('held', 1), ('august', 1), ('kyoto', 1), ('japan', 1), ('bring', 1), ('together', 1), ('researcher', 1), ('scientist', 1), ('businessmen', 1), ('entrepreneur', 1), ('teacher', 1), ('student', 1)]
[('intelligent', 2), ('soft', 2), ('computing', 2), ('book', 1), ('present', 1), ('recent', 1), ('advance', 1), ('hybrid', 1), ('system', 1), ('using', 1), ('technique', 1), ('control', 1), ('robotics', 1), ('pattern', 1), ('recognition', 1), ('time', 1), ('series', 1), ('prediction', 1), ('optimization', 1), ('complex', 1), ('problem', 1), ('sc', 1), ('consists', 1)]
[('book', 1), ('introduces', 1), ('approach', 1), ('potential', 1), ('transform', 1), ('daily', 1), ('practice', 1), ('psychiatrist', 1), ('psychologist', 1), ('includes', 1), ('asynchronous', 1), ('communication', 1), ('mental', 1), ('health', 1), ('care', 1), ('provider', 1), ('client', 1), ('automation', 1)]
[('decision', 3), ('volume', 1), ('delivers', 1), ('wealth', 1), ('effective', 1), ('method', 1), ('deal', 1), ('various', 1), ('type', 1), ('uncertainty', 1), ('inherently', 1), ('existing', 1), ('human', 1), ('centric', 1), ('problem', 1), ('elaborates', 1), ('comprehensive', 1), ('framework', 1), ('handle', 1), ('different', 1), ('scenario', 1)]
[('nan', 1)]
[('agent', 2), ('ai', 2), ('complete', 1), ('course', 1), ('intelligent', 1), ('focus', 1), ('contemporary', 1), ('latest', 1), ('technology', 1), ('nbsp', 1), ('developmentcompanion', 1), ('technical', 1), ('reference', 1), ('developer', 1), ('researcher', 1), ('adopt', 1), ('ijadk', 1), ('toolkit', 1), ('develop', 1)]
[('contribution', 1), ('leading', 1), ('scientist', 1), ('field', 1), ('book', 1), ('give', 1), ('first', 1), ('comprehensive', 1), ('overview', 1), ('result', 1), ('seminal', 1), ('smartkom', 1), ('project', 1), ('advanced', 1), ('multimodal', 1), ('dialogue', 1), ('system', 1), ('worldwide', 1)]
[('first', 2), ('algebraic', 2), ('graph', 2), ('textbook', 1), ('treatment', 1), ('approach', 1), ('transformation', 1), ('based', 1), ('structure', 1), ('category', 1), ('theory', 1), ('contains', 1), ('introduction', 1), ('classical', 1), ('basic', 1), ('advanced', 1), ('result', 1), ('shown', 1), ('abstract', 1)]
[('conference', 2), ('held', 2), ('volume', 1), ('present', 1), ('result', 1), ('international', 1), ('meshing', 1), ('roundtable', 1), ('organized', 1), ('sandia', 1), ('national', 1), ('laboratory', 1), ('september', 1), ('annually', 1), ('inception', 1), ('eleven', 1), ('year', 1), ('ago', 1), ('become', 1), ('widely', 1), ('recognized', 1)]
[('comprehensive', 1), ('book', 1), ('give', 1), ('date', 1), ('survey', 1), ('relevant', 1), ('bioinspired', 1), ('computing', 1), ('research', 1), ('field', 1), ('evolutionary', 1), ('computation', 1), ('artificial', 1), ('life', 1), ('swarm', 1), ('intelligence', 1), ('ant', 1), ('colony', 1), ('algorithm', 1), ('examines', 1), ('application', 1), ('art', 1), ('music', 1)]
[('mit', 2), ('framemaker', 2), ('da', 1), ('buch', 1), ('führt', 1), ('praxisnah', 1), ('die', 1), ('arbeit', 1), ('adobe', 1), ('ein', 1), ('dabei', 1), ('profitieren', 1), ('leser', 1), ('von', 1), ('der', 1), ('mehrjährigen', 1), ('erfahrung', 1), ('de', 1), ('autors', 1), ('schulungen', 1), ('sie', 1), ('erhalten', 1), ('präzise', 1), ('anleitungen', 1), ('und', 1), ('entscheidende', 1), ('tipps', 1), ('dazu', 1), ('wie', 1), ('dokumente', 1)]
[('information', 2), ('mathematics', 2), ('algorithmic', 1), ('theory', 1), ('treat', 1), ('many', 1), ('important', 1), ('area', 1), ('digital', 1), ('processing', 1), ('written', 1), ('learn', 1), ('book', 1), ('concrete', 1), ('teacher', 1), ('student', 1), ('practitioner', 1), ('electronic', 1)]
[('der', 2), ('die', 2), ('sechs', 1), ('jahre', 1), ('nach', 1), ('erscheinen', 1), ('de', 1), ('kompendiums', 1), ('liegt', 1), ('mit', 1), ('auflage', 1), ('ein', 1), ('gestalterisch', 1), ('und', 1), ('inhaltlich', 1), ('generalüberholtes', 1), ('buch', 1), ('vor', 1), ('verwendung', 1), ('einer', 1), ('zeitgemäßen', 1), ('schrift', 1), ('sowie', 1), ('zweispaltige', 1), ('anordnung', 1), ('texte', 1), ('gewährleisten', 1), ('eine', 1)]
[('und', 2), ('präsentationsmedien', 1), ('techniken', 1), ('sind', 1), ('fester', 1), ('bestandteil', 1), ('der', 1), ('abschlussprüfungen', 1), ('zeugnisse', 1), ('fast', 1), ('allen', 1), ('schulen', 1), ('sowohl', 1), ('schüler', 1), ('al', 1), ('auch', 1), ('lehrer', 1), ('sollten', 1), ('informationen', 1), ('mit', 1), ('hilfe', 1), ('moderner', 1), ('medien', 1), ('ansprechend', 1), ('visualisieren', 1), ('können', 1), ('denn', 1)]
[('semantische', 1), ('technologien', 1), ('werden', 1), ('al', 1), ('die', 1), ('zukünftige', 1), ('form', 1), ('menschlichen', 1), ('wissens', 1), ('gehandelt', 1), ('gleichzeitig', 1), ('haftet', 1), ('ihnen', 1), ('etwas', 1), ('von', 1), ('einer', 1), ('geheimwissenschaft', 1), ('diesis', 1), ('kompendium', 1), ('bietet', 1), ('eine', 1), ('auch', 1), ('für', 1), ('einsteiger', 1), ('verständliche', 1), ('einführung', 1), ('da', 1), ('thema', 1)]
[('contribution', 1), ('numerous', 1), ('expert', 1)]
[('quantum', 2), ('computing', 2), ('mika', 1), ('hirvensalo', 1), ('map', 1), ('new', 1), ('multidisciplinary', 1), ('research', 1), ('area', 1), ('text', 1), ('contains', 1), ('introduction', 1), ('important', 1), ('recent', 1), ('result', 1), ('topic', 1), ('presentation', 1), ('uniform', 1), ('computer', 1)]
[('und', 3), ('macromedia', 1), ('director', 1), ('ist', 1), ('da', 1), ('führende', 1), ('autorenprogramm', 1), ('auf', 1), ('macintosh', 1), ('window', 1), ('rechnern', 1), ('zur', 1), ('erzeugung', 1), ('von', 1), ('interaktiven', 1), ('multimedia', 1), ('anwendungen', 1), ('für', 1), ('cd', 1), ('rom', 1), ('internet', 1), ('mit', 1), ('diesem', 1), ('buch', 1), ('lernen', 1), ('sie', 1), ('die', 1), ('möglichkeiten', 1), ('der', 1), ('aktuellen', 1), ('version', 1)]
[('von', 2), ('und', 2), ('die', 1), ('verbindung', 1), ('digitaler', 1), ('bildaufnahme', 1), ('weiterverarbeitung', 1), ('bildausgabe', 1), ('eröffnet', 1), ('kreative', 1), ('auch', 1), ('wirtschaftliche', 1), ('nutzungsmöglichkeiten', 1), ('für', 1), ('zahlreiche', 1), ('berufsgruppen', 1), ('digitale', 1), ('kameratechnik', 1), ('behandelt', 1), ('alle', 1), ('aspekte', 1), ('der', 1), ('digitalen', 1), ('kamera', 1), ('den', 1)]
[('von', 2), ('based', 2), ('training', 2), ('praxisorientierte', 1), ('anleitung', 1), ('zur', 1), ('nutzbringenden', 1), ('planung', 1), ('und', 1), ('umsetzung', 1), ('wissensmanagement', 1), ('unternehmen', 1), ('sie', 1), ('beschreibt', 1), ('wissensvermittlung', 1), ('mit', 1), ('hilfe', 1), ('printmedien', 1), ('computer', 1), ('cbt', 1), ('web', 1), ('wbt', 1), ('interaktivem', 1), ('business', 1)]
[('interpretation', 2), ('human', 1), ('extraordinary', 1), ('capability', 1), ('combine', 1), ('different', 1), ('type', 1), ('information', 1), ('single', 1), ('meaningful', 1), ('quickness', 1), ('process', 1), ('evolve', 1), ('suggests', 1), ('existence', 1), ('uniform', 1), ('procedure', 1), ('domain', 1)]
[('self', 5), ('organisation', 1), ('regulation', 1), ('repair', 1), ('maintenance', 1), ('promising', 1), ('conceptual', 1), ('approach', 1), ('dealing', 1), ('complex', 1), ('distributed', 1), ('interactive', 1), ('software', 1), ('information', 1), ('handling', 1), ('system', 1), ('organising', 1), ('application', 1), ('dynamically', 1), ('change', 1)]
[('net', 3), ('theoretical', 2), ('cp', 2), ('book', 1), ('present', 1), ('coherent', 1), ('description', 1), ('practical', 1), ('aspect', 1), ('coloured', 1), ('petri', 1), ('cpn', 1), ('show', 1), ('de', 1), ('veloped', 1), ('promising', 1), ('model', 1), ('full', 1), ('fledged', 1), ('lan', 1), ('guage', 1)]
[('volume', 6), ('second', 1), ('collection', 1), ('structural', 1), ('complexity', 1), ('assumes', 1), ('prerequisite', 1), ('knowledge', 1), ('topic', 1), ('treated', 1), ('present', 1), ('nearly', 1), ('self', 1), ('contained', 1)]
[('evolutionary', 1), ('algorithm', 1), ('ea', 1), ('metaheuristics', 1), ('learn', 1), ('natural', 1), ('collective', 1), ('behavior', 1), ('applied', 1), ('solve', 1), ('optimization', 1), ('problem', 1), ('domain', 1), ('scheduling', 1), ('engineering', 1), ('bioinformatics', 1), ('finance', 1), ('application', 1), ('demand', 1)]
[('kripke', 2), ('text', 1), ('offer', 1), ('extension', 1), ('traditional', 1), ('semantics', 1), ('non', 1), ('classical', 1), ('logic', 1), ('adding', 1), ('notion', 1), ('reactivity', 1), ('reactive', 1), ('model', 1), ('change', 1), ('accessibility', 1), ('relation', 1), ('progress', 1), ('evaluation', 1), ('process', 1), ('formula', 1)]
[('data', 2), ('mining', 2), ('first', 1), ('textbook', 1), ('multi', 1), ('relational', 1), ('inductive', 1), ('logic', 1), ('programming', 1), ('provides', 1), ('complete', 1), ('overview', 1), ('field', 1), ('self', 1), ('contained', 1), ('easily', 1), ('accessible', 1), ('graduate', 1), ('student', 1), ('practitioner', 1), ('machine', 1), ('learning', 1)]
[('ist', 2), ('zu', 2), ('branchenübergreifend', 1), ('eine', 1), ('verlagerung', 1), ('von', 1), ('den', 1), ('klassischen', 1), ('medien', 1), ('hin', 1), ('zur', 1), ('digitalen', 1), ('markenführung', 1), ('beobachten', 1), ('ziel', 1), ('e', 1), ('effektiver', 1), ('messbarer', 1), ('und', 1), ('emotionaler', 1), ('werben', 1), ('da', 1), ('buch', 1), ('behandelt', 1), ('erstmalig', 1), ('alle', 1), ('aspekte', 1), ('eines', 1), ('emotionalisierten', 1)]
[('zero', 3), ('knowledge', 3), ('protocol', 2), ('concurrent', 2), ('book', 2), ('remain', 1), ('many', 1), ('instance', 1), ('executed', 1), ('concurrently', 1), ('called', 1), ('devoted', 1), ('study', 1), ('present', 1), ('construction', 1), ('along', 1)]
[('research', 2), ('service', 1), ('oriented', 1), ('computing', 1), ('emerging', 1), ('factor', 1), ('development', 1), ('organization', 1), ('eu', 1), ('begun', 1), ('project', 1), ('develop', 1), ('industrial', 1), ('strength', 1), ('application', 1), ('book', 1), ('offer', 1), ('thorough', 1), ('practical', 1), ('introduction', 1)]
[('collection', 1), ('paper', 1), ('presented', 1), ('th', 1), ('line', 1), ('world', 1), ('conference', 1), ('soft', 1), ('computing', 1), ('industrial', 1), ('application', 1), ('held', 1), ('september', 1), ('october', 1), ('carefully', 1), ('edited', 1), ('book', 1), ('provides', 1), ('comprehensive', 1), ('overview', 1), ('recent', 1), ('advance', 1)]
[('soco', 2), ('volume', 1), ('advance', 1), ('intelligent', 1), ('soft', 1), ('computing', 1), ('contains', 1), ('accepted', 1), ('pers', 1), ('presented', 1), ('held', 1), ('beautiful', 1), ('historic', 1), ('city', 1), ('guimarães', 1), ('portugal', 1), ('june', 1), ('global', 1), ('purpose', 1), ('conference', 1), ('provide', 1), ('broad', 1)]
[('volume', 2), ('engineering', 2), ('includes', 1), ('set', 1), ('selected', 1), ('paper', 1), ('extended', 1), ('revised', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('knowledge', 1), ('software', 1), ('kese', 1), ('held', 1), ('december', 1), ('shenzhen', 1), ('china', 1), ('provide', 1)]
[('volume', 2), ('paper', 2), ('wtc', 2), ('includes', 1), ('set', 1), ('selected', 1), ('extended', 1), ('revised', 1), ('international', 1), ('conference', 1), ('teaching', 1), ('computational', 1), ('science', 1), ('held', 1), ('december', 1), ('shenzhen', 1), ('china', 1), ('best', 1), ('provide', 1)]
[('computer', 2), ('science', 2), ('intelligent', 2), ('system', 2), ('environment', 2), ('csise', 1), ('integrated', 1), ('conference', 1), ('concentrating', 1), ('focus', 1), ('upon', 1), ('proceeding', 1), ('learn', 1), ('knowledge', 1), ('researcher', 1)]
[('proceeding', 2), ('conference', 2), ('sixth', 1), ('international', 1), ('intelligent', 1), ('system', 1), ('knowledge', 1), ('engineering', 1), ('present', 1), ('selected', 1), ('paper', 1), ('iske', 1), ('held', 1), ('december', 1), ('shanghai', 1), ('china', 1), ('examine', 1), ('original', 1)]
[('international', 2), ('conference', 2), ('information', 2), ('technology', 2), ('agricultural', 2), ('engineering', 2), ('icitae', 2), ('volume', 1), ('comprises', 1), ('paper', 1)]
[('book', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('frontier', 1), ('computer', 1), ('education', 1), ('icfce', 1), ('sanya', 1), ('china', 1), ('december', 1), ('contribution', 1), ('useful', 1), ('researcher', 1), ('software', 1), ('engineer', 1), ('programmer', 1)]
[('mining', 3), ('part', 2), ('data', 2), ('machine', 2), ('learning', 2), ('liu', 1), ('written', 1), ('comprehensive', 1), ('text', 1), ('web', 1), ('consists', 1), ('first', 1), ('cover', 1), ('foundation', 1), ('essential', 1), ('concept', 1), ('algorithm', 1)]
[('computer', 2), ('science', 2), ('information', 2), ('engineering', 2), ('csie', 1), ('integrated', 1), ('conference', 1), ('concentrating', 1), ('focus', 1), ('proceeding', 1), ('learn', 1), ('knowledge', 1), ('researcher', 1), ('around', 1)]
[('second', 1), ('revised', 1), ('edition', 1), ('contains', 1), ('detailed', 1), ('introduction', 1), ('key', 1), ('class', 1), ('intelligent', 1), ('data', 1), ('analysis', 1), ('method', 1), ('twelve', 1), ('coherently', 1), ('written', 1), ('chapter', 1), ('leading', 1), ('expert', 1), ('provide', 1), ('complete', 1), ('coverage', 1), ('core', 1), ('issue', 1), ('first', 1), ('half', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('study', 1), ('institute', 1), ('programming', 1), ('mathematical', 1), ('method', 1), ('held', 1), ('marktoberdorf', 1), ('frg', 1), ('july', 1), ('august', 1)]
[('der', 3), ('die', 1), ('autoren', 1), ('beschreiben', 1), ('au', 1), ('herstellersicht', 1), ('betriebswirtschaftliche', 1), ('technische', 1), ('und', 1), ('technologische', 1), ('aspekte', 1), ('prozessintegration', 1), ('printmedien', 1), ('industrie', 1), ('auf', 1), ('basis', 1), ('de', 1), ('job', 1), ('definition', 1), ('format', 1), ('e', 1), ('ist', 1), ('eine', 1), ('umfassende', 1), ('darstellung', 1), ('thematik', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('study', 1), ('institute', 1), ('fundamental', 1), ('algorithm', 1), ('computer', 1), ('graphic', 1), ('held', 1), ('ilkley', 1), ('yorkshire', 1), ('england', 1), ('march', 1), ('april', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('research', 1), ('workshop', 1), ('designing', 1), ('hypertext', 1), ('hypermedia', 1), ('learning', 1), ('held', 1), ('rottenburg', 1), ('neckar', 1), ('frg', 1), ('july', 1)]
[('software', 2), ('new', 2), ('field', 1), ('engineering', 1), ('characterized', 1), ('speed', 1), ('turbulence', 1), ('many', 1), ('regard', 1), ('idea', 1), ('proposed', 1), ('almost', 1), ('yearly', 1), ('basis', 1), ('live', 1), ('decade', 1), ('longer', 1), ('lightweight', 1), ('development', 1), ('method', 1)]
[('majoreconomicupheavalscanhavethesortofe', 1), ('ectthatschumpeterforesaw', 1), ('yearsagoascreativedestruction', 1), ('inscienceandtechnology', 1), ('equivalentupheavals', 1), ('resultfromeitherscienti', 1), ('crevolutions', 1), ('asobservedbykuhn', 1), ('ortheintroduction', 1), ('christensen', 1), ('call', 1)]
[('information', 2), ('school', 1), ('technology', 1), ('kmutt', 1), ('believe', 1), ('te', 1), ('nology', 1), ('important', 1), ('driver', 1), ('economy', 1), ('social', 1), ('development', 1), ('able', 1), ('better', 1), ('productivity', 1), ('helping', 1), ('save', 1), ('resource', 1), ('giving', 1), ('rise', 1)]
[('nan', 1)]
[('present', 1), ('book', 1), ('includes', 1), ('set', 1), ('selected', 1), ('paper', 1), ('first', 1), ('international', 1), ('conf', 1), ('ence', 1), ('agent', 1), ('artificial', 1), ('intelligence', 1), ('icaart', 1), ('held', 1), ('porto', 1), ('portugal', 1), ('january', 1), ('conference', 1), ('organized', 1), ('simultaneous', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('process', 1), ('aware', 1), ('system', 1), ('pa', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('october', 1), ('revised', 1), ('full', 1), ('short', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('agile', 2), ('software', 2), ('development', 2), ('book', 1), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('xp', 1), ('held', 1), ('malmö', 1), ('sweden', 1), ('last', 1), ('decade', 1), ('seen', 1), ('lean', 1), ('strongly', 1), ('influence', 1)]
[('book', 1), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('modeling', 1), ('simulation', 1), ('engineering', 1), ('economics', 1), ('management', 1), ('m', 1), ('held', 1), ('new', 1), ('rochelle', 1), ('ny', 1), ('usa', 1), ('june', 1), ('event', 1), ('co', 1), ('organized', 1), ('amse', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('eight', 1), ('workshop', 1), ('held', 1), ('gdańsk', 1), ('poland', 1), ('conjunction', 1), ('th', 1), ('conference', 1), ('advanced', 1), ('information', 1), ('system', 1), ('engineering', 1), ('caise', 1), ('june', 1)]
[('agent', 2), ('volume', 1), ('contains', 1), ('thoroughly', 1), ('refereed', 1), ('revised', 1), ('paper', 1), ('detailing', 1), ('recent', 1), ('advance', 1), ('research', 1), ('designing', 1), ('trading', 1), ('mechanism', 1), ('mediated', 1), ('commerce', 1), ('originally', 1), ('presented', 1), ('th', 1), ('international', 1), ('workshop', 1)]
[('competition', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('aimed', 1), ('evaluation', 1), ('assessment', 1), ('ambient', 1), ('assisted', 1), ('living', 1), ('aal', 1), ('system', 1), ('service', 1), ('evaal', 1), ('organized', 1), ('major', 1), ('event', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('transport', 1), ('system', 1), ('telematics', 1), ('tst', 1), ('held', 1), ('katowice', 1), ('ustron', 1), ('poland', 1), ('october', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('volume', 2), ('set', 2), ('ccis', 2), ('asiasim', 2), ('conference', 2), ('three', 1), ('together', 1), ('icsc', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('asia', 1), ('simulation', 1), ('international', 1), ('system', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('sustainable', 1), ('energy', 1), ('environment', 1), ('icsee', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('biomedical', 1), ('engineering', 1), ('system', 1), ('technology', 1), ('biostec', 1), ('held', 1), ('vilamoura', 1), ('portugal', 1), ('february', 1), ('revised', 1)]
[('volume', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('multimedia', 1), ('communication', 1), ('service', 1), ('security', 1), ('mc', 1), ('held', 1), ('krakow', 1), ('poland', 1), ('june', 1), ('full', 1), ('paper', 1), ('included', 1), ('selected', 1)]
[('simulation', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('system', 1), ('asia', 1), ('held', 1), ('singapore', 1), ('november', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1)]
[('ccis', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('fourth', 1), ('international', 1), ('conference', 1), ('information', 1), ('computing', 1), ('application', 1), ('icica', 1), ('held', 1), ('singapore', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('ccis', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('fourth', 1), ('international', 1), ('conference', 1), ('information', 1), ('computing', 1), ('application', 1), ('icica', 1), ('held', 1), ('singapore', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('chinese', 2), ('web', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('seventh', 1), ('semantic', 1), ('symposium', 1), ('second', 1), ('science', 1), ('conference', 1), ('csws', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('nan', 1)]
[('volume', 2), ('ccis', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('ccf', 1), ('chinese', 1), ('conference', 1), ('computer', 1), ('vision', 1), ('ccv', 1), ('held', 1), ('xi', 1), ('china', 1), ('september', 1), ('total', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('bio', 1), ('inspired', 1), ('computing', 1), ('theory', 1), ('application', 1), ('bic', 1), ('ta', 1), ('held', 1), ('hefei', 1), ('china', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('zur', 2), ('und', 2), ('der', 2), ('da', 1), ('buch', 1), ('bietet', 1), ('erstmals', 1), ('einen', 1), ('leitfaden', 1), ('modellierung', 1), ('anpassung', 1), ('einführung', 1), ('de', 1), ('modell', 1), ('gesamte', 1), ('prozess', 1), ('von', 1), ('konzeption', 1), ('bi', 1), ('mitarbeiterschulung', 1), ('wird', 1), ('behandelt', 1), ('beschrieben', 1), ('werden', 1), ('alle', 1), ('wichtigen', 1), ('anpassungsoptionen', 1)]
[('software', 3), ('testing', 2), ('traditionally', 1), ('seen', 1), ('difficult', 1), ('time', 1), ('consuming', 1), ('activity', 1), ('hard', 1), ('embed', 1), ('development', 1), ('process', 1), ('book', 1), ('provides', 1), ('different', 1), ('view', 1), ('explains', 1), ('stakeholder', 1), ('add', 1), ('value', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('computer', 2), ('scientist', 2), ('book', 1), ('good', 1), ('imagine', 1), ('working', 1), ('bioinformatics', 1), ('area', 1), ('bably', 1), ('member', 1), ('highly', 1), ('interdisciplinary', 1), ('team', 1), ('consisting', 1), ('biologist', 1), ('chemist', 1), ('mathematician', 1), ('ranging', 1)]
[('nan', 1)]
[('content', 1), ('book', 1), ('result', 1), ('work', 1), ('experience', 1), ('interdisciplinary', 1), ('strictly', 1), ('european', 1), ('group', 1), ('researcher', 1), ('attempted', 1), ('give', 1), ('birth', 1), ('new', 1), ('fibre', 1), ('communication', 1), ('network', 1), ('concept', 1), ('exploiting', 1), ('potential', 1)]
[('cad', 2), ('development', 2), ('important', 1), ('technology', 1), ('sfor', 1), ('engineering', 1), ('manufacturing', 1), ('world', 1), ('systemscan', 1), ('provide', 1), ('competitive', 1), ('edge', 1), ('newproducts', 1), ('book', 1), ('present', 1)]
[('patient', 2), ('agent', 2), ('looking', 2), ('book', 1), ('provides', 1), ('pioneering', 1), ('approach', 1), ('modeling', 1), ('human', 1), ('diabetic', 1), ('using', 1), ('software', 1), ('based', 1), ('masc', 1), ('master', 1), ('applied', 1), ('science', 1), ('thesis', 1), ('evolution', 1), ('time', 1), ('another', 1)]
[('computer', 2), ('book', 1), ('dedicated', 1), ('memory', 1), ('professor', 1), ('zdzis', 1), ('aw', 1), ('pawlak', 1), ('passed', 1), ('away', 1), ('almost', 1), ('six', 1), ('year', 1), ('ago', 1), ('founder', 1), ('polish', 1), ('school', 1), ('artificial', 1), ('intelligence', 1), ('pioneer', 1), ('engineering', 1), ('science', 1)]
[('computer', 2), ('book', 1), ('dedicated', 1), ('memory', 1), ('professor', 1), ('zdzis', 1), ('aw', 1), ('pawlak', 1), ('passed', 1), ('away', 1), ('almost', 1), ('six', 1), ('year', 1), ('ago', 1), ('founder', 1), ('polish', 1), ('school', 1), ('artificial', 1), ('intelligence', 1), ('pioneer', 1), ('engineering', 1), ('science', 1)]
[('de', 2), ('moderne', 1), ('hochleistungsrechner', 1), ('mit', 1), ('akzeptablem', 1), ('programmieraufwand', 1), ('effizient', 1), ('zu', 1), ('nutzen', 1), ('erfordert', 1), ('eine', 1), ('höhere', 1), ('programmiersprache', 1), ('high', 1), ('performance', 1), ('fortran', 1), ('hpf', 1), ('ein', 1), ('facto', 1), ('standard', 1), ('bereich', 1), ('hochleistungsrechnens', 1), ('ermöglicht', 1), ('die', 1)]
[('und', 3), ('die', 1), ('professionelle', 1), ('visualisierung', 1), ('meteorologischer', 1), ('daten', 1), ('au', 1), ('observationen', 1), ('simulaltionen', 1), ('für', 1), ('ein', 1), ('laienpublikum', 1), ('über', 1), ('fernsehen', 1), ('presse', 1), ('online', 1), ('dienste', 1), ('meteorologen', 1), ('wird', 1), ('diesem', 1), ('band', 1), ('beschrieben', 1), ('neue', 1), ('konzepte', 1), ('verfahren', 1), ('erlauben', 1), ('eine', 1)]
[('der', 3), ('diesem', 2), ('die', 2), ('mit', 1), ('buch', 1), ('sind', 1), ('sie', 1), ('für', 1), ('aufregendste', 1), ('herausforderung', 1), ('graphischen', 1), ('industrie', 1), ('jahrhundert', 1), ('gerüstet', 1), ('digitale', 1), ('druck', 1), ('verändert', 1), ('nicht', 1), ('nur', 1), ('arbeitsschritte', 1), ('arbeitsinhalte', 1), ('und', 1), ('investitionsentscheidungen', 1), ('den', 1), ('vorstufen', 1)]
[('der', 1), ('band', 1), ('bietet', 1), ('eine', 1), ('kompakte', 1), ('einführung', 1), ('die', 1), ('nichtsequentielle', 1), ('programmierung', 1), ('al', 1), ('gemeinsamen', 1), ('kern', 1), ('von', 1), ('vorlesungen', 1), ('über', 1), ('betriebssysteme', 1), ('verteilte', 1), ('systeme', 1), ('parallele', 1), ('algorithmen', 1), ('echtzeitprogrammierung', 1), ('und', 1), ('datenbanktransaktionen', 1), ('basiskonzepte', 1)]
[('neural', 2), ('handbook', 1), ('present', 1), ('recent', 1), ('topic', 1), ('information', 1), ('processing', 1), ('covering', 1), ('theoretical', 1), ('concept', 1), ('practical', 1), ('application', 1), ('contribution', 1), ('include', 1), ('deep', 1), ('architecture', 1), ('recurrent', 1), ('recursive', 1), ('graph', 1), ('network', 1)]
[('breitgefächerter', 1), ('überblick', 1), ('von', 1), ('den', 1), ('mechanischen', 1), ('anfängen', 1), ('de', 1), ('fernsehens', 1), ('bi', 1), ('zur', 1), ('datenreduzierten', 1), ('digitalen', 1), ('fernsehübertragung', 1), ('mit', 1), ('vielen', 1), ('farbigen', 1), ('schirmbildaufnahmen', 1), ('veranschaulicht', 1)]
[('dynamic', 1), ('science', 1), ('concerned', 1), ('movement', 1), ('change', 1), ('general', 1), ('approach', 1), ('relates', 1), ('life', 1), ('process', 1), ('behavior', 1), ('nature', 1), ('rest', 1), ('governs', 1), ('small', 1), ('particle', 1), ('technical', 1), ('object', 1), ('conversion', 1), ('matter', 1), ('material', 1)]
[('einsatz', 2), ('methoden', 2), ('der', 2), ('die', 1), ('zunehmenden', 1), ('fähigkeiten', 1), ('von', 1), ('rechnersystemen', 1), ('ermöglichen', 1), ('den', 1), ('komplexer', 1), ('mathematischer', 1), ('für', 1), ('anwendungen', 1), ('au', 1), ('dem', 1), ('bereich', 1), ('graphischen', 1), ('datenverarbeitung', 1), ('und', 1), ('de', 1), ('computer', 1), ('aided', 1), ('design', 1), ('cad', 1), ('effektive', 1), ('dieser', 1)]
[('da', 3), ('internet', 2), ('al', 1), ('supranationaler', 1), ('raum', 1), ('öffentlichen', 1), ('rechts', 1), ('ist', 1), ('keineswegs', 1), ('rechtsfrei', 1), ('e', 1), ('stellt', 1), ('vielmehr', 1), ('recht', 1), ('vor', 1), ('fragen', 1), ('bisher', 1), ('nicht', 1), ('gekannter', 1), ('komplexität', 1), ('buch', 1), ('behandelt', 1), ('die', 1), ('wichtigsten', 1), ('bereiche', 1), ('kommerzieller', 1), ('nutzung', 1), ('unter', 1), ('dem', 1)]
[('step', 2), ('accessible', 1), ('style', 1), ('appeal', 1), ('professional', 1), ('student', 1), ('layman', 1), ('author', 1), ('explain', 1), ('method', 1), ('creating', 1), ('simulating', 1), ('clothes', 1), ('virtual', 1), ('human', 1), ('using', 1), ('numerous', 1), ('detailed', 1), ('illustration', 1), ('colourful', 1), ('image', 1)]
[('first', 2), ('book', 1), ('primarily', 1), ('dedicated', 1), ('clustering', 1), ('using', 1), ('multiobjective', 1), ('genetic', 1), ('algorithm', 1), ('extensive', 1), ('real', 1), ('life', 1), ('application', 1), ('data', 1), ('mining', 1), ('bioinformatics', 1), ('author', 1), ('offer', 1), ('detailed', 1), ('introduction', 1), ('relevant', 1), ('technique', 1)]
[('conceptual', 1), ('modeling', 1), ('describing', 1), ('semantics', 1), ('software', 1), ('application', 1), ('high', 1), ('level', 1), ('abstraction', 1), ('term', 1), ('structure', 1), ('behavior', 1), ('user', 1), ('interaction', 1), ('embley', 1), ('thalheim', 1), ('start', 1), ('manifesto', 1), ('stating', 1), ('dream', 1), ('developing', 1)]
[('computer', 3), ('development', 1), ('powerful', 1), ('algebra', 1), ('system', 1), ('considerably', 1), ('ex', 1), ('tended', 1), ('scope', 1), ('problem', 1), ('scientific', 1), ('computing', 1), ('solved', 1), ('successfully', 1), ('aid', 1), ('field', 1), ('application', 1)]
[('der', 4), ('zu', 2), ('eines', 1), ('hauptprobleme', 1), ('beim', 1), ('chipentwurf', 1), ('besteht', 1), ('darin', 1), ('daß', 1), ('die', 1), ('anzahl', 1), ('bewältigenden', 1), ('kombinationen', 1), ('einzelnen', 1), ('chipbausteine', 1), ('in', 1), ('unermeßliche', 1), ('steigt', 1), ('hier', 1), ('hat', 1), ('sich', 1), ('eine', 1), ('sehr', 1), ('fruchtbare', 1), ('verbindung', 1), ('einem', 1), ('kerngebiet', 1), ('theoretischen', 1)]
[('methoden', 2), ('von', 2), ('gegenstand', 1), ('de', 1), ('buches', 1), ('sind', 1), ('einer', 1), ('analytischen', 1), ('gewinnung', 1), ('szenenbeschreibungsattributen', 1), ('au', 1), ('zweidimensionalen', 1), ('rasterbildern', 1), ('die', 1), ('dargestellten', 1), ('zur', 1), ('rekonstruktion', 1), ('geometrie', 1), ('textur', 1), ('beleuchtung', 1), ('und', 1), ('bewegung', 1), ('eröffnen', 1), ('neue', 1)]
[('formal', 2), ('language', 2), ('need', 1), ('comprehensive', 1), ('survey', 1), ('type', 1), ('exposition', 1), ('related', 1), ('mainstream', 1), ('area', 1), ('computer', 1), ('science', 1), ('evident', 1), ('year', 1), ('early', 1), ('book', 1), ('second', 1), ('mentioned', 1), ('editor', 1)]
[('von', 2), ('da', 1), ('buch', 1), ('beschreibt', 1), ('konzeption', 1), ('und', 1), ('realisierung', 1), ('vernetzten', 1), ('multimedia', 1), ('pc', 1), ('systemen', 1), ('für', 1), ('den', 1), ('einsatz', 1), ('kooperativen', 1), ('telekommunikationssitzungen', 1), ('ausgehend', 1), ('einer', 1), ('anforderungsanalyse', 1), ('wird', 1), ('unter', 1), ('berücksichtigung', 1), ('informationstheoretischer', 1)]
[('last', 1), ('year', 1), ('protection', 1), ('computerised', 1), ('medical', 1), ('record', 1), ('personal', 1), ('health', 1), ('information', 1), ('become', 1), ('subject', 1), ('technical', 1), ('research', 1), ('political', 1), ('dispute', 1), ('number', 1), ('country', 1), ('britain', 1), ('issue', 1), ('arose', 1)]
[('fortran', 3), ('programmierung', 2), ('da', 1), ('buch', 1), ('beschreibt', 1), ('die', 1), ('programmiersprache', 1), ('eine', 1), ('moderne', 1), ('sichere', 1), ('handliche', 1), ('untermenge', 1), ('von', 1), ('ohne', 1), ('historische', 1), ('altlasten', 1), ('ist', 1), ('methodische', 1), ('weil', 1), ('jedes', 1), ('programm', 1), ('ein', 1), ('gültiges', 1)]
[('die', 4), ('objektorientierte', 1), ('dv', 1), ('systeme', 1), ('gewinnen', 1), ('den', 1), ('er', 1), ('jahren', 1), ('zunehmend', 1), ('bedeutung', 1), ('eigenschaften', 1), ('wie', 1), ('erhöhte', 1), ('wiederverwendbarkeit', 1), ('von', 1), ('softwarebausteinen', 1), ('verringern', 1), ('entwicklungszeit', 1), ('vereinfachen', 1), ('wartung', 1), ('und', 1), ('steigern', 1), ('performance', 1), ('der', 1)]
[('content', 3), ('owner', 2), ('protection', 1), ('digital', 1), ('right', 1), ('management', 1), ('drm', 1), ('field', 1), ('receive', 1), ('lot', 1), ('attention', 1), ('require', 1), ('system', 1), ('protect', 1), ('maximize', 1), ('revenue', 1), ('consumer', 1), ('want', 1), ('backwards', 1), ('compatibility', 1), ('fear', 1)]
[('nan', 1)]
[('nan', 1)]
[('der', 2), ('hypertext', 2), ('hypermedia', 2), ('diesem', 1), ('tagungsband', 1), ('wird', 1), ('eine', 1), ('übersicht', 1), ('über', 1), ('den', 1), ('stand', 1), ('forschung', 1), ('auf', 1), ('dem', 1), ('gebiet', 1), ('gegeben', 1), ('er', 1), ('enthält', 1), ('die', 1), ('gesammelten', 1), ('beiträge', 1), ('si', 1), ('fachtagung', 1), ('vom', 1), ('april', 1), ('basel', 1), ('und', 1), ('de', 1), ('workshop', 1)]
[('nan', 1)]
[('nan', 1)]
[('theory', 2), ('problem', 2), ('present', 1), ('main', 1), ('obstacle', 1), ('broaderapplication', 1), ('expert', 1), ('system', 1), ('lack', 1), ('totell', 1), ('solving', 1), ('method', 1), ('areavailable', 1), ('agiven', 1), ('class', 1), ('lead', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('der', 2), ('bei', 2), ('und', 2), ('ihre', 2), ('auf', 1), ('basis', 1), ('von', 1), ('erhebungen', 1), ('führenden', 1), ('hardware', 1), ('software', 1), ('herstellern', 1), ('sowie', 1), ('anwendern', 1), ('au', 1), ('den', 1), ('reihen', 1), ('deutscher', 1), ('großkonzerne', 1), ('werden', 1), ('die', 1), ('haupttätigkeitsgebiete', 1), ('informatiker', 1), ('erfolgsaussichten', 1), ('aufstiegschancen', 1)]
[('nan', 1)]
[('scientific', 2), ('visualization', 2), ('background', 1), ('group', 1), ('ukexperts', 1), ('associated', 1), ('application', 1), ('gathered', 1), ('cosener', 1), ('house', 1), ('abingdon', 1), ('oxford', 1), ('shire', 1), ('uk', 1), ('february', 1), ('consider', 1), ('aspect', 1), ('produce', 1)]
[('language', 3), ('technology', 2), ('white', 1), ('paper', 1), ('part', 1), ('series', 1), ('promotes', 1), ('knowledge', 1), ('potential', 1), ('address', 1), ('educator', 1), ('journalist', 1), ('politician', 1), ('community', 1), ('others', 1), ('availability', 1), ('use', 1), ('europe', 1)]
[('language', 3), ('technology', 2), ('white', 1), ('paper', 1), ('part', 1), ('series', 1), ('promotes', 1), ('knowledge', 1), ('potential', 1), ('address', 1), ('educator', 1), ('journalist', 1), ('politician', 1), ('community', 1), ('others', 1), ('availability', 1), ('use', 1), ('europe', 1)]
[('nan', 1)]
[('nan', 1)]
[('problem', 2), ('common', 2), ('graphic', 1), ('robotics', 1), ('covered', 1), ('reviewed', 1), ('selection', 1), ('paper', 1), ('written', 1), ('following', 1), ('workshop', 1), ('leading', 1), ('expert', 1), ('discipline', 1), ('met', 1), ('identify', 1), ('present', 1), ('new', 1), ('solution', 1), ('discus', 1), ('future', 1)]
[('der', 3), ('und', 3), ('auf', 2), ('visualworks', 1), ('ist', 1), ('ein', 1), ('software', 1), ('entwicklungssystem', 1), ('da', 1), ('technik', 1), ('objektorientierten', 1), ('programmierung', 1), ('oop', 1), ('programmiersprache', 1), ('smalltalk', 1), ('basiert', 1), ('mittlerweile', 1), ('vielen', 1), ('leistungsfähigen', 1), ('kleinrechnern', 1), ('workstation', 1), ('verfügbar', 1)]
[('nan', 1)]
[('book', 2), ('highlight', 1), ('potential', 1), ('getting', 1), ('benefit', 1), ('various', 1), ('application', 1), ('computational', 1), ('intelligence', 1), ('technique', 1), ('present', 1), ('structured', 1), ('include', 1), ('set', 1), ('selected', 1), ('extended', 1), ('paper', 1), ('th', 1), ('iee', 1), ('international', 1)]
[('development', 2), ('volume', 1), ('cover', 1), ('state', 1), ('art', 1), ('research', 1), ('various', 1), ('aspect', 1), ('computational', 1), ('intelligence', 1), ('give', 1), ('perspective', 1), ('direction', 1), ('except', 1), ('traditional', 1), ('engineering', 1), ('area', 1), ('contain', 1), ('theoretical', 1)]
[('der', 2), ('und', 2), ('diesis', 1), ('bestens', 1), ('eingeführte', 1), ('lehrbuch', 1), ('wendet', 1), ('sich', 1), ('studierende', 1), ('informatik', 1), ('grund', 1), ('hauptstudium', 1), ('e', 1), ('behandelt', 1), ('gut', 1), ('verständlich', 1), ('alle', 1), ('themen', 1), ('die', 1), ('üblicherweise', 1), ('standardvorlesung', 1), ('algorithmen', 1), ('datenstrukturen', 1), ('vermittelt', 1), ('werden', 1)]
[('die', 2), ('ist', 2), ('da', 2), ('um', 2), ('zu', 2), ('autoren', 1), ('zeigen', 1), ('diesem', 1), ('buch', 1), ('das', 1), ('komplexität', 1), ('ein', 1), ('geschenk', 1), ('für', 1), ('erfolgreiche', 1), ('durchführung', 1), ('von', 1), ('projekten', 1), ('nutzbar', 1), ('machen', 1), ('kann', 1), ('sei', 1), ('e', 1), ('neues', 1), ('erschaffen', 1), ('oder', 1), ('auch', 1), ('bestehendes', 1), ('ändern', 1), ('dabei', 1), ('methodenparadigma', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('die', 2), ('und', 2), ('vorliegenden', 1), ('lehrbuch', 1), ('werden', 1), ('entwicklung', 1), ('von', 1), ('expertensystemen', 1), ('einsatzmöglichkeiten', 1), ('grenzen', 1), ('der', 1), ('expertensystemtechnologie', 1), ('ausgewählte', 1), ('anwendungsgebiete', 1), ('vor', 1), ('allem', 1), ('betrieblichen', 1), ('bereich', 1), ('beschrieben', 1), ('darstellung', 1), ('ist', 1)]
[('understand', 2), ('really', 2), ('use', 2), ('always', 1), ('worked', 1), ('programming', 1), ('language', 1), ('seemed', 1), ('computer', 1), ('understanding', 1), ('mean', 1), ('able', 1), ('lot', 1)]
[('today', 1), ('percent', 1), ('microprocessor', 1), ('already', 1), ('embedded', 1), ('everyday', 1), ('object', 1), ('device', 1), ('connected', 1), ('outside', 1), ('world', 1), ('sensor', 1), ('actuator', 1), ('increasingly', 1), ('networked', 1), ('another', 1), ('internet', 1), ('physical', 1)]
[('easy', 2), ('evolutionary', 1), ('algorithm', 1), ('general', 1), ('purpose', 1), ('search', 1), ('procedure', 1), ('based', 1), ('mechanism', 1), ('natural', 1), ('selection', 1), ('population', 1), ('genetics', 1), ('appealing', 1), ('simple', 1), ('interface', 1), ('extend', 1), ('volume', 1), ('concerned', 1)]
[('book', 1), ('contains', 1), ('selection', 1), ('article', 1), ('world', 1), ('conference', 1), ('information', 1), ('system', 1), ('technology', 1), ('worldcist', 1), ('global', 1), ('forum', 1), ('researcher', 1), ('practitioner', 1), ('present', 1), ('discus', 1), ('recent', 1), ('innovation', 1), ('trend', 1), ('result', 1)]
[('die', 4), ('und', 2), ('paul', 1), ('alpar', 1), ('seine', 1), ('mitarbeiter', 1), ('stellen', 1), ('kommerziellen', 1), ('möglichkeiten', 1), ('de', 1), ('internet', 1), ('einem', 1), ('betriebswirtschaftlichen', 1), ('rahmen', 1), ('dar', 1), ('sie', 1), ('erklären', 1), ('verständlich', 1), ('technischen', 1), ('grundlagen', 1), ('sowie', 1), ('wichtigsten', 1), ('dienste', 1), ('analysieren', 1)]
[('international', 2), ('mcsa', 2), ('volume', 1), ('contains', 1), ('proceeding', 1), ('conference', 1), ('modern', 1), ('computer', 1), ('science', 1), ('application', 1), ('held', 1), ('september', 1), ('wuhan', 1), ('china', 1), ('provides', 1), ('excellent', 1), ('forum', 1)]
[('nan', 1)]
[('sich', 2), ('wie', 2), ('eine', 2), ('wer', 2), ('promovieren', 1), ('lohnt', 1), ('da', 1), ('läßt', 1), ('dissertation', 1), ('finanzieren', 1), ('betreut', 1), ('sie', 1), ('und', 1), ('fängt', 1), ('wissenschaftliche', 1), ('arbeit', 1), ('überhaupt', 1), ('den', 1), ('doktortitel', 1), ('erwerben', 1), ('findet', 1), ('diesem', 1), ('leitfaden', 1), ('einen', 1), ('begleiter', 1), ('auf', 1), ('einem', 1)]
[('apo', 2), ('advanced', 1), ('planner', 1), ('optimiser', 1), ('software', 1), ('sap', 1), ('dedicated', 1), ('supply', 1), ('chain', 1), ('management', 1), ('book', 1), ('address', 1), ('question', 1), ('implement', 1), ('company', 1), ('written', 1), ('long', 1), ('year', 1), ('experience', 1), ('implementation', 1), ('project', 1)]
[('semantics', 2), ('probabilistic', 2), ('typed', 2), ('lambda', 2), ('calculus', 2), ('book', 1), ('take', 1), ('foundational', 1), ('approach', 1), ('programming', 1), ('elaborates', 1), ('rigorous', 1), ('markov', 1), ('chain', 1), ('recursion', 1), ('plus', 1)]
[('enterprise', 3), ('every', 1), ('architect', 1), ('face', 1), ('similar', 1), ('problem', 1), ('designing', 1), ('governing', 1), ('architecture', 1), ('medium', 1), ('large', 1), ('design', 1), ('pattern', 1), ('established', 1), ('concept', 1), ('software', 1), ('engineering', 1), ('used', 1), ('define', 1), ('universally', 1)]
[('der', 4), ('die', 3), ('bibliothek', 2), ('und', 2), ('dieser', 1), ('band', 1), ('mediengestaltung', 1), ('behandelt', 1), ('prinzipien', 1), ('animation', 1), ('führt', 1), ('grundlegenden', 1), ('techniken', 1), ('zur', 1), ('erstellung', 1), ('von', 1), ('animationen', 1), ('ein', 1), ('für', 1), ('diese', 1), ('wurden', 1), ('themen', 1), ('de', 1), ('kompendiums', 1)]
[('lt', 3), ('gt', 3), ('und', 2), ('die', 2), ('diesis', 1), ('buch', 1), ('richtet', 1), ('sich', 1), ('klein', 1), ('kleinstunternehmen', 1), ('einführung', 1), ('eines', 1), ('warenwirtschafts', 1), ('oder', 1), ('enterprise', 1), ('resource', 1), ('planning', 1), ('system', 1), ('planen', 1), ('ihre', 1), ('prozesse', 1), ('erfolgreich', 1), ('digitalisieren', 1), ('wollen', 1), ('e', 1), ('bietet', 1)]
[('code', 2), ('book', 1), ('explains', 1), ('see', 1), ('network', 1), ('eye', 1), ('attacker', 1), ('understand', 1), ('technique', 1), ('effectively', 1), ('protect', 1), ('python', 1), ('sample', 1), ('reader', 1), ('learns', 1), ('tool', 1), ('subject', 1), ('password', 1)]
[('die', 4), ('der', 3), ('bibliothek', 2), ('und', 2), ('für', 2), ('dieser', 1), ('band', 1), ('mediengestaltung', 1), ('nbsp', 1), ('behandelt', 1), ('gestaltung', 1), ('bearbeitung', 1), ('digitaler', 1), ('bilder', 1), ('sowie', 1), ('bildoptimierung', 1), ('ausgabe', 1), ('digital', 1), ('printmedien', 1), ('diese', 1), ('wurden', 1), ('themen', 1), ('de', 1), ('kompendiums', 1)]
[('zu', 3), ('vielen', 1), ('unternehmen', 1), ('besteht', 1), ('ein', 1), ('steigender', 1), ('bedarf', 1), ('betriebsspezifisch', 1), ('gestalteten', 1), ('softwareanwendungen', 1), ('um', 1), ('geschäftsprozesse', 1), ('digitalisieren', 1), ('und', 1), ('optimieren', 1), ('derzeit', 1), ('sind', 1), ('vor', 1), ('allem', 1), ('fachkräfte', 1), ('gefordert', 1), ('diese', 1), ('anwendungen', 1), ('entwickeln', 1)]
[('diesis', 1), ('buch', 1), ('liefert', 1), ('anfängern', 1), ('einen', 1), ('leichten', 1), ('einstieg', 1), ('spss', 1), ('und', 1), ('dient', 1), ('erfahrenen', 1), ('nutzern', 1), ('auch', 1), ('früherer', 1), ('programmversionen', 1), ('zugleich', 1), ('al', 1), ('hervorragendes', 1), ('nachschlagewerk', 1), ('die', 1), ('nutzung', 1), ('de', 1), ('buchs', 1), ('ist', 1), ('dabei', 1), ('weitgehend', 1), ('ohne', 1), ('mathematische', 1), ('vorkenntnisse', 1)]
[('der', 2), ('prozesse', 2), ('al', 1), ('folge', 1), ('zunehmenden', 1), ('verfügbarkeit', 1), ('neuer', 1), ('informationstechnologien', 1), ('entstehen', 1), ('völlig', 1), ('neue', 1), ('kundenerwartungen', 1), ('geschäftsmodelle', 1), ('und', 1), ('die', 1), ('umfassende', 1), ('neugestaltung', 1), ('digitaler', 1), ('ist', 1), ('mit', 1), ('konzepten', 1), ('vergangenheit', 1), ('nicht', 1), ('zu', 1), ('bewältigen', 1)]
[('social', 2), ('robotics', 2), ('paper', 1), ('volume', 1), ('fruitful', 1), ('scientific', 1), ('result', 1), ('second', 1), ('international', 1), ('conference', 1), ('icsr', 1), ('held', 1), ('november', 1), ('singapore', 1), ('jointly', 1), ('organized', 1), ('laboratory', 1), ('srl', 1)]
[('international', 2), ('workshop', 2), ('agent', 2), ('system', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('norm', 1), ('institution', 1), ('regulated', 1), ('multiagent', 1), ('anirem', 1), ('organization', 1), ('multi', 1), ('oop', 1), ('held', 1)]
[('international', 2), ('conference', 2), ('text', 2), ('volume', 1), ('contains', 1), ('proceeding', 1), ('th', 1), ('speech', 1), ('dialogue', 1), ('held', 1), ('brno', 1), ('czech', 1), ('republic', 1), ('september', 1), ('auspex', 1), ('masaryk', 1), ('university', 1), ('series', 1)]
[('volume', 2), ('book', 1), ('part', 1), ('three', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('based', 1), ('intelligent', 1), ('information', 1), ('engineering', 1), ('system', 1), ('kes', 1), ('coverage', 1), ('first', 1), ('includes', 1), ('artificial', 1)]
[('thesearetheproceedingsoftheinternationalworkshoponprogrammingmulti', 1), ('agent', 1), ('system', 1), ('promas', 1), ('sixth', 1), ('series', 1), ('workshop', 1), ('aimed', 1), ('discussing', 1), ('providing', 1), ('overview', 1), ('current', 1), ('state', 1), ('art', 1), ('technology', 1), ('programming', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('worksop', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('radio', 1), ('frequency', 1), ('identification', 1), ('security', 1), ('privacy', 1), ('issue', 1), ('rfidsec', 1), ('held', 1), ('amherst', 1), ('massachusetts', 1), ('usa', 1), ('june', 1), ('revised', 1)]
[('nan', 1)]
[('lnai', 2), ('four', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('based', 1), ('intelligent', 1), ('information', 1), ('engineering', 1), ('system', 1), ('kes', 1), ('held', 1), ('kaiserslautern', 1), ('germany', 1), ('september', 1), ('part', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('virtual', 1), ('agent', 1), ('iva', 1), ('held', 1), ('reykjavik', 1), ('island', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('nan', 1)]
[('knowledge', 2), ('management', 2), ('book', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('pr', 1), ('tical', 1), ('aspect', 1), ('organized', 1), ('department', 1), ('institute', 1), ('computer', 1), ('science', 1), ('business', 1), ('informatics', 1), ('university', 1)]
[('semantic', 4), ('data', 3), ('semantics', 2), ('caching', 1), ('warehousing', 1), ('mining', 1), ('spatial', 1), ('temporal', 1), ('multimedia', 1), ('multimodal', 1), ('visualization', 1), ('service', 1), ('mobile', 1), ('user', 1), ('supporting', 1), ('tool', 1), ('application', 1), ('driven', 1)]
[('nan', 1)]
[('life', 2), ('science', 2), ('researcher', 1), ('eld', 1), ('rely', 1), ('increasingly', 1), ('information', 1), ('te', 1), ('nology', 1), ('extract', 1), ('manage', 1), ('relevant', 1), ('knowledge', 1), ('complex', 1), ('computational', 1), ('data', 1), ('management', 1), ('need', 1), ('research', 1), ('make', 1), ('grid', 1), ('technology', 1), ('attractive', 1), ('support', 1)]
[('modern', 1), ('eld', 1), ('multiagent', 1), ('system', 1), ('developed', 1), ('main', 1), ('line', 1), ('earlier', 1), ('research', 1), ('practitioner', 1), ('generally', 1), ('regard', 1), ('form', 1), ('arti', 1), ('cial', 1), ('intelligence', 1), ('ai', 1), ('earliest', 1), ('work', 1), ('reported', 1), ('series', 1), ('workshop', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('gesture', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('simulation', 1), ('gw', 1), ('held', 1), ('long', 1), ('short', 1), ('presented', 1)]
[('conference', 3), ('th', 2), ('ibero', 1), ('american', 1), ('artificial', 1), ('intelligence', 1), ('iberamia', 1), ('took', 1), ('place', 1), ('spain', 1), ('second', 1), ('time', 1), ('year', 1), ('first', 1), ('organized', 1), ('barcelona', 1), ('january', 1), ('city', 1), ('seville', 1), ('hosted', 1)]
[('international', 2), ('workshop', 2), ('agent', 2), ('volume', 1), ('present', 1), ('extended', 1), ('revised', 1), ('version', 1), ('paper', 1), ('presented', 1), ('third', 1), ('multi', 1), ('based', 1), ('simulation', 1), ('mabs', 1), ('federated', 1), ('first', 1), ('joint', 1), ('conference', 1), ('autonomous', 1)]
[('technology', 4), ('human', 3), ('cognitive', 2), ('mind', 2), ('instrument', 1), ('study', 1), ('impact', 1), ('cog', 1), ('tion', 1), ('externalization', 1), ('pragmatic', 1), ('tool', 1), ('promotes', 1), ('view', 1), ('being', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('text', 1), ('speech', 1), ('dialogue', 1), ('tsd', 1), ('held', 1), ('zelezna', 1), ('ruda', 1), ('czech', 1), ('republic', 1), ('september', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('revised', 2), ('paper', 2), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('user', 1), ('modeling', 1), ('um', 1), ('held', 1), ('johnstown', 1), ('pa', 1), ('usa', 1), ('june', 1), ('full', 1), ('poster', 1), ('presented', 1), ('together', 1), ('abstract', 1), ('carefully', 1), ('reviewed', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('mexican', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('micai', 1), ('held', 1), ('apizaco', 1), ('mexico', 1), ('november', 1), ('contains', 1), ('paper', 1), ('address', 1), ('topic', 1), ('knowledge', 1)]
[('nan', 1)]
[('book', 1), ('constitutes', 1), ('strictly', 1), ('reviewed', 1), ('post', 1), ('workshop', 1), ('documentation', 1), ('first', 1), ('international', 1), ('conference', 1), ('cooperative', 1), ('multimodal', 1), ('communication', 1), ('held', 1), ('eindhoven', 1), ('netherlands', 1), ('volume', 1), ('present', 1), ('introductory', 1), ('survey', 1), ('carefully', 1)]
[('spatial', 2), ('knowledge', 2), ('representation', 1), ('reasoning', 1), ('relevant', 1), ('issue', 1), ('many', 1), ('application', 1), ('area', 1), ('robotics', 1), ('geographical', 1), ('information', 1), ('system', 1), ('computer', 1), ('vision', 1), ('exceeding', 1), ('purely', 1), ('quantitative', 1), ('approach', 1), ('recently', 1)]
[('nan', 1)]
[('agent', 2), ('proliferation', 1), ('consumer', 1), ('device', 1), ('computation', 1), ('becoming', 1), ('truly', 1), ('ubiq', 1), ('tous', 1), ('multi', 1), ('system', 1), ('hold', 1), ('promise', 1), ('enable', 1), ('utilization', 1), ('compu', 1), ('tional', 1), ('resource', 1), ('ground', 1), ('breaking', 1), ('new', 1), ('application', 1), ('number', 1)]
[('german', 2), ('conference', 2), ('arti', 2), ('cial', 2), ('intelligence', 2), ('kaiserslautern', 2), ('ki', 1), ('st', 1), ('annual', 1), ('held', 1), ('september', 1), ('university', 1), ('research', 1), ('center', 1), ('dfki', 1), ('gmbh', 1), ('germany', 1), ('series', 1)]
[('workshop', 2), ('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('international', 1), ('multi', 1), ('agent', 1), ('prima', 1), ('held', 1), ('bankok', 1), ('thailand', 1), ('november', 1), ('full', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('frontier', 1), ('combining', 1), ('system', 1), ('frocos', 1), ('held', 1), ('trento', 1), ('italy', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('workshop', 2), ('th', 2), ('international', 2), ('peer', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('agent', 1), ('computing', 1), ('ap', 1), ('pc', 1), ('held', 1), ('honululu', 1), ('hawaii', 1), ('usa', 1), ('context', 1), ('joint', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('tableau', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('automated', 1), ('reasoning', 1), ('analytic', 1), ('related', 1), ('method', 1), ('held', 1), ('nancy', 1), ('france', 1), ('september', 1), ('revised', 1), ('research', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('spanish', 1), ('association', 1), ('artificial', 1), ('intelligence', 1), ('caepia', 1), ('held', 1), ('madrid', 1), ('spain', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('joint', 1), ('chinese', 1), ('german', 1), ('workshop', 1), ('cognitive', 1), ('system', 1), ('held', 1), ('shanghai', 1), ('march', 1), ('revised', 1), ('paper', 1), ('organized', 1), ('topical', 1), ('section', 1), ('multimodal', 1), ('human', 1), ('computer', 1), ('interface', 1)]
[('computing', 2), ('technique', 2), ('soft', 1), ('represents', 1), ('collection', 1), ('neural', 1), ('network', 1), ('evolutionary', 1), ('computation', 1), ('fuzzy', 1), ('logic', 1), ('probabilistic', 1), ('reasoning', 1), ('posed', 1), ('conventional', 1), ('hard', 1), ('tolerate', 1), ('impre', 1), ('sion', 1), ('uncertainty', 1)]
[('lncs', 1), ('journal', 1), ('present', 1), ('notable', 1), ('work', 1), ('way', 1), ('another', 1), ('address', 1), ('research', 1), ('development', 1), ('issue', 1), ('related', 1), ('data', 1), ('semantics', 1), ('scope', 1), ('range', 1), ('theory', 1), ('supporting', 1), ('formal', 1), ('definition', 1), ('semantic', 1), ('content', 1), ('innovative', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('australian', 1), ('joint', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('gold', 1), ('coast', 1), ('australia', 1), ('december', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('fuzzy', 2), ('set', 2), ('carefully', 1), ('edited', 1), ('book', 1), ('present', 1), ('date', 1), ('state', 1), ('current', 1), ('research', 1), ('use', 1), ('extension', 1), ('pay', 1), ('particular', 1), ('attention', 1), ('foundation', 1), ('issue', 1), ('application', 1), ('four', 1), ('important', 1), ('area', 1), ('seen', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('case', 1), ('based', 1), ('reasoning', 1), ('iccbr', 1), ('held', 1), ('seattle', 1), ('wa', 1), ('usa', 1), ('july', 1), ('full', 1), ('poster', 1), ('presented', 1), ('together', 1)]
[('volume', 1), ('composes', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('computational', 1), ('collective', 1), ('intelligence', 1), ('technology', 1), ('application', 1), ('icci', 1), ('hosted', 1), ('national', 1), ('kaohsiung', 1), ('university', 1), ('applied', 1), ('science', 1), ('wroclaw', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('european', 1), ('conference', 1), ('principle', 1), ('practice', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('pkdd', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('poster', 1)]
[('nan', 1)]
[('conference', 2), ('automated', 2), ('past', 1), ('year', 1), ('cade', 1), ('major', 1), ('forum', 1), ('presentation', 1), ('new', 1), ('result', 1), ('deduction', 1), ('volume', 1), ('contains', 1), ('paper', 1), ('system', 1), ('description', 1), ('selected', 1), ('th', 1), ('international', 1)]
[('agent', 2), ('idea', 1), ('faabs', 1), ('workshop', 1), ('first', 1), ('conceived', 1), ('nasa', 1), ('goddard', 1), ('space', 1), ('flight', 1), ('center', 1), ('technology', 1), ('development', 1), ('group', 1), ('advanced', 1), ('architecture', 1), ('automation', 1), ('branch', 1), ('code', 1), ('developing', 1), ('prototype', 1)]
[('book', 1), ('present', 1), ('joint', 1), ('post', 1), ('proceeding', 1), ('five', 1), ('international', 1), ('workshop', 1), ('organized', 1), ('japanese', 1), ('society', 1), ('artificial', 1), ('intelligence', 1), ('th', 1), ('annual', 1), ('conference', 1), ('jsai', 1), ('volume', 1), ('includes', 1), ('award', 1), ('winning', 1), ('paper', 1), ('main', 1)]
[('automation', 2), ('work', 2), ('recent', 1), ('decade', 1), ('witnessed', 1), ('introduction', 1), ('environment', 1), ('seen', 1), ('dramatic', 1), ('change', 1), ('influenced', 1), ('condition', 1), ('year', 1), ('ago', 1), ('addition', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('engineering', 1), ('society', 1), ('agent', 1), ('world', 1), ('esaw', 1), ('present', 1), ('revised', 1), ('full', 1), ('together', 1), ('invited', 1), ('organized', 1), ('topical', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('education', 1), ('aied', 1), ('held', 1), ('auckland', 1), ('new', 1), ('zealand', 1), ('june', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('three', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('text', 1), ('speech', 1), ('dialogue', 1), ('tsd', 1), ('held', 1), ('brno', 1), ('czech', 1), ('republic', 1), ('september', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1), ('carefully', 1)]
[('book', 2), ('revised', 2), ('constitutes', 1), ('thoroughly', 1), ('reviewed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('eumas', 1), ('held', 1), ('maastricht', 1), ('netherlands', 1), ('november', 1), ('full', 1), ('paper', 1), ('included', 1), ('carefully', 1)]
[('workshop', 3), ('deon', 2), ('deontic', 2), ('volume', 1), ('contains', 1), ('proceeding', 1), ('seventh', 1), ('international', 1), ('logic', 1), ('computer', 1), ('science', 1), ('series', 1), ('aim', 1), ('bringing', 1), ('together', 1), ('researcher', 1), ('interested', 1), ('topic', 1), ('lated', 1), ('use', 1)]
[('workshop', 2), ('series', 2), ('computational', 1), ('method', 1), ('system', 1), ('biology', 1), ('cmsb', 1), ('established', 1), ('corrado', 1), ('priami', 1), ('purpose', 1), ('help', 1), ('catalyze', 1), ('convergence', 1), ('computer', 1), ('scientist', 1), ('interested', 1), ('language', 1), ('design', 1)]
[('recent', 1), ('year', 1), ('notion', 1), ('agency', 1), ('claimed', 1), ('major', 1), ('role', 1), ('de', 1), ('ning', 1), ('trend', 1), ('modern', 1), ('research', 1), ('uencing', 1), ('broad', 1), ('spectrum', 1), ('discipline', 1), ('sociology', 1), ('psychology', 1), ('philosophy', 1), ('many', 1), ('agent', 1), ('paradigm', 1), ('virtually', 1), ('invaded', 1)]
[('data', 2), ('semantics', 2), ('lncs', 1), ('journal', 1), ('devoted', 1), ('presentation', 1), ('notable', 1), ('work', 1), ('way', 1), ('another', 1), ('address', 1), ('research', 1), ('development', 1), ('issue', 1), ('related', 1), ('based', 1), ('highly', 1), ('visible', 1), ('publication', 1), ('platform', 1), ('lecture', 1), ('note', 1)]
[('customer', 2), ('challenge', 1), ('faced', 1), ('today', 1), ('manufacturing', 1), ('business', 1), ('environment', 1), ('question', 1), ('satisfy', 1), ('increasingly', 1), ('stringent', 1), ('requirement', 1), ('managing', 1), ('growing', 1), ('system', 1), ('complexity', 1), ('example', 1), ('expect', 1), ('high', 1), ('quality', 1)]
[('computational', 3), ('logic', 3), ('research', 2), ('notion', 1), ('agency', 1), ('recently', 1), ('increased', 1), ('uence', 1), ('velopment', 1), ('based', 1), ('system', 1), ('time', 1), ('sign', 1), ('cantly', 1), ('gaining', 1), ('decade', 1)]
[('workshop', 2), ('trust', 2), ('agent', 2), ('society', 2), ('aamas', 2), ('paper', 2), ('based', 1), ('international', 1), ('held', 1), ('book', 1), ('draw', 1), ('together', 1), ('carefully', 1), ('revised', 1), ('reputation', 1), ('security', 1), ('besides', 1), ('several', 1)]
[('web', 2), ('recent', 1), ('year', 1), ('internet', 1), ('become', 1), ('source', 1), ('data', 1), ('information', 1), ('indisputable', 1), ('importance', 1), ('immensely', 1), ('gained', 1), ('acceptance', 1), ('popularity', 1), ('world', 1), ('wide', 1), ('ww', 1), ('short', 1), ('frequently', 1), ('named', 1), ('nervous', 1), ('system', 1)]
[('presenting', 1), ('state', 1), ('art', 1), ('result', 1), ('logical', 1), ('reasoning', 1), ('formal', 1), ('method', 1), ('context', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('application', 1), ('book', 1), ('commemorates', 1), ('th', 1), ('birthday', 1), ('jörg', 1), ('siekmann', 1), ('revised', 1), ('reviewed', 1), ('paper', 1), ('written', 1)]
[('conference', 2), ('tcgov', 1), ('international', 1), ('government', 1), ('held', 1), ('free', 1), ('university', 1), ('bozen', 1), ('bolzano', 1), ('march', 1), ('initiated', 1), ('working', 1), ('group', 1), ('towards', 1), ('electronic', 1), ('democracy', 1), ('ted', 1), ('european', 1), ('science', 1)]
[('topic', 2), ('agent', 2), ('book', 1), ('present', 1), ('collection', 1), ('paper', 1), ('around', 1), ('nication', 1), ('communication', 1), ('major', 1), ('research', 1), ('multiagent', 1), ('system', 1), ('current', 1), ('work', 1), ('build', 1), ('number', 1)]
[('knowledge', 2), ('management', 2), ('informatics', 2), ('book', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('practical', 1), ('aspect', 1), ('organized', 1), ('department', 1), ('institute', 1), ('business', 1), ('university', 1), ('vienna', 1)]
[('nan', 1)]
[('neaties', 2), ('scruffies', 2), ('researcher', 1), ('artificial', 1), ('intelligence', 1), ('traditionally', 1), ('classified', 1), ('category', 1), ('according', 1), ('concentrate', 1), ('building', 1), ('elegant', 1), ('formal', 1), ('framework', 1), ('whose', 1), ('property', 1)]
[('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('industrial', 1), ('engineering', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('expert', 1), ('system', 1), ('iea', 1), ('aie', 1), ('held', 1), ('loughborough', 1), ('uk', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('hong', 1), ('kong', 1), ('china', 1), ('april', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1)]
[('nan', 1)]
[('programming', 2), ('constraint', 1), ('approach', 1), ('modeling', 1), ('solving', 1), ('combi', 1), ('torial', 1), ('problem', 1), ('proven', 1), ('successful', 1), ('many', 1), ('application', 1), ('build', 1), ('technique', 1), ('developed', 1), ('arti', 1), ('cial', 1), ('intelligence', 1), ('logic', 1), ('erations', 1), ('research', 1), ('key', 1)]
[('nan', 1)]
[('journal', 2), ('data', 2), ('semantics', 2), ('lncs', 1), ('devoted', 1), ('presentation', 1), ('notable', 1), ('work', 1), ('address', 1), ('research', 1), ('development', 1), ('issue', 1), ('related', 1), ('based', 1), ('publication', 1), ('platform', 1), ('lecture', 1), ('note', 1), ('computer', 1), ('science', 1), ('new', 1)]
[('agent', 2), ('important', 2), ('computer', 2), ('intelligent', 1), ('development', 1), ('science', 1), ('interest', 1), ('many', 1), ('application', 1), ('area', 1), ('ranging', 1), ('human', 1), ('interaction', 1), ('industrial', 1), ('process', 1), ('control', 1), ('atal', 1), ('workshop', 1)]
[('lnai', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('based', 1), ('intelligent', 1), ('information', 1), ('engineering', 1), ('system', 1), ('kes', 1), ('held', 1), ('bournemouth', 1), ('uk', 1), ('october', 1)]
[('context', 4), ('second', 2), ('volume', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('international', 1), ('terdisciplinary', 1), ('conference', 1), ('modeling', 1), ('using', 1), ('held', 1), ('trento', 1), ('italy', 1), ('september', 1), ('series', 1)]
[('part', 2), ('knowledge', 2), ('discovery', 2), ('focusing', 2), ('first', 1), ('book', 1), ('analyzes', 1), ('process', 1), ('order', 1), ('understand', 1), ('relation', 1), ('step', 1), ('devoted', 1), ('development', 1), ('solution', 1), ('open', 1), ('analysis', 1)]
[('computer', 2), ('captech', 1), ('workshop', 1), ('took', 1), ('place', 1), ('university', 1), ('geneva', 1), ('november', 1), ('sponsored', 1), ('fip', 1), ('working', 1), ('group', 1), ('graphic', 1), ('virtual', 1), ('world', 1), ('suisse', 1), ('romande', 1), ('regional', 1), ('doctoral', 1), ('seminar', 1), ('science', 1), ('subject', 1)]
[('canadian', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('conference', 1), ('society', 1), ('computational', 1), ('study', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('windsor', 1), ('canada', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('industrial', 1), ('engineering', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('expert', 1), ('system', 1), ('iea', 1), ('aie', 1), ('held', 1), ('benicassim', 1), ('castellon', 1), ('spain', 1), ('june', 1)]
[('canadian', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('society', 1), ('computational', 1), ('study', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('montreal', 1), ('canada', 1), ('revised', 1), ('full', 1), ('paper', 1), ('cover', 1), ('agent', 1)]
[('mining', 3), ('data', 2), ('paper', 1), ('volume', 1), ('represent', 1), ('proceeding', 1), ('th', 1), ('industrial', 1), ('conference', 1), ('organized', 1), ('topical', 1), ('section', 1), ('aspect', 1), ('classification', 1), ('prediction', 1), ('clustering', 1), ('web', 1), ('medicine', 1)]
[('th', 2), ('european', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('principle', 1), ('practice', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('pkdd', 1), ('held', 1), ('warsaw', 1), ('poland', 1), ('co', 1), ('located', 1), ('ecml', 1), ('machine', 1)]
[('nan', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('brazilian', 1), ('symposium', 1), ('bioinformatics', 1), ('bsb', 1), ('held', 1), ('sao', 1), ('paulo', 1), ('brazil', 1), ('august', 1), ('co', 1), ('located', 1), ('iwgd', 1), ('international', 1), ('workshop', 1), ('genomic', 1), ('database', 1), ('revised', 1)]
[('nan', 1)]
[('nan', 1)]
[('dissertation', 2), ('folli', 1), ('awarded', 1), ('annual', 1), ('prize', 1), ('outstanding', 1), ('field', 1), ('logic', 1), ('language', 1), ('information', 1), ('book', 1), ('based', 1), ('phd', 1), ('thesis', 1), ('marco', 1), ('kuhlmann', 1), ('joint', 1), ('winner', 1), ('beth', 1), ('award', 1)]
[('intelligent', 2), ('virtual', 2), ('agent', 2), ('th', 1), ('welcome', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('iva', 1), ('held', 1), ('september', 1), ('philadelphia', 1), ('pennsylvania', 1), ('usa', 1), ('interactive', 1), ('character', 1), ('exhibit', 1), ('human', 1)]
[('selected', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('revised', 1), ('second', 1), ('iapr', 1), ('international', 1), ('workshop', 1), ('psl', 1), ('held', 1), ('nanjing', 1), ('china', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('held', 1), ('busan', 1), ('south', 1), ('korea', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('human', 2), ('decision', 1), ('making', 1), ('omnipresent', 1), ('crucial', 1), ('activity', 1), ('virtually', 1), ('artificial', 1), ('broadly', 1), ('perceived', 1), ('intelligent', 1), ('system', 1), ('try', 1), ('mimic', 1), ('behavior', 1), ('reasoning', 1), ('choice', 1), ('process', 1), ('quite', 1), ('obvious', 1)]
[('methodology', 2), ('fuzzy', 2), ('successful', 1), ('arose', 1), ('worldwide', 1), ('diffusion', 1), ('logic', 1), ('control', 1), ('first', 1), ('attempt', 1), ('dated', 1), ('seventy', 1), ('widely', 1), ('exploited', 1), ('controlling', 1), ('many', 1), ('industrial', 1), ('component', 1)]
[('database', 3), ('system', 1), ('become', 1), ('essential', 1), ('part', 1), ('everyday', 1), ('life', 1), ('banking', 1), ('activity', 1), ('online', 1), ('shopping', 1), ('reservation', 1), ('airline', 1), ('ticket', 1), ('hotel', 1), ('trend', 1), ('place', 1), ('demand', 1), ('capability', 1), ('future', 1)]
[('field', 2), ('scientific', 2), ('world', 1), ('text', 1), ('mining', 1), ('simultaneously', 1), ('minefield', 1), ('gold', 1), ('mine', 1), ('exciting', 1), ('application', 1), ('area', 1), ('research', 1), ('currently', 1), ('rapid', 1), ('development', 1), ('us', 1), ('technique', 1), ('established', 1)]
[('expert', 2), ('purpose', 1), ('book', 1), ('present', 1), ('methodology', 1), ('designing', 1), ('tuning', 1), ('fuzzy', 1), ('system', 1), ('order', 1), ('identify', 1), ('nonlinear', 1), ('object', 1), ('build', 1), ('input', 1), ('output', 1), ('model', 1), ('using', 1), ('experimental', 1), ('information', 1), ('result', 1)]
[('theory', 2), ('method', 2), ('focus', 1), ('book', 1), ('establishing', 1), ('decision', 1), ('game', 1), ('analysis', 1), ('management', 1), ('using', 1), ('intuitionistic', 1), ('fuzzy', 1), ('set', 1), ('proposes', 1), ('series', 1), ('innovative', 1), ('model', 1), ('representation', 1), ('theorem', 1)]
[('da', 2), ('den', 1), ('letzten', 1), ('jahren', 1), ('hat', 1), ('sich', 1), ('internet', 1), ('schnell', 1), ('zu', 1), ('einem', 1), ('massiven', 1), ('wirtschaftlichen', 1), ('betätigungsfeld', 1), ('entwickelt', 1), ('leider', 1), ('auch', 1), ('für', 1), ('illegale', 1), ('unternehmungen', 1), ('ausnutzen', 1), ('von', 1), ('schwachstellen', 1), ('ikt', 1), ('systemen', 1), ('ist', 1), ('inzwischen', 1), ('ein', 1), ('profitables', 1)]
[('die', 2), ('und', 2), ('diesis', 1), ('lehrbuch', 1), ('vermittelt', 1), ('sehr', 1), ('detailliert', 1), ('zentralen', 1), ('konzepte', 1), ('der', 1), ('programmierung', 1), ('dabei', 1), ('wird', 1), ('anhand', 1), ('vielfältiger', 1), ('komplexer', 1), ('problemstellungen', 1), ('entwicklung', 1), ('korrekten', 1), ('wiederverwendbaren', 1), ('code', 1), ('gezeigt', 1), ('zudem', 1), ('eine', 1)]
[('die', 3), ('dabei', 2), ('auf', 2), ('autoren', 1), ('geben', 1), ('eine', 1), ('fundierte', 1), ('einführung', 1), ('wichtigsten', 1), ('methoden', 1), ('der', 1), ('digitalen', 1), ('bildverarbeitung', 1), ('steht', 1), ('praktische', 1), ('anwendbarkeit', 1), ('vordergrund', 1), ('formale', 1), ('und', 1), ('mathematische', 1), ('aspekte', 1), ('sind', 1), ('da', 1), ('wesentliche', 1), ('reduziert', 1), ('ohne', 1)]
[('und', 2), ('die', 2), ('der', 2), ('diesis', 1), ('lehrbuch', 1), ('behandelt', 1), ('verständlich', 1), ('umfassend', 1), ('modern', 1), ('theorie', 1), ('berechenbarkeit', 1), ('ein', 1), ('klassisches', 1), ('gebiet', 1), ('mathematischen', 1), ('logik', 1), ('da', 1), ('al', 1), ('grundlagengebiet', 1), ('auch', 1), ('für', 1), ('informatik', 1), ('von', 1), ('höchster', 1), ('bedeutung', 1), ('ist', 1), ('lebendig', 1), ('didaktisch', 1)]
[('package', 3), ('lancelot', 1), ('software', 1), ('solving', 1), ('large', 1), ('scale', 1), ('nonlinear', 1), ('optimization', 1), ('problem', 1), ('book', 1), ('attempt', 1), ('provide', 1), ('coherent', 1), ('overview', 1), ('use', 1), ('includes', 1), ('detail', 1), ('might', 1), ('present', 1), ('example', 1)]
[('proceeding', 1), ('volume', 1), ('contains', 1), ('selection', 1), ('paper', 1), ('presented', 1), ('symposium', 1), ('international', 1), ('conference', 1), ('high', 1), ('performance', 1), ('scientific', 1), ('computing', 1), ('held', 1), ('hanoi', 1), ('institute', 1), ('mathematics', 1), ('vietnam', 1), ('national', 1), ('center', 1), ('natural', 1), ('science', 1)]
[('nan', 1)]
[('vorgehensmodelle', 2), ('für', 1), ('da', 1), ('management', 1), ('von', 1), ('multimediaprojekten', 1), ('gab', 1), ('e', 1), ('bisher', 1), ('keine', 1), ('unternehmensübergreifenden', 1), ('praxistauglichen', 1), ('die', 1), ('auf', 1), ('spezifische', 1), ('probleme', 1), ('der', 1), ('multimediabranche', 1), ('zugeschnitten', 1), ('sind', 1), ('au', 1), ('anderen', 1), ('bereichen', 1), ('wie', 1), ('etwa', 1)]
[('nan', 1)]
[('book', 1), ('provides', 1), ('ample', 1), ('coverage', 1), ('theoretical', 1), ('experimental', 1), ('state', 1), ('art', 1), ('work', 1), ('new', 1), ('trend', 1), ('direction', 1), ('biometrics', 1), ('field', 1), ('offer', 1), ('student', 1), ('software', 1), ('engineer', 1), ('thorough', 1), ('understanding', 1), ('core', 1), ('low', 1), ('level', 1)]
[('nan', 1)]
[('und', 2), ('diese', 1), ('beispielorientierte', 1), ('einführung', 1), ('da', 1), ('erstellen', 1), ('modularer', 1), ('software', 1), ('basiert', 1), ('auf', 1), ('der', 1), ('programmiersprache', 1), ('pascal', 1), ('von', 1), ('einfachen', 1), ('programmstrukturen', 1), ('unterprogrammtechniken', 1), ('wird', 1), ('über', 1), ('datenstrukturen', 1), ('abstrakte', 1), ('datentypen', 1), ('konsequent', 1), ('zu', 1), ('den', 1)]
[('ontology', 2), ('management', 2), ('detail', 1), ('recent', 1), ('research', 1), ('area', 1), ('design', 1), ('information', 1), ('integration', 1), ('metadata', 1), ('generation', 1), ('representation', 1), ('distributed', 1), ('provides', 1), ('decision', 1), ('support', 1), ('use', 1), ('novel', 1), ('technology', 1)]
[('field', 1), ('biologically', 1), ('inspired', 1), ('computation', 1), ('coexisted', 1), ('mainstream', 1), ('computing', 1), ('pioneer', 1), ('area', 1), ('include', 1), ('warren', 1), ('mcculloch', 1), ('walter', 1), ('pitt', 1), ('robert', 1), ('rosen', 1), ('otto', 1), ('schmitt', 1), ('alan', 1), ('turing', 1), ('john', 1), ('von', 1), ('neumann', 1), ('norbert', 1)]
[('theory', 2), ('imagine', 1), ('understands', 1), ('something', 1), ('still', 1), ('understand', 1), ('anything', 1), ('way', 1), ('paul', 1), ('tarsus', 1), ('corinthian', 1), ('positiveemoji', 1), ('calling', 1), ('practical', 1), ('require', 1), ('explanation', 1), ('practice', 1), ('often', 1), ('thought', 1)]
[('nan', 1)]
[('und', 3), ('die', 3), ('einen', 2), ('diesis', 1), ('handbuch', 1), ('bietet', 1), ('für', 1), ('alle', 1), ('nutzer', 1), ('entwickler', 1), ('de', 1), ('world', 1), ('wide', 1), ('web', 1), ('fundierten', 1), ('einblick', 1), ('dessen', 1), ('aufbau', 1), ('funktionsweise', 1), ('autoren', 1), ('stellen', 1), ('internet', 1), ('technologie', 1), ('ausführlich', 1), ('dar', 1), ('geben', 1), ('umfassenden', 1), ('überblick', 1), ('über', 1)]
[('le', 1), ('method', 1), ('rapidly', 1), ('developing', 1), ('many', 1), ('practical', 1), ('application', 1), ('engineeringthe', 1), ('mathematical', 1), ('background', 1), ('presented', 1), ('first', 1), ('time', 1), ('book', 1), ('form', 1), ('leader', 1), ('field', 1)]
[('die', 3), ('und', 3), ('daten', 2), ('da', 1), ('buch', 1), ('gibt', 1), ('einen', 1), ('zusammenfassenden', 1), ('überblick', 1), ('über', 1), ('modernen', 1), ('möglichkeiten', 1), ('de', 1), ('wissensmanagements', 1), ('e', 1), ('stellt', 1), ('wichtigsten', 1), ('konzepte', 1), ('zur', 1), ('organisation', 1), ('von', 1), ('wissen', 1), ('unternehmen', 1), ('dar', 1), ('skizziert', 1), ('relevanten', 1), ('technischen', 1)]
[('book', 1), ('provides', 1), ('collection', 1), ('fourty', 1), ('article', 1), ('containing', 1), ('new', 1), ('material', 1), ('theoretical', 1), ('aspect', 1), ('evolutionary', 1), ('computing', 1), ('ec', 1), ('demonstrating', 1), ('usefulness', 1), ('success', 1), ('various', 1), ('kind', 1), ('large', 1), ('scale', 1), ('real', 1), ('world', 1), ('problem', 1), ('around', 1)]
[('und', 3), ('der', 2), ('risikomanagement', 1), ('wiederanlauf', 1), ('notfall', 1), ('planung', 1), ('stellen', 1), ('heutigen', 1), ('zeit', 1), ('hochverfügbarkeit', 1), ('von', 1), ('technik', 1), ('dienstleistungen', 1), ('eine', 1), ('elementare', 1), ('voraussetzung', 1), ('für', 1), ('die', 1), ('wettbewerbsfähigkeit', 1), ('ggf', 1), ('den', 1), ('fortbestand', 1), ('eines', 1), ('unternehmens', 1), ('dar', 1)]
[('und', 2), ('für', 2), ('diesis', 1), ('lehrbuch', 1), ('gibt', 1), ('eine', 1), ('kompakte', 1), ('einführung', 1), ('die', 1), ('konzepte', 1), ('methoden', 1), ('techniken', 1), ('der', 1), ('funktionalen', 1), ('oder', 1), ('applikativen', 1), ('programmierung', 1), ('e', 1), ('setzt', 1), ('keine', 1), ('programmierkenntnisse', 1), ('voraus', 1), ('eignet', 1), ('sich', 1), ('damit', 1), ('insbesondere', 1), ('anfänger', 1), ('aber', 1), ('auch', 1)]
[('ist', 2), ('von', 2), ('der', 2), ('und', 2), ('zu', 2), ('allen', 1), ('programmiersprachen', 1), ('die', 1), ('heute', 1), ('praxis', 1), ('eingesetzt', 1), ('werden', 1), ('eine', 1), ('mächtigsten', 1), ('weitesten', 1), ('verbreitet', 1), ('um', 1), ('saubere', 1), ('robuste', 1), ('software', 1), ('entwickeln', 1), ('e', 1), ('besonders', 1), ('wichtig', 1), ('alle', 1), ('feature', 1), ('verstehen', 1)]
[('concise', 1), ('text', 1)]
[('book', 2), ('present', 1), ('specific', 1), ('unified', 1), ('approach', 1), ('framework', 1), ('three', 1), ('major', 1), ('component', 1), ('search', 1), ('engine', 1), ('performance', 1), ('link', 1), ('analysis', 1), ('user', 1), ('web', 1), ('behavior', 1), ('used', 1), ('researcher', 1), ('field', 1), ('information', 1), ('science', 1), ('engineering', 1)]
[('die', 2), ('und', 2), ('systematische', 1), ('einführung', 1), ('verfahren', 1), ('für', 1), ('den', 1), ('entwurf', 1), ('eingebetteter', 1), ('systeme', 1), ('diese', 1), ('sind', 1), ('einen', 1), ('technischen', 1), ('kontext', 1), ('eingebettet', 1), ('zugleich', 1), ('hinsichtlich', 1), ('ihrer', 1), ('aufgaben', 1), ('fähigkeiten', 1), ('schnittstellen', 1), ('einsatzgebiete', 1), ('spezialisiert', 1)]
[('die', 2), ('der', 2), ('gegenstand', 1), ('diesis', 1), ('werkes', 1), ('sind', 1), ('theorie', 1), ('und', 1), ('praxis', 1), ('modernen', 1), ('funktionalen', 1), ('programmierung', 1), ('dabei', 1), ('betrachten', 1), ('autoren', 1), ('aber', 1), ('nicht', 1), ('nur', 1), ('da', 1), ('mittels', 1), ('heute', 1), ('implementierten', 1), ('sprachen', 1), ('wie', 1), ('haskell', 1), ('opal', 1), ('ml', 1), ('usw', 1), ('machbar', 1), ('ist', 1), ('sondern', 1), ('weisen', 1)]
[('ist', 2), ('für', 2), ('und', 2), ('der', 2), ('seit', 2), ('da', 1), ('modell', 1), ('xt', 1), ('ein', 1), ('umfassendes', 1), ('prozessmodell', 1), ('die', 1), ('planung', 1), ('durchführung', 1), ('systementwicklung', 1), ('projekten', 1), ('e', 1), ('februar', 1), ('deutsche', 1), ('bundesbehörden', 1), ('verbindlich', 1), ('liegt', 1), ('juni', 1), ('wesentlich', 1), ('erweiterten', 1)]
[('rem', 1), ('tene', 1), ('verba', 1), ('sequentur', 1), ('gaius', 1), ('victor', 1), ('rome', 1), ('vi', 1), ('century', 1), ('ultimate', 1), ('goal', 1), ('book', 1), ('bring', 1), ('fundamental', 1), ('issue', 1), ('information', 1), ('granularity', 1), ('inference', 1), ('tool', 1), ('problem', 1), ('solving', 1), ('procedure', 1), ('coherent', 1), ('unified', 1), ('fully', 1)]
[('peer', 2), ('für', 2), ('algorithmen', 1), ('und', 1), ('methoden', 1), ('der', 1), ('netzwerke', 1), ('mit', 1), ('einem', 1), ('einblick', 1), ('die', 1), ('aktuelle', 1), ('forschung', 1), ('ursprünglich', 1), ('nur', 1), ('file', 1), ('sharing', 1), ('konzipiert', 1), ('aber', 1), ('mittlerweile', 1), ('paradigma', 1), ('rechnernetzwerke', 1), ('diesis', 1), ('buch', 1), ('vermittelt', 1), ('lesern', 1), ('ein', 1), ('grundlegendes', 1)]
[('recent', 1), ('year', 1), ('issue', 1), ('linkage', 1), ('geas', 1), ('garnered', 1), ('greater', 1), ('attention', 1), ('recognition', 1), ('researcher', 1), ('conventional', 1), ('approach', 1), ('rely', 1), ('ad', 1), ('hoc', 1), ('tweaking', 1), ('parameter', 1), ('control', 1), ('search', 1), ('balancing', 1), ('level', 1), ('exploitation', 1)]
[('und', 4), ('der', 2), ('fundierte', 1), ('einführung', 1), ('begriffe', 1), ('methoden', 1), ('mittelpunkt', 1), ('prinzipien', 1), ('system', 1), ('modellierung', 1), ('entwicklung', 1), ('von', 1), ('software', 1), ('vorliegende', 1), ('band', 1), ('vermittelt', 1), ('kenntnisse', 1), ('für', 1), ('entwurf', 1), ('programmierung', 1), ('mittels', 1), ('imperativer', 1), ('objektorientierter', 1)]
[('genome', 2), ('knighting', 1), ('sequence', 1), ('biology', 1), ('edward', 1), ('trifonov', 1), ('classification', 1), ('construction', 1), ('phylogenetic', 1), ('tree', 1), ('became', 1), ('today', 1), ('major', 1), ('approach', 1), ('studying', 1), ('evolutionary', 1), ('relatedness', 1), ('various', 1), ('specie', 1), ('vast', 1), ('versity', 1), ('although', 1), ('modern', 1)]
[('mining', 4), ('data', 3), ('social', 2), ('network', 2), ('becoming', 1), ('popular', 1), ('research', 1), ('area', 1), ('web', 1), ('analysis', 1), ('technique', 1), ('ability', 1), ('process', 1), ('analyze', 1), ('large', 1), ('amount', 1)]
[('fuzzy', 3), ('type', 3), ('volume', 1), ('first', 1), ('formulate', 1), ('framework', 1), ('represent', 1), ('partial', 1), ('truth', 1), ('uncertainty', 1), ('concept', 1), ('relation', 1), ('conceptual', 1), ('graph', 1), ('attribute', 1), ('value', 1), ('form', 1), ('lattice', 1), ('laying', 1), ('common', 1)]
[('science', 2), ('th', 1), ('acis', 1), ('iee', 1), ('international', 1), ('conference', 1), ('computer', 1), ('information', 1), ('held', 1), ('kaminoyama', 1), ('japan', 1), ('august', 1), ('aimed', 1), ('bringing', 1), ('together', 1), ('researcher', 1), ('scientist', 1), ('businessmen', 1), ('entrepreneur', 1), ('teacher', 1), ('student', 1)]
[('und', 3), ('mit', 1), ('seinem', 1), ('workshop', 1), ('zum', 1), ('thema', 1), ('betriebssysteme', 1), ('echtzeit', 1), ('bietet', 1), ('der', 1), ('gi', 1), ('gma', 1), ('itg', 1), ('fachausschuss', 1), ('echtzeitsysteme', 1), ('wissenschaftlern', 1), ('nutzern', 1), ('herstellern', 1), ('ein', 1), ('forum', 1), ('auf', 1), ('dem', 1), ('neue', 1), ('trend', 1), ('entwicklungen', 1), ('zu', 1), ('folgenden', 1), ('programmschwerpunkten', 1)]
[('die', 3), ('für', 2), ('und', 2), ('tontechnik', 1), ('mediengestalter', 1), ('beschreibt', 1), ('nicht', 1), ('nur', 1), ('grundlagen', 1), ('von', 1), ('audiotechniken', 1), ('sondern', 1), ('vermittelt', 1), ('auch', 1), ('wichtiges', 1), ('zusatzwissen', 1), ('gestaltung', 1), ('produktionsorganisation', 1), ('anschaulich', 1), ('leicht', 1), ('verständlich', 1), ('erläutert', 1), ('der', 1), ('autor', 1)]
[('information', 2), ('management', 1), ('system', 1), ('group', 1), ('university', 1), ('padua', 1), ('major', 1), ('contributor', 1), ('retrieval', 1), ('ir', 1), ('digital', 1), ('library', 1), ('paper', 1), ('book', 1), ('include', 1), ('coverage', 1), ('automated', 1), ('text', 1), ('categorization', 1), ('web', 1), ('link', 1), ('analysis', 1)]
[('systematic', 2), ('insightful', 1), ('work', 1), ('dogaru', 1), ('proposes', 1), ('framework', 1), ('measuring', 1), ('emergence', 1), ('design', 1), ('method', 1), ('locate', 1), ('computationally', 1), ('meaningful', 1), ('gene', 1), ('reasonable', 1), ('computing', 1), ('time', 1), ('program', 1), ('application', 1), ('example', 1), ('provided', 1)]
[('existence', 2), ('douglas', 1), ('adam', 1), ('book', 1), ('hitchhiker', 1), ('guide', 1), ('galaxy', 1), ('hyper', 1), ('intelligent', 1), ('being', 1), ('reached', 1), ('point', 1), ('wanted', 1), ('understand', 1), ('purpose', 1), ('universe', 1), ('built', 1), ('supercomputer', 1), ('called', 1), ('deep', 1)]
[('dynamic', 2), ('programming', 2), ('book', 1), ('provides', 1), ('practical', 1), ('introduction', 1), ('computationally', 1), ('solving', 1), ('discrete', 1), ('optimization', 1), ('problem', 1), ('using', 1), ('example', 1), ('presented', 1), ('reader', 1), ('easily', 1), ('able', 1), ('formulate', 1), ('solution', 1)]
[('research', 2), ('differential', 1), ('evolution', 1), ('arguably', 1), ('hottest', 1), ('topic', 1), ('today', 1), ('computational', 1), ('intelligence', 1), ('book', 1), ('seek', 1), ('present', 1), ('comprehensive', 1), ('study', 1), ('state', 1), ('art', 1), ('technology', 1), ('direction', 1), ('future', 1)]
[('computing', 2), ('book', 1), ('present', 1), ('proceeding', 1), ('st', 1), ('international', 1), ('symposium', 1), ('intelligent', 1), ('distributed', 1), ('idc', 1), ('held', 1), ('craiova', 1), ('romania', 1), ('october', 1), ('coverage', 1), ('includes', 1), ('autonomous', 1), ('adaptive', 1), ('data', 1), ('mining', 1), ('knowledge', 1)]
[('erp', 3), ('von', 2), ('systemen', 2), ('systeme', 1), ('zum', 1), ('enterprise', 1), ('resource', 1), ('planning', 1), ('stehen', 1), ('ruf', 1), ('hohe', 1), ('kosten', 1), ('zu', 1), ('verursachen', 1), ('der', 1), ('nutzen', 1), ('ist', 1), ('hingegen', 1), ('häufig', 1), ('unklar', 1), ('da', 1), ('buch', 1), ('liefert', 1), ('einen', 1), ('überblick', 1), ('über', 1), ('methoden', 1), ('zur', 1), ('optimierung', 1), ('und', 1), ('beleuchtet', 1)]
[('book', 2), ('next', 2), ('generation', 2), ('data', 2), ('technology', 2), ('focus', 1), ('support', 1), ('collective', 1), ('computational', 1), ('intelligence', 1), ('brings', 1), ('various', 1), ('together', 1), ('capture', 1), ('integrate', 1), ('analyze', 1), ('mine', 1), ('annotate', 1), ('visualize', 1)]
[('die', 3), ('den', 2), ('und', 2), ('von', 2), ('sap', 2), ('auf', 2), ('da', 1), ('vorliegende', 1), ('buch', 1), ('bietet', 1), ('erstmalig', 1), ('eine', 1), ('fundierte', 1), ('gesamtdarstellung', 1), ('über', 1), ('aufbau', 1), ('betrieb', 1), ('funktionsweise', 1), ('linux', 1), ('dabei', 1), ('werden', 1), ('grundlegenden', 1), ('konzepte', 1), ('systemarchitektur', 1), ('deren', 1), ('implementierung', 1)]
[('algorithm', 2), ('dynamic', 1), ('logic', 1), ('dl', 1), ('recently', 1), ('highest', 1), ('impact', 1), ('development', 1), ('several', 1), ('area', 1), ('modeling', 1), ('design', 1), ('book', 1), ('discus', 1), ('classical', 1), ('used', 1), ('year', 1), ('improvement', 1), ('often', 1), ('measured', 1), ('signal', 1), ('clutter', 1)]
[('recognition', 2), ('image', 2), ('monograph', 1), ('present', 1), ('selected', 1), ('area', 1), ('application', 1), ('pattern', 1), ('classification', 1), ('approach', 1), ('including', 1), ('handwriting', 1), ('medical', 1), ('analysis', 1), ('interpretation', 1), ('development', 1), ('cognitive', 1), ('system', 1), ('computer', 1)]
[('new', 2), ('system', 2), ('development', 1), ('technology', 1), ('still', 1), ('accelerates', 1), ('result', 1), ('requirement', 1), ('easy', 1), ('access', 1), ('high', 1), ('quality', 1), ('information', 1), ('essential', 1), ('modern', 1), ('scientific', 1), ('society', 1), ('believe', 1), ('cloud', 1), ('based', 1), ('online', 1), ('replace', 1), ('old', 1)]
[('without', 2), ('alan', 1), ('turing', 1), ('pioneered', 1), ('many', 1), ('research', 1), ('area', 1), ('artificial', 1), ('intelligence', 1), ('computability', 1), ('heuristic', 1), ('pattern', 1), ('formation', 1), ('nowadays', 1), ('information', 1), ('age', 1), ('hard', 1), ('imagine', 1), ('world', 1), ('computer', 1), ('internet', 1)]
[('scientific', 2), ('book', 1), ('selection', 1), ('result', 1), ('obtained', 1), ('within', 1), ('year', 1), ('research', 1), ('per', 1), ('formed', 1), ('synat', 1), ('nation', 1), ('wide', 1), ('project', 1), ('aiming', 1), ('creating', 1), ('infrastructure', 1), ('content', 1), ('storage', 1), ('sharing', 1), ('academia', 1), ('education', 1), ('open', 1)]
[('lbp', 3), ('variant', 2), ('book', 1), ('introduces', 1), ('local', 1), ('binary', 1), ('pattern', 1), ('arguably', 1), ('powerful', 1), ('texture', 1), ('descriptor', 1), ('volume', 1), ('provides', 1), ('latest', 1), ('review', 1), ('literature', 1), ('presentation', 1), ('best', 1), ('researcher', 1)]
[('teaching', 1), ('learning', 1), ('paradigm', 1), ('attracted', 1), ('increased', 1), ('attention', 1), ('especially', 1), ('last', 1), ('decade', 1), ('immense', 1), ('development', 1), ('different', 1), ('ict', 1), ('technology', 1), ('service', 1), ('paved', 1), ('way', 1), ('alternative', 1), ('effective', 1), ('approach', 1), ('educational', 1)]
[('da', 2), ('und', 2), ('etwa', 1), ('ein', 1), ('jahr', 1), ('nach', 1), ('dem', 1), ('erscheinen', 1), ('von', 1), ('window', 1), ('vista', 1), ('hat', 1), ('microsoft', 1), ('erste', 1), ('service', 1), ('pack', 1), ('herausgegeben', 1), ('viele', 1), ('fehler', 1), ('der', 1), ('originalfassung', 1), ('korrigiert', 1), ('neue', 1), ('funktionen', 1), ('einführt', 1), ('dieser', 1), ('band', 1), ('beschreibt', 1), ('detailliert', 1), ('alle', 1), ('änderungen', 1)]
[('computer', 1), ('vision', 1), ('science', 1), ('technology', 1), ('making', 1), ('machine', 1), ('see', 1), ('concerned', 1), ('theory', 1), ('design', 1), ('implementation', 1), ('algorithm', 1), ('automatically', 1), ('process', 1), ('visual', 1), ('data', 1), ('recognize', 1), ('object', 1), ('track', 1), ('recover', 1), ('shape', 1)]
[('die', 2), ('und', 2), ('von', 2), ('nützliche', 1), ('verknüpfung', 1), ('der', 1), ('autor', 1), ('führt', 1), ('systematisch', 1), ('programmiersprache', 1), ('ein', 1), ('stellt', 1), ('sie', 1), ('anhand', 1), ('de', 1), ('builder', 1), ('borland', 1), ('vor', 1), ('diesis', 1), ('visuelle', 1), ('entwicklungssystem', 1), ('für', 1), ('window', 1), ('programme', 1), ('ist', 1), ('variante', 1), ('delphi', 1), ('ausführlich', 1)]
[('der', 3), ('computational', 2), ('scientific', 1), ('computing', 1), ('intelligence', 1), ('und', 1), ('engineering', 1), ('sind', 1), ('zentrale', 1), ('methoden', 1), ('modernen', 1), ('informationstechnik', 1), ('hinter', 1), ('diesen', 1), ('begriffen', 1), ('stehen', 1), ('verschiedene', 1), ('konzepte', 1), ('digitalen', 1), ('informationsverarbeitung', 1), ('die', 1), ('bei', 1)]
[('de', 2), ('projektmanagements', 2), ('und', 2), ('die', 2), ('auch', 1), ('wenn', 1), ('verfahren', 1), ('noch', 1), ('immer', 1), ('nicht', 1), ('konsequent', 1), ('eingesetzt', 1), ('werden', 1), ('gerade', 1), ('für', 1), ('manager', 1), ('entwickler', 1), ('sind', 1), ('kenntnisse', 1), ('seiner', 1), ('anwendungsmöglichkeiten', 1), ('unentbehrlich', 1), ('autoren', 1), ('stellen', 1)]
[('sie', 2), ('der', 2), ('bevor', 1), ('die', 1), ('aufregende', 1), ('welt', 1), ('programmierung', 1), ('einsteigen', 1), ('müssen', 1), ('sich', 1), ('für', 1), ('eine', 1), ('programmiersprache', 1), ('entscheiden', 1), ('klassischen', 1), ('sichtweise', 1), ('werden', 1), ('programmiersprachen', 1), ('compiler', 1), ('und', 1), ('interpret', 1), ('sprachen', 1), ('unterschieden', 1), ('mit', 1), ('den', 1), ('neuen', 1)]
[('information', 2), ('da', 2), ('governance', 1), ('sarbanes', 1), ('oxley', 1), ('act', 1), ('basel', 1), ('ii', 1), ('lifecycle', 1), ('management', 1), ('ilm', 1), ('ist', 1), ('ein', 1), ('thema', 1), ('alle', 1), ('cio', 1), ('beherrschen', 1), ('müssen', 1), ('die', 1), ('autoren', 1), ('fassen', 1), ('al', 1), ('produkt', 1), ('auf', 1), ('einem', 1), ('lebenszyklus', 1), ('unterliegt', 1), ('jede', 1), ('phase', 1), ('diesis', 1)]
[('dvd', 3), ('und', 3), ('kreativen', 1), ('professional', 1), ('künstlern', 1), ('wissenschaftlern', 1), ('eröffnen', 1), ('blu', 1), ('ray', 1), ('disc', 1), ('hd', 1), ('neue', 1), ('möglichkeiten', 1), ('wie', 1), ('können', 1), ('rahmen', 1), ('einer', 1), ('produktion', 1), ('non', 1), ('linearität', 1), ('interaktion', 1), ('genutzt', 1), ('werden', 1), ('welche', 1), ('rolle', 1), ('spielen', 1), ('künstler', 1)]
[('die', 4), ('und', 2), ('theorie', 2), ('der', 2), ('diese', 1), ('einführung', 1), ('theoretische', 1), ('informatik', 1), ('zeichnet', 1), ('sich', 1), ('durch', 1), ('verständlichkeit', 1), ('gute', 1), ('lesbarkeit', 1), ('au', 1), ('sie', 1), ('umfaßt', 1), ('formalen', 1), ('sprachen', 1), ('berechenbarkeit', 1), ('einen', 1), ('überblick', 1), ('über', 1), ('komplexitätstheorie', 1), ('da', 1), ('buch', 1)]
[('book', 1), ('cover', 1), ('basic', 1), ('theory', 1), ('practical', 1), ('detail', 1), ('advanced', 1), ('research', 1), ('implementation', 1), ('evolutionary', 1), ('method', 1), ('physical', 1), ('substrate', 1), ('example', 1), ('electronic', 1), ('engineering', 1), ('application', 1), ('including', 1), ('transistor', 1), ('level', 1), ('design', 1)]
[('und', 3), ('dem', 2), ('der', 2), ('mit', 1), ('ihrer', 1), ('jahrestagung', 1), ('bietet', 1), ('die', 1), ('gi', 1), ('fachgruppe', 1), ('echtzeitsysteme', 1), ('pearl', 1), ('nutzern', 1), ('herstellern', 1), ('ein', 1), ('forum', 1), ('auf', 1), ('neue', 1), ('trend', 1), ('entwicklungen', 1), ('zu', 1), ('folgenden', 1), ('themengebieten', 1), ('au', 1), ('bereich', 1), ('echtzeitaspekte', 1), ('bei', 1), ('koordinierung', 1)]
[('der', 4), ('autor', 2), ('den', 2), ('standard', 2), ('für', 2), ('diesem', 1), ('band', 1), ('stellt', 1), ('aufbau', 1), ('aller', 1), ('wichtigen', 1), ('da', 1), ('colormanagement', 1), ('druckproduktion', 1), ('dar', 1), ('ausgehend', 1), ('von', 1), ('stärken', 1), ('und', 1), ('schwächen', 1), ('entwickelt', 1), ('praxisorientierte', 1), ('strategien', 1), ('die', 1), ('effiziente', 1)]
[('der', 2), ('die', 1), ('dagm', 1), ('steht', 1), ('unter', 1), ('dem', 1), ('thema', 1), ('interpretation', 1), ('natürlicher', 1), ('szenen', 1), ('von', 1), ('medizinischen', 1), ('bildverarbeitung', 1), ('bi', 1), ('zur', 1), ('fernerkundung', 1), ('diesis', 1), ('motto', 1), ('greift', 1), ('aktuelle', 1), ('entwicklungen', 1), ('mustererkennung', 1), ('auf', 1), ('intelligente', 1), ('datenanalyse', 1), ('für', 1), ('große', 1)]
[('zu', 2), ('und', 2), ('die', 1), ('computergestützte', 1), ('bildverarbeitung', 1), ('wird', 1), ('mit', 1), ('dem', 1), ('ziel', 1), ('eingesetzt', 1), ('strukturen', 1), ('automatisch', 1), ('erkennen', 1), ('insbesondere', 1), ('pathologische', 1), ('abweichungen', 1), ('aufzuspüren', 1), ('quantifizieren', 1), ('um', 1), ('zur', 1), ('qualitätssicherung', 1), ('der', 1), ('diagnostik', 1)]
[('ifip', 2), ('conference', 2), ('sometimes', 2), ('working', 1), ('group', 1), ('wg', 1), ('ran', 1), ('inetsec', 1), ('time', 1), ('past', 1), ('together', 1), ('security', 1), ('stand', 1), ('alone', 1), ('workshop', 1), ('program', 1), ('selected', 1), ('peer', 1), ('reviewed', 1), ('submission', 1), ('elected', 1)]
[('evolutionary', 2), ('proposed', 1), ('text', 1), ('appears', 1), ('good', 1), ('introduction', 1), ('computation', 1), ('use', 1), ('applied', 1), ('statistic', 1), ('research', 1), ('author', 1), ('draw', 1), ('vast', 1), ('base', 1), ('knowledge', 1), ('current', 1), ('literature', 1), ('design', 1), ('algorithm', 1)]
[('der', 2), ('band', 1), ('bietet', 1), ('eine', 1), ('grundlegende', 1), ('einführung', 1), ('da', 1), ('thema', 1), ('linux', 1), ('für', 1), ('mobile', 1), ('endgeräte', 1), ('wie', 1), ('pda', 1), ('personal', 1), ('digital', 1), ('assistant', 1), ('oder', 1), ('mobiltelefone', 1), ('autor', 1), ('erläutert', 1), ('zunächst', 1), ('die', 1), ('spezifika', 1), ('sogenannter', 1), ('eingebetteter', 1), ('systeme', 1), ('und', 1), ('erklärt', 1), ('dann', 1)]
[('dem', 2), ('die', 1), ('object', 1), ('management', 1), ('group', 1), ('hat', 1), ('eine', 1), ('programmiersprache', 1), ('mit', 1), ('titel', 1), ('qvt', 1), ('query', 1), ('view', 1), ('transformation', 1), ('verabschiedet', 1), ('damit', 1), ('können', 1), ('transformationen', 1), ('zwischen', 1), ('formalen', 1), ('modellen', 1), ('beschrieben', 1), ('und', 1), ('vorgenommen', 1), ('werden', 1), ('band', 1), ('ordnet', 1), ('der', 1), ('autor', 1)]
[('und', 2), ('dem', 1), ('band', 1), ('werden', 1), ('enterprise', 1), ('architecture', 1), ('framework', 1), ('eaf', 1), ('ausführlich', 1), ('behandelt', 1), ('weitere', 1), ('hinsichtlich', 1), ('ihrer', 1), ('intention', 1), ('kurz', 1), ('prägnant', 1), ('dargestellt', 1), ('die', 1), ('detaillierten', 1), ('beschreibungen', 1), ('erlauben', 1), ('durch', 1), ('ein', 1), ('einheitliches', 1), ('raster', 1), ('den', 1), ('vergleich', 1)]
[('optimization', 3), ('book', 1), ('address', 1), ('stochastic', 1), ('procedure', 1), ('broad', 1), ('manner', 1), ('first', 1), ('part', 1), ('offer', 1), ('overview', 1), ('relevant', 1), ('philosophy', 1), ('second', 1), ('deal', 1), ('benchmark', 1), ('problem', 1), ('depth', 1), ('applying', 1), ('selection', 1)]
[('die', 3), ('eine', 2), ('für', 2), ('und', 2), ('wichtige', 1), ('aufgabe', 1), ('der', 1), ('vernetzten', 1), ('welt', 1), ('ist', 1), ('maschinelle', 1), ('auswertung', 1), ('verarbeitung', 1), ('von', 1), ('informationen', 1), ('anwendung', 1), ('relevant', 1), ('sind', 1), ('übers', 1), ('netz', 1), ('verschickt', 1), ('werden', 1), ('mit', 1), ('complex', 1), ('event', 1), ('processing', 1), ('cep', 1), ('können', 1), ('große', 1), ('mengen', 1)]
[('computer', 2), ('interest', 1), ('history', 1), ('digital', 1), ('became', 1), ('active', 1), ('fortune', 1), ('come', 1), ('across', 1), ('almost', 1), ('entirely', 1), ('forgotten', 1), ('work', 1), ('percy', 1), ('ludgate', 1), ('designed', 1), ('mechanical', 1), ('program', 1), ('controlled', 1), ('ireland', 1), ('early', 1), ('joo', 1)]
[('die', 4), ('der', 2), ('medizinischen', 2), ('durch', 1), ('zunehmende', 1), ('digitalisierung', 1), ('bildgebender', 1), ('systeme', 1), ('diagnostik', 1), ('gewinnt', 1), ('digitale', 1), ('bildverarbeitung', 1), ('eine', 1), ('immer', 1), ('stärkere', 1), ('bedeutung', 1), ('für', 1), ('medizin', 1), ('themen', 1), ('de', 1), ('workshop', 1), ('umfassen', 1), ('alle', 1), ('bereiche', 1)]
[('und', 3), ('für', 2), ('dem', 1), ('buch', 1), ('werden', 1), ('data', 1), ('warehouse', 1), ('systeme', 1), ('al', 1), ('einheitliche', 1), ('zentrale', 1), ('vollständige', 1), ('historisierte', 1), ('analytische', 1), ('plattform', 1), ('untersucht', 1), ('ihre', 1), ('rolle', 1), ('die', 1), ('datenanalyse', 1), ('entscheidungsfindungsprozesse', 1), ('dargestellt', 1), ('dabei', 1), ('behandelt', 1), ('der', 1)]
[('nan', 1)]
[('und', 3), ('ist', 2), ('da', 2), ('der', 2), ('den', 2), ('unix', 1), ('einfach', 1), ('wenn', 1), ('weiß', 1), ('wie', 1), ('geht', 1), ('lernt', 1), ('besten', 1), ('mit', 1), ('diesem', 1), ('buch', 1), ('au', 1), ('vielfalt', 1), ('kommandos', 1), ('fast', 1), ('unendlichen', 1), ('variationsmöglichkeiten', 1), ('wesentliche', 1), ('für', 1), ('anwender', 1), ('herausgefiltert', 1), ('locker', 1)]
[('nan', 1)]
[('zu', 3), ('da', 2), ('um', 2), ('buch', 1), ('verhilft', 1), ('lesern', 1), ('dazu', 1), ('eigene', 1), ('netz', 1), ('mit', 1), ('den', 1), ('augen', 1), ('de', 1), ('angreifers', 1), ('sehen', 1), ('seine', 1), ('techniken', 1), ('verstehen', 1), ('und', 1), ('sich', 1), ('besser', 1), ('schützen', 1), ('können', 1), ('anhand', 1), ('von', 1), ('python', 1), ('codebeispielen', 1), ('erläutert', 1), ('der', 1), ('autor', 1), ('themen', 1), ('wie', 1), ('passwort', 1), ('sniffing', 1), ('arp', 1)]
[('uml', 2), ('die', 1), ('unified', 1), ('modeling', 1), ('language', 1), ('hat', 1), ('sich', 1), ('zur', 1), ('dominanten', 1), ('modellierungssprache', 1), ('entwickelt', 1), ('agile', 1), ('methoden', 1), ('werden', 1), ('inzwischen', 1), ('bei', 1), ('vielen', 1), ('softwareentwicklungen', 1), ('eingesetzt', 1), ('dem', 1), ('buch', 1), ('wird', 1), ('ein', 1), ('ansatz', 1), ('vorgestellt', 1), ('der', 1), ('mit', 1), ('elementen', 1), ('agiler', 1)]
[('nan', 1)]
[('software', 3), ('product', 2), ('lt', 1), ('gt', 1), ('line', 1), ('engineering', 1), ('proven', 1), ('methodology', 1), ('developing', 1), ('diversity', 1), ('intensive', 1), ('system', 1), ('lower', 1), ('cost', 1), ('shorter', 1), ('time', 1), ('higher', 1), ('quality', 1), ('book', 1), ('pohl', 1)]
[('mechanic', 2), ('material', 2), ('matlab', 2), ('book', 1), ('love', 1), ('composite', 1), ('use', 1), ('popular', 1), ('computer', 1), ('package', 1), ('matrix', 1), ('calculator', 1), ('numerical', 1), ('calculation', 1), ('needed', 1), ('posite', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('working', 1), ('conference', 1), ('creating', 1), ('value', 1), ('transfer', 1), ('diffusion', 1), ('tdit', 1), ('held', 1), ('aalborg', 1), ('denmark', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('und', 2), ('da', 1), ('statistiklabor', 1), ('ist', 1), ('eine', 1), ('interaktive', 1), ('arbeitsumgebung', 1), ('um', 1), ('statistische', 1), ('funktionen', 1), ('darstellungsmöglichkeiten', 1), ('leicht', 1), ('intuitiv', 1), ('bearbeiten', 1), ('nbsp', 1), ('zu', 1), ('können', 1), ('al', 1), ('window', 1), ('basierte', 1), ('oberfläche', 1), ('für', 1), ('die', 1), ('programmierumgebung', 1), ('erlaubt', 1), ('e', 1), ('zudem', 1), ('einen', 1)]
[('machine', 2), ('learning', 2), ('data', 2), ('mining', 2), ('metalearning', 1), ('study', 1), ('principled', 1), ('method', 1), ('exploit', 1), ('metaknowledge', 1), ('obtain', 1), ('efficient', 1), ('model', 1), ('solution', 1), ('adapting', 1), ('process', 1), ('variety', 1), ('technique', 1)]
[('optimisation', 3), ('address', 2), ('book', 1), ('issue', 1), ('associated', 1), ('interface', 1), ('computing', 1), ('econometrics', 1), ('financial', 1), ('modeling', 1), ('emphasizing', 1), ('computational', 1), ('method', 1), ('technique', 1), ('first', 1), ('part', 1), ('problem', 1), ('decision', 1)]
[('advance', 2), ('high', 2), ('performance', 2), ('computing', 2), ('book', 1), ('present', 1), ('accomplished', 1), ('using', 1), ('contains', 1), ('collection', 1), ('paper', 1), ('presenting', 1), ('result', 1), ('achieved', 1), ('collaboration', 1), ('scientist', 1), ('computer', 1), ('science', 1)]
[('due', 1), ('continual', 1), ('progress', 1), ('large', 1), ('scale', 1), ('integration', 1), ('semiconductor', 1), ('circuit', 1), ('parallel', 1), ('computing', 1), ('principle', 1), ('already', 1), ('met', 1), ('low', 1), ('cost', 1), ('sys', 1), ('tems', 1), ('numerous', 1), ('example', 1), ('exist', 1), ('image', 1), ('processing', 1), ('special', 1), ('hard', 1), ('ware', 1), ('implementable', 1)]
[('vision', 1), ('ubiquitous', 1), ('computing', 1), ('ambient', 1), ('intelligence', 1), ('describes', 1), ('world', 1), ('technology', 1), ('present', 1), ('anywhere', 1), ('anytime', 1), ('form', 1), ('smart', 1), ('sensible', 1), ('device', 1), ('communicate', 1), ('provide', 1), ('personalized', 1), ('service', 1), ('open', 1)]
[('nan', 1)]
[('zope', 2), ('concept', 1), ('component', 1), ('architecture', 1), ('explained', 1), ('thoroughly', 1), ('continually', 1), ('accompanied', 1), ('demo', 1), ('application', 1), ('special', 1), ('section', 1), ('developer', 1), ('cover', 1), ('basic', 1), ('difference', 1), ('predecessor', 1)]
[('world', 2), ('soft', 2), ('computing', 2), ('series', 1), ('online', 1), ('conference', 1), ('wsc', 1), ('organized', 1), ('federation', 1), ('wfsc', 1), ('become', 1), ('established', 1), ('annual', 1), ('event', 1), ('academic', 1), ('calendar', 1), ('already', 1), ('held', 1), ('th', 1), ('time', 1)]
[('environmental', 1), ('management', 1), ('land', 1), ('planning', 1), ('geo', 1), ('marketing', 1), ('number', 1), ('application', 1), ('domain', 1), ('greatly', 1), ('benefit', 1), ('using', 1), ('data', 1), ('enriched', 1), ('spatio', 1), ('temporal', 1), ('feature', 1), ('expanding', 1), ('rapidly', 1), ('book', 1), ('show', 1), ('conceptual', 1), ('design', 1)]
[('protocol', 2), ('security', 1), ('widely', 1), ('used', 1), ('ensure', 1), ('secure', 1), ('communication', 1), ('insecure', 1), ('network', 1), ('internet', 1), ('airwave', 1), ('use', 1), ('strong', 1), ('cryptography', 1), ('prevent', 1), ('intruder', 1), ('reading', 1), ('modifying', 1), ('message', 1), ('using', 1)]
[('ist', 2), ('da', 1), ('buch', 1), ('wendet', 1), ('sich', 1), ('entwickler', 1), ('projektmanager', 1), ('und', 1), ('cio', 1), ('hauptthema', 1), ('die', 1), ('gezielte', 1), ('entwicklung', 1), ('von', 1), ('fähigkeiten', 1), ('skill', 1), ('jenseits', 1), ('der', 1), ('klassischen', 1), ('denke', 1), ('fakt', 1), ('das', 1), ('laut', 1), ('statistischer', 1), ('erhebungen', 1), ('über', 1), ('prozent', 1), ('aller', 1)]
[('ipv', 3), ('book', 1), ('practical', 1), ('guide', 1), ('addressing', 1), ('unix', 1), ('network', 1), ('administrator', 1), ('experience', 1), ('tcp', 1), ('ip', 1), ('necessarily', 1), ('knowledge', 1), ('focus', 1), ('reliable', 1), ('efficient', 1), ('operation', 1), ('implementation', 1), ('available', 1), ('today', 1), ('rather', 1)]
[('book', 2), ('web', 2), ('ruby', 2), ('rail', 2), ('service', 2), ('cover', 1), ('developing', 1), ('application', 1), ('discus', 1), ('ajax', 1), ('directory', 1), ('detail', 1), ('configuration', 1), ('different', 1), ('database', 1), ('mysql', 1), ('oracle', 1), ('sql', 1), ('server', 1)]
[('processing', 2), ('data', 2), ('stream', 2), ('raised', 1), ('new', 1), ('research', 1), ('challenge', 1), ('last', 1), ('year', 1), ('book', 1), ('provides', 1), ('reader', 1), ('comprehensive', 1), ('overview', 1), ('including', 1), ('famous', 1), ('prototype', 1), ('implementation', 1), ('nile', 1), ('system', 1)]
[('software', 2), ('measurement', 2), ('comprehensive', 1), ('introduction', 1), ('ebert', 1), ('dumke', 1), ('detail', 1), ('knowledge', 1), ('experience', 1), ('subject', 1), ('easily', 1), ('understood', 1), ('hand', 1), ('presentation', 1), ('book', 1), ('describes', 1), ('theory', 1), ('practice', 1)]
[('author', 1), ('put', 1), ('together', 1), ('first', 1), ('reference', 1), ('aspect', 1), ('testing', 1), ('validating', 1), ('service', 1), ('oriented', 1), ('architecture', 1), ('contribution', 1), ('leading', 1), ('academic', 1), ('industrial', 1), ('research', 1), ('group', 1), ('offer', 1), ('detailed', 1), ('guideline', 1), ('actual', 1)]
[('book', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('fifth', 1), ('sixth', 1), ('teraflop', 1), ('workshop', 1), ('present', 1), ('state', 1), ('art', 1), ('high', 1), ('performance', 1), ('computing', 1), ('simulation', 1), ('modern', 1), ('supercomputer', 1), ('architecture', 1), ('cover', 1), ('trend', 1), ('hardware', 1), ('software', 1)]
[('volume', 2), ('application', 2), ('content', 1), ('oriented', 1), ('contains', 1), ('de', 1), ('tailed', 1), ('presentation', 1), ('cp', 1), ('net', 1), ('covering', 1), ('broad', 1), ('range', 1), ('ap', 1), ('plication', 1), ('area', 1), ('project', 1), ('carried', 1), ('industrial', 1), ('set', 1)]
[('die', 3), ('planungsprozesse', 1), ('bauwesen', 1), ('sind', 1), ('arbeitsteilig', 1), ('verschiedene', 1), ('fachplaner', 1), ('verteilten', 1), ('standorten', 1), ('unterschiedlichen', 1), ('organisationen', 1), ('angehören', 1), ('praxis', 1), ('bietet', 1), ('beispiele', 1), ('für', 1), ('unzählige', 1), ('mängel', 1), ('auf', 1), ('unzureichende', 1), ('kooperation', 1), ('zurückzuführen', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('study', 1), ('institute', 1), ('expert', 1), ('system', 1), ('robotics', 1), ('held', 1), ('corfu', 1), ('greece', 1), ('july', 1)]
[('advanced', 2), ('technology', 2), ('proceeding', 1), ('nato', 1), ('research', 1), ('workshop', 1), ('integrating', 1), ('education', 1), ('held', 1), ('eindhoven', 1), ('netherlands', 1), ('october', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('study', 1), ('institute', 1), ('automation', 1), ('system', 1), ('issue', 1), ('air', 1), ('traffic', 1), ('control', 1), ('held', 1), ('acquafredda', 1), ('di', 1), ('maratea', 1), ('italy', 1), ('june', 1)]
[('manufacture', 2), ('limp', 1), ('material', 1), ('used', 1), ('many', 1), ('economically', 1), ('impo', 1), ('tant', 1), ('industry', 1), ('garment', 1), ('shoe', 1), ('aerospace', 1), ('composite', 1), ('automobile', 1), ('seat', 1), ('trim', 1), ('use', 1), ('sensor', 1), ('essential', 1), ('reliable', 1), ('robotic', 1), ('handling', 1)]
[('pattern', 2), ('considerable', 1), ('interest', 1), ('recently', 1), ('subject', 1), ('permutation', 1), ('word', 1), ('new', 1), ('branch', 1), ('combinatorics', 1), ('root', 1), ('work', 1), ('rotem', 1), ('rogers', 1), ('knuth', 1), ('consideration', 1), ('question', 1)]
[('book', 2), ('provides', 1), ('solid', 1), ('uniform', 1), ('derivation', 1), ('various', 1), ('property', 1), ('bezier', 1), ('spline', 1), ('representation', 1), ('show', 1), ('beauty', 1), ('underlying', 1), ('rich', 1), ('mathematical', 1), ('structure', 1), ('focus', 1), ('core', 1), ('concept', 1), ('computer', 1), ('aided', 1)]
[('method', 3), ('semi', 2), ('analytical', 2), ('treated', 1), ('detail', 1), ('specimen', 1), ('larger', 1), ('class', 1), ('scheme', 1), ('e', 1), ('sentially', 1), ('distinguish', 1), ('discretiza', 1), ('tion', 1), ('lumped', 1), ('circuit', 1), ('model', 1)]
[('conference', 3), ('affective', 2), ('computing', 2), ('intelligent', 2), ('interaction', 2), ('international', 1), ('icacii', 1), ('comprehensive', 1), ('focused', 1), ('various', 1), ('aspect', 1), ('advance', 1)]
[('strong', 1), ('fluent', 1), ('competency', 1), ('mathematics', 1), ('necessary', 1), ('condition', 1), ('scientific', 1), ('technological', 1), ('economic', 1), ('progress', 1), ('widely', 1), ('recognized', 1), ('problem', 1), ('solving', 1), ('reasoning', 1), ('thinking', 1), ('process', 1), ('critical', 1), ('area', 1)]
[('volume', 1), ('rudi', 1), ('studer', 1), ('team', 1), ('deliver', 1), ('self', 1), ('contained', 1), ('compendium', 1), ('exciting', 1), ('field', 1), ('semantic', 1), ('web', 1), ('service', 1), ('starting', 1), ('basic', 1), ('standard', 1), ('technology', 1), ('including', 1), ('advanced', 1), ('application', 1), ('egovernment', 1), ('ehealth', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('research', 1), ('workshop', 1), ('multisensor', 1), ('fusion', 1), ('computer', 1), ('vision', 1), ('held', 1), ('grenoble', 1), ('france', 1), ('june', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('study', 1), ('institute', 1), ('proof', 1), ('computation', 1), ('held', 1), ('marktoberdorf', 1), ('germany', 1), ('july', 1), ('august', 1)]
[('manager', 3), ('research', 2), ('textbook', 1), ('intended', 1), ('use', 1), ('spi', 1), ('software', 1), ('process', 1), ('improvement', 1), ('researcher', 1), ('quality', 1), ('experienced', 1), ('project', 1), ('paper', 1), ('constitute', 1), ('proceeding', 1), ('th', 1), ('eurospi', 1), ('european', 1)]
[('uniscon', 2), ('series', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('held', 1), ('klagenfurt', 1), ('austria', 1), ('april', 1), ('combine', 1), ('ecomo', 1), ('workshop', 1), ('ista', 1), ('conference', 1), ('paper', 1), ('dealing', 1), ('conceptual', 1), ('modeling', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('study', 1), ('institute', 1), ('fundamental', 1), ('handwriting', 1), ('recognition', 1), ('held', 1), ('chateau', 1), ('de', 1), ('bonas', 1), ('france', 1), ('june', 1), ('july', 1)]
[('motion', 1), ('structure', 1), ('image', 1), ('sequence', 1), ('invaluablereading', 1), ('researcher', 1), ('graduate', 1), ('student', 1), ('practicingengineers', 1), ('dealing', 1), ('computer', 1), ('vision', 1), ('present', 1), ('abalanced', 1), ('treatment', 1), ('theoretical', 1), ('practical', 1)]
[('book', 2), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('object', 1), ('component', 1), ('model', 1), ('pattern', 1), ('tool', 1), ('europe', 1), ('held', 1), ('zurich', 1), ('switzerland', 1), ('june', 1), ('july', 1), ('paper', 1), ('presented', 1)]
[('technology', 2), ('book', 1), ('contains', 1), ('best', 1), ('paper', 1), ('first', 1), ('international', 1), ('conference', 1), ('software', 1), ('data', 1), ('icsoft', 1), ('organized', 1), ('institute', 1), ('system', 1), ('information', 1), ('communication', 1), ('control', 1), ('insticc', 1), ('cooperation', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('research', 1), ('workshop', 1), ('intelligent', 1), ('system', 1), ('safety', 1), ('reliability', 1), ('maintainability', 1), ('issue', 1), ('held', 1), ('kusadasi', 1), ('izmir', 1), ('turkey', 1), ('august', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('research', 1), ('workshop', 1), ('computational', 1), ('theory', 1), ('communication', 1), ('application', 1), ('problem', 1), ('perspective', 1), ('held', 1), ('castel', 1), ('ivano', 1), ('trento', 1), ('italy', 1), ('november', 1)]
[('modeling', 2), ('book', 1), ('compiles', 1), ('contribution', 1), ('renowned', 1), ('researcher', 1), ('covering', 1), ('aspect', 1), ('conceptual', 1), ('occasion', 1), ('arne', 1), ('sølvberg', 1), ('th', 1), ('birthday', 1), ('friend', 1), ('pioneer', 1), ('information', 1), ('system', 1), ('contribute', 1), ('latest', 1), ('research', 1)]
[('concurrent', 1), ('system', 1), ('abound', 1), ('human', 1), ('experience', 1), ('theirfully', 1), ('adequate', 1), ('conceptualization', 1), ('yet', 1), ('eludes', 1), ('ablethinkers', 1), ('cosy', 1), ('concurrentsystem', 1), ('notation', 1), ('theorywas', 1), ('developed', 1), ('last', 1), ('decade', 1), ('number', 1)]
[('workshop', 2), ('book', 1), ('result', 1), ('nato', 1), ('advanced', 1), ('research', 1), ('new', 1), ('direction', 1), ('intelligent', 1), ('tutoring', 1), ('system', 1), ('held', 1), ('sintra', 1), ('portugal', 1), ('october', 1), ('main', 1), ('idea', 1), ('behind', 1), ('bring', 1), ('together', 1), ('scientist', 1), ('different', 1)]
[('workshop', 2), ('based', 2), ('idea', 1), ('book', 1), ('arose', 1), ('discussion', 1), ('attended', 1), ('earlier', 1), ('broadly', 1), ('nato', 1), ('advanced', 1), ('research', 1), ('computer', 1), ('supported', 1), ('collaborative', 1), ('learning', 1), ('directed', 1), ('claire', 1)]
[('need', 2), ('modern', 2), ('today', 1), ('competitive', 1), ('highly', 1), ('dynamic', 1), ('environment', 1), ('organization', 1), ('new', 1), ('tions', 1), ('enable', 1), ('solve', 1), ('business', 1), ('problem', 1), ('make', 1), ('decision', 1), ('using', 1), ('integrated', 1), ('trustworthy', 1), ('date', 1), ('data', 1), ('real', 1), ('time', 1), ('enterprise', 1)]
[('many', 1), ('novel', 1), ('application', 1), ('scenario', 1), ('architecture', 1), ('business', 1), ('process', 1), ('management', 1), ('service', 1), ('composition', 1), ('characterized', 1), ('distribution', 1), ('activity', 1), ('resource', 1), ('complex', 1), ('interaction', 1), ('coordination', 1), ('dynamic', 1), ('book', 1), ('montali', 1)]
[('reasoning', 2), ('model', 2), ('important', 1), ('aspect', 1), ('formalisation', 1), ('common', 1), ('sense', 1), ('construction', 1), ('agent', 1), ('belief', 1), ('world', 1), ('help', 1), ('process', 1), ('often', 1), ('incomplete', 1), ('inaccurate', 1), ('new', 1), ('information', 1)]
[('third', 2), ('conference', 2), ('volume', 1), ('contains', 1), ('proceeding', 1), ('international', 1), ('software', 1), ('service', 1), ('amp', 1), ('semantic', 1), ('technology', 1), ('held', 1), ('bourgas', 1), ('bulgaria', 1), ('september', 1), ('series', 1), ('annually', 1), ('organized', 1)]
[('generally', 1), ('spontaneous', 1), ('pattern', 1), ('formation', 1), ('phenomenon', 1), ('random', 1), ('repetitive', 1), ('whereas', 1), ('elaborate', 1), ('device', 1), ('deterministic', 1), ('product', 1), ('human', 1), ('design', 1), ('yet', 1), ('biological', 1), ('organism', 1), ('collective', 1), ('insect', 1), ('construction', 1), ('exceptional', 1), ('example', 1), ('complex', 1)]
[('future', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('aided', 1), ('architectural', 1), ('design', 1), ('caad', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('data', 1), ('technology', 1), ('icsoft', 1), ('held', 1), ('rome', 1), ('italy', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('china', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('wireless', 1), ('sensor', 1), ('network', 1), ('held', 1), ('qingdao', 1), ('october', 1), ('revised', 1), ('full', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1), ('cover', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('software', 1), ('technology', 1), ('icsoft', 1), ('held', 1), ('reykjavik', 1), ('iceland', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('nan', 1)]
[('wireless', 4), ('network', 3), ('mobile', 2), ('international', 1), ('conference', 1), ('wimo', 1), ('aim', 1), ('bring', 1), ('together', 1), ('innovative', 1), ('idea', 1), ('new', 1), ('research', 1), ('trend', 1), ('best', 1), ('invention', 1), ('history', 1), ('networking', 1), ('give', 1)]
[('project', 2), ('development', 2), ('final', 1), ('report', 1), ('esprit', 1), ('orchestra', 1), ('deal', 1), ('design', 1), ('advanced', 1), ('groupware', 1), ('environment', 1), ('provides', 1), ('global', 1), ('perspective', 1), ('technical', 1), ('research', 1), ('marketing', 1), ('point', 1), ('view', 1)]
[('model', 4), ('information', 2), ('drafting', 2), ('content', 1), ('book', 1), ('technical', 1), ('drawing', 1), ('called', 1), ('part', 1), ('complex', 1), ('describing', 1), ('product', 1), ('definition', 1), ('data', 1), ('application', 1), ('representation', 1)]
[('early', 1), ('trend', 1), ('towards', 1), ('formal', 1), ('undeistanding', 1), ('knowledge', 1), ('based', 1), ('assistance', 1), ('development', 1), ('maintenance', 1), ('database', 1), ('intensive', 1), ('information', 1), ('system', 1), ('became', 1), ('apparent', 1), ('group', 1), ('john', 1), ('mylopoulos', 1), ('univeisity', 1), ('toronto', 1)]
[('conference', 2), ('information', 2), ('security', 2), ('isa', 2), ('welcome', 1), ('third', 1), ('international', 1), ('as', 1), ('ance', 1), ('comprehensive', 1), ('focused', 1), ('various', 1), ('aspect', 1), ('advance', 1), ('assurance', 1), ('concept', 1)]
[('cad', 3), ('system', 2), ('esprit', 1), ('research', 1), ('report', 1), ('group', 1), ('engineer', 1), ('project', 1), ('possibility', 1), ('using', 1), ('database', 1), ('management', 1), ('dbms', 1), ('computer', 1), ('aided', 1), ('design', 1), ('purpose', 1), ('analyzed', 1), ('condition', 1), ('derived', 1), ('enable', 1)]
[('alignment', 2), ('zu', 2), ('die', 2), ('vielen', 1), ('unternehmen', 1), ('gelingt', 1), ('e', 1), ('nicht', 1), ('ein', 1), ('anhaltendes', 1), ('ihrer', 1), ('organisation', 1), ('etablieren', 1), ('dabei', 1), ('kommt', 1), ('dem', 1), ('strategic', 1), ('für', 1), ('schaffung', 1), ('von', 1), ('wettbewerbsvorteilen', 1), ('und', 1), ('steigerung', 1), ('der', 1), ('performance', 1), ('eine', 1), ('schlüsselrolle', 1), ('beginnend', 1)]
[('brilliant', 1), ('textbook', 1), ('explains', 1), ('detail', 1), ('principle', 1), ('conceptual', 1), ('modeling', 1), ('independently', 1), ('particular', 1), ('method', 1), ('language', 1), ('show', 1), ('apply', 1), ('real', 1), ('world', 1), ('project', 1), ('author', 1), ('cover', 1), ('aspect', 1), ('engineering', 1), ('process', 1)]
[('researcher', 1), ('noticed', 1), ('radioactive', 1), ('particle', 1), ('produced', 1), ('element', 1), ('naturally', 1), ('present', 1), ('packaging', 1), ('material', 1), ('cause', 1), ('bit', 1), ('flip', 1), ('sensitive', 1), ('area', 1), ('electronic', 1), ('chip', 1), ('research', 1), ('effect', 1), ('cosmic', 1), ('ray', 1), ('semiconductor', 1)]
[('die', 2), ('und', 2), ('da', 1), ('vorliegende', 1), ('buch', 1), ('ist', 1), ('eine', 1), ('einführung', 1), ('programmiersprache', 1), ('java', 1), ('den', 1), ('ersten', 1), ('kapiteln', 1), ('werden', 1), ('grundlagen', 1), ('behandelt', 1), ('klassen', 1), ('objekte', 1), ('interface', 1), ('pakete', 1), ('weitere', 1), ('kapitel', 1), ('befassen', 1), ('sich', 1), ('mit', 1), ('applet', 1), ('benutzeroberflächen', 1), ('der', 1)]
[('curve', 2), ('surface', 2), ('nurbs', 2), ('recently', 1), ('spline', 1), ('principally', 1), ('interest', 1), ('computer', 1), ('aided', 1), ('design', 1), ('community', 1), ('become', 1), ('standard', 1), ('description', 1), ('today', 1), ('seeing', 1), ('expanded', 1), ('use', 1), ('modeling', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('information', 1), ('system', 1), ('technology', 1), ('management', 1), ('icistm', 1), ('held', 1), ('ghaziabad', 1), ('india', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('system', 2), ('technology', 2), ('book', 1), ('contains', 1), ('selection', 1), ('best', 1), ('paper', 1), ('webist', 1), ('fourth', 1), ('international', 1), ('conference', 1), ('web', 1), ('information', 1), ('held', 1), ('funchal', 1), ('madeira', 1), ('organized', 1), ('institute', 1)]
[('information', 2), ('system', 2), ('conference', 2), ('uniscon', 1), ('united', 1), ('third', 1), ('conf', 1), ('ence', 1), ('series', 1), ('based', 1), ('idea', 1), ('pool', 1), ('smaller', 1), ('highly', 1), ('interesting', 1), ('scienti', 1), ('event', 1), ('large', 1)]
[('speech', 2), ('seemed', 1), ('difficult', 1), ('answer', 1), ('question', 1), ('whether', 1), ('possible', 1), ('develop', 1), ('portable', 1), ('system', 1), ('automatic', 1), ('recognition', 1), ('translation', 1), ('spon', 1), ('taneous', 1), ('previous', 1), ('research', 1), ('work', 1), ('processing', 1), ('focused', 1)]
[('book', 1), ('present', 1), ('work', 1), ('researcher', 1), ('esprit', 1), ('fully', 1), ('integrated', 1), ('data', 1), ('environment', 1), ('fide', 1), ('project', 1), ('goal', 1), ('substantially', 1), ('improving', 1), ('quality', 1), ('complex', 1), ('application', 1), ('system', 1), ('massively', 1), ('reducing', 1), ('cost', 1), ('building', 1)]
[('design', 2), ('formal', 1), ('method', 1), ('hardware', 1), ('still', 1), ('find', 1), ('limited', 1), ('use', 1), ('industry', 1), ('yet', 1), ('current', 1), ('practice', 1), ('change', 1), ('cope', 1), ('decreasing', 1), ('time', 1), ('increasing', 1), ('quality', 1), ('requirement', 1), ('research', 1), ('report', 1), ('present', 1), ('result', 1), ('esprit', 1), ('project', 1)]
[('neural', 3), ('network', 3), ('process', 2), ('first', 1), ('time', 1), ('book', 1), ('set', 1), ('forth', 1), ('concept', 1), ('model', 1), ('discover', 1), ('expands', 1), ('mapping', 1), ('relationship', 1), ('input', 1), ('output', 1), ('traditional', 1), ('greatly', 1)]
[('book', 2), ('tennis', 2), ('paradigm', 1), ('shift', 1), ('future', 1), ('start', 1), ('revelation', 1), ('make', 1), ('obvious', 1), ('limitation', 1), ('today', 1), ('use', 1), ('law', 1), ('modern', 1), ('biomechanics', 1), ('neurophysiology', 1), ('second', 1), ('part', 1), ('includes', 1), ('new', 1), ('approach', 1)]
[('und', 3), ('die', 3), ('knapp', 1), ('übersichtlich', 1), ('vermittelt', 1), ('da', 1), ('buch', 1), ('grundlagen', 1), ('für', 1), ('eine', 1), ('erfolgreiche', 1), ('anwendung', 1), ('von', 1), ('cax', 1), ('systemen', 1), ('beschriebenen', 1), ('vorgehensweisen', 1), ('basieren', 1), ('auf', 1), ('erfahrungen', 1), ('industrie', 1), ('hochschule', 1), ('neu', 1), ('bearbeitete', 1), ('erweiterte', 1), ('auflage', 1)]
[('study', 1), ('condensed', 1), ('matter', 1), ('using', 1), ('optical', 1), ('technique', 1), ('photon', 1), ('act', 1), ('probe', 1), ('signal', 1), ('long', 1), ('history', 1), ('recently', 1), ('extraction', 1), ('surface', 1), ('interface', 1), ('information', 1), ('submonolayer', 1), ('resolution', 1)]
[('workshop', 2), ('eurographics', 1), ('graphic', 1), ('hardware', 1), ('become', 1), ('established', 1), ('forum', 1), ('exchange', 1), ('information', 1), ('con', 1), ('cerning', 1), ('latest', 1), ('development', 1), ('field', 1), ('growing', 1), ('importance', 1), ('first', 1), ('took', 1), ('place', 1), ('eg', 1), ('lisbon', 1)]
[('nan', 1)]
[('nan', 1)]
[('sdes', 2), ('stochastic', 1), ('discrete', 1), ('event', 1), ('system', 1), ('capture', 1), ('randomness', 1), ('choice', 1), ('due', 1), ('activity', 1), ('delay', 1), ('probability', 1), ('decision', 1), ('book', 1), ('delivers', 1), ('comprehensive', 1), ('overview', 1), ('modeling', 1), ('quantitative', 1), ('evaluation', 1), ('present', 1)]
[('menschen', 2), ('allgegenwärtige', 1), ('hintergrund', 1), ('wirkende', 1), ('informationstechnik', 1), ('könnte', 1), ('den', 1), ('allen', 1), ('lebensbereichen', 1), ('mitdenkend', 1), ('unterstützen', 1), ('angesichts', 1), ('einer', 1), ('weiteren', 1), ('verschiebung', 1), ('der', 1), ('intellektuellen', 1), ('und', 1), ('physischen', 1), ('grenzen', 1), ('de', 1), ('drängt', 1), ('sich', 1)]
[('important', 2), ('system', 2), ('s', 2), ('network', 2), ('reliability', 2), ('book', 1), ('summarize', 1), ('development', 1), ('telecommunication', 1), ('focus', 1), ('signalling', 1), ('security', 1), ('according', 1), ('open', 1), ('interconnection', 1)]
[('tera', 2), ('op', 2), ('workbench', 2), ('project', 2), ('book', 1), ('cover', 1), ('result', 1), ('obtained', 1), ('four', 1), ('year', 1), ('period', 1), ('colla', 1), ('ration', 1), ('betweenthe', 1), ('high', 1), ('performancecomputingcenter', 1), ('stuttgart', 1), ('hlrs', 1), ('nec', 1), ('deutschland', 1)]
[('part', 1), ('new', 1), ('series', 1), ('advanced', 1), ('topic', 1), ('science', 1), ('technology', 1), ('china', 1), ('book', 1), ('aim', 1), ('introduce', 1), ('theoretical', 1), ('foundation', 1), ('various', 1), ('sub', 1), ('field', 1), ('current', 1), ('research', 1), ('practical', 1), ('method', 1), ('software', 1), ('architecture', 1), ('first', 1), ('reader', 1)]
[('system', 3), ('coloured', 1), ('petri', 1), ('net', 1), ('cpn', 1), ('graphical', 1), ('language', 1), ('modelling', 1), ('validating', 1), ('concurrent', 1), ('distributed', 1), ('concurrency', 1), ('play', 1), ('major', 1), ('role', 1), ('development', 1), ('particularly', 1), ('challenging', 1)]
[('intelligence', 2), ('research', 1), ('computational', 1), ('directed', 1), ('toward', 1), ('building', 1), ('thinking', 1), ('machine', 1), ('improving', 1), ('understanding', 1), ('evident', 1), ('ultimate', 1), ('achievement', 1), ('field', 1), ('mimic', 1), ('exceed', 1), ('human', 1), ('cognitive', 1), ('capability', 1)]
[('sewcn', 2), ('first', 1), ('icst', 1), ('international', 1), ('workshop', 1), ('security', 1), ('emerging', 1), ('wireless', 1), ('commu', 1), ('cation', 1), ('networking', 1), ('system', 1), ('held', 1), ('athens', 1), ('greece', 1), ('sept', 1), ('ber', 1), ('conjunction', 1), ('securecomm', 1), ('sponsored', 1), ('institute', 1)]
[('die', 2), ('der', 2), ('und', 2), ('digitalisierung', 1), ('welt', 1), ('schreitet', 1), ('voran', 1), ('für', 1), ('wirtschaft', 1), ('alltag', 1), ('wurden', 1), ('den', 1), ('vergangenen', 1), ('jahren', 1), ('neue', 1), ('intelligente', 1), ('anwendungen', 1), ('information', 1), ('kommunikationstechnologie', 1), ('entwickelt', 1), ('über', 1), ('integration', 1), ('kleidung', 1), ('oder', 1)]
[('knowledge', 2), ('transfer', 2), ('university', 1), ('business', 1), ('community', 1), ('topical', 1), ('subject', 1), ('increasing', 1), ('importance', 1), ('first', 1), ('international', 1), ('conference', 1), ('innovation', 1), ('research', 1), ('impact', 1), ('innovationkt', 1), ('held', 1)]
[('nan', 1)]
[('workflow', 2), ('management', 2), ('für', 1), ('den', 1), ('erfolgreichen', 1), ('einsatz', 1), ('eines', 1), ('system', 1), ('zur', 1), ('unterstützung', 1), ('unternehmensweiter', 1), ('geschäftsprozesse', 1), ('ist', 1), ('ein', 1), ('systematischer', 1), ('entwicklungsvorgang', 1), ('der', 1), ('anwendung', 1), ('von', 1), ('zentraler', 1), ('bedeutung', 1), ('da', 1), ('vorliegende', 1), ('buch', 1)]
[('multimedia', 3), ('der', 2), ('qualität', 2), ('boomenden', 1), ('branche', 1), ('ist', 1), ('zunehmend', 1), ('ein', 1), ('wichtiger', 1), ('differenzierungsfaktor', 1), ('qualitätssicherung', 1), ('bei', 1), ('projekten', 1), ('verdeutlicht', 1), ('anhand', 1), ('gebräuchlichsten', 1), ('anwendungen', 1), ('unter', 1), ('dem', 1), ('begriff', 1), ('zu', 1)]
[('den', 2), ('der', 2), ('ausgehend', 1), ('von', 1), ('professionellen', 1), ('beispielen', 1), ('au', 1), ('bereichen', 1), ('studio', 1), ('und', 1), ('reportagefotografie', 1), ('vermittelt', 1), ('da', 1), ('durchgehend', 1), ('vierfarbige', 1), ('werk', 1), ('einsatz', 1), ('digitalen', 1), ('fotografie', 1), ('praxis', 1), ('weitere', 1), ('schwerpunkte', 1), ('bilden', 1), ('relevante', 1), ('grundlagen', 1)]
[('ohne', 1), ('professionellen', 1), ('internet', 1), ('auftritt', 1), ('kein', 1), ('erfolg', 1), ('netz', 1), ('der', 1), ('praxis', 1), ('leitfaden', 1), ('beschreibt', 1), ('verständlich', 1), ('die', 1), ('entwicklung', 1), ('animierter', 1), ('webseiten', 1), ('mit', 1), ('shockwave', 1), ('für', 1), ('macromedia', 1), ('director', 1), ('freehand', 1), ('audio', 1), ('und', 1), ('dem', 1), ('vectororientierten', 1), ('animationsprogramm', 1)]
[('der', 3), ('de', 2), ('beliebte', 1), ('page', 1), ('kolumnist', 1), ('joachim', 1), ('peter', 1), ('hat', 1), ('al', 1), ('externer', 1), ('berater', 1), ('consulting', 1), ('unternehmens', 1), ('arthur', 1), ('little', 1), ('firmen', 1), ('graphischen', 1), ('industrie', 1), ('beraten', 1), ('und', 1), ('die', 1), ('turbulenzen', 1), ('branche', 1), ('beim', 1), ('übergang', 1), ('zur', 1), ('digitalen', 1), ('produktion', 1), ('au', 1), ('dem', 1), ('auge', 1)]
[('der', 2), ('autor', 1), ('beschäftigt', 1), ('sich', 1), ('diesem', 1), ('band', 1), ('mit', 1), ('methoden', 1), ('zur', 1), ('visualisierung', 1), ('von', 1), ('ergebnissen', 1), ('numerischer', 1), ('strömungssimulationen', 1), ('er', 1), ('beschreibt', 1), ('die', 1), ('grundlegenden', 1), ('algorithmen', 1), ('für', 1), ('eine', 1), ('effiziente', 1), ('implementierung', 1), ('sein', 1), ('besonderes', 1), ('augenmerk', 1), ('gilt', 1), ('dabei', 1)]
[('die', 2), ('mit', 2), ('computer', 1), ('publishing', 1), ('für', 1), ('praxis', 1), ('ist', 1), ('da', 1), ('motto', 1), ('de', 1), ('buches', 1), ('dem', 1), ('sie', 1), ('selbst', 1), ('anspruchsvolle', 1), ('prospekte', 1), ('zeitschriften', 1), ('oder', 1), ('bücher', 1), ('leicht', 1), ('erstellen', 1), ('können', 1), ('neben', 1), ('tagesaktuellem', 1), ('anwenderwissen', 1), ('liefert', 1), ('e', 1), ('ihnen', 1), ('basisinformationen', 1), ('auch', 1)]
[('nan', 1)]
[('und', 3), ('neben', 1), ('einer', 1), ('kommando', 1), ('übersicht', 1), ('unix', 1), ('werden', 1), ('häufig', 1), ('gebrauchte', 1), ('kommandos', 1), ('funktionen', 1), ('detailliert', 1), ('beschrieben', 1), ('den', 1), ('themen', 1), ('editoren', 1), ('systemanschlüsse', 1), ('systempflege', 1), ('programmentwicklung', 1), ('sind', 1), ('eigene', 1), ('kapitel', 1), ('gewidmet', 1), ('e', 1), ('wird', 1), ('ein', 1)]
[('peer', 3), ('technology', 2), ('distributed', 2), ('computing', 1), ('paradigm', 1), ('viewed', 1), ('potential', 1), ('redesigning', 1), ('architecture', 1), ('consequently', 1), ('processing', 1), ('yet', 1), ('scale', 1), ('dynamism', 1), ('characterize', 1), ('system', 1)]
[('theory', 2), ('point', 2), ('set', 2), ('presented', 1), ('book', 1), ('developed', 1), ('constructively', 1), ('based', 1), ('axiom', 1), ('encapsulating', 1), ('notion', 1), ('object', 1), ('apart', 1), ('encompasses', 1), ('topology', 1), ('uniform', 1), ('space', 1)]
[('bio', 3), ('inspired', 3), ('problem', 2), ('advance', 1), ('combinatorial', 1), ('optimization', 1), ('illustrates', 1), ('several', 1), ('recent', 1), ('efficient', 1), ('algorithm', 1), ('solving', 1), ('np', 1), ('hard', 1), ('theoretical', 1), ('concept', 1), ('model', 1), ('particular', 1), ('agent', 1), ('ant', 1), ('virtual', 1)]
[('nan', 1)]
[('nan', 1)]
[('machine', 2), ('learning', 2), ('book', 1), ('present', 1), ('fundamental', 1), ('topic', 1), ('algorithm', 1), ('form', 1), ('core', 1), ('ml', 1), ('research', 1), ('emerging', 1), ('paradigm', 1), ('intelligent', 1), ('system', 1), ('design', 1), ('multidisciplinary', 1), ('nature', 1), ('make', 1), ('fascinating', 1)]
[('book', 1), ('explains', 1), ('basic', 1), ('principle', 1), ('mupad', 1), ('command', 1), ('teach', 1), ('write', 1), ('simple', 1), ('program', 1), ('develop', 1), ('interactive', 1), ('environment', 1), ('teaching', 1), ('mathematics', 1), ('text', 1), ('give', 1), ('large', 1), ('number', 1), ('useful', 1), ('example', 1), ('different', 1), ('area', 1), ('undergraduate', 1)]
[('story', 2), ('scenario', 2), ('system', 2), ('book', 1), ('tell', 1), ('instead', 1), ('rather', 1), ('technical', 1), ('term', 1), ('behavior', 1), ('con', 1), ('centrates', 1), ('reactive', 1), ('software', 1), ('hardware', 1), ('combined', 1), ('computer', 1), ('embedded', 1)]
[('european', 3), ('initiative', 2), ('amting', 1), ('directorate', 1), ('general', 1), ('information', 1), ('society', 1), ('commission', 1), ('brussels', 1), ('th', 1), ('framework', 1), ('research', 1), ('system', 1), ('soft', 1), ('ware', 1), ('essi', 1), ('part', 1), ('esprit', 1), ('programme', 1), ('funded', 1)]
[('information', 2), ('book', 1), ('cover', 1), ('broad', 1), ('range', 1), ('intelligent', 1), ('agent', 1), ('presenting', 1), ('latest', 1), ('state', 1), ('art', 1), ('research', 1), ('field', 1), ('section', 1), ('systematically', 1), ('coherently', 1), ('introduced', 1), ('including', 1), ('coverage', 1), ('cooperative', 1), ('system', 1)]
[('nan', 1)]
[('development', 2), ('based', 2), ('component', 2), ('text', 1), ('look', 1), ('reusability', 1), ('multimedia', 1), ('content', 1), ('web', 1), ('learning', 1), ('system', 1), ('author', 1), ('discus', 1), ('framework', 1), ('enables', 1), ('developer', 1), ('employ', 1), ('reusable', 1), ('software', 1), ('enhanced', 1)]
[('und', 2), ('der', 2), ('groupware', 1), ('cscw', 1), ('computer', 1), ('supported', 1), ('cooperative', 1), ('work', 1), ('sind', 1), ('dauerbrenner', 1), ('internationalen', 1), ('informatikszene', 1), ('diesis', 1), ('auflage', 1), ('vollständig', 1), ('überarbeitete', 1), ('erweiterte', 1), ('lehrbuch', 1), ('zeigt', 1), ('ihre', 1), ('vielfältigen', 1), ('nutzungsmöglichkeiten', 1), ('aber', 1)]
[('book', 2), ('prolog', 2), ('done', 1), ('programming', 1), ('either', 1), ('language', 1), ('find', 1), ('way', 1), ('around', 1), ('reference', 1), ('manual', 1), ('emphasis', 1), ('simplified', 1), ('disciplined', 1), ('methodology', 1)]
[('da', 2), ('und', 2), ('haben', 2), ('die', 2), ('internet', 1), ('insbesondere', 1), ('dessen', 1), ('kommerzielle', 1), ('nutzung', 1), ('werden', 1), ('großen', 1), ('einfluß', 1), ('auf', 1), ('private', 1), ('öffentliche', 1), ('leben', 1), ('eine', 1), ('entscheidende', 1), ('rolle', 1), ('bei', 1), ('der', 1), ('kommerziellen', 1), ('weiterentwicklung', 1), ('elektronische', 1), ('zahlungssysteme', 1), ('bezahlung', 1)]
[('nan', 1)]
[('die', 2), ('von', 2), ('programmierung', 2), ('da', 1), ('buch', 1), ('verbindet', 1), ('darstellung', 1), ('delphi', 1), ('mit', 1), ('einer', 1), ('soliden', 1), ('einführung', 1), ('object', 1), ('pascal', 1), ('e', 1), ('behandelt', 1), ('alle', 1), ('sprachkonzepte', 1), ('der', 1), ('klassischen', 1), ('strukturierten', 1), ('bi', 1), ('zur', 1), ('objektorientierten', 1)]
[('picture', 2), ('practical', 1), ('informative', 1), ('book', 1), ('highlight', 1), ('relationship', 1), ('linguistic', 1), ('representation', 1), ('information', 1), ('author', 1), ('define', 1), ('new', 1), ('classification', 1), ('focus', 1), ('task', 1), ('user', 1), ('carry', 1), ('help', 1), ('image', 1)]
[('nan', 1)]
[('nan', 1)]
[('time', 1), ('establishment', 1), ('international', 1), ('council', 1), ('scientific', 1), ('union', 1), ('icsu', 1), ('committee', 1), ('data', 1), ('science', 1), ('technol', 1), ('ogy', 1), ('codata', 1), ('given', 1), ('basic', 1), ('mission', 1), ('promoting', 1), ('encouraging', 1), ('worldwide', 1), ('basis', 1)]
[('und', 2), ('da', 1), ('basis', 1), ('know', 1), ('für', 1), ('planung', 1), ('realisierung', 1), ('kosten', 1), ('nutzen', 1), ('aspekte', 1), ('der', 1), ('client', 1), ('server', 1), ('technologie', 1), ('wird', 1), ('ansprechend', 1), ('verständlich', 1), ('sehr', 1), ('praxisbezogen', 1), ('beschrieben', 1)]
[('nan', 1)]
[('nan', 1)]
[('software', 4), ('reader', 2), ('engineering', 2), ('system', 2), ('purpose', 1), ('book', 1), ('make', 1), ('famliar', 1), ('distributed', 1), ('valuable', 1), ('discipline', 1), ('develop', 1), ('ment', 1), ('surely', 1), ('heard', 1), ('completed', 1)]
[('inspiration', 2), ('term', 2), ('standard', 1), ('approach', 1), ('understanding', 1), ('swarm', 1), ('rely', 1), ('biology', 1), ('generally', 1), ('covered', 1), ('biomimetics', 1), ('book', 1), ('focus', 1), ('different', 1), ('complementary', 1), ('namely', 1), ('physic', 1), ('editor', 1), ('introduced', 1)]
[('und', 2), ('die', 2), ('der', 2), ('warum', 1), ('werden', 1), ('roboter', 1), ('oft', 1), ('al', 1), ('bedrohlich', 1), ('empfunden', 1), ('können', 1), ('künstliche', 1), ('systeme', 1), ('emotionen', 1), ('bewusstsein', 1), ('haben', 1), ('autoren', 1), ('gehen', 1), ('von', 1), ('au', 1), ('das', 1), ('literatur', 1), ('geistesgeschichte', 1), ('un', 1), ('helfen', 1), ('kann', 1), ('aktuelle', 1), ('entwicklungen', 1), ('robotik', 1)]
[('die', 3), ('über', 2), ('und', 2), ('hat', 2), ('sie', 1), ('schon', 1), ('immer', 1), ('informatik', 1), ('informatiker', 1), ('wissen', 1), ('wollten', 1), ('aber', 1), ('nie', 1), ('zu', 1), ('fragen', 1), ('wagten', 1), ('alois', 1), ('potton', 1), ('e', 1), ('notiert', 1), ('mehr', 1), ('al', 1), ('zwei', 1), ('jahrzehnte', 1), ('er', 1), ('hinter', 1), ('kulissen', 1), ('geblickt', 1), ('anekdoten', 1), ('glossen', 1), ('gegossen', 1)]
[('veranstaltet', 1), ('vom', 1), ('ibm', 1), ('fachbereich', 1), ('lehre', 1), ('und', 1), ('forschung', 1), ('münchen', 1)]
[('concept', 2), ('make', 1), ('performance', 1), ('analysis', 1), ('queueing', 1), ('theory', 1), ('simple', 1), ('understand', 1), ('available', 1), ('anyone', 1), ('background', 1), ('high', 1), ('school', 1), ('algebrapresents', 1), ('practical', 1), ('application', 1), ('context', 1), ('modern', 1), ('distributed', 1), ('computer', 1)]
[('und', 3), ('commerce', 2), ('mc', 1), ('al', 1), ('neue', 1), ('ausprägung', 1), ('de', 1), ('entsteht', 1), ('durch', 1), ('die', 1), ('konvergenz', 1), ('von', 1), ('internet', 1), ('mobilfunk', 1), ('technologie', 1), ('da', 1), ('buch', 1), ('vermittelt', 1), ('studenten', 1), ('praktikern', 1), ('insbesondere', 1), ('entscheidungsträgern', 1), ('auf', 1), ('strukturierte', 1), ('praxisorientierte', 1)]
[('fenstersysteme', 2), ('vor', 2), ('und', 2), ('graphische', 1), ('sind', 1), ('gegenstand', 1), ('der', 1), ('forschung', 1), ('allem', 1), ('hinblick', 1), ('auf', 1), ('multimedia', 1), ('anwendungen', 1), ('spracheingabe', 1), ('visualisierung', 1), ('da', 1), ('buch', 1), ('stellt', 1), ('praxisorientiert', 1), ('grundlagen', 1), ('funktionsweise', 1), ('moderner', 1)]
[('nan', 1)]
[('present', 1), ('book', 1), ('based', 1), ('conference', 1), ('software', 1), ('development', 1), ('reality', 1), ('construction', 1), ('held', 1), ('schlob', 1), ('eringerfeld', 1), ('germany', 1), ('september', 1), ('organized', 1), ('technical', 1), ('university', 1), ('berlin', 1), ('tub', 1), ('cooperation', 1), ('german', 1)]
[('nan', 1)]
[('über', 2), ('und', 2), ('da', 1), ('lehrbuch', 1), ('gibt', 1), ('einen', 1), ('anschaulichen', 1), ('überblick', 1), ('die', 1), ('wichtigsten', 1), ('mechanismen', 1), ('eines', 1), ('betriebssystems', 1), ('aktuelle', 1), ('konzepte', 1), ('neben', 1), ('den', 1), ('klassischen', 1), ('einprozessorsystemen', 1), ('werden', 1), ('auch', 1), ('multiprozessorsysteme', 1), ('netzwerkcomputer', 1), ('real', 1), ('time', 1), ('systeme', 1)]
[('understand', 2), ('really', 2), ('use', 2), ('always', 1), ('worked', 1), ('programming', 1), ('language', 1), ('seemed', 1), ('computer', 1), ('understanding', 1), ('mean', 1), ('able', 1), ('lot', 1)]
[('dem', 2), ('und', 2), ('nun', 1), ('vorliegenden', 1), ('buch', 1), ('wird', 1), ('ein', 1), ('programmpaket', 1), ('entwickelt', 1), ('da', 1), ('bedarf', 1), ('leistungsfähigen', 1), ('erweiterungen', 1), ('der', 1), ('programmiersprachen', 1), ('für', 1), ('berechnungen', 1), ('mit', 1), ('großen', 1), ('zahlen', 1), ('vollauf', 1), ('genügt', 1), ('e', 1), ('präsentiert', 1), ('funktionen', 1), ('methoden', 1), ('die', 1)]
[('die', 4), ('und', 2), ('paul', 1), ('alpar', 1), ('seine', 1), ('mitarbeiter', 1), ('stellen', 1), ('kommerziellen', 1), ('möglichkeiten', 1), ('de', 1), ('internet', 1), ('einem', 1), ('betriebswirtschaftlichen', 1), ('rahmen', 1), ('dar', 1), ('sie', 1), ('erklären', 1), ('verständlich', 1), ('technischen', 1), ('grundlagen', 1), ('sowie', 1), ('wichtigsten', 1), ('dienste', 1), ('analysieren', 1)]
[('web', 2), ('although', 1), ('world', 1), ('wide', 1), ('enjoying', 1), ('enormous', 1), ('growth', 1), ('rate', 1), ('many', 1), ('publisher', 1), ('discovered', 1), ('html', 1), ('requirement', 1), ('modern', 1), ('corporate', 1), ('communication', 1), ('adobe', 1), ('acrobat', 1), ('offer', 1), ('wealth', 1), ('design', 1), ('possibility', 1)]
[('die', 2), ('mit', 1), ('multimedia', 1), ('wird', 1), ('eine', 1), ('lücke', 1), ('bereich', 1), ('der', 1), ('wichtigen', 1), ('nachschlagewerke', 1), ('geschlossen', 1), ('erste', 1), ('ausgabe', 1), ('umfaßt', 1), ('wichtigsten', 1), ('adressen', 1), ('von', 1), ('ansprechpartnern', 1), ('beratungsunternehmen', 1), ('hard', 1), ('und', 1), ('softwareunternehmen', 1), ('produzenten', 1)]
[('book', 2), ('present', 1), ('methodology', 1), ('technique', 1), ('thermographic', 1), ('application', 1), ('focus', 1), ('primarily', 1), ('medical', 1), ('thermography', 1), ('implemented', 1), ('parametrizing', 1), ('diagnostics', 1), ('human', 1), ('body', 1), ('first', 1), ('part', 1), ('describes', 1), ('basic', 1)]
[('book', 3), ('present', 1), ('selection', 1), ('subject', 1), ('author', 1), ('deem', 1), ('important', 1), ('information', 1), ('system', 1), ('engineer', 1), ('intended', 1), ('introductory', 1), ('teaching', 1), ('tried', 1), ('write', 1), ('way', 1), ('student', 1), ('fragmented', 1)]
[('computer', 2), ('science', 2), ('engineering', 2), ('international', 1), ('conference', 1), ('series', 1), ('amp', 1), ('application', 1), ('iccsea', 1), ('aim', 1), ('bring', 1), ('together', 1), ('researcher', 1), ('practitioner', 1), ('academia', 1), ('industry', 1), ('focus', 1), ('understanding', 1)]
[('som', 4), ('self', 1), ('organizing', 1), ('map', 1), ('developed', 1), ('teuvo', 1), ('kohonen', 1), ('early', 1), ('eighty', 1), ('work', 1), ('based', 1), ('unsupervised', 1), ('neural', 1), ('network', 1), ('useful', 1), ('clustering', 1), ('visualization', 1), ('purpose', 1), ('many', 1)]
[('uncertain', 2), ('dynamical', 2), ('system', 2), ('physical', 2), ('model', 2), ('unlike', 1), ('science', 1), ('prediction', 1), ('somewhat', 1), ('given', 1), ('law', 1), ('economics', 1), ('need', 1), ('statistical', 1), ('context', 1), ('modeling', 1), ('optimization', 1), ('surface', 1)]
[('web', 2), ('renaissance', 1), ('internet', 1), ('reached', 1), ('mainstream', 1), ('named', 1), ('using', 1), ('build', 1), ('thing', 1), ('never', 1), ('thought', 1), ('earlier', 1), ('expert', 1), ('take', 1), ('step', 1), ('forward', 1), ('contribute', 1), ('extend', 1), ('give', 1), ('back', 1)]
[('book', 1), ('fruit', 1), ('long', 1), ('elaborate', 1), ('process', 1), ('conceived', 1), ('comprehensive', 1), ('solution', 1), ('several', 1), ('deficiency', 1), ('encountered', 1), ('trying', 1), ('teach', 1), ('essential', 1), ('computer', 1), ('vision', 1), ('different', 1), ('context', 1), ('technician', 1)]
[('book', 1), ('devoted', 1), ('difficult', 1), ('part', 1), ('concurrent', 1), ('programming', 1), ('namely', 1), ('synchronization', 1), ('concept', 1), ('technique', 1), ('principle', 1), ('cooperating', 1), ('entity', 1), ('asynchronous', 1), ('communicate', 1), ('shared', 1), ('memory', 1), ('experience', 1), ('failure', 1)]
[('nan', 1)]
[('bot', 2), ('share', 1), ('modern', 1), ('world', 1), ('chatbots', 1), ('converse', 1), ('roombots', 1), ('clean', 1), ('house', 1), ('spambots', 1), ('fill', 1), ('mail', 1), ('inboxes', 1), ('medibots', 1), ('assist', 1), ('surgeon', 1), ('book', 1), ('computer', 1), ('game', 1), ('virtual', 1), ('companion', 1), ('accompany', 1)]
[('look', 1), ('important', 1), ('new', 1), ('tool', 1), ('algorithm', 1), ('future', 1), ('product', 1), ('modeling', 1), ('system', 1), ('based', 1), ('seminar', 1), ('international', 1), ('conference', 1), ('research', 1), ('center', 1), ('computer', 1), ('science', 1), ('schloß', 1), ('dagstuhl', 1), ('germany', 1), ('presented', 1), ('internationally', 1), ('recognised', 1)]
[('need', 1), ('third', 1), ('edition', 1), ('book', 1), ('arisen', 1), ('endeavoured', 1), ('improve', 1), ('extend', 1), ('several', 1), ('way', 1), ('many', 1), ('place', 1), ('small', 1), ('change', 1), ('made', 1), ('misprint', 1), ('corrected', 1), ('reference', 1), ('added', 1), ('chap', 1), ('new', 1)]
[('digital', 3), ('cultural', 3), ('heritage', 3), ('preservation', 2), ('technology', 2), ('discus', 1), ('process', 1), ('cover', 1), ('topic', 1), ('five', 1), ('major', 1), ('area', 1), ('digitization', 1), ('management', 1)]
[('sie', 2), ('über', 2), ('der', 2), ('da', 1), ('handbuch', 1), ('umfaßt', 1), ('alles', 1), ('die', 1), ('moderne', 1), ('telekommunikation', 1), ('wissen', 1), ('müssen', 1), ('von', 1), ('klassischen', 1), ('nachrichtentechnik', 1), ('bi', 1), ('zu', 1), ('den', 1), ('möglichkeiten', 1), ('und', 1), ('anwendungen', 1), ('computertechnik', 1), ('ob', 1), ('technische', 1), ('detail', 1), ('nachlesen', 1), ('oder', 1), ('sich', 1)]
[('framework', 2), ('last', 1), ('decade', 1), ('amount', 1), ('effort', 1), ('resource', 1), ('invested', 1), ('development', 1), ('semantic', 1), ('web', 1), ('service', 1), ('sw', 1), ('numerous', 1), ('description', 1), ('language', 1), ('tool', 1), ('matchmaking', 1), ('composition', 1), ('algorithm', 1)]
[('die', 3), ('noch', 1), ('diesem', 1), ('jahrhundert', 1), ('wird', 1), ('informationsgesellschaft', 1), ('ihr', 1), ('ende', 1), ('kommen', 1), ('weil', 1), ('globalen', 1), ('informationsnetze', 1), ('reißen', 1), ('da', 1), ('ist', 1), ('provozierende', 1), ('de', 1), ('wissenschaftlers', 1), ('und', 1), ('sachbuchautors', 1), ('thomas', 1), ('grüter', 1), ('den', 1), ('meisten', 1), ('menschen', 1)]
[('detailed', 1), ('introduction', 1), ('interdisciplinary', 1), ('application', 1), ('area', 1), ('distributed', 1), ('system', 1), ('namely', 1), ('computer', 1), ('support', 1), ('individual', 1), ('trying', 1), ('solve', 1), ('problem', 1), ('cooperation', 1), ('necessarily', 1), ('identical', 1), ('work', 1), ('place', 1), ('working', 1)]
[('number', 2), ('theory', 2), ('book', 1), ('provides', 1), ('good', 1), ('introduction', 1), ('classical', 1), ('elementary', 1), ('modern', 1), ('algorithmic', 1), ('application', 1), ('computing', 1), ('information', 1), ('technology', 1), ('including', 1), ('computer', 1), ('system', 1), ('design', 1), ('cryptography', 1), ('network', 1)]
[('unit', 3), ('system', 2), ('calendar', 1), ('time', 1), ('specialized', 1), ('business', 1), ('day', 1), ('academic', 1), ('year', 1), ('play', 1), ('major', 1), ('role', 1), ('wide', 1), ('range', 1), ('information', 1), ('application', 1), ('support', 1), ('reasoning', 1), ('called', 1), ('granularity', 1), ('important', 1)]
[('bildbearbeitung', 2), ('vor', 2), ('die', 2), ('notwendigen', 2), ('zur', 2), ('werden', 2), ('den', 1), ('augen', 1), ('führt', 1), ('ad', 1), ('oculos', 1), ('schritte', 1), ('bearbeitung', 1), ('von', 1), ('digitalisierten', 1), ('videobildern', 1), ('anhand', 1), ('einfacher', 1), ('beispiele', 1), ('erläutert', 1), ('programme', 1), ('al', 1), ('quellcode', 1), ('abgedruckt', 1)]
[('nan', 1)]
[('theory', 2), ('data', 2), ('intelligent', 1), ('information', 1), ('technology', 1), ('iit', 1), ('encompasses', 1), ('ap', 1), ('plication', 1), ('artificial', 1), ('intelligence', 1), ('statistical', 1), ('pattern', 1), ('recognition', 1), ('learning', 1), ('warehousing', 1), ('mining', 1), ('knowledge', 1), ('discovery', 1), ('grid', 1), ('puting', 1)]
[('die', 2), ('dienstleistungen', 2), ('schnelle', 1), ('und', 1), ('effiziente', 1), ('realisierung', 1), ('innovativer', 1), ('stellt', 1), ('zunehmend', 1), ('einen', 1), ('erfolgsfaktor', 1), ('für', 1), ('wettbewerbsfähigkeit', 1), ('von', 1), ('dienstleistungsunternehmen', 1), ('dar', 1), ('werden', 1), ('der', 1), ('praxis', 1), ('jedoch', 1), ('oft', 1), ('ad', 1), ('hoc', 1), ('ohne', 1)]
[('interdisciplinary', 1), ('field', 1), ('computational', 1), ('linguistics', 1), ('source', 1), ('several', 1), ('area', 1), ('science', 1), ('goal', 1), ('method', 1), ('historical', 1), ('background', 1), ('thereby', 1), ('remained', 1), ('unclear', 1), ('component', 1), ('fit', 1), ('together', 1)]
[('ontology', 2), ('developed', 1), ('investigated', 1), ('quite', 1), ('artificial', 1), ('intelligence', 1), ('natural', 1), ('language', 1), ('processing', 1), ('facilitate', 1), ('knowledge', 1), ('sharing', 1), ('reuse', 1), ('recently', 1), ('notion', 1), ('attracted', 1), ('attention', 1), ('field', 1)]
[('nan', 1)]
[('provides', 2), ('model', 1), ('checking', 1), ('powerful', 1), ('approach', 1), ('formal', 1), ('verification', 1), ('software', 1), ('automatically', 1), ('complete', 1), ('proof', 1), ('correctness', 1), ('explains', 1), ('via', 1), ('counter', 1), ('example', 1), ('system', 1), ('correct', 1), ('author', 1), ('written', 1)]
[('modeling', 2), ('book', 1), ('comprehensive', 1), ('presentation', 1), ('entity', 1), ('relationship', 1), ('er', 1), ('regard', 1), ('integrated', 1), ('development', 1), ('database', 1), ('application', 1), ('comprehensively', 1), ('survey', 1), ('achievement', 1), ('research', 1), ('field', 1), ('deal', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('research', 1), ('workshop', 1), ('exploiting', 1), ('mental', 1), ('imagery', 1), ('computer', 1), ('mathematics', 1), ('education', 1), ('held', 1), ('eynsham', 1), ('hall', 1), ('oxford', 1)]
[('distributed', 1), ('computing', 1), ('heart', 1), ('many', 1), ('application', 1), ('arises', 1), ('soon', 1), ('solve', 1), ('problem', 1), ('term', 1), ('entity', 1), ('process', 1), ('peer', 1), ('processor', 1), ('node', 1), ('agent', 1), ('individually', 1), ('partial', 1), ('knowledge', 1)]
[('die', 2), ('ist', 2), ('da', 2), ('um', 2), ('zu', 2), ('autoren', 1), ('zeigen', 1), ('diesem', 1), ('buch', 1), ('das', 1), ('komplexität', 1), ('ein', 1), ('geschenk', 1), ('für', 1), ('erfolgreiche', 1), ('durchführung', 1), ('von', 1), ('projekten', 1), ('nutzbar', 1), ('machen', 1), ('kann', 1), ('sei', 1), ('e', 1), ('neues', 1), ('erschaffen', 1), ('oder', 1), ('auch', 1), ('bestehendes', 1), ('ändern', 1), ('dabei', 1), ('methodenparadigma', 1)]
[('software', 2), ('last', 1), ('year', 1), ('evolution', 1), ('research', 1), ('explored', 1), ('new', 1), ('domain', 1), ('study', 1), ('socio', 1), ('technical', 1), ('aspect', 1), ('collaboration', 1), ('different', 1), ('individual', 1), ('contributing', 1), ('system', 1), ('use', 1), ('search', 1), ('based', 1), ('technique', 1)]
[('project', 2), ('previously', 1), ('available', 1), ('methodology', 1), ('software', 1), ('published', 1), ('early', 1), ('day', 1), ('object', 1), ('technology', 1), ('claimed', 1), ('appropriate', 1), ('every', 1), ('conceivable', 1), ('situational', 1), ('method', 1), ('engineering', 1), ('sme', 1), ('acknowledges', 1)]
[('und', 2), ('nbsp', 2), ('der', 2), ('da', 1), ('buch', 1), ('bietet', 1), ('eine', 1), ('fundierte', 1), ('einführung', 1), ('die', 1), ('chronologie', 1), ('bekannter', 1), ('angriffe', 1), ('verwundbarkeiten', 1), ('auf', 1), ('mobile', 1), ('systeme', 1), ('dessen', 1), ('konzeptionelle', 1), ('einordnung', 1), ('letzten', 1), ('zwei', 1), ('dekaden', 1), ('erhält', 1), ('leser', 1), ('einen', 1), ('einmaligen', 1), ('überblick', 1), ('über', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('soft', 1), ('computing', 1), ('icaisc', 1), ('held', 1), ('zakopane', 1), ('poland', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('fuzzy', 3), ('chaos', 3), ('book', 2), ('control', 2), ('present', 1), ('fundamental', 1), ('concept', 1), ('logic', 1), ('theory', 1), ('provides', 1), ('definition', 1), ('metric', 1), ('space', 1), ('set', 1), ('raise', 1), ('many', 1), ('question', 1), ('generates', 1), ('potential', 1)]
[('workshop', 2), ('faabs', 2), ('rd', 1), ('formal', 1), ('approach', 1), ('agent', 1), ('based', 1), ('system', 1), ('ii', 1), ('held', 1), ('greenbelt', 1), ('marriott', 1), ('hotel', 1), ('near', 1), ('nasa', 1), ('goddard', 1), ('space', 1), ('flight', 1), ('center', 1), ('april', 1), ('conjunction', 1), ('iee', 1), ('computer', 1), ('society', 1), ('first', 1)]
[('mining', 2), ('interconnected', 1), ('idea', 1), ('inductive', 1), ('database', 1), ('constraint', 1), ('based', 1), ('appealing', 1), ('potential', 1), ('radically', 1), ('change', 1), ('theory', 1), ('practice', 1), ('data', 1), ('knowledge', 1), ('discovery', 1), ('book', 1), ('report', 1), ('result', 1), ('european', 1)]
[('technology', 2), ('nd', 1), ('workshop', 1), ('intelligent', 1), ('medium', 1), ('communicative', 1), ('intelligence', 1), ('commemorating', 1), ('th', 1), ('anniversary', 1), ('polish', 1), ('japanese', 1), ('institute', 1), ('information', 1), ('warsaw', 1), ('aimed', 1), ('explore', 1), ('current', 1), ('research', 1), ('topic', 1), ('eld', 1)]
[('nan', 1)]
[('workshop', 2), ('second', 1), ('edition', 1), ('declarative', 1), ('agent', 1), ('language', 1), ('te', 1), ('nologies', 1), ('dalt', 1), ('held', 1), ('july', 1), ('new', 1), ('york', 1), ('city', 1), ('success', 1), ('saw', 1), ('signi', 1), ('cant', 1), ('increase', 1), ('number', 1), ('submitted', 1), ('paper', 1), ('attendee', 1)]
[('scientific', 2), ('discovery', 2), ('many', 1), ('difficult', 1), ('task', 1), ('solved', 1), ('interactive', 1), ('way', 1), ('combining', 1), ('intelligent', 1), ('computing', 1), ('technique', 1), ('intuitive', 1), ('adaptive', 1), ('user', 1), ('interface', 1), ('inevitable', 1), ('use', 1), ('human', 1), ('intelligence', 1)]
[('der', 2), ('von', 2), ('code', 1), ('review', 1), ('sind', 1), ('heute', 1), ('fester', 1), ('bestandteil', 1), ('softwareentwicklung', 1), ('die', 1), ('wirkung', 1), ('architekturreviews', 1), ('ist', 1), ('jedoch', 1), ('weit', 1), ('effektiver', 1), ('autor', 1), ('stellt', 1), ('methoden', 1), ('zur', 1), ('bewertung', 1), ('architekturen', 1), ('vor', 1), ('und', 1), ('betrachtet', 1), ('dabei', 1), ('neben', 1), ('dem', 1), ('prozeduralen', 1), ('ansatz', 1)]
[('cognitive', 4), ('map', 2), ('science', 1), ('mental', 1), ('representation', 1), ('spatial', 1), ('knowledge', 1), ('metaphorically', 1), ('referred', 1), ('investigation', 1), ('psychology', 1), ('reveal', 1), ('metaphor', 1), ('inadequate', 1), ('suitable', 1)]
[('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('agreement', 1), ('technology', 1), ('held', 1), ('beijing', 1), ('china', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1), ('carefully', 1)]
[('conference', 2), ('set', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('rough', 1), ('fuzzy', 1), ('data', 1), ('mining', 1), ('granular', 1), ('computing', 1), ('rsfdgrc', 1), ('held', 1), ('halifax', 1), ('canada', 1), ('october', 1), ('co', 1), ('located', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('engineering', 1), ('multi', 1), ('agent', 1), ('system', 1), ('emas', 1), ('held', 1), ('st', 1), ('paul', 1), ('mn', 1), ('usa', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('european', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('nancy', 1), ('france', 1), ('september', 1), ('revised', 1)]
[('book', 1), ('contains', 1), ('cohesive', 1), ('self', 1), ('contained', 1), ('collection', 1), ('theoretical', 1), ('applied', 1), ('research', 1), ('result', 1), ('achieved', 1), ('project', 1), ('pertain', 1), ('nonmonotonic', 1), ('approximate', 1), ('easoning', 1), ('system', 1), ('developed', 1), ('experimental', 1), ('unmanned', 1)]
[('fuzzy', 3), ('rule', 2), ('base', 2), ('farb', 2), ('monograph', 1), ('author', 1), ('introduce', 1), ('novel', 1), ('referred', 1), ('permutation', 1), ('show', 1), ('inferring', 1), ('using', 1), ('standard', 1), ('tool', 1), ('logic', 1), ('theory', 1), ('yield', 1), ('input', 1), ('output', 1), ('map', 1)]
[('nan', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('international', 1), ('conference', 1), ('research', 1), ('computational', 1), ('molecular', 1), ('biology', 1), ('recomb', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('offer', 1), ('extensive', 1), ('review', 1), ('concurrent', 1), ('language', 1), ('calculus', 1), ('comprehensive', 1), ('figure', 1), ('summary', 1), ('present', 1), ('analysis', 1), ('many', 1), ('implementation', 1), ('strategy', 1), ('readily', 1), ('used', 1), ('developer', 1), ('distributed', 1), ('system', 1)]
[('th', 2), ('symbolic', 2), ('computation', 2), ('book', 1), ('constitutes', 1), ('joint', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('aisc', 1), ('symposium', 1), ('integration', 1), ('mechanized', 1), ('reasoning', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('brain', 1), ('inspired', 1), ('cognitive', 1), ('system', 1), ('bics', 1), ('held', 1), ('shenyang', 1), ('liaoning', 1), ('china', 1), ('july', 1), ('high', 1), ('quality', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('conference', 2), ('rough', 2), ('set', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('current', 1), ('trend', 1), ('computing', 1), ('rsctc', 1), ('held', 1), ('chengdu', 1), ('china', 1), ('august', 1), ('co', 1), ('located', 1), ('joint', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('iapr', 1), ('tc', 1), ('pattern', 1), ('recognition', 1), ('social', 1), ('signal', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('mprss', 1), ('held', 1), ('tsukuba', 1), ('japan', 1), ('november', 1), ('collaboration', 1)]
[('nan', 1)]
[('nan', 1)]
[('diagram', 3), ('international', 2), ('conference', 2), ('th', 1), ('theory', 1), ('application', 1), ('held', 1), ('portland', 1), ('usa', 1), ('august', 1), ('interdisciplinary', 1), ('series', 1), ('continues', 1), ('present', 1), ('best', 1)]
[('actor', 3), ('hewitt', 2), ('earliest', 1), ('work', 1), ('agent', 1), ('traced', 1), ('least', 1), ('rst', 1), ('conceptualization', 1), ('model', 1), ('carl', 1), ('paper', 1), ('ai', 1), ('conference', 1), ('early', 1), ('described', 1), ('entity', 1), ('knowledge', 1), ('goal', 1), ('research', 1)]
[('software', 3), ('aspect', 2), ('oriented', 2), ('development', 2), ('lncs', 1), ('journal', 1), ('transaction', 1), ('devoted', 1), ('facet', 1), ('aosd', 1), ('technique', 1), ('context', 1), ('phase', 1), ('life', 1), ('cycle', 1), ('requirement', 1), ('design', 1)]
[('book', 1), ('present', 1), ('exhaustive', 1), ('timely', 1), ('review', 1), ('key', 1), ('research', 1), ('work', 1), ('fuzzy', 1), ('xml', 1), ('data', 1), ('management', 1), ('provides', 1), ('reader', 1), ('comprehensive', 1), ('resource', 1), ('state', 1), ('art', 1), ('tool', 1), ('theory', 1), ('fast', 1), ('growing', 1), ('area', 1), ('topic', 1), ('covered', 1)]
[('die', 3), ('diese', 1), ('einführung', 1), ('informatik', 1), ('konzentriert', 1), ('sich', 1), ('insbesondere', 1), ('auf', 1), ('moderne', 1), ('objektorientierte', 1), ('softwaretechnik', 1), ('zentralen', 1), ('konzepte', 1), ('von', 1), ('objektorientierten', 1), ('programmiersprachen', 1), ('nämlich', 1), ('algorithmen', 1), ('und', 1), ('datenstrukturen', 1), ('werden', 1), ('dabei', 1), ('nicht', 1), ('nur', 1)]
[('projekten', 2), ('risikomanagement', 1), ('nbsp', 1), ('ist', 1), ('ein', 1), ('detaillierter', 1), ('leitfaden', 1), ('für', 1), ('jeden', 1), ('projektmanager', 1), ('gerade', 1), ('den', 1), ('immer', 1), ('komplexer', 1), ('werdenden', 1), ('der', 1), ('informationstechnologie', 1), ('sind', 1), ('die', 1), ('potenziellen', 1), ('projektrisiken', 1), ('besonders', 1), ('hoch', 1), ('ohne', 1), ('eine', 1), ('geeignete', 1)]
[('die', 4), ('der', 2), ('autoren', 1), ('stellen', 1), ('sicherheitsaspekte', 1), ('internet', 1), ('kommunikation', 1), ('verständlich', 1), ('dar', 1), ('dabei', 1), ('betrachten', 1), ('sie', 1), ('nicht', 1), ('nur', 1), ('theoretischen', 1), ('grundlagen', 1), ('verschiedener', 1), ('sicherheitsstrategien', 1), ('sondern', 1), ('erläutern', 1), ('auch', 1), ('risiken', 1), ('bei', 1), ('anwendung', 1), ('bzw', 1)]
[('für', 2), ('diesem', 1), ('werk', 1), ('werden', 1), ('alle', 1), ('aspekte', 1), ('der', 1), ('sprache', 1), ('behandelt', 1), ('deshalb', 1), ('ist', 1), ('da', 1), ('buch', 1), ('ebenso', 1), ('einsteiger', 1), ('mit', 1), ('oder', 1), ('ohne', 1), ('vorkenntnisse', 1), ('über', 1), ('eine', 1), ('andere', 1), ('programmiersprache', 1), ('al', 1), ('auch', 1), ('umsteiger', 1), ('von', 1), ('anderen', 1), ('programmiersprachen', 1), ('bzw', 1), ('programmierer', 1)]
[('der', 3), ('informatik', 2), ('da', 2), ('eine', 1), ('einführende', 1), ('übersicht', 1), ('hat', 1), ('sich', 1), ('al', 1), ('standardwerk', 1), ('für', 1), ('studium', 1), ('bewährt', 1), ('vorliegende', 1), ('zweite', 1), ('teil', 1), ('steht', 1), ('unter', 1), ('dem', 1), ('leitgedanken', 1), ('strukturen', 1), ('grundthema', 1), ('algorithmen', 1), ('de', 1), ('ersten', 1), ('teils', 1), ('ergänzt', 1), ('zunächst', 1)]
[('game', 2), ('engine', 2), ('today', 1), ('multi', 1), ('agent', 1), ('platform', 1), ('cross', 1), ('fertilize', 1), ('extent', 1), ('technology', 1), ('used', 1), ('area', 1), ('readily', 1), ('compatible', 1), ('due', 1), ('difference', 1), ('primary', 1), ('concern', 1), ('prioritize', 1)]
[('inthesummerof', 1), ('reinforcementlearningresearchersfromaroundtheworld', 1), ('gathered', 1), ('north', 1), ('france', 1), ('week', 1), ('talk', 1), ('discussion', 1), ('reinfor', 1), ('ment', 1), ('learning', 1), ('made', 1), ('cient', 1), ('applied', 1), ('broader', 1), ('range', 1), ('application', 1)]
[('th', 2), ('international', 2), ('workshop', 2), ('volume', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('dalt', 1), ('held', 1), ('satellite', 1), ('aamas', 1), ('joint', 1), ('conference', 1), ('autonomous', 1), ('agent', 1), ('multiagent', 1), ('system', 1), ('estoril', 1), ('portugal', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conferenceproceedings', 1), ('cost', 1), ('action', 1), ('eucognition', 1), ('supported', 1), ('international', 1), ('school', 1), ('multimodal', 1), ('signal', 1), ('cognitive', 1), ('algorithmic', 1), ('issue', 1), ('held', 1), ('vietri', 1), ('sul', 1), ('mare', 1), ('italy', 1), ('april', 1)]
[('nan', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('engineering', 1), ('society', 1), ('agent', 1), ('world', 1), ('esaw', 1), ('held', 1), ('saint', 1), ('etienne', 1), ('france', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('joint', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('bled', 1), ('slovenia', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('together', 1)]
[('kes', 2), ('behalf', 1), ('international', 1), ('organising', 1), ('committee', 1), ('pleased', 1), ('present', 1), ('volume', 1), ('proceeding', 1), ('th', 1), ('inter', 1), ('tional', 1), ('conference', 1), ('knowledge', 1), ('based', 1), ('intelligent', 1), ('information', 1), ('engineering', 1), ('system', 1), ('held', 1)]
[('nan', 1)]
[('nan', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('text', 1), ('speech', 1), ('dialogue', 1), ('tsd', 1), ('held', 1), ('pilsen', 1), ('czech', 1), ('republic', 1), ('september', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('fuzzy', 1), ('logic', 1), ('application', 1), ('wilf', 1), ('held', 1), ('trani', 1), ('italy', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('lnai', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('european', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('athens', 1), ('greece', 1), ('september', 1)]
[('lnai', 2), ('four', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('based', 1), ('intelligent', 1), ('information', 1), ('engineering', 1), ('system', 1), ('kes', 1), ('held', 1), ('kaiserslautern', 1), ('germany', 1), ('september', 1)]
[('lnai', 2), ('four', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('based', 1), ('intelligent', 1), ('information', 1), ('engineering', 1), ('system', 1), ('kes', 1), ('held', 1), ('kaiserslautern', 1), ('germany', 1), ('september', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('robotics', 1), ('application', 1), ('icira', 1), ('held', 1), ('aachen', 1), ('germany', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('australasian', 1), ('joint', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('perth', 1), ('australia', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('data', 1), ('mining', 1), ('application', 1), ('adma', 1), ('held', 1), ('beijing', 1), ('china', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('data', 1), ('mining', 1), ('application', 1), ('adma', 1), ('held', 1), ('beijing', 1), ('china', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('und', 2), ('der', 2), ('von', 2), ('absolut', 1), ('praxisnah', 1), ('ohne', 1), ('erhobenen', 1), ('zeigefinger', 1), ('behandelt', 1), ('leitfaden', 1), ('themen', 1), ('rund', 1), ('um', 1), ('die', 1), ('erstellung', 1), ('einer', 1), ('wissenschaftlichen', 1), ('ausarbeitung', 1), ('er', 1), ('gibt', 1), ('antworten', 1), ('auf', 1), ('fragen', 1), ('recherche', 1), ('zitierweise', 1), ('gliederung', 1), ('einsatz', 1), ('software', 1), ('tool', 1)]
[('ziel', 1), ('de', 1), ('buches', 1), ('ist', 1), ('e', 1), ('studierenden', 1), ('der', 1), ('ingenieur', 1), ('oder', 1), ('naturwissenschaften', 1), ('die', 1), ('programmierung', 1), ('al', 1), ('schlüsselqualifikation', 1), ('mit', 1), ('zahlreichen', 1), ('anwendungsmöglichkeiten', 1), ('vorzustellen', 1), ('großer', 1), ('wert', 1), ('wird', 1), ('auf', 1), ('eine', 1), ('praxisorientierte', 1), ('und', 1), ('verständliche', 1)]
[('university', 3), ('paradigm', 1), ('concurrency', 1), ('observation', 1), ('behaviour', 1), ('system', 1), ('petri', 1), ('net', 1), ('view', 1), ('ryszard', 1), ('janicki', 1), ('mcmaster', 1), ('ca', 1), ('jetty', 1), ('kleijn', 1), ('leiden', 1), ('nl', 1), ('maciej', 1), ('koutny', 1), ('newcastle', 1), ('uk', 1), ('lukasz', 1), ('mikulski', 1), ('nicolaus', 1), ('copernicus', 1)]
[('language', 3), ('technology', 2), ('white', 1), ('paper', 1), ('part', 1), ('series', 1), ('promotes', 1), ('knowledge', 1), ('potential', 1), ('address', 1), ('educator', 1), ('journalist', 1), ('politician', 1), ('community', 1), ('others', 1), ('availability', 1), ('use', 1), ('europe', 1)]
[('book', 2), ('supervised', 2), ('machine', 2), ('first', 1), ('treating', 1), ('field', 1), ('semi', 1), ('unsupervised', 1), ('learning', 1), ('collectively', 1), ('present', 1), ('theory', 1), ('algorithm', 1), ('mining', 1), ('huge', 1), ('data', 1), ('set', 1), ('using', 1), ('support', 1), ('vector', 1), ('svms', 1)]
[('contributor', 1), ('present', 1), ('main', 1), ('result', 1), ('technique', 1), ('specialty', 1), ('easily', 1), ('accessible', 1), ('way', 1), ('accompanied', 1), ('many', 1), ('reference', 1), ('historical', 1), ('hint', 1), ('complete', 1), ('proof', 1), ('solution', 1), ('exercise', 1), ('direction', 1), ('research', 1)]
[('tremendous', 1), ('advance', 1), ('discipline', 1), ('including', 1), ('engineering', 1), ('science', 1), ('health', 1), ('care', 1), ('business', 1), ('avionics', 1), ('management', 1), ('attributed', 1), ('development', 1), ('artificial', 1), ('intelligence', 1), ('paradigm', 1), ('fact', 1), ('researcher', 1), ('always', 1)]
[('product', 1), ('modern', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('mostly', 1), ('formed', 1), ('view', 1), ('opinion', 1), ('goal', 1), ('insider', 1), ('usually', 1), ('engineering', 1), ('background', 1), ('driven', 1), ('force', 1), ('metaphorically', 1), ('described', 1)]
[('nan', 1)]
[('nan', 1)]
[('vast', 1), ('development', 1), ('internet', 1), ('capacity', 1), ('speed', 1), ('wide', 1), ('adop', 1), ('tion', 1), ('medium', 1), ('technology', 1), ('daily', 1), ('life', 1), ('large', 1), ('amount', 1), ('video', 1), ('surging', 1), ('need', 1), ('efficiently', 1), ('processed', 1), ('organized', 1), ('based', 1), ('interest', 1)]
[('book', 2), ('continuation', 1), ('previous', 1), ('volume', 1), ('innovation', 1), ('defence', 1), ('support', 1), ('system', 1), ('includes', 1), ('sample', 1), ('recent', 1), ('advance', 1), ('intelligent', 1), ('monitoring', 1), ('contribution', 1), ('include', 1), ('data', 1), ('fusion', 1), ('modern', 1)]
[('conference', 2), ('present', 1), ('book', 1), ('includes', 1), ('set', 1), ('selected', 1), ('extended', 1), ('paper', 1), ('first', 1), ('international', 1), ('joint', 1), ('computational', 1), ('intelligence', 1), ('ijcci', 1), ('held', 1), ('madeira', 1), ('portugal', 1), ('october', 1), ('composed', 1), ('three', 1)]
[('chaos', 3), ('cryptography', 2), ('field', 2), ('based', 1), ('attracting', 1), ('many', 1), ('researcher', 1), ('past', 1), ('decade', 1), ('research', 1), ('across', 1), ('nonlinear', 1), ('dynamic', 1), ('system', 1), ('computer', 1), ('data', 1), ('security', 1), ('property', 1), ('randomness', 1)]
[('system', 2), ('low', 2), ('design', 1), ('modern', 1), ('engineering', 1), ('entail', 1), ('consideration', 1), ('good', 1), ('trade', 1), ('several', 1), ('target', 1), ('requirement', 1), ('satisfied', 1), ('along', 1), ('life', 1), ('high', 1), ('reliability', 1), ('redundancy', 1), ('operational', 1), ('cost', 1)]
[('computational', 2), ('intelligence', 2), ('series', 1), ('study', 1), ('sci', 1), ('publishes', 1), ('new', 1), ('development', 1), ('advance', 1), ('various', 1), ('area', 1), ('quickly', 1), ('high', 1), ('quality', 1), ('intent', 1), ('cover', 1), ('theory', 1), ('application', 1), ('design', 1)]
[('normal', 1), ('adult', 1), ('difficulty', 1), ('recognizing', 1), ('home', 1), ('artificial', 1), ('system', 1), ('way', 1), ('human', 1), ('book', 1), ('collect', 1), ('interdisciplinary', 1), ('evidence', 1), ('present', 1), ('answer', 1), ('perspective', 1), ('computing', 1), ('namely', 1)]
[('large', 2), ('system', 2), ('today', 1), ('highly', 1), ('parameterized', 1), ('scale', 1), ('distributed', 1), ('computing', 1), ('composed', 1), ('number', 1), ('various', 1), ('component', 1), ('computer', 1), ('database', 1), ('etc', 1), ('provide', 1), ('wide', 1), ('range', 1), ('service', 1), ('user', 1), ('located', 1), ('different', 1)]
[('problem', 2), ('mobile', 2), ('communication', 2), ('call', 1), ('admission', 1), ('control', 1), ('cac', 1), ('dynamic', 1), ('channel', 1), ('assignment', 1), ('dca', 1), ('important', 1), ('decision', 1), ('making', 1), ('cellular', 1), ('system', 1), ('current', 1), ('research', 1), ('considers', 1), ('independent', 1), ('although', 1)]
[('world', 1), ('leading', 1), ('problem', 1), ('field', 1), ('national', 1), ('security', 1), ('protection', 1), ('border', 1), ('borderland', 1), ('book', 1), ('address', 1), ('multiple', 1), ('issue', 1), ('advanced', 1), ('innovative', 1), ('method', 1), ('multi', 1), ('level', 1), ('control', 1), ('ground', 1), ('ugvs', 1), ('aerial', 1), ('drone', 1)]
[('computer', 2), ('graphic', 2), ('use', 2), ('intelligent', 2), ('technique', 2), ('year', 2), ('started', 1), ('recently', 1), ('research', 1), ('area', 1), ('last', 1), ('decade', 1), ('growing', 1)]
[('called', 2), ('network', 1), ('mathematical', 1), ('object', 1), ('consisting', 1), ('set', 1), ('point', 1), ('vertex', 1), ('node', 1), ('connected', 1), ('fashion', 1), ('line', 1), ('edge', 1), ('turn', 1), ('simple', 1), ('description', 1), ('corresponds', 1), ('bewildering', 1), ('array', 1), ('system', 1)]
[('business', 2), ('electronic', 1), ('today', 1), ('transaction', 1), ('supported', 1), ('information', 1), ('communication', 1), ('technology', 1), ('new', 1), ('way', 1), ('communicating', 1), ('integrating', 1), ('customer', 1), ('supplier', 1), ('employee', 1), ('stakeholder', 1), ('scenario', 1)]
[('wsns', 2), ('mobile', 1), ('robot', 1), ('wireless', 1), ('sensor', 1), ('network', 1), ('enabled', 1), ('potential', 1), ('large', 1), ('space', 1), ('ubiquitous', 1), ('pervasive', 1), ('application', 1), ('robotics', 1), ('mostly', 1), ('considered', 1), ('separate', 1), ('research', 1), ('field', 1), ('little', 1), ('work', 1), ('investigated', 1)]
[('book', 2), ('radiotherapy', 2), ('describes', 1), ('recent', 1), ('technology', 1), ('including', 1), ('tool', 1), ('measuring', 1), ('target', 1), ('position', 1), ('tracking', 1), ('based', 1), ('delivery', 1), ('system', 1), ('present', 1), ('customized', 1), ('prediction', 1), ('respiratory', 1), ('motion', 1), ('clustering', 1)]
[('book', 1), ('first', 1), ('single', 1), ('volume', 1), ('brings', 1), ('together', 1), ('topic', 1), ('serious', 1), ('game', 1), ('alternative', 1), ('reality', 1), ('play', 1), ('therapy', 1), ('focus', 1), ('use', 1), ('digital', 1), ('medium', 1), ('therapeutic', 1), ('benefit', 1), ('wide', 1), ('range', 1), ('spanning', 1)]
[('system', 3), ('embedded', 2), ('long', 1), ('become', 1), ('essential', 1), ('application', 1), ('area', 1), ('human', 1), ('control', 1), ('impossible', 1), ('infeasible', 1), ('development', 1), ('modern', 1), ('becoming', 1), ('increasingly', 1), ('difficult', 1), ('challenging', 1), ('overall', 1)]
[('performance', 2), ('hardware', 2), ('latest', 1), ('advance', 1), ('high', 1), ('computing', 1), ('significantly', 1), ('raised', 1), ('level', 1), ('available', 1), ('compute', 1), ('time', 1), ('growing', 1), ('capability', 1), ('modern', 1), ('supercomputing', 1), ('architecture', 1), ('caused', 1)]
[('innovation', 1), ('hardware', 1), ('architecture', 1), ('hyper', 1), ('threading', 1), ('multicore', 1), ('processor', 1), ('mean', 1), ('parallel', 1), ('computing', 1), ('resource', 1), ('available', 1), ('inexpensive', 1), ('desktop', 1), ('computer', 1), ('year', 1), ('many', 1), ('standard', 1), ('software', 1), ('product', 1), ('based', 1)]
[('quantum', 3), ('faithful', 1), ('communication', 1), ('necessary', 1), ('precondition', 1), ('large', 1), ('scale', 1), ('information', 1), ('processing', 1), ('networking', 1), ('irrespective', 1), ('physical', 1), ('platform', 1), ('thus', 1), ('problem', 1), ('state', 1), ('transfer', 1), ('network', 1), ('engineering', 1), ('attracted', 1)]
[('design', 2), ('computer', 2), ('hardware', 1), ('correctness', 1), ('becoming', 1), ('important', 1), ('system', 1), ('author', 1), ('introduce', 1), ('powerful', 1), ('new', 1), ('approach', 1), ('analysis', 1), ('modern', 1), ('architecture', 1), ('based', 1), ('mathematically', 1), ('founded', 1), ('formal', 1), ('method', 1)]
[('nan', 1)]
[('efficiently', 2), ('although', 1), ('believed', 1), ('unsolvable', 1), ('general', 1), ('tractability', 1), ('result', 1), ('suggest', 1), ('practical', 1), ('np', 1), ('hard', 1), ('problem', 1), ('solved', 1), ('combinatorial', 1), ('search', 1), ('algorithm', 1), ('designed', 1), ('explore', 1), ('usually', 1), ('large', 1), ('solution', 1)]
[('significant', 1), ('challenge', 1), ('development', 1), ('embedded', 1), ('cyber', 1), ('physical', 1), ('system', 1), ('gap', 1), ('discipline', 1), ('software', 1), ('control', 1), ('engineering', 1), ('marketplace', 1), ('rapid', 1), ('innovation', 1), ('essential', 1), ('engineer', 1)]
[('wie', 2), ('informatik', 1), ('ist', 1), ('der', 1), ('schlüssel', 1), ('um', 1), ('unsere', 1), ('zunehmend', 1), ('digitalisierte', 1), ('welt', 1), ('zu', 1), ('verstehen', 1), ('diesem', 1), ('buch', 1), ('lesen', 1), ('sie', 1), ('nicht', 1), ('nur', 1), ('navis', 1), ('den', 1), ('günstigsten', 1), ('weg', 1), ('bestimmen', 1), ('viele', 1), ('bilder', 1), ('auf', 1), ('eine', 1), ('kleine', 1), ('speicherkarte', 1), ('passen', 1), ('oder', 1), ('welche', 1), ('dinge', 1), ('ein', 1)]
[('und', 3), ('anschaulich', 1), ('locker', 1), ('geschrieben', 1), ('bietet', 1), ('diesis', 1), ('buch', 1), ('eine', 1), ('verständliche', 1), ('einführung', 1), ('die', 1), ('organisation', 1), ('integration', 1), ('moderner', 1), ('datenwelten', 1), ('erläutert', 1), ('den', 1), ('beitrag', 1), ('de', 1), ('der', 1), ('statistik', 1), ('gängigen', 1), ('iso', 1), ('standard', 1), ('sdmx', 1), ('e', 1), ('ist', 1), ('somit', 1), ('ein', 1), ('mus', 1), ('für', 1)]
[('der', 3), ('und', 3), ('dieser', 1), ('band', 1), ('bibliothek', 1), ('mediengestaltung', 1), ('behandelt', 1), ('nbsp', 1), ('die', 1), ('merkmale', 1), ('kennwerte', 1), ('von', 1), ('hard', 1), ('software', 1), ('mit', 1), ('fokus', 1), ('auf', 1), ('deren', 1), ('einsatz', 1), ('medienbranche', 1), ('weiterhin', 1), ('vermittelt', 1), ('er', 1), ('eine', 1), ('einführung', 1), ('kabelgebundene', 1), ('kabellose', 1)]
[('der', 3), ('bibliothek', 2), ('die', 2), ('und', 2), ('für', 2), ('dieser', 1), ('band', 1), ('mediengestaltung', 1), ('behandelt', 1), ('konzeption', 1), ('gestaltung', 1), ('von', 1), ('webanwendungen', 1), ('mit', 1), ('fokus', 1), ('auf', 1), ('screen', 1), ('interfacedesign', 1), ('mobile', 1), ('endgeräte', 1), ('diese', 1), ('wurden', 1), ('themen', 1), ('de', 1), ('kompendiums', 1)]
[('sich', 3), ('mit', 2), ('die', 2), ('wenn', 1), ('sie', 1), ('für', 1), ('den', 1), ('umgang', 1), ('medien', 1), ('interessieren', 1), ('bietet', 1), ('bibliothek', 1), ('der', 1), ('mediengestalt', 1), ('dazu', 1), ('gehören', 1), ('neben', 1), ('dem', 1), ('buch', 1), ('zum', 1), ('medienmarketing', 1), ('verschiedene', 1), ('werke', 1), ('unterschiedlichen', 1), ('bereichen', 1), ('diesis', 1), ('themenkomplexes', 1)]
[('management', 2), ('und', 2), ('enterprise', 1), ('resource', 1), ('planning', 1), ('erp', 1), ('supply', 1), ('chain', 1), ('scm', 1), ('customer', 1), ('relationship', 1), ('crm', 1), ('business', 1), ('intelligence', 1), ('bi', 1), ('big', 1), ('data', 1), ('analytics', 1), ('bda', 1), ('sind', 1), ('unternehmerische', 1), ('aufgaben', 1), ('prozesse', 1), ('die', 1), ('durch', 1), ('standardisierte', 1)]
[('die', 2), ('uralten', 1), ('spielen', 1), ('wie', 1), ('schach', 1), ('oder', 1), ('go', 1), ('können', 1), ('sich', 1), ('brillantesten', 1), ('spieler', 1), ('verbessern', 1), ('indem', 1), ('sie', 1), ('von', 1), ('einer', 1), ('maschine', 1), ('produzierten', 1), ('strategien', 1), ('studieren', 1), ('robotische', 1), ('systeme', 1), ('üben', 1), ('ihre', 1), ('bewegungen', 1), ('selbst', 1), ('arcade', 1), ('game', 1), ('erreichen', 1)]
[('wir', 4), ('warum', 1), ('schon', 1), ('beim', 1), ('frühstück', 1), ('apps', 1), ('anstarren', 1), ('smartphone', 1), ('und', 1), ('smart', 1), ('home', 1), ('technik', 1), ('schaltet', 1), ('immer', 1), ('mehr', 1), ('unser', 1), ('denken', 1), ('ab', 1), ('weil', 1), ('ein', 1), ('bequemes', 1), ('leben', 1), ('voller', 1), ('spaß', 1), ('vorziehen', 1), ('dafür', 1), ('zahlen', 1), ('einen', 1), ('hohen', 1), ('preis', 1), ('verlernen', 1), ('durch', 1), ('lernprogramme', 1), ('da', 1)]
[('der', 3), ('und', 2), ('diesis', 1), ('lehrbuch', 1), ('bietet', 1), ('eine', 1), ('gut', 1), ('verständliche', 1), ('einführung', 1), ('mathematische', 1), ('konzepte', 1), ('algorithmische', 1), ('verfahren', 1), ('die', 1), ('data', 1), ('science', 1), ('zugrunde', 1), ('liegen', 1), ('e', 1), ('deckt', 1), ('hierfür', 1), ('wesentliche', 1), ('teile', 1), ('datenorganisation', 1), ('deskriptiven', 1), ('inferenziellen', 1)]
[('die', 3), ('relationale', 3), ('und', 2), ('datenbanken', 2), ('autoren', 1), ('führen', 1), ('sql', 1), ('nicht', 1), ('nosql', 1), ('ein', 1), ('auflage', 1), ('erklärt', 1), ('drei', 1), ('typen', 1), ('graphdatenbanken', 1), ('dokumentdatenbanken', 1), ('detail', 1), ('anhand', 1), ('der', 1), ('themen', 1), ('datenbankmanagement', 1)]
[('und', 2), ('maschinelles', 1), ('lernen', 1), ('künstliche', 1), ('intelligenz', 1), ('sind', 1), ('omnipräsente', 1), ('begriffe', 1), ('zur', 1), ('verbesserung', 1), ('von', 1), ('technischen', 1), ('prozessen', 1), ('die', 1), ('praktische', 1), ('umsetzung', 1), ('realen', 1), ('problemen', 1), ('gestaltet', 1), ('sich', 1), ('aber', 1), ('oft', 1), ('schwierig', 1), ('komplex', 1), ('diesis', 1), ('lehrbuch', 1), ('erklärt', 1), ('lernverfahren', 1)]
[('digital', 3), ('forensics', 2), ('advance', 1), ('vi', 1), ('describes', 1), ('original', 1), ('research', 1), ('result', 1), ('innovative', 1), ('application', 1), ('discipline', 1), ('addition', 1), ('highlight', 1), ('major', 1), ('technical', 1), ('legal', 1), ('issue', 1), ('related', 1), ('evidence', 1)]
[('paper', 2), ('book', 1), ('contains', 1), ('extended', 1), ('revised', 1), ('version', 1), ('best', 1), ('presented', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('iee', 1), ('international', 1), ('conference', 1), ('large', 1), ('scale', 1), ('integration', 1), ('vlsi', 1), ('soc', 1), ('held', 1), ('florianópolis', 1), ('brazil', 1), ('october', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('working', 1), ('conference', 1), ('virtual', 1), ('enterprise', 1), ('pro', 1), ('held', 1), ('dresden', 1), ('germany', 1), ('september', 1), ('october', 1), ('revised', 1), ('paper', 1), ('carefully', 1), ('selected', 1), ('inclusion', 1)]
[('informationsdesign', 2), ('und', 2), ('bei', 2), ('ordnet', 1), ('daten', 1), ('wandelt', 1), ('diese', 1), ('nutzbare', 1), ('informationen', 1), ('für', 1), ('spezifische', 1), ('adressaten', 1), ('um', 1), ('anhand', 1), ('relevanter', 1), ('beispiele', 1), ('zeigt', 1), ('der', 1), ('autor', 1), ('das', 1), ('website', 1), ('auch', 1), ('zahlreichen', 1), ('anderen', 1), ('medien', 1), ('tv', 1), ('radio', 1), ('print', 1)]
[('singularity', 2), ('technological', 2), ('hypothesis', 1), ('scientific', 1), ('philosophical', 1), ('assessment', 1), ('offer', 1), ('authoritative', 1), ('jargon', 1), ('free', 1), ('essay', 1), ('critical', 1), ('commentary', 1), ('accelerating', 1), ('progress', 1), ('notion', 1), ('focus', 1), ('conjecture', 1)]
[('hardware', 2), ('beginning', 1), ('research', 1), ('started', 1), ('combine', 1), ('soft', 1), ('comput', 1), ('ing', 1), ('reconfigurable', 1), ('quite', 1), ('unique', 1), ('way', 1), ('method', 1), ('developed', 1), ('called', 1), ('evolvable', 1), ('thanks', 1), ('evolution', 1), ('ary', 1), ('algorithm', 1)]
[('genetic', 2), ('study', 1), ('basis', 1), ('evolution', 1), ('flourished', 1), ('century', 1), ('understanding', 1), ('evolvability', 1), ('programmability', 1), ('biological', 1), ('system', 1), ('algorithm', 1), ('meanwhile', 1), ('grew', 1), ('realization', 1), ('computer', 1)]
[('quantum', 2), ('computing', 2), ('mika', 1), ('hirvensalo', 1), ('map', 1), ('new', 1), ('multidisciplinary', 1), ('research', 1), ('area', 1), ('text', 1), ('contains', 1), ('introduction', 1), ('important', 1), ('recent', 1), ('result', 1), ('topic', 1), ('presentation', 1), ('uniform', 1), ('computer', 1)]
[('die', 3), ('den', 2), ('der', 2), ('autoren', 1), ('de', 1), ('bandes', 1), ('diskutieren', 1), ('aktuellen', 1), ('stand', 1), ('datenbanktechnologie', 1), ('darstellung', 1), ('finden', 1), ('sowohl', 1), ('geschlossenen', 1), ('datenbank', 1), ('management', 1), ('systeme', 1), ('au', 1), ('anwendungen', 1), ('und', 1), ('heute', 1), ('etablierten', 1), ('standardsoftware', 1), ('nicht', 1), ('mehr', 1), ('wegzudenken', 1)]
[('nan', 1)]
[('den', 2), ('die', 2), ('und', 2), ('letzten', 1), ('jahren', 1), ('hat', 1), ('sich', 1), ('der', 1), ('workshop', 1), ('bildverarbeitung', 1), ('für', 1), ('medizin', 1), ('erfolgreich', 1), ('etabliert', 1), ('ziel', 1), ('ist', 1), ('e', 1), ('aktuelle', 1), ('forschungsergebnisse', 1), ('darzustellen', 1), ('dialog', 1), ('zwischen', 1), ('wissenschaftlern', 1), ('industrie', 1), ('anwendern', 1), ('zu', 1), ('vertiefen', 1)]
[('und', 3), ('diesem', 1), ('buch', 1), ('nbsp', 1), ('wird', 1), ('da', 1), ('anwender', 1), ('betriebssystem', 1), ('window', 1), ('vista', 1), ('detailliert', 1), ('anschaulich', 1), ('mit', 1), ('illustrationen', 1), ('grafiken', 1), ('beschrieben', 1), ('der', 1), ('autor', 1), ('erläutert', 1), ('den', 1), ('aufbau', 1), ('diesis', 1), ('betriebssystems', 1), ('führt', 1), ('durch', 1), ('die', 1), ('erfolgreiche', 1), ('installation', 1)]
[('conference', 2), ('extremely', 1), ('pleased', 1), ('present', 1), ('comprehensive', 1), ('book', 1), ('comprising', 1), ('collection', 1), ('research', 1), ('paper', 1), ('basically', 1), ('outcome', 1), ('second', 1), ('ifip', 1), ('tc', 1), ('working', 1), ('group', 1), ('human', 1), ('work', 1), ('interaction', 1), ('design', 1), ('hwid', 1)]
[('der', 3), ('flash', 1), ('und', 1), ('actionscript', 1), ('sind', 1), ('au', 1), ('gestaltung', 1), ('interaktiver', 1), ('website', 1), ('nicht', 1), ('mehr', 1), ('wegzudenken', 1), ('autor', 1), ('arno', 1), ('kohl', 1), ('von', 1), ('macromedia', 1), ('akademie', 1), ('für', 1), ('medien', 1), ('ist', 1), ('experte', 1), ('auf', 1), ('dem', 1), ('gebiet', 1), ('teil', 1), ('programmierkonzepte', 1), ('sowie', 1), ('die', 1), ('strukturen', 1)]
[('nbsp', 3), ('continuous', 2), ('book', 1), ('examines', 1), ('mismatch', 1), ('discrete', 1), ('program', 1), ('lie', 1), ('center', 1), ('modern', 1), ('applied', 1), ('mathematics', 1), ('space', 1), ('phenomenon', 1), ('simulate', 1), ('author', 1), ('considers', 1), ('whether', 1), ('imagine', 1)]
[('die', 2), ('grundlagen', 2), ('da', 1), ('internet', 1), ('ist', 1), ('inzwischen', 1), ('ein', 1), ('fester', 1), ('bestandteil', 1), ('de', 1), ('alltags', 1), ('autoren', 1), ('erläutern', 1), ('technologischen', 1), ('auf', 1), ('denen', 1), ('e', 1), ('beruht', 1), ('ausgehend', 1), ('von', 1), ('den', 1), ('physikalischen', 1), ('der', 1), ('datenübertragung', 1), ('erfahren', 1), ('leser', 1), ('nach', 1), ('welchen', 1), ('prnzipien', 1), ('und', 1)]
[('make', 1), ('full', 1), ('use', 1), ('increasing', 1), ('hardware', 1), ('capability', 1), ('modern', 1), ('puters', 1), ('necessary', 1), ('speedily', 1), ('enhance', 1), ('performance', 1), ('reliability', 1), ('software', 1), ('often', 1), ('without', 1), ('suitable', 1), ('mathematical', 1), ('theory', 1), ('readily', 1)]
[('die', 2), ('und', 2), ('bände', 2), ('sechste', 1), ('auflage', 1), ('diesis', 1), ('standardwerks', 1), ('wurde', 1), ('vollständig', 1), ('überarbeitet', 1), ('deutlich', 1), ('erweitert', 1), ('der', 1), ('gestiegene', 1), ('umfang', 1), ('de', 1), ('werkes', 1), ('machte', 1), ('eine', 1), ('aufteilung', 1), ('vier', 1), ('erforderlich', 1), ('anderen', 1), ('konzeption', 1), ('gestaltung', 1), ('isbn', 1)]
[('und', 2), ('corporate', 1), ('semantic', 1), ('web', 1), ('hierbei', 1), ('geht', 1), ('e', 1), ('um', 1), ('semantische', 1), ('anwendungen', 1), ('deren', 1), ('einsatz', 1), ('für', 1), ('kunden', 1), ('mitarbeiter', 1), ('von', 1), ('unternehmen', 1), ('konkret', 1), ('nutzen', 1), ('stiftet', 1), ('die', 1), ('autoren', 1), ('namhafte', 1), ('experten', 1), ('au', 1), ('industrie', 1), ('wissenschaft', 1), ('berichten', 1), ('über', 1), ('ihre', 1), ('erfahrungen', 1)]
[('ifip', 2), ('conference', 2), ('volume', 1), ('set', 1), ('aict', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('tc', 1), ('wg', 1), ('international', 1), ('computer', 1), ('computing', 1), ('technology', 1), ('agriculture', 1), ('ccta', 1), ('held', 1), ('beijing', 1), ('china', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('ifip', 1), ('wg', 1), ('conference', 1), ('open', 1), ('source', 1), ('system', 1), ('os', 1), ('held', 1), ('san', 1), ('josé', 1), ('costa', 1), ('rica', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('und', 2), ('wie', 2), ('daten', 2), ('die', 1), ('betriebswirtschaftlichen', 1), ('methodischen', 1), ('grundlagen', 1), ('de', 1), ('produktionsfaktors', 1), ('information', 1), ('werden', 1), ('umfassend', 1), ('behandelt', 1), ('anschaulich', 1), ('vermittelt', 1), ('der', 1), ('autor', 1), ('prozesse', 1), ('entstehen', 1), ('strukturen', 1), ('sind', 1), ('aufgebaut', 1), ('inhalte', 1)]
[('conference', 2), ('th', 1), ('book', 1), ('contains', 1), ('paper', 1), ('accepted', 1), ('presentation', 1), ('international', 1), ('computer', 1), ('recognition', 1), ('system', 1), ('core', 1), ('rydzyna', 1), ('castle', 1), ('poland', 1), ('continuation', 1), ('series', 1), ('con', 1), ('ferences', 1), ('similar', 1)]
[('distributed', 2), ('computing', 2), ('artificial', 2), ('international', 1), ('symposium', 1), ('intel', 1), ('gence', 1), ('dcai', 1), ('annual', 1), ('forum', 1), ('brings', 1), ('together', 1), ('past', 1), ('experience', 1), ('current', 1), ('work', 1), ('promising', 1), ('future', 1), ('trend', 1), ('associated', 1)]
[('agent', 2), ('research', 1), ('multi', 1), ('system', 1), ('matured', 1), ('last', 1), ('decade', 1), ('many', 1), ('effective', 1), ('application', 1), ('technology', 1), ('deployed', 1), ('paams', 1), ('provides', 1), ('international', 1), ('forum', 1), ('present', 1), ('discus', 1), ('latest', 1), ('scientific', 1), ('development', 1)]
[('km', 3), ('work', 2), ('comprehensive', 1), ('reference', 1), ('dealing', 1), ('knowledge', 1), ('management', 1), ('consisting', 1), ('volume', 1), ('nbsp', 1), ('essential', 1), ('library', 1), ('every', 1), ('practitioner', 1), ('researcher', 1), ('educator', 1), ('written', 1), ('international', 1), ('array', 1)]
[('textbook', 1), ('introduction', 1), ('scientific', 1), ('computing', 1), ('several', 1), ('numerical', 1), ('method', 1), ('computer', 1), ('solution', 1), ('certain', 1), ('class', 1), ('mathematical', 1), ('problem', 1), ('illustrated', 1), ('author', 1), ('show', 1), ('compute', 1), ('zero', 1), ('integral', 1)]
[('use', 1), ('differing', 1), ('input', 1), ('output', 1), ('equipment', 1), ('scanner', 1), ('monitor', 1), ('printer', 1), ('etc', 1), ('computer', 1), ('aided', 1), ('publishing', 1), ('often', 1), ('result', 1), ('unsatisfactory', 1), ('reproduction', 1), ('color', 1), ('original', 1), ('print', 1), ('online', 1), ('medium', 1), ('first', 1), ('book', 1), ('presenting', 1)]
[('machine', 2), ('science', 2), ('interaction', 1), ('interdisciplinary', 1), ('field', 1), ('focused', 1), ('human', 1), ('conjunction', 1), ('intersection', 1), ('computer', 1), ('behavioural', 1), ('social', 1), ('psychology', 1), ('ergonomics', 1), ('security', 1), ('encompasses', 1), ('study', 1), ('design', 1)]
[('book', 1), ('contains', 1), ('revised', 1), ('version', 1), ('paper', 1), ('presented', 1), ('scientific', 1), ('workshop', 1), ('modeling', 1), ('multi', 1), ('commodity', 1), ('trade', 1), ('information', 1), ('exchange', 1), ('method', 1), ('took', 1), ('place', 1), ('november', 1), ('atwarsaw', 1), ('university', 1), ('technology', 1), ('summarizes', 1), ('result', 1)]
[('processing', 2), ('area', 1), ('natural', 1), ('language', 1), ('computational', 1), ('linguistics', 1), ('continued', 1), ('grow', 1), ('recent', 1), ('year', 1), ('driven', 1), ('demand', 1), ('automatically', 1), ('process', 1), ('text', 1), ('spoken', 1), ('data', 1), ('power', 1), ('technique', 1), ('available', 1), ('research', 1)]
[('service', 2), ('level', 2), ('book', 1), ('present', 1), ('framework', 1), ('mobile', 1), ('information', 1), ('system', 1), ('focusing', 1), ('quality', 1), ('adaptability', 1), ('architectural', 1), ('range', 1), ('adaptive', 1), ('application', 1), ('middleware', 1), ('infrastructural', 1), ('element', 1)]
[('system', 2), ('requiring', 1), ('heterogeneous', 1), ('information', 1), ('cooperate', 1), ('communicate', 1), ('become', 1), ('crucial', 1), ('especially', 1), ('application', 1), ('area', 1), ('business', 1), ('web', 1), ('based', 1), ('mash', 1), ('ups', 1), ('life', 1), ('science', 1), ('cooperating', 1), ('automatically', 1)]
[('mashups', 1), ('emerged', 1), ('innovative', 1), ('software', 1), ('trend', 1), ('interprets', 1), ('existing', 1), ('web', 1), ('building', 1), ('block', 1), ('leverage', 1), ('composition', 1), ('individual', 1), ('component', 1), ('novel', 1), ('value', 1), ('adding', 1), ('way', 1), ('additional', 1), ('appeal', 1), ('derives', 1), ('potential', 1), ('turn', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('research', 1), ('workshop', 1), ('highly', 1), ('redundant', 1), ('sensing', 1), ('robotic', 1), ('system', 1), ('held', 1), ('il', 1), ('ciocco', 1), ('italy', 1)]
[('proliferation', 1), ('huge', 1), ('amount', 1), ('heterogeneous', 1), ('data', 1), ('web', 1), ('importance', 1), ('information', 1), ('retrieval', 1), ('ir', 1), ('grown', 1), ('considerably', 1), ('last', 1), ('year', 1), ('big', 1), ('player', 1), ('computer', 1), ('industry', 1), ('google', 1), ('microsoft', 1), ('yahoo', 1)]
[('und', 2), ('wie', 1), ('wir', 1), ('der', 1), ('neuen', 1), ('digitalen', 1), ('welt', 1), ('die', 1), ('orientierung', 1), ('verlieren', 1), ('wiedergewinnen', 1), ('smartphone', 1), ('smart', 1), ('home', 1), ('social', 1), ('medium', 1), ('da', 1), ('internet', 1), ('ist', 1), ('allgegenwärtig', 1), ('voller', 1), ('verheißungen', 1), ('intelligente', 1), ('kommunikation', 1), ('höchste', 1), ('bequemlichkeit', 1), ('unendlicher', 1)]
[('various', 2), ('zhang', 2), ('zd', 2), ('model', 2), ('book', 1), ('focus', 1), ('solving', 1), ('different', 1), ('type', 1), ('time', 1), ('varying', 1), ('problem', 1), ('present', 1), ('dynamic', 1), ('defining', 1), ('function', 1), ('zfs', 1), ('real', 1), ('complex', 1), ('domain', 1), ('provides', 1), ('theoretical', 1), ('analysis', 1)]
[('nan', 1)]
[('nan', 1)]
[('electronic', 3), ('commerce', 2), ('gamut', 1), ('activity', 1), ('involving', 1), ('transaction', 1), ('performed', 1), ('network', 1), ('via', 1), ('software', 1), ('le', 1), ('autonomous', 1), ('emerging', 1), ('reality', 1), ('strategic', 1), ('study', 1), ('shown', 1), ('major', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('rough', 1), ('set', 1), ('current', 1), ('trend', 1), ('computing', 1), ('rsctc', 1), ('held', 1), ('kobe', 1), ('japan', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('five', 1), ('invited', 1)]
[('vldb', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('data', 1), ('mining', 1), ('bioinformatics', 1), ('vdmb', 1), ('held', 1), ('seoul', 1), ('korea', 1), ('september', 1), ('conjunction', 1), ('revised', 1), ('full', 1)]
[('volume', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('rough', 1), ('set', 1), ('current', 1), ('trend', 1), ('computing', 1), ('rsctc', 1), ('held', 1), ('warsaw', 1), ('poland', 1), ('june', 1), ('present', 1), ('revised', 1), ('paper', 1), ('carefully', 1), ('selected', 1)]
[('tmra', 2), ('international', 2), ('conference', 2), ('paper', 1), ('volume', 1), ('presented', 1), ('topic', 1), ('map', 1), ('research', 1), ('application', 1), ('held', 1), ('october', 1), ('leipzig', 1), ('germany', 1), ('third', 1), ('annual', 1), ('series', 1)]
[('revised', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('autonomous', 1), ('intelligent', 1), ('system', 1), ('agent', 1), ('data', 1), ('mining', 1), ('ai', 1), ('adm', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('june', 1), ('full', 1), ('paper', 1), ('six', 1)]
[('symbolic', 2), ('third', 1), ('international', 1), ('workshop', 1), ('hybrid', 1), ('artificial', 1), ('intelligence', 1), ('system', 1), ('hais', 1), ('presented', 1), ('recent', 1), ('development', 1), ('dynamically', 1), ('expanding', 1), ('realm', 1), ('sub', 1), ('technique', 1), ('aimed', 1), ('construction', 1), ('highly', 1), ('robust', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('logic', 1), ('programming', 1), ('artificial', 1), ('intelligence', 1), ('reasoning', 1), ('lpar', 1), ('took', 1), ('place', 1), ('doha', 1), ('qatar', 1), ('november', 1), ('revised', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('gesture', 1), ('based', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('simulation', 1), ('gw', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('arti', 2), ('cial', 2), ('intelligence', 1), ('recently', 1), ('energized', 1), ('provide', 1), ('clue', 1), ('needed', 1), ('resolve', 1), ('complicated', 1), ('problem', 1), ('ai', 1), ('expected', 1), ('play', 1), ('central', 1), ('role', 1), ('enhancing', 1), ('wide', 1), ('variety', 1), ('daily', 1), ('activity', 1), ('jsai', 1), ('japanese', 1), ('society', 1)]
[('held', 2), ('pricai', 1), ('melbourne', 1), ('australia', 1), ('sixth', 1), ('pacific', 1), ('rim', 1), ('interna', 1), ('tional', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('successor', 1), ('five', 1), ('earlier', 1), ('pricais', 1), ('nagoya', 1), ('japan', 1), ('seoul', 1), ('korea', 1), ('beijing', 1), ('china', 1), ('cairn', 1), ('au', 1), ('tralia', 1)]
[('sequential', 1), ('behavior', 1), ('essential', 1), ('intelligence', 1), ('general', 1), ('fundamental', 1), ('part', 1), ('human', 1), ('activity', 1), ('ranging', 1), ('reasoning', 1), ('language', 1), ('everyday', 1), ('skill', 1), ('complex', 1), ('problem', 1), ('solving', 1), ('sequence', 1), ('learning', 1), ('important', 1), ('component', 1)]
[('agent', 3), ('paper', 2), ('mediated', 2), ('electronic', 2), ('commerce', 2), ('book', 1), ('present', 1), ('collection', 1), ('around', 1), ('topic', 1), ('originate', 1), ('third', 1), ('workshop', 1), ('held', 1), ('conjunction', 1), ('autonomous', 1)]
[('conference', 3), ('tenth', 1), ('portuguese', 1), ('arti', 1), ('cial', 1), ('intelligence', 1), ('epia', 1), ('held', 1), ('porto', 1), ('continued', 1), ('tradition', 1), ('previous', 1), ('series', 1), ('returned', 1), ('city', 1), ('rst', 1), ('took', 1), ('place', 1), ('year', 1), ('ago', 1)]
[('nan', 1)]
[('nan', 1)]
[('fan', 1), ('watching', 1), ('animated', 1), ('story', 1), ('every', 1), ('evening', 1), ('ner', 1), ('always', 1), ('sit', 1), ('front', 1), ('television', 1), ('watch', 1), ('animation', 1), ('program', 1), ('originally', 1), ('produced', 1), ('shown', 1), ('child', 1), ('find', 1), ('becoming', 1), ('younger', 1)]
[('nan', 1)]
[('nan', 1)]
[('robot', 2), ('book', 1), ('author', 1), ('present', 1), ('new', 1), ('computational', 1), ('model', 1), ('forestalling', 1), ('common', 1), ('flaw', 1), ('autonomous', 1), ('behavior', 1), ('end', 1), ('equipped', 1), ('structured', 1), ('reactive', 1), ('plan', 1), ('srps', 1), ('concurrent', 1), ('control', 1), ('program', 1)]
[('matter', 1), ('perspective', 1), ('goal', 1), ('experienced', 1), ('artificial', 1), ('life', 1), ('research', 1), ('always', 1), ('learning', 1), ('experience', 1), ('variety', 1), ('phe', 1), ('nomena', 1), ('gathered', 1), ('lausanne', 1), ('reported', 1), ('discussed', 1), ('fifth', 1)]
[('intelligence', 2), ('aici', 2), ('international', 1), ('conference', 1), ('artificial', 1), ('computational', 1), ('held', 1), ('october', 1), ('sanya', 1), ('china', 1), ('received', 1), ('submission', 1), ('country', 1), ('region', 1), ('rigorous', 1), ('review', 1)]
[('human', 3), ('ability', 2), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('branch', 1), ('computer', 1), ('science', 1), ('model', 1), ('reasoning', 1), ('usage', 1), ('language', 1), ('organization', 1), ('knowledge', 1), ('solving', 1), ('problem', 1), ('practically', 1), ('intellectual', 1), ('usually', 1)]
[('human', 3), ('ability', 2), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('branch', 1), ('computer', 1), ('science', 1), ('model', 1), ('reasoning', 1), ('usage', 1), ('language', 1), ('organization', 1), ('knowledge', 1), ('solving', 1), ('problem', 1), ('practically', 1), ('intellectual', 1), ('usually', 1)]
[('nan', 1)]
[('volume', 1), ('composes', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('computational', 1), ('collective', 1), ('intelligence', 1), ('technology', 1), ('application', 1), ('icci', 1), ('hosted', 1), ('national', 1), ('kaohsiung', 1), ('university', 1), ('applied', 1), ('science', 1), ('wroclaw', 1)]
[('volume', 1), ('composes', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('computational', 1), ('collective', 1), ('intelligence', 1), ('technology', 1), ('application', 1), ('icci', 1), ('hosted', 1), ('national', 1), ('kaohsiung', 1), ('university', 1), ('applied', 1), ('science', 1), ('wroclaw', 1)]
[('paper', 2), ('selected', 2), ('revised', 1), ('full', 1), ('poster', 1), ('summary', 1), ('presented', 1), ('together', 1), ('doctoral', 1), ('consortium', 1), ('article', 1), ('abstract', 1), ('invited', 1), ('lecture', 1), ('carefully', 1), ('reviewed', 1), ('submission', 1), ('book', 1), ('offer', 1)]
[('pleased', 2), ('extend', 1), ('delegate', 1), ('th', 1), ('say', 1), ('friend', 1), ('warmest', 1), ('welcome', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('based', 1), ('intelligent', 1), ('information', 1), ('engineering', 1), ('system', 1), ('wellington', 1)]
[('nan', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('simulation', 1), ('adaptive', 1), ('behavior', 1), ('sab', 1), ('full', 1), ('poster', 1), ('presented', 1), ('organized', 1), ('topical', 1), ('section', 1), ('animat', 1)]
[('th', 2), ('information', 2), ('proceeding', 1), ('international', 1), ('workshop', 1), ('cooperative', 1), ('agent', 1), ('cia', 1), ('held', 1), ('sonera', 1), ('conference', 1), ('center', 1), ('sinki', 1), ('finland', 1), ('august', 1), ('co', 1), ('located', 1), ('agentcities', 1), ('day', 1)]
[('nan', 1)]
[('nan', 1)]
[('th', 2), ('international', 2), ('workshop', 2), ('agent', 2), ('volume', 1), ('contains', 1), ('selection', 1), ('paper', 1), ('presented', 1), ('multi', 1), ('based', 1), ('simulation', 1), ('mabs', 1), ('co', 1), ('located', 1), ('joint', 1), ('conference', 1), ('autonomous', 1), ('multiagent', 1), ('system', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('kr', 1), ('hc', 1), ('workshop', 1), ('held', 1), ('ecai', 1), ('lisbon', 1), ('portugal', 1), ('august', 1), ('extended', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1), ('cover', 1), ('topic', 1), ('ontology', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('flexible', 1), ('query', 1), ('answering', 1), ('system', 1), ('fqas', 1), ('held', 1), ('milan', 1), ('italy', 1), ('june', 1), ('present', 1), ('revised', 1), ('full', 1), ('paper', 1), ('organized', 1), ('topical', 1), ('section', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('grammar', 1), ('held', 1), ('bordeaux', 1), ('france', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('including', 1), ('invited', 1), ('talk', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('concept', 1), ('analysis', 1), ('icfca', 1), ('held', 1), ('nicosia', 1), ('cyprus', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1), ('carefully', 1)]
[('lnai', 2), ('conference', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('ecal', 1), ('held', 1), ('budapest', 1), ('hungary', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('mathematics', 1), ('computation', 1), ('music', 1), ('mcm', 1), ('held', 1), ('paris', 1), ('france', 1), ('june', 1), ('revised', 1), ('full', 1), ('presented', 1), ('short', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('augmented', 1), ('cognition', 1), ('fac', 1), ('held', 1), ('orlando', 1), ('fl', 1), ('usa', 1), ('july', 1), ('within', 1), ('framework', 1), ('human', 1), ('computer', 1), ('interaction', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('engineering', 1), ('psychology', 1), ('cognitive', 1), ('ergonomics', 1), ('epce', 1), ('held', 1), ('orlando', 1), ('fl', 1), ('usa', 1), ('july', 1), ('within', 1), ('framework', 1)]
[('book', 1), ('contains', 1), ('selected', 1), ('paper', 1), ('colloquium', 1), ('honor', 1), ('alain', 1), ('lecomte', 1), ('held', 1), ('pauillac', 1), ('france', 1), ('november', 1), ('event', 1), ('part', 1), ('anr', 1), ('project', 1), ('prélude', 1), ('towards', 1), ('theoretical', 1), ('pragmatic', 1), ('based', 1), ('ludics', 1), ('continuation', 1)]
[('international', 2), ('th', 2), ('book', 1), ('constitutes', 1), ('joint', 1), ('refereed', 1), ('proceeding', 1), ('three', 1), ('event', 1), ('namely', 1), ('symposium', 1), ('integration', 1), ('symbolic', 1), ('computation', 1), ('mechanized', 1), ('reasoning', 1), ('calculemus', 1), ('conference', 1), ('mathematical', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('computational', 1), ('collective', 1), ('intelligence', 1), ('icci', 1), ('held', 1), ('gdynia', 1), ('poland', 1), ('september', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('italian', 1), ('association', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('ia', 1), ('held', 1), ('palermo', 1), ('italy', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('logic', 2), ('edited', 1), ('collaboration', 1), ('folli', 1), ('association', 1), ('language', 1), ('information', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('rationality', 1), ('interaction', 1), ('lori', 1), ('held', 1), ('guangzhou', 1), ('china', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('knowledge', 1), ('information', 1), ('creativity', 1), ('support', 1), ('system', 1), ('kcis', 1), ('held', 1), ('chang', 1), ('mai', 1), ('thailand', 1), ('november', 1), ('revised', 1), ('full', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('automated', 1), ('deduction', 1), ('geometry', 1), ('adg', 1), ('held', 1), ('munich', 1), ('germany', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('spanish', 1), ('association', 1), ('artificial', 1), ('intelligence', 1), ('caepia', 1), ('held', 1), ('la', 1), ('laguna', 1), ('canary', 1), ('island', 1), ('spain', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('principle', 1), ('practice', 1), ('multi', 1), ('agent', 1), ('system', 1), ('prima', 1), ('held', 1), ('kolkata', 1), ('india', 1), ('november', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('held', 1), ('th', 1), ('international', 1), ('conference', 1), ('autonomous', 1), ('agent', 1), ('multiagent', 1), ('system', 1), ('aamas', 1), ('taipei', 1), ('taiwan', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('kr', 1), ('hc', 1), ('workshop', 1), ('held', 1), ('conjunction', 1), ('th', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('medicine', 1), ('aime', 1), ('bled', 1), ('slovenia', 1), ('july', 1), ('extended', 1), ('paper', 1)]
[('selected', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('th', 1), ('european', 1), ('workshop', 1), ('reinforcement', 1), ('learning', 1), ('ewrl', 1), ('took', 1), ('place', 1), ('athens', 1), ('greece', 1), ('september', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('mldm', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1), ('topic', 1), ('range', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('held', 1), ('huangshan', 1), ('china', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('spatial', 1), ('cognition', 1), ('sc', 1), ('held', 1), ('kloster', 1), ('seeon', 1), ('germany', 1), ('august', 1), ('september', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('virtual', 1), ('agent', 1), ('iva', 1), ('held', 1), ('santa', 1), ('cruz', 1), ('ca', 1), ('usa', 1), ('september', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('grammar', 2), ('state', 1), ('art', 1), ('survey', 1), ('document', 1), ('fluid', 1), ('construction', 1), ('fcg', 1), ('new', 1), ('formalism', 1), ('representation', 1), ('lexicon', 1), ('used', 1), ('wide', 1), ('range', 1), ('case', 1), ('study', 1), ('different', 1), ('language', 1), ('studying', 1), ('specific', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('st', 1), ('brazilian', 1), ('symposium', 1), ('artificial', 1), ('intelligence', 1), ('sbia', 1), ('held', 1), ('curitiba', 1), ('brazil', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conditionals', 1), ('fascinating', 1), ('versatile', 1), ('object', 1), ('knowledge', 1), ('representation', 1), ('hand', 1), ('express', 1), ('rule', 1), ('general', 1), ('sense', 1), ('representing', 1), ('example', 1), ('plausible', 1), ('relationship', 1), ('physical', 1), ('law', 1), ('social', 1), ('norm', 1)]
[('fuzzy', 2), ('controller', 2), ('book', 1), ('provides', 1), ('critical', 1), ('discussion', 1), ('perspective', 1), ('classical', 1), ('control', 1), ('theory', 1), ('special', 1), ('emphasis', 1), ('placed', 1), ('topic', 1), ('importance', 1), ('industrial', 1), ('application', 1), ('including', 1), ('self', 1), ('tuning', 1)]
[('world', 1), ('live', 1), ('pervaded', 1), ('uncertainty', 1), ('imprecision', 1), ('likely', 1), ('rain', 1), ('afternoon', 1), ('take', 1), ('umbrella', 1), ('able', 1), ('find', 1), ('parking', 1), ('near', 1), ('campus', 1), ('go', 1), ('bus', 1), ('simple', 1), ('question', 1), ('mon', 1)]
[('die', 3), ('informatik', 3), ('jahrestagung', 2), ('gesellschaft', 1), ('für', 1), ('veranstaltet', 1), ('ihre', 1), ('vom', 1), ('september', 1), ('berlin', 1), ('beschäftigt', 1), ('sich', 1), ('mit', 1), ('den', 1), ('zentralen', 1), ('themen', 1), ('zukunft', 1), ('der', 1), ('ausbildung', 1), ('bioinformatik', 1)]
[('web', 3), ('die', 3), ('dynpro', 2), ('abap', 2), ('durch', 2), ('der', 2), ('schritt', 2), ('ermöglicht', 1), ('programmierung', 1), ('von', 1), ('anwendungen', 1), ('sap', 1), ('systeme', 1), ('verbunden', 1), ('sind', 1), ('band', 1), ('bietet', 1), ('eine', 1), ('für', 1), ('einführung', 1), ('leser', 1), ('sollen', 1), ('da', 1), ('erarbeiten', 1), ('praxisbasierten', 1), ('beispiele', 1)]
[('computational', 2), ('growth', 1), ('bioinformatics', 1), ('biology', 1), ('field', 1), ('last', 1), ('year', 1), ('remarkable', 1), ('trend', 1), ('increase', 1), ('pace', 1), ('fact', 1), ('need', 1), ('technique', 1), ('efficiently', 1), ('handle', 1), ('huge', 1), ('amount', 1)]
[('search', 2), ('book', 1), ('fault', 1), ('tolerant', 1), ('algorithm', 1), ('searching', 1), ('fundamental', 1), ('problem', 1), ('computer', 1), ('science', 1), ('time', 1), ('algorithmic', 1), ('combinatorial', 1), ('issue', 1), ('originally', 1), ('studied', 1), ('context', 1), ('find', 1), ('application', 1), ('diverse', 1)]
[('industrial', 1), ('development', 1), ('software', 1), ('system', 1), ('need', 1), ('guided', 1), ('recognized', 1), ('engineering', 1), ('principle', 1), ('commercial', 1), ('shelf', 1), ('cot', 1), ('component', 1), ('enable', 1), ('systematic', 1), ('cost', 1), ('effective', 1), ('reuse', 1), ('prefabricated', 1), ('tested', 1), ('part', 1), ('characteristic', 1), ('approach', 1)]
[('television', 2), ('mature', 1), ('mass', 1), ('medium', 1), ('close', 1), ('eight', 1), ('decade', 1), ('regular', 1), ('broadcast', 1), ('beginning', 1), ('germany', 1), ('uk', 1), ('usa', 1), ('today', 1), ('despite', 1), ('spectacular', 1), ('growth', 1), ('internet', 1), ('social', 1), ('network', 1), ('still', 1), ('leading', 1)]
[('book', 1), ('gather', 1), ('thread', 1), ('evolved', 1), ('across', 1), ('different', 1), ('mathematical', 1), ('discipline', 1), ('seamless', 1), ('narrative', 1), ('deal', 1), ('condition', 1), ('main', 1), ('aspect', 1), ('understanding', 1), ('performance', 1), ('regarding', 1), ('stability', 1), ('complexity', 1)]
[('der', 2), ('diesis', 1), ('buch', 1), ('wendet', 1), ('sich', 1), ('entwickler', 1), ('die', 1), ('bereits', 1), ('über', 1), ('erste', 1), ('erfahrungen', 1), ('programmierung', 1), ('verfügen', 1), ('e', 1), ('fördert', 1), ('den', 1), ('effizienten', 1), ('strukturierten', 1), ('umgang', 1), ('mit', 1), ('da', 1), ('vorgestellte', 1), ('detailwissen', 1), ('hilft', 1), ('zudem', 1), ('bei', 1), ('entwicklung', 1), ('eigener', 1), ('ideen', 1), ('und', 1)]
[('und', 3), ('der', 2), ('gesellschaft', 2), ('für', 2), ('die', 1), ('fachausschüsse', 1), ('echtzeitsysteme', 1), ('informatik', 1), ('vdi', 1), ('vde', 1), ('mess', 1), ('automatisierungstechnik', 1), ('bieten', 1), ('wissenschaftlern', 1), ('nutzern', 1), ('herstellern', 1), ('mit', 1), ('dem', 1), ('workshop', 1), ('eingebettete', 1), ('systeme', 1), ('ein', 1), ('forum', 1), ('neue', 1), ('trend', 1)]
[('der', 2), ('die', 2), ('bisher', 1), ('wurde', 1), ('da', 1), ('service', 1), ('management', 1), ('öffentlichen', 1), ('verwaltung', 1), ('deutschland', 1), ('nur', 1), ('rande', 1), ('behandelt', 1), ('diesem', 1), ('buch', 1), ('geben', 1), ('autoren', 1), ('einen', 1), ('umfassenden', 1), ('einblick', 1), ('bisherigen', 1), ('fortschritte', 1), ('bei', 1), ('implementierung', 1), ('von', 1), ('prozessen', 1)]
[('der', 3), ('mit', 2), ('theoretischen', 2), ('informatik', 2), ('da', 1), ('vorliegende', 1), ('lehrbuch', 1), ('basiert', 1), ('auf', 1), ('einer', 1), ('vierstündigen', 1), ('vorlesung', 1), ('dem', 1), ('titel', 1), ('grundlagen', 1), ('die', 1), ('autoren', 1), ('führen', 1), ('exemplarischen', 1), ('problemstellungen', 1), ('deren', 1), ('lösungen', 1), ('rechnern', 1), ('von', 1)]
[('und', 3), ('open', 1), ('vms', 1), ('einsteiger', 1), ('lernen', 1), ('da', 1), ('weitverbreitete', 1), ('betriebssystem', 1), ('mit', 1), ('diesem', 1), ('verständlichen', 1), ('lehr', 1), ('nachschlagewerk', 1), ('schnell', 1), ('kennen', 1), ('anzuwenden', 1), ('auch', 1), ('profis', 1), ('finden', 1), ('hier', 1), ('eine', 1), ('wertvolle', 1), ('verläßliche', 1), ('hilfe', 1), ('für', 1), ('ihre', 1), ('tägliche', 1), ('arbeit', 1), ('die', 1), ('wichtigsten', 1)]
[('nan', 1)]
[('einen', 2), ('de', 2), ('wer', 1), ('dieser', 1), ('zeit', 1), ('technisch', 1), ('orientierten', 1), ('workshop', 1), ('veranstaltet', 1), ('und', 1), ('tagungsband', 1), ('herausgibt', 1), ('findet', 1), ('sich', 1), ('schon', 1), ('seit', 1), ('jahren', 1), ('da', 1), ('vorwort', 1), ('letzten', 1), ('jahres', 1), ('läßt', 1), ('grüßen', 1), ('einem', 1), ('zwiespalt', 1), ('zwischen', 1), ('bedenken', 1), ('wegen', 1), ('eingegangenen', 1)]
[('complexity', 5), ('measure', 2), ('communication', 1), ('party', 1), ('protocol', 1), ('year', 1), ('old', 1), ('already', 1), ('considered', 1), ('fundamen', 1), ('tal', 1), ('recent', 1), ('theory', 1), ('similarly', 1), ('kolmogorov', 1)]
[('und', 3), ('werden', 2), ('diesem', 1), ('lehrbuch', 1), ('die', 1), ('mathematischen', 1), ('grundlagen', 1), ('exakt', 1), ('dennoch', 1), ('anschaulich', 1), ('gut', 1), ('nachvollziehbar', 1), ('vermittelt', 1), ('sie', 1), ('durchgehend', 1), ('anhand', 1), ('zahlreicher', 1), ('musterbeispiele', 1), ('illustriert', 1), ('durch', 1), ('anwendungen', 1), ('der', 1), ('informatik', 1), ('motiviert', 1)]
[('collective', 1), ('intelligence', 1), ('become', 1), ('attractive', 1), ('subject', 1), ('interest', 1), ('academia', 1), ('industry', 1), ('conference', 1), ('workshop', 1), ('discus', 1), ('impact', 1), ('user', 1), ('motivation', 1), ('participate', 1), ('value', 1), ('creation', 1), ('process', 1), ('enabling', 1)]
[('computation', 2), ('party', 2), ('input', 2), ('setting', 1), ('multiparty', 1), ('set', 1), ('vate', 1), ('wish', 1), ('jointly', 1), ('compute', 1), ('predetermined', 1), ('function', 1), ('output', 1), ('received', 1), ('correctly', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('study', 1), ('institute', 1), ('face', 1), ('recognition', 1), ('theory', 1), ('application', 1), ('held', 1), ('stirling', 1), ('scotland', 1), ('uk', 1), ('june', 1), ('july', 1)]
[('die', 5), ('und', 4), ('werden', 2), ('von', 2), ('diesem', 1), ('band', 1), ('aktuellen', 1), ('entwicklungen', 1), ('methoden', 1), ('werkzeugen', 1), ('der', 1), ('informatik', 1), ('für', 1), ('lehre', 1), ('ausbildung', 1), ('dargestellt', 1), ('zugleich', 1), ('erfordernisse', 1), ('industrie', 1), ('wirtschaft', 1), ('hochschulen', 1), ('berufsbildenden', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('part', 1), ('ii', 1), ('refereed', 1), ('four', 1), ('volume', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('computer', 1), ('computing', 1), ('technology', 1), ('agriculture', 1), ('ccta', 1), ('held', 1), ('nanchang', 1), ('china', 1), ('october', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('part', 1), ('iv', 1), ('refereed', 1), ('four', 1), ('volume', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('computer', 1), ('computing', 1), ('technology', 1), ('agriculture', 1), ('ccta', 1), ('held', 1), ('nanchang', 1), ('china', 1), ('october', 1)]
[('und', 3), ('datenbanken', 2), ('sql', 2), ('der', 2), ('da', 1), ('buch', 1), ('ergänzt', 1), ('erweitert', 1), ('relationale', 1), ('theorie', 1), ('praxis', 1), ('isbn', 1), ('schwerpunkt', 1), ('darstellung', 1), ('sind', 1), ('aspekte', 1), ('anwendungsprogrammierung', 1), ('mit', 1), ('dabei', 1), ('werden', 1), ('prozedurale', 1), ('konzepte', 1), ('wie', 1)]
[('algorithmen', 2), ('hinter', 1), ('vielen', 1), ('computer', 1), ('programmen', 1), ('stecken', 1), ('intelligente', 1), ('verfahren', 1), ('die', 1), ('al', 1), ('bezeichnet', 1), ('lösen', 1), ('nicht', 1), ('nur', 1), ('mathematische', 1), ('zahlen', 1), ('aufgaben', 1), ('sondern', 1), ('auch', 1), ('ganz', 1), ('alltägliche', 1), ('probleme', 1), ('wie', 1), ('ermittle', 1), ('ich', 1), ('den', 1), ('kürzesten', 1), ('weg', 1), ('zwischen', 1)]
[('model', 4), ('abstraction', 2), ('basic', 1), ('principle', 1), ('software', 1), ('engineering', 1), ('provided', 1), ('modeling', 1), ('transformation', 1), ('constitute', 1), ('core', 1), ('driven', 1), ('development', 1), ('refined', 1), ('finally', 1), ('transformed', 1)]
[('die', 1), ('funktionale', 1), ('und', 1), ('applikative', 1), ('programmierung', 1), ('nimmt', 1), ('seit', 1), ('vielen', 1), ('jahren', 1), ('einen', 1), ('wichtigen', 1), ('platz', 1), ('innerhalb', 1), ('der', 1), ('verschiedenen', 1), ('programmierparadigmen', 1), ('ein', 1), ('da', 1), ('buch', 1), ('bietet', 1), ('eine', 1), ('leicht', 1), ('verständliche', 1), ('einführung', 1), ('von', 1), ('den', 1), ('theoretischen', 1), ('grundlagen', 1), ('bi', 1), ('hin', 1), ('zu', 1)]
[('verification', 2), ('textbook', 1), ('guide', 1), ('student', 1), ('algebraic', 1), ('specification', 1), ('distributed', 1), ('system', 1), ('prominent', 1), ('formal', 1), ('technique', 1), ('author', 1), ('employ', 1), ('µcrl', 1), ('vehicle', 1), ('language', 1), ('developed', 1), ('combine', 1), ('process', 1)]
[('nan', 1)]
[('language', 2), ('processing', 2), ('book', 1), ('teach', 1), ('principle', 1), ('natural', 1), ('cover', 1), ('linguistics', 1), ('issue', 1), ('detail', 1), ('function', 1), ('involved', 1), ('including', 1), ('part', 1), ('speech', 1), ('tagging', 1), ('using', 1), ('rule', 1), ('stochastic', 1), ('technique', 1), ('key', 1), ('feature', 1)]
[('language', 3), ('ideal', 1), ('using', 1), ('human', 1), ('control', 1), ('machine', 1), ('requires', 1), ('practical', 1), ('theory', 1), ('natural', 1), ('communication', 1), ('includes', 1), ('grammatical', 1), ('analysis', 1), ('sign', 1), ('plus', 1), ('model', 1), ('cognitive', 1), ('agent', 1), ('interface', 1), ('recognition', 1)]
[('nbsp', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('symbolic', 1), ('quantitative', 1), ('approach', 1), ('reasoning', 1), ('uncertainty', 1), ('ecsqaru', 1), ('held', 1), ('aalborg', 1), ('denmark', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('mathematical', 2), ('julia', 2), ('among', 1), ('computer', 1), ('generated', 1), ('image', 1), ('set', 1), ('rational', 1), ('map', 1), ('occupy', 1), ('prominent', 1), ('position', 1), ('beauty', 1), ('complexity', 1), ('fascinating', 1), ('hold', 1), ('deep', 1), ('content', 1), ('computational', 1), ('hardness', 1)]
[('nan', 1)]
[('volume', 1), ('advance', 1), ('soft', 1), ('computing', 1), ('lecture', 1), ('note', 1), ('computer', 1), ('th', 1), ('science', 1), ('vols', 1), ('constitute', 1), ('proceeding', 1), ('inter', 1), ('tional', 1), ('symposium', 1), ('neural', 1), ('network', 1), ('isnn', 1), ('held', 1), ('wuhan', 1), ('china', 1)]
[('research', 2), ('system', 2), ('project', 1), ('investigate', 1), ('design', 1), ('construction', 1), ('reliable', 1), ('computing', 1), ('initiated', 1), ('randell', 1), ('university', 1), ('newcastle', 1), ('upon', 1), ('tyne', 1), ('ten', 1), ('year', 1), ('reliability', 1), ('substantial', 1), ('number', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('study', 1), ('institute', 1), ('mathematical', 1), ('model', 1), ('decision', 1), ('support', 1), ('held', 1), ('val', 1), ('isere', 1), ('france', 1), ('july', 1), ('august', 1)]
[('anyone', 3), ('book', 1), ('intended', 1), ('plan', 1), ('design', 1), ('implement', 1), ('software', 1), ('system', 1), ('involved', 1), ('quality', 1), ('assurance', 1), ('interested', 1), ('practicability', 1), ('modern', 1), ('concept', 1), ('method', 1), ('tool', 1)]
[('nan', 1)]
[('multichannel', 1), ('steht', 1), ('für', 1), ('die', 1), ('integration', 1), ('unterschiedlicher', 1), ('medien', 1), ('wie', 1), ('print', 1), ('tv', 1), ('online', 1), ('pda', 1), ('wap', 1), ('sm', 1), ('ä', 1), ('der', 1), ('gleiche', 1), ('content', 1), ('wird', 1), ('verschiedenen', 1), ('lebenssituationen', 1), ('gleichermaßen', 1), ('erreichbar', 1), ('gemacht', 1), ('auto', 1), ('werden', 1), ('mobile', 1), ('dienste', 1), ('verfügbar', 1)]
[('und', 5), ('die', 3), ('diesis', 1), ('hand', 1), ('arbeitsbuch', 1), ('stellt', 1), ('konzepte', 1), ('anwendungstechniken', 1), ('von', 1), ('linux', 1), ('vor', 1), ('viele', 1), ('einzelheiten', 1), ('werden', 1), ('zusammenhängend', 1), ('verständlich', 1), ('dargestellt', 1), ('autoren', 1), ('beschreiben', 1), ('häufig', 1), ('verwendeten', 1), ('kommandos', 1), ('funktionen', 1), ('detailliert', 1)]
[('die', 2), ('und', 2), ('auch', 1), ('hat', 1), ('der', 1), ('workshop', 1), ('bildverarbeitung', 1), ('für', 1), ('medizin', 1), ('erneut', 1), ('zum', 1), ('ziel', 1), ('aktuelle', 1), ('forschungsergebnisse', 1), ('darzustellen', 1), ('den', 1), ('dialog', 1), ('zwischen', 1), ('wissenschaftlern', 1), ('industrie', 1), ('anwendern', 1), ('zu', 1), ('vertiefen', 1), ('beiträge', 1), ('de', 1), ('bandes', 1), ('einige', 1)]
[('coherently', 1), ('written', 1), ('chapter', 1), ('leading', 1), ('researcher', 1), ('presented', 1), ('anthology', 1), ('devoted', 1), ('basic', 1), ('result', 1), ('achieved', 1), ('computational', 1), ('intelligence', 1), ('book', 1), ('provides', 1), ('complete', 1), ('coverage', 1), ('core', 1), ('issue', 1), ('field', 1), ('especially', 1)]
[('canadian', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('regina', 1), ('sk', 1), ('canada', 1), ('regular', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('area', 3), ('book', 1), ('integrates', 1), ('computer', 1), ('science', 1), ('namely', 1), ('data', 1), ('mining', 1), ('evolutionary', 1), ('algorithm', 1), ('become', 1), ('increasingly', 1), ('popular', 1), ('last', 1), ('year', 1), ('integration', 1), ('currently', 1), ('active', 1), ('research', 1), ('general', 1)]
[('model', 2), ('engine', 2), ('utilization', 1), ('mathematical', 1), ('numerically', 1), ('describe', 1), ('performance', 1), ('internal', 1), ('combustion', 1), ('significance', 1), ('development', 1), ('new', 1), ('improved', 1), ('today', 1), ('simulation', 1), ('already', 1), ('viewed', 1), ('standard', 1)]
[('paper', 1), ('selected', 1), ('present', 1), ('monograph', 1), ('small', 1), ('piece', 1), ('subject', 1), ('investigated', 1), ('poland', 1), ('range', 1), ('medical', 1), ('computer', 1), ('science', 1), ('summary', 1), ('preliminary', 1), ('result', 1), ('presented', 1), ('international', 1), ('conference', 1)]
[('der', 2), ('diesem', 1), ('umfangreichen', 1), ('vor', 1), ('fast', 1), ('jahren', 1), ('erschienenen', 1), ('werk', 1), ('wurde', 1), ('die', 1), ('geschichte', 1), ('rechentechnik', 1), ('angefangen', 1), ('vom', 1), ('abacus', 1), ('römer', 1), ('bi', 1), ('zu', 1), ('den', 1), ('programmgesteuerten', 1), ('digitalen', 1), ('rechenanlagen', 1), ('ausführlich', 1), ('dargestellt', 1), ('de', 1), ('beauclair', 1), ('war', 1), ('seit', 1), ('vielen', 1)]
[('soft', 1), ('computing', 1), ('technique', 1), ('reached', 1), ('significant', 1), ('level', 1), ('recognition', 1), ('ceptance', 1), ('academic', 1), ('industrial', 1), ('community', 1), ('paper', 1), ('collected', 1), ('volume', 1), ('illustrate', 1), ('depth', 1), ('current', 1), ('theoretical', 1), ('research', 1), ('trend', 1)]
[('der', 2), ('und', 2), ('neben', 1), ('den', 1), ('grundlegenden', 1), ('konzepten', 1), ('relationalen', 1), ('datenbanktechnologie', 1), ('werden', 1), ('dem', 1), ('band', 1), ('auch', 1), ('die', 1), ('entwicklung', 1), ('anwendung', 1), ('praxistauglicher', 1), ('informationssysteme', 1), ('mit', 1), ('standardisierten', 1), ('sprache', 1), ('sql', 1), ('beschrieben', 1), ('methoden', 1), ('zum', 1), ('ablegen', 1)]
[('macromedia', 2), ('director', 2), ('die', 2), ('und', 2), ('für', 1), ('durchstarter', 1), ('ermöglicht', 1), ('einen', 1), ('zügigen', 1), ('einstieg', 1), ('multimedia', 1), ('entwicklung', 1), ('mit', 1), ('gute', 1), ('didaktische', 1), ('aufbereitung', 1), ('ausgewogene', 1), ('darstellung', 1), ('von', 1), ('grundlagen', 1), ('beispielen', 1), ('au', 1), ('der', 1), ('praxis', 1), ('vermittelt', 1)]
[('system', 2), ('technical', 2), ('typical', 1), ('contemporary', 1), ('complex', 1), ('multifaceted', 1), ('amalgamation', 1), ('information', 1), ('organization', 1), ('software', 1), ('human', 1), ('user', 1), ('administrator', 1), ('management', 1), ('resource', 1), ('complexity', 1), ('come', 1), ('involved', 1)]
[('sfc', 2), ('present', 1), ('book', 1), ('provides', 1), ('introduction', 1), ('using', 1), ('space', 1), ('filling', 1), ('curve', 1), ('tool', 1), ('scientific', 1), ('computing', 1), ('special', 1), ('focus', 1), ('laid', 1), ('representation', 1), ('resulting', 1), ('algorithm', 1), ('example', 1), ('grammar', 1), ('based', 1), ('technique', 1), ('introduced', 1)]
[('complex', 1), ('high', 1), ('technology', 1), ('device', 1), ('growing', 1), ('use', 1), ('industry', 1), ('service', 1), ('sector', 1), ('everyday', 1), ('life', 1), ('reliability', 1), ('maintenance', 1), ('utmost', 1), ('importance', 1), ('view', 1), ('cost', 1), ('critical', 1), ('function', 1), ('book', 1), ('focus', 1), ('theme', 1)]
[('text', 1), ('examines', 1), ('multiobjective', 1), ('evolutionary', 1), ('algorithm', 1), ('related', 1), ('technique', 1), ('used', 1), ('solve', 1), ('problem', 1), ('particularly', 1), ('discipline', 1), ('science', 1), ('engineering', 1), ('contribution', 1), ('leading', 1), ('researcher', 1), ('show', 1), ('concept', 1)]
[('algorithm', 2), ('evolutionary', 1), ('class', 1), ('randomized', 1), ('heuristic', 1), ('inspired', 1), ('natural', 1), ('evolution', 1), ('applied', 1), ('many', 1), ('different', 1), ('context', 1), ('particular', 1), ('optimization', 1), ('analysis', 1), ('seen', 1), ('tremendous', 1), ('advance', 1), ('recent', 1), ('year', 1)]
[('research', 3), ('programming', 2), ('constraint', 1), ('fruit', 1), ('several', 1), ('decade', 1), ('carried', 1), ('mathematical', 1), ('logic', 1), ('automated', 1), ('deduction', 1), ('operation', 1), ('arti', 1), ('cial', 1), ('intelligence', 1), ('tool', 1), ('language', 1), ('arising', 1)]
[('nan', 1)]
[('year', 2), ('aois', 2), ('workshop', 2), ('thisproceedingsvolumeofthe', 1), ('thaoisworkshopisanopportunityforlooking', 1), ('back', 1), ('organizing', 1), ('achieve', 1), ('series', 1), ('ago', 1)]
[('international', 2), ('artificial', 2), ('intelligence', 2), ('pacific', 1), ('rim', 1), ('conference', 1), ('pricai', 1), ('biennial', 1), ('event', 1), ('focus', 1), ('ai', 1), ('theory', 1), ('technology', 1), ('application', 1), ('social', 1), ('economic', 1)]
[('nan', 1)]
[('dear', 1), ('delegate', 1), ('friendsand', 1), ('membersofthe', 1), ('growingkes', 1), ('professionalcommunity', 1), ('come', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('based', 1), ('intelligentinformationandengineeringsystemshostedbyla', 1), ('trobeuniversityin', 1), ('bourne', 1)]
[('nan', 1)]
[('present', 1), ('background', 1), ('context', 1), ('idea', 1), ('concept', 1), ('algorithm', 1), ('analysis', 1), ('argument', 1), ('discussing', 1), ('detail', 1), ('accessible', 1), ('beginner', 1), ('specialist', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('study', 1), ('institute', 1), ('workflow', 1), ('management', 1), ('system', 1), ('wfms', 1), ('held', 1), ('istanbul', 1), ('turkey', 1), ('august', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('study', 1), ('institute', 1), ('applied', 1), ('computational', 1), ('electromagnetics', 1), ('state', 1), ('art', 1), ('future', 1), ('trend', 1), ('held', 1), ('island', 1), ('samos', 1), ('greece', 1), ('july', 1), ('august', 1)]
[('nan', 1)]
[('system', 2), ('field', 1), ('called', 1), ('learning', 1), ('classifier', 1), ('populated', 1), ('romantic', 1), ('possible', 1), ('computer', 1), ('program', 1), ('adapt', 1), ('learn', 1), ('develop', 1), ('interacting', 1), ('environment', 1), ('particular', 1), ('organic', 1)]
[('nan', 1)]
[('fqas', 2), ('thisvolumeconstitutestheproceedingsofthesixthinternationalconferenceon', 1), ('flexible', 1), ('query', 1), ('answering', 1), ('system', 1), ('held', 1), ('lyon', 1), ('france', 1), ('june', 1), ('premier', 1), ('conference', 1), ('researcher', 1), ('practitioner', 1), ('concerned', 1)]
[('thearti', 1), ('ciallifetermappearedmorethan', 1), ('yearsagoinasmallcornerofnew', 1), ('mexico', 1), ('usa', 1), ('area', 1), ('developed', 1), ('dramatically', 1), ('many', 1), ('researcher', 1), ('joining', 1), ('enthusiastically', 1), ('research', 1), ('group', 1), ('sprouting', 1), ('everywhere', 1), ('frenetic', 1), ('activity', 1), ('led', 1)]
[('conference', 2), ('mdai', 2), ('held', 2), ('volume', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('nd', 1), ('international', 1), ('modeling', 1), ('decision', 1), ('arti', 1), ('cial', 1), ('intelligence', 1), ('tsukuba', 1), ('japan', 1), ('july', 1), ('follows', 1), ('barcelona', 1), ('catalonia', 1), ('spain', 1)]
[('nan', 1)]
[('spatial', 3), ('cognition', 2), ('world', 2), ('fourth', 1), ('volume', 1), ('series', 1), ('book', 1), ('dedicated', 1), ('basic', 1), ('research', 1), ('field', 1), ('investigates', 1), ('connection', 1), ('physical', 1), ('mental', 1), ('philosopher', 1), ('researcher', 1)]
[('edited', 1), ('volume', 1), ('deal', 1), ('theoretical', 1), ('methodological', 1), ('aspect', 1), ('various', 1), ('evolutionary', 1), ('algorithm', 1), ('application', 1), ('many', 1), ('real', 1), ('world', 1), ('problem', 1), ('originating', 1), ('science', 1), ('technology', 1), ('business', 1), ('commerce', 1), ('comprises', 1), ('chapter', 1)]
[('nan', 1)]
[('prima', 3), ('paci', 2), ('rim', 2), ('workshop', 2), ('multi', 2), ('agent', 2), ('five', 1), ('year', 1), ('ago', 1), ('excitement', 1), ('uncertainty', 1), ('witnessed', 1), ('birth', 1), ('international', 1), ('rst', 1), ('grown', 1), ('th', 1), ('inter', 1), ('tional', 1)]
[('conference', 2), ('ijcar', 2), ('volume', 1), ('contains', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('automated', 1), ('reasoning', 1), ('held', 1), ('july', 1), ('part', 1), ('federated', 1), ('logic', 1), ('hosted', 1), ('school', 1), ('informatics', 1)]
[('nan', 1)]
[('nan', 1)]
[('second', 1), ('international', 1), ('conference', 1), ('fuzzy', 1), ('information', 1), ('engineering', 1), ('icfie', 1), ('major', 1), ('symposium', 1), ('scientist', 1), ('engineer', 1), ('practitioner', 1), ('china', 1), ('world', 1), ('present', 1), ('latest', 1), ('result', 1), ('idea', 1), ('development', 1)]
[('nan', 1)]
[('natural', 2), ('language', 2), ('generation', 1), ('nlg', 1), ('subfield', 1), ('processing', 1), ('nlp', 1), ('often', 1), ('characterized', 1), ('study', 1), ('automatically', 1), ('converting', 1), ('non', 1), ('linguistic', 1), ('representation', 1), ('database', 1), ('knowledge', 1), ('source', 1)]
[('grundkenntnisse', 1), ('algorithmischer', 1), ('prozesse', 1), ('sind', 1), ('wesentlich', 1), ('zum', 1), ('verständnis', 1), ('moderner', 1), ('information', 1), ('technologien', 1), ('hier', 1), ('setzen', 1), ('da', 1), ('buch', 1), ('und', 1), ('die', 1), ('begleitende', 1), ('lernsoftware', 1), ('mit', 1), ('dem', 1), ('programmierbaren', 1), ('marienkäfer', 1), ('kara', 1), ('kann', 1), ('sich', 1), ('der', 1), ('leser', 1), ('spielerischer', 1)]
[('book', 1), ('snapshot', 1), ('current', 1), ('research', 1), ('multiscale', 1), ('modeling', 1), ('computation', 1), ('application', 1), ('cover', 1), ('fundamental', 1), ('mathematical', 1), ('theory', 1), ('numerical', 1), ('algorithm', 1), ('practical', 1), ('computational', 1), ('advice', 1), ('analysing', 1), ('single', 1), ('multiphysics', 1)]
[('proceeding', 2), ('conference', 2), ('sixth', 1), ('international', 1), ('intelligent', 1), ('system', 1), ('knowledge', 1), ('engineering', 1), ('present', 1), ('selected', 1), ('paper', 1), ('iske', 1), ('held', 1), ('december', 1), ('shanghai', 1), ('china', 1), ('examine', 1), ('original', 1)]
[('conference', 2), ('electronic', 2), ('commerce', 2), ('ecwac', 1), ('integrated', 1), ('devoted', 1), ('web', 1), ('application', 1), ('communication', 1), ('proceeding', 1), ('find', 1), ('carefully', 1), ('reviewed', 1), ('scientific', 1), ('outcome', 1), ('second', 1), ('international', 1)]
[('proceediings', 1), ('nato', 1), ('advanced', 1), ('research', 1), ('workshop', 1), ('use', 1), ('computer', 1), ('model', 1), ('explication', 1), ('analysis', 1), ('experiential', 1), ('learning', 1), ('held', 1), ('bonas', 1), ('france', 1), ('october', 1)]
[('von', 2), ('die', 2), ('der', 2), ('dieser', 1), ('zweite', 1), ('vier', 1), ('bänden', 1), ('zur', 1), ('einführung', 1), ('informatik', 1), ('behandelt', 1), ('technische', 1), ('informationsverarbeitung', 1), ('binärcodierung', 1), ('information', 1), ('über', 1), ('digitale', 1), ('schaltungen', 1), ('und', 1), ('rechnerarchitekturen', 1), ('bi', 1), ('hin', 1), ('zu', 1), ('maschinennaher', 1), ('programmierung', 1)]
[('book', 1), ('based', 1), ('nato', 1), ('advanced', 1), ('research', 1), ('workshop', 1), ('structure', 1), ('munication', 1), ('intelligent', 1), ('help', 1), ('hypermedia', 1), ('courseware', 1), ('held', 1), ('espinho', 1), ('portugal', 1), ('april', 1), ('text', 1), ('included', 1), ('regarded', 1)]
[('und', 4), ('aufgaben', 2), ('der', 2), ('ausführlich', 1), ('erläutert', 1), ('die', 1), ('autorin', 1), ('deren', 1), ('lösungen', 1), ('unterschiedlichen', 1), ('schwierigkeitsgrades', 1), ('zu', 1), ('den', 1), ('grundbegriffen', 1), ('mathematik', 1), ('zur', 1), ('linearen', 1), ('numerischen', 1), ('algebra', 1), ('analytischen', 1), ('geometrie', 1), ('ein', 1), ('teil', 1), ('zeigt', 1), ('anwendungen', 1)]
[('new', 2), ('information', 1), ('communication', 1), ('technology', 1), ('enlarged', 1), ('horizon', 1), ('practiced', 1), ('multidisciplinary', 1), ('context', 1), ('introduce', 1), ('challenge', 1), ('theoretical', 1), ('technical', 1), ('approach', 1), ('critical', 1), ('benefit', 1), ('introducing', 1), ('ict', 1)]
[('book', 1), ('introduces', 1), ('relevant', 1), ('information', 1), ('required', 1), ('understand', 1), ('put', 1), ('model', 1), ('driven', 1), ('architecture', 1), ('mda', 1), ('industrial', 1), ('practice', 1), ('clearly', 1), ('explains', 1), ('conceptual', 1), ('primitive', 1), ('present', 1), ('system', 1), ('specification', 1), ('use', 1), ('uml', 1)]
[('ist', 2), ('und', 2), ('maschine', 2), ('semantic', 1), ('web', 1), ('vision', 1), ('konzept', 1), ('programm', 1), ('für', 1), ('die', 1), ('nächste', 1), ('generation', 1), ('de', 1), ('internet', 1), ('semantik', 1), ('dabei', 1), ('ein', 1), ('wesentliches', 1), ('element', 1), ('zur', 1), ('transformation', 1), ('von', 1), ('information', 1), ('wissen', 1), ('sie', 1), ('ermöglicht', 1), ('eine', 1), ('effizientere', 1), ('kommunikation', 1)]
[('problem', 2), ('abundance', 1), ('information', 1), ('increase', 1), ('computing', 1), ('power', 1), ('currently', 1), ('enable', 1), ('researcher', 1), ('tackle', 1), ('highly', 1), ('complicated', 1), ('challenging', 1), ('computational', 1), ('solution', 1), ('feasible', 1), ('using', 1), ('advance', 1), ('innovation', 1), ('area', 1)]
[('company', 2), ('operate', 2), ('present', 1), ('economic', 1), ('social', 1), ('environment', 1), ('given', 1), ('rise', 1), ('new', 1), ('situation', 1), ('within', 1), ('first', 1), ('example', 1), ('globalization', 1), ('economy', 1), ('need', 1), ('performance', 1), ('led', 1), ('outsource', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('trust', 1), ('management', 1), ('ifiptm', 1), ('held', 1), ('malaga', 1), ('spain', 1), ('june', 1), ('revised', 1), ('full', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('computer', 2), ('science', 2), ('intelligent', 2), ('system', 2), ('environment', 2), ('csise', 1), ('integrated', 1), ('conference', 1), ('concentrating', 1), ('focus', 1), ('upon', 1), ('proceeding', 1), ('learn', 1), ('knowledge', 1), ('researcher', 1)]
[('ideal', 1), ('textbook', 1), ('software', 1), ('visualization', 1), ('written', 1), ('especially', 1), ('student', 1), ('teacher', 1), ('computer', 1), ('science', 1), ('provides', 1), ('broad', 1), ('systematic', 1), ('overview', 1), ('area', 1), ('including', 1), ('many', 1), ('pointer', 1), ('tool', 1), ('available', 1), ('today', 1), ('topic', 1), ('covered', 1), ('include', 1)]
[('mathematical', 2), ('textbook', 1), ('present', 1), ('model', 1), ('bioinformatics', 1), ('describes', 1), ('biological', 1), ('problem', 1), ('inspire', 1), ('computer', 1), ('science', 1), ('tool', 1), ('used', 1), ('manage', 1), ('enormous', 1), ('data', 1), ('set', 1), ('involved', 1), ('first', 1), ('part', 1), ('book', 1), ('cover', 1), ('computational', 1)]
[('web', 2), ('data', 2), ('semantic', 1), ('vision', 1), ('idea', 1), ('defined', 1), ('linked', 1), ('way', 1), ('used', 1), ('machine', 1), ('display', 1), ('purpose', 1), ('automation', 1), ('integration', 1), ('reuse', 1), ('across', 1), ('various', 1), ('application', 1)]
[('mathematics', 2), ('important', 2), ('play', 1), ('role', 1), ('many', 1), ('scientific', 1), ('engineering', 1), ('discipline', 1), ('book', 1), ('deal', 1), ('numerical', 1), ('solution', 1), ('differential', 1), ('equation', 1), ('branch', 1), ('aim', 1), ('give', 1), ('practical', 1), ('theoretical', 1)]
[('model', 2), ('numerical', 2), ('technique', 2), ('book', 1), ('describes', 1), ('mathematical', 1), ('simulating', 1), ('electrical', 1), ('activity', 1), ('heart', 1), ('give', 1), ('introduction', 1), ('important', 1), ('followed', 1), ('detailed', 1), ('description', 1), ('particular', 1)]
[('networked', 1), ('computer', 1), ('ubiquitous', 1), ('subject', 1), ('attack', 1), ('misuse', 1), ('abuse', 1), ('method', 1), ('counteracting', 1), ('cyber', 1), ('threat', 1), ('provide', 1), ('security', 1), ('analyst', 1), ('better', 1), ('tool', 1), ('discover', 1), ('pattern', 1), ('detect', 1), ('anomaly', 1), ('identify', 1), ('correlation', 1)]
[('book', 1), ('aim', 1), ('promote', 1), ('sample', 1), ('current', 1), ('theoretical', 1), ('application', 1), ('oriented', 1), ('intelligent', 1), ('system', 1), ('research', 1), ('specifically', 1), ('field', 1), ('neural', 1), ('network', 1), ('computing', 1), ('present', 1), ('example', 1), ('experimental', 1), ('real', 1), ('world', 1), ('investigation', 1)]
[('navigation', 2), ('robot', 2), ('monograph', 1), ('devoted', 1), ('theory', 1), ('development', 1), ('autonomous', 1), ('mobile', 1), ('using', 1), ('computer', 1), ('vision', 1), ('based', 1), ('sensing', 1), ('mechanism', 1), ('conventional', 1), ('system', 1), ('utilizing', 1), ('traditional', 1), ('sensor', 1), ('ultrasonic', 1), ('ir', 1), ('gps', 1)]
[('separation', 2), ('last', 1), ('decade', 1), ('field', 1), ('artificial', 1), ('intelligence', 1), ('experienceda', 1), ('school', 1), ('hold', 1), ('opposite', 1), ('opinion', 1), ('uncertainty', 1), ('treated', 1), ('result', 1), ('debate', 1), ('began', 1), ('end', 1)]
[('product', 2), ('book', 1), ('cover', 1), ('four', 1), ('research', 1), ('domain', 1), ('representing', 1), ('trend', 1), ('modern', 1), ('manufacturing', 1), ('control', 1), ('holonic', 1), ('multi', 1), ('agent', 1), ('technology', 1), ('industrial', 1), ('system', 1), ('intelligent', 1), ('driven', 1), ('automation', 1), ('service', 1), ('orientation', 1), ('enterprise', 1)]
[('solve', 2), ('bi', 2), ('level', 2), ('objective', 2), ('book', 1), ('provides', 1), ('complete', 1), ('background', 1), ('metaheuristics', 1), ('complex', 1), ('optimization', 1), ('problem', 1), ('continuous', 1), ('discrete', 1), ('mono', 1), ('multi', 1), ('diverse', 1), ('range', 1), ('application', 1), ('domain', 1), ('reader', 1), ('learn', 1), ('large', 1), ('scale', 1)]
[('reasoning', 3), ('case', 2), ('based', 2), ('paradigm', 1), ('offer', 1), ('automatic', 1), ('capability', 1), ('useful', 1), ('implementation', 1), ('human', 1), ('machine', 1), ('limited', 1), ('sense', 1), ('research', 1), ('book', 1), ('second', 1), ('volume', 1), ('series', 1), ('devoted', 1), ('presenting', 1)]
[('embedded', 4), ('system', 2), ('software', 2), ('nowadays', 1), ('real', 1), ('time', 1), ('contain', 1), ('complex', 1), ('complexity', 1), ('increasing', 1), ('amount', 1), ('variety', 1), ('product', 1), ('growing', 1), ('creates', 1), ('big', 1), ('challenge', 1)]
[('analogical', 1), ('reasoning', 1), ('known', 1), ('powerful', 1), ('mode', 1), ('drawing', 1), ('plausible', 1), ('conclusion', 1), ('solving', 1), ('problem', 1), ('topic', 1), ('huge', 1), ('number', 1), ('work', 1), ('philosopher', 1), ('anthropologist', 1), ('linguist', 1), ('psychologist', 1), ('computer', 1), ('scientist', 1)]
[('knowledge', 2), ('given', 1), ('huge', 1), ('amount', 1), ('information', 1), ('internet', 1), ('practically', 1), ('every', 1), ('domain', 1), ('facing', 1), ('today', 1), ('discovery', 1), ('call', 1), ('automation', 1), ('book', 1), ('deal', 1), ('method', 1), ('classification', 1), ('data', 1), ('analysis', 1), ('respond', 1)]
[('digital', 2), ('dmb', 2), ('video', 1), ('audio', 1), ('broadcasting', 1), ('technology', 1), ('practical', 1), ('engineering', 1), ('guide', 1), ('deal', 1), ('important', 1), ('television', 1), ('sound', 1), ('radio', 1), ('multimedia', 1), ('standard', 1), ('mpeg', 1), ('dvb', 1), ('dvd', 1), ('dab', 1), ('atsc', 1), ('drm', 1), ('isdb', 1), ('book', 1)]
[('und', 2), ('der', 2), ('von', 2), ('schwerpunktthema', 1), ('de', 1), ('diesjährigen', 1), ('workshop', 1), ('echtzeitkommunikation', 1), ('ethernet', 1), ('internet', 1), ('ist', 1), ('eine', 1), ('grundsätzliche', 1), ('gegenüberstellung', 1), ('anforderungen', 1), ('echtzeitanwendungen', 1), ('leistungsfähigkeit', 1), ('kommunikationsnetzen', 1), ('beiträge', 1), ('au', 1), ('den', 1)]
[('von', 2), ('zu', 2), ('da', 1), ('buch', 1), ('soll', 1), ('mainframe', 1), ('anwendern', 1), ('helfen', 1), ('die', 1), ('philosophie', 1), ('datenbanken', 1), ('verstehen', 1), ('und', 1), ('selbst', 1), ('datenbankrecherchen', 1), ('formulieren', 1), ('hierfür', 1), ('stellt', 1), ('ibms', 1), ('query', 1), ('management', 1), ('facility', 1), ('kurz', 1), ('qmf', 1), ('eine', 1), ('sehr', 1), ('geschickt', 1), ('komponierte', 1), ('sammlung', 1), ('werkzeugen', 1)]
[('first', 1), ('week', 1), ('september', 1), ('second', 1), ('evonet', 1), ('summer', 1), ('school', 1), ('theoretical', 1), ('aspect', 1), ('evolutionary', 1), ('computing', 1), ('held', 1), ('middelheim', 1), ('cam', 1), ('pu', 1), ('university', 1), ('antwerp', 1), ('belgium', 1), ('originally', 1), ('intended', 1), ('small', 1), ('together', 1)]
[('nan', 1)]
[('nan', 1)]
[('mit', 2), ('grafiken', 2), ('und', 2), ('adobe', 1), ('acrobat', 1), ('können', 1), ('fast', 1), ('alle', 1), ('dokumente', 1), ('von', 1), ('word', 1), ('dateien', 1), ('über', 1), ('bi', 1), ('zu', 1), ('textdokumenten', 1), ('pdf', 1), ('gespeichert', 1), ('per', 1), ('mail', 1), ('verschickt', 1), ('auf', 1), ('web', 1), ('site', 1), ('veröffentlicht', 1), ('werden', 1), ('donna', 1), ('baker', 1), ('stellt', 1), ('die', 1), ('eigenschaften', 1), ('tool', 1)]
[('der', 3), ('buch', 2), ('marketing', 2), ('branche', 2), ('die', 2), ('da', 1), ('spezialisiert', 1), ('sich', 1), ('auf', 1), ('eine', 1), ('unzureichend', 1), ('betrieben', 1), ('wird', 1), ('autoren', 1), ('verfügen', 1), ('über', 1), ('jahrzehnte', 1), ('marketingerfahrung', 1), ('sie', 1), ('diesem', 1), ('anhand', 1), ('von', 1), ('praxisbeispielen', 1), ('aufführen', 1)]
[('volume', 2), ('set', 2), ('ccis', 2), ('asiasim', 2), ('conference', 2), ('three', 1), ('together', 1), ('icsc', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('asia', 1), ('simulation', 1), ('international', 1), ('system', 1)]
[('der', 4), ('öffentlichen', 2), ('informatik', 1), ('wird', 1), ('wahrnehmung', 1), ('seit', 1), ('bald', 1), ('drei', 1), ('jahrzehnten', 1), ('eine', 1), ('schlüsselrolle', 1), ('technologischen', 1), ('entwicklung', 1), ('zugeordnet', 1), ('themen', 1), ('aktuellen', 1), ('diskussion', 1), ('wie', 1), ('da', 1), ('problem', 1), ('oder', 1), ('commerce', 1), ('beflügeln', 1), ('einmal', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('conference', 1), ('kcks', 1), ('held', 1), ('part', 1), ('th', 1), ('world', 1), ('computer', 1), ('congress', 1), ('wcc', 1), ('brisbane', 1), ('australia', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('information', 1), ('security', 1), ('conference', 1), ('sec', 1), ('held', 1), ('lucerne', 1), ('switzerland', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('keynote', 1), ('talk', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('embedded', 1), ('system', 1), ('symposium', 1), ('y', 1), ('held', 1), ('paderborn', 1), ('germany', 1), ('june', 1), ('full', 1), ('revised', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1)]
[('book', 1), ('contains', 1), ('extended', 1), ('paper', 1), ('presented', 1), ('rd', 1), ('workshop', 1), ('supervised', 1), ('unsupervised', 1), ('ensemble', 1), ('method', 1), ('application', 1), ('suema', 1), ('held', 1), ('conjunction', 1), ('european', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('principle', 1)]
[('und', 2), ('den', 1), ('letzten', 1), ('jahren', 1), ('hat', 1), ('sich', 1), ('der', 1), ('workshop', 1), ('bildverarbeitung', 1), ('für', 1), ('die', 1), ('medizin', 1), ('durch', 1), ('erfolgreiche', 1), ('veranstaltungen', 1), ('etabliert', 1), ('übersichtlicher', 1), ('form', 1), ('da', 1), ('breite', 1), ('spektrum', 1), ('universitärer', 1), ('industrieller', 1), ('anwendung', 1), ('forschung', 1), ('dargestellt', 1), ('dieser', 1)]
[('device', 2), ('past', 1), ('decade', 1), ('witnessed', 1), ('unprecedented', 1), ('innovation', 1), ('development', 1), ('miniaturized', 1), ('electromechanical', 1), ('low', 1), ('power', 1), ('wireless', 1), ('communication', 1), ('making', 1), ('practical', 1), ('embedding', 1), ('networked', 1), ('computational', 1)]
[('algorithmen', 2), ('diesis', 1), ('lehrbuch', 1), ('vermittelt', 1), ('grundlegende', 1), ('mathematische', 1), ('fähigkeiten', 1), ('hinblick', 1), ('auf', 1), ('entwurf', 1), ('und', 1), ('analyse', 1), ('von', 1), ('sowie', 1), ('deren', 1), ('implementierung', 1), ('neben', 1), ('einigen', 1), ('fundamentalen', 1), ('sieb', 1), ('de', 1), ('eratosthenes', 1), ('euklidischer', 1), ('algorithmus', 1)]
[('die', 3), ('und', 3), ('einführung', 1), ('programmiersprachen', 1), ('cli', 1), ('window', 1), ('programmierung', 1), ('verbindet', 1), ('da', 1), ('buch', 1), ('mit', 1), ('visual', 1), ('studio', 1), ('richtet', 1), ('sich', 1), ('damit', 1), ('anfänger', 1), ('wie', 1), ('erfahrene', 1), ('programmierer', 1), ('alle', 1), ('sprachelemente', 1), ('konzepte', 1), ('von', 1), ('standard', 1)]
[('system', 2), ('input', 2), ('output', 2), ('artificial', 1), ('neural', 1), ('network', 1), ('used', 1), ('model', 1), ('receive', 1), ('produce', 1), ('relationship', 1), ('representation', 1), ('parameter', 1), ('critical', 1), ('issue', 1), ('design', 1), ('related', 1), ('engineering', 1)]
[('der', 3), ('entwicklung', 3), ('eine', 2), ('bildgebende', 1), ('verfahren', 1), ('spielen', 1), ('zentrale', 1), ('rolle', 1), ('modernen', 1), ('medizin', 1), ('seit', 1), ('röntgenstrahlen', 1), ('vor', 1), ('einhundert', 1), ('jahren', 1), ('fand', 1), ('rasante', 1), ('statt', 1), ('diese', 1), ('wurde', 1), ('begleitet', 1), ('von', 1), ('einem', 1), ('stetig', 1), ('wachsenden', 1), ('anteil', 1)]
[('last', 1), ('decade', 1), ('algorithmic', 1), ('advance', 1), ('hardware', 1), ('software', 1), ('improvement', 1), ('provided', 1), ('excellent', 1), ('environment', 1), ('create', 1), ('develop', 1), ('solving', 1), ('method', 1), ('hard', 1), ('optimization', 1), ('problem', 1), ('modern', 1), ('exact', 1), ('heuristic', 1), ('technique', 1)]
[('die', 2), ('von', 2), ('und', 2), ('diesis', 1), ('buch', 1), ('stellt', 1), ('umfassend', 1), ('dar', 1), ('zahlreiche', 1), ('beispiele', 1), ('veranschaulichen', 1), ('theorie', 1), ('dabei', 1), ('werden', 1), ('neuerungen', 1), ('anfang', 1), ('integriert', 1), ('ihre', 1), ('vorteile', 1), ('gezeigt', 1), ('unterschied', 1), ('zu', 1), ('den', 1), ('allermeisten', 1), ('anderen', 1)]
[('zuse', 2), ('der', 2), ('seine', 2), ('autobiografie', 1), ('de', 1), ('pioniers', 1), ('konrad', 1), ('er', 1), ('baute', 1), ('den', 1), ('ersten', 1), ('funktionsfähigen', 1), ('computer', 1), ('betriebsfähig', 1), ('war', 1), ('erzählt', 1), ('hier', 1), ('die', 1), ('geschichte', 1), ('lebens', 1), ('da', 1), ('wie', 1), ('kaum', 1), ('ein', 1), ('anderes', 1), ('mit', 1), ('bedeutendsten', 1), ('technischen', 1), ('entwicklung', 1)]
[('delivery', 2), ('rightshore', 1), ('registered', 1), ('trademark', 1), ('capgemini', 1), ('organizing', 1), ('distributed', 1), ('process', 1), ('embrace', 1), ('site', 1), ('nearshore', 1), ('offshore', 1), ('service', 1), ('book', 1), ('describes', 1), ('successful', 1), ('global', 1), ('model', 1), ('utilizing', 1), ('industrialized', 1), ('method', 1)]
[('video', 2), ('web', 2), ('evolution', 1), ('technology', 1), ('set', 1), ('stage', 1), ('rapid', 1), ('growth', 1), ('broadband', 1), ('internet', 1), ('access', 1), ('ubiquitous', 1), ('streaming', 1), ('medium', 1), ('protocol', 1), ('system', 1), ('encoding', 1), ('standard', 1), ('mature', 1), ('addition', 1), ('delivery', 1), ('user', 1)]
[('conference', 2), ('lean', 2), ('community', 2), ('le', 1), ('first', 1), ('scientific', 1), ('dedicated', 1), ('advancing', 1), ('enterprise', 1), ('software', 1), ('system', 1), ('body', 1), ('knowledge', 1), ('fostered', 1), ('interaction', 1), ('joining', 1), ('product', 1), ('development', 1), ('agile', 1)]
[('real', 3), ('time', 3), ('graphic', 2), ('rendering', 2), ('engine', 2), ('reveals', 1), ('software', 1), ('architecture', 1), ('modern', 1), ('relevant', 1), ('technology', 1), ('based', 1), ('author', 1), ('experience', 1), ('developing', 1), ('high', 1), ('performance', 1), ('system', 1)]
[('first', 1), ('world', 1), ('summit', 1), ('knowledge', 1), ('society', 1), ('wsks', 1), ('athens', 1), ('greece', 1), ('september', 1), ('proceeding', 1)]
[('agile', 2), ('software', 2), ('development', 2), ('book', 1), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('xp', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('june', 1), ('last', 1), ('decade', 1), ('interest', 1), ('lean', 1)]
[('international', 2), ('conference', 2), ('welcome', 1), ('proceeding', 1), ('grid', 1), ('tributed', 1), ('computing', 1), ('gdc', 1), ('control', 1), ('automation', 1), ('ca', 1), ('partnering', 1), ('event', 1), ('second', 1), ('mega', 1), ('future', 1), ('gene', 1), ('tion', 1)]
[('ccis', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('ubiquitous', 1), ('computing', 1), ('multimedia', 1), ('application', 1), ('ucma', 1), ('held', 1), ('daejeon', 1), ('korea', 1), ('april', 1), ('revised', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('internationalconference', 1), ('advance', 1), ('information', 1), ('technology', 1), ('mobilecommunication', 1), ('aim', 1), ('held', 1), ('nagpur', 1), ('india', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('ccis', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('extended', 1), ('abstract', 1), ('poster', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('orlando', 1), ('fl', 1), ('usa', 1), ('july', 1), ('jointly', 1)]
[('ccis', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('extended', 1), ('abstract', 1), ('poster', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('orlando', 1), ('fl', 1), ('usa', 1), ('july', 1), ('jointly', 1)]
[('werden', 2), ('von', 2), ('lt', 1), ('gt', 1), ('business', 1), ('meet', 1), ('wenn', 1), ('diese', 1), ('welten', 1), ('aufeinander', 1), ('treffen', 1), ('relevante', 1), ('themen', 1), ('nur', 1), ('selten', 1), ('au', 1), ('einem', 1), ('gemeinsamen', 1), ('blickwinkel', 1), ('betrachtet', 1), ('ablauf', 1), ('und', 1), ('erfolg', 1), ('projekten', 1), ('unternehmen', 1), ('aber', 1), ('wesentlich', 1), ('dieser', 1), ('konstellation', 1)]
[('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('computer', 1), ('system', 1), ('icsecs', 1), ('held', 1), ('kuantan', 1), ('malaysia', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('third', 2), ('international', 2), ('conference', 2), ('network', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('wireless', 1), ('mobile', 1), ('wimo', 1), ('computer', 1), ('communication', 1), ('coneco', 1), ('held', 1), ('ankara', 1), ('turkey', 1)]
[('ccis', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('computer', 1), ('science', 1), ('environment', 1), ('ecoinformatics', 1), ('education', 1), ('csee', 1), ('held', 1), ('wuhan', 1), ('china', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('ccis', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('computer', 1), ('science', 1), ('environment', 1), ('ecoinformatics', 1), ('education', 1), ('csee', 1), ('held', 1), ('wuhan', 1), ('china', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('computer', 1), ('science', 1), ('engineering', 1), ('information', 1), ('technology', 1), ('ccseit', 1), ('held', 1), ('tirunelveli', 1), ('india', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1)]
[('ccis', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('enterprise', 1), ('information', 1), ('system', 1), ('centeris', 1), ('held', 1), ('vilamoura', 1), ('portugal', 1), ('september', 1), ('approx', 1), ('revised', 1)]
[('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('high', 1), ('performance', 1), ('networking', 1), ('computing', 1), ('communication', 1), ('system', 1), ('ichcc', 1), ('singapore', 1), ('together', 1)]
[('die', 2), ('notwendigen', 2), ('und', 2), ('entwurf', 2), ('diesis', 1), ('buch', 1), ('enthält', 1), ('grundlagen', 1), ('für', 1), ('da', 1), ('verständnis', 1), ('den', 1), ('hochintegrierter', 1), ('mo', 1), ('schaltungen', 1), ('obwohl', 1), ('der', 1), ('rechnerunterstützte', 1), ('dabei', 1), ('vordergrund', 1), ('steht', 1), ('werden', 1), ('physikalischen', 1), ('elektrotechnischen', 1)]
[('nan', 1)]
[('und', 3), ('die', 2), ('ergonomische', 1), ('gestaltung', 1), ('von', 1), ('systemen', 1), ('denen', 1), ('mensch', 1), ('masche', 1), ('eng', 1), ('zusammenarbeiten', 1), ('stellt', 1), ('eine', 1), ('besondere', 1), ('wissenschaftliche', 1), ('technische', 1), ('herausforderung', 1), ('dar', 1), ('gestaltungsziel', 1), ('ist', 1), ('e', 1), ('perzeptiven', 1), ('kognitiven', 1), ('sensumotorischen', 1)]
[('nan', 1)]
[('theory', 2), ('category', 2), ('modern', 1), ('mathematical', 1), ('music', 1), ('computer', 1), ('science', 1), ('strongly', 1), ('influenced', 1), ('functors', 1), ('outcome', 1), ('research', 1), ('data', 1), ('format', 1), ('denotators', 1), ('based', 1), ('set', 1), ('valued', 1), ('presheaves', 1)]
[('profes', 2), ('conference', 2), ('behalf', 1), ('organizing', 1), ('committee', 1), ('proud', 1), ('present', 1), ('proce', 1), ('th', 1), ('ings', 1), ('international', 1), ('product', 1), ('focused', 1), ('software', 1), ('process', 1), ('provement', 1), ('held', 1), ('oulu', 1), ('finland', 1), ('first', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('network', 1), ('grid', 1), ('application', 1), ('gridnets', 1), ('held', 1), ('beijing', 1), ('china', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('mcdm', 1), ('th', 1), ('international', 1), ('conference', 1), ('multiple', 1), ('criterion', 1), ('decision', 1), ('ing', 1), ('emerged', 1), ('global', 1), ('forum', 1), ('dedicated', 1), ('sharing', 1), ('original', 1), ('research', 1), ('result', 1), ('practical', 1), ('development', 1), ('experience', 1), ('among', 1), ('researcher', 1), ('application', 1), ('developer', 1)]
[('second', 1), ('international', 1), ('conference', 1), ('forensic', 1), ('application', 1), ('technique', 1), ('telecommunication', 1), ('information', 1), ('multimedia', 1), ('forensics', 1), ('took', 1), ('place', 1), ('adelaide', 1), ('south', 1), ('australia', 1), ('january', 1), ('australian', 1), ('national', 1), ('wine', 1)]
[('cursory', 1), ('glance', 1), ('table', 1), ('content', 1), ('eann', 1), ('reveals', 1), ('ing', 1), ('range', 1), ('neural', 1), ('network', 1), ('related', 1), ('application', 1), ('random', 1), ('revealing', 1), ('sample', 1), ('includes', 1), ('reducing', 1), ('urban', 1), ('concentration', 1), ('entropy', 1), ('topography', 1), ('epil', 1), ('tic', 1)]
[('many', 2), ('visualization', 1), ('scientific', 1), ('computing', 1), ('getting', 1), ('attention', 1), ('especially', 1), ('relation', 1), ('fast', 1), ('increase', 1), ('puting', 1), ('power', 1), ('graphic', 1), ('tool', 1), ('required', 1), ('case', 1), ('interpreting', 1), ('presenting', 1), ('result', 1)]
[('und', 3), ('die', 2), ('neu', 1), ('bearbeitete', 1), ('erweiterte', 1), ('auflage', 1), ('basiert', 1), ('auf', 1), ('programmversion', 1), ('mit', 1), ('möglichst', 1), ('wenig', 1), ('mathematik', 1), ('detailliert', 1), ('anhand', 1), ('von', 1), ('beispielen', 1), ('au', 1), ('der', 1), ('praxis', 1), ('demonstrieren', 1), ('autoren', 1), ('statistische', 1), ('methoden', 1), ('deren', 1), ('anwendung', 1), ('ein', 1), ('sehr', 1)]
[('cyprus', 2), ('proceeding', 1), ('contain', 1), ('paper', 1), ('presented', 1), ('third', 1), ('international', 1), ('icst', 1), ('ference', 1), ('autonomic', 1), ('computing', 1), ('communication', 1), ('system', 1), ('autonomics', 1), ('held', 1), ('university', 1), ('technology', 1), ('limassol', 1), ('september', 1)]
[('nbsp', 2), ('book', 1), ('constitutes', 1), ('second', 1), ('part', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('ic', 1), ('held', 1), ('noida', 1), ('india', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('cognitive', 3), ('system', 2), ('assistance', 2), ('design', 1), ('pose', 1), ('major', 1), ('challenge', 1), ('field', 1), ('robotics', 1), ('artificial', 1), ('intelligence', 1), ('cosy', 1), ('project', 1), ('organized', 1), ('address', 1), ('issue', 1), ('theoretical', 1)]
[('ccis', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('informatics', 1), ('engineering', 1), ('information', 1), ('science', 1), ('icieis', 1), ('held', 1), ('kuala', 1), ('lumpur', 1), ('malaysia', 1), ('november', 1), ('revised', 1), ('full', 1)]
[('conference', 2), ('book', 1), ('comprises', 1), ('selected', 1), ('paper', 1), ('international', 1), ('ca', 1), ('ce', 1), ('held', 1), ('part', 1), ('future', 1), ('generation', 1), ('information', 1), ('technology', 1), ('fgit', 1), ('conjunction', 1), ('gdc', 1), ('jeju', 1), ('island', 1), ('korea', 1), ('december', 1)]
[('conference', 2), ('book', 1), ('comprises', 1), ('selected', 1), ('paper', 1), ('international', 1), ('asea', 1), ('drbc', 1), ('el', 1), ('held', 1), ('part', 1), ('future', 1), ('generation', 1), ('information', 1), ('technology', 1), ('fgit', 1), ('conjunction', 1), ('gdc', 1), ('jeju', 1), ('island', 1), ('korea', 1), ('december', 1)]
[('ccis', 2), ('conference', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('fgcn', 1), ('held', 1), ('part', 1), ('future', 1), ('generation', 1), ('information', 1), ('technology', 1), ('fgit', 1), ('jeju', 1), ('island', 1), ('korea', 1), ('december', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('italian', 1), ('research', 1), ('conference', 1), ('digital', 1), ('library', 1), ('held', 1), ('pisa', 1), ('italy', 1), ('january', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('cover', 1), ('topic', 1), ('interest', 1)]
[('widely', 1), ('recognized', 1), ('complexity', 1), ('parallel', 1), ('distributed', 1), ('system', 1), ('proper', 1), ('tool', 1), ('employed', 1), ('design', 1), ('stage', 1), ('order', 1), ('achieve', 1), ('quantitative', 1), ('goal', 1), ('intended', 1), ('volume', 1), ('collect', 1)]
[('modelling', 3), ('advanced', 2), ('cad', 2), ('technique', 2), ('reiner', 1), ('anderl', 1), ('part', 1), ('project', 1), ('aimed', 1), ('development', 1), ('new', 1), ('generation', 1), ('basic', 1), ('functionality', 1), ('future', 1), ('cam', 1), ('system', 1), ('methodology', 1), ('concept', 1)]
[('today', 1), ('manufacturing', 1), ('environment', 1), ('characterised', 1), ('significant', 1), ('change', 1), ('way', 1), ('able', 1), ('respond', 1), ('business', 1), ('objective', 1), ('company', 1), ('face', 1), ('new', 1), ('challenge', 1), ('meet', 1), ('customer', 1), ('demand', 1), ('including', 1), ('greater', 1), ('flexibility', 1), ('wider', 1), ('range', 1)]
[('arrangement', 2), ('curve', 1), ('constitute', 1), ('fundamental', 1), ('structure', 1), ('intensively', 1), ('studied', 1), ('computational', 1), ('geometry', 1), ('numerous', 1), ('application', 1), ('wide', 1), ('range', 1), ('area', 1), ('example', 1), ('include', 1), ('geographic', 1), ('information', 1), ('system', 1), ('robot', 1), ('motion', 1)]
[('activity', 2), ('observe', 1), ('wide', 1), ('range', 1), ('human', 1), ('involves', 1), ('various', 1), ('form', 1), ('de', 1), ('sign', 1), ('especially', 1), ('goal', 1), ('implies', 1), ('creation', 1), ('artifact', 1), ('design', 1), ('center', 1), ('general', 1), ('understanding', 1), ('public', 1)]
[('digital', 2), ('forensics', 2), ('book', 1), ('contains', 1), ('selection', 1), ('thoroughly', 1), ('refereed', 1), ('revised', 1), ('paper', 1), ('third', 1), ('international', 1), ('icst', 1), ('conference', 1), ('cyber', 1), ('crime', 1), ('icdf', 1), ('held', 1), ('october', 1), ('dublin', 1), ('ireland', 1), ('field', 1)]
[('nan', 1)]
[('edition', 2), ('visigrapp', 2), ('insticc', 1), ('organized', 1), ('third', 1), ('took', 1), ('place', 1), ('funchal', 1), ('madeira', 1), ('portugal', 1), ('january', 1), ('successful', 1), ('previous', 1), ('book', 1), ('cludes', 1), ('selected', 1), ('paper', 1), ('joint', 1), ('conference', 1), ('computer', 1), ('vision', 1)]
[('fgit', 2), ('future', 1), ('generation', 1), ('information', 1), ('technology', 1), ('becomes', 1), ('specialized', 1), ('fr', 1), ('mented', 1), ('easy', 1), ('lose', 1), ('sight', 1), ('many', 1), ('topic', 1), ('common', 1), ('thread', 1), ('advance', 1), ('discipline', 1), ('transmitted', 1), ('others', 1)]
[('eurospi', 2), ('typical', 1), ('characterization', 1), ('reflected', 1), ('statement', 1), ('made', 1), ('pany', 1), ('biggest', 1), ('value', 1), ('lie', 1), ('function', 1), ('european', 1), ('knowledge', 1), ('experience', 1), ('exchange', 1), ('mechanism', 1), ('spi', 1), ('innovation', 1), ('beginning', 1)]
[('nan', 1)]
[('fira', 2), ('robot', 2), ('th', 1), ('volume', 1), ('contains', 1), ('paper', 1), ('selected', 1), ('world', 1), ('congress', 1), ('held', 1), ('amrita', 1), ('vishwa', 1), ('vidyapeetham', 1), ('bangalore', 1), ('india', 1), ('september', 1), ('federation', 1), ('international', 1), ('soccer', 1), ('association', 1)]
[('advanced', 2), ('science', 1), ('technology', 1), ('communication', 1), ('networking', 1), ('information', 1), ('security', 1), ('assurance', 1), ('ubiquitous', 1), ('computing', 1), ('multimedia', 1), ('appli', 1), ('tions', 1), ('conference', 1), ('attract', 1), ('many', 1), ('academic', 1), ('industry', 1), ('professional', 1), ('goal', 1)]
[('electronics', 2), ('book', 1), ('contains', 1), ('best', 1), ('paper', 1), ('international', 1), ('conference', 1), ('advance', 1), ('power', 1), ('instrumentation', 1), ('engineering', 1), ('peie', 1), ('organized', 1), ('association', 1), ('computer', 1), ('electrical', 1), ('engineer', 1), ('acee', 1), ('september', 1)]
[('die', 2), ('computernetzwerke', 1), ('ermöglichen', 1), ('kommunikation', 1), ('der', 1), ('darin', 1), ('zusammengeschlossenen', 1), ('systeme', 1), ('untereinander', 1), ('da', 1), ('buch', 1), ('vermittelt', 1), ('grundlegendes', 1), ('wissen', 1), ('über', 1), ('funktionsweise', 1), ('moderner', 1), ('computernetze', 1), ('und', 1), ('deren', 1), ('verschiedenen', 1), ('komponenten', 1), ('ausgehend', 1), ('von', 1)]
[('nan', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('icst', 1), ('forensic', 1), ('application', 1), ('technique', 1), ('telecommunication', 1), ('information', 1), ('multimedia', 1), ('forensics', 1), ('held', 1), ('shanghai', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('icst', 1), ('auction', 1), ('market', 1), ('mechanism', 1), ('application', 1), ('amma', 1), ('held', 1), ('new', 1), ('york', 1), ('usa', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('icst', 1), ('bio', 1), ('inspired', 1), ('model', 1), ('network', 1), ('information', 1), ('computing', 1), ('system', 1), ('bionetics', 1), ('held', 1), ('boston', 1), ('usa', 1), ('december', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('icst', 1), ('sensor', 1), ('system', 1), ('software', 1), ('cube', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('werden', 2), ('von', 2), ('business', 1), ('meet', 1), ('wenn', 1), ('diese', 1), ('welten', 1), ('aufeinander', 1), ('treffen', 1), ('relevante', 1), ('themen', 1), ('nur', 1), ('selten', 1), ('au', 1), ('einem', 1), ('gemeinsamen', 1), ('blickwinkel', 1), ('betrachtet', 1), ('ablauf', 1), ('und', 1), ('erfolg', 1), ('projekten', 1), ('unternehmen', 1), ('aber', 1), ('wesentlich', 1), ('dieser', 1), ('konstellation', 1)]
[('software', 3), ('rationale', 2), ('engineering', 2), ('author', 1), ('describe', 1), ('detail', 1), ('capture', 1), ('use', 1), ('design', 1), ('improve', 1), ('quality', 1), ('book', 1), ('first', 1), ('comprehensive', 1), ('unified', 1), ('treatment', 1), ('usage', 1), ('provides', 1)]
[('software', 3), ('decision', 2), ('architecture', 1), ('manifest', 1), ('major', 1), ('early', 1), ('design', 1), ('determine', 1), ('system', 1), ('development', 1), ('deployment', 1), ('evolution', 1), ('thus', 1), ('making', 1), ('better', 1), ('architectural', 1), ('large', 1), ('challenge', 1), ('engineering', 1)]
[('social', 2), ('web', 1), ('including', 1), ('service', 1), ('myspace', 1), ('flickr', 1), ('last', 1), ('fm', 1), ('wordpress', 1), ('captured', 1), ('attention', 1), ('million', 1), ('user', 1), ('billion', 1), ('dollar', 1), ('investment', 1), ('acquisition', 1), ('website', 1), ('evolving', 1), ('around', 1), ('connection', 1)]
[('und', 3), ('der', 2), ('soft', 2), ('skill', 2), ('wie', 2), ('während', 1), ('jeder', 1), ('projektmanager', 1), ('planung', 1), ('budgetierung', 1), ('qualitätsmanagement', 1), ('beherrscht', 1), ('betritt', 1), ('er', 1), ('bei', 1), ('gestaltung', 1), ('kommunikation', 1), ('wissensaustausch', 1), ('häufig', 1), ('neuland', 1), ('diese', 1), ('mit', 1), ('methoden', 1), ('zur', 1), ('nachvollzieh', 1)]
[('microequipment', 2), ('production', 2), ('size', 2), ('micromechanical', 1), ('manufacturing', 1), ('based', 1), ('creates', 1), ('new', 1), ('possibi', 1), ('tie', 1), ('good', 1), ('comparable', 1), ('microdevices', 1), ('produced', 1), ('possible', 1), ('decrease', 1), ('cost', 1)]
[('whether', 2), ('company', 2), ('rather', 1), ('deciding', 1), ('involved', 1), ('global', 1), ('sourcing', 1), ('many', 1), ('facing', 1), ('decision', 1), ('apply', 1), ('agile', 1), ('method', 1), ('distributed', 1), ('project', 1), ('often', 1), ('motivated', 1), ('opportunity', 1)]
[('promptly', 1), ('growing', 1), ('demand', 1), ('telecommunication', 1), ('service', 1), ('information', 1), ('interchange', 1), ('led', 1), ('fact', 1), ('communication', 1), ('became', 1), ('dynamical', 1), ('branch', 1), ('infrastructure', 1), ('modern', 1), ('society', 1), ('book', 1), ('introduces', 1), ('base', 1)]
[('und', 2), ('behandelt', 1), ('erzeugung', 1), ('verstärkung', 1), ('fortleitung', 1), ('ausstrahlung', 1), ('anwendung', 1), ('elektromagnetischer', 1), ('signale', 1), ('über', 1), ('den', 1), ('vollen', 1), ('frequenzbereich', 1), ('von', 1), ('einigen', 1), ('khz', 1), ('bi', 1), ('zur', 1), ('optischen', 1), ('nachrichtentechnik', 1), ('band', 1), ('geht', 1), ('auf', 1), ('schwingkreise', 1), ('hochfrequenzübertrager', 1)]
[('assistance', 2), ('nowadays', 1), ('aging', 1), ('society', 1), ('many', 1), ('require', 1), ('mobility', 1), ('sometimes', 1), ('assistive', 1), ('device', 1), ('need', 1), ('certain', 1), ('degree', 1), ('autonomy', 1), ('user', 1), ('disability', 1), ('difficult', 1), ('manual', 1), ('control', 1), ('clinician', 1), ('report', 1), ('excessive', 1), ('lead', 1)]
[('hiding', 2), ('image', 2), ('research', 1), ('book', 1), ('present', 1), ('sample', 1), ('recent', 1), ('advance', 1), ('information', 1), ('technique', 1), ('application', 1), ('includes', 1), ('data', 1), ('scheme', 1), ('based', 1), ('vector', 1), ('quantization', 1), ('graph', 1), ('coloringthe', 1), ('copyright', 1), ('protection', 1), ('system', 1), ('android', 1)]
[('und', 2), ('niklaus', 1), ('wirth', 1), ('der', 1), ('berühmte', 1), ('entwickler', 1), ('von', 1), ('pascal', 1), ('modula', 1), ('vermittelt', 1), ('die', 1), ('prinzipien', 1), ('methoden', 1), ('modernen', 1), ('programmierens', 1)]
[('die', 3), ('ein', 2), ('für', 2), ('unix', 2), ('eine', 1), ('gute', 1), ('einführung', 1), ('neues', 1), ('produkt', 1), ('oder', 1), ('konzept', 1), ('ist', 1), ('lebenswichtig', 1), ('dy', 1), ('gilt', 1), ('ganz', 1), ('besonders', 1), ('vielseitiges', 1), ('software', 1), ('system', 1), ('wie', 1), ('bietet', 1), ('stärke', 1), ('und', 1), ('fähigkeiten', 1), ('ihren', 1), ('computer', 1), ('hart', 1), ('sie', 1), ('arbeiten', 1), ('lassen', 1), ('e', 1)]
[('quantum', 8), ('book', 1), ('present', 1), ('basic', 1), ('information', 1), ('foundation', 1), ('theory', 1), ('algorithm', 1), ('entanglement', 1), ('entropy', 1), ('coding', 1), ('error', 1), ('correction', 1), ('cryptography', 1), ('required', 1), ('knowledge', 1)]
[('knowledge', 4), ('innovation', 2), ('transfer', 2), ('across', 1), ('world', 1), ('growing', 1), ('awareness', 1), ('importance', 1), ('sense', 1), ('generating', 1), ('new', 1), ('making', 1), ('better', 1), ('use', 1), ('existing', 1), ('coupled', 1), ('sharing', 1)]
[('italian', 2), ('neural', 2), ('network', 2), ('volume', 1), ('collect', 1), ('selection', 1), ('contribution', 1), ('presented', 1), ('nd', 1), ('workshop', 1), ('yearly', 1), ('meeting', 1), ('society', 1), ('siren', 1), ('conference', 1), ('held', 1), ('italy', 1), ('vietri', 1), ('sul', 1), ('mare', 1)]
[('application', 2), ('many', 2), ('field', 1), ('intelligent', 1), ('system', 1), ('expanded', 1), ('enormously', 1), ('last', 1), ('decade', 1), ('theoretical', 1), ('practical', 1), ('result', 1), ('area', 1), ('growing', 1), ('rapidly', 1), ('due', 1), ('successful', 1), ('new', 1), ('theory', 1), ('derived', 1)]
[('use', 2), ('authored', 1), ('volume', 1), ('present', 1), ('fundamental', 1), ('neurois', 1), ('emerging', 1), ('subfield', 1), ('within', 1), ('information', 1), ('system', 1), ('discipline', 1), ('make', 1), ('neuroscience', 1), ('neurophysiological', 1), ('tool', 1), ('knowledge', 1), ('better', 1), ('understand', 1), ('development', 1)]
[('und', 2), ('die', 2), ('lebendige', 1), ('kommunikation', 1), ('ist', 1), ('der', 1), ('zündende', 1), ('funke', 1), ('für', 1), ('ihren', 1), ('unternehmenserfolg', 1), ('mit', 1), ('innovativen', 1), ('kommunikationstechnologien', 1), ('erobern', 1), ('sie', 1), ('neue', 1), ('handelsplätze', 1), ('gewinnen', 1), ('kunden', 1), ('geschäftskontakte', 1), ('langfristig', 1), ('ihre', 1), ('zukunft', 1), ('sichern', 1)]
[('concept', 3), ('modern', 2), ('computer', 2), ('security', 2), ('reference', 1), ('work', 1), ('look', 1), ('introduces', 1), ('basic', 1), ('mathematical', 1), ('background', 1), ('necessary', 1), ('follow', 1), ('moving', 1), ('development', 1), ('cryptography', 1), ('presented', 1)]
[('und', 2), ('ein', 1), ('chip', 1), ('macht', 1), ('geschichteder', 1), ('mikroprozessor', 1), ('ist', 1), ('eine', 1), ('der', 1), ('bedeutendsten', 1), ('erfindungen', 1), ('unseres', 1), ('jahrhunderts', 1), ('er', 1), ('hat', 1), ('unsere', 1), ('gesellschaft', 1), ('radikal', 1), ('verändert', 1), ('prägt', 1), ('unseren', 1), ('alltag', 1), ('vom', 1), ('pc', 1), ('arbeitsplatz', 1), ('bi', 1), ('hin', 1), ('zu', 1), ('auto', 1), ('kühlschrank', 1), ('trotzdem', 1), ('wissen', 1)]
[('processing', 3), ('signal', 2), ('significant', 1), ('development', 1), ('design', 1), ('application', 1), ('algorithm', 1), ('dimensional', 1), ('multidimensional', 1), ('namely', 1), ('image', 1), ('video', 1), ('recent', 1), ('focus', 1), ('changing', 1)]
[('domain', 1), ('engineering', 1), ('set', 1), ('activity', 1), ('intended', 1), ('develop', 1), ('maintain', 1), ('manage', 1), ('creation', 1), ('evolution', 1), ('area', 1), ('knowledge', 1), ('suitable', 1), ('processing', 1), ('range', 1), ('software', 1), ('system', 1), ('considerable', 1), ('practical', 1), ('significance', 1)]
[('die', 3), ('uml', 2), ('de', 2), ('da', 1), ('buch', 1), ('macht', 1), ('beherrschbar', 1), ('e', 1), ('führt', 1), ('objektorientierte', 1), ('modellierung', 1), ('mit', 1), ('den', 1), ('wichtigsten', 1), ('diagrammen', 1), ('ein', 1), ('und', 1), ('liefert', 1), ('eine', 1), ('kompakte', 1), ('darstellung', 1), ('sprachumfangs', 1), ('schwerpunkt', 1), ('ist', 1), ('schrittweise', 1), ('verfeinerung', 1), ('modells', 1), ('bi', 1), ('hin', 1)]
[('da', 3), ('der', 2), ('erfolgreiche', 1), ('fachbuch', 1), ('führt', 1), ('umfassend', 1), ('und', 1), ('praxisbezogen', 1), ('gebiet', 1), ('relationalen', 1), ('datenbanken', 1), ('ein', 1), ('themenspektrum', 1), ('reicht', 1), ('von', 1), ('datenmodellierung', 1), ('über', 1), ('datenbanksprachen', 1), ('systemarchitekturen', 1), ('bi', 1), ('hin', 1), ('zu', 1), ('neueren', 1), ('entwicklungen', 1), ('wie', 1)]
[('computing', 3), ('area', 2), ('distributed', 1), ('rapidly', 1), ('becoming', 1), ('principal', 1), ('paradigm', 1), ('diverse', 1), ('communication', 1), ('control', 1), ('processor', 1), ('cluster', 1), ('local', 1), ('wide', 1), ('network', 1), ('information', 1), ('highway', 1), ('evolved', 1), ('new', 1), ('kind', 1), ('problem', 1)]
[('beginning', 2), ('quality', 2), ('approach', 1), ('st', 1), ('century', 1), ('see', 1), ('emer', 1), ('gence', 1), ('knowledge', 1), ('management', 1), ('natural', 1), ('evolution', 1), ('focus', 1), ('importance', 1), ('reengineering', 1), ('placed', 1), ('huge', 1)]
[('new', 2), ('internet', 1), ('confronts', 1), ('researcher', 1), ('system', 1), ('designer', 1), ('application', 1), ('developer', 1), ('completely', 1), ('challenge', 1), ('fascinating', 1), ('computing', 1), ('paradigm', 1), ('agent', 1), ('technology', 1), ('recently', 1), ('attracted', 1), ('broad', 1), ('interest', 1), ('strong', 1), ('hope', 1), ('shaping', 1)]
[('program', 2), ('analysis', 1), ('utilizes', 1), ('static', 1), ('technique', 1), ('computing', 1), ('reliable', 1), ('information', 1), ('dynamic', 1), ('behavior', 1), ('application', 1), ('include', 1), ('compiler', 1), ('code', 1), ('improvement', 1), ('software', 1), ('validation', 1), ('detecting', 1), ('error', 1), ('transformation', 1)]
[('software', 3), ('component', 3), ('composition', 2), ('invasive', 1), ('new', 1), ('based', 1), ('way', 1), ('construct', 1), ('system', 1), ('presented', 1), ('improve', 1), ('reuse', 1), ('method', 1), ('regard', 1), ('greybox', 1), ('integrates', 1), ('distinct', 1), ('design', 1)]
[('alan', 2), ('turing', 2), ('nbsp', 2), ('written', 1), ('distinguished', 1), ('cast', 1), ('contributor', 1), ('life', 1), ('legacy', 1), ('thinker', 1), ('definitive', 1), ('collection', 1), ('essay', 1), ('commemoration', 1), ('th', 1), ('birthday', 1), ('fascinating', 1), ('text', 1), ('cover', 1), ('rich', 1), ('facet', 1)]
[('nan', 1)]
[('maple', 2), ('die', 2), ('anwendung', 1), ('selbststudium', 1), ('erlernen', 1), ('da', 1), ('buch', 1), ('bietet', 1), ('alle', 1), ('dazu', 1), ('nötigen', 1), ('kenntnisse', 1), ('sich', 1), ('sofort', 1), ('bildschirm', 1), ('umsetzen', 1), ('lassen', 1), ('neuauflage', 1), ('berücksichtigt', 1), ('release', 1)]
[('nan', 1)]
[('key', 2), ('cryptography', 2), ('introduction', 1), ('public', 1), ('pkc', 1), ('critical', 1), ('advance', 1), ('security', 1), ('contrast', 1), ('symmetric', 1), ('enables', 1), ('confidential', 1), ('communication', 1), ('entity', 1), ('open', 1), ('network', 1), ('particular', 1), ('internet', 1), ('without', 1), ('prior', 1)]
[('problem', 2), ('algorithm', 2), ('proof', 1), ('lifeblood', 1), ('theoretical', 1), ('computer', 1), ('science', 1), ('behind', 1), ('computing', 1), ('device', 1), ('application', 1), ('transformed', 1), ('life', 1), ('clever', 1), ('every', 1), ('worthwhile', 1)]
[('system', 2), ('approach', 1), ('integrative', 1), ('bioinformatics', 1), ('provides', 1), ('basic', 1), ('introduction', 1), ('biological', 1), ('information', 1), ('guidance', 1), ('computational', 1), ('analysis', 1), ('biology', 1), ('book', 1), ('cover', 1), ('range', 1), ('issue', 1), ('method', 1), ('reveal', 1)]
[('recently', 1), ('pressure', 1), ('fast', 1), ('processing', 1), ('efficient', 1), ('storage', 1), ('large', 1), ('data', 1), ('complex', 1), ('nbsp', 1), ('relation', 1), ('increased', 1), ('beyond', 1), ('capability', 1), ('traditional', 1), ('database', 1), ('typical', 1), ('example', 1), ('include', 1), ('iphone', 1), ('application', 1), ('computer', 1), ('aided', 1), ('design', 1)]
[('project', 2), ('bringing', 1), ('together', 1), ('various', 1), ('current', 1), ('direc', 1), ('tions', 1), ('software', 1), ('management', 1), ('changing', 1), ('world', 1), ('focus', 1), ('organization', 1), ('make', 1), ('process', 1), ('change', 1), ('adaptive', 1), ('selected', 1), ('chapter', 1), ('closely', 1), ('correspond', 1)]
[('nan', 1)]
[('la', 3), ('dei', 3), ('domanda', 2), ('è', 2), ('qualità', 2), ('del', 2), ('software', 2), ('sistemi', 2), ('qual', 1), ('il', 1), ('contributo', 1), ('che', 1), ('possono', 1), ('apportare', 1), ('al', 1), ('successo', 1), ('business', 1), ('di', 1), ('un', 1), ('azienda', 1), ('come', 1), ('possiamo', 1), ('garantire', 1), ('giusta', 1), ('prodotti', 1), ('basati', 1), ('sul', 1), ('una', 1), ('retorica', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('computational', 1), ('logic', 1), ('multi', 1), ('agent', 1), ('system', 1), ('clima', 1), ('vii', 1), ('held', 1), ('hakodate', 1), ('japan', 1), ('associated', 1), ('event', 1), ('aamas', 1), ('main', 1)]
[('nan', 1)]
[('nan', 1)]
[('volume', 1), ('brings', 1), ('together', 1), ('work', 1), ('researcher', 1), ('various', 1), ('discipline', 1), ('aspect', 1), ('descriptive', 1), ('mathematical', 1), ('computational', 1), ('design', 1), ('knowledge', 1), ('concerning', 1), ('metaphor', 1), ('analogy', 1), ('especially', 1), ('context', 1), ('agent', 1), ('emerged', 1), ('book', 1)]
[('tool', 3), ('theory', 2), ('ultimate', 1), ('goal', 1), ('program', 1), ('verification', 1), ('behind', 1), ('application', 1), ('software', 1), ('engineering', 1), ('process', 1), ('society', 1), ('relies', 1), ('correctness', 1), ('vast', 1), ('growing', 1)]
[('machine', 2), ('learning', 2), ('data', 2), ('mining', 2), ('wondered', 1), ('state', 1), ('art', 1), ('find', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('pattern', 1)]
[('admi', 2), ('agent', 2), ('mining', 2), ('internationalworkshoponagentsanddatamininginteraction', 1), ('joint', 1), ('event', 1), ('aamas', 1), ('recentyears', 1), ('data', 1), ('interaction', 1), ('forshort', 1), ('hasemergedasaverypromisingresearch', 1), ('eld', 1)]
[('book', 2), ('material', 2), ('fp', 2), ('fuzzy', 2), ('new', 2), ('combine', 1), ('previous', 1), ('probability', 1), ('approach', 1), ('application', 1), ('physica', 1), ('verlag', 1), ('f', 1), ('statistic', 1), ('springer', 1), ('plus', 1), ('third', 1), ('result', 1), ('basic', 1)]
[('many', 1), ('highly', 1), ('capable', 1), ('autonomous', 1), ('robot', 1), ('promised', 1), ('novel', 1), ('application', 1), ('driven', 1), ('society', 1), ('industry', 1), ('research', 1), ('available', 1), ('day', 1), ('despite', 1), ('tremendous', 1), ('progress', 1), ('robotics', 1), ('science', 1), ('system', 1), ('achieved', 1), ('last', 1)]
[('july', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('joint', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('consecutive', 1), ('international', 1), ('workshop', 1), ('learning', 1), ('classifier', 1), ('system', 1), ('took', 1), ('place', 1), ('atlanta', 1), ('ga', 1), ('usa', 1), ('andin', 1), ('montreal', 1), ('canada', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('logic', 1), ('programming', 1), ('artificial', 1), ('intelligence', 1), ('reasoning', 1), ('lpar', 1), ('whichtook', 1), ('place', 1), ('dakar', 1), ('senegal', 1), ('april', 1)]
[('mathematical', 2), ('processing', 2), ('theorem', 1), ('proving', 1), ('undergone', 1), ('impressive', 1), ('development', 1), ('last', 1), ('decade', 1), ('resulting', 1), ('variety', 1), ('powerful', 1), ('system', 1), ('application', 1), ('deduction', 1), ('knowledge', 1), ('natural', 1), ('language', 1)]
[('computer', 2), ('science', 2), ('lncs', 1), ('journal', 1), ('transaction', 1), ('computational', 1), ('system', 1), ('biology', 1), ('devoted', 1), ('inter', 1), ('multidisciplinary', 1), ('research', 1), ('field', 1), ('life', 1), ('support', 1), ('paradigmatic', 1), ('shift', 1), ('technique', 1)]
[('nan', 1)]
[('nan', 1)]
[('network', 2), ('full', 1), ('title', 1), ('hcm', 1), ('project', 1), ('behind', 1), ('volume', 1), ('vim', 1), ('virtual', 1), ('multicomputer', 1), ('symbolic', 1), ('application', 1), ('three', 1), ('strand', 1), ('bound', 1), ('together', 1), ('parallel', 1), ('system', 1), ('advanced', 1), ('compilation', 1), ('technique', 1)]
[('th', 1), ('transaction', 1), ('computational', 1), ('system', 1), ('biology', 1), ('collect', 1), ('carefully', 1), ('chosen', 1), ('enhanced', 1), ('contribution', 1), ('initially', 1), ('presented', 1), ('iee', 1), ('international', 1), ('conference', 1), ('granular', 1), ('computing', 1), ('held', 1), ('beijing', 1), ('china', 1), ('july', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('australian', 1), ('joint', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('hobart', 1), ('australia', 1), ('december', 1), ('coverage', 1), ('includes', 1), ('foundation', 1), ('knowledge', 1), ('based', 1), ('system', 1), ('machine', 1), ('learning', 1)]
[('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('multi', 1), ('disciplinary', 1), ('international', 1), ('workshop', 1), ('artificial', 1), ('intelligence', 1), ('miwai', 1), ('held', 1), ('hyderabad', 1), ('india', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('based', 1), ('learning', 1), ('icwl', 1), ('held', 1), ('hong', 1), ('kong', 1), ('china', 1), ('december', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('carefully', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('held', 1), ('zhengzhou', 1), ('china', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('international', 2), ('agent', 2), ('volume', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('workshop', 1), ('adaptive', 1), ('learning', 1), ('ala', 1), ('held', 1), ('th', 1), ('autonomous', 1), ('multiagent', 1), ('system', 1), ('aamas', 1)]
[('lnai', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('intelligent', 1), ('information', 1), ('database', 1), ('system', 1), ('aciids', 1), ('held', 1), ('kaohsiung', 1), ('taiwan', 1), ('march', 1), ('revised', 1), ('paper', 1)]
[('revised', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('computational', 1), ('processing', 1), ('portuguese', 1), ('language', 1), ('propor', 1), ('held', 1), ('coimbra', 1), ('portugal', 1), ('april', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('hellenic', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('setn', 1), ('held', 1), ('lamia', 1), ('greece', 1), ('contribution', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('brazilian', 1), ('symposium', 1), ('bioinformatics', 1), ('bsb', 1), ('held', 1), ('campo', 1), ('grande', 1), ('brazil', 1), ('august', 1), ('regular', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('inclusion', 1)]
[('agent', 2), ('book', 1), ('consists', 1), ('mainly', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('educational', 1), ('game', 1), ('simulation', 1), ('aegs', 1), ('workshop', 1), ('held', 1), ('part', 1), ('autonomous', 1), ('multiagent', 1), ('system', 1), ('aamas', 1), ('conference', 1), ('taipei', 1), ('taiwan', 1)]
[('th', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('towards', 1), ('autonomous', 1), ('robotic', 1), ('system', 1), ('taro', 1), ('robot', 1), ('world', 1), ('congress', 1), ('fira', 1), ('held', 1), ('joint', 1), ('bristol', 1), ('uk', 1), ('august', 1), ('revised', 1), ('full', 1)]
[('paper', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('pricai', 1), ('held', 1), ('kuching', 1), ('malaysia', 1), ('september', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('computational', 1), ('logic', 1), ('multi', 1), ('agent', 1), ('system', 1), ('clima', 1), ('xii', 1), ('held', 1), ('montpellier', 1), ('france', 1), ('august', 1), ('regular', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('intelligent', 2), ('system', 2), ('day', 2), ('perform', 1), ('order', 1), ('demand', 1), ('technology', 1), ('applied', 1), ('steadily', 1), ('solving', 1), ('many', 1), ('problem', 1), ('year', 1), ('list', 1), ('real', 1), ('world', 1), ('deployed', 1), ('application', 1), ('inconspicuously', 1), ('host', 1)]
[('sbia', 3), ('brazilian', 1), ('symposium', 1), ('arti', 1), ('cial', 1), ('intelligence', 1), ('biennial', 1), ('event', 1), ('intended', 1), ('main', 1), ('forum', 1), ('ai', 1), ('community', 1), ('brazil', 1), ('th', 1), ('issue', 1), ('series', 1), ('initiated', 1), ('accepting', 1), ('paper', 1)]
[('nan', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('conference', 1), ('professional', 1), ('knowledge', 1), ('management', 1), ('experience', 1), ('vision', 1), ('wm', 1), ('held', 1), ('kaiserslautern', 1), ('germany', 1), ('april', 1), ('revised', 1), ('paper', 1), ('presented', 1)]
[('ai', 2), ('sydney', 2), ('th', 1), ('australian', 1), ('joint', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('held', 1), ('university', 1), ('technology', 1), ('ut', 1), ('australia', 1), ('december', 1), ('attracted', 1), ('historical', 1), ('record', 1), ('number', 1), ('submission', 1), ('total', 1)]
[('peer', 3), ('computing', 1), ('attracting', 1), ('enormous', 1), ('medium', 1), ('attention', 1), ('spurred', 1), ('popularity', 1), ('file', 1), ('sharing', 1), ('system', 1), ('napster', 1), ('gnutella', 1), ('morpheus', 1), ('autonomous', 1), ('call', 1), ('first', 1), ('class', 1), ('citizen', 1), ('network', 1)]
[('conference', 2), ('change', 1), ('inevitable', 1), ('embracing', 1), ('quote', 1), ('tried', 1), ('carefully', 1), ('exp', 1), ('iment', 1), ('format', 1), ('th', 1), ('international', 1), ('inductive', 1), ('logic', 1), ('programming', 1), ('hopefully', 1), ('making', 1), ('even', 1), ('better', 1), ('already', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('brazilian', 1), ('symposium', 1), ('bioinformatics', 1), ('bsb', 1), ('held', 1), ('sao', 1), ('leopoldo', 1), ('brazil', 1), ('july', 1), ('full', 1), ('extended', 1), ('abstract', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('nan', 1)]
[('computing', 2), ('era', 1), ('ubiquitous', 1), ('networking', 1), ('million', 1), ('electronic', 1), ('device', 1), ('facility', 1), ('public', 1), ('space', 1), ('connected', 1), ('ad', 1), ('hoc', 1), ('way', 1), ('required', 1), ('behave', 1), ('coherently', 1), ('massively', 1), ('multi', 1), ('agent', 1), ('system', 1)]
[('information', 2), ('system', 2), ('become', 1), ('backbone', 1), ('kind', 1), ('organization', 1), ('day', 1), ('almost', 1), ('every', 1), ('sector', 1), ('manufacturing', 1), ('education', 1), ('health', 1), ('care', 1), ('government', 1), ('business', 1), ('large', 1), ('small', 1), ('relied', 1), ('upon', 1), ('eryday', 1), ('work', 1)]
[('robocup', 2), ('thesearetheproceedingsoftherobocup', 1), ('symposium', 1), ('heldattheinstituto', 1), ('superior', 1), ('ecnico', 1), ('lisbon', 1), ('portugal', 1), ('conjunction', 1), ('petition', 1), ('paper', 1), ('presented', 1), ('document', 1), ('many', 1), ('innovation', 1), ('robotics', 1), ('result', 1)]
[('speech', 2), ('refereed', 1), ('postproceedings', 1), ('international', 1), ('conference', 1), ('non', 1), ('linear', 1), ('processing', 1), ('nolisp', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('keynote', 1), ('invited', 1), ('talk', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('numerous', 1)]
[('nan', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('hellenic', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('setn', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1), ('full', 1), ('extended', 1), ('abstract', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('deontic', 1), ('logic', 1), ('computer', 1), ('science', 1), ('deon', 1), ('held', 1), ('utrecht', 1), ('netherlands', 1), ('july', 1), ('present', 1), ('revised', 1), ('full', 1), ('paper', 1), ('together', 1), ('abstract', 1), ('invited', 1)]
[('paper', 3), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('conceptual', 1), ('structure', 1), ('icc', 1), ('held', 1), ('aalborg', 1), ('denmark', 1), ('july', 1), ('volume', 1), ('present', 1), ('revised', 1), ('full', 1), ('together', 1), ('invited', 1)]
[('fqas', 2), ('thisvolumeconstitutestheproceedingsofthefifthinternationalconferenceon', 1), ('flexible', 1), ('query', 1), ('answering', 1), ('system', 1), ('held', 1), ('copenhagen', 1), ('denmark', 1), ('october', 1), ('premier', 1), ('conference', 1), ('researcher', 1), ('practitioner', 1), ('concerned', 1)]
[('conference', 3), ('international', 2), ('twelfth', 1), ('inductive', 1), ('logic', 1), ('programming', 1), ('held', 1), ('sydney', 1), ('australia', 1), ('july', 1), ('colocated', 1), ('event', 1), ('nineteenth', 1), ('machine', 1), ('learning', 1), ('icml', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('logic', 2), ('volume', 1), ('origin', 1), ('rst', 1), ('learning', 1), ('language', 1), ('wo', 1), ('shop', 1), ('took', 1), ('place', 1), ('june', 1), ('bled', 1), ('slovenia', 1), ('immediately', 1), ('ninth', 1), ('international', 1), ('workshop', 1), ('inductive', 1), ('programming', 1), ('ilp', 1), ('sixteenth', 1)]
[('generally', 1), ('understood', 1), ('present', 1), ('approach', 1), ('computing', 1), ('performance', 1), ('flexibility', 1), ('reliability', 1), ('biological', 1), ('information', 1), ('processing', 1), ('system', 1), ('although', 1), ('comprehensive', 1), ('body', 1), ('knowledge', 1), ('regarding', 1)]
[('conditionals', 1), ('omnipresent', 1), ('everyday', 1), ('life', 1), ('scientific', 1), ('environment', 1), ('represent', 1), ('generic', 1), ('knowledge', 1), ('acquired', 1), ('inductively', 1), ('learned', 1), ('book', 1), ('tie', 1), ('flexible', 1), ('highly', 1), ('interrelated', 1), ('network', 1), ('connection', 1), ('along', 1)]
[('dedicated', 1), ('jan', 1), ('zytkow', 1)]
[('awic', 2), ('madrid', 2), ('pleased', 1), ('present', 1), ('proceeding', 1), ('atlantic', 1), ('web', 1), ('intelligence', 1), ('ference', 1), ('conference', 1), ('located', 1), ('spain', 1), ('organized', 1), ('locally', 1), ('technical', 1), ('university', 1), ('aimed', 1)]
[('new', 3), ('many', 2), ('market', 2), ('internet', 1), ('spawning', 1), ('electronic', 1), ('commerce', 1), ('changing', 1), ('convention', 1), ('old', 1), ('commercial', 1), ('practice', 1), ('adapted', 1), ('condition', 1), ('immediacy', 1), ('brought', 1), ('forth', 1), ('global', 1), ('network', 1), ('product', 1)]
[('nan', 1)]
[('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('case', 1), ('based', 1), ('reasoning', 1), ('iccbr', 1), ('held', 1), ('trondheim', 1), ('norway', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1), ('current', 1)]
[('refereed', 1), ('proceeding', 1), ('international', 1), ('central', 1), ('eastern', 1), ('european', 1), ('conference', 1), ('multi', 1), ('agent', 1), ('system', 1), ('ceemas', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('contribution', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('rough', 1), ('set', 1), ('current', 1), ('trend', 1), ('computing', 1), ('rsctc', 1), ('held', 1), ('banff', 1), ('canada', 1), ('october', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('arti', 1), ('cial', 1), ('intelligence', 1), ('eld', 1), ('long', 1), ('history', 1), ('still', 1), ('active', 1), ('developing', 1), ('today', 1), ('development', 1), ('new', 1), ('improved', 1), ('technique', 1), ('together', 1), ('increasing', 1), ('level', 1), ('available', 1), ('computing', 1), ('resource', 1), ('fueling', 1)]
[('nan', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('bi', 1), ('conference', 1), ('workshop', 1), ('agent', 1), ('oriented', 1), ('information', 1), ('system', 1), ('aois', 1), ('held', 1), ('utrecht', 1), ('netherlands', 1), ('july', 1), ('klagenfurt', 1), ('austria', 1), ('october', 1)]
[('ten', 1), ('year', 1), ('first', 1), ('maamaw', 1), ('held', 1), ('king', 1), ('college', 1), ('cambridge', 1), ('field', 1), ('multi', 1), ('agent', 1), ('system', 1), ('ma', 1), ('flourished', 1), ('attracted', 1), ('increasing', 1), ('amount', 1), ('theoretical', 1), ('applied', 1), ('research', 1), ('decade', 1), ('important', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('declarative', 1), ('agent', 1), ('language', 1), ('technology', 1), ('dalt', 1), ('held', 1), ('japan', 1), ('associated', 1), ('event', 1), ('aamas', 1), ('main', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('workshop', 1), ('radical', 1), ('agent', 1), ('concept', 1), ('wrac', 1), ('held', 1), ('greenbelt', 1), ('md', 1), ('usa', 1), ('september', 1), ('full', 1), ('paper', 1), ('presented', 1), ('fully', 1), ('revised', 1), ('incorporate', 1)]
[('nan', 1)]
[('nan', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('joint', 1), ('post', 1), ('proceeding', 1), ('three', 1), ('consecutive', 1), ('international', 1), ('workshop', 1), ('learning', 1), ('classifier', 1), ('system', 1), ('took', 1), ('place', 1), ('chicago', 1), ('il', 1), ('july', 1), ('seattle', 1), ('wa', 1), ('june', 1), ('washington', 1), ('dc', 1)]
[('agent', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('joint', 1), ('international', 1), ('workshop', 1), ('trading', 1), ('design', 1), ('analysis', 1), ('tada', 1), ('mediated', 1), ('electronic', 1), ('commerce', 1), ('amec', 1), ('vii', 1), ('held', 1), ('hakodate', 1), ('japan', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('frontier', 1), ('combining', 1), ('system', 1), ('frocos', 1), ('held', 1), ('liverpool', 1), ('uk', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('selected', 1), ('organized', 1)]
[('kes', 4), ('amsta', 3), ('symposium', 2), ('agent', 2), ('following', 1), ('successful', 1), ('first', 1), ('multi', 1), ('system', 1), ('technology', 1), ('application', 1), ('held', 1), ('wroclaw', 1), ('poland', 1), ('june', 1), ('second', 1), ('event', 1), ('series', 1)]
[('quality', 2), ('incursion', 1), ('information', 1), ('communication', 1), ('technology', 1), ('ict', 1), ('health', 1), ('care', 1), ('entail', 1), ('evident', 1), ('bene', 1), ('t', 1), ('level', 1), ('security', 1), ('ciency', 1), ('improve', 1), ('life', 1), ('patient', 1), ('work', 1)]
[('th', 2), ('symbolic', 2), ('computation', 2), ('book', 1), ('constitutes', 1), ('joint', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('aisc', 1), ('symposium', 1), ('integration', 1), ('mechanized', 1), ('reasoning', 1)]
[('spatial', 2), ('cognition', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('held', 1), ('freiburg', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('lecture', 1)]
[('th', 2), ('conference', 2), ('volume', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('international', 1), ('algorithmic', 1), ('learning', 1), ('theory', 1), ('alt', 1), ('held', 1), ('budapest', 1), ('hungary', 1), ('october', 1), ('co', 1), ('located', 1), ('ternational', 1)]
[('international', 3), ('mexican', 2), ('conference', 2), ('artificial', 2), ('intelligence', 1), ('micai', 1), ('yearly', 1), ('series', 1), ('organized', 1), ('society', 1), ('intel', 1), ('gence', 1), ('smia', 1), ('major', 1), ('ai', 1), ('forum', 1), ('main', 1), ('event', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('australasian', 1), ('joint', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('auckland', 1), ('new', 1), ('zealand', 1), ('december', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('interaction', 2), ('emerging', 1), ('information', 1), ('technology', 1), ('enabled', 1), ('new', 1), ('human', 1), ('pattern', 1), ('ranging', 1), ('physiological', 1), ('psychological', 1), ('perhaps', 1), ('best', 1), ('example', 1), ('rapid', 1), ('evolution', 1), ('thumb', 1), ('simply', 1), ('holding', 1), ('controlling', 1), ('mobile', 1)]
[('author', 2), ('paper', 1), ('invited', 1), ('based', 1), ('quality', 1), ('relevance', 1), ('significance', 1), ('ability', 1), ('extending', 1), ('result', 1), ('extended', 1), ('version', 1), ('prepared', 1), ('subject', 1), ('traditional', 1), ('round', 1), ('scholarly', 1), ('review', 1), ('process', 1)]
[('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('formed', 1), ('provide', 1), ('annual', 1), ('forum', 1), ('dedicated', 1), ('emerging', 1), ('challenging', 1), ('topic', 1), ('artificial', 1), ('intelligence', 1), ('machine', 1), ('learning', 1), ('bioinformatics', 1), ('computational', 1), ('biology', 1), ('etc', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('methodology', 1), ('intelligent', 1), ('system', 1), ('ismis', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('september', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('together', 1), ('plenary', 1)]
[('lpnmr', 2), ('volume', 1), ('contains', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('logic', 1), ('programming', 1), ('nonmonotonic', 1), ('reasoning', 1), ('held', 1), ('september', 1), ('potsdam', 1), ('germany', 1), ('forum', 1), ('exchanging', 1), ('idea', 1), ('declarative', 1)]
[('reviewed', 2), ('paper', 2), ('book', 1), ('contains', 1), ('selection', 1), ('higher', 1), ('quality', 1), ('th', 1), ('portuguese', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('epia', 1), ('held', 1), ('aveiro', 1), ('portugal', 1), ('october', 1), ('revised', 1), ('full', 1), ('presented', 1), ('carefully', 1)]
[('volume', 1), ('contains', 1), ('paper', 1), ('selected', 1), ('presentation', 1), ('inter', 1), ('tional', 1), ('conference', 1), ('brain', 1), ('informatics', 1), ('bi', 1), ('held', 1), ('beijing', 1), ('university', 1), ('technology', 1), ('china', 1), ('october', 1), ('organized', 1), ('web', 1), ('int', 1), ('ligence', 1)]
[('distribution', 1), ('anaphora', 1), ('natural', 1), ('language', 1), ('complexity', 1), ('resolution', 1), ('resulted', 1), ('wide', 1), ('range', 1), ('discipline', 1), ('focusing', 1), ('research', 1), ('grammatical', 1), ('phenomenon', 1), ('emerged', 1), ('productive', 1), ('topic', 1), ('multi', 1)]
[('conference', 2), ('first', 1), ('asian', 1), ('machine', 1), ('learning', 1), ('acml', 1), ('held', 1), ('nanjing', 1), ('china', 1), ('november', 1), ('rst', 1), ('edition', 1), ('series', 1), ('annual', 1), ('aim', 1), ('provide', 1), ('leading', 1), ('international', 1), ('forum', 1), ('researcher', 1)]
[('nan', 1)]
[('agent', 3), ('simulation', 1), ('decision', 1), ('making', 1), ('multi', 1), ('application', 1), ('management', 1), ('business', 1), ('mobile', 1), ('robot', 1), ('machine', 1), ('learning', 1), ('addition', 1), ('main', 1), ('track', 1), ('symposium', 1), ('following', 1), ('five', 1), ('special', 1), ('session', 1), ('based', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('finite', 1), ('state', 1), ('method', 1), ('natural', 1), ('language', 1), ('processing', 1), ('fsmnlp', 1), ('held', 1), ('university', 1), ('pretoria', 1), ('south', 1), ('africa', 1), ('july', 1), ('total', 1)]
[('research', 3), ('spatial', 3), ('volume', 2), ('cognition', 2), ('seventh', 1), ('series', 1), ('book', 1), ('fundamental', 1), ('past', 1), ('presented', 1), ('span', 1), ('broad', 1), ('range', 1), ('tradition', 1), ('concern', 1), ('basic', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('computational', 1), ('logic', 1), ('multi', 1), ('agent', 1), ('system', 1), ('clima', 1), ('xi', 1), ('held', 1), ('lisbon', 1), ('portugal', 1), ('august', 1), ('nbsp', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('fuzzy', 2), ('monograph', 1), ('st', 1), ('approximation', 1), ('theory', 1), ('contains', 1), ('mostly', 1), ('author', 1), ('research', 1), ('work', 1), ('fuzziness', 1), ('last', 1), ('ten', 1), ('year', 1), ('relies', 1), ('lot', 1), ('natural', 1), ('outgrowth', 1), ('belongs', 1), ('broader', 1), ('area', 1)]
[('soft', 2), ('computing', 2), ('engineering', 1), ('science', 1), ('statistic', 1), ('classical', 1), ('branch', 1), ('mathematics', 1), ('emphasize', 1), ('different', 1), ('aspect', 1), ('data', 1), ('analysis', 1), ('focus', 1), ('obtaining', 1), ('working', 1), ('solution', 1), ('quickly', 1), ('accepting', 1), ('approximation', 1)]
[('fuzzy', 4), ('logic', 3), ('book', 2), ('topic', 2), ('description', 2), ('go', 1), ('depth', 1), ('concerning', 1), ('fast', 1), ('growing', 1), ('technology', 1), ('approach', 1), ('semantic', 1), ('web', 1), ('include', 1), ('ontology', 1), ('query', 1)]
[('informationen', 2), ('und', 2), ('web', 2), ('der', 2), ('braucht', 1), ('jeder', 1), ('viele', 1), ('unternehmen', 1), ('institutionen', 1), ('nutzen', 1), ('da', 1), ('um', 1), ('kundenkommunikation', 1), ('zur', 1), ('verfügung', 1), ('zu', 1), ('stellen', 1), ('moderne', 1), ('technologien', 1), ('sind', 1), ('zudem', 1), ('eng', 1), ('mit', 1), ('entwicklung', 1), ('von', 1), ('lernsystemen', 1)]
[('der', 3), ('und', 2), ('computer', 1), ('haben', 1), ('al', 1), ('universelle', 1), ('maschinen', 1), ('da', 1), ('moderne', 1), ('leben', 1), ('nicht', 1), ('nur', 1), ('durchdrungen', 1), ('sie', 1), ('verändern', 1), ('durch', 1), ('ihre', 1), ('vielfältige', 1), ('funktionalität', 1), ('auch', 1), ('jede', 1), ('art', 1), ('kommunikation', 1), ('damit', 1), ('organisation', 1), ('arbeitsabläufe', 1), ('vielschichtige', 1), ('kenntnisse', 1)]
[('und', 3), ('effizienter', 2), ('der', 2), ('zu', 2), ('ziel', 1), ('diesis', 1), ('buches', 1), ('ist', 1), ('e', 1), ('managern', 1), ('argumente', 1), ('entscheidungshilfen', 1), ('für', 1), ('die', 1), ('einführung', 1), ('techniken', 1), ('softwareentwi', 1), ('lung', 1), ('geben', 1), ('praktiker', 1), ('von', 1), ('notwendigkeit', 1), ('softwaree', 1), ('wicklung', 1), ('überzeugen', 1), ('wege', 1), ('zur', 1)]
[('systeme', 2), ('und', 2), ('eingebettete', 1), ('übernehmen', 1), ('komplexe', 1), ('steuerungs', 1), ('regelungsaufgaben', 1), ('für', 1), ('technische', 1), ('ihre', 1), ('funktionalität', 1), ('wird', 1), ('durch', 1), ('da', 1), ('zusammenspiel', 1), ('von', 1), ('spezialhardware', 1), ('standardprozessoren', 1), ('peripherie', 1), ('software', 1), ('realisiert', 1), ('oft', 1), ('liegt', 1), ('der', 1)]
[('und', 4), ('open', 2), ('source', 2), ('linux', 1), ('strategien', 1), ('hilft', 1), ('leitern', 1), ('bei', 1), ('der', 1), ('entscheidungsfindung', 1), ('strategieentwicklung', 1), ('zum', 1), ('einsatz', 1), ('von', 1), ('software', 1), ('os', 1), ('unternehmen', 1), ('da', 1), ('buch', 1), ('erläutert', 1), ('grundlagen', 1), ('lizenzmodelle', 1), ('analysiert', 1), ('einsatzbereiche', 1)]
[('da', 1), ('speech', 1), ('application', 1), ('sdk', 1), ('ermöglicht', 1), ('den', 1), ('aufbau', 1), ('von', 1), ('sprachgestützten', 1), ('web', 1), ('applikationen', 1), ('innerhalb', 1), ('de', 1), ('net', 1), ('framework', 1), ('vorliegenden', 1), ('buch', 1), ('wird', 1), ('die', 1), ('implementierung', 1), ('entsprechender', 1), ('programme', 1), ('anhand', 1), ('fundierter', 1), ('und', 1), ('praxisnaher', 1), ('code', 1), ('beispiele', 1)]
[('die', 2), ('entwicklung', 2), ('oft', 2), ('nicht', 2), ('werden', 2), ('praxis', 1), ('zeigt', 1), ('das', 1), ('bei', 1), ('der', 1), ('großer', 1), ('komplexer', 1), ('softwaresysteme', 1), ('sicherheitsaspekte', 1), ('gar', 1), ('oder', 1), ('erst', 1), ('sehr', 1), ('spät', 1), ('berücksichtigt', 1), ('security', 1), ('spezialisten', 1), ('neuer', 1), ('systeme', 1), ('eingebunden', 1), ('und', 1)]
[('der', 2), ('framework', 2), ('die', 2), ('heute', 1), ('entsteht', 1), ('software', 1), ('meist', 1), ('auf', 1), ('basis', 1), ('von', 1), ('bereits', 1), ('sicherheitstechniken', 1), ('enthalten', 1), ('diese', 1), ('zu', 1), ('verstehen', 1), ('ist', 1), ('essentiell', 1), ('für', 1), ('applikationsentwickler', 1), ('und', 1), ('systemingenieure', 1), ('verwenden', 1), ('um', 1), ('applikationen', 1), ('mit', 1)]
[('die', 3), ('ipad', 2), ('apple', 2), ('wie', 2), ('der', 1), ('von', 1), ('eröffnet', 1), ('gerade', 1), ('unternehmen', 1), ('neue', 1), ('kommunikationswege', 1), ('autoren', 1), ('liefern', 1), ('vorschläge', 1), ('bedienphilosophie', 1), ('und', 1), ('applikationen', 1), ('kurz', 1), ('apps', 1), ('verbindung', 1), ('mit', 1), ('dem', 1), ('auf', 1), ('unternehmensrealität', 1), ('übertragen', 1), ('bzw', 1)]
[('die', 4), ('da', 2), ('funktionale', 2), ('buch', 1), ('bietet', 1), ('eine', 1), ('kompakte', 1), ('einführung', 1), ('programmierung', 1), ('mit', 1), ('haskell', 1), ('autoren', 1), ('vermitteln', 1), ('zunächst', 1), ('anhand', 1), ('von', 1), ('beispielen', 1), ('grundlegende', 1), ('konzepte', 1), ('fundament', 1), ('für', 1), ('programmentwicklung', 1), ('bilden', 1), ('anschließend', 1)]
[('information', 2), ('retrieval', 2), ('document', 2), ('science', 1), ('concerned', 1), ('effective', 1), ('efficient', 1), ('starting', 1), ('semantic', 1), ('content', 1), ('employed', 1), ('fulfill', 1), ('need', 1), ('large', 1), ('number', 1), ('digital', 1), ('given', 1)]
[('speziell', 1), ('für', 1), ('bachelor', 1), ('studenten', 1), ('entwickelt', 1), ('enthält', 1), ('da', 1), ('lehrbuch', 1), ('viele', 1), ('praktische', 1), ('anwendungen', 1), ('die', 1), ('auf', 1), ('anfänger', 1), ('zugeschnitten', 1), ('sind', 1), ('al', 1), ('einziges', 1), ('einführendes', 1), ('werk', 1), ('diesem', 1), ('bereich', 1), ('werden', 1), ('auch', 1), ('nur', 1), ('sehr', 1), ('geringe', 1), ('mathematische', 1), ('kenntnisse', 1)]
[('die', 2), ('und', 2), ('den', 2), ('der', 2), ('grundlegenden', 1), ('prinzipien', 1), ('von', 1), ('mikrocontrollern', 1), ('mikroprozessoren', 1), ('detailliert', 1), ('erläutern', 1), ('autoren', 1), ('neuesten', 1), ('stand', 1), ('technik', 1), ('alle', 1), ('wichtigen', 1), ('entwicklungstendenzen', 1), ('aktuellen', 1), ('forschungsstand', 1), ('ferner', 1), ('analysieren', 1), ('sie', 1), ('praxis', 1)]
[('nan', 1)]
[('die', 3), ('informatik', 2), ('und', 2), ('dieser', 1), ('abschließende', 1), ('vierte', 1), ('band', 1), ('der', 1), ('einführung', 1), ('behandelt', 1), ('theoretische', 1), ('ausgewählte', 1), ('fundamentale', 1), ('algorithmen', 1), ('datenstrukturen', 1), ('beschreibungs', 1), ('programmierstile', 1), ('jeder', 1), ('informatiker', 1), ('kennen', 1), ('sollte', 1), ('ausgehend', 1)]
[('die', 3), ('sich', 2), ('software', 2), ('entwickler', 2), ('notizen', 1), ('zu', 1), ('richten', 1), ('den', 1), ('erfahrenen', 1), ('sie', 1), ('erläutern', 1), ('für', 1), ('zahlreiche', 1), ('komplexe', 1), ('problemstellungen', 1), ('dem', 1), ('bei', 1), ('der', 1), ('täglichen', 1), ('arbeit', 1), ('stellen', 1), ('wie', 1), ('optimale', 1), ('lösung', 1), ('aussieht', 1), ('dazu', 1), ('wird', 1)]
[('die', 3), ('methoden', 2), ('werden', 2), ('sicherheits', 1), ('bei', 1), ('weltweit', 1), ('verbreiteten', 1), ('vernetzten', 1), ('commerce', 1), ('aktivitäten', 1), ('immer', 1), ('wichtiger', 1), ('diesem', 1), ('buch', 1), ('verfügbaren', 1), ('dargestellt', 1), ('e', 1), ('ermöglichen', 1), ('gefahren', 1), ('wie', 1), ('etwa', 1), ('angriffen', 1), ('au', 1), ('dem', 1), ('netz', 1), ('vorzubeugen', 1), ('und', 1)]
[('die', 4), ('autoren', 1), ('stellen', 1), ('praktische', 1), ('handhabung', 1), ('und', 1), ('werkzeuge', 1), ('für', 1), ('automatische', 1), ('software', 1), ('testverfahren', 1), ('ausführlich', 1), ('dar', 1), ('besondere', 1), ('berücksichtigung', 1), ('findet', 1), ('dabei', 1), ('qualitätssicherung', 1), ('sowohl', 1), ('beim', 1), ('test', 1), ('design', 1), ('bei', 1), ('den', 1), ('verwendeten', 1), ('testwerkzeugen', 1), ('al', 1)]
[('die', 2), ('der', 2), ('de', 2), ('information', 2), ('diese', 1), ('einführung', 1), ('grundlagen', 1), ('dokumentation', 1), ('und', 1), ('retrieval', 1), ('wiederauffindens', 1), ('von', 1), ('zu', 1), ('thematisch', 1), ('inhaltlichen', 1), ('fragen', 1), ('entstand', 1), ('auf', 1), ('basis', 1), ('langjähriger', 1), ('lehrerfahrung', 1), ('sowohl', 1), ('theoretisch', 1), ('fundierte', 1)]
[('nan', 1)]
[('nan', 1)]
[('den', 3), ('die', 2), ('und', 2), ('da', 1), ('buch', 1), ('gibt', 1), ('einen', 1), ('umfassenden', 1), ('überblick', 1), ('über', 1), ('hardware', 1), ('software', 1), ('konzepte', 1), ('auf', 1), ('denen', 1), ('moderne', 1), ('rechnersysteme', 1), ('beruhen', 1), ('von', 1), ('arbeitsplatzrechnern', 1), ('bi', 1), ('zu', 1), ('supercomputern', 1), ('zukünftigen', 1), ('massiv', 1), ('parallelen', 1), ('rechnern', 1), ('anschluß', 1)]
[('der', 3), ('sind', 2), ('neuronale', 1), ('netze', 1), ('ein', 1), ('berechenbarkeitsparadigma', 1), ('da', 1), ('informatik', 1), ('zunehmende', 1), ('beachtung', 1), ('findet', 1), ('diesem', 1), ('buch', 1), ('werden', 1), ('theoretische', 1), ('ansätze', 1), ('und', 1), ('modelle', 1), ('die', 1), ('literatur', 1), ('verstreut', 1), ('zu', 1), ('einer', 1), ('modellübergreifenden', 1), ('theorie', 1)]
[('nan', 1)]
[('book', 1), ('concise', 1), ('self', 1), ('contained', 1), ('date', 1), ('introduction', 1), ('extremal', 1), ('combinatorics', 1), ('nonspecialists', 1), ('strong', 1), ('emphasis', 1), ('theorem', 1), ('particularly', 1), ('elegant', 1), ('informative', 1), ('proof', 1), ('called', 1), ('gem', 1), ('theory', 1)]
[('art', 1), ('craft', 1), ('discipline', 1), ('logic', 1), ('practice', 1), ('science', 1), ('developing', 1), ('large', 1), ('scale', 1), ('software', 1), ('product', 1), ('need', 1), ('professional', 1), ('base', 1), ('textbook', 1), ('three', 1), ('volume', 1), ('set', 1), ('combine', 1), ('informal', 1), ('engineeringly', 1), ('sound', 1), ('approach', 1), ('rigor', 1), ('formal', 1)]
[('die', 3), ('der', 3), ('den', 2), ('da', 1), ('vorliegende', 1), ('buch', 1), ('bietet', 1), ('eine', 1), ('auf', 1), ('belange', 1), ('mathematischen', 1), ('grundausbildung', 1), ('informatiker', 1), ('zugeschnittene', 1), ('einführung', 1), ('lineare', 1), ('algebra', 1), ('leser', 1), ('bi', 1), ('hin', 1), ('zu', 1), ('euklidischen', 1), ('vektorräumen', 1), ('und', 1), ('hauptachsentransformation', 1), ('führt', 1)]
[('brain', 2), ('book', 1), ('represents', 1), ('comprehensive', 1), ('introduction', 1), ('conceptual', 1), ('rigorous', 1), ('cognition', 1), ('modelling', 1), ('devoted', 1), ('understanding', 1), ('prediction', 1), ('control', 1), ('fundamental', 1), ('mechanism', 1), ('functioning', 1), ('reader', 1)]
[('swarm', 2), ('intelligence', 2), ('data', 2), ('mining', 2), ('volume', 1), ('examines', 1), ('application', 1), ('addressing', 1), ('issue', 1), ('using', 1), ('novel', 1), ('intelligent', 1), ('approach', 1), ('book', 1), ('comprises', 1), ('chapter', 1), ('including', 1), ('introduction', 1), ('reviewing', 1)]
[('evolutionary', 1), ('algorithm', 1), ('sophisticated', 1), ('search', 1), ('method', 1), ('found', 1), ('efficient', 1), ('effective', 1), ('solving', 1), ('complex', 1), ('real', 1), ('world', 1), ('multi', 1), ('objective', 1), ('problem', 1), ('conventional', 1), ('optimization', 1), ('tool', 1), ('fail', 1), ('work', 1), ('despite', 1), ('tremendous', 1)]
[('research', 2), ('soft', 2), ('computing', 2), ('data', 2), ('mining', 2), ('author', 1), ('consolidated', 1), ('work', 1), ('volume', 1), ('titled', 1), ('application', 1), ('monograph', 1), ('give', 1), ('insight', 1), ('eld', 1), ('combination', 1), ('methodology', 1)]
[('multimedia', 2), ('rapid', 1), ('increase', 1), ('computing', 1), ('power', 1), ('communication', 1), ('speed', 1), ('coupled', 1), ('computer', 1), ('storage', 1), ('facility', 1), ('availability', 1), ('led', 1), ('new', 1), ('age', 1), ('app', 1), ('cation', 1), ('practically', 1), ('everywhere', 1), ('around', 1), ('feel', 1), ('presence', 1)]
[('computer', 2), ('graphic', 2), ('find', 2), ('nowadays', 1), ('intelligent', 1), ('technique', 1), ('used', 1), ('order', 1), ('optimise', 1), ('processing', 1), ('time', 1), ('accurate', 1), ('solution', 1), ('lot', 1), ('problem', 1), ('traditional', 1), ('method', 1), ('simply', 1)]
[('contemporary', 1), ('design', 1), ('engineering', 1), ('industry', 1), ('relies', 1), ('heavily', 1), ('computer', 1), ('simulation', 1), ('efficient', 1), ('algorithm', 1), ('reduce', 1), ('cost', 1), ('maximize', 1), ('performance', 1), ('sustainability', 1), ('profit', 1), ('energy', 1), ('efficiency', 1), ('solving', 1), ('optimization', 1)]
[('decision', 2), ('problem', 2), ('tree', 1), ('rule', 1), ('system', 1), ('widely', 1), ('used', 1), ('different', 1), ('applicationsas', 1), ('algorithm', 1), ('solving', 1), ('predictor', 1), ('way', 1), ('forknowledge', 1), ('representation', 1), ('reducts', 1), ('play', 1), ('key', 1), ('role', 1), ('attribute', 1), ('feature', 1), ('selection', 1)]
[('science', 2), ('special', 1), ('edited', 1), ('volume', 1), ('unique', 1), ('approach', 1), ('towards', 1), ('computational', 1), ('solution', 1), ('upcoming', 1), ('field', 1), ('study', 1), ('called', 1), ('vision', 1), ('scientific', 1), ('firmament', 1), ('optic', 1), ('ophthalmology', 1), ('optical', 1), ('surpassed', 1), ('odyssey', 1), ('optimizing', 1)]
[('evolutionary', 2), ('aim', 1), ('book', 1), ('provide', 1), ('strong', 1), ('theoretical', 1), ('support', 1), ('understanding', 1), ('analyzing', 1), ('behavior', 1), ('algorithm', 1), ('creating', 1), ('bridge', 1), ('probability', 1), ('set', 1), ('oriented', 1), ('numerics', 1), ('computation', 1)]
[('web', 3), ('data', 2), ('research', 1), ('volume', 1), ('focus', 1), ('analyzing', 1), ('user', 1), ('browsing', 1), ('behaviour', 1), ('preference', 1), ('traditional', 1), ('based', 1), ('environment', 1), ('social', 1), ('network', 1), ('application', 1), ('using', 1), ('advanced', 1), ('technique', 1), ('acquisition', 1), ('processing', 1), ('pattern', 1)]
[('book', 1), ('highlight', 1), ('recent', 1), ('research', 1), ('metaheuristics', 1), ('biomedical', 1), ('engineering', 1), ('addressing', 1), ('theoretical', 1), ('application', 1), ('aspect', 1), ('given', 1), ('multidisciplinary', 1), ('nature', 1), ('bio', 1), ('medical', 1), ('image', 1), ('analysis', 1), ('become', 1), ('central', 1)]
[('conference', 2), ('present', 1), ('book', 1), ('includes', 1), ('set', 1), ('selected', 1), ('extended', 1), ('paper', 1), ('second', 1), ('international', 1), ('joint', 1), ('computational', 1), ('intelligence', 1), ('ijcci', 1), ('held', 1), ('valencia', 1), ('spain', 1), ('october', 1), ('composed', 1), ('three', 1)]
[('textbook', 1), ('hand', 1), ('aim', 1), ('provide', 1), ('introduction', 1), ('use', 1), ('automated', 1), ('method', 1), ('gathering', 1), ('strategic', 1), ('competitive', 1), ('intelligence', 1), ('hereby', 1), ('text', 1), ('describe', 1), ('singleton', 1), ('research', 1), ('discipline', 1), ('right', 1), ('machine', 1), ('learning', 1)]
[('adaptation', 1), ('personalization', 1), ('extensively', 1), ('studied', 1), ('cscl', 1), ('research', 1), ('community', 1), ('aiming', 1), ('design', 1), ('intelligent', 1), ('system', 1), ('adaptively', 1), ('support', 1), ('elearning', 1), ('process', 1), ('collaboration', 1), ('yet', 1), ('fast', 1), ('development', 1), ('internet', 1), ('technology', 1)]
[('computational', 2), ('intelligence', 2), ('series', 1), ('study', 1), ('sci', 1), ('publishes', 1), ('new', 1), ('development', 1), ('advance', 1), ('various', 1), ('area', 1), ('quickly', 1), ('high', 1), ('quality', 1), ('intent', 1), ('cover', 1), ('theory', 1), ('application', 1), ('design', 1)]
[('book', 2), ('shape', 2), ('understanding', 2), ('system', 2), ('present', 1), ('selected', 1), ('result', 1), ('research', 1), ('development', 1), ('sus', 1), ('described', 1), ('previous', 1), ('titled', 1), ('first', 1), ('step', 1), ('toward', 1), ('visual', 1), ('thinking', 1), ('machine', 1)]
[('application', 2), ('methodology', 2), ('lt', 1), ('gt', 1), ('research', 1), ('monograph', 1), ('present', 1), ('selected', 1), ('area', 1), ('field', 1), ('control', 1), ('system', 1), ('engineering', 1), ('using', 1), ('computational', 1), ('intelligence', 1), ('number', 1), ('case', 1), ('study', 1), ('introduced', 1)]
[('system', 3), ('diagnosis', 2), ('analysis', 2), ('book', 1), ('present', 1), ('sample', 1), ('research', 1), ('knowledge', 1), ('based', 1), ('biomedicine', 1), ('computational', 1), ('life', 1), ('science', 1), ('contribution', 1), ('include', 1), ('personalized', 1), ('stress', 1), ('image', 1), ('breast', 1), ('cancer', 1), ('neuronal', 1)]
[('data', 2), ('surrounded', 1), ('numerical', 1), ('categorical', 1), ('analyzed', 1), ('processed', 1), ('convert', 1), ('information', 1), ('instructs', 1), ('answer', 1), ('aid', 1), ('understanding', 1), ('decision', 1), ('making', 1), ('analyst', 1), ('many', 1), ('discipline', 1)]
[('book', 1), ('conceived', 1), ('workshop', 1), ('calibration', 1), ('orientation', 1), ('camera', 1), ('computer', 1), ('vision', 1), ('xviith', 1), ('congress', 1), ('isprs', 1), ('ternational', 1), ('society', 1), ('photogrammetry', 1), ('remote', 1), ('sensing', 1), ('july', 1), ('washington', 1), ('goal', 1)]
[('evolutionary', 2), ('algorithm', 2), ('broad', 2), ('evolution', 1), ('strategy', 1), ('genetic', 1), ('programming', 1), ('found', 1), ('acceptance', 1), ('last', 1), ('ten', 1), ('year', 1), ('contrast', 1), ('propagation', 1), ('theoretical', 1), ('analysis', 1), ('subject', 1)]
[('der', 2), ('und', 2), ('die', 1), ('entwicklung', 1), ('professioneller', 1), ('multimedia', 1), ('anwendungen', 1), ('bedarf', 1), ('interaktiven', 1), ('zusammenarbeit', 1), ('zwischen', 1), ('auftraggeber', 1), ('entwicklerteam', 1), ('von', 1), ('idee', 1), ('bi', 1), ('zum', 1), ('fertigen', 1), ('multimedialen', 1), ('online', 1), ('oder', 1), ('offline', 1), ('produkt', 1), ('sind', 1), ('vielfältige', 1), ('organisatorische', 1)]
[('conference', 2), ('volume', 1), ('contains', 1), ('revised', 1), ('version', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('dur', 1), ('ing', 1), ('rd', 1), ('annual', 1), ('german', 1), ('classification', 1), ('society', 1), ('gfkl', 1), ('gesellschaft', 1), ('fiir', 1), ('klassifikation', 1), ('took', 1), ('place', 1), ('univer', 1), ('sity', 1), ('bielefeld', 1)]
[('system', 2), ('development', 2), ('attack', 1), ('computer', 1), ('cause', 1), ('considerable', 1), ('economic', 1), ('physical', 1), ('damage', 1), ('high', 1), ('quality', 1), ('security', 1), ('critical', 1), ('difficult', 1), ('mainly', 1), ('conflict', 1), ('cost', 1), ('verifiable', 1), ('correctness', 1), ('jürjens', 1)]
[('learning', 2), ('lack', 2), ('still', 1), ('infancy', 1), ('seen', 1), ('limited', 1), ('pedagogical', 1), ('quality', 1), ('portability', 1), ('content', 1), ('user', 1), ('friendly', 1), ('tool', 1), ('exploit', 1), ('opportunity', 1), ('offered', 1), ('current', 1), ('technology', 1)]
[('book', 2), ('first', 2), ('dynamic', 2), ('fourth', 1), ('series', 1), ('scientific', 1), ('fundamental', 1), ('ro', 1), ('botics', 1), ('volume', 1), ('established', 1), ('abackqround', 1), ('studying', 1), ('control', 1), ('robot', 1), ('exclusive', 1), ('ly', 1), ('devoted', 1)]
[('book', 1), ('logical', 1), ('continuation', 1), ('volume', 1), ('series', 1), ('entitled', 1), ('scientific', 1), ('fundamental', 1), ('robotics', 1), ('present', 1), ('basic', 1), ('method', 1), ('computerized', 1), ('construction', 1), ('dynamic', 1), ('manipulation', 1), ('ro', 1), ('bot', 1), ('essential', 1)]
[('usa', 2), ('fifth', 1), ('international', 1), ('conference', 1), ('automatic', 1), ('differentiation', 1), ('held', 1), ('august', 1), ('bonn', 1), ('germany', 1), ('recent', 1), ('series', 1), ('began', 1), ('breckenridge', 1), ('continued', 1), ('santa', 1), ('fe', 1), ('nice', 1), ('france', 1)]
[('genetic', 2), ('learning', 2), ('used', 2), ('pattern', 2), ('book', 1), ('provides', 1), ('unified', 1), ('framework', 1), ('describes', 1), ('design', 1), ('recognition', 1), ('system', 1), ('examines', 1), ('search', 1), ('technique', 1), ('algorithm', 1), ('classification', 1), ('mainly', 1)]
[('particle', 2), ('thereexistawiderangeofapplicationswhereasigni', 1), ('cantfractionofthe', 1), ('mentum', 1), ('energy', 1), ('present', 1), ('physical', 1), ('problem', 1), ('carried', 1), ('transport', 1), ('depending', 1), ('speci', 1), ('capplication', 1), ('involved', 1), ('photon', 1), ('neutron', 1)]
[('user', 2), ('side', 1), ('fence', 1), ('long', 1), ('said', 1), ('numerical', 1), ('analyst', 1), ('take', 1), ('time', 1), ('write', 1), ('good', 1), ('software', 1), ('idea', 1), ('put', 1), ('action', 1), ('gear', 1), ('aike', 1), ('monograph', 1), ('based', 1)]
[('die', 2), ('und', 2), ('bände', 2), ('sechste', 1), ('auflage', 1), ('diesis', 1), ('standardwerks', 1), ('wurde', 1), ('vollständig', 1), ('überarbeitet', 1), ('deutlich', 1), ('erweitert', 1), ('der', 1), ('gestiegene', 1), ('umfang', 1), ('de', 1), ('werkes', 1), ('machte', 1), ('eine', 1), ('aufteilung', 1), ('vier', 1), ('erforderlich', 1), ('anderen', 1), ('konzeption', 1), ('gestaltung', 1), ('isbn', 1)]
[('nan', 1)]
[('book', 1), ('focus', 1), ('exploratory', 1), ('data', 1), ('analysis', 1), ('learning', 1), ('latent', 1), ('structure', 1), ('datasets', 1), ('unscrambling', 1), ('knowledge', 1), ('coverage', 1), ('detail', 1), ('broad', 1), ('range', 1), ('method', 1), ('multivariate', 1), ('statistic', 1), ('clustering', 1), ('classification', 1), ('visualization', 1)]
[('und', 3), ('der', 2), ('die', 1), ('optimierung', 1), ('de', 1), ('web', 1), ('auftritts', 1), ('ist', 1), ('für', 1), ('entscheider', 1), ('mediengestalter', 1), ('ein', 1), ('wesentliches', 1), ('ziel', 1), ('ihrer', 1), ('tätigkeit', 1), ('anhand', 1), ('von', 1), ('erkenntnissen', 1), ('ergonomie', 1), ('arbeitswissenschaft', 1), ('erklärt', 1), ('autor', 1), ('besucher', 1), ('auf', 1), ('internetseiten', 1), ('fesselt', 1), ('zum', 1), ('kauf', 1)]
[('nan', 1)]
[('data', 2), ('processing', 1), ('multimedia', 1), ('content', 1), ('emerged', 1), ('key', 1), ('area', 1), ('application', 1), ('machine', 1), ('learning', 1), ('technique', 1), ('objective', 1), ('provide', 1), ('insight', 1), ('domain', 1), ('drawn', 1), ('organize', 1), ('improve', 1)]
[('nbsp', 4), ('der', 3), ('informatik', 2), ('stochastische', 1), ('methoden', 1), ('finden', 1), ('zahlreiche', 1), ('einsatzfelder', 1), ('insbesondere', 1), ('bio', 1), ('und', 1), ('medizinischen', 1), ('ziel', 1), ('de', 1), ('buches', 1), ('ist', 1), ('e', 1), ('eine', 1), ('einführung', 1), ('die', 1), ('grundlagen', 1), ('stochastik', 1), ('zu', 1), ('geben', 1), ('wobei', 1), ('viele', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('ifiptm', 1), ('held', 1), ('west', 1), ('lafayette', 1), ('usa', 1), ('june', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('invited', 1), ('demo', 1)]
[('collaborative', 2), ('network', 2), ('innovation', 2), ('tool', 1), ('promoting', 1), ('co', 1), ('creation', 1), ('paradigm', 1), ('offer', 1), ('powerful', 1), ('socio', 1), ('organizational', 1), ('mec', 1), ('nisms', 1), ('supported', 1), ('advanced', 1), ('information', 1), ('communication', 1), ('technology', 1), ('moting', 1)]
[('technological', 2), ('innovation', 2), ('identifying', 1), ('emerging', 1), ('trend', 1), ('doctoral', 1), ('program', 1), ('science', 1), ('engineering', 1), ('important', 1), ('source', 1), ('innovative', 1), ('idea', 1), ('technique', 1), ('might', 1), ('lead', 1), ('new', 1), ('product', 1), ('certainly', 1), ('phd', 1), ('student', 1)]
[('und', 3), ('die', 2), ('window', 2), ('der', 1), ('autor', 1), ('stellt', 1), ('systemarchitektur', 1), ('einrichtung', 1), ('den', 1), ('betrieb', 1), ('von', 1), ('unternehmensumgebungen', 1), ('sowie', 1), ('änderungen', 1), ('neuerungen', 1), ('vergleich', 1), ('zu', 1), ('früheren', 1), ('versionen', 1), ('dar', 1), ('da', 1), ('buch', 1), ('wendet', 1), ('sich', 1), ('systemadministratoren', 1)]
[('der', 3), ('sun', 2), ('opensolaris', 2), ('da', 1), ('buch', 1), ('beschreibt', 1), ('wesentlichen', 1), ('und', 1), ('deutlich', 1), ('unterschieden', 1), ('hiervon', 1), ('e', 1), ('ist', 1), ('damit', 1), ('von', 1), ('nutzen', 1), ('bereich', 1), ('klassischen', 1), ('solaris', 1), ('anwender', 1), ('al', 1), ('auch', 1), ('opensource', 1), ('gemeinde', 1), ('erfahrene', 1), ('administrator', 1), ('erhält', 1), ('mit', 1)]
[('learning', 1), ('klappt', 1), ('da', 1), ('wirklich', 1), ('immer', 1), ('zumindest', 1), ('für', 1), ('die', 1), ('professionelle', 1), ('textgestaltung', 1), ('bildschirm', 1), ('sind', 1), ('ein', 1), ('paar', 1), ('grundkenntnisse', 1), ('der', 1), ('typografie', 1), ('unerlässlich', 1), ('diesis', 1), ('buch', 1), ('vermittelt', 1), ('typografisches', 1), ('basiswissen', 1), ('auf', 1), ('knappe', 1), ('und', 1), ('anschauliche', 1)]
[('e', 3), ('und', 2), ('ist', 1), ('ganz', 1), ('einfach', 1), ('wenn', 1), ('gut', 1), ('erklärt', 1), ('wird', 1), ('seinen', 1), ('seminaren', 1), ('hat', 1), ('wolfgang', 1), ('pfaffe', 1), ('einleuchtende', 1), ('erklärungen', 1), ('übungen', 1), ('getestet', 1), ('immer', 1), ('wieder', 1), ('optimiert', 1), ('da', 1), ('ergebnis', 1), ('finden', 1), ('sie', 1), ('diesem', 1), ('buch', 1), ('geht', 1), ('mehr', 1), ('die', 1), ('tiefe', 1), ('al', 1), ('viele', 1), ('andere', 1)]
[('digitalfotografie', 2), ('der', 2), ('zu', 2), ('wird', 1), ('aktuellen', 1), ('literatur', 1), ('stets', 1), ('al', 1), ('verstanden', 1), ('diesis', 1), ('buch', 1), ('versucht', 1), ('bewusst', 1), ('einem', 1), ('besseren', 1), ('verständnis', 1), ('modernen', 1), ('fotografie', 1), ('führen', 1), ('indem', 1), ('da', 1), ('erfolgreiche', 1), ('zusammenwirken', 1), ('von', 1), ('klassischer', 1), ('mit', 1)]
[('computer', 2), ('ifip', 1), ('world', 1), ('congress', 1), ('wcc', 1), ('important', 1), ('conference', 1), ('area', 1), ('science', 1), ('worldwide', 1), ('level', 1), ('federated', 1), ('structure', 1), ('take', 1), ('account', 1), ('rapidly', 1), ('growing', 1), ('expanding', 1), ('interest', 1)]
[('application', 2), ('methodology', 2), ('research', 1), ('monograph', 1), ('present', 1), ('selected', 1), ('area', 1), ('field', 1), ('control', 1), ('system', 1), ('engineering', 1), ('using', 1), ('computational', 1), ('intelligence', 1), ('number', 1), ('case', 1), ('study', 1), ('introduced', 1)]
[('system', 3), ('diagnosis', 2), ('analysis', 2), ('book', 1), ('present', 1), ('sample', 1), ('research', 1), ('knowledge', 1), ('based', 1), ('biomedicine', 1), ('computational', 1), ('life', 1), ('science', 1), ('contribution', 1), ('include', 1), ('personalized', 1), ('stress', 1), ('image', 1), ('breast', 1), ('cancer', 1)]
[('genetic', 2), ('programming', 2), ('highly', 2), ('form', 2), ('cartesian', 1), ('cgp', 1), ('effective', 1), ('increasingly', 1), ('popular', 1), ('represents', 1), ('program', 1), ('directed', 1), ('graph', 1), ('particular', 1), ('characteristic', 1), ('redundant', 1)]
[('nan', 1)]
[('computing', 4), ('membrane', 2), ('unconventional', 1), ('model', 1), ('computation', 1), ('associated', 1), ('new', 1), ('paradigm', 1), ('field', 1), ('initiated', 1), ('author', 1), ('book', 1), ('branch', 1), ('natural', 1), ('inspired', 1), ('structure', 1)]
[('nan', 1)]
[('und', 2), ('zu', 2), ('diesis', 1), ('buch', 1), ('bietet', 1), ('einen', 1), ('systematisch', 1), ('aufgebauten', 1), ('einstieg', 1), ('angewandte', 1), ('datenanalyse', 1), ('bayes', 1), ('sche', 1), ('statistik', 1), ('moderne', 1), ('simulationsmethoden', 1), ('mit', 1), ('dem', 1), ('computer', 1), ('ausgehend', 1), ('von', 1), ('der', 1), ('zielsetzung', 1), ('nicht', 1), ('direkt', 1), ('messbare', 1), ('größen', 1), ('bestimmen', 1), ('prognosen', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('research', 1), ('workshop', 1), ('organizational', 1), ('learning', 1), ('technological', 1), ('change', 1), ('held', 1), ('certosa', 1), ('di', 1), ('pontignano', 1), ('siena', 1), ('italy', 1), ('september', 1)]
[('rigorous', 1), ('self', 1), ('contained', 1), ('monograph', 1), ('central', 1), ('topic', 1), ('theoretical', 1), ('computer', 1), ('science', 1), ('first', 1), ('time', 1), ('book', 1), ('form', 1), ('original', 1), ('result', 1), ('last', 1), ('ten', 1), ('year', 1), ('presented', 1), ('previously', 1), ('unpublished', 1), ('using', 1), ('combinatorial', 1)]
[('conference', 2), ('international', 1), ('intelligent', 1), ('information', 1), ('processing', 1), ('web', 1), ('mining', 1), ('ii', 1), ('iipwm', 1), ('organized', 1), ('gda', 1), ('sk', 1), ('sobieszewo', 1), ('th', 1), ('june', 1), ('continuation', 1), ('long', 1), ('tradition', 1), ('application', 1), ('arti', 1), ('cial', 1), ('intelligence', 1), ('ai', 1)]
[('image', 2), ('shape', 2), ('field', 1), ('analysis', 1), ('computer', 1), ('vision', 1), ('artificial', 1), ('intelligence', 1), ('make', 1), ('use', 1), ('description', 1), ('grey', 1), ('level', 1), ('existing', 1), ('algorithm', 1), ('automatic', 1), ('recognition', 1), ('classification', 1), ('particular', 1), ('devel', 1)]
[('zope', 2), ('concept', 1), ('component', 1), ('architecture', 1), ('explained', 1), ('thoroughly', 1), ('continually', 1), ('accompanied', 1), ('demo', 1), ('application', 1), ('special', 1), ('section', 1), ('developer', 1), ('cover', 1), ('basic', 1), ('difference', 1), ('predecessor', 1)]
[('elmau', 2), ('book', 1), ('contains', 1), ('manuscript', 1), ('paper', 1), ('delivered', 1), ('international', 1), ('sym', 1), ('posium', 1), ('synergetics', 1), ('held', 1), ('schlob', 1), ('bavaria', 1), ('germany', 1), ('april', 1), ('conference', 1), ('followed', 1), ('several', 1), ('previous', 1), ('one', 1), ('sicily', 1)]
[('system', 2), ('black', 2), ('box', 2), ('time', 2), ('take', 1), ('intuitive', 1), ('point', 1), ('view', 1), ('whose', 1), ('input', 1), ('output', 1), ('function', 1), ('series', 1), ('natural', 1), ('adopt', 1), ('operator', 1), ('theoretic', 1), ('approach', 1), ('study', 1), ('modeled', 1)]
[('book', 1), ('outgrowth', 1), ('graduate', 1), ('course', 1), ('title', 1), ('given', 1), ('ucla', 1), ('system', 1), ('science', 1), ('department', 1), ('presenting', 1), ('functional', 1), ('analysis', 1), ('approach', 1), ('stochastic', 1), ('filtering', 1), ('control', 1), ('problem', 1), ('writing', 1), ('progressed', 1), ('several', 1), ('new', 1), ('point', 1)]
[('nan', 1)]
[('nan', 1)]
[('variable', 3), ('set', 2), ('function', 2), ('topic', 1), ('book', 1), ('following', 1), ('optimisation', 1), ('problem', 1), ('given', 1), ('discrete', 1), ('depending', 1), ('subset', 1), ('minimise', 1), ('sum', 1), ('fundamental', 1), ('research', 1)]
[('society', 2), ('commission', 1), ('european', 1), ('union', 1), ('fourth', 1), ('framework', 1), ('programme', 1), ('committed', 1), ('development', 1), ('information', 1), ('doubt', 1), ('many', 1), ('radical', 1), ('change', 1), ('aspect', 1), ('caused', 1)]
[('european', 2), ('product', 1), ('data', 1), ('technology', 1), ('advisory', 1), ('group', 1), ('short', 1), ('pdtag', 1), ('established', 1), ('september', 1), ('auspex', 1), ('esprit', 1), ('cime', 1), ('division', 1), ('directorate', 1), ('general', 1), ('xii', 1), ('commission', 1), ('goal', 1), ('include', 1), ('promoting', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('research', 1), ('workshop', 1), ('multi', 1), ('medium', 1), ('interface', 1), ('design', 1), ('education', 1), ('held', 1), ('castel', 1), ('vecchio', 1), ('pascoli', 1), ('lucca', 1), ('italy', 1), ('september', 1)]
[('eurographics', 2), ('volume', 1), ('record', 1), ('first', 1), ('workshop', 1), ('multimedia', 1), ('held', 1), ('department', 1), ('numerical', 1), ('analysis', 1), ('computing', 1), ('science', 1), ('nada', 1), ('royal', 1), ('institute', 1), ('technology', 1), ('stockholm', 1), ('april', 1), ('european', 1)]
[('complexity', 3), ('measure', 2), ('mathematical', 1), ('theory', 1), ('computation', 1), ('given', 1), ('rise', 1), ('important', 1), ('ap', 1), ('proaches', 1), ('informal', 1), ('notion', 1), ('kolmogorov', 1), ('usu', 1), ('ally', 1), ('single', 1), ('object', 1), ('string', 1), ('sequence', 1), ('etc', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('research', 1), ('workshop', 1), ('sensor', 1), ('based', 1), ('robot', 1), ('algorithm', 1), ('architecture', 1), ('held', 1), ('chateau', 1), ('de', 1), ('bonas', 1), ('france', 1), ('october', 1)]
[('volume', 3), ('theory', 2), ('parsing', 2), ('language', 2), ('work', 1), ('ii', 1), ('monograph', 1), ('deterministic', 1), ('context', 1), ('free', 1), ('grammar', 1), ('chapter', 1), ('introduction', 1), ('basic', 1), ('concept', 1), ('formal', 1)]
[('theory', 2), ('language', 2), ('parsing', 1), ('important', 1), ('application', 1), ('area', 1), ('formal', 1), ('automaton', 1), ('evolution', 1), ('modem', 1), ('high', 1), ('level', 1), ('programming', 1), ('created', 1), ('need', 1), ('general', 1), ('theoretically', 1), ('dean', 1), ('methodology', 1), ('writing', 1), ('compiler', 1)]
[('least', 1), ('four', 1), ('research', 1), ('field', 1), ('detennine', 1), ('theoretical', 1), ('background', 1), ('specification', 1), ('deduction', 1), ('computer', 1), ('science', 1), ('recursion', 1), ('theory', 1), ('automated', 1), ('theorem', 1), ('proving', 1), ('abstract', 1), ('data', 1), ('type', 1), ('tenn', 1), ('rewriting', 1), ('system', 1), ('area', 1), ('approach', 1)]
[('workshop', 2), ('volume', 1), ('record', 1), ('window', 1), ('management', 1), ('held', 1), ('ruth', 1), ('erford', 1), ('appleton', 1), ('laboratory', 1), ('cosener', 1), ('house', 1), ('april', 1), ('main', 1), ('impetus', 1), ('came', 1), ('alvey', 1), ('programme', 1), ('machine', 1), ('interface', 1)]
[('fundamental', 2), ('aim', 1), ('book', 1), ('present', 1), ('algebraicspecifications', 1), ('respect', 1), ('following', 1), ('three', 1), ('aspect', 1), ('sense', 1), ('carefully', 1), ('motivatedintroduction', 1), ('algebraic', 1), ('specification', 1), ('easy', 1), ('tounderstand', 1)]
[('net', 2), ('theory', 2), ('system', 1), ('organization', 1), ('origin', 1), ('year', 1), ('ago', 1), ('dissertation', 1), ('petri', 1), ('seminal', 1), ('paper', 1), ('applied', 1), ('various', 1), ('area', 1), ('time', 1), ('modified', 1), ('theoretically', 1)]
[('nan', 1)]
[('die', 2), ('der', 2), ('al', 1), ('computer', 1), ('nach', 1), ('ihren', 1), ('ersten', 1), ('pionierjahren', 1), ('etwa', 1), ('zwischen', 1), ('und', 1), ('praxis', 1), ('eingang', 1), ('fanden', 1), ('ließ', 1), ('sich', 1), ('kaum', 1), ('voraussehen', 1), ('welche', 1), ('bedeutung', 1), ('einmal', 1), ('organisatorische', 1), ('teil', 1), ('einschließlich', 1), ('programmierung', 1), ('erlangen', 1), ('würde', 1), ('heute', 1), ('wissen', 1)]
[('nan', 1)]
[('software', 3), ('product', 1), ('line', 1), ('represent', 1), ('perhaps', 1), ('exciting', 1), ('paradigm', 1), ('shift', 1), ('development', 1), ('advent', 1), ('high', 1), ('level', 1), ('programming', 1), ('language', 1), ('nowhere', 1), ('engineering', 1), ('seen', 1), ('breathtaking', 1), ('improvement', 1), ('cost', 1)]
[('second', 1), ('international', 1), ('workshop', 1), ('svm', 1), ('munich', 1), ('germany', 1), ('october', 1), ('proceeding', 1)]
[('locally', 2), ('computable', 2), ('function', 2), ('bit', 2), ('nc', 1), ('simple', 1), ('every', 1), ('output', 1), ('computed', 1), ('reading', 1), ('small', 1), ('number', 1), ('input', 1), ('study', 1), ('cryptography', 1), ('attempt', 1), ('construct', 1), ('cryptographic', 1)]
[('business', 2), ('chinacombiz', 1), ('first', 1), ('international', 1), ('conference', 1), ('held', 1), ('collaboration', 1), ('chinacom', 1), ('scientific', 1), ('event', 1), ('hangzhou', 1), ('china', 1), ('august', 1), ('specifically', 1), ('tailored', 1), ('produce', 1), ('effective', 1), ('dialogue', 1)]
[('development', 2), ('computer', 2), ('network', 2), ('continuous', 1), ('intense', 1), ('resulted', 1), ('fast', 1), ('entire', 1), ('eldofit', 1), ('aresubjectto', 1), ('constantchangestriggeredbythegeneraltechnological', 1), ('advancement', 1)]
[('conference', 2), ('computer', 2), ('international', 1), ('future', 1), ('communication', 1), ('held', 1), ('wuhan', 1), ('china', 1), ('june', 1), ('following', 1), ('topic', 1), ('covered', 1), ('fcc', 1), ('agent', 1), ('knowledge', 1), ('based', 1), ('technology', 1), ('bioinformatics', 1), ('engineering', 1), ('architecture', 1)]
[('fgit', 2), ('future', 1), ('generation', 1), ('information', 1), ('technology', 1), ('becomes', 1), ('specialized', 1), ('fr', 1), ('mented', 1), ('easy', 1), ('lose', 1), ('sight', 1), ('many', 1), ('topic', 1), ('common', 1), ('thread', 1), ('advance', 1), ('discipline', 1), ('transmitted', 1), ('others', 1)]
[('fgit', 2), ('future', 1), ('generation', 1), ('information', 1), ('technology', 1), ('becomes', 1), ('specialized', 1), ('fr', 1), ('mented', 1), ('easy', 1), ('lose', 1), ('sight', 1), ('many', 1), ('topic', 1), ('common', 1), ('thread', 1), ('advance', 1), ('discipline', 1), ('transmitted', 1), ('others', 1)]
[('conference', 2), ('network', 2), ('security', 2), ('application', 2), ('third', 1), ('international', 1), ('cnsa', 1), ('focused', 1), ('technical', 1), ('practical', 1), ('aspect', 1), ('wired', 1), ('wireless', 1), ('goal', 1), ('bring', 1), ('together', 1)]
[('soft', 2), ('computing', 2), ('th', 1), ('onlineworld', 1), ('conference', 1), ('industrial', 1), ('application', 1), ('provides', 1), ('unique', 1), ('opportunity', 1), ('researcher', 1), ('practitioner', 1), ('publish', 1), ('high', 1), ('quality', 1), ('paper', 1), ('discus', 1), ('research', 1), ('issue', 1), ('detail', 1), ('without', 1), ('incurring', 1)]
[('rd', 1), ('international', 1), ('conference', 1), ('computational', 1), ('intelligence', 1), ('security', 1), ('information', 1), ('system', 1), ('cisis', 1), ('provided', 1), ('broad', 1), ('interdisciplinary', 1), ('forum', 1), ('present', 1), ('recent', 1), ('development', 1), ('several', 1), ('active', 1), ('scientific', 1), ('area', 1)]
[('conference', 2), ('presentation', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('software', 1), ('quality', 1), ('day', 1), ('swqd', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('january', 1), ('selection', 1), ('encompasses', 1), ('mixture', 1), ('practical', 1)]
[('agent', 4), ('international', 3), ('paams', 2), ('practical', 2), ('application', 2), ('multi', 2), ('system', 2), ('conference', 1), ('evolution', 1), ('workshop', 1), ('yearly', 1), ('tribune', 1)]
[('international', 2), ('agent', 2), ('paams', 1), ('conference', 1), ('practical', 1), ('application', 1), ('multi', 1), ('system', 1), ('yearly', 1), ('tribune', 1), ('present', 1), ('discus', 1), ('disseminate', 1), ('latest', 1), ('development', 1), ('important', 1), ('outcome', 1), ('related', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('software', 1), ('quality', 1), ('day', 1), ('swqd', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('january', 1), ('professional', 1), ('symposium', 1), ('offer', 1), ('range', 1), ('comprehensive', 1), ('valuable', 1), ('opportunity', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('system', 1), ('framework', 1), ('computational', 1), ('morphology', 1), ('sfcm', 1), ('held', 1), ('berlin', 1), ('september', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('conference', 1), ('knowledge', 1), ('engineering', 1), ('semantic', 1), ('web', 1), ('kesw', 1), ('held', 1), ('st', 1), ('petersburg', 1), ('russia', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('short', 1), ('system', 1)]
[('business', 2), ('technology', 2), ('international', 1), ('conference', 1), ('strategy', 1), ('cets', 1), ('provides', 1), ('peer', 1), ('reviewed', 1), ('forum', 1), ('researcher', 1), ('across', 1), ('globe', 1), ('share', 1), ('contemporary', 1), ('research', 1), ('development', 1), ('field', 1), ('information', 1)]
[('language', 2), ('paradigm', 2), ('oriented', 2), ('programming', 1), ('often', 1), ('classified', 1), ('according', 1), ('imperative', 1), ('functional', 1), ('logic', 1), ('constraint', 1), ('based', 1), ('object', 1), ('aspect', 1), ('characterizes', 1), ('style', 1), ('concept', 1), ('method', 1)]
[('human', 4), ('system', 2), ('main', 1), ('contemporary', 1), ('interaction', 1), ('si', 1), ('problem', 1), ('consist', 1), ('design', 1), ('improvement', 1), ('tool', 1), ('effective', 1), ('exchange', 1), ('information', 1), ('individual', 1), ('group', 1), ('technical', 1), ('created', 1), ('aiding', 1)]
[('control', 2), ('volume', 1), ('includes', 1), ('set', 1), ('selected', 1), ('paper', 1), ('extended', 1), ('revised', 1), ('international', 1), ('conference', 1), ('informatics', 1), ('cybernetics', 1), ('computer', 1), ('engineering', 1), ('intelligent', 1), ('class', 1), ('technique', 1), ('use', 1), ('various', 1), ('ai', 1), ('computing', 1)]
[('unusual', 1), ('direct', 1), ('progress', 1), ('civilization', 1), ('many', 1), ('field', 1), ('concerning', 1), ('technical', 1), ('science', 1), ('observed', 1), ('period', 1), ('last', 1), ('decade', 1), ('experiencing', 1), ('extraordinary', 1), ('dynamic', 1), ('development', 1), ('technological', 1), ('process', 1), ('particularly', 1), ('way', 1)]
[('proceeding', 2), ('ce', 2), ('book', 1), ('includes', 1), ('second', 1), ('international', 1), ('conference', 1), ('advance', 1), ('computer', 1), ('science', 1), ('engineering', 1), ('held', 1), ('january', 1), ('sanya', 1), ('china', 1), ('paper', 1), ('focus', 1)]
[('dem', 2), ('mehr', 2), ('seit', 1), ('kommerziellen', 1), ('erfolg', 1), ('de', 1), ('blockbuster', 1), ('avatar', 1), ('jahr', 1), ('kommen', 1), ('immer', 1), ('filme', 1), ('und', 1), ('fernseher', 1), ('auf', 1), ('den', 1), ('markt', 1), ('mittlerweile', 1), ('gibt', 1), ('e', 1), ('autostereoskopie', 1), ('verfahren', 1), ('bei', 1), ('denen', 1), ('zuschauer', 1), ('keine', 1), ('brille', 1), ('benötigen', 1), ('band', 1)]
[('mining', 5), ('book', 2), ('data', 2), ('provides', 1), ('comprehensive', 1), ('text', 1), ('web', 1), ('key', 1), ('topic', 1), ('structure', 1), ('content', 1), ('usage', 1), ('covered', 1), ('brings', 1), ('together', 1), ('essential', 1), ('concept', 1), ('algorithm', 1), ('related', 1), ('area', 1)]
[('ccis', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('information', 1), ('computing', 1), ('application', 1), ('icica', 1), ('held', 1), ('qinhuangdao', 1), ('china', 1), ('october', 1), ('paper', 1), ('presented', 1)]
[('volume', 2), ('ccis', 2), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('networked', 1), ('digital', 1), ('technology', 1), ('ndt', 1), ('held', 1), ('dubai', 1), ('uae', 1), ('april', 1), ('paper', 1), ('presented', 1)]
[('four', 1), ('volume', 1), ('ccis', 1), ('constitute', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('processing', 1), ('management', 1), ('uncertainty', 1), ('knowledge', 1), ('based', 1), ('system', 1), ('ipmu', 1), ('held', 1), ('catania', 1), ('italy', 1), ('july', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('virtual', 1), ('networked', 1), ('organization', 1), ('emergent', 1), ('technology', 1), ('tool', 1), ('vinorg', 1), ('held', 1), ('ofir', 1), ('portugal', 1), ('july', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('communication', 1), ('information', 1), ('processing', 1), ('iccip', 1), ('held', 1), ('aveiro', 1), ('portugal', 1), ('march', 1)]
[('book', 1), ('contains', 1), ('collection', 1), ('thoroughly', 1), ('refereed', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('evaluation', 1), ('novel', 1), ('approach', 1), ('software', 1), ('engineering', 1), ('enase', 1), ('held', 1), ('beijing', 1), ('china', 1), ('june', 1), ('revised', 1), ('extended', 1)]
[('theory', 3), ('conference', 2), ('computer', 2), ('application', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('visigrapp', 1), ('joint', 1), ('vision', 1), ('visapp', 1), ('imaging', 1), ('imagapp', 1), ('graphic', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('society', 1), ('wi', 1), ('held', 1), ('turku', 1), ('finland', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('recent', 1), ('trend', 1), ('computer', 1), ('network', 1), ('distributed', 1), ('system', 1), ('security', 1), ('held', 1), ('trivandrum', 1), ('india', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('poster', 1)]
[('conference', 2), ('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('bsbt', 1), ('mulgrab', 1), ('iurc', 1), ('held', 1), ('part', 1), ('future', 1), ('generation', 1), ('information', 1), ('technology', 1), ('fgit', 1), ('gangneung', 1), ('korea', 1), ('december', 1), ('paper', 1)]
[('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('eurospi', 1), ('conference', 1), ('held', 1), ('roskilde', 1), ('denmark', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('key', 1), ('note', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('organized', 1)]
[('lncs', 2), ('book', 1), ('constitutes', 1), ('together', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('web', 1), ('information', 1), ('system', 1), ('mining', 1), ('wism', 1), ('held', 1), ('taiyuan', 1), ('china', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('lnai', 3), ('intelligence', 2), ('book', 1), ('constitutes', 1), ('together', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('computationai', 1), ('aici', 1), ('held', 1), ('taiyuan', 1), ('china', 1), ('september', 1)]
[('second', 2), ('conference', 2), ('held', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('international', 1), ('theoretical', 1), ('mathematical', 1), ('foundation', 1), ('computer', 1), ('science', 1), ('ictmf', 1), ('singapore', 1), ('together', 1)]
[('ccis', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('informatics', 1), ('engineering', 1), ('information', 1), ('science', 1), ('icieis', 1), ('held', 1), ('kuala', 1), ('lumpur', 1), ('malaysia', 1), ('november', 1), ('revised', 1), ('full', 1)]
[('ccis', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('informatics', 1), ('engineering', 1), ('information', 1), ('science', 1), ('icieis', 1), ('held', 1), ('kuala', 1), ('lumpur', 1), ('malaysia', 1), ('november', 1), ('revised', 1), ('full', 1)]
[('der', 3), ('die', 1), ('theorie', 1), ('automaten', 1), ('gehört', 1), ('zum', 1), ('theoretischen', 1), ('teil', 1), ('informatik', 1), ('obgleich', 1), ('sie', 1), ('ihren', 1), ('anfängen', 1), ('von', 1), ('durchaus', 1), ('praktischen', 1), ('problemstellungen', 1), ('ausging', 1), ('nämlich', 1), ('untersu', 1), ('chung', 1), ('de', 1), ('funktionellen', 1), ('verhaltens', 1), ('mehr', 1), ('oder', 1), ('minder', 1), ('umfäng', 1), ('licher', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('italian', 1), ('research', 1), ('conference', 1), ('digital', 1), ('library', 1), ('held', 1), ('bari', 1), ('italy', 1), ('february', 1), ('full', 1), ('included', 1), ('together', 1), ('panel', 1), ('selected', 1), ('extended', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('process', 1), ('improvement', 1), ('capability', 1), ('determination', 1), ('spice', 1), ('held', 1), ('bremen', 1), ('germany', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('short', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('transport', 1), ('system', 1), ('telematics', 1), ('tst', 1), ('held', 1), ('katowice', 1), ('ustron', 1), ('poland', 1), ('october', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('ccf', 1), ('conference', 1), ('natural', 1), ('language', 1), ('processing', 1), ('chinese', 1), ('computing', 1), ('nlpcc', 1), ('held', 1), ('chongqing', 1), ('china', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('three', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('vlsi', 1), ('design', 1), ('test', 1), ('vdat', 1), ('held', 1), ('jaipur', 1), ('india', 1), ('july', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('evaluation', 1), ('novel', 1), ('approach', 1), ('software', 1), ('engineering', 1), ('enase', 1), ('held', 1), ('anger', 1), ('france', 1), ('july', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('bio', 1), ('inspired', 1), ('computing', 1), ('theory', 1), ('application', 1), ('bic', 1), ('ta', 1), ('held', 1), ('wuhan', 1), ('china', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('nan', 1)]
[('pattern', 2), ('fascinating', 1), ('shell', 1), ('tropical', 1), ('sea', 1), ('snail', 1), ('compellingly', 1), ('beautiful', 1), ('tell', 1), ('tale', 1), ('biological', 1), ('development', 1), ('decorative', 1), ('record', 1), ('genesis', 1), ('follows', 1), ('law', 1), ('dune', 1)]
[('contribution', 1), ('numerous', 1), ('expert', 1)]
[('london', 2), ('volume', 1), ('contains', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('icst', 1), ('conference', 1), ('digital', 1), ('business', 1), ('digibiz', 1), ('hosted', 1), ('city', 1), ('university', 1), ('uk', 1), ('annual', 1), ('event', 1), ('main', 1), ('objective', 1), ('stimulate', 1), ('disseminate', 1), ('research', 1)]
[('mobisec', 2), ('mobile', 2), ('first', 1), ('icst', 1), ('conference', 1), ('security', 1), ('privacy', 1), ('information', 1), ('communication', 1), ('system', 1), ('vast', 1), ('area', 1), ('technology', 1), ('research', 1), ('application', 1), ('intention', 1), ('behind', 1), ('creation', 1), ('make', 1)]
[('conference', 2), ('quantum', 2), ('quantumcomm', 1), ('international', 1), ('communi', 1), ('tion', 1), ('networking', 1), ('satellite', 1), ('nanoscale', 1), ('took', 1), ('place', 1), ('vico', 1), ('equense', 1), ('near', 1), ('naples', 1), ('italy', 1), ('october', 1), ('made', 1), ('significant', 1), ('step', 1), ('toward', 1)]
[('der', 3), ('da', 1), ('erfolgreiche', 1), ('auflage', 1), ('vollständig', 1), ('überarbeitete', 1), ('fachbuch', 1), ('widmet', 1), ('sich', 1), ('psychosozialen', 1), ('dimension', 1), ('projektarbeit', 1), ('vor', 1), ('diesem', 1), ('hintergrund', 1), ('werden', 1), ('alle', 1), ('projektphasen', 1), ('beleuchtet', 1), ('schwerpunkte', 1), ('sind', 1), ('planung', 1), ('und', 1), ('gestaltung', 1), ('de', 1)]
[('der', 3), ('und', 2), ('basierend', 1), ('auf', 1), ('ihrer', 1), ('jährigen', 1), ('erfahrung', 1), ('beschreiben', 1), ('wissenschaftler', 1), ('konzepte', 1), ('einzelaspekte', 1), ('gestaltung', 1), ('von', 1), ('führungsinformationssystemen', 1), ('eine', 1), ('zentralen', 1), ('aufgaben', 1), ('bundeswehr', 1), ('bei', 1), ('organisationen', 1), ('mit', 1), ('sicherheitsaufgaben', 1)]
[('systematic', 2), ('reuse', 2), ('risky', 2), ('trying', 2), ('lfimplementing', 1), ('even', 1), ('unsuccessfully', 1), ('cost', 1), ('precious', 1), ('time', 1), ('resource', 1), ('make', 1), ('management', 1), ('sceptical', 1), ('competitor', 1), ('successfully', 1)]
[('web', 3), ('sap', 2), ('dynpro', 1), ('abap', 1), ('netweaver', 1), ('application', 1), ('user', 1), ('interface', 1), ('tool', 1), ('enables', 1), ('programming', 1), ('connected', 1), ('system', 1), ('main', 1), ('focus', 1), ('author', 1), ('create', 1), ('book', 1), ('based', 1), ('practical', 1), ('experience', 1), ('chapter', 1), ('includes', 1), ('example', 1), ('lead', 1)]
[('business', 2), ('process', 2), ('currently', 1), ('see', 1), ('variety', 1), ('tool', 1), ('technique', 1), ('specifying', 1), ('implementing', 1), ('problem', 1), ('still', 1), ('gap', 1), ('tension', 1), ('different', 1), ('discipline', 1), ('needed', 1), ('improve', 1), ('execution', 1)]
[('nan', 1)]
[('nan', 1)]
[('collaboration', 1), ('among', 1), ('individual', 1), ('user', 1), ('developer', 1), ('central', 1), ('modern', 1), ('software', 1), ('engineering', 1), ('take', 1), ('many', 1), ('form', 1), ('joint', 1), ('activity', 1), ('solve', 1), ('common', 1), ('problem', 1), ('negotiation', 1), ('resolve', 1), ('conflict', 1), ('creation', 1), ('shared', 1), ('definition', 1), ('social', 1)]
[('nan', 1)]
[('force', 2), ('many', 2), ('widely', 1), ('anticipated', 1), ('autonomous', 1), ('vehicle', 1), ('transformational', 1), ('impact', 1), ('military', 1), ('play', 1), ('key', 1), ('role', 1), ('future', 1), ('structure', 1), ('result', 1), ('task', 1), ('already', 1), ('identified', 1), ('unmanned', 1), ('system', 1)]
[('fuzzy', 2), ('cognitive', 2), ('map', 1), ('fcm', 1), ('constitute', 1), ('model', 1), ('form', 1), ('directed', 1), ('graph', 1), ('consisting', 1), ('basic', 1), ('element', 1), ('node', 1), ('basically', 1), ('correspond', 1), ('concept', 1), ('bearing', 1), ('different', 1), ('state', 1), ('activation', 1), ('depending', 1), ('knowledge', 1)]
[('simulation', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('system', 1), ('asia', 1), ('held', 1), ('kitakyushu', 1), ('japan', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('hpclatam', 1), ('clcar', 1), ('joint', 1), ('latin', 1), ('american', 1), ('high', 1), ('performance', 1), ('computing', 1), ('conference', 1), ('carla', 1), ('held', 1), ('valparaiso', 1), ('chile', 1), ('october', 1), ('revised', 1), ('full', 1), ('presented', 1)]
[('china', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('workshop', 1), ('machine', 1), ('translation', 1), ('cwmt', 1), ('held', 1), ('macau', 1), ('november', 1), ('revised', 1), ('full', 1), ('english', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('knowledge', 3), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('joint', 1), ('conference', 1), ('discovery', 1), ('engineering', 1), ('management', 1), ('ic', 1), ('held', 1), ('vilamoura', 1), ('portugal', 1), ('september', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('soft', 1), ('computing', 1), ('intelligent', 1), ('system', 1), ('information', 1), ('technology', 1), ('icsiit', 1), ('held', 1), ('bali', 1), ('indonesia', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('standard', 1), ('conference', 1), ('trustworthy', 1), ('computing', 1), ('service', 1), ('isctcs', 1), ('held', 1), ('beijing', 1), ('china', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('der', 2), ('computational', 1), ('intelligence', 1), ('ci', 1), ('ist', 1), ('ein', 1), ('teilgebiet', 1), ('künstlichen', 1), ('intelligenz', 1), ('da', 1), ('biologisch', 1), ('inspirierte', 1), ('modelle', 1), ('algorithmisch', 1), ('umsetzt', 1), ('orientieren', 1), ('sich', 1), ('evolutionäre', 1), ('algorithmen', 1), ('darwinistischen', 1), ('evolution', 1), ('und', 1), ('suchen', 1), ('mit', 1), ('hilfe', 1), ('von', 1)]
[('die', 2), ('multicore', 1), ('prozessoren', 1), ('mit', 1), ('zwei', 1), ('oder', 1), ('mehreren', 1), ('prozessorkernen', 1), ('erhöhen', 1), ('leistungsfähigkeit', 1), ('aller', 1), ('computer', 1), ('immens', 1), ('doch', 1), ('nur', 1), ('spezielle', 1), ('techniken', 1), ('gewährleisten', 1), ('tatsächlich', 1), ('schnellere', 1), ('programmbearbeitung', 1), ('und', 1), ('optimale', 1), ('nutzung', 1), ('dieser', 1)]
[('und', 2), ('die', 2), ('der', 2), ('für', 2), ('da', 1), ('werk', 1), ('bietet', 1), ('einen', 1), ('umfassenden', 1), ('überblick', 1), ('über', 1), ('computernetzwerke', 1), ('wichtigsten', 1), ('technologien', 1), ('autor', 1), ('orientiert', 1), ('sich', 1), ('dabei', 1), ('schichtenmodell', 1), ('internationalen', 1), ('organisation', 1), ('normung', 1), ('behandelt', 1), ('jede', 1), ('schicht', 1), ('jeweiligen', 1)]
[('service', 3), ('book', 1), ('bridge', 1), ('gap', 1), ('business', 1), ('proposes', 1), ('original', 1), ('life', 1), ('cycle', 1), ('view', 1), ('modern', 1), ('industry', 1), ('major', 1), ('solution', 1), ('architecture', 1), ('technology', 1), ('research', 1), ('method', 1), ('discussed', 1), ('lifecycle', 1)]
[('pattern', 2), ('die', 2), ('für', 2), ('kompakt', 1), ('fasst', 1), ('wichtigsten', 1), ('entwurfsmuster', 1), ('zusammen', 1), ('sie', 1), ('softwareentwicklung', 1), ('benötigen', 1), ('softwareentwickler', 1), ('und', 1), ('architekten', 1), ('finden', 1), ('darin', 1), ('effektiv', 1), ('anwendbare', 1), ('lösungen', 1), ('tägliche', 1), ('entwurfsprobleme', 1), ('nbsp', 1), ('da', 1), ('buch', 1), ('gliedert', 1)]
[('sich', 2), ('die', 2), ('programmierung', 2), ('modula', 2), ('den', 2), ('diesis', 1), ('buch', 1), ('dessen', 1), ('titel', 1), ('einführung', 1), ('und', 1), ('mit', 1), ('verbinden', 1), ('wendet', 1), ('sowohl', 1), ('programmieranfänger', 1), ('al', 1), ('auch', 1), ('erfahrenen', 1), ('programmierer', 1), ('der', 1), ('sprache', 1), ('erlernen', 1)]
[('die', 3), ('und', 2), ('gelungene', 1), ('mischung', 1), ('au', 1), ('klarer', 1), ('didaktik', 1), ('fundiertem', 1), ('grundlagenwissen', 1), ('professionellen', 1), ('anwenderbeispielen', 1), ('ermöglicht', 1), ('ihnen', 1), ('einen', 1), ('sicheren', 1), ('zügigen', 1), ('einstieg', 1), ('multimedia', 1), ('entwicklung', 1), ('aktualisierte', 1), ('neuauflage', 1), ('konzentriert', 1), ('sich', 1)]
[('nan', 1)]
[('lnicst', 2), ('three', 1), ('volume', 1), ('set', 1), ('constitute', 1), ('refereed', 1), ('proceeding', 1), ('ofthe', 1), ('second', 1), ('international', 1), ('conference', 1), ('computer', 1), ('science', 1), ('informationtechnology', 1), ('ccsit', 1), ('held', 1), ('bangalore', 1), ('india', 1), ('january', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('heterogeneous', 1), ('networking', 1), ('quality', 1), ('reliability', 1), ('security', 1), ('robustness', 1), ('qshine', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('along', 1)]
[('conference', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('ehealth', 1), ('held', 1), ('málaga', 1), ('spain', 1), ('november', 1), ('revised', 1), ('full', 1), ('presented', 1), ('along', 1), ('short', 1), ('carefully', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('mobile', 1), ('computing', 1), ('application', 1), ('service', 1), ('mobicase', 1), ('held', 1), ('santa', 1), ('clara', 1), ('ca', 1), ('usa', 1), ('october', 1)]
[('conference', 2), ('mobilight', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('icst', 1), ('mobile', 1), ('lightweight', 1), ('wireless', 1), ('system', 1), ('held', 1), ('bilbao', 1), ('spain', 1), ('number', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('mobile', 1), ('wireless', 1), ('middleware', 1), ('operating', 1), ('system', 1), ('application', 1), ('mobilware', 1), ('held', 1), ('london', 1), ('uk', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('icst', 1), ('conference', 1), ('tridentcom', 1), ('held', 1), ('thessanoliki', 1), ('greece', 1), ('june', 1), ('numerous', 1), ('submission', 1), ('program', 1), ('committee', 1), ('finally', 1), ('selected', 1), ('full', 1), ('cover', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('context', 1), ('aware', 1), ('system', 1), ('application', 1), ('iccasa', 1), ('held', 1), ('ho', 1), ('chi', 1), ('minh', 1), ('city', 1), ('vietnam', 1), ('november', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('volume', 2), ('present', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('icst', 1), ('conference', 1), ('security', 1), ('privacy', 1), ('communication', 1), ('network', 1), ('securecomm', 1), ('held', 1), ('padua', 1), ('italy', 1), ('september', 1), ('revised', 1), ('paper', 1), ('included', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('fourth', 1), ('international', 1), ('conference', 1), ('mobile', 1), ('network', 1), ('management', 1), ('monami', 1), ('held', 1), ('hamburg', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('icst', 1), ('mobile', 1), ('ubiquitous', 1), ('system', 1), ('computing', 1), ('networking', 1), ('service', 1), ('mobiquitous', 1), ('held', 1), ('beijing', 1), ('china', 1), ('denmark', 1)]
[('wikipedia', 1), ('flickr', 1), ('tube', 1), ('facebook', 1), ('linkedin', 1), ('example', 1), ('large', 1), ('community', 1), ('built', 1), ('database', 1), ('although', 1), ('quite', 1), ('diverse', 1), ('purpose', 1), ('collaboration', 1), ('pattern', 1), ('usage', 1), ('dissemination', 1), ('grow', 1), ('introducing', 1), ('new', 1), ('semantics', 1)]
[('lean', 3), ('development', 2), ('software', 2), ('book', 1), ('illustrates', 1), ('goal', 1), ('oriented', 1), ('automated', 1), ('measurement', 1), ('used', 1), ('create', 1), ('organization', 1), ('facilitate', 1), ('demonstrating', 1), ('practical', 1), ('implementation', 1)]
[('reality', 4), ('virtual', 2), ('augmented', 2), ('amp', 1), ('industry', 1), ('collect', 1), ('proceeding', 1), ('nd', 1), ('sino', 1), ('german', 1), ('workshop', 1), ('topic', 1), ('held', 1), ('shanghai', 1), ('april', 1), ('paper', 1), ('focus', 1), ('latest', 1), ('vr', 1), ('ar', 1)]
[('quality', 2), ('based', 2), ('content', 2), ('delivery', 2), ('internet', 2), ('mainly', 1), ('discus', 1), ('methodology', 1), ('environment', 1), ('network', 1), ('becoming', 1), ('intelligent', 1), ('active', 1), ('researcher', 1), ('talking', 1)]
[('software', 2), ('paradigm', 1), ('shift', 1), ('taking', 1), ('place', 1), ('computer', 1), ('science', 1), ('generation', 1), ('ago', 1), ('learned', 1), ('abstract', 1), ('hardware', 1), ('abstracting', 1), ('serviceware', 1), ('implemented', 1), ('service', 1), ('oriented', 1), ('computing', 1), ('yet', 1), ('ensuring', 1)]
[('nan', 1)]
[('nan', 1)]
[('present', 2), ('book', 1), ('state', 1), ('art', 1), ('simulation', 1), ('supercomputer', 1), ('leading', 1), ('researcher', 1), ('result', 1), ('achieved', 1), ('system', 1), ('gauss', 1), ('allianz', 1), ('association', 1), ('high', 1), ('performance', 1), ('computing', 1), ('center', 1), ('germany', 1), ('report', 1), ('cover', 1), ('field', 1)]
[('nan', 1)]
[('business', 2), ('process', 2), ('modeling', 2), ('brief', 1), ('introduction', 1), ('topic', 1), ('book', 1), ('offer', 1), ('quick', 1), ('start', 1), ('model', 1), ('based', 1), ('engineering', 1), ('foundation', 1), ('language', 1), ('used', 1), ('conveyed', 1), ('meaningful', 1), ('example', 1)]
[('die', 4), ('dem', 2), ('betrieb', 2), ('von', 2), ('gesellschaft', 1), ('für', 1), ('informatik', 1), ('trat', 1), ('mit', 1), ('workshop', 1), ('rechenzentren', 1), ('den', 1), ('grossen', 1), ('kreis', 1), ('firmen', 1), ('behörden', 1), ('lehr', 1), ('und', 1), ('forschungseinrichtungen', 1), ('heran', 1), ('datenverarbeitungs', 1), ('anlage', 1), ('betreiben', 1), ('fragen', 1), ('sich', 1), ('au', 1)]
[('fault', 2), ('diagnosis', 2), ('comprehensive', 1), ('work', 1), ('present', 1), ('status', 1), ('likely', 1), ('development', 1), ('emerging', 1), ('discipline', 1), ('modern', 1), ('control', 1), ('engineering', 1), ('cover', 1), ('fundamental', 1), ('model', 1), ('based', 1), ('wide', 1), ('context', 1), ('providing', 1), ('good', 1), ('introduction', 1)]
[('für', 3), ('und', 2), ('system', 2), ('fundiertes', 1), ('know', 1), ('einsteiger', 1), ('administratoren', 1), ('verständlich', 1), ('klar', 1), ('strukturiert', 1), ('vermittelt', 1), ('der', 1), ('grundlagenband', 1), ('alle', 1), ('wesentlichen', 1), ('aspekte', 1), ('zum', 1), ('management', 1), ('eines', 1), ('solaris', 1), ('sowohl', 1), ('sparc', 1), ('al', 1), ('auch', 1), ('pc', 1), ('da', 1), ('spektrum', 1), ('reicht', 1)]
[('constraint', 2), ('design', 2), ('geometric', 1), ('programming', 1), ('increase', 1), ('flexibility', 1), ('cad', 1), ('specification', 1), ('lead', 1), ('new', 1), ('conceptual', 1), ('paradigm', 1), ('volume', 1), ('feature', 1), ('collection', 1), ('work', 1), ('leading', 1), ('researcher', 1), ('developing', 1), ('various', 1), ('aspect', 1), ('based', 1)]
[('der', 2), ('begrifflichen', 2), ('wissensverarbeitung', 2), ('und', 2), ('diesis', 1), ('buch', 1), ('stellt', 1), ('methoden', 1), ('vor', 1), ('präsentiert', 1), ('anwendungen', 1), ('au', 1), ('unterschiedlichen', 1), ('praxisfeldern', 1), ('methodenteil', 1), ('wird', 1), ('moderne', 1), ('techniken', 1), ('datenanalyse', 1), ('eingeführt', 1)]
[('dynamic', 2), ('module', 2), ('library', 2), ('mupad', 2), ('package', 2), ('special', 1), ('kind', 1), ('machine', 1), ('code', 1), ('loaded', 1), ('run', 1), ('time', 1), ('allow', 1), ('user', 1), ('integrate', 1), ('simple', 1), ('function', 1), ('complete', 1), ('software', 1), ('use', 1)]
[('system', 1), ('language', 1), ('theoretic', 1), ('model', 1), ('developmentalbiology', 1), ('wereintroduced', 1), ('aristid', 1), ('lindenmayer', 1), ('proved', 1), ('among', 1), ('beautifulexamples', 1), ('interdisciplinary', 1), ('science', 1), ('work', 1), ('onearea', 1), ('induces', 1)]
[('book', 2), ('important', 2), ('assembles', 1), ('problem', 1), ('solution', 1), ('theoretical', 1), ('computer', 1), ('science', 1), ('computability', 1), ('logic', 1), ('circuit', 1), ('theory', 1), ('complexity', 1), ('present', 1), ('result', 1), ('complete', 1), ('proof', 1), ('understandable', 1)]
[('neural', 2), ('network', 2), ('state', 1), ('art', 1), ('view', 1), ('recent', 1), ('development', 1), ('use', 1), ('artificial', 1), ('analysing', 1), ('remotely', 1), ('sensed', 1), ('satellite', 1), ('data', 1), ('new', 1), ('form', 1), ('computational', 1), ('paradigm', 1), ('appear', 1), ('suited', 1), ('many', 1), ('task', 1), ('involved', 1)]
[('uniquely', 1), ('authoritative', 1), ('comprehensive', 1), ('handbook', 1), ('first', 1), ('cover', 1), ('vast', 1), ('field', 1), ('formal', 1), ('language', 1), ('traditional', 1), ('recent', 1), ('application', 1), ('diverse', 1), ('area', 1), ('linguistics', 1), ('developmental', 1), ('biology', 1), ('computer', 1)]
[('scientific', 2), ('important', 1), ('issue', 1), ('visualization', 1), ('utilization', 1), ('broad', 1), ('bandwidth', 1), ('human', 1), ('sensory', 1), ('system', 1), ('steering', 1), ('interpreting', 1), ('complex', 1), ('process', 1), ('simulation', 1), ('involving', 1), ('voluminous', 1), ('data', 1), ('set', 1), ('across', 1), ('diverse', 1)]
[('von', 3), ('der', 2), ('über', 1), ('den', 1), ('sinn', 1), ('normung', 1), ('programmiersprachen', 1), ('gehen', 1), ('die', 1), ('meinungen', 1), ('weit', 1), ('auseinander', 1), ('und', 1), ('reichen', 1), ('nutzlos', 1), ('bi', 1), ('unerlässlich', 1), ('sicher', 1), ('ist', 1), ('heute', 1), ('daß', 1), ('zur', 1), ('sicherstellung', 1), ('portabilität', 1), ('programmen', 1), ('zwischen', 1), ('produkten', 1), ('verschiedener', 1), ('hersteller', 1)]
[('und', 3), ('photo', 2), ('die', 1), ('digitale', 1), ('bildkommunikation', 1), ('revolutioniert', 1), ('alle', 1), ('bereiche', 1), ('der', 1), ('wirtschaft', 1), ('kultur', 1), ('cd', 1), ('digitaler', 1), ('farbdruck', 1), ('eröffnen', 1), ('ihnen', 1), ('bei', 1), ('ihrer', 1), ('professionellen', 1), ('arbeit', 1), ('mit', 1), ('computergraphiken', 1), ('eine', 1), ('fülle', 1), ('faszinierender', 1), ('neuer', 1)]
[('nan', 1)]
[('language', 3), ('technology', 2), ('white', 1), ('paper', 1), ('part', 1), ('series', 1), ('promotes', 1), ('knowledge', 1), ('potential', 1), ('address', 1), ('educator', 1), ('journalist', 1), ('politician', 1), ('community', 1), ('others', 1), ('availability', 1), ('use', 1), ('europe', 1)]
[('die', 2), ('der', 2), ('bereits', 1), ('seit', 1), ('jahren', 1), ('gibt', 1), ('e', 1), ('technik', 1), ('automatischen', 1), ('vermitt', 1), ('lung', 1), ('von', 1), ('nachrichten', 1), ('ein', 1), ('beispiel', 1), ('für', 1), ('den', 1), ('erreichten', 1), ('hohen', 1), ('leistungs', 1), ('stand', 1), ('bietet', 1), ('bundesrepublik', 1), ('deutschland', 1), ('selbstwählverkehr', 1), ('ist', 1), ('inländischen', 1), ('fernsprechnetz', 1)]
[('nan', 1)]
[('international', 2), ('conference', 1), ('advance', 1), ('computing', 1), ('information', 1), ('technology', 1), ('acity', 1), ('provides', 1), ('excellent', 1), ('forum', 1), ('academic', 1), ('professional', 1), ('sharing', 1), ('knowledge', 1), ('result', 1), ('theory', 1), ('methodology', 1), ('application', 1)]
[('multimedia', 2), ('system', 2), ('aleksander', 1), ('zgrzywa', 1), ('kazimierz', 1), ('choroś', 1), ('andrzej', 1), ('siemiński', 1), ('ed', 1), ('internet', 1), ('theory', 1), ('practice', 1), ('last', 1), ('year', 1), ('witnessed', 1), ('rapid', 1), ('development', 1), ('network', 1), ('information', 1), ('even', 1)]
[('art', 2), ('interdisciplinary', 1), ('volume', 1), ('introduces', 1), ('new', 1), ('theory', 1), ('idea', 1), ('creativity', 1), ('perspective', 1), ('science', 1), ('featuring', 1), ('contribution', 1), ('leading', 1), ('researcher', 1), ('theorist', 1), ('artist', 1), ('working', 1), ('artificial', 1), ('intelligence', 1), ('generative', 1)]
[('information', 2), ('system', 2), ('new', 2), ('type', 2), ('database', 1), ('technology', 1), ('rapidly', 1), ('evolving', 1), ('several', 1), ('direction', 1), ('past', 1), ('year', 1), ('kind', 1), ('data', 1), ('application', 1), ('support', 1), ('raise', 1), ('diverse', 1), ('challenge', 1)]
[('classical', 2), ('recent', 1), ('year', 1), ('growing', 1), ('interest', 1), ('extend', 1), ('method', 1), ('data', 1), ('analysis', 1), ('aim', 1), ('allow', 1), ('flexible', 1), ('modeling', 1), ('phenomenon', 1), ('uncertainty', 1), ('imprecision', 1), ('ignorance', 1), ('extension', 1), ('probability', 1), ('theory', 1)]
[('book', 1), ('follow', 1), ('predecessor', 1), ('automation', 1), ('communication', 1), ('cybernetics', 1), ('science', 1), ('engineering', 1), ('includes', 1), ('representative', 1), ('selection', 1), ('scientific', 1), ('publication', 1), ('published', 1), ('various', 1)]
[('autonomous', 2), ('intelligent', 1), ('system', 1), ('emerged', 1), ('key', 1), ('enabler', 1), ('creation', 1), ('new', 1), ('paradigm', 1), ('service', 1), ('humankind', 1), ('seen', 1), ('recent', 1), ('advancement', 1), ('car', 1), ('licensed', 1), ('driving', 1), ('street', 1), ('unmanned', 1), ('aerial', 1), ('underwater', 1)]
[('nan', 1)]
[('edited', 1), ('book', 1), ('includes', 1), ('extended', 1), ('revised', 1), ('version', 1), ('set', 1), ('selected', 1), ('paper', 1), ('first', 1), ('international', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('icpram', 1), ('held', 1), ('vilamoura', 1), ('algarve', 1), ('portugal', 1), ('february', 1), ('sponsored', 1)]
[('software', 2), ('dependence', 1), ('quality', 1), ('area', 1), ('life', 1), ('make', 1), ('engineering', 1), ('key', 1), ('discipline', 1), ('today', 1), ('society', 1), ('thus', 1), ('last', 1), ('decade', 1), ('increasingly', 1), ('recognized', 1), ('particularly', 1), ('important', 1), ('demonstrate', 1)]
[('cryptology', 2), ('millennium', 1), ('secret', 1), ('science', 1), ('rapidly', 1), ('gaining', 1), ('practical', 1), ('importance', 1), ('protection', 1), ('communication', 1), ('channel', 1), ('database', 1), ('software', 1), ('beside', 1), ('role', 1), ('computerized', 1), ('information', 1), ('system', 1), ('finding', 1)]
[('biological', 2), ('evolution', 1), ('complexity', 1), ('characterize', 1), ('artificial', 1), ('life', 1), ('direct', 1), ('modeling', 1), ('process', 1), ('creation', 1), ('population', 1), ('interacting', 1), ('entity', 1), ('complex', 1), ('behavior', 1), ('emerge', 1), ('evolve', 1), ('edited', 1), ('book', 1)]
[('book', 2), ('software', 2), ('variety', 1), ('algoritbms', 1), ('described', 1), ('interest', 1), ('everyone', 1), ('writes', 1), ('graphic', 1), ('hab', 1), ('written', 1), ('programmer', 1), ('intermediate', 1), ('level', 1), ('ab', 1), ('experienced', 1), ('engineer', 1)]
[('nan', 1)]
[('learning', 2), ('topic', 1), ('preference', 1), ('new', 1), ('branch', 1), ('machine', 1), ('data', 1), ('mining', 1), ('attracted', 1), ('considerable', 1), ('attention', 1), ('artificial', 1), ('intelligence', 1), ('research', 1), ('previous', 1), ('year', 1), ('involves', 1), ('observation', 1), ('reveal', 1), ('information', 1)]
[('software', 3), ('market', 2), ('standardization', 1), ('empowered', 1), ('industry', 1), ('substantially', 1), ('scale', 1), ('development', 1), ('provide', 1), ('affordable', 1), ('broad', 1), ('often', 1), ('address', 1), ('smaller', 1), ('segment', 1), ('need', 1), ('wish', 1), ('individual', 1)]
[('data', 2), ('mining', 2), ('field', 1), ('made', 1), ('significant', 1), ('far', 1), ('reaching', 1), ('advance', 1), ('past', 1), ('three', 1), ('decade', 1), ('potential', 1), ('power', 1), ('solving', 1), ('complex', 1), ('problem', 1), ('successfully', 1), ('applied', 1), ('diverse', 1), ('area', 1), ('business', 1)]
[('many', 1), ('important', 1), ('planning', 1), ('decision', 1), ('society', 1), ('business', 1), ('depend', 1), ('proper', 1), ('knowledge', 1), ('correct', 1), ('understanding', 1), ('movement', 1), ('transportation', 1), ('logistics', 1), ('biology', 1), ('life', 1), ('science', 1), ('today', 1), ('widespread', 1), ('use', 1), ('mobile', 1), ('phone', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('research', 1), ('workshop', 1), ('cognitive', 1), ('model', 1), ('intelligent', 1), ('environment', 1), ('learning', 1), ('programming', 1), ('held', 1), ('near', 1), ('genova', 1), ('italy', 1), ('march', 1)]
[('der', 2), ('diesis', 1), ('buch', 1), ('stellt', 1), ('die', 1), ('elementaren', 1), ('mathematischen', 1), ('aspekte', 1), ('quanteninformatik', 1), ('strikten', 1), ('formalismus', 1), ('mathematik', 1), ('dar', 1), ('nbsp', 1), ('dem', 1), ('leser', 1), ('wird', 1), ('zunächst', 1), ('da', 1), ('erforderliche', 1), ('mathematische', 1), ('grundwissen', 1), ('bereit', 1), ('gestellt', 1), ('mit', 1), ('diesem', 1), ('instrumentarium', 1)]
[('book', 1), ('onn', 1), ('shehory', 1), ('arnon', 1), ('sturm', 1), ('together', 1), ('contributor', 1), ('introduce', 1), ('reader', 1), ('various', 1), ('facet', 1), ('agent', 1), ('oriented', 1), ('software', 1), ('engineering', 1), ('aose', 1), ('provide', 1), ('selected', 1), ('collection', 1), ('state', 1), ('art', 1), ('finding', 1), ('combine', 1)]
[('nan', 1)]
[('book', 2), ('research', 2), ('robot', 2), ('examines', 1), ('distinct', 1), ('strand', 1), ('autonomous', 1), ('evolutionary', 1), ('robotics', 1), ('humanoid', 1), ('converging', 1), ('valuable', 1), ('researcher', 1), ('postgraduate', 1), ('student', 1), ('working', 1), ('area', 1)]
[('und', 3), ('de', 2), ('die', 2), ('sicherheitsmanagement', 1), ('wird', 1), ('mit', 1), ('hilfe', 1), ('vorliegenden', 1), ('handbuchs', 1), ('der', 1), ('software', 1), ('ariadne', 1), ('sm', 1), ('effizient', 1), ('kostengünstig', 1), ('autoren', 1), ('beschreiben', 1), ('digitalisierung', 1), ('expertenwissens', 1), ('von', 1), ('unfalluntersuchern', 1), ('dessen', 1), ('maschinelle', 1), ('verarbeitung', 1)]
[('book', 1), ('introduces', 1), ('latest', 1), ('progress', 1), ('six', 1), ('degree', 1), ('freedom', 1), ('dof', 1), ('haptic', 1), ('rendering', 1), ('focus', 1), ('new', 1), ('approach', 1), ('simulating', 1), ('force', 1), ('torque', 1), ('feedback', 1), ('performing', 1), ('task', 1), ('require', 1), ('dexterous', 1), ('manipulation', 1), ('skill', 1), ('major', 1)]
[('der', 3), ('bibliothek', 2), ('die', 2), ('und', 2), ('für', 2), ('nbsp', 2), ('dieser', 1), ('band', 1), ('mediengestaltung', 1), ('behandelt', 1), ('konzeption', 1), ('gestaltung', 1), ('von', 1), ('webanwendungen', 1), ('mit', 1), ('fokus', 1), ('auf', 1), ('screen', 1), ('interfacedesign', 1), ('mobile', 1), ('endgeräte', 1), ('diese', 1), ('wurden', 1), ('themen', 1), ('de', 1), ('kompendiums', 1)]
[('die', 3), ('sie', 2), ('designgeschichte', 2), ('der', 2), ('tauchen', 1), ('mit', 1), ('diesem', 1), ('buch', 1), ('tief', 1), ('einsie', 1), ('sind', 1), ('auf', 1), ('suche', 1), ('nach', 1), ('einem', 1), ('soliden', 1), ('nachschlagewerk', 1), ('über', 1), ('möchten', 1), ('ihr', 1), ('verständnis', 1), ('für', 1), ('entwicklungshintergründe', 1), ('stile', 1), ('und', 1), ('epochen', 1), ('sensibilisieren', 1)]
[('die', 2), ('nbsp', 2), ('droht', 1), ('ferngesteuerte', 1), ('gesellschaft', 1), ('diesis', 1), ('buch', 1), ('greift', 1), ('da', 1), ('weithin', 1), ('diskutierte', 1), ('zum', 1), ('jahreswechsel', 1), ('veröffentlichte', 1), ('digital', 1), ('manifest', 1), ('auf', 1), ('und', 1), ('führt', 1), ('debatte', 1), ('entlang', 1), ('vielfältiger', 1), ('themenlinien', 1), ('weiter', 1), ('e', 1), ('geht', 1), ('hierbei', 1), ('um', 1), ('nicht', 1)]
[('und', 4), ('jahren', 2), ('hat', 1), ('sich', 1), ('den', 1), ('letzten', 1), ('rasant', 1), ('entwickelt', 1), ('haben', 1), ('viele', 1), ('verbesserungen', 1), ('neue', 1), ('möglichkeiten', 1), ('gebracht', 1), ('vieles', 1), ('vor', 1), ('noch', 1), ('gut', 1), ('empfehlenswert', 1), ('war', 1), ('kann', 1), ('heute', 1), ('besser', 1), ('sicherer', 1), ('gemacht', 1)]
[('book', 1), ('tribute', 1), ('etienne', 1), ('kerre', 1), ('occasion', 1), ('retirement', 1), ('october', 1), ('st', 1), ('active', 1), ('year', 1), ('field', 1), ('fuzzy', 1), ('set', 1), ('theory', 1), ('gather', 1), ('contribution', 1), ('researcher', 1), ('close', 1), ('way', 1)]
[('book', 1), ('start', 1), ('basic', 1), ('concept', 1), ('fuzzy', 1), ('set', 1), ('progress', 1), ('normative', 1), ('view', 1), ('possibility', 1), ('distribution', 1), ('owa', 1), ('operator', 1), ('multiple', 1), ('criterion', 1), ('decision', 1), ('five', 1), ('application', 1), ('build', 1), ('experience', 1), ('solving', 1), ('complex', 1)]
[('web', 2), ('mining', 2), ('usage', 1), ('fast', 1), ('moving', 1), ('hugely', 1), ('important', 1), ('field', 1), ('study', 1), ('new', 1), ('springer', 1), ('text', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('data', 1), ('webkdd', 1), ('held', 1), ('philadelphia', 1), ('usa', 1)]
[('hybrid', 2), ('complete', 1), ('online', 1), ('file', 1), ('update', 1), ('important', 1), ('new', 1), ('volume', 1), ('cover', 1), ('many', 1), ('area', 1), ('information', 1), ('technology', 1), ('advancing', 1), ('book', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1)]
[('nan', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('ifip', 1), ('wg', 1), ('conference', 1), ('history', 1), ('nordic', 1), ('computing', 1), ('hinc', 1), ('held', 1), ('stockholm', 1), ('sweden', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('keynote', 1), ('address', 1)]
[('digital', 2), ('forensics', 2), ('electronic', 2), ('deal', 1), ('acquisition', 1), ('preservation', 1), ('examination', 1), ('analysis', 1), ('presentation', 1), ('evidence', 1), ('networked', 1), ('computing', 1), ('wireless', 1), ('communication', 1), ('portable', 1), ('device', 1), ('expanded', 1), ('role', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('tc', 1), ('international', 1), ('information', 1), ('security', 1), ('conference', 1), ('sec', 1), ('held', 1), ('heraklion', 1), ('crete', 1), ('greece', 1), ('june', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('nan', 1)]
[('die', 2), ('unified', 1), ('modeling', 1), ('language', 1), ('uml', 1), ('hat', 1), ('sich', 1), ('zur', 1), ('dominanten', 1), ('modellierungssprache', 1), ('entwickelt', 1), ('al', 1), ('weiterer', 1), ('trend', 1), ('ist', 1), ('zu', 1), ('beobachten', 1), ('das', 1), ('agile', 1), ('methoden', 1), ('immer', 1), ('breiter', 1), ('eingesetzt', 1), ('werden', 1), ('der', 1), ('band', 1), ('bietet', 1), ('eine', 1), ('einführung', 1), ('entwicklungsmethodik', 1)]
[('eine', 2), ('ist', 1), ('objektorientierte', 1), ('programmiersprache', 1), ('neben', 1), ('der', 1), ('objektorientierung', 1), ('gewinnt', 1), ('aber', 1), ('die', 1), ('generische', 1), ('programmierung', 1), ('zunehmend', 1), ('bedeutung', 1), ('da', 1), ('buch', 1), ('liefert', 1), ('fundierte', 1), ('darstellung', 1), ('de', 1), ('modernen', 1), ('programmdesigns', 1), ('gemäß', 1), ('dem', 1), ('ansi', 1)]
[('der', 3), ('die', 2), ('ausgehend', 1), ('von', 1), ('theorie', 1), ('und', 1), ('den', 1), ('protokollen', 1), ('quantenkryptografie', 1), ('werden', 1), ('dem', 1), ('band', 1), ('servicequalitäten', 1), ('vorgestellt', 1), ('angesichts', 1), ('aktuellen', 1), ('technischen', 1), ('möglichkeiten', 1), ('erreichbar', 1), ('sind', 1), ('unter', 1), ('berücksichtigung', 1), ('wenig', 1), ('beachteter', 1)]
[('und', 2), ('von', 2), ('wie', 2), ('moderne', 1), ('mikroprozessoren', 1), ('darauf', 1), ('basierende', 1), ('rechnersysteme', 1), ('überblick', 1), ('über', 1), ('gängige', 1), ('prozessoren', 1), ('grundlegende', 1), ('eigenschaften', 1), ('befehlssätzen', 1), ('hinweise', 1), ('die', 1), ('leistung', 1), ('computern', 1), ('beurteilt', 1), ('werden', 1), ('kann', 1), ('schwerpunkt', 1), ('techniken', 1)]
[('für', 2), ('und', 2), ('stellen', 2), ('transitionennetze', 2), ('petri', 1), ('netze', 1), ('sind', 1), ('da', 1), ('besten', 1), ('untersuchte', 1), ('modell', 1), ('parallele', 1), ('rechnungen', 1), ('diesem', 1), ('buch', 1), ('werden', 1), ('erstmals', 1), ('alle', 1), ('wichtigen', 1), ('fragen', 1), ('zur', 1), ('entscheidbarkeit', 1), ('klassische', 1), ('zusammengestellt', 1)]
[('nan', 1)]
[('information', 2), ('together', 2), ('today', 1), ('complex', 1), ('intensive', 1), ('problem', 1), ('often', 1), ('require', 1), ('work', 1), ('mostly', 1), ('task', 1), ('go', 1), ('far', 1), ('beyond', 1), ('simply', 1), ('searching', 1), ('include', 1), ('lookup', 1), ('sharing', 1), ('synthesis', 1), ('decision', 1), ('making', 1), ('addition', 1)]
[('zu', 4), ('requirement', 1), ('engineering', 1), ('befasst', 1), ('sich', 1), ('mit', 1), ('vorgehensweisen', 1), ('zur', 1), ('präzisierung', 1), ('der', 1), ('problemstellung', 1), ('beginn', 1), ('einer', 1), ('systementwicklung', 1), ('ziel', 1), ('ist', 1), ('e', 1), ('die', 1), ('qualität', 1), ('verbessern', 1), ('und', 1), ('fehlverhalten', 1), ('vermeiden', 1), ('um', 1), ('entwicklungskosten', 1), ('senken', 1), ('da', 1), ('buch', 1)]
[('nan', 1)]
[('lnai', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('based', 1), ('intelligent', 1), ('information', 1), ('engineering', 1), ('system', 1), ('kes', 1), ('held', 1), ('bournemouth', 1), ('uk', 1), ('october', 1)]
[('ranking', 2), ('application', 2), ('context', 1), ('aware', 1), ('important', 1), ('task', 1), ('many', 1), ('recommender', 1), ('system', 1), ('item', 1), ('product', 1), ('movie', 1), ('search', 1), ('engine', 1), ('webpage', 1), ('ranked', 1), ('global', 1), ('always', 1)]
[('web', 3), ('technology', 2), ('book', 1), ('address', 1), ('major', 1), ('issue', 1), ('data', 1), ('management', 1), ('related', 1), ('infrastructure', 1), ('methodology', 1), ('technique', 1), ('application', 1), ('implementation', 1), ('emphasis', 1), ('placed', 1), ('engineering', 1)]
[('purpose', 1), ('th', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('artificial', 1), ('intelligence', 1), ('networking', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('snpd', 1), ('held', 1), ('july', 1), ('sydney', 1), ('australia', 1), ('bring', 1), ('together', 1), ('scientist', 1), ('engineer', 1), ('computer', 1), ('user', 1)]
[('computer', 1), ('vision', 1), ('science', 1), ('technology', 1), ('making', 1), ('machine', 1), ('see', 1), ('concerned', 1), ('theory', 1), ('design', 1), ('implementation', 1), ('algorithm', 1), ('automatically', 1), ('process', 1), ('visual', 1), ('data', 1), ('recognize', 1), ('object', 1), ('track', 1), ('recover', 1), ('shape', 1)]
[('e', 1), ('war', 1), ('mir', 1), ('eine', 1), ('große', 1), ('freude', 1), ('zusammen', 1), ('mit', 1), ('meinem', 1), ('freund', 1), ('colin', 1), ('hood', 1), ('diesis', 1), ('buch', 1), ('zu', 1), ('schreiben', 1), ('seine', 1), ('reichhaltigen', 1), ('erfahrungen', 1), ('au', 1), ('sehr', 1), ('vielen', 1), ('unterschiedlichen', 1), ('industriezweigen', 1), ('auf', 1), ('unterschied', 1), ('chen', 1), ('ebenen', 1), ('und', 1), ('verschiedenen', 1)]
[('monograph', 1), ('present', 1), ('example', 1), ('best', 1), ('practice', 1), ('combining', 1), ('bioinspired', 1), ('algorithm', 1), ('parallel', 1), ('architecture', 1), ('book', 1), ('includes', 1), ('recent', 1), ('work', 1), ('leading', 1), ('researcher', 1), ('field', 1), ('offer', 1), ('map', 1), ('main', 1), ('path', 1), ('already', 1), ('explored', 1), ('new', 1)]
[('year', 1), ('scientist', 1), ('artificial', 1), ('natural', 1), ('intelligence', 1), ('started', 1), ('study', 1), ('chance', 1), ('discovery', 1), ('method', 1), ('discovering', 1), ('event', 1), ('situation', 1), ('significantly', 1), ('affect', 1), ('decision', 1), ('making', 1), ('partially', 1), ('editor', 1), ('ohsawa', 1), ('abe', 1), ('teaching', 1)]
[('book', 1), ('present', 1), ('advanced', 1), ('software', 1), ('development', 1), ('tool', 1), ('construction', 1), ('deployment', 1), ('governance', 1), ('service', 1), ('oriented', 1), ('architecture', 1), ('soa', 1), ('application', 1), ('novel', 1), ('technical', 1), ('concept', 1), ('paradigm', 1), ('formulated', 1), ('research', 1), ('stage', 1)]
[('medicine', 2), ('recent', 1), ('year', 1), ('seen', 1), ('development', 1), ('significant', 1), ('trend', 1), ('namely', 1), ('adoption', 1), ('traditional', 1), ('chinese', 1), ('practice', 1), ('mainstream', 1), ('allopathic', 1), ('western', 1), ('advent', 1), ('internet', 1), ('broad', 1), ('band', 1), ('network', 1), ('leading', 1)]
[('finanziellen', 2), ('wie', 1), ('jede', 1), ('unternehmensfunktion', 1), ('mus', 1), ('auch', 1), ('die', 1), ('informationstechnik', 1), ('ihren', 1), ('wertbeitrag', 1), ('nachweisen', 1), ('dafür', 1), ('bedarf', 1), ('e', 1), ('eines', 1), ('brückenschlags', 1), ('zwischen', 1), ('grundsätzen', 1), ('de', 1), ('management', 1), ('einerseits', 1), ('und', 1), ('merkmalen', 1), ('der', 1)]
[('die', 2), ('da', 1), ('buch', 1), ('bietet', 1), ('eine', 1), ('knappe', 1), ('praxisorientierte', 1), ('einführung', 1), ('programmierung', 1), ('mit', 1), ('java', 1), ('basierend', 1), ('auf', 1), ('vorlesungen', 1), ('kursen', 1), ('und', 1), ('praktika', 1), ('für', 1), ('ersten', 1), ('beiden', 1), ('semester', 1), ('der', 1), ('ludwig', 1), ('maximilians', 1), ('universität', 1), ('münchen', 1), ('sollen', 1), ('leser', 1), ('möglichst', 1), ('schnell', 1)]
[('folli', 2), ('edited', 1), ('collaboration', 1), ('association', 1), ('logic', 1), ('language', 1), ('information', 1), ('book', 1), ('inaugurates', 1), ('new', 1), ('lnai', 1), ('subline', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('logical', 1), ('aspect', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('tutorial', 1), ('research', 1), ('workshop', 1), ('perception', 1), ('interactive', 1), ('technology', 1), ('pit', 1), ('held', 1), ('kloster', 1), ('irsee', 1), ('germany', 1), ('june', 1), ('present', 1), ('revised', 1), ('full', 1), ('paper', 1), ('together', 1)]
[('book', 2), ('revised', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('international', 1), ('workshop', 1), ('multi', 1), ('agent', 1), ('prima', 1), ('held', 1), ('guilin', 1), ('china', 1), ('august', 1), ('present', 1), ('full', 1), ('short', 1), ('together', 1)]
[('proceeding', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('kunming', 1), ('china', 1), ('august', 1), ('book', 1), ('present', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('chosen', 1), ('reviewed', 1), ('organized', 1), ('topical', 1), ('section', 1), ('fuzzy', 1), ('system', 1)]
[('paper', 2), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('symbolic', 1), ('computation', 1), ('aisc', 1), ('book', 1), ('present', 1), ('revised', 1), ('full', 1), ('together', 1), ('invited', 1), ('organized', 1), ('topical', 1), ('section', 1)]
[('lecture', 2), ('information', 2), ('extraction', 2), ('revised', 1), ('version', 1), ('given', 1), ('summer', 1), ('convention', 1), ('scie', 1), ('held', 1), ('frascati', 1), ('italy', 1), ('july', 1), ('following', 1), ('leading', 1), ('authority', 1), ('field', 1), ('included', 1)]
[('revised', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('scientific', 1), ('track', 1), ('th', 1), ('congress', 1), ('italian', 1), ('association', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('ia', 1), ('held', 1), ('bari', 1), ('italy', 1), ('september', 1), ('long', 1), ('paper', 1), ('short', 1)]
[('uk', 2), ('book', 1), ('present', 1), ('revised', 1), ('full', 1), ('version', 1), ('paper', 1), ('contributed', 1), ('workshop', 1), ('multi', 1), ('agent', 1), ('system', 1), ('ukmas', 1), ('early', 1), ('day', 1), ('ma', 1), ('research', 1), ('community', 1), ('particularly', 1), ('productive', 1), ('numerous', 1), ('key', 1)]
[('problem', 2), ('solving', 2), ('issue', 2), ('agent', 2), ('high', 1), ('communication', 1), ('effort', 1), ('poor', 1), ('result', 1), ('due', 1), ('restricted', 1), ('overview', 1), ('central', 1), ('collaborative', 1), ('work', 1), ('address', 1), ('introducing', 1), ('process', 1), ('melting', 1), ('splitting', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('system', 2), ('advance', 1), ('computer', 1), ('science', 1), ('often', 1), ('arise', 1), ('new', 1), ('idea', 1), ('concept', 1), ('prove', 1), ('advantageous', 1), ('design', 1), ('complex', 1), ('software', 1), ('con', 1), ('ception', 1), ('multi', 1), ('agent', 1), ('particularly', 1), ('attractive', 1), ('prommodul', 1), ('i', 1), ('arity', 1), ('based', 1)]
[('year', 2), ('constrainthandling', 1), ('rule', 1), ('chr', 1), ('languagecameto', 1), ('life', 1), ('morethan', 1), ('ago', 1), ('sincethen', 1), ('ithasbecomeamajordeclarativespeci', 1), ('cationandimplemen', 1), ('tion', 1), ('language', 1), ('constraint', 1), ('based', 1), ('algorithm', 1), ('application', 1), ('recent', 1), ('workshop', 1)]
[('thisyear', 1), ('svolumeofadvancesinwebminingandwebusageanalysiscontains', 1), ('thepostworkshopproceedingsofajointevent', 1), ('thinternationalworkshopon', 1), ('knowledge', 1), ('discovery', 1), ('web', 1), ('webkdd', 1), ('first', 1), ('sna', 1), ('kdd', 1), ('workshop', 1), ('social', 1), ('network', 1), ('analysis', 1)]
[('software', 3), ('aspect', 2), ('oriented', 2), ('development', 2), ('lncs', 1), ('journal', 1), ('transaction', 1), ('devoted', 1), ('facet', 1), ('aosd', 1), ('technique', 1), ('context', 1), ('phase', 1), ('life', 1), ('cycle', 1), ('requirement', 1), ('design', 1)]
[('symbolic', 2), ('th', 1), ('international', 1), ('conference', 1), ('hybrid', 1), ('artificial', 1), ('intelligence', 1), ('system', 1), ('hais', 1), ('name', 1), ('suggests', 1), ('attracted', 1), ('researcher', 1), ('involved', 1), ('developing', 1), ('applying', 1), ('sub', 1), ('technique', 1), ('aimed', 1), ('construction', 1)]
[('epoch', 2), ('half', 1), ('centuryago', 1), ('manypeople', 1), ('realizedthat', 1), ('new', 1), ('history', 1), ('homo', 1), ('sapiens', 1), ('started', 1), ('term', 1), ('information', 1), ('society', 1), ('age', 1), ('seems', 1), ('appropriate', 1), ('name', 1), ('communication', 1), ('without', 1), ('doubt', 1), ('lever', 1), ('conquest', 1)]
[('decision', 2), ('problem', 2), ('procedure', 1), ('algorithm', 1), ('given', 1), ('terminates', 1), ('correct', 1), ('yes', 1), ('answer', 1), ('author', 1), ('focus', 1), ('theory', 1), ('expressive', 1), ('enough', 1), ('model', 1), ('real', 1), ('still', 1), ('decidable', 1), ('specifically', 1), ('book', 1)]
[('der', 3), ('von', 2), ('da', 1), ('vorliegende', 1), ('werk', 1), ('vermittelt', 1), ('ein', 1), ('solides', 1), ('fundament', 1), ('zum', 1), ('verständnis', 1), ('wesentlichen', 1), ('prinzipien', 1), ('funktionsweisen', 1), ('und', 1), ('architekturen', 1), ('echtzeitsystemen', 1), ('dabei', 1), ('werden', 1), ('zunächst', 1), ('die', 1), ('grundlagen', 1), ('automation', 1), ('technischen', 1), ('prozessen', 1), ('mithilfe', 1)]
[('die', 3), ('bessere', 1), ('leistung', 1), ('zu', 1), ('niedrigeren', 1), ('kosten', 1), ('da', 1), ('gilt', 1), ('mittlerweile', 1), ('auch', 1), ('für', 1), ('informationstechnologie', 1), ('unternehmen', 1), ('dabei', 1), ('steigt', 1), ('komplexität', 1), ('der', 1), ('anforderungen', 1), ('weil', 1), ('prozesse', 1), ('weltweit', 1), ('ausgerichtet', 1), ('werden', 1), ('müssen', 1), ('und', 1)]
[('und', 2), ('der', 2), ('welchen', 2), ('web', 1), ('mobile', 1), ('apps', 1), ('können', 1), ('von', 1), ('überall', 1), ('internet', 1), ('aufgerufen', 1), ('werden', 1), ('regel', 1), ('ist', 1), ('nicht', 1), ('vorhersagbar', 1), ('wie', 1), ('viele', 1), ('personen', 1), ('zu', 1), ('zeiten', 1), ('mit', 1), ('kenntnissen', 1), ('welchem', 1), ('verhalten', 1), ('auf', 1), ('eine', 1), ('app', 1), ('zugreifen', 1), ('die', 1), ('anzahl', 1)]
[('die', 2), ('softwareindustrie', 1), ('fordert', 1), ('immer', 1), ('mehr', 1), ('verbesserte', 1), ('methoden', 1), ('zur', 1), ('effektiven', 1), ('herstellung', 1), ('von', 1), ('komplexen', 1), ('softwaresystemen', 1), ('nbsp', 1), ('bereich', 1), ('der', 1), ('verteilten', 1), ('softwaresysteme', 1), ('brachte', 1), ('common', 1), ('object', 1), ('request', 1), ('broker', 1), ('architecture', 1), ('corba', 1), ('eine', 1), ('wesentliche', 1)]
[('advanced', 1), ('textbook', 1), ('giving', 1), ('broad', 1), ('modern', 1), ('view', 1), ('computational', 1), ('complexity', 1), ('theory', 1), ('boolean', 1), ('circuit', 1), ('extensive', 1), ('reference', 1), ('theoretical', 1), ('computer', 1), ('scientist', 1), ('mathematician', 1)]
[('eine', 3), ('die', 2), ('da', 1), ('buch', 1), ('bietet', 1), ('kompakte', 1), ('einführung', 1), ('grundlagen', 1), ('und', 1), ('techniken', 1), ('de', 1), ('übersetzerbaus', 1), ('übersetzer', 1), ('transformieren', 1), ('texte', 1), ('einer', 1), ('quellsprache', 1), ('deren', 1), ('struktur', 1), ('durch', 1), ('formale', 1), ('grammatik', 1), ('beschrieben', 1), ('ist', 1), ('zielsprache', 1), ('übersetzung', 1)]
[('kunden', 2), ('ist', 2), ('alle', 1), ('branchen', 1), ('befinden', 1), ('sich', 1), ('derzeit', 1), ('derselben', 1), ('situation', 1), ('unternehmen', 1), ('bedienen', 1), ('ihre', 1), ('oft', 1), ('noch', 1), ('über', 1), ('konventionelle', 1), ('kanäle', 1), ('obwohl', 1), ('viel', 1), ('mehr', 1), ('kenntnis', 1), ('und', 1), ('erreichbarkeit', 1), ('vorhanden', 1), ('technisch', 1), ('e', 1), ('möglich', 1), ('den', 1), ('ort', 1), ('de', 1), ('zu', 1)]
[('die', 2), ('informatik', 2), ('einen', 2), ('beiden', 1), ('bände', 1), ('technische', 1), ('bieten', 1), ('verständlichen', 1), ('einstieg', 1), ('diesis', 1), ('wichtige', 1), ('teilgebiet', 1), ('der', 1), ('leser', 1), ('mit', 1), ('unterschiedlichen', 1), ('vorkenntnissen', 1), ('gewinnen', 1), ('schrittweise', 1), ('überblick', 1), ('über', 1), ('benötigten', 1), ('elektrotechnischen', 1), ('und', 1)]
[('nan', 1)]
[('kes', 2), ('agent', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('multi', 1), ('system', 1), ('amsta', 1), ('held', 1), ('manchester', 1), ('uk', 1), ('june', 1), ('july', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('international', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('autonomous', 1), ('intelligent', 1), ('system', 1), ('ai', 1), ('held', 1), ('burnaby', 1), ('bc', 1), ('canada', 1), ('june', 1), ('colocated', 1), ('image', 1), ('analysis', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('meeting', 1), ('computational', 1), ('intelligence', 1), ('method', 1), ('bioinformatics', 1), ('biostatistics', 1), ('cibb', 1), ('held', 1), ('palermo', 1), ('italy', 1), ('september', 1), ('paper', 1)]
[('journal', 2), ('data', 2), ('semantics', 2), ('lncs', 1), ('devoted', 1), ('presentation', 1), ('notable', 1), ('work', 1), ('way', 1), ('another', 1), ('address', 1), ('research', 1), ('development', 1), ('issue', 1), ('related', 1), ('scope', 1), ('range', 1), ('theory', 1), ('supporting', 1)]
[('lnai', 2), ('four', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('based', 1), ('intelligent', 1), ('information', 1), ('engineering', 1), ('system', 1), ('kes', 1), ('held', 1), ('kaiserslautern', 1), ('germany', 1), ('september', 1)]
[('intelligence', 2), ('three', 1), ('volume', 1), ('proceeding', 1), ('contains', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('second', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('computational', 1), ('aici', 1), ('held', 1), ('taiyuan', 1), ('china', 1), ('september', 1), ('total', 1), ('high', 1), ('quality', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('international', 1), ('conference', 1), ('algorithmic', 1), ('decision', 1), ('theory', 1), ('adt', 1), ('held', 1), ('piscataway', 1), ('nj', 1), ('usa', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('nonlinear', 1), ('speech', 1), ('processing', 1), ('nolisp', 1), ('held', 1), ('la', 1), ('palmas', 1), ('de', 1), ('gran', 1), ('canaria', 1), ('spain', 1), ('november', 1), ('purpose', 1), ('workshop', 1), ('present', 1), ('discus', 1), ('new', 1), ('idea', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('symposium', 1), ('bioinformatics', 1), ('research', 1), ('application', 1), ('isbra', 1), ('held', 1), ('dallas', 1), ('texas', 1), ('usa', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('five', 1), ('invited', 1), ('talk', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('kuala', 1), ('lumpur', 1), ('malaysia', 1), ('total', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('controlled', 1), ('natural', 1), ('language', 1), ('cnl', 1), ('held', 1), ('zurich', 1), ('switzerland', 1), ('august', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('th', 2), ('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('principle', 1), ('practice', 1), ('multi', 1), ('agent', 1), ('system', 1), ('prima', 1), ('held', 1), ('kuching', 1), ('sarawak', 1), ('malaysia', 1), ('september', 1), ('collocated', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('german', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ki', 1), ('held', 1), ('saarbrücken', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1)]
[('paper', 2), ('intelligence', 2), ('volume', 1), ('proceeding', 1), ('contains', 1), ('revised', 1), ('selected', 1), ('th', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('computational', 1), ('aici', 1), ('held', 1), ('chengdu', 1), ('china', 1), ('october', 1), ('total', 1), ('high', 1), ('quality', 1)]
[('nan', 1)]
[('selected', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('th', 1), ('international', 1), ('gesture', 1), ('workshop', 1), ('gw', 1), ('held', 1), ('athens', 1), ('greece', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('submission', 1), ('ordered', 1), ('five', 1)]
[('evalita', 2), ('language', 2), ('reference', 1), ('evaluation', 1), ('campaign', 1), ('natural', 1), ('processing', 1), ('speech', 1), ('technology', 1), ('italian', 1), ('objective', 1), ('shared', 1), ('task', 1), ('proposed', 1), ('promote', 1), ('development', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('iapr', 1), ('international', 1), ('conference', 1), ('pattern', 1), ('recognition', 1), ('bioinformatics', 1), ('prib', 1), ('held', 1), ('nice', 1), ('france', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('th', 2), ('book', 1), ('constitutes', 1), ('joint', 1), ('refereed', 1), ('proceeding', 1), ('symposium', 1), ('integration', 1), ('symbolic', 1), ('computation', 1), ('mechanized', 1), ('reasoning', 1), ('calculemus', 1), ('international', 1), ('workshop', 1), ('digital', 1), ('mathematics', 1), ('library', 1), ('dml', 1), ('system', 1)]
[('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('cooperative', 1), ('information', 1), ('agent', 1), ('cia', 1), ('held', 1), ('fair', 1), ('congress', 1), ('center', 1), ('furt', 1), ('germany', 1), ('september', 1), ('part', 1), ('multi', 1), ('conference', 1), ('net', 1), ('objectdays', 1)]
[('specification', 2), ('program', 2), ('problem', 2), ('transformation', 1), ('short', 1), ('methodology', 1), ('software', 1), ('development', 1), ('formal', 1), ('solved', 1), ('correctly', 1), ('solving', 1), ('constructed', 1), ('stepwise', 1), ('application', 1)]
[('leipzig', 2), ('computer', 2), ('industrial', 1), ('conference', 1), ('data', 1), ('mining', 1), ('icdm', 1), ('fourth', 1), ('meeting', 1), ('series', 1), ('annual', 1), ('event', 1), ('started', 1), ('organized', 1), ('institute', 1), ('vision', 1), ('applied', 1), ('science', 1), ('ibai', 1), ('mission', 1)]
[('european', 2), ('conference', 2), ('year', 2), ('machine', 1), ('learning', 1), ('ecml', 1), ('principle', 1), ('practice', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('pkdd', 1), ('jointly', 1), ('organized', 1), ('fth', 1), ('time', 1), ('row', 1), ('mutual', 1)]
[('nan', 1)]
[('set', 2), ('volume', 1), ('contains', 1), ('paper', 1), ('selected', 1), ('presentation', 1), ('th', 1), ('int', 1), ('national', 1), ('conference', 1), ('rough', 1), ('fuzzy', 1), ('data', 1), ('mining', 1), ('granular', 1), ('computing', 1), ('rsfdgrc', 1), ('organized', 1), ('university', 1), ('regina', 1), ('august', 1), ('st', 1), ('september', 1), ('rd', 1)]
[('nan', 1)]
[('concept', 3), ('formal', 2), ('analysis', 1), ('developed', 1), ('field', 1), ('applied', 1), ('mathematics', 1), ('based', 1), ('mathematization', 1), ('hierarchy', 1), ('thereby', 1), ('allows', 1), ('mathematically', 1), ('represent', 1), ('analyze', 1), ('construct', 1), ('conceptual', 1), ('structure', 1)]
[('led', 2), ('introduction', 1), ('dramatic', 1), ('increase', 1), ('available', 1), ('computer', 1), ('storage', 1), ('capacity', 1), ('last', 1), ('year', 1), ('creation', 1), ('large', 1), ('database', 1), ('scienti', 1), ('commercial', 1), ('information', 1), ('need', 1), ('analyze', 1), ('mass', 1), ('data', 1)]
[('general', 1), ('idea', 1), ('brain', 1), ('anticipate', 1), ('future', 1), ('engage', 1), ('prediction', 1), ('mean', 1), ('sort', 1), ('inner', 1), ('model', 1), ('run', 1), ('ine', 1), ('hasalonghistory', 1), ('someversionoftheideawascommontoaristotle', 1), ('aswell', 1)]
[('society', 2), ('pleasure', 1), ('share', 1), ('springer', 1), ('lncs', 1), ('proceeding', 1), ('first', 1), ('world', 1), ('summit', 1), ('knowledge', 1), ('wsks', 1), ('organized', 1), ('open', 1), ('research', 1), ('ngo', 1), ('took', 1), ('place', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('brazilian', 1), ('symposium', 1), ('artificial', 1), ('intelligence', 1), ('sbia', 1), ('held', 1), ('salvador', 1), ('brazil', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('lecture', 1), ('tutorial', 1)]
[('automatic', 1), ('course', 1), ('generation', 1), ('important', 1), ('area', 1), ('research', 1), ('numerous', 1), ('practical', 1), ('application', 1), ('learning', 1), ('studied', 1), ('within', 1), ('field', 1), ('intelligent', 1), ('tutoring', 1), ('ai', 1), ('education', 1), ('adaptive', 1), ('hypermedia', 1), ('web', 1), ('based', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('modeling', 1), ('decision', 1), ('artificial', 1), ('intelligence', 1), ('mdai', 1), ('held', 1), ('sabadell', 1), ('spain', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('requirement', 2), ('final', 1), ('installment', 1), ('three', 1), ('volume', 1), ('set', 1), ('based', 1), ('maxim', 1), ('software', 1), ('designed', 1), ('understood', 1), ('expressed', 1), ('properly', 1), ('domain', 1), ('application', 1)]
[('database', 2), ('management', 2), ('system', 2), ('book', 1), ('provides', 1), ('comprehensive', 1), ('coverage', 1), ('fundamental', 1), ('contains', 1), ('detailed', 1), ('description', 1), ('relational', 1), ('concept', 1), ('variety', 1), ('solved', 1), ('example', 1), ('review', 1), ('question', 1)]
[('und', 3), ('optimierung', 2), ('von', 2), ('die', 1), ('simulationsgestützte', 1), ('produktportfolios', 1), ('produktionsketten', 1), ('birgt', 1), ('großes', 1), ('potenzial', 1), ('berichte', 1), ('über', 1), ('kopplungen', 1), ('simulation', 1), ('sind', 1), ('aber', 1), ('rar', 1), ('der', 1), ('band', 1), ('liefert', 1), ('erstmals', 1), ('deutschsprachige', 1), ('anwendungsbeispiele', 1)]
[('error', 2), ('correcting', 2), ('code', 2), ('incorporated', 1), ('numerous', 1), ('working', 1), ('communication', 1), ('memory', 1), ('system', 1), ('book', 1), ('cover', 1), ('mathematical', 1), ('aspect', 1), ('theory', 1), ('block', 1), ('together', 1), ('mutual', 1), ('reinforcement', 1), ('computational', 1)]
[('für', 2), ('die', 2), ('der', 2), ('neuauflage', 1), ('wurde', 1), ('text', 1), ('diesis', 1), ('praxisorientierten', 1), ('werks', 1), ('verbessert', 1), ('und', 1), ('thematisch', 1), ('abgerundet', 1), ('e', 1), ('führt', 1), ('umfassend', 1), ('konzepte', 1), ('internationalen', 1), ('iec', 1), ('norm', 1), ('programmiersysteme', 1), ('von', 1), ('speicherprogrammierbaren', 1), ('steuerungen', 1), ('ein', 1)]
[('nan', 1)]
[('data', 3), ('exploratory', 1), ('analysis', 1), ('eda', 1), ('detecting', 1), ('describing', 1), ('pattern', 1), ('trend', 1), ('relation', 1), ('motivated', 1), ('certain', 1), ('purpose', 1), ('investigation', 1), ('something', 1), ('relevant', 1), ('detected', 1), ('new', 1), ('question', 1), ('arise', 1), ('causing', 1), ('specific', 1), ('part', 1)]
[('simulation', 2), ('optimization', 2), ('designing', 1), ('complex', 1), ('integrated', 1), ('circuit', 1), ('relies', 1), ('heavily', 1), ('mathematical', 1), ('method', 1), ('call', 1), ('suitable', 1), ('tool', 1), ('current', 1), ('design', 1), ('approach', 1), ('involves', 1), ('different', 1), ('physical', 1), ('domain', 1), ('device', 1)]
[('system', 2), ('agent', 2), ('hospital', 2), ('enterprise', 2), ('book', 1), ('give', 1), ('detailed', 1), ('description', 1), ('development', 1), ('large', 1), ('scale', 1), ('multiagent', 1), ('developed', 1), ('close', 1), ('cooperation', 1)]
[('die', 3), ('leistung', 2), ('ist', 2), ('sehr', 2), ('von', 1), ('computersystemen', 1), ('ausschlaggebende', 1), ('größe', 1), ('für', 1), ('ihren', 1), ('einsatz', 1), ('zur', 1), ('messung', 1), ('der', 1), ('wird', 1), ('oft', 1), ('da', 1), ('benchmark', 1), ('verfahren', 1), ('eingesetzt', 1), ('obwohl', 1), ('bekannt', 1), ('das', 1), ('ergebnisse', 1), ('nur', 1), ('beschränkt', 1), ('aussagekräftig', 1), ('sind', 1)]
[('diesis', 1), ('fachbuch', 1), ('bietet', 1), ('einen', 1), ('umfassenden', 1), ('überblick', 1), ('über', 1), ('die', 1), ('konzeption', 1), ('produktion', 1), ('und', 1), ('bereitstellung', 1), ('von', 1), ('interaktivem', 1), ('video', 1), ('internet', 1), ('e', 1), ('gliedert', 1), ('sich', 1), ('zwei', 1), ('teile', 1), ('der', 1), ('theorieteil', 1), ('stellt', 1), ('fundiertes', 1), ('hintergrundwissen', 1), ('zu', 1), ('themen', 1), ('wie', 1), ('inhaltliche', 1)]
[('nan', 1)]
[('communication', 2), ('technology', 2), ('book', 1), ('supposed', 1), ('serve', 1), ('comprehensive', 1), ('instructive', 1), ('guide', 1), ('new', 1), ('world', 1), ('digital', 1), ('physical', 1), ('layer', 1), ('optical', 1), ('electrical', 1), ('cabling', 1), ('described', 1), ('wireless', 1)]
[('mathematical', 2), ('software', 2), ('book', 1), ('tutorial', 1), ('written', 1), ('researcher', 1), ('developer', 1), ('behind', 1), ('fenics', 1), ('project', 1), ('explores', 1), ('advanced', 1), ('expressive', 1), ('approach', 1), ('development', 1), ('presentation', 1), ('span', 1), ('background', 1), ('design', 1)]
[('kenntnisse', 1), ('der', 1), ('modellierung', 1), ('dokumentenbezogener', 1), ('metadaten', 1), ('vermitteln', 1), ('die', 1), ('autoren', 1), ('dem', 1), ('band', 1), ('vor', 1), ('allem', 1), ('durch', 1), ('praxisnahe', 1), ('aufgabenstellungen', 1), ('begleitet', 1), ('von', 1), ('theoretischen', 1), ('erläuterungen', 1), ('und', 1), ('ergänzenden', 1), ('übungen', 1), ('leser', 1), ('lernen', 1), ('wie', 1), ('datenbanken', 1), ('aufgebaut', 1)]
[('conference', 2), ('electronic', 2), ('commerce', 2), ('ecwac', 1), ('integrated', 1), ('devoted', 1), ('web', 1), ('application', 1), ('communication', 1), ('proceeding', 1), ('find', 1), ('carefully', 1), ('reviewed', 1), ('scientific', 1), ('outcome', 1), ('second', 1), ('international', 1)]
[('intelligent', 2), ('system', 2), ('admittedly', 1), ('notion', 1), ('intelligence', 1), ('computing', 1), ('around', 1), ('several', 1), ('decade', 1), ('implicitly', 1), ('indicating', 1), ('non', 1), ('conventional', 1), ('method', 1), ('solving', 1), ('complex', 1), ('problem', 1), ('expert', 1), ('control', 1), ('technique', 1)]
[('technology', 2), ('tel', 2), ('research', 1), ('enhanced', 1), ('learning', 1), ('investigates', 1), ('information', 1), ('communication', 1), ('designed', 1), ('order', 1), ('support', 1), ('pedagogical', 1), ('activity', 1), ('workshop', 1), ('proceeding', 1), ('collect', 1), ('contribution', 1), ('concerning', 1), ('evidence', 1), ('based', 1)]
[('fuzzy', 2), ('engineering', 2), ('conference', 2), ('operation', 1), ('research', 1), ('edited', 1), ('outcome', 1), ('th', 1), ('international', 1), ('information', 1), ('icfie', 1), ('held', 1), ('oct', 1), ('chengdu', 1), ('china', 1), ('st', 1), ('academic', 1)]
[('distributed', 2), ('computing', 2), ('artificial', 2), ('international', 1), ('symposium', 1), ('intelligence', 1), ('dcai', 1), ('stimulating', 1), ('productive', 1), ('forum', 1), ('scientific', 1), ('community', 1), ('work', 1), ('towards', 1), ('future', 1), ('cooperation', 1)]
[('benutzererlebnis', 2), ('ein', 2), ('funktionalität', 1), ('allein', 1), ('reicht', 1), ('bei', 1), ('internet', 1), ('oder', 1), ('desktop', 1), ('anwendungen', 1), ('heute', 1), ('nicht', 1), ('au', 1), ('da', 1), ('ist', 1), ('zunehmend', 1), ('schlüsselfaktor', 1), ('für', 1), ('den', 1), ('markterfolg', 1), ('positive', 1), ('entsteht', 1), ('aber', 1), ('nur', 1), ('dann', 1), ('wenn', 1), ('entwicklungsprozess', 1)]
[('die', 4), ('standardbibliothek', 1), ('deren', 1), ('interessantester', 1), ('teil', 1), ('standard', 1), ('template', 1), ('library', 1), ('stl', 1), ('ist', 1), ('revolutioniert', 1), ('programmierung', 1), ('der', 1), ('korrekte', 1), ('und', 1), ('effiziente', 1), ('einsatz', 1), ('stellt', 1), ('eine', 1), ('große', 1), ('herausforderung', 1), ('dar', 1), ('nur', 1), ('mit', 1), ('fundiertem', 1), ('wissen', 1), ('zu', 1)]
[('technischen', 2), ('mit', 1), ('sonderbeiträgen', 1), ('zu', 1), ('den', 1), ('demonstrationen', 1), ('au', 1), ('dem', 1), ('sonderforschungsbereich', 1), ('informationsbearbeitung', 1), ('autonomen', 1), ('mobilen', 1), ('handhabungssystemen', 1), ('der', 1), ('universität', 1), ('münchen', 1)]
[('field', 2), ('theory', 2), ('work', 1), ('present', 1), ('purely', 1), ('classical', 1), ('first', 1), ('order', 1), ('logical', 1), ('approach', 1), ('study', 1), ('theoretical', 1), ('computer', 1), ('science', 1), ('sometimes', 1), ('referred', 1), ('program', 1), ('programming', 1), ('essentially', 1), ('attempt', 1), ('provide', 1), ('precise', 1)]
[('paper', 1), ('volume', 1), ('selected', 1), ('presentation', 1), ('th', 1), ('international', 1), ('meshing', 1), ('roundtable', 1), ('held', 1), ('september', 1), ('birmingham', 1), ('alabama', 1), ('conference', 1), ('started', 1), ('sandia', 1), ('national', 1), ('laboratory', 1), ('small', 1), ('meeting', 1)]
[('software', 2), ('engineering', 2), ('requirement', 2), ('inception', 1), ('undergone', 1), ('numerous', 1), ('change', 1), ('early', 1), ('year', 1), ('development', 1), ('organized', 1), ('using', 1), ('waterfall', 1), ('model', 1), ('focus', 1), ('frozen', 1), ('document', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('heinz', 1), ('nixdorf', 1), ('symposium', 1), ('ihns', 1), ('held', 1), ('paderborn', 1), ('germany', 1), ('april', 1), ('title', 1), ('changing', 1), ('paradigm', 1), ('advanced', 1), ('manufacturing', 1), ('sustainable', 1), ('logistics', 1), ('full', 1)]
[('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('system', 1), ('technology', 1), ('management', 1), ('icistm', 1), ('held', 1), ('bangkok', 1), ('thailand', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('nbsp', 3), ('book', 1), ('constitutes', 1), ('first', 1), ('part', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('ic', 1), ('held', 1), ('noida', 1), ('india', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('nan', 1)]
[('mustererkennung', 2), ('die', 1), ('deutsche', 1), ('arbeitsgemeinschaft', 1), ('für', 1), ('veranstaltet', 1), ('seit', 1), ('jährlich', 1), ('verschiedenen', 1), ('orten', 1), ('ein', 1), ('wissenschaftliches', 1), ('symposium', 1), ('mit', 1), ('dem', 1), ('ziel', 1), ('aufgabenstellungen', 1), ('denkweisen', 1), ('und', 1), ('forschungsergebnisse', 1), ('au', 1), ('den', 1), ('gebieten', 1), ('der', 1)]
[('karlsruhe', 2), ('vor', 1), ('jahren', 1), ('fand', 1), ('november', 1), ('der', 1), ('universität', 1), ('erstmals', 1), ('da', 1), ('fachgespräch', 1), ('über', 1), ('autonome', 1), ('mobile', 1), ('systeme', 1), ('statt', 1), ('seither', 1), ('wird', 1), ('e', 1), ('regelmäßig', 1), ('jedes', 1), ('jahr', 1), ('alternierend', 1), ('einmal', 1), ('münchen', 1), ('und', 1), ('seit', 1), ('auch', 1), ('stuttgart', 1)]
[('dubois', 1), ('gershon', 1), ('book', 1), ('inspired', 1), ('symposium', 1), ('communication', 1), ('computer', 1), ('aided', 1), ('system', 1), ('held', 1), ('th', 1), ('international', 1), ('codata', 1), ('conference', 1), ('september', 1), ('chambery', 1), ('france', 1), ('conceived', 1), ('influenced', 1)]
[('workshop', 2), ('idea', 1), ('originated', 1), ('came', 1), ('across', 1), ('martin', 1), ('zelkowitz', 1), ('book', 1), ('requirement', 1), ('software', 1), ('engineering', 1), ('environment', 1), ('proceeding', 1), ('small', 1), ('held', 1), ('university', 1), ('maryland', 1), ('although', 1), ('stimulated', 1)]
[('system', 2), ('book', 1), ('contains', 1), ('thoroughly', 1), ('refereed', 1), ('revised', 1), ('best', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('information', 1), ('technology', 1), ('webist', 1), ('held', 1), ('aachen', 1), ('germany', 1), ('organized', 1), ('institute', 1)]
[('engineering', 2), ('conditioned', 2), ('software', 1), ('understood', 1), ('broad', 1), ('term', 1), ('linking', 1), ('science', 1), ('traditional', 1), ('en', 1), ('neering', 1), ('art', 1), ('management', 1), ('additionally', 1), ('social', 1), ('external', 1), ('factor', 1), ('point', 1), ('brilliant', 1), ('solution', 1), ('based', 1)]
[('international', 2), ('conference', 2), ('welcome', 1), ('proceeding', 1), ('service', 1), ('science', 1), ('technology', 1), ('unesst', 1), ('partnering', 1), ('event', 1), ('second', 1), ('mega', 1), ('future', 1), ('generation', 1), ('information', 1), ('te', 1), ('nology', 1), ('fgit', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('multimedia', 1), ('communication', 1), ('service', 1), ('security', 1), ('mc', 1), ('held', 1), ('krakow', 1), ('poland', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('research', 1), ('education', 1), ('robotics', 1), ('eurobot', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('ccis', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('computer', 1), ('science', 1), ('information', 1), ('engineering', 1), ('csie', 1), ('held', 1), ('zhengzhou', 1), ('china', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('network', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('three', 1), ('international', 1), ('conference', 1), ('necom', 1), ('amp', 1), ('communication', 1), ('west', 1), ('web', 1), ('semantic', 1), ('technology', 1), ('wimon', 1), ('wireless', 1), ('mobile', 1), ('jointly', 1), ('held', 1), ('chennai', 1), ('india', 1)]
[('volume', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('fourth', 1), ('international', 1), ('conference', 1), ('contemporary', 1), ('computing', 1), ('ic', 1), ('held', 1), ('noida', 1), ('india', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('ccis', 4), ('volume', 2), ('first', 2), ('part', 1), ('four', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('computing', 1), ('communication', 1), ('acc', 1), ('held', 1), ('kochi', 1), ('india', 1), ('july', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('symposium', 1), ('applied', 1), ('economics', 1), ('business', 1), ('development', 1), ('isaebd', 1), ('held', 1), ('dalian', 1), ('china', 1), ('august', 1), ('paper', 1), ('address', 1), ('issue', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('advance', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('technology', 1), ('application', 1), ('pdcta', 1), ('held', 1), ('tirunelveli', 1), ('india', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('six', 1), ('volume', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('computing', 1), ('information', 1), ('control', 1), ('iccic', 1), ('held', 1), ('wuhan', 1), ('china', 1), ('september', 1), ('paper', 1), ('organized', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('information', 1), ('system', 1), ('cisim', 1), ('held', 1), ('kolkata', 1), ('india', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('keynote', 1), ('task', 1)]
[('ccis', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('information', 1), ('business', 1), ('intelligence', 1), ('ibi', 1), ('held', 1), ('chongqing', 1), ('china', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('information', 1), ('processing', 1), ('icip', 1), ('held', 1), ('bangalore', 1), ('india', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('held', 1), ('huangshan', 1), ('china', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('three', 1), ('volume', 1), ('lncs', 1), ('lnai', 1)]
[('book', 1), ('comprises', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('aim', 1), ('ccpe', 1), ('held', 1), ('bangalore', 1), ('india', 1), ('april', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('numerous', 1), ('submission', 1), ('focus', 1), ('various', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('software', 1), ('data', 1), ('technology', 1), ('icsoft', 1), ('held', 1), ('seville', 1), ('spain', 1), ('july', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('invited', 1), ('carefully', 1)]
[('ccis', 2), ('second', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('extended', 1), ('abstract', 1), ('poster', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('la', 1), ('vega', 1), ('usa', 1), ('july', 1)]
[('ccis', 2), ('first', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('extended', 1), ('abstract', 1), ('poster', 1), ('presented', 1), ('th', 1), ('international', 1), ('conference', 1), ('human', 1), ('computer', 1), ('interaction', 1), ('hcii', 1), ('held', 1), ('la', 1), ('vega', 1), ('usa', 1), ('july', 1)]
[('volume', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('geo', 1), ('informatics', 1), ('resource', 1), ('management', 1), ('sustainable', 1), ('ecosystem', 1), ('grmse', 1), ('held', 1), ('wuhan', 1), ('china', 1), ('november', 1), ('paper', 1)]
[('librarian', 2), ('book', 1), ('assembles', 1), ('contribution', 1), ('computer', 1), ('scientist', 1), ('altogether', 1), ('encompass', 1), ('complete', 1), ('range', 1), ('tool', 1), ('task', 1), ('process', 1), ('needed', 1), ('successfully', 1), ('preserve', 1), ('cultural', 1), ('heritage', 1), ('web', 1), ('combine', 1)]
[('machine', 2), ('learning', 2), ('algorithm', 2), ('modeling', 1), ('data', 1), ('locally', 1), ('globally', 1), ('present', 1), ('novel', 1), ('unified', 1), ('theory', 1), ('try', 1), ('seamlessly', 1), ('integrate', 1), ('different', 1), ('specifically', 1), ('book', 1), ('distinguishes', 1), ('inner', 1), ('nature', 1), ('either', 1)]
[('due', 2), ('research', 1), ('social', 1), ('system', 1), ('challenging', 1), ('complex', 1), ('nature', 1), ('traditional', 1), ('method', 1), ('analysis', 1), ('often', 1), ('difficult', 1), ('apply', 1), ('effectively', 1), ('theory', 1), ('evolve', 1), ('time', 1), ('lack', 1), ('appropriate', 1), ('data', 1), ('uncertainty', 1)]
[('storage', 3), ('data', 2), ('center', 2), ('management', 1), ('help', 1), ('administrator', 1), ('tackle', 1), ('complexity', 1), ('mass', 1), ('show', 1), ('exploit', 1), ('potential', 1), ('veritas', 1), ('foundation', 1), ('conveying', 1), ('information', 1), ('design', 1), ('concept', 1), ('software', 1)]
[('network', 3), ('autonomous', 2), ('ad', 1), ('hoc', 1), ('include', 1), ('variety', 1), ('specific', 1), ('purpose', 1), ('promise', 1), ('broad', 1), ('range', 1), ('civilian', 1), ('commercial', 1), ('military', 1), ('application', 1), ('originally', 1), ('envisioned', 1), ('collection', 1), ('mobile', 1)]
[('knowledge', 3), ('book', 2), ('discus', 2), ('managing', 2), ('section', 2), ('emerging', 1), ('trend', 1), ('field', 1), ('work', 1), ('due', 1), ('technological', 1), ('innovation', 1), ('organized', 1), ('first', 1), ('entitled', 1), ('project', 1), ('network', 1)]
[('software', 2), ('al', 2), ('die', 2), ('neuentwickelte', 1), ('ist', 1), ('heute', 1), ('oft', 1), ('schon', 1), ('zum', 1), ('zeitpunkt', 1), ('ihrer', 1), ('einführung', 1), ('veraltet', 1), ('einen', 1), ('ausweg', 1), ('au', 1), ('dieser', 1), ('krise', 1), ('bietet', 1), ('der', 1), ('objektorientierte', 1), ('ansatz', 1), ('anwendungen', 1), ('werden', 1), ('objekte', 1), ('modelliert', 1), ('sowohl', 1), ('eigenschaften', 1), ('auch', 1), ('da', 1)]
[('including', 2), ('service', 1), ('oriented', 1), ('infrastructure', 1), ('grid', 1), ('cloud', 1), ('computing', 1), ('technology', 1), ('critical', 1), ('transition', 1), ('wider', 1), ('adoption', 1), ('business', 1), ('use', 1), ('enable', 1), ('enterprise', 1), ('achieve', 1), ('optimal', 1), ('utilization', 1), ('sharing', 1), ('resource', 1)]
[('change', 2), ('manager', 1), ('business', 1), ('model', 1), ('fast', 1), ('paced', 1), ('innovation', 1), ('product', 1), ('lifecycles', 1), ('pose', 1), ('big', 1), ('challenge', 1), ('required', 1), ('anticipate', 1), ('impact', 1), ('future', 1), ('make', 1), ('rapid', 1), ('decision', 1), ('backed', 1), ('solid', 1), ('fact', 1)]
[('conference', 3), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('ucmedia', 1), ('held', 1), ('december', 1), ('hotel', 1), ('novotel', 1), ('venezia', 1), ('mestre', 1), ('castellana', 1), ('venice', 1), ('italy', 1), ('focus', 1)]
[('virtual', 2), ('world', 2), ('recent', 1), ('year', 1), ('popularity', 1), ('increased', 1), ('significantly', 1), ('consequently', 1), ('come', 1), ('closer', 1), ('academic', 1), ('scrutiny', 1), ('paper', 1), ('typically', 1), ('published', 1), ('conference', 1), ('journal', 1), ('specialize', 1)]
[('nan', 1)]
[('software', 2), ('engineering', 2), ('research', 1), ('trace', 1), ('root', 1), ('highly', 1), ('influential', 1), ('individual', 1), ('among', 1), ('select', 1), ('group', 1), ('leon', 1), ('osterweil', 1), ('major', 1), ('force', 1), ('driving', 1), ('infancy', 1), ('modern', 1), ('reality', 1)]
[('biological', 2), ('computational', 1), ('intelligence', 1), ('established', 1), ('paradigm', 1), ('new', 1), ('theory', 1), ('sound', 1), ('understanding', 1), ('evolving', 1), ('current', 1), ('experimental', 1), ('system', 1), ('many', 1), ('characteristic', 1), ('computer', 1), ('brain', 1)]
[('image', 3), ('based', 2), ('processing', 2), ('analysis', 2), ('book', 1), ('put', 1), ('special', 1), ('stress', 1), ('contemporary', 1), ('technique', 1), ('reasoning', 1), ('learning', 1), ('representation', 1), ('advanced', 1), ('video', 1), ('coding', 1), ('intelligent', 1), ('medical', 1), ('vision', 1), ('system', 1)]
[('european', 3), ('initiative', 2), ('amting', 1), ('directorate', 1), ('general', 1), ('information', 1), ('society', 1), ('commission', 1), ('brussels', 1), ('th', 1), ('framework', 1), ('research', 1), ('system', 1), ('soft', 1), ('ware', 1), ('essi', 1), ('part', 1), ('ofthe', 1), ('esprit', 1), ('programme', 1), ('funded', 1)]
[('conference', 2), ('th', 2), ('book', 1), ('contains', 1), ('selection', 1), ('paper', 1), ('presented', 1), ('computer', 1), ('graphic', 1), ('education', 1), ('held', 1), ('apri', 1), ('begur', 1), ('spain', 1), ('organised', 1), ('auspex', 1), ('international', 1), ('federation', 1)]
[('based', 2), ('database', 2), ('authorware', 1), ('attain', 1), ('world', 1), ('leading', 1), ('software', 1), ('production', 1), ('cbts', 1), ('computer', 1), ('training', 1), ('interactive', 1), ('increasingly', 1), ('web', 1), ('poi', 1), ('application', 1), ('book', 1), ('describes', 1), ('technique', 1), ('binding', 1), ('use', 1)]
[('nan', 1)]
[('und', 3), ('die', 2), ('estelle', 2), ('lotos', 2), ('sdl', 2), ('da', 1), ('buch', 1), ('gibt', 1), ('eine', 1), ('einführung', 1), ('spezifikationssprachen', 1), ('sprachen', 1), ('sind', 1), ('standardsprachen', 1), ('der', 1), ('iso', 1), ('de', 1), ('ccitt', 1), ('zur', 1), ('spezifikation', 1), ('von', 1), ('diensten', 1), ('protokollen', 1), ('kommunikationssystemen', 1)]
[('semantik', 2), ('und', 2), ('diesis', 1), ('buch', 1), ('vermittelt', 1), ('techniken', 1), ('zur', 1), ('formalisierung', 1), ('der', 1), ('bedeutungsinhalte', 1), ('von', 1), ('programmiersprachen', 1), ('zunächst', 1), ('werden', 1), ('unterschiedliche', 1), ('formalisierungsansätze', 1), ('die', 1), ('operationelle', 1), ('denotationelle', 1), ('axiomatische', 1), ('vorgestellt', 1)]
[('ist', 2), ('die', 2), ('da', 1), ('vorliegende', 1), ('buch', 1), ('eine', 1), ('einführung', 1), ('wesentlichen', 1), ('problembereiche', 1), ('der', 1), ('ki', 1), ('programmierung', 1), ('dabei', 1), ('dienen', 1), ('sprachentwicklung', 1), ('implementierung', 1), ('und', 1), ('benutzung', 1), ('al', 1), ('neuartige', 1), ('einheitliche', 1), ('sichtweise', 1), ('grundidee', 1), ('daß', 1), ('jedem', 1), ('problem', 1), ('ein', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('und', 3), ('business', 2), ('die', 2), ('von', 2), ('mobile', 1), ('verändern', 1), ('massiv', 1), ('art', 1), ('wie', 1), ('unternehmen', 1), ('organisationen', 1), ('zukünftig', 1), ('funktionieren', 1), ('durch', 1), ('verschmelzung', 1), ('telekommunikation', 1), ('informationstechnologie', 1), ('werden', 1), ('sich', 1), ('ganze', 1), ('prozessketten', 1), ('lieferanten', 1), ('zu', 1)]
[('und', 4), ('für', 3), ('dauerhafte', 1), ('beziehungen', 1), ('zu', 1), ('kunden', 1), ('anderen', 1), ('da', 1), ('unternehmen', 1), ('wichtige', 1), ('interessengruppen', 1), ('sind', 1), ('voraussetzung', 1), ('den', 1), ('unternehmenserfolg', 1), ('diesis', 1), ('buch', 1), ('bietet', 1), ('grundlagen', 1), ('instrumente', 1), ('die', 1), ('entwicklung', 1), ('erhaltung', 1), ('erfolgreicher', 1)]
[('structure', 1), ('organisation', 1), ('science', 1), ('technology', 1), ('led', 1), ('spectacularly', 1), ('successful', 1), ('growth', 1), ('knowledge', 1), ('century', 1), ('book', 1), ('explores', 1), ('important', 1), ('debated', 1), ('question', 1), ('innovative', 1), ('way', 1)]
[('technique', 2), ('ai', 2), ('purpose', 1), ('artificial', 1), ('intelligence', 1), ('comprehensive', 1), ('cata', 1), ('logue', 1), ('promote', 1), ('interaction', 1), ('member', 1), ('community', 1), ('announcing', 1), ('existence', 1), ('acting', 1), ('pointer', 1), ('literature', 1)]
[('nan', 1)]
[('und', 3), ('der', 2), ('eine', 2), ('prolog', 1), ('die', 1), ('wohl', 1), ('bedeutendste', 1), ('programmiersprache', 1), ('künstlichen', 1), ('intelligenz', 1), ('hat', 1), ('einzigartige', 1), ('verbreitung', 1), ('beliebtheit', 1), ('erreicht', 1), ('gilt', 1), ('al', 1), ('basis', 1), ('für', 1), ('ganze', 1), ('neue', 1), ('generation', 1), ('von', 1), ('programmiersprachen', 1), ('systemen', 1), ('vorliegenden', 1)]
[('algorithm', 2), ('ea', 2), ('evolutionary', 1), ('population', 1), ('based', 1), ('stochastic', 1), ('search', 1), ('mimic', 1), ('natural', 1), ('evolution', 1), ('due', 1), ('ability', 1), ('find', 1), ('excellent', 1), ('solution', 1), ('conventionally', 1), ('hard', 1), ('dynamic', 1), ('problem', 1), ('within', 1), ('acceptable', 1), ('time', 1), ('attracted', 1)]
[('und', 3), ('ich', 2), ('meine', 2), ('diesem', 1), ('buch', 1), ('darf', 1), ('erstmals', 1), ('deutscher', 1), ('sprache', 1), ('umfassend', 1), ('aktuell', 1), ('ar', 1), ('beit', 1), ('grundlagen', 1), ('realisierung', 1), ('eines', 1), ('computer', 1), ('schachprogramms', 1), ('vorstellen', 1), ('seit', 1), ('nunmehr', 1), ('gut', 1), ('zehn', 1), ('jahren', 1), ('bemühen', 1), ('sich', 1), ('mitarbeiter', 1), ('um', 1), ('die', 1)]
[('computer', 2), ('book', 1), ('written', 1), ('programmer', 1), ('analyst', 1), ('scientist', 1), ('science', 1), ('student', 1), ('intro', 1), ('duction', 1), ('principle', 1), ('distributed', 1), ('system', 1), ('design', 1), ('emphasis', 1), ('placed', 1), ('clear', 1), ('understanding', 1), ('concept', 1)]
[('software', 2), ('effort', 2), ('estimation', 2), ('key', 1), ('element', 1), ('project', 1), ('planning', 1), ('management', 1), ('yet', 1), ('industrial', 1), ('practice', 1), ('important', 1), ('role', 1), ('often', 1), ('underestimated', 1), ('misunderstood', 1), ('book', 1), ('adam', 1), ('trendowicz', 1), ('present', 1)]
[('knowledge', 1), ('representation', 1), ('play', 1), ('essential', 1), ('role', 1), ('semantic', 1), ('web', 1), ('particular', 1), ('automated', 1), ('information', 1), ('processing', 1), ('communication', 1), ('among', 1), ('software', 1), ('agent', 1), ('book', 1), ('entitled', 1), ('fuzzy', 1), ('computational', 1), ('ontology', 1), ('context', 1), ('formal', 1), ('model', 1)]
[('computer', 2), ('unlike', 1), ('invention', 1), ('universal', 1), ('use', 1), ('many', 1), ('task', 1), ('writing', 1), ('composing', 1), ('music', 1), ('designing', 1), ('building', 1), ('creating', 1), ('movie', 1), ('inhabiting', 1), ('virtual', 1), ('world', 1), ('communicating', 1), ('popular', 1), ('science', 1), ('history', 1)]
[('language', 3), ('technology', 2), ('white', 1), ('paper', 1), ('part', 1), ('series', 1), ('promotes', 1), ('knowledge', 1), ('potential', 1), ('address', 1), ('educator', 1), ('journalist', 1), ('politician', 1), ('community', 1), ('others', 1), ('availability', 1), ('use', 1), ('europe', 1)]
[('language', 3), ('technology', 2), ('white', 1), ('paper', 1), ('part', 1), ('series', 1), ('promotes', 1), ('knowledge', 1), ('potential', 1), ('address', 1), ('educator', 1), ('journalist', 1), ('politician', 1), ('community', 1), ('others', 1), ('availability', 1), ('use', 1), ('europe', 1)]
[('nan', 1)]
[('über', 2), ('und', 2), ('da', 1), ('lehrbuch', 1), ('gibt', 1), ('einen', 1), ('anschaulichen', 1), ('überblick', 1), ('die', 1), ('wichtigsten', 1), ('mechanismen', 1), ('eines', 1), ('betriebssystems', 1), ('aktuelle', 1), ('konzepte', 1), ('neben', 1), ('den', 1), ('klassischen', 1), ('einprozessorsystemen', 1), ('werden', 1), ('multiprozessorsysteme', 1), ('netzwerkcomputer', 1), ('real', 1), ('time', 1), ('systeme', 1)]
[('und', 2), ('multimedia', 1), ('netz', 1), ('informiert', 1), ('über', 1), ('hochleistungskommunikationsprotokolle', 1), ('dienste', 1), ('zur', 1), ('realisierung', 1), ('multimedialer', 1), ('kommunikation', 1), ('die', 1), ('beschreibung', 1), ('aktueller', 1), ('forschungsergebnisse', 1), ('standard', 1), ('ermöglicht', 1), ('einen', 1), ('umfassenden', 1), ('überblick', 1)]
[('computing', 3), ('conference', 2), ('bio', 2), ('international', 1), ('inspired', 1), ('theory', 1), ('application', 1), ('bic', 1), ('ta', 1), ('flagship', 1), ('bringing', 1), ('together', 1), ('world', 1), ('leading', 1), ('scientist', 1), ('different', 1), ('area', 1), ('natural', 1)]
[('der', 3), ('mit', 2), ('rasche', 1), ('fortschritt', 1), ('informationstechnik', 1), ('ermöglicht', 1), ('kombination', 1), ('mikrosystemtechnik', 1), ('immer', 1), ('leistungsfähigere', 1), ('softwareintensive', 1), ('eingebettete', 1), ('systeme', 1), ('und', 1), ('integrierte', 1), ('anwendungen', 1), ('zunehmend', 1), ('werden', 1), ('diese', 1), ('untereinander', 1), ('aber', 1), ('auch', 1)]
[('agent', 2), ('deal', 1), ('flexible', 1), ('architecture', 1), ('evolving', 1), ('functionality', 1), ('complex', 1), ('modern', 1), ('system', 1), ('metaphor', 1), ('based', 1), ('computing', 1), ('often', 1), ('appropriate', 1), ('software', 1), ('design', 1), ('approach', 1), ('result', 1), ('broad', 1), ('range', 1), ('special', 1), ('purpose', 1)]
[('quality', 3), ('software', 2), ('fixed', 1), ('universal', 1), ('property', 1), ('depends', 1), ('context', 1), ('goal', 1), ('stakeholder', 1), ('want', 1), ('develop', 1), ('high', 1), ('system', 1), ('first', 1), ('step', 1), ('clear', 1), ('precise', 1), ('specification', 1)]
[('web', 2), ('semantic', 1), ('represents', 1), ('vision', 1), ('make', 1), ('huge', 1), ('amount', 1), ('information', 1), ('automatically', 1), ('processable', 1), ('machine', 1), ('large', 1), ('scale', 1), ('purpose', 1), ('whole', 1), ('suite', 1), ('standard', 1), ('technology', 1), ('related', 1), ('tool', 1), ('specified', 1)]
[('belief', 2), ('degree', 2), ('sample', 1), ('available', 1), ('estimate', 1), ('probability', 1), ('distribution', 1), ('invite', 1), ('domain', 1), ('expert', 1), ('evaluate', 1), ('event', 1), ('happen', 1), ('perhaps', 1), ('think', 1), ('modeled', 1), ('subjective', 1)]
[('dynamic', 2), ('complexity', 2), ('factor', 2), ('result', 1), ('hidden', 1), ('un', 1), ('known', 1), ('precisely', 1), ('interaction', 1), ('unexpectedly', 1), ('pact', 1), ('perfor', 1), ('mance', 1), ('system', 1), ('influence', 1), ('meas', 1), ('ured', 1), ('understood', 1), ('new', 1)]
[('der', 3), ('de', 3), ('bibliothek', 2), ('die', 2), ('dieser', 1), ('band', 1), ('mediengestaltung', 1), ('präsentiert', 1), ('kompakter', 1), ('form', 1), ('wichtigsten', 1), ('aspekte', 1), ('medienrechts', 1), ('unter', 1), ('besonderer', 1), ('berücksichtigung', 1), ('urheberrechts', 1), ('für', 1), ('diese', 1), ('wurden', 1), ('themen', 1), ('kompendiums', 1)]
[('snn', 2), ('spiking', 1), ('neural', 1), ('network', 1), ('biologically', 1), ('inspired', 1), ('computational', 1), ('model', 1), ('represent', 1), ('process', 1), ('information', 1), ('internally', 1), ('train', 1), ('spike', 1), ('monograph', 1), ('book', 1), ('present', 1), ('classical', 1), ('theory', 1), ('application', 1), ('including', 1), ('original', 1)]
[('der', 3), ('de', 3), ('bibliothek', 2), ('die', 2), ('dieser', 1), ('band', 1), ('mediengestaltung', 1), ('präsentiert', 1), ('kompakter', 1), ('form', 1), ('wichtigsten', 1), ('aspekte', 1), ('medienrechts', 1), ('unter', 1), ('besonderer', 1), ('berücksichtigung', 1), ('urheberrechts', 1), ('für', 1), ('diese', 1), ('wurden', 1), ('themen', 1), ('kompendiums', 1)]
[('und', 3), ('diesis', 1), ('buch', 1), ('hilft', 1), ('unternehmen', 1), ('organisationen', 1), ('bei', 1), ('der', 1), ('konzeption', 1), ('implementierung', 1), ('von', 1), ('terminologiemanagementlösungen', 1), ('e', 1), ('stellt', 1), ('dar', 1), ('wie', 1), ('fachwortschätze', 1), ('professionell', 1), ('erarbeitet', 1), ('bereinigt', 1), ('verwaltet', 1), ('werden', 1), ('grundvoraussetzung', 1), ('für', 1), ('den', 1)]
[('die', 2), ('zukunft', 1), ('de', 1), ('internet', 1), ('kann', 1), ('fantastisch', 1), ('werden', 1), ('mit', 1), ('neuer', 1), ('quantentechnologie', 1), ('sind', 1), ('hackersicherer', 1), ('informationsaustausch', 1), ('sowie', 1), ('ultraschnelle', 1), ('datenverarbeitung', 1), ('möglich', 1), ('basis', 1), ('bildet', 1), ('albert', 1), ('einstein', 1), ('quantenspuk', 1), ('dabei', 1), ('handelt', 1), ('e', 1), ('sich', 1), ('nicht', 1)]
[('die', 3), ('oracle', 2), ('der', 2), ('auf', 2), ('diese', 1), ('einführung', 1), ('datenbankadministration', 1), ('bietet', 1), ('einen', 1), ('schnellen', 1), ('einstieg', 1), ('installation', 1), ('den', 1), ('betrieb', 1), ('und', 1), ('da', 1), ('backup', 1), ('einer', 1), ('datenbank', 1), ('dabei', 1), ('liegt', 1), ('fokus', 1), ('datenbanken', 1), ('nicht', 1), ('cloud', 1), ('sondern', 1), ('eigenen', 1)]
[('research', 2), ('leading', 1), ('edge', 1), ('computer', 1), ('science', 1), ('notoriously', 1), ('ckle', 1), ('new', 1), ('trend', 1), ('come', 1), ('go', 1), ('alarming', 1), ('unfailing', 1), ('regularity', 1), ('rapidly', 1), ('changing', 1), ('eld', 1), ('fact', 1), ('interest', 1), ('subject', 1), ('last', 1), ('year', 1), ('worthy', 1)]
[('und', 3), ('jeder', 2), ('algorithmen', 1), ('bilden', 1), ('da', 1), ('herzstück', 1), ('nichttrivialen', 1), ('anwendung', 1), ('von', 1), ('computern', 1), ('die', 1), ('algorithmik', 1), ('ist', 1), ('ein', 1), ('modernes', 1), ('aktives', 1), ('gebiet', 1), ('der', 1), ('informatik', 1), ('daher', 1), ('sollte', 1), ('sich', 1), ('jede', 1), ('informatikerin', 1), ('informatiker', 1), ('mit', 1), ('den', 1), ('algorithmischen', 1)]
[('und', 3), ('auf', 2), ('diesis', 1), ('kompakte', 1), ('gut', 1), ('verständliche', 1), ('mathematikbuch', 1), ('besticht', 1), ('durch', 1), ('seine', 1), ('gelungene', 1), ('stoffauswahl', 1), ('didaktischen', 1), ('vorzüge', 1), ('die', 1), ('autoren', 1), ('konzentrieren', 1), ('sich', 1), ('den', 1), ('heute', 1), ('relevanten', 1), ('stoff', 1), ('verzichten', 1), ('überflüssige', 1), ('beweise', 1), ('moderne', 1), ('themen', 1), ('wie', 1)]
[('computerabstürze', 1), ('rückrufaktionen', 1), ('sicherheitslecks', 1), ('da', 1), ('phänomen', 1), ('software', 1), ('fehler', 1), ('hat', 1), ('sich', 1), ('zum', 1), ('festen', 1), ('bestandteil', 1), ('unseres', 1), ('täglichen', 1), ('lebens', 1), ('entwickelt', 1), ('mit', 1), ('dem', 1), ('unaufhaltsamen', 1), ('vordringen', 1), ('der', 1), ('computertechnik', 1), ('immer', 1), ('mehr', 1), ('sicherheitskritische', 1)]
[('intriguing', 1), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('postproceedings', 1), ('international', 1), ('conference', 1), ('non', 1), ('linear', 1), ('speech', 1), ('processing', 1), ('nolisp', 1), ('held', 1), ('paris', 1), ('france', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('software', 3), ('aspect', 2), ('oriented', 2), ('development', 2), ('lncs', 1), ('journal', 1), ('transaction', 1), ('devoted', 1), ('facet', 1), ('aosd', 1), ('technique', 1), ('context', 1), ('phase', 1), ('life', 1), ('cycle', 1), ('requirement', 1), ('design', 1)]
[('inductive', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('logic', 1), ('programming', 1), ('ilp', 1), ('held', 1), ('santiago', 1), ('de', 1), ('compostela', 1), ('spain', 1), ('august', 1), ('paper', 1), ('address', 1), ('current', 1), ('topic', 1)]
[('user', 2), ('modeling', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('um', 1), ('held', 1), ('corfu', 1), ('greece', 1), ('july', 1), ('coverage', 1), ('includes', 1), ('evaluating', 1), ('student', 1), ('technique', 1), ('data', 1), ('mining', 1), ('machine', 1), ('learning', 1)]
[('paper', 3), ('nbsp', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('automated', 1), ('deduction', 1), ('cade', 1), ('held', 1), ('miami', 1), ('beach', 1), ('fl', 1), ('usa', 1), ('july', 1), ('revised', 1), ('full', 1), ('system', 1), ('description', 1), ('presented', 1), ('together', 1), ('invited', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('irish', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('cognitive', 1), ('science', 1), ('aics', 1), ('held', 1), ('dublin', 1), ('ireland', 1), ('august', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('rd', 1), ('australasian', 1), ('joint', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('held', 1), ('adelaide', 1), ('australia', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('logic', 2), ('edited', 1), ('collaboration', 1), ('folli', 1), ('association', 1), ('language', 1), ('information', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('indian', 1), ('conference', 1), ('application', 1), ('icla', 1), ('held', 1), ('delhi', 1), ('india', 1), ('january', 1)]
[('cooperative', 2), ('information', 2), ('agent', 2), ('arethe', 1), ('proceedingsof', 1), ('fourth', 1), ('internationalworkshopon', 1), ('held', 1), ('boston', 1), ('massachusetts', 1), ('usa', 1), ('july', 1), ('research', 1), ('development', 1), ('focused', 1), ('originally', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('congress', 1), ('italian', 1), ('association', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('ia', 1), ('held', 1), ('pisa', 1), ('italy', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('workshop', 3), ('th', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('international', 1), ('declarative', 1), ('agent', 1), ('language', 1), ('technology', 1), ('dalt', 1), ('held', 1), ('toronto', 1), ('canada', 1), ('satellite', 1)]
[('paper', 2), ('workshop', 2), ('book', 1), ('present', 1), ('revised', 1), ('version', 1), ('selected', 1), ('th', 1), ('model', 1), ('checking', 1), ('artificial', 1), ('intelligence', 1), ('mochart', 1), ('held', 1), ('atlanta', 1), ('ga', 1), ('usa', 1), ('july', 1), ('contributed', 1), ('subsequent', 1)]
[('computer', 2), ('science', 2), ('lncs', 1), ('journal', 1), ('transaction', 1), ('computational', 1), ('system', 1), ('biology', 1), ('devoted', 1), ('inter', 1), ('multidisciplinary', 1), ('research', 1), ('field', 1), ('life', 1), ('support', 1), ('paradigmatic', 1), ('shift', 1), ('technique', 1)]
[('lnai', 2), ('conference', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('industrial', 1), ('engineering', 1), ('application', 1), ('applied', 1), ('intelligent', 1), ('system', 1), ('iea', 1), ('aie', 1), ('held', 1)]
[('volume', 2), ('conference', 2), ('three', 1), ('set', 1), ('lncs', 1), ('lnai', 1), ('lnbi', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('intelligent', 1), ('computing', 1), ('icic', 1), ('held', 1), ('zhengzhou', 1), ('china', 1), ('august', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('flexible', 1), ('query', 1), ('answering', 1), ('system', 1), ('fqas', 1), ('held', 1), ('roskilde', 1), ('denmark', 1), ('october', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('spanish', 1), ('symposium', 1), ('bioinformatics', 1), ('jbi', 1), ('held', 1), ('torremolinos', 1), ('spain', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('numerous', 1)]
[('proceeding', 2), ('lnai', 1), ('volume', 1), ('constitute', 1), ('th', 1), ('international', 1), ('conference', 1), ('hybrid', 1), ('artificial', 1), ('intelligent', 1), ('system', 1), ('hais', 1), ('held', 1), ('salamanca', 1), ('spain', 1), ('march', 1), ('paper', 1), ('published', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('theory', 1), ('application', 1), ('formal', 1), ('argumentation', 1), ('tafa', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('juli', 1), ('ijcai', 1), ('nd', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('kuala', 1), ('lumpur', 1), ('malaysia', 1), ('total', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('conference', 2), ('volume', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('industrial', 1), ('engineering', 1), ('application', 1), ('applied', 1), ('intelligend', 1), ('system', 1), ('iea', 1), ('aie', 1), ('held', 1), ('dalian', 1), ('china', 1), ('june', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('industrial', 1), ('conference', 1), ('data', 1), ('mining', 1), ('icdm', 1), ('held', 1), ('berlin', 1), ('germany', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('submission', 1)]
[('volume', 2), ('present', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('deontic', 1), ('logic', 1), ('computer', 1), ('science', 1), ('deon', 1), ('held', 1), ('bergen', 1), ('norway', 1), ('july', 1), ('revised', 1), ('paper', 1), ('included', 1), ('carefully', 1), ('reviewed', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('scalable', 1), ('uncertainty', 1), ('management', 1), ('sum', 1), ('held', 1), ('marburg', 1), ('germany', 1), ('september', 1), ('full', 1), ('short', 1), ('carefully', 1)]
[('nan', 1)]
[('nan', 1)]
[('und', 2), ('zu', 2), ('dokumentenmanagementprojekte', 1), ('sind', 1), ('ganzheitliche', 1), ('projekte', 1), ('organisatorische', 1), ('technische', 1), ('menschliche', 1), ('faktoren', 1), ('entscheiden', 1), ('über', 1), ('erfolg', 1), ('oder', 1), ('mißerfolg', 1), ('da', 1), ('dm', 1), ('handbuch', 1), ('hilft', 1), ('frühzeitig', 1), ('fehler', 1), ('erkennen', 1), ('vermeiden', 1), ('e', 1), ('ist', 1), ('eine', 1)]
[('nan', 1)]
[('book', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('methodology', 1), ('intelligent', 1), ('system', 1), ('ismis', 1), ('present', 1), ('revised', 1), ('together', 1), ('invited', 1), ('topical', 1), ('section', 1), ('include', 1), ('active', 1), ('medium', 1)]
[('book', 2), ('revised', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('ecml', 1), ('held', 1), ('jointly', 1), ('pkdd', 1), ('present', 1), ('full', 1), ('short', 1), ('together', 1), ('abstract', 1), ('invited', 1)]
[('concise', 1), ('date', 1), ('introduction', 1), ('extremal', 1), ('combinatorics', 1), ('non', 1), ('specialist', 1), ('strong', 1), ('emphasis', 1), ('made', 1), ('theorem', 1), ('particularly', 1), ('elegant', 1), ('informative', 1), ('proof', 1), ('called', 1), ('gem', 1), ('theory', 1), ('wide', 1), ('spectrum', 1)]
[('text', 1), ('speech', 1), ('dialogue', 1), ('tsd', 1), ('conference', 1), ('noticed', 1), ('held', 1), ('fth', 1), ('time', 1), ('pleased', 1), ('observe', 1), ('short', 1), ('history', 1), ('turned', 1), ('international', 1), ('forum', 1), ('successfully', 1), ('intertwining', 1)]
[('th', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('workshop', 1), ('mining', 1), ('web', 1), ('data', 1), ('webkdd', 1), ('held', 1), ('chicago', 1), ('il', 1), ('usa', 1), ('august', 1), ('conjunction', 1), ('acm', 1), ('sigkdd', 1), ('conference', 1), ('knowledge', 1)]
[('die', 3), ('diese', 1), ('grundlegende', 1), ('einführung', 1), ('analysis', 1), ('wendet', 1), ('sich', 1), ('informatiker', 1), ('ersten', 1), ('studienabschnitt', 1), ('um', 1), ('speziell', 1), ('auf', 1), ('bedürfnisse', 1), ('de', 1), ('informatikstudiums', 1), ('einzugehen', 1), ('haben', 1), ('autoren', 1), ('diesem', 1), ('werk', 1), ('folgende', 1), ('konzepte', 1), ('zugrunde', 1), ('gelegt', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('formal', 1), ('concept', 1), ('analysis', 1), ('icfca', 1), ('held', 1), ('clermont', 1), ('ferrand', 1), ('france', 1), ('february', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('lecture', 1)]
[('lnai', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('asian', 1), ('conference', 1), ('intelligent', 1), ('information', 1), ('database', 1), ('system', 1), ('aciids', 1), ('held', 1), ('kaohsiung', 1), ('taiwan', 1), ('march', 1), ('revised', 1), ('paper', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('german', 1), ('conference', 1), ('multiagent', 1), ('system', 1), ('technology', 1), ('held', 1), ('trier', 1), ('germany', 1), ('october', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('parer', 1), ('invited', 1), ('carefully', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('advance', 1), ('natural', 1), ('language', 1), ('processing', 1), ('japtal', 1), ('kanazawa', 1), ('japan', 1), ('october', 1), ('full', 1), ('short', 1), ('presented', 1)]
[('semantic', 2), ('web', 2), ('book', 1), ('contains', 1), ('revised', 1), ('significantly', 1), ('extended', 1), ('version', 1), ('selected', 1), ('paper', 1), ('three', 1), ('workshop', 1), ('uncertainty', 1), ('reasoning', 1), ('ursw', 1), ('held', 1), ('international', 1), ('conference', 1), ('iswc', 1)]
[('workshop', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('agent', 1), ('data', 1), ('mining', 1), ('interaction', 1), ('admi', 1), ('held', 1), ('valencia', 1), ('spain', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('international', 2), ('case', 2), ('based', 2), ('reasoning', 2), ('biennial', 1), ('conference', 1), ('iccbr', 1), ('ries', 1), ('began', 1), ('sesimbra', 1), ('portugal', 1), ('intended', 1), ('provide', 1), ('forum', 1), ('best', 1), ('fundamental', 1), ('applied', 1), ('research', 1), ('cbr', 1)]
[('von', 3), ('die', 2), ('open', 2), ('source', 2), ('software', 2), ('und', 2), ('da', 1), ('buch', 1), ('präsentiert', 1), ('vielfältigen', 1), ('möglichkeiten', 1), ('zur', 1), ('unterstützung', 1), ('wissensmanagement', 1), ('der', 1), ('autor', 1), ('erläutert', 1), ('grundlagen', 1), ('einsatzmöglichkeiten', 1), ('beim', 1), ('knowledge', 1), ('management', 1), ('entwickelt', 1), ('auf', 1)]
[('mac', 2), ('o', 2), ('e', 2), ('sich', 2), ('von', 2), ('durch', 2), ('bei', 1), ('handelt', 1), ('um', 1), ('da', 1), ('jüngste', 1), ('betriebssystem', 1), ('apple', 1), ('computer', 1), ('unterscheidet', 1), ('vom', 1), ('vorgänger', 1), ('nicht', 1), ('nur', 1), ('eine', 1), ('vielzahl', 1), ('neuen', 1), ('funktionen', 1), ('und', 1), ('die', 1), ('neue', 1), ('benutzeroberfläche', 1), ('aqua', 1), ('sondern', 1), ('vor', 1), ('allen', 1), ('dingen', 1)]
[('für', 3), ('sind', 2), ('die', 2), ('der', 2), ('innovationen', 1), ('treibstoff', 1), ('wirtschaft', 1), ('sie', 1), ('sowohl', 1), ('unternehmen', 1), ('ein', 1), ('zentrales', 1), ('thema', 1), ('al', 1), ('auch', 1), ('gesamte', 1), ('volkswirtschaft', 1), ('eines', 1), ('landes', 1), ('deutschland', 1), ('kann', 1), ('angesichts', 1), ('herausforderungen', 1), ('globalisierung', 1), ('seinen', 1)]
[('computer', 2), ('mathematical', 2), ('communication', 1), ('technology', 1), ('advance', 1), ('greater', 1), ('opportunity', 1), ('arise', 1), ('intelligent', 1), ('computation', 1), ('algebra', 1), ('au', 1), ('mated', 1), ('deduction', 1), ('publishing', 1), ('long', 1), ('successful', 1), ('history', 1)]
[('volume', 1), ('brings', 1), ('together', 1), ('peer', 1), ('reviewed', 1), ('contribution', 1), ('participant', 1), ('cost', 1), ('international', 1), ('conference', 1), ('cross', 1), ('modal', 1), ('analysis', 1), ('speech', 1), ('gesture', 1), ('gaze', 1), ('facial', 1), ('expression', 1), ('held', 1), ('prague', 1), ('czech', 1), ('republic', 1), ('october', 1)]
[('nan', 1)]
[('machine', 2), ('translation', 2), ('information', 1), ('soup', 1), ('past', 1), ('fty', 1), ('year', 1), ('grown', 1), ('tantalizing', 1), ('dream', 1), ('respectable', 1), ('stable', 1), ('scienti', 1), ('linguistic', 1), ('enterprise', 1), ('user', 1), ('mercial', 1), ('system', 1), ('university', 1), ('research', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('industrial', 1), ('engineering', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('expert', 1), ('system', 1), ('iea', 1), ('aie', 1), ('held', 1), ('kyoto', 1), ('japan', 1), ('coverage', 1), ('includes', 1), ('text', 1), ('processing', 1)]
[('knowledge', 2), ('atthestartofthe', 1), ('stcentury', 1), ('wearenowwellonthewaytowardsaknowled', 1), ('intensive', 1), ('society', 1), ('play', 1), ('important', 1), ('role', 1), ('thus', 1), ('research', 1), ('interest', 1), ('inevitably', 1), ('shift', 1), ('information', 1), ('problem', 1), ('building', 1)]
[('embodied', 2), ('agent', 2), ('inhabiting', 2), ('play', 1), ('increasingly', 1), ('important', 1), ('role', 1), ('cognitive', 1), ('interaction', 1), ('technology', 1), ('main', 1), ('type', 1), ('virtual', 1), ('human', 1), ('simulated', 1), ('environment', 1), ('humanoid', 1), ('robot', 1), ('real', 1), ('world', 1), ('far', 1), ('research', 1)]
[('new', 2), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('dynamic', 1), ('field', 1), ('constantly', 1), ('expanding', 1), ('application', 1), ('area', 1), ('discovering', 1), ('research', 1), ('challenge', 1), ('facilitating', 1), ('devel', 1), ('ment', 1), ('innovative', 1), ('product', 1), ('today', 1), ('information', 1), ('overload', 1), ('rapid', 1)]
[('volume', 1), ('contains', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('data', 1), ('mining', 1), ('application', 1), ('adma', 1), ('held', 1), ('beijing', 1), ('china', 1), ('august', 1), ('pleased', 1), ('strong', 1), ('program', 1), ('acceptance', 1)]
[('system', 2), ('research', 1), ('holonic', 1), ('agent', 1), ('based', 1), ('developing', 1), ('rapidly', 1), ('community', 1), ('around', 1), ('topic', 1), ('growing', 1), ('fast', 1), ('despite', 1), ('fact', 1), ('real', 1), ('life', 1), ('practical', 1), ('implementation', 1), ('still', 1), ('surprisingly', 1), ('rare', 1)]
[('fuzzy', 3), ('set', 2), ('modern', 1), ('origin', 1), ('algebra', 1), ('decision', 1), ('making', 1), ('computing', 1), ('word', 1), ('conventionally', 1), ('traced', 1), ('lotfi', 1), ('zadeh', 1), ('publication', 1), ('path', 1), ('breaking', 1), ('refutation', 1), ('binary', 1), ('theory', 1), ('sixteen', 1), ('page', 1), ('article', 1)]
[('da', 2), ('einführung', 2), ('die', 2), ('vorliegende', 1), ('buch', 1), ('bietet', 1), ('eine', 1), ('vollständige', 1), ('imperativ', 1), ('prozedurale', 1), ('programmierung', 1), ('anhand', 1), ('der', 1), ('skriptsprache', 1), ('perl', 1), ('sukzessive', 1), ('von', 1), ('sprachkonstrukten', 1), ('mittels', 1), ('vieler', 1), ('praxisrelevanter', 1), ('beispiele', 1), ('erleichtert', 1)]
[('die', 2), ('diesis', 1), ('buch', 1), ('führt', 1), ('simulation', 1), ('diskreter', 1), ('prozesse', 1), ('ein', 1), ('typische', 1), ('anwendungsbeispiele', 1), ('sind', 1), ('fertigungsprozesse', 1), ('strassenverkehrssituationen', 1), ('menschenströme', 1), ('und', 1), ('geschäftsprozesse', 1), ('der', 1), ('autor', 1), ('vermittelt', 1), ('grundlegende', 1), ('ereignisorientierte', 1)]
[('conference', 3), ('th', 1), ('international', 1), ('conceptual', 1), ('structure', 1), ('icc', 1), ('latest', 1), ('series', 1), ('annual', 1), ('held', 1), ('europe', 1), ('tralia', 1), ('north', 1), ('america', 1), ('focus', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('rd', 1), ('annual', 1), ('german', 1), ('conference', 1), ('arti', 1), ('cial', 1), ('intelligence', 1), ('ki', 1), ('took', 1), ('place', 1), ('karlsruhe', 1), ('institute', 1), ('technology', 1), ('kit', 1), ('september', 1), ('motto', 1), ('anthropomatic', 1), ('system', 1), ('volume', 1), ('nd', 1), ('keynote', 1), ('paper', 1)]
[('die', 2), ('und', 2), ('grundkenntnisse', 1), ('objektorientierter', 1), ('methodik', 1), ('deren', 1), ('zugrundeliegende', 1), ('konzepte', 1), ('sowie', 1), ('analyse', 1), ('entwurfstechniken', 1), ('sind', 1), ('gegenstand', 1), ('diesis', 1), ('lehrbuchs', 1), ('anwendungsbeispiele', 1), ('programmierung', 1), ('runden', 1), ('da', 1), ('werk', 1), ('ab', 1), ('vordergrund', 1), ('steht', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('language', 1), ('processing', 1), ('knowledge', 1), ('web', 1), ('gscl', 1), ('held', 1), ('darmstadt', 1), ('germany', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('modeling', 1), ('decision', 1), ('artificial', 1), ('intelligence', 1), ('mdai', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('november', 1), ('paper', 1), ('presented', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1)]
[('aicol', 2), ('book', 1), ('constitutes', 1), ('revised', 1), ('selected', 1), ('paper', 1), ('international', 1), ('workshop', 1), ('artificial', 1), ('intelligence', 1), ('approach', 1), ('complexity', 1), ('legal', 1), ('system', 1), ('iv', 1), ('held', 1), ('first', 1), ('took', 1), ('place', 1), ('part', 1), ('th', 1), ('ivr', 1), ('congress', 1)]
[('und', 2), ('von', 2), ('diese', 1), ('leichtverständliche', 1), ('einführung', 1), ('behandelt', 1), ('aufbau', 1), ('funktionsweise', 1), ('mikrorechner', 1), ('systemen', 1), ('universell', 1), ('programmierbare', 1), ('digitalrechner', 1), ('mit', 1), ('einem', 1), ('oder', 1), ('mehreren', 1), ('mikroprozessoren', 1), ('al', 1), ('kern', 1), ('schwerpunkte', 1), ('sind', 1), ('architektur', 1), ('programmierung', 1)]
[('schaltungen', 2), ('die', 2), ('diese', 1), ('einführung', 1), ('den', 1), ('funktionalen', 1), ('entwurf', 1), ('digitaler', 1), ('behandelt', 1), ('methoden', 1), ('zum', 1), ('logik', 1), ('steuerwerks', 1), ('und', 1), ('datenpfadentwurf', 1), ('sowie', 1), ('implementierung', 1), ('solcher', 1), ('entwürfe', 1), ('integrierten', 1), ('außerdem', 1), ('deckt', 1), ('sie', 1), ('wesentlichen', 1), ('aspekte', 1)]
[('science', 2), ('many', 2), ('made', 1), ('progress', 1), ('twentieth', 1), ('century', 1), ('establishment', 1), ('proper', 1), ('discipline', 1), ('field', 1), ('physic', 1), ('computer', 1), ('molecular', 1), ('biology', 1), ('others', 1), ('time', 1), ('emerged', 1), ('engineering', 1), ('idea', 1)]
[('und', 4), ('zu', 2), ('da', 1), ('buch', 1), ('beschreibt', 1), ('pragmatische', 1), ('instrumente', 1), ('methoden', 1), ('die', 1), ('software', 1), ('entwicklern', 1), ('fachexperten', 1), ('dabei', 1), ('helfen', 1), ('ein', 1), ('gemeinsames', 1), ('problem', 1), ('lösungsverständnis', 1), ('entwickeln', 1), ('projekte', 1), ('managen', 1), ('das', 1), ('risiken', 1), ('fair', 1), ('zwischen', 1), ('auftraggeber', 1)]
[('und', 3), ('werden', 2), ('da', 2), ('dem', 1), ('band', 1), ('leser', 1), ('schrittweise', 1), ('die', 1), ('modellierung', 1), ('den', 1), ('rechnergestützten', 1), ('entwurf', 1), ('digitaler', 1), ('schaltungen', 1), ('herangeführt', 1), ('behandelt', 1), ('logische', 1), ('zeitverhalten', 1), ('laufzeittoleranz', 1), ('automaten', 1), ('andere', 1), ('verhaltensmodelle', 1)]
[('die', 2), ('der', 2), ('bildverarbeitung', 2), ('da', 1), ('buch', 1), ('gibt', 1), ('eine', 1), ('einführung', 1), ('praxis', 1), ('mit', 1), ('softwarepaketen', 1), ('wie', 1), ('imagej', 1), ('neben', 1), ('eigentlichen', 1), ('digitalen', 1), ('und', 1), ('den', 1), ('ihr', 1), ('zugrunde', 1), ('liegenden', 1), ('mathematischen', 1), ('prinzipien', 1), ('werden', 1), ('auch', 1), ('objekterkennung', 1), ('bildern', 1)]
[('book', 1), ('constitutes', 1), ('strictly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('automated', 1), ('deduction', 1), ('cade', 1), ('held', 1), ('townsville', 1), ('north', 1), ('queensland', 1), ('australia', 1), ('july', 1), ('volume', 1), ('present', 1), ('revised', 1), ('full', 1), ('paper', 1), ('selected', 1)]
[('nan', 1)]
[('faced', 1), ('challenge', 1), ('solving', 1), ('hard', 1), ('optimization', 1), ('problem', 1), ('abound', 1), ('real', 1), ('world', 1), ('existing', 1), ('method', 1), ('often', 1), ('encounter', 1), ('difficulty', 1), ('important', 1), ('application', 1), ('business', 1), ('engineering', 1), ('economics', 1), ('tackled', 1), ('technique', 1)]
[('nan', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('international', 1), ('ifip', 1), ('wg', 1), ('advance', 1), ('production', 1), ('management', 1), ('system', 1), ('apms', 1), ('held', 1), ('stavanger', 1), ('norway', 1), ('september', 1), ('revised', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('ifip', 1), ('wg', 1), ('working', 1), ('conference', 1), ('shaping', 1), ('future', 1), ('ict', 1), ('research', 1), ('held', 1), ('tampa', 1), ('fl', 1), ('usa', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('socolnet', 1), ('doctoral', 1), ('conference', 1), ('computing', 1), ('electrical', 1), ('industrial', 1), ('system', 1), ('doceis', 1), ('held', 1), ('costa', 1), ('de', 1), ('caparica', 1), ('portugal', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('nan', 1)]
[('book', 3), ('eighteen', 1), ('chapter', 1), ('present', 1), ('latest', 1), ('application', 1), ('lattice', 1), ('theory', 1), ('computational', 1), ('intelligence', 1), ('ci', 1), ('focus', 1), ('neural', 1), ('computation', 1), ('mathematical', 1), ('morphology', 1), ('machine', 1), ('learning', 1), ('fuzzy', 1), ('inference', 1), ('logic', 1), ('come', 1)]
[('nan', 1)]
[('computing', 2), ('term', 1), ('soft', 1), ('applies', 1), ('variant', 1), ('combination', 1), ('four', 1), ('broad', 1), ('category', 1), ('evolutionary', 1), ('neural', 1), ('network', 1), ('fuzzy', 1), ('logic', 1), ('bayesian', 1), ('statistic', 1), ('although', 1), ('separate', 1), ('strength', 1), ('complem', 1), ('tary', 1)]
[('decision', 3), ('making', 1), ('dm', 1), ('ubiquitous', 1), ('natural', 1), ('artificial', 1), ('system', 1), ('made', 1), ('often', 1), ('differ', 1), ('recommended', 1), ('axiomatically', 1), ('grounded', 1), ('normative', 1), ('bayesian', 1), ('theory', 1), ('large', 1), ('part', 1), ('due', 1), ('limited', 1), ('cognitive', 1)]
[('distributed', 2), ('information', 2), ('filtering', 2), ('retrieval', 2), ('volume', 1), ('focus', 1), ('new', 1), ('challenge', 1), ('collect', 1), ('invited', 1), ('chapter', 1), ('extended', 1), ('research', 1), ('contribution', 1), ('special', 1), ('session', 1), ('novel', 1), ('system', 1)]
[('intelligent', 2), ('autonomous', 2), ('carefully', 1), ('edited', 1), ('volume', 1), ('aim', 1), ('providing', 1), ('reader', 1), ('recent', 1), ('progress', 1), ('system', 1), ('particular', 1), ('emphasis', 1), ('ground', 1), ('aerial', 1), ('underwater', 1), ('vehicle', 1), ('service', 1), ('robot', 1)]
[('method', 2), ('field', 2), ('data', 2), ('analysis', 2), ('volume', 1), ('present', 1), ('selection', 1), ('new', 1), ('approach', 1), ('exploratory', 1), ('reader', 1), ('find', 1), ('numerous', 1), ('idea', 1), ('example', 1), ('cross', 1), ('disciplinary', 1), ('application', 1), ('classification', 1)]
[('und', 4), ('dem', 2), ('mit', 1), ('ihrer', 1), ('jahrestagung', 1), ('bietet', 1), ('die', 1), ('gi', 1), ('fachgruppe', 1), ('echtzeitsysteme', 1), ('pearl', 1), ('nutzern', 1), ('herstellern', 1), ('ein', 1), ('forum', 1), ('auf', 1), ('neue', 1), ('trend', 1), ('entwicklungen', 1), ('zu', 1), ('zahlreichen', 1), ('themen', 1), ('au', 1), ('bereich', 1), ('der', 1), ('mobilität', 1), ('echtzeit', 1), ('vorgestellt', 1), ('werden', 1), ('da', 1)]
[('die', 2), ('da', 2), ('auch', 2), ('klassische', 1), ('druckvorstufe', 1), ('wurde', 1), ('durch', 1), ('heute', 1), ('dominierende', 1), ('desktop', 1), ('publishing', 1), ('abgelöst', 1), ('dadurch', 1), ('wurden', 1), ('rollen', 1), ('der', 1), ('prozessbeteiligten', 1), ('neu', 1), ('definiert', 1), ('vorliegende', 1), ('werk', 1), ('bietet', 1), ('autoren', 1), ('fotografen', 1), ('designern', 1), ('oder', 1), ('zunehmend', 1)]
[('nan', 1)]
[('und', 5), ('da', 1), ('standardwerk', 1), ('für', 1), ('mediengestalter', 1), ('ausbildung', 1), ('studium', 1), ('praxis', 1), ('wurde', 1), ('vollständig', 1), ('überarbeitet', 1), ('deutlich', 1), ('erweitert', 1), ('daher', 1), ('erscheint', 1), ('die', 1), ('auflage', 1), ('zwei', 1), ('bänden', 1), ('konzeption', 1), ('gestaltung', 1), ('produktion', 1), ('technik', 1), ('völlig', 1), ('neu', 1)]
[('scee', 2), ('conference', 2), ('book', 1), ('collection', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('last', 1), ('scientific', 1), ('computing', 1), ('electrical', 1), ('engineering', 1), ('held', 1), ('sinaia', 1), ('romania', 1), ('series', 1), ('aim', 1), ('addressing', 1), ('mathematical', 1), ('problem', 1)]
[('der', 3), ('und', 2), ('netzwerke', 1), ('werden', 1), ('allen', 1), ('bereichen', 1), ('eingesetzt', 1), ('e', 1), ('gibt', 1), ('zahlreiche', 1), ('technologien', 1), ('zur', 1), ('sicheren', 1), ('netzwerkkommunikation', 1), ('doch', 1), ('welche', 1), ('verfügbaren', 1), ('techniken', 1), ('lassen', 1), ('sich', 1), ('kombinieren', 1), ('praxis', 1), ('effektiv', 1), ('einsetzen', 1), ('die', 1), ('autoren', 1), ('geben', 1)]
[('der', 2), ('ob', 1), ('ausbildung', 1), ('oder', 1), ('studium', 1), ('da', 1), ('professionelle', 1), ('aufbereiten', 1), ('und', 1), ('darstellen', 1), ('von', 1), ('information', 1), ('stellt', 1), ('eine', 1), ('berufliche', 1), ('kernkompetenz', 1), ('dar', 1), ('arbeitswelt', 1), ('mus', 1), ('sowohl', 1), ('betriebsintern', 1), ('al', 1), ('auch', 1), ('kontakt', 1), ('mit', 1), ('kunden', 1), ('ständig', 1), ('präsentiert', 1), ('werden', 1)]
[('edition', 2), ('new', 2), ('second', 1), ('revised', 1), ('book', 1), ('suggested', 1), ('impressive', 1), ('sale', 1), ('first', 1), ('fortunately', 1), ('enabled', 1), ('incorporate', 1), ('important', 1), ('result', 1), ('obtained', 1), ('assom', 1), ('adaptive', 1), ('subspace', 1), ('som', 1)]
[('nan', 1)]
[('application', 2), ('book', 1), ('cover', 1), ('underlying', 1), ('science', 1), ('issue', 1), ('related', 1), ('aggregation', 1), ('operator', 1), ('focusing', 1), ('tool', 1), ('used', 1), ('practical', 1), ('involve', 1), ('numerical', 1), ('information', 1), ('thus', 1), ('required', 1), ('reading', 1), ('engineer', 1), ('statistician', 1)]
[('mit', 1), ('dem', 1), ('internet', 1), ('der', 1), ('dinge', 1), ('zeichnet', 1), ('sich', 1), ('ein', 1), ('fundamentaler', 1), ('technik', 1), ('trend', 1), ('ab', 1), ('dessen', 1), ('betriebswirtschaftliche', 1), ('konsequenzen', 1), ('und', 1), ('chancen', 1), ('hier', 1), ('erstmals', 1), ('erläutert', 1), ('werden', 1), ('da', 1), ('buch', 1), ('stellt', 1), ('dabei', 1), ('nicht', 1), ('nur', 1), ('eine', 1), ('klare', 1), ('technologisch', 1), ('wie', 1), ('ökonomisch', 1)]
[('der', 4), ('mit', 1), ('dieser', 1), ('neuauflage', 1), ('liegt', 1), ('klassiker', 1), ('digitaltechnik', 1), ('nun', 1), ('vierten', 1), ('auflage', 1), ('vor', 1), ('da', 1), ('buch', 1), ('behandelt', 1), ('prinzipien', 1), ('und', 1), ('methoden', 1), ('für', 1), ('den', 1), ('entwurf', 1), ('digitaler', 1), ('systeme', 1), ('dabei', 1), ('stehen', 1), ('betrachtungen', 1), ('auf', 1), ('logikschaltungsebene', 1), ('bi', 1), ('zur', 1)]
[('für', 2), ('und', 2), ('typografische', 1), ('animationen', 1), ('werden', 1), ('sehr', 1), ('häufig', 1), ('banner', 1), ('werbung', 1), ('internet', 1), ('genutzt', 1), ('auf', 1), ('webseiten', 1), ('werbefilme', 1), ('sowie', 1), ('filmtrailer', 1), ('abspänne', 1), ('ankündigungen', 1), ('kino', 1), ('tv', 1), ('da', 1), ('anvisierte', 1), ('buch', 1), ('bietet', 1), ('neben', 1), ('den', 1), ('grundlagen', 1), ('von', 1), ('typografischen', 1)]
[('emotion', 2), ('human', 2), ('pervades', 1), ('life', 1), ('general', 1), ('communication', 1), ('particular', 1), ('set', 1), ('information', 1), ('technology', 1), ('challenge', 1), ('traditionally', 1), ('focused', 1), ('allowing', 1), ('accomplish', 1), ('practical', 1), ('task', 1), ('efficiently', 1), ('setting', 1)]
[('und', 3), ('multitouch', 1), ('interface', 1), ('instrumentengestützte', 1), ('eingabetechniken', 1), ('bestimmen', 1), ('inzwischen', 1), ('den', 1), ('umgang', 1), ('mit', 1), ('digitalen', 1), ('geräten', 1), ('interaktion', 1), ('zwischen', 1), ('mensch', 1), ('technik', 1), ('wird', 1), ('dem', 1), ('buch', 1), ('al', 1), ('ein', 1), ('wechselspiel', 1), ('von', 1), ('gesten', 1), ('mimik', 1), ('betrachtet', 1), ('auch', 1), ('seitens', 1)]
[('rare', 3), ('category', 2), ('many', 1), ('real', 1), ('world', 1), ('problem', 1), ('minority', 1), ('class', 1), ('play', 1), ('essential', 1), ('role', 1), ('despite', 1), ('extreme', 1), ('scarcity', 1), ('discovery', 1), ('characterization', 1), ('prediction', 1), ('example', 1), ('protect', 1), ('fraudulent', 1), ('malicious', 1)]
[('der', 3), ('und', 2), ('die', 2), ('alle', 1), ('aspekte', 1), ('modernen', 1), ('video', 1), ('videostudiotechnik', 1), ('werden', 1), ('behandelt', 1), ('für', 1), ('medientechniker', 1), ('ingenieure', 1), ('oder', 1), ('studierende', 1), ('medientechnik', 1), ('nachrichten', 1), ('telekommunikationstechnik', 1), ('von', 1), ('interesse', 1), ('sind', 1), ('dazu', 1), ('gehören', 1), ('grundlagen', 1)]
[('und', 4), ('sprache', 2), ('der', 2), ('die', 2), ('ist', 1), ('eine', 1), ('objektorientierte', 1), ('interpretierte', 1), ('programmierumgebung', 1), ('für', 1), ('datenanalyse', 1), ('grafik', 1), ('ausführlich', 1), ('führt', 1), ('autor', 1), ('grundlagen', 1), ('ein', 1), ('vermittelt', 1), ('eingängig', 1), ('struktur', 1), ('ermöglicht', 1), ('er', 1), ('lesern', 1), ('den', 1), ('leichten', 1)]
[('research', 2), ('overview', 1), ('recent', 1), ('progress', 1), ('computational', 1), ('physic', 1), ('material', 1), ('science', 1), ('particular', 1), ('topic', 1), ('modelling', 1), ('traffic', 1), ('flow', 1), ('complex', 1), ('multi', 1), ('scale', 1), ('solidification', 1), ('phenomenon', 1), ('section', 1), ('introduce', 1), ('novel', 1), ('result', 1)]
[('detail', 1), ('nbsp', 1), ('robustness', 1), ('stability', 1), ('performance', 1), ('evolutionary', 1), ('algorithm', 1), ('dynamic', 1), ('environment', 1)]
[('die', 2), ('schönheit', 1), ('der', 1), ('natur', 1), ('mit', 1), ('dem', 1), ('rechner', 1), ('nachzubilden', 1), ('fasziniert', 1), ('computergraphik', 1), ('seit', 1), ('jeher', 1), ('vorliegenden', 1), ('buch', 1), ('werden', 1), ('verfahren', 1), ('zur', 1), ('erzeugung', 1), ('künstlicher', 1), ('pflanzenmodelle', 1), ('beschrieben', 1), ('und', 1), ('deren', 1), ('anwendung', 1), ('bereichen', 1), ('wie', 1), ('simulation', 1), ('virtual', 1)]
[('der', 4), ('und', 3), ('wahrnehmung', 2), ('den', 2), ('schwerpunkt', 1), ('diesis', 1), ('buches', 1), ('liegt', 1), ('auseinandersetzung', 1), ('mit', 1), ('prozessen', 1), ('menschlichen', 1), ('möglichkeiten', 1), ('informationstransfer', 1), ('rahmen', 1), ('konzeption', 1), ('gestaltung', 1), ('von', 1), ('gebrauchsanleitungen', 1), ('zu', 1), ('steuern', 1)]
[('part', 3), ('edition', 2), ('ii', 2), ('overall', 1), ('structure', 1), ('new', 1), ('three', 1), ('tier', 1), ('present', 1), ('basic', 1), ('concerned', 1), ('methodological', 1), ('issue', 1), ('discus', 1), ('advanced', 1), ('topic', 1), ('second', 1), ('author', 1), ('reorganized', 1), ('material', 1), ('focus', 1)]
[('nan', 1)]
[('nan', 1)]
[('der', 2), ('beispielhafte', 1), ('news', 1), ('site', 1), ('au', 1), ('dem', 1), ('world', 1), ('wide', 1), ('web', 1), ('stehen', 1), ('mittelpunkt', 1), ('dieser', 1), ('publikation', 1), ('die', 1), ('autoren', 1), ('stellen', 1), ('interessante', 1), ('detail', 1), ('vor', 1), ('und', 1), ('diskutieren', 1), ('verschiedene', 1), ('herangehensweisen', 1), ('globalen', 1), ('medienlandschaft', 1), ('leser', 1), ('erhält', 1)]
[('evolutionary', 2), ('vision', 2), ('book', 1), ('explains', 1), ('theory', 1), ('application', 1), ('computer', 1), ('new', 1), ('paradigm', 1), ('challenging', 1), ('problem', 1), ('approached', 1), ('using', 1), ('technique', 1), ('computing', 1), ('methodology', 1), ('achieves', 1), ('excellent', 1), ('result', 1)]
[('nan', 1)]
[('verfahren', 3), ('die', 2), ('bildgebende', 1), ('spielen', 1), ('eine', 1), ('zentrale', 1), ('rolle', 1), ('der', 1), ('modernen', 1), ('medizin', 1), ('neuerer', 1), ('zeit', 1), ('gewinnen', 1), ('hier', 1), ('insbesondere', 1), ('für', 1), ('operationsplanung', 1), ('und', 1), ('computergestützte', 1), ('chirurgie', 1), ('zunehmend', 1), ('bedeutung', 1), ('entwicklung', 1), ('neuer', 1)]
[('web', 3), ('step', 2), ('und', 2), ('ihnen', 2), ('design', 1), ('kreativ', 1), ('setzt', 1), ('neue', 1), ('maßstäbe', 1), ('publishing', 1), ('anleitungen', 1), ('beispiele', 1), ('au', 1), ('top', 1), ('agenturen', 1), ('helfen', 1), ('bei', 1), ('der', 1), ('gestaltung', 1), ('erstklassiger', 1), ('site', 1), ('praktische', 1), ('tip', 1), ('trick', 1), ('zeigen', 1), ('wie', 1), ('sie', 1), ('mit', 1), ('ausgefallenen', 1)]
[('diesis', 1), ('buch', 1), ('liefert', 1), ('eine', 1), ('anwendungsorientierte', 1), ('einführung', 1), ('die', 1), ('datenauswertung', 1), ('mit', 1), ('der', 1), ('freien', 1), ('statistikumgebung', 1), ('e', 1), ('behandelt', 1), ('deskriptive', 1), ('auswertungen', 1), ('ebenso', 1), ('umfassend', 1), ('wie', 1), ('inferenzstatistische', 1), ('analysen', 1), ('neben', 1), ('klassischen', 1), ('univariaten', 1), ('verfahren', 1)]
[('der', 3), ('die', 2), ('multimedia', 2), ('vorträge', 1), ('diesis', 1), ('bandes', 1), ('geben', 1), ('einen', 1), ('aktuellen', 1), ('überblick', 1), ('über', 1), ('entwicklungen', 1), ('ausbildung', 1), ('automatisierung', 1), ('und', 1), ('robotik', 1), ('darstellungen', 1), ('zu', 1), ('echtzeitaspekten', 1), ('bei', 1), ('anwendungen', 1), ('runden', 1), ('da', 1), ('werk', 1), ('ab', 1)]
[('recombination', 2), ('mutation', 2), ('despite', 1), ('decade', 1), ('work', 1), ('evolutionary', 1), ('algorithm', 1), ('remains', 1), ('uncertainty', 1), ('relative', 1), ('benefit', 1), ('detriment', 1), ('using', 1), ('book', 1), ('provides', 1), ('characterization', 1), ('role', 1), ('play', 1)]
[('value', 3), ('software', 2), ('community', 1), ('always', 1), ('struggled', 1), ('question', 1), ('concerning', 1), ('organization', 1), ('investment', 1), ('hardware', 1), ('goal', 1), ('based', 1), ('engineering', 1), ('vbse', 1), ('develop', 1), ('model', 1), ('measure', 1), ('use', 1)]
[('die', 3), ('der', 3), ('rfid', 2), ('technologie', 2), ('bietet', 1), ('unternehmen', 1), ('eine', 1), ('vielzahl', 1), ('von', 1), ('vorteilen', 1), ('bereich', 1), ('automatisierung', 1), ('und', 1), ('prozesstransparenz', 1), ('dem', 1), ('buch', 1), ('stellen', 1), ('autoren', 1), ('grundlegenden', 1), ('funktionen', 1), ('sowie', 1), ('lösungskonzepte', 1), ('zur', 1), ('integration', 1)]
[('internet', 2), ('th', 1), ('online', 1), ('world', 1), ('conference', 1), ('soft', 1), ('computing', 1), ('industrial', 1), ('application', 1), ('held', 1), ('constitutes', 1), ('distinctive', 1), ('opportunity', 1), ('present', 1), ('discus', 1), ('high', 1), ('quality', 1), ('paper', 1), ('making', 1), ('use', 1), ('sophisticated', 1), ('tool', 1), ('without', 1), ('incurring', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('study', 1), ('institute', 1), ('object', 1), ('oriented', 1), ('database', 1), ('system', 1), ('held', 1), ('izmir', 1), ('kusadasi', 1), ('turkey', 1), ('august', 1)]
[('die', 2), ('eine', 2), ('informatik', 1), ('ist', 1), ('junge', 1), ('wissenschaft', 1), ('sich', 1), ('durch', 1), ('einen', 1), ('rasanten', 1), ('technischen', 1), ('fortschritt', 1), ('auszeichnet', 1), ('dadurch', 1), ('wird', 1), ('häufig', 1), ('übersehen', 1), ('das', 1), ('aktuelle', 1), ('themen', 1), ('teilweise', 1), ('lange', 1), ('entwicklungsgeschichte', 1), ('durchlaufen', 1), ('haben', 1), ('informatikprofessoren', 1)]
[('security', 2), ('today', 1), ('society', 1), ('issue', 1), ('become', 1), ('crucial', 1), ('volume', 1), ('brings', 1), ('together', 1), ('contribution', 1), ('use', 1), ('knowledge', 1), ('based', 1), ('technology', 1), ('application', 1), ('world', 1), ('leading', 1), ('researcher', 1), ('field', 1)]
[('system', 2), ('book', 1), ('contains', 1), ('thoroughly', 1), ('refereed', 1), ('revised', 1), ('best', 1), ('paper', 1), ('th', 1), ('international', 1), ('conference', 1), ('web', 1), ('information', 1), ('technology', 1), ('webist', 1), ('held', 1), ('valencia', 1), ('spain', 1), ('april', 1), ('organized', 1), ('institute', 1)]
[('agent', 2), ('volume', 1), ('contains', 1), ('ten', 1), ('thoroughly', 1), ('refereed', 1), ('revised', 1), ('paper', 1), ('detailing', 1), ('recent', 1), ('advance', 1), ('research', 1), ('designing', 1), ('trading', 1), ('mechanism', 1), ('mediated', 1), ('commerce', 1), ('originally', 1), ('presented', 1), ('th', 1), ('international', 1), ('workshop', 1)]
[('icec', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('electronic', 1), ('commerce', 1), ('held', 1), ('turku', 1), ('finland', 1), ('august', 1), ('theme', 1), ('effective', 1), ('agile', 1), ('trusted', 1), ('service', 1), ('co', 1), ('creation', 1)]
[('nan', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conferenceproceedings', 1), ('third', 1), ('international', 1), ('joint', 1), ('conference', 1), ('biomedicalengineering', 1), ('system', 1), ('technology', 1), ('biostec', 1), ('held', 1), ('valencia', 1), ('spain', 1), ('january', 1), ('revised', 1), ('full', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('secondinternational', 1), ('conference', 1), ('advance', 1), ('communication', 1), ('network', 1), ('andcomputing', 1), ('cnc', 1), ('held', 1), ('bangalore', 1), ('india', 1), ('march', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('sta', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('held', 1), ('conjunction', 1), ('th', 1), ('fira', 1), ('international', 1), ('conference', 1), ('secure', 1), ('trust', 1), ('computing', 1), ('data', 1), ('management', 1), ('application', 1), ('crete', 1), ('greece', 1), ('june', 1)]
[('ccis', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('computer', 1), ('science', 1), ('education', 1), ('cse', 1), ('held', 1), ('qingdao', 1), ('china', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('technology', 1), ('network', 1), ('development', 1), ('icend', 1), ('held', 1), ('dar', 1), ('e', 1), ('salaam', 1), ('tanzania', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('ccis', 4), ('volume', 2), ('second', 1), ('part', 1), ('four', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('computing', 1), ('communication', 1), ('acc', 1), ('held', 1), ('kochi', 1), ('india', 1), ('july', 1)]
[('four', 1), ('volume', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('symposium', 1), ('applied', 1), ('economics', 1), ('business', 1), ('development', 1), ('isaebd', 1), ('held', 1), ('dalian', 1), ('china', 1), ('august', 1), ('paper', 1), ('address', 1), ('issue', 1)]
[('six', 1), ('volume', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('computing', 1), ('information', 1), ('control', 1), ('iccic', 1), ('held', 1), ('wuhan', 1), ('china', 1), ('september', 1), ('paper', 1), ('organized', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('convergence', 1), ('hybrid', 1), ('information', 1), ('technology', 1), ('ichit', 1), ('held', 1), ('daejeon', 1), ('korea', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('ccis', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('enterprise', 1), ('information', 1), ('system', 1), ('centeris', 1), ('held', 1), ('vilamoura', 1), ('portugal', 1), ('september', 1), ('approx', 1), ('revised', 1)]
[('conference', 3), ('computer', 3), ('vision', 2), ('book', 1), ('includes', 1), ('selected', 1), ('paper', 1), ('visigrapp', 1), ('joint', 1), ('graphic', 1), ('comprising', 1), ('component', 1), ('namely', 1), ('international', 1), ('theory', 1), ('application', 1), ('visapp', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('joint', 1), ('conference', 1), ('robotics', 1), ('lars', 1), ('sbr', 1), ('robocontrol', 1), ('held', 1), ('são', 1), ('carlos', 1), ('brazil', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('für', 3), ('die', 3), ('neue', 2), ('printmedienunternehmen', 1), ('haben', 1), ('sich', 1), ('durch', 1), ('da', 1), ('internet', 1), ('geschäftsfelder', 1), ('eröffnet', 1), ('informationen', 1), ('werden', 1), ('sowohl', 1), ('papier', 1), ('al', 1), ('auch', 1), ('onlineausgabe', 1), ('aufbereitet', 1), ('möglichkeiten', 1), ('der', 1), ('zusammenarbeit', 1), ('mit', 1), ('kunden', 1), ('und', 1)]
[('problem', 2), ('book', 1), ('concerned', 1), ('solution', 1), ('associated', 1), ('exchange', 1), ('data', 1), ('different', 1), ('computer', 1), ('aided', 1), ('design', 1), ('engineering', 1), ('manufacturing', 1), ('cax', 1), ('system', 1), ('analysis', 1), ('current', 1), ('new', 1), ('strategy', 1), ('consisting', 1)]
[('nan', 1)]
[('nan', 1)]
[('die', 2), ('von', 2), ('und', 2), ('anordnung', 2), ('hier', 1), ('vorgelegte', 1), ('sammlung', 1), ('aufgaben', 1), ('lösungen', 1), ('ergänzt', 1), ('da', 1), ('lehrbuch', 1), ('informatik', 1), ('eine', 1), ('einführende', 1), ('übersicht', 1), ('bauer', 1), ('goo', 1), ('heidelberger', 1), ('taschenbücher', 1), ('bd', 1), ('entspricht', 1), ('kapitelweise', 1), ('der', 1)]
[('nan', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('study', 1), ('institute', 1), ('computational', 1), ('model', 1), ('speech', 1), ('pattern', 1), ('processing', 1), ('held', 1), ('st', 1), ('helier', 1), ('jersey', 1), ('uk', 1), ('july', 1)]
[('proceeding', 1), ('originating', 1), ('nato', 1), ('advanced', 1), ('research', 1), ('workshop', 1), ('intelligent', 1), ('learning', 1), ('environment', 1), ('case', 1), ('geometry', 1), ('held', 1), ('grenoble', 1), ('france', 1), ('november', 1)]
[('neural', 4), ('network', 3), ('present', 1), ('concept', 1), ('model', 1), ('technique', 1), ('parallel', 1), ('distributed', 1), ('processing', 1), ('three', 1), ('step', 1), ('approach', 1), ('brief', 1), ('overview', 1), ('structure', 1), ('brain', 1), ('history', 1), ('modeling', 1), ('introduces', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('research', 1), ('workshop', 1), ('automating', 1), ('instructional', 1), ('design', 1), ('development', 1), ('delivery', 1), ('held', 1), ('sitges', 1), ('spain', 1), ('march', 1)]
[('information', 2), ('central', 1), ('nervous', 1), ('system', 1), ('considered', 1), ('aggregate', 1), ('neuron', 1), ('specialized', 1), ('transmission', 1), ('transformation', 1), ('used', 1), ('many', 1), ('purpose', 1), ('probably', 1), ('important', 1), ('generate', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('study', 1), ('institute', 1), ('parallel', 1), ('computing', 1), ('distributed', 1), ('memory', 1), ('multiprocessor', 1), ('held', 1), ('bilkent', 1), ('university', 1), ('ankara', 1), ('turkey', 1), ('july', 1)]
[('new', 2), ('change', 2), ('multimedia', 1), ('environment', 1), ('suggest', 1), ('perception', 1), ('state', 1), ('integration', 1), ('technology', 1), ('increase', 1), ('ability', 1), ('process', 1), ('information', 1), ('moreover', 1), ('obliging', 1), ('idea', 1), ('knowledge', 1)]
[('event', 3), ('book', 1), ('provides', 1), ('depth', 1), ('description', 1), ('based', 1), ('system', 1), ('covering', 1), ('topic', 1), ('ranging', 1), ('local', 1), ('matching', 1), ('distributed', 1), ('forwarding', 1), ('algorithm', 1), ('practical', 1), ('discussion', 1), ('software', 1), ('engineering', 1), ('issue', 1), ('raised', 1)]
[('image', 2), ('processing', 2), ('communication', 2), ('book', 1), ('written', 1), ('inform', 1), ('prospective', 1), ('reader', 1), ('current', 1), ('trend', 1), ('area', 1), ('represent', 1), ('dynamic', 1), ('part', 1), ('computer', 1), ('science', 1), ('playing', 1), ('increasingly', 1), ('important', 1), ('role', 1)]
[('mechanic', 2), ('civil', 2), ('engineering', 2), ('model', 1), ('method', 1), ('collect', 1), ('leading', 1), ('paper', 1), ('dealing', 1), ('actual', 1), ('problem', 1), ('approach', 1), ('line', 1), ('italian', 1), ('french', 1), ('school', 1), ('deeply', 1), ('couple', 1), ('mathematics', 1), ('creating', 1)]
[('computer', 3), ('network', 2), ('volume', 1), ('includes', 1), ('set', 1), ('selected', 1), ('paper', 1), ('extended', 1), ('revised', 1), ('international', 1), ('conference', 1), ('informatics', 1), ('cybernetics', 1), ('engineering', 1), ('often', 1), ('simply', 1), ('referred', 1), ('collection', 1)]
[('application', 2), ('book', 1), ('serf', 1), ('first', 1), ('introduction', 1), ('computer', 1), ('programming', 1), ('scientific', 1), ('using', 1), ('high', 1), ('level', 1), ('python', 1), ('language', 1), ('exposition', 1), ('example', 1), ('problem', 1), ('oriented', 1), ('taken', 1), ('mathematics', 1), ('numerical', 1)]
[('linux', 2), ('unix', 2), ('der', 2), ('diesis', 1), ('handliche', 1), ('nachschlagewerk', 1), ('enthält', 1), ('alle', 1), ('relevanten', 1), ('informationen', 1), ('für', 1), ('oder', 1), ('anwender', 1), ('entwickler', 1), ('und', 1), ('administratoren', 1), ('e', 1), ('ist', 1), ('die', 1), ('ideale', 1), ('ergänzung', 1), ('zu', 1), ('keine', 1), ('angst', 1), ('vor', 1), ('gleichen', 1), ('autorin', 1), ('da', 1), ('reihe', 1), ('xpert', 1), ('press', 1)]
[('technology', 2), ('semantic', 2), ('web', 2), ('library', 1), ('always', 1), ('inspiration', 1), ('standard', 1), ('developed', 1), ('activity', 1), ('except', 1), ('dublin', 1), ('core', 1), ('specification', 1), ('social', 1), ('networking', 1), ('widely', 1), ('adopted', 1)]
[('da', 2), ('der', 2), ('und', 2), ('werk', 1), ('bietet', 1), ('einen', 1), ('kompakten', 1), ('überblick', 1), ('über', 1), ('thema', 1), ('computernetzwerke', 1), ('sein', 1), ('aufbau', 1), ('orientiert', 1), ('sich', 1), ('den', 1), ('schichten', 1), ('etablierten', 1), ('referenzmodelle', 1), ('behandelt', 1), ('für', 1), ('jede', 1), ('schicht', 1), ('die', 1), ('geräte', 1), ('nachrichtenformate', 1), ('art', 1), ('weise', 1), ('adressierung', 1)]
[('der', 1), ('erste', 1), ('funktionsfähige', 1), ('computer', 1), ('wurde', 1), ('von', 1), ('konrad', 1), ('zuse', 1), ('gebaut', 1), ('diese', 1), ('vollautomatische', 1), ('programmgesteuerte', 1), ('frei', 1), ('programmierbare', 1), ('binärer', 1), ('gleitpunktzahlrechnung', 1), ('arbeitende', 1), ('rechenanlage', 1), ('war', 1), ('betriebsbereit', 1), ('anlässlich', 1), ('de', 1), ('geburtstages', 1)]
[('und', 2), ('ein', 1), ('blick', 1), ('aktuelle', 1), ('bildungsstandards', 1), ('lehrpläne', 1), ('zeigt', 1), ('die', 1), ('nutzung', 1), ('digitaler', 1), ('medien', 1), ('mathematikunterricht', 1), ('wird', 1), ('immer', 1), ('stärker', 1), ('eingefordert', 1), ('geht', 1), ('heute', 1), ('weit', 1), ('über', 1), ('den', 1), ('einsatz', 1), ('wissenschaftlicher', 1), ('taschenrechner', 1), ('hinaus', 1), ('nbsp', 1), ('zukünftige', 1)]
[('inception', 1), ('web', 1), ('changed', 1), ('landscape', 1), ('human', 1), ('experience', 1), ('interact', 1), ('another', 1), ('data', 1), ('service', 1), ('infrastructure', 1), ('via', 1), ('various', 1), ('computing', 1), ('device', 1), ('interweaving', 1), ('environment', 1), ('becoming', 1)]
[('paper', 1), ('volume', 1), ('selected', 1), ('presentation', 1), ('th', 1), ('international', 1), ('meshing', 1), ('roundtable', 1), ('imr', 1), ('held', 1), ('october', 1), ('chattanooga', 1), ('tennessee', 1), ('usa', 1), ('conference', 1), ('started', 1), ('sandia', 1), ('national', 1), ('laboratory', 1), ('small', 1)]
[('annual', 1), ('international', 1), ('conference', 1), ('access', 1), ('network', 1), ('accessnets', 1), ('aim', 1), ('provide', 1), ('forum', 1), ('brings', 1), ('together', 1), ('researcher', 1), ('scientist', 1), ('academia', 1), ('er', 1), ('engineer', 1), ('industry', 1), ('meet', 1), ('exchange', 1), ('idea', 1), ('recent', 1), ('work', 1)]
[('optimum', 2), ('many', 1), ('engineering', 1), ('problem', 1), ('require', 1), ('optimization', 1), ('process', 1), ('dynamic', 1), ('adaptation', 1), ('aim', 1), ('establish', 1), ('dimension', 1), ('search', 1), ('space', 1), ('solution', 1), ('resides', 1), ('develop', 1), ('robust', 1), ('technique', 1), ('avoid', 1), ('local', 1), ('usually', 1)]
[('mobile', 2), ('learning', 2), ('book', 1), ('present', 1), ('recent', 1), ('research', 1), ('advanced', 1), ('user', 1), ('interface', 1), ('shown', 1), ('combination', 1), ('field', 1), ('result', 1), ('personalized', 1), ('educational', 1), ('software', 1), ('meet', 1), ('requirement', 1), ('state', 1), ('art', 1)]
[('dynamic', 2), ('provisioning', 2), ('community', 1), ('service', 1), ('outline', 1), ('maintenance', 1), ('mechanism', 1), ('running', 1), ('distributed', 1), ('system', 1), ('grid', 1), ('used', 1), ('maximize', 1), ('utilization', 1), ('computing', 1), ('resource', 1), ('user', 1), ('demand', 1), ('book', 1)]
[('something', 3), ('book', 3), ('felt', 1), ('need', 1), ('comment', 1), ('took', 1), ('pencil', 1), ('scribbled', 1), ('text', 1), ('annotated', 1), ('process', 1), ('become', 1), ('fundamental', 1), ('revolutionary', 1)]
[('von', 2), ('die', 2), ('nanoelektronik', 1), ('ist', 1), ('al', 1), ('basis', 1), ('und', 1), ('schlüsseltechnologie', 1), ('für', 1), ('große', 1), ('bereiche', 1), ('der', 1), ('industrieproduktion', 1), ('fundamentaler', 1), ('bedeutung', 1), ('verlagerung', 1), ('produktionsstandorten', 1), ('nähe', 1), ('künftiger', 1), ('zielmärkte', 1), ('asien', 1), ('wird', 1), ('daher', 1), ('mit', 1), ('sorge', 1), ('beobachtet', 1), ('vor', 1)]
[('decision', 3), ('prescriptive', 1), ('bayesian', 1), ('making', 1), ('reached', 1), ('high', 1), ('level', 1), ('maturity', 1), ('supported', 1), ('algorithmically', 1), ('experimental', 1), ('data', 1), ('show', 1), ('real', 1), ('maker', 1), ('choose', 1), ('bayes', 1), ('optimal', 1), ('surprisingly', 1), ('infrequently', 1), ('often', 1)]
[('enterprise', 2), ('modeling', 1), ('em', 1), ('method', 1), ('technique', 1), ('indispensable', 1), ('understanding', 1), ('present', 1), ('situation', 1), ('preparing', 1), ('future', 1), ('particularly', 1), ('time', 1), ('continuous', 1), ('organizational', 1), ('change', 1), ('increasing', 1), ('pace', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('human', 1), ('robot', 1), ('personal', 1), ('relationship', 1), ('held', 1), ('leiden', 1), ('netherlands', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('icst', 1), ('infrastructure', 1), ('service', 1), ('developing', 1), ('country', 1), ('africomm', 1), ('held', 1), ('zanzibar', 1), ('tansania', 1), ('november', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('icst', 1), ('wireless', 1), ('communication', 1), ('application', 1), ('icwca', 1), ('held', 1), ('sanya', 1), ('china', 1), ('august', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('nan', 1)]
[('founded', 2), ('book', 1), ('following', 1), ('three', 1), ('approach', 1), ('data', 1), ('analysis', 1), ('presented', 1), ('test', 1), ('theory', 1), ('sergei', 1), ('yablonskii', 1), ('first', 1), ('publication', 1), ('appeared', 1), ('rough', 1), ('set', 1), ('zdzisław', 1), ('pawlak', 1)]
[('mit', 2), ('welche', 2), ('usability', 1), ('engineering', 1), ('spielt', 1), ('überall', 1), ('dort', 1), ('eine', 1), ('rolle', 1), ('wo', 1), ('benutzer', 1), ('technischen', 1), ('systemen', 1), ('zu', 1), ('tun', 1), ('haben', 1), ('faktoren', 1), ('bestimmen', 1), ('ob', 1), ('wir', 1), ('einem', 1), ('produkt', 1), ('sehr', 1), ('einfach', 1), ('nur', 1), ('schwer', 1), ('oder', 1), ('gar', 1), ('nicht', 1), ('zum', 1), ('ziel', 1), ('kommen', 1), ('möglichkeiten', 1), ('bieten', 1), ('sich', 1)]
[('den', 2), ('zum', 2), ('der', 2), ('national', 1), ('wie', 1), ('international', 1), ('rückt', 1), ('da', 1), ('thema', 1), ('breitband', 1), ('verstärkt', 1), ('fokus', 1), ('weltweit', 1), ('hat', 1), ('sich', 1), ('ziel', 1), ('gesetzt', 1), ('breitbandige', 1), ('schnelle', 1), ('zugänge', 1), ('internet', 1), ('nächsten', 1), ('jahren', 1), ('flächendeckend', 1), ('zur', 1), ('verfügung', 1), ('zu', 1), ('stellen', 1), ('ausbau', 1)]
[('opm', 3), ('engineering', 2), ('object', 1), ('process', 1), ('methodology', 1), ('intuitive', 1), ('approach', 1), ('system', 1), ('book', 1), ('present', 1), ('theory', 1), ('practice', 1), ('example', 1), ('various', 1), ('industry', 1), ('segment', 1), ('discipline', 1), ('daily', 1), ('life', 1), ('generic', 1)]
[('experience', 2), ('book', 2), ('business', 2), ('project', 2), ('written', 1), ('back', 1), ('first', 1), ('hand', 1), ('provides', 1), ('solid', 1), ('framework', 1), ('managing', 1), ('primarily', 1), ('intended', 1), ('current', 1), ('prospective', 1), ('manager', 1), ('wish', 1), ('share', 1), ('idea', 1)]
[('mit', 1), ('einer', 1), ('einführung', 1), ('html', 1)]
[('nan', 1)]
[('nan', 1)]
[('system', 3), ('petri', 1), ('net', 1), ('provide', 1), ('formal', 1), ('framework', 1), ('modelingand', 1), ('validation', 1), ('proven', 1), ('reliable', 1), ('inpractice', 1), ('book', 1), ('present', 1), ('variousnet', 1), ('model', 1), ('appropriatefor', 1), ('designing', 1), ('specific', 1), ('understoodvery', 1)]
[('market', 2), ('image', 1), ('processing', 1), ('machine', 1), ('vision', 1), ('field', 1), ('renewed', 1), ('interest', 1), ('commercial', 1), ('industry', 1), ('manager', 1), ('technical', 1), ('engineer', 1), ('looking', 1), ('new', 1), ('technology', 1), ('move', 1), ('many', 1), ('promising', 1), ('development', 1)]
[('book', 2), ('pleasure', 1), ('honor', 1), ('write', 1), ('foreword', 1), ('jennifer', 1), ('lennon', 1), ('hypermedia', 1), ('system', 1), ('application', 1), ('world', 1), ('wide', 1), ('web', 1), ('beyond', 1), ('fortunate', 1), ('able', 1), ('follow', 1), ('development', 1), ('excellent', 1), ('ph', 1), ('thesis', 1)]
[('viewpoint', 1), ('industrial', 1), ('book', 1), ('welcome', 1), ('significant', 1), ('demonstration', 1), ('maturity', 1), ('prolog', 1), ('logic', 1), ('programming', 1), ('fascinating', 1), ('area', 1), ('computer', 1), ('science', 1), ('held', 1), ('year', 1), ('still', 1)]
[('information', 2), ('acronym', 2), ('early', 1), ('day', 1), ('technology', 1), ('professional', 1), ('developed', 1), ('extraordinary', 1), ('huge', 1), ('amount', 1), ('jargon', 1), ('full', 1), ('dictionary', 1), ('resolve', 1), ('broadly', 1), ('used', 1), ('provides', 1), ('concise', 1), ('illustrated', 1)]
[('text', 1), ('provides', 1), ('reader', 1), ('unique', 1), ('insight', 1), ('finite', 1), ('element', 1), ('method', 1), ('along', 1), ('symbolic', 1), ('programing', 1), ('fundamentally', 1), ('change', 1), ('way', 1), ('application', 1), ('developed', 1), ('essential', 1), ('tool', 1), ('undergraduate', 1), ('early', 1), ('postgraduate', 1)]
[('government', 2), ('interoperability', 2), ('research', 1), ('community', 1), ('many', 1), ('national', 1), ('program', 1), ('widely', 1), ('seen', 1), ('key', 1), ('factor', 1), ('developing', 1), ('effective', 1), ('attractive', 1), ('service', 1), ('agreement', 1), ('encompasses', 1)]
[('nan', 1)]
[('engineering', 2), ('better', 2), ('learn', 1), ('program', 1), ('initiated', 1), ('entirely', 1), ('new', 1), ('way', 1), ('thinking', 1), ('mathematics', 1), ('world', 1), ('general', 1), ('computation', 1), ('integral', 1), ('modern', 1), ('discipline', 1), ('programming', 1)]
[('book', 1), ('provides', 1), ('reader', 1), ('comprehensive', 1), ('detail', 1), ('ww', 1), ('work', 1), ('complete', 1), ('definition', 1), ('standard', 1), ('discus', 1), ('latest', 1), ('version', 1), ('transfer', 1), ('protocol', 1), ('description', 1), ('language', 1), ('html', 1), ('foundation', 1)]
[('und', 2), ('die', 2), ('von', 2), ('der', 2), ('da', 1), ('buch', 1), ('führt', 1), ('grundlegende', 1), ('modelle', 1), ('methoden', 1), ('für', 1), ('planung', 1), ('steuerung', 1), ('überwachung', 1), ('unternehmensprozessen', 1), ('ein', 1), ('mittelpunkt', 1), ('diskussion', 1), ('steht', 1), ('analyse', 1), ('abläufen', 1), ('mit', 1), ('dem', 1), ('ziel', 1), ('optimierung', 1), ('innerhalb', 1), ('quantitativer', 1)]
[('eine', 2), ('ist', 1), ('da', 1), ('lernen', 1), ('mit', 1), ('hilfe', 1), ('von', 1), ('rechnernetzen', 1), ('für', 1), ('unser', 1), ('unternehmen', 1), ('nützliche', 1), ('innovation', 1), ('diesis', 1), ('buch', 1), ('bietet', 1), ('entscheidungsträgern', 1), ('der', 1), ('wirtschaft', 1), ('umfassende', 1), ('doch', 1), ('kompakte', 1), ('orientierung', 1), ('die', 1), ('letztlich', 1), ('zur', 1), ('beantwortung', 1), ('dieser', 1)]
[('die', 3), ('ausgehend', 1), ('von', 1), ('der', 1), ('idee', 1), ('de', 1), ('glasperlenspiels', 1), ('hermann', 1), ('hesse', 1), ('seinem', 1), ('gleichnamigen', 1), ('roman', 1), ('entwirft', 1), ('haben', 1), ('autoren', 1), ('diesem', 1), ('band', 1), ('möglichkeiten', 1), ('und', 1), ('grenzen', 1), ('eines', 1), ('solchen', 1), ('spiel', 1), ('umgang', 1), ('mit', 1), ('wissen', 1), ('ausgelotet', 1), ('sie', 1), ('zeigen', 1), ('neue', 1), ('methoden', 1)]
[('fault', 2), ('rapid', 1), ('growth', 1), ('integration', 1), ('scale', 1), ('vlsi', 1), ('chip', 1), ('present', 1), ('need', 1), ('reliable', 1), ('computer', 1), ('space', 1), ('exploration', 1), ('diagnosis', 1), ('toleran', 1), ('ce', 1), ('become', 1), ('important', 1), ('reveal', 1), ('lot', 1), ('interest', 1), ('ing', 1), ('topic', 1)]
[('nan', 1)]
[('nan', 1)]
[('language', 3), ('technology', 2), ('white', 1), ('paper', 1), ('part', 1), ('series', 1), ('promotes', 1), ('knowledge', 1), ('potential', 1), ('address', 1), ('educator', 1), ('journalist', 1), ('politician', 1), ('community', 1), ('others', 1), ('availability', 1), ('use', 1), ('europe', 1)]
[('für', 1), ('do', 1), ('window', 1), ('unix', 1), ('und', 1), ('mac', 1), ('systeme', 1)]
[('schaltungen', 2), ('diesis', 1), ('lehrbuch', 1), ('beschäftigt', 1), ('sich', 1), ('mit', 1), ('den', 1), ('praktischen', 1), ('elementen', 1), ('de', 1), ('entwurfs', 1), ('elektronischer', 1), ('e', 1), ('liefert', 1), ('dabei', 1), ('aber', 1), ('nicht', 1), ('bibliotheksartig', 1), ('eine', 1), ('aufzählung', 1), ('der', 1), ('verschiedenen', 1), ('sondern', 1), ('behandelt', 1), ('systematische', 1), ('grundsätzliche', 1)]
[('software', 2), ('die', 2), ('neuentwickelte', 1), ('ist', 1), ('heute', 1), ('oft', 1), ('schon', 1), ('zum', 1), ('zeitpunkt', 1), ('ihrer', 1), ('einführung', 1), ('veraltet', 1), ('einen', 1), ('ausweg', 1), ('au', 1), ('dieser', 1), ('krise', 1), ('bietet', 1), ('der', 1), ('objektorientierte', 1), ('ansatz', 1), ('anwendungen', 1), ('werden', 1), ('al', 1), ('objekte', 1), ('abgebildet', 1), ('eigenschaften', 1), ('und', 1), ('da', 1), ('verhalten', 1)]
[('secure', 2), ('party', 2), ('function', 2), ('computation', 1), ('called', 1), ('evaluation', 1), ('sfe', 1), ('enables', 1), ('mutually', 1), ('mistrusting', 1), ('client', 1), ('server', 1), ('evaluate', 1), ('arbitrary', 1), ('respective', 1), ('private', 1), ('input', 1), ('revealing', 1), ('nothing', 1), ('result', 1)]
[('der', 2), ('und', 2), ('da', 1), ('internet', 1), ('ist', 1), ('eine', 1), ('bedeutendsten', 1), ('technologischen', 1), ('errungenschaften', 1), ('geschichte', 1), ('e', 1), ('erlaubt', 1), ('menschen', 1), ('aller', 1), ('welt', 1), ('zugang', 1), ('zu', 1), ('umfassenden', 1), ('informationen', 1), ('unterstützt', 1), ('die', 1), ('weltweite', 1), ('kommunikation', 1), ('vernetzung', 1), ('fungiert', 1), ('al', 1), ('globaler', 1)]
[('die', 3), ('von', 2), ('der', 2), ('und', 2), ('ausgehend', 1), ('den', 1), ('grundlagen', 1), ('netzwerksicherheit', 1), ('stellen', 1), ('autoren', 1), ('unterschiedlichen', 1), ('sicherheitsaspekte', 1), ('bei', 1), ('übertragung', 1), ('daten', 1), ('einschlägigen', 1), ('software', 1), ('hardwarelösungen', 1), ('dar', 1), ('diesem', 1), ('kontext', 1), ('werden', 1), ('auch', 1)]
[('parallel', 2), ('tool', 2), ('performance', 2), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('high', 1), ('computing', 1), ('provide', 1), ('overview', 1), ('supportive', 1), ('software', 1), ('environment', 1), ('field', 1), ('system', 1), ('management', 1), ('debugging', 1), ('analysis', 1)]
[('evolve', 2), ('mexico', 2), ('book', 1), ('comprises', 1), ('selection', 1), ('paper', 1), ('held', 1), ('city', 1), ('aim', 1), ('build', 1), ('bridge', 1), ('probability', 1), ('set', 1), ('oriented', 1), ('numerics', 1), ('evolutionary', 1), ('computing', 1), ('identify', 1), ('new', 1), ('common', 1), ('challenging', 1)]
[('da', 2), ('linux', 2), ('und', 2), ('e', 2), ('betriebssystem', 1), ('debian', 1), ('gnu', 1), ('gehört', 1), ('zu', 1), ('den', 1), ('leistungsstärksten', 1), ('hochwertigsten', 1), ('distributionen', 1), ('wie', 1), ('funktioniert', 1), ('effizient', 1), ('eingesetzt', 1), ('wird', 1), ('beschreibt', 1), ('buch', 1), ('mit', 1), ('vielen', 1), ('praktischen', 1), ('hinweisen', 1), ('behandelt', 1), ('ausführlich', 1), ('die', 1)]
[('development', 2), ('language', 2), ('central', 1), ('task', 1), ('future', 1), ('oriented', 1), ('computational', 1), ('linguistics', 1), ('cognitive', 1), ('machine', 1), ('human', 1), ('freely', 1), ('speak', 1), ('natural', 1), ('involve', 1), ('functional', 1), ('theory', 1), ('objective', 1)]
[('software', 1), ('development', 1), ('complex', 1), ('problem', 1), ('solving', 1), ('activity', 1), ('high', 1), ('level', 1), ('uncertainty', 1), ('many', 1), ('technical', 1), ('challenge', 1), ('concerning', 1), ('scheduling', 1), ('cost', 1), ('estimation', 1), ('reliability', 1), ('performance', 1), ('etc', 1), ('aggravated', 1), ('weakness', 1)]
[('gp', 3), ('coherent', 2), ('book', 1), ('provide', 1), ('complete', 1), ('review', 1), ('theory', 1), ('genetic', 1), ('programming', 1), ('provides', 1), ('consolidation', 1), ('recent', 1), ('work', 1), ('theoretical', 1), ('foundation', 1), ('concise', 1), ('introduction', 1)]
[('harmony', 1), ('search', 1), ('algorithm', 1), ('hsa', 1), ('known', 1), ('technique', 1), ('field', 1), ('soft', 1), ('computing', 1), ('important', 1), ('paradigm', 1), ('science', 1), ('engineering', 1), ('community', 1), ('volume', 1), ('proceeding', 1), ('nd', 1), ('international', 1), ('conference', 1)]
[('java', 3), ('vrml', 2), ('recently', 1), ('success', 1), ('existence', 1), ('different', 1), ('interface', 1), ('tween', 1), ('became', 1), ('possible', 1), ('implement', 1), ('three', 1), ('dimensional', 1), ('internet', 1), ('application', 1), ('standard', 1), ('browser', 1), ('plugins', 1), ('using', 1), ('widespread', 1), ('use', 1)]
[('time', 2), ('petri', 2), ('net', 2), ('event', 2), ('system', 2), ('first', 1), ('glance', 1), ('concept', 1), ('quite', 1), ('contrary', 1), ('determines', 1), ('occurrence', 1), ('classic', 1), ('consider', 1), ('causal', 1), ('relationship', 1), ('represent', 1), ('concurrent', 1)]
[('technique', 2), ('proper', 1), ('analysis', 1), ('image', 1), ('multimedia', 1), ('data', 1), ('requires', 1), ('efficient', 1), ('extraction', 1), ('segmentation', 1), ('among', 1), ('many', 1), ('computational', 1), ('intelligence', 1), ('approach', 1), ('soft', 1), ('computing', 1), ('paradigm', 1), ('best', 1), ('equipped', 1), ('several', 1), ('tool', 1)]
[('technology', 2), ('field', 1), ('enterprise', 1), ('system', 1), ('integration', 1), ('constantly', 1), ('evolving', 1), ('every', 1), ('new', 1), ('introduced', 1), ('appears', 1), ('make', 1), ('previous', 1), ('one', 1), ('obsolete', 1), ('despite', 1), ('continuous', 1), ('evolution', 1), ('set', 1), ('underlying', 1), ('concept', 1)]
[('und', 3), ('da', 2), ('der', 2), ('erfolgreiche', 1), ('fachbuch', 1), ('führt', 1), ('umfassend', 1), ('praxisbezogen', 1), ('gebiet', 1), ('relationalen', 1), ('postrelationalen', 1), ('datenbanken', 1), ('ein', 1), ('themenschwerpunkte', 1), ('sind', 1), ('aufgaben', 1), ('pflichten', 1), ('de', 1), ('datenmanagements', 1), ('methoden', 1), ('datenmodellierung', 1)]
[('new', 1), ('product', 1), ('easy', 1), ('difficult', 1), ('use', 1), ('efficient', 1), ('cumbersome', 1), ('engaging', 1), ('dispiriting', 1), ('support', 1), ('way', 1), ('work', 1), ('think', 1), ('option', 1), ('available', 1), ('systematically', 1), ('addressing', 1), ('parameter', 1), ('provide', 1)]
[('data', 2), ('growth', 1), ('public', 1), ('private', 1), ('store', 1), ('emergence', 1), ('shelf', 1), ('mining', 1), ('technology', 1), ('recommendation', 1), ('system', 1), ('emerged', 1), ('specifically', 1), ('address', 1), ('unique', 1), ('challenge', 1), ('navigating', 1), ('interpreting', 1), ('software', 1), ('engineering', 1)]
[('effort', 2), ('step', 2), ('main', 1), ('goal', 1), ('book', 1), ('help', 1), ('organization', 1), ('improve', 1), ('estimate', 1), ('estimation', 1), ('process', 1), ('providing', 1), ('methodology', 1), ('take', 1), ('creation', 1), ('validation', 1), ('model', 1), ('based', 1)]
[('handbook', 2), ('computational', 2), ('intelligence', 2), ('springer', 1), ('first', 1), ('book', 1), ('covering', 1), ('basic', 1), ('state', 1), ('art', 1), ('important', 1), ('application', 1), ('dynamic', 1), ('rapidly', 1), ('expanding', 1), ('discipline', 1), ('comprehensive', 1)]
[('book', 1), ('represents', 1), ('attempt', 1), ('fully', 1), ('review', 1), ('phenomenon', 1), ('blogosphere', 1), ('intention', 1), ('provide', 1), ('reliable', 1), ('guide', 1), ('understanding', 1), ('analyzing', 1), ('world', 1), ('unimaginable', 1), ('number', 1), ('diverse', 1), ('blog', 1), ('consisting', 1), ('innumerable', 1)]
[('digital', 2), ('native', 2), ('computer', 2), ('first', 1), ('generation', 1), ('dns', 1), ('growing', 1), ('rather', 1), ('late', 1), ('starter', 1), ('exposure', 1), ('started', 1), ('master', 1), ('mouse', 1), ('penetration', 1), ('educational', 1)]
[('die', 3), ('von', 2), ('industriellen', 2), ('vernetzung', 1), ('produktionssystemen', 1), ('soll', 1), ('zukunft', 1), ('auf', 1), ('basis', 1), ('ethernet', 1), ('time', 1), ('sensitive', 1), ('network', 1), ('tsn', 1), ('umgesetzt', 1), ('werden', 1), ('einführung', 1), ('einer', 1), ('neuen', 1), ('netzwerktechnik', 1), ('feldebene', 1), ('der', 1), ('produktion', 1), ('stellt', 1), ('jedoch', 1), ('eine', 1)]
[('sie', 2), ('neben', 1), ('einem', 1), ('kurzen', 1), ('abriss', 1), ('über', 1), ('die', 1), ('entstehungsgeschichte', 1), ('de', 1), ('internet', 1), ('lernen', 1), ('diesem', 1), ('buch', 1), ('protokolle', 1), ('domain', 1), ('sowie', 1), ('server', 1), ('sind', 1), ('und', 1), ('welche', 1), ('rolle', 1), ('beim', 1), ('aufbau', 1), ('einer', 1), ('internetverbindung', 1), ('spielen', 1), ('darauffolgenden', 1), ('kapitel', 1), ('wird', 1), ('da', 1)]
[('die', 2), ('diesis', 2), ('zunächst', 1), ('gehen', 1), ('autoren', 1), ('crossmedia', 1), ('publishing', 1), ('buchs', 1), ('auf', 1), ('zunehmende', 1), ('bedeutung', 1), ('von', 1), ('redaktionssystemen', 1), ('speziell', 1), ('content', 1), ('management', 1), ('systeme', 1), ('kurz', 1), ('cm', 1), ('und', 1), ('deren', 1), ('vorteile', 1), ('für', 1), ('den', 1), ('publikationsprozess', 1), ('ein', 1), ('weiteren', 1), ('verlauf', 1)]
[('der', 4), ('die', 2), ('diesis', 1), ('buch', 1), ('führt', 1), ('grundlagen', 1), ('gestaltung', 1), ('von', 1), ('präsentationsgrafiken', 1), ('mit', 1), ('open', 1), ('source', 1), ('software', 1), ('ein', 1), ('hinsichtlich', 1), ('visualisierungsmöglichkeiten', 1), ('praktisch', 1), ('keine', 1), ('wünsche', 1), ('offen', 1), ('lässt', 1), ('und', 1), ('sich', 1), ('zunehmend', 1), ('al', 1), ('standard', 1), ('bereich', 1)]
[('der', 4), ('die', 3), ('und', 2), ('auf', 2), ('dieser', 1), ('band', 1), ('bibliothek', 1), ('mediengestaltung', 1), ('behandelt', 1), ('anwendung', 1), ('kommunikationsmodelle', 1), ('gesetzmäßigkeiten', 1), ('visuellen', 1), ('wahrnehmung', 1), ('zwei', 1), ('dreidimensionale', 1), ('perspektivische', 1), ('flächengestaltung', 1), ('sowie', 1), ('farbgestaltung', 1)]
[('und', 4), ('jahren', 2), ('hat', 1), ('sich', 1), ('den', 1), ('letzten', 1), ('rasant', 1), ('entwickelt', 1), ('haben', 1), ('viele', 1), ('verbesserungen', 1), ('neue', 1), ('möglichkeiten', 1), ('gebracht', 1), ('vieles', 1), ('vor', 1), ('noch', 1), ('gut', 1), ('empfehlenswert', 1), ('war', 1), ('kann', 1), ('heute', 1), ('besser', 1), ('sicherer', 1), ('gemacht', 1)]
[('die', 3), ('eine', 2), ('für', 2), ('und', 2), ('wichtige', 1), ('aufgabe', 1), ('der', 1), ('vernetzten', 1), ('welt', 1), ('ist', 1), ('maschinelle', 1), ('auswertung', 1), ('verarbeitung', 1), ('von', 1), ('informationen', 1), ('anwendung', 1), ('relevant', 1), ('sind', 1), ('übers', 1), ('netz', 1), ('verschickt', 1), ('werden', 1), ('mit', 1), ('complex', 1), ('event', 1), ('processing', 1), ('cep', 1), ('können', 1), ('große', 1), ('mengen', 1)]
[('book', 1), ('offer', 1), ('original', 1), ('informative', 1), ('view', 1), ('development', 1), ('fundamental', 1), ('concept', 1), ('computability', 1), ('theory', 1), ('treatment', 1), ('put', 1), ('historical', 1), ('context', 1), ('emphasizing', 1), ('motivation', 1), ('idea', 1), ('logical', 1), ('formal', 1)]
[('die', 3), ('content', 2), ('management', 2), ('xml', 2), ('und', 2), ('für', 2), ('mit', 1), ('wendet', 1), ('sich', 1), ('praktiker', 1), ('entscheider', 1), ('bereich', 1), ('electronic', 1), ('publishing', 1), ('eine', 1), ('fundierte', 1), ('antwort', 1), ('auf', 1), ('frage', 1), ('benötigen', 1), ('ob', 1), ('welchem', 1), ('maße', 1), ('aufgaben', 1), ('geeignet', 1), ('ist', 1)]
[('der', 3), ('eine', 2), ('objektorientierung', 1), ('ist', 1), ('wesentlichen', 1), ('techniken', 1), ('zur', 1), ('realisierung', 1), ('von', 1), ('softwaresystemen', 1), ('die', 1), ('unbestrittenen', 1), ('vorteile', 1), ('diesis', 1), ('ansatzes', 1), ('bei', 1), ('modellierung', 1), ('und', 1), ('implementierung', 1), ('müssen', 1), ('jedoch', 1), ('häufig', 1), ('durch', 1), ('geringere', 1), ('effizienz', 1)]
[('die', 2), ('robotik', 1), ('fließen', 1), ('beiträge', 1), ('zahlreicher', 1), ('wissensgebiete', 1), ('au', 1), ('maschinenbau', 1), ('elektrotechnik', 1), ('und', 1), ('informatik', 1), ('ein', 1), ('diesem', 1), ('buch', 1), ('steht', 1), ('informationsverarbeitung', 1), ('vordergrund', 1), ('roboter', 1), ('einer', 1), ('realen', 1), ('umwelt', 1), ('sollen', 1), ('gestellte', 1), ('aufgaben', 1), ('selbständig', 1)]
[('search', 2), ('engine', 1), ('google', 1), ('top', 1), ('become', 1), ('heavily', 1), ('nbsp', 1), ('used', 1), ('online', 1), ('service', 1), ('million', 1), ('performed', 1), ('every', 1), ('day', 1), ('many', 1), ('remarkable', 1), ('capability', 1), ('soft', 1), ('computing', 1), ('information', 1), ('processing', 1), ('analysis', 1), ('includes', 1), ('report', 1)]
[('non', 2), ('book', 1), ('explores', 1), ('extensive', 1), ('statistical', 1), ('mechanic', 1), ('equilibrium', 1), ('thermodynamics', 1), ('present', 1), ('overview', 1), ('strong', 1), ('nonlinearity', 1), ('chaos', 1), ('complexity', 1), ('natural', 1), ('system', 1), ('drawing', 1), ('relevant', 1), ('mathematics', 1), ('topology', 1)]
[('paper', 2), ('book', 1), ('present', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('anticipatory', 1), ('behavior', 1), ('adaptive', 1), ('learning', 1), ('system', 1), ('twenty', 1), ('full', 1), ('chosen', 1), ('among', 1), ('many', 1), ('submission', 1), ('organized', 1), ('section', 1), ('covering', 1)]
[('th', 2), ('international', 2), ('conference', 2), ('human', 2), ('computer', 1), ('interaction', 1), ('hci', 1), ('inter', 1), ('tional', 1), ('held', 1), ('beijing', 1), ('china', 1), ('july', 1), ('jointly', 1), ('symposium', 1), ('interface', 1), ('japan', 1), ('engineering', 1)]
[('realizing', 1), ('growing', 1), ('importance', 1), ('semantic', 1), ('adaptation', 1), ('personalization', 1), ('medium', 1), ('editor', 1), ('book', 1), ('brought', 1), ('together', 1), ('leading', 1), ('researcher', 1), ('practitioner', 1), ('field', 1), ('discus', 1), ('state', 1), ('art', 1), ('explore', 1), ('emerging', 1), ('exciting', 1)]
[('first', 2), ('year', 2), ('computer', 2), ('using', 1), ('edition', 1), ('book', 1), ('text', 1), ('number', 1), ('stanford', 1), ('university', 1), ('graduate', 1), ('course', 1), ('taken', 1), ('student', 1), ('electrical', 1), ('engineering', 1), ('science', 1), ('interested', 1)]
[('die', 4), ('und', 2), ('auf', 2), ('dieser', 1), ('einführung', 1), ('werden', 1), ('probabilistische', 1), ('informationstheorie', 1), ('algebraische', 1), ('codierungstheorie', 1), ('einheitlich', 1), ('behandelt', 1), ('dabei', 1), ('wurde', 1), ('unmißverständliche', 1), ('formulierung', 1), ('der', 1), ('begriffe', 1), ('exakte', 1), ('beweise', 1), ('besonderer', 1), ('wert', 1), ('gelegt', 1)]
[('component', 2), ('based', 2), ('software', 2), ('system', 2), ('development', 1), ('regard', 1), ('construction', 1), ('term', 1), ('conventional', 1), ('engineering', 1), ('discipline', 1), ('assembly', 1), ('readily', 1), ('available', 1), ('prefabricated', 1), ('part', 1), ('norm', 1)]
[('der', 3), ('rahmen', 2), ('welchen', 2), ('da', 1), ('lehrbuch', 1), ('entstand', 1), ('vorlesung', 1), ('informatik', 1), ('maschinenbau', 1), ('rwth', 1), ('aachen', 1), ('sein', 1), ('ziel', 1), ('ist', 1), ('maschinenbaustudenten', 1), ('zu', 1), ('vermitteln', 1), ('für', 1), ('welche', 1), ('zwecke', 1), ('unter', 1), ('bedingungen', 1), ('mit', 1), ('folgen', 1), ('rechnersysteme', 1)]
[('von', 2), ('und', 2), ('eine', 2), ('projektmanagement', 1), ('ist', 1), ('zeiten', 1), ('enger', 1), ('werdenden', 1), ('projektbudgets', 1), ('projektzeitplänen', 1), ('zunehmende', 1), ('herausforderung', 1), ('geworden', 1), ('die', 1), ('autoren', 1), ('geben', 1), ('wertvolle', 1), ('hilfestellungen', 1), ('krisensituationen', 1), ('zeigen', 1), ('auf', 1), ('wie', 1), ('anfang', 1), ('durchgängige', 1)]
[('sensor', 2), ('data', 2), ('processing', 2), ('book', 1), ('discus', 1), ('application', 1), ('computational', 1), ('intelligence', 1), ('network', 1), ('consisting', 1), ('twenty', 1), ('chapter', 1), ('address', 1), ('topic', 1), ('ranging', 1), ('small', 1), ('scale', 1), ('big', 1), ('realized', 1), ('node', 1), ('help', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('portuguese', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('epia', 1), ('held', 1), ('guimarães', 1), ('portugal', 1), ('december', 1), ('eleven', 1), ('integrated', 1), ('workshop', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('der', 3), ('die', 2), ('aufgaben', 1), ('eines', 1), ('manager', 1), ('wandeln', 1), ('sich', 1), ('rasant', 1), ('während', 1), ('cio', 1), ('bisher', 1), ('hauptsächlich', 1), ('den', 1), ('betrieb', 1), ('sicherstellen', 1), ('musste', 1), ('stehen', 1), ('heute', 1), ('immer', 1), ('mehr', 1), ('performanz', 1), ('und', 1), ('effektivitätssteigerung', 1), ('weit', 1), ('oben', 1), ('auf', 1), ('agenda', 1), ('da', 1), ('buch', 1), ('zeigt', 1)]
[('und', 4), ('die', 1), ('entwicklung', 1), ('hochkomplexer', 1), ('automotiver', 1), ('infotainmentsysteme', 1), ('bestehend', 1), ('au', 1), ('einer', 1), ('headunit', 1), ('weiteren', 1), ('komponenten', 1), ('wie', 1), ('audio', 1), ('videoelementen', 1), ('kommunikationseinheiten', 1), ('navigationssystemen', 1), ('sensorik', 1), ('erfordert', 1), ('solides', 1), ('domänenwissen', 1)]
[('die', 4), ('wachsende', 1), ('kundenanforderungen', 1), ('qualität', 1), ('von', 1), ('dienstleistungen', 1), ('und', 1), ('wirtschaftlichkeit', 1), ('der', 1), ('leistungserbringungsprozesse', 1), ('verändern', 1), ('rolle', 1), ('de', 1), ('produktionsmanagements', 1), ('immer', 1), ('wichtiger', 1), ('werden', 1), ('dessen', 1), ('fünf', 1), ('zentralen', 1), ('aufgabenbereiche', 1), ('e', 1)]
[('zu', 3), ('die', 2), ('und', 2), ('da', 1), ('lehrbuch', 1), ('vermittelt', 1), ('theoretischen', 1), ('praktischen', 1), ('grundlagen', 1), ('benötigt', 1), ('werden', 1), ('um', 1), ('virtual', 1), ('augmented', 1), ('reality', 1), ('systeme', 1), ('vr', 1), ('ar', 1), ('eigenständig', 1), ('realisieren', 1), ('oder', 1), ('erweitern', 1), ('e', 1), ('dient', 1), ('studierenden', 1), ('al', 1), ('anschauliche', 1), ('begleitlektüre', 1)]
[('von', 2), ('aber', 2), ('zu', 2), ('da', 2), ('auf', 1), ('der', 1), ('fährte', 1), ('ist', 1), ('eine', 1), ('verständliche', 1), ('und', 1), ('kompakte', 1), ('dennoch', 1), ('vollständige', 1), ('einführung', 1), ('die', 1), ('sprache', 1), ('gegensatz', 1), ('den', 1), ('meisten', 1), ('anderen', 1), ('büchern', 1), ('wird', 1), ('dabei', 1), ('nicht', 1), ('schreiben', 1), ('code', 1), ('sondern', 1), ('objektorientierte', 1)]
[('nan', 1)]
[('die', 2), ('dabei', 2), ('der', 2), ('auf', 2), ('da', 1), ('buch', 1), ('bietet', 1), ('eine', 1), ('kompakte', 1), ('einführung', 1), ('softwareentwicklung', 1), ('mit', 1), ('java', 1), ('liegt', 1), ('fokus', 1), ('eher', 1), ('konzepten', 1), ('und', 1), ('methoden', 1), ('al', 1), ('sprachelementen', 1), ('konzepte', 1), ('werden', 1), ('anhand', 1), ('beispielhaften', 1), ('realisierung', 1), ('von', 1), ('projekten', 1), ('vermittelt', 1)]
[('mathematical', 3), ('document', 2), ('omdoc', 2), ('content', 2), ('open', 1), ('markup', 1), ('scheme', 1), ('including', 1), ('article', 1), ('textbook', 1), ('interactive', 1), ('book', 1), ('course', 1), ('serf', 1), ('language', 1), ('agent', 1), ('communication', 1), ('service', 1)]
[('nan', 1)]
[('tableau', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('automated', 1), ('reasoning', 1), ('analytic', 1), ('related', 1), ('method', 1), ('held', 1), ('rome', 1), ('italy', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('constraint', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('ercim', 1), ('international', 1), ('workshop', 1), ('solving', 1), ('logic', 1), ('programming', 1), ('csclp', 1), ('held', 1), ('barcelona', 1), ('spain', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('lncs', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('intelligent', 1), ('information', 1), ('database', 1), ('system', 1), ('aciids', 1), ('held', 1), ('daegu', 1), ('korea', 1), ('april', 1), ('revised', 1), ('paper', 1)]
[('volume', 1), ('set', 1), ('lnai', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('shenzhen', 1), ('china', 1), ('total', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('logic', 2), ('language', 2), ('edited', 1), ('collaboration', 1), ('folli', 1), ('association', 1), ('information', 1), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('tbilisi', 1), ('symposium', 1), ('computation', 1), ('tbillc', 1), ('held', 1), ('bakuriani', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('conference', 1), ('towards', 1), ('autonomous', 1), ('robotics', 1), ('system', 1), ('taro', 1), ('held', 1), ('sheffield', 1), ('uk', 1), ('august', 1), ('september', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1), ('page', 1), ('abstract', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('computational', 1), ('collective', 1), ('intelligence', 1), ('icci', 1), ('held', 1), ('gdynia', 1), ('poland', 1), ('september', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('principle', 1), ('practice', 1), ('multi', 1), ('agent', 1), ('system', 1), ('prima', 1), ('held', 1), ('wollongong', 1), ('australia', 1), ('november', 1), ('paper', 1), ('presented', 1), ('together', 1), ('invited', 1), ('talk', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('discourse', 1), ('anaphora', 1), ('anaphor', 1), ('resolution', 1), ('colloquium', 1), ('daarc', 1), ('held', 1), ('faro', 1), ('portugal', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('multi', 1), ('agent', 1), ('based', 1), ('simulation', 1), ('mabs', 1), ('held', 1), ('taipei', 1), ('taiwan', 1), ('revised', 1), ('selected', 1), ('extended', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('th', 2), ('international', 2), ('agent', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('workshop', 1), ('programming', 1), ('multi', 1), ('system', 1), ('held', 1), ('toronto', 1), ('canada', 1), ('conjunction', 1), ('aamas', 1), ('joint', 1), ('conference', 1), ('autonomous', 1)]
[('kes', 2), ('conference', 2), ('agent', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('multi', 1), ('system', 1), ('amsta', 1), ('held', 1), ('dubrovnik', 1), ('croatia', 1), ('june', 1), ('attracted', 1), ('substantial', 1), ('number', 1), ('researcher', 1)]
[('book', 1), ('includes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('robocup', 1), ('international', 1), ('symposium', 1), ('held', 1), ('istanbul', 1), ('turkey', 1), ('july', 1), ('revised', 1), ('paper', 1), ('poster', 1), ('presentation', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('logic', 1), ('artificial', 1), ('intelligence', 1), ('held', 1), ('toulouse', 1), ('france', 1), ('september', 1), ('includes', 1), ('invited', 1), ('talk', 1), ('regular', 1), ('paper', 1), ('system', 1), ('description', 1)]
[('knowledge', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('engineering', 1), ('management', 1), ('ekaw', 1), ('held', 1), ('galway', 1), ('city', 1), ('ireland', 1), ('october', 1), ('revised', 1), ('full', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1)]
[('th', 2), ('international', 2), ('agent', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('workshop', 1), ('declarative', 1), ('language', 1), ('technology', 1), ('dalt', 1), ('held', 1), ('conjunction', 1), ('joint', 1), ('conference', 1), ('autonomous', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('conference', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('multi', 1), ('agent', 1), ('based', 1), ('simulation', 1), ('mabs', 1), ('held', 1), ('valencia', 1), ('spain', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('nan', 1)]
[('nan', 1)]
[('pleased', 2), ('extend', 1), ('delegate', 1), ('th', 1), ('say', 1), ('friend', 1), ('warmest', 1), ('welcome', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('based', 1), ('intelligent', 1), ('information', 1), ('engineering', 1), ('system', 1), ('wellington', 1)]
[('knowledge', 2), ('management', 2), ('various', 2), ('criterion', 1), ('linear', 1), ('nonlinear', 1), ('programming', 1), ('proven', 1), ('useful', 1), ('approach', 1), ('enterprise', 1), ('paper', 1), ('address', 1), ('issue', 1), ('related', 1), ('application', 1), ('corporation', 1), ('using', 1)]
[('nan', 1)]
[('congress', 2), ('volume', 1), ('collect', 1), ('paper', 1), ('selected', 1), ('presentation', 1), ('ix', 1), ('italian', 1), ('association', 1), ('arti', 1), ('cial', 1), ('intelligence', 1), ('ai', 1), ('ia', 1), ('held', 1), ('milan', 1), ('university', 1), ('milano', 1), ('bicocca', 1), ('september', 1), ('hand', 1)]
[('nan', 1)]
[('dear', 1), ('delegate', 1), ('friendsand', 1), ('membersofthe', 1), ('growingkes', 1), ('professionalcommunity', 1), ('come', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('based', 1), ('intelligentinformationandengineeringsystemshostedbyla', 1), ('trobeuniversityin', 1), ('bourne', 1)]
[('science', 2), ('thisisthe', 1), ('rstissueofanewjournalofthelncsjournalsubline', 1), ('theaimofthe', 1), ('journal', 1), ('encourage', 1), ('inter', 1), ('multidisciplinary', 1), ('research', 1), ('eld', 1), ('puter', 1), ('life', 1), ('recent', 1), ('paradigmatic', 1), ('shift', 1), ('biology', 1), ('towards', 1), ('system', 1), ('view', 1)]
[('european', 2), ('roberto', 1), ('cencioni', 1), ('lisbon', 1), ('summit', 1), ('march', 1), ('head', 1), ('state', 1), ('government', 1), ('set', 1), ('new', 1), ('goal', 1), ('union', 1), ('become', 1), ('competitive', 1), ('knowled', 1), ('based', 1), ('society', 1), ('world', 1), ('part', 1), ('objective', 1), ('ict', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('learning', 1), ('adaption', 1), ('multi', 1), ('agent', 1), ('system', 1), ('lama', 1), ('held', 1), ('netherlands', 1), ('july', 1), ('associated', 1), ('event', 1), ('aamas', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('singapore', 1), ('april', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('revised', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('workshop', 1), ('engineering', 1), ('self', 1), ('organising', 1), ('application', 1), ('esoa', 1), ('held', 1), ('july', 1), ('associated', 1), ('event', 1), ('aamas', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('annual', 1), ('conference', 1), ('learning', 1), ('theory', 1), ('colt', 1), ('held', 1), ('pittsburgh', 1), ('pennsylvania', 1), ('usa', 1), ('june', 1), ('present', 1), ('revised', 1), ('full', 1), ('paper', 1), ('together', 1), ('article', 1), ('open', 1), ('problem', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('industrial', 1), ('engineering', 1), ('application', 1), ('artificial', 1), ('intelligence', 1), ('expert', 1), ('system', 1), ('iea', 1), ('aie', 1), ('held', 1), ('annecy', 1), ('france', 1), ('june', 1), ('present', 1)]
[('data', 2), ('mining', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('industrial', 1), ('conference', 1), ('icdm', 1), ('held', 1), ('leipzig', 1), ('germany', 1), ('july', 1), ('present', 1), ('carefully', 1), ('reviewed', 1), ('revised', 1), ('full', 1), ('paper', 1), ('organized', 1), ('topical', 1), ('section', 1)]
[('ambient', 2), ('intelligence', 2), ('refers', 1), ('smart', 1), ('electronic', 1), ('environment', 1), ('sensitive', 1), ('responsive', 1), ('presence', 1), ('book', 1), ('originates', 1), ('workshop', 1), ('everyday', 1), ('life', 1), ('held', 1), ('san', 1), ('sebastian', 1), ('spain', 1), ('july', 1)]
[('nan', 1)]
[('nan', 1)]
[('iccbr', 2), ('international', 1), ('conference', 1), ('case', 1), ('based', 1), ('reasoning', 1), ('fourth', 1), ('biennial', 1), ('series', 1), ('sesimbra', 1), ('portugal', 1), ('providence', 1), ('rhode', 1), ('island', 1), ('usa', 1), ('seeon', 1), ('germany', 1), ('held', 1)]
[('nan', 1)]
[('virtual', 3), ('world', 3), ('international', 2), ('second', 1), ('series', 1), ('scientific', 1), ('conference', 1), ('held', 1), ('institute', 1), ('multimedia', 1), ('paris', 1), ('la', 1), ('défense', 1), ('pôle', 1), ('universitaire', 1), ('léonard', 1), ('de', 1), ('vinci', 1), ('term', 1)]
[('book', 2), ('third', 2), ('cup', 2), ('official', 1), ('archival', 1), ('publication', 1), ('devoted', 1), ('robocup', 1), ('document', 1), ('achievement', 1), ('presented', 1), ('robot', 1), ('world', 1), ('soccer', 1), ('game', 1), ('conference', 1), ('robo', 1), ('held', 1), ('stockholm', 1), ('sweden', 1), ('july', 1), ('august', 1)]
[('year', 2), ('system', 2), ('special', 1), ('invite', 1), ('draw', 1), ('balance', 1), ('achieved', 1), ('roughly', 1), ('research', 1), ('development', 1), ('knowledge', 1), ('based', 1), ('still', 1), ('abbreviated', 1), ('xps', 1), ('following', 1), ('older', 1), ('term', 1), ('expert', 1), ('take', 1), ('look', 1)]
[('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('symposium', 1), ('chinese', 1), ('spoken', 1), ('language', 1), ('processing', 1), ('iscslp', 1), ('held', 1), ('singapore', 1), ('december', 1), ('co', 1), ('located', 1), ('iccpol', 1), ('st', 1), ('conference', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('conceptual', 1), ('structure', 1), ('icc', 1), ('held', 1), ('toulouse', 1), ('france', 1), ('july', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('invited', 1), ('carefully', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('knowledge', 1), ('discovery', 1), ('data', 1), ('mining', 1), ('pakdd', 1), ('held', 1), ('nanjing', 1), ('china', 1), ('cover', 1), ('new', 1), ('idea', 1), ('original', 1), ('research', 1), ('result', 1), ('practical', 1), ('development', 1)]
[('data', 2), ('mining', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('conference', 1), ('advanced', 1), ('application', 1), ('adma', 1), ('held', 1), ('harbin', 1), ('china', 1), ('august', 1), ('paper', 1), ('focus', 1), ('advancement', 1), ('peculiarity', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('intelligent', 1), ('virtual', 1), ('agent', 1), ('iva', 1), ('held', 1), ('paris', 1), ('france', 1), ('september', 1), ('full', 1), ('short', 1), ('presented', 1), ('together', 1), ('five', 1)]
[('lnai', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('based', 1), ('intelligent', 1), ('information', 1), ('engineering', 1), ('system', 1), ('kes', 1), ('held', 1), ('zagreb', 1), ('croatia', 1), ('september', 1)]
[('lnai', 3), ('three', 1), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('based', 1), ('intelligent', 1), ('information', 1), ('engineering', 1), ('system', 1), ('kes', 1), ('held', 1), ('zagreb', 1), ('croatia', 1), ('september', 1)]
[('german', 2), ('mate', 2), ('conference', 2), ('sixth', 1), ('time', 1), ('special', 1), ('interest', 1), ('group', 1), ('distributed', 1), ('arti', 1), ('cial', 1), ('intelligence', 1), ('cooperation', 1), ('steering', 1), ('committee', 1), ('organized', 1), ('multiagent', 1), ('system', 1), ('technology', 1)]
[('discovery', 2), ('science', 2), ('th', 2), ('international', 2), ('conference', 2), ('pleasure', 1), ('present', 1), ('proceeding', 1), ('held', 1), ('budapest', 1), ('hungary', 1), ('october', 1), ('co', 1), ('located', 1), ('alt', 1)]
[('revised', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('simulation', 1), ('modeling', 1), ('programming', 1), ('autonomous', 1), ('robot', 1), ('simpar', 1), ('held', 1), ('venice', 1), ('italy', 1), ('november', 1), ('full', 1), ('paper', 1)]
[('folli', 2), ('logic', 2), ('edited', 1), ('collaboration', 1), ('association', 1), ('language', 1), ('information', 1), ('book', 1), ('constitutes', 1), ('th', 1), ('volume', 1), ('lnai', 1), ('subline', 1), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('third', 1), ('indian', 1), ('conference', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('european', 1), ('conference', 1), ('symbolic', 1), ('quantitative', 1), ('approach', 1), ('reasoning', 1), ('uncertainty', 1), ('ecsqaru', 1), ('held', 1), ('verona', 1), ('italy', 1), ('july', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('kes', 2), ('behalf', 1), ('international', 1), ('organising', 1), ('committee', 1), ('pleased', 1), ('present', 1), ('volume', 1), ('proceeding', 1), ('th', 1), ('inter', 1), ('tional', 1), ('conference', 1), ('knowledge', 1), ('based', 1), ('intelligent', 1), ('information', 1), ('engineering', 1), ('system', 1), ('held', 1)]
[('nan', 1)]
[('th', 1), ('international', 1), ('conference', 1), ('hybrid', 1), ('artificial', 1), ('intelligence', 1), ('system', 1), ('hais', 1), ('become', 1), ('unique', 1), ('established', 1), ('broad', 1), ('interdisciplinary', 1), ('forum', 1), ('researcher', 1), ('practitioner', 1), ('involved', 1), ('developing', 1), ('applying', 1), ('symbolic', 1)]
[('conference', 2), ('engineering', 2), ('cardiff', 2), ('uk', 2), ('th', 1), ('international', 1), ('knowledge', 1), ('based', 1), ('intelligent', 1), ('information', 1), ('system', 1), ('held', 1), ('september', 1), ('organized', 1), ('school', 1), ('university', 1)]
[('nan', 1)]
[('workshop', 2), ('wabi', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('algorithm', 1), ('bioinformatics', 1), ('held', 1), ('sophia', 1), ('antipolis', 1), ('france', 1), ('september', 1), ('seven', 1), ('along', 1), ('european', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('computational', 1), ('logic', 1), ('multi', 1), ('agent', 1), ('system', 1), ('clima', 1), ('xiv', 1), ('held', 1), ('corunna', 1), ('spain', 1), ('september', 1), ('regular', 1), ('paper', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('conference', 3), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('rough', 1), ('set', 1), ('knowledge', 1), ('technology', 1), ('rskt', 1), ('held', 1), ('halifax', 1), ('canada', 1), ('october', 1), ('co', 1), ('located', 1)]
[('lnai', 2), ('mexico', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('mexican', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('micai', 1), ('held', 1), ('city', 1), ('november', 1), ('total', 1), ('paper', 1), ('presented', 1)]
[('research', 2), ('volume', 1), ('provides', 1), ('approach', 1), ('solution', 1), ('challenge', 1), ('occurring', 1), ('interface', 1), ('field', 1), ('data', 1), ('analysis', 1), ('computer', 1), ('science', 1), ('operation', 1), ('statistic', 1), ('includes', 1), ('theoretically', 1), ('oriented', 1), ('contribution', 1)]
[('edited', 1), ('volume', 1), ('targeted', 1), ('presenting', 1), ('latest', 1), ('state', 1), ('art', 1), ('methodology', 1), ('hybrid', 1), ('evolutionary', 1), ('algorithm', 1), ('chapter', 1), ('deal', 1), ('theoretical', 1), ('methodological', 1), ('aspect', 1), ('various', 1), ('application', 1), ('many', 1), ('real', 1), ('world', 1)]
[('cognitive', 2), ('described', 2), ('chapter', 2), ('book', 1), ('various', 1), ('aspect', 1), ('emotional', 1), ('behaviour', 1), ('state', 1), ('art', 1), ('introduction', 1), ('vh', 1), ('presented', 1), ('associated', 1), ('research', 1), ('given', 1), ('emotion', 1), ('process', 1)]
[('information', 2), ('security', 2), ('digital', 2), ('used', 2), ('copyright', 1), ('protection', 1), ('important', 1), ('today', 1), ('watermarking', 1), ('widely', 1), ('technique', 1), ('world', 1), ('area', 1), ('book', 1), ('introduces', 1), ('number', 1)]
[('engineering', 2), ('intelligent', 1), ('system', 1), ('try', 1), ('replicate', 1), ('fundamental', 1), ('ability', 1), ('human', 1), ('nature', 1), ('order', 1), ('achieve', 1), ('sufficient', 1), ('progress', 1), ('solving', 1), ('complex', 1), ('problem', 1), ('ideal', 1), ('case', 1), ('multi', 1), ('disciplinary', 1), ('application', 1), ('different', 1), ('modern', 1)]
[('th', 1), ('purpose', 1), ('conference', 1), ('software', 1), ('engineering', 1), ('artificial', 1), ('intelligence', 1), ('networking', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('snpd', 1), ('held', 1), ('june', 1), ('london', 1), ('united', 1), ('kingdom', 1), ('bring', 1), ('together', 1), ('researcher', 1), ('scientist', 1)]
[('learning', 2), ('application', 1), ('committee', 1), ('expert', 1), ('ensemble', 1), ('artificial', 1), ('neural', 1), ('networksthat', 1), ('apply', 1), ('unsupervised', 1), ('technique', 1), ('widely', 1), ('considered', 1), ('enhance', 1), ('effectivenessof', 1), ('network', 1), ('greatly', 1), ('book', 1), ('examines', 1), ('potential', 1)]
[('defence', 3), ('system', 3), ('support', 2), ('innovation', 1), ('present', 1), ('sample', 1), ('state', 1), ('art', 1), ('research', 1), ('focus', 1), ('volume', 1), ('design', 1), ('optimization', 1), ('socio', 1), ('technical', 1), ('performance', 1), ('context', 1)]
[('book', 2), ('consists', 1), ('extended', 1), ('chapter', 1), ('based', 1), ('selected', 1), ('submission', 1), ('poster', 1), ('session', 1), ('organized', 1), ('rd', 1), ('asian', 1), ('conference', 1), ('intelligent', 1), ('information', 1), ('database', 1), ('system', 1), ('april', 1), ('daegu', 1), ('korea', 1)]
[('computational', 1), ('optimization', 1), ('important', 1), ('paradigm', 1), ('wide', 1), ('range', 1), ('application', 1), ('virtually', 1), ('branch', 1), ('engineering', 1), ('industry', 1), ('almost', 1), ('always', 1), ('try', 1), ('optimize', 1), ('something', 1), ('whether', 1), ('minimize', 1), ('cost', 1), ('energy', 1), ('consumption', 1)]
[('book', 1), ('best', 1), ('editor', 1), ('knowledge', 1), ('first', 1), ('text', 1), ('kind', 1), ('present', 1), ('traditional', 1), ('modern', 1), ('aspect', 1), ('dialysis', 1), ('modeling', 1), ('control', 1), ('clear', 1), ('insightful', 1), ('highly', 1), ('comprehensive', 1), ('writing', 1), ('style', 1), ('provides', 1)]
[('book', 2), ('hybrid', 2), ('metaheuristics', 2), ('main', 1), ('goal', 1), ('provide', 1), ('state', 1), ('art', 1), ('provides', 1), ('complete', 1), ('background', 1), ('enables', 1), ('reader', 1), ('design', 1), ('implement', 1), ('solve', 1), ('complex', 1), ('optimization', 1), ('problem', 1)]
[('field', 2), ('complex', 1), ('system', 1), ('phenomenon', 1), ('ubiquitous', 1), ('befound', 1), ('biology', 1), ('finance', 1), ('humanity', 1), ('management', 1), ('science', 1), ('medicine', 1), ('physic', 1), ('similar', 1), ('many', 1), ('problem', 1), ('conventional', 1), ('way', 1), ('tomathematically', 1)]
[('management', 2), ('information', 2), ('technology', 2), ('model', 2), ('book', 1), ('deal', 1), ('issue', 1), ('modelling', 1), ('process', 1), ('project', 1), ('core', 1), ('component', 1), ('contextual', 1), ('local', 1), ('describing', 1), ('initial', 1), ('processing', 1)]
[('und', 3), ('der', 1), ('erste', 1), ('band', 1), ('vermittelte', 1), ('grundlagenwissen', 1), ('zur', 1), ('mensch', 1), ('computer', 1), ('interaktion', 1), ('diesis', 1), ('buch', 1), ('baut', 1), ('darauf', 1), ('auf', 1), ('widmet', 1), ('sich', 1), ('dem', 1), ('gesamten', 1), ('entwicklungsprozess', 1), ('von', 1), ('user', 1), ('interface', 1), ('ausgewählten', 1), ('neueren', 1), ('entwicklungen', 1), ('verständlicher', 1)]
[('und', 2), ('nbsp', 2), ('umfassende', 1), ('einführung', 1), ('alle', 1), ('relevanten', 1), ('grundlagen', 1), ('methoden', 1), ('technologien', 1), ('wobei', 1), ('gegensatz', 1), ('zur', 1), ('aktuellen', 1), ('literatur', 1), ('zu', 1), ('diesem', 1), ('thema', 1), ('software', 1), ('architekturen', 1), ('au', 1), ('den', 1), ('betriebswirtschaftlichen', 1), ('anforderungen', 1), ('hergeleitet', 1), ('zum', 1)]
[('die', 3), ('viele', 1), ('industrielle', 1), ('anwendungen', 1), ('basieren', 1), ('auf', 1), ('verteilten', 1), ('systemen', 1), ('derzeit', 1), ('werden', 1), ('sie', 1), ('durch', 1), ('integration', 1), ('von', 1), ('mobilfunknetzen', 1), ('und', 1), ('mobilen', 1), ('endgeräten', 1), ('intensiv', 1), ('weiterentwickelt', 1), ('dem', 1), ('band', 1), ('stellen', 1), ('autoren', 1), ('grundlagen', 1), ('verteilter', 1), ('systeme', 1)]
[('internet', 2), ('über', 1), ('da', 1), ('werden', 1), ('heute', 1), ('zum', 1), ('größten', 1), ('teil', 1), ('multimediale', 1), ('daten', 1), ('übertragen', 1), ('die', 1), ('multimedialen', 1), ('angebote', 1), ('können', 1), ('durch', 1), ('steigende', 1), ('bandbreiten', 1), ('ausgereifte', 1), ('kompressionstechnologien', 1), ('sowie', 1), ('leistungsstarke', 1), ('endgeräte', 1), ('mittlerweile', 1), ('mit', 1), ('dem', 1)]
[('semantic', 3), ('web', 3), ('und', 3), ('grundlagen', 2), ('de', 2), ('da', 1), ('buch', 1), ('vermittelt', 1), ('al', 1), ('erstes', 1), ('deutschsprachiges', 1), ('lehrbuch', 1), ('die', 1), ('verständlicher', 1), ('weise', 1), ('e', 1), ('ermöglicht', 1), ('einen', 1), ('einfachen', 1), ('zügigen', 1), ('einstieg', 1), ('methoden', 1), ('technologien', 1), ('kann', 1)]
[('die', 4), ('und', 3), ('um', 2), ('autoren', 1), ('führen', 1), ('auf', 1), ('anschauliche', 1), ('systematische', 1), ('weise', 1), ('mathematische', 1), ('informatische', 1), ('modellierung', 1), ('sowie', 1), ('simulation', 1), ('al', 1), ('universelle', 1), ('methodik', 1), ('ein', 1), ('e', 1), ('geht', 1), ('klassen', 1), ('von', 1), ('modellen', 1), ('vielfalt', 1), ('beschreibungsarten', 1), ('aber', 1)]
[('de', 2), ('internet', 2), ('der', 2), ('denschwerpunkt', 1), ('buches', 1), ('bildet', 1), ('da', 1), ('dienste', 1), ('welches', 1), ('dene', 1), ('commerce', 1), ('prägt', 1), ('hier', 1), ('stehen', 1), ('fragen', 1), ('vertragsschlusses', 1), ('derhaftung', 1), ('für', 1), ('inhalte', 1), ('unter', 1), ('berücksichtigung', 1), ('domain', 1), ('und', 1), ('markenrechtlicher', 1), ('fragensowie', 1)]
[('die', 4), ('der', 2), ('autoren', 1), ('geben', 1), ('eine', 1), ('fundierte', 1), ('einführung', 1), ('informatik', 1), ('von', 1), ('anfang', 1), ('zusammenhänge', 1), ('zwischen', 1), ('den', 1), ('teilgebieten', 1), ('de', 1), ('faches', 1), ('betont', 1), ('da', 1), ('buch', 1), ('ist', 1), ('kompakt', 1), ('weil', 1), ('gemeinsame', 1), ('kern', 1), ('verschiedenen', 1), ('informatikgebiete', 1), ('betrachtet', 1), ('wird', 1)]
[('und', 3), ('der', 2), ('da', 1), ('lehrbuch', 1), ('vermittelt', 1), ('mathematische', 1), ('grundlagen', 1), ('exakt', 1), ('anschaulich', 1), ('zugleich', 1), ('lernstoff', 1), ('wird', 1), ('anhand', 1), ('von', 1), ('musterbeispielen', 1), ('informatik', 1), ('anwendungen', 1), ('illustriert', 1), ('zur', 1), ('auflockerung', 1), ('bietet', 1), ('band', 1), ('historische', 1), ('hintergründe', 1), ('ausblicke', 1)]
[('die', 2), ('und', 2), ('den', 2), ('der', 2), ('grundlegenden', 1), ('prinzipien', 1), ('von', 1), ('mikrocontrollern', 1), ('mikroprozessoren', 1), ('detailliert', 1), ('erläutern', 1), ('autoren', 1), ('neuesten', 1), ('stand', 1), ('technik', 1), ('alle', 1), ('wichtigen', 1), ('entwicklungstendenzen', 1), ('aktuellen', 1), ('forschungsstand', 1), ('ferner', 1), ('analysieren', 1), ('sie', 1), ('praxis', 1)]
[('nan', 1)]
[('important', 2), ('nbsp', 2), ('book', 1), ('solid', 1), ('foundation', 1), ('formalism', 1), ('used', 1), ('specification', 1), ('verification', 1), ('reactive', 1), ('system', 1), ('particular', 1), ('text', 1), ('present', 1), ('result', 1), ('calculus', 1), ('automaton', 1), ('temporal', 1), ('logic', 1), ('show', 1)]
[('die', 3), ('der', 3), ('informatik', 2), ('elektronik', 2), ('beiden', 1), ('bände', 1), ('technische', 1), ('bieten', 1), ('einen', 1), ('verständlichen', 1), ('einstieg', 1), ('diesis', 1), ('wichtige', 1), ('teilgebiet', 1), ('band', 1), ('grundlagen', 1), ('digitalen', 1), ('führt', 1), ('für', 1), ('wichtigen', 1), ('gesetze', 1), ('physik', 1), ('und', 1), ('elektrotechnik', 1)]
[('der', 5), ('pressearbeit', 3), ('die', 3), ('darstellung', 2), ('nbsp', 2), ('nach', 1), ('einer', 1), ('kompakten', 1), ('grundlagen', 1), ('arbeiten', 1), ('autoren', 1), ('besonderen', 1), ('aspekte', 1), ('heraus', 1), ('schwerpunkte', 1), ('de', 1), ('buches', 1), ('sind', 1), ('aufbau', 1), ('möglicher', 1), ('aktivitäten', 1), ('und', 1)]
[('hacker', 2), ('know', 1), ('zur', 1), ('abwehr', 1), ('von', 1), ('angriffenmehr', 1), ('sicherheit', 1), ('für', 1), ('netze', 1), ('systeme', 1), ('und', 1), ('anwendungenpraxis', 1), ('leitfaden', 1), ('mit', 1), ('konzeptionellem', 1), ('ansatzanschaulich', 1), ('durch', 1), ('zeitlose', 1), ('beispieleein', 1), ('wettbewerb', 1), ('der', 1), ('wer', 1), ('knackt', 1), ('schnellsten', 1), ('da', 1), ('sicherheitssystem', 1), ('die', 1)]
[('unternehmen', 4), ('da', 2), ('kunden', 2), ('internet', 1), ('bietet', 1), ('und', 1), ('ganz', 1), ('neue', 1), ('kommunikationsmöglichkeiten', 1), ('via', 1), ('corporate', 1), ('website', 1), ('der', 1), ('können', 1), ('sich', 1), ('stunden', 1), ('tag', 1), ('mit', 1), ('informationen', 1), ('über', 1), ('versorgen', 1), ('dy', 1), ('ermöglicht', 1), ('direkten', 1)]
[('nan', 1)]
[('die', 2), ('informatik', 2), ('einen', 2), ('mehrbändige', 1), ('technische', 1), ('bietet', 1), ('verständlichen', 1), ('einstieg', 1), ('diesis', 1), ('wichtige', 1), ('teilgebiet', 1), ('der', 1), ('leser', 1), ('mit', 1), ('unterschiedlichen', 1), ('vorkenntnissen', 1), ('gewinnen', 1), ('schrittweise', 1), ('überblick', 1), ('über', 1), ('studium', 1), ('und', 1), ('beruf', 1), ('benötigten', 1)]
[('tensor', 5), ('textbook', 1), ('deal', 1), ('treated', 1), ('vector', 1), ('coverage', 1), ('detail', 1), ('new', 1), ('concept', 1), ('rotation', 1), ('transposer', 1), ('eigentensors', 1), ('permutation', 1), ('structure', 1), ('book', 1), ('cover', 1), ('existing', 1), ('gap', 1)]
[('systeme', 2), ('für', 2), ('ausgewählte', 1), ('beiträge', 1), ('zu', 1), ('aktuellen', 1), ('themen', 1), ('da', 1), ('fachgespräch', 1), ('autonome', 1), ('mobile', 1), ('am', 1), ('ist', 1), ('ein', 1), ('forum', 1), ('wissenschaftler', 1), ('innen', 1), ('au', 1), ('forschung', 1), ('und', 1), ('industrie', 1), ('die', 1), ('auf', 1), ('dem', 1), ('gebiet', 1), ('der', 1), ('autonomen', 1), ('mobilen', 1), ('arbeiten', 1), ('e', 1), ('bietet', 1), ('raum', 1)]
[('design', 3), ('evolution', 1), ('nature', 1), ('process', 1), ('natural', 1), ('world', 1), ('full', 1), ('wonderful', 1), ('example', 1), ('success', 1), ('engineering', 1), ('feat', 1), ('powered', 1), ('flight', 1), ('complex', 1), ('optical', 1), ('system', 1), ('mammalian', 1), ('eye', 1), ('merely', 1)]
[('die', 3), ('der', 2), ('durch', 2), ('vorliegende', 1), ('band', 1), ('beschäftigt', 1), ('sich', 1), ('mit', 1), ('mediennetzen', 1), ('vorgestellt', 1), ('werden', 1), ('techniken', 1), ('beim', 1), ('transport', 1), ('von', 1), ('informationen', 1), ('unterschiedliche', 1), ('netze', 1), ('zum', 1), ('einsatz', 1), ('kommen', 1), ('schwerpunkte', 1), ('bilden', 1), ('verpackung', 1), ('information', 1)]
[('nancy', 2), ('held', 1), ('france', 1), ('september', 1), ('hosted', 1), ('university', 1), ('inria', 1), ('grand', 1), ('est', 1), ('loria', 1), ('conference', 1), ('provided', 1), ('scientist', 1), ('andpractitionersofacademia', 1), ('industryandgovernmentwithaforumwherethey', 1), ('presented', 1), ('latest', 1)]
[('identity', 3), ('technology', 2), ('information', 2), ('constitutes', 1), ('new', 1), ('affect', 1), ('manage', 1), ('globally', 1), ('networked', 1), ('society', 1), ('increasing', 1), ('div', 1), ('sity', 1), ('communication', 1), ('equally', 1), ('wide', 1), ('range', 1)]
[('system', 2), ('information', 1), ('infrastructure', 1), ('comprising', 1), ('computer', 1), ('embedded', 1), ('device', 1), ('network', 1), ('software', 1), ('vital', 1), ('operation', 1), ('every', 1), ('sector', 1), ('inf', 1), ('mation', 1), ('technology', 1), ('telecommunication', 1), ('energy', 1), ('banking', 1), ('nance', 1), ('tra', 1), ('portation', 1)]
[('der', 2), ('und', 2), ('wir', 1), ('wissen', 1), ('heute', 1), ('das', 1), ('da', 1), ('sehen', 1), ('ein', 1), ('sehr', 1), ('komplexer', 1), ('prozess', 1), ('ist', 1), ('zwischen', 1), ('auge', 1), ('gehirn', 1), ('abläuft', 1), ('damit', 1), ('stellen', 1), ('sich', 1), ('neue', 1), ('fragen', 1), ('die', 1), ('rezeption', 1), ('von', 1), ('bildern', 1), ('wann', 1), ('wie', 1), ('aktivieren', 1), ('bilder', 1), ('unsere', 1), ('visuelle', 1), ('wahrnehmung', 1), ('band', 1), ('enthält', 1), ('viele', 1)]
[('autonomous', 2), ('mobile', 2), ('system', 2), ('nd', 1), ('conference', 1), ('am', 1), ('provides', 1), ('platform', 1), ('idea', 1), ('exchange', 1), ('scientific', 1), ('discussion', 1), ('cooperation', 1), ('scientist', 1), ('university', 1), ('industry', 1), ('practical', 1)]
[('method', 2), ('finite', 2), ('meshfree', 1), ('modern', 1), ('alternative', 1), ('classical', 1), ('mesh', 1), ('based', 1), ('discretization', 1), ('technique', 1), ('difference', 1), ('element', 1), ('especially', 1), ('time', 1), ('dependent', 1), ('setting', 1), ('treatment', 1), ('problem', 1), ('strongly', 1), ('singular', 1)]
[('und', 2), ('den', 2), ('da', 1), ('fachbuch', 1), ('liefert', 1), ('erstmals', 1), ('einen', 1), ('umfassenden', 1), ('überblick', 1), ('über', 1), ('konzeption', 1), ('produktion', 1), ('anwendung', 1), ('von', 1), ('welten', 1), ('erkundet', 1), ('damit', 1), ('die', 1), ('potenziale', 1), ('eines', 1), ('neuen', 1), ('marktes', 1), ('experten', 1), ('vermitteln', 1), ('aktuellen', 1), ('stand', 1), ('zu', 1), ('themen', 1), ('wie', 1), ('neurobiologischen', 1)]
[('die', 3), ('für', 2), ('von', 2), ('vorliegendem', 1), ('buch', 1), ('wird', 1), ('ein', 1), ('neues', 1), ('konzept', 1), ('vermittlung', 1), ('grundlagen', 1), ('der', 1), ('gestaltung', 1), ('designobjekten', 1), ('vorgestellt', 1), ('fragen', 1), ('rahmen', 1), ('eines', 1), ('entwurfsprozesses', 1), ('zu', 1), ('beachten', 1), ('sind', 1), ('werden', 1), ('lösungsmöglichkeiten', 1), ('aufgezeigt', 1), ('und', 1), ('durch', 1)]
[('multimedia', 2), ('signal', 2), ('processing', 2), ('excellent', 1), ('textbook', 1), ('dealing', 1), ('optimization', 1), ('communication', 1), ('system', 1), ('cover', 1), ('theoretical', 1), ('background', 1), ('multidimensional', 1), ('statistical', 1), ('analysis', 1), ('modelling', 1)]
[('und', 2), ('der', 2), ('de', 2), ('die', 1), ('zunehmende', 1), ('verbreitung', 1), ('bedeutung', 1), ('neuen', 1), ('medien', 1), ('insbesondere', 1), ('internet', 1), ('verändern', 1), ('unsere', 1), ('schreib', 1), ('lesegewohnheiten', 1), ('statt', 1), ('längere', 1), ('schrifttexte', 1), ('stück', 1), ('zu', 1), ('lesen', 1), ('klickt', 1), ('sich', 1), ('nutzer', 1), ('world', 1), ('wide', 1), ('web', 1), ('durch', 1), ('hypermedia', 1), ('texte', 1)]
[('first', 1), ('complete', 1), ('overview', 1), ('evolutionary', 1), ('computing', 1), ('collective', 1), ('name', 1), ('range', 1), ('problem', 1), ('solving', 1), ('technique', 1), ('based', 1), ('principle', 1), ('biological', 1), ('evolution', 1), ('natural', 1), ('selection', 1), ('genetic', 1), ('inheritance', 1), ('text', 1), ('aimed', 1), ('directly', 1)]
[('nan', 1)]
[('von', 2), ('leitthema', 1), ('de', 1), ('vorliegenden', 1), ('tagungsbandes', 1), ('ist', 1), ('die', 1), ('eignung', 1), ('linux', 1), ('für', 1), ('echtzeit', 1), ('aufgaben', 1), ('dieser', 1), ('frage', 1), ('wird', 1), ('zunächst', 1), ('einem', 1), ('grundsatz', 1), ('beitrag', 1), ('nachgegangen', 1), ('gefolgt', 1), ('anspruchsvollen', 1), ('erfahrungsberichten', 1), ('ergänzt', 1), ('werden', 1), ('sie', 1), ('durch', 1), ('untersuchungen', 1)]
[('model', 2), ('craft', 1), ('designing', 1), ('mathematical', 1), ('dynamic', 1), ('object', 1), ('offer', 1), ('large', 1), ('number', 1), ('method', 1), ('solve', 1), ('subproblems', 1), ('design', 1), ('typically', 1), ('parameter', 1), ('estimation', 1), ('order', 1), ('determination', 1), ('validation', 1), ('reduc', 1), ('tion', 1), ('analysis', 1), ('identifiability', 1)]
[('protocol', 4), ('book', 1), ('scope', 1), ('comprehensively', 1), ('investigate', 1), ('performance', 1), ('problem', 1), ('transmission', 1), ('control', 1), ('internet', 1), ('tcp', 1), ('ip', 1), ('stack', 1), ('ideal', 1), ('reference', 1), ('work', 1), ('giving', 1), ('valuable', 1), ('advice', 1)]
[('communication', 1), ('wireless', 1), ('developing', 1), ('country', 1), ('network', 1), ('future', 1), ('present', 1), ('book', 1), ('contains', 1), ('proceeding', 1), ('conference', 1), ('held', 1), ('world', 1), ('computer', 1), ('congress', 1), ('brisbane', 1), ('australia', 1), ('september', 1), ('organized', 1)]
[('enterprise', 2), ('conference', 2), ('architecture', 1), ('integration', 1), ('interoperability', 1), ('networked', 1), ('become', 1), ('theme', 1), ('many', 1), ('past', 1), ('year', 1), ('organised', 1), ('ifip', 1), ('tc', 1), ('support', 1), ('working', 1), ('group', 1), ('wg', 1)]
[('ifip', 2), ('conference', 2), ('three', 1), ('volume', 1), ('set', 1), ('aict', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('tc', 1), ('sig', 1), ('international', 1), ('computer', 1), ('computing', 1), ('technology', 1), ('agriculture', 1), ('ccta', 1), ('held', 1), ('beijing', 1), ('china', 1), ('october', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('ifiptm', 1), ('held', 1), ('surat', 1), ('india', 1), ('revised', 1), ('full', 1), ('presented', 1), ('together', 1), ('short', 1), ('abstract', 1), ('keynote', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('working', 1), ('conference', 1), ('uncertainty', 1), ('quantification', 1), ('scientific', 1), ('computing', 1), ('wocouq', 1), ('held', 1), ('boulder', 1), ('co', 1), ('usa', 1), ('august', 1), ('revised', 1), ('paper', 1), ('carefully', 1)]
[('book', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('held', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('application', 1), ('innovation', 1), ('aiai', 1), ('halkidiki', 1), ('greece', 1), ('september', 1), ('includes', 1)]
[('paper', 2), ('book', 1), ('contains', 1), ('extended', 1), ('revised', 1), ('version', 1), ('best', 1), ('presented', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('iee', 1), ('international', 1), ('conference', 1), ('large', 1), ('scale', 1), ('integration', 1), ('vlsi', 1), ('soc', 1), ('held', 1), ('santa', 1), ('cruz', 1), ('ca', 1), ('usa', 1), ('october', 1)]
[('aiai', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('four', 1), ('workshop', 1), ('co', 1), ('located', 1), ('th', 1), ('ifip', 1), ('wg', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('application', 1), ('innovation', 1), ('held', 1), ('rhodes', 1), ('greece', 1), ('september', 1)]
[('book', 1), ('contains', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('scandinavian', 1), ('conference', 1), ('information', 1), ('system', 1), ('scis', 1), ('held', 1), ('oslo', 1), ('norway', 1), ('august', 1), ('participant', 1), ('invited', 1), ('discus', 1), ('experience', 1), ('digital', 1), ('living', 1), ('within', 1), ('multitude', 1)]
[('th', 2), ('international', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('conference', 1), ('proceeding', 1), ('workshop', 1), ('business', 1), ('intelligence', 1), ('real', 1), ('time', 1), ('enterprise', 1), ('birte', 1), ('held', 1), ('riva', 1), ('del', 1), ('garda', 1), ('italy', 1), ('august', 1)]
[('communication', 2), ('today', 1), ('extensively', 1), ('wired', 1), ('world', 1), ('cryptology', 1), ('vital', 1), ('guarding', 1), ('channel', 1), ('database', 1), ('software', 1), ('intruder', 1), ('increased', 1), ('processing', 1), ('speed', 1), ('rapidly', 1), ('broadening', 1), ('access', 1), ('multiplying', 1), ('storage', 1), ('capacity', 1), ('tend', 1)]
[('svm', 2), ('volume', 1), ('contains', 1), ('proceeding', 1), ('third', 1), ('international', 1), ('dmtf', 1), ('academic', 1), ('alliance', 1), ('workshop', 1), ('system', 1), ('virtualization', 1), ('management', 1), ('standard', 1), ('cloud', 1), ('held', 1), ('wuhan', 1), ('china', 1), ('september', 1)]
[('book', 2), ('specification', 2), ('language', 2), ('present', 1), ('comprehensive', 1), ('study', 1), ('nine', 1), ('logic', 1), ('reasoning', 1), ('editor', 1), ('author', 1), ('authority', 1), ('application', 1), ('unique', 1), ('feature', 1), ('close', 1)]
[('book', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('th', 1), ('atlantic', 1), ('web', 1), ('intelligence', 1), ('conference', 1), ('awic', 1), ('held', 1), ('fontainbleau', 1), ('france', 1), ('june', 1), ('organized', 1), ('esigetel', 1), ('technical', 1), ('university', 1), ('lodz', 1), ('polish', 1), ('academy', 1), ('science', 1), ('includes', 1)]
[('conference', 2), ('international', 2), ('agent', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('workshop', 1), ('mediated', 1), ('electronic', 1), ('commerce', 1), ('amec', 1), ('ix', 1), ('co', 1), ('located', 1), ('sixth', 1), ('joint', 1), ('autonomous', 1)]
[('research', 1), ('scenario', 1), ('advanced', 1), ('system', 1), ('protecting', 1), ('critical', 1), ('infrastructure', 1), ('deeply', 1), ('networked', 1), ('information', 1), ('tool', 1), ('highlight', 1), ('growing', 1), ('link', 1), ('security', 1), ('issue', 1), ('need', 1), ('intelligent', 1), ('processing', 1), ('ability', 1), ('area', 1)]
[('sich', 2), ('wie', 2), ('promovieren', 1), ('lohnt', 1), ('da', 1), ('lässt', 1), ('eine', 1), ('dissertation', 1), ('finanzieren', 1), ('wer', 1), ('betreut', 1), ('sie', 1), ('und', 1), ('fängt', 1), ('dieser', 1), ('leitfaden', 1), ('ist', 1), ('der', 1), ('sichere', 1), ('begleiter', 1), ('auf', 1), ('einem', 1), ('oftmals', 1), ('schwierigen', 1), ('weg', 1), ('themen', 1), ('sind', 1), ('wissenschaftsbetrieb', 1), ('zeitmanagement', 1)]
[('conference', 2), ('book', 1), ('contains', 1), ('best', 1), ('paper', 1), ('th', 1), ('international', 1), ('business', 1), ('telecommunication', 1), ('icete', 1), ('held', 1), ('july', 1), ('barcelona', 1), ('spain', 1), ('reflects', 1), ('continuing', 1), ('effort', 1), ('increase', 1)]
[('volume', 2), ('accepted', 2), ('paper', 2), ('advance', 1), ('intelligent', 1), ('soft', 1), ('computing', 1), ('contains', 1), ('presented', 1), ('soco', 1), ('held', 1), ('beautiful', 1), ('historic', 1), ('city', 1), ('salamanca', 1), ('spain', 1), ('april', 1), ('present', 1), ('edition', 1)]
[('logic', 2), ('text', 1), ('center', 1), ('around', 1), ('three', 1), ('main', 1), ('subject', 1), ('first', 1), ('concept', 1), ('modularity', 1), ('independence', 1), ('classical', 1), ('nonmonotonic', 1), ('nonclassical', 1), ('consequence', 1), ('syntactic', 1), ('semantical', 1), ('interpolation', 1), ('language', 1)]
[('five', 1), ('volume', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('applied', 1), ('informatics', 1), ('communication', 1), ('icaic', 1), ('held', 1), ('xi', 1), ('china', 1), ('august', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('processing', 2), ('book', 1), ('comprises', 1), ('selected', 1), ('paper', 1), ('international', 1), ('signal', 1), ('image', 1), ('pattern', 1), ('recognition', 1), ('sip', 1), ('held', 1), ('part', 1), ('future', 1), ('generation', 1), ('information', 1), ('technology', 1), ('fgit', 1), ('conjunction', 1)]
[('conference', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('gdc', 1), ('held', 1), ('part', 1), ('future', 1), ('generation', 1), ('information', 1), ('technology', 1), ('fgit', 1), ('jeju', 1), ('island', 1), ('korea', 1), ('december', 1), ('paper', 1), ('presented', 1), ('carefully', 1)]
[('conference', 2), ('volume', 1), ('set', 1), ('ccis', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('fgcn', 1), ('held', 1), ('part', 1), ('future', 1), ('generation', 1), ('information', 1), ('technology', 1), ('fgit', 1), ('jeju', 1), ('island', 1), ('korea', 1), ('december', 1)]
[('ccis', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('information', 1), ('business', 1), ('intelligence', 1), ('ibi', 1), ('held', 1), ('chongqing', 1), ('china', 1), ('december', 1), ('full', 1), ('paper', 1), ('presented', 1)]
[('bpm', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('industrial', 1), ('track', 1), ('th', 1), ('international', 1), ('conference', 1), ('subject', 1), ('oriented', 1), ('business', 1), ('process', 1), ('management', 1), ('held', 1), ('vienna', 1), ('austria', 1), ('april', 1), ('discipline', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('computer', 1), ('network', 1), ('cn', 1), ('held', 1), ('szczyrk', 1), ('poland', 1), ('june', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1), ('inclusion', 1)]
[('agent', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('workshop', 1), ('complemented', 1), ('th', 1), ('international', 1), ('conference', 1), ('practical', 1), ('application', 1), ('multi', 1), ('system', 1), ('paams', 1), ('held', 1), ('salamanca', 1), ('spain', 1), ('volume', 1)]
[('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('based', 1), ('intelligent', 1), ('information', 1), ('engineering', 1), ('system', 1), ('kes', 1), ('held', 1), ('san', 1), ('sebastian', 1), ('spain', 1), ('september', 1), ('revised', 1), ('paper', 1)]
[('real', 3), ('duration', 2), ('calculus', 2), ('time', 2), ('system', 2), ('dc', 2), ('comprehensive', 1), ('introduction', 1), ('interval', 1), ('logic', 1), ('modelling', 1), ('analysing', 1), ('verifying', 1), ('represents', 1), ('logical', 1), ('approach', 1), ('formal', 1), ('design', 1), ('number', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('study', 1), ('institute', 1), ('logic', 1), ('computation', 1), ('held', 1), ('marktoberdorf', 1), ('germany', 1), ('july', 1), ('aug', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('secondinternational', 1), ('conference', 1), ('advance', 1), ('power', 1), ('electronics', 1), ('andinstrumentation', 1), ('engineering', 1), ('peie', 1), ('held', 1), ('nagpur', 1), ('india', 1), ('april', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('together', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('conference', 1), ('parallel', 1), ('distributed', 1), ('computing', 1), ('network', 1), ('pdcn', 1), ('held', 1), ('chongqing', 1), ('china', 1), ('december', 1), ('revised', 1), ('full', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('automaton', 3), ('weighted', 2), ('finite', 2), ('weight', 2), ('purpose', 1), ('handbook', 1), ('highlight', 1), ('theory', 1), ('application', 1), ('classical', 1), ('nondeterministic', 1), ('transition', 1), ('carry', 1), ('model', 1)]
[('computer', 1), ('recognition', 1), ('system', 1), ('nowadays', 1), ('promising', 1), ('direction', 1), ('artificial', 1), ('intelligence', 1), ('book', 1), ('comprehensive', 1), ('study', 1), ('field', 1), ('contains', 1), ('collection', 1), ('carefully', 1), ('selected', 1), ('article', 1), ('contributed', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('research', 1), ('workshop', 1), ('flow', 1), ('control', 1), ('congested', 1), ('network', 1), ('held', 1), ('capri', 1), ('italy', 1), ('october', 1)]
[('spatial', 1), ('reasoning', 1), ('planning', 1), ('core', 1), ('constituent', 1), ('robotics', 1), ('graphic', 1), ('computer', 1), ('aided', 1), ('design', 1), ('geographic', 1), ('information', 1), ('system', 1), ('review', 1), ('previous', 1), ('work', 1), ('related', 1), ('area', 1), ('liu', 1), ('daneshmend', 1), ('present', 1), ('unified', 1), ('framework', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('study', 1), ('institute', 1), ('logic', 1), ('algebra', 1), ('specification', 1), ('held', 1), ('marktoberdorf', 1), ('germany', 1), ('july', 1), ('august', 1)]
[('significant', 1), ('development', 1), ('theory', 1), ('practice', 1), ('combinatorial', 1), ('optimization', 1), ('last', 1), ('year', 1), ('progress', 1), ('evidenced', 1), ('continuously', 1), ('increasing', 1), ('number', 1), ('international', 1), ('local', 1), ('conference', 1), ('book', 1), ('paper', 1)]
[('proceeding', 1), ('nato', 1), ('advanced', 1), ('research', 1), ('workshop', 1), ('architecture', 1), ('performance', 1), ('issue', 1), ('high', 1), ('capacity', 1), ('local', 1), ('metropolitan', 1), ('area', 1), ('network', 1), ('held', 1), ('sophia', 1), ('antipolis', 1), ('france', 1), ('june', 1)]
[('geometric', 2), ('algebra', 2), ('application', 1), ('engineering', 1), ('science', 1), ('young', 1), ('active', 1), ('subject', 1), ('research', 1), ('promise', 1), ('field', 1), ('mathematical', 1), ('structure', 1), ('together', 1), ('descriptive', 1), ('power', 1), ('result', 1), ('intuitive', 1)]
[('advanced', 2), ('science', 1), ('technology', 1), ('communication', 1), ('networking', 1), ('information', 1), ('security', 1), ('assurance', 1), ('ubiquitous', 1), ('computing', 1), ('multimedia', 1), ('appli', 1), ('tions', 1), ('conference', 1), ('attract', 1), ('many', 1), ('academic', 1), ('industry', 1), ('professional', 1), ('goal', 1)]
[('knowledge', 2), ('society', 2), ('pleasure', 1), ('share', 1), ('springer', 1), ('ccis', 1), ('proceeding', 1), ('third', 1), ('world', 1), ('summit', 1), ('wsks', 1), ('organized', 1), ('international', 1), ('scientific', 1), ('council', 1), ('supported', 1)]
[('electronic', 2), ('business', 2), ('recent', 1), ('economic', 1), ('political', 1), ('technological', 1), ('force', 1), ('changing', 1), ('landscape', 1), ('commerce', 1), ('although', 1), ('stride', 1), ('made', 1), ('past', 1), ('understanding', 1), ('researching', 1), ('advancing', 1), ('rarely', 1)]
[('community', 2), ('structural', 2), ('network', 2), ('structure', 1), ('salient', 1), ('characteristic', 1), ('many', 1), ('real', 1), ('world', 1), ('generally', 1), ('hierarchical', 1), ('overlapping', 1), ('multi', 1), ('scale', 1), ('coexist', 1), ('type', 1), ('regularity', 1), ('pose', 1), ('major', 1)]
[('nan', 1)]
[('blaubeuren', 1), ('conference', 1), ('theory', 1), ('practice', 1), ('geometric', 1), ('modeling', 1), ('become', 1), ('meeting', 1), ('place', 1), ('leading', 1), ('expert', 1), ('industrial', 1), ('academic', 1), ('research', 1), ('institution', 1), ('cad', 1), ('system', 1), ('developer', 1), ('experienced', 1), ('user', 1), ('exchange', 1), ('new', 1), ('idea', 1)]
[('und', 2), ('kommandos', 2), ('da', 1), ('kompakte', 1), ('nachschlagewerk', 1), ('behandelt', 1), ('praxisnah', 1), ('konzepte', 1), ('terminologie', 1), ('der', 1), ('unix', 1), ('variante', 1), ('aix', 1), ('von', 1), ('ibm', 1), ('alle', 1), ('sind', 1), ('einer', 1), ('anschaulichen', 1), ('übersicht', 1), ('dargestellt', 1), ('häufig', 1), ('gebrauchte', 1), ('funktionen', 1), ('werden', 1), ('beispielen', 1), ('erklärt', 1)]
[('computer', 3), ('object', 2), ('oriented', 2), ('graphic', 2), ('concept', 1), ('particularly', 1), ('applicable', 1), ('broadest', 1), ('sense', 1), ('including', 1), ('interaction', 1), ('image', 1), ('synthesis', 1), ('animation', 1), ('aided', 1), ('design', 1), ('use', 1), ('technique', 1), ('widely', 1)]
[('primary', 1), ('aim', 1), ('monograph', 1), ('provide', 1), ('formal', 1), ('framework', 1), ('representation', 1), ('management', 1), ('uncertainty', 1), ('vagueness', 1), ('field', 1), ('artificial', 1), ('intelligence', 1), ('put', 1), ('particular', 1), ('emphasis', 1), ('thorough', 1), ('analysis', 1), ('phenomenon', 1)]
[('workshop', 2), ('appin', 2), ('established', 1), ('interest', 1), ('integrating', 1), ('database', 1), ('programming', 1), ('language', 1), ('book', 1), ('data', 1), ('type', 1), ('persistence', 1), ('evolved', 1), ('proceeding', 1), ('held', 1), ('august', 1), ('purpose', 1)]
[('da', 2), ('jahre', 2), ('buch', 1), ('bietet', 1), ('erstmals', 1), ('eine', 1), ('übersicht', 1), ('über', 1), ('informatik', 1), ('forschung', 1), ('deutschland', 1), ('die', 1), ('autoren', 1), ('führen', 1), ('durch', 1), ('vier', 1), ('thematisch', 1), ('abgrenzbare', 1), ('entwicklungsphasen', 1), ('schwerpunkt', 1), ('de', 1), ('ersten', 1), ('block', 1), ('er', 1), ('ist', 1), ('überregionale', 1), ('forschungsprogramm', 1)]
[('die', 2), ('manche', 2), ('bücher', 1), ('über', 1), ('arbeitsweise', 1), ('und', 1), ('den', 1), ('entwurf', 1), ('logischer', 1), ('oder', 1), ('digitaler', 1), ('systeme', 1), ('weisen', 1), ('unserer', 1), ('meinung', 1), ('nach', 1), ('häufig', 1), ('einen', 1), ('schönheitsfehler', 1), ('auf', 1), ('mehr', 1), ('weniger', 1), ('negetiveemoji', 1), ('sie', 1), ('trennen', 1), ('zu', 1), ('wenig', 1), ('betrachtung', 1), ('de', 1), ('funktionellen', 1), ('ver', 1), ('haltens', 1), ('solcher', 1)]
[('conference', 2), ('proceeding', 1), ('present', 1), ('technical', 1), ('contribution', 1), ('first', 1), ('tions', 1), ('market', 1), ('mechanism', 1), ('application', 1), ('amma', 1), ('held', 1), ('boston', 1), ('massachusetts', 1), ('usa', 1), ('devoted', 1), ('issue', 1), ('arise', 1)]
[('increasingly', 4), ('time', 1), ('basic', 1), ('research', 1), ('tends', 1), ('lead', 1), ('specialization', 1), ('narrow', 1), ('ic', 1), ('addressed', 1), ('focussed', 1), ('community', 1), ('publishing', 1), ('con', 1), ('ned', 1), ('workshop', 1), ('conference', 1), ('discussing', 1), ('incremental', 1), ('contri', 1)]
[('network', 2), ('rapid', 1), ('growth', 1), ('internet', 1), ('increasing', 1), ('demand', 1), ('broadband', 1), ('service', 1), ('access', 1), ('receiving', 1), ('growing', 1), ('investment', 1), ('recent', 1), ('year', 1), ('led', 1), ('massive', 1), ('deployment', 1), ('goal', 1), ('eliminating', 1)]
[('learn', 2), ('computational', 1), ('intelligence', 1), ('encompasses', 1), ('wide', 1), ('variety', 1), ('technique', 1), ('allow', 1), ('computation', 1), ('adapt', 1), ('seek', 1), ('designed', 1), ('information', 1), ('without', 1), ('explicit', 1), ('programming', 1), ('regarding', 1), ('nature', 1), ('content', 1)]
[('multimedia', 4), ('computing', 3), ('social', 2), ('book', 1), ('present', 1), ('first', 1), ('paradigm', 1), ('completely', 1), ('user', 1), ('perspective', 1), ('different', 1), ('traditional', 1), ('web', 1), ('content', 1), ('centric', 1), ('rise', 1)]
[('book', 1), ('focus', 1), ('defining', 1), ('achievement', 1), ('software', 1), ('engineering', 1), ('past', 1), ('decade', 1), ('showcasing', 1), ('vision', 1), ('future', 1), ('feature', 1), ('collection', 1), ('article', 1), ('prominent', 1), ('researcher', 1), ('technologist', 1), ('shaped', 1)]
[('method', 2), ('combination', 1), ('different', 1), ('intelligent', 1), ('active', 1), ('research', 1), ('area', 1), ('artificial', 1), ('intelligence', 1), ('ai', 1), ('aim', 1), ('create', 1), ('integrated', 1), ('hybrid', 1), ('benefit', 1), ('component', 1), ('existing', 1), ('effort', 1), ('combine', 1)]
[('die', 2), ('der', 2), ('al', 1), ('computer', 1), ('nach', 1), ('ihren', 1), ('ersten', 1), ('pionierjahren', 1), ('etwa', 1), ('zwischen', 1), ('und', 1), ('praxis', 1), ('eingang', 1), ('fanden', 1), ('lieb', 1), ('sich', 1), ('kaum', 1), ('voraussehen', 1), ('welche', 1), ('bedeutung', 1), ('einmal', 1), ('organisatorische', 1), ('teil', 1), ('einschlieblich', 1), ('programmierung', 1), ('erlangen', 1), ('wiirde', 1), ('heute', 1)]
[('data', 2), ('mining', 2), ('volume', 2), ('many', 1), ('invaluable', 1), ('book', 1), ('available', 1), ('theory', 1), ('application', 1), ('compiling', 1), ('titled', 1), ('foundation', 1), ('intelligent', 1), ('paradigm', 1), ('clustering', 1), ('association', 1), ('classification', 1), ('wish', 1), ('introduce', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('icst', 1), ('conference', 1), ('tridentcom', 1), ('held', 1), ('shanghai', 1), ('china', 1), ('april', 1), ('numerous', 1), ('submission', 1), ('program', 1), ('committee', 1), ('finally', 1), ('selected', 1), ('full', 1), ('invited', 1)]
[('zu', 2), ('der', 2), ('buch', 1), ('und', 1), ('cd', 1), ('rom', 1), ('ermöglichen', 1), ('e', 1), ('ohne', 1), ('vorkenntnisse', 1), ('da', 1), ('computeralgebra', 1), ('system', 1), ('maple', 1), ('nutzen', 1), ('um', 1), ('elementare', 1), ('mathematische', 1), ('probleme', 1), ('computer', 1), ('lösen', 1), ('sie', 1), ('liefern', 1), ('einen', 1), ('schnellen', 1), ('zugriff', 1), ('auf', 1), ('die', 1), ('lösung', 1), ('mit', 1), ('beschreibung', 1), ('zugehörigen', 1)]
[('eld', 2), ('standard', 2), ('business', 1), ('process', 1), ('management', 1), ('bpm', 1), ('marred', 1), ('seemingly', 1), ('le', 1), ('sequence', 1), ('proposed', 1), ('industry', 1), ('contrary', 1), ('civil', 1), ('electronic', 1), ('engineering', 1), ('result', 1), ('widely', 1), ('supported', 1)]
[('human', 1), ('ambition', 1), ('reproduce', 1), ('improve', 1), ('natural', 1), ('object', 1), ('process', 1), ('long', 1), ('history', 1), ('range', 1), ('dream', 1), ('actual', 1), ('design', 1), ('icarus', 1), ('wing', 1), ('modern', 1), ('robotics', 1), ('bioengineering', 1), ('imperative', 1), ('seems', 1), ('linked', 1)]
[('vast', 1), ('amount', 1), ('data', 1), ('nowadays', 1), ('collected', 1), ('stored', 1), ('processed', 1), ('effort', 1), ('assist', 1), ('making', 1), ('variety', 1), ('administrative', 1), ('governmental', 1), ('decision', 1), ('innovative', 1), ('step', 1), ('considerably', 1), ('improve', 1), ('speed', 1), ('effectiveness', 1), ('quality', 1)]
[('card', 4), ('smart', 1), ('play', 1), ('increasingly', 1), ('important', 1), ('role', 1), ('everyday', 1), ('life', 1), ('encounter', 1), ('credit', 1), ('loyalty', 1), ('electronic', 1), ('purse', 1), ('health', 1), ('ands', 1), ('secure', 1), ('token', 1), ('authentication', 1), ('digital', 1), ('signature', 1), ('small', 1), ('size', 1)]
[('nan', 1)]
[('efficient', 1), ('transfer', 1), ('science', 1), ('society', 1), ('crucial', 1), ('future', 1), ('development', 1), ('rapid', 1), ('progress', 1), ('information', 1), ('technology', 1), ('computer', 1), ('system', 1), ('offer', 1), ('large', 1), ('potential', 1), ('new', 1), ('perspective', 1), ('solving', 1), ('complex', 1), ('problem', 1), ('mathematical', 1)]
[('european', 3), ('initiative', 2), ('amting', 1), ('directorate', 1), ('general', 1), ('information', 1), ('society', 1), ('commission', 1), ('brussels', 1), ('th', 1), ('framework', 1), ('research', 1), ('system', 1), ('soft', 1), ('ware', 1), ('essi', 1), ('part', 1), ('esprit', 1), ('programme', 1), ('funded', 1)]
[('und', 2), ('effiziente', 1), ('konstruktive', 1), ('zielgerichtete', 1), ('kooperative', 1), ('zusammenarbeit', 1), ('spielt', 1), ('einer', 1), ('zeit', 1), ('immer', 1), ('schnellerer', 1), ('entwicklungszyklen', 1), ('die', 1), ('entscheidende', 1), ('rolle', 1), ('kampf', 1), ('um', 1), ('marktvorteile', 1), ('hier', 1), ('wie', 1), ('auch', 1), ('vielen', 1), ('anderen', 1), ('arbeits', 1), ('lebensbereichen', 1)]
[('da', 3), ('der', 2), ('einer', 2), ('weltausstellung', 2), ('wie', 2), ('und', 2), ('aktuelle', 1), ('wissen', 1), ('welt', 1), ('spiegel', 1), ('stellt', 1), ('dar', 1), ('macht', 1), ('e', 1), ('interessierten', 1), ('zugänglich', 1), ('ausstellung', 1), ('publikationen', 1), ('funk', 1), ('über', 1), ('internet', 1), ('alles', 1), ('auf', 1)]
[('lingo', 2), ('praxis', 2), ('die', 2), ('vermittelt', 1), ('knapp', 1), ('und', 1), ('anschaulich', 1), ('alles', 1), ('wissenswerte', 1), ('zur', 1), ('programmierung', 1), ('kommerzieller', 1), ('multimedia', 1), ('anwendungen', 1), ('mit', 1), ('konkrete', 1), ('beispiele', 1), ('au', 1), ('der', 1), ('professionellen', 1), ('erleichtern', 1), ('umsetzung', 1), ('beschriebenen', 1), ('skriptings', 1), ('können', 1)]
[('problem', 2), ('better', 2), ('complex', 2), ('new', 2), ('decade', 1), ('innovation', 1), ('combinatorial', 1), ('solving', 1), ('produced', 1), ('algorithm', 1), ('method', 1), ('solve', 1), ('larger', 1), ('address', 1), ('application', 1), ('domain', 1), ('mean', 1)]
[('turning', 2), ('point', 2), ('critical', 2), ('nature', 1), ('creativity', 1), ('discus', 1), ('theory', 1), ('method', 1), ('focusing', 1), ('concept', 1), ('intellectual', 1), ('context', 1), ('thinking', 1), ('scientific', 1), ('discovery', 1), ('problem', 1), ('solving', 1), ('general', 1), ('book', 1), ('introduces', 1)]
[('internet', 2), ('werden', 2), ('informationen', 2), ('das', 2), ('immer', 1), ('häufiger', 1), ('ausgezeichnet', 1), ('sie', 1), ('für', 1), ('computer', 1), ('interpretierbar', 1), ('sind', 1), ('semantic', 1), ('web', 1), ('solche', 1), ('maschinenlesbaren', 1), ('sorgen', 1), ('dafür', 1), ('dienste', 1), ('verfügbar', 1), ('gemacht', 1), ('und', 1), ('gefunden', 1)]
[('book', 2), ('design', 2), ('subject', 1), ('analysis', 1), ('digital', 1), ('device', 1), ('implement', 1), ('computer', 1), ('arithmetic', 1), ('presentation', 1), ('high', 1), ('level', 1), ('detail', 1), ('description', 1), ('formalism', 1), ('principle', 1), ('mean', 1), ('support', 1), ('many', 1), ('research', 1)]
[('nan', 1)]
[('nan', 1)]
[('linux', 2), ('system', 2), ('preface', 1), ('start', 1), ('guide', 1), ('written', 1), ('private', 1), ('professional', 1), ('user', 1), ('purpose', 1), ('give', 1), ('solid', 1), ('standing', 1), ('unix', 1), ('operating', 1), ('kernel', 1), ('command', 1), ('book', 1), ('intended', 1), ('beginner', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('possible', 1), ('gain', 1), ('competitive', 1), ('advantage', 1), ('based', 1), ('consolidated', 1), ('system', 1), ('implementation', 1), ('important', 1), ('optimisation', 1), ('aspect', 1), ('consistent', 1), ('process', 1), ('integration', 1), ('order', 1), ('bring', 1), ('fast', 1), ('secure', 1), ('cost', 1), ('effective', 1)]
[('nan', 1)]
[('nan', 1)]
[('nan', 1)]
[('programmen', 2), ('ein', 2), ('die', 1), ('formulierung', 1), ('von', 1), ('betriebssystem', 1), ('besteht', 1), ('au', 1), ('zahlreichen', 1), ('sehr', 1), ('unterschied', 1), ('icher', 1), ('größe', 1), ('nicht', 1), ('selten', 1), ('bewegt', 1), ('sich', 1), ('der', 1), ('umfang', 1), ('eines', 1), ('betriebssystems', 1), ('zwischen', 1), ('kund', 1), ('byte', 1), ('mittelgroßer', 1), ('ubersetzer', 1)]
[('methoden', 2), ('entwicklung', 2), ('da', 1), ('von', 1), ('einer', 1), ('arbeitsgruppe', 1), ('der', 1), ('hochschule', 1), ('st', 1), ('gallen', 1), ('entwickelte', 1), ('konzept', 1), ('zum', 1), ('engineering', 1), ('umfaßt', 1), ('einheitliche', 1), ('dokumentation', 1), ('ingenieurgemäße', 1), ('und', 1), ('integration', 1), ('verschiedener', 1), ('zu', 1), ('informationssystem', 1)]
[('summary', 1), ('book', 1), ('written', 1), ('primarily', 1), ('intend', 1), ('wish', 1), ('develop', 1), ('new', 1), ('machine', 1), ('output', 1), ('typeface', 1), ('practical', 1), ('categorize', 1), ('equipment', 1), ('three', 1), ('group', 1), ('digital', 1), ('alphabet', 1), ('required', 1), ('display', 1), ('device', 1)]
[('period', 1), ('six', 1), ('book', 1), ('series', 1), ('scientific', 1), ('fun', 1), ('damentals', 1), ('robotics', 1), ('published', 1), ('springer', 1), ('verlag', 1), ('chronolo', 1), ('gical', 1), ('order', 1), ('dynamic', 1), ('manipulation', 1), ('robot', 1), ('theory', 1), ('application', 1), ('vukobra', 1), ('tovic', 1)]
[('nan', 1)]
[('nan', 1)]
[('springer', 1), ('handbook', 1), ('bio', 1), ('neuro', 1), ('informatics', 1), ('first', 1), ('published', 1), ('book', 1), ('volume', 1), ('explains', 1), ('together', 1), ('basic', 1), ('state', 1), ('art', 1), ('major', 1), ('science', 1), ('discipline', 1), ('interaction', 1), ('mutual', 1), ('relationship', 1), ('namely', 1), ('information', 1)]
[('nan', 1)]
[('technique', 2), ('wide', 2), ('intuitive', 1), ('graphical', 1), ('approach', 1), ('expressive', 1), ('analysis', 1), ('petri', 1), ('net', 1), ('suitable', 1), ('range', 1), ('application', 1), ('teaching', 1), ('scenario', 1), ('gained', 1), ('acceptance', 1), ('modeling', 1), ('area', 1), ('software', 1)]
[('conference', 2), ('proceeding', 1), ('present', 1), ('technical', 1), ('paper', 1), ('selected', 1), ('international', 1), ('intelligent', 1), ('system', 1), ('knowledge', 1), ('engineering', 1), ('iske', 1), ('held', 1), ('december', 1), ('beijing', 1), ('aim', 1), ('bring', 1), ('together', 1), ('expert', 1)]
[('many', 1), ('year', 1), ('technical', 1), ('medical', 1), ('diagnostics', 1), ('area', 1), ('intensive', 1), ('scientific', 1), ('research', 1), ('cover', 1), ('established', 1), ('topic', 1), ('emerging', 1), ('development', 1), ('control', 1), ('engineering', 1), ('artificial', 1), ('intelligence', 1), ('applied', 1), ('mathematics', 1), ('pattern', 1)]
[('cognitive', 2), ('system', 2), ('information', 2), ('processing', 2), ('foundation', 1), ('practical', 1), ('application', 1), ('present', 1), ('selected', 1), ('paper', 1), ('first', 1), ('international', 1), ('conference', 1), ('held', 1), ('beijing', 1), ('china', 1), ('december', 1)]
[('intelligent', 2), ('system', 2), ('conference', 2), ('practical', 1), ('application', 1), ('present', 1), ('selected', 1), ('paper', 1), ('international', 1), ('knowledge', 1), ('engineering', 1), ('iske', 1), ('aim', 1), ('bring', 1), ('together', 1), ('expert', 1), ('different', 1)]
[('introduction', 1), ('cryptography', 1), ('employ', 1), ('programming', 1), ('oriented', 1), ('approach', 1), ('study', 1), ('important', 1), ('cryptographic', 1), ('scheme', 1), ('current', 1), ('use', 1), ('main', 1), ('cryptanalytic', 1), ('attack', 1), ('discussion', 1), ('theoretical', 1), ('aspect', 1), ('emphasizing', 1), ('precise', 1)]
[('die', 2), ('und', 2), ('auflage', 1), ('wird', 1), ('auf', 1), ('ibm', 1), ('spss', 1), ('statistic', 1), ('base', 1), ('exact', 1), ('test', 1), ('der', 1), ('herbst', 1), ('erscheinenden', 1), ('version', 1), ('basieren', 1), ('detailliert', 1), ('anschaulich', 1), ('mit', 1), ('möglichst', 1), ('wenig', 1), ('mathematik', 1), ('werden', 1), ('anhand', 1), ('von', 1), ('praxisbei', 1), ('spielen', 1), ('statistischen', 1), ('methoden', 1)]
[('computational', 2), ('challenge', 1), ('creating', 1), ('real', 1), ('life', 1), ('equivalent', 1), ('human', 1), ('mind', 1), ('requires', 1), ('better', 1), ('understand', 1), ('level', 1), ('natural', 1), ('intelligent', 1), ('system', 1), ('develop', 1), ('cognitive', 1), ('learning', 1), ('function', 1), ('recent', 1), ('year', 1)]
[('fluid', 3), ('environmental', 2), ('play', 1), ('important', 1), ('role', 1), ('system', 1), ('appearing', 1), ('surface', 1), ('water', 1), ('river', 1), ('lake', 1), ('coastal', 1), ('region', 1), ('subsurface', 1), ('atmosphere', 1), ('mechanic', 1), ('concerned', 1), ('motion', 1), ('associated', 1)]
[('computer', 2), ('game', 2), ('program', 2), ('programming', 2), ('developing', 1), ('perfect', 1), ('way', 1), ('learn', 1), ('modern', 1), ('language', 1), ('book', 1), ('teach', 1), ('creation', 1), ('without', 1), ('requiring', 1), ('previous', 1), ('experience', 1), ('contrary', 1)]
[('der', 3), ('medizininformatik', 2), ('da', 1), ('sich', 1), ('dynamisch', 1), ('entwickelnde', 1), ('gebiet', 1), ('mit', 1), ('dem', 1), ('ziel', 1), ('digitalisierung', 1), ('medizin', 1), ('wird', 1), ('vorliegenden', 1), ('buch', 1), ('kompakt', 1), ('dargestellt', 1), ('e', 1), ('soll', 1), ('einen', 1), ('umfassenden', 1), ('und', 1), ('verständlichen', 1), ('einstieg', 1), ('die', 1), ('ermöglichen', 1)]
[('der', 3), ('bibliothek', 2), ('die', 2), ('de', 2), ('dieser', 1), ('band', 1), ('mediengestaltung', 1), ('behandelt', 1), ('nbsp', 1), ('grundlagen', 1), ('printdesigns', 1), ('entwurfstechniken', 1), ('layoutgrundlagen', 1), ('seitengestaltung', 1), ('printprodukte', 1), ('und', 1), ('werbemedienfür', 1), ('diese', 1), ('wurden', 1), ('themen', 1), ('kompendiums', 1)]
[('und', 3), ('der', 2), ('die', 2), ('autor', 1), ('präsentiert', 1), ('grundlagen', 1), ('konzepte', 1), ('heutigen', 1), ('betriebssysteme', 1), ('behandelt', 1), ('gebiete', 1), ('prozesse', 1), ('prozesszustände', 1), ('prozesscheduling', 1), ('prozessynchronisation', 1), ('prozesskommunikation', 1), ('speicherverwaltung', 1), ('virtueller', 1), ('speicher', 1)]
[('für', 2), ('wie', 2), ('sie', 2), ('da', 1), ('buch', 1), ('präsentiert', 1), ('eine', 1), ('methodik', 1), ('robuste', 1), ('regelung', 1), ('sicherheitskritische', 1), ('anwendungen', 1), ('autonomes', 1), ('fahren', 1), ('erforderlich', 1), ('ist', 1), ('deckt', 1), ('alle', 1), ('notwendigen', 1), ('schritte', 1), ('ab', 1), ('quantitative', 1), ('anforderungen', 1), ('die', 1), ('robustheit', 1)]
[('application', 3), ('semantic', 2), ('book', 1), ('describes', 1), ('methodology', 1), ('developing', 1), ('software', 1), ('explicitly', 1), ('implicitly', 1), ('use', 1), ('semantics', 1), ('meaning', 1), ('domain', 1), ('terminology', 1), ('order', 1), ('improve', 1), ('usability', 1)]
[('und', 2), ('die', 2), ('mathematik', 2), ('warum', 1), ('müssen', 1), ('informatikerinnen', 1), ('softwareentwicklerinnen', 1), ('studium', 1), ('eigentlich', 1), ('mathe', 1), ('hören', 1), ('wie', 1), ('kann', 1), ('ihnen', 1), ('beim', 1), ('programmieren', 1), ('helfen', 1), ('diesis', 1), ('lehrbuch', 1), ('vermittelt', 1), ('studienanfängerinnen', 1), ('sprache', 1), ('methode', 1), ('der', 1), ('al', 1)]
[('book', 1), ('present', 1), ('variety', 1), ('widely', 1), ('used', 1), ('algorithm', 1), ('expressing', 1), ('pure', 1), ('functional', 1), ('programming', 1), ('language', 1), ('make', 1), ('structure', 1), ('operation', 1), ('clearer', 1), ('reader', 1), ('opening', 1), ('chapter', 1), ('author', 1), ('introduces', 1), ('specific', 1), ('notation', 1)]
[('und', 3), ('buch', 2), ('die', 2), ('realität', 2), ('für', 2), ('lernen', 1), ('sie', 1), ('mit', 1), ('diesem', 1), ('grundlagen', 1), ('der', 1), ('virtuellen', 1), ('augmentierten', 1), ('kennen', 1), ('diesis', 1), ('über', 1), ('virtuelle', 1), ('augmentierte', 1), ('ist', 1), ('sowohl', 1), ('praktiker', 1), ('interessierte', 1), ('selbststudium', 1), ('al', 1), ('auch', 1), ('studierende', 1), ('geeignet', 1)]
[('project', 3), ('management', 2), ('nd', 1), ('edition', 1), ('book', 1), ('conveys', 1), ('updated', 1), ('content', 1), ('addition', 1), ('classic', 1), ('agile', 1), ('practical', 1), ('manner', 1), ('serf', 1), ('toolbox', 1), ('nbsp', 1), ('end', 1), ('important', 1), ('term', 1)]
[('von', 2), ('und', 2), ('da', 2), ('der', 2), ('diese', 1), ('erweiterte', 1), ('auflage', 1), ('richtet', 1), ('sich', 1), ('die', 1), ('regelmäßigen', 1), ('benutzer', 1), ('berufstätige', 1), ('sowie', 1), ('schüler', 1), ('studierende', 1), ('lehrer', 1), ('buch', 1), ('beschreibt', 1), ('relevante', 1), ('universum', 1), ('informatik', 1), ('informationstechnologie', 1), ('den', 1)]
[('die', 2), ('und', 2), ('relationalen', 2), ('diesis', 1), ('buch', 1), ('bietet', 1), ('eine', 1), ('umfassende', 1), ('einführung', 1), ('theorie', 1), ('praxis', 1), ('relationaler', 1), ('datenbanken', 1), ('e', 1), ('beginnt', 1), ('mit', 1), ('einer', 1), ('mathematisch', 1), ('präzisen', 1), ('darstellung', 1), ('de', 1), ('modells', 1), ('der', 1), ('algebra', 1), ('darauf', 1), ('basierend', 1), ('wird', 1)]
[('start', 1), ('writing', 1), ('book', 1), ('saying', 1), ('several', 1), ('author', 1), ('brain', 1), ('powerful', 1), ('complex', 1), ('information', 1), ('processing', 1), ('device', 1), ('known', 1), ('whether', 1), ('naturally', 1), ('developed', 1), ('created', 1), ('artificially', 1), ('although', 1), ('fully', 1), ('agree', 1)]
[('systematically', 1), ('teach', 1), ('key', 1), ('paradigmic', 1), ('algorithm', 1), ('design', 1), ('methodsprovides', 1), ('deep', 1), ('insight', 1), ('randomization', 1)]
[('dagstuhl', 2), ('seminar', 2), ('state', 1), ('art', 1), ('survey', 1), ('comprises', 1), ('selection', 1), ('material', 1), ('presented', 1), ('international', 1), ('annotating', 1), ('extracting', 1), ('reasoning', 1), ('time', 1), ('event', 1), ('held', 1), ('castle', 1), ('germany', 1), ('april', 1), ('centered', 1)]
[('revised', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('central', 1), ('eastern', 1), ('european', 1), ('conference', 1), ('multi', 1), ('agent', 1), ('system', 1), ('ceemas', 1), ('held', 1), ('leipzig', 1), ('germany', 1), ('september', 1), ('full', 1), ('paper', 1), ('short', 1)]
[('researcher', 1), ('professional', 1), ('relevant', 1), ('field', 1), ('find', 1), ('book', 1), ('defines', 1), ('leading', 1), ('edge', 1), ('current', 1), ('research', 1), ('conceptual', 1), ('structure', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('logic', 1), ('programming', 1), ('artificial', 1), ('intelligence', 1), ('reasoning', 1), ('lpar', 1), ('held', 1), ('yerevan', 1), ('armenia', 1), ('contains', 1), ('revised', 1), ('full', 1), ('short', 1)]
[('hat', 3), ('die', 3), ('sich', 2), ('informatik', 2), ('obwohl', 1), ('da', 1), ('potential', 1), ('der', 1), ('informationstechnologie', 1), ('den', 1), ('letzten', 1), ('ja', 1), ('zehnten', 1), ('vervielfacht', 1), ('und', 1), ('dadurch', 1), ('zweifelsfrei', 1), ('bed', 1), ('tung', 1), ('gewonnen', 1), ('eines', 1), ('nicht', 1), ('verändert', 1), ('tatsache', 1), ('das', 1), ('primär', 1), ('al', 1)]
[('information', 2), ('modern', 1), ('retrieval', 1), ('system', 1), ('capability', 1), ('find', 1), ('organize', 1), ('present', 1), ('different', 1), ('manifestation', 1), ('text', 1), ('picture', 1), ('video', 1), ('database', 1), ('record', 1), ('relevance', 1), ('user', 1)]
[('die', 3), ('und', 2), ('software', 1), ('heutiger', 1), ('unternehmen', 1), ('besteht', 1), ('zum', 1), ('größten', 1), ('teil', 1), ('au', 1), ('altsystemen', 1), ('zwischen', 1), ('fünf', 1), ('dreißig', 1), ('jahren', 1), ('alt', 1), ('sein', 1), ('können', 1), ('der', 1), ('heutigen', 1), ('softwareliteratur', 1), ('wird', 1), ('vorwiegend', 1), ('schaffung', 1), ('konzeption', 1), ('von', 1), ('neuen', 1), ('systemen', 1), ('behandelt', 1), ('ziel', 1)]
[('ein', 2), ('für', 2), ('unternehmen', 2), ('eine', 1), ('genaue', 1), ('abstimmung', 1), ('zwischen', 1), ('systemen', 1), ('softwareentwicklung', 1), ('und', 1), ('unternehmenserfordernissen', 1), ('ist', 1), ('wichtiger', 1), ('wettbewerbsvorteil', 1), ('die', 1), ('optimierung', 1), ('von', 1), ('werden', 1), ('methoden', 1), ('de', 1), ('alignment', 1), ('eingesetzt', 1)]
[('service', 1), ('al', 1), ('grundlegende', 1), ('bausteine', 1), ('von', 1), ('organisationen', 1), ('und', 1), ('unternehmenswelten', 1), ('erzeugen', 1), ('völlig', 1), ('neue', 1), ('teilweise', 1), ('nicht', 1), ('vorhersehbare', 1), ('eigenschaften', 1), ('pervasive', 1), ('computing', 1), ('ambient', 1), ('intelligence', 1), ('auf', 1), ('der', 1), ('einen', 1), ('seite', 1), ('internetbasierte', 1), ('virtuelle', 1)]
[('zum', 2), ('wachsenden', 1), ('portfolio', 1), ('von', 1), ('entwicklungstechniken', 1), ('zeichnen', 1), ('sich', 1), ('zwei', 1), ('aktuelle', 1), ('trend', 1), ('ab', 1), ('einen', 1), ('dominiert', 1), ('die', 1), ('uml', 1), ('al', 1), ('modellierungssprache', 1), ('anderen', 1), ('werden', 1), ('agile', 1), ('methoden', 1), ('neuen', 1), ('bereichen', 1), ('eingesetzt', 1), ('diesis', 1), ('buch', 1), ('stellt', 1), ('konzepte', 1), ('einer', 1)]
[('die', 3), ('qvt', 2), ('eine', 2), ('der', 2), ('modell', 2), ('query', 1), ('view', 1), ('transformation', 1), ('ist', 1), ('spezifikation', 1), ('object', 1), ('management', 1), ('group', 1), ('omg', 1), ('programmiersprache', 1), ('für', 1), ('zu', 1), ('transformationen', 1), ('beschreibt', 1), ('da', 1), ('fachbuch', 1), ('vermittelt', 1), ('grundlagen', 1), ('und', 1), ('anwendung', 1), ('sprache', 1)]
[('book', 2), ('music', 2), ('provides', 1), ('summary', 1), ('manifold', 1), ('audio', 1), ('web', 1), ('based', 1), ('approach', 1), ('information', 1), ('retrieval', 1), ('mir', 1), ('research', 1), ('contrast', 1), ('dealing', 1), ('solely', 1), ('signal', 1), ('processing', 1), ('address', 1), ('additional', 1), ('cultural', 1)]
[('die', 2), ('den', 2), ('mobile', 1), ('apps', 1), ('programme', 1), ('auf', 1), ('smartphones', 1), ('ausgeführt', 1), ('werden', 1), ('sind', 1), ('derzeit', 1), ('fast', 1), ('nur', 1), ('bei', 1), ('konsumenten', 1), ('erfolgreich', 1), ('ein', 1), ('echtes', 1), ('app', 1), ('konzept', 1), ('für', 1), ('business', 1), ('markt', 1), ('fehlt', 1), ('nach', 1), ('wie', 1), ('vor', 1), ('autoren', 1), ('zeigen', 1), ('dem', 1), ('band', 1), ('weg', 1), ('zu', 1), ('intelligenten', 1)]
[('commercial', 1), ('web', 1), ('search', 1), ('engine', 1), ('google', 1), ('yahoo', 1), ('bing', 1), ('used', 1), ('every', 1), ('day', 1), ('million', 1), ('across', 1), ('globe', 1), ('growing', 1), ('refinement', 1), ('usage', 1), ('become', 1), ('increasingly', 1), ('difficult', 1), ('academic', 1), ('researcher', 1), ('keep', 1)]
[('verteilte', 1), ('systeme', 1), ('bilden', 1), ('da', 1), ('rückgrat', 1), ('industrieller', 1), ('anwendungen', 1), ('mit', 1), ('der', 1), ('integration', 1), ('von', 1), ('mobilfunknetzen', 1), ('und', 1), ('mobilen', 1), ('endgeräten', 1), ('erfahren', 1), ('sie', 1), ('eine', 1), ('intensive', 1), ('weiterentwicklung', 1), ('auf', 1), ('den', 1), ('gebieten', 1), ('büroautomatisierung', 1), ('fertigungssteuerung', 1), ('oder', 1)]
[('die', 3), ('eine', 2), ('bereits', 2), ('der', 2), ('da', 1), ('buch', 1), ('richtet', 1), ('sich', 1), ('leserschaft', 1), ('grundkenntnisse', 1), ('computergrafik', 1), ('hat', 1), ('vorwiegend', 1), ('ist', 1), ('hierbei', 1), ('studenten', 1), ('informatik', 1), ('gedacht', 1), ('computeranimationsvorlesung', 1), ('belegt', 1), ('haben', 1), ('oder', 1), ('ein', 1), ('vertieftes', 1)]
[('theory', 3), ('finite', 1), ('model', 1), ('understoodhere', 1), ('areaof', 1), ('mathematicallogic', 1), ('developed', 1), ('close', 1), ('connection', 1), ('application', 1), ('computer', 1), ('science', 1), ('particular', 1), ('computational', 1), ('complexity', 1), ('database', 1), ('fundamental', 1)]
[('algorithm', 2), ('reflects', 1), ('recent', 1), ('development', 1), ('emphasis', 1), ('randomized', 1), ('approximation', 1), ('communication', 1), ('modelsall', 1), ('topic', 1), ('considered', 1), ('algorithmic', 1), ('point', 1), ('view', 1), ('stressing', 1), ('implication', 1), ('design', 1)]
[('die', 3), ('auf', 2), ('diesis', 1), ('buch', 1), ('basiert', 1), ('vorlesungen', 1), ('der', 1), ('autor', 1), ('kaiserslautern', 1), ('gehalten', 1), ('hat', 1), ('ihr', 1), ('wesentliches', 1), ('anliegen', 1), ('war', 1), ('turing', 1), ('berechenbaren', 1), ('wortfunktionen', 1), ('eine', 1), ('von', 1), ('jeglichem', 1), ('maschinenmodell', 1), ('unabhängige', 1), ('weise', 1), ('zu', 1), ('charakterisieren', 1), ('nämlich', 1), ('al', 1)]
[('nan', 1)]
[('eine', 2), ('die', 2), ('diesis', 1), ('buch', 1), ('bietet', 1), ('sowohl', 1), ('anwendungsorientierte', 1), ('einführung', 1), ('programmiersprache', 1), ('al', 1), ('auch', 1), ('moderne', 1), ('strukturierte', 1), ('herangehensweise', 1), ('softwareentwicklung', 1), ('zahlreiche', 1), ('beispiele', 1), ('werden', 1), ('zur', 1), ('erläuterung', 1), ('angeführt', 1), ('und', 1), ('der', 1), ('weg', 1), ('von', 1)]
[('die', 2), ('den', 2), ('durchblick', 1), ('durch', 1), ('informationsflut', 1), ('einer', 1), ('aufstrebenden', 1), ('wissenschaftals', 1), ('bioinformatik', 1), ('noch', 1), ('kinderschuhen', 1), ('steckte', 1), ('waren', 1), ('programmierkenntnisse', 1), ('nötig', 1), ('um', 1), ('mit', 1), ('kryptischen', 1), ('programmen', 1), ('zu', 1), ('arbeiten', 1), ('ihren', 1), ('boom', 1), ('verdankt', 1), ('sie', 1), ('dem', 1), ('rasanten', 1)]
[('bei', 2), ('konzipiert', 1), ('al', 1), ('handbuch', 1), ('für', 1), ('praktiker', 1), ('und', 1), ('führungskräfte', 1), ('zeigen', 1), ('die', 1), ('autoren', 1), ('auf', 1), ('das', 1), ('informationsmanagement', 1), ('der', 1), ('schlüssel', 1), ('zum', 1), ('betrieblichen', 1), ('erfolg', 1), ('ist', 1), ('sei', 1), ('e', 1), ('unternehmen', 1), ('oder', 1), ('auch', 1), ('non', 1), ('profit', 1), ('organisationen', 1), ('moderne', 1), ('organisationsformen', 1)]
[('die', 2), ('ist', 2), ('und', 2), ('komplexitätstheorie', 1), ('inzwischen', 1), ('eine', 1), ('ausgefeilte', 1), ('theorie', 1), ('viele', 1), ('wichtige', 1), ('nützliche', 1), ('ergebnisse', 1), ('sind', 1), ('schwer', 1), ('vermittelbar', 1), ('da', 1), ('der', 1), ('weg', 1), ('zu', 1), ('ergebnissen', 1), ('für', 1), ('konkrete', 1), ('probleme', 1), ('lang', 1), ('beschwerlich', 1), ('während', 1), ('np', 1), ('vollständigkeitstheorie', 1)]
[('nan', 1)]
[('signaturen', 2), ('auf', 2), ('die', 2), ('digitaler', 2), ('digitale', 1), ('basieren', 1), ('kryptographischen', 1), ('algorithmen', 1), ('nationale', 1), ('gesetze', 1), ('zielen', 1), ('beweisrechtliche', 1), ('gleichstellung', 1), ('elektronischer', 1), ('mit', 1), ('handschriftlichen', 1), ('unterschriften', 1), ('fälschungssicherheit', 1)]
[('nan', 1)]
[('der', 3), ('den', 2), ('die', 2), ('obwohl', 1), ('digitale', 1), ('medien', 1), ('letzten', 1), ('jahren', 1), ('gewaltiges', 1), ('wachstum', 1), ('erfahren', 1), ('haben', 1), ('ist', 1), ('gewährleistung', 1), ('authentizität', 1), ('daten', 1), ('um', 1), ('identität', 1), ('de', 1), ('besitzers', 1), ('oder', 1), ('sender', 1), ('zu', 1), ('garantieren', 1), ('urheberrechte', 1), ('durchzusetzen', 1), ('nachweis', 1)]
[('information', 2), ('ie', 2), ('extraction', 1), ('new', 1), ('technology', 1), ('enabling', 1), ('relevant', 1), ('content', 1), ('extracted', 1), ('textual', 1), ('available', 1), ('electronically', 1), ('essentially', 1), ('build', 1), ('natural', 1), ('language', 1), ('processing', 1), ('computational', 1), ('linguistics', 1), ('closely', 1)]
[('die', 2), ('mit', 1), ('dem', 1), ('erscheinen', 1), ('von', 1), ('pc', 1), ('versionen', 1), ('seit', 1), ('hat', 1), ('leistungsfähige', 1), ('programmiersprache', 1), ('apl', 1), ('deutlich', 1), ('attraktivität', 1), ('und', 1), ('verbreitung', 1), ('gewonnen', 1), ('al', 1), ('entwicklungssystem', 1), ('für', 1), ('komplexe', 1), ('anwendungen', 1), ('eine', 1), ('schnelle', 1), ('interaktive', 1), ('analyse', 1), ('großer', 1)]
[('course', 2), ('book', 1), ('began', 1), ('series', 1), ('lecture', 1), ('note', 1), ('called', 1), ('introduc', 1), ('tion', 1), ('adaptive', 1), ('system', 1), ('developed', 1), ('undergraduate', 1), ('computing', 1), ('science', 1), ('major', 1), ('university', 1), ('alberta', 1), ('first', 1), ('taught', 1), ('objective', 1)]
[('da', 2), ('suchmaschinen', 2), ('der', 2), ('recherche', 2), ('und', 2), ('die', 2), ('buch', 1), ('betrachtet', 1), ('thema', 1), ('ausgehend', 1), ('von', 1), ('täglichen', 1), ('führt', 1), ('technischen', 1), ('grundlagen', 1), ('recherchetechniken', 1), ('sowie', 1), ('gesellschaftlichen', 1), ('wirtschaftlichen', 1), ('bedingungen', 1), ('web', 1), ('ein', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('simulation', 1), ('adaptive', 1), ('behaviour', 1), ('sab', 1), ('held', 1), ('odense', 1), ('denmark', 1), ('august', 1), ('full', 1), ('poster', 1), ('included', 1), ('volume', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('european', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('bristol', 1), ('uk', 1), ('september', 1), ('revised', 1), ('research', 1)]
[('lnai', 2), ('volume', 1), ('set', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('european', 1), ('conference', 1), ('machine', 1), ('learning', 1), ('knowledge', 1), ('discovery', 1), ('database', 1), ('ecml', 1), ('pkdd', 1), ('held', 1), ('bristol', 1), ('uk', 1), ('september', 1), ('revised', 1), ('research', 1)]
[('paper', 2), ('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('symposium', 1), ('methodology', 1), ('intelligent', 1), ('system', 1), ('ismis', 1), ('held', 1), ('macau', 1), ('china', 1), ('december', 1), ('regular', 1), ('short', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('ibero', 1), ('american', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('iberamia', 1), ('held', 1), ('cartagena', 1), ('de', 1), ('india', 1), ('colombia', 1), ('november', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('brain', 1), ('imaging', 1), ('brings', 1), ('together', 1), ('technology', 1), ('methodology', 1), ('research', 1), ('question', 1), ('approach', 1), ('wide', 1), ('range', 1), ('scientific', 1), ('field', 1), ('including', 1), ('physic', 1), ('statistic', 1), ('computer', 1), ('science', 1), ('neuroscience', 1), ('biology', 1), ('engineering', 1), ('thus', 1), ('methodological', 1)]
[('butler', 2), ('scenario', 1), ('future', 1), ('personalized', 1), ('virtual', 1), ('appears', 1), ('performs', 1), ('communication', 1), ('coordination', 1), ('task', 1), ('give', 1), ('recommendation', 1), ('handle', 1), ('everyday', 1), ('problem', 1), ('aim', 1), ('book', 1), ('explore', 1)]
[('book', 1), ('constitutes', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('conference', 1), ('nonlinear', 1), ('speech', 1), ('processing', 1), ('nolisp', 1), ('held', 1), ('mon', 1), ('belgium', 1), ('june', 1), ('refereed', 1), ('paper', 1), ('included', 1), ('volume', 1), ('carefully', 1), ('reviewed', 1), ('selected', 1)]
[('fidji', 1), ('international', 1), ('forum', 1), ('researcher', 1), ('practitioner', 1), ('rested', 1), ('advance', 1), ('application', 1), ('software', 1), ('engineering', 1), ('distri', 1), ('ted', 1), ('applicationdevelopment', 1), ('concerningthe', 1), ('technology', 1), ('workshopfocused', 1)]
[('agent', 2), ('system', 2), ('autonomous', 1), ('multi', 1), ('grown', 1), ('promising', 1), ('technology', 1), ('offering', 1), ('credible', 1), ('alternative', 1), ('design', 1), ('intelligent', 1), ('cooperative', 1), ('recently', 1), ('effort', 1), ('made', 1), ('provide', 1), ('novel', 1), ('tool', 1), ('method', 1), ('framework', 1)]
[('conceptual', 2), ('structure', 2), ('volume', 1), ('contains', 1), ('selected', 1), ('paper', 1), ('presented', 1), ('th', 1), ('international', 1), ('ference', 1), ('icc', 1), ('held', 1), ('huntsville', 1), ('alabama', 1), ('july', 1), ('main', 1), ('theme', 1), ('conference', 1), ('work', 1), ('chosen', 1)]
[('nan', 1)]
[('knowledge', 2), ('engineering', 2), ('central', 1), ('theme', 1), ('th', 1), ('international', 1), ('conference', 1), ('management', 1), ('ekaw', 1), ('ontological', 1), ('semantic', 1), ('web', 1), ('provide', 1), ('key', 1), ('foundational', 1), ('delivery', 1), ('mechanism', 1), ('building', 1), ('open', 1)]
[('nan', 1)]
[('ceemas', 2), ('aim', 1), ('conference', 1), ('series', 1), ('provide', 1), ('biennial', 1), ('forum', 1), ('presentation', 1), ('multi', 1), ('agent', 1), ('research', 1), ('development', 1), ('result', 1), ('ticular', 1), ('geographicalorientation', 1), ('towards', 1), ('central', 1), ('eastern', 1), ('europe', 1), ('become', 1)]
[('nan', 1)]
[('conference', 2), ('learning', 2), ('theory', 2), ('volume', 1), ('contains', 1), ('paper', 1), ('presented', 1), ('eighteenth', 1), ('annual', 1), ('previously', 1), ('known', 1), ('computational', 1), ('held', 1), ('bertinoro', 1), ('italy', 1), ('june', 1), ('technical', 1), ('program', 1), ('contained', 1)]
[('conference', 2), ('knowledge', 2), ('discovery', 2), ('data', 2), ('mining', 2), ('international', 2), ('pacific', 1), ('asia', 1), ('pakdd', 1), ('leading', 1), ('area', 1), ('provides', 1), ('forum', 1), ('researcher', 1), ('industry', 1), ('practitioner', 1)]
[('revised', 2), ('paper', 2), ('book', 1), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('workshop', 1), ('topic', 1), ('map', 1), ('research', 1), ('application', 1), ('held', 1), ('october', 1), ('full', 1), ('five', 1), ('short', 1), ('presented', 1), ('together', 1)]
[('data', 2), ('mining', 2), ('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('international', 1), ('workshop', 1), ('biomedical', 1), ('application', 1), ('biodm', 1), ('held', 1), ('singapore', 1), ('conjunction', 1), ('th', 1), ('pacific', 1), ('asia', 1), ('conference', 1), ('knowledge', 1), ('discovery', 1)]
[('book', 2), ('constitutes', 1), ('thoroughly', 1), ('refereed', 1), ('post', 1), ('proceeding', 1), ('th', 1), ('international', 1), ('workshop', 1), ('finite', 1), ('state', 1), ('method', 1), ('natural', 1), ('language', 1), ('processing', 1), ('fsmnlp', 1), ('held', 1), ('helsinki', 1), ('finland', 1), ('september', 1), ('present', 1), ('revised', 1), ('full', 1)]
[('nan', 1)]
[('book', 2), ('revised', 2), ('paper', 2), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('th', 1), ('pacific', 1), ('rim', 1), ('international', 1), ('conference', 1), ('artificial', 1), ('intelligence', 1), ('pricai', 1), ('held', 1), ('guilin', 1), ('china', 1), ('august', 1), ('present', 1), ('full', 1), ('short', 1)]
[('refereed', 1), ('proceeding', 1), ('first', 1), ('international', 1), ('conference', 1), ('knowledge', 1), ('science', 1), ('engineering', 1), ('management', 1), ('ksem', 1), ('held', 1), ('guilin', 1), ('china', 1), ('august', 1), ('conjunction', 1), ('pricai', 1), ('book', 1), ('present', 1), ('revised', 1), ('full', 1), ('paper', 1)]
[('book', 1), ('constitutes', 1), ('refereed', 1), ('proceeding', 1), ('second', 1), ('iapr', 1), ('workshop', 1), ('artificial', 1), ('neural', 1), ('network', 1), ('pattern', 1), ('recognition', 1), ('annpr', 1), ('held', 1), ('ulm', 1), ('germany', 1), ('august', 1), ('september', 1), ('revised', 1), ('paper', 1), ('presented', 1), ('carefully', 1), ('reviewed', 1)]
In [554]:
df_5.head()
Out[554]:
publisher pub_year sale_date year_of_sale num_of_author processed_title processed_description updated_price edition affordability availability_1 encoded_price encoded_year key_words common_word length_title_description
0 O'Reilly Media 2024 2024-01-10 2024 1 learning go go rapidly become preferred language building ... 71.99 2 0 1 3 11 [go, rapidly, become, preferred, language, bui... [go, language, tutorial, teach, developer, rap... 256
1 O'Reilly Media 2023 2023-10-17 2023 1 tidy first tidying messy software means breaking code mak... 42.99 NaN 1 1 1 11 [tidying, messy, software, mean, breaking, cod... [software, code, make, tidying, messy, mean, b... 247
2 O'Reilly Media 2022 2022-10-04 2022 1 hands on machine learning with scikit learn ke... recent series breakthroughs deep learning boos... 96.99 3 0 1 6 10 [recent, series, breakthrough, deep, learning,... [learning, recent, series, breakthrough, deep,... 330
3 O'Reilly Media 2017 2017-03-16 2017 1 designing data intensive applications data center many challenges system design toda... 67.99 NaN 0 1 3 6 [data, center, many, challenge, system, design... [data, center, many, challenge, system, design... 301
4 Pearson Education 2023 2023-10-18 2023 1 exam ref ms microsoft administrator prepare microsoft exam ms help demonstrate rea... 53.86 NaN 1 1 2 11 [prepare, microsoft, exam, m, help, demonstrat... [microsoft, prepare, exam, m, help, demonstrat... 220
In [555]:
## get the total days from the year - keep a reference date

Step 6: Outliers¶

In [556]:
#finding outliers present in the data using various plots and IQR method
In [557]:
def get_numeric_column_list(dataframe):
    col_list=dataframe.select_dtypes(include=['int64','float64']).columns.to_list()
    return col_list
In [558]:
df_5_num=get_numeric_column_list(df_5)
In [559]:
df_5_num
Out[559]:
['pub_year',
 'year_of_sale',
 'num_of_author',
 'updated_price',
 'encoded_price',
 'encoded_year',
 'length_title_description']
In [560]:
def get_cat_column_list(dataframe):
    col_list=dataframe.select_dtypes(include=['category','object']).columns.to_list()
    return col_list
In [561]:
df_5_cat=get_cat_column_list(df_5)
In [562]:
df_5_cat
Out[562]:
['publisher',
 'processed_title',
 'processed_description',
 'edition',
 'key_words',
 'common_word']
In [563]:
#skewness and kurtosis

def get_skew(dataframe):
    return(dataframe[df_5_num].skew())

def get_kurtosis(dataframe):
    return(dataframe[df_5_num].kurtosis())
In [564]:
## need to write about the method and why we did it
In [565]:
print(get_skew(df_5))
print("="*50+'\n')
print(get_kurtosis(df_5))
pub_year                    -7.808205
year_of_sale               -13.936303
num_of_author                3.818639
updated_price                4.790512
encoded_price                0.164453
encoded_year                 0.074813
length_title_description    -0.949223
dtype: float64
==================================================

pub_year                     61.051632
year_of_sale                502.802417
num_of_author                53.046460
updated_price                75.308757
encoded_price                -1.219940
encoded_year                 -1.176322
length_title_description      0.430847
dtype: float64
In [566]:
#IQR method
#first simple method of understanding the data distributuin using quantile


df_5.quantile(np.arange(.1,1.1,.1),axis=0).T #plotting for all the 10percentile of the values
Out[566]:
0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0
pub_year 2007.00 2011.00 2013.00 2015.00 2016.00 2018.00 2019.0 2021.00 2022.000 2025.00
year_of_sale 2007.00 2011.00 2013.00 2015.00 2016.00 2018.00 2019.0 2021.00 2022.000 2025.00
num_of_author 1.00 1.00 1.00 1.00 2.00 2.00 3.0 3.00 4.000 59.00
updated_price 35.15 45.99 53.86 63.82 72.64 72.64 83.3 117.31 172.784 2353.37
affordability 0.00 0.00 0.00 0.00 0.00 0.00 1.0 1.00 1.000 2.00
availability_1 1.00 1.00 1.00 1.00 1.00 1.00 1.0 1.00 1.000 1.00
encoded_price 0.00 1.00 2.00 3.00 3.00 3.00 5.0 6.00 7.000 7.00
encoded_year 1.00 2.00 3.00 4.00 5.00 7.00 7.0 9.00 10.000 11.00
length_title_description 43.00 177.00 198.00 210.00 220.00 231.00 246.0 267.00 295.000 489.00
In [567]:
#write clear understanding of outliers using this table--> your interpretation
In [568]:
#IQR method

out={}
for col in df_5_num:
    q1=df_5[col].quantile(.25).round(2)
    q2=df_5[col].median()
    q3=df_5[col].quantile(.75).round(2)
    iqr=(q3-q1).round(2)
    lw=(q1-(1.5*iqr)).round(2)
    uw=(q1+(1.5*iqr)).round(2)
    
    out[col]={"IQR":iqr,"Lower_whisker":lw,"quater1":q1,"mid":q2,"quater3":q3,"upper_whisker":uw}
In [569]:
for i,j in out.items():
    print(i,"\n")
    for ii,jj in j.items():
        print("{} : {}".format(ii,jj))
    print()
    print("="*50)
pub_year 

IQR : 8.0
Lower_whisker : 2000.0
quater1 : 2012.0
mid : 2016.0
quater3 : 2020.0
upper_whisker : 2024.0

==================================================
year_of_sale 

IQR : 8.0
Lower_whisker : 2000.0
quater1 : 2012.0
mid : 2016.0
quater3 : 2020.0
upper_whisker : 2024.0

==================================================
num_of_author 

IQR : 2.0
Lower_whisker : -2.0
quater1 : 1.0
mid : 2.0
quater3 : 3.0
upper_whisker : 4.0

==================================================
updated_price 

IQR : 44.45
Lower_whisker : -16.69
quater1 : 49.99
mid : 72.64
quater3 : 94.44
upper_whisker : 116.67

==================================================
encoded_price 

IQR : 4.0
Lower_whisker : -5.0
quater1 : 1.0
mid : 3.0
quater3 : 5.0
upper_whisker : 7.0

==================================================
encoded_year 

IQR : 6.0
Lower_whisker : -7.0
quater1 : 2.0
mid : 5.0
quater3 : 8.0
upper_whisker : 11.0

==================================================
length_title_description 

IQR : 66.0
Lower_whisker : 91.0
quater1 : 190.0
mid : 220.0
quater3 : 256.0
upper_whisker : 289.0

==================================================
In [570]:
#calculated the IQR and varified the values of quantile using the formula
In [571]:
plt.figure(figsize=(16,8))

df_5[df_5_num].boxplot()
plt.xlabel("numeric_columns")
plt.ylabel("distribution")
plt.tight_layout() 
plt.show()
In [572]:
#getting you the box plot

def box_plot(dataframe):
    for col in df_5_num:
        plt.figure(figsize=(6, 8))
        plt.boxplot(dataframe[col].dropna())  
        plt.xlabel('{}'.format(col))
        plt.ylabel('Frequency')
        plt.grid(True)
        plt.show()
In [573]:
box_plot(df_5)
In [574]:
sns.pairplot(df_5[df_5_num[:4]],diag_kind='kde')
plt.tight_layout()
plt.show()
In [575]:
sns.pairplot(df_5[df_5_num[4:6]],diag_kind='kde')
plt.tight_layout()
plt.show()
In [576]:
sns.pairplot(df_5[df_5_num[6:]])
plt.tight_layout()
plt.show()
In [577]:
df_5.hist(figsize=(15,9),bins=10)
# plt.figure(figsize=(15,8))
plt.show()

Step 7: Handling_outliers¶

In [578]:
#flooring and cap method 
In [579]:
df_6=df_5.copy()
In [580]:
out
Out[580]:
{'pub_year': {'IQR': 8.0,
  'Lower_whisker': 2000.0,
  'quater1': 2012.0,
  'mid': 2016.0,
  'quater3': 2020.0,
  'upper_whisker': 2024.0},
 'year_of_sale': {'IQR': 8.0,
  'Lower_whisker': 2000.0,
  'quater1': 2012.0,
  'mid': 2016.0,
  'quater3': 2020.0,
  'upper_whisker': 2024.0},
 'num_of_author': {'IQR': 2.0,
  'Lower_whisker': -2.0,
  'quater1': 1.0,
  'mid': 2.0,
  'quater3': 3.0,
  'upper_whisker': 4.0},
 'updated_price': {'IQR': 44.45,
  'Lower_whisker': -16.69,
  'quater1': 49.99,
  'mid': 72.64,
  'quater3': 94.44,
  'upper_whisker': 116.67},
 'encoded_price': {'IQR': 4.0,
  'Lower_whisker': -5.0,
  'quater1': 1.0,
  'mid': 3.0,
  'quater3': 5.0,
  'upper_whisker': 7.0},
 'encoded_year': {'IQR': 6.0,
  'Lower_whisker': -7.0,
  'quater1': 2.0,
  'mid': 5.0,
  'quater3': 8.0,
  'upper_whisker': 11.0},
 'length_title_description': {'IQR': 66.0,
  'Lower_whisker': 91.0,
  'quater1': 190.0,
  'mid': 220.0,
  'quater3': 256.0,
  'upper_whisker': 289.0}}
In [581]:
def fol_cap(dataframe):
#     print(dataframe)
    for col in df_5_num:
        print(col)
        dataframe[col]=np.where(dataframe[col]<out[col]['Lower_whisker'],out[col]['Lower_whisker'],dataframe[col])
        dataframe[col]=np.where(dataframe[col]>out[col]['upper_whisker'],out[col]['upper_whisker'],dataframe[col])
In [582]:
fol_cap(df_6)
pub_year
year_of_sale
num_of_author
updated_price
encoded_price
encoded_year
length_title_description
In [583]:
df_6.hist(figsize=(15,9),bins=10)
# plt.figure(figsize=(15,8))
plt.show()
In [584]:
box_plot(df_6)
In [585]:
print(get_skew(df_6))
print("="*50+'\n')
print(get_kurtosis(df_6))
pub_year                   -0.782460
year_of_sale               -0.684993
num_of_author               0.659085
updated_price               0.095980
encoded_price               0.164453
encoded_year                0.074813
length_title_description   -0.773126
dtype: float64
==================================================

pub_year                    0.007597
year_of_sale               -0.094856
num_of_author              -0.998686
updated_price              -0.834049
encoded_price              -1.219940
encoded_year               -1.176322
length_title_description   -0.248143
dtype: float64
In [586]:
#write analysis for the floor and cap method --> df_6

trim¶

In [587]:
#littel tricky one, but we can handle one by one slowly
In [588]:
df_7=df_5.copy()
In [589]:
df_7.shape
Out[589]:
(30828, 16)
In [590]:
df_7=df_7[(df_7.pub_year>out['pub_year']['Lower_whisker']) & (df_7.pub_year<out['pub_year']['upper_whisker'])]
In [591]:
df_7.shape
Out[591]:
(29625, 16)
In [592]:
df_7=df_7[(df_7.num_of_author>out['num_of_author']['Lower_whisker']) & (df_7.num_of_author<out['num_of_author']['upper_whisker'])]
In [593]:
df_7.shape
Out[593]:
(24613, 16)
In [594]:
df_7=df_7[(df_7.updated_price>out['updated_price']['Lower_whisker']) & (df_7.updated_price<out['updated_price']['upper_whisker'])]
In [595]:
df_7.shape
Out[595]:
(20422, 16)
In [596]:
df_7=df_7[(df_7.length_title_description>out['length_title_description']['Lower_whisker']) & (df_7.length_title_description<out['length_title_description']['upper_whisker'])]
In [597]:
df_7.shape
Out[597]:
(14001, 16)
In [598]:
#we didn't use the  'encoded_price', 'encoded_year' as it is already trimmed properly

#16913 data is trimmed with 54%
In [599]:
df_7.hist(figsize=(15,9),bins=10)
# plt.figure(figsize=(15,8))
plt.show()
In [600]:
box_plot(df_7)
In [601]:
print(get_skew(df_7))
print("="*50+'\n')
print(get_kurtosis(df_6))
pub_year                   -0.478955
year_of_sale               -0.447083
num_of_author               0.781693
updated_price              -0.270124
encoded_price               0.133706
encoded_year                0.227116
length_title_description   -0.290060
dtype: float64
==================================================

pub_year                    0.007597
year_of_sale               -0.094856
num_of_author              -0.998686
updated_price              -0.834049
encoded_price              -1.219940
encoded_year               -1.176322
length_title_description   -0.248143
dtype: float64

log transform¶

In [602]:
df_8=df_5.copy()
In [603]:
df_8.describe()
Out[603]:
pub_year year_of_sale num_of_author updated_price affordability availability_1 encoded_price encoded_year length_title_description
count 30828.000000 30828.000000 30828.000000 30828.000000 30828.000000 30828.000000 30828.000000 30828.000000 30828.000000
mean 2011.657325 2015.326943 2.219476 87.497879 0.425684 0.992053 3.352504 5.180161 207.098579
std 31.568664 7.026616 1.715774 69.133299 0.550518 0.088794 2.297400 3.368124 80.955214
min 1753.000000 1753.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.000000
25% 2012.000000 2012.000000 1.000000 49.990000 0.000000 1.000000 1.000000 2.000000 190.000000
50% 2016.000000 2016.000000 2.000000 72.640000 0.000000 1.000000 3.000000 5.000000 220.000000
75% 2020.000000 2020.000000 3.000000 94.440000 1.000000 1.000000 5.000000 8.000000 256.000000
max 2025.000000 2025.000000 59.000000 2353.370000 2.000000 1.000000 7.000000 11.000000 489.000000
In [604]:
def log_(dataframe):
    for col in df_5_num:
        dataframe[col] = dataframe[col].map(lambda i: np.log(i) if i>0 else 0)
In [605]:
log_(df_8)
In [606]:
df_8.describe()
Out[606]:
pub_year year_of_sale num_of_author updated_price affordability availability_1 encoded_price encoded_year length_title_description
count 30828.000000 30828.000000 30828.000000 30828.000000 30828.000000 30828.000000 30828.000000 30828.000000 30828.000000
mean 7.606580 7.608530 0.589006 4.253041 0.425684 0.992053 1.018482 1.401758 5.173174
std 0.016747 0.003581 0.613654 0.683522 0.550518 0.088794 0.715690 0.800651 0.699479
min 7.469084 7.469084 0.000000 -0.010050 0.000000 0.000000 0.000000 0.000000 2.197225
25% 7.606885 7.606885 0.000000 3.911823 0.000000 1.000000 0.000000 0.693147 5.247024
50% 7.608871 7.608871 0.693147 4.285516 0.000000 1.000000 1.098612 1.609438 5.393628
75% 7.610853 7.610853 1.098612 4.547965 1.000000 1.000000 1.609438 2.079442 5.545177
max 7.613325 7.613325 4.077537 7.763604 2.000000 1.000000 1.945910 2.397895 6.192362
In [607]:
df_8.hist(figsize=(15,9),bins=10)
# plt.figure(figsize=(15,8))
plt.show()
In [608]:
box_plot(df_8)
In [609]:
print(get_skew(df_8))
print("="*50+'\n')
print(get_kurtosis(df_6))
pub_year                    -7.856923
year_of_sale               -15.726050
num_of_author                0.620608
updated_price               -0.898021
encoded_price               -0.275110
encoded_year                -0.595447
length_title_description    -1.956265
dtype: float64
==================================================

pub_year                    0.007597
year_of_sale               -0.094856
num_of_author              -0.998686
updated_price              -0.834049
encoded_price              -1.219940
encoded_year               -1.176322
length_title_description   -0.248143
dtype: float64
In [610]:
#in report we need to discuss the results properly  with a nice table
In [611]:
df_5['key'] = df_5['key_words'].apply(lambda x: ' '.join(x))
In [612]:
df_5.head()
Out[612]:
publisher pub_year sale_date year_of_sale num_of_author processed_title processed_description updated_price edition affordability availability_1 encoded_price encoded_year key_words common_word length_title_description key
0 O'Reilly Media 2024 2024-01-10 2024 1 learning go go rapidly become preferred language building ... 71.99 2 0 1 3 11 [go, rapidly, become, preferred, language, bui... [go, language, tutorial, teach, developer, rap... 256 go rapidly become preferred language building ...
1 O'Reilly Media 2023 2023-10-17 2023 1 tidy first tidying messy software means breaking code mak... 42.99 NaN 1 1 1 11 [tidying, messy, software, mean, breaking, cod... [software, code, make, tidying, messy, mean, b... 247 tidying messy software mean breaking code make...
2 O'Reilly Media 2022 2022-10-04 2022 1 hands on machine learning with scikit learn ke... recent series breakthroughs deep learning boos... 96.99 3 0 1 6 10 [recent, series, breakthrough, deep, learning,... [learning, recent, series, breakthrough, deep,... 330 recent series breakthrough deep learning boost...
3 O'Reilly Media 2017 2017-03-16 2017 1 designing data intensive applications data center many challenges system design toda... 67.99 NaN 0 1 3 6 [data, center, many, challenge, system, design... [data, center, many, challenge, system, design... 301 data center many challenge system design today...
4 Pearson Education 2023 2023-10-18 2023 1 exam ref ms microsoft administrator prepare microsoft exam ms help demonstrate rea... 53.86 NaN 1 1 2 11 [prepare, microsoft, exam, m, help, demonstrat... [microsoft, prepare, exam, m, help, demonstrat... 220 prepare microsoft exam m help demonstrate real...

prasantha¶

In [613]:
# Handle missing values in 'price' by filling with the mean
df_5['updated_price'].fillna(df_5['updated_price'].mean(), inplace=True)
In [614]:
# Fill missing 'pub_year' values with the mode (most common value)
pub_year_mode = df['pub_year'].mode()[0]  # Get the most common publication year
df_5['pub_year'].fillna(pub_year_mode, inplace=True)
In [615]:
# Select 'price' and 'pub_year' for clustering
df_cluster = df_5[['updated_price', 'pub_year']]
In [616]:
# Scale the data
scaler = StandardScaler()
df_cluster_scaled = scaler.fit_transform(df_cluster)
In [617]:
# Elbow Method to determine the optimal number of clusters
wcss = []
for i in range(1, 11):
    kmeans = KMeans(n_clusters=i, init='k-means++', random_state=42)
    kmeans.fit(df_cluster_scaled)
    wcss.append(kmeans.inertia_)
In [618]:
# Plot the Elbow Curve
plt.figure(figsize=(10, 6))
plt.plot(range(1, 11), wcss)
plt.title('Elbow Method')
plt.xlabel('Number of clusters')
plt.ylabel('WCSS')
plt.show()
In [619]:
optimal_clusters = 3 

# Apply KMeans with the chosen number of clusters
kmeans = KMeans(n_clusters=optimal_clusters, init='k-means++', random_state=42)
kmeans_clusters = kmeans.fit_predict(df_cluster_scaled)
In [620]:
# Silhouette Score for KMeans
silhouette_avg = silhouette_score(df_cluster_scaled, kmeans_clusters)
print(f'Silhouette Score for K-Means with {optimal_clusters} clusters:', silhouette_avg)
Silhouette Score for K-Means with 3 clusters: 0.7382138560948529
In [621]:
# Apply DBSCAN clustering
dbscan = DBSCAN(eps=0.5, min_samples=5)
dbscan_clusters = dbscan.fit_predict(df_cluster_scaled)
In [622]:
# Add the cluster labels to the original DataFrame
df_5['kmeans_cluster'] = kmeans_clusters
df_5['dbscan_cluster'] = dbscan_clusters
In [623]:
# Optional visualization
# KMeans Clustering
plt.figure(figsize=(10, 6))
plt.scatter(df_5['pub_year'], df_5['updated_price'], c=df_5['kmeans_cluster'], cmap='viridis')
plt.title('KMeans Clustering of Price and Publication Year')
plt.xlabel('Publication Year')
plt.ylabel('Price')
plt.colorbar(label='KMeans Cluster')
plt.show()
In [624]:
# DBSCAN Clustering
plt.figure(figsize=(10, 6))
plt.scatter(df_5['pub_year'], df_5['updated_price'], c=df_5['dbscan_cluster'], cmap='viridis')
plt.title('DBSCAN Clustering of Price and Publication Year')
plt.xlabel('Publication Year')
plt.ylabel('Price')
plt.colorbar(label='DBSCAN Cluster')
plt.show()
In [625]:
# here from both of the graph we can draw the inference that the price of books have risen
# in the recent years.

Book edition number and price¶

In [626]:
 df_5.tail(23)
Out[626]:
publisher pub_year sale_date year_of_sale num_of_author processed_title processed_description updated_price edition affordability availability_1 encoded_price encoded_year key_words common_word length_title_description key kmeans_cluster dbscan_cluster
39959 Springer Berlin Heidelberg 2012 2012-09-11 2012 3 machine learning and knowledge discovery in da... volume set lnai lnai constitutes refereed proc... 72.64 NaN 0 1 3 2 [volume, set, lnai, lnai, constitutes, referee... [lnai, volume, set, constitutes, refereed, pro... 226 volume set lnai lnai constitutes refereed proc... 0 0
39960 Springer Berlin Heidelberg 2013 2013-12-06 2013 4 foundations of intelligent systems book constitutes proceedings th international ... 72.64 NaN 0 1 3 3 [book, constitutes, proceeding, th, internatio... [paper, book, constitutes, proceeding, th, int... 212 book constitutes proceeding th international s... 0 0
39961 Springer Berlin Heidelberg 2012 2012-11-15 2012 3 advances in artificial intelligence iberamia book constitutes refereed proceedings th ibero... 72.64 NaN 0 1 3 2 [book, constitutes, refereed, proceeding, th, ... [book, constitutes, refereed, proceeding, th, ... 232 book constitutes refereed proceeding th ibero ... 0 0
39962 Springer Berlin Heidelberg 2012 2012-11-11 2012 4 machine learning and interpretation in neuroim... brain imaging brings together technology metho... 65.38 NaN 0 1 3 2 [brain, imaging, brings, together, technology,... [brain, imaging, brings, together, technology,... 261 brain imaging brings together technology metho... 0 0
39963 Springer Berlin Heidelberg 2013 2013-03-12 2013 1 your virtual butler scenarios future personalized virtual butler a... 72.64 NaN 0 1 3 3 [scenario, future, personalized, virtual, butl... [butler, scenario, future, personalized, virtu... 184 scenario future personalized virtual butler ap... 0 0
39964 Springer Berlin Heidelberg 2013 2013-06-12 2013 2 advances in nonlinear speech processing book constitutes proceedings th international ... 65.38 NaN 0 1 3 3 [book, constitutes, proceeding, th, internatio... [book, constitutes, proceeding, th, internatio... 213 book constitutes proceeding th international c... 0 0
39965 Springer Berlin Heidelberg 2004 2004-03-09 2004 3 scientific engineering of distributed java app... fidji international forum researchers practiti... 87.44 NaN 0 0 5 0 [fidji, international, forum, researcher, prac... [fidji, international, forum, researcher, prac... 234 fidji international forum researcher practitio... 0 0
39966 Springer Berlin Heidelberg 2004 2004-08-17 2004 3 programming multi agent systems autonomous agents multi agent systems grown pr... 72.64 NaN 0 1 3 0 [autonomous, agent, multi, agent, system, grow... [agent, system, autonomous, multi, grown, prom... 225 autonomous agent multi agent system grown prom... 0 0
39967 Springer Berlin Heidelberg 2004 2004-06-29 2004 3 conceptual structures at work volume contains selected papers presented th i... 72.64 NaN 0 1 3 0 [volume, contains, selected, paper, presented,... [conceptual, structure, volume, contains, sele... 207 volume contains selected paper presented th in... 0 0
39968 Springer Berlin Heidelberg 2004 2004-09-21 2004 4 computer security esorics nan 87.44 NaN 0 0 5 0 [nan] [nan] 29 nan 0 0
39969 Springer Berlin Heidelberg 2011 2011-03-22 2011 4 engineering knowledge in the age of the semant... central themes th international conference kno... 130.77 NaN 0 1 6 2 [central, theme, th, international, conference... [knowledge, engineering, central, theme, th, i... 238 central theme th international conference know... 0 0
39970 Springer Berlin Heidelberg 2005 2005-09-14 2005 1 frontiers of combining systems nan 72.64 NaN 0 1 3 0 [nan] [nan] 33 nan 0 0
39971 Springer Berlin Heidelberg 2005 2005-10-03 2005 3 multi agent systems and applications iv aim ceemas conference series provide biennial ... 130.77 NaN 0 1 6 0 [aim, ceemas, conference, series, provide, bie... [ceemas, aim, conference, series, provide, bie... 221 aim ceemas conference series provide biennial ... 0 0
39972 Springer Berlin Heidelberg 2005 2005-07-11 2005 3 conceptual structures common semantics for sha... nan 72.64 NaN 0 1 3 0 [nan] [nan] 63 nan 0 0
39973 Springer Berlin Heidelberg 2005 2005-06-28 2005 2 learning theory volume contains papers presented eighteenth an... 130.77 NaN 0 1 6 0 [volume, contains, paper, presented, eighteent... [conference, learning, theory, volume, contain... 204 volume contains paper presented eighteenth ann... 0 0
39974 Springer Berlin Heidelberg 2005 2005-05-13 2005 3 advances in knowledge discovery and data mining pacific asia conference knowledge discovery da... 130.77 NaN 0 1 6 0 [pacific, asia, conference, knowledge, discove... [conference, knowledge, discovery, data, minin... 242 pacific asia conference knowledge discovery da... 0 0
39975 Springer Berlin Heidelberg 2006 2006-02-15 2006 2 charting the topic maps research and applicati... book constitutes thoroughly refereed post proc... 72.64 NaN 0 1 3 0 [book, constitutes, thoroughly, refereed, post... [revised, paper, book, constitutes, thoroughly... 251 book constitutes thoroughly refereed post proc... 0 0
39976 Springer Berlin Heidelberg 2006 2006-02-28 2006 3 data mining for biomedical applications book constitutes refereed proceedings internat... 72.64 NaN 0 1 3 0 [book, constitutes, refereed, proceeding, inte... [data, mining, book, constitutes, refereed, pr... 227 book constitutes refereed proceeding internati... 0 0
39977 Springer Berlin Heidelberg 2006 2006-12-12 2006 3 finite state methods and natural language proc... book constitutes thoroughly refereed post proc... 72.64 NaN 0 1 3 0 [book, constitutes, thoroughly, refereed, post... [book, constitutes, thoroughly, refereed, post... 246 book constitutes thoroughly refereed post proc... 0 0
39978 Springer Berlin Heidelberg 2006 2006-07-25 2006 4 argumentation in multi agent systems nan 72.64 NaN 0 1 3 0 [nan] [nan] 39 nan 0 0
39979 Springer Berlin Heidelberg 2008 2008-02-20 2008 2 pricai trends in artificial intelligence book constitutes refereed proceedings th pacif... 232.48 NaN 0 1 7 1 [book, constitutes, refereed, proceeding, th, ... [book, revised, paper, constitutes, refereed, ... 228 book constitutes refereed proceeding th pacifi... 2 0
39988 Springer Berlin Heidelberg 2006 2006-07-25 2006 3 knowledge science engineering and management refereed proceedings first international confe... 130.77 NaN 0 1 6 0 [refereed, proceeding, first, international, c... [refereed, proceeding, first, international, c... 219 refereed proceeding first international confer... 0 0
39989 Springer Berlin Heidelberg 2006 2006-08-29 2006 2 artificial neural networks in pattern recognition book constitutes refereed proceedings second i... 72.64 NaN 0 1 3 0 [book, constitutes, refereed, proceeding, seco... [book, constitutes, refereed, proceeding, seco... 238 book constitutes refereed proceeding second ia... 0 0
In [627]:
df_5[['edition','updated_price']].shape
Out[627]:
(30828, 2)
In [628]:
edition_mode = df['edition'].mode()[0]  # Get the most common publication year
df_5['edition'].fillna(edition_mode, inplace=True)

updated_price_mode = df['updated_price'].mode()[0]  # Get the most common publication year
df_5['updated_price'].fillna(edition_mode, inplace=True)
In [629]:
# Select 'edition_num' and 'price' for clustering, dropping any missing values
# df_5.dropna(subset=['edition', 'updated_price'], inplace=True)
In [630]:
df_5[['edition','updated_price']].shape
Out[630]:
(30828, 2)
In [631]:
df_5
Out[631]:
publisher pub_year sale_date year_of_sale num_of_author processed_title processed_description updated_price edition affordability availability_1 encoded_price encoded_year key_words common_word length_title_description key kmeans_cluster dbscan_cluster
0 O'Reilly Media 2024 2024-01-10 2024 1 learning go go rapidly become preferred language building ... 71.99 2 0 1 3 11 [go, rapidly, become, preferred, language, bui... [go, language, tutorial, teach, developer, rap... 256 go rapidly become preferred language building ... 0 0
1 O'Reilly Media 2023 2023-10-17 2023 1 tidy first tidying messy software means breaking code mak... 42.99 2 1 1 1 11 [tidying, messy, software, mean, breaking, cod... [software, code, make, tidying, messy, mean, b... 247 tidying messy software mean breaking code make... 0 0
2 O'Reilly Media 2022 2022-10-04 2022 1 hands on machine learning with scikit learn ke... recent series breakthroughs deep learning boos... 96.99 3 0 1 6 10 [recent, series, breakthrough, deep, learning,... [learning, recent, series, breakthrough, deep,... 330 recent series breakthrough deep learning boost... 0 0
3 O'Reilly Media 2017 2017-03-16 2017 1 designing data intensive applications data center many challenges system design toda... 67.99 2 0 1 3 6 [data, center, many, challenge, system, design... [data, center, many, challenge, system, design... 301 data center many challenge system design today... 0 0
4 Pearson Education 2023 2023-10-18 2023 1 exam ref ms microsoft administrator prepare microsoft exam ms help demonstrate rea... 53.86 2 1 1 2 11 [prepare, microsoft, exam, m, help, demonstrat... [microsoft, prepare, exam, m, help, demonstrat... 220 prepare microsoft exam m help demonstrate real... 0 0
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
39977 Springer Berlin Heidelberg 2006 2006-12-12 2006 3 finite state methods and natural language proc... book constitutes thoroughly refereed post proc... 72.64 2 0 1 3 0 [book, constitutes, thoroughly, refereed, post... [book, constitutes, thoroughly, refereed, post... 246 book constitutes thoroughly refereed post proc... 0 0
39978 Springer Berlin Heidelberg 2006 2006-07-25 2006 4 argumentation in multi agent systems nan 72.64 2 0 1 3 0 [nan] [nan] 39 nan 0 0
39979 Springer Berlin Heidelberg 2008 2008-02-20 2008 2 pricai trends in artificial intelligence book constitutes refereed proceedings th pacif... 232.48 2 0 1 7 1 [book, constitutes, refereed, proceeding, th, ... [book, revised, paper, constitutes, refereed, ... 228 book constitutes refereed proceeding th pacifi... 2 0
39988 Springer Berlin Heidelberg 2006 2006-07-25 2006 3 knowledge science engineering and management refereed proceedings first international confe... 130.77 2 0 1 6 0 [refereed, proceeding, first, international, c... [refereed, proceeding, first, international, c... 219 refereed proceeding first international confer... 0 0
39989 Springer Berlin Heidelberg 2006 2006-08-29 2006 2 artificial neural networks in pattern recognition book constitutes refereed proceedings second i... 72.64 2 0 1 3 0 [book, constitutes, refereed, proceeding, seco... [book, constitutes, refereed, proceeding, seco... 238 book constitutes refereed proceeding second ia... 0 0

30828 rows × 19 columns

In [632]:
# Scale the data
scaler = StandardScaler()
df_cluster_scaled = scaler.fit_transform(df_cluster)
In [633]:
# Elbow Method to determine the optimal number of clusters
wcss = []
for i in range(2, 11):
    kmeans = KMeans(n_clusters=i, init='k-means++', random_state=42)
    kmeans.fit(df_cluster_scaled)
    wcss.append(kmeans.inertia_)
In [634]:
# Plot the Elbow Curve
plt.figure(figsize=(10, 6))
plt.plot(range(2, 11), wcss)
plt.title('Elbow Method')
plt.xlabel('Number of clusters')
plt.ylabel('WCSS')
plt.show()
In [635]:
optimal_clusters = 3 
In [636]:
# Apply KMeans with the chosen number of clusters
kmeans = KMeans(n_clusters=optimal_clusters, init='k-means++', random_state=42)
clusters = kmeans.fit_predict(df_cluster_scaled)
In [637]:
# Add cluster labels to the DataFrame that was used for clustering
df_5['KMeans_cluster_2'] = clusters
In [642]:
# Now let's plot the clusters to see how they've been assigned based on 'edition_num' and 'price'
plt.figure(figsize=(10, 6))
plt.scatter(df_5['edition'], df_5['updated_price'], c=df_5['KMeans_cluster_2'], cmap='viridis')
plt.title('Clustering of Edition Number and Price')
plt.xlabel('Edition Number')
plt.ylabel('Price')
plt.colorbar(label='Cluster')
plt.show()
<Figure size 1000x600 with 0 Axes>
In [643]:
silhouette_avg = silhouette_score(df_cluster_scaled, clusters)
print(f'Silhouette Score for K-Means with {optimal_clusters} clusters:', silhouette_avg)
Silhouette Score for K-Means with 3 clusters: 0.7382138560948529
In [644]:
# Apply DBSCAN
dbscan = DBSCAN(eps=0.5, min_samples=5)  
clusters = dbscan.fit_predict(df_cluster_scaled)
In [645]:
# Add the cluster labels to the DataFrame
df_5['dbscan_cluster_2'] = clusters
In [646]:
# Plot the clusters
plt.figure(figsize=(10, 6))
plt.scatter(df_5['edition'], df_5['updated_price'], c=df_5['dbscan_cluster_2'], cmap='viridis')
plt.title('DBSCAN Clustering of Edition Number and Price')
plt.xlabel('Edition Number')
plt.ylabel('Price')
plt.colorbar(label='DBSCAN Cluster')
plt.show()
In [647]:
num_clusters = len(set(clusters)) - (1 if -1 in clusters else 0)
noise_points = list(clusters).count(-1)
In [648]:
print(f"Number of clusters formed: {num_clusters}")
print(f"Number of noise points: {noise_points}")
Number of clusters formed: 5
Number of noise points: 9
In [649]:
# here we observed the optimal no of clusters were 3 for the both method. and we can draw the inference that
# usally the first publication's price is high and it gradually decreases from the both clustering algorithm.
In [650]:
df_5
Out[650]:
publisher pub_year sale_date year_of_sale num_of_author processed_title processed_description updated_price edition affordability availability_1 encoded_price encoded_year key_words common_word length_title_description key kmeans_cluster dbscan_cluster KMeans_cluster_2 dbscan_cluster_2
0 O'Reilly Media 2024 2024-01-10 2024 1 learning go go rapidly become preferred language building web services plenty tutorials available teach go syntax developers experience programming languages tutorials enough teach go idioms developers end recreating patterns make sense go context practical 71.99 2 0 1 3 11 [go, rapidly, become, preferred, language, building, web, service, plenty, tutorial, available, teach, go, syntax, developer, experience, programming, language, tutorial, enough, teach, go, idiom, developer, end, recreating, pattern, make, sense, go, context, practical] [go, language, tutorial, teach, developer, rapidly, become, preferred, building, web, service, plenty, available, syntax, experience, programming, enough, idiom, end, recreating, pattern, make, sense, context, practical] 256 go rapidly become preferred language building web service plenty tutorial available teach go syntax developer experience programming language tutorial enough teach go idiom developer end recreating pattern make sense go context practical 0 0 0 0
1 O'Reilly Media 2023 2023-10-17 2023 1 tidy first tidying messy software means breaking code make readable using guard clauses helping functions make understandable practical guide author kent beck creator extreme programming pioneer software patterns suggests might apply tidyings code 42.99 2 1 1 1 11 [tidying, messy, software, mean, breaking, code, make, readable, using, guard, clause, helping, function, make, understandable, practical, guide, author, kent, beck, creator, extreme, programming, pioneer, software, pattern, suggests, might, apply, tidyings, code] [software, code, make, tidying, messy, mean, breaking, readable, using, guard, clause, helping, function, understandable, practical, guide, author, kent, beck, creator, extreme, programming, pioneer, pattern, suggests, might, apply, tidyings] 247 tidying messy software mean breaking code make readable using guard clause helping function make understandable practical guide author kent beck creator extreme programming pioneer software pattern suggests might apply tidyings code 0 0 0 0
2 O'Reilly Media 2022 2022-10-04 2022 1 hands on machine learning with scikit learn keras and tensorflow recent series breakthroughs deep learning boosted entire field machine learning even programmers know close nothing technology use simple efficient tools implement programs capable learning data bestselling book uses concrete examples minimal theory production ready 96.99 3 0 1 6 10 [recent, series, breakthrough, deep, learning, boosted, entire, field, machine, learning, even, programmer, know, close, nothing, technology, use, simple, efficient, tool, implement, program, capable, learning, data, bestselling, book, us, concrete, example, minimal, theory, production, ready] [learning, recent, series, breakthrough, deep, boosted, entire, field, machine, even, programmer, know, close, nothing, technology, use, simple, efficient, tool, implement, program, capable, data, bestselling, book, us, concrete, example, minimal, theory, production, ready] 330 recent series breakthrough deep learning boosted entire field machine learning even programmer know close nothing technology use simple efficient tool implement program capable learning data bestselling book us concrete example minimal theory production ready 0 0 0 0
3 O'Reilly Media 2017 2017-03-16 2017 1 designing data intensive applications data center many challenges system design today difficult issues need figured scalability consistency reliability efficiency maintainability addition overwhelming variety tools including relational databases nosql datastores stream batch processors message brokers 67.99 2 0 1 3 6 [data, center, many, challenge, system, design, today, difficult, issue, need, figured, scalability, consistency, reliability, efficiency, maintainability, addition, overwhelming, variety, tool, including, relational, database, nosql, datastores, stream, batch, processor, message, broker] [data, center, many, challenge, system, design, today, difficult, issue, need, figured, scalability, consistency, reliability, efficiency, maintainability, addition, overwhelming, variety, tool, including, relational, database, nosql, datastores, stream, batch, processor, message, broker] 301 data center many challenge system design today difficult issue need figured scalability consistency reliability efficiency maintainability addition overwhelming variety tool including relational database nosql datastores stream batch processor message broker 0 0 0 0
4 Pearson Education 2023 2023-10-18 2023 1 exam ref ms microsoft administrator prepare microsoft exam ms help demonstrate real world mastery skills knowledge required deploy manage microsoft perform microsoft tenant level implementation administration cloud hybrid 53.86 2 1 1 2 11 [prepare, microsoft, exam, m, help, demonstrate, real, world, mastery, skill, knowledge, required, deploy, manage, microsoft, perform, microsoft, tenant, level, implementation, administration, cloud, hybrid] [microsoft, prepare, exam, m, help, demonstrate, real, world, mastery, skill, knowledge, required, deploy, manage, perform, tenant, level, implementation, administration, cloud, hybrid] 220 prepare microsoft exam m help demonstrate real world mastery skill knowledge required deploy manage microsoft perform microsoft tenant level implementation administration cloud hybrid 0 0 0 0
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
39977 Springer Berlin Heidelberg 2006 2006-12-12 2006 3 finite state methods and natural language processing book constitutes thoroughly refereed post proceedings th international workshop finite state methods natural language processing fsmnlp held helsinki finland september book presents revised full 72.64 2 0 1 3 0 [book, constitutes, thoroughly, refereed, post, proceeding, th, international, workshop, finite, state, method, natural, language, processing, fsmnlp, held, helsinki, finland, september, book, present, revised, full] [book, constitutes, thoroughly, refereed, post, proceeding, th, international, workshop, finite, state, method, natural, language, processing, fsmnlp, held, helsinki, finland, september, present, revised, full] 246 book constitutes thoroughly refereed post proceeding th international workshop finite state method natural language processing fsmnlp held helsinki finland september book present revised full 0 0 0 0
39978 Springer Berlin Heidelberg 2006 2006-07-25 2006 4 argumentation in multi agent systems nan 72.64 2 0 1 3 0 [nan] [nan] 39 nan 0 0 0 0
39979 Springer Berlin Heidelberg 2008 2008-02-20 2008 2 pricai trends in artificial intelligence book constitutes refereed proceedings th pacific rim international conference artificial intelligence pricai held guilin china august book presents revised full papers revised short papers 232.48 2 0 1 7 1 [book, constitutes, refereed, proceeding, th, pacific, rim, international, conference, artificial, intelligence, pricai, held, guilin, china, august, book, present, revised, full, paper, revised, short, paper] [book, revised, paper, constitutes, refereed, proceeding, th, pacific, rim, international, conference, artificial, intelligence, pricai, held, guilin, china, august, present, full, short] 228 book constitutes refereed proceeding th pacific rim international conference artificial intelligence pricai held guilin china august book present revised full paper revised short paper 2 0 2 0
39988 Springer Berlin Heidelberg 2006 2006-07-25 2006 3 knowledge science engineering and management refereed proceedings first international conference knowledge science engineering management ksem held guilin china august conjunction pricai book presents revised full papers 130.77 2 0 1 6 0 [refereed, proceeding, first, international, conference, knowledge, science, engineering, management, ksem, held, guilin, china, august, conjunction, pricai, book, present, revised, full, paper] [refereed, proceeding, first, international, conference, knowledge, science, engineering, management, ksem, held, guilin, china, august, conjunction, pricai, book, present, revised, full, paper] 219 refereed proceeding first international conference knowledge science engineering management ksem held guilin china august conjunction pricai book present revised full paper 0 0 0 0
39989 Springer Berlin Heidelberg 2006 2006-08-29 2006 2 artificial neural networks in pattern recognition book constitutes refereed proceedings second iapr workshop artificial neural networks pattern recognition annpr held ulm germany august september revised papers presented carefully reviewed 72.64 2 0 1 3 0 [book, constitutes, refereed, proceeding, second, iapr, workshop, artificial, neural, network, pattern, recognition, annpr, held, ulm, germany, august, september, revised, paper, presented, carefully, reviewed] [book, constitutes, refereed, proceeding, second, iapr, workshop, artificial, neural, network, pattern, recognition, annpr, held, ulm, germany, august, september, revised, paper, presented, carefully, reviewed] 238 book constitutes refereed proceeding second iapr workshop artificial neural network pattern recognition annpr held ulm germany august september revised paper presented carefully reviewed 0 0 0 0

30828 rows × 21 columns

TF IDF without TSNE reduction plot¶

In [651]:
vectorizer = TfidfVectorizer()
In [652]:
vec = vectorizer.fit_transform(df_5['key'])
In [653]:
similarity_check= cosine_similarity(vec, vec)
final_df = pd.DataFrame(similarity_check)
final_df.head()
Out[653]:
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11573 11574 11575 11576 11577 11578 11579 11580 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11591 11592 11593 11594 11595 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618 11619 11620 11621 11622 11623 11624 11625 11626 11627 11628 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 11642 11643 11644 11645 11646 11647 11648 11649 11650 11651 11652 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664 11665 11666 11667 11668 11669 11670 11671 11672 11673 11674 11675 11676 11677 11678 11679 11680 11681 11682 11683 11684 11685 11686 11687 11688 11689 11690 11691 11692 11693 11694 11695 11696 11697 11698 11699 11700 11701 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712 11713 11714 11715 11716 11717 11718 11719 11720 11721 11722 11723 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749 11750 11751 11752 11753 11754 11755 11756 11757 11758 11759 11760 11761 11762 11763 11764 11765 11766 11767 11768 11769 11770 11771 11772 11773 11774 11775 11776 11777 11778 11779 11780 11781 11782 11783 11784 11785 11786 11787 11788 11789 11790 11791 11792 11793 11794 11795 11796 11797 11798 11799 11800 11801 11802 11803 11804 11805 11806 11807 11808 11809 11810 11811 11812 11813 11814 11815 11816 11817 11818 11819 11820 11821 11822 11823 11824 11825 11826 11827 11828 11829 11830 11831 11832 11833 11834 11835 11836 11837 11838 11839 11840 11841 11842 11843 11844 11845 11846 11847 11848 11849 11850 11851 11852 11853 11854 11855 11856 11857 11858 11859 11860 11861 11862 11863 11864 11865 11866 11867 11868 11869 11870 11871 11872 11873 11874 11875 11876 11877 11878 11879 11880 11881 11882 11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 11893 11894 11895 11896 11897 11898 11899 11900 11901 11902 11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11931 11932 11933 11934 11935 11936 11937 11938 11939 11940 11941 11942 11943 11944 11945 11946 11947 11948 11949 11950 11951 11952 11953 11954 11955 11956 11957 11958 11959 11960 11961 11962 11963 11964 11965 11966 11967 11968 11969 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 11986 11987 11988 11989 11990 11991 11992 11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004 12005 12006 12007 12008 12009 12010 12011 12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040 12041 12042 12043 12044 12045 12046 12047 12048 12049 12050 12051 12052 12053 12054 12055 12056 12057 12058 12059 12060 12061 12062 12063 12064 12065 12066 12067 12068 12069 12070 12071 12072 12073 12074 12075 12076 12077 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088 12089 12090 12091 12092 12093 12094 12095 12096 12097 12098 12099 12100 12101 12102 12103 12104 12105 12106 12107 12108 12109 12110 12111 12112 12113 12114 12115 12116 12117 12118 12119 12120 12121 12122 12123 12124 12125 12126 12127 12128 12129 12130 12131 12132 12133 12134 12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150 12151 12152 12153 12154 12155 12156 12157 12158 12159 12160 12161 12162 12163 12164 12165 12166 12167 12168 12169 12170 12171 12172 12173 12174 12175 12176 12177 12178 12179 12180 12181 12182 12183 12184 12185 12186 12187 12188 12189 12190 12191 12192 12193 12194 12195 12196 12197 12198 12199 12200 12201 12202 12203 12204 12205 12206 12207 12208 12209 12210 12211 12212 12213 12214 12215 12216 12217 12218 12219 12220 12221 12222 12223 12224 12225 12226 12227 12228 12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239 12240 12241 12242 12243 12244 12245 12246 12247 12248 12249 12250 12251 12252 12253 12254 12255 12256 12257 12258 12259 12260 12261 12262 12263 12264 12265 12266 12267 12268 12269 12270 12271 12272 12273 12274 12275 12276 12277 12278 12279 12280 12281 12282 12283 12284 12285 12286 12287 12288 12289 12290 12291 12292 12293 12294 12295 12296 12297 12298 12299 12300 12301 12302 12303 12304 12305 12306 12307 12308 12309 12310 12311 12312 12313 12314 12315 12316 12317 12318 12319 12320 12321 12322 12323 12324 12325 12326 12327 12328 12329 12330 12331 12332 12333 12334 12335 12336 12337 12338 12339 12340 12341 12342 12343 12344 12345 12346 12347 12348 12349 12350 12351 12352 12353 12354 12355 12356 12357 12358 12359 12360 12361 12362 12363 12364 12365 12366 12367 12368 12369 12370 12371 12372 12373 12374 12375 12376 12377 12378 12379 12380 12381 12382 12383 12384 12385 12386 12387 12388 12389 12390 12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12401 12402 12403 12404 12405 12406 12407 12408 12409 12410 12411 12412 12413 12414 12415 12416 12417 12418 12419 12420 12421 12422 12423 12424 12425 12426 12427 12428 12429 12430 12431 12432 12433 12434 12435 12436 12437 12438 12439 12440 12441 12442 12443 12444 12445 12446 12447 12448 12449 12450 12451 12452 12453 12454 12455 12456 12457 12458 12459 12460 12461 12462 12463 12464 12465 12466 12467 12468 12469 12470 12471 12472 12473 12474 12475 12476 12477 12478 12479 12480 12481 12482 12483 12484 12485 12486 12487 12488 12489 12490 12491 12492 12493 12494 12495 12496 12497 12498 12499 12500 12501 12502 12503 12504 12505 12506 12507 12508 12509 12510 12511 12512 12513 12514 12515 12516 12517 12518 12519 12520 12521 12522 12523 12524 12525 12526 12527 12528 12529 12530 12531 12532 12533 12534 12535 12536 12537 12538 12539 12540 12541 12542 12543 12544 12545 12546 12547 12548 12549 12550 12551 12552 12553 12554 12555 12556 12557 12558 12559 12560 12561 12562 12563 12564 12565 12566 12567 12568 12569 12570 12571 12572 12573 12574 12575 12576 12577 12578 12579 12580 12581 12582 12583 12584 12585 12586 12587 12588 12589 12590 12591 12592 12593 12594 12595 12596 12597 12598 12599 12600 12601 12602 12603 12604 12605 12606 12607 12608 12609 12610 12611 12612 12613 12614 12615 12616 12617 12618 12619 12620 12621 12622 12623 12624 12625 12626 12627 12628 12629 12630 12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 12643 12644 12645 12646 12647 12648 12649 12650 12651 12652 12653 12654 12655 12656 12657 12658 12659 12660 12661 12662 12663 12664 12665 12666 12667 12668 12669 12670 12671 12672 12673 12674 12675 12676 12677 12678 12679 12680 12681 12682 12683 12684 12685 12686 12687 12688 12689 12690 12691 12692 12693 12694 12695 12696 12697 12698 12699 12700 12701 12702 12703 12704 12705 12706 12707 12708 12709 12710 12711 12712 12713 12714 12715 12716 12717 12718 12719 12720 12721 12722 12723 12724 12725 12726 12727 12728 12729 12730 12731 12732 12733 12734 12735 12736 12737 12738 12739 12740 12741 12742 12743 12744 12745 12746 12747 12748 12749 12750 12751 12752 12753 12754 12755 12756 12757 12758 12759 12760 12761 12762 12763 12764 12765 12766 12767 12768 12769 12770 12771 12772 12773 12774 12775 12776 12777 12778 12779 12780 12781 12782 12783 12784 12785 12786 12787 12788 12789 12790 12791 12792 12793 12794 12795 12796 12797 12798 12799 12800 12801 12802 12803 12804 12805 12806 12807 12808 12809 12810 12811 12812 12813 12814 12815 12816 12817 12818 12819 12820 12821 12822 12823 12824 12825 12826 12827 12828 12829 12830 12831 12832 12833 12834 12835 12836 12837 12838 12839 12840 12841 12842 12843 12844 12845 12846 12847 12848 12849 12850 12851 12852 12853 12854 12855 12856 12857 12858 12859 12860 12861 12862 12863 12864 12865 12866 12867 12868 12869 12870 12871 12872 12873 12874 12875 12876 12877 12878 12879 12880 12881 12882 12883 12884 12885 12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 12901 12902 12903 12904 12905 12906 12907 12908 12909 12910 12911 12912 12913 12914 12915 12916 12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 12927 12928 12929 12930 12931 12932 12933 12934 12935 12936 12937 12938 12939 12940 12941 12942 12943 12944 12945 12946 12947 12948 12949 12950 12951 12952 12953 12954 12955 12956 12957 12958 12959 12960 12961 12962 12963 12964 12965 12966 12967 12968 12969 12970 12971 12972 12973 12974 12975 12976 12977 12978 12979 12980 12981 12982 12983 12984 12985 12986 12987 12988 12989 12990 12991 12992 12993 12994 12995 12996 12997 12998 12999 13000 13001 13002 13003 13004 13005 13006 13007 13008 13009 13010 13011 13012 13013 13014 13015 13016 13017 13018 13019 13020 13021 13022 13023 13024 13025 13026 13027 13028 13029 13030 13031 13032 13033 13034 13035 13036 13037 13038 13039 13040 13041 13042 13043 13044 13045 13046 13047 13048 13049 13050 13051 13052 13053 13054 13055 13056 13057 13058 13059 13060 13061 13062 13063 13064 13065 13066 13067 13068 13069 13070 13071 13072 13073 13074 13075 13076 13077 13078 13079 13080 13081 13082 13083 13084 13085 13086 13087 13088 13089 13090 13091 13092 13093 13094 13095 13096 13097 13098 13099 13100 13101 13102 13103 13104 13105 13106 13107 13108 13109 13110 13111 13112 13113 13114 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 13128 13129 13130 13131 13132 13133 13134 13135 13136 13137 13138 13139 13140 13141 13142 13143 13144 13145 13146 13147 13148 13149 13150 13151 13152 13153 13154 13155 13156 13157 13158 13159 13160 13161 13162 13163 13164 13165 13166 13167 13168 13169 13170 13171 13172 13173 13174 13175 13176 13177 13178 13179 13180 13181 13182 13183 13184 13185 13186 13187 13188 13189 13190 13191 13192 13193 13194 13195 13196 13197 13198 13199 13200 13201 13202 13203 13204 13205 13206 13207 13208 13209 13210 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 13225 13226 13227 13228 13229 13230 13231 13232 13233 13234 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246 13247 13248 13249 13250 13251 13252 13253 13254 13255 13256 13257 13258 13259 13260 13261 13262 13263 13264 13265 13266 13267 13268 13269 13270 13271 13272 13273 13274 13275 13276 13277 13278 13279 13280 13281 13282 13283 13284 13285 13286 13287 13288 13289 13290 13291 13292 13293 13294 13295 13296 13297 13298 13299 13300 13301 13302 13303 13304 13305 13306 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 13317 13318 13319 13320 13321 13322 13323 13324 13325 13326 13327 13328 13329 13330 13331 13332 13333 13334 13335 13336 13337 13338 13339 13340 13341 13342 13343 13344 13345 13346 13347 13348 13349 13350 13351 13352 13353 13354 13355 13356 13357 13358 13359 13360 13361 13362 13363 13364 13365 13366 13367 13368 13369 13370 13371 13372 13373 13374 13375 13376 13377 13378 13379 13380 13381 13382 13383 13384 13385 13386 13387 13388 13389 13390 13391 13392 13393 13394 13395 13396 13397 13398 13399 13400 13401 13402 13403 13404 13405 13406 13407 13408 13409 13410 13411 13412 13413 13414 13415 13416 13417 13418 13419 13420 13421 13422 13423 13424 13425 13426 13427 13428 13429 13430 13431 13432 13433 13434 13435 13436 13437 13438 13439 13440 13441 13442 13443 13444 13445 13446 13447 13448 13449 13450 13451 13452 13453 13454 13455 13456 13457 13458 13459 13460 13461 13462 13463 13464 13465 13466 13467 13468 13469 13470 13471 13472 13473 13474 13475 13476 13477 13478 13479 13480 13481 13482 13483 13484 13485 13486 13487 13488 13489 13490 13491 13492 13493 13494 13495 13496 13497 13498 13499 13500 13501 13502 13503 13504 13505 13506 13507 13508 13509 13510 13511 13512 13513 13514 13515 13516 13517 13518 13519 13520 13521 13522 13523 13524 13525 13526 13527 13528 13529 13530 13531 13532 13533 13534 13535 13536 13537 13538 13539 13540 13541 13542 13543 13544 13545 13546 13547 13548 13549 13550 13551 13552 13553 13554 13555 13556 13557 13558 13559 13560 13561 13562 13563 13564 13565 13566 13567 13568 13569 13570 13571 13572 13573 13574 13575 13576 13577 13578 13579 13580 13581 13582 13583 13584 13585 13586 13587 13588 13589 13590 13591 13592 13593 13594 13595 13596 13597 13598 13599 13600 13601 13602 13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631 13632 13633 13634 13635 13636 13637 13638 13639 13640 13641 13642 13643 13644 13645 13646 13647 13648 13649 13650 13651 13652 13653 13654 13655 13656 13657 13658 13659 13660 13661 13662 13663 13664 13665 13666 13667 13668 13669 13670 13671 13672 13673 13674 13675 13676 13677 13678 13679 13680 13681 13682 13683 13684 13685 13686 13687 13688 13689 13690 13691 13692 13693 13694 13695 13696 13697 13698 13699 13700 13701 13702 13703 13704 13705 13706 13707 13708 13709 13710 13711 13712 13713 13714 13715 13716 13717 13718 13719 13720 13721 13722 13723 13724 13725 13726 13727 13728 13729 13730 13731 13732 13733 13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 13744 13745 13746 13747 13748 13749 13750 13751 13752 13753 13754 13755 13756 13757 13758 13759 13760 13761 13762 13763 13764 13765 13766 13767 13768 13769 13770 13771 13772 13773 13774 13775 13776 13777 13778 13779 13780 13781 13782 13783 13784 13785 13786 13787 13788 13789 13790 13791 13792 13793 13794 13795 13796 13797 13798 13799 13800 13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811 13812 13813 13814 13815 13816 13817 13818 13819 13820 13821 13822 13823 13824 13825 13826 13827 13828 13829 13830 13831 13832 13833 13834 13835 13836 13837 13838 13839 13840 13841 13842 13843 13844 13845 13846 13847 13848 13849 13850 13851 13852 13853 13854 13855 13856 13857 13858 13859 13860 13861 13862 13863 13864 13865 13866 13867 13868 13869 13870 13871 13872 13873 13874 13875 13876 13877 13878 13879 13880 13881 13882 13883 13884 13885 13886 13887 13888 13889 13890 13891 13892 13893 13894 13895 13896 13897 13898 13899 13900 13901 13902 13903 13904 13905 13906 13907 13908 13909 13910 13911 13912 13913 13914 13915 13916 13917 13918 13919 13920 13921 13922 13923 13924 13925 13926 13927 13928 13929 13930 13931 13932 13933 13934 13935 13936 13937 13938 13939 13940 13941 13942 13943 13944 13945 13946 13947 13948 13949 13950 13951 13952 13953 13954 13955 13956 13957 13958 13959 13960 13961 13962 13963 13964 13965 13966 13967 13968 13969 13970 13971 13972 13973 13974 13975 13976 13977 13978 13979 13980 13981 13982 13983 13984 13985 13986 13987 13988 13989 13990 13991 13992 13993 13994 13995 13996 13997 13998 13999 14000 14001 14002 14003 14004 14005 14006 14007 14008 14009 14010 14011 14012 14013 14014 14015 14016 14017 14018 14019 14020 14021 14022 14023 14024 14025 14026 14027 14028 14029 14030 14031 14032 14033 14034 14035 14036 14037 14038 14039 14040 14041 14042 14043 14044 14045 14046 14047 14048 14049 14050 14051 14052 14053 14054 14055 14056 14057 14058 14059 14060 14061 14062 14063 14064 14065 14066 14067 14068 14069 14070 14071 14072 14073 14074 14075 14076 14077 14078 14079 14080 14081 14082 14083 14084 14085 14086 14087 14088 14089 14090 14091 14092 14093 14094 14095 14096 14097 14098 14099 14100 14101 14102 14103 14104 14105 14106 14107 14108 14109 14110 14111 14112 14113 14114 14115 14116 14117 14118 14119 14120 14121 14122 14123 14124 14125 14126 14127 14128 14129 14130 14131 14132 14133 14134 14135 14136 14137 14138 14139 14140 14141 14142 14143 14144 14145 14146 14147 14148 14149 14150 14151 14152 14153 14154 14155 14156 14157 14158 14159 14160 14161 14162 14163 14164 14165 14166 14167 14168 14169 14170 14171 14172 14173 14174 14175 14176 14177 14178 14179 14180 14181 14182 14183 14184 14185 14186 14187 14188 14189 14190 14191 14192 14193 14194 14195 14196 14197 14198 14199 14200 14201 14202 14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 14230 14231 14232 14233 14234 14235 14236 14237 14238 14239 14240 14241 14242 14243 14244 14245 14246 14247 14248 14249 14250 14251 14252 14253 14254 14255 14256 14257 14258 14259 14260 14261 14262 14263 14264 14265 14266 14267 14268 14269 14270 14271 14272 14273 14274 14275 14276 14277 14278 14279 14280 14281 14282 14283 14284 14285 14286 14287 14288 14289 14290 14291 14292 14293 14294 14295 14296 14297 14298 14299 14300 14301 14302 14303 14304 14305 14306 14307 14308 14309 14310 14311 14312 14313 14314 14315 14316 14317 14318 14319 14320 14321 14322 14323 14324 14325 14326 14327 14328 14329 14330 14331 14332 14333 14334 14335 14336 14337 14338 14339 14340 14341 14342 14343 14344 14345 14346 14347 14348 14349 14350 14351 14352 14353 14354 14355 14356 14357 14358 14359 14360 14361 14362 14363 14364 14365 14366 14367 14368 14369 14370 14371 14372 14373 14374 14375 14376 14377 14378 14379 14380 14381 14382 14383 14384 14385 14386 14387 14388 14389 14390 14391 14392 14393 14394 14395 14396 14397 14398 14399 14400 14401 14402 14403 14404 14405 14406 14407 14408 14409 14410 14411 14412 14413 14414 14415 14416 14417 14418 14419 14420 14421 14422 14423 14424 14425 14426 14427 14428 14429 14430 14431 14432 14433 14434 14435 14436 14437 14438 14439 14440 14441 14442 14443 14444 14445 14446 14447 14448 14449 14450 14451 14452 14453 14454 14455 14456 14457 14458 14459 14460 14461 14462 14463 14464 14465 14466 14467 14468 14469 14470 14471 14472 14473 14474 14475 14476 14477 14478 14479 14480 14481 14482 14483 14484 14485 14486 14487 14488 14489 14490 14491 14492 14493 14494 14495 14496 14497 14498 14499 14500 14501 14502 14503 14504 14505 14506 14507 14508 14509 14510 14511 14512 14513 14514 14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525 14526 14527 14528 14529 14530 14531 14532 14533 14534 14535 14536 14537 14538 14539 14540 14541 14542 14543 14544 14545 14546 14547 14548 14549 14550 14551 14552 14553 14554 14555 14556 14557 14558 14559 14560 14561 14562 14563 14564 14565 14566 14567 14568 14569 14570 14571 14572 14573 14574 14575 14576 14577 14578 14579 14580 14581 14582 14583 14584 14585 14586 14587 14588 14589 14590 14591 14592 14593 14594 14595 14596 14597 14598 14599 14600 14601 14602 14603 14604 14605 14606 14607 14608 14609 14610 14611 14612 14613 14614 14615 14616 14617 14618 14619 14620 14621 14622 14623 14624 14625 14626 14627 14628 14629 14630 14631 14632 14633 14634 14635 14636 14637 14638 14639 14640 14641 14642 14643 14644 14645 14646 14647 14648 14649 14650 14651 14652 14653 14654 14655 14656 14657 14658 14659 14660 14661 14662 14663 14664 14665 14666 14667 14668 14669 14670 14671 14672 14673 14674 14675 14676 14677 14678 14679 14680 14681 14682 14683 14684 14685 14686 14687 14688 14689 14690 14691 14692 14693 14694 14695 14696 14697 14698 14699 14700 14701 14702 14703 14704 14705 14706 14707 14708 14709 14710 14711 14712 14713 14714 14715 14716 14717 14718 14719 14720 14721 14722 14723 14724 14725 14726 14727 14728 14729 14730 14731 14732 14733 14734 14735 14736 14737 14738 14739 14740 14741 14742 14743 14744 14745 14746 14747 14748 14749 14750 14751 14752 14753 14754 14755 14756 14757 14758 14759 14760 14761 14762 14763 14764 14765 14766 14767 14768 14769 14770 14771 14772 14773 14774 14775 14776 14777 14778 14779 14780 14781 14782 14783 14784 14785 14786 14787 14788 14789 14790 14791 14792 14793 14794 14795 14796 14797 14798 14799 14800 14801 14802 14803 14804 14805 14806 14807 14808 14809 14810 14811 14812 14813 14814 14815 14816 14817 14818 14819 14820 14821 14822 14823 14824 14825 14826 14827 14828 14829 14830 14831 14832 14833 14834 14835 14836 14837 14838 14839 14840 14841 14842 14843 14844 14845 14846 14847 14848 14849 14850 14851 14852 14853 14854 14855 14856 14857 14858 14859 14860 14861 14862 14863 14864 14865 14866 14867 14868 14869 14870 14871 14872 14873 14874 14875 14876 14877 14878 14879 14880 14881 14882 14883 14884 14885 14886 14887 14888 14889 14890 14891 14892 14893 14894 14895 14896 14897 14898 14899 14900 14901 14902 14903 14904 14905 14906 14907 14908 14909 14910 14911 14912 14913 14914 14915 14916 14917 14918 14919 14920 14921 14922 14923 14924 14925 14926 14927 14928 14929 14930 14931 14932 14933 14934 14935 14936 14937 14938 14939 14940 14941 14942 14943 14944 14945 14946 14947 14948 14949 14950 14951 14952 14953 14954 14955 14956 14957 14958 14959 14960 14961 14962 14963 14964 14965 14966 14967 14968 14969 14970 14971 14972 14973 14974 14975 14976 14977 14978 14979 14980 14981 14982 14983 14984 14985 14986 14987 14988 14989 14990 14991 14992 14993 14994 14995 14996 14997 14998 14999 15000 15001 15002 15003 15004 15005 15006 15007 15008 15009 15010 15011 15012 15013 15014 15015 15016 15017 15018 15019 15020 15021 15022 15023 15024 15025 15026 15027 15028 15029 15030 15031 15032 15033 15034 15035 15036 15037 15038 15039 15040 15041 15042 15043 15044 15045 15046 15047 15048 15049 15050 15051 15052 15053 15054 15055 15056 15057 15058 15059 15060 15061 15062 15063 15064 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 15076 15077 15078 15079 15080 15081 15082 15083 15084 15085 15086 15087 15088 15089 15090 15091 15092 15093 15094 15095 15096 15097 15098 15099 15100 15101 15102 15103 15104 15105 15106 15107 15108 15109 15110 15111 15112 15113 15114 15115 15116 15117 15118 15119 15120 15121 15122 15123 15124 15125 15126 15127 15128 15129 15130 15131 15132 15133 15134 15135 15136 15137 15138 15139 15140 15141 15142 15143 15144 15145 15146 15147 15148 15149 15150 15151 15152 15153 15154 15155 15156 15157 15158 15159 15160 15161 15162 15163 15164 15165 15166 15167 15168 15169 15170 15171 15172 15173 15174 15175 15176 15177 15178 15179 15180 15181 15182 15183 15184 15185 15186 15187 15188 15189 15190 15191 15192 15193 15194 15195 15196 15197 15198 15199 15200 15201 15202 15203 15204 15205 15206 15207 15208 15209 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 15221 15222 15223 15224 15225 15226 15227 15228 15229 15230 15231 15232 15233 15234 15235 15236 15237 15238 15239 15240 15241 15242 15243 15244 15245 15246 15247 15248 15249 15250 15251 15252 15253 15254 15255 15256 15257 15258 15259 15260 15261 15262 15263 15264 15265 15266 15267 15268 15269 15270 15271 15272 15273 15274 15275 15276 15277 15278 15279 15280 15281 15282 15283 15284 15285 15286 15287 15288 15289 15290 15291 15292 15293 15294 15295 15296 15297 15298 15299 15300 15301 15302 15303 15304 15305 15306 15307 15308 15309 15310 15311 15312 15313 15314 15315 15316 15317 15318 15319 15320 15321 15322 15323 15324 15325 15326 15327 15328 15329 15330 15331 15332 15333 15334 15335 15336 15337 15338 15339 15340 15341 15342 15343 15344 15345 15346 15347 15348 15349 15350 15351 15352 15353 15354 15355 15356 15357 15358 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 15369 15370 15371 15372 15373 15374 15375 15376 15377 15378 15379 15380 15381 15382 15383 15384 15385 15386 15387 15388 15389 15390 15391 15392 15393 15394 15395 15396 15397 15398 15399 15400 15401 15402 15403 15404 15405 15406 15407 15408 15409 15410 15411 15412 15413 15414 15415 15416 15417 15418 15419 15420 15421 15422 15423 15424 15425 15426 15427 15428 15429 15430 15431 15432 15433 15434 15435 15436 15437 15438 15439 15440 15441 15442 15443 15444 15445 15446 15447 15448 15449 15450 15451 15452 15453 15454 15455 15456 15457 15458 15459 15460 15461 15462 15463 15464 15465 15466 15467 15468 15469 15470 15471 15472 15473 15474 15475 15476 15477 15478 15479 15480 15481 15482 15483 15484 15485 15486 15487 15488 15489 15490 15491 15492 15493 15494 15495 15496 15497 15498 15499 15500 15501 15502 15503 15504 15505 15506 15507 15508 15509 15510 15511 15512 15513 15514 15515 15516 15517 15518 15519 15520 15521 15522 15523 15524 15525 15526 15527 15528 15529 15530 15531 15532 15533 15534 15535 15536 15537 15538 15539 15540 15541 15542 15543 15544 15545 15546 15547 15548 15549 15550 15551 15552 15553 15554 15555 15556 15557 15558 15559 15560 15561 15562 15563 15564 15565 15566 15567 15568 15569 15570 15571 15572 15573 15574 15575 15576 15577 15578 15579 15580 15581 15582 15583 15584 15585 15586 15587 15588 15589 15590 15591 15592 15593 15594 15595 15596 15597 15598 15599 15600 15601 15602 15603 15604 15605 15606 15607 15608 15609 15610 15611 15612 15613 15614 15615 15616 15617 15618 15619 15620 15621 15622 15623 15624 15625 15626 15627 15628 15629 15630 15631 15632 15633 15634 15635 15636 15637 15638 15639 15640 15641 15642 15643 15644 15645 15646 15647 15648 15649 15650 15651 15652 15653 15654 15655 15656 15657 15658 15659 15660 15661 15662 15663 15664 15665 15666 15667 15668 15669 15670 15671 15672 15673 15674 15675 15676 15677 15678 15679 15680 15681 15682 15683 15684 15685 15686 15687 15688 15689 15690 15691 15692 15693 15694 15695 15696 15697 15698 15699 15700 15701 15702 15703 15704 15705 15706 15707 15708 15709 15710 15711 15712 15713 15714 15715 15716 15717 15718 15719 15720 15721 15722 15723 15724 15725 15726 15727 15728 15729 15730 15731 15732 15733 15734 15735 15736 15737 15738 15739 15740 15741 15742 15743 15744 15745 15746 15747 15748 15749 15750 15751 15752 15753 15754 15755 15756 15757 15758 15759 15760 15761 15762 15763 15764 15765 15766 15767 15768 15769 15770 15771 15772 15773 15774 15775 15776 15777 15778 15779 15780 15781 15782 15783 15784 15785 15786 15787 15788 15789 15790 15791 15792 15793 15794 15795 15796 15797 15798 15799 15800 15801 15802 15803 15804 15805 15806 15807 15808 15809 15810 15811 15812 15813 15814 15815 15816 15817 15818 15819 15820 15821 15822 15823 15824 15825 15826 15827 15828 15829 15830 15831 15832 15833 15834 15835 15836 15837 15838 15839 15840 15841 15842 15843 15844 15845 15846 15847 15848 15849 15850 15851 15852 15853 15854 15855 15856 15857 15858 15859 15860 15861 15862 15863 15864 15865 15866 15867 15868 15869 15870 15871 15872 15873 15874 15875 15876 15877 15878 15879 15880 15881 15882 15883 15884 15885 15886 15887 15888 15889 15890 15891 15892 15893 15894 15895 15896 15897 15898 15899 15900 15901 15902 15903 15904 15905 15906 15907 15908 15909 15910 15911 15912 15913 15914 15915 15916 15917 15918 15919 15920 15921 15922 15923 15924 15925 15926 15927 15928 15929 15930 15931 15932 15933 15934 15935 15936 15937 15938 15939 15940 15941 15942 15943 15944 15945 15946 15947 15948 15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 16038 16039 16040 16041 16042 16043 16044 16045 16046 16047 16048 16049 16050 16051 16052 16053 16054 16055 16056 16057 16058 16059 16060 16061 16062 16063 16064 16065 16066 16067 16068 16069 16070 16071 16072 16073 16074 16075 16076 16077 16078 16079 16080 16081 16082 16083 16084 16085 16086 16087 16088 16089 16090 16091 16092 16093 16094 16095 16096 16097 16098 16099 16100 16101 16102 16103 16104 16105 16106 16107 16108 16109 16110 16111 16112 16113 16114 16115 16116 16117 16118 16119 16120 16121 16122 16123 16124 16125 16126 16127 16128 16129 16130 16131 16132 16133 16134 16135 16136 16137 16138 16139 16140 16141 16142 16143 16144 16145 16146 16147 16148 16149 16150 16151 16152 16153 16154 16155 16156 16157 16158 16159 16160 16161 16162 16163 16164 16165 16166 16167 16168 16169 16170 16171 16172 16173 16174 16175 16176 16177 16178 16179 16180 16181 16182 16183 16184 16185 16186 16187 16188 16189 16190 16191 16192 16193 16194 16195 16196 16197 16198 16199 16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 16217 16218 16219 16220 16221 16222 16223 16224 16225 16226 16227 16228 16229 16230 16231 16232 16233 16234 16235 16236 16237 16238 16239 16240 16241 16242 16243 16244 16245 16246 16247 16248 16249 16250 16251 16252 16253 16254 16255 16256 16257 16258 16259 16260 16261 16262 16263 16264 16265 16266 16267 16268 16269 16270 16271 16272 16273 16274 16275 16276 16277 16278 16279 16280 16281 16282 16283 16284 16285 16286 16287 16288 16289 16290 16291 16292 16293 16294 16295 16296 16297 16298 16299 16300 16301 16302 16303 16304 16305 16306 16307 16308 16309 16310 16311 16312 16313 16314 16315 16316 16317 16318 16319 16320 16321 16322 16323 16324 16325 16326 16327 16328 16329 16330 16331 16332 16333 16334 16335 16336 16337 16338 16339 16340 16341 16342 16343 16344 16345 16346 16347 16348 16349 16350 16351 16352 16353 16354 16355 16356 16357 16358 16359 16360 16361 16362 16363 16364 16365 16366 16367 16368 16369 16370 16371 16372 16373 16374 16375 16376 16377 16378 16379 16380 16381 16382 16383 16384 16385 16386 16387 16388 16389 16390 16391 16392 16393 16394 16395 16396 16397 16398 16399 16400 16401 16402 16403 16404 16405 16406 16407 16408 16409 16410 16411 16412 16413 16414 16415 16416 16417 16418 16419 16420 16421 16422 16423 16424 16425 16426 16427 16428 16429 16430 16431 16432 16433 16434 16435 16436 16437 16438 16439 16440 16441 16442 16443 16444 16445 16446 16447 16448 16449 16450 16451 16452 16453 16454 16455 16456 16457 16458 16459 16460 16461 16462 16463 16464 16465 16466 16467 16468 16469 16470 16471 16472 16473 16474 16475 16476 16477 16478 16479 16480 16481 16482 16483 16484 16485 16486 16487 16488 16489 16490 16491 16492 16493 16494 16495 16496 16497 16498 16499 16500 16501 16502 16503 16504 16505 16506 16507 16508 16509 16510 16511 16512 16513 16514 16515 16516 16517 16518 16519 16520 16521 16522 16523 16524 16525 16526 16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 16558 16559 16560 16561 16562 16563 16564 16565 16566 16567 16568 16569 16570 16571 16572 16573 16574 16575 16576 16577 16578 16579 16580 16581 16582 16583 16584 16585 16586 16587 16588 16589 16590 16591 16592 16593 16594 16595 16596 16597 16598 16599 16600 16601 16602 16603 16604 16605 16606 16607 16608 16609 16610 16611 16612 16613 16614 16615 16616 16617 16618 16619 16620 16621 16622 16623 16624 16625 16626 16627 16628 16629 16630 16631 16632 16633 16634 16635 16636 16637 16638 16639 16640 16641 16642 16643 16644 16645 16646 16647 16648 16649 16650 16651 16652 16653 16654 16655 16656 16657 16658 16659 16660 16661 16662 16663 16664 16665 16666 16667 16668 16669 16670 16671 16672 16673 16674 16675 16676 16677 16678 16679 16680 16681 16682 16683 16684 16685 16686 16687 16688 16689 16690 16691 16692 16693 16694 16695 16696 16697 16698 16699 16700 16701 16702 16703 16704 16705 16706 16707 16708 16709 16710 16711 16712 16713 16714 16715 16716 16717 16718 16719 16720 16721 16722 16723 16724 16725 16726 16727 16728 16729 16730 16731 16732 16733 16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 16754 16755 16756 16757 16758 16759 16760 16761 16762 16763 16764 16765 16766 16767 16768 16769 16770 16771 16772 16773 16774 16775 16776 16777 16778 16779 16780 16781 16782 16783 16784 16785 16786 16787 16788 16789 16790 16791 16792 16793 16794 16795 16796 16797 16798 16799 16800 16801 16802 16803 16804 16805 16806 16807 16808 16809 16810 16811 16812 16813 16814 16815 16816 16817 16818 16819 16820 16821 16822 16823 16824 16825 16826 16827 16828 16829 16830 16831 16832 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16850 16851 16852 16853 16854 16855 16856 16857 16858 16859 16860 16861 16862 16863 16864 16865 16866 16867 16868 16869 16870 16871 16872 16873 16874 16875 16876 16877 16878 16879 16880 16881 16882 16883 16884 16885 16886 16887 16888 16889 16890 16891 16892 16893 16894 16895 16896 16897 16898 16899 16900 16901 16902 16903 16904 16905 16906 16907 16908 16909 16910 16911 16912 16913 16914 16915 16916 16917 16918 16919 16920 16921 16922 16923 16924 16925 16926 16927 16928 16929 16930 16931 16932 16933 16934 16935 16936 16937 16938 16939 16940 16941 16942 16943 16944 16945 16946 16947 16948 16949 16950 16951 16952 16953 16954 16955 16956 16957 16958 16959 16960 16961 16962 16963 16964 16965 16966 16967 16968 16969 16970 16971 16972 16973 16974 16975 16976 16977 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987 16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 17001 17002 17003 17004 17005 17006 17007 17008 17009 17010 17011 17012 17013 17014 17015 17016 17017 17018 17019 17020 17021 17022 17023 17024 17025 17026 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17056 17057 17058 17059 17060 17061 17062 17063 17064 17065 17066 17067 17068 17069 17070 17071 17072 17073 17074 17075 17076 17077 17078 17079 17080 17081 17082 17083 17084 17085 17086 17087 17088 17089 17090 17091 17092 17093 17094 17095 17096 17097 17098 17099 17100 17101 17102 17103 17104 17105 17106 17107 17108 17109 17110 17111 17112 17113 17114 17115 17116 17117 17118 17119 17120 17121 17122 17123 17124 17125 17126 17127 17128 17129 17130 17131 17132 17133 17134 17135 17136 17137 17138 17139 17140 17141 17142 17143 17144 17145 17146 17147 17148 17149 17150 17151 17152 17153 17154 17155 17156 17157 17158 17159 17160 17161 17162 17163 17164 17165 17166 17167 17168 17169 17170 17171 17172 17173 17174 17175 17176 17177 17178 17179 17180 17181 17182 17183 17184 17185 17186 17187 17188 17189 17190 17191 17192 17193 17194 17195 17196 17197 17198 17199 17200 17201 17202 17203 17204 17205 17206 17207 17208 17209 17210 17211 17212 17213 17214 17215 17216 17217 17218 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17238 17239 17240 17241 17242 17243 17244 17245 17246 17247 17248 17249 17250 17251 17252 17253 17254 17255 17256 17257 17258 17259 17260 17261 17262 17263 17264 17265 17266 17267 17268 17269 17270 17271 17272 17273 17274 17275 17276 17277 17278 17279 17280 17281 17282 17283 17284 17285 17286 17287 17288 17289 17290 17291 17292 17293 17294 17295 17296 17297 17298 17299 17300 17301 17302 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315 17316 17317 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327 17328 17329 17330 17331 17332 17333 17334 17335 17336 17337 17338 17339 17340 17341 17342 17343 17344 17345 17346 17347 17348 17349 17350 17351 17352 17353 17354 17355 17356 17357 17358 17359 17360 17361 17362 17363 17364 17365 17366 17367 17368 17369 17370 17371 17372 17373 17374 17375 17376 17377 17378 17379 17380 17381 17382 17383 17384 17385 17386 17387 17388 17389 17390 17391 17392 17393 17394 17395 17396 17397 17398 17399 17400 17401 17402 17403 17404 17405 17406 17407 17408 17409 17410 17411 17412 17413 17414 17415 17416 17417 17418 17419 17420 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17443 17444 17445 17446 17447 17448 17449 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459 17460 17461 17462 17463 17464 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17481 17482 17483 17484 17485 17486 17487 17488 17489 17490 17491 17492 17493 17494 17495 17496 17497 17498 17499 17500 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587 17588 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635 17636 17637 17638 17639 17640 17641 17642 17643 17644 17645 17646 17647 17648 17649 17650 17651 17652 17653 17654 17655 17656 17657 17658 17659 17660 17661 17662 17663 17664 17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 17675 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723 17724 17725 17726 17727 17728 17729 17730 17731 17732 17733 17734 17735 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747 17748 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759 17760 17761 17762 17763 17764 17765 17766 17767 17768 17769 17770 17771 17772 17773 17774 17775 17776 17777 17778 17779 17780 17781 17782 17783 17784 17785 17786 17787 17788 17789 17790 17791 17792 17793 17794 17795 17796 17797 17798 17799 17800 17801 17802 17803 17804 17805 17806 17807 17808 17809 17810 17811 17812 17813 17814 17815 17816 17817 17818 17819 17820 17821 17822 17823 17824 17825 17826 17827 17828 17829 17830 17831 17832 17833 17834 17835 17836 17837 17838 17839 17840 17841 17842 17843 17844 17845 17846 17847 17848 17849 17850 17851 17852 17853 17854 17855 17856 17857 17858 17859 17860 17861 17862 17863 17864 17865 17866 17867 17868 17869 17870 17871 17872 17873 17874 17875 17876 17877 17878 17879 17880 17881 17882 17883 17884 17885 17886 17887 17888 17889 17890 17891 17892 17893 17894 17895 17896 17897 17898 17899 17900 17901 17902 17903 17904 17905 17906 17907 17908 17909 17910 17911 17912 17913 17914 17915 17916 17917 17918 17919 17920 17921 17922 17923 17924 17925 17926 17927 17928 17929 17930 17931 17932 17933 17934 17935 17936 17937 17938 17939 17940 17941 17942 17943 17944 17945 17946 17947 17948 17949 17950 17951 17952 17953 17954 17955 17956 17957 17958 17959 17960 17961 17962 17963 17964 17965 17966 17967 17968 17969 17970 17971 17972 17973 17974 17975 17976 17977 17978 17979 17980 17981 17982 17983 17984 17985 17986 17987 17988 17989 17990 17991 17992 17993 17994 17995 17996 17997 17998 17999 18000 18001 18002 18003 18004 18005 18006 18007 18008 18009 18010 18011 18012 18013 18014 18015 18016 18017 18018 18019 18020 18021 18022 18023 18024 18025 18026 18027 18028 18029 18030 18031 18032 18033 18034 18035 18036 18037 18038 18039 18040 18041 18042 18043 18044 18045 18046 18047 18048 18049 18050 18051 18052 18053 18054 18055 18056 18057 18058 18059 18060 18061 18062 18063 18064 18065 18066 18067 18068 18069 18070 18071 18072 18073 18074 18075 18076 18077 18078 18079 18080 18081 18082 18083 18084 18085 18086 18087 18088 18089 18090 18091 18092 18093 18094 18095 18096 18097 18098 18099 18100 18101 18102 18103 18104 18105 18106 18107 18108 18109 18110 18111 18112 18113 18114 18115 18116 18117 18118 18119 18120 18121 18122 18123 18124 18125 18126 18127 18128 18129 18130 18131 18132 18133 18134 18135 18136 18137 18138 18139 18140 18141 18142 18143 18144 18145 18146 18147 18148 18149 18150 18151 18152 18153 18154 18155 18156 18157 18158 18159 18160 18161 18162 18163 18164 18165 18166 18167 18168 18169 18170 18171 18172 18173 18174 18175 18176 18177 18178 18179 18180 18181 18182 18183 18184 18185 18186 18187 18188 18189 18190 18191 18192 18193 18194 18195 18196 18197 18198 18199 18200 18201 18202 18203 18204 18205 18206 18207 18208 18209 18210 18211 18212 18213 18214 18215 18216 18217 18218 18219 18220 18221 18222 18223 18224 18225 18226 18227 18228 18229 18230 18231 18232 18233 18234 18235 18236 18237 18238 18239 18240 18241 18242 18243 18244 18245 18246 18247 18248 18249 18250 18251 18252 18253 18254 18255 18256 18257 18258 18259 18260 18261 18262 18263 18264 18265 18266 18267 18268 18269 18270 18271 18272 18273 18274 18275 18276 18277 18278 18279 18280 18281 18282 18283 18284 18285 18286 18287 18288 18289 18290 18291 18292 18293 18294 18295 18296 18297 18298 18299 18300 18301 18302 18303 18304 18305 18306 18307 18308 18309 18310 18311 18312 18313 18314 18315 18316 18317 18318 18319 18320 18321 18322 18323 18324 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18339 18340 18341 18342 18343 18344 18345 18346 18347 18348 18349 18350 18351 18352 18353 18354 18355 18356 18357 18358 18359 18360 18361 18362 18363 18364 18365 18366 18367 18368 18369 18370 18371 18372 18373 18374 18375 18376 18377 18378 18379 18380 18381 18382 18383 18384 18385 18386 18387 18388 18389 18390 18391 18392 18393 18394 18395 18396 18397 18398 18399 18400 18401 18402 18403 18404 18405 18406 18407 18408 18409 18410 18411 18412 18413 18414 18415 18416 18417 18418 18419 18420 18421 18422 18423 18424 18425 18426 18427 18428 18429 18430 18431 18432 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444 18445 18446 18447 18448 18449 18450 18451 18452 18453 18454 18455 18456 18457 18458 18459 18460 18461 18462 18463 18464 18465 18466 18467 18468 18469 18470 18471 18472 18473 18474 18475 18476 18477 18478 18479 18480 18481 18482 18483 18484 18485 18486 18487 18488 18489 18490 18491 18492 18493 18494 18495 18496 18497 18498 18499 18500 18501 18502 18503 18504 18505 18506 18507 18508 18509 18510 18511 18512 18513 18514 18515 18516 18517 18518 18519 18520 18521 18522 18523 18524 18525 18526 18527 18528 18529 18530 18531 18532 18533 18534 18535 18536 18537 18538 18539 18540 18541 18542 18543 18544 18545 18546 18547 18548 18549 18550 18551 18552 18553 18554 18555 18556 18557 18558 18559 18560 18561 18562 18563 18564 18565 18566 18567 18568 18569 18570 18571 18572 18573 18574 18575 18576 18577 18578 18579 18580 18581 18582 18583 18584 18585 18586 18587 18588 18589 18590 18591 18592 18593 18594 18595 18596 18597 18598 18599 18600 18601 18602 18603 18604 18605 18606 18607 18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 18622 18623 18624 18625 18626 18627 18628 18629 18630 18631 18632 18633 18634 18635 18636 18637 18638 18639 18640 18641 18642 18643 18644 18645 18646 18647 18648 18649 18650 18651 18652 18653 18654 18655 18656 18657 18658 18659 18660 18661 18662 18663 18664 18665 18666 18667 18668 18669 18670 18671 18672 18673 18674 18675 18676 18677 18678 18679 18680 18681 18682 18683 18684 18685 18686 18687 18688 18689 18690 18691 18692 18693 18694 18695 18696 18697 18698 18699 18700 18701 18702 18703 18704 18705 18706 18707 18708 18709 18710 18711 18712 18713 18714 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18725 18726 18727 18728 18729 18730 18731 18732 18733 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745 18746 18747 18748 18749 18750 18751 18752 18753 18754 18755 18756 18757 18758 18759 18760 18761 18762 18763 18764 18765 18766 18767 18768 18769 18770 18771 18772 18773 18774 18775 18776 18777 18778 18779 18780 18781 18782 18783 18784 18785 18786 18787 18788 18789 18790 18791 18792 18793 18794 18795 18796 18797 18798 18799 18800 18801 18802 18803 18804 18805 18806 18807 18808 18809 18810 18811 18812 18813 18814 18815 18816 18817 18818 18819 18820 18821 18822 18823 18824 18825 18826 18827 18828 18829 18830 18831 18832 18833 18834 18835 18836 18837 18838 18839 18840 18841 18842 18843 18844 18845 18846 18847 18848 18849 18850 18851 18852 18853 18854 18855 18856 18857 18858 18859 18860 18861 18862 18863 18864 18865 18866 18867 18868 18869 18870 18871 18872 18873 18874 18875 18876 18877 18878 18879 18880 18881 18882 18883 18884 18885 18886 18887 18888 18889 18890 18891 18892 18893 18894 18895 18896 18897 18898 18899 18900 18901 18902 18903 18904 18905 18906 18907 18908 18909 18910 18911 18912 18913 18914 18915 18916 18917 18918 18919 18920 18921 18922 18923 18924 18925 18926 18927 18928 18929 18930 18931 18932 18933 18934 18935 18936 18937 18938 18939 18940 18941 18942 18943 18944 18945 18946 18947 18948 18949 18950 18951 18952 18953 18954 18955 18956 18957 18958 18959 18960 18961 18962 18963 18964 18965 18966 18967 18968 18969 18970 18971 18972 18973 18974 18975 18976 18977 18978 18979 18980 18981 18982 18983 18984 18985 18986 18987 18988 18989 18990 18991 18992 18993 18994 18995 18996 18997 18998 18999 19000 19001 19002 19003 19004 19005 19006 19007 19008 19009 19010 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021 19022 19023 19024 19025 19026 19027 19028 19029 19030 19031 19032 19033 19034 19035 19036 19037 19038 19039 19040 19041 19042 19043 19044 19045 19046 19047 19048 19049 19050 19051 19052 19053 19054 19055 19056 19057 19058 19059 19060 19061 19062 19063 19064 19065 19066 19067 19068 19069 19070 19071 19072 19073 19074 19075 19076 19077 19078 19079 19080 19081 19082 19083 19084 19085 19086 19087 19088 19089 19090 19091 19092 19093 19094 19095 19096 19097 19098 19099 19100 19101 19102 19103 19104 19105 19106 19107 19108 19109 19110 19111 19112 19113 19114 19115 19116 19117 19118 19119 19120 19121 19122 19123 19124 19125 19126 19127 19128 19129 19130 19131 19132 19133 19134 19135 19136 19137 19138 19139 19140 19141 19142 19143 19144 19145 19146 19147 19148 19149 19150 19151 19152 19153 19154 19155 19156 19157 19158 19159 19160 19161 19162 19163 19164 19165 19166 19167 19168 19169 19170 19171 19172 19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183 19184 19185 19186 19187 19188 19189 19190 19191 19192 19193 19194 19195 19196 19197 19198 19199 19200 19201 19202 19203 19204 19205 19206 19207 19208 19209 19210 19211 19212 19213 19214 19215 19216 19217 19218 19219 19220 19221 19222 19223 19224 19225 19226 19227 19228 19229 19230 19231 19232 19233 19234 19235 19236 19237 19238 19239 19240 19241 19242 19243 19244 19245 19246 19247 19248 19249 19250 19251 19252 19253 19254 19255 19256 19257 19258 19259 19260 19261 19262 19263 19264 19265 19266 19267 19268 19269 19270 19271 19272 19273 19274 19275 19276 19277 19278 19279 19280 19281 19282 19283 19284 19285 19286 19287 19288 19289 19290 19291 19292 19293 19294 19295 19296 19297 19298 19299 19300 19301 19302 19303 19304 19305 19306 19307 19308 19309 19310 19311 19312 19313 19314 19315 19316 19317 19318 19319 19320 19321 19322 19323 19324 19325 19326 19327 19328 19329 19330 19331 19332 19333 19334 19335 19336 19337 19338 19339 19340 19341 19342 19343 19344 19345 19346 19347 19348 19349 19350 19351 19352 19353 19354 19355 19356 19357 19358 19359 19360 19361 19362 19363 19364 19365 19366 19367 19368 19369 19370 19371 19372 19373 19374 19375 19376 19377 19378 19379 19380 19381 19382 19383 19384 19385 19386 19387 19388 19389 19390 19391 19392 19393 19394 19395 19396 19397 19398 19399 19400 19401 19402 19403 19404 19405 19406 19407 19408 19409 19410 19411 19412 19413 19414 19415 19416 19417 19418 19419 19420 19421 19422 19423 19424 19425 19426 19427 19428 19429 19430 19431 19432 19433 19434 19435 19436 19437 19438 19439 19440 19441 19442 19443 19444 19445 19446 19447 19448 19449 19450 19451 19452 19453 19454 19455 19456 19457 19458 19459 19460 19461 19462 19463 19464 19465 19466 19467 19468 19469 19470 19471 19472 19473 19474 19475 19476 19477 19478 19479 19480 19481 19482 19483 19484 19485 19486 19487 19488 19489 19490 19491 19492 19493 19494 19495 19496 19497 19498 19499 19500 19501 19502 19503 19504 19505 19506 19507 19508 19509 19510 19511 19512 19513 19514 19515 19516 19517 19518 19519 19520 19521 19522 19523 19524 19525 19526 19527 19528 19529 19530 19531 19532 19533 19534 19535 19536 19537 19538 19539 19540 19541 19542 19543 19544 19545 19546 19547 19548 19549 19550 19551 19552 19553 19554 19555 19556 19557 19558 19559 19560 19561 19562 19563 19564 19565 19566 19567 19568 19569 19570 19571 19572 19573 19574 19575 19576 19577 19578 19579 19580 19581 19582 19583 19584 19585 19586 19587 19588 19589 19590 19591 19592 19593 19594 19595 19596 19597 19598 19599 19600 19601 19602 19603 19604 19605 19606 19607 19608 19609 19610 19611 19612 19613 19614 19615 19616 19617 19618 19619 19620 19621 19622 19623 19624 19625 19626 19627 19628 19629 19630 19631 19632 19633 19634 19635 19636 19637 19638 19639 19640 19641 19642 19643 19644 19645 19646 19647 19648 19649 19650 19651 19652 19653 19654 19655 19656 19657 19658 19659 19660 19661 19662 19663 19664 19665 19666 19667 19668 19669 19670 19671 19672 19673 19674 19675 19676 19677 19678 19679 19680 19681 19682 19683 19684 19685 19686 19687 19688 19689 19690 19691 19692 19693 19694 19695 19696 19697 19698 19699 19700 19701 19702 19703 19704 19705 19706 19707 19708 19709 19710 19711 19712 19713 19714 19715 19716 19717 19718 19719 19720 19721 19722 19723 19724 19725 19726 19727 19728 19729 19730 19731 19732 19733 19734 19735 19736 19737 19738 19739 19740 19741 19742 19743 19744 19745 19746 19747 19748 19749 19750 19751 19752 19753 19754 19755 19756 19757 19758 19759 19760 19761 19762 19763 19764 19765 19766 19767 19768 19769 19770 19771 19772 19773 19774 19775 19776 19777 19778 19779 19780 19781 19782 19783 19784 19785 19786 19787 19788 19789 19790 19791 19792 19793 19794 19795 19796 19797 19798 19799 19800 19801 19802 19803 19804 19805 19806 19807 19808 19809 19810 19811 19812 19813 19814 19815 19816 19817 19818 19819 19820 19821 19822 19823 19824 19825 19826 19827 19828 19829 19830 19831 19832 19833 19834 19835 19836 19837 19838 19839 19840 19841 19842 19843 19844 19845 19846 19847 19848 19849 19850 19851 19852 19853 19854 19855 19856 19857 19858 19859 19860 19861 19862 19863 19864 19865 19866 19867 19868 19869 19870 19871 19872 19873 19874 19875 19876 19877 19878 19879 19880 19881 19882 19883 19884 19885 19886 19887 19888 19889 19890 19891 19892 19893 19894 19895 19896 19897 19898 19899 19900 19901 19902 19903 19904 19905 19906 19907 19908 19909 19910 19911 19912 19913 19914 19915 19916 19917 19918 19919 19920 19921 19922 19923 19924 19925 19926 19927 19928 19929 19930 19931 19932 19933 19934 19935 19936 19937 19938 19939 19940 19941 19942 19943 19944 19945 19946 19947 19948 19949 19950 19951 19952 19953 19954 19955 19956 19957 19958 19959 19960 19961 19962 19963 19964 19965 19966 19967 19968 19969 19970 19971 19972 19973 19974 19975 19976 19977 19978 19979 19980 19981 19982 19983 19984 19985 19986 19987 19988 19989 19990 19991 19992 19993 19994 19995 19996 19997 19998 19999 20000 20001 20002 20003 20004 20005 20006 20007 20008 20009 20010 20011 20012 20013 20014 20015 20016 20017 20018 20019 20020 20021 20022 20023 20024 20025 20026 20027 20028 20029 20030 20031 20032 20033 20034 20035 20036 20037 20038 20039 20040 20041 20042 20043 20044 20045 20046 20047 20048 20049 20050 20051 20052 20053 20054 20055 20056 20057 20058 20059 20060 20061 20062 20063 20064 20065 20066 20067 20068 20069 20070 20071 20072 20073 20074 20075 20076 20077 20078 20079 20080 20081 20082 20083 20084 20085 20086 20087 20088 20089 20090 20091 20092 20093 20094 20095 20096 20097 20098 20099 20100 20101 20102 20103 20104 20105 20106 20107 20108 20109 20110 20111 20112 20113 20114 20115 20116 20117 20118 20119 20120 20121 20122 20123 20124 20125 20126 20127 20128 20129 20130 20131 20132 20133 20134 20135 20136 20137 20138 20139 20140 20141 20142 20143 20144 20145 20146 20147 20148 20149 20150 20151 20152 20153 20154 20155 20156 20157 20158 20159 20160 20161 20162 20163 20164 20165 20166 20167 20168 20169 20170 20171 20172 20173 20174 20175 20176 20177 20178 20179 20180 20181 20182 20183 20184 20185 20186 20187 20188 20189 20190 20191 20192 20193 20194 20195 20196 20197 20198 20199 20200 20201 20202 20203 20204 20205 20206 20207 20208 20209 20210 20211 20212 20213 20214 20215 20216 20217 20218 20219 20220 20221 20222 20223 20224 20225 20226 20227 20228 20229 20230 20231 20232 20233 20234 20235 20236 20237 20238 20239 20240 20241 20242 20243 20244 20245 20246 20247 20248 20249 20250 20251 20252 20253 20254 20255 20256 20257 20258 20259 20260 20261 20262 20263 20264 20265 20266 20267 20268 20269 20270 20271 20272 20273 20274 20275 20276 20277 20278 20279 20280 20281 20282 20283 20284 20285 20286 20287 20288 20289 20290 20291 20292 20293 20294 20295 20296 20297 20298 20299 20300 20301 20302 20303 20304 20305 20306 20307 20308 20309 20310 20311 20312 20313 20314 20315 20316 20317 20318 20319 20320 20321 20322 20323 20324 20325 20326 20327 20328 20329 20330 20331 20332 20333 20334 20335 20336 20337 20338 20339 20340 20341 20342 20343 20344 20345 20346 20347 20348 20349 20350 20351 20352 20353 20354 20355 20356 20357 20358 20359 20360 20361 20362 20363 20364 20365 20366 20367 20368 20369 20370 20371 20372 20373 20374 20375 20376 20377 20378 20379 20380 20381 20382 20383 20384 20385 20386 20387 20388 20389 20390 20391 20392 20393 20394 20395 20396 20397 20398 20399 20400 20401 20402 20403 20404 20405 20406 20407 20408 20409 20410 20411 20412 20413 20414 20415 20416 20417 20418 20419 20420 20421 20422 20423 20424 20425 20426 20427 20428 20429 20430 20431 20432 20433 20434 20435 20436 20437 20438 20439 20440 20441 20442 20443 20444 20445 20446 20447 20448 20449 20450 20451 20452 20453 20454 20455 20456 20457 20458 20459 20460 20461 20462 20463 20464 20465 20466 20467 20468 20469 20470 20471 20472 20473 20474 20475 20476 20477 20478 20479 20480 20481 20482 20483 20484 20485 20486 20487 20488 20489 20490 20491 20492 20493 20494 20495 20496 20497 20498 20499 20500 20501 20502 20503 20504 20505 20506 20507 20508 20509 20510 20511 20512 20513 20514 20515 20516 20517 20518 20519 20520 20521 20522 20523 20524 20525 20526 20527 20528 20529 20530 20531 20532 20533 20534 20535 20536 20537 20538 20539 20540 20541 20542 20543 20544 20545 20546 20547 20548 20549 20550 20551 20552 20553 20554 20555 20556 20557 20558 20559 20560 20561 20562 20563 20564 20565 20566 20567 20568 20569 20570 20571 20572 20573 20574 20575 20576 20577 20578 20579 20580 20581 20582 20583 20584 20585 20586 20587 20588 20589 20590 20591 20592 20593 20594 20595 20596 20597 20598 20599 20600 20601 20602 20603 20604 20605 20606 20607 20608 20609 20610 20611 20612 20613 20614 20615 20616 20617 20618 20619 20620 20621 20622 20623 20624 20625 20626 20627 20628 20629 20630 20631 20632 20633 20634 20635 20636 20637 20638 20639 20640 20641 20642 20643 20644 20645 20646 20647 20648 20649 20650 20651 20652 20653 20654 20655 20656 20657 20658 20659 20660 20661 20662 20663 20664 20665 20666 20667 20668 20669 20670 20671 20672 20673 20674 20675 20676 20677 20678 20679 20680 20681 20682 20683 20684 20685 20686 20687 20688 20689 20690 20691 20692 20693 20694 20695 20696 20697 20698 20699 20700 20701 20702 20703 20704 20705 20706 20707 20708 20709 20710 20711 20712 20713 20714 20715 20716 20717 20718 20719 20720 20721 20722 20723 20724 20725 20726 20727 20728 20729 20730 20731 20732 20733 20734 20735 20736 20737 20738 20739 20740 20741 20742 20743 20744 20745 20746 20747 20748 20749 20750 20751 20752 20753 20754 20755 20756 20757 20758 20759 20760 20761 20762 20763 20764 20765 20766 20767 20768 20769 20770 20771 20772 20773 20774 20775 20776 20777 20778 20779 20780 20781 20782 20783 20784 20785 20786 20787 20788 20789 20790 20791 20792 20793 20794 20795 20796 20797 20798 20799 20800 20801 20802 20803 20804 20805 20806 20807 20808 20809 20810 20811 20812 20813 20814 20815 20816 20817 20818 20819 20820 20821 20822 20823 20824 20825 20826 20827 20828 20829 20830 20831 20832 20833 20834 20835 20836 20837 20838 20839 20840 20841 20842 20843 20844 20845 20846 20847 20848 20849 20850 20851 20852 20853 20854 20855 20856 20857 20858 20859 20860 20861 20862 20863 20864 20865 20866 20867 20868 20869 20870 20871 20872 20873 20874 20875 20876 20877 20878 20879 20880 20881 20882 20883 20884 20885 20886 20887 20888 20889 20890 20891 20892 20893 20894 20895 20896 20897 20898 20899 20900 20901 20902 20903 20904 20905 20906 20907 20908 20909 20910 20911 20912 20913 20914 20915 20916 20917 20918 20919 20920 20921 20922 20923 20924 20925 20926 20927 20928 20929 20930 20931 20932 20933 20934 20935 20936 20937 20938 20939 20940 20941 20942 20943 20944 20945 20946 20947 20948 20949 20950 20951 20952 20953 20954 20955 20956 20957 20958 20959 20960 20961 20962 20963 20964 20965 20966 20967 20968 20969 20970 20971 20972 20973 20974 20975 20976 20977 20978 20979 20980 20981 20982 20983 20984 20985 20986 20987 20988 20989 20990 20991 20992 20993 20994 20995 20996 20997 20998 20999 21000 21001 21002 21003 21004 21005 21006 21007 21008 21009 21010 21011 21012 21013 21014 21015 21016 21017 21018 21019 21020 21021 21022 21023 21024 21025 21026 21027 21028 21029 21030 21031 21032 21033 21034 21035 21036 21037 21038 21039 21040 21041 21042 21043 21044 21045 21046 21047 21048 21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 21089 21090 21091 21092 21093 21094 21095 21096 21097 21098 21099 21100 21101 21102 21103 21104 21105 21106 21107 21108 21109 21110 21111 21112 21113 21114 21115 21116 21117 21118 21119 21120 21121 21122 21123 21124 21125 21126 21127 21128 21129 21130 21131 21132 21133 21134 21135 21136 21137 21138 21139 21140 21141 21142 21143 21144 21145 21146 21147 21148 21149 21150 21151 21152 21153 21154 21155 21156 21157 21158 21159 21160 21161 21162 21163 21164 21165 21166 21167 21168 21169 21170 21171 21172 21173 21174 21175 21176 21177 21178 21179 21180 21181 21182 21183 21184 21185 21186 21187 21188 21189 21190 21191 21192 21193 21194 21195 21196 21197 21198 21199 21200 21201 21202 21203 21204 21205 21206 21207 21208 21209 21210 21211 21212 21213 21214 21215 21216 21217 21218 21219 21220 21221 21222 21223 21224 21225 21226 21227 21228 21229 21230 21231 21232 21233 21234 21235 21236 21237 21238 21239 21240 21241 21242 21243 21244 21245 21246 21247 21248 21249 21250 21251 21252 21253 21254 21255 21256 21257 21258 21259 21260 21261 21262 21263 21264 21265 21266 21267 21268 21269 21270 21271 21272 21273 21274 21275 21276 21277 21278 21279 21280 21281 21282 21283 21284 21285 21286 21287 21288 21289 21290 21291 21292 21293 21294 21295 21296 21297 21298 21299 21300 21301 21302 21303 21304 21305 21306 21307 21308 21309 21310 21311 21312 21313 21314 21315 21316 21317 21318 21319 21320 21321 21322 21323 21324 21325 21326 21327 21328 21329 21330 21331 21332 21333 21334 21335 21336 21337 21338 21339 21340 21341 21342 21343 21344 21345 21346 21347 21348 21349 21350 21351 21352 21353 21354 21355 21356 21357 21358 21359 21360 21361 21362 21363 21364 21365 21366 21367 21368 21369 21370 21371 21372 21373 21374 21375 21376 21377 21378 21379 21380 21381 21382 21383 21384 21385 21386 21387 21388 21389 21390 21391 21392 21393 21394 21395 21396 21397 21398 21399 21400 21401 21402 21403 21404 21405 21406 21407 21408 21409 21410 21411 21412 21413 21414 21415 21416 21417 21418 21419 21420 21421 21422 21423 21424 21425 21426 21427 21428 21429 21430 21431 21432 21433 21434 21435 21436 21437 21438 21439 21440 21441 21442 21443 21444 21445 21446 21447 21448 21449 21450 21451 21452 21453 21454 21455 21456 21457 21458 21459 21460 21461 21462 21463 21464 21465 21466 21467 21468 21469 21470 21471 21472 21473 21474 21475 21476 21477 21478 21479 21480 21481 21482 21483 21484 21485 21486 21487 21488 21489 21490 21491 21492 21493 21494 21495 21496 21497 21498 21499 21500 21501 21502 21503 21504 21505 21506 21507 21508 21509 21510 21511 21512 21513 21514 21515 21516 21517 21518 21519 21520 21521 21522 21523 21524 21525 21526 21527 21528 21529 21530 21531 21532 21533 21534 21535 21536 21537 21538 21539 21540 21541 21542 21543 21544 21545 21546 21547 21548 21549 21550 21551 21552 21553 21554 21555 21556 21557 21558 21559 21560 21561 21562 21563 21564 21565 21566 21567 21568 21569 21570 21571 21572 21573 21574 21575 21576 21577 21578 21579 21580 21581 21582 21583 21584 21585 21586 21587 21588 21589 21590 21591 21592 21593 21594 21595 21596 21597 21598 21599 21600 21601 21602 21603 21604 21605 21606 21607 21608 21609 21610 21611 21612 21613 21614 21615 21616 21617 21618 21619 21620 21621 21622 21623 21624 21625 21626 21627 21628 21629 21630 21631 21632 21633 21634 21635 21636 21637 21638 21639 21640 21641 21642 21643 21644 21645 21646 21647 21648 21649 21650 21651 21652 21653 21654 21655 21656 21657 21658 21659 21660 21661 21662 21663 21664 21665 21666 21667 21668 21669 21670 21671 21672 21673 21674 21675 21676 21677 21678 21679 21680 21681 21682 21683 21684 21685 21686 21687 21688 21689 21690 21691 21692 21693 21694 21695 21696 21697 21698 21699 21700 21701 21702 21703 21704 21705 21706 21707 21708 21709 21710 21711 21712 21713 21714 21715 21716 21717 21718 21719 21720 21721 21722 21723 21724 21725 21726 21727 21728 21729 21730 21731 21732 21733 21734 21735 21736 21737 21738 21739 21740 21741 21742 21743 21744 21745 21746 21747 21748 21749 21750 21751 21752 21753 21754 21755 21756 21757 21758 21759 21760 21761 21762 21763 21764 21765 21766 21767 21768 21769 21770 21771 21772 21773 21774 21775 21776 21777 21778 21779 21780 21781 21782 21783 21784 21785 21786 21787 21788 21789 21790 21791 21792 21793 21794 21795 21796 21797 21798 21799 21800 21801 21802 21803 21804 21805 21806 21807 21808 21809 21810 21811 21812 21813 21814 21815 21816 21817 21818 21819 21820 21821 21822 21823 21824 21825 21826 21827 21828 21829 21830 21831 21832 21833 21834 21835 21836 21837 21838 21839 21840 21841 21842 21843 21844 21845 21846 21847 21848 21849 21850 21851 21852 21853 21854 21855 21856 21857 21858 21859 21860 21861 21862 21863 21864 21865 21866 21867 21868 21869 21870 21871 21872 21873 21874 21875 21876 21877 21878 21879 21880 21881 21882 21883 21884 21885 21886 21887 21888 21889 21890 21891 21892 21893 21894 21895 21896 21897 21898 21899 21900 21901 21902 21903 21904 21905 21906 21907 21908 21909 21910 21911 21912 21913 21914 21915 21916 21917 21918 21919 21920 21921 21922 21923 21924 21925 21926 21927 21928 21929 21930 21931 21932 21933 21934 21935 21936 21937 21938 21939 21940 21941 21942 21943 21944 21945 21946 21947 21948 21949 21950 21951 21952 21953 21954 21955 21956 21957 21958 21959 21960 21961 21962 21963 21964 21965 21966 21967 21968 21969 21970 21971 21972 21973 21974 21975 21976 21977 21978 21979 21980 21981 21982 21983 21984 21985 21986 21987 21988 21989 21990 21991 21992 21993 21994 21995 21996 21997 21998 21999 22000 22001 22002 22003 22004 22005 22006 22007 22008 22009 22010 22011 22012 22013 22014 22015 22016 22017 22018 22019 22020 22021 22022 22023 22024 22025 22026 22027 22028 22029 22030 22031 22032 22033 22034 22035 22036 22037 22038 22039 22040 22041 22042 22043 22044 22045 22046 22047 22048 22049 22050 22051 22052 22053 22054 22055 22056 22057 22058 22059 22060 22061 22062 22063 22064 22065 22066 22067 22068 22069 22070 22071 22072 22073 22074 22075 22076 22077 22078 22079 22080 22081 22082 22083 22084 22085 22086 22087 22088 22089 22090 22091 22092 22093 22094 22095 22096 22097 22098 22099 22100 22101 22102 22103 22104 22105 22106 22107 22108 22109 22110 22111 22112 22113 22114 22115 22116 22117 22118 22119 22120 22121 22122 22123 22124 22125 22126 22127 22128 22129 22130 22131 22132 22133 22134 22135 22136 22137 22138 22139 22140 22141 22142 22143 22144 22145 22146 22147 22148 22149 22150 22151 22152 22153 22154 22155 22156 22157 22158 22159 22160 22161 22162 22163 22164 22165 22166 22167 22168 22169 22170 22171 22172 22173 22174 22175 22176 22177 22178 22179 22180 22181 22182 22183 22184 22185 22186 22187 22188 22189 22190 22191 22192 22193 22194 22195 22196 22197 22198 22199 22200 22201 22202 22203 22204 22205 22206 22207 22208 22209 22210 22211 22212 22213 22214 22215 22216 22217 22218 22219 22220 22221 22222 22223 22224 22225 22226 22227 22228 22229 22230 22231 22232 22233 22234 22235 22236 22237 22238 22239 22240 22241 22242 22243 22244 22245 22246 22247 22248 22249 22250 22251 22252 22253 22254 22255 22256 22257 22258 22259 22260 22261 22262 22263 22264 22265 22266 22267 22268 22269 22270 22271 22272 22273 22274 22275 22276 22277 22278 22279 22280 22281 22282 22283 22284 22285 22286 22287 22288 22289 22290 22291 22292 22293 22294 22295 22296 22297 22298 22299 22300 22301 22302 22303 22304 22305 22306 22307 22308 22309 22310 22311 22312 22313 22314 22315 22316 22317 22318 22319 22320 22321 22322 22323 22324 22325 22326 22327 22328 22329 22330 22331 22332 22333 22334 22335 22336 22337 22338 22339 22340 22341 22342 22343 22344 22345 22346 22347 22348 22349 22350 22351 22352 22353 22354 22355 22356 22357 22358 22359 22360 22361 22362 22363 22364 22365 22366 22367 22368 22369 22370 22371 22372 22373 22374 22375 22376 22377 22378 22379 22380 22381 22382 22383 22384 22385 22386 22387 22388 22389 22390 22391 22392 22393 22394 22395 22396 22397 22398 22399 22400 22401 22402 22403 22404 22405 22406 22407 22408 22409 22410 22411 22412 22413 22414 22415 22416 22417 22418 22419 22420 22421 22422 22423 22424 22425 22426 22427 22428 22429 22430 22431 22432 22433 22434 22435 22436 22437 22438 22439 22440 22441 22442 22443 22444 22445 22446 22447 22448 22449 22450 22451 22452 22453 22454 22455 22456 22457 22458 22459 22460 22461 22462 22463 22464 22465 22466 22467 22468 22469 22470 22471 22472 22473 22474 22475 22476 22477 22478 22479 22480 22481 22482 22483 22484 22485 22486 22487 22488 22489 22490 22491 22492 22493 22494 22495 22496 22497 22498 22499 22500 22501 22502 22503 22504 22505 22506 22507 22508 22509 22510 22511 22512 22513 22514 22515 22516 22517 22518 22519 22520 22521 22522 22523 22524 22525 22526 22527 22528 22529 22530 22531 22532 22533 22534 22535 22536 22537 22538 22539 22540 22541 22542 22543 22544 22545 22546 22547 22548 22549 22550 22551 22552 22553 22554 22555 22556 22557 22558 22559 22560 22561 22562 22563 22564 22565 22566 22567 22568 22569 22570 22571 22572 22573 22574 22575 22576 22577 22578 22579 22580 22581 22582 22583 22584 22585 22586 22587 22588 22589 22590 22591 22592 22593 22594 22595 22596 22597 22598 22599 22600 22601 22602 22603 22604 22605 22606 22607 22608 22609 22610 22611 22612 22613 22614 22615 22616 22617 22618 22619 22620 22621 22622 22623 22624 22625 22626 22627 22628 22629 22630 22631 22632 22633 22634 22635 22636 22637 22638 22639 22640 22641 22642 22643 22644 22645 22646 22647 22648 22649 22650 22651 22652 22653 22654 22655 22656 22657 22658 22659 22660 22661 22662 22663 22664 22665 22666 22667 22668 22669 22670 22671 22672 22673 22674 22675 22676 22677 22678 22679 22680 22681 22682 22683 22684 22685 22686 22687 22688 22689 22690 22691 22692 22693 22694 22695 22696 22697 22698 22699 22700 22701 22702 22703 22704 22705 22706 22707 22708 22709 22710 22711 22712 22713 22714 22715 22716 22717 22718 22719 22720 22721 22722 22723 22724 22725 22726 22727 22728 22729 22730 22731 22732 22733 22734 22735 22736 22737 22738 22739 22740 22741 22742 22743 22744 22745 22746 22747 22748 22749 22750 22751 22752 22753 22754 22755 22756 22757 22758 22759 22760 22761 22762 22763 22764 22765 22766 22767 22768 22769 22770 22771 22772 22773 22774 22775 22776 22777 22778 22779 22780 22781 22782 22783 22784 22785 22786 22787 22788 22789 22790 22791 22792 22793 22794 22795 22796 22797 22798 22799 22800 22801 22802 22803 22804 22805 22806 22807 22808 22809 22810 22811 22812 22813 22814 22815 22816 22817 22818 22819 22820 22821 22822 22823 22824 22825 22826 22827 22828 22829 22830 22831 22832 22833 22834 22835 22836 22837 22838 22839 22840 22841 22842 22843 22844 22845 22846 22847 22848 22849 22850 22851 22852 22853 22854 22855 22856 22857 22858 22859 22860 22861 22862 22863 22864 22865 22866 22867 22868 22869 22870 22871 22872 22873 22874 22875 22876 22877 22878 22879 22880 22881 22882 22883 22884 22885 22886 22887 22888 22889 22890 22891 22892 22893 22894 22895 22896 22897 22898 22899 22900 22901 22902 22903 22904 22905 22906 22907 22908 22909 22910 22911 22912 22913 22914 22915 22916 22917 22918 22919 22920 22921 22922 22923 22924 22925 22926 22927 22928 22929 22930 22931 22932 22933 22934 22935 22936 22937 22938 22939 22940 22941 22942 22943 22944 22945 22946 22947 22948 22949 22950 22951 22952 22953 22954 22955 22956 22957 22958 22959 22960 22961 22962 22963 22964 22965 22966 22967 22968 22969 22970 22971 22972 22973 22974 22975 22976 22977 22978 22979 22980 22981 22982 22983 22984 22985 22986 22987 22988 22989 22990 22991 22992 22993 22994 22995 22996 22997 22998 22999 23000 23001 23002 23003 23004 23005 23006 23007 23008 23009 23010 23011 23012 23013 23014 23015 23016 23017 23018 23019 23020 23021 23022 23023 23024 23025 23026 23027 23028 23029 23030 23031 23032 23033 23034 23035 23036 23037 23038 23039 23040 23041 23042 23043 23044 23045 23046 23047 23048 23049 23050 23051 23052 23053 23054 23055 23056 23057 23058 23059 23060 23061 23062 23063 23064 23065 23066 23067 23068 23069 23070 23071 23072 23073 23074 23075 23076 23077 23078 23079 23080 23081 23082 23083 23084 23085 23086 23087 23088 23089 23090 23091 23092 23093 23094 23095 23096 23097 23098 23099 23100 23101 23102 23103 23104 23105 23106 23107 23108 23109 23110 23111 23112 23113 23114 23115 23116 23117 23118 23119 23120 23121 23122 23123 23124 23125 23126 23127 23128 23129 23130 23131 23132 23133 23134 23135 23136 23137 23138 23139 23140 23141 23142 23143 23144 23145 23146 23147 23148 23149 23150 23151 23152 23153 23154 23155 23156 23157 23158 23159 23160 23161 23162 23163 23164 23165 23166 23167 23168 23169 23170 23171 23172 23173 23174 23175 23176 23177 23178 23179 23180 23181 23182 23183 23184 23185 23186 23187 23188 23189 23190 23191 23192 23193 23194 23195 23196 23197 23198 23199 23200 23201 23202 23203 23204 23205 23206 23207 23208 23209 23210 23211 23212 23213 23214 23215 23216 23217 23218 23219 23220 23221 23222 23223 23224 23225 23226 23227 23228 23229 23230 23231 23232 23233 23234 23235 23236 23237 23238 23239 23240 23241 23242 23243 23244 23245 23246 23247 23248 23249 23250 23251 23252 23253 23254 23255 23256 23257 23258 23259 23260 23261 23262 23263 23264 23265 23266 23267 23268 23269 23270 23271 23272 23273 23274 23275 23276 23277 23278 23279 23280 23281 23282 23283 23284 23285 23286 23287 23288 23289 23290 23291 23292 23293 23294 23295 23296 23297 23298 23299 23300 23301 23302 23303 23304 23305 23306 23307 23308 23309 23310 23311 23312 23313 23314 23315 23316 23317 23318 23319 23320 23321 23322 23323 23324 23325 23326 23327 23328 23329 23330 23331 23332 23333 23334 23335 23336 23337 23338 23339 23340 23341 23342 23343 23344 23345 23346 23347 23348 23349 23350 23351 23352 23353 23354 23355 23356 23357 23358 23359 23360 23361 23362 23363 23364 23365 23366 23367 23368 23369 23370 23371 23372 23373 23374 23375 23376 23377 23378 23379 23380 23381 23382 23383 23384 23385 23386 23387 23388 23389 23390 23391 23392 23393 23394 23395 23396 23397 23398 23399 23400 23401 23402 23403 23404 23405 23406 23407 23408 23409 23410 23411 23412 23413 23414 23415 23416 23417 23418 23419 23420 23421 23422 23423 23424 23425 23426 23427 23428 23429 23430 23431 23432 23433 23434 23435 23436 23437 23438 23439 23440 23441 23442 23443 23444 23445 23446 23447 23448 23449 23450 23451 23452 23453 23454 23455 23456 23457 23458 23459 23460 23461 23462 23463 23464 23465 23466 23467 23468 23469 23470 23471 23472 23473 23474 23475 23476 23477 23478 23479 23480 23481 23482 23483 23484 23485 23486 23487 23488 23489 23490 23491 23492 23493 23494 23495 23496 23497 23498 23499 23500 23501 23502 23503 23504 23505 23506 23507 23508 23509 23510 23511 23512 23513 23514 23515 23516 23517 23518 23519 23520 23521 23522 23523 23524 23525 23526 23527 23528 23529 23530 23531 23532 23533 23534 23535 23536 23537 23538 23539 23540 23541 23542 23543 23544 23545 23546 23547 23548 23549 23550 23551 23552 23553 23554 23555 23556 23557 23558 23559 23560 23561 23562 23563 23564 23565 23566 23567 23568 23569 23570 23571 23572 23573 23574 23575 23576 23577 23578 23579 23580 23581 23582 23583 23584 23585 23586 23587 23588 23589 23590 23591 23592 23593 23594 23595 23596 23597 23598 23599 23600 23601 23602 23603 23604 23605 23606 23607 23608 23609 23610 23611 23612 23613 23614 23615 23616 23617 23618 23619 23620 23621 23622 23623 23624 23625 23626 23627 23628 23629 23630 23631 23632 23633 23634 23635 23636 23637 23638 23639 23640 23641 23642 23643 23644 23645 23646 23647 23648 23649 23650 23651 23652 23653 23654 23655 23656 23657 23658 23659 23660 23661 23662 23663 23664 23665 23666 23667 23668 23669 23670 23671 23672 23673 23674 23675 23676 23677 23678 23679 23680 23681 23682 23683 23684 23685 23686 23687 23688 23689 23690 23691 23692 23693 23694 23695 23696 23697 23698 23699 23700 23701 23702 23703 23704 23705 23706 23707 23708 23709 23710 23711 23712 23713 23714 23715 23716 23717 23718 23719 23720 23721 23722 23723 23724 23725 23726 23727 23728 23729 23730 23731 23732 23733 23734 23735 23736 23737 23738 23739 23740 23741 23742 23743 23744 23745 23746 23747 23748 23749 23750 23751 23752 23753 23754 23755 23756 23757 23758 23759 23760 23761 23762 23763 23764 23765 23766 23767 23768 23769 23770 23771 23772 23773 23774 23775 23776 23777 23778 23779 23780 23781 23782 23783 23784 23785 23786 23787 23788 23789 23790 23791 23792 23793 23794 23795 23796 23797 23798 23799 23800 23801 23802 23803 23804 23805 23806 23807 23808 23809 23810 23811 23812 23813 23814 23815 23816 23817 23818 23819 23820 23821 23822 23823 23824 23825 23826 23827 23828 23829 23830 23831 23832 23833 23834 23835 23836 23837 23838 23839 23840 23841 23842 23843 23844 23845 23846 23847 23848 23849 23850 23851 23852 23853 23854 23855 23856 23857 23858 23859 23860 23861 23862 23863 23864 23865 23866 23867 23868 23869 23870 23871 23872 23873 23874 23875 23876 23877 23878 23879 23880 23881 23882 23883 23884 23885 23886 23887 23888 23889 23890 23891 23892 23893 23894 23895 23896 23897 23898 23899 23900 23901 23902 23903 23904 23905 23906 23907 23908 23909 23910 23911 23912 23913 23914 23915 23916 23917 23918 23919 23920 23921 23922 23923 23924 23925 23926 23927 23928 23929 23930 23931 23932 23933 23934 23935 23936 23937 23938 23939 23940 23941 23942 23943 23944 23945 23946 23947 23948 23949 23950 23951 23952 23953 23954 23955 23956 23957 23958 23959 23960 23961 23962 23963 23964 23965 23966 23967 23968 23969 23970 23971 23972 23973 23974 23975 23976 23977 23978 23979 23980 23981 23982 23983 23984 23985 23986 23987 23988 23989 23990 23991 23992 23993 23994 23995 23996 23997 23998 23999 24000 24001 24002 24003 24004 24005 24006 24007 24008 24009 24010 24011 24012 24013 24014 24015 24016 24017 24018 24019 24020 24021 24022 24023 24024 24025 24026 24027 24028 24029 24030 24031 24032 24033 24034 24035 24036 24037 24038 24039 24040 24041 24042 24043 24044 24045 24046 24047 24048 24049 24050 24051 24052 24053 24054 24055 24056 24057 24058 24059 24060 24061 24062 24063 24064 24065 24066 24067 24068 24069 24070 24071 24072 24073 24074 24075 24076 24077 24078 24079 24080 24081 24082 24083 24084 24085 24086 24087 24088 24089 24090 24091 24092 24093 24094 24095 24096 24097 24098 24099 24100 24101 24102 24103 24104 24105 24106 24107 24108 24109 24110 24111 24112 24113 24114 24115 24116 24117 24118 24119 24120 24121 24122 24123 24124 24125 24126 24127 24128 24129 24130 24131 24132 24133 24134 24135 24136 24137 24138 24139 24140 24141 24142 24143 24144 24145 24146 24147 24148 24149 24150 24151 24152 24153 24154 24155 24156 24157 24158 24159 24160 24161 24162 24163 24164 24165 24166 24167 24168 24169 24170 24171 24172 24173 24174 24175 24176 24177 24178 24179 24180 24181 24182 24183 24184 24185 24186 24187 24188 24189 24190 24191 24192 24193 24194 24195 24196 24197 24198 24199 24200 24201 24202 24203 24204 24205 24206 24207 24208 24209 24210 24211 24212 24213 24214 24215 24216 24217 24218 24219 24220 24221 24222 24223 24224 24225 24226 24227 24228 24229 24230 24231 24232 24233 24234 24235 24236 24237 24238 24239 24240 24241 24242 24243 24244 24245 24246 24247 24248 24249 24250 24251 24252 24253 24254 24255 24256 24257 24258 24259 24260 24261 24262 24263 24264 24265 24266 24267 24268 24269 24270 24271 24272 24273 24274 24275 24276 24277 24278 24279 24280 24281 24282 24283 24284 24285 24286 24287 24288 24289 24290 24291 24292 24293 24294 24295 24296 24297 24298 24299 24300 24301 24302 24303 24304 24305 24306 24307 24308 24309 24310 24311 24312 24313 24314 24315 24316 24317 24318 24319 24320 24321 24322 24323 24324 24325 24326 24327 24328 24329 24330 24331 24332 24333 24334 24335 24336 24337 24338 24339 24340 24341 24342 24343 24344 24345 24346 24347 24348 24349 24350 24351 24352 24353 24354 24355 24356 24357 24358 24359 24360 24361 24362 24363 24364 24365 24366 24367 24368 24369 24370 24371 24372 24373 24374 24375 24376 24377 24378 24379 24380 24381 24382 24383 24384 24385 24386 24387 24388 24389 24390 24391 24392 24393 24394 24395 24396 24397 24398 24399 24400 24401 24402 24403 24404 24405 24406 24407 24408 24409 24410 24411 24412 24413 24414 24415 24416 24417 24418 24419 24420 24421 24422 24423 24424 24425 24426 24427 24428 24429 24430 24431 24432 24433 24434 24435 24436 24437 24438 24439 24440 24441 24442 24443 24444 24445 24446 24447 24448 24449 24450 24451 24452 24453 24454 24455 24456 24457 24458 24459 24460 24461 24462 24463 24464 24465 24466 24467 24468 24469 24470 24471 24472 24473 24474 24475 24476 24477 24478 24479 24480 24481 24482 24483 24484 24485 24486 24487 24488 24489 24490 24491 24492 24493 24494 24495 24496 24497 24498 24499 24500 24501 24502 24503 24504 24505 24506 24507 24508 24509 24510 24511 24512 24513 24514 24515 24516 24517 24518 24519 24520 24521 24522 24523 24524 24525 24526 24527 24528 24529 24530 24531 24532 24533 24534 24535 24536 24537 24538 24539 24540 24541 24542 24543 24544 24545 24546 24547 24548 24549 24550 24551 24552 24553 24554 24555 24556 24557 24558 24559 24560 24561 24562 24563 24564 24565 24566 24567 24568 24569 24570 24571 24572 24573 24574 24575 24576 24577 24578 24579 24580 24581 24582 24583 24584 24585 24586 24587 24588 24589 24590 24591 24592 24593 24594 24595 24596 24597 24598 24599 24600 24601 24602 24603 24604 24605 24606 24607 24608 24609 24610 24611 24612 24613 24614 24615 24616 24617 24618 24619 24620 24621 24622 24623 24624 24625 24626 24627 24628 24629 24630 24631 24632 24633 24634 24635 24636 24637 24638 24639 24640 24641 24642 24643 24644 24645 24646 24647 24648 24649 24650 24651 24652 24653 24654 24655 24656 24657 24658 24659 24660 24661 24662 24663 24664 24665 24666 24667 24668 24669 24670 24671 24672 24673 24674 24675 24676 24677 24678 24679 24680 24681 24682 24683 24684 24685 24686 24687 24688 24689 24690 24691 24692 24693 24694 24695 24696 24697 24698 24699 24700 24701 24702 24703 24704 24705 24706 24707 24708 24709 24710 24711 24712 24713 24714 24715 24716 24717 24718 24719 24720 24721 24722 24723 24724 24725 24726 24727 24728 24729 24730 24731 24732 24733 24734 24735 24736 24737 24738 24739 24740 24741 24742 24743 24744 24745 24746 24747 24748 24749 24750 24751 24752 24753 24754 24755 24756 24757 24758 24759 24760 24761 24762 24763 24764 24765 24766 24767 24768 24769 24770 24771 24772 24773 24774 24775 24776 24777 24778 24779 24780 24781 24782 24783 24784 24785 24786 24787 24788 24789 24790 24791 24792 24793 24794 24795 24796 24797 24798 24799 24800 24801 24802 24803 24804 24805 24806 24807 24808 24809 24810 24811 24812 24813 24814 24815 24816 24817 24818 24819 24820 24821 24822 24823 24824 24825 24826 24827 24828 24829 24830 24831 24832 24833 24834 24835 24836 24837 24838 24839 24840 24841 24842 24843 24844 24845 24846 24847 24848 24849 24850 24851 24852 24853 24854 24855 24856 24857 24858 24859 24860 24861 24862 24863 24864 24865 24866 24867 24868 24869 24870 24871 24872 24873 24874 24875 24876 24877 24878 24879 24880 24881 24882 24883 24884 24885 24886 24887 24888 24889 24890 24891 24892 24893 24894 24895 24896 24897 24898 24899 24900 24901 24902 24903 24904 24905 24906 24907 24908 24909 24910 24911 24912 24913 24914 24915 24916 24917 24918 24919 24920 24921 24922 24923 24924 24925 24926 24927 24928 24929 24930 24931 24932 24933 24934 24935 24936 24937 24938 24939 24940 24941 24942 24943 24944 24945 24946 24947 24948 24949 24950 24951 24952 24953 24954 24955 24956 24957 24958 24959 24960 24961 24962 24963 24964 24965 24966 24967 24968 24969 24970 24971 24972 24973 24974 24975 24976 24977 24978 24979 24980 24981 24982 24983 24984 24985 24986 24987 24988 24989 24990 24991 24992 24993 24994 24995 24996 24997 24998 24999 25000 25001 25002 25003 25004 25005 25006 25007 25008 25009 25010 25011 25012 25013 25014 25015 25016 25017 25018 25019 25020 25021 25022 25023 25024 25025 25026 25027 25028 25029 25030 25031 25032 25033 25034 25035 25036 25037 25038 25039 25040 25041 25042 25043 25044 25045 25046 25047 25048 25049 25050 25051 25052 25053 25054 25055 25056 25057 25058 25059 25060 25061 25062 25063 25064 25065 25066 25067 25068 25069 25070 25071 25072 25073 25074 25075 25076 25077 25078 25079 25080 25081 25082 25083 25084 25085 25086 25087 25088 25089 25090 25091 25092 25093 25094 25095 25096 25097 25098 25099 25100 25101 25102 25103 25104 25105 25106 25107 25108 25109 25110 25111 25112 25113 25114 25115 25116 25117 25118 25119 25120 25121 25122 25123 25124 25125 25126 25127 25128 25129 25130 25131 25132 25133 25134 25135 25136 25137 25138 25139 25140 25141 25142 25143 25144 25145 25146 25147 25148 25149 25150 25151 25152 25153 25154 25155 25156 25157 25158 25159 25160 25161 25162 25163 25164 25165 25166 25167 25168 25169 25170 25171 25172 25173 25174 25175 25176 25177 25178 25179 25180 25181 25182 25183 25184 25185 25186 25187 25188 25189 25190 25191 25192 25193 25194 25195 25196 25197 25198 25199 25200 25201 25202 25203 25204 25205 25206 25207 25208 25209 25210 25211 25212 25213 25214 25215 25216 25217 25218 25219 25220 25221 25222 25223 25224 25225 25226 25227 25228 25229 25230 25231 25232 25233 25234 25235 25236 25237 25238 25239 25240 25241 25242 25243 25244 25245 25246 25247 25248 25249 25250 25251 25252 25253 25254 25255 25256 25257 25258 25259 25260 25261 25262 25263 25264 25265 25266 25267 25268 25269 25270 25271 25272 25273 25274 25275 25276 25277 25278 25279 25280 25281 25282 25283 25284 25285 25286 25287 25288 25289 25290 25291 25292 25293 25294 25295 25296 25297 25298 25299 25300 25301 25302 25303 25304 25305 25306 25307 25308 25309 25310 25311 25312 25313 25314 25315 25316 25317 25318 25319 25320 25321 25322 25323 25324 25325 25326 25327 25328 25329 25330 25331 25332 25333 25334 25335 25336 25337 25338 25339 25340 25341 25342 25343 25344 25345 25346 25347 25348 25349 25350 25351 25352 25353 25354 25355 25356 25357 25358 25359 25360 25361 25362 25363 25364 25365 25366 25367 25368 25369 25370 25371 25372 25373 25374 25375 25376 25377 25378 25379 25380 25381 25382 25383 25384 25385 25386 25387 25388 25389 25390 25391 25392 25393 25394 25395 25396 25397 25398 25399 25400 25401 25402 25403 25404 25405 25406 25407 25408 25409 25410 25411 25412 25413 25414 25415 25416 25417 25418 25419 25420 25421 25422 25423 25424 25425 25426 25427 25428 25429 25430 25431 25432 25433 25434 25435 25436 25437 25438 25439 25440 25441 25442 25443 25444 25445 25446 25447 25448 25449 25450 25451 25452 25453 25454 25455 25456 25457 25458 25459 25460 25461 25462 25463 25464 25465 25466 25467 25468 25469 25470 25471 25472 25473 25474 25475 25476 25477 25478 25479 25480 25481 25482 25483 25484 25485 25486 25487 25488 25489 25490 25491 25492 25493 25494 25495 25496 25497 25498 25499 25500 25501 25502 25503 25504 25505 25506 25507 25508 25509 25510 25511 25512 25513 25514 25515 25516 25517 25518 25519 25520 25521 25522 25523 25524 25525 25526 25527 25528 25529 25530 25531 25532 25533 25534 25535 25536 25537 25538 25539 25540 25541 25542 25543 25544 25545 25546 25547 25548 25549 25550 25551 25552 25553 25554 25555 25556 25557 25558 25559 25560 25561 25562 25563 25564 25565 25566 25567 25568 25569 25570 25571 25572 25573 25574 25575 25576 25577 25578 25579 25580 25581 25582 25583 25584 25585 25586 25587 25588 25589 25590 25591 25592 25593 25594 25595 25596 25597 25598 25599 25600 25601 25602 25603 25604 25605 25606 25607 25608 25609 25610 25611 25612 25613 25614 25615 25616 25617 25618 25619 25620 25621 25622 25623 25624 25625 25626 25627 25628 25629 25630 25631 25632 25633 25634 25635 25636 25637 25638 25639 25640 25641 25642 25643 25644 25645 25646 25647 25648 25649 25650 25651 25652 25653 25654 25655 25656 25657 25658 25659 25660 25661 25662 25663 25664 25665 25666 25667 25668 25669 25670 25671 25672 25673 25674 25675 25676 25677 25678 25679 25680 25681 25682 25683 25684 25685 25686 25687 25688 25689 25690 25691 25692 25693 25694 25695 25696 25697 25698 25699 25700 25701 25702 25703 25704 25705 25706 25707 25708 25709 25710 25711 25712 25713 25714 25715 25716 25717 25718 25719 25720 25721 25722 25723 25724 25725 25726 25727 25728 25729 25730 25731 25732 25733 25734 25735 25736 25737 25738 25739 25740 25741 25742 25743 25744 25745 25746 25747 25748 25749 25750 25751 25752 25753 25754 25755 25756 25757 25758 25759 25760 25761 25762 25763 25764 25765 25766 25767 25768 25769 25770 25771 25772 25773 25774 25775 25776 25777 25778 25779 25780 25781 25782 25783 25784 25785 25786 25787 25788 25789 25790 25791 25792 25793 25794 25795 25796 25797 25798 25799 25800 25801 25802 25803 25804 25805 25806 25807 25808 25809 25810 25811 25812 25813 25814 25815 25816 25817 25818 25819 25820 25821 25822 25823 25824 25825 25826 25827 25828 25829 25830 25831 25832 25833 25834 25835 25836 25837 25838 25839 25840 25841 25842 25843 25844 25845 25846 25847 25848 25849 25850 25851 25852 25853 25854 25855 25856 25857 25858 25859 25860 25861 25862 25863 25864 25865 25866 25867 25868 25869 25870 25871 25872 25873 25874 25875 25876 25877 25878 25879 25880 25881 25882 25883 25884 25885 25886 25887 25888 25889 25890 25891 25892 25893 25894 25895 25896 25897 25898 25899 25900 25901 25902 25903 25904 25905 25906 25907 25908 25909 25910 25911 25912 25913 25914 25915 25916 25917 25918 25919 25920 25921 25922 25923 25924 25925 25926 25927 25928 25929 25930 25931 25932 25933 25934 25935 25936 25937 25938 25939 25940 25941 25942 25943 25944 25945 25946 25947 25948 25949 25950 25951 25952 25953 25954 25955 25956 25957 25958 25959 25960 25961 25962 25963 25964 25965 25966 25967 25968 25969 25970 25971 25972 25973 25974 25975 25976 25977 25978 25979 25980 25981 25982 25983 25984 25985 25986 25987 25988 25989 25990 25991 25992 25993 25994 25995 25996 25997 25998 25999 26000 26001 26002 26003 26004 26005 26006 26007 26008 26009 26010 26011 26012 26013 26014 26015 26016 26017 26018 26019 26020 26021 26022 26023 26024 26025 26026 26027 26028 26029 26030 26031 26032 26033 26034 26035 26036 26037 26038 26039 26040 26041 26042 26043 26044 26045 26046 26047 26048 26049 26050 26051 26052 26053 26054 26055 26056 26057 26058 26059 26060 26061 26062 26063 26064 26065 26066 26067 26068 26069 26070 26071 26072 26073 26074 26075 26076 26077 26078 26079 26080 26081 26082 26083 26084 26085 26086 26087 26088 26089 26090 26091 26092 26093 26094 26095 26096 26097 26098 26099 26100 26101 26102 26103 26104 26105 26106 26107 26108 26109 26110 26111 26112 26113 26114 26115 26116 26117 26118 26119 26120 26121 26122 26123 26124 26125 26126 26127 26128 26129 26130 26131 26132 26133 26134 26135 26136 26137 26138 26139 26140 26141 26142 26143 26144 26145 26146 26147 26148 26149 26150 26151 26152 26153 26154 26155 26156 26157 26158 26159 26160 26161 26162 26163 26164 26165 26166 26167 26168 26169 26170 26171 26172 26173 26174 26175 26176 26177 26178 26179 26180 26181 26182 26183 26184 26185 26186 26187 26188 26189 26190 26191 26192 26193 26194 26195 26196 26197 26198 26199 26200 26201 26202 26203 26204 26205 26206 26207 26208 26209 26210 26211 26212 26213 26214 26215 26216 26217 26218 26219 26220 26221 26222 26223 26224 26225 26226 26227 26228 26229 26230 26231 26232 26233 26234 26235 26236 26237 26238 26239 26240 26241 26242 26243 26244 26245 26246 26247 26248 26249 26250 26251 26252 26253 26254 26255 26256 26257 26258 26259 26260 26261 26262 26263 26264 26265 26266 26267 26268 26269 26270 26271 26272 26273 26274 26275 26276 26277 26278 26279 26280 26281 26282 26283 26284 26285 26286 26287 26288 26289 26290 26291 26292 26293 26294 26295 26296 26297 26298 26299 26300 26301 26302 26303 26304 26305 26306 26307 26308 26309 26310 26311 26312 26313 26314 26315 26316 26317 26318 26319 26320 26321 26322 26323 26324 26325 26326 26327 26328 26329 26330 26331 26332 26333 26334 26335 26336 26337 26338 26339 26340 26341 26342 26343 26344 26345 26346 26347 26348 26349 26350 26351 26352 26353 26354 26355 26356 26357 26358 26359 26360 26361 26362 26363 26364 26365 26366 26367 26368 26369 26370 26371 26372 26373 26374 26375 26376 26377 26378 26379 26380 26381 26382 26383 26384 26385 26386 26387 26388 26389 26390 26391 26392 26393 26394 26395 26396 26397 26398 26399 26400 26401 26402 26403 26404 26405 26406 26407 26408 26409 26410 26411 26412 26413 26414 26415 26416 26417 26418 26419 26420 26421 26422 26423 26424 26425 26426 26427 26428 26429 26430 26431 26432 26433 26434 26435 26436 26437 26438 26439 26440 26441 26442 26443 26444 26445 26446 26447 26448 26449 26450 26451 26452 26453 26454 26455 26456 26457 26458 26459 26460 26461 26462 26463 26464 26465 26466 26467 26468 26469 26470 26471 26472 26473 26474 26475 26476 26477 26478 26479 26480 26481 26482 26483 26484 26485 26486 26487 26488 26489 26490 26491 26492 26493 26494 26495 26496 26497 26498 26499 26500 26501 26502 26503 26504 26505 26506 26507 26508 26509 26510 26511 26512 26513 26514 26515 26516 26517 26518 26519 26520 26521 26522 26523 26524 26525 26526 26527 26528 26529 26530 26531 26532 26533 26534 26535 26536 26537 26538 26539 26540 26541 26542 26543 26544 26545 26546 26547 26548 26549 26550 26551 26552 26553 26554 26555 26556 26557 26558 26559 26560 26561 26562 26563 26564 26565 26566 26567 26568 26569 26570 26571 26572 26573 26574 26575 26576 26577 26578 26579 26580 26581 26582 26583 26584 26585 26586 26587 26588 26589 26590 26591 26592 26593 26594 26595 26596 26597 26598 26599 26600 26601 26602 26603 26604 26605 26606 26607 26608 26609 26610 26611 26612 26613 26614 26615 26616 26617 26618 26619 26620 26621 26622 26623 26624 26625 26626 26627 26628 26629 26630 26631 26632 26633 26634 26635 26636 26637 26638 26639 26640 26641 26642 26643 26644 26645 26646 26647 26648 26649 26650 26651 26652 26653 26654 26655 26656 26657 26658 26659 26660 26661 26662 26663 26664 26665 26666 26667 26668 26669 26670 26671 26672 26673 26674 26675 26676 26677 26678 26679 26680 26681 26682 26683 26684 26685 26686 26687 26688 26689 26690 26691 26692 26693 26694 26695 26696 26697 26698 26699 26700 26701 26702 26703 26704 26705 26706 26707 26708 26709 26710 26711 26712 26713 26714 26715 26716 26717 26718 26719 26720 26721 26722 26723 26724 26725 26726 26727 26728 26729 26730 26731 26732 26733 26734 26735 26736 26737 26738 26739 26740 26741 26742 26743 26744 26745 26746 26747 26748 26749 26750 26751 26752 26753 26754 26755 26756 26757 26758 26759 26760 26761 26762 26763 26764 26765 26766 26767 26768 26769 26770 26771 26772 26773 26774 26775 26776 26777 26778 26779 26780 26781 26782 26783 26784 26785 26786 26787 26788 26789 26790 26791 26792 26793 26794 26795 26796 26797 26798 26799 26800 26801 26802 26803 26804 26805 26806 26807 26808 26809 26810 26811 26812 26813 26814 26815 26816 26817 26818 26819 26820 26821 26822 26823 26824 26825 26826 26827 26828 26829 26830 26831 26832 26833 26834 26835 26836 26837 26838 26839 26840 26841 26842 26843 26844 26845 26846 26847 26848 26849 26850 26851 26852 26853 26854 26855 26856 26857 26858 26859 26860 26861 26862 26863 26864 26865 26866 26867 26868 26869 26870 26871 26872 26873 26874 26875 26876 26877 26878 26879 26880 26881 26882 26883 26884 26885 26886 26887 26888 26889 26890 26891 26892 26893 26894 26895 26896 26897 26898 26899 26900 26901 26902 26903 26904 26905 26906 26907 26908 26909 26910 26911 26912 26913 26914 26915 26916 26917 26918 26919 26920 26921 26922 26923 26924 26925 26926 26927 26928 26929 26930 26931 26932 26933 26934 26935 26936 26937 26938 26939 26940 26941 26942 26943 26944 26945 26946 26947 26948 26949 26950 26951 26952 26953 26954 26955 26956 26957 26958 26959 26960 26961 26962 26963 26964 26965 26966 26967 26968 26969 26970 26971 26972 26973 26974 26975 26976 26977 26978 26979 26980 26981 26982 26983 26984 26985 26986 26987 26988 26989 26990 26991 26992 26993 26994 26995 26996 26997 26998 26999 27000 27001 27002 27003 27004 27005 27006 27007 27008 27009 27010 27011 27012 27013 27014 27015 27016 27017 27018 27019 27020 27021 27022 27023 27024 27025 27026 27027 27028 27029 27030 27031 27032 27033 27034 27035 27036 27037 27038 27039 27040 27041 27042 27043 27044 27045 27046 27047 27048 27049 27050 27051 27052 27053 27054 27055 27056 27057 27058 27059 27060 27061 27062 27063 27064 27065 27066 27067 27068 27069 27070 27071 27072 27073 27074 27075 27076 27077 27078 27079 27080 27081 27082 27083 27084 27085 27086 27087 27088 27089 27090 27091 27092 27093 27094 27095 27096 27097 27098 27099 27100 27101 27102 27103 27104 27105 27106 27107 27108 27109 27110 27111 27112 27113 27114 27115 27116 27117 27118 27119 27120 27121 27122 27123 27124 27125 27126 27127 27128 27129 27130 27131 27132 27133 27134 27135 27136 27137 27138 27139 27140 27141 27142 27143 27144 27145 27146 27147 27148 27149 27150 27151 27152 27153 27154 27155 27156 27157 27158 27159 27160 27161 27162 27163 27164 27165 27166 27167 27168 27169 27170 27171 27172 27173 27174 27175 27176 27177 27178 27179 27180 27181 27182 27183 27184 27185 27186 27187 27188 27189 27190 27191 27192 27193 27194 27195 27196 27197 27198 27199 27200 27201 27202 27203 27204 27205 27206 27207 27208 27209 27210 27211 27212 27213 27214 27215 27216 27217 27218 27219 27220 27221 27222 27223 27224 27225 27226 27227 27228 27229 27230 27231 27232 27233 27234 27235 27236 27237 27238 27239 27240 27241 27242 27243 27244 27245 27246 27247 27248 27249 27250 27251 27252 27253 27254 27255 27256 27257 27258 27259 27260 27261 27262 27263 27264 27265 27266 27267 27268 27269 27270 27271 27272 27273 27274 27275 27276 27277 27278 27279 27280 27281 27282 27283 27284 27285 27286 27287 27288 27289 27290 27291 27292 27293 27294 27295 27296 27297 27298 27299 27300 27301 27302 27303 27304 27305 27306 27307 27308 27309 27310 27311 27312 27313 27314 27315 27316 27317 27318 27319 27320 27321 27322 27323 27324 27325 27326 27327 27328 27329 27330 27331 27332 27333 27334 27335 27336 27337 27338 27339 27340 27341 27342 27343 27344 27345 27346 27347 27348 27349 27350 27351 27352 27353 27354 27355 27356 27357 27358 27359 27360 27361 27362 27363 27364 27365 27366 27367 27368 27369 27370 27371 27372 27373 27374 27375 27376 27377 27378 27379 27380 27381 27382 27383 27384 27385 27386 27387 27388 27389 27390 27391 27392 27393 27394 27395 27396 27397 27398 27399 27400 27401 27402 27403 27404 27405 27406 27407 27408 27409 27410 27411 27412 27413 27414 27415 27416 27417 27418 27419 27420 27421 27422 27423 27424 27425 27426 27427 27428 27429 27430 27431 27432 27433 27434 27435 27436 27437 27438 27439 27440 27441 27442 27443 27444 27445 27446 27447 27448 27449 27450 27451 27452 27453 27454 27455 27456 27457 27458 27459 27460 27461 27462 27463 27464 27465 27466 27467 27468 27469 27470 27471 27472 27473 27474 27475 27476 27477 27478 27479 27480 27481 27482 27483 27484 27485 27486 27487 27488 27489 27490 27491 27492 27493 27494 27495 27496 27497 27498 27499 27500 27501 27502 27503 27504 27505 27506 27507 27508 27509 27510 27511 27512 27513 27514 27515 27516 27517 27518 27519 27520 27521 27522 27523 27524 27525 27526 27527 27528 27529 27530 27531 27532 27533 27534 27535 27536 27537 27538 27539 27540 27541 27542 27543 27544 27545 27546 27547 27548 27549 27550 27551 27552 27553 27554 27555 27556 27557 27558 27559 27560 27561 27562 27563 27564 27565 27566 27567 27568 27569 27570 27571 27572 27573 27574 27575 27576 27577 27578 27579 27580 27581 27582 27583 27584 27585 27586 27587 27588 27589 27590 27591 27592 27593 27594 27595 27596 27597 27598 27599 27600 27601 27602 27603 27604 27605 27606 27607 27608 27609 27610 27611 27612 27613 27614 27615 27616 27617 27618 27619 27620 27621 27622 27623 27624 27625 27626 27627 27628 27629 27630 27631 27632 27633 27634 27635 27636 27637 27638 27639 27640 27641 27642 27643 27644 27645 27646 27647 27648 27649 27650 27651 27652 27653 27654 27655 27656 27657 27658 27659 27660 27661 27662 27663 27664 27665 27666 27667 27668 27669 27670 27671 27672 27673 27674 27675 27676 27677 27678 27679 27680 27681 27682 27683 27684 27685 27686 27687 27688 27689 27690 27691 27692 27693 27694 27695 27696 27697 27698 27699 27700 27701 27702 27703 27704 27705 27706 27707 27708 27709 27710 27711 27712 27713 27714 27715 27716 27717 27718 27719 27720 27721 27722 27723 27724 27725 27726 27727 27728 27729 27730 27731 27732 27733 27734 27735 27736 27737 27738 27739 27740 27741 27742 27743 27744 27745 27746 27747 27748 27749 27750 27751 27752 27753 27754 27755 27756 27757 27758 27759 27760 27761 27762 27763 27764 27765 27766 27767 27768 27769 27770 27771 27772 27773 27774 27775 27776 27777 27778 27779 27780 27781 27782 27783 27784 27785 27786 27787 27788 27789 27790 27791 27792 27793 27794 27795 27796 27797 27798 27799 27800 27801 27802 27803 27804 27805 27806 27807 27808 27809 27810 27811 27812 27813 27814 27815 27816 27817 27818 27819 27820 27821 27822 27823 27824 27825 27826 27827 27828 27829 27830 27831 27832 27833 27834 27835 27836 27837 27838 27839 27840 27841 27842 27843 27844 27845 27846 27847 27848 27849 27850 27851 27852 27853 27854 27855 27856 27857 27858 27859 27860 27861 27862 27863 27864 27865 27866 27867 27868 27869 27870 27871 27872 27873 27874 27875 27876 27877 27878 27879 27880 27881 27882 27883 27884 27885 27886 27887 27888 27889 27890 27891 27892 27893 27894 27895 27896 27897 27898 27899 27900 27901 27902 27903 27904 27905 27906 27907 27908 27909 27910 27911 27912 27913 27914 27915 27916 27917 27918 27919 27920 27921 27922 27923 27924 27925 27926 27927 27928 27929 27930 27931 27932 27933 27934 27935 27936 27937 27938 27939 27940 27941 27942 27943 27944 27945 27946 27947 27948 27949 27950 27951 27952 27953 27954 27955 27956 27957 27958 27959 27960 27961 27962 27963 27964 27965 27966 27967 27968 27969 27970 27971 27972 27973 27974 27975 27976 27977 27978 27979 27980 27981 27982 27983 27984 27985 27986 27987 27988 27989 27990 27991 27992 27993 27994 27995 27996 27997 27998 27999 28000 28001 28002 28003 28004 28005 28006 28007 28008 28009 28010 28011 28012 28013 28014 28015 28016 28017 28018 28019 28020 28021 28022 28023 28024 28025 28026 28027 28028 28029 28030 28031 28032 28033 28034 28035 28036 28037 28038 28039 28040 28041 28042 28043 28044 28045 28046 28047 28048 28049 28050 28051 28052 28053 28054 28055 28056 28057 28058 28059 28060 28061 28062 28063 28064 28065 28066 28067 28068 28069 28070 28071 28072 28073 28074 28075 28076 28077 28078 28079 28080 28081 28082 28083 28084 28085 28086 28087 28088 28089 28090 28091 28092 28093 28094 28095 28096 28097 28098 28099 28100 28101 28102 28103 28104 28105 28106 28107 28108 28109 28110 28111 28112 28113 28114 28115 28116 28117 28118 28119 28120 28121 28122 28123 28124 28125 28126 28127 28128 28129 28130 28131 28132 28133 28134 28135 28136 28137 28138 28139 28140 28141 28142 28143 28144 28145 28146 28147 28148 28149 28150 28151 28152 28153 28154 28155 28156 28157 28158 28159 28160 28161 28162 28163 28164 28165 28166 28167 28168 28169 28170 28171 28172 28173 28174 28175 28176 28177 28178 28179 28180 28181 28182 28183 28184 28185 28186 28187 28188 28189 28190 28191 28192 28193 28194 28195 28196 28197 28198 28199 28200 28201 28202 28203 28204 28205 28206 28207 28208 28209 28210 28211 28212 28213 28214 28215 28216 28217 28218 28219 28220 28221 28222 28223 28224 28225 28226 28227 28228 28229 28230 28231 28232 28233 28234 28235 28236 28237 28238 28239 28240 28241 28242 28243 28244 28245 28246 28247 28248 28249 28250 28251 28252 28253 28254 28255 28256 28257 28258 28259 28260 28261 28262 28263 28264 28265 28266 28267 28268 28269 28270 28271 28272 28273 28274 28275 28276 28277 28278 28279 28280 28281 28282 28283 28284 28285 28286 28287 28288 28289 28290 28291 28292 28293 28294 28295 28296 28297 28298 28299 28300 28301 28302 28303 28304 28305 28306 28307 28308 28309 28310 28311 28312 28313 28314 28315 28316 28317 28318 28319 28320 28321 28322 28323 28324 28325 28326 28327 28328 28329 28330 28331 28332 28333 28334 28335 28336 28337 28338 28339 28340 28341 28342 28343 28344 28345 28346 28347 28348 28349 28350 28351 28352 28353 28354 28355 28356 28357 28358 28359 28360 28361 28362 28363 28364 28365 28366 28367 28368 28369 28370 28371 28372 28373 28374 28375 28376 28377 28378 28379 28380 28381 28382 28383 28384 28385 28386 28387 28388 28389 28390 28391 28392 28393 28394 28395 28396 28397 28398 28399 28400 28401 28402 28403 28404 28405 28406 28407 28408 28409 28410 28411 28412 28413 28414 28415 28416 28417 28418 28419 28420 28421 28422 28423 28424 28425 28426 28427 28428 28429 28430 28431 28432 28433 28434 28435 28436 28437 28438 28439 28440 28441 28442 28443 28444 28445 28446 28447 28448 28449 28450 28451 28452 28453 28454 28455 28456 28457 28458 28459 28460 28461 28462 28463 28464 28465 28466 28467 28468 28469 28470 28471 28472 28473 28474 28475 28476 28477 28478 28479 28480 28481 28482 28483 28484 28485 28486 28487 28488 28489 28490 28491 28492 28493 28494 28495 28496 28497 28498 28499 28500 28501 28502 28503 28504 28505 28506 28507 28508 28509 28510 28511 28512 28513 28514 28515 28516 28517 28518 28519 28520 28521 28522 28523 28524 28525 28526 28527 28528 28529 28530 28531 28532 28533 28534 28535 28536 28537 28538 28539 28540 28541 28542 28543 28544 28545 28546 28547 28548 28549 28550 28551 28552 28553 28554 28555 28556 28557 28558 28559 28560 28561 28562 28563 28564 28565 28566 28567 28568 28569 28570 28571 28572 28573 28574 28575 28576 28577 28578 28579 28580 28581 28582 28583 28584 28585 28586 28587 28588 28589 28590 28591 28592 28593 28594 28595 28596 28597 28598 28599 28600 28601 28602 28603 28604 28605 28606 28607 28608 28609 28610 28611 28612 28613 28614 28615 28616 28617 28618 28619 28620 28621 28622 28623 28624 28625 28626 28627 28628 28629 28630 28631 28632 28633 28634 28635 28636 28637 28638 28639 28640 28641 28642 28643 28644 28645 28646 28647 28648 28649 28650 28651 28652 28653 28654 28655 28656 28657 28658 28659 28660 28661 28662 28663 28664 28665 28666 28667 28668 28669 28670 28671 28672 28673 28674 28675 28676 28677 28678 28679 28680 28681 28682 28683 28684 28685 28686 28687 28688 28689 28690 28691 28692 28693 28694 28695 28696 28697 28698 28699 28700 28701 28702 28703 28704 28705 28706 28707 28708 28709 28710 28711 28712 28713 28714 28715 28716 28717 28718 28719 28720 28721 28722 28723 28724 28725 28726 28727 28728 28729 28730 28731 28732 28733 28734 28735 28736 28737 28738 28739 28740 28741 28742 28743 28744 28745 28746 28747 28748 28749 28750 28751 28752 28753 28754 28755 28756 28757 28758 28759 28760 28761 28762 28763 28764 28765 28766 28767 28768 28769 28770 28771 28772 28773 28774 28775 28776 28777 28778 28779 28780 28781 28782 28783 28784 28785 28786 28787 28788 28789 28790 28791 28792 28793 28794 28795 28796 28797 28798 28799 28800 28801 28802 28803 28804 28805 28806 28807 28808 28809 28810 28811 28812 28813 28814 28815 28816 28817 28818 28819 28820 28821 28822 28823 28824 28825 28826 28827 28828 28829 28830 28831 28832 28833 28834 28835 28836 28837 28838 28839 28840 28841 28842 28843 28844 28845 28846 28847 28848 28849 28850 28851 28852 28853 28854 28855 28856 28857 28858 28859 28860 28861 28862 28863 28864 28865 28866 28867 28868 28869 28870 28871 28872 28873 28874 28875 28876 28877 28878 28879 28880 28881 28882 28883 28884 28885 28886 28887 28888 28889 28890 28891 28892 28893 28894 28895 28896 28897 28898 28899 28900 28901 28902 28903 28904 28905 28906 28907 28908 28909 28910 28911 28912 28913 28914 28915 28916 28917 28918 28919 28920 28921 28922 28923 28924 28925 28926 28927 28928 28929 28930 28931 28932 28933 28934 28935 28936 28937 28938 28939 28940 28941 28942 28943 28944 28945 28946 28947 28948 28949 28950 28951 28952 28953 28954 28955 28956 28957 28958 28959 28960 28961 28962 28963 28964 28965 28966 28967 28968 28969 28970 28971 28972 28973 28974 28975 28976 28977 28978 28979 28980 28981 28982 28983 28984 28985 28986 28987 28988 28989 28990 28991 28992 28993 28994 28995 28996 28997 28998 28999 29000 29001 29002 29003 29004 29005 29006 29007 29008 29009 29010 29011 29012 29013 29014 29015 29016 29017 29018 29019 29020 29021 29022 29023 29024 29025 29026 29027 29028 29029 29030 29031 29032 29033 29034 29035 29036 29037 29038 29039 29040 29041 29042 29043 29044 29045 29046 29047 29048 29049 29050 29051 29052 29053 29054 29055 29056 29057 29058 29059 29060 29061 29062 29063 29064 29065 29066 29067 29068 29069 29070 29071 29072 29073 29074 29075 29076 29077 29078 29079 29080 29081 29082 29083 29084 29085 29086 29087 29088 29089 29090 29091 29092 29093 29094 29095 29096 29097 29098 29099 29100 29101 29102 29103 29104 29105 29106 29107 29108 29109 29110 29111 29112 29113 29114 29115 29116 29117 29118 29119 29120 29121 29122 29123 29124 29125 29126 29127 29128 29129 29130 29131 29132 29133 29134 29135 29136 29137 29138 29139 29140 29141 29142 29143 29144 29145 29146 29147 29148 29149 29150 29151 29152 29153 29154 29155 29156 29157 29158 29159 29160 29161 29162 29163 29164 29165 29166 29167 29168 29169 29170 29171 29172 29173 29174 29175 29176 29177 29178 29179 29180 29181 29182 29183 29184 29185 29186 29187 29188 29189 29190 29191 29192 29193 29194 29195 29196 29197 29198 29199 29200 29201 29202 29203 29204 29205 29206 29207 29208 29209 29210 29211 29212 29213 29214 29215 29216 29217 29218 29219 29220 29221 29222 29223 29224 29225 29226 29227 29228 29229 29230 29231 29232 29233 29234 29235 29236 29237 29238 29239 29240 29241 29242 29243 29244 29245 29246 29247 29248 29249 29250 29251 29252 29253 29254 29255 29256 29257 29258 29259 29260 29261 29262 29263 29264 29265 29266 29267 29268 29269 29270 29271 29272 29273 29274 29275 29276 29277 29278 29279 29280 29281 29282 29283 29284 29285 29286 29287 29288 29289 29290 29291 29292 29293 29294 29295 29296 29297 29298 29299 29300 29301 29302 29303 29304 29305 29306 29307 29308 29309 29310 29311 29312 29313 29314 29315 29316 29317 29318 29319 29320 29321 29322 29323 29324 29325 29326 29327 29328 29329 29330 29331 29332 29333 29334 29335 29336 29337 29338 29339 29340 29341 29342 29343 29344 29345 29346 29347 29348 29349 29350 29351 29352 29353 29354 29355 29356 29357 29358 29359 29360 29361 29362 29363 29364 29365 29366 29367 29368 29369 29370 29371 29372 29373 29374 29375 29376 29377 29378 29379 29380 29381 29382 29383 29384 29385 29386 29387 29388 29389 29390 29391 29392 29393 29394 29395 29396 29397 29398 29399 29400 29401 29402 29403 29404 29405 29406 29407 29408 29409 29410 29411 29412 29413 29414 29415 29416 29417 29418 29419 29420 29421 29422 29423 29424 29425 29426 29427 29428 29429 29430 29431 29432 29433 29434 29435 29436 29437 29438 29439 29440 29441 29442 29443 29444 29445 29446 29447 29448 29449 29450 29451 29452 29453 29454 29455 29456 29457 29458 29459 29460 29461 29462 29463 29464 29465 29466 29467 29468 29469 29470 29471 29472 29473 29474 29475 29476 29477 29478 29479 29480 29481 29482 29483 29484 29485 29486 29487 29488 29489 29490 29491 29492 29493 29494 29495 29496 29497 29498 29499 29500 29501 29502 29503 29504 29505 29506 29507 29508 29509 29510 29511 29512 29513 29514 29515 29516 29517 29518 29519 29520 29521 29522 29523 29524 29525 29526 29527 29528 29529 29530 29531 29532 29533 29534 29535 29536 29537 29538 29539 29540 29541 29542 29543 29544 29545 29546 29547 29548 29549 29550 29551 29552 29553 29554 29555 29556 29557 29558 29559 29560 29561 29562 29563 29564 29565 29566 29567 29568 29569 29570 29571 29572 29573 29574 29575 29576 29577 29578 29579 29580 29581 29582 29583 29584 29585 29586 29587 29588 29589 29590 29591 29592 29593 29594 29595 29596 29597 29598 29599 29600 29601 29602 29603 29604 29605 29606 29607 29608 29609 29610 29611 29612 29613 29614 29615 29616 29617 29618 29619 29620 29621 29622 29623 29624 29625 29626 29627 29628 29629 29630 29631 29632 29633 29634 29635 29636 29637 29638 29639 29640 29641 29642 29643 29644 29645 29646 29647 29648 29649 29650 29651 29652 29653 29654 29655 29656 29657 29658 29659 29660 29661 29662 29663 29664 29665 29666 29667 29668 29669 29670 29671 29672 29673 29674 29675 29676 29677 29678 29679 29680 29681 29682 29683 29684 29685 29686 29687 29688 29689 29690 29691 29692 29693 29694 29695 29696 29697 29698 29699 29700 29701 29702 29703 29704 29705 29706 29707 29708 29709 29710 29711 29712 29713 29714 29715 29716 29717 29718 29719 29720 29721 29722 29723 29724 29725 29726 29727 29728 29729 29730 29731 29732 29733 29734 29735 29736 29737 29738 29739 29740 29741 29742 29743 29744 29745 29746 29747 29748 29749 29750 29751 29752 29753 29754 29755 29756 29757 29758 29759 29760 29761 29762 29763 29764 29765 29766 29767 29768 29769 29770 29771 29772 29773 29774 29775 29776 29777 29778 29779 29780 29781 29782 29783 29784 29785 29786 29787 29788 29789 29790 29791 29792 29793 29794 29795 29796 29797 29798 29799 29800 29801 29802 29803 29804 29805 29806 29807 29808 29809 29810 29811 29812 29813 29814 29815 29816 29817 29818 29819 29820 29821 29822 29823 29824 29825 29826 29827 29828 29829 29830 29831 29832 29833 29834 29835 29836 29837 29838 29839 29840 29841 29842 29843 29844 29845 29846 29847 29848 29849 29850 29851 29852 29853 29854 29855 29856 29857 29858 29859 29860 29861 29862 29863 29864 29865 29866 29867 29868 29869 29870 29871 29872 29873 29874 29875 29876 29877 29878 29879 29880 29881 29882 29883 29884 29885 29886 29887 29888 29889 29890 29891 29892 29893 29894 29895 29896 29897 29898 29899 29900 29901 29902 29903 29904 29905 29906 29907 29908 29909 29910 29911 29912 29913 29914 29915 29916 29917 29918 29919 29920 29921 29922 29923 29924 29925 29926 29927 29928 29929 29930 29931 29932 29933 29934 29935 29936 29937 29938 29939 29940 29941 29942 29943 29944 29945 29946 29947 29948 29949 29950 29951 29952 29953 29954 29955 29956 29957 29958 29959 29960 29961 29962 29963 29964 29965 29966 29967 29968 29969 29970 29971 29972 29973 29974 29975 29976 29977 29978 29979 29980 29981 29982 29983 29984 29985 29986 29987 29988 29989 29990 29991 29992 29993 29994 29995 29996 29997 29998 29999 30000 30001 30002 30003 30004 30005 30006 30007 30008 30009 30010 30011 30012 30013 30014 30015 30016 30017 30018 30019 30020 30021 30022 30023 30024 30025 30026 30027 30028 30029 30030 30031 30032 30033 30034 30035 30036 30037 30038 30039 30040 30041 30042 30043 30044 30045 30046 30047 30048 30049 30050 30051 30052 30053 30054 30055 30056 30057 30058 30059 30060 30061 30062 30063 30064 30065 30066 30067 30068 30069 30070 30071 30072 30073 30074 30075 30076 30077 30078 30079 30080 30081 30082 30083 30084 30085 30086 30087 30088 30089 30090 30091 30092 30093 30094 30095 30096 30097 30098 30099 30100 30101 30102 30103 30104 30105 30106 30107 30108 30109 30110 30111 30112 30113 30114 30115 30116 30117 30118 30119 30120 30121 30122 30123 30124 30125 30126 30127 30128 30129 30130 30131 30132 30133 30134 30135 30136 30137 30138 30139 30140 30141 30142 30143 30144 30145 30146 30147 30148 30149 30150 30151 30152 30153 30154 30155 30156 30157 30158 30159 30160 30161 30162 30163 30164 30165 30166 30167 30168 30169 30170 30171 30172 30173 30174 30175 30176 30177 30178 30179 30180 30181 30182 30183 30184 30185 30186 30187 30188 30189 30190 30191 30192 30193 30194 30195 30196 30197 30198 30199 30200 30201 30202 30203 30204 30205 30206 30207 30208 30209 30210 30211 30212 30213 30214 30215 30216 30217 30218 30219 30220 30221 30222 30223 30224 30225 30226 30227 30228 30229 30230 30231 30232 30233 30234 30235 30236 30237 30238 30239 30240 30241 30242 30243 30244 30245 30246 30247 30248 30249 30250 30251 30252 30253 30254 30255 30256 30257 30258 30259 30260 30261 30262 30263 30264 30265 30266 30267 30268 30269 30270 30271 30272 30273 30274 30275 30276 30277 30278 30279 30280 30281 30282 30283 30284 30285 30286 30287 30288 30289 30290 30291 30292 30293 30294 30295 30296 30297 30298 30299 30300 30301 30302 30303 30304 30305 30306 30307 30308 30309 30310 30311 30312 30313 30314 30315 30316 30317 30318 30319 30320 30321 30322 30323 30324 30325 30326 30327 30328 30329 30330 30331 30332 30333 30334 30335 30336 30337 30338 30339 30340 30341 30342 30343 30344 30345 30346 30347 30348 30349 30350 30351 30352 30353 30354 30355 30356 30357 30358 30359 30360 30361 30362 30363 30364 30365 30366 30367 30368 30369 30370 30371 30372 30373 30374 30375 30376 30377 30378 30379 30380 30381 30382 30383 30384 30385 30386 30387 30388 30389 30390 30391 30392 30393 30394 30395 30396 30397 30398 30399 30400 30401 30402 30403 30404 30405 30406 30407 30408 30409 30410 30411 30412 30413 30414 30415 30416 30417 30418 30419 30420 30421 30422 30423 30424 30425 30426 30427 30428 30429 30430 30431 30432 30433 30434 30435 30436 30437 30438 30439 30440 30441 30442 30443 30444 30445 30446 30447 30448 30449 30450 30451 30452 30453 30454 30455 30456 30457 30458 30459 30460 30461 30462 30463 30464 30465 30466 30467 30468 30469 30470 30471 30472 30473 30474 30475 30476 30477 30478 30479 30480 30481 30482 30483 30484 30485 30486 30487 30488 30489 30490 30491 30492 30493 30494 30495 30496 30497 30498 30499 30500 30501 30502 30503 30504 30505 30506 30507 30508 30509 30510 30511 30512 30513 30514 30515 30516 30517 30518 30519 30520 30521 30522 30523 30524 30525 30526 30527 30528 30529 30530 30531 30532 30533 30534 30535 30536 30537 30538 30539 30540 30541 30542 30543 30544 30545 30546 30547 30548 30549 30550 30551 30552 30553 30554 30555 30556 30557 30558 30559 30560 30561 30562 30563 30564 30565 30566 30567 30568 30569 30570 30571 30572 30573 30574 30575 30576 30577 30578 30579 30580 30581 30582 30583 30584 30585 30586 30587 30588 30589 30590 30591 30592 30593 30594 30595 30596 30597 30598 30599 30600 30601 30602 30603 30604 30605 30606 30607 30608 30609 30610 30611 30612 30613 30614 30615 30616 30617 30618 30619 30620 30621 30622 30623 30624 30625 30626 30627 30628 30629 30630 30631 30632 30633 30634 30635 30636 30637 30638 30639 30640 30641 30642 30643 30644 30645 30646 30647 30648 30649 30650 30651 30652 30653 30654 30655 30656 30657 30658 30659 30660 30661 30662 30663 30664 30665 30666 30667 30668 30669 30670 30671 30672 30673 30674 30675 30676 30677 30678 30679 30680 30681 30682 30683 30684 30685 30686 30687 30688 30689 30690 30691 30692 30693 30694 30695 30696 30697 30698 30699 30700 30701 30702 30703 30704 30705 30706 30707 30708 30709 30710 30711 30712 30713 30714 30715 30716 30717 30718 30719 30720 30721 30722 30723 30724 30725 30726 30727 30728 30729 30730 30731 30732 30733 30734 30735 30736 30737 30738 30739 30740 30741 30742 30743 30744 30745 30746 30747 30748 30749 30750 30751 30752 30753 30754 30755 30756 30757 30758 30759 30760 30761 30762 30763 30764 30765 30766 30767 30768 30769 30770 30771 30772 30773 30774 30775 30776 30777 30778 30779 30780 30781 30782 30783 30784 30785 30786 30787 30788 30789 30790 30791 30792 30793 30794 30795 30796 30797 30798 30799 30800 30801 30802 30803 30804 30805 30806 30807 30808 30809 30810 30811 30812 30813 30814 30815 30816 30817 30818 30819 30820 30821 30822 30823 30824 30825 30826 30827
0 1.000000 0.059269 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.070416 0.009359 0.063207 0.038448 0.080990 0.025080 0.035034 0.080520 0.010427 0.060480 0.040772 0.012365 0.000000 0.057069 0.079356 0.000000 0.065727 0.051259 0.024857 0.065466 0.000000 0.033872 0.040777 0.076626 0.000000 0.072455 0.000000 0.0 0.035327 0.046148 0.034289 0.000000 0.043174 0.035247 0.149150 0.032986 0.059023 0.013738 0.00000 0.000000 0.092858 0.033820 0.026679 0.013566 0.000000 0.060366 0.013638 0.007423 0.021045 0.042015 0.030395 0.028407 0.000000 0.037016 0.000000 0.028107 0.000000 0.000000 0.000000 0.000000 0.117666 0.040820 0.017939 0.000000 0.026693 0.076112 0.041616 0.044116 0.052265 0.056269 0.000000 0.009624 0.042595 0.0 0.019441 0.015964 0.039844 0.023241 0.000000 0.000000 0.015271 0.078739 0.010219 0.000000 0.052725 0.024274 0.015400 0.028840 0.047500 0.008265 0.204295 0.024514 0.121209 0.012494 0.012002 0.009954 0.035050 0.035319 0.027057 0.077601 0.010415 0.000000 0.018933 0.059991 0.038374 0.000000 0.000000 0.000000 0.118508 0.023704 0.013185 0.039188 0.026601 0.000000 0.063543 0.036433 0.039982 0.014694 0.000000 0.056353 0.238941 0.000000 0.000000 0.008107 0.000000 0.054096 0.000000 0.030455 0.088414 0.040703 0.011827 0.037163 0.008510 0.009710 0.013449 0.024247 0.091868 0.021344 0.048312 0.012711 0.048924 0.019340 0.041250 0.026135 0.000000 0.070866 0.125231 0.009420 0.034703 0.040122 0.043273 0.073995 0.033057 0.035668 0.012503 0.010132 0.033132 0.044310 0.078091 0.000000 0.000000 0.070296 0.030014 0.000000 0.047313 0.234322 0.060899 0.000000 0.057896 0.013025 0.030174 0.0 0.185471 0.000000 0.012201 0.010314 0.041552 0.018069 0.076136 0.000000 0.023428 0.0 0.055339 0.000000 0.018241 0.000000 0.011177 0.000000 0.000000 0.050288 0.013410 0.000000 0.000000 0.049477 0.015503 0.073556 0.010056 0.089499 0.000000 0.011465 0.000000 0.0 0.049143 0.0 0.0 0.000000 0.039725 0.042694 0.009042 0.052169 0.057838 0.000000 0.00000 0.000000 0.000000 0.000000 0.008840 0.000000 0.0 0.195390 0.025212 0.000000 0.000000 0.000000 0.009736 0.0 0.000000 0.028545 0.035107 0.000000 0.000000 0.009641 0.0 0.0 0.0 0.026943 0.000000 0.009524 0.082420 0.010223 0.027638 0.000000 0.000000 0.250816 0.029380 0.021575 0.010502 0.014479 0.011753 0.072243 0.047203 0.070517 0.035358 0.014107 0.010581 0.000000 0.000000 0.009763 0.031910 0.056947 0.000000 0.009517 0.057035 0.067506 0.010168 0.221228 0.000000 0.009683 0.021562 0.000000 0.030013 0.014951 0.055026 0.019644 0.020279 0.021686 0.043725 0.018154 0.046504 0.107805 0.046277 0.007955 0.000000 0.065962 0.017232 0.033183 0.087167 0.021897 0.048015 0.058434 0.000000 0.055352 0.000000 0.000000 0.000000 0.021316 0.000000 0.053441 0.014872 0.037224 0.000000 0.018785 0.000000 0.046837 0.032811 0.027952 0.034877 0.046081 0.000000 0.070296 0.052343 0.041800 0.023064 0.000000 0.010613 0.259088 0.044063 0.047820 0.009285 0.033393 0.009828 0.000000 0.000000 0.060149 0.000000 0.026221 0.0 0.000000 0.000000 0.014697 0.073771 0.000000 0.000000 0.056405 0.027968 0.016187 0.000000 0.0 0.000000 0.000000 0.000000 0.028112 0.044536 0.042429 0.059248 0.008842 0.018675 0.078325 0.000000 0.013600 0.032542 0.000000 0.034676 0.037602 0.0 0.000000 0.010468 0.000000 0.000000 0.000000 0.092756 0.031930 0.044327 0.053022 0.033329 0.015350 0.055932 0.040556 0.0 0.000000 0.056899 0.000000 0.000000 0.023841 0.053208 0.273957 0.013409 0.000000 0.021029 0.139630 0.000000 0.000000 0.000000 0.00000 0.008376 0.010673 0.000000 0.047123 0.035832 0.099412 0.009403 0.066926 0.017041 0.024934 0.042691 0.000000 0.049953 0.044549 0.044541 0.000000 0.000000 0.011060 0.011479 0.009871 0.014159 0.017119 0.022018 0.000000 0.036731 0.045054 0.033492 0.025441 0.047416 0.018842 0.009648 0.000000 0.097438 0.131864 0.044657 0.010661 0.060184 0.000000 0.032386 0.049278 0.036993 0.013000 0.061970 0.060916 0.000000 0.028041 0.051310 0.000000 0.025624 0.012161 0.010819 0.030213 0.000000 0.033787 0.009699 0.000000 0.000000 0.000000 0.079163 0.057557 0.025873 0.000000 0.201049 0.000000 0.058660 0.0 0.018661 0.000000 0.000000 0.000000 0.000000 0.0 0.043751 0.074569 0.000000 0.018814 0.046407 0.036099 0.008777 0.029497 0.158117 0.000000 0.000000 0.010619 0.000000 0.000000 0.021978 0.000000 0.000000 0.021498 0.012680 0.008981 0.013469 0.0 0.0 0.000000 0.000000 0.060917 0.000000 0.012885 0.000000 0.047172 0.033163 0.068781 0.025736 0.025404 0.065325 0.039830 0.060177 0.010216 0.009466 0.010262 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.083263 0.000000 0.021072 0.011081 0.030079 0.031056 0.044135 0.000000 0.000000 0.010998 0.0 0.0 0.0 0.000000 0.000000 0.030892 0.000000 0.000000 0.000000 0.000000 0.000000 0.017055 0.000000 0.032677 0.000000 0.011269 0.013454 0.000000 0.021995 0.000000 0.000000 0.019411 0.018155 0.011245 0.033924 0.000000 0.0 0.000000 0.048701 0.000000 0.033969 0.038986 0.039113 0.043262 0.000000 0.009370 0.029176 0.011227 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.034693 0.052160 0.029515 0.000000 0.000000 0.000000 0.000000 0.000000 0.046407 0.000000 0.042782 0.077269 0.014528 0.024438 0.00000 0.031486 0.031014 0.068765 0.022203 0.025674 0.019535 0.121367 0.009738 0.012718 0.0 0.013487 0.0 0.000000 0.037740 0.000000 0.000000 0.000000 0.000000 0.024487 0.024840 0.039579 0.126535 0.023363 0.024164 0.000000 0.000000 0.0 0.0 0.0 0.0 0.010105 0.064051 0.010472 0.000000 0.126537 0.028673 0.000000 0.000000 0.015479 0.000000 0.000000 0.040033 0.000000 0.048548 0.000000 0.059070 0.059331 0.030434 0.000000 0.000000 0.049014 0.011934 0.037887 0.000000 0.0 0.037723 0.000000 0.099654 0.062553 0.105959 0.044121 0.010438 0.000000 0.0 0.012205 0.0 0.029530 0.000000 0.012987 0.031966 0.0 0.0 0.015108 0.000000 0.000000 0.022046 0.019862 0.000000 0.000000 0.000000 0.0 0.000000 0.023271 0.000000 0.000000 0.000000 0.000000 0.000000 0.017271 0.010268 0.0 0.000000 0.019303 0.040671 0.042766 0.029847 0.000000 0.027039 0.000000 0.000000 0.031643 0.008549 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.026337 0.000000 0.000000 0.067850 0.039262 0.000000 0.147857 0.032594 0.000000 0.030453 0.007352 0.000000 0.013367 0.038776 0.000000 0.0 0.034923 0.000000 0.068202 0.000000 0.000000 0.000000 0.000000 0.082880 0.000000 0.039381 0.013588 0.0 0.094244 0.063022 0.000000 0.131742 0.000000 0.000000 0.042778 0.012792 0.015186 0.123286 0.061184 0.008814 0.022587 0.067400 0.0 0.000000 0.000000 0.009844 0.000000 0.022081 0.031106 0.000000 0.040108 0.000000 0.018686 0.052564 0.020608 0.000000 0.0 0.074999 0.000000 0.054778 0.009847 0.018248 0.048326 0.000000 0.052075 0.074053 0.011161 0.056298 0.021733 0.000000 0.0 0.0 0.0 0.013754 0.000000 0.022443 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.019133 0.000000 0.000000 0.000000 0.012692 0.028602 0.000000 0.000000 0.161534 0.0 0.141460 0.000000 0.000000 0.011732 0.054973 0.000000 0.000000 0.012188 0.018396 0.036918 0.000000 0.0 0.020394 0.000000 0.000000 0.000000 0.000000 0.0 0.013518 0.009840 0.012590 0.000000 0.009157 0.000000 0.00000 0.016608 0.010600 0.038053 0.00726 0.000000 0.092834 0.100374 0.010275 0.016647 0.00000 0.0 0.000000 0.039061 0.015392 0.012719 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.057356 0.000000 0.000000 0.000000 0.000000 0.012352 0.000000 0.080779 0.000000 0.044650 0.000000 0.000000 0.010363 0.000000 0.000000 0.015511 0.000000 0.069723 0.030234 0.0 0.087170 0.166337 0.0 0.0 0.000000 0.032536 0.000000 0.043412 0.000000 0.0 0.023507 0.044101 0.000000 0.000000 0.000000 0.000000 0.0 0.016789 0.000000 0.029944 0.041997 0.018092 0.000000 0.000000 0.034441 0.013756 0.021449 0.000000 0.000000 0.048207 0.048486 0.033889 0.000000 0.000000 0.0 0.0 0.000000 0.016293 0.000000 0.027765 0.049697 0.019641 0.035122 0.000000 0.114568 0.015764 0.0 0.000000 0.012776 0.0 0.0 0.067545 0.067340 0.000000 0.051274 0.009251 0.051904 0.050160 0.000000 0.054695 0.080618 0.019700 0.000000 0.027750 0.000000 0.018241 0.015799 0.027830 0.000000 0.000000 0.000000 0.031344 0.012760 0.000000 0.040400 0.035157 0.035533 0.097291 0.000000 0.000000 0.039994 0.000000 0.000000 0.022069 0.000000 0.014859 0.000000 0.000000 0.000000 0.059529 0.052100 0.000000 0.025845 0.000000 0.092956 0.000000 0.000000 0.009524 0.047697 0.000000 0.000000 0.013566 0.009151 0.013288 0.013877 0.000000 0.029615 0.0 0.019860 0.044793 0.0 0.010311 0.011441 0.029933 0.122583 0.000000 0.009930 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.030361 0.051805 0.000000 0.025236 0.055392 0.000000 0.044947 0.000000 0.037946 0.000000 0.000000 0.014447 0.107654 0.000000 0.064747 0.00000 0.041434 0.026339 0.064530 0.0 0.081856 0.000000 0.000000 0.000000 0.060780 0.013107 0.016405 0.000000 0.000000 0.071209 0.226701 0.041792 0.000000 0.015183 0.023252 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.026935 0.046407 0.000000 0.067943 0.000000 0.000000 0.000000 0.086765 0.000000 0.027891 0.000000 0.039148 0.020617 0.107770 0.055555 0.150841 0.044853 0.000000 0.000000 0.024925 0.029998 0.000000 0.000000 0.021033 0.024127 0.012652 0.023921 0.010289 0.000000 0.045539 0.000000 0.0 0.064003 0.000000 0.000000 0.028761 0.018158 0.000000 0.171091 0.000000 0.047962 0.00000 0.023240 0.000000 0.000000 0.0 0.000000 0.000000 0.024707 0.0 0.013570 0.000000 0.000000 0.000000 0.019047 0.039729 0.037557 0.054845 0.0 0.041025 0.057833 0.000000 0.000000 0.000000 0.000000 0.165957 0.096188 0.000000 0.0 0.053395 0.099767 0.016398 0.031471 0.022421 0.012300 0.000000 0.000000 0.117802 0.095025 0.016587 0.009301 0.000000 0.024179 0.0 0.023124 0.018116 0.019420 0.000000 0.000000 0.049143 0.020691 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.00000 0.030844 0.220861 0.000000 0.006769 0.000000 0.069839 0.000000 0.000000 0.046407 0.017621 0.081160 0.000000 0.000000 0.041610 0.000000 0.011191 0.000000 0.078201 0.000000 0.000000 0.000000 0.000000 0.000000 0.018470 0.000000 0.009459 0.025905 0.0 0.000000 0.045201 0.015712 0.050645 0.030417 0.000000 0.000000 0.031095 0.065079 0.000000 0.011357 0.021232 0.033408 0.034219 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.090352 0.059542 0.143052 0.00000 0.000000 0.0 0.000000 0.000000 0.032537 0.051669 0.000000 0.027150 0.065481 0.020582 0.008918 0.000000 0.115744 0.022907 0.047222 0.019683 0.000000 0.046407 0.095877 0.000000 0.028251 0.039160 0.042347 0.044008 0.104559 0.035670 0.0 0.023479 0.026524 0.024939 0.0 0.000000 0.039400 0.021289 0.000000 0.000000 0.0 0.000000 0.000000 0.016486 0.015898 0.000000 0.026402 0.000000 0.009671 0.000000 0.050942 0.045697 0.000000 0.036177 0.052526 0.023145 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.028315 0.031075 0.014025 0.089351 0.054375 0.043222 0.000000 0.066770 0.139816 0.074587 0.018979 0.094534 0.000000 0.021329 0.039238 0.034948 0.000000 0.000000 0.000000 0.080394 0.054949 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.046550 0.041582 0.000000 0.024502 0.000000 0.140342 0.102827 0.009318 0.0 0.000000 0.037693 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.028011 0.055060 0.009775 0.087520 0.021778 0.000000 0.0 0.0 0.038609 0.000000 0.017374 0.000000 0.022538 0.0 0.000000 0.000000 0.000000 0.103892 0.012535 0.0 0.0 0.000000 0.000000 0.000000 0.019519 0.000000 0.000000 0.00000 0.000000 0.0 0.024050 0.000000 0.000000 0.072112 0.000000 0.000000 0.000000 0.021871 0.021942 0.084668 0.024575 0.012172 0.041252 0.025444 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.145794 0.068883 0.043671 0.000000 0.000000 0.000000 0.020979 0.009718 0.030437 0.026366 0.070938 0.046359 0.0 0.000000 0.031172 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.03094 0.014156 0.025011 0.000000 0.010182 0.048181 0.000000 0.000000 0.000000 0.011784 0.035571 0.000000 0.051881 0.045438 0.000000 0.0 0.000000 0.027897 0.202808 0.000000 0.000000 0.021013 0.011364 0.034127 0.000000 0.011334 0.000000 0.114486 0.019829 0.000000 0.012516 0.000000 0.051863 0.025363 0.0 0.0 0.000000 0.023636 0.000000 0.000000 0.000000 0.000000 0.015897 0.023594 0.046582 0.000000 0.000000 0.010511 0.000000 0.0 0.000000 0.009738 0.045351 0.028266 0.000000 0.000000 0.0 0.0 0.0 0.0 0.065355 0.000000 0.020031 0.024710 0.095591 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.007851 0.043090 0.011759 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.017782 0.000000 0.000000 0.000000 0.063094 0.044195 0.000000 0.000000 0.000000 0.000000 0.035319 0.010602 0.000000 0.000000 0.000000 0.014041 0.000000 0.017244 0.000000 0.000000 0.000000 0.119886 0.000000 0.000000 0.000000 0.055368 0.000000 0.035578 0.025102 0.010852 0.000000 0.000000 0.036054 0.143615 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.045670 0.0 0.0 0.0 0.147746 0.000000 0.000000 0.011700 0.073033 0.031590 0.000000 0.000000 0.000000 0.024403 0.059043 0.047132 0.059748 0.035750 0.000000 0.00000 0.0 0.013262 0.000000 0.000000 0.274047 0.000000 0.040295 0.000000 0.117920 0.000000 0.000000 0.010978 0.00000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.012961 0.023005 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.014283 0.000000 0.000000 0.000000 0.056142 0.000000 0.024579 0.070720 0.000000 0.017719 0.000000 0.000000 0.032683 0.000000 0.026604 0.076052 0.020642 0.000000 0.011003 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.049157 0.012887 0.000000 0.000000 0.000000 0.010927 0.010943 0.000000 0.000000 0.000000 0.048733 0.022625 0.000000 0.000000 0.009471 0.000000 0.000000 0.012900 0.009682 0.009393 0.013966 0.012452 0.000000 0.0 0.0 0.00000 0.042978 0.033976 0.044665 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.006646 0.010068 0.012451 0.000000 0.000000 0.012515 0.037880 0.017655 0.022138 0.010387 0.070158 0.009345 0.059323 0.034434 0.0 0.0 0.0 0.0 0.0 0.000000 0.107066 0.000000 0.000000 0.01113 0.028172 0.018879 0.020144 0.016680 0.000000 0.021628 0.025749 0.039044 0.046407 0.000000 0.000000 0.043531 0.000000 0.009821 0.019820 0.07407 0.045634 0.044328 0.012939 0.017223 0.088896 0.012055 0.039213 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.028201 0.043233 0.066279 0.000000 0.000000 0.0 0.008096 0.038365 0.000000 0.000000 0.016818 0.000000 0.0 0.0 0.063122 0.0 0.024094 0.0 0.000000 0.022287 0.000000 0.000000 0.000000 0.022435 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.068583 0.000000 0.000000 0.000000 0.045617 0.000000 0.000000 0.000000 0.000000 0.067021 0.027542 0.159511 0.000000 0.038266 0.012421 0.000000 0.020503 0.032377 0.000000 0.000000 0.016385 0.000000 0.000000 0.000000 0.014937 0.000000 0.000000 0.000000 0.030638 0.000000 0.011177 0.022373 0.035494 0.019765 0.087991 0.050467 0.034206 0.140883 0.032327 0.000000 0.000000 0.016768 0.008525 0.044532 0.021714 0.011022 0.000000 0.030653 0.040559 0.000000 0.000000 0.046059 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.012078 0.000000 0.010803 0.000000 0.000000 0.038449 0.088066 0.000000 0.030203 0.000000 0.081394 0.014158 0.000000 0.000000 0.000000 0.000000 0.125257 0.000000 0.041677 0.096293 0.250640 0.000000 0.032892 0.000000 0.000000 0.0 0.037126 0.079778 0.069494 0.037057 0.000000 0.000000 0.121879 0.000000 0.051191 0.023312 0.000000 0.000000 0.043123 0.000000 0.045957 0.030871 0.018485 0.012077 0.000000 0.107817 0.000000 0.026985 0.031715 0.000000 0.036015 0.020621 0.000000 0.000000 0.114331 0.000000 0.043781 0.125222 0.070317 0.071005 0.000000 0.000000 0.041454 0.015758 0.0000 0.000000 0.000000 0.032781 0.000000 0.044427 0.000000 0.098007 0.046407 0.077119 0.027387 0.000000 0.0 0.023336 0.00000 0.000000 0.029461 0.0 0.0 0.0 0.000000 0.020269 0.000000 0.000000 0.028251 0.000000 0.053470 0.000000 0.000000 0.011891 0.012588 0.000000 0.091172 0.011209 0.009737 0.020929 0.0 0.000000 0.121095 0.015654 0.000000 0.092847 0.059713 0.0 0.0 0.000000 0.000000 0.073101 0.037071 0.000000 0.045142 0.036805 0.013060 0.079250 0.0 0.0 0.0 0.077074 0.048968 0.000000 0.019584 0.0 0.00000 0.000000 0.018438 0.113405 0.017433 0.008674 0.047275 0.023978 0.068528 0.013516 0.000000 0.000000 0.029525 0.055371 0.024289 0.030565 0.012323 0.094114 0.035134 0.086057 0.048237 0.013946 0.076018 0.036750 0.031880 0.00000 0.055844 0.036345 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.028213 0.034009 0.000000 0.049471 0.035365 0.030504 0.000000 0.000000 0.021851 0.000000 0.000000 0.000000 0.000000 0.048733 0.000000 0.000000 0.010112 0.000000 0.010678 0.000000 0.000000 0.010306 0.000000 0.024767 0.000000 0.082437 0.000000 0.000000 0.000000 0.148165 0.012602 0.000000 0.016537 0.074668 0.000000 0.000000 0.041105 0.0 0.0 0.0 0.0 0.019757 0.019260 0.019655 0.134085 0.000000 0.068428 0.013060 0.000000 0.000000 0.000000 0.000000 0.028811 0.032093 0.000000 0.000000 0.045396 0.023293 0.000000 0.051736 0.054593 0.030251 0.000000 0.000000 0.009878 0.000000 0.019364 0.058474 0.024636 0.010242 0.010514 0.075281 0.042397 0.000000 0.012137 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.023497 0.011286 0.016506 0.041757 0.0 0.052010 0.000000 0.0 0.000000 0.000000 0.000000 0.054621 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.067589 0.0 0.000000 0.010028 0.000000 0.0 0.000000 0.000000 0.090669 0.013092 0.000000 0.000000 0.000000 0.060782 0.000000 0.0 0.021368 0.073123 0.026475 0.000000 0.000000 0.018769 0.000000 0.046407 0.000000 0.0 0.009539 0.0 0.00000 0.029008 0.000000 0.060029 0.000000 0.011926 0.00000 0.01547 0.022024 0.013858 0.084177 0.070386 0.038553 0.000000 0.008565 0.044613 0.010504 0.000000 0.019851 0.024423 0.022918 0.036160 0.020015 0.009201 0.000000 0.011098 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.119220 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.012830 0.000000 0.073485 0.188209 0.033484 0.073135 0.000000 0.000000 0.000000 0.000000 0.000000 0.042104 0.012831 0.059462 0.021077 0.080113 0.020590 0.019509 0.00000 0.023031 0.000000 0.000000 0.000000 0.020938 0.066478 0.000000 0.000000 0.036645 0.000000 0.060482 0.000000 0.000000 0.000000 0.014409 0.000000 0.024805 0.017152 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031334 0.040931 0.038768 0.065252 0.043734 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.054069 0.000000 0.000000 0.024314 0.012719 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.046299 0.008260 0.000000 0.000000 0.000000 0.000000 0.029577 0.071178 0.023996 0.320816 0.038562 0.014367 0.000000 0.033461 0.015979 0.000000 0.085291 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.023103 0.024859 0.000000 0.022225 0.000000 0.000000 0.010450 0.00000 0.000000 0.021053 0.126406 0.016706 0.000000 0.009631 0.014511 0.086465 0.000000 0.149427 0.124599 0.050500 0.041247 0.000000 0.013473 0.019554 0.000000 0.035405 0.000000 0.010093 0.000000 0.000000 0.006650 0.055210 0.086191 0.028882 0.010735 0.078901 0.036992 0.017022 0.021204 0.000000 0.040243 0.010020 0.000000 0.000000 0.013167 0.066242 0.062040 0.094455 0.022729 0.045995 0.023360 0.095225 0.000000 0.0 0.000000 0.011859 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.021393 0.012676 0.011819 0.009905 0.134823 0.066699 0.000000 0.014353 0.000000 0.028002 0.022657 0.049037 0.0 0.000000 0.020591 0.066595 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.097751 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.023349 0.000000 0.000000 0.000000 0.011571 0.019505 0.000000 0.000000 0.108756 0.000000 0.0 0.014859 0.020246 0.017018 0.000000 0.000000 0.000000 0.099483 0.137296 0.000000 0.000000 0.000000 0.009517 0.043272 0.000000 0.060342 0.000000 0.0 0.076495 0.072745 0.072180 0.000000 0.011655 0.052087 0.036593 0.015197 0.038529 0.000000 0.195012 0.027449 0.000000 0.000000 0.000000 0.000000 0.000000 0.031802 0.000000 0.028405 0.085638 0.023057 0.018117 0.000000 0.069988 0.000000 0.000000 0.035027 0.000000 0.019465 0.000000 0.033111 0.000000 0.0 0.016387 0.013421 0.000000 0.023083 0.055812 0.022853 0.000000 0.021414 0.0 0.027329 0.000000 0.021400 0.098345 0.000000 0.000000 0.026390 0.230938 0.011474 0.011416 0.000000 0.084367 0.024782 0.000000 0.031573 0.009535 0.031392 0.000000 0.044431 0.021687 0.022094 0.008842 0.033173 0.000000 0.029966 0.089709 0.000000 0.000000 0.000000 0.046254 0.000000 0.000000 0.000000 0.026014 0.013929 0.000000 0.093863 0.000000 0.063301 0.000000 0.000000 0.000000 0.000000 0.010435 0.042751 0.000000 0.024112 0.000000 0.0 0.028377 0.046407 0.033732 0.000000 0.000000 0.000000 0.065613 0.010511 0.091969 0.010215 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.036965 0.108000 0.000000 0.000000 0.042808 0.000000 0.000000 0.016073 0.000000 0.025795 0.069275 0.000000 0.086420 0.000000 0.000000 0.000000 0.000000 0.018956 0.000000 0.000000 0.000000 0.0000 0.0 0.015369 0.045224 0.000000 0.000000 0.000000 0.039487 0.057787 0.000000 0.024600 0.021444 0.027530 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.046407 0.000000 0.012404 0.000000 0.067983 0.000000 0.046739 0.000000 0.000000 0.000000 0.014916 0.0 0.138660 0.011228 0.000000 0.000000 0.000000 0.000000 0.106069 0.000000 0.026560 0.024204 0.000000 0.000000 0.041076 0.000000 0.075279 0.069030 0.000000 0.016384 0.067981 0.000000 0.014499 0.0 0.000000 0.021907 0.165848 0.000000 0.0 0.000000 0.075608 0.031720 0.050161 0.057474 0.038861 0.030194 0.045674 0.000000 0.000000 0.011663 0.017135 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.038484 0.013132 0.0 0.000000 0.000000 0.000000 0.050230 0.000000 0.000000 0.014888 0.000000 0.014961 0.020253 0.132966 0.012426 0.000000 0.046407 0.047869 0.034990 0.022099 0.026543 0.026147 0.058049 0.011415 0.106734 0.000000 0.010311 0.053139 0.033816 0.000000 0.000000 0.020916 0.000000 0.000000 0.000000 0.019256 0.083086 0.000000 0.030803 0.010422 0.016492 0.010546 0.016866 0.000000 0.000000 0.021262 0.000000 0.030969 0.020906 0.022072 0.0 0.000000 0.000000 0.057193 0.046407 0.043720 0.014884 0.000000 0.046668 0.000000 0.067380 0.017358 0.000000 0.087190 0.031674 0.010810 0.000000 0.072696 0.045386 0.000000 0.021177 0.064693 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.012067 0.015793 0.096226 0.052201 0.014795 0.017048 0.0 0.021663 0.0 0.000000 0.000000 0.000000 0.096406 0.049088 0.000000 0.000000 0.000000 0.000000 0.080059 0.096934 0.000000 0.000000 0.010171 0.000000 0.026717 0.000000 0.063359 0.046407 0.000000 0.046380 0.016699 0.011856 0.025892 0.102955 0.018239 0.000000 0.000000 0.0 0.000000 0.000000 0.056420 0.000000 0.008391 0.040150 0.000000 0.052360 0.012839 0.022296 0.033213 0.060004 0.101782 0.076777 0.012005 0.000000 0.021548 0.055812 0.022395 0.0 0.019410 0.000000 0.000000 0.044128 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.051396 0.000000 0.000000 0.000000 0.135577 0.028608 0.024429 0.000000 0.023232 0.000000 0.000000 0.000000 0.000000 0.033234 0.063921 0.0 0.012055 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011671 0.000000 0.0 0.026688 0.000000 0.037124 0.027507 0.017831 0.035251 0.000000 0.047770 0.038692 0.008337 0.000000 0.018449 0.031011 0.000000 0.000000 0.037519 0.000000 0.000000 0.000000 0.045931 0.000000 0.000000 0.0 0.000000 0.000000 0.014577 0.048269 0.020737 0.048224 0.015835 0.000000 0.000000 0.026400 0.021000 0.029545 0.014751 0.019514 0.042495 0.038456 0.013743 0.091300 0.042038 0.024808 0.102019 0.000000 0.000000 0.036301 0.038644 0.034432 0.054381 0.018882 0.101420 0.007272 0.012400 0.000000 0.010842 0.000000 0.000000 0.024318 0.010453 0.027776 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.053158 0.043514 0.000000 0.000000 0.074394 0.000000 0.000000 0.000000 0.000000 0.000000 0.036630 0.032311 0.030799 0.036988 0.000000 0.043794 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040922 0.000000 0.023489 0.033614 0.018767 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.048686 0.0000 0.097651 0.000000 0.000000 0.000000 0.000000 0.0 0.082612 0.000000 0.064258 0.046126 0.044017 0.049833 0.046407 0.016122 0.016473 0.012946 0.000000 0.021742 0.044176 0.025395 0.032027 0.045082 0.015089 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.022851 0.014565 0.026430 0.029867 0.066962 0.034452 0.000000 0.055474 0.076012 0.025071 0.040507 0.020397 0.046495 0.000000 0.099097 0.000000 0.024563 0.064457 0.068470 0.010488 0.048076 0.048389 0.011642 0.012495 0.023696 0.010452 0.012070 0.013686 0.000000 0.000000 0.000000 0.024349 0.000000 0.058760 0.000000 0.023123 0.000000 0.017174 0.000000 0.000000 0.000000 0.014720 0.000000 0.0 0.000000 0.012337 0.033700 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.013021 0.0 0.000000 0.017324 0.023523 0.030088 0.032712 0.045206 0.017371 0.039001 0.037673 0.000000 0.025953 0.028499 0.000000 0.012664 0.000000 0.027245 0.064673 0.000000 0.024245 0.076917 0.000000 0.000000 0.011549 0.016849 0.051213 0.000000 0.000000 0.028062 0.066394 0.040858 0.040837 0.039177 0.026948 0.063019 0.000000 0.011612 0.096643 0.000000 0.018526 0.013912 0.000000 0.000000 0.0 0.113352 0.000000 0.000000 0.014232 0.0 0.000000 0.024381 0.074833 0.012832 0.000000 0.000000 0.021402 0.072313 0.035873 0.010844 0.022625 0.036053 0.000000 0.104696 0.015993 0.000000 0.000000 0.051254 0.000000 0.000000 0.015608 0.000000 0.072137 0.000000 0.000000 0.000000 0.023345 0.000000 0.018366 0.000000 0.000000 0.000000 0.000000 0.020034 0.025554 0.080240 0.000000 0.00000 0.037710 0.000000 0.032998 0.045225 0.000000 0.032193 0.000000 0.025889 0.00000 0.015534 0.000000 0.027529 0.000000 0.00000 0.000000 0.037456 0.000000 0.019033 0.000000 0.019535 0.000000 0.023072 0.046735 0.015221 0.021464 0.000000 0.000000 0.041735 0.045564 0.000000 0.000000 0.052016 0.000000 0.000000 0.000000 0.000000 0.070659 0.040153 0.027909 0.000000 0.000000 0.00000 0.074164 0.0 0.0 0.00000 0.000000 0.000000 0.000000 0.017066 0.000000 0.000000 0.030710 0.290825 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.037757 0.000000 0.0 0.035407 0.000000 0.015160 0.0 0.000000 0.020835 0.000000 0.000000 0.068882 0.000000 0.000000 0.000000 0.046540 0.00000 0.014415 0.000000 0.056165 0.0 0.0 0.000000 0.000000 0.043277 0.000000 0.019822 0.000000 0.000000 0.000000 0.000000 0.073917 0.086398 0.000000 0.064726 0.020154 0.0 0.015318 0.042500 0.000000 0.000000 0.0 0.038637 0.081015 0.000000 0.01592 0.042748 0.000000 0.046205 0.053893 0.000000 0.021592 0.000000 0.000000 0.012075 0.000000 0.000000 0.000000 0.00000 0.000000 0.051707 0.000000 0.000000 0.008006 0.012994 0.000000 0.042218 0.000000 0.035329 0.000000 0.000000 0.037752 0.034100 0.022498 0.013884 0.015902 0.024195 0.000000 0.000000 0.000000 0.000000 0.221450 0.009374 0.009227 0.041007 0.000000 0.051697 0.000000 0.000000 0.041485 0.071079 0.021678 0.009771 0.000000 0.009736 0.000000 0.000000 0.041883 0.015153 0.000000 0.000000 0.057752 0.000000 0.000000 0.0 0.018787 0.000000 0.022726 0.082473 0.000000 0.000000 0.020030 0.016585 0.000000 0.030103 0.052602 0.021194 0.037284 0.023896 0.0 0.000000 0.013398 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.012655 0.042058 0.044545 0.008789 0.000000 0.000000 0.046407 0.000000 0.063309 0.000000 0.0 0.011942 0.011201 0.000000 0.000000 0.118715 0.000000 0.028658 0.074999 0.000000 0.000000 0.029183 0.066078 0.000000 0.032299 0.000000 0.070072 0.039023 0.000000 0.069816 0.000000 0.022981 0.025697 0.0 0.013436 0.067146 0.000000 0.00000 0.000000 0.000000 0.047688 0.000000 0.030144 0.000000 0.0 0.011646 0.0 0.000000 0.044827 0.056614 0.028518 0.000000 0.047123 0.012516 0.008607 0.000000 0.061949 0.073532 0.000000 0.008087 0.109392 0.076922 0.037500 0.027484 0.037862 0.120107 0.000000 0.008809 0.000000 0.025415 0.040524 0.000000 0.000000 0.033769 0.045634 0.014316 0.000000 0.071029 0.008890 0.112934 0.000000 0.091035 0.010752 0.009604 0.007413 0.039085 0.092607 0.010487 0.000000 0.041348 0.000000 0.045806 0.015616 0.029021 0.012974 0.067832 0.035901 0.024420 0.016825 0.008378 0.045668 0.123718 0.033040 0.008710 0.000000 0.029326 0.000000 0.000000 0.009581 0.047820 0.054582 0.02561 0.054183 0.080250 0.024524 0.014612 0.016638 0.084041 0.015154 0.058005 0.069343 0.000000 0.009584 0.027197 0.023666 0.000000 0.000000 0.008250 0.000000 0.020755 0.000000 0.000000 0.000000 0.014213 0.020885 0.027858 0.000000 0.000000 0.000000 0.000000 0.028952 0.000000 0.000000 0.010953 0.000000 0.000000 0.00000 0.0 0.000000 0.054544 0.079124 0.000000 0.091874 0.000000 0.000000 0.048195 0.000000 0.000000 0.000000 0.018549 0.035786 0.000000 0.014085 0.010488 0.025958 0.044851 0.008184 0.012313 0.000000 0.000000 0.047402 0.029616 0.000000 0.023987 0.029829 0.000000 0.093058 0.000000 0.000000 0.000000 0.000000 0.000000 0.020251 0.000000 0.074985 0.000000 0.048208 0.016111 0.056121 0.000000 0.000000 0.038830 0.000000 0.0 0.071410 0.000000 0.000000 0.038849 0.000000 0.000000 0.000000 0.026926 0.000000 0.056195 0.007187 0.022613 0.052509 0.024211 0.000000 0.025203 0.000000 0.000000 0.000000 0.028721 0.000000 0.000000 0.000000 0.000000 0.008798 0.008987 0.000000 0.000000 0.000000 0.0 0.027929 0.033422 0.000000 0.000000 0.013502 0.017651 0.000000 0.044741 0.000000 0.012356 0.000000 0.000000 0.000000 0.000000 0.000000 0.048149 0.000000 0.000000 0.000000 0.000000 0.031247 0.022282 0.062947 0.000000 0.027909 0.000000 0.019837 0.000000 0.000000 0.020815 0.0 0.015035 0.000000 0.018965 0.084475 0.000000 0.0 0.000000 0.031979 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.071035 0.000000 0.000000 0.000000 0.025055 0.000000 0.000000 0.000000 0.015197 0.000000 0.047262 0.000000 0.075288 0.000000 0.013736 0.105136 0.046034 0.000000 0.000000 0.050306 0.000000 0.000000 0.000000 0.017605 0.029029 0.065061 0.000000 0.056938 0.038479 0.034326 0.000000 0.092132 0.103996 0.067567 0.017737 0.000000 0.024922 0.0000 0.012263 0.035152 0.022865 0.190381 0.000000 0.016838 0.019668 0.068068 0.010296 0.023894 0.012446 0.030934 0.074800 0.009500 0.071036 0.031005 0.045417 0.051118 0.013313 0.000000 0.019403 0.180342 0.000000 0.061210 0.016541 0.027494 0.015620 0.000000 0.027492 0.054976 0.050218 0.000000 0.091756 0.063063 0.039648 0.105975 0.060384 0.099841 0.000000 0.103617 0.064529 0.117499 0.000000 0.0 0.000000 0.000000 0.025489 0.000000 0.012561 0.053085 0.092516 0.025788 0.018152 0.000000 0.068319 0.000000 0.000000 0.061909 0.035229 0.029974 0.000000 0.010951 0.000000 0.000000 0.011621 0.000000 0.100902 0.066948 0.102068 0.029890 0.000000 0.034549 0.000000 0.012933 0.018270 0.017787 0.070863 0.061960 0.000000 0.032158 0.014367 0.035741 0.029632 0.000000 0.00000 0.000000 0.013835 0.109682 0.0 0.000000 0.000000 0.000000 0.018393 0.000000 0.026906 0.000000 0.043088 0.062928 0.000000 0.000000 0.022570 0.073918 0.000000 0.020994 0.000000 0.102174 0.000000 0.123718 0.026472 0.000000 0.038615 0.100102 0.011096 0.021510 0.000000 0.000000 0.000000 0.014908 0.163217 0.000000 0.016588 0.061265 0.038151 0.051146 0.020355 0.023186 0.000000 0.000000 0.013964 0.041939 0.000000 0.000000 0.000000 0.012051 0.011918 0.011068 0.018815 0.000000 0.021225 0.075812 0.00000 0.00000 0.124150 0.000000 0.026586 0.000000 0.027763 0.000000 0.007309 0.065905 0.137387 0.063887 0.000000 0.000000 0.019347 0.012503 0.012881 0.015425 0.021846 0.017308 0.015864 0.000000 0.016915 0.029459 0.000000 0.046538 0.010139 0.000000 0.060089 0.028179 0.000000 0.012581 0.033083 0.000000 0.000000 0.030425 0.049744 0.000000 0.000000 0.039996 0.023907 0.020984 0.027181 0.000000 0.011809 0.000000 0.000000 0.016351 0.017934 0.059754 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.015010 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013999 0.000000 0.000000 0.000000 0.116655 0.132346 0.000000 0.000000 0.014079 0.000000 0.0 0.035930 0.000000 0.000000 0.046787 0.053084 0.00000 0.013601 0.0 0.039751 0.019199 0.019735 0.000000 0.015613 0.028527 0.048379 0.000000 0.000000 0.016766 0.000000 0.000000 0.018122 0.000000 0.000000 0.016563 0.014835 0.00000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.0000 0.000000 0.020949 0.000000 0.0 0.000000 0.000000 0.000000 0.02570 0.054315 0.0 0.034439 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037850 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.00000 0.00000 0.000000 0.000000 0.090601 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.012247 0.016752 0.011275 0.000000 0.000000 0.000000 0.039911 0.000000 0.000000 0.000000 0.000000 0.000000 0.045603 0.037687 0.011470 0.000000 0.028998 0.061034 0.010535 0.049950 0.043183 0.047566 0.014918 0.021941 0.000000 0.030928 0.016597 0.027371 0.041328 0.020845 0.037213 0.000000 0.000000 0.135024 0.027802 0.058974 0.077617 0.044405 0.152584 0.060885 0.000000 0.000000 0.000000 0.026704 0.000000 0.000000 0.146497 0.018107 0.063055 0.012212 0.000000 0.000000 0.049165 0.000000 0.000000 0.024112 0.009663 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.076179 0.024747 0.069629 0.012212 0.000000 0.039713 0.014285 0.064554 0.258310 0.000000 0.116770 0.106928 0.037379 0.000000 0.000000 0.000000 0.090599 0.045097 0.048243 0.0 0.051212 0.000000 0.000000 0.000000 0.040624 0.000000 0.014644 0.101773 0.000000 0.000000 0.009931 0.000000 0.011265 0.000000 0.018201 0.000000 0.000000 0.017263 0.017608 0.000000 0.000000 0.000000 0.000000 0.013760 0.014148 0.000000 0.017246 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.009221 0.040870 0.000000 0.000000 0.044702 0.030625 0.0 0.000000 0.000000 0.0 0.0 0.052931 0.000000 0.000000 0.023721 0.000000 0.0 0.039051 0.000000 0.046435 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041997 0.010296 0.076107 0.000000 0.000000 0.000000 0.010090 0.000000 0.008780 0.098162 0.012125 0.033075 0.000000 0.030892 0.107554 0.000000 0.009423 0.000000 0.000000 0.000000 0.000000 0.000000 0.025183 0.023323 0.015070 0.000000 0.000000 0.040771 0.075475 0.000000 0.000000 0.000000 0.030141 0.051113 0.000000 0.000000 0.000000 0.065063 0.043934 0.000000 0.012170 0.015807 0.000000 0.007860 0.086901 0.0 0.012199 0.000000 0.0 0.069861 0.076933 0.117095 0.000000 0.000000 0.000000 0.000000 0.000000 0.069386 0.000000 0.000000 0.000000 0.030951 0.012949 0.032580 0.109612 0.058356 0.0 0.048921 0.000000 0.000000 0.086254 0.047893 0.000000 0.000000 0.016714 0.000000 0.052029 0.010283 0.000000 0.000000 0.034140 0.045688 0.029763 0.044581 0.046407 0.123037 0.047748 0.000000 0.000000 0.067149 0.000000 0.0 0.053067 0.000000 0.035313 0.052223 0.000000 0.000000 0.000000 0.000000 0.087754 0.013172 0.014646 0.000000 0.000000 0.013809 0.000000 0.0 0.099911 0.000000 0.000000 0.134230 0.031081 0.000000 0.000000 0.035289 0.000000 0.000000 0.000000 0.013627 0.000000 0.000000 0.0 0.062149 0.000000 0.000000 0.033842 0.057080 0.017112 0.0 0.009472 0.000000 0.010087 0.000000 0.0 0.029170 0.027373 0.000000 0.046400 0.038891 0.000000 0.038600 0.000000 0.016251 0.035020 0.010084 0.000000 0.061826 0.067149 0.039276 0.000000 0.000000 0.028705 0.019074 0.011078 0.068287 0.014200 0.010613 0.014181 0.036610 0.000000 0.000000 0.020384 0.027919 0.000000 0.000000 0.000000 0.000000 0.000000 0.029979 0.000000 0.074017 0.000000 0.000000 0.011494 0.063146 0.000000 0.026361 0.038015 0.000000 0.014864 0.039681 0.000000 0.00000 0.000000 0.040757 0.032351 0.056682 0.000000 0.000000 0.086939 0.000000 0.019582 0.035174 0.019639 0.000000 0.000000 0.000000 0.052008 0.000000 0.000000 0.030600 0.000000 0.015372 0.035753 0.021043 0.000000 0.000000 0.000000 0.000000 0.038349 0.033349 0.000000 0.068177 0.000000 0.012059 0.016084 0.061968 0.000000 0.118619 0.000000 0.015221 0.000000 0.000000 0.000000 0.016758 0.052134 0.063729 0.018071 0.023981 0.000000 0.018775 0.000000 0.032447 0.010604 0.0 0.000000 0.000000 0.000000 0.000000 0.061539 0.041057 0.100092 0.000000 0.000000 0.000000 0.051191 0.070393 0.043186 0.000000 0.033886 0.010381 0.011868 0.013174 0.035814 0.060486 0.009324 0.018801 0.000000 0.055248 0.000000 0.000000 0.0 0.000000 0.000000 0.012340 0.015663 0.009848 0.0 0.039758 0.000000 0.000000 0.117080 0.018129 0.046407 0.034910 0.000000 0.000000 0.032612 0.00000 0.063470 0.000000 0.000000 0.0 0.0 0.012775 0.000000 0.000000 0.000000 0.020509 0.013110 0.000000 0.065224 0.000000 0.000000 0.013264 0.000000 0.000000 0.074109 0.007683 0.027705 0.051854 0.000000 0.000000 0.046407 0.021658 0.012254 0.013833 0.012000 0.000000 0.000000 0.015190 0.057342 0.066371 0.114838 0.0 0.120859 0.011216 0.033511 0.000000 0.000000 0.000000 0.019183 0.027183 0.000000 0.0 0.020931 0.078701 0.000000 0.047983 0.042244 0.063564 0.095814 0.000000 0.172989 0.091204 0.035012 0.053170 0.013336 0.021378 0.011139 0.018698 0.000000 0.011810 0.021215 0.000000 0.000000 0.000000 0.000000 0.027595 0.014819 0.076589 0.0 0.0 0.022968 0.000000 0.000000 0.085140 0.0 0.000000 0.000000 0.038136 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030149 0.000000 0.000000 0.000000 0.040888 0.011538 0.000000 0.000000 0.020839 0.019375 0.000000 0.014961 0.040331 0.000000 0.000000 0.028629 0.000000 0.035157 0.016805 0.000000 0.000000 0.080568 0.071410 0.000000 0.01603 0.065098 0.000000 0.000000 0.000000 0.010110 0.0 0.062279 0.055815 0.023061 0.038585 0.000000 0.015090 0.013226 0.000000 0.083419 0.030233 0.000000 0.029752 0.048824 0.000000 0.000000 0.019223 0.000000 0.000000 0.009450 0.000000 0.0 0.000000 0.000000 0.017714 0.0 0.000000 0.009217 0.041615 0.058990 0.011190 0.000000 0.030773 0.161309 0.000000 0.015371 0.000000 0.000000 0.025352 0.029739 0.000000 0.0 0.044134 0.099503 0.066867 0.011374 0.049930 0.046407 0.000000 0.017890 0.094653 0.083327 0.041528 0.010395 0.000000 0.035342 0.027661 0.042871 0.018249 0.034305 0.000000 0.0 0.0 0.0 0.151887 0.043534 0.000000 0.000000 0.029280 0.000000 0.0 0.000000 0.000000 0.000000 0.057831 0.000000 0.000000 0.093759 0.078991 0.041157 0.018355 0.000000 0.024624 0.024792 0.045193 0.035062 0.000000 0.087603 0.000000 0.022867 0.027085 0.000000 0.000000 0.0 0.072971 0.093615 0.033695 0.067154 0.020948 0.000000 0.024828 0.00000 0.000000 0.012467 0.067460 0.099562 0.024977 0.094038 0.016618 0.046407 0.073442 0.014783 0.000000 0.064680 0.106715 0.019577 0.158839 0.013551 0.026736 0.000000 0.00000 0.013241 0.066972 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011720 0.064219 0.035932 0.042723 0.068912 0.013565 0.000000 0.000000 0.000000 0.052032 0.000000 0.014009 0.000000 0.033663 0.022928 0.011631 0.000000 0.000000 0.000000 0.073382 0.000000 0.000000 0.076686 0.015018 0.000000 0.000000 0.052374 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.021288 0.000000 0.000000 0.000000 0.020825 0.0 0.000000 0.0 0.033602 0.000000 0.000000 0.000000 0.073795 0.000000 0.019006 0.000000 0.000000 0.000000 0.050493 0.015718 0.000000 0.000000 0.022867 0.000000 0.000000 0.062113 0.000000 0.000000 0.000000 0.0 0.069694 0.000000 0.029364 0.000000 0.000000 0.013198 0.0 0.000000 0.000000 0.030025 0.000000 0.000000 0.043800 0.000000 0.000000 0.039360 0.104458 0.043292 0.009885 0.000000 0.00000 0.000000 0.000000 0.034103 0.102706 0.016183 0.020635 0.038880 0.000000 0.021637 0.000000 0.042020 0.0 0.000000 0.000000 0.000000 0.000000 0.157087 0.046407 0.000000 0.012321 0.010486 0.013625 0.016669 0.000000 0.044337 0.000000 0.080781 0.000000 0.000000 0.012781 0.000000 0.000000 0.027092 0.051388 0.070900 0.000000 0.000000 0.034280 0.057928 0.012650 0.015078 0.045714 0.036907 0.0 0.030420 0.000000 0.000000 0.074263 0.120498 0.038387 0.000000 0.014214 0.013512 0.000000 0.042445 0.000000 0.023712 0.000000 0.000000 0.024588 0.000000 0.036447 0.020955 0.000000 0.049169 0.000000 0.029825 0.045390 0.015111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.070025 0.000000 0.039982 0.018311 0.000000 0.0 0.000000 0.000000 0.022233 0.0 0.016091 0.000000 0.046638 0.000000 0.000000 0.014958 0.088062 0.022607 0.0 0.000000 0.037236 0.008079 0.000000 0.000000 0.000000 0.018930 0.013067 0.081627 0.000000 0.000000 0.000000 0.015377 0.000000 0.018427 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.048023 0.011174 0.055852 0.014420 0.016488 0.033968 0.000000 0.030875 0.021087 0.052513 0.053328 0.000000 0.076916 0.055815 0.000000 0.000000 0.000000 0.032331 0.014906 0.000000 0.013344 0.000000 0.000000 0.0 0.062729 0.037161 0.024321 0.008853 0.000000 0.008524 0.015459 0.017099 0.050277 0.041185 0.025789 0.013176 0.050660 0.006721 0.009621 0.019640 0.018724 0.000000 0.048946 0.017367 0.010933 0.011472 0.013009 0.000000 0.000000 0.012243 0.000000 0.000000 0.046407 0.000000 0.013793 0.064379 0.032365 0.009631 0.046407 0.161309 0.018358 0.000000 0.013003 0.045557 0.000000 0.036902 0.025159 0.000000 0.000000 0.090645 0.062049 0.049930 0.000000 0.158839 0.012751 0.000000 0.000000 0.027442 0.0 0.031914 0.029169 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.024980 0.055530 0.013052 0.019719 0.000000 0.000000 0.0 0.043910 0.158847 0.042251 0.022736 0.079892 0.044129 0.000000 0.083226 0.021279 0.017992 0.117259 0.040049 0.018672 0.009783 0.025422 0.000000 0.038406 0.000000 0.028467 0.021279 0.029375 0.036006 0.026067 0.000000 0.000000 0.010083 0.000000 0.012154 0.000000 0.000000 0.067422 0.076373 0.009888 0.000000 0.033927 0.000000 0.000000 0.000000 0.010420 0.047010 0.0 0.008791 0.000000 0.047959 0.000000 0.014577 0.000000 0.016507 0.000000 0.025493 0.000000 0.000000 0.066304 0.024746 0.000000 0.013928 0.000000 0.000000 0.000000 0.000000 0.012801 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.038631 0.000000 0.012204 0.000000 0.026069 0.027458 0.040177 0.049905 0.000000 0.019710 0.062506 0.014842 0.000000 0.050200 0.000000 0.000000 0.028732 0.000000 0.036447 0.013953 0.027519 0.103029 0.015078 0.000000 0.050274 0.000000 0.018440 0.000000 0.0 0.000000 0.027607 0.022794 0.014129 0.029687 0.035054 0.031426 0.000000 0.000000 0.000000 0.000000 0.000000 0.027325 0.067149 0.000000 0.018064 0.000000 0.041269 0.000000 0.046084 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.052831 0.024167 0.000000 0.000000 0.000000 0.028495 0.000000 0.000000 0.000000 0.000000 0.075943 0.027999 0.000000 0.000000 0.066036 0.061066 0.000000 0.000000 0.043245 0.037154 0.016822 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.104260 0.023450 0.042904 0.000000 0.000000 0.000000 0.000000 0.000000 0.009379 0.000000 0.071149 0.00000 0.0 0.000000 0.037817 0.018330 0.000000 0.017656 0.00000 0.036891 0.089073 0.014333 0.000000 0.036374 0.000000 0.000000 0.000000 0.000000 0.032869 0.000000 0.0 0.016715 0.057171 0.0 0.036905 0.048968 0.020678 0.054097 0.000000 0.000000 0.000000 0.10216 0.022313 0.057682 0.033669 0.000000 0.000000 0.000000 0.020567 0.039252 0.000000 0.050550 0.050850 0.014894 0.000000 0.0 0.000000 0.035999 0.00000 0.009049 0.000000 0.013043 0.000000 0.000000 0.032759 0.000000 0.012753 0.040129 0.019201 0.000000 0.025544 0.058774 0.011579 0.018494 0.008149 0.010166 0.000000 0.051964 0.000000 0.000000 0.000000 0.000000 0.013304 0.000000 0.024568 0.050655 0.000000 0.000000 0.046407 0.078627 0.149695 0.015471 0.042279 0.020438 0.000000 0.000000 0.000000 0.032758 0.000000 0.076236 0.093230 0.000000 0.036635 0.000000 0.052800 0.015136 0.014183 0.000000 0.049930 0.039357 0.028219 0.00000 0.000000 0.029877 0.016565 0.000000 0.000000 0.089605 0.0 0.000000 0.053895 0.000000 0.000000 0.048519 0.011022 0.121521 0.000000 0.010412 0.128972 0.016747 0.00000 0.000000 0.046407 0.000000 0.0 0.000000 0.0 0.000000 0.051391 0.013408 0.029115 0.000000 0.077793 0.041593 0.013983 0.070539 0.052764 0.009217 0.060821 0.106213 0.109919 0.009937 0.040239 0.000000 0.019314 0.041101 0.030033 0.019063 0.012756 0.012421 0.000000 0.000000 0.125804 0.000000 0.021962 0.000000 0.000000 0.012234 0.025402 0.042471 0.023770 0.010625 0.026813 0.000000 0.000000 0.040874 0.000000 0.047032 0.041646 0.000000 0.035143 0.009613 0.010702 0.020403 0.000000 0.000000 0.000000 0.023359 0.014743 0.000000 0.000000 0.010716 0.000000 0.052614 0.040355 0.000000 0.000000 0.000000 0.032832 0.000000 0.088684 0.067708 0.000000 0.019574 0.012440 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.042813 0.000000 0.000000 0.042067 0.030011 0.061126 0.036525 0.000000 0.000000 0.000000 0.000000 0.023948 0.135334 0.000000 0.000000 0.000000 0.082706 0.000000 0.000000 0.000000 0.000000 0.000000 0.019836 0.013755 0.000000 0.021892 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.014742 0.000000 0.000000 0.000000 0.033530 0.079802 0.038962 0.050870 0.062995 0.000000 0.000000 0.017642 0.010621 0.000000 0.051415 0.012181 0.011871 0.039043 0.019376 0.000000 0.040801 0.051106 0.030656 0.000000 0.100980 0.000000 0.000000 0.051968 0.045627 0.042238 0.013132 0.027228 0.028812 0.017953 0.030540 0.000000 0.041004 0.013479 0.0 0.084121 0.000000 0.008174 0.000000 0.093544 0.069037 0.000000 0.000000 0.000000 0.000000 0.000000 0.020578 0.000000 0.010601 0.014387 0.027094 0.029224 0.000000 0.209500 0.120334 0.00000 0.000000 0.000000 0.029654 0.011655 0.022248 0.023295 0.028361 0.010230 0.015299 0.017206 0.062166 0.039045 0.021094 0.000000 0.000000 0.039070 0.000000 0.0 0.000000 0.000000 0.067149 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.0 0.052440 0.000000 0.000000 0.023152 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.00000 0.000000 0.058669 0.000000 0.000000 0.00000 0.000000 0.017192 0.000000 0.021344 0.011164 0.0 0.000000 0.050817 0.000000 0.000000 0.046226 0.018260 0.000000 0.059223 0.000000 0.086713 0.026474 0.000000 0.0000 0.000000 0.000000 0.074576 0.034347 0.00000 0.000000 0.030402 0.000000 0.000000 0.046469 0.024610 0.014583 0.000000 0.000000 0.000000 0.000000 0.000000 0.017023 0.000000 0.000000 0.0 0.000000 0.052394 0.085374 0.000000 0.036363 0.000000 0.000000 0.000000 0.021987 0.132894 0.000000 0.000000 0.107132 0.000000 0.000000 0.028498 0.000000 0.015149 0.000000 0.074988 0.067006 0.000000 0.000000 0.000000 0.000000 0.046210 0.037411 0.000000 0.045544 0.0 0.016931 0.000000 0.000000 0.000000 0.045531 0.016891 0.000000 0.000000 0.000000 0.0 0.011929 0.032431 0.000000 0.000000 0.016662 0.028862 0.021739 0.013672 0.011725 0.048989 0.000000 0.027887 0.026265 0.000000 0.080359 0.0 0.079064 0.064777 0.071751 0.000000 0.000000 0.013362 0.000000 0.029124 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.077452 0.047393 0.000000 0.000000 0.078327 0.000000 0.064949 0.000000 0.000000 0.010464 0.000000 0.011784 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012723 0.023045 0.009202 0.000000 0.000000 0.000000 0.000000 0.012321 0.000000 0.011687 0.000000 0.052838 0.009677 0.000000 0.000000 0.000000 0.104685 0.00000 0.000000 0.007561 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035792 0.011284 0.000000 0.019752 0.078649 0.000000 0.012110 0.000000 0.0 0.000000 0.000000 0.008668 0.011896 0.000000 0.013545 0.000000 0.038261 0.000000 0.000000 0.000000 0.000000 0.013191 0.015289 0.028006 0.010774 0.000000 0.0 0.024293 0.000000 0.010833 0.015177 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028085 0.000000 0.000000 0.000000 0.000000 0.009347 0.000000 0.000000 0.072750 0.000000 0.054067 0.092839 0.046407 0.013566 0.072133 0.000000 0.014588 0.000000 0.000000 0.021575 0.000000 0.112281 0.102599 0.000000 0.018498 0.035634 0.049005 0.031228 0.014461 0.000000 0.000000 0.011291 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045087 0.053887 0.013937 0.029238 0.000000 0.000000 0.029894 0.000000 0.000000 0.000000 0.019328 0.000000 0.046407 0.011594 0.000000 0.012504 0.012415 0.05358 0.011525 0.015840 0.000000 0.000000 0.000000 0.000000 0.000000 0.049981 0.000000 0.031704 0.000000 0.000000 0.010855 0.015376 0.012856 0.039706 0.0 0.016375 0.038571 0.043845 0.036083 0.000000 0.000000 0.022117 0.062028 0.000000 0.011769 0.011307 0.074264 0.000000 0.121174 0.019578 0.000000 0.000000 0.00000 0.000000 0.017178 0.000000 0.032450 0.010336 0.000000 0.018937 0.102000 0.000000 0.010797 0.045342 0.051515 0.000000 0.009945 0.000000 0.000000 0.030726 0.000000 0.000000 0.000000 0.000000 0.089416 0.036886 0.022157 0.000000 0.0 0.000000 0.000000 0.022763 0.013999 0.000000 0.022880 0.000000 0.000000 0.060966 0.000000 0.000000 0.017130 0.000000 0.037587 0.034604 0.035376 0.038166 0.037418 0.089929 0.000000 0.000000 0.071442 0.053081 0.000000 0.056129 0.000000 0.000000 0.000000 0.000000 0.046151 0.072057 0.000000 0.064005 0.000000 0.000000 0.022608 0.000000 0.000000 0.000000 0.011639 0.023385 0.012581 0.051542 0.024284 0.000000 0.000000 0.000000 0.058285 0.009860 0.027282 0.077067 0.072477 0.050855 0.010997 0.023261 0.009934 0.000000 0.021077 0.000000 0.021731 0.009827 0.022310 0.000000 0.000000 0.024827 0.013597 0.000000 0.0 0.011765 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.030918 0.086746 0.000000 0.0 0.000000 0.011531 0.010971 0.062253 0.088799 0.000000 0.074603 0.011124 0.000000 0.000000 0.00000 0.000000 0.000000 0.016850 0.000000 0.000000 0.044923 0.000000 0.000000 0.000000 0.000000 0.000000 0.048326 0.010330 0.099487 0.011130 0.0 0.000000 0.049203 0.000000 0.000000 0.000000 0.021115 0.000000 0.000000 0.000000 0.008894 0.0 0.018428 0.000000 0.019632 0.000000 0.034281 0.000000 0.046475 0.019073 0.000000 0.000000 0.011800 0.039552 0.000000 0.010560 0.000000 0.00000 0.033550 0.00000 0.023141 0.000000 0.000000 0.000000 0.000000 0.047025 0.017927 0.025399 0.000000 0.035104 0.025139 0.000000 0.000000 0.000000 0.015103 0.010811 0.000000 0.013275 0.000000 0.000000 0.0 0.013624 0.026689 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.068164 0.049497 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.011313 0.165542 0.053180 0.077026 0.030113 0.024112 0.164644 0.050206 0.000000 0.041757 0.014126 0.028772 0.016949 0.015498 0.128700 0.022082 0.038168 0.013810 0.000000 0.000000 0.011327 0.000000 0.000000 0.039780 0.034240 0.021532 0.000000 0.037792 0.000000 0.015479 0.000000 0.000000 0.024856 0.090775 0.078467 0.000000 0.000000 0.011370 0.000000 0.000000 0.019860 0.000000 0.000000 0.000000 0.029415 0.056637 0.028508 0.028122 0.04192 0.000000 0.027201 0.045611 0.012232 0.000000 0.047154 0.000000 0.000000 0.050962 0.019505 0.000000 0.045427 0.053797 0.000000 0.096829 0.027450 0.000000 0.000000 0.102508 0.020826 0.031411 0.042070 0.057301 0.031126 0.021170 0.000000 0.000000 0.013625 0.050741 0.031481 0.000000 0.017895 0.035651 0.061061 0.043964 0.000000 0.040289 0.071353 0.000000 0.057807 0.024221 0.000000 0.000000 0.013743 0.108053 0.000000 0.000000 0.017701 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.025032 0.000000 0.018290 0.00000 0.0 0.0 0.000000 0.064147 0.000000 0.040724 0.000000 0.000000 0.026073 0.000000 0.000000 0.000000 0.000000 0.011085 0.012574 0.037795 0.012558 0.000000 0.000000 0.021316 0.026068 0.032826 0.040688 0.000000 0.000000 0.040200 0.000000 0.016381 0.053793 0.000000 0.035027 0.000000 0.000000 0.000000 0.019808 0.033530 0.016898 0.000000 0.000000 0.000000 0.000000 0.067149 0.061826 0.067149 0.000000 0.0 0.0 0.000000 0.021830 0.000000 0.044249 0.000000 0.000000 0.000000 0.055888 0.000000 0.000000 0.0 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.049382 0.000000 0.000000 0.000000 0.043053 0.000000 0.027514 0.062900 0.000000 0.00000 0.0 0.000000 0.00000 0.0 0.023380 0.029682 0.0 0.029481 0.000000 0.000000 0.020039 0.038871 0.026206 0.044776 0.000000 0.000000 0.000000 0.094634 0.000000 0.036008 0.000000 0.000000 0.000000 0.000000 0.101842 0.000000 0.00000 0.012471 0.071796 0.056318 0.012124 0.000000 0.032464 0.000000 0.000000 0.015814 0.042603 0.000000 0.000000 0.000000 0.000000 0.036299 0.0 0.013931 0.000000 0.000000 0.0 0.000000 0.062841 0.0 0.072635 0.013890 0.000000 0.077244 0.000000 0.090086 0.000000 0.021299 0.043994 0.000000 0.000000 0.000000 0.024393 0.000000 0.017502 0.000000 0.000000 0.023639 0.000000 0.102217 0.000000 0.000000 0.079011 0.000000 0.098564 0.045305 0.028675 0.022931 0.000000 0.053332 0.000000 0.000000 0.000000 0.025551 0.011107 0.019967 0.000000 0.044256 0.0 0.00000 0.018234 0.000000 0.000000 0.000000 0.000000 0.000000 0.014004 0.030274 0.000000 0.036195 0.00000 0.013928 0.015207 0.066263 0.000000 0.024025 0.034993 0.000000 0.015845 0.000000 0.011747 0.000000 0.017891 0.000000 0.000000 0.000000 0.095864 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.120802 0.000000 0.020592 0.000000 0.000000 0.000000 0.011350 0.000000 0.018617 0.057714 0.000000 0.000000 0.036113 0.013165 0.000000 0.032374 0.00000 0.0 0.015300 0.000000 0.000000 0.000000 0.047906 0.000000 0.013913 0.031092 0.034094 0.000000 0.036460 0.021494 0.015981 0.000000 0.000000 0.000000 0.000000 0.046112 0.153700 0.014240 0.118965 0.000000 0.00000 0.000000 0.021254 0.000000 0.029359 0.000000 0.026015 0.000000 0.000000 0.037488 0.000000 0.0 0.0 0.000000 0.019124 0.000000 0.013421 0.000000 0.000000 0.000000 0.018988 0.000000 0.013672 0.000000 0.015457 0.000000 0.049202 0.000000 0.054219 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052726 0.011445 0.000000 0.000000 0.000000 0.014012 0.0 0.000000 0.000000 0.045091 0.000000 0.011720 0.022406 0.046468 0.000000 0.024742 0.000000 0.0 0.000000 0.039929 0.009278 0.021222 0.010611 0.000000 0.022503 0.090238 0.012381 0.040714 0.013822 0.015417 0.047740 0.012469 0.025662 0.015859 0.000000 0.118703 0.021700 0.000000 0.000000 0.000000 0.021312 0.036190 0.024156 0.000000 0.000000 0.007770 0.025181 0.000000 0.082651 0.047861 0.010107 0.000000 0.0 0.0 0.014682 0.068383 0.000000 0.000000 0.000000 0.026945 0.000000 0.069897 0.000000 0.000000 0.009542 0.018999 0.000000 0.000000 0.000000 0.075751 0.0 0.013726 0.021131 0.032312 0.000000 0.035517 0.012100 0.012106 0.0 0.010080 0.012847 0.029559 0.051089 0.008630 0.021287 0.014989 0.046649 0.012820 0.032694 0.000000 0.000000 0.034039 0.000000 0.000000 0.056088 0.000000 0.008923 0.013220 0.012321 0.000000 0.056693 0.000000 0.009729 0.012738 0.042050 0.000000 0.013373 0.012910 0.000000 0.000000 0.016373 0.007904 0.000000 0.000000 0.013180 0.000000 0.014187 0.012859 0.016323 0.039546 0.000000 0.036953 0.000000 0.024656 0.012373 0.000000 0.030810 0.000000 0.010702 0.054609 0.000000 0.000000 0.000000 0.000000 0.000000 0.051671 0.018087 0.000000 0.032278 0.075880 0.009344 0.048522 0.014819 0.012763 0.046407 0.217472 0.021367 0.000000 0.000000 0.049284 0.069604 0.000000 0.052689 0.049297 0.042892 0.013142 0.046407 0.010045 0.012535 0.000000 0.012450 0.000000 0.000000 0.029475 0.034187 0.109234 0.000000 0.036557 0.000000 0.079848 0.042580 0.143811 0.000000 0.028168 0.010210 0.011696 0.021457 0.000000 0.000000 0.109538 0.060215 0.026563 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.019905 0.000000 0.0 0.011341 0.000000 0.000000 0.025381 0.030513 0.009402 0.031236 0.000000 0.041719 0.017508 0.066560 0.092894 0.087628 0.019753 0.016693 0.039903 0.019620 0.000000 0.000000 0.009797 0.000000 0.012270 0.000000 0.049278 0.000000 0.0 0.000000 0.082247 0.074884 0.012849 0.000000 0.058104 0.000000 0.027104 0.045863 0.008426 0.000000 0.000000 0.0 0.046407 0.046789 0.000000 0.037542 0.000000 0.033808 0.000000 0.092174 0.014005 0.000000 0.021412 0.000000 0.012346 0.012218 0.071356 0.0 0.025775 0.0 0.017942 0.043135 0.000000 0.000000 0.014946 0.035305 0.086769 0.015773 0.000000 0.000000 0.000000 0.035866 0.015168 0.000000 0.099126 0.000000 0.030470 0.017489 0.029377 0.012646 0.000000 0.044832 0.000000 0.000000 0.021132 0.021228 0.016840 0.000000 0.031816 0.014383 0.000000 0.165550 0.0 0.088142 0.000000 0.011379 0.000000 0.067880 0.035305 0.044298 0.012580 0.041267 0.036594 0.097001 0.000000 0.000000 0.000000 0.024459 0.000000 0.046760 0.020283 0.033494 0.000000 0.000000 0.000000 0.000000 0.053539 0.0 0.0 0.000000 0.000000 0.039704 0.011767 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.018013 0.011529 0.049659 0.015964 0.000000 0.000000 0.000000 0.011717 0.000000 0.000000 0.027215 0.000000 0.016708 0.016670 0.000000 0.000000 0.00000 0.000000 0.044051 0.0 0.009835 0.018126 0.000000 0.000000 0.000000 0.014984 0.000000 0.0 0.000000 0.035489 0.034407 0.000000 0.000000 0.0 0.068299 0.00000 0.014340 0.000000 0.000000 0.000000 0.016347 0.011335 0.021445 0.000000 0.000000 0.012087 0.000000 0.000000 0.015662 0.000000 0.000000 0.037636 0.043617 0.000000 0.012353 0.051203 0.000000 0.000000 0.009566 0.015218 0.033685 0.000000 0.00000 0.023936 0.015374 0.076124 0.021880 0.021701 0.000000 0.009975 0.013239 0.015752 0.009051 0.025920 0.041524 0.024177 0.068851 0.000000 0.024251 0.101951 0.000000 0.028587 0.000000 0.036708 0.000000 0.000000 0.008676 0.042779 0.065009 0.022988 0.000000 0.102150 0.049731 0.010167 0.013879 0.000000 0.068803 0.000000 0.060536 0.000000 0.034413 0.018586 0.015654 0.113730 0.000000 0.021265 0.000000 0.069401 0.066689 0.025215 0.064113 0.000000 0.091240 0.025499 0.055717 0.000000 0.000000 0.054906 0.000000 0.000000 0.024499 0.000000 0.028858 0.025283 0.00000 0.000000 0.040378 0.024130 0.024590 0.000000 0.051054 0.011446 0.044835 0.000000 0.046441 0.042265 0.016359 0.033679 0.045378 0.039856 0.030213 0.065419 0.047143 0.011307 0.025552 0.063569 0.013196 0.009862 0.012446 0.111456 0.025238 0.006755 0.038729 0.022383 0.088437 0.000000 0.022351 0.0 0.023049 0.035143 0.000000 0.025910 0.042545 0.043774 0.041658 0.000000 0.013415 0.049178 0.022918 0.066240 0.010057 0.022303 0.062806 0.027128 0.034090 0.000000 0.000000 0.000000 0.048163 0.018623 0.122752 0.000000 0.000000 0.030084 0.023067 0.000000 0.000000 0.000000 0.000000 0.049899 0.000000 0.000000 0.000000 0.000000 0.022858 0.016994 0.0 0.017438 0.000000 0.025309 0.014828 0.00000 0.014856 0.000000 0.013689 0.026246 0.025006 0.010392 0.000000 0.000000 0.024330 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023512 0.000000 0.012508 0.000000 0.000000 0.08548 0.008724 0.0 0.000000 0.047742 0.048278 0.067561 0.024319 0.011125 0.000000 0.000000 0.019300 0.000000 0.000000 0.000000 0.00000 0.013347 0.041641 0.000000 0.030127 0.008504 0.000000 0.000000 0.022505 0.000000 0.024213 0.000000 0.000000 0.029032 0.062988 0.000000 0.011236 0.035430 0.000000 0.000000 0.000000 0.000000 0.020962 0.009168 0.010679 0.000000 0.000000 0.000000 0.052745 0.029302 0.014248 0.000000 0.014835 0.010182 0.000000 0.000000 0.017503 0.010592 0.000000 0.000000 0.000000 0.000000 0.000000 0.015916 0.027629 0.000000 0.028975 0.000000 0.000000 0.024163 0.000000 0.025271 0.015207 0.000000 0.025480 0.015626 0.00000 0.000000 0.000000 0.016973 0.000000 0.012513 0.024348 0.012561 0.013620 0.000000 0.019120 0.019120 0.00000 0.000000 0.019787 0.000000 0.000000 0.000000 0.035894 0.038461 0.009406 0.000000 0.000000 0.000000 0.000000 0.000000 0.063864 0.013367 0.030137 0.000000 0.090655 0.000000 0.095769 0.039422 0.012163 0.009852 0.000000 0.000000 0.000000 0.00000 0.007328 0.049218 0.022615 0.009883 0.000000 0.009276 0.009919 0.026750 0.016674 0.015615 0.013656 0.000000 0.000000 0.016901 0.000000 0.033846 0.012325 0.040145 0.000000 0.010030 0.000000 0.000000 0.010941 0.010401 0.030554 0.000000 0.000000 0.000000 0.000000 0.024662 0.016781 0.000000 0.000000 0.018561 0.032232 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.017321 0.047354 0.000000 0.000000 0.012019 0.000000 0.000000 0.040402 0.000000 0.055464 0.000000 0.00000 0.076771 0.000000 0.000000 0.014618 0.020114 0.013894 0.00000 0.000000 0.000000 0.017697 0.014242 0.000000 0.012823 0.097605 0.000000 0.000000 0.000000 0.032934 0.000000 0.000000 0.000000 0.014128 0.000000 0.000000 0.000000 0.042829 0.017544 0.104948 0.060150 0.000000 0.011410 0.043978 0.000000 0.000000 0.000000 0.000000 0.0 0.017226 0.053434 0.000000 0.021928 0.000000 0.000000 0.015641 0.037021 0.000000 0.0 0.000000 0.013723 0.000000 0.025708 0.049725 0.000000 0.000000 0.000000 0.055778 0.000000 0.000000 0.000000 0.019315 0.000000 0.020080 0.000000 0.000000 0.013562 0.019528 0.029713 0.000000 0.000000 0.030646 0.031236 0.046493 0.040438 0.026401 0.000000 0.025253 0.031100 0.000000 0.000000 0.020898 0.0000 0.000000 0.024223 0.000000 0.000000 0.009295 0.000000 0.033404 0.000000 0.000000 0.010318 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011921 0.000000 0.019928 0.019245 0.000000 0.000000 0.010234 0.000000 0.000000 0.000000 0.000000 0.000000 0.014432 0.000000 0.039988 0.015311 0.017666 0.000000 0.097823 0.000000 0.015288 0.02697 0.0 0.0 0.000000 0.0 0.056711 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.016251 0.0 0.000000 0.000000 0.000000 0.016170 0.023252 0.000000 0.000000 0.000000 0.000000 0.000000 0.014987 0.000000 0.000000 0.014542 0.000000 0.009598 0.015970 0.000000 0.000000 0.042321 0.024941 0.020119 0.070302 0.039430 0.000000 0.0 0.038276 0.000000 0.026152 0.000000 0.000000 0.000000 0.011963 0.031607 0.000000 0.029958 0.000000 0.050518 0.035883 0.000000 0.023181 0.026177 0.032906 0.028226 0.034902 0.000000 0.039029 0.020460 0.011883 0.033285 0.000000 0.029393 0.013671 0.057561 0.000000 0.090064 0.0 0.0 0.000000 0.000000 0.053642 0.000000 0.060761 0.000000 0.066182 0.000000 0.046680 0.000000 0.011466 0.025873 0.000000 0.035913 0.000000 0.000000 0.000000 0.025362 0.033175 0.081556 0.023521 0.000000 0.000000 0.027495 0.033851 0.085092 0.036424 0.027933 0.013660 0.081674 0.074363 0.000000 0.000000 0.039164 0.009553 0.037292 0.067632 0.000000 0.040803 0.025771 0.068582 0.018037 0.000000 0.023957 0.000000 0.025240 0.000000 0.000000 0.017922 0.000000 0.016876 0.000000 0.018549 0.000000 0.028497 0.016173 0.069010 0.000000 0.000000 0.000000 0.026222 0.043413 0.000000 0.048179 0.016710 0.000000 0.024501 0.000000 0.000000 0.014322 0.000000 0.046212 0.050335 0.112702 0.000000 0.000000 0.000000 0.000000 0.029712 0.051248 0.038250 0.030998 0.000000 0.026684 0.142213 0.011517 0.028102 0.022708 0.025322 0.000000 0.106110 0.032027 0.042770 0.035368 0.000000 0.000000 0.025775 0.011547 0.018235 0.015156 0.012302 0.000000 0.021573 0.000000 0.059540 0.029010 0.040663 0.050402 0.046315 0.012988 0.036307 0.042472 0.085165 0.029297 0.015121 0.026153 0.050017 0.022839 0.061111 0.029927 0.011750 0.017885 0.083010 0.013336 0.000000 0.075223 0.051770 0.000000 0.098833 0.007161 0.000000 0.030461 0.000000 0.020864 0.000000 0.102094 0.000000 0.000000 0.026767 0.000000 0.033341 0.000000 0.091308 0.037929 0.046917 0.039144 0.000000 0.000000 0.000000 0.035553 0.000000 0.000000 0.023988 0.067022 0.000000 0.000000 0.052745 0.012071 0.039643 0.000000 0.000000 0.032083 0.011596 0.043782 0.040026 0.000000 0.000000 0.023019 0.079088 0.053047 0.076892 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024207 0.030526 0.011323 0.000000 0.045233 0.000000 0.000000 0.078303 0.043142 0.067318 0.012137 0.063790 0.000000 0.014185 0.009784 0.033183 0.009274 0.000000 0.000000 0.000000 0.037602 0.000000 0.000000 0.030127 0.000000 0.011137 0.000000 0.000000 0.000000 0.055838 0.074813 0.000000 0.023315 0.000000 0.000000 0.022680 0.041990 0.000000 0.000000 0.019203 0.011149 0.000000 0.000000 0.045428 0.062311 0.019699 0.046576 0.022602 0.097200 0.029526 0.000000 0.055639 0.000000 0.030193 0.000000 0.000000 0.000000 0.000000 0.020368 0.009002 0.000000 0.000000 0.034862 0.041866 0.032356 0.046133 0.000000 0.000000 0.063500 0.035024 0.000000 0.027919 0.000000 0.037969 0.000000 0.060947 0.000000 0.029583 0.023761 0.000000 0.013405 0.014214 0.042705 0.087772 0.062497 0.000000 0.072337 0.097284 0.000000 0.000000 0.014087 0.050160 0.000000 0.019080 0.000000 0.014038 0.039171 0.0 0.085133 0.000000 0.000000 0.048170 0.038419 0.000000 0.000000 0.0 0.000000 0.0 0.00000 0.000000 0.0 0.000000 0.031185 0.152135 0.037791 0.000000 0.000000 0.000000 0.036998 0.0 0.0 0.000000 0.033016 0.026044 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.013292 0.000000 0.0 0.0 0.021950 0.011860 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.066047 0.0 0.000000 0.055213 0.000000 0.0 0.010634 0.000000 0.010593 0.00000 0.0 0.000000 0.0 0.0 0.027021 0.027209 0.0 0.000000 0.0 0.050753 0.000000 0.0 0.056739 0.011989 0.000000 0.000000 0.036766 0.0 0.123829 0.013321 0.000000 0.000000 0.000000 0.000000 0.089968 0.000000 0.101491 0.0 0.000000 0.0 0.000000 0.000000 0.017653 0.124063 0.040566 0.061646 0.000000 0.000000 0.011683 0.000000 0.000000 0.075039 0.043890 0.000000 0.013026 0.000000 0.000000 0.000000 0.000000 0.022885 0.013340 0.011382 0.0 0.113337 0.000000 0.0 0.000000 0.018279 0.0 0.000000 0.000000 0.063799 0.000000 0.000000 0.000000 0.119031 0.017947 0.0 0.000000 0.030048 0.000000 0.030186 0.034554 0.023048 0.0 0.013859 0.000000 0.000000 0.033995 0.049840 0.000000 0.013676 0.000000 0.051975 0.036799 0.038805 0.027021 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.015959 0.000000 0.048848 0.000000 0.008377 0.000000 0.011558 0.019294 0.011931 0.018233 0.012556 0.013719 0.000000 0.000000 0.000000 0.000000 0.023278 0.000000 0.022759 0.000000 0.029547 0.000000 0.000000 0.046561 0.037340 0.0 0.023099 0.020313 0.142607 0.021626 0.000000 0.00000 0.087232 0.000000 0.000000 0.000000 0.026030 0.000000 0.000000 0.017572 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.016022 0.012882 0.000000 0.077246 0.093018 0.0 0.00000 0.00000 0.000000 0.000000 0.000000 0.014057 0.035027 0.041469 0.023972 0.000000 0.000000 0.0 0.013504 0.044777 0.014982 0.030117 0.014436 0.014194 0.014591 0.014570 0.014084 0.000000 0.000000 0.011203 0.000000 0.000000 0.000000 0.000000 0.110415 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.00000 0.025239 0.0 0.0 0.0 0.025375 0.0 0.000000 0.016887 0.000000 0.000000 0.000000 0.015334 0.000000 0.018085 0.000000 0.025773 0.019549 0.000000 0.0 0.000000 0.000000 0.028226 0.008640 0.072899 0.00000 0.000000 0.0 0.006917 0.062463 0.089076 0.000000 0.000000 0.0 0.000000 0.0 0.049994 0.000000 0.000000 0.000000 0.000000 0.020163 0.0 0.079914 0.000000 0.03174 0.087531 0.023609 0.000000 0.025432 0.000000 0.039421 0.0 0.000000 0.000000 0.000000 0.00000 0.016165 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.020087 0.036522 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.057117 0.044888 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.049460 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.039015 0.020878 0.00000 0.000000 0.000000 0.0 0.000000 0.000000 0.059623 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.075155 0.00000 0.00000 0.000000 0.000000 0.101753 0.000000 0.013403 0.000000 0.000000 0.000000 0.000000 0.011397 0.015124 0.0 0.000000 0.030817 0.095762 0.0 0.0 0.033963 0.035978 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.030830 0.0 0.009227 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.022468 0.0 0.0 0.0 0.014235 0.000000 0.000000 0.000000 0.011699 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.069473 0.000000 0.057009 0.000000 0.000000 0.016425 0.017400 0.000000 0.011033 0.0 0.0 0.047454 0.044769 0.042682 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.018007 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.020335 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.015816 0.018949 0.000000 0.000000 0.097886 0.000000 0.000000 0.000000 0.000000 0.0 0.021426 0.046469 0.000000 0.000000 0.013381 0.043566 0.043566 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.053122 0.000000 0.020744 0.000000 0.045714 0.020925 0.020288 0.000000 0.078785 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.020602 0.000000 0.000000 0.041868 0.000000 0.338126 0.020510 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.029271 0.000000 0.000000 0.000000 0.000000 0.0 0.069643 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.041025 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.059930 0.000000 0.000000 0.000000 0.000000 0.000000 0.037467 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.053686 0.000000 0.043876 0.000000 0.0 0.0 0.014630 0.0 0.015757 0.027397 0.000000 0.000000 0.015757 0.000000 0.000000 0.000000 0.023272 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.055172 0.018513 0.000000 0.015905 0.000000 0.048679 0.000000 0.0 0.012451 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.044030 0.000000 0.0 0.000000 0.000000 0.047183 0.000000 0.000000 0.0 0.000000 0.000000 0.022438 0.000000 0.031133 0.000000 0.000000 0.017421 0.000000 0.000000 0.000000 0.015692 0.000000 0.0 0.039627 0.000000 0.070161 0.050497 0.000000 0.072853 0.016093 0.000000 0.000000 0.000000 0.018806 0.200222 0.000000 0.000000 0.000000 0.021148 0.000000 0.034844 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.031579 0.000000 0.000000 0.000000 0.014875 0.06312 0.000000 0.000000 0.0 0.016776 0.015080 0.000000 0.016784 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017560 0.000000 0.017596 0.000000 0.00000 0.009291 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.017013 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.017559 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.00000 0.000000 0.070212 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.069119 0.015170 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.017024 0.109812 0.000000 0.0 0.000000 0.000000 0.0 0.016718 0.000000 0.012810 0.011817 0.093090 0.000000 0.000000 0.015576 0.000000 0.0 0.097905 0.011448 0.035294 0.000000 0.000000 0.000000 0.000000 0.076146 0.000000 0.0 0.032375 0.000000 0.080709 0.000000 0.000000 0.018024 0.011383 0.146711 0.048172 0.018683 0.018065 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.016419 0.014316 0.000000 0.000000 0.000000 0.0 0.000000 0.016263 0.000000 0.000000 0.021634 0.092108 0.015457 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.012933 0.000000 0.015257 0.000000 0.080072 0.000000 0.000000 0.044902 0.017289 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.035888 0.029440 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.058986 0.000000 0.031237 0.016597 0.025464 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.030149 0.037346 0.000000 0.029141 0.0 0.000000 0.067852 0.113505 0.000000 0.0 0.027500 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.027886 0.000000 0.014438 0.000000 0.000000 0.000000 0.031017 0.062816 0.011158 0.000000 0.0 0.000000 0.316419 0.014417 0.000000 0.044318 0.013331 0.000000 0.000000 0.000000 0.016528 0.000000 0.000000 0.0 0.042961 0.000000 0.0 0.000000 0.071812 0.000000 0.000000 0.135604 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.029559 0.0 0.000000 0.000000 0.031432 0.000000 0.0 0.000000 0.011943 0.000000 0.000000 0.053791 0.000000 0.000000 0.145588 0.000000 0.024356 0.033005 0.000000 0.000000 0.022757 0.000000 0.000000 0.000000 0.032438 0.000000 0.000000 0.000000 0.011943 0.013083 0.000000 0.056642 0.013362 0.000000 0.026048 0.014202 0.000000 0.016699 0.023157 0.000000 0.043268 0.000000 0.000000 0.000000 0.014481 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.037391 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.138892 0.011767 0.033051 0.016152 0.000000 0.000000 0.0 0.016748 0.033555 0.000000 0.000000 0.017322 0.000000 0.000000 0.047879 0.024283 0.000000 0.074576 0.000000 0.000000 0.046954 0.059502 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.068097 0.018632 0.013282 0.000000 0.010794 0.103960 0.0 0.000000 0.034030 0.022848 0.000000 0.000000 0.000000 0.018715 0.044074 0.015367 0.027732 0.000000 0.000000 0.00000 0.000000 0.000000 0.015960 0.031184 0.000000 0.000000 0.000000 0.032002 0.024086 0.037506 0.0 0.000000 0.000000 0.055177 0.014400 0.015535 0.000000 0.000000 0.115279 0.000000 0.025297 0.000000 0.014820 0.050654 0.000000 0.019689 0.024359 0.000000 0.000000 0.000000 0.000000 0.020569 0.000000 0.047901 0.010514 0.035492 0.000000 0.000000 0.00000 0.000000 0.067778 0.000000 0.000000 0.025806 0.000000 0.000000 0.013574 0.000000 0.000000 0.000000 0.016116 0.035480 0.082605 0.029348 0.000000 0.000000 0.000000 0.013720 0.018342 0.013199 0.000000 0.044061 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.013542 0.018330 0.013269 0.000000 0.000000 0.150474 0.000000 0.0 0.027874 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.010985 0.0 0.009792 0.0 0.015155 0.000000 0.000000 0.102316 0.000000 0.034410 0.000000 0.000000 0.017226 0.000000 0.040791 0.000000 0.000000 0.013573 0.000000 0.044150 0.000000 0.015996 0.000000 0.034222 0.000000 0.000000 0.0 0.090953 0.022820 0.000000 0.053123 0.014076 0.000000 0.000000 0.0 0.000000 0.000000 0.012929 0.000000 0.014268 0.000000 0.0 0.017084 0.000000 0.028453 0.000000 0.000000 0.000000 0.000000 0.014566 0.00000 0.000000 0.014466 0.042819 0.011231 0.0 0.00000 0.0 0.000000 0.015055 0.000000 0.00000 0.018504 0.017980 0.00000 0.000000 0.000000 0.000000 0.025181 0.091420 0.000000 0.000000 0.000000 0.013568 0.0 0.019669 0.000000 0.0 0.000000 0.0 0.0 0.017923 0.000000 0.000000 0.00000 0.013493 0.000000 0.0 0.000000 0.0 0.118753 0.038252 0.119257 0.047467 0.0 0.061885 0.000000 0.000000 0.079264 0.025791 0.000000 0.000000 0.000000 0.000000 0.000000 0.011898 0.000000 0.072389 0.000000 0.011683 0.033752 0.000000 0.015340 0.000000 0.059046 0.015375 0.000000 0.019267 0.000000 0.000000 0.014598 0.038274 0.000000 0.000000 0.000000 0.000000 0.023750 0.000000 0.012402 0.037578 0.062827 0.000000 0.037614 0.000000 0.011577 0.000000 0.000000 0.000000 0.040993 0.024095 0.000000 0.030118 0.000000 0.066505 0.033586 0.000000 0.000000 0.000000 0.025847 0.000000 0.000000 0.000000 0.046398 0.000000 0.069514 0.000000 0.015275 0.084627 0.020352 0.000000 0.0 0.000000 0.015066 0.000000 0.013948 0.000000 0.057205 0.018549 0.0 0.000000 0.000000 0.020550 0.030224 0.022437 0.0 0.000000 0.100754 0.000000 0.016507 0.017798 0.046515 0.011168 0.015471 0.009058 0.000000 0.000000 0.012496 0.000000 0.012550 0.000000 0.000000 0.000000 0.000000 0.012577 0.008457 0.000000 0.000000 0.099974 0.099296 0.000000 0.0 0.019845 0.034618 0.000000 0.000000 0.023477 0.021804 0.055673 0.073001 0.029275 0.000000 0.000000 0.0 0.000000 0.033671 0.000000 0.000000 0.037446 0.026640 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.017752 0.000000 0.0 0.013823 0.016544 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.041718 0.000000 0.016784 0.0 0.017754 0.000000 0.000000 0.000000 0.009234 0.000000 0.011362 0.008814 0.000000 0.000000 0.0 0.025587 0.029844 0.000000 0.011219 0.000000 0.023383 0.000000 0.000000 0.000000 0.011035 0.024630 0.000000 0.011409 0.000000 0.000000 0.0 0.013581 0.000000 0.060822 0.010126 0.000000 0.000000 0.000000 0.000000 0.000000 0.040780 0.000000 0.000000 0.027240 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.039323 0.062552 0.000000 0.036721 0.015840 0.000000 0.012182 0.029085 0.000000 0.000000 0.021417 0.011804 0.000000 0.000000 0.024032 0.023903 0.000000 0.009779 0.000000 0.028058 0.000000 0.00000 0.000000 0.000000 0.041657 0.000000 0.014536 0.050168 0.013381 0.012694 0.030529 0.019485 0.022432 0.090661 0.0 0.000000 0.033002 0.038837 0.012769 0.035629 0.025143 0.022872 0.000000 0.000000 0.000000 0.000000 0.015491 0.007809 0.000000 0.000000 0.010939 0.000000 0.022735 0.000000 0.000000 0.000000 0.033093 0.000000 0.000000 0.000000 0.000000 0.013872 0.000000 0.0 0.026688 0.000000 0.0 0.000000 0.009876 0.000000 0.000000 0.037446 0.000000 0.040575 0.025416 0.000000 0.014896 0.015777 0.000000 0.045762 0.000000 0.000000 0.029823 0.000000 0.014090 0.011712 0.0 0.000000 0.000000 0.0 0.000000 0.099120 0.013294 0.000000 0.0 0.020873 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023186 0.0 0.000000 0.017656 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.015909 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.065303 0.009528 0.114004 0.022303 0.000000 0.000000 0.000000 0.000000 0.000000 0.029306 0.019766 0.000000 0.008916 0.036726 0.000000 0.018846 0.00000 0.00000 0.000000 0.032163 0.000000 0.000000 0.000000 0.000000 0.018289 0.025032 0.000000 0.012086 0.000000 0.028000 0.024915 0.00000 0.000000 0.000000 0.026336 0.023264 0.000000 0.000000 0.000000 0.000000 0.017672 0.000000 0.067453 0.000000 0.000000 0.000000 0.000000 0.014745 0.000000 0.024109 0.030086 0.000000 0.048684 0.015159 0.021766 0.012967 0.000000 0.025730 0.000000 0.000000 0.020219 0.000000 0.016812 0.000000 0.000000 0.038828 0.058058 0.000000 0.000000 0.025853 0.000000 0.010520 0.000000 0.011512 0.000000 0.000000 0.020017 0.010900 0.012765 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.028535 0.042894 0.124737 0.032910 0.000000 0.049355 0.000000 0.000000 0.027670 0.000000 0.009402 0.000000 0.000000 0.092983 0.010684 0.000000 0.000000 0.013061 0.025762 0.036626 0.057972 0.000000 0.040632 0.010804 0.000000 0.046683 0.000000 0.011737 0.000000 0.027053 0.010427 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016666 0.011928 0.000000 0.016977 0.000000 0.000000 0.012356 0.017363 0.063209 0.012474 0.000000 0.000000 0.00000 0.024508 0.015826 0.000000 0.000000 0.010630 0.007794 0.010604 0.000000 0.000000 0.014220 0.041071 0.043290 0.026741 0.000000 0.000000 0.037624 0.0 0.013004 0.011781 0.000000 0.000000 0.015662 0.000000 0.009691 0.009471 0.000000 0.014083 0.018882 0.014831 0.007799 0.091345 0.013717 0.007591 0.000000 0.023789 0.000000 0.000000 0.000000 0.000000 0.027601 0.026520 0.000000 0.000000 0.073069 0.009578 0.000000 0.013244 0.000000 0.012185 0.000000 0.000000 0.022650 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023317 0.000000 0.000000 0.000000 0.000000 0.042309 0.000000 0.012743 0.000000 0.000000 0.000000 0.000000 0.012802 0.000000 0.012753 0.016211 0.000000 0.042182 0.023418 0.010732 0.00000 0.000000 0.016696 0.016972 0.011830 0.000000 0.000000 0.000000 0.081349 0.000000 0.015452 0.041429 0.000000 0.000000 0.000000 0.000000 0.000000 0.010514 0.000000 0.010028 0.014941 0.054377 0.000000 0.000000 0.000000 0.000000 0.000000 0.024643 0.00000 0.011118 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015509 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013110 0.057488 0.037452 0.000000 0.000000 0.072588 0.0 0.0 0.009707 0.000000 0.000000 0.000000 0.000000 0.039442 0.000000 0.000000 0.057475 0.030247 0.000000 0.000000 0.000000 0.023476 0.046407 0.00000 0.020466 0.009765 0.012314 0.040163 0.000000 0.000000 0.024150 0.046398 0.009803 0.000000 0.046407 0.042659 0.020146 0.046407 0.000000 0.000000 0.009450 0.000000 0.000000 0.00000 0.061468 0.020600 0.020271 0.000000 0.010033 0.054296 0.057987 0.020207 0.011924 0.000000 0.030526 0.0 0.010414 0.016336 0.000000 0.025848 0.025548 0.046016 0.021632 0.014937 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.049293 0.012938 0.033187 0.046243 0.000000 0.021785 0.113463 0.000000 0.000000 0.000000 0.035693 0.146883 0.000000 0.064412 0.017809 0.012839 0.000000 0.000000 0.060626 0.000000 0.011264 0.000000 0.166421 0.000000 0.072522 0.000000 0.000000 0.000000 0.013197 0.000000 0.015036 0.000000 0.000000 0.000000 0.000000 0.000000 0.026565 0.010352 0.000000 0.000000 0.000000 0.039342 0.000000 0.041520 0.046407 0.000000 0.000000 0.026376 0.013030 0.000000 0.021480 0.000000 0.000000 0.000000 0.056449 0.015207 0.012600 0.050136 0.011498 0.010740 0.000000 0.023542 0.056157 0.013048 0.046181 0.000000 0.00000 0.000000 0.000000 0.009081 0.008503 0.000000 0.014461 0.027754 0.028432 0.008790 0.000000 0.031201 0.000000 0.000000 0.000000 0.000000 0.068531 0.000000 0.095668 0.083203 0.020170 0.000000 0.036262 0.015617 0.031335 0.000000 0.025830 0.000000 0.000000 0.000000 0.073516 0.027043 0.050996 0.000000 0.000000 0.032267 0.048141 0.025057 0.000000 0.015280 0.000000 0.014859 0.000000 0.015786 0.014394 0.020615 0.0 0.000000 0.000000 0.000000 0.060815 0.081066 0.000000 0.023019 0.000000 0.011054 0.047714 0.0 0.019822 0.000000 0.000000 0.0 0.000000 0.00000 0.022021 0.047493 0.000000 0.000000 0.034389 0.000000 0.000000 0.109277 0.000000 0.000000 0.035611 0.020511 0.000000 0.016606 0.000000 0.009933 0.000000 0.041825 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.046453 0.0 0.000000 0.00000 0.000000 0.000000 0.0 0.000000 0.000000 0.026709 0.000000 0.011145 0.000000 0.000000 0.0 0.046407 0.010516 0.0 0.000000 0.012251 0.00000 0.000000 0.000000 0.036870 0.0 0.013525 0.000000 0.045817 0.072362 0.000000 0.000000 0.029873 0.044332 0.000000 0.000000 0.000000 0.019605 0.031729 0.0 0.000000 0.000000 0.024954 0.000000 0.0 0.0 0.025938 0.014991 0.010526 0.000000 0.000000 0.052637 0.011492 0.023183 0.029217 0.000000 0.069022 0.065275 0.000000 0.000000 0.000000 0.000000 0.000000 0.010507 0.000000 0.084914 0.064704 0.000000 0.046795 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.011754 0.000000 0.009328 0.00000 0.011478 0.000000 0.000000 0.011318 0.054301 0.013425 0.000000 0.0 0.0 0.030525 0.008441 0.000000 0.000000 0.014322 0.023320 0.021866 0.000000 0.012567 0.000000 0.0 0.0 0.000000 0.034930 0.000000 0.087968 0.011156 0.025417 0.096820 0.032472 0.000000 0.021983 0.000000 0.000000 0.016257 0.000000 0.0 0.101144 0.035148 0.033942 0.045538 0.036820 0.0 0.000000 0.000000 0.000000 0.014424 0.106555 0.000000 0.017936 0.000000 0.019942 0.034970 0.017320 0.000000 0.030763 0.009475 0.013563 0.014917 0.056123 0.050358 0.046407 0.012161 0.045973 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041075 0.054343 0.000000 0.000000 0.000000 0.066684 0.046612 0.000000 0.041168 0.0 0.113535 0.044376 0.043166 0.016865 0.0 0.117959 0.000000 0.000000 0.000000 0.000000 0.022408 0.0 0.000000 0.027619 0.000000 0.061228 0.0000 0.052127 0.046775 0.049248 0.000000 0.069204 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.276119 0.000000 0.011794 0.000000 0.013283 0.022334 0.000000 0.065433 0.060847 0.056171 0.000000 0.000000 0.112670 0.032415 0.032032 0.000000 0.010825 0.050684 0.038475 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.063212 0.096788 0.000000 0.0 0.000000 0.007857 0.000000 0.064461 0.021147 0.000000 0.012197 0.000000 0.038625 0.000000 0.035040 0.047154 0.000000 0.0 0.000000 0.000000 0.000000 0.011857 0.000000 0.092110 0.000000 0.000000 0.011231 0.009327 0.020896 0.011517 0.000000 0.000000 0.000000 0.099209 0.0 0.023832 0.000000 0.066436 0.025398 0.000000 0.000000 0.000000 0.016067 0.000000 0.048487 0.024202 0.016793 0.016693 0.049254 0.046407 0.019306 0.059859 0.000000 0.000000 0.025892 0.000000 0.019287 0.000000 0.0 0.000000 0.0 0.000000 0.032607 0.024763 0.000000 0.015246 0.035942 0.023053 0.000000 0.012242 0.022476 0.010282 0.013166 0.034030 0.022305 0.000000 0.010974 0.013436 0.000000 0.000000 0.163277 0.000000 0.000000 0.011510 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.069396 0.016451 0.000000 0.089803 0.000000 0.035334 0.040376 0.000000 0.000000 0.011526 0.010269 0.000000 0.012901 0.000000 0.000000 0.043479 0.043701 0.016536 0.000000 0.000000 0.014457 0.000000 0.039664 0.000000 0.025135 0.000000 0.000000 0.000000 0.000000 0.000000 0.056998 0.000000 0.0 0.000000 0.000000 0.0 0.060326 0.077953 0.059491 0.031914 0.011525 0.093391 0.013374 0.000000 0.046519 0.000000 0.017474 0.022159 0.017950 0.000000 0.067424 0.010448 0.000000 0.012758 0.062463 0.000000 0.011165 0.021751 0.057212 0.023615 0.079572 0.038116 0.0 0.000000 0.011016 0.023243 0.049462 0.000000 0.011899 0.000000 0.000000 0.000000 0.000000 0.034115 0.056527 0.041963 0.031394 0.057745 0.000000 0.035076 0.021655 0.000000 0.053659 0.125916 0.053222 0.000000 0.000000 0.000000 0.00000 0.018935 0.0 0.000000 0.000000 0.051026 0.058202 0.064484 0.015868 0.022049 0.039247 0.015929 0.000000 0.046100 0.025227 0.000000 0.039664 0.011971 0.00000 0.028034 0.000000 0.000000 0.131771 0.010454 0.000000 0.000000 0.038922 0.000000 0.0 0.00000 0.050873 0.000000 0.000000 0.028840 0.000000 0.000000 0.042521 0.012442 0.000000 0.018890 0.049103 0.039958 0.043650 0.000000 0.016650 0.034333 0.014864 0.082413 0.019495 0.000000 0.000000 0.022659 0.045842 0.011914 0.034228 0.155584 0.009732 0.000000 0.014841 0.008974 0.000000 0.000000 0.043680 0.010983 0.000000 0.000000 0.018825 0.020352 0.023308 0.032581 0.018090 0.000000 0.042645 0.000000 0.000000 0.027068 0.000000 0.000000 0.03824 0.074398 0.050696 0.039161 0.034032 0.029346 0.000000 0.000000 0.008914 0.000000 0.046407 0.000000 0.000000 0.054256 0.036517 0.035982 0.000000 0.000000 0.000000 0.067428 0.000000 0.000000 0.033971 0.017154 0.041792 0.064881 0.000000 0.000000 0.000000 0.000000 0.000000 0.035706 0.0 0.045984 0.008426 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.023844 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.015118 0.000000 0.000000 0.000000 0.000000 0.000000 0.034602 0.0 0.000000 0.0 0.0 0.014091 0.041305 0.016157 0.000000 0.000000 0.025847 0.011508 0.031828 0.000000 0.000000 0.028765 0.000000 0.039030 0.012795 0.0 0.0 0.025956 0.000000 0.00000 0.073948 0.000000 0.079019 0.000000 0.000000 0.011831 0.014537 0.000000 0.000000 0.000000 0.039794 0.000000 0.043788 0.008079 0.153032 0.037767 0.008947 0.000000 0.000000 0.0 0.085138 0.048710 0.000000 0.060480 0.0 0.0 0.031268 0.120794 0.038294 0.017010 0.000000 0.000000 0.045747 0.000000 0.064268 0.028565 0.000000 0.000000 0.106336 0.000000 0.056726 0.000000 0.048439 0.030585 0.000000 0.012337 0.086015 0.000000 0.010914 0.025707 0.014183 0.0 0.000000 0.000000 0.000000 0.011181 0.000000 0.000000 0.027082 0.000000 0.072882 0.000000 0.000000 0.009041 0.028229 0.000000 0.000000 0.000000 0.000000 0.168405 0.053050 0.000000 0.0 0.026895 0.029795 0.0 0.000000 0.000000 0.014192 0.014155 0.014693 0.024571 0.000000 0.000000 0.000000 0.058740 0.000000 0.000000 0.000000 0.000000 0.008982 0.082051 0.000000 0.024591 0.0 0.008235 0.000000 0.000000 0.000000 0.038142 0.000000 0.057202 0.043186 0.037221 0.000000 0.000000 0.022174 0.007257 0.033963 0.000000 0.000000 0.000000 0.093425 0.000000 0.000000 0.048640 0.000000 0.000000 0.000000 0.053461 0.000000 0.000000 0.000000 0.000000 0.117831 0.029812 0.000000 0.038812 0.012996 0.046407 0.012788 0.000000 0.000000 0.026159 0.000000 0.00000 0.000000 0.036716 0.012128 0.021385 0.021223 0.000000 0.009964 0.000000 0.011702 0.000000 0.000000 0.053050 0.024406 0.016942 0.000000 0.000000 0.062586 0.077215 0.000000 0.000000 0.015607 0.010078 0.000000 0.000000 0.000000 0.000000 0.010883 0.051663 0.000000 0.000000 0.040428 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.008518 0.000000 0.000000 0.000000 0.019942 0.013509 0.0 0.000000 0.008725 0.000000 0.045415 0.084341 0.037412 0.041695 0.023435 0.068153 0.011724 0.127534 0.000000 0.000000 0.019295 0.023887 0.037954 0.000000 0.067812 0.027374 0.013827 0.028146 0.123164 0.000000 0.0 0.012540 0.019802 0.034142 0.023086 0.000000 0.000000 0.136241 0.020840 0.000000 0.000000 0.022104 0.010155 0.000000 0.046531 0.016998 0.000000 0.051730 0.117073 0.013411 0.013845 0.050370 0.033760 0.043865 0.091318 0.035794 0.047486 0.060770 0.000000 0.051909 0.018573 0.000000 0.009247 0.065800 0.019957 0.110961 0.042439 0.068755 0.094227 0.000000 0.040699 0.030150 0.000000 0.000000 0.082580 0.009658 0.011972 0.000000 0.000000 0.000000 0.000000 0.023017 0.025481 0.025286 0.000000 0.042701 0.000000 0.011682 0.032107 0.056951 0.021431 0.000000 0.013514 0.052129 0.021469 0.0 0.000000 0.064698 0.039122 0.000000 0.026049 0.025240 0.0 0.014903 0.000000 0.020790 0.000000 0.012467 0.000000 0.000000 0.025936 0.064246 0.030531 0.00000 0.050269 0.028035 0.011043 0.000000 0.094713 0.050527 0.019042 0.000000 0.025062 0.021495 0.107904 0.009337 0.000000 0.040203 0.000000 0.000000 0.000000 0.000000 0.024634 0.000000 0.000000 0.019356 0.000000 0.000000 0.000000 0.046243 0.011486 0.011712 0.025118 0.000000 0.000000 0.000000 0.000000 0.011407 0.000000 0.031794 0.036816 0.010741 0.052184 0.006761 0.057852 0.017254 0.099329 0.032631 0.056522 0.016280 0.027500 0.064005 0.073745 0.026327 0.049591 0.070449 0.037637 0.026697 0.058452 0.000000 0.032903 0.000000 0.016152 0.023326 0.000000 0.050736 0.000000 0.000000 0.014007 0.014287 0.009500 0.011557 0.027211 0.045686 0.000000 0.000000 0.080170 0.010239 0.032291 0.022276 0.018221 0.000000 0.000000 0.112427 0.113482 0.000000 0.062209 0.117271 0.010266 0.022515 0.012586 0.036748 0.000000 0.096929 0.056373 0.029795 0.073253 0.012779 0.021687 0.064116 0.017018 0.040755 0.080633 0.009232 0.034650 0.038732 0.000000 0.000000 0.011671 0.068667 0.000000 0.021136 0.000000 0.000000 0.000000 0.040796 0.036563 0.026632 0.000000 0.015967 0.024087 0.000000 0.000000 0.112735 0.000000 0.000000 0.000000 0.019942 0.032086 0.032086 0.009444 0.000000 0.000000 0.042812 0.011343 0.000000 0.019858 0.000000 0.000000 0.029144 0.029144 0.000000 0.000000 0.028871 0.157737 0.032695 0.000000 0.000000 0.000000 0.000000 0.000000 0.041706 0.016101 0.027983 0.015843 0.015843 0.028871 0.000000 0.000000 0.049870 0.013191 0.013191 0.041415 0.029766 0.029766 0.027883 0.027883 0.034231 0.009057 0.068126 0.012902 0.000000 0.024181 0.031443 0.031443 0.011483 0.009271 0.009190 0.010540 0.000000 0.000000 0.000000 0.044865 0.031315 0.000000 0.000000 0.000000 0.022796 0.030605 0.012643 0.000000 0.024942 0.009110 0.036523 0.030851 0.000000 0.031618 0.044683 0.000000 0.000000 0.062922 0.00000 0.000000 0.000000 0.000000 0.057138 0.022987 0.000000 0.000000 0.076160 0.070935 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017365 0.079944 0.000000 0.000000 0.036415 0.036415 0.078144 0.000000 0.000000 0.000000 0.036769 0.000000 0.056055 0.000000 0.010427 0.017204 0.017204 0.068722 0.064548 0.024397 0.072012 0.037295 0.058710 0.016913 0.012886 0.056397 0.084013 0.032114 0.021049 0.000000 0.000000 0.000000 0.023576 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.114184 0.000000 0.051911 0.020604 0.019354 0.108330 0.082879 0.041226 0.022371 0.000000 0.000000 0.050632 0.011142 0.029930 0.009327 0.031128 0.013201 0.011895 0.011895 0.024200 0.042450 0.050298 0.058443 0.000000 0.009284 0.011995 0.011246 0.000000 0.000000 0.000000 0.000000 0.047013 0.000000 0.087667 0.000000 0.017549 0.058443 0.000000 0.036732 0.013427 0.109188 0.059093 0.067214 0.009143 0.011307 0.013888 0.022221 0.000000 0.000000 0.020679 0.018151 0.000000 0.079710 0.067902 0.000000 0.035566 0.021636 0.029974 0.018910 0.037104 0.000000 0.000000 0.020126 0.032596 0.033288 0.022497 0.024335 0.028697 0.048133 0.088480 0.000000 0.034852 0.059139 0.022549 0.012615 0.027617 0.007758 0.017290 0.059761 0.009377 0.010465 0.012126 0.010570 0.022112 0.000000 0.000000 0.013268 0.000000 0.000000 0.017590 0.026516 0.000000 0.000000 0.000000 0.012839 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.014266 0.105249 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047605 0.025156 0.000000 0.028313 0.060122 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010667 0.075734 0.047520 0.0 0.047026 0.084351 0.027798 0.000000 0.026123 0.000000 0.000000 0.009604 0.000000 0.011186 0.000000 0.035575 0.019948 0.044878 0.035148 0.016904 0.026221 0.000000 0.000000 0.009330 0.013533 0.022597 0.000000 0.103427 0.009460 0.000000 0.000000 0.000000 0.000000 0.000000 0.013887 0.000000 0.000000 0.000000 0.000000 0.015677 0.017139 0.000000 0.000000 0.028048 0.000000 0.000000 0.021431 0.000000 0.018063 0.000000 0.000000 0.009223 0.043858 0.103653 0.044495 0.010430 0.021401 0.017351 0.000000 0.017708 0.000000 0.000000 0.015854 0.000000 0.000000 0.026326 0.000000 0.018764 0.033263 0.020829 0.009457 0.016135 0.000000 0.018283 0.000000 0.012491 0.008326 0.000000 0.025140 0.000000 0.027667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025404 0.025404 0.016647 0.000000 0.000000 0.000000 0.0 0.011043 0.000000 0.000000 0.013679 0.000000 0.000000 0.011055 0.000000 0.000000 0.00000 0.012057 0.025319 0.000000 0.000000 0.009072 0.016130 0.018095 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.146881 0.036682 0.013629 0.000000 0.025319 0.012554 0.000000 0.015632 0.015632 0.000000 0.033875 0.000000 0.055119 0.010110 0.000000 0.013579 0.000000 0.000000 0.013884 0.036580 0.000000 0.037126 0.000000 0.034675 0.000000 0.000000 0.012609 0.012958 0.000000 0.01568 0.027877 0.043590 0.064993 0.040469 0.000000 0.028544 0.000000 0.000000 0.000000 0.000000 0.000000 0.024276 0.000000 0.023136 0.000000 0.000000 0.012762 0.000000 0.000000 0.000000 0.000000 0.012538 0.000000 0.008878 0.000000 0.012474 0.000000 0.00000 0.014615 0.000000 0.000000 0.016000 0.000000 0.000000 0.017236 0.000000 0.000000 0.014238 0.018475 0.000000 0.019564 0.024521 0.000000 0.000000 0.000000 0.0 0.021330 0.000000 0.000000 0.016531 0.011876 0.000000 0.000000 0.000000 0.000000 0.036814 0.127574 0.043197 0.000000 0.000000 0.000000 0.000000 0.013083 0.049406 0.028500 0.008443 0.011620 0.000000 0.098369 0.000000 0.000000 0.000000 0.000000 0.016055 0.000000 0.019925 0.000000 0.000000 0.000000 0.000000 0.013171 0.000000 0.000000 0.000000 0.000000 0.000000 0.035493 0.000000 0.000000 0.010450 0.000000 0.023142 0.000000 0.000000 0.017469 0.036796 0.021611 0.000000 0.000000 0.113978 0.025141 0.000000 0.057283 0.000000 0.043755 0.009473 0.000000 0.000000 0.000000 0.000000 0.0 0.047058 0.000000 0.013789 0.000000 0.011840 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.013442 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023247 0.000000 0.000000 0.000000 0.023044 0.011647 0.015148 0.012886 0.000000 0.000000 0.0 0.009948 0.015533 0.000000 0.000000 0.000000 0.010000 0.011643 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.013570 0.016045 0.079923 0.000000 0.000000 0.000000 0.024647 0.000000 0.000000 0.027180 0.038580 0.018250 0.000000 0.000000 0.018459 0.000000 0.000000 0.000000 0.040562 0.000000 0.000000 0.000000 0.018988 0.047940 0.000000 0.019059 0.009871 0.012492 0.000000 0.013607 0.000000 0.000000 0.000000 0.000000 0.023386 0.000000 0.027883 0.000000 0.015265 0.011533 0.009412 0.000000 0.000000 0.000000 0.023612 0.000000 0.015017 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014870 0.010294 0.000000 0.009724 0.000000 0.019793 0.0 0.014601 0.000000 0.010353 0.023607 0.047913 0.000000 0.035126 0.024291 0.000000 0.018026 0.000000 0.046751 0.022746 0.037149 0.009527 0.000000 0.000000 0.000000 0.026212 0.000000 0.000000 0.012310 0.014569 0.014569 0.000000 0.021645 0.000000 0.010905 0.010905 0.0 0.000000 0.000000 0.000000 0.110319 0.000000 0.000000 0.000000 0.022915 0.012609 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022880 0.070787 0.000000 0.000000 0.000000 0.000000 0.000000 0.068144 0.012636 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016461 0.025030 0.079845 0.056841 0.000000 0.013031 0.022379 0.028993 0.000000 0.000000 0.000000 0.014067 0.012543 0.000000 0.016512 0.000000 0.028626 0.024153 0.009090 0.000000 0.020265 0.020420 0.043030 0.000000 0.000000 0.000000 0.008174 0.000000 0.017771 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.028726 0.000000 0.000000 0.000000 0.031377 0.000000 0.000000 0.000000 0.000000 0.018696 0.0 0.041673 0.00000 0.020579 0.000000 0.000000 0.056879 0.000000 0.0 0.000000 0.000000 0.000000 0.011501 0.026511 0.000000 0.000000 0.000000 0.046608 0.000000 0.0 0.000000 0.015388 0.017669 0.000000 0.026763 0.000000 0.011417 0.024986 0.000000 0.016942 0.000000 0.011156 0.000000 0.000000 0.000000 0.046908 0.000000 0.000000 0.000 0.000000 0.000000 0.000000 0.015105 0.000000 0.000000 0.000000 0.011132 0.000000 0.073301 0.000000 0.013310 0.031243 0.012116 0.000000 0.048301 0.039444 0.000000 0.022480 0.039352 0.011717 0.000000 0.000000 0.012194 0.025939 0.025413 0.010941 0.039770 0.000000 0.018195 0.000000 0.028262 0.000000 0.000000 0.041367 0.023298 0.000000 0.006971 0.022324 0.013937 0.030914 0.014905 0.000000 0.000000 0.036924 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.094527 0.010855 0.015782 0.000000 0.000000 0.000000 0.000000 0.010191 0.000000 0.000000 0.025688 0.000000 0.000000 0.000000 0.028625 0.011850 0.000000 0.000000 0.023203 0.013201 0.016931 0.000000 0.038472 0.000000 0.040521 0.013258 0.000000 0.000000 0.000000 0.019477 0.028194 0.020124 0.012610 0.014072 0.000000 0.057044 0.000000 0.010566 0.049101 0.000000 0.000000 0.000000 0.078204 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032765 0.000000 0.024677 0.014780 0.030728 0.000000 0.000000 0.000000 0.012582 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020024 0.016048 0.000000 0.000000 0.000000 0.000000 0.021535 0.000000 0.000000 0.000000 0.010229 0.000000 0.020621 0.026226 0.000000 0.000000 0.010913 0.000000 0.000000 0.019140 0.000000 0.013400 0.000000 0.000000 0.000000 0.000000 0.000000 0.012065 0.028431 0.000000 0.011545 0.000000 0.000000 0.000000 0.000000 0.012902 0.000000 0.000000 0.030608 0.000000 0.000000 0.000000 0.009160 0.000000 0.027216 0.000000 0.045839 0.000000 0.000000 0.000000 0.000000 0.019611 0.000000 0.000000 0.000000 0.000000 0.000000 0.028359 0.095312 0.000000 0.000000 0.019894 0.00000 0.012564 0.000000 0.035459 0.0 0.000000 0.000000 0.000000 0.000000 0.034636 0.000000 0.000000 0.043332 0.000000 0.000000 0.000000 0.000000 0.000000 0.034006 0.064791 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012943 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016197 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.036810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018290 0.013068 0.000000 0.000000 0.000000 0.079168 0.017280 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028809 0.018358 0.016888 0.000000 0.000000 0.017148 0.010228 0.000000 0.000000 0.000000 0.0 0.000000 0.046305 0.000000 0.000000 0.000000 0.046313 0.011948 0.000000 0.000000 0.046313 0.000000 0.000000 0.009248 0.000000 0.031995 0.000000 0.042122 0.012239 0.00000 0.0 0.000000 0.000000 0.026183 0.000000 0.0 0.000000 0.024585 0.117598 0.049981 0.000000 0.000000 0.000000 0.000000 0.000000 0.013721 0.020036 0.040171 0.000000 0.039285 0.012274 0.016958 0.000000 0.0 0.008374 0.000000 0.000000 0.011690 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.031848 0.000000 0.000000 0.000000 0.025169 0.043111 0.030865 0.000000 0.030403 0.012387 0.000000 0.000000 0.000000 0.015087 0.035419 0.000000 0.011369 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.015376 0.032913 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020364 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.036779 0.000000 0.010841 0.000000 0.016222 0.000000 0.000000 0.000000 0.000000 0.013446 0.000000 0.071935 0.000000 0.000000 0.000000 0.014152 0.012420 0.000000 0.028685 0.000000 0.020310 0.034457 0.015281 0.000000 0.000000 0.020444 0.015574 0.011568 0.013605 0.000000 0.000000 0.011295 0.021794 0.000000 0.026695 0.000000 0.000000 0.022447 0.014594 0.000000 0.041263 0.00000 0.027852 0.015855 0.000000 0.000000 0.000000 0.000000 0.018465 0.00000 0.0 0.000000 0.00000 0.000000 0.020902 0.000000 0.000000 0.00000 0.000000 0.000000 0.00000 0.037170 0.000000 0.000000 0.095361 0.000000 0.000000 0.000000 0.000000 0.012419 0.069932 0.009938 0.050257 0.094192 0.034343 0.081190 0.000000 0.009906 0.021577 0.000000 0.008666 0.025502 0.000000 0.039368 0.000000 0.020277 0.000000 0.015783 0.030201 0.009497 0.000000 0.000000 0.000000 0.048022 0.018160 0.000000 0.000000 0.000000 0.012791 0.013465 0.016025 0.145317 0.000000 0.000000 0.000000 0.000000 0.000000 0.015791 0.000000 0.031277 0.00000 0.000000 0.000000 0.000000 0.023734 0.019966 0.012401 0.00000 0.000000 0.000000 0.016677 0.000000 0.036666 0.000000 0.000000 0.000000 0.029448 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024542 0.000000 0.00000 0.052494 0.000000 0.032618 0.000000 0.013157 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012643 0.000000 0.067134 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014369 0.000000 0.013322 0.00000 0.000000 0.000000 0.000000 0.00000 0.000000 0.009647 0.00000 0.022554 0.010890 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009663 0.000000 0.000000 0.035415 0.047786 0.000000 0.012076 0.014178 0.000000 0.000000 0.000000 0.0 0.043921 0.000000 0.000000 0.024800 0.000000 0.000000 0.000000 0.000000 0.020115 0.000000 0.00000 0.000000 0.012645 0.024500 0.021484 0.000000 0.000000 0.000000 0.000000 0.009511 0.05842 0.000000 0.011843 0.0 0.033878 0.000000 0.000000 0.000000 0.016714 0.014372 0.00000 0.015333 0.0 0.000000 0.000000 0.000000 0.000000 0.025855 0.000000 0.058127 0.000000 0.000000 0.014705 0.025015 0.012547 0.000000 0.000000 0.011974 0.014088 0.083273 0.011328 0.000000 0.069048 0.000000 0.000000 0.017571 0.000000 0.000000 0.000000 0.025480 0.000000 0.000000 0.016528 0.012565 0.000000 0.000000 0.012318 0.000000 0.000000 0.013478 0.000000 0.000000 0.0 0.026505 0.000000 0.000000 0.000000 0.000000 0.000000 0.015484 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029565 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037182 0.00000 0.000000 0.000000 0.000000 0.000000 0.012719 0.021599 0.009563 0.000000 0.000000 0.027542 0.000000 0.000000 0.030122 0.000000 0.000000 0.0 0.000000 0.102674 0.009504 0.000000 0.023278 0.010448 0.012614 0.044177 0.000000 0.040940 0.000000 0.0 0.000000 0.000000 0.035106 0.000000 0.014253 0.017025 0.000000 0.013834 0.023537 0.000000 0.000000 0.032843 0.000000 0.000000 0.000000 0.014593 0.000000 0.000000 0.000000 0.000000 0.010704 0.000000 0.000000 0.00000 0.000000 0.00000 0.026244 0.000000 0.000000 0.000000 0.000000 0.000000 0.013988 0.000000 0.010928 0.121748 0.000000 0.000000 0.015371 0.000000 0.000000 0.000000 0.000000 0.009639 0.000000 0.014835 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012226 0.0 0.010928 0.031074 0.000000 0.000000 0.000000 0.000000 0.000000 0.020140 0.024350 0.000000 0.008714 0.012052 0.015831 0.000000 0.016291 0.000000 0.000000 0.045788 0.000000 0.000000 0.010503 0.031240 0.063505 0.009056 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011533 0.000000 0.000000 0.000000 0.010038 0.018246 0.040235 0.026849 0.031315 0.000000 0.008726 0.000000 0.000000 0.018451 0.015195 0.011713 0.000000 0.000000 0.000000 0.011159 0.013769 0.000000 0.000000 0.010440 0.010447 0.051937 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.015485 0.000000 0.00000 0.052004 0.000000 0.035973 0.000000 0.022242 0.000000 0.014912 0.011525 0.000000 0.000000 0.000000 0.010832 0.051744 0.058661 0.000000 0.000000 0.000000 0.000000 0.000000 0.011680 0.011807 0.000000 0.026493 0.014391 0.03888 0.000000 0.000000 0.021094 0.000000 0.013206 0.014218 0.000000 0.000000 0.000000 0.012260 0.019097 0.000000 0.000000 0.009724 0.025499 0.000000 0.000000 0.022959 0.000000 0.000000 0.000000 0.014611 0.059900 0.000000 0.074291 0.000000 0.000000 0.000000 0.000000 0.000000 0.034234 0.036523 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.075124 0.000000 0.038084 0.014081 0.025124 0.000000 0.000000 0.009056 0.000000 0.000000 0.015979 0.000000 0.000000 0.000000 0.039324 0.034729 0.000000 0.016517 0.033651 0.000000 0.000000 0.000000 0.083705 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011194 0.000000 0.000000 0.052490 0.00000 0.017648 0.000000 0.00000 0.000000 0.009427 0.008002 0.000000 0.000000 0.000000 0.000000 0.000000 0.007734 0.019910 0.000000 0.027648 0.000000 0.027937 0.000000 0.00000 0.000000 0.012125 0.000000 0.000000 0.000000 0.048435 0.025742 0.000000 0.021748 0.016259 0.020514 0.000000 0.000000 0.010645 0.000000 0.016128 0.000000 0.009029 0.000000 0.000000 0.029932 0.000000 0.083080 0.018191 0.000000 0.000000 0.000000 0.022527 0.000000 0.035694 0.010192 0.017244 0.000000 0.000000 0.000000 0.000000 0.000000 0.015384 0.017848 0.011311 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.036079 0.00000 0.000000 0.060898 0.028954 0.01526 0.00000 0.000000 0.000000 0.027293 0.010751 0.117580 0.011046 0.000000 0.010243 0.000000 0.000000 0.012494 0.000000 0.009901 0.000000 0.000000 0.018053 0.000000 0.024233 0.022349 0.00000 0.000000 0.009625 0.010201 0.015494 0.000000 0.010718 0.0 0.009879 0.000000 0.000000 0.022452 0.025853 0.014952 0.011712 0.000000 0.000000 0.000000 0.016207 0.023035 0.000000 0.000000 0.000000 0.012387 0.000000 0.023577 0.000000 0.000000 0.037328 0.039244 0.012701 0.000000 0.011466 0.066278 0.000000 0.000000 0.000000 0.000000 0.038199 0.014231 0.000000 0.000000 0.000000 0.000000 0.025370 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.035275 0.032769 0.000000 0.013582 0.000000 0.022948 0.00000 0.000000 0.015623 0.000000 0.028185 0.000000 0.013941 0.000000 0.010255 0.000000 0.000000 0.000000 0.011227 0.033583 0.000000 0.031051 0.014869 0.012568 0.000000 0.010128 0.087895 0.000000 0.000000 0.066675 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014809 0.044692 0.000000 0.000000 0.000000 0.000000 0.009681 0.000000 0.015077 0.013432 0.000000 0.000000 0.000000 0.000000 0.000000 0.010136 0.082036 0.000000 0.064653 0.000000 0.039061 0.033199 0.000000 0.035723 0.000 0.008881 0.034724 0.013520 0.0 0.000000 0.009814 0.000000 0.047627 0.034294 0.000000 0.000000 0.00000 0.000000 0.000000 0.012449 0.000000 0.012322 0.022696 0.026856 0.029232 0.0 0.026979 0.010901 0.000000 0.0 0.026230 0.000000 0.031090 0.000000 0.017970 0.000000 0.008298 0.000000 0.027444 0.000000 0.000000 0.029525 0.000000 0.000000 0.029621 0.074574 0.032188 0.016392 0.065875 0.037138 0.013427 0.000000 0.017827 0.000000 0.000000 0.009665 0.050864 0.000000 0.010630 0.000000 0.000000 0.018071 0.000000 0.023223 0.012716 0.000000 0.000000 0.031311 0.012118 0.008772 0.000000 0.000000 0.000000 0.033780 0.026416 0.017754 0.000000 0.014620 0.000000 0.000000 0.087529 0.015415 0.017616 0.094077 0.000000 0.045292 0.000000 0.000000 0.015560 0.000000 0.000000 0.014513 0.077398 0.016338 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012940 0.000000 0.000000 0.000000 0.049986 0.000000 0.021949 0.013516 0.007639 0.011702 0.019395 0.010765 0.000000 0.011832 0.000000 0.000000 0.046187 0.000000 0.019214 0.00000 0.000000 0.019013 0.000000 0.000000 0.000000 0.081129 0.000000 0.000000 0.017268 0.000000 0.062068 0.019959 0.033309 0.000000 0.000000 0.000000 0.043122 0.012316 0.017668 0.012970 0.030202 0.000000 0.000000 0.014204 0.023022 0.000000 0.000000 0.000000 0.000000 0.034580 0.000000 0.000000 0.000000 0.019046 0.0 0.000000 0.000000 0.000000 0.000000 0.023345 0.000000 0.009192 0.000000 0.000000 0.014474 0.024350 0.026285 0.013045 0.024181 0.000000 0.000000 0.058081 0.000000 0.000000 0.043073 0.000000 0.000000 0.000000 0.000000 0.017203 0.000000 0.000000 0.032067 0.029688 0.010389 0.000000 0.011402 0.000000 0.009466 0.000000 0.000000 0.011488 0.027639 0.000000 0.013391 0.0 0.000000 0.008912 0.054627 0.021373 0.000000 0.000000 0.021116 0.000000 0.018226 0.000000 0.000000 0.010420 0.000000 0.069380 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.019962 0.014391 0.000000 0.010964 0.000000 0.065067 0.012564 0.000000 0.000000 0.017909 0.000000 0.000000 0.000000 0.000000 0.092479 0.000000 0.000000 0.000000 0.000000 0.018189 0.000000 0.000000 0.014231 0.000000 0.000000 0.000000 0.049711 0.000000 0.000000 0.000000 0.010301 0.019594 0.000000 0.000000 0.060156 0.013153 0.000000 0.013086 0.000000 0.000000 0.000000 0.017187 0.010137 0.000000 0.000000 0.000000 0.021282 0.000000 0.000000 0.000000 0.010231 0.000000 0.021932 0.015979 0.000000 0.000000 0.000000 0.000000 0.000000 0.051744 0.009029 0.000000 0.000000 0.055666 0.084622 0.022525 0.000000 0.000000 0.000000 0.014814 0.000000 0.000000 0.000000 0.000000 0.000000 0.010751 0.000000 0.017283 0.012205 0.000000 0.000000 0.000000 0.027714 0.020793 0.000000 0.000000 0.000000 0.013829 0.000000 0.0 0.00000 0.090461 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032712 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.036973 0.022748 0.000000 0.000000 0.000000 0.013106 0.000000 0.000000 0.000000 0.009390 0.000000 0.026946 0.000000 0.035963 0.000000 0.011008 0.0 0.033623 0.000000 0.029296 0.000000 0.000000 0.028257 0.009934 0.000000 0.000000 0.013366 0.000000 0.008966 0.014270 0.038022 0.017449 0.000000 0.048807 0.000000 0.070054 0.011109 0.000000 0.000000 0.015177 0.000000 0.040707 0.000000 0.075503 0.012902 0.089494 0.011353 0.000000 0.019507 0.000000 0.000000 0.076525 0.021087 0.009298 0.000000 0.000000 0.000000 0.00000 0.019245 0.006890 0.022306 0.018626 0.000000 0.000000 0.0 0.000000 0.038923 0.000000 0.052979 0.000000 0.010486 0.013475 0.000000 0.000000 0.045658 0.000000 0.000000 0.000000 0.000000 0.019648 0.017086 0.027197 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022121 0.000000 0.022023 0.000000 0.000000 0.000000 0.000000 0.000000 0.052042 0.0 0.000000 0.017395 0.000000 0.0 0.000000 0.078449 0.000000 0.012797 0.000000 0.000000 0.023073 0.000000 0.000000 0.016721 0.000000 0.046501 0.000000 0.000000 0.013600 0.00000 0.000000 0.009891 0.056519 0.018706 0.015463 0.000000 0.053916 0.000000 0.000000 0.000000 0.000000 0.012636 0.011640 0.010843 0.00000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.105022 0.031322 0.000000 0.029834 0.018112 0.000000 0.009256 0.000000 0.022315 0.000000 0.015116 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014775 0.000000 0.0 0.016404 0.020914 0.000000 0.026206 0.030810 0.025031 0.012430 0.000000 0.000000 0.0 0.011223 0.040594 0.000000 0.050521 0.000000 0.000000 0.000000 0.000000 0.048369 0.007500 0.000000 0.000000 0.000000 0.012606 0.021416 0.015371 0.000000 0.000000 0.000000 0.000000 0.000000 0.012498 0.000000 0.000000 0.027374 0.012270 0.00000 0.000000 0.025648 0.000000 0.000000 0.013739 0.000000 0.000000 0.061500 0.000000 0.000000 0.000000 0.014569 0.015206 0.014268 0.000000 0.059375 0.000000 0.017155 0.000000 0.050091 0.025595 0.010847 0.000000 0.000000 0.010379 0.000000 0.000000 0.017039 0.000000 0.000000 0.021589 0.023658 0.000000 0.018554 0.018120 0.043998 0.000000 0.000000 0.012303 0.000000 0.009961 0.000000 0.000000 0.000000 0.010297 0.000000 0.00000 0.017067 0.000000 0.000000 0.000000 0.000000 0.010517 0.000000 0.043307 0.000000 0.029299 0.012200 0.011857 0.012926 0.013926 0.000000 0.000000 0.033106 0.048296 0.000000 0.000000 0.000000 0.000000 0.010147 0.062871 0.000000 0.010628 0.000000 0.0 0.031103 0.050513 0.000000 0.000000 0.014291 0.000000 0.000000 0.020795 0.048350 0.020450 0.000000 0.012722 0.000000 0.008183 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.060887 0.000000 0.000000 0.159673 0.000000 0.012282 0.000000 0.000000 0.019685 0.000000 0.000000 0.000000 0.00000 0.057163 0.067174 0.011286 0.000000 0.013431 0.012020 0.000000 0.000000 0.000000 0.000000 0.021352 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016705 0.052685 0.000000 0.000000 0.000000 0.089533 0.000000 0.090254 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.018470 0.000000 0.054542 0.000000 0.000000 0.000000 0.000000 0.000000 0.008847 0.013424 0.000000 0.022437 0.000000 0.0 0.000000 0.013656 0.000000 0.018510 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.019072 0.032682 0.079906 0.0 0.0 0.025058 0.000000 0.000000 0.029752 0.000000 0.045262 0.010975 0.000000 0.0 0.000000 0.014525 0.000000 0.000000 0.000000 0.000000 0.0 0.055708 0.030410 0.000000 0.018182 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012157 0.041161 0.000000 0.0 0.012754 0.0 0.000000 0.000000 0.000000 0.028627 0.000000 0.011586 0.000000 0.046482 0.082587 0.013322 0.010129 0.015231 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.013393 0.000000 0.000000 0.000000 0.000000 0.014692 0.009976 0.000000 0.000000 0.012818 0.029424 0.000000 0.021531 0.000000 0.000000 0.000000 0.091562 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014251 0.049472 0.000000 0.000000 0.000000 0.000000 0.013424 0.014851 0.000000 0.000000 0.039785 0.063090 0.050919 0.0 0.000000 0.00000 0.053474 0.016806 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.029998 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.020648 0.000000 0.012959 0.013816 0.000000 0.000000 0.023731 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.061885 0.000000 0.000000 0.000000 0.000000 0.009616 0.000000 0.000000 0.000000 0.000000 0.035905 0.000000 0.000000 0.019214 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009894 0.000000 0.010820 0.000000 0.00000 0.020859 0.012859 0.015384 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.0 0.000000 0.009603 0.000000 0.000000 0.013849 0.036776 0.000000 0.000000 0.000000 0.011285 0.000000 0.00000 0.000000 0.018354 0.000000 0.146636 0.000000 0.000000 0.021251 0.000000 0.000000 0.000000 0.018037 0.024026 0.000000 0.000000 0.000000 0.000000 0.000000 0.011578 0.000000 0.000000 0.000000 0.000000 0.011666 0.024832 0.013909 0.000000 0.000000 0.0 0.000000 0.024498 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014450 0.014891 0.000000 0.000000 0.024998 0.010638 0.000000 0.031716 0.048025 0.000000 0.000000 0.00000 0.000000 0.079225 0.000000 0.000000 0.000000 0.020116 0.000000 0.033212 0.000000 0.01476 0.0 0.000000 0.00000 0.021456 0.011293 0.015706 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.042889 0.000000 0.000000 0.020071 0.039016 0.019833 0.000000 0.000000 0.000000 0.000000 0.014927 0.092899 0.000000 0.013656 0.000000 0.028583 0.000000 0.000000 0.000000 0.000000 0.000000 0.016885 0.025713 0.000000 0.044183 0.053834 0.020067 0.014366 0.0 0.000000 0.000000 0.0 0.00000 0.028005 0.000000 0.012664 0.026138 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.021797 0.017219 0.000000 0.000000 0.012993 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.013066 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.015862 0.000000 0.019123 0.015081 0.023091 0.000000 0.0 0.031644 0.00000 0.0 0.000000 0.077032 0.000000 0.000000 0.052873 0.034170 0.033022 0.000000 0.0 0.000000 0.000000 0.000000 0.020074 0.000000 0.000000 0.000000 0.000000 0.067477 0.000000 0.000000 0.000000 0.000000 0.00000 0.011237 0.000000 0.000000 0.000000 0.000000 0.020931 0.031514 0.000000 0.021854 0.010894 0.000000 0.0 0.025528 0.000000 0.000000 0.000000 0.000000 0.000000 0.020063 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.00000 0.0 0.000000 0.000000 0.000000 0.013125 0.000000 0.000000 0.011650 0.000000 0.000000 0.080188 0.115755 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.011490 0.000000 0.024019 0.000000 0.025438 0.000000 0.012562 0.040834 0.014724 0.000000 0.000000 0.010838 0.000000 0.000000 0.000000 0.013733 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.011596 0.000000 0.000000 0.000000 0.000000 0.024716 0.00000 0.000000 0.062241 0.021848 0.000000 0.057710 0.000000 0.000000 0.000000 0.012434 0.104577 0.0 0.038679 0.031553 0.0 0.016913 0.000000 0.000000 0.014133 0.000000 0.000000 0.010916 0.083267 0.011766 0.000000 0.000000 0.039396 0.000000 0.00000 0.00000 0.0 0.000000 0.000000 0.022730 0.047729 0.00000 0.000000 0.000000 0.011291 0.000000 0.000000 0.000000 0.040821 0.0 0.000000 0.000000 0.0 0.032372 0.015488 0.000000 0.000000 0.021820 0.025172 0.000000 0.000000 0.041451 0.000000 0.084453 0.020271 0.013319 0.000000 0.0000 0.000000 0.053720 0.000000 0.013425 0.0 0.013377 0.011618 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050084 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012620 0.000000 0.000000 0.000000 0.000000 0.0 0.012282 0.000000 0.038105 0.000000 0.028512 0.015891 0.000000 0.000000 0.000000 0.065500 0.052778 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058726 0.000000 0.0 0.026006 0.000000 0.000000 0.015076 0.000000 0.000000 0.000000 0.025262 0.014190 0.012088 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.086020 0.102538 0.000000 0.000000 0.00000 0.008291 0.075082 0.000000 0.000000 0.000000 0.016078 0.000000 0.012344 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.016428 0.000000 0.000000 0.000000 0.000000 0.014414 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.018352 0.000000 0.000000 0.057643 0.020869 0.000000 0.000000 0.000000 0.027345 0.054052 0.000000 0.087315 0.014221 0.030404 0.013667 0.059388 0.041746 0.019097 0.000000 0.000000 0.000000 0.0 0.037649 0.00000 0.000000 0.000000 0.000000 0.031185 0.000000 0.036224 0.000000 0.000000 0.000000 0.011776 0.000000 0.030083 0.000000 0.011087 0.067586 0.040367 0.010611 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.016495 0.030278 0.013549 0.000000 0.013514 0.048265 0.000000 0.015091 0.000000 0.000000 0.000000 0.019062 0.000000 0.000000 0.054369 0.000000 0.000000 0.000000 0.000000 0.013555 0.042104 0.099558 0.000000 0.000000 0.017422 0.000000 0.000000 0.010639 0.034915 0.021304 0.0 0.000000 0.031908 0.000000 0.012783 0.024806 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.073702 0.000000 0.000000 0.000000 0.000000 0.000000 0.021783 0.000000 0.000000 0.000000 0.022258 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019288 0.055737 0.064413 0.000000 0.017660 0.000000 0.000000 0.027381 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.025264 0.015438 0.012111 0.068638 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.042495 0.000000 0.000000 0.023202 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019848 0.000000 0.000000 0.000000 0.014251 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030104 0.000000 0.000000 0.000000 0.000000 0.026812 0.035221 0.0 0.020214 0.115261 0.018540 0.015032 0.016221 0.009915 0.000000 0.000000 0.000000 0.027190 0.000000 0.000000 0.049877 0.000000 0.000000 0.000000 0.010076 0.000000 0.000000 0.037415 0.022636 0.000000 0.022484 0.000000 0.009020 0.000000 0.012707 0.000000 0.000000 0.000000 0.000000 0.011216 0.032762 0.000000 0.000000 0.000000 0.014722 0.016244 0.000000 0.000000 0.142543 0.008902 0.033619 0.000000 0.000000 0.013051 0.011683 0.009258 0.000000 0.000000 0.072672 0.022638 0.000000 0.000000 0.000000 0.018833 0.000000 0.000000 0.000000 0.000000 0.010412 0.000000 0.031319 0.000000 0.014656 0.039944 0.025535 0.000000 0.000000 0.015447 0.000000 0.000000 0.021965 0.016252 0.000000 0.008887 0.020462 0.000000 0.015743 0.015743 0.000000 0.000000 0.000000 0.000000 0.027630 0.000000 0.056045 0.000000 0.019228 0.022753 0.028757 0.000000 0.060837 0.000000 0.009225 0.000000 0.000000 0.000000 0.015314 0.000000 0.018950 0.000000 0.000000 0.047398 0.000000 0.000000 0.000000 0.011267 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011473 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.012566 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.014426 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.088797 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.040772 0.010482 0.023640 0.049578 0.036874 0.052405 0.023031 0.063336 0.017054 0.073744 0.000000 0.014094 0.041182 0.041702 0.000000 0.000000 0.095774 0.074067 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016646 0.069323 0.068869 0.031665 0.063452 0.000000 0.000000 0.030613 0.000000 0.000000 0.024836 0.000000 0.000000 0.000000 0.009542 0.000000 0.008798 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.007485 0.000000 0.013635 0.012178 0.000000 0.000000 0.000000 0.009071 0.0 0.000000 0.000000 0.015511 0.000000 0.022447 0.008717 0.009958 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.025254 0.000000 0.013138 0.010901 0.0 0.017094 0.000000 0.000000 0.000000 0.051068 0.000000 0.000000 0.020757 0.0 0.000000 0.000000 0.000000 0.011372 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.013774 0.046534 0.000000 0.000000 0.000000 0.000000 0.014314 0.031221 0.000000 0.010123 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.036992 0.000000 0.000000 0.030940 0.0 0.030940 0.049342 0.041860 0.023497 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021244 0.000000 0.052093 0.00000 0.000000 0.015561 0.000000 0.000000 0.000000 0.000000 0.012885 0.000000 0.022633 0.000000 0.000000 0.053930 0.021420 0.000000 0.018455 0.014053 0.000000 0.00000 0.013545 0.000000 0.000000 0.015333 0.000000 0.000000 0.000000 0.017314 0.044472 0.000000 0.019461 0.000000 0.000000 0.000000 0.000000 0.000000 0.039563 0.041035 0.012849 0.000000 0.000000 0.015957 0.000000 0.039050 0.018263 0.000000 0.000000 0.012286 0.053227 0.019038 0.016660 0.021229 0.000000 0.02858 0.000000 0.035055 0.000000 0.028652 0.102327 0.000000 0.008270 0.025642 0.023851 0.0 0.000000 0.034638 0.0 0.000000 0.000000 0.000000 0.000000 0.034971 0.000000 0.000000 0.000000 0.0 0.016920 0.032868 0.000000 0.049519 0.023393 0.017881 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.051182 0.000000 0.019172 0.066057 0.014339 0.000000 0.000000 0.000000 0.044598 0.000000 0.000000 0.000000 0.000000 0.009994 0.017534 0.079767 0.000000 0.000000 0.028802 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.042128 0.000000 0.000000 0.026389 0.000000 0.000000 0.000000 0.000000 0.015994 0.022922 0.000000 0.019284 0.014698 0.000000 0.000000 0.000000 0.000000 0.038830 0.059485 0.000000 0.000000 0.033206 0.000000 0.009505 0.034424 0.000000 0.028278 0.000000 0.036415 0.022645 0.000000 0.016170 0.010888 0.016170 0.059636 0.017620 0.000000 0.077625 0.0 0.032312 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021508 0.00000 0.000000 0.000000 0.00000 0.000000 0.010235 0.000000 0.016788 0.0 0.000000 0.000000 0.013846 0.000000 0.000000 0.000000 0.0 0.035867 0.015601 0.000000 0.092617 0.033061 0.000000 0.000000 0.000000 0.025161 0.000000 0.000000 0.000000 0.000000 0.037385 0.000000 0.030164 0.000000 0.000000 0.022178 0.013112 0.046199 0.081906 0.000000 0.021197 0.000000 0.032224 0.020022 0.020757 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020599 0.000000 0.000000 0.013940 0.000000 0.000000 0.000000 0.000000 0.028100 0.00000 0.015736 0.000000 0.012026 0.000000 0.000000 0.039606 0.000000 0.015021 0.000000 0.000000 0.013363 0.018769 0.000000 0.010213 0.018592 0.000000 0.034529 0.000000 0.000000 0.036852 0.000000 0.014112 0.020253 0.045423 0.069133 0.023790 0.000000 0.038234 0.015975 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010323 0.000000 0.000000 0.025597 0.000000 0.023258 0.000000 0.000000 0.000000 0.015224 0.000000 0.038347 0.017517 0.000000 0.000000 0.012177 0.000000 0.000000 0.040941 0.000000 0.000000 0.000000 0.030930 0.000000 0.000000 0.000000 0.009938 0.000000 0.0 0.019928 0.000000 0.000000 0.068100 0.000000 0.033422 0.020419 0.000000 0.000000 0.061875 0.000000 0.000000 0.000000 0.00000 0.000000 0.035889 0.019272 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017601 0.000000 0.016760 0.000000 0.009586 0.008868 0.040862 0.000000 0.000000 0.000000 0.018993 0.040370 0.036133 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024746 0.000000 0.032682 0.000000 0.012409 0.022557 0.000000 0.021924 0.066387 0.000000 0.031053 0.000000 0.024172 0.019046 0.045252 0.057282 0.000000 0.014154 0.000000 0.000000 0.044707 0.051365 0.103199 0.000000 0.000000 0.038923 0.000000 0.000000 0.053626 0.000000 0.000000 0.000000 0.000000 0.000000 0.020629 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015234 0.000000 0.000000 0.020191 0.0 0.000000 0.008820 0.014799 0.000000 0.000000 0.028534 0.000000 0.0000 0.000000 0.000000 0.000000 0.011534 0.000000 0.000000 0.000000 0.022649 0.019687 0.020550 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009805 0.013465 0.000000 0.029939 0.000000 0.010904 0.029661 0.000000 0.000000 0.000000 0.000000 0.000000 0.017129 0.00000 0.000000 0.000000 0.000000 0.018408 0.000000 0.0 0.000000 0.000000 0.014609 0.017821 0.039690 0.000000 0.000000 0.000000 0.000000 0.013846 0.000000 0.000000 0.021708 0.000000 0.000000 0.000000 0.013250 0.000000 0.074486 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.036795 0.021233 0.043590 0.000000 0.0 0.011029 0.000000 0.011649 0.000000 0.000000 0.000000 0.000000 0.000000 0.011427 0.026580 0.000000 0.000000 0.016854 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026382 0.000000 0.009082 0.000000 0.000000 0.015752 0.000000 0.060694 0.000000 0.031945 0.038734 0.000000 0.043474 0.061976 0.018219 0.020167 0.000000 0.045589 0.010924 0.000000 0.011011 0.031373 0.016321 0.043260 0.000000 0.011376 0.000000 0.0 0.000000 0.000000 0.058039 0.0 0.011772 0.000000 0.000000 0.032846 0.057451 0.000000 0.000000 0.000000 0.000000 0.000000 0.031650 0.000000 0.000000 0.000000 0.039227 0.000000 0.034815 0.013919 0.000000 0.000000 0.033139 0.000000 0.013537 0.000000 0.000000 0.025922 0.000000 0.000000 0.032745 0.000000 0.028146 0.000000 0.064582 0.000000 0.000000 0.012908 0.026378 0.013434 0.018433 0.015927 0.011521 0.000000 0.012296 0.015420 0.022276 0.051790 0.000000 0.018666 0.039146 0.017701 0.032695 0.000000 0.000000 0.018719 0.042727 0.023441 0.000000 0.000000 0.030892 0.032295 0.012229 0.000000 0.000000 0.000000 0.031556 0.070028 0.050349 0.000000 0.011689 0.000000 0.000000 0.000000 0.029989 0.000000 0.000000 0.028052 0.000000 0.021788 0.000000 0.000000 0.000000 0.028664 0.110020 0.000000 0.046334 0.040717 0.049002 0.014281 0.000000 0.000000 0.046777 0.000000 0.000000 0.000000 0.068796 0.000000 0.000000 0.000000 0.019057 0.022532 0.000000 0.072643 0.014992 0.016461 0.043197 0.066034 0.000000 0.011989 0.028019 0.000000 0.000000 0.031945 0.000000 0.014561 0.014428 0.122746 0.012906 0.040063 0.000000 0.000000 0.000000 0.000000 0.000000 0.012614 0.009841 0.036042 0.000000 0.041573 0.013404 0.084389 0.032315 0.027484 0.088182 0.000000 0.018854 0.0 0.000000 0.000000 0.000000 0.0 0.010344 0.095106 0.058158 0.000000 0.0 0.015503 0.000000 0.029435 0.000000 0.012441 0.027516 0.000000 0.000000 0.073818 0.123898 0.036736 0.049159 0.072337 0.040668 0.000000 0.000000 0.000000 0.051355 0.0 0.000000 0.000000 0.014306 0.010337 0.034535 0.175833 0.000000 0.042658 0.015191 0.041854 0.000000 0.013817 0.028361 0.000000 0.030250 0.073870 0.094520 0.000000 0.000000 0.061928 0.000000 0.0 0.051893 0.018212 0.000000 0.000000 0.129039 0.017639 0.016833 0.000000 0.028578 0.024583 0.059987 0.020970 0.000000 0.055359 0.024676 0.000000 0.0 0.051017 0.033106 0.027823 0.085341 0.0 0.0 0.0 0.0 0.0 0.016687 0.000000 0.125473 0.000000 0.035219 0.098172 0.011852 0.019716 0.120625 0.000000 0.052401 0.000000 0.000000 0.024741 0.047897 0.044090 0.000000 0.000000 0.012327 0.092396 0.053901 0.000000 0.013273 0.000000 0.000000 0.040657 0.018081 0.038233 0.016244 0.00000 0.000000 0.000000 0.000000 0.000000 0.014376 0.054085 0.000000 0.000000 0.047241 0.042611 0.031405 0.000000 0.023221 0.000000 0.000000 0.000000 0.000000 0.061020 0.000000 0.015198 0.000000 0.055512 0.066523 0.000000 0.058397 0.145467 0.028637 0.012117 0.000000 0.057098 0.032457 0.000000 0.014215 0.044932 0.016232 0.000000 0.043477 0.031410 0.000000 0.014463 0.014880 0.000000 0.000000 0.017403 0.091115 0.000000 0.000000 0.000000 0.000000 0.040887 0.000000 0.012745 0.015976 0.013247 0.017112 0.038708 0.000000 0.000000 0.035969 0.026588 0.013846 0.000000 0.050198 0.000000 0.000000 0.000000 0.000000 0.000000 0.009859 0.041776 0.031475 0.031114 0.000000 0.046334 0.0 0.000000 0.019317 0.000000 0.000000 0.029900 0.000000 0.040928 0.042608 0.0 0.044794 0.027229 0.028694 0.037404 0.035851 0.017950 0.022822 0.038462 0.010116 0.000000 0.113624 0.022523 0.040800 0.028210 0.014231 0.000000 0.021391 0.110337 0.030055 0.030025 0.010872 0.000000 0.018136 0.033711 0.000000 0.033715 0.036697 0.031079 0.046290 0.000000 0.012132 0.013008 0.018017 0.044928 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.101274 0.016650 0.07713 0.043353 0.000000 0.010013 0.012575 0.000000 0.000000 0.027188 0.000000 0.0 0.000000 0.016502 0.000000 0.000000 0.000000 0.000000 0.000000 0.029319 0.000000 0.036366 0.000000 0.146230 0.000000 0.046126 0.000000 0.018475 0.000000 0.000000 0.000000 0.026703 0.030221 0.032772 0.030351 0.027663 0.029794 0.085966 0.041797 0.033349 0.048754 0.000000 0.000000 0.025896 0.013718 0.014005 0.073676 0.013663 0.000000 0.000000 0.060158 0.044907 0.047111 0.000000 0.000000 0.000000 0.000000 0.019042 0.016986 0.070587 0.043887 0.013364 0.0 0.000000 0.024797 0.032402 0.000000 0.0 0.032612 0.019283 0.040425 0.000000 0.024563 0.032693 0.030017 0.015251 0.000000 0.038780 0.035114 0.000000 0.016859 0.017312 0.028597 0.094399 0.084741 0.018253 0.092455 0.014792 0.000000 0.000000 0.098294 0.028409 0.018533 0.018533 0.071365 0.011902 0.000000 0.012094 0.000000 0.000000 0.062179 0.051480 0.059533 0.013011 0.012269 0.000000 0.114844 0.0 0.0 0.0 0.018246 0.000000 0.015467 0.015751 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.133319 0.011973 0.105598 0.083434 0.020076 0.042826 0.056590 0.142331 0.022208 0.027201 0.080535 0.013154 0.049836 0.029536 0.008129 0.000000 0.000000 0.031123 0.000000 0.000000 0.010956 0.015879 0.0 0.039989 0.032760 0.037620 0.000000 0.000000 0.000000 0.0000 0.000000 0.085503 0.011772 0.0 0.0 0.031627 0.000000 0.0 0.000000 0.011043 0.021646 0.024112 0.0 0.000000 0.000000 0.043041 0.000000 0.000000 0.020362 0.019588 0.063917 0.046631 0.012392 0.000000 0.000000 0.000000 0.011865 0.000000 0.011007 0.012616 0.010786 0.009647 0.100559 0.027311 0.000000 0.049663 0.000000 0.000000 0.048614 0.043733 0.012884 0.000000 0.010011 0.000000 0.016735 0.019071 0.0 0.031039 0.000000 0.020580 0.000000 0.020287 0.033901 0.029614 0.068370 0.060654 0.011472 0.000000 0.000000 0.000000 0.074449 0.016552 0.000000 0.000000 0.00000 0.022418 0.011814 0.058531 0.010920 0.000000 0.052334 0.000000 0.015844 0.000000 0.000000 0.000000 0.000000 0.034679 0.029474 0.000000 0.000000 0.000000 0.069071 0.000000 0.026977 0.000000 0.009780 0.031972 0.000000 0.020908 0.000000 0.017429 0.051713 0.000000 0.000000 0.000000 0.000000 0.000000 0.060047 0.000000 0.034065 0.030400 0.041866 0.000000 0.018589 0.000000 0.000000 0.024823 0.012005 0.000000 0.000000 0.014271 0.032293 0.000000 0.016457 0.056645 0.000000 0.000000 0.010983 0.000000 0.000000 0.029835 0.000000 0.036567 0.000000 0.000000 0.000000 0.000000 0.000000 0.114370 0.012478 0.000000 0.009072 0.000000 0.009240 0.000000 0.00000 0.052351 0.031458 0.067846 0.000000 0.016899 0.0 0.000000 0.000000 0.0 0.083665 0.012753 0.000000 0.008963 0.000000 0.000000 0.057137 0.000000 0.023894 0.062409 0.000000 0.000000 0.000000 0.030624 0.022174 0.026989 0.012820 0.110214 0.000000 0.024640 0.000000 0.000000 0.014786 0.023378 0.029835 0.000000 0.000000 0.015779 0.043505 0.026853 0.000000 0.000000 0.011731 0.000000 0.000000 0.134337 0.000000 0.000000 0.000000 0.000000 0.000000 0.014158 0.012025 0.022834 0.000000 0.000000 0.000000 0.000000 0.000000 0.037463 0.000000 0.010140 0.099316 0.013825 0.014164 0.012573 0.035277 0.054462 0.000000 0.113661 0.000000 0.014313 0.021862 0.000000 0.022951 0.000000 0.051141 0.000000 0.111037 0.000000 0.043932 0.043621 0.000000 0.028032 0.000000 0.034020 0.000000 0.057313 0.041195 0.000000 0.000000 0.039035 0.013757 0.000000 0.033556 0.027996 0.011361 0.022820 0.036492 0.032525 0.040177 0.044272 0.024708 0.026167 0.0 0.000000 0.045107 0.100688 0.000000 0.012441 0.013245 0.028696 0.0 0.000000 0.040679 0.000000 0.027372 0.016657 0.000000 0.000000 0.030332 0.056653 0.000000 0.048233 0.0 0.010615 0.0 0.0 0.070859 0.008884 0.037825 0.010416 0.000000 0.000000 0.026719 0.054736 0.031485 0.048195 0.017910 0.019167 0.000000 0.012570 0.018639 0.000000 0.000000 0.046867 0.029583 0.0 0.000000 0.044829 0.000000 0.166493 0.000000 0.019515 0.032013 0.029196 0.000000 0.000000 0.025177 0.000000 0.014213 0.076932 0.000000 0.040361 0.047702 0.019983 0.000000 0.038560 0.070929 0.000000 0.059940 0.010963 0.013705 0.000000 0.017928 0.022144 0.000000 0.023677 0.000000 0.000000 0.045365 0.000000 0.036903 0.022994 0.000000 0.000000 0.000000 0.015599 0.000000 0.050542 0.019452 0.023569 0.000000 0.000000 0.020393 0.000000 0.000000 0.038258 0.000000 0.000000 0.033693 0.000000 0.000000 0.000000 0.000000 0.028545 0.000000 0.000000 0.046334 0.021204 0.055289 0.000000 0.020285 0.034773 0.030640 0.000000 0.032072 0.027500 0.050710 0.028165 0.041645 0.000000 0.013810 0.000000 0.035981 0.032648 0.00000 0.000000 0.031272 0.000000 0.000000 0.032453 0.049141 0.060761 0.040436 0.012842 0.000000 0.025590 0.086348 0.000000 0.000000 0.0 0.0 0.000000 0.050194 0.011814 0.000000 0.013259 0.018792 0.051039 0.0 0.028842 0.056387 0.000000 0.000000 0.058613 0.000000 0.020012 0.013301 0.041416 0.031416 0.000000 0.023996 0.000000 0.025061 0.011133 0.000000 0.012137 0.000000 0.058211 0.019398 0.032787 0.000000 0.000000 0.017359 0.082946 0.037529 0.015826 0.050486 0.000000 0.000000 0.024723 0.000000 0.075281 0.000000 0.045716 0.012257 0.000000 0.016650 0.010358 0.000000 0.000000 0.000000 0.000000 0.00000 0.010824 0.057199 0.058734 0.000000 0.000000 0.054353 0.000000 0.000000 0.014387 0.000000 0.012390 0.000000 0.000000 0.052934 0.062184 0.000000 0.030829 0.000000 0.037321 0.00000 0.000000 0.108814 0.123210 0.000000 0.018794 0.015379 0.211536 0.000000 0.000000 0.000000 0.102109 0.020074 0.000000 0.013302 0.011859 0.026289 0.096563 0.000000 0.066430 0.026585 0.000000 0.018465 0.000000 0.054687 0.100059 0.023899 0.000000 0.00000 0.031258 0.079326 0.000000 0.000000 0.000000 0.000000 0.013817 0.013301 0.096454 0.012561 0.060953 0.000000 0.013478 0.0 0.000000 0.000000 0.000000 0.030067 0.027559 0.000000 0.056783 0.023179 0.069660 0.053738 0.000000 0.000000 0.000000 0.128568 0.000000 0.073897 0.060179 0.030402 0.000000 0.010701 0.051048 0.013039 0.020254 0.093926 0.067497 0.000000 0.050048 0.030436 0.000000 0.000000 0.046065 0.000000 0.000000 0.059359 0.061523 0.040906 0.038094 0.046922 0.015839 0.0 0.000000 0.038486 0.000000 0.030567 0.039173 0.000000 0.029059 0.025629 0.013854 0.000000 0.053707 0.000000 0.000000 0.034420 0.054052 0.029626 0.013639 0.029493 0.012258 0.0 0.063659 0.026290 0.000000 0.000000 0.073301 0.026164 0.011680 0.020558 0.024113 0.000000 0.037909 0.000000 0.000000 0.055717 0.031622 0.000000 0.000000 0.000000 0.061523 0.000000 0.000000 0.000000 0.000000 0.000000 0.092358 0.032424 0.070245 0.013534 0.000000 0.018118 0.00000 0.012871 0.012416 0.012595 0.016980 0.069454 0.026146 0.000000 0.133674 0.015076 0.043289 0.140055 0.012879 0.000000 0.0 0.014320 0.031494 0.000000 0.041405 0.025367 0.000000 0.135692 0.043940 0.0 0.0 0.000000 0.024614 0.024854 0.000000 0.036134 0.0 0.0 0.000000 0.0 0.028122 0.000000 0.088512 0.017713 0.011759 0.000000 0.000000 0.024651 0.024064 0.000000 0.058965 0.010886 0.046151 0.058059 0.000000 0.022595 0.011745 0.000000 0.000000 0.000000 0.052826 0.000000 0.040011 0.088872 0.043916 0.024125 0.000000 0.000000 0.0 0.019938 0.000000 0.099353 0.068113 0.027899 0.033939 0.061792 0.000000 0.030706 0.039489 0.014218 0.050589 0.000000 0.238428 0.104050 0.013368 0.010341 0.000000 0.015679 0.000000 0.000000 0.017677 0.041423 0.000000 0.000000 0.026014 0.000000 0.013506 0.000000 0.026821 0.045803 0.000000 0.000000 0.000000 0.000000 0.069237 0.026251 0.014211 0.000000 0.000000 0.012648 0.029803 0.010907 0.036726 0.0 0.027653 0.000000 0.000000 0.000000 0.045970 0.000000 0.125903 0.000000 0.000000 0.000000 0.000000 0.000000 0.027606 0.013176 0.066288 0.040358 0.000000 0.031915 0.011570 0.000000 0.041296 0.036939 0.075172 0.000000 0.073379 0.025411 0.016139 0.023843 0.000000 0.061042 0.021064 0.051191 0.000000 0.017331 0.019162 0.048235 0.047280 0.134337 0.016288 0.030938 0.070980 0.047302 0.072337 0.072337 0.035353 0.053484 0.000000 0.017923 0.000000 0.000000 0.036493 0.011484 0.000000 0.000000 0.022830 0.000000 0.000000 0.035919 0.133705 0.015008 0.000000 0.000000 0.000000 0.000000 0.027513 0.025176 0.072632 0.018779 0.154458 0.085200 0.048207 0.018142 0.024685 0.011724 0.034162 0.086300 0.000000 0.108116 0.000000 0.000000 0.000000 0.022970 0.043217 0.074921 0.000000 0.000000 0.014385 0.000000 0.023535 0.011432 0.000000 0.099339 0.000000 0.043454 0.043228 0.000000 0.000000 0.022193 0.010424 0.034515 0.054690 0.052217 0.000000 0.051729 0.000000 0.000000 0.000000 0.000000 0.110320 0.086730 0.027093 0.036282 0.000000 0.000000 0.043689 0.014902 0.000000 0.000000 0.015465 0.022946 0.000000 0.000000 0.028336 0.011266 0.000000 0.082883 0.000000 0.000000 0.000000 0.000000 0.051294 0.000000 0.011651 0.013046 0.000000 0.000000 0.000000 0.000000 0.032551 0.021436 0.000000 0.022166 0.000000 0.032767 0.000000 0.008358 0.000000 0.000000 0.033761 0.000000 0.000000 0.017931 0.064857 0.000000 0.025488 0.000000 0.000000 0.036402 0.020255 0.020320 0.027695 0.000000 0.000000 0.016493 0.00000 0.000000 0.000000 0.010727 0.000000 0.078527 0.040613 0.000000 0.015247 0.000000 0.000000 0.025413 0.000000 0.019998 0.024629 0.014387 0.000000 0.046468 0.037584 0.017148 0.038063 0.024256 0.045767 0.016436 0.026311 0.000000 0.000000 0.000000 0.000000 0.000000 0.045943 0.075170 0.000000 0.000000 0.011077 0.000000 0.033154 0.000000 0.000000 0.020415 0.000000 0.025177 0.0 0.022975 0.000000 0.000000 0.183102 0.012422 0.000000 0.000000 0.071736 0.083434 0.037445 0.099852 0.000000 0.048307 0.011835 0.000000 0.063484 0.011050 0.041228 0.044075 0.008222 0.081332 0.099832 0.008743 0.042173 0.072873 0.000000 0.000000 0.000000 0.000000 0.021726 0.032604 0.063334 0.000000 0.000000 0.0 0.029807 0.0 0.000000 0.070249 0.000000 0.019610 0.014410 0.000000 0.000000 0.054780 0.000000 0.046895 0.079917 0.030155 0.00000 0.0 0.192147 0.131770 0.104727 0.000000 0.115765 0.000000 0.000000 0.000000 0.063553 0.0 0.013158 0.115184 0.000000 0.000000 0.00929 0.030046 0.025441 0.000000 0.000000 0.029790 0.000000 0.022339 0.000000 0.000000 0.000000 0.091816 0.000000 0.099928 0.020371 0.030335 0.008833 0.000000 0.011966 0.072337 0.000000 0.071027 0.087403 0.128271 0.042388 0.028102 0.022145 0.012318 0.000000 0.010886 0.000000 0.028427 0.00000 0.023216 0.021477 0.057089 0.000000 0.000000 0.000000 0.012989 0.017282 0.013241 0.027081 0.034364 0.000000 0.010736 0.000000 0.008779 0.018655 0.110759 0.056628 0.000000 0.012508 0.014295 0.0 0.129338 0.014804 0.100830 0.040136 0.097367 0.047179 0.000000 0.000000 0.009987 0.094879 0.037077 0.088444 0.102078 0.096065 0.000000 0.016873 0.013532 0.034671 0.083530 0.050028 0.000000 0.077577 0.000000 0.034834 0.011153 0.000000 0.042477 0.0 0.000000 0.000000 0.000000 0.000000 0.011588 0.000000 0.056951 0.000000 0.047561 0.107629 0.012125 0.016576 0.014772 0.000000 0.065864 0.016629 0.000000 0.019974 0.020624 0.000000 0.097449 0.000000 0.000000 0.000000 0.151346 0.072237 0.0 0.000000 0.000000 0.115691 0.0 0.027905 0.011200 0.000000 0.026136 0.000000 0.064198 0.000000 0.000000 0.000000 0.008939 0.047045 0.043772 0.024128 0.018759 0.029229 0.028618 0.000000 0.000000 0.058713 0.119300 0.064956 0.000000 0.022326 0.026969 0.010964 0.000000 0.040598 0.023783 0.028599 0.015298 0.000000 0.032176 0.0 0.000000 0.000000 0.000000 0.009100 0.011146 0.007985 0.034843 0.014631 0.000000 0.029985 0.036449 0.055059 0.016153 0.02266 0.000000 0.038865 0.028876 0.014658 0.012694 0.351440 0.038925 0.044712 0.022986 0.004146 0.000000 0.000000 0.021963 0.000000 0.000000 0.019689 0.016294 0.000000 0.097194 0.048626 0.015609 0.076324 0.011973 0.028399 0.060857 0.020609 0.0000 0.000000 0.000000 0.013721 0.018269 0.009138 0.039828 0.000000 0.000000 0.0 0.029738 0.000000 0.018030 0.000000 0.056521 0.000000 0.032469 0.000000 0.000000 0.0 0.014506 0.000000 0.013787 0.116283 0.038360 0.000000 0.023459 0.000000 0.024714 0.011737 0.023822 0.000000 0.000000 0.000000 0.032467 0.000000 0.041948 0.019431 0.000000 0.000000 0.051095 0.000000 0.000000 0.026627 0.00000 0.029483 0.000000 0.000000 0.046905 0.00000 0.000000 0.000000 0.032709 0.023324 0.028226 0.041017 0.012087 0.000000 0.0 0.070569 0.000000 0.000000 0.026153 0.062077 0.000000 0.000000 0.018251 0.000000 0.036993 0.033284 0.034121 0.036419 0.023412 0.044635 0.027828 0.071576 0.050680 0.008320 0.000000 0.030066 0.000000 0.017852 0.000000 0.053930 0.062613 0.000000 0.000000 0.000000 0.000000 0.012754 0.040005 0.000000 0.028076 0.000000 0.000000 0.013115 0.000000 0.034363 0.010155 0.000000 0.017037 0.000000 0.043044 0.000000 0.043494 0.000000 0.000000 0.011191 0.036360 0.000000 0.052483 0.020239 0.000000 0.000000 0.046065 0.000000 0.117378 0.010895 0.000000 0.019786 0.000000 0.023779 0.013050 0.000000 0.050932 0.088387 0.050715 0.033079 0.000000 0.000000 0.008395 0.059364 0.019581 0.023424 0.000000 0.011308 0.000000 0.000000 0.000000 0.000000 0.126674 0.000000 0.026370 0.000000 0.000000 0.000000 0.033302 0.0 0.076668 0.099763 0.013569 0.049300 0.012836 0.044032 0.056723 0.000000 0.000000 0.026274 0.000000 0.035141 0.121645 0.070350 0.009876 0.060791 0.014281 0.0 0.010007 0.009374 0.000000 0.000000 0.053255 0.030438 0.000000 0.044406 0.029421 0.031743 0.000000 0.042983 0.020953 0.000000 0.007688 0.084159 0.000000 0.031579 0.011149 0.000000 0.000000 0.000000 0.019334 0.109871 0.000000 0.000000 0.000000 0.045306 0.124764 0.000000 0.041721 0.013403 0.000000 0.008392 0.000000 0.000000 0.047821 0.017359 0.015134 0.036250 0.017793 0.069320 0.031158 0.018950 0.000000 0.028795 0.000000 0.000000 0.094582 0.027143 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.028241 0.000000 0.021334 0.000000 0.011362 0.000000 0.000000 0.101111 0.000000 0.000000 0.035705 0.000000 0.000000 0.000000 0.000000 0.000000 0.043880 0.017750 0.00000 0.000000 0.014322 0.000000 0.017417 0.396533 0.000000 0.111432 0.034405 0.037202 0.013867 0.055633 0.044319 0.129528 0.019201 0.050009 0.000000 0.027953 0.000000 0.00000 0.020989 0.016838 0.049100 0.065966 0.000000 0.024728 0.000000 0.000000 0.017971 0.000000 0.042302 0.023677 0.038472 0.069676 0.013982 0.000000 0.016532 0.000000 0.041329 0.000000 0.118259 0.093466 0.062108 0.00000 0.000000 0.064096 0.031609 0.017252 0.022195 0.036816 0.000000 0.010949 0.000000 0.011488 0.000000 0.019765 0.000000 0.123777 0.000000 0.000000 0.000000 0.092758 0.046023 0.000000 0.015167 0.046809 0.011065 0.028619 0.000000 0.0 0.018859 0.018332 0.000000 0.114144 0.000000 0.056736 0.018949 0.064222 0.046609 0.000000 0.000000 0.000000 0.016999 0.000000 0.056063 0.018554 0.000000 0.000000 0.097425 0.031106 0.012612 0.011112 0.000000 0.000000 0.050985 0.047838 0.000000 0.000000 0.013610 0.065801 0.035675 0.023271 0.021297 0.023015 0.027765 0.012523 0.026895 0.000000 0.029727 0.000000 0.021469 0.033433 0.026736 0.0 0.000000 0.104172 0.022250 0.054772 0.009573 0.012572 0.144941 0.000000 0.0 0.000000 0.043416 0.098112 0.075924 0.009755 0.000000 0.000000 0.021208 0.122746 0.025683 0.000000 0.000000 0.074843 0.0 0.014263 0.000000 0.048387 0.036949 0.0 0.0 0.000000 0.000000 0.017109 0.000000 0.000000 0.030852 0.073447 0.01646 0.088634 0.056903 0.000000 0.091346 0.042362 0.033881 0.013271 0.000000 0.000000 0.024967 0.000000 0.049634 0.041866 0.213645 0.076903 0.000000 0.000000 0.045659 0.000000 0.000000 0.00000 0.020169 0.020442 0.046015 0.000000 0.063216 0.036574 0.010998 0.017401 0.021120 0.011601 0.030453 0.027590 0.025388 0.000000 0.000000 0.014061 0.000000 0.038100 0.050579 0.000000 0.000000 0.033964 0.000000 0.000000 0.056190 0.000000 0.000000 0.046993 0.154140 0.037932 0.204123 0.000000 0.016165 0.014135 0.077567 0.015364 0.000000 0.000000 0.011280 0.040358 0.085100 0.047335 0.000000 0.0 0.000000 0.000000 0.000000 0.020852 0.000000 0.000000 0.000000 0.000000 0.067575 0.000000 0.000000 0.009437 0.009712 0.012748 0.017088 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.023722 0.000000 0.000000 0.000000 0.00000 0.000000 0.055560 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.016000 0.000000 0.00000 0.020130 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.023723 0.000000 0.000000 0.000000 0.000000 0.000000 0.029482 0.000000 0.000000 0.000000 0.021035 0.000000 0.0 0.000000 0.000000 0.031851 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016818 0.000000 0.000000 0.024962 0.000000 0.00000 0.000000 0.000000 0.016150 0.015820 0.065627 0.000000 0.000000 0.000000 0.012502 0.00000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.015882 0.000000 0.000000 0.00000 0.024961 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019974 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.029867 0.0 0.00000 0.000000 0.029867 0.0 0.025356 0.025356 0.0 0.000000 0.000000 0.000000 0.000000 0.013792 0.02222 0.000000 0.021429 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016983 0.00000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019479 0.016531 0.047310 0.000000 0.000000 0.019145 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029853 0.000000 0.020819 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.029447 0.0 0.000000 0.000000 0.000000 0.028028 0.015558 0.000000 0.000000 0.000000 0.000000 0.000000 0.034872 0.000000 0.000000 0.000000 0.000000 0.000000 0.029659 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016922 0.000000 0.000000 0.000000 0.057894 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.035151 0.000000 0.000000 0.018216 0.000000 0.000000 0.033024 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022177 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020023 0.016705 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019435 0.014112 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.00000 0.028844 0.00000 0.0 0.000000 0.000000 0.00000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.031119 0.000000 0.000000 0.000000 0.029026 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030836 0.000000 0.000000 0.000000 0.000000 0.015748 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.028274 0.0 0.00000 0.049720 0.026270 0.000000 0.000000 0.000000 0.014571 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032782 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014885 0.000000 0.000000 0.033946 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.010642 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022471 0.000000 0.000000 0.000000 0.000000 0.022284 0.053605 0.000000 0.000000 0.024497 0.050267 0.000000 0.023351 0.000000 0.000000 0.000000 0.000000 0.000000 0.013441 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019754 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033224 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025674 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.016274 0.013562 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.015625 0.000000 0.020283 0.015407 0.013531 0.023093 0.022229 0.0 0.000000 0.0 0.030535 0.000000 0.018606 0.000000 0.00000 0.031611 0.000000 0.000000 0.000000 0.024569 0.000000 0.000000 0.000000 0.000000 0.019449 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.019157 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.034566 0.000000 0.000000 0.000000 0.000000 0.065973 0.000000 0.000000 0.000000 0.0 0.021372 0.000000 0.000000 0.026621 0.028145 0.000000 0.00000 0.000000 0.000000 0.013579 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.015676 0.016361 0.047599 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014589 0.000000 0.000000 0.0 0.000000 0.000000 0.025533 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.00000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018356 0.013171 0.01851 0.000000 0.000000 0.000000 0.00000 0.00000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.016594 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.096615 0.000000 0.000000 0.000000 0.015987 0.000000 0.000000 0.000000 0.041052 0.000000 0.000000 0.000000 0.013885 0.000000 0.000000 0.017263 0.000000 0.000000 0.014719 0.016389 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015694 0.000000 0.00000 0.000000 0.030711 0.000000 0.000000 0.014526 0.016125 0.020519 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.013473 0.000000 0.000000 0.000000 0.000000 0.043757 0.000000 0.000000 0.000000 0.064249 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.030888 0.000000 0.0 0.016150 0.0 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015189 0.000000 0.012396 0.000000 0.000000 0.072593 0.000000 0.020942 0.012322 0.00000 0.000000 0.027214 0.0 0.023482 0.0 0.024220 0.113969 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.031720 0.000000 0.0 0.000000 0.000000 0.017580 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024770 0.000000 0.0 0.00000 0.000000 0.036966 0.000000 0.000000 0.0 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012354 0.031097 0.000000 0.000000 0.000000 0.03758 0.000000 0.012311 0.000000 0.015440 0.020361 0.000000 0.000000 0.000000 0.000000 0.025853 0.000000 0.000000 0.000000 0.016493 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035478 0.000000 0.000000 0.014588 0.000000 0.000000 0.000000 0.000000 0.0000 0.045374 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.039561 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.017955 0.000000 0.017342 0.027289 0.034074 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028943 0.000000 0.000000 0.000000 0.020013 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.038873 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.013329 0.000000 0.013597 0.000000 0.020350 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.024299 0.000000 0.000000 0.000000 0.000000 0.011969 0.014716 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015695 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.037306 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.024206 0.000000 0.000000 0.000000 0.013685 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016848 0.027638 0.046831 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029533 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.00000 0.023843 0.000000 0.000000 0.000000 0.000000 0.000000 0.014854 0.000000 0.024984 0.000000 0.000000 0.000000 0.013902 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.044746 0.020220 0.000000 0.000000 0.017913 0.035442 0.000000 0.000000 0.000000 0.000000 0.0 0.014333 0.000000 0.040945 0.036248 0.000000 0.000000 0.027503 0.000000 0.000000 0.014490 0.000000 0.039052 0.00000 0.022501 0.000000 0.000000 0.000000 0.107078 0.000000 0.000000 0.000000 0.000000 0.049405 0.026658 0.000000 0.000000 0.026264 0.025242 0.000000 0.000000 0.012798 0.030395 0.000000 0.028983 0.000000 0.000000 0.000000 0.026607 0.000000 0.00000 0.023764 0.000000 0.000000 0.000000 0.000000 0.000000 0.034291 0.000000 0.028694 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.016244 0.028739 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.030341 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.038730 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026263 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013578 0.000000 0.021015 0.000000 0.022618 0.000000 0.000000 0.043944 0.025439 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052011 0.013403 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.016631 0.000000 0.0 0.000000 0.073676 0.00000 0.000000 0.000000 0.034249 0.046697 0.000000 0.049706 0.000000 0.000000 0.000000 0.010339 0.000000 0.014170 0.020454 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.011890 0.000000 0.000000 0.015781 0.027463 0.000000 0.014161 0.000000 0.000000 0.057078 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.161608 0.000000 0.000000 0.000000 0.014236 0.000000 0.000000 0.000000 0.000000 0.021698 0.0 0.000000 0.000000 0.018199 0.000000 0.000000 0.000000 0.000000 0.024197 0.065173 0.000000 0.015038 0.000000 0.000000 0.013775 0.000000 0.000000 0.043647 0.000000 0.000000 0.000000 0.000000 0.066183 0.000000 0.000000 0.000000 0.000000 0.025357 0.062576 0.028806 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.039285 0.000000 0.000000 0.000000 0.020860 0.000000 0.000000 0.000000 0.030664 0.017996 0.000000 0.00000 0.000000 0.000000 0.000000 0.042203 0.000000 0.000000 0.000000 0.000000 0.021339 0.028148 0.000000 0.000000 0.000000 0.016482 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.035441 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.077319 0.066843 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.024238 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.026158 0.000000 0.000000 0.000000 0.000000 0.063910 0.012978 0.000000 0.000000 0.000000 0.0 0.0 0.035466 0.000000 0.000000 0.000000 0.000000 0.000000 0.033981 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.036192 0.0 0.000000 0.037319 0.026208 0.000000 0.0 0.000000 0.0 0.026330 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.025281 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.025672 0.000000 0.000000 0.000000 0.000000 0.011916 0.000000 0.000000 0.000000 0.000000 0.030313 0.000000 0.000000 0.000000 0.017620 0.0 0.0000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.012977 0.000000 0.000000 0.014808 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028128 0.000000 0.023185 0.000000 0.031213 0.015265 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.010493 0.000000 0.0 0.000000 0.000000 0.020922 0.000000 0.000000 0.018786 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017433 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035934 0.027448 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027797 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034194 0.000000 0.0 0.0 0.000000 0.020337 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.020587 0.000000 0.021145 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.013629 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050132 0.000000 0.031134 0.013060 0.000000 0.027699 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.059785 0.000000 0.027531 0.000000 0.039898 0.000000 0.022199 0.00000 0.000000 0.000000 0.000000 0.000000 0.010882 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.048833 0.000000 0.000000 0.000000 0.015412 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.000000 0.023999 0.000000 0.000000 0.095772 0.000000 0.000000 0.0 0.017255 0.00000 0.000000 0.014900 0.0 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015211 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047434 0.000000 0.000000 0.000000 0.000000 0.016005 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014934 0.000000 0.000000 0.000000 0.000000 0.0 0.020853 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016403 0.000000 0.014790 0.000000 0.029821 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.014974 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.032821 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012711 0.000000 0.000000 0.000000 0.012519 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014519 0.000000 0.000000 0.000000 0.000000 0.027319 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.016449 0.000000 0.0 0.000000 0.000000 0.000000 0.016136 0.013155 0.00000 0.000000 0.012515 0.000000 0.000000 0.000000 0.000000 0.017845 0.023261 0.000000 0.013717 0.000000 0.000000 0.013249 0.000000 0.029650 0.000000 0.000000 0.000000 0.000000 0.013514 0.000000 0.000000 0.000000 0.000000 0.000000 0.021624 0.000000 0.000000 0.00000 0.000000 0.035104 0.000000 0.012020 0.000000 0.017150 0.00000 0.000000 0.024027 0.000000 0.000000 0.000000 0.000000 0.044721 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.014619 0.000000 0.068102 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.027994 0.000000 0.017970 0.078187 0.021005 0.064670 0.139286 0.000000 0.000000 0.000000 0.000000 0.042672 0.021600 0.000000 0.000000 0.000000 0.047780 0.033297 0.000000 0.000000 0.000000 0.000000 0.000000 0.041596 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.014762 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.025580 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.00000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.030304 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.103524 0.028989 0.000000 0.000000 0.000000 0.000000 0.000000 0.042314 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.090545 0.000000 0.000000 0.000000 0.017147 0.000000 0.000000 0.000000 0.000000 0.013171 0.000000 0.000000 0.000000 0.000000 0.018528 0.000000 0.000000 0.00000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.035530 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012941 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.037187 0.023227 0.000000 0.000000 0.000000 0.000000 0.019412 0.000000 0.000000 0.000000 0.000000 0.000000 0.012449 0.0 0.000000 0.000000 0.000000 0.012823 0.000000 0.010511 0.028626 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.051641 0.000000 0.000000 0.000000 0.000000 0.013496 0.062622 0.012529 0.000000 0.073226 0.000000 0.024681 0.000000 0.000000 0.000000 0.000000 0.000000 0.012859 0.043844 0.033479 0.000000 0.000000 0.000000 0.013146 0.00000 0.000000 0.101017 0.000000 0.000000 0.125654 0.000000 0.000000 0.000000 0.023113 0.000000 0.032903 0.012299 0.000000 0.000000 0.021302 0.000000 0.014032 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00000 0.000000 0.023758 0.016332 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.018452 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.018361 0.000000 0.000000 0.000000 0.0000 0.0 0.000000 0.000000 0.082612 0.000000 0.124496 0.000000 0.000000 0.019415 0.010771 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.019421 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.028176 0.025173 0.000000 0.015015 0.0 0.027329 0.000000 0.000000 0.024081 0.0 0.019731 0.000000 0.0 0.000000 0.000000 0.033885 0.000000 0.027078 0.000000 0.026222 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.021799 0.000000 0.0 0.014588 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.021118 0.000000 0.018169 0.000000 0.018922 0.000000 0.000000 0.000000 0.011755 0.00000 0.000000 0.000000 0.019932 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020288 0.011930 0.000000 0.000000 0.000000 0.032307 0.0 0.0 0.000000 0.000000 0.000000 0.023968 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032573 0.050883 0.014174 0.000000 0.0 0.0 0.018567 0.000000 0.027838 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020151 0.013171 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.01851 0.00000 0.000000 0.034162 0.000000 0.000000 0.013171 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.040400 0.038411 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024826 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.017675 0.014669 0.017875 0.024118 0.036519 0.000000 0.000000 0.000000 0.000000 0.028808 0.000000 0.000000 0.00000 0.000000 0.051112 0.000000 0.000000 0.016531 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017613 0.014915 0.000000 0.025155 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.055150 0.031537 0.045254 0.000000 0.019669 0.032205 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.109479 0.000000 0.017018 0.000000 0.000000 0.000000 0.000000 0.016827 0.012445 0.061829 0.080979 0.000000 0.000000 0.000000 0.028106 0.000000 0.014730 0.000000 0.0 0.000000 0.019596 0.0 0.017975 0.000000 0.053597 0.022128 0.029354 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017839 0.0 0.000000 0.013302 0.000000 0.000000 0.030888 0.000000 0.000000 0.000000 0.012851 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.037983 0.000000 0.00000 0.073680 0.000000 0.025673 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.028905 0.000000 0.000000 0.000000 0.000000 0.000000 0.013607 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.037989 0.000000 0.000000 0.018183 0.000000 0.015130 0.000000 0.016129 0.00000 0.026808 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018211 0.023625 0.00000 0.026764 0.000000 0.000000 0.000000 0.000000 0.000000 0.018738 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.030845 0.0 0.000000 0.0 0.016408 0.00000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021236 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.046696 0.013802 0.018535 0.000000 0.000000 0.000000 0.050402 0.000000 0.024797 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.023844 0.000000 0.000000 0.000000 0.017392 0.020711 0.000000 0.000000 0.000000 0.000000 0.019456 0.000000 0.000000 0.000000 0.034036 0.000000 0.000000 0.000000 0.018987 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.031855 0.017371 0.018306 0.000000 0.019840 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029544 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.017543 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.017691 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.021405 0.000000 0.000000 0.000000 0.000000 0.012473 0.000000 0.000000 0.000000 0.000000 0.066635 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.013578 0.000000 0.000000 0.000000 0.011394 0.000000 0.000000 0.000000 0.012776 0.000000 0.000000 0.000000 0.010869 0.000000 0.0 0.000000 0.041523 0.061281 0.020313 0.000000 0.000000 0.000000 0.000000 0.014629 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015037 0.000000 0.027370 0.000000 0.000000 0.000000 0.000000 0.000000 0.032205 0.000000 0.033479 0.000000 0.000000 0.000000 0.000000 0.013296 0.000000 0.000000 0.097835 0.060139 0.056572 0.0 0.011907 0.000000 0.000000 0.077337 0.000000 0.000000 0.000000 0.000000 0.0 0.053662 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.014906 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027640 0.000000 0.000000 0.018300 0.009888 0.0 0.044792 0.000000 0.000000 0.018238 0.000000 0.011771 0.000000 0.000000 0.000000 0.000000 0.033526 0.0 0.000000 0.000000 0.0 0.012945 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.044956 0.000000 0.000000 0.000000 0.000000 0.0 0.053321 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034458 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.052870 0.0 0.000000 0.00000 0.035256 0.00000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.031132 0.0 0.000000 0.0 0.015502 0.000000 0.000000 0.000000 0.014044 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.012853 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.021378 0.020882 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011341 0.000000 0.000000 0.016789 0.000000 0.000000 0.037279 0.016110 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.052687 0.000000 0.000000 0.014588 0.088944 0.000000 0.000000 0.000000 0.000000 0.000000 0.021331 0.000000 0.033818 0.000000 0.00000 0.000000 0.020779 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.039924 0.000000 0.000000 0.000000 0.00000 0.00000 0.000000 0.000000 0.000000 0.000000 0.024120 0.021077 0.000000 0.000000 0.00000 0.000000 0.000000 0.073515 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.032386 0.000000 0.020201 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.044610 0.000000 0.000000 0.00000 0.0 0.000000 0.020112 0.000000 0.184377 0.000000 0.027984 0.000000 0.014805 0.031723 0.000000 0.000000 0.000000 0.000000 0.000000 0.057480 0.000000 0.000000 0.000000 0.014922 0.000000 0.012841 0.000000 0.000000 0.000000 0.013319 0.000000 0.000000 0.000000 0.021850 0.000000 0.000000 0.000000 0.000000 0.078324 0.014245 0.020758 0.014730 0.012074 0.016896 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033616 0.000000 0.034730 0.000000 0.000000 0.012459 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013704 0.000000 0.000000 0.000000 0.000000 0.010999 0.000000 0.000000 0.053679 0.019858 0.000000 0.000000 0.031130 0.032924 0.000000 0.015243 0.000000 0.000000 0.000000 0.000000 0.000000 0.086141 0.000000 0.000000 0.047125 0.084148 0.000000 0.025361 0.000000 0.019924 0.015680 0.000000 0.000000 0.000000 0.014900 0.0 0.034588 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.03170 0.036088 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018123 0.000000 0.000000 0.000000 0.015389 0.000000 0.000000 0.0 0.012187 0.000000 0.019494 0.015088 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.013173 0.000000 0.027253 0.000000 0.013344 0.000000 0.063555 0.000000 0.016553 0.000000 0.000000 0.000000 0.000000 0.0 0.025445 0.0 0.000000 0.000000 0.034910 0.0 0.000000 0.015056 0.021655 0.00000 0.0 0.000000 0.000000 0.015474 0.000000 0.000000 0.000000 0.0 0.000000 0.015214 0.000000 0.022154 0.036820 0.000000 0.000000 0.000000 0.030921 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018784 0.000000 0.000000 0.000000 0.000000 0.030703 0.000000 0.021037 0.000000 0.000000 0.000000 0.000000 0.000000 0.019796 0.000000 0.00000 0.000000 0.040705 0.000000 0.047957 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.013939 0.030410 0.000000 0.018061 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018019 0.000000 0.000000 0.026675 0.030307 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026847 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041973 0.000000 0.016492 0.016541 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014369 0.000000 0.030625 0.000000 0.000000 0.000000 0.000000 0.033917 0.000000 0.012380 0.000000 0.000000 0.092024 0.026325 0.000000 0.000000 0.000000 0.000000 0.014850 0.017801 0.000000 0.000000 0.000000 0.041654 0.013820 0.000000 0.000000 0.016604 0.000000 0.000000 0.000000 0.067784 0.000000 0.000000 0.014837 0.027726 0.000000 0.016487 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.069773 0.000000 0.000000 0.000000 0.000000 0.025503 0.015197 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.015575 0.000000 0.0 0.000000 0.017596 0.000000 0.0 0.000000 0.000000 0.000000 0.030296 0.0 0.000000 0.000000 0.033311 0.000000 0.000000 0.000000 0.000000 0.017366 0.000000 0.000000 0.0 0.000000 0.027907 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024052 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0000 0.011150 0.000000 0.000000 0.000000 0.000000 0.025325 0.00000 0.000000 0.000000 0.000000 0.000000 0.028772 0.000000 0.000000 0.000000 0.000000 0.018663 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022736 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016552 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.105163 0.000000 0.000000 0.000000 0.0 0.040345 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.023362 0.000000 0.041944 0.000000 0.0 0.021336 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017294 0.000000 0.000000 0.000000 0.000000 0.021540 0.0 0.000000 0.025796 0.0 0.000000 0.018754 0.010527 0.068870 0.000000 0.000000 0.010241 0.000000 0.016807 0.00000 0.000000 0.0 0.020009 0.00000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035671 0.000000 0.027247 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.035441 0.016393 0.000000 0.000000 0.000000 0.000000 0.000000 0.021218 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.013556 0.000000 0.024456 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.096099 0.000000 0.000000 0.000000 0.044322 0.000000 0.000000 0.021876 0.000000 0.0000 0.00000 0.000000 0.00000 0.000000 0.011030 0.000000 0.000000 0.000000 0.000000 0.000000 0.011769 0.000000 0.032056 0.033708 0.000000 0.02294 0.066183 0.000000 0.020401 0.000000 0.000000 0.000000 0.032096 0.000000 0.000000 0.000000 0.000000 0.029221 0.000000 0.037105 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.024476 0.048281 0.021659 0.00000 0.04547 0.016316 0.000000 0.020175 0.000000 0.026559 0.000000 0.034134 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.030278 0.000000 0.0 0.018347 0.000000 0.000000 0.0 0.022017 0.000000 0.000000 0.0 0.000000 0.000000 0.029026 0.000000 0.000000 0.025516 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024975 0.000000 0.000000 0.074294 0.034488 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.014588 0.000000 0.013386 0.042848 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.031607 0.013601 0.000000 0.000000 0.0 0.000000 0.000000 0.021793 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025029 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.107995 0.000000 0.017435 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017195 0.00000 0.000000 0.0 0.000000 0.020700 0.015281 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.045490 0.027583 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020728 0.000000 0.014213 0.000000 0.000000 0.000000 0.000000 0.021598 0.000000 0.000000 0.000000 0.000000 0.000000 0.026667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017153 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023643 0.000000 0.026911 0.000000 0.000000 0.000000 0.034881 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.014102 0.000000 0.000000 0.019865 0.000000 0.030956 0.019768 0.013550 0.011460 0.000000 0.026313 0.017630 0.000000 0.039523 0.000000 0.000000 0.000000 0.022803 0.000000 0.000000 0.00000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.018143 0.000000 0.000000 0.000000 0.000000 0.015494 0.028887 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014638 0.018611 0.024262 0.000000 0.000000 0.077837 0.081043 0.025215 0.045480 0.0 0.031997 0.000000 0.023347 0.035158 0.000000 0.038407 0.000000 0.000000 0.036905 0.000000 0.000000 0.000000 0.087125 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.026272 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.014999 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019043 0.035211 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.034935 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.032740 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.014516 0.000000 0.016341 0.000000 0.000000 0.024976 0.014464 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.013107 0.0 0.000000 0.015890 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.026898 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.020572 0.000000 0.024275 0.000000 0.084386 0.000000 0.015110 0.000000 0.065176 0.000000 0.000000 0.000000 0.000000 0.041343 0.000000 0.000000 0.000000 0.000000 0.0 0.016978 0.000000 0.000000 0.00000 0.026541 0.000000 0.000000 0.000000 0.000000 0.016812 0.000000 0.011291 0.031025 0.000000 0.000000 0.021267 0.000000 0.000000 0.000000 0.048737 0.019578 0.016777 0.000000 0.064054 0.079882 0.000000 0.000000 0.025904 0.055674 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.017197 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024124 0.000000 0.029872 0.026851 0.000000 0.000000 0.000000 0.036370 0.0000 0.000000 0.031212 0.000000 0.000000 0.015660 0.000000 0.022910 0.000000 0.000000 0.025702 0.000000 0.000000 0.070659 0.052906 0.000000 0.000000 0.000000 0.000000 0.010344 0.093359 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.016409 0.000000 0.000000 0.000000 0.000000 0.025863 0.000000 0.000000 0.014076 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.014713 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015753 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.048982 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.020134 0.000000 0.000000 0.000000 0.00000 0.000000 0.010079 0.000000 0.000000 0.000000 0.000000 0.025585 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.016129 0.000000 0.025278 0.034111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.070463 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025529 0.000000 0.000000 0.0 0.025118 0.000000 0.020314 0.020386 0.000000 0.000000 0.000000 0.000000 0.029742 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.039176 0.000000 0.042747 0.000000 0.017006 0.000000 0.000000 0.000000 0.000000 0.000000 0.020285 0.000000 0.0 0.000000 0.012402 0.024457 0.032933 0.000000 0.011539 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.066600 0.000000 0.000000 0.00000 0.00000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.00000 0.051707 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.00000 0.039832 0.000000 0.000000 0.00000 0.028894 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.027517 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.063434 0.019485 0.000000 0.017458 0.000000 0.000000 0.0 0.017031 0.0 0.0 0.0 0.0 0.000000 0.060669 0.000000 0.0 0.0 0.015499 0.0 0.017019 0.0 0.0 0.0 0.000000 0.0 0.0 0.025878 0.025878 0.0 0.025878 0.0 0.0 0.0 0.0 0.0 0.0 0.014728 0.000000 0.017286 0.000000 0.000000 0.014629 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.021747 0.000000 0.039906 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019142 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.0 0.000000 0.000000 0.018668 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.015702 0.000000 0.000000 0.000000 0.036468 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019721 0.0 0.018442 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030691 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.018483 0.030151 0.000000 0.000000 0.030691 0.035091 0.000000 0.000000 0.000000 0.000000 0.000000 0.017792 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.015668 0.000000 0.000000 0.000000 0.000000 0.000000 0.040102 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034655 0.000000 0.013399 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.018530 0.0 0.0 0.000000 0.000000 0.000000 0.027446 0.000000 0.000000 0.000000 0.000000 0.000000 0.060669 0.000000 0.000000 0.000000 0.03792 0.000000 0.000000 0.000000 0.000000 0.000000 0.014901 0.00000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024093 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.047244 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.051817 0.0 0.00000 0.000000 0.015256 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033804 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.026019 0.016408 0.000000 0.013025 0.013691 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.016795 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.011206 0.000000 0.000000 0.00000 0.000000 0.00000 0.000000 0.000000 0.0 0.027341 0.0 0.0 0.0 0.00000 0.000000 0.027445 0.000000 0.030323 0.034933 0.000000 0.028382 0.000000 0.000000 0.000000 0.026441 0.000000 0.026441 0.000000 0.000000 0.023200 0.026441 0.0 0.0 0.0 0.00000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034891 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016741 0.000000 0.013382 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.047239 0.0 0.000000 0.014853 0.020527 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.030489 0.000000 0.000000 0.00000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.026211 0.000000 0.000000 0.025378 0.000000 0.00000 0.035809 0.000000 0.0 0.0 0.016883 0.000000 0.000000 0.000000 0.000000 0.000000 0.017081 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.014111 0.000000 0.015745 0.024556 0.000000 0.00000 0.000000 0.000000 0.016326 0.00000 0.00000 0.000000 0.035389 0.000000 0.000000 0.000000 0.000000 0.016892 0.018003 0.000000 0.000000 0.000000 0.000000 0.026651 0.000000 0.000000 0.000000 0.016450 0.016221 0.014493 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050654 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.035130 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028833 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.048982 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029995 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.032930 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.014016 0.000000 0.000000 0.019115 0.000000 0.018321 0.0 0.000000 0.000000 0.025988 0.000000 0.034578 0.000000 0.00000 0.00000 0.000000 0.049279 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.00000 0.0 0.000000 0.00000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.023065 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.031749 0.029124 0.000000 0.00000 0.000000 0.000000 0.018314 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.036800 0.027177 0.000000 0.000000 0.028132 0.000000 0.000000 0.000000 0.028132 0.0 0.000000 0.000000 0.0 0.027967 0.000000 0.000000 0.016732 0.000000 0.000000 0.000000 0.018508 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.025878 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.017357 0.000000 0.012350 0.000000 0.000000 0.000000 0.000000 0.000000 0.027341 0.017447 0.0 0.0 0.000000 0.038208 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025585 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.035117 0.00000 0.00000 0.026729 0.026729 0.026729 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.086021 0.000000 0.000000 0.000000 0.00000 0.096568 0.000000 0.021890 0.049135 0.0 0.0 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.0000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.018231 0.000000 0.000000 0.000000 0.0 0.0 0.036007 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.013768 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.0 0.000000 0.000000 0.014077 0.0 0.018773 0.029790 0.000000 0.029851 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.033787 0.000000 0.000000 0.000000 0.000000 0.000000 0.017780 0.000000 0.023244 0.000000 0.000000 0.000000 0.032260 0.0 0.0 0.000000 0.000000 0.034743 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014790 0.019327 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.031417 0.0 0.0 0.0 0.0 0.000000 0.0 0.00000 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.017810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.065065 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.025878 0.0 0.025878 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.0 0.016455 0.0 0.000000 0.000000 0.0 0.0000 0.000000 0.0 0.0 0.061569 0.000000 0.029814 0.00000 0.000000 0.018080 0.026486 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017034 0.000000 0.000000 0.016699 0.000000 0.000000 0.056222 0.000000 0.000000 0.030400 0.000000 0.000000 0.0 0.0 0.000000 0.029632 0.018484 0.018484 0.017466 0.0 0.000000 0.020234 0.000000 0.000000 0.018181 0.029045 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.027212 0.0 0.000000 0.0 0.055481 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021231 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.036781 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017018 0.0 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.00000 0.020767 0.032719 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.025439 0.000000 0.000000 0.000000 0.018272 0.018272 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019355 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.021206 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.017231 0.000000 0.000000 0.013080 0.000000 0.000000 0.023392 0.000000 0.022337 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015552 0.000000 0.000000 0.000000 0.000000 0.000000 0.017890 0.000000 0.013825 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030827 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016178 0.031819 0.013825 0.000000 0.000000 0.00000 0.021346 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017492 0.000000 0.029847 0.000000 0.000000 0.000000 0.000000 0.000000 0.017220 0.0 0.000000 0.015798 0.025818 0.060631 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020820 0.027907 0.000000 0.000000 0.000000 0.0 0.022278 0.020100 0.000000 0.057513 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.013733 0.0 0.0 0.026755 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.018952 0.016889 0.000000 0.000000 0.00000 0.0 0.000000 0.0 0.000000 0.00000 0.017309 0.0 0.031340 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.00000 0.000000 0.020703 0.029387 0.0 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035051 0.019779 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.026949 0.000000 0.000000 0.018885 0.015586 0.031580 0.015034 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.025799 0.000000 0.000000 0.000000 0.000000 0.000000 0.012953 0.000000 0.0 0.00000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.016338 0.000000 0.000000 0.064368 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.021274 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037230 0.000000 0.000000 0.00000 0.00000 0.000000 0.00000 0.02139 0.000000 0.017984 0.00000 0.016481 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028104 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.020895 0.000000 0.068959 0.000000 0.000000 0.000000 0.000000 0.000000 0.013825 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.0 0.023101 0.0 0.000000 0.00000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.00000 0.000000 0.028697 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.014918 0.0000 0.014918 0.000000 0.000000 0.000000 0.017269 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.052429 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.0 0.000000 0.029447 0.029447 0.029447 0.000000 0.000000 0.000000 0.018130 0.000000 0.000000 0.0 0.000000 0.0 0.0000 0.0 0.0 0.0 0.0 0.0 0.030906 0.000000 0.000000 0.00000 0.000000 0.029351 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035386 0.0000 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.015526 0.000000 0.023222 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.030474 0.00000 0.017620 0.00000 0.000000 0.027861 0.132780 0.021002 0.000000 0.00000 0.000000 0.028580 0.000000 0.036605 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013557 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.012925 0.000000 0.00000 0.0 0.016070 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.016971 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021405 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016903 0.000000 0.000000 0.000000 0.014430 0.017769 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.049242 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031847 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.019410 0.034015 0.055071 0.0 0.000000 0.0 0.020867 0.000000 0.020895 0.0 0.000000 0.012423 0.0 0.026627 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.030914 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.025031 0.000000 0.024918 0.037446 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.016793 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.00000 0.035664 0.0 0.0 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.0 0.013821 0.000000 0.00000 0.029534 0.029534 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027386 0.000000 0.000000 0.000000 0.00000 0.000000 0.017099 0.000000 0.0 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.022166 0.000000 0.000000 0.017213 0.0000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.014557 0.011583 0.000000 0.016530 0.000000 0.059604 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.029313 0.000000 0.000000 0.000000 0.000000 0.014858 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.026558 0.000000 0.000000 0.000000 0.000000 0.029478 0.029478 0.029478 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.02119 0.000000 0.000000 0.019211 0.018740 0.000000 0.000000 0.018283 0.000000 0.029378 0.000000 0.000000 0.00000 0.011347 0.000000 0.0 0.000000 0.000000 0.044554 0.000000 0.000000 0.000000 0.024354 0.000000 0.032153 0.000000 0.000000 0.000000 0.000000 0.017891 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020447 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.028791 0.000000 0.0 0.0 0.0 0.00000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.028791 0.000000 0.0 0.000000 0.028418 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.00000 0.036734 0.000000 0.019211 0.000000 0.00000 0.000000 0.000000 0.0 0.00000 0.016915 0.0 0.016915 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026057 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.026057 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.0 0.023855 0.0 0.0 0.000000 0.012945 0.000000 0.032737 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.0000 0.025797 0.000000 0.000000 0.000000 0.013141 0.00000 0.000000 0.000000 0.000000 0.015771 0.000000 0.000000 0.000000 0.000000 0.000000 0.037105 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018096 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040968 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.00000 0.000000 0.00000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.025031 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.00000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.013767 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.018641 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019390 0.0 0.000000 0.016666 0.000000 0.000000 0.0 0.019827 0.014869 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017356 0.000000 0.0 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.018410 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031269 0.076838 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.0 0.000000 0.000000 0.000000 0.000000 0.014525 0.000000 0.000000 0.000000 0.0 0.023575 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.025224 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.015632 0.000000 0.0 0.000000 0.000000 0.000000 0.021311 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047133 0.000000 0.026716 0.00000 0.000000 0.020985 0.000000 0.000000 0.000000 0.016693 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.025812 0.000000 0.000000 0.000000 0.000000 0.025534 0.014031 0.014031 0.00000 0.018260 0.00000 0.000000 0.042785 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.023226 0.000000 0.000000 0.000000 0.0 0.00000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.00000 0.015879 0.0 0.000000 0.015189 0.027097 0.00000 0.000000 0.000000 0.000000 0.000000 0.015798 0.029013 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.020548 0.000000 0.000000 0.026868 0.000000 0.000000 0.000000 0.018528 0.033108 0.000000 0.026809 0.026809 0.013366 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.017196 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.024961 0.0 0.0 0.024961 0.0 0.0 0.016453 0.025589 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.036861 0.0 0.0 0.0 0.0 0.016154 0.000000 0.020226 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.00000 0.025356 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.028632 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.017499 0.000000 0.000000 0.000000 0.030776 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055143 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025127 0.000000 0.000000 0.000000 0.000000 0.000000 0.027893 0.000000 0.000000 0.000000 0.057591 0.025526 0.000000 0.029090 0.015541 0.0 0.00000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.022647 0.000000 0.000000 0.000000 0.0 0.000000 0.023345 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.000000 0.056010 0.000000 0.022754 0.000000 0.028632 0.000000 0.000000 0.000000 0.020216 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.046659 0.00000 0.000000 0.00000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.017923 0.0000 0.0 0.00000 0.0 0.000000 0.018790 0.000000 0.0 0.0 0.016135 0.000000 0.000000 0.000000 0.000000 0.018212 0.000000 0.042268 0.000000 0.035486 0.042747 0.000000 0.000000 0.015654 0.042747 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.0000 0.000000 0.056165 0.000000 0.000000 0.000000 0.021009 0.00000 0.016577 0.0 0.000000 0.000000 0.056422 0.000000 0.013744 0.000000 0.014046 0.000000 0.039136 0.0 0.000000 0.000000 0.028196 0.057477 0.059905 0.000000 0.016482 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.016966 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015073 0.000000 0.016657 0.000000 0.000000 0.000000 0.000000 0.052829 0.000000 0.000000 0.000000 0.029757 0.026946 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027054 0.000000 0.000000 0.027275 0.000000 0.013709 0.0 0.000000 0.014294 0.000000 0.000000 0.000000 0.018047 0.037322 0.013468 0.011133 0.0 0.000000 0.009369 0.0 0.000000 0.000000 0.036684 0.018887 0.000000 0.000000 0.0 0.000000 0.011287 0.000000 0.000000 0.000000 0.024292 0.000000 0.041682 0.000000 0.000000 0.0 0.015121 0.000000 0.000000 0.055908 0.000000 0.000000 0.000000 0.000000 0.000000 0.013886 0.000000 0.000000 0.000000 0.000000 0.000000 0.022715 0.000000 0.018636 0.013815 0.000000 0.000000 0.078754 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025102 0.015981 0.000000 0.000000 0.012108 0.000000 0.000000 0.000000 0.029892 0.000000 0.000000 0.000000 0.013680 0.0 0.000000 0.022025 0.029195 0.000000 0.0 0.000000 0.000000 0.023579 0.000000 0.000000 0.000000 0.031220 0.000000 0.013848 0.00000 0.014611 0.012780 0.012561 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033094 0.000000 0.046503 0.000000 0.00000 0.000000 0.000000 0.016124 0.000000 0.025476 0.000000 0.000000 0.000000 0.000000 0.036847 0.045646 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030935 0.020521 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.025773 0.000000 0.022971 0.000000 0.000000 0.015436 0.017712 0.000000 0.00000 0.000000 0.000000 0.012859 0.052312 0.000000 0.013792 0.012296 0.048647 0.000000 0.000000 0.030836 0.000000 0.000000 0.000000 0.000000 0.050096 0.075241 0.000000 0.012330 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.039403 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.011750 0.000000 0.040135 0.016007 0.016706 0.054835 0.0 0.000000 0.00000 0.000000 0.020757 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.022793 0.000000 0.019754 0.012476 0.000000 0.019980 0.000000 0.039181 0.00000 0.013404 0.019905 0.000000 0.000000 0.000000 0.029600 0.000000 0.000000 0.000000 0.000000 0.008211 0.048998 0.000000 0.000000 0.000000 0.000000 0.000000 0.036295 0.000000 0.024125 0.000000 0.000000 0.000000 0.000000 0.000000 0.026155 0.000000 0.000000 0.00000 0.000000 0.000000 0.023467 0.01969 0.000000 0.000000 0.031372 0.032844 0.000000 0.020864 0.000000 0.000000 0.000000 0.015878 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.034370 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029921 0.068206 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026699 0.000000 0.000000 0.023097 0.000000 0.011918 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012474 0.000000 0.000000 0.000000 0.059386 0.000000 0.000000 0.000000 0.000000 0.000000 0.010944 0.059119 0.000000 0.000000 0.108436 0.053026 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.047052 0.000000 0.009486 0.0 0.000000 0.000000 0.000000 0.012246 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.014170 0.00000 0.000000 0.000000 0.050437 0.018147 0.016090 0.057570 0.037617 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.037709 0.0000 0.000000 0.016243 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013571 0.000000 0.000000 0.000000 0.000000 0.015166 0.000000 0.000000 0.017856 0.000000 0.000000 0.000000 0.0 0.000000 0.034865 0.000000 0.014388 0.000000 0.000000 0.023583 0.000000 0.000000 0.016305 0.021934 0.087163 0.000000 0.000000 0.000000 0.000000 0.015115 0.000000 0.018885 0.000000 0.018346 0.062576 0.000000 0.014480 0.000000 0.000000 0.000000 0.000000 0.000000 0.034064 0.000000 0.000000 0.000000 0.000000 0.000000 0.010784 0.026001 0.000000 0.0 0.000000 0.000000 0.000000 0.022640 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013528 0.0 0.000000 0.036129 0.000000 0.000000 0.017942 0.032068 0.009214 0.022085 0.000000 0.0 0.000000 0.000000 0.015319 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.046769 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011961 0.00000 0.062257 0.000000 0.000000 0.012893 0.000000 0.000000 0.000000 0.000000 0.022819 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023745 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027546 0.000000 0.000000 0.000000 0.023455 0.000000 0.00000 0.000000 0.000000 0.048804 0.000000 0.000000 0.00000 0.023463 0.0 0.000000 0.030899 0.000000 0.000000 0.019985 0.000000 0.000000 0.012183 0.015918 0.017785 0.00000 0.000000 0.000000 0.000000 0.020579 0.000000 0.000000 0.000000 0.022469 0.000000 0.000000 0.020147 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014736 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029450 0.000000 0.000000 0.0 0.026829 0.000000 0.000000 0.022367 0.019075 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.033653 0.000000 0.000000 0.000000 0.000000 0.000000 0.013592 0.000000 0.000000 0.000000 0.000000 0.019736 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026779 0.014744 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.024029 0.00000 0.024031 0.000000 0.0 0.000000 0.000000 0.000000 0.021925 0.021995 0.000000 0.0 0.000000 0.014385 0.053578 0.000000 0.0 0.000000 0.023268 0.0 0.000000 0.014521 0.000000 0.084462 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.044190 0.000000 0.000000 0.00000 0.031891 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.057242 0.000000 0.0 0.000000 0.018867 0.000000 0.000000 0.000000 0.000000 0.000000 0.014380 0.000000 0.097299 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.016248 0.031814 0.000000 0.000000 0.038288 0.000000 0.000000 0.000000 0.000000 0.000000 0.013220 0.027552 0.000000 0.000000 0.000000 0.000000 0.000000 0.057241 0.000000 0.014226 0.0 0.000000 0.011923 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035559 0.00000 0.000000 0.034055 0.000000 0.018265 0.000000 0.038079 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013529 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.021876 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020201 0.00000 0.037693 0.020614 0.000000 0.017357 0.0000 0.013685 0.000000 0.000000 0.000000 0.019741 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035710 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.037785 0.00000 0.000000 0.015711 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033557 0.015738 0.000000 0.012499 0.00000 0.0 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012894 0.000000 0.0 0.000000 0.000000 0.025992 0.000000 0.000000 0.000000 0.000000 0.025156 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.091513 0.000000 0.018525 0.018556 0.000000 0.000000 0.000000 0.014404 0.000000 0.000000 0.016764 0.000000 0.012107 0.000000 0.000000 0.000000 0.000000 0.025281 0.036043 0.055217 0.000000 0.000000 0.000000 0.000000 0.033156 0.000000 0.012626 0.000000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.018847 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010196 0.000000 0.022348 0.000000 0.000000 0.000000 0.000000 0.014574 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.027554 0.000000 0.00000 0.000000 0.010415 0.020790 0.000000 0.036323 0.021036 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.015424 0.016541 0.000000 0.032042 0.000000 0.000000 0.000000 0.000000 0.029296 0.019146 0.000000 0.014588 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.018285 0.000000 0.000000 0.018306 0.000000 0.000000 0.000000 0.000000 0.035934 0.000000 0.000000 0.000000 0.017938 0.00000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020920 0.000000 0.00000 0.000000 0.000000 0.000000 0.022185 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021646 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012847 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.00000 0.000000 0.025347 0.023314 0.000000 0.000000 0.016732 0.012788 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.00000 0.000000 0.014867 0.023015 0.000000 0.00000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.023240 0.000000 0.000000 0.000000 0.00000 0.040498 0.00000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012950 0.000000 0.000000 0.000000 0.000000 0.021321 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.000000 0.029903 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020337 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017001 0.000000 0.035086 0.000000 0.062360 0.000000 0.000000 0.023487 0.000000 0.000000 0.016131 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009628 0.000000 0.050381 0.000000 0.000000 0.00000 0.0000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.030172 0.00000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027476 0.0 0.000000 0.042841 0.0 0.000000 0.0 0.028027 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011551 0.000000 0.000000 0.000000 0.000000 0.013838 0.000000 0.000000 0.000000 0.000000 0.000000 0.022018 0.000000 0.022232 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.129944 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015008 0.000000 0.013237 0.000000 0.029145 0.000000 0.025361 0.079882 0.028027 0.000000 0.000000 0.017913 0.034353 0.000000 0.000000 0.0 0.000000 0.000000 0.023482 0.000000 0.000000 0.012246 0.000000 0.012658 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.014769 0.000000 0.000000 0.000000 0.0000 0.057958 0.000000 0.00000 0.000000 0.000000 0.013528 0.0 0.0 0.021695 0.045786 0.018949 0.0 0.000000 0.000000 0.030427 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.019316 0.00000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.029932 0.000000 0.0 0.000000 0.0 0.031083 0.000000 0.018708 0.0 0.0 0.000000 0.031501 0.0 0.0 0.0 0.043343 0.000000 0.000000 0.066396 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021749 0.000000 0.000000 0.000000 0.000000 0.000000 0.028807 0.034111 0.015776 0.000000 0.000000 0.032498 0.0 0.000000 0.000000 0.000000 0.017085 0.0 0.027488 0.000000 0.016197 0.022321 0.000000 0.0 0.0 0.0 0.0 0.041336 0.000000 0.031578 0.000000 0.000000 0.029176 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047215 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.016846 0.0 0.035326 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.030400 0.017582 0.015297 0.000000 0.000000 0.000000 0.047674 0.000000 0.000000 0.000000 0.073148 0.039753 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.023446 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.022706 0.000000 0.0 0.0 0.031182 0.000000 0.00000 0.020262 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.009068 0.000000 0.000000 0.009237 0.000000 0.0 0.0 0.014313 0.0 0.000000 0.034117 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.013116 0.000000 0.000000 0.018077 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016036 0.000000 0.000000 0.00000 0.000000 0.02203 0.000000 0.0 0.0 0.028123 0.0 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.019753 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.013913 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.055937 0.0 0.020723 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.082199 0.082199 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.044586 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.016275 0.009282 0.022233 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.015770 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.012509 0.0 0.015528 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.028141 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025348 0.000000 0.000000 0.000000 0.000000 0.000000 0.044581 0.029183 0.0 0.000000 0.014334 0.0 0.014558 0.000000 0.000000 0.0 0.025623 0.0 0.000000 0.000000 0.000000 0.105475 0.000000 0.000000 0.000000 0.000000 0.000000 0.013631 0.000000 0.0 0.000000 0.0 0.0 0.021235 0.0 0.000000 0.0 0.000000 0.000000 0.019494 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.011251 0.0 0.008146 0.057270 0.0 0.000000 0.0 0.0 0.000000 0.0 0.016362 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.011994 0.0 0.0 0.0 0.0 0.013994 0.000000 0.000000 0.044180 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.024966 0.000000 0.021432 0.00000 0.015133 0.017263 0.010257 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.015216 0.0 0.0 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.018112 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.017782 0.0 0.029241 0.020083 0.029612 0.000000 0.000000 0.043876 0.055079 0.000000 0.018694 0.018987 0.000000 0.0 0.0 0.00000 0.000000 0.000000 0.000000 0.042454 0.000000 0.0 0.0 0.0 0.029350 0.0 0.0 0.000000 0.000000 0.0 0.013234 0.030789 0.000000 0.000000 0.000000 0.000000 0.015502 0.000000 0.000000 0.016912 0.018438 0.038438 0.019059 0.018633 0.000000 0.000000 0.00000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.032418 0.0 0.0 0.016563 0.000000 0.016485 0.000000 0.000000 0.020465 0.000000 0.000000 0.013993 0.0 0.00000 0.020593 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.015818 0.026341 0.019519 0.000000 0.0 0.000000 0.0 0.00000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.019504 0.045655 0.000000 0.000000 0.000000 0.0 0.046319 0.0 0.041397 0.0 0.0 0.0 0.013316 0.0 0.0 0.000000 0.000000 0.0 0.0 0.014941 0.000000 0.0 0.0 0.0 0.087652 0.0 0.0 0.0 0.000000 0.0 0.000000 0.044586 0.0 0.0 0.025604 0.0 0.000000 0.000000 0.000000 0.000000 0.022737 0.026366 0.072686 0.033077 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.057665 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.021476 0.0 0.000000 0.026367 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.020080 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.022486 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.069597 0.000000 0.000000 0.000000 0.023981 0.0 0.0 0.000000 0.000000 0.027488 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.00000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.082199 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017376 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022425 0.021818 0.023066 0.0 0.000000 0.0 0.010978 0.000000 0.0 0.0 0.000000 0.0 0.0 0.000000 0.064168 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.017237 0.0 0.008374 0.000000 0.000000 0.0 0.000000 0.018082 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.052190 0.035502 0.035199 0.029704 0.00000 0.013727 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.016472 0.000000 0.000000 0.0 0.031285 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.026928 0.018682 0.0 0.026662 0.026662 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.028626 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.00000 0.00000 0.000000 0.000000 0.000000 0.024132 0.000000 0.038267 0.000000 0.088815 0.0 0.021273 0.000000 0.030298 0.000000 0.000000 0.000000 0.0 0.0 0.011162 0.0 0.0 0.0 0.0 0.000000 0.0 0.024221 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.027573 0.0 0.101160 0.098044 0.0 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.023035 0.000000 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.018266 0.0 0.029887 0.051517 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.039891 0.000000 0.0 0.0 0.000000 0.0 0.00000 0.00000 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.051474 0.0 0.014058 0.000000 0.014048 0.000000 0.0 0.000000 0.0 0.030777 0.000000 0.008549 0.000000 0.000000 0.000000 0.000000 0.023715 0.000000 0.030281 0.013251 0.000000 0.021008 0.000000 0.000000 0.026202 0.017410 0.000000 0.035465 0.000000 0.0 0.000000 0.009167 0.0 0.0 0.0 0.0 0.0 0.007860 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.00000 0.0 0.012528 0.0 0.0 0.000000 0.0 0.000000 0.0 0.0 0.013508 0.025564 0.000000 0.016375 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.066453 0.0 0.0 0.000000 0.0 0.000000 0.00000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.015481 0.0 0.00000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.026907 0.000000 0.000000 0.000000 0.016959 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.033726 0.0 0.048789 0.017698 0.0 0.0 0.0 0.000000 0.014815 0.0 0.0 0.029347 0.000000 0.031845 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.016658 0.0 0.000000 0.000000 0.0 0.0 0.030621 0.000000 0.028478 0.000000 0.000000 0.022050 0.000000 0.014786 0.027441 0.000000 0.0 0.0 0.00000 0.000000 0.000000 0.0 0.017555 0.000000 0.000000 0.000000 0.034019 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.024166 0.000000 0.000000 0.012279 0.000000 0.0 0.000000 0.020836 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.013875 0.0 0.0 0.0 0.035348 0.000000 0.000000 0.0 0.010899 0.000000 0.0 0.0 0.000000 0.000000 0.022396 0.0 0.000000 0.000000 0.034222 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021404 0.000000 0.000000 0.000000 0.012757 0.000000 0.014024 0.028164 0.000000 0.0 0.000000 0.029954 0.000000 0.000000 0.000000 0.000000 0.091023 0.016708 0.0 0.0 0.000000 0.000000 0.009649 0.0 0.00000 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.00000 0.000000 0.066438 0.024980 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012656 0.0 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.046367 0.0 0.000000 0.0 0.0 0.000000 0.007983 0.0 0.00000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.034161 0.000000 0.000000 0.023080 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.012066 0.015694 0.029241 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.076916 0.065506 0.000000 0.00000 0.040357 0.000000 0.0 0.0 0.0 0.039634 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.014734 0.000000 0.000000 0.013809 0.020201 0.013790 0.000000 0.000000 0.017706 0.00000 0.065531 0.000000 0.000000 0.000000 0.000000 0.0 0.011080 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.017439 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.033112 0.000000 0.000000 0.000000 0.0 0.036579 0.0 0.0 0.015466 0.0 0.0 0.0 0.011696 0.074745 0.000000 0.0 0.0 0.031563 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022526 0.0 0.0 0.0 0.053105 0.028461 0.0 0.0 0.0 0.0 0.000000 0.000000 0.020380 0.000000 0.000000 0.000000 0.032587 0.0 0.000000 0.020596 0.020524 0.011104 0.0 0.0 0.016425 0.0 0.0 0.000000 0.0 0.030052 0.0 0.02677 0.000000 0.013333 0.0 0.000000 0.024296 0.000000 0.000000 0.031449 0.000000 0.0 0.0 0.0 0.082199 0.0 0.0 0.000000 0.000000 0.000000 0.033342 0.000000 0.000000 0.014256 0.0 0.025370 0.018525 0.041755 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.017830 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.019253 0.026411 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.018559 0.0 0.0 0.0 0.0 0.0 0.099632 0.0 0.0 0.000000 0.025708 0.049675 0.000000 0.000000 0.0 0.000000 0.0 0.019852 0.0000 0.0 0.0 0.026280 0.060675 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.0 0.0 0.0 0.000000 0.022694 0.013075 0.027488 0.000000 0.0 0.038218 0.0 0.0 0.007944 0.00000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.034184 0.000000 0.000000 0.0 0.0 0.000000 0.048930 0.028517 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.021077 0.000000 0.000000 0.062688 0.028867 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.019671 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.090724 0.0 0.014048 0.000000 0.00000 0.0 0.0 0.0 0.0 0.0 0.013269 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.017760 0.000000 0.016650 0.022755 0.000000 0.0 0.013778 0.0 0.0 0.00000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.011960 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.017394 0.015436 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.012883 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.046080 0.019093 0.082199 0.082199 0.0 0.000000 0.0 0.000000 0.0 0.00000 0.027698 0.043520 0.017225 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.11705 0.0 0.0 0.000000 0.000000 0.027488 0.013490 0.000000 0.000000 0.000000 0.000000 0.028274 0.0 0.00000 0.030764 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.013892 0.0 0.000000 0.000000 0.000000 0.034323 0.028905 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.019012 0.000000 0.000000 0.000000 0.045942 0.000000 0.0 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.056437 0.000000 0.000000 0.0 0.0 0.000000 0.00000 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.00000 0.016497 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.013402 0.0 0.0 0.0 0.011960 0.0 0.000000 0.0 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.009001 0.000000 0.0 0.0 0.024947 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.029605 0.017501 0.000000 0.015901 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.00000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.026823 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.012136 0.00000 0.0 0.0 0.050753 0.0 0.026571 0.0 0.0 0.0 0.055408 0.0 0.000000 0.000000 0.000000 0.015650 0.019226 0.0 0.000000 0.0 0.000000 0.018846 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.037963 0.0 0.0 0.0 0.000000 0.000000 0.012142 0.015687 0.000000 0.000000 0.015557 0.0 0.014961 0.033685 0.0 0.0 0.0 0.018367 0.0 0.0 0.082199 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.059026 0.000000 0.010510 0.00000 0.000000 0.000000 0.000000 0.017184 0.0 0.022605 0.000000 0.000000 0.034774 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.031652 0.0 0.0 0.0 0.038293 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.020869 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.034286 0.0 0.000000 0.013807 0.000000 0.000000 0.055033 0.000000 0.0 0.000000 0.000000 0.000000 0.016240 0.000000 0.000000 0.000000 0.000000 0.032633 0.000000 0.0 0.0 0.000000 0.014767 0.0 0.0 0.0 0.000000 0.000000 0.018914 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.029867 0.00000 0.015680 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.016884 0.025747 0.000000 0.000000 0.0 0.025275 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023459 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.02429 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.0 0.0 0.00000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.013046 0.0 0.0 0.0 0.000000 0.007952 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.023612 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020463 0.000000 0.026505 0.000000 0.061803 0.012610 0.000000 0.000000 0.0 0.000000 0.0 0.024011 0.0 0.026300 0.00000 0.000000 0.0 0.000000 0.000000 0.016095 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.056640 0.0 0.035789 0.000000 0.038553 0.0 0.0 0.000000 0.0 0.016752 0.014895 0.011457 0.000000 0.000000 0.0 0.021456 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.025740 0.008292 0.000000 0.0 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.011940 0.000000 0.0 0.0 0.000000 0.0 0.00000 0.000000 0.027404 0.015766 0.016708 0.014561 0.0 0.000000 0.000000 0.123829 0.0 0.0 0.0 0.0 0.000000 0.0 0.060402 0.0 0.042041 0.0 0.0 0.000000 0.055124 0.0 0.000000 0.000000 0.016141 0.0 0.000000 0.00000 0.0 0.011796 0.0 0.0 0.012457 0.0 0.033643 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.040716 0.0 0.000000 0.008005 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.035142 0.0 0.018129 0.0 0.000000 0.000000 0.000000 0.000000 0.032790 0.0 0.000000 0.000000 0.027117
1 0.059269 1.000000 0.000000 0.000000 0.0 0.006244 0.000000 0.000000 0.007573 0.009356 0.035075 0.052835 0.092082 0.017519 0.008017 0.076446 0.018280 0.054639 0.020827 0.010081 0.000000 0.037547 0.063655 0.018086 0.019083 0.029436 0.000000 0.036797 0.000000 0.064891 0.035016 0.028535 0.019548 0.066447 0.007248 0.0 0.022504 0.023140 0.034090 0.030648 0.021112 0.000000 0.010708 0.064895 0.063124 0.000000 0.00000 0.000000 0.043566 0.019060 0.095928 0.023783 0.041445 0.019566 0.006696 0.013013 0.084534 0.033082 0.000000 0.000000 0.027527 0.035762 0.000000 0.008038 0.000000 0.019003 0.017002 0.082768 0.028076 0.042958 0.029468 0.018281 0.000000 0.079879 0.033839 0.029816 0.008401 0.075057 0.019553 0.028913 0.038200 0.0 0.000000 0.000000 0.021716 0.000000 0.008124 0.000000 0.000000 0.009375 0.024667 0.047440 0.101819 0.024128 0.018331 0.008706 0.000000 0.041317 0.056841 0.009849 0.024241 0.000000 0.030913 0.000000 0.042025 0.029253 0.065066 0.010846 0.076107 0.007195 0.020893 0.028916 0.029185 0.007371 0.000000 0.037712 0.016738 0.091976 0.035149 0.055252 0.021366 0.037967 0.057178 0.012042 0.022533 0.025760 0.088699 0.042894 0.022077 0.036549 0.016494 0.017625 0.007792 0.065350 0.020567 0.025019 0.086467 0.076010 0.011823 0.031755 0.008507 0.018499 0.000000 0.040270 0.046775 0.007455 0.042773 0.025413 0.023282 0.009380 0.027848 0.019298 0.006586 0.000000 0.000000 0.029734 0.000000 0.000000 0.008404 0.050704 0.090626 0.009589 0.023126 0.010129 0.020075 0.096627 0.067191 0.000000 0.017166 0.044956 0.017155 0.013748 0.022609 0.041670 0.017819 0.007215 0.050208 0.013021 0.019431 0.0 0.000000 0.000000 0.021390 0.030987 0.035397 0.018063 0.013653 0.009424 0.026559 0.0 0.054495 0.024958 0.029285 0.009122 0.021294 0.000000 0.006672 0.009377 0.084838 0.019604 0.000000 0.083242 0.011653 0.024886 0.010053 0.000000 0.023260 0.049068 0.020148 0.0 0.000000 0.0 0.0 0.024265 0.043850 0.000000 0.032228 0.032559 0.014381 0.008933 0.00000 0.008567 0.000000 0.000000 0.023501 0.000000 0.0 0.018530 0.022461 0.000000 0.000000 0.000000 0.009733 0.0 0.007336 0.000000 0.015024 0.000000 0.007361 0.030431 0.0 0.0 0.0 0.000000 0.005894 0.021436 0.019637 0.017923 0.058287 0.033100 0.000000 0.072797 0.045291 0.000000 0.000000 0.060277 0.068630 0.055710 0.060131 0.054499 0.000000 0.067964 0.031787 0.000000 0.053804 0.037382 0.035346 0.082729 0.000000 0.079665 0.041287 0.009173 0.010165 0.000000 0.008905 0.037076 0.047825 0.037029 0.031221 0.027564 0.009445 0.000000 0.008742 0.026100 0.009178 0.017238 0.024188 0.000000 0.038699 0.046404 0.025247 0.000000 0.007538 0.012900 0.046455 0.042490 0.000000 0.000000 0.012090 0.035201 0.000000 0.000000 0.000000 0.007445 0.011614 0.051440 0.042454 0.000000 0.019509 0.000000 0.010163 0.014828 0.016056 0.006789 0.008281 0.017728 0.000000 0.044956 0.018788 0.028110 0.043842 0.034894 0.018606 0.062505 0.021764 0.061426 0.009282 0.007469 0.009825 0.005984 0.000000 0.000000 0.000000 0.000000 0.0 0.007775 0.018096 0.007441 0.010015 0.012433 0.016206 0.063564 0.072325 0.007081 0.017958 0.0 0.040517 0.000000 0.011856 0.060875 0.027224 0.028739 0.000000 0.008839 0.018669 0.000000 0.000000 0.037593 0.031632 0.008565 0.065760 0.094287 0.0 0.000000 0.047394 0.031087 0.000000 0.048847 0.011244 0.033488 0.025029 0.027578 0.028067 0.006842 0.115801 0.009475 0.0 0.000000 0.042002 0.000000 0.000000 0.000000 0.009620 0.023262 0.000000 0.033343 0.017656 0.034214 0.010705 0.034102 0.000000 0.01955 0.008374 0.010669 0.000000 0.026278 0.052071 0.016809 0.051602 0.000000 0.011327 0.009156 0.031196 0.027042 0.072044 0.025699 0.026563 0.012487 0.000000 0.019390 0.021231 0.009868 0.017533 0.000000 0.000000 0.021887 0.031957 0.010580 0.009756 0.000000 0.000000 0.018836 0.009645 0.000000 0.037213 0.047861 0.018572 0.020312 0.037788 0.000000 0.036381 0.000000 0.010579 0.070702 0.010340 0.030908 0.021835 0.035685 0.087052 0.014851 0.051847 0.000000 0.021631 0.037326 0.018102 0.087184 0.054568 0.000000 0.000000 0.025532 0.022726 0.000000 0.029330 0.024073 0.048724 0.000000 0.021039 0.0 0.000000 0.000000 0.000000 0.000000 0.006813 0.0 0.042637 0.052959 0.022789 0.026684 0.025878 0.000000 0.015387 0.000000 0.000000 0.000000 0.013054 0.028233 0.000000 0.034571 0.000000 0.007391 0.000000 0.021110 0.025207 0.015744 0.000000 0.0 0.0 0.000000 0.000000 0.053456 0.000000 0.025762 0.008641 0.042247 0.049190 0.029340 0.000000 0.017899 0.102490 0.000000 0.026450 0.020425 0.000000 0.017991 0.035508 0.0 0.009716 0.006361 0.024963 0.011428 0.000000 0.019975 0.011078 0.073776 0.036224 0.017245 0.052010 0.121013 0.000000 0.033041 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.007316 0.007102 0.000000 0.000000 0.032399 0.000000 0.000000 0.005881 0.010974 0.000000 0.026899 0.006865 0.010667 0.000000 0.000000 0.000000 0.021611 0.019713 0.045508 0.000000 0.0 0.000000 0.010316 0.000000 0.045765 0.068947 0.019615 0.027866 0.039899 0.074191 0.038538 0.011223 0.012246 0.040587 0.000000 0.0 0.0 0.000000 0.029935 0.000000 0.000000 0.008027 0.024928 0.012823 0.008986 0.007247 0.025878 0.000000 0.010159 0.089371 0.008298 0.018044 0.02734 0.000000 0.020339 0.042588 0.034774 0.015991 0.037054 0.068693 0.009735 0.000000 0.0 0.039869 0.0 0.000000 0.069190 0.011617 0.032164 0.012985 0.000000 0.000000 0.000000 0.038468 0.038695 0.100186 0.047243 0.000000 0.044679 0.0 0.0 0.0 0.0 0.020203 0.011520 0.010469 0.007185 0.019385 0.000000 0.022240 0.032090 0.041667 0.011478 0.018844 0.094085 0.017478 0.016046 0.008130 0.039463 0.019610 0.000000 0.000000 0.008354 0.081204 0.000000 0.075031 0.026888 0.0 0.022408 0.000000 0.025059 0.061450 0.055491 0.008268 0.027750 0.042440 0.0 0.024403 0.0 0.020645 0.023498 0.025966 0.006670 0.0 0.0 0.012891 0.010247 0.007974 0.000000 0.031210 0.011855 0.000000 0.010376 0.0 0.000000 0.014732 0.013273 0.018977 0.000000 0.015502 0.007499 0.000000 0.047050 0.0 0.000000 0.000000 0.086229 0.017809 0.009972 0.021539 0.019965 0.000000 0.072274 0.032233 0.008546 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.007521 0.024295 0.000000 0.064214 0.015486 0.000000 0.020874 0.033884 0.000000 0.036933 0.026872 0.028250 0.023553 0.000000 0.024142 0.0 0.019707 0.000000 0.051956 0.011538 0.000000 0.010778 0.000000 0.008449 0.029901 0.050662 0.013584 0.0 0.023338 0.010663 0.000000 0.011333 0.000000 0.000000 0.017814 0.059934 0.055506 0.028855 0.034446 0.008811 0.051878 0.031725 0.0 0.000000 0.000000 0.035117 0.000000 0.022074 0.022968 0.000000 0.033904 0.000000 0.000000 0.047821 0.006221 0.000000 0.0 0.070038 0.000000 0.000000 0.009844 0.012954 0.000000 0.052700 0.032461 0.032525 0.048541 0.049196 0.030962 0.048756 0.0 0.0 0.0 0.027499 0.000000 0.028057 0.000000 0.000000 0.023305 0.000000 0.0 0.016309 0.000000 0.017934 0.000000 0.000000 0.045950 0.000000 0.000000 0.038511 0.012688 0.021119 0.010075 0.000000 0.022107 0.0 0.015040 0.016800 0.000000 0.023456 0.000000 0.030912 0.015848 0.000000 0.000000 0.000000 0.000000 0.0 0.010722 0.000000 0.000000 0.000000 0.000000 0.0 0.027027 0.009837 0.027003 0.000000 0.017297 0.000000 0.00000 0.000000 0.109641 0.010718 0.00000 0.000000 0.000000 0.030711 0.030868 0.000000 0.00000 0.0 0.000000 0.000000 0.030774 0.012715 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.047437 0.000000 0.012349 0.027953 0.013133 0.038314 0.051315 0.011651 0.000000 0.040516 0.000000 0.000000 0.008860 0.000000 0.009820 0.030225 0.0 0.000000 0.025837 0.0 0.0 0.000000 0.011364 0.010805 0.000000 0.000000 0.0 0.012592 0.053162 0.000000 0.048781 0.004527 0.000000 0.0 0.033569 0.000000 0.042166 0.013881 0.053965 0.000000 0.039966 0.011383 0.000000 0.088026 0.000000 0.015471 0.000000 0.000000 0.014135 0.000000 0.000000 0.0 0.0 0.061245 0.032576 0.000000 0.000000 0.040410 0.045112 0.035111 0.012466 0.054405 0.029157 0.0 0.015833 0.035697 0.0 0.0 0.027917 0.020134 0.028862 0.008303 0.015789 0.019842 0.016882 0.019845 0.021032 0.028914 0.052597 0.012351 0.008377 0.005060 0.000000 0.014083 0.027822 0.000000 0.019588 0.000000 0.015719 0.055663 0.010446 0.019468 0.011132 0.040790 0.012500 0.007989 0.075104 0.011264 0.000000 0.000000 0.008705 0.000000 0.000000 0.015931 0.015932 0.007873 0.008986 0.025883 0.000000 0.000000 0.131247 0.042715 0.007416 0.000000 0.017616 0.009283 0.026770 0.000000 0.023783 0.016042 0.057967 0.000000 0.000000 0.000000 0.0 0.006936 0.020270 0.0 0.017598 0.020057 0.012262 0.010687 0.021602 0.017408 0.000000 0.000000 0.0 0.011555 0.000000 0.039167 0.008162 0.007264 0.057262 0.049104 0.029184 0.000000 0.000000 0.024429 0.211981 0.025074 0.000000 0.000000 0.000000 0.000000 0.049822 0.00000 0.029424 0.000000 0.152392 0.0 0.069501 0.012632 0.009248 0.000000 0.014470 0.026206 0.019093 0.008388 0.026846 0.029063 0.074294 0.043803 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.008478 0.009917 0.000000 0.026926 0.025878 0.019410 0.025776 0.000000 0.009011 0.000000 0.010116 0.000000 0.015659 0.010594 0.017150 0.036143 0.037857 0.056634 0.063838 0.071570 0.000000 0.015379 0.035720 0.016929 0.000000 0.000000 0.000000 0.031705 0.025297 0.037393 0.044252 0.030414 0.015052 0.000000 0.0 0.000000 0.000000 0.007340 0.028752 0.022485 0.012358 0.045830 0.000000 0.039164 0.00000 0.038494 0.034861 0.011510 0.0 0.027058 0.006627 0.017089 0.0 0.000000 0.005726 0.015330 0.007369 0.000000 0.015944 0.028564 0.011060 0.0 0.044863 0.019115 0.000000 0.008010 0.000000 0.000000 0.036024 0.055772 0.000000 0.0 0.006664 0.038786 0.037155 0.010402 0.000000 0.043016 0.000000 0.012905 0.011301 0.000000 0.028937 0.000000 0.023211 0.045762 0.0 0.000000 0.036191 0.039298 0.000000 0.000000 0.063094 0.035315 0.0 0.000000 0.019549 0.0 0.0 0.0 0.0 0.0 0.000000 0.00000 0.045373 0.025006 0.010446 0.023060 0.000000 0.008866 0.016792 0.000000 0.025878 0.000000 0.066573 0.000000 0.000000 0.086485 0.013138 0.105725 0.000000 0.063989 0.006314 0.000000 0.037919 0.000000 0.006491 0.000000 0.000000 0.042579 0.000000 0.0 0.030303 0.009372 0.015707 0.010027 0.034260 0.000000 0.000000 0.000000 0.021510 0.006820 0.000000 0.011163 0.000000 0.006984 0.013010 0.0 0.0 0.0 0.0 0.0 0.0 0.012904 0.039050 0.011771 0.01802 0.000000 0.0 0.019002 0.053978 0.041898 0.042157 0.007473 0.010109 0.026064 0.041152 0.000000 0.000000 0.000000 0.000000 0.034868 0.000000 0.008339 0.025878 0.047865 0.000000 0.011783 0.058657 0.000000 0.042412 0.000000 0.011295 0.0 0.000000 0.000000 0.007529 0.0 0.000000 0.017260 0.000000 0.000000 0.006809 0.0 0.000000 0.000000 0.016481 0.000000 0.000000 0.050720 0.051826 0.060358 0.017464 0.033396 0.017641 0.000000 0.010346 0.037548 0.009716 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.010274 0.046544 0.014020 0.068755 0.024328 0.029711 0.000000 0.021143 0.041010 0.037054 0.075070 0.048132 0.000000 0.000000 0.000000 0.038279 0.000000 0.017861 0.018543 0.000000 0.018461 0.018663 0.0 0.006062 0.000000 0.018125 0.035662 0.031069 0.000000 0.025007 0.021759 0.000000 0.049078 0.063302 0.009315 0.0 0.000000 0.046675 0.008545 0.0 0.000000 0.000000 0.000000 0.006455 0.020683 0.028102 0.029367 0.011216 0.012631 0.000000 0.0 0.0 0.025716 0.006862 0.016794 0.027732 0.034947 0.0 0.000000 0.033984 0.021327 0.037790 0.016885 0.0 0.0 0.048790 0.038622 0.000000 0.019513 0.000000 0.013174 0.00000 0.000000 0.0 0.000000 0.000000 0.047877 0.029576 0.000000 0.016030 0.088768 0.056245 0.008058 0.024426 0.012308 0.043768 0.000000 0.026566 0.000000 0.086866 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.042822 0.063745 0.000000 0.000000 0.000000 0.000000 0.000000 0.019431 0.022967 0.024330 0.018116 0.006861 0.0 0.016808 0.019062 0.000000 0.00000 0.000000 0.000000 0.032375 0.006822 0.02140 0.019777 0.032035 0.000000 0.031481 0.077027 0.007117 0.000000 0.000000 0.038511 0.038919 0.000000 0.092651 0.060900 0.000000 0.0 0.023580 0.013971 0.014564 0.000000 0.014628 0.048330 0.022721 0.000000 0.000000 0.011330 0.000000 0.000000 0.008459 0.000000 0.008592 0.000000 0.041983 0.040994 0.0 0.0 0.012039 0.041436 0.000000 0.045787 0.000000 0.056407 0.015893 0.007123 0.069610 0.013081 0.006452 0.042095 0.018519 0.0 0.000000 0.037285 0.036836 0.020297 0.019184 0.000000 0.0 0.0 0.0 0.0 0.035124 0.000000 0.026272 0.024277 0.048429 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.013764 0.043077 0.020614 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.044181 0.000000 0.000000 0.010664 0.015940 0.041359 0.018586 0.000000 0.056776 0.000000 0.016039 0.035650 0.029330 0.033928 0.007320 0.007263 0.046536 0.035188 0.000000 0.000000 0.020441 0.000000 0.017843 0.000000 0.047199 0.024982 0.000000 0.068327 0.029724 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.005883 0.0 0.0 0.0 0.030750 0.035029 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043950 0.000000 0.071627 0.019624 0.000000 0.000000 0.00528 0.0 0.007575 0.000000 0.000000 0.000000 0.000000 0.011204 0.000000 0.035412 0.000000 0.008707 0.000000 0.00000 0.0 0.054855 0.006894 0.007432 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.007584 0.000000 0.024965 0.055719 0.018735 0.000000 0.0 0.063986 0.021123 0.000000 0.000000 0.016685 0.016275 0.000000 0.008627 0.000000 0.000000 0.027404 0.000000 0.035427 0.000000 0.000000 0.028236 0.000000 0.010493 0.047985 0.006232 0.018180 0.035686 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.016247 0.044598 0.000000 0.009582 0.021380 0.010924 0.019184 0.005923 0.017536 0.078918 0.039793 0.007902 0.000000 0.009021 0.000000 0.008904 0.000000 0.109521 0.034816 0.009390 0.000000 0.028027 0.007472 0.0 0.0 0.00000 0.042965 0.000000 0.014422 0.000000 0.021914 0.069736 0.000000 0.000000 0.000000 0.000000 0.000000 0.095097 0.018622 0.024894 0.000000 0.000000 0.068066 0.021922 0.000000 0.012493 0.018210 0.012142 0.016382 0.059554 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.052040 0.024774 0.071243 0.00000 0.074503 0.000000 0.049487 0.033349 0.000000 0.058220 0.036531 0.036727 0.025878 0.000000 0.030436 0.034942 0.000000 0.009818 0.000000 0.00000 0.042856 0.000000 0.033103 0.022498 0.007892 0.029615 0.040336 0.000000 0.028997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.007403 0.0 0.028192 0.086440 0.132792 0.025752 0.016706 0.0 0.017600 0.038353 0.000000 0.000000 0.029484 0.000000 0.0 0.0 0.035621 0.0 0.000000 0.0 0.043354 0.000000 0.009273 0.000000 0.000000 0.000000 0.009251 0.000000 0.000000 0.007857 0.000000 0.009988 0.000000 0.008935 0.014886 0.014907 0.017216 0.009088 0.000000 0.020923 0.012830 0.015083 0.036914 0.141418 0.000000 0.000000 0.012417 0.028489 0.022351 0.024900 0.010288 0.000000 0.000000 0.024795 0.000000 0.043209 0.054596 0.038033 0.000000 0.000000 0.028651 0.000000 0.081382 0.019113 0.008825 0.008520 0.000000 0.000000 0.000000 0.007554 0.008960 0.008037 0.006829 0.000000 0.014944 0.008215 0.008724 0.011018 0.007394 0.015658 0.000000 0.012138 0.000000 0.020943 0.006615 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.024148 0.019171 0.010799 0.000000 0.000000 0.030686 0.048181 0.000000 0.008120 0.000000 0.029192 0.026974 0.000000 0.012774 0.000000 0.034754 0.068363 0.031712 0.015923 0.045865 0.017098 0.000000 0.013474 0.000000 0.000000 0.0 0.012271 0.010193 0.074171 0.012248 0.000000 0.000000 0.040284 0.026487 0.037451 0.008142 0.000000 0.009111 0.006509 0.000000 0.008824 0.044315 0.009076 0.000000 0.000000 0.063921 0.037942 0.019925 0.037581 0.000000 0.000000 0.020614 0.005709 0.000000 0.020502 0.000000 0.000000 0.000000 0.025960 0.007637 0.016737 0.000000 0.013126 0.021053 0.0000 0.000000 0.000000 0.024737 0.000000 0.048533 0.000000 0.032393 0.025878 0.000000 0.024775 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.020263 0.000000 0.009498 0.011783 0.000000 0.026563 0.007339 0.006092 0.063127 0.041139 0.009269 0.012446 0.013215 0.009734 0.017800 0.0 0.019507 0.020195 0.000000 0.000000 0.000000 0.010534 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.033966 0.099751 0.000000 0.036424 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.050439 0.0 0.00000 0.000000 0.043710 0.000000 0.008559 0.029595 0.070824 0.039824 0.009344 0.033009 0.039247 0.000000 0.018390 0.030300 0.000000 0.012172 0.008460 0.053480 0.000000 0.011345 0.025683 0.000000 0.030718 0.029882 0.000000 0.00000 0.024356 0.000000 0.0 0.0 0.0 0.0 0.150713 0.025003 0.000000 0.030500 0.000000 0.034738 0.000000 0.008952 0.000000 0.000000 0.000000 0.009558 0.000000 0.000000 0.008661 0.000000 0.039793 0.000000 0.000000 0.010109 0.000000 0.021349 0.000000 0.015774 0.018067 0.007739 0.007477 0.012926 0.029818 0.000000 0.015266 0.006344 0.000000 0.012598 0.007118 0.021602 0.011009 0.008566 0.017909 0.034669 0.0 0.0 0.0 0.0 0.007667 0.000000 0.019649 0.000000 0.000000 0.018107 0.022895 0.006307 0.018839 0.042497 0.050107 0.000000 0.000000 0.019467 0.000000 0.000000 0.019811 0.008576 0.047188 0.036941 0.031323 0.008551 0.026505 0.009875 0.000000 0.000000 0.082899 0.000000 0.019345 0.010511 0.089759 0.015437 0.000000 0.044363 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.021203 0.000000 0.011331 0.000000 0.0 0.060547 0.000000 0.0 0.000000 0.009097 0.000000 0.030128 0.030956 0.0 0.000000 0.0 0.008496 0.000000 0.113705 0.0 0.007556 0.017580 0.000000 0.0 0.008970 0.023367 0.011839 0.000000 0.000000 0.055015 0.067445 0.052527 0.000000 0.0 0.054006 0.000000 0.041464 0.000000 0.006558 0.043683 0.037543 0.025878 0.000000 0.0 0.009536 0.0 0.00000 0.009588 0.008587 0.009372 0.000000 0.000000 0.00000 0.00000 0.024593 0.057691 0.055851 0.050952 0.010160 0.000000 0.006080 0.050012 0.010501 0.000000 0.057856 0.032033 0.000000 0.028515 0.028925 0.037665 0.049809 0.024979 0.010733 0.012646 0.000000 0.000000 0.000000 0.027043 0.020254 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.008484 0.012826 0.013634 0.058937 0.038935 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011975 0.046117 0.025655 0.008321 0.006806 0.049418 0.017311 0.000000 0.01395 0.023024 0.015464 0.026511 0.000000 0.020932 0.082391 0.011476 0.010556 0.000000 0.000000 0.057089 0.000000 0.058861 0.000000 0.051400 0.010978 0.010851 0.049615 0.000000 0.030787 0.000000 0.000000 0.000000 0.008724 0.000000 0.000000 0.052757 0.012813 0.000000 0.026744 0.000000 0.000000 0.070893 0.000000 0.000000 0.000000 0.000000 0.032056 0.011662 0.020936 0.000000 0.032759 0.000000 0.012650 0.000000 0.006864 0.007694 0.007107 0.028178 0.008257 0.009162 0.014425 0.000000 0.000000 0.029568 0.048663 0.007244 0.030395 0.045965 0.000000 0.010393 0.091432 0.099504 0.000000 0.000000 0.031396 0.047194 0.009402 0.0 0.000000 0.000000 0.000000 0.031462 0.009256 0.022670 0.022218 0.000000 0.041802 0.087439 0.00000 0.007910 0.031640 0.027785 0.000000 0.029579 0.016438 0.000000 0.049811 0.000000 0.000000 0.017882 0.036557 0.036363 0.000000 0.026939 0.019548 0.000000 0.000000 0.000000 0.032795 0.000000 0.024300 0.033246 0.027502 0.009802 0.011605 0.021464 0.046387 0.063256 0.028490 0.030145 0.000000 0.033689 0.017399 0.019258 0.058631 0.033912 0.005939 0.019359 0.083185 0.029445 0.108948 0.038192 0.008538 0.000000 0.0 0.009476 0.023711 0.000000 0.000000 0.000000 0.008093 0.060816 0.000000 0.01798 0.016210 0.000000 0.023632 0.044215 0.009299 0.066678 0.056990 0.000000 0.000000 0.062109 0.000000 0.008601 0.0 0.022765 0.000000 0.061073 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.063091 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.020721 0.012012 0.000000 0.030011 0.000000 0.022045 0.033819 0.009428 0.000000 0.015931 0.021379 0.0 0.061857 0.000000 0.076668 0.011835 0.000000 0.030176 0.078354 0.013136 0.000000 0.010357 0.033549 0.018132 0.000000 0.010747 0.044313 0.010114 0.0 0.062867 0.066574 0.000000 0.000000 0.022205 0.000000 0.000000 0.019113 0.008618 0.000000 0.031762 0.000000 0.064260 0.029284 0.061817 0.010866 0.011384 0.061094 0.017162 0.011023 0.009229 0.000000 0.010691 0.008071 0.025832 0.000000 0.011538 0.026821 0.023797 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.026019 0.023076 0.000000 0.000000 0.000000 0.000000 0.0 0.035844 0.000000 0.006460 0.011373 0.000000 0.007547 0.020114 0.118965 0.000000 0.032451 0.000000 0.011923 0.000000 0.017004 0.000000 0.016717 0.000000 0.043691 0.087742 0.022556 0.075137 0.008840 0.063553 0.000000 0.016170 0.000000 0.019952 0.007634 0.029458 0.009158 0.006432 0.000000 0.000000 0.007550 0.047480 0.011113 0.044647 0.031254 0.015963 0.016006 0.000000 0.000000 0.000000 0.010432 0.008973 0.044034 0.044152 0.000000 0.0 0.052760 0.025878 0.036389 0.000000 0.000000 0.043570 0.054095 0.037497 0.048144 0.010212 0.000000 0.000000 0.000000 0.01057 0.006272 0.000000 0.000000 0.008924 0.010514 0.034833 0.084284 0.009342 0.023736 0.021011 0.009173 0.016068 0.000000 0.045002 0.037898 0.007374 0.021827 0.042098 0.000000 0.000000 0.026063 0.033232 0.000000 0.000000 0.000000 0.0000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.011810 0.037943 0.000000 0.000000 0.021437 0.000000 0.0 0.000000 0.000000 0.000000 0.010614 0.000000 0.025878 0.019713 0.010584 0.000000 0.022470 0.000000 0.000000 0.035233 0.008458 0.025460 0.000000 0.0 0.011452 0.031916 0.009304 0.000000 0.000000 0.000000 0.019020 0.019710 0.019606 0.000000 0.000000 0.000000 0.056982 0.006924 0.013313 0.007896 0.000000 0.042808 0.067343 0.006414 0.000000 0.0 0.000000 0.021900 0.029246 0.040961 0.0 0.022529 0.050512 0.024479 0.000000 0.028553 0.050940 0.000000 0.000000 0.000000 0.005588 0.023319 0.000000 0.025420 0.010722 0.000000 0.0 0.0 0.017080 0.031292 0.000000 0.0 0.000000 0.000000 0.010004 0.000000 0.022783 0.000000 0.006635 0.000000 0.008545 0.056171 0.021138 0.043515 0.009269 0.025878 0.034221 0.021397 0.030537 0.058797 0.008642 0.016774 0.000000 0.022776 0.008140 0.020617 0.035501 0.054865 0.000000 0.000000 0.010269 0.000000 0.000000 0.000000 0.000000 0.000000 0.022100 0.070462 0.010419 0.000000 0.010543 0.016860 0.007805 0.012773 0.016352 0.008124 0.048617 0.000000 0.016901 0.0 0.000000 0.011778 0.025419 0.025878 0.037707 0.007825 0.016067 0.030604 0.000000 0.000000 0.034705 0.000000 0.000000 0.017874 0.037539 0.006742 0.000000 0.000000 0.031751 0.015368 0.086071 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.024127 0.000000 0.028384 0.017254 0.000000 0.000000 0.0 0.009339 0.0 0.000000 0.000000 0.000000 0.042848 0.053338 0.044095 0.012992 0.000000 0.033977 0.035820 0.098989 0.000000 0.000000 0.027041 0.000000 0.081150 0.000000 0.000000 0.025878 0.000000 0.061298 0.009538 0.070384 0.028809 0.011581 0.034507 0.000000 0.000000 0.0 0.029965 0.000000 0.010473 0.018808 0.021032 0.023329 0.005816 0.018619 0.025670 0.000000 0.040139 0.010552 0.023624 0.079467 0.058734 0.000000 0.046670 0.032093 0.007822 0.0 0.019404 0.000000 0.009932 0.035370 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.008398 0.033547 0.037481 0.034026 0.000000 0.000000 0.026330 0.000000 0.048844 0.000000 0.000000 0.014296 0.029162 0.000000 0.000000 0.043589 0.000000 0.0 0.012051 0.000000 0.014815 0.000000 0.000000 0.000000 0.000000 0.000000 0.029255 0.012120 0.0 0.095957 0.010998 0.017889 0.000000 0.009027 0.017361 0.005763 0.008598 0.048995 0.014230 0.019480 0.034269 0.007730 0.027737 0.014583 0.028167 0.075302 0.007999 0.035415 0.035163 0.010013 0.000000 0.0 0.022703 0.000000 0.000000 0.096155 0.020730 0.042514 0.042626 0.012488 0.054439 0.000000 0.033715 0.052490 0.041215 0.014409 0.007908 0.000000 0.000000 0.008815 0.033436 0.017479 0.023004 0.051492 0.025000 0.068300 0.010619 0.010643 0.036914 0.000000 0.074988 0.026581 0.055908 0.029201 0.024404 0.000000 0.000000 0.020683 0.010450 0.009247 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.053141 0.011078 0.021646 0.021739 0.067649 0.009442 0.000000 0.000000 0.000000 0.000000 0.000000 0.039046 0.071971 0.043401 0.005881 0.039441 0.009760 0.000000 0.000000 0.000000 0.000000 0.000000 0.072316 0.000000 0.048180 0.032084 0.000000 0.056326 0.000000 0.023481 0.008323 0.043813 0.023820 0.000000 0.026154 0.018172 0.017894 0.000000 0.015603 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.019883 0.000000 0.007349 0.0 0.011216 0.000000 0.101284 0.013719 0.055463 0.011404 0.025878 0.013144 0.043526 0.022696 0.051745 0.000000 0.054793 0.019243 0.013056 0.000000 0.027819 0.006746 0.0 0.036606 0.000000 0.0 0.009032 0.0 0.022844 0.000000 0.018281 0.068320 0.010197 0.000000 0.007295 0.010983 0.054171 0.037023 0.000000 0.012023 0.000000 0.000000 0.000000 0.041972 0.009869 0.000000 0.011425 0.108485 0.051584 0.019224 0.006649 0.058445 0.021436 0.047050 0.006111 0.000000 0.000000 0.020838 0.032981 0.038134 0.000000 0.011054 0.000000 0.023115 0.000000 0.000000 0.000000 0.000000 0.016942 0.014715 0.000000 0.0 0.000000 0.012333 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.038493 0.0 0.000000 0.000000 0.008216 0.055096 0.007042 0.000000 0.000000 0.052821 0.070578 0.020002 0.000000 0.028490 0.000000 0.008694 0.011825 0.000000 0.037309 0.000000 0.012142 0.029579 0.041498 0.092570 0.037457 0.000000 0.012118 0.000000 0.012777 0.047533 0.068977 0.033336 0.024972 0.032834 0.006610 0.012477 0.000000 0.011608 0.000000 0.000000 0.040932 0.037088 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.028455 0.0 0.000000 0.020828 0.063050 0.034541 0.036010 0.040128 0.010719 0.119291 0.020244 0.027930 0.035434 0.000000 0.011317 0.009762 0.000000 0.000000 0.000000 0.023211 0.000000 0.000000 0.034004 0.000000 0.021568 0.000000 0.013443 0.000000 0.023338 0.000000 0.034991 0.000000 0.000000 0.000000 0.000000 0.017094 0.000000 0.014372 0.016102 0.00000 0.013171 0.000000 0.039204 0.014948 0.010318 0.000000 0.009641 0.040546 0.00000 0.031059 0.000000 0.000000 0.000000 0.06391 0.000000 0.071847 0.026162 0.038055 0.010086 0.039058 0.011224 0.028570 0.000000 0.030432 0.025775 0.011338 0.000000 0.053244 0.035118 0.007129 0.010021 0.000000 0.000000 0.000000 0.000000 0.010194 0.103128 0.040140 0.043275 0.020723 0.000000 0.00000 0.070642 0.0 0.0 0.00000 0.021989 0.008219 0.011258 0.017061 0.008955 0.000000 0.061401 0.051500 0.009139 0.038231 0.024542 0.024238 0.000000 0.0 0.069140 0.000000 0.000000 0.0 0.000000 0.000000 0.008659 0.0 0.019862 0.000000 0.000000 0.000000 0.013638 0.018272 0.000000 0.000000 0.010410 0.00000 0.014410 0.000000 0.009553 0.0 0.0 0.000000 0.000000 0.034483 0.012997 0.043569 0.046358 0.038992 0.008776 0.000000 0.018528 0.007746 0.000000 0.021795 0.008983 0.0 0.015313 0.052505 0.015137 0.000000 0.0 0.017284 0.084596 0.035845 0.03183 0.032948 0.013217 0.026074 0.000000 0.069653 0.006972 0.007896 0.000000 0.021169 0.028573 0.000000 0.000000 0.00993 0.000000 0.022521 0.000000 0.000000 0.043934 0.016090 0.013711 0.046537 0.000000 0.010103 0.000000 0.012464 0.008444 0.000000 0.022233 0.006188 0.026614 0.015215 0.007620 0.013854 0.006868 0.000000 0.023749 0.009371 0.033418 0.021957 0.026601 0.007281 0.000000 0.023819 0.012223 0.007461 0.025148 0.019535 0.007558 0.025953 0.008115 0.020859 0.018348 0.030296 0.016770 0.005656 0.016175 0.008882 0.005014 0.0 0.000000 0.000000 0.000000 0.043575 0.030047 0.028802 0.000000 0.000000 0.021172 0.000000 0.078696 0.000000 0.051093 0.000000 0.0 0.060561 0.032254 0.063662 0.0 0.000000 0.000000 0.000000 0.008169 0.000000 0.000000 0.000000 0.045624 0.015002 0.012018 0.000000 0.025878 0.000000 0.007117 0.033898 0.0 0.000000 0.022395 0.016271 0.006438 0.021315 0.032871 0.010649 0.022432 0.000000 0.009269 0.000000 0.094436 0.009006 0.023028 0.043230 0.064084 0.022369 0.029485 0.026419 0.037034 0.000000 0.031857 0.0 0.049110 0.038418 0.035340 0.00000 0.038320 0.023626 0.000000 0.000000 0.007674 0.000000 0.0 0.046543 0.0 0.026173 0.027282 0.000000 0.020309 0.000000 0.026278 0.034159 0.008604 0.023373 0.022840 0.000000 0.082271 0.013803 0.053779 0.032268 0.012394 0.000000 0.041245 0.021052 0.000000 0.025039 0.000000 0.028050 0.000000 0.000000 0.007703 0.000000 0.045620 0.000000 0.042489 0.154453 0.015585 0.000000 0.000000 0.000000 0.010749 0.009601 0.021070 0.060036 0.000000 0.000000 0.007224 0.007442 0.050604 0.000000 0.006960 0.007802 0.007411 0.037324 0.007743 0.008071 0.032328 0.018213 0.030712 0.058576 0.064926 0.006183 0.000000 0.018442 0.034202 0.036413 0.009578 0.018182 0.056689 0.00000 0.013839 0.039511 0.000000 0.008622 0.005906 0.018402 0.022086 0.010321 0.006872 0.006878 0.016802 0.008210 0.000000 0.000000 0.099879 0.008248 0.011395 0.036385 0.000000 0.000000 0.000000 0.000000 0.000000 0.007967 0.009789 0.013591 0.000000 0.000000 0.000000 0.000000 0.000000 0.072927 0.000000 0.022181 0.00000 0.0 0.000000 0.050181 0.009125 0.013211 0.025225 0.023594 0.000000 0.028574 0.000000 0.000000 0.000000 0.000000 0.008190 0.000000 0.000000 0.010485 0.049108 0.009724 0.008182 0.000000 0.006028 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017586 0.011183 0.000000 0.000000 0.000000 0.019469 0.000000 0.009046 0.067409 0.020021 0.037632 0.016714 0.000000 0.160208 0.000000 0.015830 0.012834 0.000000 0.0 0.056312 0.000000 0.058394 0.038837 0.000000 0.029364 0.000000 0.015434 0.000000 0.000000 0.000000 0.007240 0.009526 0.048407 0.000000 0.055829 0.010587 0.000000 0.000000 0.000000 0.000000 0.040059 0.009721 0.005943 0.015425 0.008984 0.000000 0.020617 0.000000 0.0 0.008431 0.013182 0.000000 0.000000 0.013498 0.035290 0.000000 0.025645 0.048805 0.040074 0.010112 0.000000 0.015850 0.012847 0.011477 0.011566 0.000000 0.009647 0.000000 0.000000 0.006989 0.031745 0.012718 0.000000 0.000000 0.000000 0.006929 0.026756 0.000000 0.000000 0.0 0.040472 0.000000 0.094381 0.000000 0.000000 0.0 0.000000 0.000000 0.011074 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.046564 0.010372 0.008634 0.000000 0.000000 0.000000 0.000000 0.033563 0.030384 0.000000 0.020198 0.000000 0.010640 0.017185 0.000000 0.000000 0.023086 0.000000 0.000000 0.024992 0.000000 0.009033 0.007636 0.000000 0.042868 0.011090 0.009884 0.018819 0.031420 0.055470 0.000000 0.068379 0.117133 0.028261 0.000000 0.008730 0.048582 0.0000 0.046952 0.010695 0.000000 0.027314 0.000000 0.031043 0.019662 0.021058 0.008785 0.023688 0.040365 0.022835 0.015959 0.014851 0.064596 0.000000 0.018569 0.000000 0.035939 0.069196 0.000000 0.028013 0.010924 0.025592 0.011355 0.000000 0.040230 0.007425 0.013769 0.031520 0.021939 0.018770 0.000000 0.014432 0.000000 0.074387 0.030079 0.018615 0.012958 0.000000 0.017432 0.031635 0.031628 0.0 0.012052 0.007235 0.009248 0.041311 0.033394 0.037209 0.013938 0.010826 0.009190 0.000000 0.012152 0.023743 0.010918 0.078236 0.019562 0.023672 0.000000 0.010947 0.000000 0.000000 0.020373 0.000000 0.010874 0.061955 0.040470 0.000000 0.000000 0.035592 0.053547 0.117291 0.000000 0.035562 0.023275 0.046838 0.000000 0.012684 0.009863 0.053485 0.018121 0.000000 0.00000 0.028397 0.000000 0.012995 0.0 0.103373 0.000000 0.000000 0.078673 0.000000 0.040435 0.027557 0.013201 0.062908 0.000000 0.000000 0.000000 0.037648 0.000000 0.000000 0.035644 0.021746 0.039074 0.013332 0.010273 0.000000 0.000000 0.000000 0.038532 0.010773 0.034718 0.000000 0.049978 0.000000 0.000000 0.000000 0.009788 0.000000 0.000000 0.082644 0.000000 0.000000 0.010102 0.000000 0.025828 0.049628 0.000000 0.010352 0.000000 0.010283 0.011915 0.000000 0.023299 0.000000 0.000000 0.026870 0.02109 0.00912 0.065739 0.043069 0.009646 0.000000 0.011580 0.000000 0.007306 0.037356 0.029823 0.010345 0.000000 0.018941 0.000000 0.000000 0.012877 0.030840 0.009171 0.014552 0.065061 0.000000 0.033820 0.000000 0.000000 0.026542 0.030459 0.009540 0.014026 0.000000 0.000000 0.000000 0.107365 0.000000 0.000000 0.010443 0.016441 0.000000 0.000000 0.000000 0.011738 0.000000 0.000000 0.007455 0.052918 0.010874 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.015006 0.000000 0.000000 0.000000 0.000000 0.048442 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.066277 0.000000 0.000000 0.000000 0.023981 0.034925 0.000000 0.000000 0.024031 0.000000 0.0 0.000000 0.000000 0.000000 0.026403 0.062210 0.00000 0.029569 0.0 0.000000 0.065443 0.000000 0.000000 0.019334 0.023229 0.014390 0.000000 0.046321 0.016760 0.000000 0.000000 0.000000 0.000000 0.011408 0.000000 0.029661 0.00000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.0000 0.000000 0.000000 0.000000 0.0 0.097430 0.000000 0.000000 0.00000 0.000000 0.0 0.011383 0.000000 0.000000 0.041427 0.000000 0.024096 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.010279 0.00000 0.00000 0.000000 0.030075 0.021973 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.007328 0.022542 0.000000 0.000000 0.000000 0.019656 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026949 0.020109 0.000000 0.000000 0.000000 0.018468 0.032757 0.059161 0.084589 0.014914 0.152717 0.000000 0.025977 0.000000 0.040211 0.031185 0.031420 0.022756 0.000000 0.009161 0.007947 0.028921 0.000000 0.034288 0.000000 0.010839 0.053476 0.041274 0.146778 0.000000 0.016793 0.000000 0.034489 0.010604 0.036204 0.000000 0.092286 0.000000 0.057721 0.007025 0.019944 0.000000 0.012076 0.072268 0.06727 0.000000 0.000000 0.000000 0.000000 0.040109 0.000000 0.000000 0.023685 0.092286 0.093002 0.119950 0.028562 0.009681 0.030241 0.000000 0.035506 0.077203 0.025564 0.027851 0.000000 0.000000 0.045009 0.023037 0.015118 0.0 0.015317 0.000000 0.000000 0.000000 0.000000 0.018239 0.022761 0.058862 0.017896 0.000000 0.009928 0.000000 0.011261 0.000000 0.007962 0.000000 0.000000 0.000000 0.000000 0.031073 0.022547 0.000000 0.000000 0.013756 0.098264 0.000000 0.046423 0.000000 0.000000 0.034378 0.046919 0.013667 0.0 0.000000 0.029259 0.000000 0.005267 0.005836 0.000000 0.000000 0.032405 0.000000 0.0 0.016895 0.000000 0.0 0.0 0.026296 0.000000 0.000000 0.037151 0.000000 0.0 0.000000 0.025254 0.046420 0.000000 0.000000 0.000000 0.000000 0.000000 0.015054 0.000000 0.030308 0.020586 0.036457 0.011486 0.007008 0.008890 0.020174 0.017531 0.000000 0.000000 0.075723 0.007827 0.000000 0.000000 0.000000 0.007065 0.000000 0.035695 0.000000 0.020380 0.026366 0.035489 0.006649 0.000000 0.025752 0.007187 0.032335 0.047262 0.036400 0.026754 0.000000 0.014247 0.005399 0.000000 0.012953 0.012808 0.003626 0.014014 0.024035 0.014554 0.008640 0.040711 0.000000 0.013648 0.016686 0.0 0.000000 0.000000 0.0 0.016384 0.045536 0.000000 0.048725 0.000000 0.012704 0.021651 0.024567 0.014937 0.012272 0.000000 0.000000 0.000000 0.025890 0.000000 0.011913 0.000000 0.0 0.011195 0.000000 0.016716 0.042850 0.063821 0.000000 0.000000 0.000000 0.011888 0.025848 0.000000 0.029746 0.000000 0.031925 0.007295 0.000000 0.042484 0.025878 0.034860 0.020395 0.042165 0.020418 0.012507 0.000000 0.0 0.027722 0.006993 0.010044 0.015145 0.000000 0.000000 0.000000 0.000000 0.083541 0.013168 0.029283 0.000000 0.011493 0.025542 0.049353 0.0 0.008497 0.008147 0.000000 0.113371 0.058826 0.031350 0.000000 0.032461 0.000000 0.010713 0.000000 0.048613 0.000000 0.007396 0.0 0.000000 0.021279 0.000000 0.057426 0.013712 0.000000 0.0 0.000000 0.012246 0.026123 0.020294 0.0 0.029161 0.075079 0.000000 0.014693 0.029642 0.000000 0.020019 0.008705 0.032492 0.000000 0.010081 0.024600 0.011516 0.012507 0.000000 0.062782 0.000000 0.090961 0.000000 0.053501 0.000000 0.008110 0.019629 0.036523 0.023657 0.000000 0.000000 0.048298 0.000000 0.045770 0.013639 0.000000 0.000000 0.025778 0.014719 0.045952 0.009124 0.000000 0.000000 0.036549 0.031370 0.000000 0.010028 0.014120 0.026984 0.029719 0.000000 0.000000 0.00000 0.045224 0.000000 0.130437 0.037171 0.007832 0.000000 0.015590 0.025891 0.008354 0.038820 0.026455 0.008223 0.012322 0.040835 0.000000 0.010219 0.031599 0.000000 0.013782 0.000000 0.010793 0.000000 0.029634 0.000000 0.054114 0.017862 0.012675 0.016424 0.015293 0.031000 0.000000 0.034743 0.016079 0.036476 0.000000 0.026013 0.021008 0.030433 0.000000 0.000000 0.008716 0.000000 0.009105 0.028152 0.042058 0.023974 0.016064 0.018769 0.021052 0.000000 0.010600 0.0 0.000000 0.000000 0.036708 0.000000 0.030572 0.023761 0.028846 0.013974 0.000000 0.000000 0.016920 0.000000 0.052039 0.011303 0.049183 0.020054 0.040063 0.000000 0.008475 0.000000 0.016347 0.000000 0.010564 0.015782 0.023178 0.000000 0.0 0.013823 0.021538 0.000000 0.031316 0.000000 0.0 0.017829 0.000000 0.008406 0.047742 0.025872 0.025878 0.030444 0.000000 0.000000 0.000000 0.00000 0.013982 0.000000 0.008666 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021123 0.023453 0.026332 0.000000 0.009778 0.008599 0.020367 0.013469 0.028821 0.091797 0.000000 0.000000 0.025878 0.021652 0.024500 0.013829 0.023993 0.020065 0.007039 0.008676 0.000000 0.019832 0.000000 0.0 0.024455 0.028888 0.016387 0.013789 0.000000 0.008076 0.000000 0.071305 0.000000 0.0 0.000000 0.015683 0.000000 0.008113 0.009449 0.000000 0.047419 0.000000 0.000000 0.000000 0.000000 0.040183 0.023156 0.000000 0.000000 0.008334 0.006409 0.006746 0.028947 0.000000 0.008705 0.017289 0.007252 0.064729 0.000000 0.122594 0.0 0.0 0.022961 0.000000 0.050014 0.029213 0.0 0.000000 0.000000 0.000000 0.027795 0.008346 0.000000 0.000000 0.013271 0.000000 0.000000 0.009543 0.012104 0.000000 0.023074 0.020228 0.007657 0.011584 0.020128 0.032703 0.006431 0.006668 0.077890 0.009458 0.000000 0.037927 0.000000 0.036548 0.011537 0.007586 0.012708 0.017669 0.000000 0.017133 0.00787 0.053315 0.033303 0.007258 0.006217 0.008626 0.0 0.009924 0.011051 0.036118 0.084296 0.000000 0.010359 0.013222 0.000000 0.000000 0.053762 0.000000 0.008071 0.000000 0.000000 0.016567 0.018233 0.000000 0.000000 0.000000 0.046789 0.0 0.020249 0.000000 0.000000 0.0 0.000000 0.010866 0.007243 0.016939 0.025186 0.000000 0.007282 0.025644 0.007204 0.028339 0.000000 0.006734 0.000000 0.030916 0.009310 0.0 0.048340 0.000000 0.042189 0.017780 0.026829 0.025878 0.033583 0.000000 0.023170 0.027097 0.000000 0.018224 0.014697 0.010570 0.011114 0.000000 0.000000 0.024633 0.012057 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.046922 0.015172 0.0 0.000000 0.000000 0.016733 0.000000 0.095323 0.014668 0.058405 0.026108 0.067713 0.036698 0.011562 0.000000 0.000000 0.009573 0.000000 0.000000 0.021684 0.018267 0.065201 0.008746 0.020874 0.049125 0.0 0.006543 0.039012 0.030949 0.021442 0.006830 0.013102 0.027401 0.00000 0.006828 0.014242 0.016991 0.044219 0.015706 0.000000 0.000000 0.025878 0.008790 0.007258 0.011361 0.000000 0.030735 0.000000 0.009491 0.000000 0.074652 0.013941 0.00000 0.026474 0.013132 0.000000 0.006498 0.000000 0.000000 0.000000 0.000000 0.020546 0.000000 0.009660 0.010109 0.017992 0.027121 0.007792 0.000000 0.000000 0.011280 0.000000 0.000000 0.000000 0.000000 0.024994 0.023256 0.000000 0.000000 0.000000 0.011192 0.009903 0.028326 0.045772 0.000000 0.000000 0.000000 0.018422 0.024610 0.000000 0.028516 0.0 0.000000 0.000000 0.033780 0.024634 0.000000 0.016071 0.049336 0.0 0.000000 0.0 0.050923 0.000000 0.000000 0.000000 0.024238 0.009735 0.000000 0.010672 0.000000 0.000000 0.062379 0.014909 0.009329 0.019617 0.000000 0.021128 0.011832 0.042163 0.035598 0.023763 0.018764 0.0 0.063739 0.000000 0.010256 0.009757 0.024283 0.023138 0.0 0.011781 0.007347 0.000000 0.008758 0.006327 0.000000 0.000000 0.000000 0.015523 0.022398 0.015390 0.045282 0.007333 0.00000 0.000000 0.000000 0.036901 0.000000 0.027379 0.000000 0.000000 0.000000 0.020234 0.031194 0.009399 0.0 0.000000 0.013238 0.008887 0.031353 0.062885 0.025878 0.023462 0.036423 0.018383 0.000000 0.063653 0.000000 0.006692 0.000000 0.031386 0.007422 0.000000 0.032678 0.015762 0.000000 0.009830 0.018552 0.115716 0.007156 0.000000 0.020216 0.054943 0.022176 0.006596 0.000000 0.000000 0.0 0.011304 0.000000 0.000000 0.014703 0.000000 0.022145 0.008005 0.024681 0.000000 0.015525 0.014029 0.000000 0.023705 0.000000 0.000000 0.000000 0.000000 0.000000 0.027812 0.000000 0.020964 0.000000 0.011078 0.014373 0.026491 0.000000 0.000000 0.000000 0.000000 0.000000 0.026129 0.000000 0.046785 0.000000 0.018305 0.000000 0.0 0.052036 0.000000 0.022226 0.0 0.022479 0.012532 0.009620 0.022550 0.000000 0.025530 0.021423 0.000000 0.0 0.024423 0.062058 0.020251 0.008721 0.000000 0.000000 0.037848 0.037647 0.000000 0.032187 0.048315 0.019741 0.030745 0.000000 0.047461 0.010643 0.000000 0.000000 0.020049 0.009897 0.008562 0.000000 0.0 0.009143 0.000000 0.024468 0.028832 0.032966 0.017346 0.017870 0.036001 0.026867 0.028223 0.026493 0.021710 0.006896 0.027728 0.021966 0.021600 0.000000 0.039037 0.045461 0.000000 0.007622 0.000000 0.036663 0.0 0.000000 0.008312 0.041050 0.000000 0.026129 0.017043 0.008830 0.027800 0.067373 0.017874 0.016805 0.026344 0.020722 0.011783 0.009618 0.008754 0.052281 0.006358 0.025626 0.007741 0.019167 0.014428 0.022205 0.006400 0.000000 0.012239 0.000000 0.007906 0.025878 0.007314 0.009792 0.000000 0.041915 0.016438 0.025878 0.025644 0.000000 0.007905 0.022194 0.010200 0.009403 0.000000 0.021397 0.014768 0.000000 0.029647 0.009086 0.026829 0.000000 0.009491 0.018104 0.023420 0.007377 0.000000 0.0 0.000000 0.031898 0.000000 0.000000 0.008668 0.000000 0.000000 0.021670 0.0 0.000000 0.012708 0.011137 0.009681 0.000000 0.013203 0.0 0.024779 0.025252 0.007186 0.000000 0.031803 0.000000 0.005204 0.000000 0.076734 0.000000 0.024660 0.008967 0.000000 0.026010 0.000000 0.000000 0.000000 0.000000 0.000000 0.076734 0.020919 0.023612 0.018505 0.007392 0.000000 0.046360 0.008349 0.010370 0.009873 0.028552 0.038945 0.010029 0.017334 0.000000 0.000000 0.012600 0.042521 0.000000 0.018093 0.023354 0.0 0.008788 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071123 0.000000 0.009549 0.000000 0.024738 0.000000 0.013924 0.000000 0.021646 0.026123 0.010067 0.012797 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.011219 0.008641 0.008371 0.012200 0.000000 0.020432 0.000000 0.000000 0.006212 0.012137 0.009881 0.000000 0.025333 0.000000 0.029127 0.000000 0.009451 0.010978 0.000000 0.000000 0.040200 0.000000 0.048119 0.028728 0.000000 0.009784 0.000000 0.000000 0.008745 0.0 0.014834 0.087328 0.000000 0.006298 0.000000 0.025883 0.035303 0.000000 0.000000 0.000000 0.011789 0.000000 0.033422 0.012507 0.000000 0.018058 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.082600 0.000000 0.031851 0.000000 0.000000 0.000000 0.0 0.076196 0.000000 0.000000 0.000000 0.000000 0.008138 0.009783 0.024863 0.018342 0.000000 0.008428 0.065675 0.009069 0.000000 0.009968 0.038832 0.000000 0.029261 0.062484 0.000000 0.000000 0.000000 0.000000 0.036497 0.0 0.010297 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013128 0.000000 0.006727 0.028177 0.008087 0.000000 0.00975 0.0 0.000000 0.000000 0.027547 0.020716 0.030952 0.00000 0.000000 0.054458 0.000000 0.000000 0.040144 0.000000 0.000000 0.000000 0.000000 0.018189 0.007181 0.0 0.033420 0.017770 0.0 0.012198 0.029096 0.041342 0.010712 0.031848 0.008677 0.000000 0.03738 0.007793 0.014174 0.018244 0.000000 0.009164 0.004836 0.014491 0.081222 0.008357 0.069792 0.022880 0.006638 0.019833 0.0 0.013322 0.008519 0.00000 0.014144 0.000000 0.013039 0.007367 0.010935 0.011645 0.118547 0.000000 0.029174 0.000000 0.018060 0.075970 0.034636 0.000000 0.005583 0.021664 0.000000 0.023609 0.045811 0.009321 0.008111 0.008234 0.000000 0.034265 0.000000 0.000000 0.037364 0.000000 0.033684 0.025878 0.000000 0.033015 0.030932 0.000000 0.008719 0.000000 0.007578 0.000000 0.018392 0.036895 0.013156 0.000000 0.000000 0.008194 0.000000 0.020438 0.025829 0.000000 0.007558 0.026829 0.006694 0.056421 0.00000 0.033047 0.035896 0.067936 0.018102 0.006936 0.000000 0.0 0.000000 0.012334 0.009650 0.000000 0.047162 0.020999 0.009167 0.044296 0.007392 0.000000 0.019491 0.01104 0.007949 0.025878 0.000000 0.0 0.006812 0.0 0.008766 0.030349 0.007659 0.000000 0.064158 0.010511 0.013504 0.061040 0.000000 0.053126 0.009214 0.037680 0.000000 0.040644 0.007054 0.000000 0.000000 0.000000 0.015370 0.010034 0.021038 0.006833 0.031990 0.000000 0.025120 0.008431 0.000000 0.039619 0.026642 0.010063 0.024461 0.036114 0.046567 0.036856 0.021242 0.008307 0.028848 0.000000 0.034286 0.000000 0.023365 0.024691 0.000000 0.027640 0.025556 0.018761 0.026108 0.017989 0.019771 0.000000 0.016458 0.012395 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019448 0.015411 0.008777 0.000000 0.012436 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.077574 0.000000 0.008809 0.015151 0.056467 0.031793 0.012072 0.000000 0.000000 0.000000 0.000000 0.040589 0.028010 0.000000 0.022189 0.020587 0.023133 0.053257 0.000000 0.070833 0.000000 0.009184 0.021624 0.000000 0.014340 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.025059 0.000000 0.020896 0.000000 0.006748 0.026386 0.009209 0.000000 0.000000 0.019644 0.000000 0.008968 0.000000 0.011868 0.007655 0.000000 0.000000 0.000000 0.000000 0.048091 0.000000 0.000000 0.010217 0.007904 0.023928 0.015081 0.025830 0.000000 0.015792 0.009394 0.000000 0.000000 0.000000 0.000000 0.023631 0.0 0.023200 0.000000 0.008172 0.000000 0.090536 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043762 0.021196 0.032382 0.025179 0.000000 0.017952 0.011141 0.056950 0.00000 0.057283 0.018706 0.026825 0.033128 0.000000 0.000000 0.049293 0.027197 0.035504 0.034401 0.027630 0.000000 0.009402 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.012507 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.07032 0.000000 0.00000 0.013423 0.058651 0.010208 0.000000 0.02462 0.011352 0.034373 0.037008 0.021337 0.011161 0.0 0.012138 0.000000 0.000000 0.000000 0.026086 0.047029 0.000000 0.025944 0.000000 0.015549 0.037638 0.000000 0.0000 0.009606 0.014384 0.009755 0.000000 0.02235 0.011937 0.045175 0.008849 0.000000 0.010394 0.059105 0.008874 0.023874 0.000000 0.000000 0.035011 0.031455 0.029558 0.010634 0.017962 0.0 0.012101 0.009909 0.016082 0.000000 0.027439 0.008788 0.000000 0.014841 0.000000 0.056545 0.021572 0.017641 0.019211 0.011405 0.008174 0.000000 0.010623 0.000000 0.000000 0.035307 0.010850 0.000000 0.009509 0.012811 0.000000 0.020672 0.016735 0.000000 0.000000 0.0 0.000000 0.009297 0.000000 0.000000 0.019946 0.043505 0.009845 0.000000 0.000000 0.0 0.000000 0.064842 0.046316 0.008307 0.033314 0.057706 0.000000 0.000000 0.043946 0.035373 0.008929 0.000000 0.000000 0.000000 0.089795 0.0 0.000000 0.049542 0.012658 0.000000 0.000000 0.013358 0.009705 0.084964 0.014691 0.000000 0.020811 0.000000 0.009753 0.000000 0.000000 0.026159 0.000000 0.000000 0.008826 0.076349 0.023181 0.017116 0.000000 0.014819 0.047527 0.056344 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034434 0.034248 0.009831 0.000000 0.000000 0.000000 0.016717 0.000000 0.019260 0.000000 0.031073 0.006848 0.063340 0.050851 0.024086 0.000000 0.017289 0.019518 0.00000 0.016744 0.000000 0.000000 0.005745 0.045 0.000000 0.035582 0.008007 0.030325 0.006796 0.015804 0.037291 0.046052 0.125121 0.051707 0.013984 0.012239 0.017412 0.000000 0.049666 0.015131 0.0 0.064040 0.008297 0.029576 0.023785 0.000000 0.027083 0.033681 0.015064 0.032848 0.000000 0.015541 0.020486 0.007784 0.006815 0.013147 0.018888 0.005295 0.0 0.015526 0.015987 0.018992 0.020539 0.000000 0.006269 0.025160 0.006853 0.000000 0.007727 0.014494 0.016594 0.007302 0.054984 0.009283 0.005834 0.000000 0.000000 0.009414 0.022866 0.066559 0.000000 0.014404 0.007953 0.030874 0.020376 0.025878 0.000000 0.048388 0.000000 0.070284 0.000000 0.000000 0.000000 0.009269 0.067486 0.027623 0.000000 0.009365 0.000000 0.000000 0.000000 0.000000 0.024274 0.000000 0.058562 0.009480 0.054318 0.019272 0.023200 0.020395 0.006924 0.000000 0.000000 0.026496 0.039567 0.013389 0.009452 0.029754 0.009293 0.000000 0.008249 0.000000 0.006459 0.025878 0.023180 0.008687 0.035542 0.000000 0.00000 0.044128 0.000000 0.012294 0.009550 0.027226 0.000000 0.010248 0.012528 0.037240 0.000000 0.026223 0.007058 0.073213 0.039602 0.021942 0.061774 0.0 0.000000 0.008627 0.018969 0.039480 0.027685 0.022217 0.000000 0.040156 0.044123 0.000000 0.022607 0.022297 0.006104 0.039344 0.029423 0.000000 0.000000 0.00000 0.023486 0.034346 0.000000 0.017753 0.000000 0.020610 0.000000 0.000000 0.009640 0.000000 0.040775 0.022008 0.006719 0.017435 0.016975 0.024686 0.017639 0.000000 0.000000 0.000000 0.000000 0.034554 0.029387 0.018928 0.009430 0.0 0.000000 0.000000 0.016808 0.023684 0.000000 0.016894 0.007600 0.016863 0.034448 0.027878 0.000000 0.008579 0.000000 0.040249 0.000000 0.000000 0.019848 0.000000 0.009383 0.036028 0.038200 0.000000 0.069280 0.000000 0.028365 0.019522 0.039190 0.062703 0.025389 0.000000 0.017698 0.007590 0.007715 0.006375 0.008229 0.008025 0.006745 0.000000 0.000000 0.060670 0.079528 0.039068 0.020344 0.000000 0.007340 0.000000 0.007882 0.010282 0.035455 0.000000 0.016300 0.053455 0.044072 0.000000 0.009765 0.017415 0.000000 0.034255 0.000000 0.026239 0.009824 0.131498 0.000000 0.000000 0.026770 0.038649 0.000000 0.0 0.011761 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.009630 0.000000 0.0 0.000000 0.018025 0.010967 0.032718 0.054654 0.014452 0.039805 0.011120 0.008052 0.012515 0.00000 0.000000 0.006449 0.000000 0.000000 0.006062 0.069061 0.000000 0.000000 0.014555 0.000000 0.014197 0.007865 0.010327 0.000000 0.011127 0.0 0.007733 0.021555 0.000000 0.012936 0.000000 0.018038 0.042133 0.000000 0.000000 0.113925 0.0 0.018422 0.039824 0.030191 0.000000 0.000000 0.037103 0.000000 0.000000 0.000000 0.000000 0.029577 0.000000 0.010735 0.018513 0.008939 0.00000 0.000000 0.00000 0.000000 0.009141 0.000000 0.000000 0.000000 0.011296 0.000000 0.025391 0.000000 0.011602 0.025131 0.000000 0.000000 0.000000 0.027935 0.032480 0.000000 0.000000 0.000000 0.010859 0.0 0.027240 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.033315 0.000000 0.000000 0.091091 0.012983 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.044152 0.013437 0.000000 0.011287 0.000000 0.014122 0.047504 0.039802 0.052827 0.000000 0.000000 0.016444 0.050476 0.000000 0.000000 0.011323 0.000000 0.012295 0.052376 0.011944 0.000000 0.000000 0.037780 0.000000 0.030947 0.027332 0.000000 0.045515 0.081050 0.026328 0.015072 0.011455 0.000000 0.016184 0.000000 0.000000 0.000000 0.010946 0.000000 0.025420 0.033704 0.023685 0.000000 0.00000 0.000000 0.011419 0.036999 0.081130 0.000000 0.031426 0.000000 0.000000 0.010090 0.034933 0.000000 0.008454 0.073581 0.000000 0.000000 0.000000 0.000000 0.049336 0.074786 0.000000 0.013102 0.000000 0.050975 0.011294 0.012479 0.055109 0.008405 0.025201 0.015901 0.048813 0.000000 0.024654 0.035485 0.034071 0.006636 0.000000 0.000000 0.046043 0.039255 0.000000 0.017884 0.011419 0.000000 0.013738 0.058568 0.000000 0.029134 0.000000 0.000000 0.000000 0.088198 0.0 0.000000 0.061505 0.000000 0.000000 0.000000 0.010950 0.000000 0.024637 0.00000 0.0 0.0 0.000000 0.030414 0.011622 0.008311 0.005864 0.039325 0.078489 0.007163 0.019045 0.036816 0.000000 0.011081 0.000000 0.010071 0.025109 0.000000 0.015325 0.000000 0.045306 0.017958 0.000000 0.000000 0.000000 0.045466 0.000000 0.048426 0.000000 0.000000 0.026821 0.000000 0.000000 0.000000 0.016654 0.000000 0.000000 0.000000 0.016668 0.000000 0.000000 0.012507 0.011516 0.012507 0.000000 0.0 0.0 0.057975 0.034189 0.008621 0.024675 0.000000 0.000000 0.000000 0.018472 0.064644 0.015953 0.0 0.000000 0.0 0.01135 0.000000 0.014982 0.000000 0.013524 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.070347 0.018813 0.000000 0.02069 0.0 0.000000 0.00000 0.0 0.023372 0.029673 0.0 0.000000 0.000000 0.000000 0.035130 0.000000 0.026197 0.000000 0.035257 0.000000 0.000000 0.047013 0.023009 0.000000 0.000000 0.014556 0.015312 0.010692 0.000000 0.000000 0.00000 0.031259 0.080721 0.000000 0.012120 0.000000 0.019601 0.065138 0.000000 0.011226 0.063094 0.000000 0.062270 0.047227 0.013405 0.013330 0.0 0.000000 0.000000 0.000000 0.0 0.017160 0.137292 0.0 0.012773 0.000000 0.000000 0.115662 0.000000 0.000000 0.000000 0.000000 0.029150 0.039857 0.000000 0.019846 0.008658 0.012479 0.016857 0.007131 0.000000 0.031508 0.000000 0.000000 0.011443 0.048279 0.000000 0.026515 0.047783 0.000000 0.000000 0.000000 0.007718 0.077136 0.053002 0.009711 0.000000 0.022183 0.011103 0.000000 0.010164 0.025381 0.0 0.01111 0.000000 0.007691 0.010158 0.000000 0.000000 0.017577 0.009942 0.000000 0.000000 0.010337 0.00897 0.024298 0.039167 0.038977 0.000000 0.024018 0.059106 0.010337 0.008022 0.000000 0.020051 0.000000 0.046080 0.011651 0.000000 0.009765 0.000000 0.044474 0.010053 0.000000 0.000000 0.017571 0.000000 0.000000 0.000000 0.026492 0.033941 0.053036 0.010580 0.000000 0.000000 0.040812 0.015410 0.000000 0.039673 0.058823 0.000000 0.000000 0.035439 0.010481 0.023904 0.00000 0.0 0.039407 0.000000 0.008862 0.053611 0.024464 0.009104 0.007044 0.000000 0.042531 0.010043 0.000000 0.009402 0.027277 0.040064 0.008959 0.000000 0.018631 0.010314 0.010118 0.038333 0.014782 0.020310 0.00000 0.000000 0.000000 0.016483 0.000000 0.009834 0.000000 0.000000 0.000000 0.011317 0.061593 0.0 0.0 0.000000 0.000000 0.000000 0.013417 0.073179 0.046487 0.000000 0.062991 0.000000 0.035212 0.047545 0.030904 0.000000 0.000000 0.012636 0.071663 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010207 0.000000 0.036846 0.000000 0.000000 0.018007 0.007366 0.028016 0.0 0.034140 0.000000 0.034025 0.014062 0.034646 0.000000 0.044293 0.000000 0.012142 0.000000 0.0 0.006472 0.000000 0.017923 0.000000 0.033741 0.000000 0.019624 0.000000 0.008790 0.000000 0.009812 0.039708 0.060007 0.019492 0.021692 0.000000 0.000000 0.000000 0.009258 0.008662 0.039797 0.000000 0.018126 0.020471 0.007292 0.006525 0.022787 0.027692 0.000000 0.007663 0.007411 0.006845 0.007175 0.009190 0.0 0.0 0.006544 0.034657 0.013622 0.007431 0.028628 0.015596 0.000000 0.050121 0.007837 0.041571 0.006774 0.006636 0.022435 0.027338 0.007207 0.026621 0.0 0.028433 0.023321 0.015857 0.005975 0.012122 0.015218 0.039053 0.0 0.026799 0.034583 0.005535 0.017606 0.072240 0.024319 0.018851 0.000000 0.045740 0.000000 0.006811 0.000000 0.006363 0.000000 0.000000 0.024427 0.000000 0.015642 0.035588 0.033166 0.014484 0.044200 0.000000 0.019451 0.034290 0.016300 0.024001 0.058941 0.033251 0.006375 0.000000 0.007298 0.007902 0.000000 0.000000 0.011081 0.000000 0.006323 0.068525 0.000000 0.007083 0.060344 0.034230 0.011845 0.064938 0.032895 0.013478 0.006891 0.005627 0.038144 0.020415 0.018133 0.000000 0.000000 0.007324 0.007523 0.052775 0.077407 0.009957 0.012279 0.027984 0.009341 0.008851 0.053287 0.000000 0.025878 0.056107 0.007463 0.012458 0.007143 0.008382 0.008905 0.008765 0.008130 0.024444 0.036025 0.031638 0.025878 0.010042 0.000000 0.054258 0.042437 0.052484 0.000000 0.053954 0.034176 0.023955 0.013795 0.041067 0.008039 0.130486 0.000000 0.000000 0.030206 0.000000 0.017899 0.020505 0.000000 0.000000 0.008905 0.000000 0.024165 0.019613 0.000000 0.050527 0.000000 0.033632 0.023667 0.020845 0.000000 0.0 0.148623 0.011717 0.0 0.000000 0.010135 0.008855 0.056222 0.009024 0.000000 0.000000 0.000000 0.022511 0.007658 0.014888 0.000000 0.012416 0.019747 0.030002 0.008590 0.000000 0.000000 0.000000 0.018665 0.009295 0.030318 0.000000 0.000000 0.000000 0.0 0.008111 0.022144 0.040608 0.021931 0.017153 0.000000 0.009455 0.029913 0.028097 0.008423 0.015722 0.010032 0.0 0.025878 0.020796 0.016699 0.000000 0.000000 0.023615 0.067956 0.037524 0.028002 0.000000 0.093367 0.011204 0.077907 0.012214 0.000000 0.0 0.027081 0.0 0.010248 0.000000 0.027315 0.017250 0.022954 0.032203 0.000000 0.031536 0.046187 0.000000 0.000000 0.010201 0.000000 0.019209 0.010682 0.020231 0.033629 0.034968 0.032421 0.012642 0.011659 0.024526 0.000000 0.000000 0.035369 0.000000 0.045332 0.000000 0.000000 0.028757 0.008843 0.015853 0.0 0.014576 0.000000 0.019758 0.000000 0.008771 0.032203 0.020095 0.012576 0.016987 0.000000 0.033774 0.000000 0.012396 0.007757 0.008682 0.006552 0.011904 0.022112 0.000000 0.017445 0.000000 0.000000 0.022596 0.023795 0.0 0.0 0.000000 0.023435 0.023075 0.000000 0.010123 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.047251 0.008185 0.048270 0.031918 0.016515 0.000000 0.000000 0.000000 0.000000 0.000000 0.013630 0.000000 0.011470 0.054479 0.009303 0.005633 0.00000 0.018076 0.000000 0.0 0.017242 0.000000 0.000000 0.014235 0.000000 0.025569 0.000000 0.0 0.009296 0.018453 0.000000 0.000000 0.011446 0.0 0.000000 0.00000 0.045196 0.000000 0.000000 0.000000 0.008026 0.011332 0.000000 0.000000 0.028622 0.032134 0.000000 0.034842 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024387 0.000000 0.009564 0.000000 0.000000 0.035215 0.00000 0.006947 0.000000 0.016694 0.006605 0.000000 0.000000 0.000000 0.000000 0.012843 0.000000 0.000000 0.000000 0.008434 0.019957 0.000000 0.007039 0.008746 0.019998 0.000000 0.007337 0.000000 0.000000 0.000000 0.016047 0.010636 0.000000 0.010268 0.000000 0.030879 0.031657 0.007218 0.000000 0.000000 0.006169 0.000000 0.000000 0.005555 0.000000 0.000000 0.011586 0.027363 0.000000 0.077511 0.000000 0.008978 0.000000 0.000000 0.020133 0.010837 0.028189 0.000000 0.000000 0.011664 0.000000 0.048905 0.013571 0.007638 0.000000 0.000000 0.020551 0.007633 0.00000 0.054486 0.030245 0.009365 0.036972 0.000000 0.045115 0.047651 0.008030 0.000000 0.000000 0.025892 0.066967 0.012063 0.000000 0.031229 0.029068 0.024387 0.026671 0.022608 0.008925 0.011124 0.026384 0.039414 0.032055 0.037609 0.017782 0.006752 0.063104 0.067000 0.039810 0.013883 0.015460 0.0 0.052873 0.000000 0.000000 0.000000 0.071069 0.071677 0.038871 0.012803 0.045728 0.008023 0.077500 0.030185 0.017630 0.006733 0.039802 0.014575 0.048793 0.000000 0.007621 0.000000 0.028554 0.000000 0.036475 0.000000 0.000000 0.022213 0.000000 0.000000 0.000000 0.028337 0.000000 0.000000 0.000000 0.017494 0.000000 0.036289 0.000000 0.026100 0.0 0.033221 0.000000 0.000000 0.029646 0.00000 0.025179 0.000000 0.000000 0.000000 0.000000 0.030721 0.000000 0.000000 0.017965 0.000000 0.008258 0.000000 0.000000 0.000000 0.000000 0.007098 0.015226 0.025009 0.000000 0.000000 0.01531 0.008721 0.0 0.000000 0.016076 0.000000 0.000000 0.000000 0.011122 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.045494 0.009888 0.000000 0.021655 0.082296 0.054132 0.000000 0.028673 0.000000 0.000000 0.000000 0.006793 0.070922 0.018314 0.000000 0.031937 0.102117 0.048227 0.000000 0.000000 0.000000 0.006328 0.009165 0.018721 0.000000 0.000000 0.000000 0.041031 0.015811 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022799 0.000000 0.000000 0.000000 0.007923 0.000000 0.000000 0.000000 0.011101 0.000000 0.000000 0.031020 0.067573 0.000000 0.018267 0.000000 0.011255 0.000000 0.000000 0.023559 0.00000 0.000000 0.034809 0.016967 0.010502 0.000000 0.017493 0.010560 0.000000 0.018765 0.000000 0.000000 0.00617 0.000000 0.019781 0.000000 0.000000 0.000000 0.000000 0.000000 0.068415 0.000000 0.000000 0.092685 0.000000 0.000000 0.000000 0.000000 0.133500 0.044806 0.000000 0.000000 0.044948 0.000000 0.032741 0.019697 0.015644 0.000000 0.065070 0.00809 0.007326 0.055465 0.011634 0.019759 0.000000 0.041259 0.049588 0.023723 0.000000 0.013129 0.013651 0.000000 0.000000 0.033791 0.000000 0.009880 0.077774 0.000000 0.000000 0.017584 0.032719 0.000000 0.000000 0.050500 0.000000 0.000000 0.011432 0.000000 0.007770 0.048869 0.075420 0.000000 0.000000 0.016114 0.010319 0.000000 0.0 0.000000 0.000000 0.010387 0.0 0.000000 0.018725 0.011375 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010350 0.018577 0.00000 0.014844 0.000000 0.014403 0.029227 0.000000 0.027780 0.00000 0.000000 0.000000 0.000000 0.014238 0.000000 0.012819 0.010079 0.000000 0.000000 0.000000 0.008384 0.009343 0.000000 0.008752 0.000000 0.007320 0.000000 0.009962 0.000000 0.027839 0.000000 0.000000 0.000000 0.020003 0.009231 0.000000 0.031447 0.000000 0.009024 0.0 0.000000 0.072571 0.030567 0.000000 0.000000 0.000000 0.031273 0.000000 0.000000 0.0 0.008653 0.013719 0.000000 0.000000 0.000000 0.000000 0.018567 0.000000 0.033069 0.000000 0.000000 0.000000 0.000000 0.000000 0.020074 0.021734 0.000000 0.041306 0.000000 0.033683 0.022891 0.000000 0.000000 0.000000 0.052394 0.052031 0.000000 0.010296 0.000000 0.000000 0.010259 0.012465 0.020891 0.0000 0.024784 0.024216 0.000000 0.000000 0.009292 0.000000 0.066788 0.000000 0.000000 0.029002 0.008996 0.007882 0.000000 0.000000 0.000000 0.000000 0.009305 0.040675 0.000000 0.000000 0.000000 0.000000 0.000000 0.019498 0.000000 0.018945 0.010357 0.000000 0.007469 0.000000 0.000000 0.000000 0.008745 0.000000 0.000000 0.000000 0.031777 0.030567 0.00942 0.0 0.0 0.000000 0.0 0.023585 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.032722 0.023244 0.000000 0.056274 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027646 0.061392 0.066151 0.031931 0.000000 0.040114 0.035546 0.009049 0.000000 0.009226 0.033331 0.004792 0.0 0.020945 0.000000 0.000000 0.008324 0.035871 0.013563 0.023919 0.023338 0.043638 0.000000 0.000000 0.000000 0.000000 0.000000 0.046909 0.000000 0.027638 0.053422 0.019094 0.000000 0.000000 0.000000 0.011880 0.000000 0.051212 0.054905 0.000000 0.020949 0.009259 0.021542 0.0 0.0 0.000000 0.000000 0.023518 0.008848 0.000000 0.025541 0.013103 0.000000 0.009617 0.000000 0.022925 0.022359 0.008899 0.042165 0.000000 0.022054 0.008621 0.048321 0.000000 0.022032 0.000000 0.020817 0.014359 0.000000 0.000000 0.035318 0.014849 0.007509 0.027312 0.017484 0.036186 0.000000 0.035718 0.035207 0.021503 0.089300 0.040392 0.000000 0.000000 0.009001 0.019468 0.000000 0.007666 0.000000 0.033286 0.000000 0.012357 0.009277 0.000000 0.000000 0.033742 0.000000 0.000000 0.000000 0.032305 0.066326 0.047714 0.000000 0.027478 0.000000 0.034392 0.033089 0.008881 0.000000 0.033410 0.000000 0.024493 0.000000 0.013789 0.000000 0.000000 0.000000 0.000000 0.012145 0.010415 0.112918 0.000000 0.031986 0.009594 0.021466 0.016079 0.013363 0.019413 0.018457 0.000000 0.042096 0.000000 0.000000 0.000000 0.009307 0.042668 0.006784 0.038594 0.026150 0.006972 0.000000 0.000000 0.021357 0.049088 0.021174 0.067511 0.012766 0.035436 0.000000 0.000000 0.000000 0.027482 0.000000 0.050746 0.044271 0.017535 0.007940 0.054971 0.011723 0.035653 0.000000 0.085598 0.000000 0.023672 0.000000 0.010026 0.000000 0.014680 0.000000 0.000000 0.011510 0.000000 0.014298 0.000000 0.006110 0.000000 0.059355 0.011673 0.000000 0.042684 0.028605 0.010680 0.009569 0.000000 0.015943 0.012243 0.011776 0.009082 0.000000 0.007597 0.028135 0.000000 0.000000 0.000000 0.022358 0.010183 0.015617 0.021565 0.026965 0.000000 0.010180 0.000000 0.000000 0.000000 0.054637 0.000000 0.009312 0.000000 0.027615 0.019287 0.000000 0.014549 0.000000 0.063569 0.028509 0.000000 0.025215 0.000000 0.000000 0.005580 0.000000 0.091147 0.000000 0.010478 0.021387 0.009348 0.007826 0.026319 0.016139 0.020097 0.000000 0.012441 0.012133 0.000000 0.009749 0.000000 0.015294 0.046891 0.015521 0.000000 0.028620 0.000000 0.010108 0.014519 0.007792 0.041207 0.000000 0.000000 0.030532 0.000000 0.025093 0.000000 0.028324 0.022864 0.000000 0.000000 0.004984 0.000000 0.000000 0.000000 0.025838 0.045499 0.011145 0.008022 0.000000 0.018127 0.000000 0.000000 0.025480 0.006029 0.066453 0.053233 0.000000 0.000000 0.000000 0.026195 0.000000 0.039183 0.000000 0.000000 0.024608 0.000000 0.048723 0.060673 0.011522 0.066848 0.000000 0.042696 0.000000 0.000000 0.010282 0.000000 0.000000 0.025542 0.016697 0.011356 0.000000 0.000000 0.009444 0.000000 0.000000 0.034462 0.026803 0.000000 0.000000 0.000000 0.023034 0.000000 0.054066 0.060636 0.000000 0.037665 0.014082 0.031785 0.000000 0.000000 0.000000 0.014034 0.000000 0.0 0.015857 0.000000 0.000000 0.028353 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.00000 0.000000 0.0 0.000000 0.000000 0.013938 0.047153 0.000000 0.024013 0.000000 0.019839 0.0 0.0 0.051101 0.000000 0.063886 0.0 0.000000 0.0 0.044495 0.000000 0.000000 0.013288 0.000000 0.0 0.0 0.086744 0.000000 0.000000 0.023003 0.000000 0.015377 0.013809 0.021035 0.000000 0.000000 0.0 0.0 0.075452 0.0 0.000000 0.072364 0.000000 0.0 0.000000 0.000000 0.010589 0.00000 0.0 0.000000 0.0 0.0 0.015672 0.000000 0.0 0.000000 0.0 0.031037 0.000000 0.0 0.000000 0.000000 0.023088 0.000000 0.078631 0.0 0.028846 0.026633 0.021218 0.011058 0.000000 0.000000 0.008067 0.008237 0.000000 0.0 0.072326 0.0 0.000000 0.000000 0.035294 0.047524 0.022892 0.051202 0.000000 0.000000 0.039822 0.000000 0.000000 0.031830 0.000000 0.000000 0.013022 0.000000 0.015153 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.069308 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.021087 0.000000 0.033815 0.000000 0.000000 0.000000 0.0 0.049235 0.030039 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.012632 0.000000 0.000000 0.027344 0.000000 0.042216 0.012163 0.053164 0.060551 0.030108 0.000000 0.000000 0.000000 0.026254 0.0 0.084491 0.000000 0.021399 0.000000 0.037394 0.000000 0.032854 0.000000 0.005858 0.000000 0.000000 0.013715 0.000000 0.000000 0.033458 0.000000 0.000000 0.000000 0.050415 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.019733 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.031258 0.000000 0.000000 0.056990 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.032034 0.023826 0.000000 0.021129 0.030744 0.0 0.00000 0.00000 0.014890 0.000000 0.000000 0.000000 0.026821 0.000000 0.000000 0.000000 0.006958 0.0 0.013500 0.000000 0.000000 0.028164 0.000000 0.015665 0.000000 0.049663 0.028160 0.000000 0.000000 0.011200 0.000000 0.000000 0.012127 0.009810 0.029728 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.00000 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.067281 0.000000 0.000000 0.018677 0.000000 0.000000 0.018079 0.000000 0.000000 0.019543 0.000000 0.0 0.012758 0.051844 0.009329 0.024286 0.036305 0.03918 0.000000 0.0 0.004910 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.066904 0.000000 0.000000 0.000000 0.0 0.000000 0.016052 0.00000 0.061969 0.000000 0.000000 0.025424 0.000000 0.039409 0.0 0.040219 0.000000 0.000000 0.00000 0.016160 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.020081 0.000000 0.000000 0.018706 0.000000 0.000000 0.000000 0.000000 0.020496 0.000000 0.00000 0.018878 0.033144 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.063643 0.017383 0.000000 0.0 0.00000 0.000000 0.000000 0.030005 0.020872 0.00000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.00000 0.00000 0.000000 0.028772 0.034110 0.006892 0.026798 0.000000 0.029341 0.008205 0.000000 0.036251 0.007425 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.007596 0.074391 0.000000 0.011179 0.000000 0.0 0.0 0.0 0.0 0.021905 0.019517 0.0 0.000000 0.000000 0.0 0.0 0.009764 0.000000 0.010122 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.0 0.014230 0.000000 0.000000 0.039414 0.011695 0.012229 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.021493 0.043459 0.000000 0.000000 0.000000 0.025530 0.010588 0.027432 0.011029 0.0 0.0 0.015684 0.044755 0.014107 0.000000 0.0 0.000000 0.000000 0.0 0.011025 0.000000 0.0 0.031329 0.012068 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.051974 0.020714 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.008406 0.023402 0.015811 0.000000 0.017940 0.000000 0.040131 0.000000 0.000000 0.013045 0.009325 0.0 0.021419 0.010394 0.000000 0.000000 0.013376 0.000000 0.000000 0.047005 0.008637 0.000000 0.000000 0.008185 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.067701 0.000000 0.000000 0.027615 0.044049 0.000000 0.0 0.000000 0.000000 0.0 0.009459 0.000000 0.000000 0.000000 0.000000 0.016606 0.000000 0.000000 0.014592 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.013372 0.036087 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.025667 0.040833 0.000000 0.007755 0.000000 0.000000 0.017839 0.0 0.013029 0.000000 0.006277 0.0 0.0 0.009754 0.000000 0.070410 0.047881 0.070410 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.023638 0.000000 0.023828 0.000000 0.000000 0.000000 0.008380 0.0 0.008528 0.020319 0.00000 0.000000 0.000000 0.000000 0.009927 0.000000 0.000000 0.0 0.0 0.014625 0.0 0.015752 0.027388 0.011721 0.000000 0.015752 0.129248 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.011491 0.018236 0.000000 0.000000 0.000000 0.013585 0.011915 0.018874 0.0 0.021828 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.009087 0.010952 0.010553 0.000000 0.010900 0.0 0.008492 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009951 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010249 0.000000 0.000000 0.040434 0.000000 0.019050 0.020180 0.010383 0.000000 0.000000 0.042065 0.0000 0.009385 0.015892 0.000000 0.021217 0.031569 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.000000 0.015076 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.010825 0.000000 0.010737 0.000000 0.007681 0.009120 0.007697 0.008126 0.00000 0.009288 0.000000 0.000000 0.000000 0.014643 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.019660 0.000000 0.0 0.000000 0.022054 0.045225 0.000000 0.023828 0.000000 0.023828 0.000000 0.009446 0.000000 0.000000 0.0 0.0 0.000000 0.009333 0.01690 0.000000 0.051634 0.000000 0.000000 0.000000 0.011779 0.000000 0.000000 0.048934 0.000000 0.0 0.000000 0.000000 0.010769 0.013415 0.000000 0.026148 0.00000 0.025457 0.000000 0.000000 0.000000 0.034038 0.011834 0.000000 0.0 0.000000 0.000000 0.0 0.016713 0.000000 0.032751 0.011814 0.048235 0.000000 0.010468 0.015571 0.008996 0.0 0.033956 0.028695 0.008352 0.000000 0.043690 0.008788 0.000000 0.000000 0.000000 0.0 0.059556 0.000000 0.008698 0.000000 0.000000 0.000000 0.000000 0.000000 0.026742 0.000000 0.000000 0.000000 0.023677 0.009483 0.028673 0.000000 0.000000 0.000000 0.023838 0.0 0.008498 0.030677 0.076926 0.014312 0.028673 0.009950 0.000000 0.0 0.043161 0.016258 0.000000 0.000000 0.000000 0.010190 0.015452 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.012929 0.000000 0.015252 0.000000 0.000000 0.000000 0.000000 0.027459 0.014536 0.000000 0.000000 0.014546 0.000000 0.0 0.0 0.000000 0.059045 0.038612 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.032980 0.008453 0.024023 0.016592 0.012502 0.010067 0.007484 0.030473 0.043163 0.0 0.008548 0.029343 0.000000 0.0 0.000000 0.000000 0.009712 0.008750 0.000000 0.020065 0.000000 0.0 0.007333 0.045700 0.022409 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.014434 0.000000 0.000000 0.000000 0.021617 0.050141 0.055161 0.000000 0.0 0.000000 0.048275 0.025274 0.000000 0.009693 0.013327 0.000000 0.008593 0.018043 0.000000 0.000000 0.024938 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.032309 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.026244 0.019192 0.000000 0.011004 0.000000 0.0 0.000000 0.000000 0.062844 0.000000 0.0 0.008548 0.000000 0.000000 0.000000 0.024635 0.000000 0.000000 0.000000 0.009715 0.039598 0.000000 0.000000 0.017363 0.000000 0.000000 0.000000 0.000000 0.000000 0.081098 0.000000 0.011134 0.000000 0.024247 0.000000 0.000000 0.009486 0.000000 0.026040 0.008112 0.022956 0.043009 0.019783 0.000000 0.039978 0.000000 0.000000 0.009268 0.038981 0.011974 0.0 0.034057 0.019071 0.000000 0.009118 0.000000 0.000000 0.000000 0.000000 0.000000 0.021582 0.008704 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013897 0.025450 0.038161 0.000000 0.016147 0.000000 0.008844 0.0 0.030931 0.050259 0.000000 0.000000 0.010540 0.011909 0.000000 0.015825 0.000000 0.000000 0.030234 0.010021 0.000000 0.046940 0.024405 0.108694 0.005581 0.010187 0.035768 0.0 0.000000 0.000000 0.000000 0.049600 0.000000 0.000000 0.000000 0.000000 0.010790 0.045597 0.0 0.000000 0.000000 0.000000 0.013855 0.000000 0.000000 0.000000 0.000000 0.026939 0.009686 0.032226 0.000000 0.00987 0.000000 0.000000 0.031911 0.000000 0.000000 0.000000 0.000000 0.000000 0.007462 0.011323 0.0 0.000000 0.000000 0.045047 0.114680 0.000000 0.050900 0.000000 0.000000 0.000000 0.037357 0.010777 0.000000 0.012626 0.019098 0.000000 0.032964 0.000000 0.000000 0.000000 0.000000 0.008998 0.000000 0.037366 0.000000 0.042890 0.000000 0.030737 0.01897 0.000000 0.000000 0.075062 0.000000 0.009014 0.000000 0.000000 0.023797 0.040915 0.017312 0.000000 0.013549 0.048014 0.007406 0.000000 0.000000 0.000000 0.000000 0.013715 0.054224 0.037518 0.000000 0.056791 0.051635 0.030265 0.000000 0.013559 0.020617 0.011588 0.000000 0.000000 0.000000 0.0 0.023740 0.000000 0.028847 0.000000 0.000000 0.008991 0.059342 0.0 0.023813 0.0 0.0 0.023237 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.009789 0.0 0.000000 0.000000 0.000000 0.011812 0.000000 0.012019 0.022798 0.000000 0.034441 0.000000 0.013482 0.008102 0.007470 0.013569 0.007791 0.000000 0.000000 0.031982 0.007874 0.000000 0.000000 0.000000 0.0 0.014011 0.022813 0.000000 0.056059 0.028143 0.025931 0.025634 0.0 0.000000 0.000000 0.012925 0.015087 0.048636 0.019065 0.0 0.029950 0.026808 0.000000 0.015526 0.007570 0.022406 0.010328 0.024643 0.00000 0.000000 0.028923 0.019154 0.022456 0.0 0.00000 0.0 0.007869 0.042792 0.000000 0.00000 0.089152 0.063513 0.02322 0.029526 0.011138 0.000000 0.000000 0.012333 0.000000 0.011253 0.000000 0.046248 0.0 0.000000 0.010793 0.0 0.019085 0.0 0.0 0.017917 0.000000 0.049504 0.00947 0.013489 0.000000 0.0 0.014555 0.0 0.110317 0.022679 0.008508 0.012764 0.0 0.000000 0.010621 0.075759 0.046601 0.031140 0.000000 0.072390 0.020855 0.000000 0.000000 0.020859 0.000000 0.008161 0.000000 0.056498 0.037168 0.000000 0.015335 0.000000 0.015734 0.000000 0.000000 0.013995 0.007933 0.029117 0.013847 0.019545 0.016702 0.000000 0.000000 0.060335 0.000000 0.050820 0.021741 0.041638 0.059359 0.000000 0.010336 0.000000 0.021413 0.000000 0.000000 0.000000 0.013549 0.025779 0.000000 0.000000 0.000000 0.053430 0.013902 0.000000 0.000000 0.000000 0.010851 0.000000 0.000000 0.005747 0.016005 0.000000 0.033714 0.000000 0.116646 0.020748 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.018635 0.027421 0.023611 0.019296 0.0 0.000000 0.056707 0.000000 0.000000 0.019168 0.0 0.000000 0.010712 0.031315 0.033004 0.000000 0.000000 0.011164 0.030932 0.015879 0.000000 0.000000 0.058547 0.000000 0.000000 0.015179 0.037660 0.000000 0.000000 0.000000 0.035041 0.027089 0.000000 0.000000 0.008903 0.000000 0.0 0.000000 0.007743 0.014945 0.012284 0.010502 0.009754 0.000000 0.000000 0.000000 0.016892 0.000000 0.0 0.039634 0.025407 0.024799 0.015941 0.008376 0.008602 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.011998 0.000000 0.000000 0.0 0.009813 0.011745 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.007472 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.016188 0.010845 0.038730 0.000000 0.000000 0.000000 0.0 0.013164 0.000000 0.000000 0.022431 0.016385 0.000000 0.000000 0.000000 0.000000 0.027450 0.014286 0.000000 0.000000 0.000000 0.000000 0.0 0.027153 0.007701 0.027546 0.020246 0.000000 0.026298 0.028428 0.020438 0.000000 0.026366 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017500 0.000000 0.005795 0.000000 0.064391 0.000000 0.000000 0.000000 0.000000 0.000000 0.044447 0.112450 0.018365 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013506 0.031919 0.012519 0.000000 0.040948 0.00617 0.018075 0.000000 0.024628 0.009247 0.000000 0.000000 0.000000 0.025380 0.000000 0.000000 0.000000 0.030524 0.0 0.000000 0.054938 0.000000 0.025531 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016510 0.000000 0.007807 0.000000 0.000000 0.000000 0.000000 0.000000 0.026637 0.000000 0.000000 0.000000 0.021510 0.000000 0.000000 0.021361 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.009873 0.000000 0.000000 0.019400 0.018283 0.000000 0.011143 0.000000 0.000000 0.000000 0.000000 0.000000 0.039786 0.012442 0.039903 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.026581 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009278 0.0 0.011074 0.007065 0.007296 0.023277 0.006253 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.010066 0.000000 0.000000 0.009525 0.024717 0.022296 0.000000 0.000000 0.006545 0.000000 0.000000 0.027405 0.000000 0.000000 0.007608 0.020615 0.000000 0.010931 0.00000 0.00000 0.024884 0.014090 0.000000 0.000000 0.000000 0.000000 0.010608 0.000000 0.000000 0.000000 0.000000 0.000000 0.023299 0.00000 0.009090 0.008685 0.026328 0.000000 0.024382 0.000000 0.000000 0.000000 0.034144 0.013652 0.026855 0.000000 0.018386 0.000000 0.000000 0.029482 0.000000 0.000000 0.022931 0.000000 0.043905 0.006631 0.010556 0.000000 0.027362 0.041858 0.036531 0.007331 0.020213 0.006675 0.033387 0.000000 0.005408 0.008685 0.026732 0.060522 0.007726 0.014589 0.009592 0.016445 0.000000 0.028161 0.016275 0.015687 0.014816 0.024778 0.000000 0.006543 0.0 0.020565 0.000000 0.012516 0.000000 0.015002 0.010920 0.000000 0.021032 0.008852 0.007277 0.024994 0.000000 0.030538 0.000000 0.009400 0.017140 0.007999 0.042376 0.000000 0.031248 0.007482 0.000000 0.058410 0.018138 0.000000 0.000000 0.008914 0.000000 0.000000 0.046059 0.016946 0.038728 0.025822 0.006320 0.016299 0.0000 0.000000 0.006423 0.000000 0.006699 0.014989 0.032443 0.007428 0.017982 0.006567 0.007567 0.035662 0.014519 0.050675 0.007739 0.010155 0.051158 0.006794 0.007576 0.00000 0.004666 0.008478 0.006630 0.006413 0.021254 0.020722 0.007528 0.000000 0.005757 0.008122 0.012284 0.036227 0.000000 0.008451 0.000000 0.028780 0.0 0.053329 0.048317 0.018466 0.000000 0.000000 0.000000 0.000000 0.016604 0.016922 0.011978 0.008416 0.006610 0.007796 0.021880 0.000000 0.035941 0.000000 0.006453 0.006939 0.035374 0.000000 0.007882 0.057349 0.005932 0.009455 0.007553 0.019478 0.000000 0.006443 0.052773 0.006841 0.005431 0.007677 0.007567 0.042869 0.011972 0.023881 0.007633 0.010994 0.005893 0.000000 0.006325 0.014233 0.000000 0.007537 0.000000 0.000000 0.000000 0.012506 0.014793 0.020412 0.040267 0.000000 0.000000 0.000000 0.000000 0.000000 0.029973 0.000000 0.000000 0.028890 0.00000 0.013998 0.041621 0.016967 0.000000 0.012009 0.000000 0.017653 0.039455 0.007321 0.006887 0.018384 0.004699 0.013436 0.000000 0.006568 0.005882 0.027953 0.027179 0.017580 0.005219 0.024491 0.014847 0.000000 0.016654 0.012987 0.012908 0.012840 0.00000 0.019492 0.006520 0.011597 0.019711 0.016946 0.020149 0.007207 0.008154 0.000000 0.013154 0.000000 0.006865 0.006135 0.006477 0.000000 0.007505 0.000000 0.000000 0.047141 0.053265 0.067510 0.045841 0.042837 0.009958 0.0 0.0 0.017017 0.007009 0.006083 0.007631 0.000000 0.010510 0.009460 0.000000 0.046378 0.000000 0.029665 0.030179 0.000000 0.016014 0.025878 0.00000 0.006340 0.009762 0.031715 0.027013 0.018785 0.009324 0.040109 0.025873 0.026063 0.000000 0.025878 0.015749 0.011905 0.025878 0.000000 0.006756 0.000000 0.000000 0.032870 0.00910 0.026467 0.000000 0.000000 0.000000 0.000000 0.034257 0.021408 0.017262 0.020352 0.038665 0.034306 0.0 0.000000 0.008751 0.008871 0.032932 0.018864 0.009480 0.006530 0.034068 0.000000 0.050024 0.0 0.000000 0.007307 0.019612 0.008829 0.000000 0.063950 0.055883 0.030746 0.009710 0.017246 0.014436 0.015205 0.000000 0.022853 0.015238 0.009039 0.012753 0.017478 0.011445 0.008944 0.048419 0.018535 0.013383 0.052775 0.000000 0.009117 0.000000 0.007612 0.004419 0.000000 0.000000 0.020512 0.000000 0.008588 0.060821 0.000000 0.000000 0.011614 0.000000 0.018821 0.018147 0.008781 0.025241 0.011418 0.046895 0.000000 0.000000 0.025878 0.022792 0.062143 0.007962 0.026052 0.019082 0.051587 0.021526 0.009691 0.008055 0.022642 0.032541 0.035816 0.056073 0.000000 0.007373 0.008038 0.031858 0.030614 0.026089 0.081534 0.000000 0.03292 0.029642 0.006421 0.009078 0.037953 0.046555 0.046523 0.018693 0.023216 0.008787 0.000000 0.000000 0.010506 0.000000 0.000000 0.000000 0.000000 0.009967 0.032158 0.007460 0.016958 0.017498 0.033910 0.008920 0.007932 0.008255 0.000000 0.022439 0.020863 0.021471 0.008704 0.019968 0.019071 0.000000 0.000000 0.023825 0.000000 0.000000 0.028509 0.007736 0.056356 0.000000 0.000000 0.007750 0.000000 0.049510 0.0 0.000000 0.000000 0.006489 0.010863 0.000000 0.073241 0.027699 0.072553 0.051790 0.009584 0.0 0.010421 0.011290 0.026057 0.0 0.008716 0.00877 0.023560 0.047478 0.069046 0.044358 0.000000 0.044243 0.000000 0.023738 0.000000 0.030140 0.029872 0.008972 0.000000 0.069597 0.028563 0.009929 0.000000 0.000000 0.008057 0.019232 0.029201 0.009269 0.035427 0.007685 0.0 0.044655 0.0 0.006936 0.02022 0.009091 0.008958 0.0 0.030061 0.008699 0.037971 0.000000 0.022283 0.011306 0.010850 0.0 0.025878 0.018436 0.0 0.009349 0.012247 0.00000 0.000000 0.000000 0.009051 0.0 0.000000 0.009400 0.059213 0.077132 0.087762 0.012888 0.056516 0.045579 0.008346 0.020422 0.000000 0.021372 0.009061 0.0 0.009384 0.020500 0.069677 0.000000 0.0 0.0 0.034019 0.007360 0.023692 0.000000 0.013495 0.000000 0.007889 0.000000 0.034726 0.000000 0.035463 0.000000 0.009669 0.029729 0.000000 0.007987 0.000000 0.010503 0.000000 0.007179 0.000000 0.005538 0.040888 0.000000 0.014753 0.029787 0.023088 0.073463 0.000000 0.0 0.029461 0.066726 0.035713 0.00000 0.011475 0.018668 0.025060 0.011315 0.013044 0.013421 0.000000 0.0 0.0 0.000000 0.008439 0.000000 0.022479 0.031581 0.036835 0.000000 0.000000 0.022032 0.009397 0.0 0.0 0.000000 0.007196 0.000000 0.000000 0.024253 0.000000 0.018453 0.038706 0.005793 0.006636 0.000000 0.000000 0.036518 0.013934 0.0 0.000000 0.038152 0.000000 0.022621 0.013360 0.0 0.036283 0.000000 0.036475 0.028839 0.009738 0.000000 0.000000 0.000000 0.000000 0.000000 0.026107 0.000000 0.000000 0.025190 0.006659 0.038420 0.023832 0.015579 0.025878 0.032737 0.000000 0.000000 0.000000 0.009239 0.000000 0.000000 0.006849 0.078359 0.009679 0.000000 0.000000 0.006982 0.024469 0.022596 0.000000 0.014584 0.024350 0.008511 0.010481 0.0 0.024531 0.000000 0.000000 0.033719 0.0 0.016942 0.045299 0.021479 0.000000 0.000000 0.022401 0.0 0.009246 0.027611 0.000000 0.010525 0.0000 0.081813 0.020435 0.040214 0.000000 0.011813 0.000000 0.000000 0.025749 0.0 0.000000 0.000000 0.007420 0.022633 0.034896 0.030376 0.000000 0.000000 0.023895 0.042830 0.000000 0.000000 0.010473 0.000000 0.007651 0.010102 0.000000 0.019062 0.008577 0.020023 0.059398 0.009590 0.049666 0.019311 0.023212 0.000000 0.0 0.021393 0.000000 0.000000 0.031917 0.031990 0.000000 0.0 0.009676 0.013774 0.005565 0.000000 0.020754 0.083503 0.024387 0.010739 0.036777 0.018221 0.000000 0.071280 0.000000 0.0 0.015516 0.000000 0.000000 0.033701 0.007156 0.012301 0.000000 0.000000 0.021835 0.049731 0.009141 0.023026 0.000000 0.022772 0.000000 0.021315 0.0 0.000000 0.017502 0.000000 0.028031 0.018345 0.020653 0.025901 0.000000 0.009465 0.019459 0.010325 0.009592 0.030002 0.060750 0.025878 0.008605 0.000000 0.059028 0.037445 0.028809 0.019512 0.053049 0.034265 0.0 0.000000 0.0 0.012002 0.008609 0.052989 0.000000 0.011075 0.015746 0.023046 0.018656 0.024476 0.049136 0.010278 0.022473 0.009719 0.030184 0.000000 0.053798 0.065867 0.000000 0.000000 0.025957 0.000000 0.000000 0.020178 0.007636 0.034674 0.000000 0.009245 0.000000 0.000000 0.000000 0.056074 0.011986 0.000000 0.040200 0.000000 0.032115 0.000000 0.000000 0.020206 0.007290 0.026330 0.043974 0.009536 0.021634 0.031339 0.000000 0.000000 0.022795 0.048634 0.025345 0.062748 0.047279 0.000000 0.010723 0.000000 0.000000 0.008101 0.025910 0.000000 0.012023 0.019818 0.0 0.000000 0.000000 0.0 0.000000 0.034768 0.000000 0.015718 0.050392 0.038019 0.009495 0.017153 0.010646 0.032152 0.024412 0.000000 0.000000 0.000000 0.037506 0.036282 0.053914 0.041694 0.007741 0.000000 0.019573 0.036405 0.064903 0.000000 0.009735 0.031124 0.0 0.014423 0.027613 0.000000 0.037488 0.010116 0.023790 0.000000 0.000000 0.000000 0.000000 0.013406 0.000000 0.000000 0.026358 0.013215 0.000000 0.026677 0.007687 0.000000 0.033068 0.000000 0.038332 0.000000 0.000000 0.031767 0.00000 0.000000 0.0 0.011032 0.000000 0.000000 0.013319 0.000000 0.031727 0.000000 0.010551 0.031849 0.000000 0.008257 0.000000 0.035864 0.047279 0.020432 0.00000 0.060306 0.000000 0.037688 0.000000 0.000000 0.010056 0.014096 0.010463 0.011659 0.0 0.00000 0.027831 0.000000 0.000000 0.007080 0.000000 0.009099 0.041332 0.028005 0.010910 0.046782 0.019390 0.000000 0.000000 0.012451 0.022428 0.006389 0.029719 0.010649 0.000000 0.000000 0.000000 0.011472 0.008211 0.000000 0.016857 0.011173 0.000000 0.053894 0.000000 0.017098 0.000000 0.000000 0.021512 0.005560 0.000000 0.020531 0.008115 0.031557 0.036504 0.047927 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.009613 0.011602 0.000000 0.031497 0.032388 0.017732 0.000000 0.017823 0.000000 0.025878 0.000000 0.008215 0.086369 0.009817 0.071942 0.000000 0.000000 0.000000 0.013947 0.029468 0.020041 0.000000 0.000000 0.040623 0.012846 0.000000 0.010219 0.007046 0.000000 0.000000 0.027520 0.0 0.010285 0.008423 0.000000 0.000000 0.047023 0.000000 0.000000 0.034532 0.0 0.00000 0.000000 0.000000 0.0 0.006227 0.000000 0.011723 0.000000 0.000000 0.030227 0.022068 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.023824 0.0 0.0 0.024702 0.000000 0.000000 0.000000 0.000000 0.024171 0.035096 0.025549 0.000000 0.000000 0.000000 0.008244 0.011674 0.039734 0.0 0.0 0.007413 0.007262 0.00000 0.019234 0.044512 0.031160 0.006961 0.040872 0.005808 0.000000 0.044264 0.000000 0.011818 0.047434 0.000000 0.042564 0.008076 0.026274 0.045018 0.008944 0.005769 0.000000 0.0 0.000000 0.047348 0.009112 0.000000 0.0 0.0 0.110373 0.040100 0.000000 0.010350 0.000000 0.034451 0.000000 0.038711 0.046824 0.053473 0.000000 0.013499 0.000000 0.021025 0.014083 0.000000 0.059745 0.006309 0.025688 0.008758 0.026676 0.000000 0.000000 0.017781 0.036263 0.0 0.000000 0.000000 0.000000 0.011178 0.039584 0.008888 0.000000 0.014203 0.000000 0.000000 0.000000 0.026727 0.000000 0.020606 0.000000 0.016365 0.000000 0.025833 0.009891 0.000000 0.0 0.010806 0.000000 0.0 0.000000 0.000000 0.009743 0.009717 0.010087 0.016995 0.038940 0.000000 0.000000 0.039947 0.023715 0.008908 0.014488 0.000000 0.030646 0.056903 0.000000 0.005772 0.0 0.000000 0.037079 0.000000 0.000000 0.037075 0.000000 0.000000 0.000000 0.074418 0.000000 0.000000 0.000000 0.012721 0.033562 0.000000 0.000000 0.000000 0.100324 0.000000 0.000000 0.008712 0.000000 0.021772 0.000000 0.012234 0.000000 0.000000 0.000000 0.000000 0.000000 0.031012 0.000000 0.035702 0.022182 0.025878 0.012784 0.031832 0.056727 0.000000 0.005983 0.00000 0.000000 0.021251 0.012125 0.000000 0.000000 0.032464 0.000000 0.000000 0.008307 0.000000 0.000000 0.009522 0.000000 0.009986 0.008011 0.025697 0.017286 0.021320 0.000000 0.007057 0.031203 0.021910 0.000000 0.000000 0.020581 0.000000 0.027278 0.022590 0.000000 0.000000 0.007241 0.023311 0.0 0.00000 0.011161 0.000000 0.022881 0.013398 0.008515 0.009039 0.029783 0.006416 0.030935 0.000000 0.0 0.024372 0.015295 0.005615 0.030929 0.023334 0.000000 0.005506 0.016210 0.019844 0.016379 0.027577 0.000000 0.000000 0.000000 0.042736 0.007515 0.000000 0.021898 0.000000 0.000000 0.018525 0.026407 0.000000 0.0 0.006349 0.000000 0.000000 0.000000 0.015003 0.000000 0.008244 0.023625 0.018055 0.007794 0.009220 0.000000 0.007642 0.032204 0.016430 0.120095 0.017098 0.024706 0.112532 0.047509 0.000000 0.024888 0.000000 0.020346 0.016292 0.019057 0.000000 0.006008 0.009669 0.009008 0.000000 0.030047 0.063433 0.000000 0.017513 0.028540 0.027343 0.011196 0.000000 0.000000 0.023324 0.000000 0.017905 0.030934 0.017863 0.023937 0.000000 0.000000 0.000000 0.000000 0.000000 0.047701 0.000000 0.000000 0.000000 0.019455 0.023357 0.000000 0.020829 0.000000 0.008464 0.000000 0.000000 0.040190 0.0 0.046441 0.000000 0.036348 0.018338 0.000000 0.000000 0.0 0.074828 0.027494 0.022944 0.000000 0.024927 0.000000 0.035354 0.008572 0.051056 0.000000 0.00000 0.006599 0.019853 0.022079 0.000000 0.031524 0.041433 0.030275 0.005849 0.000000 0.003850 0.025525 0.009334 0.000000 0.000000 0.000000 0.000000 0.000000 0.007248 0.049252 0.019772 0.006478 0.000000 0.000000 0.010154 0.000000 0.007488 0.000000 0.023417 0.008302 0.000000 0.007304 0.008966 0.027297 0.030708 0.028335 0.000000 0.020525 0.018830 0.000000 0.000000 0.038070 0.007361 0.000000 0.006961 0.000000 0.000000 0.000000 0.019637 0.041423 0.000000 0.010823 0.006272 0.000000 0.010200 0.000000 0.000000 0.026275 0.000000 0.008178 0.006662 0.000000 0.010047 0.000000 0.043662 0.028006 0.025139 0.000000 0.029765 0.027084 0.000000 0.000000 0.000000 0.000000 0.017779 0.000000 0.024248 0.000000 0.000000 0.007406 0.022474 0.000000 0.074694 0.029605 0.000000 0.017519 0.000000 0.000000 0.000000 0.013956 0.019479 0.008988 0.000000 0.025933 0.061567 0.036605 0.028496 0.018971 0.000000 0.000000 0.000000 0.046009 0.033512 0.000000 0.013853 0.008285 0.028971 0.000000 0.023327 0.012303 0.000000 0.000000 0.007343 0.047719 0.054306 0.007386 0.024309 0.021005 0.007983 0.006274 0.021892 0.000000 0.070482 0.070482 0.030935 0.000000 0.000000 0.009441 0.000000 0.000000 0.030508 0.101702 0.000000 0.008851 0.000000 0.000000 0.011453 0.011453 0.000000 0.000000 0.034962 0.028830 0.050227 0.007107 0.000000 0.000000 0.000000 0.000000 0.031239 0.000000 0.010815 0.000000 0.000000 0.034962 0.000000 0.000000 0.000000 0.073506 0.073506 0.007044 0.009838 0.009838 0.050629 0.050629 0.024081 0.000000 0.007270 0.025795 0.025589 0.008774 0.023965 0.023965 0.038762 0.009268 0.024279 0.007482 0.000000 0.026664 0.026664 0.007898 0.041580 0.000000 0.000000 0.000000 0.027524 0.047016 0.000000 0.006330 0.010752 0.000000 0.045998 0.028378 0.014299 0.019292 0.000000 0.000000 0.009871 0.000000 0.00651 0.000000 0.000000 0.007424 0.000000 0.000000 0.036528 0.036528 0.010035 0.028720 0.023111 0.015373 0.000000 0.025325 0.025325 0.012145 0.012145 0.008305 0.000000 0.037972 0.000000 0.000000 0.021269 0.021269 0.020864 0.011119 0.011119 0.009820 0.054766 0.000000 0.057136 0.000000 0.007402 0.000000 0.000000 0.012801 0.028327 0.026925 0.000000 0.000000 0.031201 0.000000 0.000000 0.000000 0.000000 0.025258 0.000000 0.015422 0.000000 0.000000 0.017823 0.031984 0.010567 0.010567 0.000000 0.000000 0.029318 0.00000 0.027779 0.052375 0.007652 0.028664 0.000000 0.016461 0.062813 0.011528 0.010365 0.019866 0.000000 0.000000 0.000000 0.011139 0.009582 0.009325 0.006962 0.025983 0.023783 0.023783 0.070323 0.054095 0.030040 0.037142 0.000000 0.024683 0.000000 0.028964 0.000000 0.000000 0.000000 0.000000 0.008420 0.000000 0.009724 0.000000 0.006229 0.037142 0.000000 0.010505 0.007669 0.059024 0.010042 0.035074 0.009140 0.022608 0.072559 0.019203 0.000000 0.000000 0.000000 0.062922 0.006995 0.024998 0.079245 0.000000 0.000000 0.040949 0.011779 0.030734 0.007859 0.007918 0.006902 0.000000 0.041358 0.018785 0.042579 0.008500 0.000000 0.009530 0.000000 0.021383 0.011519 0.075070 0.006807 0.000000 0.039912 0.013601 0.012797 0.000000 0.026654 0.023554 0.006139 0.113901 0.044209 0.047056 0.103887 0.026528 0.019735 0.000000 0.000000 0.010248 0.000000 0.000000 0.000000 0.025671 0.000000 0.000000 0.000000 0.000000 0.0 0.008932 0.000000 0.000000 0.034803 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047611 0.000000 0.034037 0.000000 0.000000 0.000000 0.048759 0.000000 0.000000 0.000000 0.000000 0.000000 0.008020 0.018700 0.022077 0.047508 0.0 0.033081 0.035461 0.027790 0.000000 0.022317 0.000000 0.000000 0.009601 0.000000 0.052410 0.023478 0.107366 0.000000 0.041530 0.050572 0.033798 0.014496 0.000000 0.000000 0.020284 0.000000 0.000000 0.009624 0.010996 0.009457 0.009599 0.007994 0.000000 0.000000 0.000000 0.008194 0.010501 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019321 0.000000 0.016262 0.000000 0.000000 0.000000 0.000000 0.000000 0.009220 0.081202 0.057807 0.027155 0.010427 0.021394 0.000000 0.009835 0.000000 0.011850 0.025877 0.031697 0.082895 0.000000 0.058315 0.027838 0.034594 0.033107 0.011516 0.009454 0.000000 0.000000 0.015372 0.000000 0.012487 0.014596 0.000000 0.008197 0.023344 0.000000 0.000000 0.000000 0.007910 0.000000 0.000000 0.000000 0.000000 0.020429 0.010274 0.000000 0.063450 0.063450 0.013996 0.000000 0.000000 0.000000 0.0 0.021038 0.000000 0.000000 0.013675 0.007571 0.035857 0.011051 0.000000 0.000000 0.03423 0.000000 0.037642 0.000000 0.025884 0.009070 0.000000 0.021539 0.000000 0.000000 0.01817 0.041856 0.000000 0.010574 0.029654 0.010971 0.059166 0.000000 0.037642 0.035684 0.000000 0.015627 0.015627 0.000000 0.059656 0.000000 0.025731 0.018700 0.062505 0.031850 0.000000 0.017743 0.007930 0.000000 0.090935 0.066296 0.000000 0.000000 0.000000 0.000000 0.000000 0.025908 0.000000 0.00000 0.020583 0.000000 0.014254 0.000000 0.043823 0.011468 0.000000 0.017580 0.000000 0.000000 0.014515 0.000000 0.017602 0.046258 0.023345 0.000000 0.012758 0.006786 0.011734 0.000000 0.000000 0.023887 0.000000 0.015154 0.000000 0.047762 0.007216 0.00000 0.014610 0.000000 0.000000 0.015995 0.056058 0.000000 0.010171 0.000000 0.000000 0.009774 0.000000 0.000000 0.021327 0.000000 0.031308 0.000000 0.042629 0.0 0.000000 0.000000 0.000000 0.000000 0.011873 0.000000 0.000000 0.000000 0.000000 0.093344 0.011571 0.000000 0.000000 0.038955 0.050581 0.006929 0.015424 0.007819 0.020081 0.019004 0.024158 0.030383 0.000000 0.000000 0.000000 0.000000 0.000000 0.013090 0.014163 0.019919 0.000000 0.000000 0.012873 0.018964 0.015527 0.057626 0.035601 0.032675 0.000000 0.000000 0.068645 0.017054 0.014125 0.010447 0.027036 0.000000 0.000000 0.000000 0.000000 0.062612 0.021604 0.000000 0.000000 0.026551 0.000000 0.000000 0.068064 0.018774 0.073240 0.009470 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.048708 0.000000 0.022558 0.056309 0.000000 0.017945 0.039582 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.036687 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011839 0.000000 0.000000 0.034631 0.000000 0.000000 0.025764 0.000000 0.000000 0.0 0.047096 0.011283 0.000000 0.000000 0.000000 0.056715 0.033095 0.0 0.000000 0.020623 0.0 0.000000 0.000000 0.000000 0.000000 0.011064 0.000000 0.008613 0.000000 0.000000 0.000000 0.053381 0.000000 0.025937 0.021831 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018982 0.000000 0.000000 0.000000 0.018807 0.000000 0.000000 0.027885 0.000000 0.000000 0.013785 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.051082 0.021185 0.000000 0.055127 0.000000 0.000000 0.000000 0.030025 0.000000 0.000000 0.000000 0.000000 0.013397 0.000000 0.000000 0.016577 0.031396 0.000000 0.009721 0.025317 0.000000 0.0 0.007676 0.000000 0.010350 0.000000 0.000000 0.033042 0.058033 0.000000 0.000000 0.029297 0.000000 0.093474 0.000000 0.022928 0.030899 0.013978 0.000000 0.000000 0.048409 0.000000 0.000000 0.000000 0.029129 0.029129 0.013071 0.006182 0.000000 0.072604 0.072604 0.0 0.000000 0.000000 0.031169 0.021842 0.007003 0.000000 0.000000 0.000000 0.025210 0.000000 0.000000 0.000000 0.019364 0.000000 0.000000 0.013271 0.104011 0.000000 0.000000 0.000000 0.000000 0.069518 0.012313 0.035917 0.000000 0.021096 0.000000 0.000000 0.000000 0.000000 0.013189 0.000000 0.028594 0.024916 0.000000 0.018914 0.044417 0.049782 0.000000 0.000000 0.000000 0.000000 0.028126 0.000000 0.027115 0.035896 0.000000 0.000000 0.007483 0.009087 0.000000 0.020258 0.000000 0.000000 0.000000 0.013415 0.000000 0.000000 0.000000 0.000000 0.000000 0.009368 0.000000 0.000000 0.000000 0.000000 0.007053 0.00000 0.011542 0.025903 0.007869 0.000000 0.013984 0.026684 0.000000 0.000000 0.016936 0.008333 0.0 0.056145 0.03595 0.000000 0.000000 0.000000 0.025863 0.014248 0.0 0.000000 0.017371 0.020941 0.011498 0.000000 0.063382 0.036377 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.020493 0.000000 0.041351 0.000000 0.000000 0.000000 0.013748 0.000000 0.000000 0.000000 0.000000 0.007808 0.012466 0.000000 0.000 0.019998 0.042212 0.000000 0.022772 0.006648 0.014787 0.016558 0.013124 0.000000 0.034647 0.000000 0.013306 0.008923 0.012112 0.000000 0.000000 0.036844 0.011920 0.041163 0.012056 0.023427 0.000000 0.000000 0.037701 0.000000 0.000000 0.010937 0.000000 0.000000 0.000000 0.007494 0.000000 0.020267 0.000000 0.037140 0.021534 0.000000 0.006969 0.000000 0.007466 0.000000 0.067903 0.000000 0.000000 0.040985 0.000000 0.000000 0.000000 0.00000 0.022459 0.000000 0.012882 0.000000 0.032452 0.010851 0.000000 0.027899 0.000000 0.000000 0.000000 0.044581 0.000000 0.000000 0.000000 0.000000 0.039034 0.000000 0.028491 0.011846 0.000000 0.008940 0.000000 0.011099 0.025444 0.010043 0.022354 0.000000 0.013393 0.000000 0.008713 0.036995 0.008755 0.000000 0.010726 0.000000 0.025212 0.011831 0.000000 0.076280 0.000000 0.010563 0.000000 0.030612 0.014393 0.000000 0.000000 0.057530 0.000000 0.000000 0.013600 0.000000 0.031008 0.008890 0.000000 0.000000 0.000000 0.010375 0.009496 0.024670 0.014776 0.045378 0.000000 0.000000 0.000000 0.034339 0.000000 0.018259 0.028787 0.055433 0.026273 0.000000 0.016835 0.000000 0.000000 0.000000 0.000000 0.010274 0.000000 0.000000 0.000000 0.000000 0.019488 0.000000 0.000000 0.000000 0.000000 0.000000 0.010910 0.000000 0.000000 0.000000 0.000000 0.018720 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040282 0.008935 0.011542 0.000000 0.006904 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041233 0.000000 0.017526 0.078953 0.020843 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.007298 0.000000 0.020940 0.000000 0.038502 0.000000 0.000000 0.00000 0.000000 0.000000 0.022834 0.0 0.021604 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030531 0.009435 0.000000 0.000000 0.000000 0.008657 0.035426 0.035373 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012939 0.000000 0.000000 0.000000 0.000000 0.000000 0.039664 0.022926 0.008448 0.000000 0.000000 0.013618 0.010762 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.008445 0.000000 0.009421 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.053374 0.000000 0.000000 0.026202 0.000000 0.000000 0.000000 0.018284 0.026128 0.000000 0.009630 0.052045 0.008309 0.018488 0.006116 0.018522 0.007847 0.006116 0.000000 0.007905 0.000000 0.009223 0.000000 0.000000 0.000000 0.000000 0.000000 0.010225 0.000000 0.010045 0.030674 0.0 0.000000 0.000000 0.000000 0.005367 0.000000 0.011125 0.020322 0.000000 0.008094 0.011125 0.000000 0.000000 0.009245 0.021624 0.000000 0.000000 0.044943 0.024470 0.00000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.007026 0.000000 0.000000 0.000000 0.000000 0.000000 0.023968 0.000000 0.000000 0.010548 0.000000 0.000000 0.024541 0.000000 0.000000 0.0 0.008371 0.000000 0.000000 0.000000 0.008853 0.000000 0.018431 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.022185 0.000000 0.000000 0.013270 0.033408 0.000000 0.000000 0.000000 0.000000 0.024104 0.039973 0.000000 0.018421 0.024767 0.000000 0.000000 0.000000 0.021876 0.000000 0.044182 0.032317 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.021668 0.0 0.000000 0.032759 0.008369 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021823 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.006492 0.000000 0.0 0.000000 0.024147 0.008838 0.000000 0.000000 0.016217 0.000000 0.007649 0.066119 0.000000 0.000000 0.014578 0.006450 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014835 0.028979 0.000000 0.000000 0.000000 0.000000 0.011564 0.027202 0.000000 0.000000 0.009638 0.000000 0.017732 0.026687 0.000000 0.000000 0.000000 0.000000 0.000000 0.086709 0.00000 0.000000 0.000000 0.006657 0.007071 0.007007 0.020649 0.000000 0.01659 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.029948 0.02776 0.000000 0.006801 0.00000 0.008002 0.015015 0.000000 0.034453 0.005921 0.005625 0.005707 0.006239 0.012415 0.036052 0.023337 0.009092 0.000000 0.070629 0.000000 0.000000 0.018872 0.000000 0.006137 0.008664 0.022004 0.031912 0.077274 0.000000 0.000000 0.000000 0.021744 0.013574 0.058087 0.005064 0.019299 0.026571 0.000000 0.018154 0.058796 0.000000 0.000000 0.000000 0.036247 0.056607 0.010591 0.000000 0.008008 0.000000 0.000000 0.008838 0.000000 0.000000 0.026987 0.00000 0.000000 0.000000 0.000000 0.000000 0.019960 0.000000 0.00000 0.009950 0.000000 0.000000 0.000000 0.012119 0.000000 0.000000 0.000000 0.008286 0.007198 0.000000 0.016807 0.000000 0.000000 0.000000 0.000000 0.034285 0.000000 0.00000 0.000000 0.022773 0.000000 0.000000 0.007764 0.000000 0.000000 0.000000 0.000000 0.042158 0.000000 0.000000 0.020691 0.000000 0.025279 0.037603 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010740 0.031246 0.000000 0.012081 0.000000 0.026635 0.00627 0.000000 0.000000 0.000000 0.00000 0.010637 0.009644 0.00000 0.000000 0.010887 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009660 0.000000 0.000000 0.000000 0.000000 0.000000 0.012072 0.041912 0.000000 0.012614 0.020787 0.0 0.043907 0.000000 0.013602 0.035331 0.031714 0.014803 0.000000 0.000000 0.009755 0.000000 0.00000 0.008992 0.000000 0.000000 0.000000 0.009388 0.000000 0.000000 0.000000 0.019016 0.00000 0.000000 0.011840 0.0 0.031646 0.000000 0.000000 0.000000 0.000000 0.060234 0.00000 0.014543 0.0 0.000000 0.000000 0.000000 0.012148 0.000000 0.000000 0.019011 0.041304 0.007423 0.000000 0.000000 0.035663 0.000000 0.000000 0.000000 0.000000 0.022694 0.000000 0.000000 0.044963 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012082 0.000000 0.000000 0.020005 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.062011 0.000000 0.000000 0.000000 0.000000 0.024275 0.000000 0.000000 0.000000 0.000000 0.000000 0.010232 0.000000 0.000000 0.000000 0.008316 0.00000 0.000000 0.042905 0.000000 0.000000 0.000000 0.032856 0.000000 0.008670 0.000000 0.021751 0.000000 0.000000 0.038219 0.000000 0.000000 0.0 0.024734 0.000000 0.016661 0.000000 0.049497 0.020889 0.000000 0.000000 0.000000 0.078773 0.008282 0.0 0.000000 0.006007 0.029378 0.000000 0.013583 0.007447 0.000000 0.000000 0.000000 0.000000 0.000000 0.005543 0.007994 0.000000 0.000000 0.000000 0.017589 0.018095 0.000000 0.000000 0.000000 0.010630 0.000000 0.00000 0.000000 0.00000 0.017445 0.000000 0.000000 0.000000 0.000000 0.016608 0.000000 0.000000 0.000000 0.057180 0.000000 0.000000 0.009353 0.000000 0.000000 0.000000 0.000000 0.009636 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016468 0.0 0.000000 0.010271 0.000000 0.053288 0.015130 0.021096 0.000000 0.020133 0.000000 0.000000 0.008711 0.024097 0.000000 0.000000 0.000000 0.000000 0.009793 0.025601 0.000000 0.000000 0.010500 0.000000 0.111115 0.000000 0.000000 0.000000 0.000000 0.000000 0.020913 0.033245 0.026901 0.034192 0.023059 0.014282 0.036070 0.000000 0.036690 0.000000 0.000000 0.047242 0.032696 0.000000 0.023198 0.022999 0.000000 0.000000 0.000000 0.033294 0.000000 0.000000 0.000000 0.011156 0.027529 0.000000 0.000000 0.010437 0.000000 0.028084 0.0 0.000000 0.000000 0.010690 0.00000 0.000000 0.000000 0.000000 0.000000 0.032195 0.009405 0.00000 0.017511 0.000000 0.111874 0.019273 0.026436 0.096701 0.000000 0.000000 0.041356 0.000000 0.000000 0.000000 0.009129 0.000000 0.007523 0.000000 0.000000 0.018803 0.006911 0.000000 0.000000 0.000000 0.000000 0.000000 0.05982 0.000000 0.024119 0.000000 0.000000 0.000000 0.000000 0.017477 0.000000 0.000000 0.024512 0.019091 0.000000 0.000000 0.000000 0.000000 0.025753 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.070200 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021134 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.067152 0.000000 0.028669 0.000000 0.000000 0.034834 0.000000 0.000000 0.000000 0.000000 0.006990 0.000000 0.000000 0.010981 0.032110 0.000000 0.014842 0.018006 0.033641 0.000000 0.031005 0.000000 0.000000 0.000000 0.000000 0.015982 0.000000 0.023669 0.000000 0.000000 0.000000 0.009151 0.067730 0.00000 0.063429 0.000000 0.00000 0.000000 0.000000 0.008000 0.000000 0.036740 0.000000 0.000000 0.000000 0.007731 0.019903 0.012721 0.041105 0.008370 0.026125 0.029416 0.00000 0.000000 0.000000 0.000000 0.000000 0.015953 0.009300 0.000000 0.000000 0.000000 0.007112 0.000000 0.019690 0.000000 0.010642 0.000000 0.000000 0.000000 0.020324 0.000000 0.027136 0.015290 0.000000 0.020265 0.000000 0.005934 0.015887 0.000000 0.000000 0.018420 0.026135 0.010189 0.000000 0.000000 0.000000 0.071336 0.011197 0.000000 0.022295 0.009384 0.000000 0.033098 0.000000 0.000000 0.010688 0.019513 0.000000 0.0 0.000000 0.073464 0.00000 0.006098 0.009841 0.032471 0.00000 0.00000 0.000000 0.087380 0.095887 0.010748 0.031513 0.042013 0.000000 0.010240 0.000000 0.000000 0.012490 0.000000 0.036189 0.000000 0.043581 0.058115 0.000000 0.012467 0.024404 0.00000 0.030433 0.009622 0.010198 0.000000 0.000000 0.047791 0.0 0.000000 0.000000 0.022166 0.071841 0.000000 0.000000 0.024760 0.000000 0.000000 0.017962 0.000000 0.071127 0.000000 0.000000 0.008471 0.000000 0.000000 0.030923 0.000000 0.068510 0.102104 0.099377 0.025394 0.008212 0.022924 0.026901 0.018826 0.104629 0.000000 0.008340 0.081727 0.028454 0.008894 0.000000 0.000000 0.000000 0.023337 0.000000 0.000000 0.006341 0.0 0.012390 0.00000 0.057251 0.020039 0.021364 0.041423 0.016367 0.044084 0.00000 0.000000 0.011563 0.000000 0.069093 0.014300 0.042517 0.025037 0.018967 0.055067 0.011991 0.000000 0.052603 0.000000 0.008807 0.021344 0.000000 0.012564 0.016020 0.010125 0.047826 0.007015 0.017293 0.049417 0.000000 0.000000 0.028933 0.000000 0.000000 0.000000 0.000000 0.052173 0.024856 0.000000 0.006462 0.000000 0.038690 0.000000 0.000000 0.026856 0.006797 0.013194 0.020635 0.007375 0.000000 0.010133 0.054049 0.046178 0.024168 0.059154 0.000000 0.000000 0.000000 0.023340 0.000 0.008878 0.000000 0.042610 0.0 0.005404 0.046464 0.000000 0.059611 0.035284 0.000000 0.000000 0.00000 0.019805 0.000000 0.045503 0.000000 0.024636 0.011676 0.000000 0.007124 0.0 0.011630 0.019110 0.012868 0.0 0.000000 0.044700 0.007383 0.000000 0.000000 0.000000 0.007080 0.000000 0.010078 0.000000 0.000000 0.039149 0.000000 0.023585 0.023393 0.025192 0.025420 0.009363 0.035148 0.022976 0.025581 0.012598 0.000000 0.000000 0.000000 0.009662 0.000000 0.000000 0.010626 0.000000 0.000000 0.000000 0.007403 0.007011 0.053294 0.017565 0.028773 0.027612 0.024228 0.023940 0.018622 0.000000 0.058991 0.023616 0.000000 0.013109 0.000000 0.063573 0.000000 0.000000 0.000000 0.049478 0.007395 0.009352 0.000000 0.000000 0.000000 0.000000 0.066592 0.000000 0.008233 0.000000 0.023080 0.005799 0.017735 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.007305 0.050087 0.011757 0.007626 0.051753 0.043885 0.000000 0.013391 0.084596 0.036708 0.070270 0.000000 0.020743 0.000000 0.006722 0.000000 0.000000 0.000000 0.00000 0.018837 0.019007 0.000000 0.008889 0.007136 0.013336 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027408 0.000000 0.000000 0.000000 0.016722 0.000000 0.000000 0.000000 0.008227 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.005621 0.019207 0.050628 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018181 0.000000 0.010424 0.000000 0.000000 0.025399 0.000000 0.000000 0.024083 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052553 0.014514 0.000000 0.019989 0.000000 0.009463 0.000000 0.034107 0.020140 0.027510 0.000000 0.000000 0.0 0.057606 0.008909 0.010489 0.021366 0.034514 0.000000 0.000000 0.000000 0.032496 0.000000 0.032845 0.018093 0.000000 0.006221 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.032499 0.029314 0.042003 0.014775 0.000000 0.006715 0.010961 0.000000 0.000000 0.025120 0.017874 0.037036 0.000000 0.000000 0.006748 0.000000 0.000000 0.066907 0.000000 0.000000 0.000000 0.000000 0.009358 0.021884 0.000000 0.028454 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023186 0.000000 0.000000 0.021079 0.000000 0.038882 0.000000 0.006625 0.000000 0.000000 0.000000 0.000000 0.010134 0.000000 0.000000 0.000000 0.030212 0.024932 0.008615 0.025911 0.010228 0.000000 0.000000 0.006990 0.000000 0.000000 0.000000 0.000000 0.000000 0.009129 0.020324 0.000000 0.000000 0.011021 0.000000 0.084781 0.041736 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021195 0.018795 0.010748 0.000000 0.000000 0.024402 0.000000 0.000000 0.000000 0.000000 0.008320 0.000000 0.000000 0.000000 0.000000 0.005919 0.0 0.01103 0.000000 0.000000 0.000000 0.000000 0.020340 0.000000 0.009844 0.010812 0.000000 0.000000 0.000000 0.000000 0.021187 0.000000 0.000000 0.000000 0.056464 0.000000 0.105464 0.020986 0.039651 0.000000 0.051381 0.013102 0.000000 0.000000 0.000000 0.031698 0.017887 0.000000 0.000000 0.077026 0.000000 0.011005 0.0 0.067749 0.000000 0.000000 0.000000 0.000000 0.000000 0.009931 0.000000 0.000000 0.039513 0.000000 0.008963 0.000000 0.000000 0.000000 0.000000 0.036475 0.020912 0.100856 0.011106 0.009758 0.000000 0.000000 0.005386 0.000000 0.000000 0.000000 0.000000 0.024900 0.000000 0.000000 0.000000 0.000000 0.000000 0.006853 0.000000 0.009295 0.000000 0.000000 0.009525 0.00000 0.000000 0.026380 0.000000 0.000000 0.020716 0.000000 0.0 0.000000 0.039329 0.000000 0.039135 0.023041 0.017898 0.000000 0.000000 0.000000 0.034370 0.000000 0.000000 0.011678 0.000000 0.000000 0.017080 0.000000 0.014143 0.000000 0.016643 0.000000 0.000000 0.000000 0.021938 0.030127 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.021098 0.000000 0.0 0.000000 0.046615 0.022283 0.025587 0.000000 0.000000 0.010306 0.000000 0.000000 0.000000 0.024701 0.000000 0.000000 0.000000 0.062324 0.00000 0.000000 0.009888 0.011190 0.000000 0.030917 0.000000 0.000000 0.000000 0.000000 0.000000 0.021096 0.057904 0.016261 0.010840 0.00000 0.010347 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011581 0.000000 0.000000 0.000000 0.000000 0.000000 0.036611 0.000000 0.009368 0.009090 0.031428 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009759 0.000000 0.000000 0.000000 0.0 0.000000 0.020908 0.000000 0.000000 0.020225 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.037890 0.028186 0.000000 0.000000 0.030147 0.000000 0.000000 0.000000 0.007498 0.000000 0.000000 0.000000 0.000000 0.042961 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024064 0.000000 0.02203 0.000000 0.087543 0.000000 0.000000 0.000000 0.022991 0.026699 0.000000 0.000000 0.000000 0.010790 0.000000 0.006652 0.000000 0.000000 0.054376 0.000000 0.000000 0.000000 0.011763 0.000000 0.110787 0.000000 0.000000 0.010376 0.000000 0.019359 0.000000 0.000000 0.011921 0.007833 0.000000 0.000000 0.018548 0.046847 0.026906 0.000000 0.006712 0.000000 0.000000 0.017462 0.000000 0.000000 0.000000 0.010294 0.009886 0.00000 0.000000 0.021178 0.009427 0.056262 0.000000 0.000000 0.000000 0.000000 0.000000 0.076084 0.012196 0.011853 0.025845 0.000000 0.000000 0.000000 0.000000 0.015293 0.000000 0.012752 0.009346 0.000000 0.010144 0.098331 0.000000 0.010624 0.000000 0.0 0.091220 0.000000 0.000000 0.051072 0.064485 0.000000 0.000000 0.000000 0.032515 0.000000 0.000000 0.012718 0.009396 0.008181 0.00000 0.009009 0.000000 0.061257 0.000000 0.000000 0.012055 0.000000 0.011068 0.000000 0.000000 0.000000 0.023298 0.000000 0.029584 0.019430 0.000000 0.009416 0.00000 0.046006 0.017195 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018000 0.000000 0.008544 0.000000 0.0000 0.024834 0.000000 0.024834 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013331 0.000000 0.019793 0.000000 0.000000 0.015669 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.021171 0.018797 0.000000 0.000000 0.000000 0.000000 0.000000 0.028693 0.013419 0.000000 0.000000 0.000000 0.0 0.000000 0.013651 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.013131 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.010873 0.019057 0.000000 0.0 0.008677 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.007580 0.000000 0.065501 0.011265 0.024794 0.000000 0.000000 0.000000 0.000000 0.012154 0.013605 0.000000 0.0 0.033907 0.0 0.000000 0.000000 0.000000 0.000000 0.015987 0.000000 0.000000 0.000000 0.000000 0.013317 0.005785 0.015227 0.009807 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.023479 0.032377 0.061348 0.000000 0.024901 0.000000 0.005698 0.000000 0.000000 0.012814 0.021726 0.000000 0.044124 0.000000 0.000000 0.027874 0.007335 0.00000 0.000000 0.028068 0.000000 0.000000 0.006681 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.006352 0.000000 0.000000 0.000000 0.000000 0.000000 0.013420 0.000000 0.000000 0.000000 0.000000 0.063070 0.000000 0.0 0.009285 0.00000 0.000000 0.000000 0.0 0.000000 0.000000 0.035902 0.006475 0.000000 0.0 0.024687 0.000000 0.000000 0.000000 0.0 0.000000 0.018585 0.008380 0.000000 0.011455 0.020642 0.000000 0.024689 0.013105 0.000000 0.000000 0.000000 0.011967 0.000000 0.0 0.000000 0.000000 0.000000 0.012413 0.029506 0.000000 0.000000 0.000000 0.009613 0.007880 0.000000 0.000000 0.000000 0.025953 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043822 0.000000 0.000000 0.000000 0.00847 0.000000 0.000000 0.000000 0.032377 0.0 0.000000 0.000000 0.021758 0.000000 0.053364 0.0 0.00000 0.0 0.000000 0.009600 0.000000 0.000000 0.039364 0.000000 0.000000 0.000000 0.032377 0.045101 0.032377 0.00000 0.000000 0.036697 0.027582 0.039026 0.000000 0.019120 0.000000 0.000000 0.000000 0.000000 0.000000 0.022468 0.000000 0.047574 0.011834 0.000000 0.000000 0.011574 0.066669 0.000000 0.029681 0.000000 0.011662 0.000000 0.013905 0.021017 0.000000 0.0 0.008981 0.053441 0.009030 0.0 0.010864 0.000000 0.000000 0.000000 0.000000 0.009478 0.000000 0.000000 0.000000 0.014886 0.000000 0.000000 0.000000 0.019676 0.000000 0.009826 0.035542 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016912 0.024253 0.000000 0.027943 0.00000 0.0 0.000000 0.04772 0.000000 0.024551 0.000000 0.000000 0.000000 0.008052 0.011258 0.024002 0.000000 0.012946 0.000000 0.000000 0.000000 0.000000 0.017118 0.000000 0.000000 0.000000 0.024890 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025423 0.000000 0.006987 0.029899 0.000000 0.036739 0.000000 0.051517 0.000000 0.013651 0.000000 0.067722 0.000000 0.033654 0.000000 0.017107 0.032509 0.022410 0.013787 0.000000 0.028803 0.000000 0.063048 0.066852 0.0 0.000000 0.000000 0.0 0.02277 0.027996 0.000000 0.012660 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032377 0.010599 0.0 0.000000 0.000000 0.000000 0.065662 0.029246 0.019213 0.000000 0.000000 0.000000 0.000000 0.011326 0.0 0.0 0.000000 0.000000 0.000000 0.027674 0.000000 0.013062 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00896 0.031715 0.000000 0.000000 0.000000 0.023084 0.038207 0.0 0.030427 0.00000 0.0 0.000000 0.000000 0.000000 0.032377 0.000000 0.008650 0.024823 0.000000 0.0 0.000000 0.011982 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020535 0.000000 0.000000 0.000000 0.000000 0.00000 0.028165 0.007922 0.000000 0.000000 0.021760 0.000000 0.011988 0.000000 0.000000 0.000000 0.030657 0.0 0.000000 0.030788 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.010912 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.00000 0.0 0.000000 0.000000 0.000000 0.037307 0.000000 0.000000 0.042583 0.000000 0.000000 0.012673 0.023336 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.011486 0.000000 0.057686 0.000000 0.025430 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.024083 0.048449 0.000000 0.010899 0.000000 0.018186 0.0 0.0 0.000000 0.000000 0.023185 0.029526 0.010074 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.028655 0.000000 0.049151 0.032377 0.000000 0.032377 0.024861 0.000000 0.0 0.000000 0.013461 0.0 0.028901 0.000000 0.012927 0.000000 0.000000 0.000000 0.010913 0.035316 0.011762 0.000000 0.000000 0.010591 0.000000 0.00000 0.00000 0.0 0.050533 0.000000 0.012176 0.047714 0.00000 0.000000 0.000000 0.011288 0.000000 0.000000 0.000000 0.052323 0.0 0.000000 0.000000 0.0 0.000000 0.030966 0.000000 0.000000 0.023345 0.010567 0.000000 0.000000 0.000000 0.000000 0.055825 0.024129 0.013315 0.000000 0.0000 0.009608 0.000000 0.036481 0.000000 0.0 0.000000 0.011615 0.000000 0.011245 0.000000 0.058393 0.000000 0.024976 0.000000 0.000000 0.000000 0.000000 0.023303 0.000000 0.000000 0.010073 0.012616 0.000000 0.000000 0.008002 0.049495 0.0 0.034910 0.000000 0.000000 0.000000 0.026227 0.031771 0.000000 0.000000 0.016258 0.000000 0.000000 0.020367 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029175 0.000000 0.0 0.014378 0.042069 0.032377 0.026430 0.000000 0.058778 0.000000 0.025254 0.000000 0.027207 0.000000 0.000000 0.010428 0.0 0.000000 0.000000 0.000000 0.007861 0.000000 0.000000 0.00000 0.000000 0.012847 0.000000 0.000000 0.00000 0.027030 0.042149 0.031429 0.000000 0.000000 0.000000 0.000000 0.023517 0.000000 0.000000 0.010919 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.009895 0.009025 0.000000 0.0 0.000000 0.0 0.014504 0.000000 0.000000 0.008117 0.049094 0.035619 0.000000 0.000000 0.062734 0.020939 0.029838 0.000000 0.011598 0.014217 0.000000 0.011661 0.000000 0.043783 0.008354 0.000000 0.000000 0.019824 0.0 0.000000 0.00000 0.000000 0.000000 0.020693 0.000000 0.000000 0.033874 0.000000 0.009336 0.000000 0.000000 0.034251 0.000000 0.000000 0.027790 0.059013 0.040355 0.050402 0.042987 0.013724 0.028960 0.000000 0.000000 0.000000 0.008967 0.000000 0.000000 0.000000 0.027952 0.000000 0.011008 0.000000 0.0 0.0 0.048762 0.068113 0.013545 0.000000 0.000000 0.007910 0.011311 0.026456 0.000000 0.054546 0.000000 0.000000 0.000000 0.063708 0.013545 0.000000 0.009159 0.000000 0.000000 0.013551 0.052145 0.026069 0.000000 0.015963 0.000000 0.000000 0.000000 0.047489 0.000000 0.000000 0.0 0.052547 0.017456 0.017875 0.000000 0.013289 0.000000 0.000000 0.0 0.000000 0.042624 0.011924 0.032377 0.000000 0.000000 0.036372 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013669 0.070615 0.000000 0.000000 0.010962 0.000000 0.000000 0.062393 0.019651 0.008569 0.000000 0.000000 0.000000 0.009385 0.029526 0.011321 0.000000 0.033922 0.040642 0.014667 0.000000 0.027582 0.000000 0.064997 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.025256 0.020795 0.012107 0.086226 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.027407 0.000000 0.000000 0.0 0.027452 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009745 0.000000 0.000000 0.000000 0.011981 0.010822 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.008306 0.000000 0.0 0.000000 0.054521 0.037068 0.015027 0.000000 0.009912 0.068507 0.000000 0.000000 0.000000 0.000000 0.000000 0.009707 0.000000 0.018902 0.000000 0.000000 0.000000 0.000000 0.038564 0.022629 0.049638 0.022477 0.000000 0.037949 0.022152 0.000000 0.000000 0.000000 0.000000 0.011562 0.022425 0.030637 0.000000 0.000000 0.000000 0.000000 0.021160 0.007825 0.000000 0.031068 0.000000 0.014728 0.034553 0.000000 0.006608 0.000000 0.000000 0.000000 0.014891 0.000000 0.000000 0.000000 0.006583 0.000000 0.000000 0.000000 0.000000 0.000000 0.008533 0.010408 0.011254 0.009455 0.008818 0.007420 0.008934 0.025527 0.028324 0.000000 0.015168 0.010436 0.000000 0.000000 0.000000 0.000000 0.008884 0.040911 0.000000 0.000000 0.000000 0.011651 0.000000 0.000000 0.009001 0.000000 0.000000 0.000000 0.000000 0.000000 0.009808 0.000000 0.000000 0.000000 0.010921 0.009222 0.013308 0.028716 0.000000 0.039443 0.000000 0.000000 0.000000 0.016132 0.054466 0.000000 0.008654 0.000000 0.036541 0.000000 0.000000 0.004278 0.037805 0.010006 0.000000 0.000000 0.000000 0.026078 0.012096 0.000000 0.012346 0.000000 0.022216 0.00000 0.000000 0.000000 0.0 0.047901 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.011919 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.008778 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.032406 0.031968 0.000000 0.030276 0.048336 0.017619 0.030281 0.026288 0.010064 0.017640 0.046362 0.000000 0.015843 0.038147 0.000000 0.000000 0.010926 0.041094 0.000000 0.000000 0.000000 0.008265 0.000000 0.000000 0.009261 0.019102 0.012647 0.000000 0.016641 0.000000 0.000000 0.042194 0.048900 0.000000 0.000000 0.000000 0.000000 0.008060 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026432 0.0 0.028878 0.000000 0.016974 0.000000 0.000000 0.019581 0.000000 0.000000 0.000000 0.007482 0.039982 0.000000 0.024349 0.000000 0.000000 0.000000 0.009068 0.0 0.000000 0.012704 0.000000 0.000000 0.000000 0.008714 0.009955 0.000000 0.007808 0.0 0.0 0.000000 0.029596 0.000000 0.000000 0.0 0.000000 0.000000 0.017657 0.000000 0.019111 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.044417 0.0 0.000000 0.000000 0.000000 0.022737 0.007379 0.000000 0.000000 0.000000 0.0 0.000000 0.082702 0.000000 0.032383 0.000000 0.008302 0.000000 0.000000 0.035667 0.000000 0.008638 0.000000 0.018038 0.000000 0.000000 0.090129 0.000000 0.046287 0.000000 0.000000 0.008815 0.0 0.008815 0.000000 0.000000 0.030817 0.0 0.000000 0.030677 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040219 0.00000 0.008303 0.015556 0.000000 0.000000 0.007952 0.000000 0.025762 0.000000 0.022626 0.000000 0.000000 0.026803 0.000000 0.050488 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.026033 0.000000 0.000000 0.000000 0.000000 0.017309 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035699 0.048715 0.025691 0.000000 0.000000 0.000000 0.000000 0.000000 0.018257 0.000000 0.006404 0.012282 0.073422 0.061108 0.000000 0.000000 0.016702 0.00000 0.021151 0.000000 0.000000 0.057286 0.000000 0.000000 0.016534 0.000000 0.023844 0.0 0.000000 0.032094 0.0 0.000000 0.000000 0.000000 0.016201 0.034960 0.000000 0.000000 0.000000 0.0 0.016915 0.032858 0.000000 0.021693 0.018475 0.038986 0.000000 0.000000 0.000000 0.023733 0.000000 0.000000 0.000000 0.022280 0.000000 0.019168 0.039410 0.014334 0.000000 0.000000 0.017072 0.000000 0.000000 0.000000 0.000000 0.008963 0.018486 0.000000 0.024242 0.103061 0.000000 0.009520 0.0 0.057295 0.000000 0.000000 0.000000 0.000000 0.038452 0.000000 0.000000 0.000000 0.047064 0.000000 0.000000 0.000000 0.000000 0.034209 0.000000 0.000000 0.000000 0.014694 0.000000 0.000000 0.000000 0.000000 0.000000 0.018561 0.000000 0.000000 0.010515 0.000000 0.036394 0.012641 0.000000 0.028146 0.000000 0.078391 0.036880 0.000000 0.032722 0.000000 0.032722 0.020675 0.017614 0.000000 0.010970 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.00000 0.000000 0.029928 0.035986 0.063476 0.0 0.000000 0.000000 0.027684 0.000000 0.000000 0.000000 0.0 0.000000 0.044214 0.000000 0.000000 0.000000 0.000000 0.000000 0.011242 0.000000 0.000000 0.000000 0.021610 0.000000 0.037374 0.000000 0.008593 0.000000 0.000000 0.022171 0.026216 0.000000 0.037581 0.000000 0.021191 0.000000 0.000000 0.026260 0.044417 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015698 0.000000 0.013935 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.021669 0.049830 0.000000 0.008981 0.000000 0.000000 0.000000 0.020697 0.000000 0.000000 0.000000 0.000000 0.010210 0.033230 0.000000 0.034518 0.000000 0.000000 0.036841 0.016793 0.028215 0.030437 0.000000 0.032197 0.000000 0.000000 0.025852 0.000000 0.000000 0.000000 0.000000 0.024741 0.022780 0.000000 0.000000 0.000000 0.000000 0.007284 0.020888 0.000000 0.000000 0.010320 0.042409 0.048657 0.018900 0.093342 0.018939 0.038395 0.000000 0.000000 0.015219 0.026733 0.028936 0.000000 0.000000 0.000000 0.000000 0.000000 0.013301 0.024885 0.000000 0.009468 0.000000 0.053231 0.018497 0.000000 0.000000 0.009935 0.000000 0.0 0.000000 0.016936 0.008958 0.022502 0.000000 0.011047 0.000000 0.069352 0.000000 0.036915 0.000000 0.000000 0.020447 0.00000 0.000000 0.035877 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035151 0.000000 0.000000 0.021832 0.000000 0.009583 0.008866 0.026031 0.000000 0.000000 0.000000 0.018987 0.018356 0.011943 0.000000 0.000000 0.014469 0.017661 0.010516 0.000000 0.000000 0.081833 0.000000 0.046420 0.000000 0.012405 0.000000 0.010789 0.087771 0.013144 0.045953 0.010264 0.000000 0.000000 0.000000 0.041928 0.000000 0.000000 0.026180 0.000000 0.000000 0.024922 0.000000 0.000000 0.000000 0.088385 0.023076 0.000000 0.000000 0.044753 0.000000 0.010737 0.000000 0.000000 0.000000 0.020623 0.039915 0.027871 0.000000 0.009651 0.000000 0.007260 0.000000 0.000000 0.000000 0.020185 0.0 0.021814 0.008817 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.027498 0.011530 0.000000 0.000000 0.000000 0.000000 0.033366 0.010090 0.037754 0.000000 0.000000 0.034124 0.000000 0.000000 0.018136 0.000000 0.000000 0.000000 0.030725 0.000000 0.018991 0.000000 0.000000 0.000000 0.000000 0.035815 0.017123 0.00907 0.000000 0.000000 0.008686 0.000000 0.059602 0.0 0.000000 0.000000 0.014604 0.000000 0.023362 0.000000 0.008219 0.007479 0.000000 0.013842 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018511 0.054905 0.000000 0.000000 0.000000 0.008916 0.026037 0.000000 0.008978 0.000000 0.000000 0.021226 0.043576 0.000000 0.0 0.022050 0.015791 0.011645 0.000000 0.000000 0.000000 0.000000 0.000000 0.022846 0.000000 0.000000 0.000000 0.025328 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.039409 0.036145 0.000000 0.000000 0.000000 0.000000 0.014369 0.000000 0.000000 0.000000 0.000000 0.075516 0.007755 0.000000 0.023937 0.013170 0.021805 0.014163 0.000000 0.032336 0.000000 0.0 0.010428 0.000000 0.000000 0.0 0.011768 0.040024 0.021189 0.020086 0.034389 0.000000 0.020926 0.000000 0.009263 0.025953 0.000000 0.000000 0.000000 0.000000 0.038309 0.000000 0.010430 0.035848 0.000000 0.012582 0.000000 0.012924 0.013533 0.000000 0.000000 0.010882 0.042241 0.000000 0.012511 0.008238 0.020783 0.000000 0.080150 0.033547 0.000000 0.012904 0.009213 0.024847 0.000000 0.031845 0.011518 0.000000 0.054696 0.010586 0.022269 0.025018 0.010652 0.043092 0.000000 0.010445 0.000000 0.000000 0.000000 0.000000 0.042714 0.008177 0.000000 0.000000 0.013545 0.012482 0.143794 0.009409 0.040906 0.000000 0.000000 0.038779 0.000000 0.000000 0.021619 0.011535 0.000000 0.000000 0.051482 0.000000 0.000000 0.073778 0.006715 0.010567 0.000000 0.037891 0.000000 0.010012 0.012634 0.014524 0.000000 0.015129 0.000000 0.014276 0.000000 0.000000 0.000000 0.000000 0.016523 0.000000 0.030923 0.000000 0.000000 0.009949 0.000000 0.043294 0.047235 0.035358 0.033744 0.009402 0.009215 0.015585 0.012947 0.000000 0.041967 0.000000 0.012907 0.000000 0.000000 0.007372 0.000000 0.011462 0.071456 0.011982 0.000000 0.000000 0.012782 0.000000 0.008531 0.012610 0.009838 0.000000 0.000000 0.008925 0.022879 0.000000 0.026547 0.000000 0.000000 0.038292 0.022227 0.0 0.000000 0.023380 0.025765 0.0 0.037807 0.015122 0.051002 0.040308 0.0 0.030996 0.000000 0.030876 0.000000 0.000000 0.000000 0.000000 0.033047 0.025616 0.041757 0.020731 0.026893 0.054066 0.013441 0.000000 0.000000 0.000000 0.009965 0.0 0.019819 0.012557 0.014302 0.017643 0.000000 0.047542 0.000000 0.000000 0.015187 0.013834 0.030023 0.000000 0.084301 0.000000 0.000000 0.040710 0.033174 0.000000 0.000000 0.000000 0.011439 0.0 0.000000 0.019853 0.008314 0.029881 0.011465 0.000000 0.055010 0.040454 0.017971 0.042563 0.012914 0.000000 0.000000 0.024604 0.000000 0.000000 0.0 0.011535 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.009307 0.013466 0.000000 0.065589 0.011964 0.011849 0.074783 0.028161 0.009051 0.006754 0.000000 0.013941 0.012403 0.000000 0.000000 0.015188 0.000000 0.007041 0.013702 0.000000 0.000000 0.062356 0.000000 0.012346 0.082828 0.000000 0.043063 0.000000 0.00000 0.031712 0.032411 0.000000 0.000000 0.046623 0.059691 0.000000 0.000000 0.009353 0.014084 0.029368 0.000000 0.023021 0.000000 0.020567 0.038168 0.000000 0.020042 0.000000 0.010434 0.025990 0.066003 0.039375 0.010679 0.079653 0.093945 0.009830 0.032302 0.037725 0.028211 0.013625 0.034591 0.024919 0.035738 0.022677 0.000000 0.000000 0.000000 0.000000 0.014458 0.027521 0.000000 0.039746 0.000000 0.049782 0.009488 0.000000 0.000000 0.009047 0.010992 0.010990 0.022343 0.000000 0.013243 0.000000 0.023359 0.007972 0.000000 0.035961 0.007717 0.025609 0.000000 0.010940 0.000000 0.000000 0.011717 0.006781 0.000000 0.009856 0.041851 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.011399 0.068161 0.035417 0.091290 0.000000 0.000000 0.000000 0.0 0.054401 0.000000 0.000000 0.023522 0.013008 0.000000 0.010172 0.000000 0.000000 0.030786 0.013988 0.000000 0.013485 0.000000 0.027113 0.018285 0.000000 0.044312 0.000000 0.048525 0.020713 0.022819 0.000000 0.021769 0.000000 0.071888 0.039317 0.000000 0.000000 0.010154 0.000000 0.013004 0.025170 0.000000 0.011193 0.000000 0.000000 0.0 0.0 0.000000 0.039298 0.000000 0.00000 0.087475 0.032269 0.010009 0.012571 0.073148 0.000000 0.000000 0.049040 0.0 0.032818 0.017989 0.000000 0.000000 0.000000 0.036230 0.000000 0.000000 0.009371 0.036196 0.007405 0.022259 0.010416 0.000000 0.015089 0.030921 0.000000 0.000000 0.000000 0.063036 0.011920 0.000000 0.000000 0.023654 0.000000 0.000000 0.010641 0.047873 0.023169 0.023585 0.000000 0.009396 0.013714 0.030038 0.010598 0.046124 0.009534 0.041715 0.000000 0.037718 0.052881 0.000000 0.009673 0.000000 0.011269 0.000000 0.014281 0.013976 0.000000 0.057810 0.0 0.000000 0.018354 0.165358 0.010485 0.0 0.016349 0.000000 0.026029 0.000000 0.000000 0.030073 0.000000 0.030493 0.028039 0.000000 0.029513 0.000000 0.009949 0.034613 0.067078 0.000000 0.022284 0.068410 0.022632 0.000000 0.032527 0.000000 0.021655 0.032205 0.000000 0.000000 0.009366 0.023796 0.000000 0.031148 0.000000 0.021372 0.000000 0.096426 0.020517 0.026015 0.012265 0.089929 0.000000 0.0 0.0 0.0 0.033640 0.000000 0.000000 0.005715 0.008097 0.00952 0.000000 0.000000 0.012706 0.011105 0.012237 0.032678 0.054564 0.016519 0.093289 0.033500 0.096897 0.011305 0.011244 0.055832 0.000000 0.013150 0.000000 0.007940 0.008127 0.009810 0.000000 0.042085 0.000000 0.007107 0.010953 0.035740 0.0 0.000000 0.000000 0.036936 0.008488 0.000000 0.000000 0.0000 0.000000 0.000000 0.065175 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.021639 0.008559 0.0 0.000000 0.000000 0.043727 0.004624 0.000000 0.000000 0.010299 0.040962 0.042078 0.059230 0.009233 0.083628 0.000000 0.023723 0.017065 0.007814 0.012612 0.020550 0.028982 0.027123 0.038828 0.031900 0.000000 0.017360 0.011806 0.009110 0.009010 0.000000 0.012713 0.045098 0.000000 0.000000 0.110934 0.0 0.000000 0.000000 0.063919 0.045126 0.021932 0.000000 0.025185 0.052176 0.012254 0.086771 0.014530 0.000000 0.006868 0.025025 0.063375 0.008202 0.000000 0.01192 0.022411 0.011810 0.053224 0.000000 0.019001 0.000000 0.000000 0.031678 0.045704 0.000000 0.000000 0.000000 0.000000 0.012373 0.023192 0.000000 0.015081 0.021369 0.000000 0.013084 0.027581 0.008345 0.031963 0.010943 0.000000 0.028318 0.000000 0.021286 0.000000 0.046302 0.011980 0.000000 0.000000 0.011652 0.000000 0.022813 0.011319 0.066848 0.000000 0.009127 0.008796 0.009224 0.028140 0.000000 0.000000 0.000000 0.027189 0.022869 0.009192 0.017608 0.050729 0.029813 0.009303 0.000000 0.000000 0.000000 0.033821 0.000000 0.008179 0.009150 0.012920 0.000000 0.000000 0.027779 0.036437 0.000000 0.007890 0.017284 0.000000 0.009237 0.022247 0.00000 0.000000 0.092996 0.108682 0.000000 0.000000 0.0 0.008541 0.000000 0.0 0.053569 0.000000 0.009987 0.000000 0.000000 0.000000 0.016689 0.000000 0.035909 0.026871 0.035248 0.000000 0.010158 0.000000 0.011116 0.010474 0.025633 0.097092 0.012390 0.046839 0.000000 0.026953 0.000000 0.007058 0.000000 0.000000 0.000000 0.042161 0.000000 0.008319 0.000000 0.000000 0.031187 0.032717 0.000000 0.045276 0.000000 0.024828 0.011052 0.034536 0.000000 0.000000 0.012022 0.000000 0.000000 0.038199 0.032161 0.000000 0.023943 0.013915 0.000000 0.025925 0.033678 0.026339 0.028318 0.010728 0.000000 0.006333 0.000000 0.065698 0.008756 0.039064 0.009177 0.000000 0.011268 0.000000 0.030320 0.009740 0.000000 0.047489 0.000000 0.043935 0.047641 0.000000 0.010080 0.092911 0.000000 0.011154 0.055934 0.000000 0.040425 0.000000 0.013753 0.049777 0.072678 0.000000 0.021645 0.040827 0.060249 0.000000 0.000000 0.000000 0.045243 0.009494 0.0 0.000000 0.008079 0.000000 0.000000 0.021810 0.026481 0.000000 0.0 0.000000 0.044485 0.000000 0.054726 0.048183 0.000000 0.000000 0.000000 0.000000 0.007496 0.045709 0.0 0.000000 0.0 0.0 0.000000 0.023619 0.000000 0.020826 0.000000 0.030320 0.000000 0.000000 0.000000 0.010573 0.000000 0.000000 0.043242 0.052327 0.022607 0.000000 0.000000 0.000000 0.000000 0.0 0.011908 0.012051 0.014225 0.037416 0.000000 0.000000 0.011615 0.074367 0.000000 0.034795 0.061505 0.000000 0.065716 0.013657 0.000000 0.000000 0.044570 0.000000 0.023491 0.012745 0.000000 0.010446 0.012581 0.010960 0.018817 0.000000 0.000000 0.009296 0.000000 0.040994 0.000000 0.000000 0.012612 0.030330 0.102220 0.000000 0.000000 0.010779 0.017238 0.026624 0.000000 0.021931 0.011478 0.043158 0.000000 0.011075 0.084503 0.045917 0.021794 0.020644 0.000000 0.010183 0.000000 0.027343 0.000000 0.010726 0.027894 0.000000 0.006062 0.000000 0.000000 0.017288 0.015812 0.017871 0.031709 0.017432 0.000000 0.026954 0.000000 0.000000 0.000000 0.009017 0.000000 0.000000 0.050476 0.000000 0.010150 0.019872 0.00927 0.000000 0.000000 0.043653 0.008101 0.083377 0.000000 0.000000 0.000000 0.010957 0.000000 0.038294 0.045302 0.000000 0.000000 0.0 0.0 0.000000 0.042750 0.011810 0.014030 0.013255 0.034646 0.033406 0.0 0.032950 0.080355 0.000000 0.013880 0.018617 0.000000 0.011430 0.025342 0.000000 0.049202 0.042380 0.024957 0.000000 0.039250 0.029598 0.019250 0.034113 0.000000 0.000000 0.038784 0.008814 0.000000 0.022353 0.089510 0.010954 0.083540 0.031642 0.021194 0.000000 0.067911 0.036736 0.000000 0.014962 0.055819 0.000000 0.026647 0.022195 0.040521 0.000000 0.000000 0.000000 0.121338 0.000000 0.00000 0.030647 0.000000 0.011193 0.011064 0.000000 0.000000 0.000000 0.008746 0.028764 0.010128 0.045285 0.000000 0.000000 0.073773 0.019662 0.006493 0.030820 0.009147 0.000000 0.02406 0.000000 0.033694 0.013278 0.008448 0.010068 0.030748 0.027476 0.000000 0.009288 0.000000 0.016501 0.008427 0.000000 0.013298 0.045407 0.039156 0.016832 0.008746 0.000000 0.034868 0.000000 0.012676 0.000000 0.000000 0.013083 0.010033 0.009819 0.00000 0.012131 0.010816 0.000000 0.000000 0.000000 0.038370 0.000000 0.000000 0.010043 0.054794 0.000000 0.000000 0.045613 0.0 0.000000 0.030786 0.000000 0.014582 0.000000 0.008151 0.012839 0.023172 0.013659 0.013844 0.000000 0.000000 0.000000 0.025795 0.016236 0.040872 0.024013 0.079959 0.009698 0.012616 0.000000 0.045886 0.059137 0.044162 0.068589 0.000000 0.013454 0.009188 0.000000 0.044072 0.024757 0.000000 0.000000 0.000000 0.000000 0.010414 0.025514 0.013419 0.008019 0.0 0.000000 0.008152 0.000000 0.012750 0.011000 0.000000 0.021456 0.000000 0.026395 0.010112 0.030442 0.000000 0.008591 0.046284 0.012984 0.000000 0.046491 0.089746 0.012254 0.0 0.049796 0.000000 0.000000 0.010227 0.013452 0.037275 0.000000 0.009970 0.045044 0.000000 0.000000 0.000000 0.036188 0.029862 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.074514 0.000000 0.000000 0.000000 0.022032 0.000000 0.012933 0.015955 0.000000 0.016288 0.00701 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014192 0.040582 0.043275 0.015755 0.012875 0.000000 0.0 0.038175 0.009141 0.000000 0.078041 0.012704 0.009532 0.000000 0.007673 0.0 0.0 0.017159 0.008931 0.008822 0.014185 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.028018 0.000000 0.000000 0.000000 0.033399 0.032332 0.000000 0.000000 0.000000 0.041680 0.021608 0.019190 0.020672 0.008769 0.010021 0.000000 0.000000 0.008497 0.000000 0.000000 0.000000 0.007968 0.007059 0.000000 0.000000 0.006346 0.0 0.060398 0.007064 0.000000 0.051892 0.029489 0.067857 0.000000 0.020325 0.063697 0.036960 0.014213 0.023288 0.000000 0.000000 0.041256 0.000000 0.022482 0.000000 0.040381 0.011744 0.006803 0.000000 0.013691 0.043288 0.009898 0.000000 0.000000 0.024980 0.000000 0.042760 0.025346 0.061140 0.000000 0.010934 0.053293 0.011979 0.000000 0.028414 0.019197 0.000000 0.012644 0.000000 0.000000 0.011002 0.0 0.108812 0.011169 0.000000 0.021063 0.026390 0.000000 0.107249 0.038593 0.035369 0.000000 0.000000 0.032710 0.000000 0.026344 0.012347 0.000000 0.012698 0.037933 0.058247 0.000000 0.037898 0.000000 0.000000 0.000000 0.032062 0.000000 0.000000 0.037342 0.000000 0.038268 0.053643 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045276 0.000000 0.017459 0.000000 0.021779 0.054066 0.054066 0.000000 0.000000 0.009849 0.000000 0.000000 0.000000 0.000000 0.076463 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.070798 0.062477 0.000000 0.000000 0.009376 0.022815 0.008950 0.007600 0.000000 0.000000 0.000000 0.047033 0.000000 0.012454 0.008473 0.011721 0.019807 0.078979 0.000000 0.000000 0.012133 0.000000 0.000000 0.009800 0.007982 0.029240 0.033541 0.106097 0.000000 0.000000 0.000000 0.000000 0.016279 0.000000 0.086438 0.009355 0.060386 0.000000 0.000000 0.000000 0.000000 0.000000 0.011773 0.023630 0.009534 0.019336 0.000000 0.009628 0.014609 0.000000 0.061031 0.027374 0.011559 0.008988 0.008971 0.033401 0.000000 0.000000 0.013723 0.000000 0.038811 0.000000 0.040811 0.010529 0.009726 0.019750 0.012597 0.000000 0.000000 0.000000 0.008668 0.022687 0.011042 0.009668 0.009941 0.000000 0.000000 0.009416 0.032041 0.007907 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015924 0.073837 0.021439 0.010192 0.000000 0.000000 0.070923 0.010471 0.000000 0.025480 0.010276 0.021468 0.046187 0.010850 0.000000 0.022753 0.008761 0.000000 0.032975 0.00000 0.011125 0.000000 0.010724 0.000000 0.009541 0.058022 0.007751 0.000000 0.000000 0.000000 0.020693 0.000000 0.000000 0.010507 0.026611 0.020870 0.000000 0.011901 0.067826 0.068384 0.000000 0.010740 0.032861 0.046786 0.011222 0.078629 0.011552 0.000000 0.014399 0.047146 0.069806 0.000000 0.009026 0.019419 0.045876 0.008913 0.029943 0.009925 0.040817 0.000000 0.061505 0.0 0.022968 0.000000 0.047782 0.029939 0.012418 0.043804 0.030667 0.079452 0.016519 0.000000 0.029855 0.000000 0.018762 0.011832 0.000000 0.011478 0.011047 0.012331 0.046126 0.014414 0.029407 0.012300 0.015327 0.012061 0.016522 0.000000 0.000000 0.069989 0.014377 0.000000 0.028132 0.025221 0.000000 0.014572 0.0 0.000000 0.0 0.010737 0.051262 0.022163 0.008578 0.014405 0.000000 0.000000 0.030873 0.000000 0.014492 0.000000 0.000000 0.00000 0.0 0.000000 0.000000 0.066698 0.015109 0.031168 0.012749 0.000000 0.000000 0.000000 0.0 0.013153 0.072101 0.000000 0.000000 0.01770 0.015048 0.000000 0.030706 0.009487 0.014920 0.006987 0.008669 0.022221 0.000000 0.000000 0.000000 0.000000 0.023161 0.000000 0.009158 0.008830 0.022960 0.000000 0.054066 0.000000 0.026022 0.045774 0.014235 0.021646 0.000000 0.000000 0.007269 0.000000 0.043101 0.000000 0.060502 0.00000 0.000000 0.000000 0.000000 0.008629 0.025973 0.000000 0.012985 0.017276 0.009090 0.016561 0.031611 0.023200 0.000000 0.000000 0.008776 0.067204 0.024289 0.067374 0.000000 0.044977 0.000000 0.0 0.041390 0.014800 0.030395 0.000000 0.022681 0.008982 0.007368 0.067307 0.022478 0.020957 0.039776 0.000000 0.010612 0.014303 0.008022 0.000000 0.007985 0.000000 0.011120 0.010585 0.035091 0.014896 0.000000 0.051442 0.019366 0.034891 0.000000 0.0 0.016086 0.061931 0.014385 0.000000 0.000000 0.065001 0.000000 0.028529 0.040204 0.043279 0.008608 0.009781 0.029536 0.000000 0.000000 0.008419 0.008073 0.000000 0.000000 0.000000 0.045514 0.020172 0.000000 0.011460 0.047366 0.013341 0.0 0.053875 0.000000 0.061260 0.0 0.040246 0.000000 0.016692 0.006411 0.000000 0.040445 0.000000 0.014284 0.000000 0.017873 0.000000 0.040170 0.024121 0.000000 0.032414 0.032442 0.011752 0.000000 0.037336 0.068479 0.012861 0.000000 0.031806 0.000000 0.026467 0.000000 0.034890 0.009984 0.000000 0.000000 0.000000 0.010635 0.0 0.000000 0.000000 0.000000 0.033260 0.041773 0.021229 0.023951 0.029253 0.000000 0.000000 0.010256 0.033187 0.000000 0.00862 0.000000 0.011624 0.020955 0.000000 0.024184 0.038191 0.011642 0.000000 0.017678 0.007269 0.000000 0.000000 0.008178 0.000000 0.000000 0.044228 0.029376 0.000000 0.019973 0.092752 0.000000 0.012334 0.031832 0.000000 0.000000 0.020603 0.0000 0.007783 0.000000 0.013717 0.011117 0.000000 0.033710 0.018565 0.020414 0.0 0.000000 0.000000 0.027097 0.000000 0.026962 0.019748 0.000000 0.000000 0.009015 0.0 0.053019 0.000000 0.114031 0.073627 0.010093 0.000000 0.077837 0.029674 0.000000 0.020032 0.022641 0.008099 0.012138 0.000000 0.019855 0.010229 0.030455 0.000000 0.000000 0.000000 0.011693 0.000000 0.000000 0.000000 0.00000 0.000000 0.023777 0.000000 0.000000 0.00000 0.000000 0.012313 0.043066 0.008873 0.000000 0.015586 0.010313 0.000000 0.0 0.010052 0.000000 0.036040 0.009949 0.021342 0.000000 0.058623 0.000000 0.000000 0.022694 0.000000 0.000000 0.020875 0.030782 0.028668 0.000000 0.026219 0.000000 0.015852 0.000000 0.015058 0.000000 0.000000 0.000000 0.012781 0.021578 0.043143 0.000000 0.000000 0.011551 0.007526 0.039992 0.017161 0.027945 0.000000 0.009064 0.000000 0.000000 0.037805 0.055716 0.000000 0.000000 0.000000 0.050936 0.019922 0.000000 0.008241 0.000000 0.011188 0.000000 0.007727 0.009693 0.041542 0.000000 0.000000 0.000000 0.000000 0.064062 0.020757 0.007934 0.029736 0.021247 0.035736 0.011135 0.000000 0.034256 0.009936 0.023124 0.000000 0.024593 0.042879 0.007163 0.000000 0.011555 0.000000 0.000000 0.066481 0.000000 0.000000 0.000000 0.000000 0.047777 0.000000 0.083978 0.016646 0.000000 0.000000 0.033291 0.0 0.010458 0.030823 0.027131 0.019091 0.014939 0.029611 0.000000 0.000000 0.008167 0.000000 0.009773 0.075744 0.037782 0.032883 0.009873 0.000000 0.028554 0.0 0.011797 0.016434 0.000000 0.000000 0.000000 0.042000 0.000000 0.014677 0.011192 0.017913 0.000000 0.025656 0.000000 0.000000 0.013478 0.029973 0.000000 0.000000 0.028714 0.000000 0.000000 0.082562 0.019328 0.026915 0.015301 0.009008 0.014395 0.061040 0.000000 0.000000 0.026864 0.000000 0.017569 0.037169 0.012662 0.008981 0.030606 0.011917 0.009209 0.000000 0.000000 0.067554 0.037621 0.000000 0.091588 0.000000 0.067406 0.010431 0.000000 0.010326 0.0 0.012168 0.027336 0.000000 0.000000 0.000000 0.000000 0.029692 0.042908 0.000000 0.000000 0.056145 0.000000 0.010896 0.000000 0.009762 0.000000 0.025578 0.022888 0.000000 0.021225 0.000000 0.014503 0.000000 0.04035 0.019701 0.029776 0.000000 0.034822 0.020041 0.010826 0.011083 0.048788 0.013824 0.046432 0.000000 0.014648 0.016384 0.038390 0.017410 0.000000 0.000000 0.000000 0.00000 0.010305 0.031043 0.018631 0.050146 0.000000 0.000000 0.000000 0.026731 0.071611 0.105078 0.016162 0.023669 0.032398 0.052465 0.000000 0.009445 0.033055 0.000000 0.037294 0.010591 0.000000 0.000000 0.000000 0.00928 0.000000 0.000000 0.035833 0.014504 0.028317 0.000000 0.000000 0.035511 0.016806 0.011485 0.010507 0.010169 0.009720 0.000000 0.000000 0.009381 0.010446 0.034313 0.000000 0.008419 0.033354 0.007580 0.000000 0.000000 0.068985 0.0 0.031564 0.000000 0.000000 0.031945 0.016143 0.000000 0.000000 0.014089 0.039147 0.010018 0.000000 0.000000 0.000000 0.000000 0.025813 0.000000 0.023501 0.000000 0.026230 0.000000 0.000000 0.000000 0.009436 0.000000 0.010876 0.000000 0.000000 0.000000 0.023859 0.000000 0.000000 0.021509 0.000000 0.006948 0.000000 0.040615 0.040248 0.000000 0.010786 0.000000 0.000000 0.035070 0.000000 0.0 0.042804 0.046300 0.008903 0.016382 0.009570 0.011925 0.000000 0.009506 0.0 0.011593 0.041841 0.000000 0.022906 0.023001 0.000000 0.000000 0.037181 0.011462 0.040192 0.000000 0.000000 0.011724 0.0 0.014258 0.014276 0.040641 0.050415 0.0 0.0 0.000000 0.000000 0.034208 0.000000 0.000000 0.078175 0.025466 0.00000 0.029845 0.014263 0.000000 0.021943 0.023523 0.050701 0.008075 0.045470 0.007876 0.018435 0.038393 0.000000 0.066848 0.015343 0.032076 0.018499 0.000000 0.064380 0.000000 0.000000 0.00000 0.009902 0.034213 0.008752 0.048641 0.041766 0.000000 0.022349 0.000000 0.010369 0.021458 0.012784 0.019831 0.043956 0.011381 0.009687 0.014056 0.000000 0.000000 0.009431 0.000000 0.010462 0.000000 0.034225 0.000000 0.000000 0.000000 0.000000 0.000000 0.023463 0.042057 0.042227 0.000000 0.000000 0.000000 0.000000 0.010548 0.010262 0.000000 0.000000 0.000000 0.012599 0.032539 0.000000 0.0 0.016291 0.026991 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.053738 0.032043 0.000000 0.013399 0.013789 0.055766 0.034165 0.000000 0.028239 0.024424 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.023716 0.000000 0.000000 0.000000 0.000000 0.000000 0.029472 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.028752 0.000000 0.016145 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.026948 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.031754 0.000000 0.000000 0.00000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.029858 0.0 0.00000 0.000000 0.029858 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.029938 0.000000 0.0 0.000000 0.000000 0.030698 0.000000 0.000000 0.000000 0.016977 0.00000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.080498 0.000000 0.021906 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.044924 0.000000 0.000000 0.029397 0.000000 0.000000 0.000000 0.000000 0.029634 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015263 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.029438 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043310 0.000000 0.027982 0.014639 0.000000 0.000000 0.000000 0.061264 0.000000 0.000000 0.000000 0.048991 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016917 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.028610 0.000000 0.000000 0.000000 0.000000 0.011085 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026713 0.000000 0.009692 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010487 0.000000 0.000000 0.000000 0.016700 0.000000 0.026764 0.000000 0.000000 0.014989 0.000000 0.000000 0.000000 0.014108 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.00000 0.0 0.000000 0.000000 0.00000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011411 0.031487 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.039479 0.000000 0.000000 0.000000 0.014567 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.008563 0.000000 0.000000 0.000000 0.000000 0.0 0.010639 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015767 0.000000 0.000000 0.013674 0.000000 0.026664 0.000000 0.009001 0.048585 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023344 0.000000 0.000000 0.011874 0.000000 0.013427 0.023563 0.000000 0.031452 0.024353 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.026811 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.028023 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029747 0.000000 0.000000 0.000000 0.000000 0.030998 0.025666 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013558 0.000000 0.011661 0.000000 0.000000 0.010984 0.000000 0.00000 0.000000 0.031061 0.025813 0.000000 0.000000 0.043883 0.023086 0.000000 0.0 0.000000 0.0 0.033700 0.000000 0.027961 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019443 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.116830 0.026448 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.035859 0.000000 0.00000 0.000000 0.000000 0.013575 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.031158 0.0 0.000000 0.000000 0.000000 0.027481 0.000000 0.047584 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014585 0.000000 0.000000 0.0 0.000000 0.000000 0.010718 0.021585 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.02826 0.00000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013166 0.00000 0.000000 0.000000 0.000000 0.00000 0.00000 0.000000 0.000000 0.000000 0.000000 0.00000 0.037303 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.029091 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.066385 0.000000 0.018751 0.057912 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013881 0.000000 0.054612 0.000000 0.000000 0.000000 0.000000 0.089307 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015689 0.008906 0.00000 0.000000 0.088483 0.000000 0.000000 0.014522 0.016120 0.020513 0.000000 0.000000 0.000000 0.028433 0.019200 0.00000 0.000000 0.000000 0.000000 0.000000 0.013469 0.000000 0.000000 0.000000 0.000000 0.038159 0.010487 0.008663 0.000000 0.055043 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.016145 0.0 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.009623 0.000000 0.000000 0.035140 0.047940 0.086882 0.012392 0.010419 0.000000 0.000000 0.000000 0.000000 0.024637 0.00000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.017575 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.009649 0.000000 0.000000 0.000000 0.024763 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0000 0.000000 0.025691 0.000000 0.022143 0.076303 0.012350 0.000000 0.000000 0.000000 0.010437 0.00000 0.000000 0.012307 0.000000 0.015435 0.020355 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025834 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017841 0.014583 0.000000 0.000000 0.000000 0.022775 0.0000 0.064669 0.000000 0.009610 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.024261 0.000000 0.000000 0.000000 0.043553 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.030960 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.02904 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031452 0.00000 0.000000 0.000000 0.000000 0.025905 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.026332 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.010641 0.000000 0.000000 0.000000 0.000000 0.039613 0.029574 0.052497 0.000000 0.000000 0.000000 0.0 0.000000 0.013745 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015690 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025915 0.000000 0.000000 0.00000 0.024199 0.000000 0.000000 0.000000 0.013680 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032176 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014986 0.000000 0.000000 0.062110 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.014281 0.000000 0.00000 0.063629 0.000000 0.000000 0.000000 0.000000 0.000000 0.029700 0.000000 0.000000 0.000000 0.016343 0.000000 0.031291 0.000000 0.011836 0.000000 0.000000 0.013501 0.000000 0.044732 0.000000 0.057086 0.000000 0.012297 0.011223 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021928 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028189 0.014129 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011162 0.088822 0.028974 0.000000 0.000000 0.000000 0.026599 0.000000 0.00000 0.023756 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028685 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.016239 0.028730 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026255 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027148 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.042868 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.014593 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.072898 0.018091 0.000000 0.098407 0.0 0.033251 0.000000 0.0 0.000000 0.048902 0.00000 0.000000 0.000000 0.000000 0.014787 0.000000 0.030986 0.038330 0.000000 0.000000 0.010336 0.031275 0.014166 0.022298 0.000000 0.010265 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034559 0.000000 0.000000 0.000000 0.00000 0.020844 0.000000 0.000000 0.000000 0.000000 0.000000 0.038119 0.000000 0.000000 0.028356 0.000000 0.025135 0.000000 0.000000 0.014387 0.000000 0.000000 0.000000 0.047232 0.000000 0.000000 0.000000 0.216026 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.036387 0.014722 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024647 0.000000 0.013771 0.000000 0.000000 0.014426 0.000000 0.000000 0.013128 0.000000 0.079467 0.044812 0.000000 0.000000 0.000000 0.000000 0.029101 0.000000 0.0 0.0 0.000000 0.024271 0.052325 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024261 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.012928 0.000000 0.014118 0.026815 0.000000 0.000000 0.000000 0.000000 0.000000 0.028140 0.023662 0.000000 0.000000 0.016477 0.000000 0.000000 0.00000 0.012073 0.000000 0.000000 0.0 0.018077 0.000000 0.000000 0.028859 0.000000 0.000000 0.000000 0.000000 0.021922 0.00000 0.000000 0.000000 0.000000 0.000000 0.032686 0.000000 0.000000 0.030730 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.066990 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.026149 0.000000 0.000000 0.000000 0.000000 0.012889 0.058465 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.026200 0.000000 0.0 0.000000 0.0 0.026322 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.025273 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.025664 0.000000 0.000000 0.000000 0.024307 0.011912 0.016465 0.000000 0.000000 0.020728 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0000 0.033663 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.012973 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013421 0.028119 0.045663 0.000000 0.000000 0.000000 0.015260 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.016403 0.000000 0.0 0.011276 0.000000 0.000000 0.000000 0.024563 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.032796 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.029297 0.000000 0.000000 0.028642 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032186 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.054135 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032099 0.000000 0.000000 0.027788 0.000000 0.027162 0.000000 0.000000 0.000000 0.028671 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.021138 0.044646 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.013625 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022236 0.000000 0.020770 0.000000 0.022201 0.000000 0.000000 0.013056 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035445 0.000000 0.000000 0.000000 0.030106 0.019873 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.010879 0.000000 0.000000 0.000000 0.028157 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031121 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.009599 0.013920 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.017249 0.00000 0.000000 0.014895 0.0 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030412 0.000000 0.013997 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.050219 0.02565 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.048528 0.014929 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.011289 0.060077 0.000000 0.026789 0.052018 0.016398 0.045913 0.014786 0.000000 0.029681 0.000000 0.042774 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.014970 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.013204 0.024074 0.029008 0.000000 0.000000 0.016294 0.030909 0.00000 0.000000 0.026791 0.00000 0.000000 0.032040 0.000000 0.000000 0.000000 0.000000 0.047635 0.000000 0.000000 0.000000 0.000000 0.0 0.025920 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012707 0.000000 0.000000 0.000000 0.012515 0.000000 0.040971 0.000000 0.000000 0.000000 0.011614 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.032888 0.000000 0.0 0.000000 0.000000 0.000000 0.016131 0.013151 0.00000 0.000000 0.012511 0.000000 0.018079 0.000000 0.000000 0.000000 0.023253 0.000000 0.026134 0.000000 0.056440 0.013245 0.000000 0.000000 0.000000 0.029948 0.000000 0.000000 0.013509 0.000000 0.000000 0.000000 0.023915 0.026751 0.018473 0.030349 0.000000 0.00000 0.000000 0.000000 0.074735 0.012017 0.053901 0.017145 0.00000 0.000000 0.000000 0.024835 0.000000 0.000000 0.015189 0.014781 0.000000 0.000000 0.000000 0.000000 0.0 0.017315 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012457 0.013274 0.000000 0.000000 0.030838 0.011471 0.000000 0.039488 0.000000 0.000000 0.047765 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.059082 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.014757 0.021218 0.0 0.0 0.050290 0.023836 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.025572 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.00000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.010474 0.000000 0.000000 0.000000 0.030295 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022833 0.000000 0.000000 0.014660 0.000000 0.000000 0.000000 0.011133 0.000000 0.019631 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.063705 0.033794 0.000000 0.000000 0.000000 0.013166 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.023507 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012937 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.009247 0.000000 0.023219 0.000000 0.024593 0.000000 0.000000 0.000000 0.000000 0.000000 0.014240 0.030235 0.014624 0.012445 0.0 0.000000 0.000000 0.000000 0.024220 0.000000 0.010507 0.000000 0.031345 0.000000 0.019559 0.000000 0.022515 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029142 0.027166 0.000000 0.042970 0.000000 0.013491 0.000000 0.012525 0.000000 0.013232 0.000000 0.000000 0.000000 0.000000 0.020916 0.013050 0.000000 0.000000 0.014491 0.000000 0.062110 0.000000 0.000000 0.013142 0.00000 0.000000 0.025209 0.000000 0.000000 0.033270 0.015330 0.000000 0.000000 0.000000 0.000000 0.000000 0.012295 0.000000 0.000000 0.000000 0.000000 0.014028 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00000 0.000000 0.000000 0.016327 0.000000 0.000000 0.000000 0.0 0.028571 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.029159 0.000000 0.027967 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.042810 0.010768 0.000000 0.000000 0.008786 0.025753 0.01051 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026096 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015011 0.0 0.000000 0.000000 0.000000 0.025765 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.027070 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.0 0.014583 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.04885 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.011313 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.049969 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011927 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.009394 0.000000 0.000000 0.029509 0.000000 0.014170 0.038924 0.0 0.0 0.000000 0.000000 0.027829 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013166 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.00000 0.000000 0.027123 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.00000 0.000000 0.016568 0.000000 0.000000 0.013166 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.032897 0.031277 0.000000 0.000000 0.000000 0.000000 0.000000 0.027201 0.000000 0.000000 0.000000 0.024818 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.012134 0.027947 0.000000 0.024111 0.014673 0.020904 0.000000 0.022361 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.022635 0.000000 0.000000 0.033052 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.009840 0.000000 0.000000 0.000000 0.000000 0.000000 0.074688 0.035214 0.014147 0.013207 0.000000 0.000000 0.000000 0.030156 0.0000 0.089163 0.000000 0.012192 0.027651 0.0 0.0 0.091353 0.000000 0.072540 0.000000 0.016036 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.020411 0.034025 0.000000 0.026241 0.000000 0.000000 0.000000 0.012441 0.000000 0.026765 0.013089 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.008226 0.0 0.000000 0.000000 0.011698 0.000000 0.000000 0.059615 0.000000 0.000000 0.000000 0.036148 0.020514 0.009379 0.0 0.000000 0.013298 0.000000 0.000000 0.000000 0.000000 0.000000 0.010778 0.012847 0.000000 0.0 0.032492 0.000000 0.0 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.016374 0.000000 0.00000 0.014741 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041324 0.000000 0.013603 0.032604 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.036355 0.000000 0.015125 0.000000 0.016124 0.00000 0.026800 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023617 0.00000 0.026755 0.000000 0.000000 0.000000 0.000000 0.000000 0.037464 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.015532 0.000000 0.024261 0.0 0.029308 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.00000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.036986 0.029606 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013797 0.022951 0.000000 0.000000 0.000000 0.049132 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.046818 0.000000 0.032663 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.008541 0.000000 0.000000 0.000000 0.024169 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020598 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012470 0.000000 0.000000 0.000000 0.000000 0.066615 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.025869 0.012312 0.000000 0.000000 0.051210 0.000000 0.000000 0.000000 0.012772 0.103231 0.000000 0.000000 0.024464 0.000000 0.0 0.000000 0.021405 0.020634 0.000000 0.000000 0.027416 0.000000 0.015217 0.014625 0.021406 0.010877 0.000000 0.032611 0.000000 0.000000 0.017420 0.000000 0.015033 0.027569 0.000000 0.000000 0.018879 0.022921 0.016970 0.000000 0.000000 0.000000 0.000000 0.000000 0.059234 0.023773 0.000000 0.013292 0.000000 0.000000 0.056860 0.102752 0.013590 0.0 0.011903 0.020091 0.000000 0.023123 0.000000 0.000000 0.023702 0.018477 0.0 0.009611 0.000000 0.000000 0.000000 0.000000 0.000000 0.014397 0.0 0.000000 0.000000 0.000000 0.016130 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009885 0.0 0.014184 0.000000 0.000000 0.000000 0.021111 0.011767 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.012941 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.030638 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009973 0.031040 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.00000 0.000000 0.00000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.015497 0.000000 0.000000 0.026718 0.045547 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.041686 0.000000 0.039663 0.00000 0.000000 0.000000 0.000000 0.013009 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010857 0.000000 0.011338 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030965 0.000000 0.000000 0.0 0.029563 0.000000 0.000000 0.000000 0.024347 0.014583 0.039427 0.000000 0.000000 0.000000 0.000000 0.026453 0.000000 0.000000 0.000000 0.000000 0.02851 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.051133 0.000000 0.000000 0.000000 0.000000 0.00000 0.00000 0.000000 0.000000 0.016356 0.000000 0.024113 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.013830 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.027540 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.026372 0.000000 0.020195 0.000000 0.000000 0.000000 0.000000 0.027565 0.000000 0.000000 0.023861 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.044596 0.000000 0.000000 0.00000 0.0 0.000000 0.000000 0.000000 0.046976 0.000000 0.000000 0.024039 0.014801 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040168 0.049954 0.045807 0.000000 0.000000 0.000000 0.013315 0.011355 0.018149 0.000000 0.037032 0.000000 0.010442 0.000000 0.000000 0.000000 0.014241 0.000000 0.014725 0.012070 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.011881 0.000000 0.000000 0.000000 0.012486 0.000000 0.000000 0.000000 0.000000 0.012455 0.000000 0.000000 0.010882 0.000000 0.082348 0.000000 0.000000 0.000000 0.077721 0.048884 0.000000 0.000000 0.031493 0.010996 0.010411 0.000000 0.038912 0.000000 0.000000 0.000000 0.010364 0.000000 0.039753 0.065558 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012623 0.035142 0.000000 0.000000 0.000000 0.031351 0.053842 0.000000 0.000000 0.014895 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.00000 0.011928 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.025009 0.009204 0.000000 0.000000 0.031667 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.012183 0.000000 0.000000 0.042886 0.000000 0.012093 0.015524 0.000000 0.025388 0.00000 0.013169 0.000000 0.000000 0.000000 0.026680 0.000000 0.000000 0.000000 0.025728 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.000000 0.015470 0.000000 0.000000 0.029231 0.0 0.000000 0.015210 0.000000 0.030949 0.000000 0.000000 0.000000 0.039649 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052753 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.018026 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026667 0.030298 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.053912 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011305 0.000000 0.000000 0.000000 0.018935 0.000000 0.013291 0.126591 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058803 0.000000 0.000000 0.000000 0.000000 0.000000 0.015957 0.011486 0.020074 0.000000 0.000000 0.000000 0.027569 0.000000 0.000000 0.000000 0.000000 0.012376 0.020353 0.000000 0.000000 0.015269 0.000000 0.010922 0.000000 0.000000 0.009036 0.035592 0.000000 0.000000 0.000000 0.000000 0.049695 0.000000 0.000000 0.033199 0.000000 0.000000 0.000000 0.000000 0.026144 0.000000 0.014832 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025495 0.015193 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.017591 0.000000 0.0 0.000000 0.000000 0.000000 0.030286 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017361 0.000000 0.000000 0.0 0.000000 0.027899 0.000000 0.000000 0.026592 0.000000 0.000000 0.023678 0.000000 0.024044 0.014051 0.000000 0.000000 0.000000 0.000000 0.000000 0.029170 0.00000 0.0000 0.025097 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.015561 0.000000 0.017473 0.000000 0.021207 0.010656 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.028809 0.022342 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.030982 0.000000 0.000000 0.000000 0.000000 0.000000 0.023780 0.000000 0.0 0.009320 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.041931 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026567 0.000000 0.0 0.000000 0.012919 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010238 0.000000 0.033603 0.00000 0.000000 0.0 0.000000 0.00000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011540 0.027239 0.000000 0.024395 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.028859 0.016388 0.000000 0.027249 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.036492 0.012734 0.024448 0.000000 0.100581 0.000000 0.000000 0.000000 0.010654 0.000000 0.013274 0.000000 0.010639 0.014649 0.000000 0.000000 0.000000 0.000000 0.0000 0.00000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.028962 0.000000 0.011470 0.011765 0.000000 0.000000 0.000000 0.000000 0.00000 0.079467 0.000000 0.000000 0.014498 0.000000 0.015511 0.000000 0.012183 0.000000 0.014376 0.000000 0.000000 0.000000 0.032357 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.009637 0.000000 0.010275 0.000000 0.000000 0.00000 0.00000 0.000000 0.013746 0.000000 0.046379 0.065112 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.015877 0.022347 0.030268 0.000000 0.0 0.036683 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.025508 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024968 0.000000 0.000000 0.014864 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.040984 0.000000 0.000000 0.000000 0.014583 0.000000 0.026764 0.011500 0.000000 0.009786 0.012128 0.011361 0.000000 0.0 0.0 0.000000 0.010010 0.010608 0.000000 0.0 0.0 0.000000 0.000000 0.028861 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.042774 0.000000 0.016016 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029036 0.0 0.000000 0.000000 0.000000 0.000000 0.029372 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.000000 0.000000 0.015276 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.023450 0.074543 0.000000 0.000000 0.023101 0.000000 0.000000 0.011714 0.000000 0.000000 0.000000 0.000000 0.000000 0.025512 0.000000 0.000000 0.000000 0.021591 0.000000 0.000000 0.011347 0.000000 0.000000 0.000000 0.000000 0.015044 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.054425 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.085210 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.049729 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.016701 0.000000 0.015926 0.000000 0.013546 0.011457 0.000000 0.000000 0.008656 0.000000 0.009851 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.00000 0.061264 0.061264 0.000000 0.000000 0.000000 0.000000 0.017310 0.000000 0.015490 0.000000 0.049139 0.022335 0.037581 0.017344 0.000000 0.000000 0.000000 0.027888 0.000000 0.024255 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.024866 0.000000 0.000000 0.000000 0.000000 0.011767 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.091063 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.026264 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.014995 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012581 0.000000 0.000000 0.0 0.000000 0.000000 0.015316 0.000000 0.000000 0.000000 0.000000 0.015526 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.030540 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.025448 0.000000 0.078493 0.000000 0.000000 0.024968 0.028919 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.093249 0.0 0.010293 0.015885 0.000000 0.000000 0.000000 0.0 0.000000 0.013377 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024268 0.000000 0.054601 0.000000 0.015105 0.000000 0.012904 0.000000 0.000000 0.000000 0.000000 0.016611 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.029062 0.000000 0.00000 0.000000 0.000000 0.058506 0.000000 0.000000 0.016807 0.016085 0.021512 0.000000 0.000000 0.000000 0.021260 0.000000 0.000000 0.011701 0.000000 0.000000 0.000000 0.000000 0.038232 0.011178 0.000000 0.000000 0.000000 0.038161 0.000000 0.000000 0.000000 0.015646 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.017192 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014783 0.000000 0.024117 0.000000 0.000000 0.026843 0.000000 0.000000 0.000000 0.012021 0.0000 0.000000 0.000000 0.000000 0.014096 0.009529 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013567 0.031366 0.000000 0.000000 0.000000 0.000000 0.010341 0.041770 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.012854 0.000000 0.000000 0.000000 0.036529 0.026173 0.000000 0.000000 0.000000 0.014071 0.028121 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015748 0.000000 0.028412 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.021980 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.019203 0.000000 0.010290 0.000000 0.000000 0.000000 0.012040 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.010352 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.016124 0.000000 0.025270 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.017887 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.011080 0.021308 0.000000 0.000000 0.033271 0.000000 0.024399 0.000000 0.026696 0.00000 0.024999 0.000000 0.026542 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.025110 0.000000 0.000000 0.025244 0.000000 0.000000 0.020438 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.065476 0.016888 0.000000 0.000000 0.012035 0.034002 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.011535 0.000000 0.009810 0.000000 0.000000 0.0 0.019711 0.000000 0.000000 0.000000 0.000000 0.00000 0.00000 0.027991 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.00000 0.017090 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.00000 0.012613 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.0000 0.031318 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017453 0.024515 0.000000 0.0 0.017025 0.0 0.0 0.0 0.0 0.000000 0.026578 0.000000 0.0 0.0 0.000000 0.0 0.023776 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.014724 0.000000 0.000000 0.000000 0.000000 0.014624 0.029779 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.023642 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.057070 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.027496 0.000000 0.000000 0.000000 0.032011 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.018436 0.032082 0.000000 0.0 0.00000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.031648 0.000000 0.030681 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.018477 0.000000 0.000000 0.000000 0.030681 0.000000 0.025224 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.015663 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030127 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.018524 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026578 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024086 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.015615 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016408 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026904 0.000000 0.0 0.0 0.0 0.026011 0.016403 0.000000 0.046619 0.013687 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029624 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.031184 0.000000 0.000000 0.011202 0.000000 0.000000 0.00000 0.000000 0.00000 0.000000 0.000000 0.0 0.027333 0.0 0.0 0.0 0.00000 0.000000 0.027436 0.000000 0.000000 0.000000 0.000000 0.028373 0.044268 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.00000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.029285 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032000 0.000000 0.000000 0.000000 0.013378 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.015613 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.029760 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.026203 0.000000 0.000000 0.025370 0.000000 0.00000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.022827 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.015740 0.024548 0.000000 0.00000 0.000000 0.000000 0.000000 0.00000 0.00000 0.000000 0.000000 0.031054 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026643 0.000000 0.000000 0.000000 0.000000 0.052947 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029990 0.016742 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.030011 0.000000 0.000000 0.000000 0.025528 0.000000 0.000000 0.000000 0.000000 0.000000 0.028824 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.016190 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.032249 0.000000 0.000000 0.000000 0.030201 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.014011 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.025980 0.000000 0.000000 0.025058 0.00000 0.00000 0.000000 0.015604 0.028589 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.00000 0.0 0.000000 0.00000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.025084 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.027386 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027169 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027333 0.017442 0.0 0.0 0.022977 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.022806 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025559 0.000000 0.000000 0.000000 0.000000 0.029001 0.000000 0.000000 0.000000 0.029895 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.00000 0.00000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.028092 0.000000 0.018842 0.030863 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.0000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.022643 0.00000 0.000000 0.000000 0.026201 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.013764 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.029781 0.000000 0.029841 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017774 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029007 0.000000 0.032618 0.000000 0.014785 0.038642 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030785 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.029390 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.00000 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.017804 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.038836 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.054896 0.000000 0.054896 0.000000 0.000000 0.0 0.032107 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.043431 0.000000 0.0 0.0000 0.000000 0.0 0.0 0.000000 0.000000 0.029804 0.00000 0.000000 0.018074 0.026477 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028145 0.016694 0.000000 0.000000 0.018582 0.000000 0.000000 0.030390 0.000000 0.000000 0.0 0.0 0.026477 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.029036 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.027130 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.030430 0.000000 0.000000 0.000000 0.029028 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.030023 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.030455 0.0 0.000000 0.000000 0.000000 0.025432 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.028465 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013076 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030803 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029212 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025557 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016173 0.000000 0.000000 0.000000 0.000000 0.00000 0.022838 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029838 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.029219 0.025810 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027898 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.013729 0.0 0.0 0.026747 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.0 0.000000 0.00000 0.017303 0.0 0.000000 0.000000 0.000000 0.023303 0.000000 0.0 0.0 0.0 0.000000 0.00000 0.000000 0.000000 0.029378 0.0 0.0 0.027720 0.000000 0.031091 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.028985 0.000000 0.000000 0.0 0.0 0.0 0.071397 0.000000 0.000000 0.000000 0.000000 0.026941 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026722 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.025791 0.029992 0.000000 0.000000 0.000000 0.000000 0.012949 0.000000 0.0 0.00000 0.000000 0.000000 0.0 0.052048 0.0 0.000000 0.0 0.000000 0.000000 0.016333 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.00000 0.000000 0.00000 0.00000 0.000000 0.000000 0.00000 0.016476 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.031799 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029598 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.00000 0.000000 0.028688 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.052048 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023217 0.000000 0.0 0.000000 0.000000 0.030293 0.000000 0.017329 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.027768 0.000000 0.0 0.00000 0.0 0.000000 0.029438 0.029438 0.029438 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.029668 0.0 0.0000 0.0 0.0 0.0 0.0 0.0 0.030896 0.000000 0.000000 0.00000 0.000000 0.029342 0.000000 0.000000 0.000000 0.048687 0.000000 0.000000 0.000000 0.000000 0.0000 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.028718 0.000000 0.023215 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.030465 0.00000 0.017615 0.00000 0.000000 0.027852 0.125011 0.000000 0.000000 0.00000 0.000000 0.000000 0.030056 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013553 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.028482 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.012921 0.000000 0.00000 0.0 0.016065 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026788 0.000000 0.000000 0.000000 0.000000 0.000000 0.043289 0.000000 0.026531 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014425 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.015593 0.000000 0.052412 0.000000 0.00000 0.029225 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.028550 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.012419 0.0 0.026618 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.024910 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.046089 0.00000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.0 0.013817 0.000000 0.00000 0.029525 0.029525 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027378 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.031249 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.031973 0.000000 0.000000 0.000000 0.000000 0.000000 0.017208 0.0000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.014552 0.011579 0.000000 0.016525 0.029938 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029876 0.000000 0.000000 0.0 0.000000 0.00000 0.029809 0.032446 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.026549 0.000000 0.000000 0.000000 0.000000 0.029469 0.029469 0.029469 0.000000 0.0 0.053168 0.000000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027699 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.000000 0.000000 0.014726 0.030625 0.030370 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.028782 0.000000 0.0 0.0 0.0 0.00000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.028782 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.00000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.053168 0.026048 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.026048 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.0 0.023848 0.0 0.0 0.000000 0.012941 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.0000 0.025789 0.000000 0.000000 0.000000 0.024305 0.00000 0.000000 0.000000 0.000000 0.015766 0.000000 0.000000 0.000000 0.000000 0.031043 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018090 0.000000 0.000000 0.031676 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.00000 0.000000 0.00000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.00000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.047751 0.000000 0.000000 0.019543 0.0 0.000000 0.014864 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.023049 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028434 0.031260 0.000000 0.0 0.000000 0.030450 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.0 0.000000 0.000000 0.000000 0.000000 0.029041 0.046997 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.0 0.030762 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.027245 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014925 0.000000 0.026708 0.00000 0.000000 0.020978 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.018254 0.00000 0.000000 0.000000 0.000000 0.000000 0.054109 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.030449 0.029639 0.000000 0.0 0.00000 0.0 0.000000 0.027734 0.00000 0.000000 0.000000 0.000000 0.000000 0.00000 0.015874 0.0 0.000000 0.000000 0.027089 0.00000 0.000000 0.000000 0.000000 0.000000 0.029219 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026859 0.000000 0.000000 0.000000 0.018522 0.000000 0.027914 0.026800 0.026800 0.024722 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.031459 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.0 0.016448 0.025581 0.000000 0.030516 0.000000 0.000000 0.000000 0.029426 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.032298 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.028677 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.024929 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.030766 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.027476 0.000000 0.000000 0.000000 0.000000 0.027607 0.000000 0.018226 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.027089 0.028353 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031072 0.0 0.00000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.031869 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.053168 0.000000 0.000000 0.000000 0.000000 0.053168 0.0 0.000000 0.000000 0.024053 0.00000 0.034522 0.00000 0.053168 0.000000 0.0 0.0 0.0 0.0 0.0 0.027592 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.053547 0.000000 0.000000 0.0000 0.0 0.00000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.029655 0.077797 0.018206 0.000000 0.000000 0.000000 0.017210 0.000000 0.000000 0.048052 0.015649 0.000000 0.000000 0.000000 0.016129 0.010869 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.013095 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.0000 0.096484 0.027902 0.000000 0.000000 0.024602 0.000000 0.00000 0.084310 0.0 0.000000 0.000000 0.039945 0.111670 0.023459 0.027584 0.014041 0.000000 0.000000 0.0 0.009672 0.000000 0.000000 0.032435 0.000000 0.000000 0.016477 0.000000 0.000000 0.000000 0.00000 0.000000 0.019969 0.000000 0.000000 0.0 0.000000 0.000000 0.053981 0.008988 0.000000 0.000000 0.000000 0.016592 0.000000 0.000000 0.000000 0.000000 0.000000 0.024049 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.030463 0.000000 0.000000 0.000000 0.000000 0.023301 0.019647 0.013705 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023470 0.053827 0.000000 0.0 0.000000 0.009366 0.0 0.000000 0.000000 0.012125 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037483 0.000000 0.000000 0.019666 0.0 0.015116 0.000000 0.000000 0.013430 0.000000 0.000000 0.000000 0.000000 0.000000 0.013881 0.010761 0.000000 0.000000 0.009445 0.000000 0.000000 0.000000 0.000000 0.013811 0.000000 0.000000 0.000000 0.000000 0.012041 0.0 0.024250 0.000000 0.031266 0.000000 0.000000 0.000000 0.000000 0.000000 0.010044 0.081278 0.000000 0.000000 0.012104 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017032 0.025303 0.0 0.009668 0.000000 0.029186 0.010645 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.029212 0.012776 0.012557 0.000000 0.014113 0.000000 0.000000 0.000000 0.000000 0.039993 0.010583 0.000000 0.000000 0.00000 0.000000 0.048005 0.000000 0.013724 0.042744 0.017975 0.011890 0.000000 0.000000 0.000000 0.039806 0.000000 0.000000 0.014437 0.000000 0.000000 0.000000 0.013637 0.000000 0.027104 0.000000 0.024909 0.000000 0.000000 0.052306 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030266 0.000000 0.02939 0.000000 0.000000 0.000000 0.000000 0.000000 0.013788 0.012292 0.016079 0.000000 0.000000 0.017048 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013274 0.033027 0.040102 0.028838 0.015541 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.011746 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.078733 0.020751 0.000000 0.000000 0.0 0.012336 0.02405 0.000000 0.019206 0.000000 0.000000 0.000000 0.028082 0.014258 0.000000 0.000000 0.055652 0.00000 0.013399 0.023090 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.008208 0.000000 0.010283 0.016607 0.000000 0.027704 0.000000 0.000000 0.016036 0.017856 0.013220 0.000000 0.000000 0.000000 0.000000 0.041312 0.000000 0.017511 0.00000 0.000000 0.000000 0.023460 0.00000 0.000000 0.000000 0.000000 0.065668 0.009995 0.000000 0.000000 0.000000 0.000000 0.012946 0.000000 0.013274 0.000000 0.000000 0.000000 0.000000 0.029071 0.000000 0.0 0.000000 0.010524 0.017916 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010414 0.000000 0.000000 0.000000 0.009120 0.038637 0.000000 0.000000 0.000000 0.013958 0.000000 0.023972 0.000000 0.000000 0.000000 0.053197 0.000000 0.000000 0.000000 0.025272 0.000000 0.000000 0.000000 0.011628 0.051062 0.000000 0.000000 0.000000 0.014766 0.013628 0.000000 0.000000 0.000000 0.000000 0.019186 0.000000 0.000000 0.000000 0.000000 0.037524 0.000000 0.009955 0.034907 0.000000 0.000000 0.000000 0.00000 0.000000 0.027696 0.000000 0.009483 0.0 0.020263 0.000000 0.066023 0.012242 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.031893 0.00000 0.000000 0.000000 0.023330 0.000000 0.054845 0.054717 0.058915 0.000000 0.024895 0.00000 0.048425 0.000000 0.000000 0.055471 0.0000 0.025453 0.032476 0.000000 0.032801 0.000000 0.012375 0.024021 0.029670 0.000000 0.000000 0.000000 0.021922 0.000000 0.000000 0.020815 0.000000 0.000000 0.000000 0.015833 0.015072 0.000000 0.013567 0.000000 0.086612 0.032461 0.016076 0.032971 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.010061 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032600 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034021 0.000000 0.000000 0.000000 0.000000 0.029101 0.000000 0.014476 0.000000 0.000000 0.051658 0.000000 0.000000 0.050305 0.012393 0.000000 0.000000 0.000000 0.000000 0.000000 0.008055 0.000000 0.0 0.000000 0.000000 0.011706 0.000000 0.014535 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013524 0.0 0.000000 0.040957 0.000000 0.009069 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.009664 0.000000 0.016260 0.000000 0.0 0.000000 0.000000 0.000000 0.025236 0.011706 0.000000 0.000000 0.000000 0.0 0.022906 0.000000 0.000000 0.000000 0.000000 0.000000 0.046107 0.000000 0.00000 0.011503 0.000000 0.000000 0.034707 0.000000 0.000000 0.009657 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023845 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.071012 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.050740 0.012826 0.015430 0.008249 0.000000 0.00000 0.013845 0.0 0.032305 0.000000 0.000000 0.000000 0.000000 0.010494 0.000000 0.024359 0.000000 0.047875 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025181 0.028864 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026952 0.000000 0.0 0.000000 0.060968 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.038445 0.000000 0.000000 0.000000 0.024870 0.010294 0.063251 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025279 0.000000 0.000000 0.000000 0.000000 0.026771 0.014740 0.000000 0.000000 0.000000 0.010462 0.000000 0.000000 0.011026 0.0 0.000000 0.00000 0.024022 0.00000 0.000000 0.000000 0.0 0.000000 0.015475 0.013470 0.021918 0.000000 0.060164 0.0 0.013082 0.014381 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.013538 0.000000 0.009853 0.00000 0.000000 0.000000 0.016356 0.000000 0.000000 0.000000 0.073231 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014376 0.000000 0.097269 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.100242 0.011602 0.000000 0.0 0.000000 0.020301 0.0 0.030960 0.021160 0.000000 0.038110 0.013355 0.000000 0.000000 0.034636 0.000000 0.000000 0.033897 0.000000 0.018351 0.013216 0.027543 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028444 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.008912 0.000000 0.000000 0.000000 0.000000 0.013274 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.029092 0.000000 0.000000 0.000000 0.046478 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009435 0.000000 0.025775 0.000000 0.011713 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.010618 0.000000 0.000000 0.000000 0.000000 0.000000 0.020195 0.00000 0.026345 0.016807 0.000000 0.000000 0.0000 0.013680 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.028934 0.000000 0.000000 0.009927 0.000000 0.000000 0.000000 0.000000 0.000000 0.013377 0.0 0.000000 0.000000 0.037660 0.000000 0.00000 0.000000 0.000000 0.028940 0.000000 0.017034 0.000000 0.000000 0.000000 0.011036 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012495 0.00000 0.0 0.022315 0.000000 0.0 0.00000 0.000000 0.000000 0.045638 0.000000 0.000000 0.012890 0.000000 0.0 0.000000 0.012067 0.011585 0.000000 0.000000 0.018077 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019873 0.000000 0.039073 0.037039 0.000000 0.000000 0.000000 0.015339 0.042581 0.022669 0.000000 0.016759 0.000000 0.012104 0.000000 0.000000 0.026890 0.000000 0.025273 0.011913 0.014804 0.000000 0.018263 0.000000 0.000000 0.000000 0.017216 0.045400 0.000000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010193 0.000000 0.032459 0.000000 0.000000 0.000000 0.000000 0.068280 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.014881 0.00000 0.000000 0.010412 0.020784 0.000000 0.036311 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.015420 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014583 0.000000 0.000000 0.00000 0.000000 0.000000 0.008882 0.018280 0.015877 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.020714 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.022178 0.000000 0.000000 0.000000 0.045173 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012843 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012784 0.000000 0.099947 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.024052 0.00000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.018765 0.000000 0.00000 0.000000 0.0 0.010086 0.000000 0.0 0.000000 0.010350 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.00000 0.000000 0.000000 0.0 0.000000 0.051668 0.0 0.000000 0.000000 0.000000 0.063846 0.000000 0.030887 0.015433 0.000000 0.000000 0.000000 0.000000 0.031452 0.012946 0.000000 0.019216 0.000000 0.000000 0.029786 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.042365 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033991 0.069470 0.000000 0.000000 0.062340 0.000000 0.000000 0.000000 0.014138 0.000000 0.016126 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.020072 0.000000 0.000000 0.000000 0.000000 0.000000 0.024616 0.000000 0.012038 0.000000 0.000000 0.00000 0.0253 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.04885 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029494 0.028286 0.030077 0.000000 0.000000 0.000000 0.0 0.000000 0.014704 0.0 0.013274 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.099810 0.012528 0.000000 0.000000 0.000000 0.000000 0.024333 0.000000 0.015540 0.000000 0.000000 0.022011 0.000000 0.000000 0.000000 0.038015 0.000000 0.000000 0.021848 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.056565 0.000000 0.013824 0.000000 0.024485 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014607 0.011936 0.000000 0.015003 0.000000 0.013232 0.000000 0.000000 0.000000 0.000000 0.011178 0.000000 0.000000 0.015762 0.012297 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.012242 0.000000 0.012654 0.000000 0.00000 0.000000 0.010718 0.000000 0.000000 0.029529 0.013765 0.000000 0.000000 0.0000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.030069 0.0 0.000000 0.000000 0.010057 0.000000 0.008238 0.012402 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.030444 0.0 0.029923 0.000000 0.0 0.006889 0.0 0.050622 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.043329 0.000000 0.000000 0.026568 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015771 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.017080 0.0 0.067150 0.000000 0.016192 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.031568 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027992 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.00000 0.000000 0.000000 0.037767 0.000000 0.016841 0.0 0.000000 0.0 0.000000 0.000000 0.025099 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.067031 0.0 0.000000 0.000000 0.017577 0.015292 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014635 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.013012 0.0 0.047526 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.034123 0.000000 0.0 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.057632 0.017399 0.009234 0.000000 0.0 0.0 0.014309 0.0 0.000000 0.014707 0.000000 0.0 0.027534 0.0 0.000000 0.000000 0.000000 0.029534 0.000000 0.000000 0.000000 0.018072 0.0 0.0 0.000000 0.045702 0.0 0.038903 0.0 0.000000 0.000000 0.046445 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.00000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.067198 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.030282 0.043167 0.043167 0.0 0.0 0.0 0.0 0.013909 0.0 0.0 0.000000 0.0 0.026327 0.029662 0.021661 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.014391 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.014793 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.051017 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.020153 0.009279 0.044991 0.0 0.000000 0.078441 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.015765 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.031046 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.036804 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.032816 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.014330 0.0 0.000000 0.000000 0.000000 0.0 0.025615 0.0 0.000000 0.000000 0.000000 0.010551 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.012470 0.012726 0.0 0.024727 0.0 0.0 0.059393 0.000000 0.0 0.0 0.0 0.025792 0.0 0.015869 0.000000 0.034650 0.011248 0.0 0.000000 0.016682 0.0 0.000000 0.0 0.0 0.014525 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.015475 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.007788 0.056945 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.024958 0.000000 0.021425 0.00000 0.015128 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.015211 0.0 0.0 0.0 0.0 0.000000 0.016361 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.065878 0.000000 0.000000 0.0 0.000000 0.000000 0.012272 0.000000 0.000000 0.0 0.000000 0.000000 0.011026 0.010666 0.000000 0.018408 0.000000 0.000000 0.046298 0.018009 0.026858 0.0 0.0 0.00000 0.000000 0.000000 0.000000 0.042441 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.022357 0.000000 0.0 0.013230 0.030779 0.028778 0.000000 0.000000 0.046083 0.000000 0.000000 0.000000 0.045524 0.000000 0.000000 0.026626 0.018627 0.000000 0.034452 0.00000 0.030559 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.009370 0.0 0.052520 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027978 0.0 0.01099 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.044961 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.00000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.038996 0.000000 0.021309 0.000000 0.000000 0.0 0.040289 0.0 0.013683 0.0 0.0 0.0 0.029972 0.0 0.0 0.000000 0.000000 0.0 0.0 0.114094 0.000000 0.0 0.0 0.0 0.050596 0.0 0.0 0.0 0.023826 0.0 0.000000 0.051017 0.0 0.0 0.000000 0.0 0.000000 0.017492 0.000000 0.000000 0.000000 0.011248 0.000000 0.013796 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.021469 0.0 0.000000 0.000000 0.0 0.041897 0.000000 0.0 0.000000 0.0 0.052656 0.021890 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.02195 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018301 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.023973 0.0 0.0 0.000000 0.000000 0.067150 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.00000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.013868 0.0 0.000000 0.000000 0.010391 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.060926 0.0 0.017837 0.0 0.010974 0.030163 0.0 0.0 0.014694 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.014332 0.0 0.058755 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.018368 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021087 0.00000 0.000000 0.0 0.018848 0.0 0.0 0.019599 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.016467 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.014439 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.00000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.022124 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.020748 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.020915 0.0 0.025623 0.0 0.038919 0.025002 0.0 0.000000 0.0 0.0 0.000000 0.0 0.023537 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.025533 0.009812 0.028391 0.0 0.000000 0.025593 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.00000 0.00000 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.014054 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.012376 0.000000 0.000000 0.000000 0.025853 0.000000 0.000000 0.013247 0.000000 0.021002 0.000000 0.009558 0.000000 0.000000 0.000000 0.000000 0.039137 0.0 0.000000 0.016071 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.00000 0.0 0.012524 0.0 0.0 0.000000 0.0 0.025782 0.0 0.0 0.000000 0.000000 0.021340 0.034045 0.000000 0.052120 0.0 0.0 0.000000 0.0 0.0 0.0 0.028967 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.018934 0.000000 0.013330 0.0 0.0 0.000000 0.0 0.000000 0.00000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.021328 0.0 0.00000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.029915 0.0 0.082322 0.071611 0.000000 0.000000 0.000000 0.027562 0.000000 0.0 0.000000 0.000000 0.0 0.013356 0.000000 0.000000 0.0 0.014212 0.035385 0.0 0.0 0.0 0.000000 0.042111 0.0 0.0 0.000000 0.000000 0.000000 0.061105 0.057235 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.056780 0.0 0.019046 0.000000 0.0 0.0 0.000000 0.025366 0.028470 0.000000 0.000000 0.000000 0.000000 0.014781 0.000000 0.000000 0.0 0.0 0.00000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.012275 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.013871 0.0 0.0 0.0 0.011683 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021397 0.032053 0.000000 0.000000 0.012753 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.014285 0.000000 0.000000 0.000000 0.0 0.0 0.014878 0.014823 0.025723 0.0 0.01546 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.027391 0.0 0.014192 0.0 0.0 0.0 0.013994 0.0 0.0 0.000000 0.023073 0.0 0.000000 0.011552 0.000000 0.015152 0.0 0.0 0.000000 0.000000 0.00000 0.000000 0.036057 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014058 0.000000 0.000000 0.000000 0.012652 0.0 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.046353 0.0 0.022377 0.0 0.0 0.000000 0.000000 0.0 0.00000 0.0 0.000000 0.000000 0.040144 0.0 0.0 0.000000 0.0 0.0 0.000000 0.014677 0.000000 0.023073 0.0 0.013808 0.0 0.0 0.000000 0.012097 0.000000 0.031379 0.000000 0.000000 0.021203 0.000000 0.0 0.0 0.041839 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.012970 0.000000 0.00000 0.000000 0.000000 0.0 0.0 0.0 0.081093 0.0 0.037046 0.0 0.000000 0.000000 0.000000 0.000000 0.014729 0.000000 0.000000 0.039252 0.020195 0.013786 0.028864 0.000000 0.000000 0.00000 0.012974 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.030872 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.029106 0.000000 0.000000 0.000000 0.031288 0.000000 0.0 0.036568 0.0 0.0 0.030923 0.0 0.0 0.0 0.023385 0.036787 0.000000 0.0 0.0 0.023306 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.028452 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.020517 0.052025 0.0 0.0 0.045893 0.0 0.0 0.000000 0.0 0.000000 0.0 0.00000 0.000000 0.013329 0.0 0.064328 0.000000 0.064520 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.025362 0.089250 0.034584 0.000000 0.047289 0.0 0.000000 0.065251 0.000000 0.000000 0.017825 0.0 0.021014 0.0 0.000000 0.014575 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.027883 0.000000 0.0 0.000000 0.0 0.027734 0.0000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.0 0.0 0.0 0.020781 0.000000 0.000000 0.067150 0.060980 0.0 0.014896 0.0 0.0 0.000000 0.00000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.028508 0.000000 0.000000 0.023635 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.030752 0.000000 0.000000 0.014000 0.000000 0.025221 0.000000 0.0 0.061102 0.0 0.0 0.019665 0.000000 0.000000 0.0 0.0 0.0 0.010073 0.049889 0.0 0.000000 0.000000 0.00000 0.0 0.0 0.0 0.0 0.0 0.013265 0.0 0.056679 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.022564 0.000000 0.018889 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.00000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.032554 0.0 0.0 0.0 0.000000 0.000000 0.030769 0.019927 0.00000 0.000000 0.028603 0.000000 0.030862 0.000000 0.000000 0.0 0.042245 0.000000 0.000000 0.000000 0.000000 0.022369 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.040084 0.025543 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.02431 0.045108 0.033170 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.00000 0.0 0.0 0.015261 0.000000 0.067150 0.013486 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.031102 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013382 0.033058 0.0 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.01397 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.00000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.013397 0.0 0.0 0.0 0.011957 0.0 0.037592 0.0 0.0 0.000000 0.0 0.0 0.0 0.014090 0.0 0.0 0.000000 0.011946 0.0 0.0 0.000000 0.0 0.0 0.008669 0.042196 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.00000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.026815 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.034495 0.00000 0.0 0.0 0.031037 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.025664 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.015682 0.000000 0.000000 0.000000 0.0 0.014956 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.0 0.029484 0.039680 0.0 0.015318 0.025966 0.000000 0.0 0.000000 0.024148 0.010507 0.00000 0.008919 0.000000 0.000000 0.034356 0.0 0.000000 0.024008 0.000000 0.000000 0.009262 0.0 0.0 0.0 0.0 0.014746 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.012651 0.0 0.045501 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.021635 0.0 0.0 0.000000 0.0 0.000000 0.013803 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.016235 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.027314 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.00000 0.015675 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.016878 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.026613 0.027473 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.016147 0.0 0.0 0.00000 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.0 0.0 0.00000 0.0 0.000000 0.0 0.0 0.000000 0.020617 0.0 0.013042 0.0 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020084 0.000000 0.017923 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.026292 0.00000 0.000000 0.0 0.000000 0.000000 0.016090 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.012743 0.0 0.0 0.000000 0.0 0.000000 0.014890 0.000000 0.025857 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.035079 0.000000 0.000000 0.038601 0.0 0.0 0.009378 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.011936 0.000000 0.0 0.0 0.000000 0.0 0.02374 0.000000 0.027396 0.015761 0.016703 0.014556 0.0 0.029019 0.000000 0.028846 0.0 0.0 0.0 0.0 0.023162 0.0 0.065742 0.0 0.012608 0.0 0.0 0.016141 0.000000 0.0 0.000000 0.000000 0.016136 0.0 0.000000 0.01362 0.0 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022202 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.027109
2 0.000000 0.000000 1.000000 0.021785 0.0 0.000000 0.000000 0.000000 0.062837 0.043708 0.036614 0.019908 0.000000 0.000000 0.107449 0.003330 0.009151 0.029835 0.020851 0.002276 0.000000 0.013853 0.022041 0.055527 0.061286 0.000000 0.063365 0.047550 0.038700 0.002782 0.011095 0.037327 0.002996 0.000000 0.042212 0.0 0.045339 0.026304 0.038296 0.009304 0.033907 0.000000 0.063430 0.017821 0.025511 0.002528 0.03509 0.051957 0.022273 0.002685 0.028603 0.022874 0.014156 0.000000 0.023398 0.000000 0.012852 0.000000 0.047025 0.020762 0.034399 0.011761 0.000000 0.075897 0.083049 0.002912 0.016255 0.033793 0.025663 0.002733 0.000000 0.026099 0.003021 0.000000 0.003362 0.106325 0.000000 0.059441 0.000000 0.002718 0.078606 0.0 0.000000 0.000000 0.035659 0.025519 0.018279 0.000000 0.024267 0.002649 0.040014 0.009628 0.003312 0.094380 0.012905 0.088679 0.000000 0.018174 0.029532 0.068495 0.021809 0.002371 0.018691 0.040163 0.109292 0.031247 0.002522 0.034590 0.052664 0.037634 0.018309 0.000000 0.033924 0.002763 0.019219 0.015563 0.035703 0.040749 0.049727 0.002751 0.022771 0.002909 0.030059 0.023585 0.009511 0.000000 0.031310 0.027681 0.047847 0.010976 0.000000 0.009579 0.068446 0.027317 0.021760 0.003447 0.040570 0.000000 0.057296 0.078858 0.017782 0.033573 0.017791 0.022890 0.000000 0.053298 0.002536 0.042652 0.045663 0.073731 0.058644 0.029864 0.012143 0.020788 0.000000 0.024945 0.062486 0.000000 0.034960 0.049493 0.002472 0.016320 0.018087 0.046223 0.009560 0.041614 0.012181 0.034262 0.030165 0.045759 0.018783 0.002577 0.002442 0.000000 0.000000 0.028339 0.093077 0.048625 0.022571 0.0 0.004905 0.000000 0.015359 0.060273 0.012079 0.035243 0.000000 0.031425 0.000000 0.0 0.002371 0.000000 0.020019 0.028734 0.127566 0.008209 0.026455 0.112831 0.022112 0.085151 0.022294 0.053068 0.007700 0.081137 0.054507 0.016416 0.096236 0.012483 0.003088 0.0 0.000000 0.0 0.0 0.000000 0.010412 0.031073 0.023805 0.014552 0.097924 0.000000 0.17034 0.000000 0.021418 0.000000 0.000000 0.036070 0.0 0.008825 0.037982 0.047232 0.000000 0.002558 0.000000 0.0 0.020853 0.054147 0.041876 0.039829 0.000000 0.042452 0.0 0.0 0.0 0.031954 0.009848 0.044479 0.000000 0.046641 0.020735 0.028329 0.046208 0.022967 0.016354 0.050200 0.008812 0.054663 0.000000 0.000000 0.019723 0.000000 0.012159 0.059749 0.000000 0.119121 0.039950 0.017778 0.022424 0.000000 0.000000 0.002688 0.020457 0.034801 0.067508 0.006726 0.023454 0.034331 0.000000 0.000000 0.015139 0.055770 0.010959 0.015999 0.024927 0.022788 0.048491 0.018476 0.000000 0.000000 0.115595 0.027197 0.003178 0.072662 0.002826 0.043719 0.009145 0.062567 0.000000 0.016712 0.023746 0.050637 0.000000 0.000000 0.015362 0.020614 0.075302 0.077566 0.012580 0.014538 0.000000 0.163947 0.012540 0.053652 0.008865 0.105369 0.002339 0.002856 0.080535 0.045759 0.000000 0.031602 0.000000 0.000000 0.011746 0.012250 0.035628 0.145065 0.035216 0.002800 0.002776 0.071375 0.000000 0.020366 0.000000 0.009240 0.0 0.058055 0.022688 0.038518 0.031451 0.097931 0.000000 0.025264 0.000000 0.061461 0.012267 0.0 0.003105 0.026351 0.000000 0.019767 0.037313 0.002120 0.000000 0.010256 0.044286 0.000000 0.002498 0.000000 0.014476 0.000000 0.047270 0.029096 0.0 0.002081 0.012688 0.020663 0.024206 0.035058 0.024390 0.023110 0.008313 0.000000 0.000000 0.015938 0.058492 0.046007 0.0 0.108891 0.000000 0.002406 0.000000 0.123083 0.053389 0.077096 0.070146 0.000000 0.010790 0.018379 0.003339 0.000000 0.027753 0.04930 0.043811 0.003014 0.013121 0.000000 0.002895 0.011055 0.056828 0.017227 0.056975 0.042776 0.002438 0.000000 0.032336 0.015809 0.009786 0.047152 0.104258 0.137496 0.000000 0.019326 0.025264 0.000000 0.019195 0.044974 0.073190 0.002989 0.087731 0.000000 0.044789 0.072783 0.044818 0.000000 0.076942 0.000000 0.010026 0.003011 0.059486 0.022826 0.018960 0.051358 0.002989 0.000000 0.019957 0.003114 0.175497 0.000000 0.035087 0.000000 0.027113 0.000000 0.000000 0.000000 0.022487 0.010875 0.012209 0.017640 0.031662 0.000000 0.000000 0.044265 0.030795 0.000000 0.004086 0.002945 0.005755 0.0 0.012218 0.022420 0.072303 0.018777 0.000000 0.0 0.085668 0.000000 0.009755 0.039025 0.000000 0.012776 0.009714 0.010987 0.002657 0.012095 0.024208 0.021625 0.031945 0.016463 0.041001 0.016541 0.108373 0.058449 0.000000 0.094870 0.002556 0.0 0.0 0.017361 0.000000 0.017328 0.053629 0.029596 0.067389 0.012643 0.000000 0.020750 0.000000 0.011300 0.000000 0.043428 0.008691 0.000000 0.000000 0.039662 0.017411 0.0 0.031241 0.000000 0.027409 0.007050 0.053427 0.000000 0.081139 0.045535 0.029114 0.025898 0.065265 0.029798 0.002478 0.015438 0.0 0.0 0.0 0.000000 0.000000 0.029055 0.030484 0.037149 0.003395 0.018214 0.018332 0.020635 0.034777 0.049293 0.098122 0.063711 0.044435 0.052101 0.101481 0.019512 0.072277 0.005166 0.000000 0.018520 0.000000 0.116598 0.0 0.194450 0.000000 0.020469 0.024316 0.000000 0.003160 0.016319 0.026093 0.000000 0.000000 0.024043 0.009099 0.000000 0.138234 0.0 0.0 0.019973 0.102664 0.004373 0.007690 0.021141 0.000000 0.000000 0.020220 0.000000 0.000000 0.009517 0.024581 0.000000 0.035166 0.043591 0.00000 0.000000 0.000000 0.023779 0.019093 0.000000 0.015609 0.046336 0.030464 0.042022 0.0 0.009588 0.0 0.127528 0.000000 0.000000 0.003122 0.002434 0.010983 0.121028 0.018172 0.011413 0.038116 0.018296 0.027710 0.022253 0.083720 0.0 0.0 0.0 0.0 0.039800 0.040679 0.055818 0.002693 0.117873 0.032728 0.046065 0.019704 0.022260 0.000000 0.052174 0.042272 0.000000 0.000000 0.000000 0.082511 0.060210 0.019296 0.032248 0.032815 0.044665 0.026074 0.020912 0.019274 0.0 0.023305 0.000000 0.029678 0.000000 0.024659 0.061477 0.049254 0.002542 0.0 0.011750 0.0 0.014781 0.064360 0.051419 0.032389 0.0 0.0 0.067880 0.000000 0.000000 0.002092 0.013148 0.025917 0.028365 0.143143 0.0 0.000000 0.000000 0.038812 0.000000 0.019565 0.019717 0.048477 0.000000 0.009011 0.0 0.045273 0.015226 0.034508 0.021702 0.026310 0.015881 0.000000 0.018708 0.000000 0.010591 0.018923 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.003423 0.002993 0.057996 0.067810 0.042439 0.003199 0.043144 0.025594 0.079388 0.034209 0.023672 0.000000 0.020080 0.002626 0.0 0.076621 0.075297 0.000000 0.000000 0.012194 0.000000 0.069170 0.010425 0.025056 0.076807 0.000000 0.0 0.025313 0.023454 0.000000 0.013395 0.017503 0.000000 0.012791 0.000000 0.008051 0.050751 0.071337 0.042033 0.030175 0.066179 0.0 0.039197 0.000000 0.048956 0.046924 0.073226 0.011586 0.000000 0.153216 0.067188 0.009425 0.000000 0.000000 0.008278 0.0 0.002803 0.000000 0.034182 0.036712 0.029877 0.038323 0.003050 0.003276 0.002496 0.000000 0.000000 0.029326 0.005153 0.0 0.0 0.0 0.031756 0.002733 0.010976 0.010914 0.025528 0.019528 0.016681 0.0 0.025994 0.000000 0.031546 0.024291 0.083395 0.003521 0.046541 0.031982 0.286263 0.013184 0.000000 0.010343 0.020241 0.000000 0.0 0.026405 0.002620 0.033310 0.013828 0.030083 0.009588 0.028018 0.015697 0.092609 0.000000 0.040780 0.0 0.078530 0.006633 0.006383 0.002209 0.053703 0.0 0.002920 0.028684 0.016752 0.008660 0.025144 0.034231 0.00000 0.010874 0.002994 0.021831 0.00000 0.033661 0.047456 0.025096 0.019233 0.034570 0.00781 0.0 0.013009 0.017520 0.033046 0.003592 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.003079 0.003966 0.002814 0.034608 0.000000 0.040591 0.000000 0.000000 0.085510 0.046016 0.003187 0.000000 0.022369 0.002927 0.031704 0.025714 0.016336 0.175867 0.029545 0.004745 0.0 0.022196 0.003703 0.0 0.0 0.179085 0.132218 0.006740 0.002842 0.041115 0.0 0.015391 0.000000 0.167787 0.096091 0.001697 0.001916 0.0 0.000000 0.002520 0.003253 0.047235 0.034601 0.018488 0.042626 0.068996 0.058654 0.002933 0.028531 0.022441 0.014066 0.044624 0.030276 0.002413 0.018037 0.0 0.0 0.016455 0.061592 0.058827 0.000000 0.030372 0.120350 0.030369 0.024575 0.004176 0.022804 0.0 0.023914 0.000000 0.0 0.0 0.184538 0.008657 0.000000 0.015309 0.000000 0.006163 0.037229 0.016989 0.023086 0.193586 0.008014 0.023382 0.023388 0.013123 0.031722 0.002640 0.000000 0.038288 0.076405 0.004493 0.039344 0.047198 0.016804 0.072293 0.049455 0.283099 0.202813 0.070171 0.024417 0.044072 0.011970 0.027054 0.010101 0.043455 0.033365 0.000000 0.031290 0.000000 0.022428 0.062239 0.009951 0.025160 0.000000 0.035975 0.035088 0.000000 0.009894 0.002895 0.030319 0.021668 0.022874 0.018376 0.003523 0.054037 0.007908 0.014656 0.0 0.000000 0.016655 0.0 0.000000 0.010636 0.000000 0.014851 0.026501 0.079553 0.074259 0.016806 0.0 0.000000 0.063323 0.000000 0.025704 0.037602 0.008406 0.000000 0.016224 0.080203 0.011531 0.036312 0.000000 0.062873 0.109519 0.042110 0.093207 0.057421 0.002837 0.00345 0.002724 0.000000 0.003996 0.0 0.027644 0.089847 0.029074 0.029385 0.016819 0.000000 0.051783 0.000000 0.043800 0.082950 0.089203 0.015353 0.087018 0.014683 0.075786 0.062733 0.0 0.0 0.010461 0.026546 0.003999 0.011834 0.000000 0.002975 0.023737 0.015985 0.003378 0.246453 0.041288 0.029879 0.019772 0.000000 0.030368 0.154775 0.008635 0.008823 0.006464 0.154594 0.040423 0.000000 0.006350 0.022021 0.019879 0.034899 0.039112 0.021452 0.040217 0.000000 0.029328 0.027140 0.026575 0.007181 0.0 0.017080 0.120186 0.055393 0.002594 0.000000 0.058215 0.041438 0.010284 0.025812 0.00000 0.041788 0.000000 0.053492 0.0 0.034664 0.000000 0.062219 0.0 0.000000 0.041147 0.054646 0.045165 0.015750 0.035392 0.019975 0.010285 0.0 0.003254 0.005069 0.018999 0.000000 0.047336 0.056697 0.071855 0.035392 0.019771 0.0 0.000000 0.024966 0.025066 0.002758 0.000000 0.000000 0.052434 0.008816 0.000000 0.000000 0.012336 0.029948 0.000000 0.027585 0.0 0.000000 0.011956 0.028969 0.049275 0.002479 0.032080 0.165705 0.0 0.017726 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.00000 0.009463 0.027657 0.016804 0.000000 0.007072 0.000000 0.038882 0.040229 0.000000 0.000000 0.054519 0.030645 0.016911 0.035613 0.002966 0.031950 0.025658 0.053354 0.013802 0.011663 0.050110 0.100539 0.020380 0.078853 0.000000 0.000000 0.016858 0.0 0.002766 0.000000 0.043075 0.010419 0.003364 0.152098 0.000000 0.000000 0.051864 0.023833 0.000000 0.081755 0.005602 0.000000 0.069806 0.0 0.0 0.0 0.0 0.0 0.0 0.004025 0.003793 0.037521 0.00000 0.000000 0.0 0.000000 0.016865 0.000000 0.004332 0.000000 0.050338 0.010850 0.004446 0.000000 0.031091 0.017339 0.039391 0.022380 0.016759 0.010289 0.000000 0.040479 0.040587 0.013927 0.000000 0.036086 0.021741 0.081342 0.068094 0.0 0.000000 0.023121 0.000000 0.0 0.000000 0.020196 0.000000 0.003095 0.053054 0.0 0.123784 0.101317 0.000000 0.000000 0.024378 0.003066 0.000000 0.044915 0.000000 0.005976 0.093498 0.021965 0.022756 0.009164 0.128853 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.003204 0.024932 0.000000 0.028920 0.000000 0.041576 0.025067 0.030524 0.113500 0.000000 0.033499 0.000000 0.025495 0.000000 0.035098 0.028498 0.000000 0.066931 0.051343 0.039716 0.044711 0.036655 0.0 0.002273 0.000000 0.000000 0.000000 0.026707 0.022206 0.033034 0.002730 0.028879 0.029849 0.000000 0.041249 0.0 0.033803 0.000000 0.000000 0.0 0.000000 0.151775 0.000000 0.000000 0.037221 0.028464 0.019917 0.067662 0.079246 0.016996 0.0 0.0 0.000000 0.012653 0.029045 0.053943 0.052248 0.0 0.009485 0.024475 0.011471 0.002953 0.053797 0.0 0.0 0.017905 0.015558 0.013406 0.000000 0.014026 0.000000 0.02451 0.000000 0.0 0.030108 0.106611 0.000000 0.037577 0.019804 0.003619 0.031633 0.000000 0.002276 0.038050 0.010141 0.134248 0.073013 0.002640 0.000000 0.023998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.012483 0.003785 0.000000 0.035577 0.016209 0.024197 0.000000 0.009188 0.035445 0.048813 0.007979 0.002825 0.031195 0.0 0.029983 0.011221 0.002778 0.14732 0.000000 0.002401 0.000000 0.059419 0.00000 0.016511 0.051020 0.025679 0.046806 0.000000 0.008290 0.038703 0.020345 0.036876 0.071731 0.020001 0.022426 0.015078 0.015749 0.0 0.016374 0.000000 0.017801 0.004142 0.000000 0.061944 0.013371 0.000000 0.117581 0.022190 0.000000 0.010455 0.017904 0.000000 0.037136 0.043940 0.010194 0.019164 0.0 0.0 0.113321 0.143576 0.071484 0.034978 0.000000 0.028844 0.033233 0.000000 0.014813 0.062055 0.000000 0.000000 0.053765 0.0 0.204662 0.027335 0.052867 0.000000 0.085194 0.082891 0.0 0.0 0.0 0.0 0.082803 0.000000 0.021134 0.033322 0.037448 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.035498 0.043855 0.022322 0.036560 0.002217 0.003887 0.026761 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.050994 0.086831 0.000000 0.014091 0.096687 0.097432 0.040748 0.111200 0.039846 0.000000 0.000000 0.016202 0.024639 0.000000 0.000000 0.008086 0.007802 0.000000 0.016779 0.000000 0.000000 0.019280 0.016920 0.025767 0.000000 0.018757 0.016644 0.000000 0.000000 0.095386 0.055639 0.000000 0.021977 0.002810 0.000000 0.000000 0.000000 0.029259 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.004411 0.0 0.0 0.0 0.035371 0.044282 0.004162 0.038889 0.045563 0.049375 0.002814 0.026751 0.196147 0.036955 0.002844 0.049643 0.000000 0.037588 0.040958 0.00000 0.0 0.000000 0.013805 0.043085 0.041958 0.000000 0.000000 0.005789 0.020616 0.005475 0.048213 0.039648 0.00000 0.0 0.000000 0.033474 0.015203 0.0 0.042528 0.025964 0.052793 0.002527 0.0 0.0 0.011141 0.013530 0.033892 0.035987 0.000000 0.019108 0.0 0.006388 0.012302 0.023349 0.003801 0.086555 0.000000 0.003395 0.010049 0.026454 0.020960 0.086099 0.024817 0.022848 0.014663 0.047607 0.026113 0.013295 0.094361 0.024635 0.002336 0.002786 0.023937 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.004308 0.000000 0.035695 0.037639 0.023626 0.003086 0.023378 0.048871 0.029987 0.048616 0.026227 0.000000 0.004115 0.013890 0.030765 0.023820 0.000000 0.002786 0.000000 0.037778 0.011375 0.027088 0.000000 0.0 0.0 0.01796 0.054278 0.012225 0.000000 0.115948 0.000000 0.000000 0.000000 0.029807 0.000000 0.051283 0.000000 0.000000 0.053728 0.042455 0.035733 0.037031 0.101848 0.018438 0.000000 0.000000 0.022377 0.032007 0.000000 0.000000 0.011314 0.0 0.0 0.0 0.0 0.0 0.161106 0.024473 0.020576 0.043377 0.00000 0.057886 0.003096 0.234558 0.031353 0.064684 0.000000 0.000000 0.161003 0.000000 0.000000 0.022442 0.025580 0.018249 0.017334 0.033854 0.00000 0.058484 0.069705 0.000000 0.053304 0.030441 0.032469 0.000000 0.026288 0.013304 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.035258 0.0 0.000000 0.000000 0.007698 0.072011 0.050549 0.0 0.006438 0.237283 0.000000 0.044052 0.000000 0.067396 0.0 0.0 0.095725 0.0 0.000000 0.0 0.133492 0.000000 0.075596 0.050029 0.003393 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012453 0.002774 0.000000 0.000000 0.002450 0.000000 0.000000 0.016044 0.021602 0.011050 0.000000 0.039815 0.000000 0.000000 0.066860 0.075350 0.008366 0.000000 0.033007 0.021223 0.000000 0.007919 0.024321 0.000000 0.035908 0.000000 0.016625 0.000000 0.058969 0.030636 0.051786 0.000000 0.000000 0.007820 0.021601 0.009310 0.007789 0.008426 0.036544 0.000000 0.000000 0.012123 0.032129 0.009037 0.040646 0.000000 0.035493 0.000000 0.077285 0.002480 0.033299 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.040797 0.140421 0.009480 0.000000 0.069045 0.038094 0.003494 0.018721 0.049167 0.066284 0.053866 0.188470 0.000000 0.078829 0.000000 0.048411 0.064574 0.013002 0.060032 0.117931 0.031574 0.003184 0.000000 0.004056 0.000000 0.0 0.021665 0.045829 0.112069 0.000000 0.000000 0.011621 0.083612 0.000000 0.059833 0.038664 0.000000 0.000000 0.027584 0.110686 0.029731 0.059868 0.022548 0.000000 0.003128 0.057908 0.051000 0.030154 0.050458 0.000000 0.000000 0.049878 0.000000 0.002363 0.000000 0.035007 0.063718 0.029571 0.019571 0.063363 0.029444 0.057216 0.003708 0.046503 0.0191 0.004820 0.028652 0.027811 0.002711 0.140789 0.027625 0.000000 0.000000 0.062711 0.015291 0.004797 0.0 0.003105 0.00409 0.020574 0.042753 0.0 0.0 0.0 0.020517 0.033384 0.000000 0.020764 0.013927 0.000000 0.000000 0.013674 0.000000 0.012947 0.039392 0.026763 0.000000 0.031408 0.002750 0.029309 0.0 0.000000 0.053594 0.002971 0.033034 0.037216 0.059558 0.0 0.0 0.038775 0.004235 0.000000 0.009544 0.021806 0.105639 0.047865 0.026211 0.034803 0.0 0.0 0.0 0.000000 0.003416 0.008041 0.004230 0.0 0.00353 0.033381 0.000000 0.000000 0.003209 0.010919 0.111598 0.023189 0.110992 0.033454 0.003583 0.017919 0.002591 0.018516 0.067864 0.010745 0.008198 0.032378 0.041834 0.041978 0.000000 0.053085 0.000000 0.002969 0.003025 0.00000 0.019703 0.010487 0.0 0.0 0.0 0.0 0.035547 0.018334 0.016587 0.073773 0.025326 0.228302 0.063783 0.000000 0.015386 0.010485 0.012220 0.000000 0.003239 0.006326 0.038884 0.031469 0.026227 0.012207 0.033351 0.013698 0.043563 0.000000 0.013896 0.058176 0.002911 0.002901 0.017934 0.176404 0.002761 0.000000 0.020469 0.000000 0.000000 0.036553 0.002220 0.095919 0.046977 0.038793 0.002467 0.000000 0.0 0.0 0.0 0.0 0.013946 0.062361 0.000000 0.000000 0.000000 0.000000 0.000000 0.002364 0.000000 0.000000 0.018592 0.000000 0.055097 0.000000 0.053392 0.000000 0.006383 0.082346 0.031903 0.069980 0.000000 0.020764 0.014864 0.044179 0.005004 0.025164 0.003358 0.005361 0.000000 0.002970 0.099930 0.014503 0.020908 0.085130 0.114315 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.074339 0.011769 0.003534 0.000000 0.0 0.003141 0.000000 0.0 0.000000 0.031112 0.023774 0.041293 0.009397 0.0 0.024176 0.0 0.000000 0.000000 0.053428 0.0 0.019221 0.000000 0.000000 0.0 0.022973 0.003581 0.000000 0.000000 0.000000 0.000000 0.042130 0.000000 0.000000 0.0 0.000000 0.000000 0.178870 0.000000 0.000000 0.022237 0.160370 0.000000 0.020103 0.0 0.007857 0.0 0.00000 0.002542 0.000000 0.013024 0.039002 0.019495 0.00000 0.00000 0.000000 0.045567 0.031283 0.000000 0.022565 0.035441 0.011211 0.075173 0.023098 0.022763 0.000000 0.023619 0.000000 0.030852 0.000000 0.034897 0.051614 0.045126 0.018497 0.015551 0.028849 0.005517 0.012104 0.012262 0.022230 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.020265 0.000000 0.003078 0.003516 0.029766 0.100930 0.027484 0.018657 0.019804 0.027891 0.014714 0.000000 0.000000 0.000000 0.000000 0.002551 0.036200 0.000000 0.031830 0.00000 0.046899 0.124678 0.027054 0.108660 0.005550 0.022054 0.029191 0.042134 0.000000 0.053389 0.086942 0.093599 0.040297 0.049833 0.000000 0.030522 0.012639 0.000000 0.000000 0.014928 0.024212 0.000000 0.000000 0.000000 0.000000 0.070560 0.000000 0.000000 0.000000 0.023820 0.000000 0.009546 0.031113 0.000000 0.041256 0.015546 0.044991 0.055338 0.040443 0.000000 0.004279 0.002747 0.002727 0.049629 0.027963 0.002573 0.000000 0.043282 0.055464 0.034151 0.024764 0.044661 0.030211 0.000000 0.002668 0.000000 0.008938 0.062551 0.048920 0.015901 0.047873 0.011828 0.031383 0.000000 0.000000 0.000000 0.113874 0.027148 0.0 0.000000 0.008981 0.022275 0.036330 0.029254 0.036694 0.067970 0.000000 0.003203 0.009714 0.00000 0.000000 0.009912 0.049779 0.004375 0.000000 0.000000 0.000000 0.031192 0.039840 0.046844 0.020933 0.000000 0.016321 0.026433 0.043508 0.003069 0.000000 0.009115 0.015410 0.049188 0.012865 0.011783 0.010250 0.007553 0.037711 0.000000 0.007205 0.000000 0.012279 0.067504 0.062466 0.045845 0.000000 0.011885 0.002952 0.065449 0.071246 0.008725 0.000000 0.021736 0.054012 0.018393 0.013003 0.015907 0.000000 0.0 0.000000 0.023515 0.035155 0.002548 0.014746 0.035720 0.003107 0.000000 0.00000 0.000000 0.002406 0.012688 0.008393 0.026527 0.012356 0.002912 0.022810 0.018866 0.031835 0.034632 0.021879 0.0 0.003489 0.003908 0.042642 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.011983 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.070449 0.031125 0.077299 0.014552 0.043368 0.094109 0.034960 0.037834 0.064774 0.000000 0.034412 0.0 0.015786 0.017650 0.038637 0.028739 0.052746 0.003012 0.015140 0.013485 0.000000 0.082816 0.022880 0.231285 0.011787 0.046769 0.048383 0.178102 0.0 0.017931 0.017397 0.061699 0.003852 0.124588 0.023311 0.000000 0.013364 0.010038 0.019499 0.000000 0.016079 0.003207 0.051913 0.003737 0.034206 0.057903 0.022050 0.002630 0.003438 0.002878 0.008108 0.003334 0.019278 0.013945 0.022690 0.003599 0.000000 0.036958 0.000000 0.068085 0.022957 0.063366 0.0 0.002687 0.187667 0.000000 0.163078 0.024622 0.019923 0.031216 0.266421 0.0 0.027319 0.010698 0.010794 0.045300 0.090740 0.000000 0.014468 0.028947 0.000000 0.024616 0.161412 0.040574 0.010854 0.002342 0.031709 0.011061 0.042517 0.024675 0.010979 0.021479 0.007769 0.019657 0.014843 0.000000 0.000000 0.000000 0.003058 0.097208 0.020661 0.039068 0.021309 0.002708 0.012989 0.000000 0.016418 0.005017 0.015921 0.009488 0.169181 0.011126 0.018414 0.000000 0.023976 0.020956 0.015273 0.001909 0.000000 0.000000 0.0 0.026897 0.000000 0.056401 0.000000 0.025119 0.029377 0.000000 0.015406 0.059889 0.027949 0.005691 0.028482 0.005955 0.00000 0.010480 0.012695 0.019181 0.038400 0.022251 0.020192 0.069139 0.042309 0.010969 0.074271 0.000000 0.000000 0.005595 0.000000 0.000000 0.035807 0.003128 0.000000 0.021639 0.020130 0.024531 0.000000 0.000000 0.009721 0.000000 0.0029 0.0 0.004090 0.036788 0.043047 0.024193 0.042348 0.000000 0.042741 0.000000 0.012029 0.000000 0.050295 0.0 0.028437 0.000000 0.022823 0.023884 0.011058 0.000000 0.253168 0.046985 0.005479 0.053796 0.042891 0.000000 0.007034 0.003171 0.011261 0.003970 0.0 0.000000 0.231260 0.015545 0.000000 0.003282 0.033074 0.000000 0.010426 0.000000 0.040462 0.038708 0.002372 0.026936 0.000000 0.088502 0.020085 0.085131 0.000000 0.020928 0.000000 0.000000 0.0 0.129774 0.000000 0.000000 0.006278 0.0 0.003453 0.036795 0.042385 0.068819 0.007571 0.015443 0.000000 0.000000 0.000000 0.002095 0.055079 0.012076 0.003502 0.025296 0.016427 0.0 0.0 0.058004 0.003109 0.023779 0.0 0.020223 0.051297 0.000000 0.000000 0.033636 0.000000 0.016879 0.000000 0.039383 0.099502 0.002978 0.000000 0.026763 0.000000 0.042747 0.013668 0.000000 0.000000 0.024238 0.021802 0.035742 0.032464 0.019382 0.009927 0.058241 0.048829 0.033776 0.053107 0.000000 0.022719 0.039978 0.038802 0.000000 0.000000 0.022553 0.014827 0.019973 0.017436 0.022530 0.029598 0.000000 0.002394 0.027144 0.000000 0.000000 0.000000 0.017116 0.0 0.013051 0.000000 0.003643 0.000000 0.002998 0.021132 0.000000 0.032315 0.019228 0.000000 0.094321 0.000000 0.041732 0.002776 0.066800 0.016829 0.023125 0.074991 0.000000 0.025233 0.002874 0.030601 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.010705 0.023491 0.000000 0.000000 0.000000 0.000000 0.0 0.002638 0.0 0.017258 0.029002 0.201860 0.041953 0.004159 0.000000 0.050363 0.031708 0.038731 0.000000 0.000000 0.011098 0.005289 0.051263 0.000000 0.000000 0.000000 0.008693 0.000000 0.009409 0.000000 0.011769 0.082022 0.024001 0.051728 0.039814 0.011600 0.079529 0.0 0.003260 0.002863 0.076652 0.059626 0.000000 0.003191 0.000000 0.000000 0.000000 0.016927 0.002592 0.021361 0.035478 0.003361 0.027211 0.055539 0.041604 0.011025 0.075729 0.0 0.034382 0.000000 0.046961 0.014401 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.036702 0.003349 0.045296 0.020105 0.028152 0.009438 0.002579 0.019162 0.030386 0.002705 0.000000 0.000000 0.000000 0.019132 0.008339 0.000000 0.005360 0.0 0.000000 0.000000 0.004621 0.024497 0.049836 0.006763 0.012949 0.028531 0.000000 0.011746 0.0 0.021402 0.000000 0.000000 0.006226 0.016819 0.027552 0.013724 0.045676 0.002844 0.010871 0.000000 0.000000 0.000000 0.050939 0.000000 0.043216 0.029437 0.000000 0.007071 0.193575 0.003123 0.037909 0.0 0.037248 0.003698 0.033732 0.068684 0.000000 0.019082 0.024675 0.030097 0.000000 0.078711 0.090676 0.016994 0.009814 0.006625 0.000000 0.008475 0.031964 0.000000 0.003338 0.024154 0.031274 0.000000 0.009177 0.002933 0.033399 0.034125 0.044940 0.035517 0.058987 0.079909 0.008815 0.027506 0.031506 0.004041 0.032438 0.000000 0.000000 0.003466 0.019983 0.034423 0.003209 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.037750 0.000000 0.023160 0.000000 0.002945 0.050454 0.074049 0.004085 0.000000 0.018513 0.047779 0.014788 0.020474 0.007256 0.000000 0.007252 0.000000 0.031451 0.016492 0.014421 0.012871 0.000000 0.094018 0.032859 0.000000 0.083978 0.003584 0.072781 0.033900 0.050422 0.003454 0.063561 0.003804 0.008017 0.000000 0.000000 0.002759 0.007871 0.028777 0.019336 0.055567 0.0000 0.003282 0.003281 0.000000 0.013168 0.000000 0.0 0.003169 0.036877 0.055535 0.043890 0.029255 0.003222 0.000000 0.002967 0.019399 0.012035 0.026816 0.032419 0.032923 0.029239 0.009701 0.020556 0.062436 0.032759 0.0 0.044772 0.000000 0.0 0.021042 0.0 0.009411 0.008330 0.024668 0.000000 0.000000 0.023806 0.010717 0.051047 0.000000 0.028142 0.000000 0.023435 0.000000 0.018460 0.053206 0.082235 0.013714 0.066953 0.000000 0.002962 0.042620 0.061504 0.047094 0.000000 0.018375 0.000000 0.000000 0.022571 0.005814 0.040639 0.029022 0.033748 0.073420 0.013919 0.002216 0.019319 0.000000 0.012103 0.026243 0.000000 0.000000 0.004157 0.017143 0.0 0.029819 0.023804 0.040391 0.014759 0.064858 0.011096 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.026369 0.0 0.004846 0.058375 0.060120 0.034502 0.028450 0.068139 0.052832 0.016093 0.000000 0.000000 0.013316 0.014802 0.037408 0.016851 0.071552 0.013979 0.014955 0.017001 0.041707 0.000000 0.024433 0.027212 0.031805 0.000000 0.003423 0.010259 0.037956 0.012093 0.031222 0.016851 0.011121 0.035497 0.002062 0.012965 0.043286 0.000000 0.002986 0.003962 0.019236 0.039632 0.025471 0.025160 0.0 0.035514 0.056624 0.011507 0.009551 0.0 0.020886 0.037528 0.000000 0.022672 0.064504 0.000000 0.042451 0.036398 0.000000 0.007709 0.052134 0.029125 0.000000 0.000000 0.008632 0.000000 0.010019 0.073927 0.002064 0.000000 0.010443 0.000000 0.018296 0.006913 0.000000 0.015600 0.047393 0.102072 0.023119 0.026348 0.004694 0.000000 0.115241 0.000000 0.000000 0.097318 0.054289 0.00000 0.000000 0.025794 0.018670 0.023663 0.000000 0.011991 0.000000 0.000000 0.00000 0.000000 0.012562 0.000000 0.013583 0.00000 0.000000 0.000000 0.049837 0.072754 0.000000 0.036191 0.000000 0.004379 0.000000 0.014653 0.000000 0.000000 0.000000 0.012088 0.014971 0.000000 0.000000 0.000000 0.036919 0.003788 0.035937 0.012578 0.060286 0.000000 0.000000 0.000000 0.021626 0.02397 0.072005 0.0 0.0 0.06347 0.000000 0.000000 0.034523 0.088721 0.038781 0.000000 0.003317 0.000000 0.010645 0.000000 0.000000 0.000000 0.000000 0.0 0.032492 0.128564 0.000000 0.0 0.064687 0.009973 0.010684 0.0 0.023135 0.044719 0.012911 0.000000 0.037893 0.000000 0.000000 0.003367 0.055066 0.08451 0.047570 0.000000 0.000000 0.0 0.0 0.025473 0.000000 0.025785 0.051381 0.043404 0.000000 0.000000 0.000000 0.055240 0.000000 0.000000 0.017441 0.021820 0.044556 0.0 0.029357 0.014716 0.044008 0.026138 0.0 0.000000 0.025418 0.000000 0.00000 0.025183 0.000000 0.024176 0.003783 0.080566 0.019953 0.038925 0.139966 0.054773 0.000000 0.000000 0.000000 0.00000 0.019566 0.000000 0.055406 0.009297 0.011121 0.088158 0.040286 0.054045 0.028675 0.026607 0.000000 0.035484 0.032569 0.002859 0.000000 0.015741 0.000000 0.051249 0.002377 0.000000 0.011475 0.025191 0.052248 0.051180 0.000000 0.000000 0.016153 0.000000 0.015281 0.019887 0.015943 0.009206 0.061776 0.016112 0.024301 0.000000 0.010013 0.003197 0.000000 0.047247 0.049615 0.000000 0.000000 0.000000 0.000000 0.0 0.003081 0.037776 0.000000 0.003361 0.003269 0.036265 0.028438 0.023548 0.078085 0.022747 0.019989 0.022006 0.000000 0.118105 0.0 0.013577 0.000000 0.009799 0.0 0.033110 0.109371 0.016045 0.000000 0.000000 0.076019 0.022917 0.023325 0.017209 0.024669 0.000000 0.000000 0.000000 0.019705 0.000000 0.0 0.000000 0.019417 0.060010 0.031264 0.000000 0.003281 0.028783 0.000000 0.031566 0.026763 0.000000 0.055209 0.011112 0.000000 0.000000 0.000000 0.000000 0.039393 0.037024 0.000000 0.003009 0.000000 0.0 0.013957 0.041583 0.003226 0.00000 0.024505 0.027725 0.000000 0.027647 0.010668 0.014865 0.0 0.000000 0.0 0.004011 0.026607 0.017702 0.110095 0.020506 0.000000 0.046230 0.000000 0.002543 0.000000 0.002825 0.015965 0.000000 0.056998 0.039452 0.063198 0.000000 0.002479 0.039383 0.000000 0.007464 0.028878 0.018831 0.000000 0.018698 0.013088 0.034974 0.007417 0.018093 0.060867 0.000000 0.034329 0.002900 0.014226 0.008952 0.014019 0.000000 0.036250 0.000000 0.000000 0.020931 0.000000 0.000000 0.003184 0.002225 0.008107 0.016624 0.016200 0.056484 0.000000 0.014251 0.011768 0.016403 0.037570 0.157762 0.019120 0.000000 0.017038 0.051462 0.026330 0.004734 0.019523 0.009641 0.000000 0.00000 0.018673 0.000000 0.022662 0.002689 0.028729 0.053813 0.040915 0.015913 0.011482 0.019504 0.000000 0.009563 0.000000 0.037961 0.020818 0.000000 0.034542 0.018214 0.021840 0.019554 0.014359 0.013060 0.000000 0.002251 0.054400 0.000000 0.011983 0.004726 0.013518 0.044781 0.047974 0.039731 0.012881 0.010563 0.00282 0.0 0.026226 0.047956 0.053713 0.014668 0.012668 0.035176 0.002920 0.041452 0.058186 0.076894 0.002104 0.117151 0.015806 0.000000 0.056487 0.014722 0.003549 0.008012 0.011369 0.017840 0.159265 0.023104 0.021748 0.003171 0.002965 0.034958 0.000000 0.029365 0.000000 0.033238 0.007227 0.015039 0.000000 0.049168 0.059212 0.002336 0.000000 0.051290 0.028018 0.002965 0.026694 0.010313 0.018978 0.050573 0.044231 0.0 0.009407 0.032850 0.039330 0.023927 0.055303 0.000000 0.011849 0.026564 0.000000 0.019244 0.008525 0.000000 0.145156 0.026723 0.080823 0.000000 0.047169 0.000000 0.023521 0.036482 0.000000 0.039395 0.028082 0.001853 0.013561 0.026198 0.017686 0.104813 0.035073 0.0 0.000000 0.049594 0.000000 0.031640 0.014026 0.035538 0.003076 0.014879 0.003740 0.087366 0.132533 0.055881 0.011776 0.046733 0.054610 0.000000 0.027886 0.000000 0.066052 0.009039 0.017899 0.013164 0.022454 0.169856 0.000000 0.010303 0.000000 0.068611 0.236798 0.035544 0.0 0.017721 0.040233 0.016052 0.000000 0.002519 0.0 0.017459 0.000000 0.028695 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.059061 0.006470 0.000000 0.002551 0.000000 0.036331 0.028172 0.033774 0.063680 0.017359 0.050103 0.000000 0.039368 0.017537 0.003655 0.000000 0.025409 0.065413 0.037548 0.000000 0.027117 0.101198 0.000000 0.000000 0.003285 0.004157 0.018225 0.000000 0.026176 0.020356 0.003548 0.037779 0.003720 0.039630 0.032595 0.022357 0.011588 0.0618 0.057430 0.016407 0.011922 0.089449 0.014009 0.021028 0.018373 0.000000 0.072524 0.121260 0.026836 0.009774 0.000000 0.010384 0.003853 0.004060 0.002896 0.003449 0.003529 0.111553 0.237592 0.027428 0.000000 0.003794 0.003542 0.002822 0.010483 0.021315 0.012017 0.000000 0.000000 0.228515 0.019688 0.048151 0.003033 0.004236 0.000000 0.039283 0.000000 0.066042 0.023497 0.021237 0.003441 0.0 0.003759 0.000000 0.017072 0.023915 0.024236 0.079022 0.003696 0.074321 0.013500 0.002364 0.122631 0.229009 0.067374 0.000000 0.075499 0.000000 0.019941 0.000000 0.013875 0.079943 0.041398 0.013639 0.000000 0.004478 0.053532 0.013674 0.014104 0.035876 0.036139 0.021301 0.000000 0.131680 0.003336 0.034097 0.017846 0.021895 0.057352 0.120082 0.000000 0.002244 0.00000 0.031397 0.071429 0.014429 0.0 0.003695 0.003540 0.019071 0.024407 0.058170 0.004222 0.003469 0.230046 0.049414 0.050219 0.003424 0.004284 0.015436 0.011398 0.156399 0.019418 0.045381 0.004251 0.084941 0.003204 0.012991 0.032100 0.003364 0.002953 0.021809 0.082101 0.000000 0.004075 0.024853 0.003944 0.015749 0.000000 0.003399 0.048405 0.024924 0.043603 0.032636 0.012465 0.048461 0.033659 0.021755 0.027618 0.032871 0.014955 0.003207 0.006732 0.000000 0.069278 0.003728 0.004028 0.000000 0.00000 0.00000 0.000000 0.000000 0.000000 0.015607 0.012033 0.002492 0.015849 0.070053 0.003954 0.015197 0.104840 0.013245 0.000000 0.082354 0.045413 0.042326 0.011748 0.000000 0.044545 0.044964 0.026358 0.033662 0.020435 0.000000 0.002863 0.055339 0.115943 0.010091 0.012879 0.026707 0.011362 0.146409 0.000000 0.039217 0.004360 0.028173 0.028153 0.016495 0.247655 0.000000 0.079941 0.016684 0.020183 0.003391 0.000000 0.013720 0.052308 0.085921 0.062985 0.043103 0.01961 0.016373 0.204662 0.028811 0.003588 0.086486 0.056586 0.000000 0.029776 0.037599 0.003712 0.019925 0.004467 0.019150 0.003151 0.041353 0.014965 0.098431 0.003515 0.000000 0.049429 0.010679 0.003249 0.025538 0.046436 0.024850 0.167160 0.0 0.046671 0.014059 0.000000 0.027303 0.000000 0.01834 0.014808 0.0 0.035765 0.090700 0.087603 0.003444 0.025788 0.000000 0.003248 0.081111 0.003550 0.004735 0.019377 0.003372 0.013592 0.000000 0.046556 0.010643 0.000000 0.00384 0.0 0.014097 0.0 0.0 0.0 0.016597 0.0 0.0 0.0633 0.014221 0.033072 0.040544 0.0 0.000000 0.023093 0.033852 0.03873 0.038356 0.0 0.000000 0.014374 0.021257 0.028664 0.000000 0.000000 0.000000 0.000000 0.008688 0.061314 0.025824 0.00000 0.114287 0.010552 0.01481 0.03977 0.062710 0.020624 0.024117 0.019253 0.000000 0.026787 0.020933 0.0 0.034956 0.000000 0.089674 0.040879 0.002585 0.003235 0.000000 0.003346 0.009373 0.000000 0.000000 0.000000 0.031789 0.000000 0.000000 0.000000 0.003927 0.028043 0.025038 0.000000 0.108074 0.015938 0.023524 0.020941 0.015649 0.048928 0.019154 0.000000 0.117303 0.065618 0.000000 0.000000 0.000000 0.000000 0.002107 0.024496 0.012303 0.047587 0.018851 0.038274 0.108314 0.021060 0.063760 0.014393 0.021243 0.002980 0.032358 0.033302 0.026539 0.021447 0.000000 0.054217 0.020701 0.002633 0.002747 0.021610 0.003202 0.000000 0.00000 0.026469 0.057994 0.042756 0.027443 0.036554 0.007984 0.049581 0.002551 0.000000 0.009095 0.031461 0.010155 0.086125 0.059416 0.038378 0.021944 0.034233 0.000000 0.008253 0.018145 0.044755 0.000000 0.034091 0.000000 0.0 0.004062 0.022706 0.000000 0.045367 0.024875 0.040075 0.017111 0.022596 0.002743 0.015857 0.013796 0.013027 0.042725 0.000000 0.028755 0.022677 0.021186 0.140935 0.071875 0.004762 0.003456 0.002939 0.004593 0.015962 0.039787 0.081516 0.174511 0.040196 0.019770 0.025104 0.000000 0.000000 0.0 0.035586 0.022260 0.002670 0.000000 0.000000 0.042082 0.002844 0.016084 0.003557 0.0 0.035013 0.058505 0.0 0.0 0.023106 0.099226 0.004230 0.108029 0.090073 0.0 0.002867 0.000000 0.006155 0.000000 0.012377 0.000000 0.000000 0.017873 0.007295 0.033395 0.033203 0.006910 0.102492 0.008534 0.000000 0.006605 0.014788 0.028259 0.000000 0.000000 0.038296 0.002934 0.022788 0.010739 0.017173 0.008229 0.000000 0.013362 0.036678 0.051408 0.000000 0.012122 0.022154 0.000000 0.002774 0.000000 0.002478 0.000000 0.021833 0.000000 0.016008 0.000000 0.016630 0.017764 0.000000 0.001963 0.005832 0.007432 0.000000 0.002231 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.007585 0.0 0.017025 0.058421 0.024429 0.033500 0.056563 0.003962 0.042630 0.008797 0.014476 0.026148 0.009840 0.000000 0.038616 0.000000 0.035639 0.003159 0.003569 0.0 0.021462 0.004415 0.012278 0.000000 0.000000 0.031382 0.060413 0.036135 0.002228 0.025312 0.017006 0.009227 0.006721 0.044674 0.009001 0.000000 0.024896 0.000000 0.000000 0.020717 0.067969 0.002813 0.025149 0.030880 0.0 0.024967 0.033956 0.023137 0.039243 0.031391 0.012647 0.000000 0.000000 0.078050 0.047572 0.039711 0.034029 0.000000 0.014345 0.014010 0.0 0.044593 0.000000 0.010879 0.000000 0.000000 0.003411 0.042941 0.093620 0.031295 0.019777 0.003137 0.088926 0.000000 0.000000 0.0 0.000000 0.000000 0.019962 0.000000 0.042407 0.040154 0.0 0.025400 0.000000 0.042380 0.000000 0.0 0.069327 0.053309 0.026044 0.028358 0.021729 0.029732 0.000000 0.009789 0.007020 0.007926 0.014588 0.013599 0.023155 0.025149 0.032615 0.036556 0.003773 0.002830 0.013757 0.002937 0.003004 0.000000 0.018732 0.020784 0.000000 0.004008 0.046692 0.000000 0.000000 0.000000 0.000000 0.017232 0.000000 0.027095 0.002759 0.000000 0.010784 0.026814 0.028053 0.003059 0.004159 0.029796 0.023953 0.000000 0.015751 0.000000 0.019863 0.000000 0.00000 0.006931 0.013391 0.021607 0.076750 0.063450 0.039444 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.089779 0.000000 0.009052 0.037896 0.026479 0.003276 0.035712 0.029929 0.040214 0.029597 0.000000 0.008402 0.019457 0.000000 0.035822 0.021915 0.116601 0.028379 0.013462 0.021838 0.004264 0.004836 0.045608 0.000000 0.000000 0.000000 0.019269 0.022123 0.047780 0.000000 0.000000 0.028589 0.000000 0.015457 0.000000 0.091578 0.051122 0.031681 0.032264 0.0 0.031596 0.018258 0.048294 0.003833 0.000000 0.000000 0.089133 0.031207 0.027961 0.010997 0.013460 0.014640 0.020613 0.014479 0.043327 0.010826 0.027748 0.029669 0.014160 0.073852 0.000000 0.000000 0.000000 0.015923 0.007105 0.005912 0.0 0.000000 0.000000 0.000000 0.011135 0.000000 0.0 0.018863 0.030556 0.036884 0.000000 0.040578 0.000000 0.037179 0.039100 0.028066 0.000000 0.00792 0.033073 0.018208 0.067693 0.0 0.0 0.026469 0.046242 0.002999 0.000000 0.000000 0.000000 0.033742 0.033202 0.000000 0.056314 0.027350 0.009476 0.008046 0.018446 0.007142 0.003135 0.000000 0.034296 0.068819 0.000000 0.002962 0.020021 0.026691 0.029945 0.002628 0.002639 0.031517 0.000000 0.022749 0.005802 0.0 0.011775 0.029268 0.014451 0.048086 0.033391 0.003027 0.000000 0.030731 0.012178 0.0 0.000000 0.034831 0.016763 0.033230 0.000000 0.043673 0.000000 0.035797 0.033483 0.003065 0.021076 0.000000 0.000000 0.056125 0.002385 0.034191 0.044545 0.000000 0.022736 0.000000 0.009789 0.000000 0.002719 0.011678 0.041477 0.059482 0.0 0.0 0.047388 0.018522 0.000000 0.000000 0.0 0.002642 0.024855 0.028583 0.030498 0.015388 0.000000 0.047209 0.016375 0.000000 0.000000 0.011115 0.000000 0.003930 0.041273 0.003259 0.000000 0.000000 0.018463 0.037700 0.000000 0.000000 0.042429 0.020726 0.006062 0.040260 0.002467 0.000000 0.000000 0.002844 0.051848 0.012070 0.043344 0.027774 0.00000 0.017712 0.063964 0.011675 0.024055 0.000000 0.0 0.088366 0.106910 0.080920 0.038429 0.000000 0.000000 0.059640 0.003473 0.083424 0.000000 0.003576 0.000000 0.059601 0.035800 0.042926 0.000000 0.000000 0.036336 0.019199 0.041339 0.0 0.013832 0.011849 0.043537 0.0 0.000000 0.018118 0.010641 0.045636 0.000000 0.000000 0.002730 0.003613 0.025735 0.080850 0.020725 0.025439 0.006639 0.025177 0.023681 0.0 0.000000 0.000000 0.044625 0.042336 0.011034 0.000000 0.000000 0.040287 0.057794 0.000000 0.036171 0.005872 0.039788 0.045082 0.059240 0.040054 0.002992 0.002661 0.000000 0.0 0.0 0.0 0.035707 0.028419 0.000000 0.033264 0.081279 0.035590 0.0 0.043299 0.038389 0.000000 0.000000 0.000000 0.000000 0.037566 0.069430 0.000000 0.000000 0.000000 0.000000 0.014704 0.014062 0.003085 0.020263 0.051511 0.036831 0.047221 0.000000 0.000000 0.000000 0.0 0.000000 0.024660 0.037560 0.013537 0.014183 0.000000 0.033991 0.00000 0.023998 0.000000 0.028248 0.046931 0.000000 0.033056 0.000000 0.000000 0.000000 0.002721 0.035779 0.154552 0.035190 0.018276 0.000000 0.000000 0.022355 0.056879 0.00000 0.000000 0.004096 0.005223 0.024684 0.005364 0.002766 0.028171 0.045276 0.000000 0.064664 0.032434 0.002856 0.047652 0.083999 0.002921 0.000000 0.000000 0.044729 0.052141 0.009858 0.017973 0.006389 0.000000 0.000000 0.077873 0.002513 0.028688 0.000000 0.020959 0.025197 0.023594 0.017548 0.000000 0.003506 0.017846 0.002651 0.010914 0.006204 0.0 0.015874 0.004372 0.005643 0.020460 0.024144 0.000000 0.017451 0.0 0.000000 0.0 0.023298 0.000000 0.071493 0.000000 0.003474 0.016265 0.015947 0.000000 0.000000 0.069941 0.000000 0.000000 0.000000 0.000000 0.000000 0.067863 0.057453 0.000000 0.083625 0.056208 0.003194 0.0 0.032093 0.000000 0.000000 0.003657 0.024133 0.000000 0.0 0.030777 0.064364 0.000000 0.010704 0.006132 0.022452 0.010586 0.000000 0.011341 0.014385 0.023824 0.045238 0.016030 0.00000 0.021034 0.052060 0.045715 0.047408 0.038581 0.008893 0.022998 0.028831 0.028314 0.003114 0.052800 0.0 0.037182 0.000000 0.056246 0.019070 0.003057 0.000000 0.022010 0.017719 0.000000 0.000000 0.000000 0.002929 0.000000 0.000000 0.045446 0.047821 0.000000 0.006776 0.007116 0.022495 0.000000 0.002912 0.051029 0.000000 0.037290 0.017427 0.000000 0.000000 0.007683 0.047018 0.020337 0.0 0.024456 0.041289 0.075197 0.000000 0.004050 0.000000 0.000000 0.090892 0.011173 0.050775 0.034677 0.029323 0.235504 0.014836 0.010051 0.003219 0.002876 0.027152 0.040203 0.012178 0.000000 0.003395 0.005001 0.013365 0.061435 0.022020 0.104043 0.016859 0.004551 0.005260 0.120523 0.027377 0.021430 0.000000 0.029658 0.021695 0.0 0.005195 0.045190 0.073729 0.0 0.016946 0.003909 0.000000 0.034191 0.002779 0.024640 0.003283 0.002960 0.0 0.000000 0.020825 0.009372 0.035718 0.022238 0.025528 0.031833 0.023664 0.021884 0.003242 0.000000 0.038771 0.003321 0.000000 0.000000 0.048847 0.074438 0.016722 0.000000 0.000000 0.003210 0.037328 0.0 0.000000 0.000000 0.016714 0.013883 0.045574 0.017238 0.002739 0.014351 0.031692 0.000000 0.000000 0.022155 0.021653 0.000000 0.003367 0.002829 0.015882 0.076775 0.030371 0.006119 0.012261 0.023108 0.008674 0.0 0.000000 0.021143 0.041530 0.000000 0.000000 0.000000 0.000000 0.011195 0.016037 0.024383 0.020479 0.050862 0.002600 0.042282 0.055070 0.022267 0.002292 0.015690 0.069283 0.012933 0.000000 0.045741 0.078946 0.025140 0.011318 0.000000 0.012251 0.000000 0.000000 0.014962 0.000000 0.039220 0.032030 0.031255 0.000000 0.003613 0.025691 0.000000 0.042200 0.021795 0.000000 0.003788 0.032320 0.000000 0.000000 0.003047 0.029409 0.011034 0.022753 0.000000 0.048499 0.030993 0.023161 0.002283 0.0 0.000000 0.000000 0.000000 0.016979 0.000000 0.046470 0.000000 0.054544 0.0 0.006648 0.024362 0.046697 0.029689 0.000000 0.033050 0.0 0.003848 0.003558 0.037676 0.000000 0.035831 0.059809 0.025935 0.031920 0.024170 0.038990 0.000000 0.019451 0.023448 0.000000 0.016112 0.013913 0.037385 0.008592 0.033415 0.024170 0.087875 0.000000 0.100992 0.019468 0.063877 0.018332 0.043227 0.050652 0.048032 0.074427 0.000000 0.002833 0.000000 0.026066 0.164587 0.039165 0.002585 0.000000 0.011900 0.025421 0.0 0.024510 0.000000 0.000000 0.005356 0.000000 0.000000 0.010982 0.039552 0.017814 0.017811 0.000000 0.000000 0.181471 0.005654 0.024584 0.027146 0.003318 0.014102 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.024007 0.027352 0.006998 0.065881 0.014248 0.000000 0.074257 0.037758 0.022257 0.000000 0.016361 0.003786 0.008741 0.064709 0.000000 0.019999 0.009570 0.007256 0.000000 0.002911 0.029450 0.027152 0.097102 0.018884 0.004253 0.029093 0.003546 0.057659 0.005703 0.000000 0.010186 0.0 0.024065 0.000000 0.027399 0.018502 0.040209 0.036072 0.016127 0.035020 0.034074 0.028457 0.020299 0.074763 0.007272 0.025149 0.026359 0.005102 0.207889 0.000000 0.005067 0.000000 0.036654 0.024712 0.000000 0.030818 0.004882 0.016678 0.054017 0.028616 0.0 0.000000 0.022935 0.004657 0.026671 0.024964 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015028 0.035624 0.004894 0.000000 0.029737 0.003775 0.000000 0.000000 0.000000 0.000000 0.000000 0.061983 0.000000 0.0 0.026193 0.000000 0.000000 0.013908 0.121872 0.010715 0.003549 0.031052 0.000000 0.011239 0.027757 0.000000 0.057272 0.00000 0.0 0.000000 0.009883 0.015698 0.000000 0.019540 0.02352 0.000000 0.054147 0.000000 0.002367 0.019329 0.003606 0.000000 0.000000 0.041104 0.011619 0.000000 0.0 0.014148 0.002723 0.0 0.045986 0.014417 0.000000 0.000000 0.046210 0.026927 0.026685 0.01608 0.013022 0.003200 0.000000 0.003097 0.012740 0.012737 0.007684 0.000000 0.040582 0.000000 0.019152 0.000000 0.007215 0.0 0.011130 0.010511 0.00237 0.023822 0.032523 0.010831 0.011852 0.000000 0.000000 0.021956 0.029068 0.019030 0.029171 0.011037 0.062721 0.016006 0.037951 0.014705 0.044426 0.012058 0.000000 0.085455 0.022047 0.015929 0.018002 0.024115 0.011260 0.010274 0.002780 0.034617 0.003182 0.045305 0.000000 0.045008 0.030120 0.006683 0.010564 0.002719 0.000000 0.000000 0.039276 0.000000 0.000000 0.000000 0.013229 0.000000 0.003072 0.022301 0.020620 0.029042 0.015414 0.015461 0.011034 0.035096 0.000000 0.00343 0.000000 0.023441 0.000000 0.000000 0.026200 0.000000 0.0 0.010631 0.023644 0.038045 0.000000 0.087541 0.003113 0.000000 0.000000 0.002771 0.064176 0.071145 0.00000 0.038600 0.000000 0.000000 0.0 0.002554 0.0 0.003286 0.075972 0.051288 0.039484 0.003056 0.006556 0.111753 0.025327 0.000000 0.019697 0.035105 0.054310 0.048144 0.002938 0.000000 0.024983 0.009496 0.013133 0.007320 0.000000 0.010130 0.041326 0.032621 0.033550 0.000000 0.034959 0.055000 0.019991 0.053695 0.012299 0.013504 0.020551 0.059938 0.023695 0.002295 0.023038 0.037303 0.002389 0.017407 0.030750 0.003098 0.018099 0.002554 0.076069 0.053464 0.000000 0.191277 0.015019 0.056071 0.007752 0.000000 0.021428 0.002554 0.039783 0.016543 0.020415 0.011627 0.000000 0.017536 0.129221 0.076371 0.000000 0.000000 0.000000 0.018338 0.000000 0.016057 0.030737 0.000000 0.009629 0.000000 0.007239 0.007749 0.000000 0.000000 0.034587 0.000000 0.000000 0.024280 0.031450 0.023644 0.021499 0.000000 0.000000 0.002846 0.028665 0.003714 0.033914 0.003401 0.000000 0.031253 0.020827 0.010436 0.002895 0.002902 0.042430 0.014772 0.000000 0.010027 0.080513 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.068677 0.005596 0.028885 0.042041 0.024272 0.002974 0.005541 0.036503 0.000000 0.003217 0.000000 0.002494 0.019630 0.012549 0.030001 0.005594 0.000000 0.043431 0.000000 0.060624 0.027111 0.020271 0.009775 0.034720 0.039838 0.013576 0.003186 0.028421 0.003172 0.136315 0.051654 0.027210 0.019455 0.075904 0.043225 0.010762 0.022383 0.011815 0.068039 0.0 0.000000 0.048178 0.000000 0.008262 0.016460 0.042440 0.049376 0.020045 0.022594 0.012949 0.013528 0.017559 0.022325 0.019610 0.040180 0.003547 0.027022 0.000000 0.013168 0.000000 0.01172 0.012020 0.015646 0.003366 0.006583 0.031728 0.015002 0.020398 0.037622 0.000000 0.000000 0.026366 0.028932 0.045858 0.035166 0.019379 0.007114 0.000000 0.0 0.023394 0.000000 0.025149 0.055899 0.021979 0.000000 0.00503 0.015142 0.0 0.0 0.033210 0.077620 0.006167 0.000000 0.029435 0.004768 0.0 0.017161 0.00000 0.006655 0.02808 0.027875 0.023028 0.040097 0.000000 0.00000 0.019321 0.000000 0.000000 0.020815 0.034990 0.0 0.033666 0.035752 0.000000 0.000000 0.082402 0.033034 0.022173 0.027165 0.027978 0.000000 0.000000 0.018058 0.0000 0.000000 0.039827 0.000000 0.003887 0.00000 0.059911 0.011930 0.003317 0.000000 0.026439 0.035265 0.002768 0.000000 0.023965 0.025245 0.000000 0.000000 0.063211 0.041769 0.000000 0.0 0.033506 0.000000 0.000000 0.033562 0.000000 0.016372 0.000000 0.000000 0.003674 0.045118 0.042367 0.025468 0.000000 0.044800 0.035172 0.000000 0.000000 0.000000 0.019252 0.024405 0.000000 0.033238 0.000000 0.000000 0.000000 0.012753 0.021285 0.003506 0.020232 0.0 0.045405 0.000000 0.043604 0.014186 0.003057 0.044115 0.000000 0.000000 0.034813 0.0 0.027230 0.000000 0.000000 0.000000 0.000000 0.003117 0.048380 0.017607 0.000000 0.070963 0.011017 0.032636 0.013643 0.065114 0.043641 0.0 0.011785 0.003455 0.039129 0.000000 0.000000 0.027741 0.000000 0.000000 0.041912 0.029023 0.000000 0.010358 0.000000 0.089820 0.089820 0.019720 0.000000 0.060709 0.000000 0.000000 0.014946 0.035601 0.014396 0.017801 0.112969 0.000000 0.025469 0.000000 0.023309 0.011211 0.002954 0.002584 0.050561 0.022720 0.000000 0.037286 0.033958 0.003634 0.000000 0.013982 0.012489 0.000000 0.000000 0.010864 0.000000 0.071883 0.008996 0.000000 0.016850 0.044481 0.003144 0.00000 0.038478 0.007885 0.000000 0.029911 0.000 0.034177 0.000000 0.066752 0.002768 0.016962 0.000000 0.024145 0.028425 0.000000 0.047565 0.000000 0.000000 0.010597 0.037701 0.021398 0.000000 0.0 0.012530 0.031262 0.025189 0.000000 0.000000 0.022930 0.024360 0.000000 0.025185 0.025078 0.013150 0.037736 0.000000 0.017334 0.037880 0.017746 0.000000 0.0 0.000000 0.028627 0.011990 0.008966 0.012513 0.011560 0.000000 0.008455 0.000000 0.012911 0.000000 0.002825 0.000000 0.020367 0.024379 0.002187 0.037076 0.031531 0.000000 0.024135 0.020909 0.000000 0.000000 0.013288 0.002477 0.002702 0.000000 0.030551 0.000000 0.027952 0.038739 0.060414 0.038216 0.005650 0.026763 0.022300 0.002984 0.000000 0.000000 0.000000 0.002773 0.002618 0.013801 0.012245 0.032464 0.010496 0.000000 0.000000 0.028290 0.002524 0.031563 0.000000 0.003027 0.035178 0.042224 0.020506 0.003022 0.000000 0.000000 0.000000 0.035754 0.014014 0.014035 0.030600 0.000000 0.021622 0.012762 0.003531 0.058722 0.00000 0.003255 0.059321 0.003834 0.020877 0.000000 0.023612 0.034931 0.000000 0.000000 0.017700 0.000000 0.010368 0.003066 0.000000 0.018597 0.000000 0.0 0.000000 0.037971 0.000000 0.072764 0.033979 0.000000 0.000000 0.024079 0.000000 0.008753 0.000000 0.006926 0.023104 0.005594 0.000000 0.023460 0.003593 0.02172 0.058893 0.083164 0.000000 0.032920 0.010780 0.076012 0.057705 0.003428 0.034434 0.008041 0.003214 0.001457 0.032626 0.000000 0.002890 0.000000 0.074360 0.020093 0.102169 0.015979 0.008238 0.048564 0.004813 0.036057 0.022826 0.0 0.024325 0.013597 0.000000 0.029574 0.048592 0.030880 0.014013 0.026991 0.024197 0.000000 0.017362 0.004550 0.050230 0.000000 0.027732 0.000000 0.038037 0.049715 0.024854 0.018614 0.033272 0.028153 0.061181 0.046633 0.019989 0.081529 0.012442 0.031107 0.020734 0.020822 0.049906 0.021789 0.044972 0.000000 0.000000 0.045609 0.008322 0.015757 0.049835 0.118152 0.002646 0.025965 0.061158 0.002881 0.012263 0.034871 0.009181 0.023315 0.010913 0.021600 0.000000 0.018037 0.002847 0.002927 0.011935 0.008718 0.026462 0.020334 0.026462 0.000000 0.039885 0.000000 0.018395 0.004009 0.012373 0.105698 0.030636 0.0 0.028501 0.005377 0.032746 0.009993 0.0 0.0 0.012221 0.012751 0.002721 0.003944 0.0 0.017342 0.003069 0.000000 0.031319 0.015577 0.003262 0.054856 0.037955 0.023025 0.019300 0.00000 0.002531 0.038006 0.049402 0.021389 0.017694 0.067399 0.005431 0.002978 0.000000 0.022629 0.000000 0.076225 0.017014 0.027932 0.043026 0.0 0.050713 0.046097 0.000000 0.117073 0.009751 0.009099 0.042197 0.059380 0.056414 0.008267 0.0 0.055698 0.021908 0.006153 0.002678 0.000000 0.033747 0.027772 0.027219 0.018750 0.000000 0.000000 0.002656 0.058253 0.000000 0.003351 0.00000 0.000000 0.04819 0.000000 0.000000 0.014065 0.024779 0.035550 0.039889 0.002995 0.003366 0.016268 0.000000 0.035133 0.006487 0.010475 0.003229 0.094209 0.018975 0.070042 0.000000 0.016183 0.025618 0.0 0.036772 0.037465 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.014692 0.002377 0.024363 0.042490 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.019256 0.043342 0.009492 0.066470 0.017986 0.021206 0.000000 0.000000 0.087492 0.007037 0.024049 0.000000 0.003745 0.023939 0.030808 0.019812 0.022029 0.053165 0.000000 0.000000 0.018393 0.003512 0.024401 0.002666 0.035298 0.018221 0.031241 0.000000 0.030349 0.000000 0.081378 0.025524 0.000000 0.010078 0.000000 0.052996 0.062385 0.039683 0.003573 0.024753 0.027979 0.010558 0.017978 0.000000 0.039282 0.007083 0.017614 0.010762 0.023680 0.039315 0.00000 0.000000 0.000000 0.000000 0.003455 0.009969 0.009412 0.000000 0.002949 0.017815 0.000000 0.007226 0.019364 0.045899 0.029073 0.003610 0.017571 0.003329 0.004022 0.020392 0.021003 0.003474 0.000000 0.000000 0.049437 0.002817 0.048503 0.012347 0.014154 0.089977 0.059255 0.000000 0.013949 0.032108 0.024565 0.000000 0.003127 0.000000 0.008473 0.060122 0.000000 0.000000 0.033168 0.018668 0.047188 0.000000 0.017690 0.012471 0.003359 0.011792 0.003690 0.000000 0.0 0.000000 0.002969 0.035658 0.036076 0.022185 0.017615 0.024296 0.000000 0.00000 0.0 0.0 0.033750 0.079208 0.062259 0.020745 0.004397 0.011809 0.041324 0.002234 0.014357 0.003150 0.000000 0.013435 0.000000 0.002845 0.050367 0.032938 0.012428 0.013981 0.018749 0.045063 0.015932 0.000000 0.048656 0.000000 0.000000 0.003538 0.023856 0.023181 0.000000 0.018846 0.013721 0.000000 0.011681 0.102601 0.049398 0.021161 0.119732 0.020084 0.006896 0.025149 0.023155 0.025149 0.089663 0.0 0.0 0.033809 0.019275 0.000000 0.052136 0.015479 0.016366 0.021033 0.036178 0.006963 0.034876 0.0 0.041738 0.0 0.00000 0.115228 0.017451 0.026482 0.000000 0.110928 0.031426 0.056342 0.034301 0.005637 0.004902 0.000000 0.000000 0.005154 0.00000 0.0 0.014545 0.00000 0.0 0.031671 0.000000 0.0 0.003860 0.000000 0.004638 0.047549 0.005089 0.006947 0.000000 0.000000 0.052552 0.005715 0.006233 0.022844 0.027494 0.039973 0.000000 0.000000 0.000000 0.000000 0.035652 0.02774 0.098338 0.000000 0.000000 0.017498 0.004235 0.000000 0.010340 0.000000 0.063849 0.000000 0.039145 0.024083 0.007238 0.000000 0.011701 0.0 0.012202 0.023313 0.028178 0.0 0.000000 0.000000 0.0 0.000000 0.012166 0.135549 0.027570 0.003575 0.006056 0.100158 0.019420 0.028634 0.031958 0.027810 0.000000 0.000000 0.039779 0.015661 0.018138 0.050866 0.000000 0.000000 0.000000 0.024218 0.000000 0.000000 0.004064 0.000000 0.000000 0.000000 0.026175 0.000000 0.004908 0.010638 0.031812 0.010892 0.011190 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.016972 0.023313 0.039821 0.000000 0.016611 0.000000 0.000000 0.000000 0.00000 0.034240 0.019609 0.000000 0.003636 0.000000 0.016016 0.062205 0.000000 0.036708 0.013880 0.048584 0.000000 0.019467 0.000000 0.000000 0.003628 0.000000 0.067473 0.023605 0.000000 0.029275 0.000000 0.000000 0.046937 0.018097 0.012942 0.046604 0.041557 0.034006 0.012952 0.003206 0.040302 0.038149 0.078862 0.004508 0.000000 0.000000 0.000000 0.037440 0.042054 0.00259 0.0 0.072562 0.004008 0.014807 0.004108 0.000000 0.026621 0.020159 0.024304 0.015600 0.025546 0.031501 0.028469 0.000000 0.019653 0.018960 0.047822 0.000000 0.000000 0.000000 0.012053 0.000000 0.023743 0.00000 0.016929 0.039599 0.000000 0.045238 0.015674 0.011092 0.000000 0.019463 0.024741 0.003429 0.0 0.0 0.068041 0.074809 0.003124 0.000000 0.000000 0.000000 0.003664 0.018416 0.017413 0.014677 0.018109 0.000000 0.000000 0.000000 0.056304 0.056502 0.049596 0.003603 0.037224 0.036038 0.002985 0.000000 0.000000 0.018381 0.003678 0.000000 0.000000 0.000000 0.000000 0.011860 0.0 0.041731 0.030305 0.033295 0.000000 0.000000 0.015875 0.045220 0.008899 0.023511 0.000000 0.0 0.000000 0.035228 0.008127 0.013028 0.000000 0.029029 0.064214 0.000000 0.014686 0.003233 0.067719 0.010960 0.000000 0.000000 0.007690 0.028681 0.057493 0.013208 0.044571 0.039267 0.000000 0.035934 0.058118 0.000000 0.018202 0.027500 0.011037 0.012797 0.000000 0.007426 0.000000 0.000000 0.022528 0.009435 0.0 0.0 0.000000 0.003189 0.082837 0.000000 0.000000 0.000000 0.007933 0.057160 0.048207 0.028303 0.000000 0.016563 0.000000 0.000000 0.000000 0.131736 0.0 0.025886 0.000000 0.000000 0.023109 0.005874 0.023559 0.000000 0.0 0.000000 0.000000 0.000000 0.056960 0.007574 0.046952 0.034248 0.009091 0.011668 0.019984 0.036111 0.005508 0.004771 0.011083 0.006166 0.013952 0.011042 0.014696 0.008873 0.010428 0.022986 0.066056 0.032546 0.008234 0.002751 0.021186 0.049755 0.011318 0.010927 0.009365 0.000000 0.018563 0.019531 0.025057 0.000000 0.019267 0.023951 0.016085 0.048180 0.028149 0.000000 0.041245 0.022713 0.014614 0.013097 0.011502 0.000000 0.000000 0.044414 0.029846 0.000000 0.000000 0.049955 0.000000 0.090546 0.000000 0.000000 0.000000 0.042928 0.003830 0.042775 0.000000 0.000000 0.008371 0.036265 0.000000 0.043190 0.002798 0.077737 0.010493 0.003142 0.000000 0.002734 0.025558 0.000000 0.007193 0.033214 0.000000 0.014100 0.036978 0.038625 0.000000 0.004022 0.003258 0.048410 0.000000 0.003671 0.000000 0.013496 0.000000 0.109825 0.000000 0.033990 0.027125 0.014452 0.026880 0.016881 0.046006 0.000000 0.000000 0.047070 0.000000 0.003006 0.012853 0.015389 0.003303 0.000000 0.036899 0.000000 0.014302 0.0 0.000000 0.018070 0.0 0.021732 0.000000 0.025396 0.000000 0.050322 0.000000 0.031669 0.010090 0.007068 0.041399 0.084393 0.053175 0.050161 0.017887 0.000000 0.000000 0.052669 0.000000 0.000000 0.065186 0.000000 0.014554 0.000000 0.000000 0.022066 0.0 0.011915 0.011766 0.043036 0.025158 0.076604 0.068102 0.037278 0.000000 0.042980 0.000000 0.035820 0.027017 0.0 0.000000 0.011679 0.000000 0.012910 0.002403 0.011913 0.007075 0.076451 0.023708 0.038842 0.010732 0.029973 0.012824 0.026166 0.010690 0.0 0.022269 0.0 0.000000 0.113021 0.033524 0.007788 0.000000 0.000000 0.021115 0.049583 0.000000 0.054205 0.034283 0.009545 0.000000 0.000000 0.022608 0.043205 0.045604 0.003777 0.070706 0.000000 0.003636 0.030751 0.000000 0.000000 0.000000 0.017414 0.003637 0.062866 0.017296 0.000000 0.044990 0.027861 0.0 0.044339 0.020918 0.016525 0.066673 0.000000 0.000000 0.000000 0.046021 0.000000 0.045249 0.011337 0.012856 0.022883 0.000000 0.003255 0.000000 0.037489 0.000000 0.005617 0.051514 0.000000 0.003258 0.003463 0.000000 0.0 0.0 0.000000 0.003592 0.039629 0.000000 0.014871 0.010102 0.000000 0.000000 0.0 0.091835 0.011165 0.000000 0.054813 0.089598 0.029576 0.052497 0.033530 0.003472 0.000000 0.044613 0.000000 0.024525 0.000000 0.043222 0.079695 0.000000 0.000000 0.05723 0.003077 0.000000 0.0 0.005556 0.000000 0.009476 0.002423 0.012853 0.028750 0.000000 0.0 0.040000 0.059004 0.000000 0.000000 0.063284 0.0 0.048475 0.01962 0.021017 0.000000 0.003029 0.006629 0.006017 0.063336 0.000000 0.002999 0.000000 0.013377 0.028466 0.050495 0.036242 0.026386 0.021869 0.019353 0.021090 0.016222 0.005290 0.000000 0.000000 0.000000 0.044678 0.039395 0.021114 0.003031 0.00928 0.008572 0.000000 0.000000 0.039458 0.017792 0.113960 0.062093 0.007281 0.002899 0.000000 0.083817 0.012314 0.000000 0.058068 0.039211 0.000000 0.036467 0.013661 0.012473 0.019324 0.008708 0.011282 0.000000 0.033164 0.002820 0.036164 0.040707 0.029696 0.023888 0.002945 0.032780 0.017634 0.011898 0.020317 0.005024 0.000000 0.048257 0.011356 0.000000 0.029406 0.011549 0.006223 0.092994 0.068906 0.060583 0.013442 0.095004 0.011897 0.079536 0.044844 0.081269 0.048268 0.010318 0.030836 0.049229 0.040003 0.011220 0.079801 0.035227 0.033570 0.020103 0.00519 0.000000 0.015803 0.037834 0.000000 0.016216 0.027509 0.002472 0.094365 0.062231 0.003118 0.056242 0.011799 0.012137 0.039129 0.003118 0.041359 0.008671 0.029799 0.000000 0.028056 0.024467 0.002850 0.010915 0.000000 0.056663 0.000000 0.046580 0.024089 0.002967 0.015569 0.014688 0.068173 0.0 0.054292 0.007332 0.035842 0.003009 0.015321 0.037022 0.013608 0.027473 0.000000 0.094005 0.000000 0.026171 0.011130 0.028972 0.306285 0.046946 0.009920 0.006806 0.014053 0.012278 0.031839 0.012780 0.003047 0.039339 0.012749 0.003404 0.023131 0.021570 0.139614 0.022517 0.052415 0.003293 0.034543 0.002410 0.012032 0.025287 0.008054 0.027056 0.0 0.005719 0.034088 0.016952 0.034430 0.00277 0.002331 0.050864 0.017343 0.013364 0.029058 0.040674 0.002647 0.028009 0.002753 0.003146 0.006191 0.002407 0.000000 0.005489 0.044733 0.020495 0.003437 0.018333 0.019840 0.010193 0.00000 0.029766 0.0 0.000000 0.026139 0.000000 0.000000 0.012267 0.025665 0.000000 0.133532 0.002568 0.043991 0.010436 0.015924 0.00187 0.027610 0.072098 0.002835 0.020221 0.052335 0.000000 0.042173 0.002947 0.066293 0.070800 0.078919 0.001533 0.055958 0.019142 0.022859 0.065558 0.043902 0.017302 0.022909 0.067679 0.012281 0.039258 0.037686 0.000000 0.032066 0.012963 0.066372 0.000000 0.022410 0.023133 0.017909 0.008158 0.007176 0.013685 0.012843 0.011788 0.024228 0.002072 0.021409 0.002471 0.052848 0.010377 0.008263 0.034740 0.066069 0.099482 0.012154 0.091892 0.000000 0.131919 0.000000 0.016839 0.014914 0.013558 0.128468 0.00000 0.009711 0.000000 0.072088 0.019149 0.000000 0.000000 0.002384 0.012515 0.011522 0.033474 0.033474 0.00000 0.019351 0.000000 0.000000 0.009826 0.002211 0.000000 0.030376 0.012741 0.019930 0.076371 0.000000 0.026837 0.028158 0.019818 0.012282 0.002527 0.044225 0.041453 0.000000 0.013750 0.000000 0.075189 0.074582 0.027522 0.027382 0.068052 0.06479 0.022086 0.034051 0.039519 0.032593 0.028401 0.066720 0.066551 0.036126 0.012187 0.033253 0.026348 0.000000 0.018740 0.031312 0.000000 0.000000 0.034524 0.000000 0.033519 0.014080 0.014532 0.028039 0.000000 0.039693 0.017694 0.021113 0.117432 0.023418 0.000000 0.016147 0.004739 0.011026 0.015013 0.000000 0.002915 0.064880 0.0 0.019065 0.022138 0.017679 0.0 0.000000 0.000000 0.000000 0.031969 0.012665 0.000000 0.029549 0.018101 0.002688 0.003438 0.003880 0.061007 0.01335 0.000000 0.031404 0.013952 0.000000 0.006596 0.000000 0.00000 0.050239 0.018180 0.000000 0.025792 0.013984 0.011253 0.000000 0.077837 0.014996 0.041020 0.005230 0.002914 0.010725 0.014623 0.003760 0.022294 0.019541 0.023209 0.000000 0.000000 0.028856 0.000000 0.015443 0.013236 0.026994 0.043107 0.023967 0.000000 0.003383 0.0 0.005756 0.021267 0.032915 0.003664 0.033206 0.000000 0.003378 0.000000 0.012108 0.0 0.000000 0.045562 0.003401 0.038908 0.003683 0.026378 0.000000 0.000000 0.036873 0.016712 0.008454 0.012952 0.003227 0.017074 0.029954 0.013681 0.000000 0.025989 0.046557 0.055561 0.000000 0.000000 0.015274 0.000000 0.003828 0.000000 0.000000 0.025149 0.000000 0.002759 0.017141 0.028048 0.032444 0.0034 0.000000 0.040277 0.000000 0.008869 0.014326 0.000000 0.000000 0.002722 0.001956 0.000000 0.013945 0.022629 0.004133 0.030669 0.000000 0.016124 0.016925 0.011082 0.002338 0.000000 0.009805 0.000000 0.002673 0.022263 0.000000 0.000000 0.003882 0.022960 0.011458 0.000000 0.000000 0.014598 0.000000 0.028879 0.016085 0.000000 0.013546 0.000000 0.00000 0.0 0.0 0.001821 0.0 0.011647 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.024987 0.009078 0.002991 0.0 0.050640 0.006825 0.052151 0.000000 0.036270 0.011456 0.002875 0.044659 0.085923 0.076625 0.017480 0.032278 0.020986 0.000000 0.003196 0.017265 0.003449 0.013744 0.031178 0.010645 0.019282 0.008185 0.000000 0.003456 0.000000 0.0 0.133346 0.007780 0.021912 0.029416 0.030844 0.075045 0.010126 0.054255 0.010956 0.020066 0.009197 0.003089 0.023682 0.025282 0.016214 0.002962 0.023666 0.016992 0.000000 0.018905 0.146974 0.011683 0.006712 0.000000 0.003925 0.003275 0.024225 0.010151 0.002888 0.023951 0.0 0.0 0.032254 0.003366 0.031528 0.000000 0.000000 0.015658 0.000000 0.000000 0.015471 0.017558 0.041812 0.000000 0.025239 0.018463 0.027099 0.000000 0.017904 0.209403 0.002634 0.010750 0.048474 0.075236 0.009579 0.019336 0.003831 0.071205 0.003352 0.000000 0.025476 0.011199 0.003713 0.002979 0.020794 0.029175 0.000000 0.048799 0.007595 0.025695 0.000000 0.022897 0.000000 0.000000 0.000000 0.012292 0.003323 0.003359 0.003854 0.015791 0.031591 0.003755 0.089344 0.000000 0.000000 0.010377 0.000000 0.010854 0.077431 0.009695 0.018802 0.025531 0.113603 0.067478 0.022742 0.056789 0.000000 0.000000 0.000000 0.000000 0.012811 0.000000 0.023845 0.016628 0.028190 0.003788 0.003248 0.032689 0.003228 0.014651 0.050391 0.000000 0.032446 0.050642 0.003305 0.038516 0.000000 0.003053 0.036628 0.000000 0.000000 0.036557 0.011964 0.032941 0.003748 0.002778 0.000000 0.010693 0.014347 0.000000 0.000000 0.003245 0.035862 0.009792 0.051729 0.010446 0.024508 0.027501 0.002744 0.003401 0.000000 0.036338 0.030968 0.019219 0.000000 0.048937 0.083642 0.000000 0.019585 0.000000 0.020897 0.000000 0.017065 0.000000 0.062396 0.039181 0.002857 0.089553 0.021062 0.000000 0.018471 0.022404 0.003361 0.000000 0.081876 0.024440 0.000000 0.067782 0.031902 0.017644 0.000000 0.002714 0.033128 0.014392 0.003404 0.012657 0.035043 0.044439 0.079360 0.007159 0.041561 0.025923 0.015305 0.003525 0.000000 0.019905 0.000000 0.017529 0.027893 0.003212 0.000000 0.046361 0.014512 0.018471 0.000000 0.003476 0.000000 0.054070 0.021867 0.000000 0.017080 0.000000 0.009402 0.029141 0.041333 0.000000 0.004183 0.002988 0.026793 0.010509 0.000000 0.017573 0.019784 0.006830 0.008447 0.006050 0.010810 0.028645 0.000000 0.026169 0.012774 0.007309 0.014793 0.033728 0.019832 0.003099 0.010735 0.005555 0.000000 0.015670 0.017042 0.001759 0.000000 0.041712 0.017542 0.010032 0.000000 0.000000 0.000000 0.011990 0.033610 0.029664 0.032872 0.005805 0.079713 0.000000 0.031667 0.003960 0.000000 0.013172 0.003007 0.014185 0.000000 0.014761 0.000000 0.040309 0.008382 0.064753 0.049258 0.024811 0.000000 0.030208 0.027113 0.045580 0.007823 0.066547 0.032057 0.000000 0.013073 0.000000 0.000000 0.000000 0.000000 0.003662 0.028126 0.025653 0.002788 0.012687 0.041240 0.010453 0.000000 0.012587 0.000000 0.000000 0.026329 0.040676 0.013119 0.030128 0.055920 0.000000 0.000000 0.012305 0.058304 0.016157 0.000000 0.028727 0.003381 0.204721 0.003242 0.021777 0.009101 0.003620 0.003129 0.004644 0.003965 0.004194 0.0 0.004205 0.027390 0.000000 0.000000 0.026638 0.017994 0.003118 0.0 0.004361 0.0 0.00426 0.018971 0.0 0.004282 0.011920 0.003696 0.027095 0.013351 0.000000 0.003538 0.018393 0.0 0.0 0.000000 0.000000 0.016773 0.0 0.019769 0.0 0.000000 0.033597 0.011773 0.000000 0.005816 0.0 0.0 0.042439 0.019285 0.048156 0.000000 0.020878 0.003471 0.000000 0.041761 0.155685 0.008345 0.0 0.0 0.000000 0.0 0.023916 0.000000 0.000000 0.0 0.000000 0.030984 0.000000 0.00000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.032375 0.0 0.030388 0.017272 0.0 0.000000 0.000000 0.015186 0.003156 0.003653 0.0 0.054754 0.012347 0.027272 0.000000 0.000000 0.037320 0.021803 0.000000 0.018582 0.0 0.000000 0.0 0.158049 0.000000 0.000000 0.000000 0.046572 0.012745 0.004312 0.017993 0.000000 0.032348 0.023524 0.019719 0.012807 0.000000 0.046621 0.000000 0.000000 0.003929 0.000000 0.000000 0.019382 0.036488 0.0 0.042890 0.000000 0.0 0.011861 0.003469 0.0 0.000000 0.068314 0.000000 0.017888 0.006751 0.000000 0.000000 0.009687 0.0 0.000000 0.020352 0.017908 0.010810 0.033416 0.000000 0.0 0.000000 0.000000 0.000000 0.003569 0.000000 0.058753 0.000000 0.000000 0.071711 0.054415 0.022000 0.020632 0.036366 0.071927 0.009262 0.040368 0.027922 0.0 0.014598 0.017624 0.003280 0.028908 0.021477 0.009273 0.028186 0.047250 0.002196 0.000000 0.000000 0.000000 0.026307 0.025627 0.000000 0.008982 0.016632 0.014925 0.002576 0.019369 0.022225 0.025801 0.033363 0.000000 0.003312 0.0 0.000000 0.000000 0.003776 0.000000 0.001512 0.00000 0.000000 0.081241 0.009617 0.003533 0.009582 0.034643 0.023547 0.000000 0.007860 0.000000 0.00263 0.000000 0.040807 0.021056 0.056784 0.024620 0.000000 0.000000 0.020830 0.0 0.00000 0.00000 0.000000 0.018287 0.000000 0.016054 0.000000 0.014141 0.023972 0.015587 0.051859 0.0 0.020813 0.011487 0.032274 0.023688 0.002657 0.014788 0.024653 0.047124 0.023432 0.008526 0.025736 0.037179 0.035186 0.017092 0.017815 0.000000 0.000000 0.0 0.0 0.027881 0.023772 0.024749 0.0 0.0 0.00000 0.002931 0.0 0.0 0.0 0.000000 0.0 0.058505 0.003205 0.000000 0.089793 0.051941 0.035700 0.027367 0.077552 0.008714 0.031807 0.055725 0.029575 0.0 0.037572 0.008879 0.034519 0.015165 0.139824 0.00000 0.002985 0.0 0.010027 0.048840 0.000000 0.002339 0.000000 0.0 0.097969 0.0 0.000000 0.016852 0.113944 0.096287 0.004824 0.003369 0.0 0.004574 0.077933 0.00000 0.000000 0.045327 0.000000 0.036705 0.029485 0.000000 0.0 0.000000 0.000000 0.018804 0.03349 0.081827 0.000000 0.004870 0.024725 0.000000 0.0 0.038844 0.0 0.036736 0.0 0.0 0.0 0.027211 0.000000 0.066477 0.000000 0.023074 0.028108 0.009688 0.007065 0.023644 0.027237 0.03497 0.019617 0.000000 0.031104 0.033696 0.005020 0.028068 0.000000 0.0 0.0 0.006173 0.006924 0.005422 0.000000 0.0 0.00552 0.030673 0.000000 0.000000 0.101165 0.00000 0.000000 0.000000 0.0 0.013937 0.151765 0.034481 0.000000 0.004993 0.0 0.020332 0.019159 0.073891 0.000000 0.06024 0.00000 0.029768 0.000000 0.019483 0.000000 0.076579 0.003625 0.122150 0.028486 0.021632 0.000000 0.002783 0.0 0.020401 0.092017 0.014346 0.0 0.0 0.000000 0.000000 0.000000 0.012543 0.026783 0.0 0.0 0.0 0.0 0.064508 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.009987 0.003157 0.043780 0.014331 0.003350 0.003303 0.145414 0.044368 0.041357 0.0 0.0 0.207724 0.0 0.0 0.0 0.022005 0.024103 0.015976 0.242248 0.280690 0.038465 0.0 0.0 0.0 0.0 0.0 0.129119 0.0 0.0 0.0 0.063715 0.000000 0.000000 0.000000 0.000000 0.000000 0.014719 0.000000 0.003116 0.0 0.0 0.004159 0.000000 0.003741 0.017084 0.0 0.021092 0.013968 0.0 0.000000 0.056942 0.0 0.053900 0.000000 0.003009 0.0 0.000000 0.0 0.000000 0.0 0.028581 0.0 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.037937 0.008385 0.149318 0.000000 0.019448 0.000000 0.026523 0.051073 0.000000 0.030420 0.0 0.053343 0.026439 0.000000 0.022101 0.054934 0.016291 0.016291 0.081510 0.016092 0.010194 0.018629 0.000000 0.0 0.0 0.006491 0.000000 0.045641 0.003937 0.043849 0.000000 0.059186 0.000000 0.045767 0.023406 0.052291 0.0 0.004845 0.000000 0.0 0.000000 0.028707 0.003944 0.017108 0.077080 0.000000 0.122240 0.011155 0.066457 0.048577 0.000000 0.0 0.017708 0.0 0.200879 0.019505 0.0 0.011189 0.000000 0.032908 0.000000 0.003764 0.0 0.003778 0.000000 0.000000 0.216251 0.0 0.010135 0.039107 0.003462 0.016157 0.019661 0.027390 0.000000 0.000000 0.050046 0.035045 0.0 0.000000 0.012091 0.000000 0.0 0.0 0.000000 0.014142 0.024012 0.000000 0.024012 0.020619 0.0 0.004235 0.0 0.0 0.047729 0.000000 0.023666 0.035797 0.000000 0.026215 0.000000 0.051628 0.012311 0.0 0.000000 0.025843 0.00000 0.049740 0.068216 0.030252 0.049558 0.003263 0.015284 0.0 0.0 0.022508 0.0 0.048805 0.000000 0.004394 0.000000 0.048805 0.003461 0.027665 0.017709 0.000000 0.068423 0.0 0.026742 0.023028 0.000000 0.003003 0.025840 0.058825 0.000000 0.241234 0.014615 0.031349 0.014563 0.037068 0.0 0.119525 0.0 0.016525 0.009277 0.042988 0.033181 0.022633 0.000000 0.022315 0.0 0.000000 0.004106 0.041454 0.000000 0.067482 0.0 0.009892 0.050423 0.026464 0.032625 0.022607 0.028217 0.181505 0.137276 0.086617 0.015245 0.034185 0.010440 0.148461 0.0 0.000000 0.021469 0.022656 0.049556 0.059505 0.057284 0.027609 0.073772 0.053008 0.017519 0.003084 0.033402 0.000000 0.000000 0.000000 0.062199 0.051839 0.020150 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.065768 0.004172 0.000000 0.000000 0.00000 0.038970 0.036523 0.0 0.051042 0.284811 0.000000 0.000000 0.167276 0.0 0.0 0.099668 0.062611 0.000000 0.031215 0.056398 0.000000 0.002879 0.003419 0.000000 0.000000 0.00000 0.000000 0.019703 0.017012 0.172143 0.084039 0.0 0.000000 0.000000 0.010744 0.016918 0.0 0.000000 0.004929 0.034349 0.038552 0.0 0.003776 0.027651 0.000000 0.072852 0.000000 0.000000 0.000000 0.026907 0.023310 0.068489 0.000000 0.0 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.022512 0.176193 0.052398 0.228042 0.004364 0.067555 0.010092 0.0 0.003413 0.000000 0.000000 0.004184 0.000000 0.129949 0.00000 0.177053 0.149912 0.004014 0.000000 0.000000 0.000000 0.010903 0.0 0.000000 0.038542 0.0 0.051784 0.025864 0.000000 0.000000 0.031592 0.000000 0.000000 0.082636 0.000000 0.0 0.023294 0.000000 0.000000 0.181246 0.036205 0.000000 0.000000 0.000000 0.000000 0.0 0.003664 0.022861 0.073841 0.056821 0.024075 0.000000 0.000000 0.003115 0.040517 0.000000 0.012731 0.017619 0.000000 0.000000 0.000000 0.003168 0.029818 0.000000 0.000000 0.0 0.000000 0.014074 0.000000 0.004043 0.000000 0.000000 0.003103 0.0 0.000000 0.020472 0.020953 0.030447 0.003548 0.025435 0.040077 0.000000 0.048309 0.003733 0.0 0.029176 0.014810 0.003653 0.000000 0.000000 0.002981 0.016810 0.003567 0.045628 0.000000 0.010800 0.000000 0.010334 0.054653 0.099235 0.0 0.0 0.006021 0.004074 0.000000 0.050923 0.024464 0.064422 0.024019 0.0 0.0 0.000000 0.021001 0.000000 0.004688 0.000000 0.014788 0.000000 0.027634 0.000000 0.0 0.022514 0.021661 0.000000 0.0 0.003784 0.022582 0.000000 0.000000 0.002741 0.029728 0.042921 0.0 0.000000 0.003502 0.000000 0.036603 0.0 0.016321 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.114860 0.003269 0.004078 0.000000 0.053606 0.015292 0.000000 0.052114 0.000000 0.135572 0.0 0.003592 0.000000 0.000000 0.019899 0.000000 0.105158 0.003851 0.026351 0.000000 0.028677 0.052687 0.000000 0.0 0.000000 0.017925 0.0 0.000000 0.003172 0.009823 0.039276 0.000000 0.003572 0.0 0.000000 0.0 0.005966 0.0 0.042872 0.027708 0.015457 0.047347 0.000000 0.0 0.000000 0.086909 0.003394 0.044930 0.0 0.000000 0.000000 0.014902 0.013029 0.000000 0.041934 0.000000 0.106442 0.000000 0.056034 0.016648 0.013753 0.000000 0.003028 0.003765 0.003515 0.046637 0.003671 0.027468 0.000000 0.000000 0.000000 0.000000 0.037457 0.022128 0.000000 0.000000 0.000000 0.000000 0.002473 0.058592 0.003032 0.000000 0.003346 0.002954 0.000000 0.003474 0.033597 0.000000 0.0 0.000000 0.011766 0.003948 0.000000 0.003509 0.024144 0.029914 0.007948 0.011046 0.010278 0.051511 0.011989 0.004549 0.022041 0.047200 0.049978 0.003529 0.022848 0.057779 0.000000 0.000000 0.004001 0.000000 0.029742 0.000000 0.0 0.042329 0.003645 0.032157 0.019489 0.006575 0.048114 0.010914 0.022900 0.094914 0.002830 0.029495 0.012364 0.000000 0.000000 0.000000 0.004165 0.006886 0.049644 0.000000 0.0 0.000000 0.003907 0.066343 0.049221 0.048190 0.012396 0.002844 0.003880 0.015151 0.000000 0.0 0.000000 0.032650 0.000000 0.000000 0.011079 0.023267 0.011690 0.011075 0.017007 0.026819 0.027203 0.016301 0.00370 0.053565 0.020635 0.000000 0.015984 0.040069 0.002923 0.013877 0.000000 0.010962 0.013189 0.0 0.015147 0.025626 0.022644 0.087635 0.000000 0.097434 0.032279 0.012039 0.070933 0.000000 0.000000 0.000000 0.091593 0.000000 0.098083 0.041821 0.004572 0.040153 0.000000 0.042326 0.000000 0.055702 0.033701 0.000000 0.016975 0.004328 0.028785 0.00000 0.014603 0.048977 0.028819 0.026330 0.003379 0.036253 0.017608 0.003834 0.004205 0.002653 0.022431 0.000000 0.071916 0.000000 0.011381 0.003268 0.022647 0.028622 0.003875 0.026883 0.000000 0.004007 0.003975 0.000000 0.037945 0.013432 0.003061 0.026222 0.003614 0.025237 0.022427 0.000000 0.0 0.025466 0.003925 0.033688 0.000000 0.021948 0.000000 0.011545 0.0 0.000000 0.0 0.0 0.063363 0.0 0.016963 0.015732 0.070914 0.000000 0.0 0.000000 0.0 0.011271 0.000000 0.003345 0.038535 0.047667 0.060640 0.018750 0.020629 0.000000 0.065049 0.003575 0.020610 0.029343 0.077006 0.000000 0.000000 0.000000 0.056126 0.000000 0.084763 0.056292 0.000000 0.0 0.042000 0.022340 0.000000 0.000000 0.000000 0.008377 0.027120 0.0 0.000000 0.041794 0.057591 0.000000 0.012077 0.002922 0.0 0.075132 0.000000 0.022068 0.000000 0.002838 0.000000 0.015172 0.000000 0.06163 0.019112 0.000000 0.000000 0.000000 0.0 0.01995 0.0 0.000000 0.000000 0.003606 0.01151 0.000000 0.033533 0.00000 0.000000 0.075931 0.003160 0.023270 0.015529 0.014691 0.027033 0.000000 0.035435 0.0 0.020422 0.025144 0.0 0.016756 0.0 0.0 0.244171 0.013764 0.019393 0.00000 0.000000 0.079329 0.0 0.000000 0.0 0.034350 0.015819 0.104274 0.054322 0.0 0.003619 0.003981 0.000000 0.031888 0.000000 0.004267 0.003698 0.000000 0.054931 0.027680 0.019597 0.010273 0.018692 0.047497 0.000000 0.016391 0.018372 0.018592 0.024834 0.028442 0.000000 0.000000 0.000000 0.000000 0.019151 0.000000 0.000000 0.003770 0.120506 0.019303 0.019842 0.019356 0.057986 0.007005 0.000000 0.002963 0.000000 0.000000 0.025428 0.027906 0.000000 0.017507 0.000000 0.040312 0.000000 0.000000 0.012130 0.058155 0.048868 0.000000 0.000000 0.010276 0.023970 0.011139 0.007123 0.037194 0.001792 0.002486 0.010955 0.000000 0.012995 0.000000 0.012461 0.000000 0.019207 0.0 0.000000 0.023224 0.000000 0.000000 0.082077 0.003327 0.008226 0.0 0.069060 0.008795 0.014461 0.000000 0.032654 0.0 0.054319 0.018067 0.023117 0.013972 0.000000 0.021649 0.003154 0.107379 0.002558 0.003230 0.069354 0.003529 0.018412 0.003340 0.009116 0.042900 0.003451 0.000000 0.014918 0.010652 0.000000 0.126342 0.020882 0.027302 0.003811 0.0 0.000000 0.069954 0.018356 0.017178 0.000000 0.000000 0.000000 0.000000 0.005152 0.000000 0.012364 0.0 0.003037 0.024862 0.099854 0.116524 0.054363 0.024618 0.137173 0.000000 0.0 0.019883 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.066862 0.060399 0.0 0.0 0.0 0.014345 0.019633 0.000000 0.000000 0.000000 0.002433 0.021011 0.0 0.000000 0.019768 0.014783 0.004388 0.000000 0.034912 0.000000 0.000000 0.002376 0.022359 0.0 0.079745 0.000000 0.119981 0.004846 0.008266 0.014504 0.002717 0.009354 0.021381 0.025257 0.019704 0.000000 0.000000 0.037204 0.033231 0.0 0.055280 0.035871 0.022107 0.007199 0.002744 0.000000 0.042724 0.057640 0.023583 0.018694 0.012579 0.028656 0.039019 0.028450 0.009041 0.013802 0.020060 0.073086 0.043969 0.002095 0.010686 0.033102 0.031107 0.000000 0.071799 0.017913 0.014490 0.000000 0.097614 0.000000 0.031187 0.047800 0.026989 0.000000 0.187173 0.008155 0.003146 0.012802 0.027815 0.034997 0.033044 0.009649 0.014908 0.00000 0.002490 0.007506 0.000000 0.015738 0.018359 0.000000 0.000000 0.000000 0.060709 0.002432 0.026321 0.061007 0.0 0.011708 0.051055 0.036548 0.009078 0.002370 0.003043 0.016996 0.028101 0.002199 0.017891 0.015461 0.026822 0.000000 0.000000 0.000000 0.000000 0.017194 0.000000 0.007180 0.002376 0.027563 0.015443 0.000000 0.021137 0.006077 0.002301 0.000000 0.014325 0.0 0.000000 0.017223 0.0 0.010423 0.002789 0.019896 0.016096 0.000000 0.043353 0.000000 0.009858 0.019935 0.000000 0.000000 0.014175 0.000000 0.017780 0.006972 0.033316 0.000000 0.000000 0.009447 0.0 0.000000 0.034000 0.0 0.002565 0.045456 0.030155 0.012583 0.0 0.022886 0.0 0.034395 0.007911 0.012254 0.000000 0.007342 0.021432 0.012306 0.002894 0.0 0.027742 0.012850 0.013452 0.000000 0.000000 0.019122 0.002591 0.02035 0.122791 0.011718 0.003019 0.000000 0.009039 0.008663 0.0 0.002649 0.025177 0.013439 0.086067 0.034102 0.008762 0.031748 0.042312 0.033039 0.004907 0.241709 0.002414 0.000000 0.024661 0.014946 0.007810 0.002840 0.017296 0.034585 0.03813 0.03813 0.016377 0.022841 0.000000 0.045309 0.000000 0.023871 0.002395 0.003124 0.029979 0.015449 0.030036 0.015994 0.002517 0.00213 0.017323 0.040071 0.038195 0.002903 0.000000 0.022312 0.077180 0.034012 0.002103 0.003082 0.047128 0.007430 0.002533 0.031371 0.073609 0.013667 0.011040 0.022951 0.000000 0.000000 0.023468 0.000000 0.000000 0.000000 0.022104 0.038961 0.000000 0.021538 0.000000 0.002502 0.002303 0.017491 0.010077 0.020680 0.054441 0.068113 0.015805 0.002266 0.026036 0.034421 0.011332 0.000000 0.000000 0.000000 0.000000 0.002901 0.000000 0.009612 0.0 0.025134 0.000000 0.043501 0.016777 0.000000 0.003406 0.037271 0.000000 0.013003 0.002728 0.013539 0.003457 0.012928 0.015385 0.000000 0.036692 0.035251 0.034671 0.000000 0.021806 0.025502 0.057804 0.047919 0.032578 0.000000 0.076679 0.039718 0.040849 0.002986 0.034052 0.011577 0.048698 0.010399 0.045270 0.047064 0.0000 0.000000 0.007481 0.000000 0.000000 0.000000 0.000000 0.018895 0.022072 0.000000 0.019248 0.012574 0.011017 0.000000 0.041114 0.008367 0.000000 0.032990 0.027693 0.01619 0.000000 0.011786 0.002485 0.016889 0.000000 0.020640 0.000000 0.022299 0.031559 0.030683 0.000000 0.035262 0.020852 0.023968 0.035650 0.000000 0.0 0.000000 0.000000 0.000000 0.010782 0.002617 0.002281 0.040490 0.000000 0.000000 0.007562 0.031792 0.031265 0.000000 0.000000 0.000000 0.036336 0.058862 0.014107 0.027255 0.017724 0.000000 0.000000 0.065723 0.000000 0.009706 0.019892 0.009782 0.007920 0.019462 0.029973 0.000000 0.024595 0.020749 0.000000 0.000000 0.000000 0.027223 0.014221 0.000000 0.007271 0.028839 0.037758 0.000000 0.071521 0.000000 0.054574 0.020633 0.034375 0.031777 0.011225 0.023994 0.047486 0.000000 0.000000 0.000000 0.012171 0.041460 0.040790 0.023875 0.000000 0.040213 0.00000 0.000000 0.059634 0.008815 0.018274 0.010033 0.000000 0.028016 0.047548 0.014949 0.017518 0.020841 0.000000 0.037202 0.000000 0.000000 0.000000 0.035771 0.000000 0.000000 0.007666 0.027363 0.015708 0.024699 0.000000 0.000000 0.000000 0.013585 0.00000 0.000000 0.000000 0.000000 0.002308 0.000000 0.000000 0.008893 0.000000 0.000000 0.002465 0.000000 0.022649 0.000000 0.009515 0.023997 0.011025 0.021218 0.009903 0.012187 0.027967 0.000000 0.000000 0.028157 0.000000 0.0 0.0 0.020929 0.011710 0.027551 0.000000 0.015303 0.028951 0.000000 0.030716 0.008982 0.044777 0.003885 0.000000 0.010927 0.025415 0.000000 0.00000 0.000000 0.021598 0.048956 0.019918 0.000000 0.000000 0.049872 0.000000 0.023190 0.018325 0.000000 0.017828 0.000000 0.000000 0.025848 0.000000 0.038130 0.000000 0.037985 0.00000 0.091566 0.000000 0.029811 0.000000 0.008418 0.055986 0.000000 0.042851 0.018433 0.058069 0.000000 0.0 0.000000 0.065280 0.000000 0.024996 0.000000 0.011697 0.018082 0.019053 0.025545 0.019590 0.0 0.011088 0.000000 0.002469 0.057623 0.000000 0.052531 0.000000 0.050240 0.000000 0.013312 0.016196 0.056077 0.000000 0.000000 0.025106 0.029490 0.014512 0.058815 0.018400 0.000000 0.051533 0.021262 0.032494 0.003181 0.030992 0.000000 0.009048 0.009392 0.000000 0.024829 0.004181 0.000000 0.035394 0.000000 0.000000 0.013805 0.000000 0.000000 0.029612 0.015278 0.013031 0.003292 0.000000 0.000000 0.049911 0.000000 0.000000 0.000000 0.006986 0.000000 0.000000 0.061954 0.126797 0.000000 0.017457 0.000000 0.000000 0.000000 0.000000 0.003559 0.027277 0.000000 0.000000 0.000000 0.012227 0.031635 0.015380 0.102421 0.058351 0.00000 0.003225 0.007479 0.000000 0.017074 0.000000 0.039317 0.023410 0.056794 0.000000 0.000000 0.000000 0.012962 0.010804 0.000000 0.012012 0.065583 0.000000 0.000000 0.000000 0.003828 0.000000 0.000000 0.000000 0.013253 0.061396 0.013469 0.000000 0.003198 0.003291 0.027362 0.003060 0.000000 0.002401 0.000000 0.000000 0.000000 0.032365 0.017238 0.002900 0.000000 0.000000 0.002933 0.000000 0.017073 0.031345 0.0 0.000000 0.020164 0.002432 0.083835 0.000000 0.031821 0.014959 0.024112 0.000000 0.000000 0.0 0.076326 0.009987 0.000000 0.0 0.025168 0.00000 0.011885 0.049264 0.029888 0.000000 0.023545 0.034008 0.008049 0.000000 0.011158 0.000000 0.055759 0.000000 0.184203 0.000000 0.013603 0.000000 0.000000 0.002644 0.043750 0.022725 0.025611 0.026763 0.007073 0.008951 0.0 0.000000 0.0 0.029960 0.00000 0.066887 0.041727 0.0 0.003270 0.035250 0.014193 0.000000 0.060307 0.011607 0.047523 0.0 0.000000 0.013238 0.0 0.026994 0.021502 0.00000 0.000000 0.000000 0.000000 0.0 0.023924 0.004244 0.000000 0.000000 0.011736 0.000000 0.000000 0.007032 0.000000 0.075316 0.026304 0.003276 0.010555 0.0 0.027096 0.003142 0.000000 0.000000 0.0 0.0 0.029130 0.000000 0.000000 0.028807 0.015141 0.000000 0.000000 0.000000 0.000000 0.030742 0.045251 0.040118 0.000000 0.000000 0.000000 0.000000 0.009884 0.011628 0.008208 0.000000 0.000000 0.000000 0.000000 0.047011 0.000000 0.000000 0.027015 0.000000 0.019951 0.0 0.016499 0.000000 0.000000 0.00000 0.000000 0.000000 0.022237 0.025759 0.003459 0.013946 0.003944 0.0 0.0 0.017293 0.000000 0.000000 0.023727 0.024717 0.033185 0.000000 0.000000 0.022057 0.026977 0.0 0.0 0.000000 0.044167 0.031154 0.050355 0.034492 0.000000 0.037624 0.041195 0.028129 0.013551 0.000000 0.000000 0.002551 0.000000 0.0 0.035477 0.017726 0.043059 0.029732 0.008164 0.0 0.032532 0.028406 0.032954 0.003115 0.018875 0.063249 0.000000 0.000000 0.050093 0.024593 0.000000 0.000000 0.045936 0.000000 0.000000 0.024598 0.019329 0.009836 0.000000 0.000000 0.045850 0.026197 0.000000 0.000000 0.000000 0.031249 0.000000 0.000000 0.032252 0.044005 0.046806 0.039683 0.061357 0.003463 0.000000 0.026932 0.065193 0.017411 0.000000 0.0 0.023047 0.028969 0.016855 0.015632 0.0 0.000000 0.000000 0.042643 0.011119 0.003270 0.048102 0.0 0.011409 0.000000 0.018943 0.000000 0.0263 0.029478 0.000000 0.000000 0.000000 0.013078 0.000000 0.029566 0.003241 0.0 0.015183 0.003268 0.000000 0.025963 0.020598 0.000000 0.032553 0.021794 0.003662 0.003686 0.003123 0.033198 0.042314 0.025037 0.000000 0.014840 0.046712 0.027119 0.016216 0.069435 0.000000 0.011832 0.003806 0.108483 0.000000 0.033280 0.0 0.000000 0.003454 0.044789 0.025825 0.002828 0.000000 0.0 0.039093 0.006895 0.000000 0.003647 0.000000 0.000000 0.022598 0.081572 0.000000 0.000000 0.032112 0.000000 0.009544 0.0 0.000000 0.000000 0.004054 0.000000 0.048984 0.026684 0.025102 0.000000 0.022416 0.009727 0.000000 0.018991 0.000000 0.056941 0.000000 0.000000 0.0 0.000000 0.000000 0.006528 0.019934 0.025549 0.003165 0.003970 0.017580 0.013904 0.000000 0.012620 0.037817 0.000000 0.088868 0.000000 0.024846 0.000000 0.000000 0.011214 0.024001 0.000000 0.000000 0.022775 0.0 0.000000 0.0 0.032110 0.021244 0.000000 0.003161 0.002500 0.045334 0.027039 0.000000 0.020187 0.026660 0.008971 0.045210 0.000000 0.000000 0.026208 0.023874 0.003795 0.015176 0.002577 0.041978 0.046558 0.038742 0.012739 0.038572 0.020487 0.000000 0.036395 0.037572 0.000000 0.061849 0.000000 0.000000 0.051406 0.048929 0.010917 0.006412 0.030947 0.007621 0.010714 0.008492 0.000000 0.000000 0.028272 0.000000 0.000000 0.000000 0.000000 0.021347 0.012126 0.000000 0.036041 0.050319 0.032868 0.000000 0.088802 0.003473 0.000000 0.003971 0.028630 0.000000 0.028294 0.0 0.043686 0.062879 0.0 0.015717 0.055171 0.003366 0.083233 0.000000 0.077460 0.033916 0.021056 0.020409 0.000000 0.028565 0.000000 0.000000 0.049757 0.010516 0.030905 0.003726 0.009070 0.000000 0.037341 0.003153 0.016198 0.000000 0.002858 0.048611 0.026446 0.0 0.056209 0.000000 0.000000 0.016533 0.006310 0.002570 0.005926 0.003097 0.002631 0.003639 0.031711 0.000000 0.002818 0.004110 0.039964 0.000000 0.017611 0.000000 0.000000 0.000000 0.000000 0.000000 0.009699 0.000000 0.000000 0.00792 0.017676 0.0 0.000000 0.000000 0.000000 0.025534 0.000000 0.043025 0.028125 0.016186 0.029708 0.033557 0.000000 0.000000 0.038170 0.050319 0.026578 0.00000 0.028023 0.026125 0.017652 0.023075 0.008771 0.029037 0.000000 0.000000 0.003636 0.0 0.00000 0.034894 0.000000 0.000000 0.002654 0.025812 0.000000 0.106283 0.000000 0.058932 0.000000 0.013246 0.021773 0.063066 0.010401 0.000000 0.000000 0.000000 0.020415 0.003197 0.045060 0.110913 0.066417 0.003078 0.008872 0.019474 0.003485 0.049164 0.024657 0.000000 0.000000 0.024158 0.021161 0.000000 0.000000 0.000000 0.032089 0.000000 0.020777 0.009389 0.011901 0.000000 0.044742 0.052005 0.051421 0.098701 0.025509 0.048377 0.031024 0.00000 0.000000 0.022241 0.053181 0.000000 0.003499 0.000000 0.000000 0.017676 0.000000 0.000000 0.020166 0.000000 0.027857 0.029707 0.003886 0.000000 0.000000 0.009586 0.042595 0.000000 0.035884 0.019107 0.000000 0.075404 0.014618 0.033557 0.010282 0.000000 0.044379 0.000000 0.000000 0.0 0.091215 0.000000 0.016389 0.008487 0.007414 0.000000 0.009987 0.000000 0.0 0.00000 0.032325 0.000000 0.0 0.000000 0.011214 0.000000 0.006554 0.000000 0.000000 0.000000 0.016389 0.021562 0.000000 0.000000 0.013642 0.0 0.000000 0.0 0.0 0.013098 0.019255 0.034969 0.009741 0.006447 0.033823 0.018953 0.000000 0.000000 0.029501 0.006511 0.000000 0.053008 0.010539 0.0 0.0 0.000000 0.000000 0.00529 0.000000 0.000000 0.044402 0.036632 0.003132 0.000000 0.000000 0.013674 0.000000 0.013122 0.050484 0.011089 0.079006 0.000000 0.021669 0.047913 0.000000 0.000000 0.020872 0.0 0.048735 0.087886 0.000000 0.045560 0.0 0.0 0.000000 0.000000 0.022559 0.013854 0.000000 0.000000 0.000000 0.000000 0.000000 0.027076 0.029674 0.024555 0.049084 0.054781 0.070724 0.000000 0.087398 0.000000 0.050375 0.000000 0.005326 0.017285 0.106354 0.000000 0.016758 0.0 0.003023 0.019949 0.032934 0.012375 0.000000 0.003332 0.000000 0.000000 0.000000 0.017226 0.000000 0.010657 0.009926 0.003158 0.000000 0.018906 0.000000 0.000000 0.039962 0.003312 0.0 0.000000 0.105817 0.0 0.000000 0.000000 0.033927 0.021294 0.009776 0.000000 0.005968 0.000000 0.043751 0.112415 0.000000 0.023832 0.000000 0.092721 0.015764 0.010204 0.008237 0.008479 0.0 0.002192 0.016596 0.028732 0.000000 0.068819 0.000000 0.029747 0.002892 0.004020 0.014233 0.048359 0.000000 0.000000 0.031782 0.006753 0.059668 0.000000 0.000000 0.063980 0.030796 0.046900 0.000000 0.033679 0.003337 0.000000 0.013306 0.000000 0.005454 0.003138 0.041613 0.040759 0.012434 0.000000 0.042178 0.000000 0.036444 0.003271 0.021976 0.000000 0.002243 0.00000 0.000000 0.045553 0.081192 0.000000 0.000000 0.055177 0.011819 0.015881 0.012204 0.022484 0.000000 0.000000 0.019579 0.000000 0.020379 0.003938 0.038496 0.000000 0.003630 0.000000 0.038824 0.039465 0.017824 0.033557 0.075904 0.031875 0.000000 0.030482 0.000000 0.045629 0.015830 0.058454 0.0 0.00000 0.003481 0.017963 0.057376 0.000000 0.000000 0.029490 0.005946 0.025665 0.013685 0.101481 0.0 0.050163 0.000000 0.009381 0.027601 0.000000 0.000000 0.015757 0.005223 0.059279 0.000000 0.034311 0.037737 0.010181 0.000000 0.008898 0.000000 0.017089 0.034382 0.012379 0.025974 0.012876 0.002636 0.000000 0.0 0.000000 0.002635 0.010624 0.027898 0.000000 0.038942 0.000000 0.007763 0.000000 0.022747 0.012025 0.000000 0.009429 0.012013 0.000000 0.020704 0.008883 0.040585 0.042791 0.000000 0.003080 0.043416 0.000000 0.000000 0.016944 0.012031 0.021862 0.014926 0.000000 0.002545 0.074852 0.021415 0.022601 0.000000 0.002510 0.023441 0.052626 0.000000 0.030042 0.012069 0.012706 0.010163 0.017693 0.002417 0.010033 0.000000 0.026231 0.020095 0.005037 0.035743 0.013433 0.000000 0.019976 0.020599 0.000000 0.000000 0.000000 0.000000 0.046292 0.000000 0.017914 0.038432 0.023873 0.034726 0.0 0.085825 0.010493 0.003103 0.000000 0.097037 0.000000 0.0 0.011098 0.077867 0.037096 0.017155 0.008367 0.025083 0.000000 0.038158 0.034145 0.010527 0.02285 0.009694 0.000000 0.000000 0.044714 0.000000 0.059908 0.000000 0.017184 0.009987 0.054173 0.021857 0.042308 0.010744 0.035928 0.031400 0.019623 0.032871 0.041486 0.000000 0.017930 0.018539 0.033584 0.000000 0.049929 0.043034 0.125673 0.000000 0.000000 0.036461 0.025649 0.028797 0.023949 0.026678 0.000000 0.000000 0.039722 0.000000 0.057613 0.046995 0.000000 0.036929 0.025084 0.027362 0.000000 0.021126 0.028363 0.028603 0.041873 0.000000 0.010897 0.021198 0.007666 0.017683 0.000000 0.035184 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016553 0.000000 0.030528 0.009958 0.023001 0.017155 0.016938 0.000000 0.030171 0.016310 0.000000 0.000000 0.008969 0.057772 0.054478 0.022733 0.074247 0.029201 0.009514 0.015326 0.018260 0.014255 0.000000 0.020858 0.015834 0.013586 0.022121 0.039914 0.029837 0.000000 0.012561 0.051117 0.002760 0.014194 0.019210 0.010630 0.000000 0.022123 0.002457 0.059596 0.000000 0.002918 0.000000 0.036094 0.015603 0.033438 0.036275 0.042085 0.017113 0.017113 0.020330 0.028721 0.088155 0.029284 0.052346 0.008892 0.002993 0.000000 0.076603 0.048803 0.039723 0.039723 0.013685 0.049227 0.049227 0.020092 0.017806 0.017806 0.000000 0.014790 0.016732 0.000000 0.061559 0.061559 0.023586 0.023586 0.019436 0.019436 0.000000 0.074987 0.013940 0.000000 0.000000 0.000000 0.004464 0.004464 0.014791 0.082055 0.048070 0.000000 0.000000 0.000000 0.023212 0.023212 0.095327 0.019334 0.019334 0.014410 0.041556 0.041556 0.000000 0.000000 0.020610 0.018233 0.044589 0.021275 0.002818 0.058001 0.011539 0.011539 0.010058 0.015632 0.000000 0.002805 0.055618 0.058483 0.058483 0.029325 0.015798 0.033639 0.033639 0.051954 0.000000 0.013049 0.034059 0.063596 0.011904 0.019904 0.042595 0.048193 0.028347 0.024693 0.055458 0.015762 0.021032 0.012836 0.00244 0.000000 0.000000 0.002315 0.001920 0.000000 0.000000 0.000000 0.002835 0.029585 0.012430 0.000000 0.005815 0.022537 0.022537 0.028802 0.028802 0.061542 0.051739 0.067563 0.016854 0.016854 0.008784 0.008784 0.000000 0.031197 0.031197 0.040068 0.010013 0.011621 0.046598 0.023910 0.018829 0.082677 0.082677 0.041766 0.000000 0.031780 0.000000 0.000000 0.025684 0.043089 0.000000 0.000000 0.009294 0.016674 0.032398 0.034011 0.017762 0.017762 0.000000 0.017578 0.055104 0.055104 0.048009 0.048009 0.019860 0.02944 0.010565 0.020746 0.038629 0.000000 0.010896 0.000000 0.046698 0.019276 0.002928 0.000000 0.018149 0.018149 0.002779 0.020289 0.013315 0.002634 0.011633 0.016484 0.000000 0.000000 0.022837 0.048080 0.020859 0.026566 0.002554 0.008148 0.026498 0.007995 0.000000 0.030474 0.030474 0.003395 0.060909 0.000000 0.002747 0.083929 0.066194 0.026566 0.000000 0.027245 0.009463 0.045632 0.002837 0.002741 0.036030 0.000000 0.035983 0.018606 0.000000 0.000000 0.000000 0.031219 0.025568 0.008391 0.050514 0.035384 0.023643 0.042368 0.036258 0.051845 0.031647 0.014402 0.017558 0.011745 0.104584 0.024436 0.050782 0.048123 0.000000 0.043996 0.019017 0.020846 0.025584 0.042610 0.013901 0.014293 0.015419 0.055353 0.026929 0.000000 0.002648 0.002955 0.002301 0.000000 0.004776 0.012628 0.002898 0.031311 0.082783 0.024966 0.038618 0.013367 0.003444 0.014401 0.079872 0.000000 0.042322 0.035020 0.026441 0.043085 0.0 0.109436 0.000000 0.000000 0.000000 0.014529 0.000000 0.068521 0.017320 0.011524 0.007935 0.022151 0.016636 0.014968 0.003079 0.002361 0.043882 0.015995 0.003506 0.018428 0.032024 0.008136 0.021375 0.002806 0.056786 0.019956 0.023837 0.003013 0.000000 0.018253 0.0 0.003145 0.021861 0.032912 0.030848 0.000000 0.012675 0.002551 0.000000 0.049502 0.012381 0.021987 0.053285 0.021521 0.040493 0.018117 0.000000 0.014586 0.003304 0.051817 0.030863 0.066337 0.007551 0.035426 0.000000 0.058782 0.176301 0.080857 0.016212 0.000000 0.022251 0.035662 0.004741 0.028108 0.002561 0.029110 0.046522 0.002810 0.022403 0.048337 0.024549 0.012802 0.002492 0.036892 0.002884 0.000000 0.003240 0.014836 0.045687 0.020766 0.024258 0.059970 0.000000 0.038744 0.055400 0.011149 0.022169 0.008312 0.019448 0.045235 0.002715 0.003259 0.005958 0.000000 0.006907 0.003577 0.002600 0.002671 0.002646 0.131137 0.003470 0.021162 0.015139 0.026630 0.010836 0.002556 0.019650 0.003453 0.000000 0.022605 0.023906 0.025462 0.001792 0.014981 0.028843 0.039972 0.015818 0.021793 0.000000 0.000000 0.012977 0.000000 0.021799 0.021799 0.0 0.003119 0.002667 0.002667 0.029468 0.012180 0.000000 0.134327 0.019818 0.092826 0.00000 0.000000 0.007851 0.023761 0.002584 0.012603 0.050781 0.005934 0.002067 0.014962 0.00256 0.003066 0.071958 0.042613 0.015718 0.022650 0.002944 0.042971 0.007851 0.021665 0.025959 0.004415 0.004415 0.182013 0.002938 0.018014 0.003229 0.027663 0.002604 0.021512 0.127449 0.027031 0.000000 0.035093 0.002787 0.019901 0.027103 0.068608 0.021964 0.036614 0.145769 0.012011 0.111822 0.00000 0.018672 0.029294 0.003218 0.098881 0.003358 0.003240 0.012316 0.028416 0.016258 0.004199 0.016459 0.043696 0.042644 0.000000 0.011777 0.049453 0.023888 0.002544 0.136027 0.022557 0.032479 0.025547 0.017013 0.024661 0.007623 0.022749 0.002251 0.03509 0.007748 0.000000 0.000000 0.018560 0.031501 0.032020 0.003172 0.013927 0.019474 0.003049 0.037245 0.036588 0.000000 0.000000 0.052331 0.010485 0.026820 0.0 0.003564 0.010279 0.060630 0.000000 0.014032 0.044475 0.022764 0.010118 0.029954 0.005777 0.043927 0.000000 0.016713 0.013991 0.037159 0.019892 0.023787 0.039230 0.022101 0.004769 0.000000 0.035992 0.013187 0.111822 0.005233 0.006055 0.055118 0.002955 0.018645 0.023710 0.003182 0.000000 0.042583 0.002483 0.041367 0.030835 0.005456 0.005965 0.012540 0.016288 0.000000 0.026299 0.003188 0.000000 0.031522 0.028848 0.068746 0.002797 0.018497 0.023117 0.057752 0.042045 0.018694 0.040754 0.049061 0.011367 0.015468 0.000000 0.012095 0.016348 0.008470 0.002732 0.034985 0.000000 0.0 0.000000 0.015617 0.002978 0.018675 0.033236 0.046549 0.028802 0.015575 0.009984 0.013811 0.020725 0.002688 0.003026 0.048914 0.017088 0.0 0.042281 0.015917 0.0 0.146700 0.045939 0.017161 0.000000 0.000000 0.004035 0.015561 0.032982 0.038327 0.051851 0.030535 0.045804 0.049228 0.000000 0.094354 0.076876 0.038879 0.018238 0.0 0.039463 0.000000 0.002419 0.090904 0.028220 0.045246 0.050008 0.0 0.017067 0.029111 0.0 0.057392 0.011654 0.049969 0.006714 0.017758 0.005262 0.008347 0.004539 0.002850 0.014135 0.055275 0.012880 0.000000 0.031058 0.000000 0.025192 0.063909 0.011215 0.006168 0.011228 0.009179 0.044808 0.000000 0.022151 0.034456 0.001827 0.009259 0.019177 0.010312 0.003184 0.032222 0.019720 0.016735 0.046176 0.030156 0.002595 0.032883 0.025934 0.022437 0.005641 0.014489 0.012538 0.031593 0.023414 0.002658 0.002751 0.025031 0.009638 0.006183 0.035743 0.017701 0.002927 0.003355 0.013594 0.006178 0.020661 0.039228 0.006549 0.047751 0.024418 0.026189 0.026779 0.000000 0.032873 0.0 0.025325 0.024416 0.055741 0.067888 0.002658 0.037010 0.007097 0.021391 0.055586 0.002546 0.002347 0.005049 0.000000 0.000000 0.027169 0.000000 0.021018 0.002149 0.004975 0.002610 0.020275 0.002636 0.014026 0.014026 0.037217 0.007627 0.044438 0.033268 0.033268 0.0 0.000000 0.027857 0.023699 0.022680 0.020104 0.019300 0.040485 0.040137 0.016640 0.005544 0.000000 0.040465 0.000000 0.002511 0.003359 0.037999 0.043212 0.052983 0.153840 0.062229 0.006151 0.015048 0.014012 0.011746 0.019710 0.010642 0.013160 0.053735 0.027249 0.002916 0.013270 0.011803 0.017360 0.030338 0.050548 0.032156 0.030791 0.027921 0.036530 0.058311 0.029337 0.004436 0.000000 0.014793 0.062480 0.029902 0.004776 0.028474 0.021415 0.045419 0.002776 0.000000 0.016430 0.006004 0.033553 0.018503 0.031396 0.001750 0.014700 0.002914 0.020803 0.040257 0.002986 0.002635 0.012668 0.000000 0.020049 0.00467 0.071087 0.039044 0.002454 0.002601 0.000000 0.002742 0.018814 0.002835 0.071473 0.000000 0.0 0.013430 0.00551 0.008199 0.010298 0.000000 0.035518 0.023796 0.0 0.040462 0.002393 0.013182 0.088280 0.000000 0.059214 0.000000 0.055900 0.019869 0.000000 0.0 0.036554 0.016602 0.021203 0.002346 0.003038 0.015875 0.019251 0.003118 0.034813 0.039158 0.048883 0.000000 0.003000 0.053216 0.013102 0.019997 0.048563 0.003042 0.041 0.003065 0.014610 0.009295 0.014641 0.014534 0.021358 0.003738 0.028886 0.023021 0.003141 0.015315 0.060173 0.040741 0.018674 0.005255 0.021857 0.002619 0.002691 0.014684 0.023270 0.033407 0.053067 0.012080 0.000000 0.017154 0.002721 0.056858 0.028127 0.002941 0.030949 0.027912 0.024888 0.022917 0.004753 0.002708 0.042521 0.060982 0.003938 0.002786 0.050463 0.002681 0.037948 0.059514 0.014981 0.015720 0.005508 0.002668 0.002653 0.00315 0.028285 0.000000 0.001974 0.008491 0.000000 0.006131 0.002905 0.029458 0.039299 0.142796 0.000000 0.039816 0.083763 0.014696 0.030490 0.018425 0.000000 0.014255 0.028256 0.028780 0.021253 0.026670 0.020876 0.025286 0.002657 0.002267 0.050025 0.064478 0.070599 0.002516 0.016604 0.018430 0.014629 0.019884 0.014356 0.026621 0.043928 0.005342 0.002618 0.002937 0.035506 0.025969 0.058693 0.002346 0.032211 0.016001 0.081309 0.004703 0.025374 0.003121 0.019285 0.033171 0.013219 0.000000 0.002966 0.016255 0.047178 0.017910 0.000000 0.017808 0.017914 0.006955 0.000000 0.028256 0.013195 0.000000 0.014723 0.021432 0.000000 0.002747 0.002965 0.015620 0.003800 0.000000 0.009825 0.013445 0.019763 0.015818 0.051079 0.039327 0.040778 0.030873 0.000000 0.053258 0.003914 0.050286 0.003196 0.003196 0.046090 0.033853 0.020175 0.003139 0.029587 0.002869 0.075667 0.014558 0.023291 0.020908 0.016526 0.105564 0.005044 0.000000 0.057883 0.002884 0.002153 0.088839 0.000000 0.002763 0.005969 0.002894 0.030568 0.009214 0.059747 0.004138 0.014118 0.106118 0.002824 0.002668 0.019992 0.000000 0.013123 0.003523 0.039181 0.015973 0.050130 0.002595 0.079289 0.011740 0.004562 0.003209 0.035496 0.013828 0.011641 0.000000 0.00306 0.054450 0.000000 0.028810 0.0 0.015748 0.156942 0.141593 0.005857 0.013116 0.091903 0.063232 0.004919 0.068616 0.029632 0.003963 0.026362 0.170204 0.007281 0.020497 0.013954 0.012819 0.000000 0.000000 0.085930 0.011768 0.092216 0.015687 0.013748 0.037440 0.000000 0.014973 0.010201 0.006079 0.003514 0.018000 0.002409 0.002670 0.003074 0.052162 0.021724 0.021724 0.084470 0.048587 0.119277 0.092241 0.020274 0.00689 0.100361 0.031588 0.040067 0.062075 0.063582 0.014873 0.157872 0.018361 0.033688 0.019910 0.00314 0.017373 0.024413 0.005724 0.022756 0.216255 0.028113 0.027963 0.236209 0.215638 0.002773 0.009893 0.053306 0.005645 0.002885 0.044587 0.053026 0.002591 0.017314 0.008984 0.000000 0.008056 0.008984 0.022442 0.214702 0.029009 0.002606 0.015087 0.009115 0.002608 0.129791 0.018063 0.052197 0.014899 0.116452 0.000000 0.0 0.000000 0.015066 0.115885 0.000000 0.026995 0.075247 0.019513 0.036320 0.090185 0.075247 0.013413 0.013748 0.000000 0.011576 0.003425 0.031630 0.027248 0.026221 0.00000 0.0 0.018086 0.030003 0.028749 0.000000 0.0 0.002377 0.093207 0.000000 0.034322 0.012279 0.008732 0.049657 0.019659 0.078908 0.009669 0.016638 0.018208 0.003148 0.002451 0.010389 0.014082 0.030788 0.0 0.022045 0.053933 0.014517 0.029268 0.002761 0.004500 0.021566 0.002372 0.020686 0.017921 0.000000 0.0 0.017438 0.040109 0.031015 0.027981 0.017883 0.156235 0.002817 0.002429 0.026719 0.014528 0.016382 0.002844 0.221491 0.013887 0.000000 0.083149 0.000000 0.043239 0.000000 0.000000 0.020214 0.161844 0.049584 0.098898 0.030176 0.127994 0.012062 0.00000 0.031569 0.0 0.000000 0.003539 0.010228 0.000000 0.021729 0.026286 0.000000 0.000000 0.003308 0.031862 0.017726 0.003006 0.029793 0.015271 0.016518 0.041417 0.017477 0.008729 0.028468 0.009079 0.023476 0.015086 0.002025 0.002214 0.0 0.000000 0.004963 0.011322 0.016079 0.033241 0.008379 0.022125 0.002868 0.002978 0.000000 0.113813 0.057294 0.019779 0.018572 0.011816 0.023635 0.055756 0.024789 0.025698 0.066214 0.000000 0.003393 0.000000 0.012536 0.013060 0.002739 0.037350 0.044367 0.013418 0.027392 0.017455 0.012771 0.009894 0.016346 0.046557 0.052997 0.000000 0.031489 0.015165 0.004786 0.032293 0.051494 0.00192 0.016848 0.002600 0.018432 0.019578 0.019400 0.014536 0.075941 0.00000 0.0 0.024285 0.05094 0.018162 0.101370 0.002837 0.062793 0.00000 0.005656 0.018832 0.02284 0.014554 0.005629 0.002591 0.039330 0.016395 0.015575 0.015801 0.017275 0.041094 0.000000 0.000000 0.025835 0.000000 0.057349 0.034425 0.011713 0.066379 0.012136 0.178235 0.159364 0.000000 0.013056 0.068588 0.039395 0.029555 0.016951 0.002995 0.000000 0.007823 0.003797 0.040477 0.009420 0.005813 0.036317 0.005869 0.017322 0.090597 0.050100 0.171569 0.000000 0.002992 0.003604 0.002498 0.013742 0.027392 0.018833 0.028827 0.139107 0.015881 0.02629 0.016829 0.002913 0.009266 0.082223 0.069487 0.016466 0.05019 0.013317 0.042610 0.000000 0.102202 0.031613 0.102225 0.055566 0.000000 0.000000 0.025419 0.002301 0.013869 0.052264 0.002442 0.145840 0.000000 0.010296 0.008128 0.00000 0.009023 0.010325 0.032022 0.030017 0.000000 0.000000 0.021264 0.063174 0.038116 0.032290 0.027801 0.029283 0.000000 0.000000 0.061957 0.003237 0.000000 0.023681 0.002220 0.003371 0.011463 0.054300 0.031662 0.057877 0.016991 0.212041 0.002727 0.004128 0.000000 0.00000 0.007651 0.014157 0.029643 0.04862 0.197664 0.018614 0.00000 0.030745 0.120986 0.002279 0.0 0.022430 0.038655 0.013615 0.002212 0.060052 0.014119 0.000000 0.105871 0.000000 0.015846 0.041146 0.026109 0.026730 0.062687 0.002965 0.018960 0.000000 0.0 0.003446 0.004175 0.029781 0.031448 0.002323 0.029063 0.019316 0.021388 0.000000 0.093595 0.03315 0.019159 0.000000 0.000000 0.017298 0.014045 0.009684 0.000000 0.005556 0.025787 0.00000 0.023958 0.129789 0.0 0.033808 0.009464 0.047627 0.033824 0.033112 0.018372 0.00977 0.033689 0.0 0.036149 0.045515 0.024003 0.031833 0.049162 0.076358 0.043923 0.033778 0.017676 0.000000 0.010495 0.000000 0.002673 0.002488 0.004001 0.014992 0.007618 0.002425 0.000000 0.000000 0.002552 0.000000 0.017646 0.006101 0.009153 0.000000 0.013558 0.000000 0.062986 0.012826 0.033619 0.005455 0.002146 0.021652 0.039330 0.011182 0.017933 0.000000 0.011451 0.0 0.025611 0.002565 0.002996 0.035594 0.018174 0.002703 0.003344 0.000000 0.002098 0.004228 0.000000 0.002615 0.019414 0.032468 0.003346 0.010911 0.011451 0.024727 0.000000 0.023279 0.006639 0.030842 0.03485 0.010702 0.008059 0.000000 0.027811 0.002723 0.052038 0.002048 0.172548 0.011789 0.134723 0.002834 0.002629 0.089621 0.002725 0.031520 0.0 0.000000 0.038654 0.000000 0.019386 0.000000 0.002257 0.015387 0.042854 0.042718 0.002891 0.007679 0.0 0.000000 0.000000 0.059618 0.013551 0.001779 0.000000 0.020247 0.000000 0.082117 0.044916 0.000000 0.006839 0.002493 0.054706 0.019179 0.017051 0.000000 0.054165 0.019024 0.009835 0.103808 0.141576 0.011893 0.14666 0.013040 0.04911 0.023013 0.000000 0.007256 0.021173 0.009906 0.000000 0.010574 0.009153 0.007701 0.022516 0.049884 0.024009 0.009602 0.053903 0.004955 0.006246 0.130485 0.014404 0.009835 0.008158 0.021409 0.006923 0.022479 0.000000 0.006875 0.015039 0.026751 0.0 0.007701 0.039347 0.049884 0.000000 0.000000 0.010642 0.022716 0.000000 0.036291 0.124054 0.145544 0.008089 0.011774 0.000000 0.075456 0.000000 0.009491 0.174329 0.032035 0.000000 0.025613 0.048642 0.003580 0.014702 0.020254 0.036653 0.020340 0.051174 0.035239 0.039118 0.031653 0.040232 0.051156 0.033871 0.000000 0.003170 0.000000 0.052553 0.060739 0.076553 0.021531 0.007825 0.020704 0.012816 0.008657 0.038778 0.029474 0.000000 0.017642 0.000000 0.000000 0.034336 0.043904 0.000000 0.000000 0.048852 0.000000 0.000000 0.0 0.013727 0.020916 0.031258 0.02117 0.000000 0.007128 0.024637 0.021818 0.040495 0.008320 0.00876 0.000000 0.032776 0.032273 0.026949 0.008686 0.026777 0.008201 0.000000 0.019977 0.002031 0.000000 0.007634 0.000000 0.023937 0.012569 0.002847 0.000000 0.041705 0.005181 0.000000 0.024609 0.028677 0.013251 0.023525 0.00000 0.031144 0.009434 0.017443 0.024009 0.000000 0.016261 0.014962 0.000000 0.048713 0.037210 0.056607 0.040631 0.000000 0.024055 0.002730 0.000000 0.012978 0.023818 0.046268 0.015892 0.046323 0.000000 0.034451 0.023928 0.056865 0.008485 0.040960 0.000000 0.000000 0.002048 0.016019 0.000000 0.001956 0.000000 0.024159 0.000000 0.030409 0.009095 0.000000 0.035336 0.024407 0.011433 0.002353 0.014502 0.000000 0.000000 0.000000 0.000000 0.000000 0.030076 0.038135 0.027113 0.012193 0.013384 0.010615 0.031698 0.044184 0.000000 0.000000 0.054470 0.000000 0.027857 0.013938 0.000000 0.000000 0.011771 0.000000 0.010661 0.002060 0.010903 0.035681 0.000000 0.05169 0.000000 0.038474 0.01026 0.024303 0.000000 0.036362 0.072274 0.024502 0.009096 0.047043 0.051045 0.009373 0.002812 0.031868 0.052599 0.080472 0.002822 0.019359 0.01923 0.009168 0.002301 0.060449 0.053987 0.016591 0.000000 0.000000 0.009897 0.016204 0.010448 0.007403 0.000000 0.025262 0.036553 0.026901 0.001873 0.022225 0.009993 0.060383 0.008417 0.015358 0.000000 0.069721 0.000000 0.001851 0.014572 0.002938 0.013552 0.000000 0.054904 0.054151 0.086383 0.002902 0.019930 0.000000 0.012432 0.012577 0.015904 0.014546 0.007525 0.002536 0.021114 0.068296 0.049786 0.000000 0.009182 0.0 0.068210 0.060102 0.02004 0.000000 0.038723 0.000000 0.00000 0.00000 0.000000 0.038559 0.044633 0.019470 0.018000 0.022508 0.000000 0.015308 0.011891 0.012116 0.063205 0.002979 0.017395 0.000000 0.009941 0.000000 0.010109 0.000000 0.049388 0.00329 0.000000 0.022339 0.000000 0.011831 0.030270 0.023871 0.0 0.047995 0.012332 0.000000 0.100628 0.053876 0.013356 0.000000 0.016339 0.034769 0.002753 0.010611 0.019130 0.015157 0.041005 0.032235 0.022750 0.054283 0.015184 0.009132 0.028238 0.046600 0.002683 0.013493 0.010132 0.024564 0.019719 0.065239 0.071713 0.052257 0.026222 0.023883 0.016774 0.002774 0.000000 0.000000 0.000000 0.002521 0.002587 0.001962 0.011815 0.0 0.021333 0.03599 0.014144 0.030918 0.000000 0.020933 0.035206 0.019346 0.02865 0.013847 0.042347 0.020923 0.002490 0.016044 0.017549 0.056293 0.037930 0.037079 0.002707 0.021224 0.117040 0.004930 0.009041 0.017604 0.028761 0.048585 0.021590 0.035331 0.000000 0.010304 0.002650 0.022086 0.086195 0.004468 0.015915 0.029499 0.043901 0.013752 0.002725 0.000000 0.010191 0.034875 0.012040 0.022498 0.000000 0.022750 0.000000 0.060721 0.005096 0.153284 0.010410 0.013741 0.010764 0.082831 0.002627 0.027358 0.059732 0.000000 0.026549 0.000000 0.041474 0.000000 0.000 0.015674 0.020952 0.037657 0.0 0.030098 0.057520 0.000000 0.056830 0.000000 0.010107 0.003125 0.05401 0.076498 0.061030 0.019245 0.000000 0.002661 0.035859 0.055090 0.002013 0.0 0.105091 0.000000 0.029280 0.0 0.045640 0.068630 0.006481 0.000000 0.016902 0.006461 0.022288 0.036851 0.023376 0.003538 0.013003 0.031101 0.007702 0.022710 0.031202 0.013962 0.003896 0.000000 0.057950 0.012372 0.020066 0.038062 0.009621 0.002820 0.020199 0.047830 0.015736 0.009473 0.014767 0.046015 0.032626 0.053891 0.002775 0.000000 0.060051 0.042975 0.026887 0.000000 0.000000 0.017174 0.000000 0.020199 0.000000 0.077232 0.000000 0.030044 0.028627 0.013434 0.011331 0.038708 0.000000 0.035548 0.027434 0.002917 0.002641 0.021492 0.000000 0.000000 0.021371 0.000000 0.000000 0.013335 0.000000 0.042425 0.002718 0.016528 0.000000 0.009656 0.000000 0.016085 0.002456 0.036773 0.031997 0.045057 0.021628 0.015785 0.000000 0.026163 0.026086 0.017151 0.029503 0.064398 0.001893 0.077984 0.021656 0.000000 0.002776 0.016180 0.025193 0.00000 0.000000 0.000000 0.002751 0.028616 0.050837 0.039921 0.019603 0.010331 0.000000 0.000000 0.000000 0.050873 0.018142 0.000000 0.008751 0.051199 0.002887 0.000000 0.014672 0.000000 0.040987 0.005807 0.005215 0.000000 0.000000 0.007112 0.019590 0.019154 0.003247 0.002452 0.051374 0.030801 0.019212 0.011538 0.0 0.069511 0.018073 0.005292 0.007759 0.032658 0.034739 0.002446 0.043439 0.008625 0.010201 0.031551 0.000000 0.002401 0.029723 0.106481 0.020524 0.010881 0.000000 0.000000 0.055139 0.002732 0.120723 0.016976 0.002704 0.022744 0.010466 0.007154 0.009071 0.018296 0.016049 0.011829 0.050128 0.092669 0.023975 0.051183 0.005836 0.020163 0.060747 0.107925 0.007973 0.0 0.017280 0.000000 0.032419 0.045576 0.040611 0.000000 0.018322 0.000000 0.013668 0.039685 0.002517 0.011900 0.031126 0.017224 0.000000 0.002331 0.019541 0.026764 0.046049 0.000000 0.012915 0.00292 0.038240 0.034492 0.046548 0.003335 0.023525 0.018592 0.026017 0.177829 0.042374 0.016201 0.005479 0.039523 0.000000 0.032173 0.026546 0.019714 0.038087 0.074346 0.071048 0.017243 0.000000 0.000000 0.017452 0.033109 0.053368 0.016774 0.004096 0.019279 0.015894 0.032691 0.000000 0.053518 0.002836 0.000000 0.044328 0.030849 0.052186 0.002468 0.047615 0.000000 0.000000 0.017448 0.026972 0.029798 0.033246 0.009423 0.009216 0.020104 0.002192 0.000000 0.073654 0.020068 0.000000 0.031368 0.080580 0.109282 0.030076 0.048136 0.003121 0.015892 0.017173 0.020923 0.000000 0.009993 0.038713 0.037174 0.002922 0.052364 0.016255 0.018942 0.006716 0.026254 0.000000 0.028179 0.150842 0.012297 0.000000 0.033065 0.019470 0.003063 0.002157 0.000000 0.019796 0.026593 0.029992 0.027760 0.017199 0.018124 0.055946 0.000000 0.005249 0.000000 0.0 0.00000 0.018895 0.004598 0.002849 0.043507 0.002030 0.031626 0.003070 0.133428 0.023761 0.021099 0.003043 0.019651 0.025012 0.019629 0.021016 0.011992 0.000000 0.042476 0.032425 0.008695 0.039040 0.046317 0.002625 0.020200 0.000000 0.029528 0.009945 0.065121 0.040257 0.000000 0.005137 0.021979 0.137684 0.013342 0.0 0.148410 0.008602 0.043575 0.028143 0.000000 0.002652 0.043013 0.021969 0.000000 0.068985 0.091029 0.012941 0.010057 0.002333 0.028380 0.026333 0.021420 0.033746 0.031850 0.002945 0.029639 0.032740 0.011093 0.000000 0.055748 0.002591 0.000000 0.010826 0.094821 0.002155 0.000000 0.016002 0.028441 0.020697 0.028509 0.019230 0.024689 0.013720 0.000000 0.016212 0.00000 0.012600 0.035689 0.000000 0.018981 0.034897 0.058186 0.0 0.018485 0.019211 0.004727 0.019390 0.036337 0.058407 0.013956 0.123316 0.029046 0.013564 0.002728 0.017384 0.040550 0.011911 0.014779 0.061385 0.000000 0.048943 0.002748 0.000000 0.008136 0.180415 0.118830 0.030868 0.003245 0.005138 0.009300 0.008246 0.010244 0.032915 0.097188 0.031714 0.000000 0.058483 0.0 0.032454 0.011937 0.019075 0.0 0.062606 0.016601 0.015754 0.030200 0.000000 0.028921 0.011728 0.032179 0.009016 0.013207 0.028112 0.127928 0.105914 0.000000 0.014473 0.01289 0.000000 0.033231 0.002967 0.000000 0.006680 0.044095 0.000000 0.154224 0.022479 0.022479 0.010642 0.000000 0.052746 0.000000 0.01581 0.050433 0.008943 0.065378 0.0 0.090925 0.130066 0.030361 0.074411 0.139325 0.138472 0.015104 0.016367 0.009119 0.036765 0.000000 0.002360 0.048736 0.010063 0.125683 0.068024 0.017128 0.022605 0.016799 0.009566 0.017165 0.009417 0.049706 0.043482 0.009978 0.000000 0.078132 0.0 0.028794 0.002772 0.011685 0.051624 0.023876 0.003331 0.074061 0.036706 0.016257 0.0 0.013237 0.190746 0.009433 0.000000 0.002610 0.056394 0.002196 0.002556 0.049538 0.012353 0.002709 0.052447 0.000000 0.018265 0.044079 0.008296 0.032958 0.000000 0.059432 0.127863 0.015083 0.000000 0.003036 0.002415 0.015995 0.022863 0.01838 0.058754 0.012345 0.028593 0.024345 0.031989 0.000000 0.037897 0.008575 0.018520 0.119588 0.037289 0.024709 0.057543 0.027288 0.020169 0.000000 0.019981 0.009259 0.007626 0.003323 0.060699 0.056759 0.042067 0.140183 0.017350 0.066179 0.000000 0.032368 0.051892 0.034859 0.007591 0.052796 0.000000 0.107752 0.003439 0.026344 0.009302 0.000000 0.018708 0.029820 0.002813 0.003142 0.003142 0.004914 0.002908 0.000000 0.06237 0.021567 0.002917 0.234464 0.038245 0.006472 0.030581 0.008085 0.048063 0.013898 0.043195 0.029505 0.014371 0.009189 0.009814 0.027117 0.000000 0.076592 0.039219 0.016089 0.002879 0.017403 0.002762 0.045407 0.046413 0.110491 0.003002 0.000000 0.0 0.006932 0.080789 0.034568 0.032882 0.047440 0.023218 0.003085 0.000000 0.085689 0.021234 0.013967 0.131191 0.038636 0.103612 0.00000 0.013894 0.002901 0.000000 0.025693 0.045767 0.034113 0.002727 0.024889 0.214805 0.002539 0.021107 0.000000 0.015131 0.079131 0.111668 0.021233 0.126324 0.00000 0.031786 0.070958 0.000000 0.000000 0.132271 0.009370 0.043616 0.016649 0.011331 0.002241 0.008771 0.017834 0.0032 0.019450 0.032189 0.019450 0.173472 0.002361 0.000000 0.055283 0.014762 0.174791 0.002672 0.033344 0.022993 0.006067 0.036119 0.049025 0.107575 0.002487 0.0 0.108450 0.004085 0.0 0.0 0.121682 0.016811 0.022246 0.023107 0.011395 0.031085 0.011314 0.000000 0.011297 0.032904 0.023693 0.038095 0.012607 0.014680 0.0 0.049962 0.026348 0.035157 0.003513 0.000000 0.062799 0.0 0.026128 0.0 0.024678 0.002857 0.031020 0.003710 0.000000 0.0 0.0 0.215626 0.037058 0.002145 0.016734 0.076205 0.000000 0.019447 0.021299 0.0 0.000000 0.000000 0.042331 0.000000 0.024031 0.035552 0.0 0.039913 0.014122 0.021682 0.031194 0.036149 0.000000 0.000000 0.015906 0.021998 0.020299 0.000000 0.015481 0.036391 0.0 0.000000 0.0 0.000000 0.020374 0.160302 0.023928 0.026021 0.022813 0.000000 0.031701 0.010878 0.023513 0.000000 0.034747 0.003059 0.003067 0.01406 0.022356 0.033116 0.052843 0.110537 0.003782 0.025359 0.052266 0.017951 0.000000 0.028207 0.000000 0.002671 0.012864 0.000000 0.000000 0.040209 0.003597 0.000000 0.024763 0.054737 0.000000 0.01659 0.000000 0.037203 0.104125 0.010167 0.000000 0.072905 0.018378 0.000000 0.010866 0.003445 0.033144 0.010435 0.002381 0.000000 0.020786 0.066244 0.031481 0.000000 0.000000 0.003180 0.000000 0.003008 0.036962 0.107723 0.045505 0.0 0.025741 0.01819 0.023092 0.000000 0.0 0.024874 0.042208 0.048369 0.000000 0.000000 0.0 0.044903 0.051173 0.029745 0.009634 0.0 0.003809 0.012224 0.010243 0.028305 0.000000 0.016105 0.021099 0.021344 0.000000 0.002844 0.000000 0.012176 0.000000 0.157418 0.0 0.021068 0.021807 0.003486 0.000000 0.009875 0.000000 0.064146 0.000000 0.000000 0.002954 0.018266 0.000000 0.032757 0.000000 0.012577 0.000000 0.000000 0.003880 0.047242 0.002306 0.000000 0.040714 0.021102 0.011255 0.017031 0.022179 0.021822 0.00000 0.021659 0.002753 0.029876 0.025359 0.0 0.018802 0.054327 0.016574 0.010340 0.024772 0.0 0.01808 0.0 0.134014 0.008927 0.000000 0.093214 0.022810 0.203747 0.022222 0.016515 0.025359 0.018586 0.025359 0.00000 0.003403 0.055706 0.025830 0.024675 0.039953 0.000000 0.024315 0.135534 0.000000 0.003363 0.012068 0.000000 0.000000 0.012767 0.035349 0.000000 0.002871 0.015253 0.000000 0.015503 0.067649 0.070936 0.003295 0.017711 0.035135 0.013230 0.000000 0.0 0.000000 0.020263 0.000000 0.0 0.036783 0.015896 0.064146 0.072905 0.010006 0.044001 0.028464 0.016129 0.022087 0.000000 0.000000 0.015541 0.013906 0.000000 0.055456 0.000000 0.000000 0.000000 0.000000 0.01011 0.003047 0.014090 0.044027 0.026798 0.003706 0.000000 0.018995 0.048879 0.027046 0.00000 0.0 0.046628 0.00000 0.019563 0.000000 0.034077 0.050342 0.003599 0.035430 0.018112 0.016434 0.000000 0.002922 0.002925 0.012066 0.054364 0.016104 0.000000 0.032757 0.010222 0.034191 0.020818 0.0 0.016253 0.010534 0.020092 0.043477 0.026551 0.170287 0.002628 0.004096 0.021777 0.000000 0.026604 0.003907 0.020191 0.063444 0.000000 0.024462 0.026348 0.004224 0.000000 0.010745 0.026358 0.024001 0.016572 0.000000 0.036203 0.000000 0.000000 0.028095 0.000000 0.036395 0.003808 0.0 0.045965 0.017273 0.0 0.00000 0.012217 0.003965 0.042210 0.000000 0.002711 0.000000 0.022851 0.053309 0.000000 0.025359 0.060396 0.0 0.032814 0.000000 0.104100 0.000000 0.014380 0.022926 0.000000 0.009605 0.208383 0.035936 0.020883 0.0 0.0 0.018421 0.022281 0.034837 0.105143 0.086253 0.000000 0.035262 0.013920 0.019065 0.023617 0.003007 0.003243 0.00000 0.065831 0.000000 0.049078 0.000000 0.090694 0.010068 0.0 0.029044 0.01095 0.0 0.027782 0.000000 0.024272 0.025359 0.003461 0.014452 0.023545 0.000000 0.0 0.000000 0.000000 0.015617 0.000000 0.243792 0.000000 0.000000 0.000000 0.014197 0.009640 0.034353 0.054949 0.024227 0.00000 0.000000 0.000000 0.018439 0.017218 0.000000 0.000000 0.016046 0.017627 0.031166 0.016906 0.060202 0.0 0.000000 0.065178 0.009925 0.010063 0.000000 0.041344 0.000000 0.010725 0.0 0.072884 0.000000 0.002854 0.169264 0.051270 0.000000 0.030559 0.073920 0.049044 0.0 0.000000 0.064146 0.01659 0.0 0.139354 0.000000 0.018223 0.034554 0.010207 0.021675 0.006177 0.003570 0.011801 0.000000 0.000000 0.002972 0.015694 0.0 0.025929 0.003178 0.000000 0.000000 0.037002 0.013736 0.000000 0.000000 0.053807 0.020725 0.000000 0.003153 0.014878 0.039663 0.011995 0.031586 0.015524 0.011674 0.059485 0.0 0.023152 0.0 0.010309 0.026786 0.166534 0.077746 0.039253 0.000000 0.0 0.0 0.029024 0.000000 0.002505 0.057981 0.016206 0.028829 0.002266 0.050801 0.00000 0.015849 0.003355 0.019047 0.031746 0.000000 0.025359 0.032132 0.025359 0.000000 0.009828 0.0 0.070082 0.018713 0.0 0.000000 0.142011 0.045238 0.008828 0.000000 0.030310 0.041841 0.000000 0.000000 0.032757 0.032757 0.000000 0.003610 0.02222 0.01816 0.0 0.000000 0.023370 0.024522 0.000000 0.01659 0.000000 0.000000 0.000000 0.003732 0.000000 0.017877 0.028313 0.0 0.026985 0.083148 0.0 0.020648 0.075473 0.017965 0.011722 0.000000 0.025240 0.004058 0.027208 0.042695 0.056457 0.000000 0.000000 0.023376 0.000000 0.0132 0.000000 0.000000 0.027804 0.000000 0.0 0.012291 0.000000 0.018619 0.046709 0.015507 0.081129 0.038718 0.019562 0.130409 0.016451 0.002543 0.000000 0.010715 0.002921 0.019097 0.012428 0.032620 0.033770 0.026321 0.047069 0.058001 0.0 0.020709 0.010645 0.034660 0.039056 0.026998 0.000000 0.015454 0.002507 0.000000 0.026478 0.009070 0.000000 0.018735 0.000000 0.034737 0.000000 0.056494 0.064146 0.061746 0.010661 0.000000 0.003119 0.0 0.053039 0.035725 0.025359 0.014015 0.011857 0.000000 0.041294 0.127570 0.000000 0.000000 0.017394 0.036405 0.006505 0.0 0.023307 0.004096 0.013283 0.023364 0.000000 0.003179 0.01659 0.034771 0.017852 0.003832 0.000000 0.01169 0.000000 0.012262 0.024616 0.002621 0.016542 0.000000 0.033058 0.000000 0.034378 0.016542 0.021164 0.016695 0.000000 0.0 0.000000 0.010645 0.014316 0.000000 0.024087 0.013756 0.072534 0.000000 0.0 0.003600 0.0 0.000000 0.039103 0.033094 0.000000 0.000000 0.020430 0.033690 0.019673 0.000000 0.018102 0.000000 0.021812 0.000000 0.023423 0.027360 0.011971 0.046237 0.000000 0.000000 0.013338 0.090276 0.027673 0.0 0.000000 0.01659 0.158338 0.000000 0.017307 0.019729 0.047891 0.000000 0.003065 0.036801 0.000000 0.000000 0.000000 0.017875 0.012467 0.003131 0.019076 0.000000 0.021620 0.000000 0.045384 0.056869 0.000000 0.019456 0.053303 0.000000 0.016542 0.007925 0.031648 0.028346 0.025502 0.000000 0.063714 0.0 0.0 0.011070 0.003603 0.031615 0.025055 0.028000 0.014387 0.049952 0.044776 0.033901 0.029768 0.014669 0.029688 0.000000 0.014804 0.030807 0.011203 0.000000 0.013165 0.038298 0.023393 0.027542 0.003456 0.011441 0.002992 0.003206 0.020936 0.000000 0.000000 0.000000 0.010855 0.0 0.000000 0.010484 0.034611 0.048007 0.025757 0.024842 0.048775 0.0 0.024686 0.000000 0.091547 0.025359 0.005248 0.000000 0.105163 0.079627 0.065225 0.004336 0.045356 0.041534 0.108314 0.207302 0.000000 0.000000 0.014970 0.044035 0.023318 0.033284 0.013926 0.010102 0.009904 0.000000 0.002673 0.007857 0.000000 0.003422 0.009635 0.057981 0.082822 0.024941 0.057385 0.025282 0.014208 0.020199 0.025830 0.000000 0.003867 0.006997 0.000000 0.03181 0.002525 0.010225 0.0 0.022295 0.000000 0.015245 0.125761 0.009855 0.000000 0.122504 0.0 0.032592 0.032683 0.013179 0.0 0.003173 0.050993 0.031796 0.031865 0.000000 0.000000 0.127365 0.009856 0.0 0.053910 0.0 0.093807 0.098201 0.152004 0.000000 0.003575 0.014054 0.000000 0.067217 0.017772 0.000000 0.023643 0.013442 0.145223 0.078583 0.193734 0.000000 0.013451 0.000000 0.031624 0.029508 0.017376 0.010137 0.089637 0.042254 0.013085 0.018590 0.131983 0.0 0.050851 0.013612 0.019902 0.009162 0.044695 0.045863 0.000000 0.029164 0.050479 0.011717 0.010646 0.000000 0.000000 0.003428 0.111429 0.025234 0.000000 0.000000 0.001871 0.000000 0.047036 0.000000 0.000000 0.003095 0.007901 0.027746 0.002721 0.011847 0.052742 0.036434 0.023900 0.021083 0.036058 0.003171 0.017896 0.038887 0.046815 0.053792 0.049151 0.006287 0.030579 0.030689 0.000000 0.002631 0.039849 0.033698 0.000000 0.000000 0.031007 0.000000 0.002440 0.000000 0.014012 0.000000 0.025122 0.002466 0.017279 0.002658 0.026539 0.002662 0.000000 0.000000 0.000000 0.063062 0.000000 0.022727 0.022409 0.000000 0.045513 0.000000 0.000000 0.053796 0.046252 0.000000 0.002880 0.002510 0.004419 0.013995 0.028246 0.028246 0.026556 0.009058 0.017747 0.031808 0.023449 0.011705 0.018415 0.000000 0.009982 0.009121 0.000000 0.018718 0.007486 0.016842 0.000000 0.000000 0.028645 0.000000 0.000000 0.051509 0.010228 0.018599 0.000000 0.016221 0.000000 0.010577 0.029605 0.168487 0.005107 0.002884 0.008195 0.047111 0.031052 0.009859 0.011423 0.053660 0.015017 0.000000 0.022794 0.036817 0.003296 0.014612 0.02919 0.003533 0.020008 0.0 0.066526 0.032145 0.106971 0.0 0.003264 0.000000 0.003356 0.047545 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.024406 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.019790 0.037746 0.025544 0.061930 0.043548 0.020456 0.084285 0.005680 0.000000 0.011136 0.032874 0.000000 0.005105 0.002552 0.003619 0.014651 0.045261 0.034523 0.029374 0.013027 0.002708 0.054981 0.082478 0.003089 0.017649 0.011729 0.000000 0.041356 0.004701 0.004239 0.006552 0.004252 0.032322 0.025604 0.004817 0.000000 0.013027 0.000000 0.010814 0.010525 0.002249 0.008728 0.000000 0.002201 0.000000 0.0 0.004709 0.033250 0.099267 0.002468 0.002555 0.012597 0.002241 0.013817 0.004733 0.000000 0.000000 0.030560 0.013919 0.040880 0.014125 0.018251 0.000000 0.0 0.011975 0.000000 0.019478 0.032449 0.002717 0.018779 0.022972 0.000000 0.032023 0.0 0.0 0.011430 0.027888 0.000000 0.002557 0.0 0.002301 0.006303 0.011816 0.000000 0.023484 0.0 0.002856 0.000000 0.029243 0.032809 0.019188 0.029857 0.059131 0.042880 0.0 0.014729 0.003912 0.009796 0.000000 0.000000 0.002539 0.015987 0.004283 0.0 0.002488 0.008344 0.028961 0.000000 0.040687 0.012737 0.015300 0.043690 0.171632 0.032014 0.012008 0.014220 0.012323 0.000000 0.028970 0.000000 0.023459 0.002903 0.099171 0.003443 0.013664 0.0 0.013664 0.118870 0.058756 0.062885 0.0 0.006872 0.012760 0.012567 0.008596 0.112121 0.019216 0.030416 0.012608 0.048520 0.115821 0.00000 0.034922 0.023388 0.017661 0.019549 0.002981 0.018265 0.000000 0.024659 0.017653 0.039964 0.040055 0.017235 0.013939 0.028064 0.033830 0.021694 0.048921 0.01561 0.022472 0.002086 0.030548 0.000000 0.002969 0.000000 0.016889 0.038833 0.014470 0.021635 0.000000 0.023193 0.023073 0.046004 0.035450 0.008972 0.006935 0.025079 0.011910 0.020552 0.000000 0.023021 0.000000 0.089057 0.045077 0.012468 0.013148 0.003470 0.000000 0.023812 0.006132 0.044368 0.000000 0.02140 0.028211 0.025224 0.006105 0.157538 0.003439 0.017280 0.007961 0.002978 0.022346 0.0 0.000000 0.007089 0.0 0.014373 0.028897 0.007821 0.022346 0.000000 0.035894 0.127767 0.011829 0.0 0.002655 0.008013 0.032648 0.006650 0.000000 0.032488 0.037160 0.006086 0.032516 0.003108 0.042174 0.000000 0.024238 0.026677 0.063663 0.010310 0.020501 0.002250 0.019836 0.000000 0.013005 0.049050 0.000000 0.038669 0.051569 0.039006 0.051098 0.043606 0.000000 0.015471 0.003410 0.022565 0.0 0.044572 0.035504 0.000000 0.038607 0.015688 0.002947 0.015511 0.002891 0.009528 0.027597 0.010599 0.024176 0.021213 0.002552 0.000000 0.002662 0.031343 0.064514 0.002307 0.015365 0.002734 0.010973 0.020265 0.000000 0.041229 0.003322 0.002686 0.027512 0.002735 0.038862 0.017750 0.014015 0.027027 0.039981 0.044897 0.002826 0.035777 0.000000 0.002898 0.000000 0.000000 0.000000 0.039403 0.029731 0.0 0.117118 0.017930 0.015839 0.023314 0.043224 0.000000 0.031937 0.028452 0.032016 0.00000 0.011072 0.016469 0.00000 0.064058 0.047105 0.008677 0.016097 0.0 0.002715 0.017296 0.046326 0.021353 0.002536 0.001954 0.0 0.015562 0.126270 0.013070 0.016957 0.029117 0.013490 0.023156 0.066775 0.000000 0.003273 0.000000 0.010901 0.013091 0.037174 0.015733 0.013321 0.044814 0.022986 0.034629 0.029741 0.003102 0.030889 0.020826 0.022047 0.040101 0.113944 0.000000 0.042880 0.024052 0.024039 0.022047 0.010365 0.036034 0.045541 0.002687 0.018258 0.002697 0.009639 0.012646 0.000000 0.025947 0.021954 0.021356 0.000000 0.078431 0.00606 0.002580 0.009275 0.061946 0.040004 0.024026 0.002659 0.044133 0.000000 0.027307 0.000000 0.038905 0.057194 0.100217 0.017072 0.012098 0.056382 0.031421 0.048092 0.026575 0.035336 0.043002 0.009471 0.037305 0.055014 0.003249 0.012358 0.007011 0.020561 0.022517 0.040574 0.000000 0.020162 0.035948 0.002571 0.007988 0.057571 0.024143 0.020192 0.016152 0.013979 0.067074 0.003924 0.031897 0.003250 0.018340 0.002897 0.002861 0.002903 0.040267 0.022172 0.059742 0.029110 0.018954 0.028223 0.038409 0.022722 0.002784 0.002311 0.002689 0.019359 0.011502 0.028693 0.024702 0.108390 0.068456 0.015471 0.030154 0.021435 0.051111 0.016971 0.0 0.000000 0.011570 0.023965 0.030741 0.019106 0.091651 0.048580 0.000000 0.013616 0.022120 0.027953 0.048153 0.013448 0.00301 0.027182 0.018156 0.002405 0.000000 0.016600 0.026149 0.030543 0.044294 0.048423 0.002501 0.010194 0.002823 0.002694 0.017635 0.002982 0.032113 0.017632 0.018495 0.021043 0.013670 0.014291 0.081890 0.014129 0.022734 0.025077 0.000000 0.019717 0.005613 0.000000 0.002754 0.079931 0.002667 0.016341 0.029745 0.003154 0.040437 0.037039 0.039799 0.027382 0.029763 0.017898 0.014315 0.051535 0.013908 0.002819 0.021073 0.023823 0.022826 0.062035 0.000000 0.060869 0.005486 0.033877 0.000000 0.054660 0.033676 0.019333 0.000000 0.015492 0.038694 0.028934 0.000000 0.051076 0.014809 0.080850 0.038406 0.017108 0.002913 0.041654 0.137375 0.032313 0.019260 0.003317 0.032736 0.012416 0.041475 0.091367 0.059522 0.0 0.062702 0.020928 0.016387 0.020315 0.011992 0.094419 0.020703 0.0306 0.019686 0.000000 0.000000 0.074939 0.025918 0.008837 0.008270 0.000000 0.056847 0.069597 0.028414 0.000000 0.000000 0.023362 0.016551 0.016551 0.000000 0.000000 0.025694 0.103994 0.002478 0.037417 0.036673 0.018566 0.015729 0.016551 0.052709 0.025874 0.067275 0.00340 0.002492 0.013109 0.000000 0.003019 0.015134 0.0 0.000000 0.019265 0.029696 0.044732 0.036152 0.180113 0.053862 0.004666 0.008744 0.164724 0.053344 0.041998 0.200187 0.026078 0.000000 0.030578 0.033165 0.058008 0.023337 0.103928 0.012653 0.024730 0.034177 0.128246 0.024019 0.008219 0.061413 0.025415 0.006840 0.025816 0.0 0.032328 0.070016 0.019187 0.072382 0.015743 0.027357 0.075315 0.057365 0.033143 0.129415 0.016731 0.091538 0.110478 0.009625 0.027589 0.012050 0.061952 0.046019 0.002946 0.022321 0.139427 0.055080 0.000000 0.014768 0.003258 0.002609 0.020287 0.003228 0.024106 0.003445 0.003615 0.069236 0.062912 0.029180 0.019436 0.013550 0.015720 0.010552 0.000000 0.030577 0.019812 0.000000 0.004108 0.014775 0.012529 0.000000 0.000000 0.000000 0.0 0.054672 0.000000 0.003549 0.0 0.040422 0.000000 0.000000 0.008945 0.078655 0.026728 0.000000 0.000000 0.000000 0.000000 0.019546 0.000000 0.014244 0.051529 0.034087 0.125976 0.010108 0.003006 0.010433 0.029685 0.025266 0.157748 0.065405 0.017285 0.059099 0.024486 0.000000 0.012465 0.003317 0.012637 0.000000 0.019277 0.063968 0.016892 0.022308 0.003422 0.023436 0.003561 0.003498 0.003440 0.034981 0.000000 0.017082 0.016240 0.046998 0.017090 0.000000 0.003119 0.003282 0.142784 0.043616 0.000000 0.000000 0.031628 0.045348 0.000000 0.010418 0.014855 0.006564 0.034849 0.002641 0.056935 0.016479 0.003561 0.027264 0.015037 0.000000 0.000000 0.000000 0.002604 0.036325 0.071566 0.003558 0.004976 0.034834 0.018513 0.006894 0.024510 0.088666 0.043027 0.024763 0.000000 0.041864 0.003279 0.014900 0.029201 0.000000 0.000000 0.035076 0.002978 0.000000 0.010432 0.000000 0.022477 0.038594 0.020984 0.019191 0.021055 0.010286 0.014523 0.000000 0.000000 0.000000 0.000000 0.008930 0.026943 0.002923 0.000000 0.003044 0.059881 0.046210 0.003615 0.015006 0.053676 0.000000 0.000000 0.019952 0.035919 0.013684 0.000000 0.053377 0.003355 0.000000 0.000000 0.034544 0.031756 0.031625 0.012407 0.011041 0.000000 0.024984 0.000000 0.010094 0.003935 0.033408 0.0 0.025527 0.000000 0.003549 0.0 0.002742 0.059235 0.000000 0.000000 0.0 0.054374 0.026091 0.000000 0.054379 0.000000 0.012203 0.063771 0.061176 0.010021 0.000000 0.058394 0.069544 0.028727 0.000000 0.047577 0.023270 0.023239 0.031370 0.0 0.005460 0.036072 0.004040 0.035494 0.003144 0.003448 0.000000 0.032275 0.000000 0.000000 0.000000 0.094026 0.003713 0.015187 0.017273 0.019925 0.000000 0.027115 0.060196 0.022124 0.066248 0.0 0.086164 0.047823 0.024265 0.094398 0.050102 0.025628 0.014932 0.003628 0.020760 0.000000 0.000000 0.029495 0.064637 0.003526 0.060657 0.015108 0.0 0.029147 0.011762 0.043935 0.011240 0.0 0.0 0.0 0.0 0.0 0.028195 0.036557 0.056317 0.030315 0.037472 0.011595 0.047166 0.000000 0.000000 0.019787 0.002107 0.000000 0.000000 0.000000 0.000000 0.095490 0.015304 0.000000 0.012982 0.177604 0.018230 0.037322 0.010976 0.021776 0.000000 0.047611 0.000000 0.057168 0.002990 0.08517 0.000000 0.040389 0.008129 0.050255 0.004060 0.049306 0.074652 0.064107 0.002480 0.003735 0.003173 0.026482 0.002898 0.036642 0.000000 0.016676 0.016661 0.049616 0.010323 0.010112 0.070369 0.033190 0.048383 0.030563 0.015276 0.004272 0.003066 0.003225 0.082896 0.000000 0.082447 0.036972 0.016489 0.031529 0.011439 0.015207 0.003369 0.004113 0.000000 0.052437 0.043771 0.036245 0.006072 0.158723 0.000000 0.015263 0.003439 0.035077 0.019779 0.003428 0.004120 0.042265 0.053765 0.081020 0.002806 0.000000 0.000000 0.000000 0.013528 0.040364 0.000000 0.059331 0.031989 0.014064 0.000000 0.023597 0.002542 0.000000 0.059383 0.003375 0.029870 0.003521 0.019266 0.020077 0.0 0.003354 0.003555 0.013562 0.005189 0.003732 0.007355 0.034217 0.003573 0.0 0.000000 0.012916 0.007514 0.011473 0.022140 0.019226 0.033991 0.029736 0.011999 0.033579 0.012208 0.024731 0.003576 0.016109 0.004019 0.000000 0.013746 0.000000 0.003401 0.003657 0.017906 0.018259 0.017047 0.010982 0.000000 0.003049 0.040188 0.000000 0.041868 0.003167 0.023279 0.000000 0.000000 0.003017 0.000000 0.020967 0.011765 0.0 0.0 0.048379 0.049442 0.002782 0.00000 0.019886 0.204360 0.062549 0.017469 0.043263 0.030675 0.000000 0.089241 0.0 0.016114 0.018709 0.000000 0.003086 0.029897 0.012844 0.003055 0.064385 0.003513 0.032751 0.002776 0.003789 0.237587 0.017710 0.024892 0.015774 0.030241 0.000000 0.022262 0.011842 0.000000 0.019357 0.000000 0.000000 0.042836 0.057105 0.013005 0.003774 0.045695 0.000000 0.023900 0.012576 0.000000 0.024163 0.024456 0.024841 0.000000 0.045408 0.008305 0.088822 0.002740 0.011726 0.000000 0.000000 0.000000 0.000000 0.000000 0.021934 0.013130 0.023679 0.0 0.000000 0.012429 0.016697 0.003270 0.0 0.007381 0.064781 0.000000 0.055773 0.009389 0.027244 0.015538 0.000000 0.027138 0.000000 0.028998 0.003647 0.003103 0.043642 0.013253 0.025337 0.000000 0.000000 0.036968 0.029778 0.000000 0.021584 0.024726 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.118845 0.014297 0.000000 0.000000 0.000000 0.003465 0.023713 0.041711 0.0 0.0 0.0 0.046858 0.012995 0.000000 0.001782 0.002525 0.00000 0.031316 0.000000 0.030254 0.003463 0.003457 0.003174 0.061552 0.050711 0.003150 0.065990 0.003605 0.003194 0.042541 0.011202 0.035262 0.052053 0.049303 0.017867 0.002296 0.050058 0.077112 0.138009 0.002816 0.018079 0.054241 0.000000 0.0 0.032629 0.023722 0.003098 0.036938 0.000000 0.009155 0.0000 0.024034 0.003471 0.018198 0.0 0.0 0.013044 0.000000 0.0 0.049660 0.000000 0.003397 0.013769 0.0 0.066180 0.000000 0.060204 0.018164 0.000000 0.014786 0.065333 0.003144 0.016786 0.000000 0.044833 0.003684 0.002947 0.017390 0.068733 0.002929 0.046154 0.065520 0.027511 0.000000 0.042179 0.000000 0.012741 0.017493 0.003682 0.000000 0.027216 0.000000 0.002164 0.002654 0.003094 0.020900 0.022479 0.0 0.003156 0.047783 0.015907 0.002728 0.026921 0.023842 0.027375 0.003652 0.053163 0.030379 0.000000 0.078123 0.000000 0.003318 0.074444 0.000000 0.027787 0.03311 0.027390 0.020387 0.003175 0.029330 0.002963 0.031153 0.053028 0.000000 0.051141 0.003791 0.002229 0.177031 0.003526 0.021060 0.047334 0.014877 0.018578 0.000000 0.023521 0.068209 0.002208 0.024403 0.003152 0.003413 0.021938 0.013905 0.044483 0.014201 0.059121 0.003359 0.003737 0.049763 0.043423 0.043962 0.003662 0.019081 0.027038 0.000000 0.022973 0.003421 0.027801 0.027555 0.000000 0.000000 0.002949 0.000000 0.121338 0.015110 0.002867 0.013274 0.031243 0.003064 0.003487 0.002923 0.094580 0.000000 0.000000 0.015954 0.020805 0.000000 0.013264 0.010256 0.003024 0.038118 0.024044 0.000000 0.002958 0.038020 0.030758 0.000000 0.030394 0.01446 0.000000 0.039624 0.028028 0.003823 0.032383 0.0 0.000000 0.000000 0.0 0.034654 0.015127 0.036375 0.009347 0.008306 0.046577 0.036805 0.000000 0.000000 0.000000 0.011242 0.019516 0.006777 0.002694 0.000000 0.014019 0.000000 0.073562 0.000000 0.054405 0.000000 0.005540 0.016365 0.002646 0.003611 0.016659 0.005808 0.023756 0.156937 0.012221 0.074437 0.002886 0.047866 0.031846 0.060791 0.000000 0.015060 0.038611 0.014793 0.000000 0.014913 0.002606 0.138940 0.011634 0.000000 0.033657 0.006610 0.097032 0.020498 0.015450 0.009326 0.000000 0.048268 0.003904 0.011988 0.003346 0.007175 0.040053 0.022275 0.003717 0.022563 0.003794 0.026682 0.032833 0.017349 0.031224 0.003275 0.000000 0.053335 0.050111 0.037501 0.003464 0.016403 0.040360 0.003144 0.000000 0.027574 0.017112 0.002488 0.082340 0.020885 0.081447 0.108593 0.000000 0.004394 0.010103 0.030084 0.014068 0.034805 0.032512 0.000000 0.031129 0.000000 0.000000 0.0 0.050743 0.000000 0.000000 0.002257 0.000000 0.000000 0.022921 0.0 0.000000 0.018815 0.000000 0.062685 0.015237 0.035824 0.040535 0.058723 0.000000 0.000000 0.040923 0.0 0.000000 0.0 0.0 0.015706 0.002509 0.000000 0.017019 0.083756 0.000000 0.010870 0.013761 0.034350 0.002987 0.000000 0.030026 0.041411 0.010639 0.000000 0.015445 0.008512 0.003470 0.000000 0.0 0.003714 0.000000 0.025167 0.018372 0.034592 0.000000 0.021127 0.018031 0.000000 0.014417 0.003142 0.015599 0.034588 0.048631 0.003024 0.003263 0.003723 0.027765 0.056037 0.031025 0.026279 0.078581 0.039605 0.015230 0.000000 0.003553 0.055109 0.012443 0.000000 0.013304 0.038569 0.003818 0.000000 0.003300 0.027345 0.033708 0.020992 0.004041 0.002688 0.034676 0.035813 0.063390 0.037654 0.018526 0.015750 0.015396 0.003200 0.005113 0.030682 0.026606 0.000000 0.003176 0.000000 0.035893 0.003272 0.000000 0.002867 0.033209 0.002272 0.010760 0.014900 0.000000 0.000000 0.049481 0.000000 0.030638 0.035647 0.010855 0.019862 0.010243 0.073205 0.042764 0.000000 0.027770 0.000000 0.014751 0.026548 0.002737 0.00000 0.003257 0.005503 0.000000 0.044861 0.003673 0.039611 0.000000 0.000000 0.003417 0.000000 0.011348 0.035516 0.014739 0.003688 0.0 0.0 0.020217 0.019654 0.014319 0.025522 0.023851 0.003459 0.043906 0.0 0.010776 0.024201 0.029616 0.078509 0.000000 0.014510 0.019098 0.161625 0.000000 0.080158 0.040424 0.000000 0.070184 0.012020 0.014015 0.054394 0.013432 0.003315 0.000000 0.058802 0.002749 0.013207 0.000000 0.003749 0.000000 0.003142 0.033275 0.000000 0.014924 0.038598 0.024112 0.016842 0.024988 0.000000 0.003531 0.021634 0.025012 0.003064 0.012286 0.145249 0.029307 0.004100 0.003221 0.00000 0.002318 0.003446 0.062664 0.000000 0.067358 0.055507 0.076329 0.027533 0.025420 0.003159 0.044305 0.100275 0.045587 0.024409 0.027973 0.002025 0.093442 0.011180 0.015982 0.00000 0.027428 0.022632 0.022599 0.000000 0.017136 0.027822 0.000000 0.019245 0.000000 0.000000 0.076586 0.002628 0.013866 0.003757 0.099898 0.007159 0.008926 0.013418 0.044279 0.031651 0.046056 0.035951 0.012284 0.003344 0.041043 0.012852 0.040093 0.00371 0.003784 0.112260 0.037825 0.034658 0.003330 0.070153 0.012151 0.000000 0.013961 0.019418 0.000000 0.021981 0.022224 0.0 0.014379 0.033579 0.031789 0.017679 0.000000 0.000000 0.047504 0.038257 0.014022 0.003125 0.010497 0.011087 0.003428 0.013402 0.016336 0.000000 0.055837 0.020064 0.017639 0.023883 0.033158 0.024380 0.000000 0.006083 0.033837 0.010315 0.046550 0.003444 0.028486 0.040490 0.000000 0.014426 0.032043 0.016046 0.011458 0.000000 0.000000 0.007582 0.000000 0.0 0.035308 0.000000 0.000000 0.000000 0.113090 0.003375 0.003289 0.139874 0.029965 0.003154 0.003039 0.012711 0.015841 0.003500 0.038709 0.010417 0.020698 0.030993 0.023651 0.0 0.003479 0.034352 0.010041 0.031363 0.013036 0.000000 0.003108 0.026841 0.000000 0.006916 0.006020 0.022825 0.003115 0.029268 0.000000 0.020189 0.016993 0.016826 0.011458 0.025803 0.028542 0.030656 0.021190 0.015279 0.022928 0.000000 0.049756 0.003602 0.023297 0.000000 0.00000 0.000000 0.021750 0.000000 0.000000 0.009789 0.011595 0.035729 0.024941 0.000000 0.000000 0.030856 0.000000 0.021563 0.0 0.028828 0.000000 0.003483 0.031382 0.000000 0.078309 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.003307 0.010764 0.018720 0.0 0.0 0.000000 0.0 0.039315 0.003697 0.003027 0.000000 0.020740 0.035559 0.014262 0.000000 0.027283 0.065741 0.013558 0.000000 0.000000 0.005088 0.003519 0.022373 0.003126 0.018314 0.003395 0.000000 0.002989 0.011980 0.003355 0.002987 0.040645 0.000000 0.021181 0.000000 0.0 0.003269 0.024855 0.000000 0.000000 0.003712 0.040805 0.018826 0.017020 0.029076 0.020823 0.019751 0.026859 0.032896 0.014585 0.054571 0.011216 0.000000 0.014232 0.003386 0.000000 0.010474 0.000000 0.024173 0.014880 0.000000 0.052261 0.031940 0.003580 0.045373 0.000000 0.003633 0.000000 0.093218 0.000000 0.019557 0.029814 0.021707 0.000000 0.003598 0.004321 0.053238 0.000000 0.015840 0.040164 0.0 0.090970 0.013652 0.004009 0.032756 0.019895 0.015972 0.000000 0.014355 0.000000 0.025311 0.003980 0.055214 0.114973 0.002846 0.003274 0.000000 0.011773 0.034765 0.071926 0.011466 0.002458 0.003363 0.032064 0.000000 0.024085 0.000000 0.009229 0.049235 0.000000 0.069450 0.047246 0.003953 0.000000 0.012500 0.020825 0.014045 0.014218 0.000000 0.009315 0.068988 0.000000 0.000000 0.028727 0.028727 0.000000 0.028674 0.066964 0.003299 0.000000 0.000000 0.000000 0.053066 0.022950 0.051936 0.004202 0.000000 0.006948 0.042657 0.000000 0.022145 0.000000 0.018606 0.111206 0.000000 0.015234 0.002849 0.000000 0.055702 0.021149 0.004376 0.052866 0.015954 0.013497 0.047847 0.002839 0.020638 0.003686 0.036676 0.020650 0.023525 0.003931 0.003056 0.028673 0.096312 0.071527 0.027919 0.000000 0.038209 0.000000 0.015170 0.000000 0.064775 0.029750 0.043724 0.036726 0.003090 0.003577 0.067542 0.080126 0.023181 0.047566 0.013046 0.002973 0.002771 0.003304 0.032693 0.023792 0.019318 0.034473 0.003629 0.048252 0.019942 0.000000 0.059190 0.073887 0.030560 0.076297 0.026623 0.000000 0.055782 0.003660 0.003284 0.042505 0.020514 0.022140 0.022417 0.032913 0.032128 0.002703 0.018069 0.022931 0.024298 0.037491 0.002793 0.011324 0.026791 0.014958 0.002964 0.002729 0.008137 0.036727 0.037807 0.018615 0.037146 0.008972 0.007335 0.029726 0.003650 0.000000 0.031357 0.044729 0.000000 0.040515 0.019825 0.016617 0.023122 0.003290 0.037174 0.013262 0.011603 0.023043 0.030152 0.074136 0.000000 0.00403 0.164748 0.003427 0.011144 0.003228 0.045985 0.008561 0.038628 0.002894 0.033315 0.003012 0.000000 0.009595 0.018234 0.003277 0.058415 0.032632 0.052169 0.042079 0.000000 0.013904 0.019564 0.017278 0.000000 0.014323 0.092754 0.034925 0.000000 0.004051 0.000000 0.016234 0.076612 0.049926 0.002815 0.061354 0.031850 0.005560 0.016176 0.213613 0.018923 0.034770 0.003142 0.0 0.048257 0.028175 0.002932 0.000000 0.000000 0.015392 0.041299 0.070671 0.050711 0.000000 0.143223 0.029461 0.022023 0.015432 0.000000 0.041969 0.002929 0.000000 0.032272 0.002322 0.000000 0.023740 0.021180 0.003407 0.003730 0.004808 0.000000 0.020373 0.003245 0.035989 0.000000 0.000000 0.010609 0.028627 0.0 0.033830 0.0 0.006697 0.046280 0.028380 0.024550 0.035181 0.017216 0.000000 0.003325 0.044896 0.154476 0.028836 0.037869 0.02828 0.0 0.005139 0.010981 0.034459 0.000000 0.013194 0.000000 0.025027 0.012996 0.017439 0.0 0.049118 0.040508 0.003057 0.027185 0.00000 0.026568 0.009476 0.017876 0.015262 0.016249 0.000000 0.002704 0.000000 0.000000 0.002531 0.021361 0.038987 0.023653 0.000000 0.003433 0.000000 0.055891 0.000000 0.028727 0.013852 0.000000 0.026824 0.048895 0.000000 0.036628 0.040458 0.011151 0.010091 0.000000 0.014828 0.003722 0.01983 0.039321 0.000000 0.003823 0.002691 0.012813 0.000000 0.000000 0.024007 0.012166 0.030745 0.047649 0.045042 0.014053 0.015845 0.016789 0.061098 0.018311 0.002943 0.038211 0.023971 0.039355 0.0 0.083352 0.090375 0.024680 0.069541 0.014319 0.036838 0.021274 0.076764 0.016448 0.003255 0.040445 0.033151 0.052577 0.003229 0.003007 0.000000 0.019184 0.000000 0.014883 0.003302 0.036844 0.000000 0.036068 0.000000 0.024281 0.070026 0.000000 0.0 0.041051 0.013778 0.066748 0.002577 0.000000 0.030453 0.006519 0.058813 0.004168 0.028845 0.039755 0.000000 0.003191 0.012311 0.016611 0.003156 0.015647 0.184407 0.003446 0.015438 0.027483 0.043140 0.029944 0.029362 0.004187 0.028428 0.0 0.009695 0.000000 0.000000 0.0 0.000000 0.002061 0.000000 0.010912 0.006912 0.028679 0.003647 0.000000 0.024619 0.000000 0.000000 0.002606 0.024899 0.001646 0.003257 0.029449 0.000000 0.003069 0.019770 0.033357 0.003410 0.000000 0.002959 0.027492 0.040130 0.000000 0.026929 0.003114 0.003805 0.022166 0.053250 0.028474 0.0 0.040936 0.021316 0.000000 0.000000 0.032387 0.009263 0.002587 0.012384 0.003776 0.016691 0.030635 0.000000 0.002973 0.00000 0.063138 0.000000 0.060428 0.009752 0.099821 0.047055 0.000000 0.041774 0.059544 0.000000 0.030618 0.001887 0.000000 0.002079 0.000000 0.000000 0.023566 0.020705 0.024221 0.233429 0.020185 0.003271 0.000000 0.009331 0.007442 0.034514 0.0039 0.200188 0.015809 0.027580 0.058501 0.000000 0.003169 0.000000 0.002570 0.0 0.018365 0.020434 0.034743 0.051903 0.029718 0.002720 0.008459 0.000000 0.000000 0.0 0.000000 0.000000 0.022805 0.008386 0.000000 0.085833 0.000000 0.002339 0.016175 0.040300 0.053213 0.058904 0.074542 0.036829 0.028720 0.046655 0.000000 0.032395 0.027495 0.074416 0.026513 0.023990 0.036722 0.100270 0.00257 0.003337 0.003644 0.013449 0.000000 0.00000 0.011506 0.002780 0.014982 0.013612 0.026867 0.016327 0.009995 0.003512 0.0 0.078780 0.071265 0.068946 0.003103 0.095138 0.227910 0.002926 0.030545 0.038697 0.011195 0.000000 0.000000 0.017605 0.011809 0.014031 0.000000 0.028425 0.002868 0.000000 0.000000 0.000000 0.025127 0.029761 0.067152 0.052167 0.055522 0.091241 0.056154 0.024009 0.095327 0.009199 0.003609 0.036701 0.000000 0.066760 0.002827 0.015001 0.064571 0.039080 0.002868 0.013109 0.034202 0.003110 0.025772 0.003053 0.012105 0.018015 0.000000 0.135634 0.059389 0.017387 0.020654 0.002682 0.003494 0.003017 0.002776 0.059497 0.060512 0.017944 0.004949 0.086539 0.028033 0.026922 0.048678 0.104840 0.044574 0.032135 0.000000 0.000000 0.000000 0.000000 0.002234 0.021319 0.015466 0.020774 0.026143 0.003194 0.013039 0.017082 0.020719 0.009717 0.026010 0.000000 0.062429 0.003758 0.036655 0.011099 0.012864 0.0 0.058455 0.003353 0.002931 0.049045 0.008248 0.002900 0.031961 0.010768 0.026290 0.012462 0.000000 0.000000 0.028601 0.000000 0.019337 0.026261 0.009585 0.0 0.011429 0.011801 0.017870 0.094552 0.044635 0.000000 0.049064 0.029805 0.003491 0.070782 0.000000 0.002268 0.000000 0.015716 0.002171 0.000000 0.002507 0.025944 0.009436 0.003577 0.027230 0.002723 0.031844 0.000000 0.000000 0.029388 0.000000 0.031690 0.007125 0.003406 0.028233 0.011740 0.000000 0.023753 0.000000 0.074008 0.023853 0.003717 0.002872 0.010460 0.003377 0.083064 0.003537 0.009881 0.000000 0.042210 0.003649 0.029583 0.026627 0.000000 0.0 0.007794 0.000000 0.037297 0.003814 0.052717 0.066142 0.029735 0.023739 0.036276 0.013477 0.028429 0.024622 0.039141 0.013210 0.029159 0.013592 0.003220 0.007016 0.002973 0.037660 0.021857 0.000000 0.013201 0.00995 0.016477 0.000000 0.002670 0.044170 0.026017 0.003376 0.041868 0.021143 0.100952 0.021437 0.021746 0.012069 0.003699 0.043570 0.002733 0.000000 0.009829 0.018606 0.14312 0.007726 0.021028 0.024655 0.003388 0.003626 0.106351 0.015106 0.003365 0.003882 0.011073 0.060932 0.028928 0.003442 0.002561 0.020259 0.041275 0.033479 0.022057 0.130756 0.000000 0.004182 0.000000 0.034494 0.00000 0.032424 0.035986 0.003577 0.000000 0.030445 0.002704 0.020104 0.006185 0.072322 0.046099 0.014063 0.002295 0.026004 0.035564 0.000000 0.027380 0.013382 0.003279 0.010587 0.000000 0.000000 0.002841 0.000000 0.030862 0.042579 0.0 0.000000 0.006748 0.000000 0.000000 0.002748 0.011729 0.003166 0.017081 0.029836 0.020494 0.018991 0.000000 0.028076 0.042099 0.000000 0.019987 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028936 0.015857 0.014557 0.000000 0.019516 0.002447 0.003844 0.052798 0.102517 0.000000 0.000000 0.002605 0.032939 0.000000 0.000000 0.031504 0.000000 0.000000 0.023369 0.000000 0.022347 0.0 0.031983 0.045333 0.000000 0.017023 0.018744 0.025239 0.000000 0.037470 0.0 0.000000 0.043619 0.030122 0.013370 0.012903 0.023004 0.022415 0.236178 0.000000 0.039234 0.008492 0.025905 0.000000 0.0 0.008056 0.018793 0.047486 0.000000 0.0 0.0 0.016119 0.014303 0.078915 0.000000 0.019007 0.020361 0.000000 0.00000 0.018841 0.046917 0.057945 0.048795 0.003790 0.011502 0.000000 0.004151 0.043611 0.054473 0.016548 0.005617 0.000000 0.000000 0.000000 0.000000 0.027138 0.000000 0.017510 0.052083 0.04944 0.051795 0.010246 0.002730 0.002992 0.035164 0.035819 0.017068 0.002907 0.045391 0.078119 0.149889 0.017860 0.033038 0.003550 0.041681 0.047966 0.000000 0.097046 0.000000 0.027403 0.000000 0.091271 0.112822 0.033386 0.034323 0.057051 0.025199 0.126785 0.003994 0.085764 0.032283 0.086156 0.000000 0.000000 0.264046 0.020444 0.000000 0.027372 0.078051 0.020654 0.037435 0.000000 0.000000 0.0 0.033311 0.024697 0.083809 0.000000 0.034919 0.017948 0.004559 0.011892 0.042614 0.026262 0.011330 0.000000 0.017537 0.030801 0.000000 0.000000 0.000000 0.003743 0.010324 0.083256 0.0 0.004214 0.004264 0.004614 0.004631 0.010158 0.017911 0.019900 0.025092 0.00468 0.004249 0.003637 0.029135 0.004753 0.008673 0.0 0.009704 0.004218 0.004963 0.004258 0.004821 0.00413 0.017703 0.0 0.059782 0.004507 0.08937 0.037145 0.004858 0.031377 0.003723 0.008261 0.004061 0.009329 0.065020 0.004594 0.004627 0.030341 0.003623 0.003637 0.039959 0.028275 0.0 0.005241 0.009366 0.004170 0.004127 0.0 0.0 0.0 0.008848 0.017099 0.003583 0.0 0.004893 0.003704 0.004602 0.000000 0.003396 0.003485 0.000000 0.004115 0.004476 0.019557 0.018275 0.005345 0.019924 0.00427 0.004407 0.004282 0.004281 0.072601 0.018437 0.004415 0.003563 0.004436 0.003327 0.00455 0.0 0.0 0.0 0.004094 0.025563 0.0 0.004448 0.0 0.004373 0.004130 0.004281 0.020655 0.004889 0.0 0.0 0.029704 0.0 0.008474 0.013660 0.013660 0.0 0.000000 0.009325 0.005142 0.0 0.0 0.015146 0.027825 0.008058 0.003430 0.009028 0.004424 0.01757 0.000000 0.016871 0.00346 0.003597 0.004678 0.004093 0.004651 0.004155 0.004977 0.008982 0.017892 0.004277 0.005017 0.00444 0.004151 0.091185 0.004534 0.0 0.000000 0.0 0.02483 0.004643 0.000000 0.0 0.004812 0.004812 0.0 0.000000 0.000000 0.004724 0.024703 0.000000 0.00000 0.004501 0.000000 0.000000 0.0 0.004601 0.000000 0.020191 0.024562 0.007205 0.019522 0.004502 0.02483 0.02483 0.038069 0.004896 0.004233 0.011565 0.032445 0.005184 0.030055 0.146439 0.138828 0.003357 0.030329 0.033604 0.024976 0.004873 0.018514 0.009888 0.018819 0.010049 0.0039 0.028442 0.003541 0.004992 0.004505 0.004249 0.004544 0.081225 0.003909 0.004542 0.015504 0.010095 0.005116 0.050868 0.015362 0.004641 0.000000 0.004325 0.004417 0.003733 0.002863 0.004490 0.004385 0.004087 0.000000 0.0 0.004449 0.004846 0.004452 0.003198 0.000000 0.0 0.003933 0.007847 0.003447 0.000000 0.000000 0.004144 0.003538 0.003319 0.031653 0.003855 0.103609 0.028989 0.008363 0.002971 0.025620 0.026688 0.269609 0.026688 0.027085 0.004267 0.0038 0.035892 0.039919 0.032572 0.015172 0.000000 0.026597 0.020346 0.026597 0.026597 0.103865 0.003477 0.098739 0.037124 0.057242 0.013849 0.017309 0.057342 0.022333 0.067026 0.0 0.004385 0.004423 0.047163 0.004663 0.071630 0.000000 0.051315 0.199301 0.029734 0.039115 0.006751 0.000000 0.003496 0.000000 0.021893 0.027059 0.016961 0.003084 0.000000 0.026599 0.073168 0.035836 0.024971 0.052411 0.003167 0.000000 0.004428 0.041548 0.004102 0.004070 0.021075 0.120178 0.003822 0.004006 0.027969 0.077326 0.087644 0.0 0.003463 0.017300 0.004709 0.004304 0.004487 0.0 0.017521 0.011644 0.004624 0.008958 0.019394 0.0 0.004563 0.004105 0.023465 0.004281 0.00377 0.019945 0.00421 0.0 0.004342 0.004506 0.00449 0.0 0.004202 0.004374 0.004815 0.004128 0.0 0.023186 0.004226 0.007966 0.004664 0.015609 0.087206 0.033754 0.003672 0.004563 0.004740 0.004414 0.004053 0.004686 0.000000 0.004787 0.021289 0.004383 0.046800 0.099351 0.004987 0.003986 0.00376 0.093144 0.004272 0.006066 0.004515 0.0 0.028215 0.004474 0.008839 0.004832 0.106019 0.0 0.01295 0.032202 0.063199 0.007363 0.000000 0.000000 0.012787 0.00441 0.019006 0.050019 0.004064 0.025672 0.129315 0.025625 0.003399 0.003827 0.041244 0.012082 0.076445 0.017754 0.003844 0.010696 0.004521 0.004817 0.038527 0.004338 0.003187 0.024472 0.005015 0.003634 0.004442 0.019164 0.023013 0.048205 0.032831 0.016291 0.0 0.022925 0.060501 0.075613 0.003189 0.054754 0.021512 0.012389 0.049248 0.004782 0.003872 0.158934 0.011059 0.003789 0.036956 0.020977 0.003951 0.030914 0.052393 0.016769 0.043456 0.004036 0.002883 0.018149 0.032867 0.000000 0.018612 0.021878 0.020448 0.004299 0.026718 0.004805 0.017200 0.000000 0.003011 0.020687 0.003732 0.004112 0.004444 0.0 0.000000 0.004322 0.003937 0.017811 0.004417 0.004109 0.003567 0.003579 0.021038 0.004373 0.008309 0.000000 0.004244 0.003182 0.020249 0.003249 0.021005 0.015266 0.017634 0.004097 0.004472 0.004350 0.004078 0.003864 0.0 0.004378 0.004005 0.004295 0.004005 0.003708 0.026073 0.004008 0.012703 0.000000 0.018074 0.004559 0.063322 0.004863 0.004374 0.017462 0.004751 0.004029 0.016425 0.020257 0.004085 0.003149 0.004651 0.004358 0.020921 0.069005 0.019643 0.0 0.004086 0.004267 0.00419 0.014985 0.021187 0.000000 0.004414 0.003485 0.000000 0.003265 0.023856 0.004862 0.014788 0.057995 0.017886 0.00477 0.021762 0.000000 0.013021 0.004343 0.003299 0.003821 0.017825 0.004759 0.0 0.003267 0.0 0.003640 0.035089 0.000000 0.003394 0.04595 0.000000 0.020515 0.004418 0.033661 0.017523 0.013639 0.003109 0.024727 0.017372 0.003052 0.018441 0.002581 0.003628 0.004877 0.016891 0.004459 0.004845 0.004644 0.0 0.004089 0.003636 0.0 0.017957 0.0 0.000000 0.028683 0.022641 0.003502 0.004053 0.002500 0.006737 0.024856 0.003629 0.003334 0.004364 0.022257 0.0 0.004576 0.004364 0.000000 0.004448 0.003685 0.003361 0.01213 0.016998 0.045453 0.003600 0.000000 0.004013 0.003778 0.003992 0.055508 0.029377 0.0 0.004258 0.020493 0.0 0.021334 0.029191 0.003794 0.045696 0.003105 0.028487 0.0 0.063786 0.054908 0.022653 0.003714 0.053417 0.021281 0.020731 0.020568 0.004120 0.004142 0.000000 0.0 0.024258 0.003342 0.029544 0.003308 0.01446 0.014772 0.003138 0.028178 0.054908 0.007642 0.00000 0.00335 0.048948 0.03219 0.021385 0.131133 0.318323 0.003387 0.003667 0.004879 0.014498 0.003720 0.00000 0.003168 0.059251 0.030445 0.04132 0.02682 0.003852 0.040719 0.008234 0.051717 0.03923 0.047158 0.0 0.020301 0.019242 0.015672 0.0 0.056491 0.003807 0.033811 0.003215 0.020924 0.040719 0.040719 0.040719 0.007284 0.0 0.041828 0.012984 0.069226 0.003391 0.003492 0.050348 0.124696 0.002682 0.018315 0.002847 0.003423 0.043119 0.083954 0.033040 0.011222 0.022991 0.003619 0.015321 0.028292 0.035299 0.002906 0.050837 0.028989 0.018719 0.041728 0.061456 0.074564 0.004188 0.004699 0.003319 0.003228 0.003367 0.033610 0.152198 0.02778 0.003092 0.014567 0.008151 0.106285 0.092341 0.004554 0.003220 0.036356 0.020447 0.042900 0.004358 0.004334 0.00442 0.004038 0.020011 0.018521 0.156772 0.027452 0.038919 0.017170 0.031409 0.125490 0.155826 0.003271 0.023429 0.014492 0.003978 0.017967 0.004036 0.0 0.029544 0.004275 0.0 0.004117 0.004017 0.003875 0.000000 0.0 0.000000 0.004751 0.0 0.004281 0.0 0.0 0.009755 0.00415 0.004048 0.060626 0.004451 0.003001 0.031866 0.000000 0.017305 0.004290 0.028088 0.003286 0.058790 0.049250 0.000000 0.018225 0.000000 0.000000 0.03291 0.048621 0.081447 0.0 0.000000 0.0 0.022280 0.042189 0.004752 0.000000 0.00000 0.003451 0.027940 0.0 0.004153 0.126957 0.0 0.004276 0.004743 0.004660 0.003156 0.0 0.004259 0.004470 0.031024 0.004926 0.000000 0.038221 0.004296 0.004935 0.007203 0.020060 0.010061 0.0 0.00987 0.004287 0.020770 0.004263 0.004397 0.0 0.000000 0.067028 0.0695 0.011815 0.019570 0.016849 0.000000 0.017337 0.033417 0.017473 0.013076 0.004079 0.000000 0.00000 0.004063 0.000000 0.004046 0.026034 0.047780 0.018624 0.022995 0.028652 0.101909 0.014526 0.003462 0.018636 0.021746 0.003531 0.003011 0.004698 0.094018 0.028593 0.040132 0.073171 0.143368 0.081194 0.029923 0.024044 0.000000 0.003744 0.004101 0.035020 0.000000 0.0134 0.032678 0.016671 0.037759 0.0 0.00435 0.043869 0.000000 0.034795 0.155794 0.028369 0.01019 0.003775 0.050084 0.003527 0.012911 0.145274 0.003681 0.00418 0.045509 0.021298 0.000000 0.007574 0.003079 0.003897 0.003000 0.026385 0.004061 0.004376 0.004899 0.004407 0.004707 0.00498 0.003831 0.036233 0.020363 0.004615 0.003631 0.004461 0.004632 0.004079 0.004146 0.000000 0.004107 0.016942 0.005211 0.003502 0.0 0.00000 0.0 0.016013 0.004222 0.00421 0.008309 0.004553 0.004364 0.003354 0.016537 0.003851 0.059068 0.025587 0.015019 0.035406 0.004439 0.004652 0.004792 0.000000 0.004131 0.003802 0.00332 0.020899 0.015491 0.004572 0.003662 0.021386 0.020687 0.00372 0.020061 0.003547 0.004737 0.000000 0.004293 0.004357 0.020657 0.004114 0.0 0.004597 0.004835 0.004036 0.086139 0.086139 0.004416 0.004898 0.004618 0.004342 0.00449 0.0 0.004215 0.003917 0.004368 0.0 0.088244 0.004163 0.004299 0.079034 0.004973 0.004557 0.003562 0.097634 0.05781 0.025416 0.095669 0.017169 0.003347 0.003064 0.081589 0.003185 0.021715 0.012464 0.014428 0.013527 0.0 0.029918 0.031118 0.000000 0.000000 0.0000 0.027301 0.051687 0.004149 0.060786 0.019835 0.026803 0.003727 0.016304 0.014430 0.068920 0.000000 0.036394 0.024928 0.040719 0.040719 0.0 0.02704 0.032382 0.028814 0.036860 0.014892 0.004094 0.086153 0.058321 0.034277 0.00000 0.003799 0.004455 0.013844 0.028359 0.003865 0.003746 0.004079 0.048204 0.067753 0.003633 0.003145 0.026684 0.025523 0.018738 0.045776 0.004199 0.000000 0.023251 0.003084 0.031233 0.010282 0.034090 0.014167 0.051474 0.056736 0.028971 0.077838 0.030052 0.034617 0.003638 0.029582 0.014465 0.092924 0.047361 0.000000 0.004006 0.002674 0.022193 0.017922 0.0 0.086976 0.019246 0.002542 0.03959 0.003984 0.004238 0.003511 0.030377 0.003888 0.031173 0.062245 0.023180 0.000000 0.003608 0.028140 0.003889 0.054786 0.003376 0.004437 0.155860 0.012630 0.018939 0.012783 0.026558 0.030908 0.040465 0.006613 0.023835 0.009852 0.024763 0.000000 0.052611 0.038996 0.0 0.002720 0.026615 0.000000 0.026138 0.000000 0.011311 0.021331 0.061915 0.191848 0.000000 0.000000 0.024909 0.00000 0.104439 0.000000 0.015765 0.039901 0.003308 0.000000 0.015227 0.053998 0.004320 0.003992 0.048703 0.003042 0.028985 0.063277 0.006610 0.016872 0.010232 0.000000 0.000000 0.015104 0.028373 0.017033 0.000000 0.004626 0.003527 0.004124 0.00452 0.003729 0.000000 0.004132 0.086604 0.004405 0.003133 0.004490 0.018943 0.105853 0.0 0.004724 0.000000 0.019926 0.083175 0.004418 0.009119 0.0 0.004306 0.106020 0.028357 0.0 0.0 0.080131 0.004792 0.020062 0.000000 0.010254 0.000000 0.004287 0.014748 0.004533 0.004891 0.095510 0.004174 0.000000 0.004832 0.003343 0.029653 0.00478 0.025132 0.026656 0.095510 0.003898 0.093144 0.0 0.057235 0.003616 0.007484 0.022145 0.004087 0.003625 0.093238 0.005071 0.004712 0.183673 0.002718 0.003743 0.018562 0.021451 0.003953 0.092767 0.015468 0.046147 0.010757 0.164073 0.006822 0.067933 0.002933 0.049137 0.083731 0.024541 0.018434 0.004146 0.022224 0.003465 0.016554 0.007168 0.032113 0.015870 0.124142 0.005905 0.014505 0.002679 0.071177 0.007728 0.0 0.03859 0.004238 0.034512 0.025234 0.023739 0.091649 0.014343 0.050335 0.060279 0.049424 0.022738 0.003139 0.003191 0.091359 0.016773 0.015996 0.161319 0.0 0.020948 0.030894 0.0 0.003242 0.015945 0.00778 0.019831 0.006222 0.030338 0.004177 0.002815 0.036979 0.022546 0.044556 0.070507 0.011994 0.009701 0.024871 0.047941 0.045611 0.015805 0.003535 0.038382 0.015694 0.003588 0.014237 0.004663 0.054908 0.127598 0.003328 0.004345 0.026582 0.002980 0.078967 0.028371 0.05310 0.027471 0.078035 0.020986 0.065581 0.019466 0.036163 0.132191 0.004044 0.058408 0.003759 0.021075 0.041111 0.013675 0.020335 0.017691 0.014729 0.018054 0.002914 0.058871 0.053023 0.018535 0.049798 0.101453 0.031817 0.016685 0.003547 0.067071 0.023581 0.0 0.038069 0.039324 0.049861 0.003323 0.026393 0.003367 0.000000 0.010004 0.000000 0.011416 0.004002 0.000000 0.123573 0.028068 0.004128 0.018733 0.076975 0.017359 0.000000 0.065233 0.024062 0.000000 0.079717 0.054371 0.003401 0.039665 0.016330 0.034407 0.036037 0.0 0.0 0.007286 0.003720 0.016469 0.004361 0.003796 0.009936 0.043613 0.004595 0.004616 0.017956 0.000000 0.000000 0.012911 0.004654 0.021261 0.020583 0.004263 0.00461 0.098835 0.000000 0.017391 0.014397 0.030334 0.020751 0.023218 0.079378 0.000000 0.000000 0.003627 0.042217 0.029353 0.035506 0.102058 0.004455 0.00393 0.039792 0.003065 0.023251 0.0 0.056938 0.003710 0.017092 0.024137 0.034919 0.027923 0.027563 0.016138 0.003360 0.00477 0.004215 0.005048 0.003497 0.000000 0.000000 0.004382 0.004159 0.004710 0.004475 0.004069 0.004693 0.004117 0.0 0.004160 0.000000 0.000000 0.004954 0.0044 0.004438 0.003796 0.016633 0.004411 0.004594 0.004618 0.004721 0.0 0.003282 0.004611 0.004105 0.022164 0.004122 0.004703 0.004678 0.000000 0.020539 0.000000 0.004852 0.061937 0.0 0.0 0.019928 0.003512 0.003906 0.004591 0.004085 0.008574 0.004449 0.0 0.004546 0.019200 0.095510 0.004439 0.004882 0.005469 0.005469 0.004739 0.0 0.004761 0.020969 0.088457 0.004108 0.0 0.004402 0.0 0.004132 0.004056 0.004897 0.018492 0.0 0.024765 0.004504 0.0 0.003678 0.003967 0.0 0.004703 0.016016 0.021865 0.003795 0.004425 0.004630 0.004579 0.00434 0.0 0.083755 0.004297 0.000000 0.097768 0.003725 0.019626 0.028349 0.004399 0.004173 0.000000 0.003969 0.003199 0.000000 0.004144 0.000000 0.0 0.0041 0.027712 0.000 0.004733 0.004568 0.092394 0.004104 0.031976 0.004466 0.004184 0.013196 0.03146 0.004501 0.004405 0.004276 0.0 0.018786 0.095510 0.003665 0.004784 0.003798 0.012971 0.0 0.0 0.004769 0.005237 0.000000 0.003649 0.029769 0.000000 0.004817 0.030199 0.004414 0.010873 0.069963 0.004464 0.026136 0.004311 0.003968 0.022052 0.004766 0.004672 0.007628 0.065688 0.004191 0.0 0.020134 0.021746 0.0 0.019193 0.003376 0.055204 0.004723 0.002772 0.004022 0.004997 0.004284 0.004777 0.003962 0.031981 0.000000 0.003405 0.0 0.0 0.003176 0.012019 0.004965 0.003194 0.004703 0.037055 0.055165 0.004639 0.004493 0.004535 0.051099 0.0 0.045577 0.004596 0.000000 0.004925 0.017056 0.004490 0.004705 0.003652 0.004390 0.016616 0.004442 0.004059 0.019324 0.004702 0.020097 0.021169 0.019400 0.003593 0.004212 0.004201 0.026740 0.026740 0.003639 0.007918 0.004148 0.0 0.0 0.004458 0.004152 0.071845 0.004091 0.003928 0.030444 0.003591 0.021112 0.019165 0.003238 0.004362 0.004413 0.004163 0.000000 0.004668 0.004483 0.004394 0.016875 0.004477 0.003819 0.0 0.0 0.003806 0.000000 0.003541 0.003831 0.004152 0.005458 0.018634 0.00314 0.014782 0.004408 0.069128 0.003318 0.003421 0.003491 0.036831 0.004316 0.037232 0.00393 0.003979 0.020768 0.003747 0.004879 0.003849 0.004199 0.018015 0.095149 0.038296 0.021332 0.004066 0.015654 0.003466 0.003183 0.063288 0.089269 0.004230 0.031918 0.036475 0.043599 0.024777 0.000000 0.003833 0.014387 0.020319 0.002812 0.031173 0.016432 0.014583 0.016339 0.012686 0.003252 0.036832 0.002906 0.06189 0.023619 0.008504 0.042985 0.003547 0.013189 0.050238 0.003055 0.006414 0.004315 0.003905 0.011712 0.008469 0.015167 0.004881 0.000000 0.004102 0.018605 0.008574 0.003342 0.004195 0.0 0.003931 0.073778 0.004034 0.003423 0.004068 0.00449 0.000000 0.0 0.003598 0.003142 0.004083 0.077365 0.042088 0.000000 0.012689 0.0 0.004574 0.00412 0.021586 0.003950 0.0 0.009349 0.0038 0.004479 0.016670 0.003403 0.004686 0.008827 0.004179 0.081219 0.004915 0.003789 0.003946 0.046733 0.016160 0.117941 0.084698 0.034997 0.003450 0.015046 0.028206 0.040047 0.054404 0.072216 0.003154 0.003567 0.113778 0.003427 0.007355 0.044581 0.038695 0.00000 0.003093 0.044005 0.004075 0.075448 0.004010 0.004445 0.105302 0.090138 0.030508 0.003538 0.095708 0.086499 0.004005 0.040638 0.003473 0.0 0.021652 0.037951 0.015110 0.000000 0.003412 0.080656 0.003986 0.027658 0.014294 0.000000 0.003889 0.012565 0.002813 0.003278 0.018005 0.046636 0.016412 0.020269 0.0 0.059281 0.028486 0.010739 0.01015 0.004022 0.004229 0.068746 0.034707 0.004192 0.021576 0.004311 0.004393 0.004212 0.014840 0.004462 0.004592 0.0 0.002384 0.031413 0.003690 0.024262 0.021428 0.004651 0.015785 0.025852 0.00000 0.063170 0.013515 0.04919 0.004248 0.004911 0.021144 0.003442 0.003515 0.017681 0.003650 0.004511 0.003742 0.004281 0.021625 0.0 0.003973 0.003578 0.004109 0.032806 0.003421 0.088956 0.000000 0.000000 0.004121 0.000000 0.012288 0.003536 0.024706 0.002822 0.003403 0.021405 0.008342 0.000000 0.003627 0.000000 0.004127 0.049974 0.023142 0.004264 0.016945 0.025645 0.018569 0.049974 0.028178 0.004763 0.124042 0.00393 0.015247 0.004244 0.0 0.022802 0.015671 0.040897 0.004557 0.022181 0.00345 0.029135 0.007069 0.003833 0.040357 0.000000 0.043468 0.020220 0.018142 0.050454 0.026467 0.021607 0.004325 0.003742 0.003495 0.018311 0.022658 0.018852 0.016916 0.022167 0.028941 0.059859 0.011668 0.003096 0.000000 0.045498 0.002831 0.003269 0.025831 0.04258 0.003705 0.003562 0.003602 0.021769 0.004131 0.004844 0.00314 0.003379 0.013869 0.031979 0.052591 0.101597 0.006858 0.003919 0.020365 0.004602 0.033717 0.035737 0.0 0.003909 0.003393 0.030377 0.002691 0.009772 0.066094 0.003765 0.0 0.022571 0.010022 0.0 0.0 0.003264 0.002805 0.000000 0.057165 0.050031 0.000000 0.000000 0.024664 0.029634 0.024717 0.000000 0.002949 0.015213 0.003578 0.040460 0.161724 0.056321 0.067071 0.160877 0.004360 0.004654 0.003873 0.004285 0.003635 0.027479 0.098168 0.05700 0.003279 0.013196 0.004449 0.004264 0.022378 0.003974 0.0 0.025973 0.004169 0.017860 0.0 0.0 0.086613 0.021648 0.004176 0.004457 0.013438 0.008667 0.0 0.0 0.0 0.004448 0.026179 0.004909 0.000000 0.004014 0.004352 0.004636 0.0 0.0 0.004216 0.004223 0.00456 0.075721 0.00455 0.093144 0.003958 0.009129 0.003839 0.000000 0.0 0.009677 0.148425 0.004113 0.000000 0.003822 0.107039 0.004377 0.004839 0.020721 0.009399 0.004826 0.004755 0.000000 0.004455 0.003480 0.015589 0.013914 0.004279 0.002425 0.011159 0.000000 0.046125 0.003452 0.004710 0.016277 0.040755 0.089204 0.003716 0.003472 0.028653 0.004431 0.075834 0.034833 0.159364 0.024854 0.003356 0.004842 0.023124 0.003043 0.013579 0.044955 0.013891 0.000000 0.005179 0.011248 0.041479 0.032535 0.003720 0.057543 0.003534 0.022250 0.017043 0.053490 0.023401 0.007426 0.00370 0.004318 0.0 0.012667 0.0 0.105411 0.019855 0.003766 0.017748 0.0 0.0 0.0 0.021487 0.003395 0.000000 0.044227 0.036881 0.037369 0.022653 0.000000 0.050708 0.000000 0.033252 0.016649 0.028866 0.040719 0.00392 0.021369 0.031094 0.126302 0.019661 0.064618 0.019038 0.058939 0.003265 0.003254 0.016237 0.032764 0.003889 0.039741 0.138156 0.002773 0.024862 0.003178 0.012467 0.017136 0.002641 0.029718 0.015234 0.002673 0.0 0.142291 0.000000 0.033654 0.104692 0.006533 0.054501 0.123181 0.013827 0.017072 0.053565 0.074176 0.044853 0.004634 0.006602 0.017293 0.0 0.013806 0.147012 0.000000 0.003412 0.003502 0.002969 0.015331 0.000000 0.137305 0.018134 0.065064 0.015068 0.046362 0.004428 0.004153 0.026186 0.017887 0.004196 0.018397 0.040457 0.020479 0.035991 0.003293 0.048572 0.041706 0.000000 0.003539 0.024001 0.042082 0.029722 0.035221 0.003933 0.003555 0.051175 0.024300 0.017581 0.184315 0.000000 0.003789 0.077838 0.024709 0.002834 0.003713 0.07674 0.067071 0.004061 0.000000 0.014372 0.038854 0.177258 0.011668 0.021905 0.000000 0.042151 0.032860 0.003474 0.003796 0.087828 0.004561 0.039768 0.138568 0.017324 0.025707 0.004596 0.004296 0.005106 0.0134 0.004915 0.01478 0.002815 0.024210 0.019795 0.012044 0.000000 0.097434 0.0 0.000000 0.022542 0.0 0.000000 0.004686 0.0 0.004008 0.004469 0.003007 0.004286 0.003806 0.000000 0.003216 0.004166 0.016765 0.0035 0.0 0.038437 0.023631 0.013310 0.088283 0.189899 0.026732 0.003681 0.003685 0.012253 0.082420 0.038676 0.022957 0.012991 0.00000 0.003861 0.003697 0.004645 0.019714 0.000000 0.004037 0.004526 0.000000 0.004000 0.0 0.003703 0.003947 0.004127 0.003749 0.005390 0.004074 0.004241 0.0 0.005851 0.004048 0.003969 0.023575 0.0 0.000000 0.019366 0.0 0.027475 0.003956 0.004437 0.018558 0.004249 0.004534 0.005615 0.011921 0.018005 0.0 0.003146 0.054887 0.026745 0.0807 0.004302 0.000000 0.004667 0.004995 0.0 0.000000 0.030444 0.004133 0.004071 0.004766 0.019771 0.003414 0.004831 0.017585 0.004180 0.0 0.003532 0.004227 0.004135 0.004508 0.00000 0.020919 0.004286 0.004845 0.004319 0.060707 0.0 0.011613 0.003286 0.003890 0.024761 0.004051 0.004098 0.000000 0.091489 0.026727 0.00408 0.004481 0.003663 0.004268 0.021525 0.019473 0.004063 0.004006 0.004306 0.014314 0.022336 0.004344 0.006739 0.023775 0.004643 0.019777 0.004032 0.0 0.0 0.004295 0.003791 0.091296 0.000000 0.0 0.004892 0.009077 0.003740 0.0 0.003192 0.028650 0.000000 0.019096 0.003705 0.025563 0.0 0.022491 0.003284 0.003164 0.000000 0.020032 0.002930 0.003525 0.004361 0.020774 0.003127 0.004003 0.000000 0.0 0.0 0.029112 0.049182 0.026053 0.000000 0.000000 0.010851 0.000000 0.000000 0.032340 0.017507 0.004315 0.003720 0.073202 0.003973 0.0 0.016047 0.017245 0.004564 0.003639 0.034840 0.039761 0.042271 0.004079 0.018260 0.00443 0.055999 0.018015 0.015110 0.00352 0.013717 0.003736 0.046722 0.040719 0.004399 0.020077 0.004067 0.020587 0.004313 0.012563 0.00000 0.00434 0.004280 0.004681 0.015809 0.003848 0.003720 0.003896 0.02704 0.024701 0.093206 0.019038 0.003673 0.010084 0.004794 0.004254 0.025783 0.019821 0.004327 0.095433 0.004169 0.032296 0.046888 0.002998 0.071687 0.021073 0.036224 0.029050 0.000000 0.002489 0.019456 0.0 0.031893 0.028698 0.138425 0.032850 0.003785 0.059794 0.003204 0.011332 0.018390 0.003786 0.020272 0.040314 0.006767 0.00416 0.003322 0.134314 0.003525 0.000000 0.003571 0.0 0.003961 0.034637 0.028989 0.031002 0.052288 0.105559 0.0 0.015829 0.000000 0.003245 0.050291 0.003889 0.007982 0.028964 0.078564 0.014234 0.020473 0.005386 0.049564 0.025095 0.022035 0.0222 0.020396 0.054022 0.024517 0.004238 0.0 0.0 0.061414 0.014489 0.000000 0.016639 0.067218 0.016508 0.003309 0.051285 0.003528 0.003626 0.039918 0.020803 0.004038 0.021858 0.065778 0.0 0.025648 0.000000 0.051869 0.181468 0.004022 0.033596 0.079967 0.000000 0.037142 0.018197 0.024243 0.002955 0.019572 0.088057 0.067713 0.007814 0.000000 0.037396 0.0 0.003169 0.007972 0.0 0.023917 0.000000 0.000000 0.000000 0.000000 0.042340 0.024058 0.000000 0.026969 0.000000 0.017268 0.018718 0.0 0.025238 0.034102 0.004506 0.000000 0.000000 0.004379 0.016504 0.003361 0.050644 0.004312 0.0 0.062456 0.004824 0.0 0.0 0.004292 0.07766 0.003363 0.030071 0.079613 0.003944 0.019851 0.049566 0.00393 0.004598 0.018710 0.031323 0.004639 0.004192 0.012436 0.012436 0.027387 0.0 0.00451 0.004766 0.004695 0.004592 0.003846 0.004129 0.063965 0.010726 0.003369 0.004379 0.003607 0.008983 0.0 0.0 0.0 0.0 0.004419 0.004256 0.024609 0.021345 0.004495 0.004651 0.034910 0.096234 0.004273 0.004486 0.004555 0.00477 0.032089 0.004415 0.004402 0.051140 0.022483 0.012506 0.023448 0.000000 0.018694 0.00461 0.004200 0.004118 0.004065 0.004382 0.003958 0.022181 0.052753 0.004641 0.020075 0.037512 0.000000 0.000000 0.0 0.004239 0.004674 0.0 0.014401 0.022593 0.000000 0.0 0.004492 0.018016 0.018934 0.0 0.004198 0.0 0.015658 0.00356 0.0 0.004923 0.003772 0.033472 0.004148 0.017290 0.017662 0.014987 0.004538 0.004657 0.003234 0.002780 0.004275 0.003362 0.034627 0.003705 0.019514 0.058376 0.003993 0.004413 0.003875 0.015739 0.075623 0.003518 0.004536 0.003587 0.020038 0.017294 0.004779 0.005309 0.018101 0.004709 0.033718 0.004186 0.004005 0.00448 0.004539 0.029715 0.021217 0.005105 0.005152 0.003604 0.020972 0.018477 0.022508 0.005006 0.004107 0.000000 0.004187 0.022219 0.004156 0.022985 0.066794 0.004529 0.004549 0.026617 0.004143 0.031490 0.018813 0.004724 0.004445 0.003354 0.003911 0.003288 0.01508 0.055473 0.003719 0.000000 0.032219 0.004248 0.016593 0.030923 0.004384 0.041139 0.004982 0.025727 0.004511 0.000000 0.004538 0.020683 0.078581 0.003713 0.040377 0.003431 0.003244 0.0 0.000000 0.058080 0.002664 0.078231 0.038949 0.010267 0.003704 0.01595 0.002812 0.018667 0.035114 0.013719 0.014298 0.000000 0.003715 0.05619 0.024045 0.017247 0.015936 0.054179 0.032891 0.00361 0.016709 0.003048 0.010717 0.048448 0.016762 0.025790 0.029390 0.004318 0.000000 0.025342 0.004297 0.050870 0.024313 0.037619 0.004409 0.00000 0.033910 0.004105 0.046649 0.004414 0.048945 0.003523 0.004159 0.011737 0.037305 0.019897 0.024097 0.014754 0.110781 0.029872 0.0 0.014966 0.032611 0.127839 0.035395 0.004384 0.008936 0.003218 0.000000 0.002453 0.074482 0.027362 0.169228 0.034965 0.047268 0.003070 0.003845 0.0 0.003159 0.013801 0.000000 0.015355 0.064367 0.084635 0.031599 0.032900 0.020323 0.003281 0.041101 0.039143 0.024230 0.040259 0.070185 0.003932 0.019802 0.003986 0.004225 0.010614 0.003549 0.000000 0.015076 0.071187 0.003381 0.196894 0.009100 0.003789 0.004152 0.002957 0.050840 0.017164 0.000000 0.157891 0.036208 0.028188 0.003937 0.035137 0.0 0.018407 0.018429 0.046258 0.031579 0.000000 0.044176 0.003633 0.069899 0.0 0.032207 0.020682 0.010724 0.022023 0.002831 0.003661 0.003250 0.0 0.014644 0.018039 0.033655 0.007282 0.007290 0.015786 0.0 0.054211 0.01088 0.026441 0.023918 0.096890 0.018909 0.203492 0.151664 0.003814 0.023217 0.000000 0.000000 0.0 0.145959 0.003572 0.020306 0.014854 0.020108 0.014267 0.014470 0.027537 0.000000 0.004452 0.004390 0.0 0.005039 0.030404 0.0 0.003432 0.0 0.005244 0.090416 0.004014 0.012647 0.0 0.009935 0.000000 0.008282 0.004871 0.008441 0.0 0.003580 0.004997 0.009483 0.018943 0.004508 0.031172 0.000000 0.026356 0.000000 0.004512 0.004122 0.017073 0.022844 0.059664 0.003785 0.016627 0.000000 0.0 0.021193 0.0 0.004549 0.00401 0.004616 0.00781 0.081169 0.002884 0.0 0.0 0.003856 0.004202 0.005066 0.000000 0.000000 0.0 0.004718 0.0 0.088339 0.222659 0.094666 0.018104 0.000000 0.002780 0.0 0.028059 0.003234 0.0 0.032636 0.00368 0.006027 0.003782 0.032673 0.004104 0.099562 0.00323 0.007052 0.000000 0.263219 0.013877 0.00478 0.002952 0.069483 0.039079 0.017411 0.000000 0.00322 0.003475 0.028326 0.003754 0.046530 0.015948 0.013398 0.034038 0.000000 0.020207 0.003203 0.013849 0.031244 0.039088 0.029252 0.004659 0.024288 0.004287 0.004439 0.005098 0.004746 0.004723 0.008618 0.0 0.004531 0.003944 0.003538 0.019799 0.003732 0.000000 0.030710 0.005029 0.004905 0.004411 0.004959 0.004054 0.002793 0.031516 0.004500 0.108261 0.00437 0.050815 0.004449 0.093437 0.003092 0.083198 0.003564 0.017794 0.003986 0.018508 0.004399 0.003816 0.003976 0.004758 0.003187 0.018776 0.003918 0.000000 0.049722 0.016699 0.045096 0.00446 0.09863 0.021505 0.056199 0.003692 0.010267 0.078258 0.013574 0.055617 0.004164 0.00422 0.004337 0.077316 0.043292 0.032530 0.004044 0.003661 0.004344 0.130486 0.173894 0.0035 0.002966 0.004073 0.003341 0.0 0.032099 0.0 0.017466 0.0 0.022057 0.060105 0.000000 0.003325 0.003511 0.106941 0.034021 0.004225 0.031774 0.071837 0.003657 0.004434 0.073202 0.018267 0.038413 0.045612 0.0 0.026699 0.054908 0.035206 0.03458 0.0 0.012977 0.020495 0.048228 0.000000 0.021755 0.003492 0.003312 0.030167 0.066082 0.000000 0.011875 0.032307 0.003522 0.003814 0.031588 0.027803 0.015718 0.040622 0.000000 0.033054 0.002774 0.031792 0.012504 0.079516 0.020528 0.030820 0.130904 0.034268 0.100027 0.014009 0.019900 0.002678 0.029488 0.052807 0.061677 0.041164 0.035629 0.019886 0.007235 0.0 0.094651 0.015814 0.010962 0.002686 0.003706 0.002667 0.003878 0.012058 0.002819 0.007301 0.103188 0.004083 0.043474 0.003519 0.033378 0.023866 0.047359 0.008707 0.007517 0.000000 0.000000 0.000000 0.030311 0.003746 0.077378 0.034024 0.008677 0.028248 0.003903 0.000000 0.012201 0.000000 0.009442 0.027405 0.003885 0.003525 0.011412 0.059463 0.018306 0.036411 0.022494 0.147820 0.003349 0.000000 0.033614 0.003112 0.015333 0.077092 0.000000 0.157446 0.003009 0.000000 0.011147 0.025740 0.076062 0.069379 0.003950 0.0 0.004529 0.019235 0.004168 0.00391 0.000000 0.004964 0.003501 0.0 0.00415 0.045200 0.004123 0.004711 0.054291 0.004525 0.004772 0.004683 0.004326 0.003901 0.002895 0.008773 0.004057 0.000000 0.047831 0.004924 0.00457 0.080131 0.003597 0.004561 0.000000 0.006901 0.004501 0.051539 0.004853 0.049076 0.003880 0.142298 0.004274 0.017510 0.024450 0.003983 0.004273 0.0 0.023514 0.083570 0.050659 0.036551 0.014806 0.002730 0.050945 0.004335 0.050402 0.00469 0.000000 0.025026 0.000000 0.066354 0.000000 0.015166 0.024435 0.012580 0.003544 0.025817 0.004412 0.004433 0.003647 0.0 0.000000 0.0 0.000000 0.012769 0.019934 0.0 0.021089 0.017195 0.004110 0.00404 0.0 0.003148 0.004369 0.004370 0.004292 0.005296 0.008960 0.0 0.004788 0.004297 0.004470 0.000000 0.004821 0.004542 0.028499 0.030057 0.003859 0.004605 0.004519 0.020233 0.004888 0.003963 0.018188 0.004924 0.004022 0.015317 0.000000 0.042786 0.032892 0.098635 0.004735 0.004504 0.041533 0.004649 0.024135 0.031462 0.003945 0.004239 0.002972 0.01689 0.002722 0.002830 0.002955 0.021703 0.020602 0.021409 0.003639 0.000000 0.003945 0.023852 0.0 0.002645 0.000000 0.021048 0.054573 0.037899 0.024353 0.033252 0.004037 0.029377 0.012093 0.018977 0.042759 0.071189 0.048334 0.028394 0.013918 0.003334 0.026616 0.004091 0.026191 0.015671 0.027928 0.021153 0.003951 0.003487 0.003926 0.004131 0.003776 0.020805 0.003994 0.004167 0.013762 0.016866 0.046416 0.045578 0.042962 0.058987 0.003585 0.004435 0.025519 0.038663 0.003755 0.132287 0.007062 0.014547 0.050182 0.056526 0.155727 0.012147 0.012147 0.004428 0.003482 0.000000 0.006618 0.056487 0.116591 0.063823 0.003763 0.048786 0.000000 0.024014 0.003077 0.041030 0.015263 0.045319 0.004225 0.004038 0.006587 0.032541 0.002911 0.067836 0.000000 0.038015 0.100561 0.003447 0.006594 0.047532 0.014890 0.007682 0.000000 0.022955 0.026517 0.017119 0.039655 0.000000 0.034109 0.018734 0.011643 0.027380 0.019062 0.000000 0.003557 0.011066 0.004007 0.029468 0.028627 0.023406 0.000000 0.000000 0.000000 0.039180 0.004043 0.012689 0.0 0.005201 0.004685 0.009776 0.004527 0.076057 0.013438 0.004002 0.004292 0.0 0.000000 0.017335 0.005016 0.004179 0.025633 0.004662 0.015552 0.015552 0.009970 0.00494 0.004943 0.030043 0.012562 0.011815 0.0 0.004519 0.004664 0.004335 0.0 0.011612 0.011612 0.004011 0.107009 0.0 0.028603 0.003743 0.004361 0.004718 0.004297 0.004244 0.004871 0.004905 0.018881 0.004519 0.0 0.004254 0.004379 0.067319 0.035766 0.051569 0.003892 0.015178 0.027978 0.017608 0.000000 0.033232 0.000000 0.004276 0.017935 0.018357 0.003762 0.004471 0.17611 0.0516 0.000000 0.004131 0.025935 0.013508 0.004727 0.000000 0.03763 0.000000 0.051612 0.016938 0.003513 0.003828 0.003944 0.014500 0.003250 0.003323 0.013133 0.022517 0.020737 0.023741 0.007053 0.004338 0.004645 0.004009 0.0 0.017531 0.003453 0.000000 0.003424 0.003778 0.004863 0.004868 0.019525 0.018942 0.003228 0.110071 0.004144 0.004616 0.018327 0.004257 0.003319 0.003544 0.058456 0.003377 0.0 0.004981 0.0 0.003329 0.0042 0.004190 0.0033 0.018842 0.054004 0.019198 0.011486 0.004748 0.003917 0.003448 0.021934 0.003530 0.003415 0.003645 0.004459 0.0 0.012474 0.004499 0.003977 0.002901 0.014840 0.004639 0.01682 0.005002 0.004571 0.040905 0.025965 0.0 0.003927 0.004027 0.000000 0.017193 0.004111 0.004314 0.004333 0.095276 0.089517 0.003703 0.032424 0.004749 0.004045 0.035902 0.004612 0.0 0.060026 0.003426 0.0 0.002797 0.016493 0.000000 0.024621 0.016896 0.034636 0.008677 0.000000 0.000000 0.00296 0.014655 0.0 0.027380 0.08009 0.0 0.017813 0.0 0.014383 0.003501 0.031573 0.016047 0.004146 0.025314 0.046253 0.004888 0.003589 0.014783 0.096241 0.014219 0.011061 0.019038 0.004562 0.026684 0.100172 0.00356 0.003737 0.046847 0.017791 0.015715 0.024137 0.047789 0.021369 0.004176 0.004581 0.021369 0.017292 0.038567 0.013844 0.031002 0.004049 0.004251 0.023855 0.0 0.012510 0.002928 0.000000 0.022912 0.006426 0.142653 0.018874 0.003446 0.003045 0.027280 0.058853 0.024717 0.022243 0.003318 0.039701 0.003358 0.048950 0.027330 0.021379 0.0037 0.04258 0.043148 0.01608 0.031065 0.002935 0.011261 0.021745 0.003793 0.017839 0.029387 0.030985 0.003393 0.183730 0.018053 0.048332 0.00000 0.000000 0.016324 0.004368 0.034584 0.100655 0.003501 0.008405 0.040791 0.000000 0.002203 0.031717 0.109646 0.011026 0.017373 0.064741 0.025529 0.037448 0.0 0.004078 0.028362 0.036284 0.000000 0.000000 0.076734 0.017218 0.000000 0.00208 0.00000 0.000000 0.101020 0.048110 0.024887 0.000000 0.140931 0.082648 0.013942 0.015552 0.004948 0.00000 0.004511 0.039897 0.0 0.081468 0.015509 0.004055 0.019021 0.005028 0.08501 0.014977 0.027042 0.004364 0.003701 0.0 0.030563 0.004377 0.000000 0.059773 0.000000 0.004013 0.004467 0.0 0.003963 0.004549 0.012912 0.0 0.000000 0.004731 0.004165 0.0 0.003876 0.004477 0.015609 0.083442 0.004478 0.004004 0.004617 0.015069 0.003787 0.036369 0.031555 0.027583 0.003919 0.003893 0.003823 0.004636 0.018547 0.004824 0.000000 0.003796 0.003289 0.0 0.004116 0.022838 0.028925 0.091322 0.004584 0.000000 0.030221 0.002891 0.000000 0.004025 0.003052 0.027289 0.000000 0.003214 0.0 0.0 0.068196 0.000000 0.020321 0.003951 0.0 0.0 0.012082 0.014882 0.004423 0.013682 0.0 0.018648 0.003756 0.004666 0.018957 0.004205 0.019226 0.004282 0.003676 0.018331 0.004364 0.005359 0.003278 0.004713 0.003615 0.004518 0.012525 0.004455 0.00396 0.000000 0.002898 0.003942 0.014891 0.017407 0.000000 0.008900 0.0 0.082963 0.003385 0.003922 0.018626 0.004502 0.003074 0.025454 0.004059 0.000000 0.00389 0.008241 0.0 0.000000 0.004432 0.004316 0.003776 0.00427 0.004499 0.004359 0.004593 0.004409 0.022877 0.094986 0.071225 0.003308 0.024668 0.027045 0.004429 0.003653 0.004611 0.004021 0.004438 0.004128 0.000000 0.000000 0.038651 0.014782 0.004452 0.024452 0.029214 0.018993 0.003539 0.030768 0.004371 0.006656 0.004143 0.013948 0.004185 0.004393 0.004005 0.000000 0.009963 0.021479 0.0 0.028878 0.003047 0.016383 0.024210 0.021944 0.013101 0.015125 0.003255 0.0 0.004171 0.008287 0.000000 0.026170 0.029390 0.000000 0.000000 0.018569 0.004496 0.004484 0.004418 0.004687 0.004353 0.014827 0.01446 0.004000 0.014163 0.027160 0.003826 0.065919 0.016237 0.031002 0.016237 0.003994 0.003527 0.029094 0.010720 0.003881 0.093297 0.025912 0.0 0.003094 0.034065 0.028913 0.059799 0.003770 0.004681 0.003595 0.034189 0.003592 0.003237 0.010914 0.003501 0.003245 0.031802 0.003693 0.000000 0.003685 0.023295 0.025838 0.003691 0.002502 0.01498 0.004297 0.003016 0.00442 0.025620 0.025620 0.015591 0.048930 0.079656 0.061516 0.026696 0.006952 0.004376 0.088394 0.015466 0.000000 0.124573 0.003915 0.133325 0.029795 0.003607 0.004134 0.017555 0.000000 0.003495 0.111730 0.003397 0.003361 0.000000 0.000000 0.0 0.010644 0.003710 0.022053 0.023443 0.000000 0.020659 0.024096 0.068672 0.003502 0.029463 0.103784 0.030672 0.020567 0.003526 0.00307 0.019575 0.003894 0.004068 0.004078 0.005046 0.003661 0.016558 0.004686 0.004660 0.0 0.0 0.004123 0.004196 0.0 0.004664 0.004688 0.004549 0.004661 0.0 0.004744 0.003925 0.000000 0.004042 0.014583 0.021989 0.003956 0.003826 0.004597 0.003924 0.014804 0.004888 0.0 0.000000 0.004614 0.000000 0.004499 0.009089 0.004558 0.004573 0.040542 0.004610 0.004359 0.0 0.017750 0.0 0.019076 0.025895 0.005128 0.004328 0.004574 0.004380 0.012689 0.009103 0.0 0.004597 0.010022 0.008414 0.004287 0.004474 0.020701 0.087859 0.004386 0.004531 0.014544 0.0 0.004474 0.0 0.004798 0.093144 0.004766 0.004198 0.037481 0.023909 0.000000 0.000000 0.018690 0.027146 0.003919 0.067192 0.003739 0.019452 0.151866 0.03583 0.021281 0.000000 0.003756 0.003953 0.003475 0.0 0.014309 0.004488 0.019412 0.043801 0.045548 0.0 0.000000 0.021520 0.050815 0.053903 0.0 0.004045 0.004455 0.000000 0.067649 0.011454 0.000000 0.073202 0.039320 0.009026 0.027806 0.003402 0.000000 0.045431 0.000000 0.003299 0.034938 0.023647 0.003404 0.063602 0.003246 0.023112 0.024864 0.010685 0.0 0.031803 0.056398 0.016908 0.01946 0.000000 0.012591 0.003236 0.016129 0.003519 0.004748 0.097699 0.028997 0.003681 0.003493 0.007895 0.019925 0.017376 0.004180 0.019551 0.176534 0.013186 0.058590 0.000000 0.022501 0.045161 0.000000 0.003316 0.013198 0.002923 0.003212 0.003803 0.024654 0.000000 0.0 0.0 0.004234 0.0 0.004596 0.004425 0.087479 0.004877 0.003995 0.004472 0.093144 0.0 0.000000 0.004559 0.010158 0.021498 0.004336 0.005016 0.004226 0.003672 0.004679 0.004973 0.006674 0.002792 0.000000 0.004417 0.003911 0.064596 0.003481 0.024149 0.003213 0.003188 0.0043 0.067338 0.003396 0.023564 0.003182 0.000000 0.004082 0.004348 0.004679 0.018020 0.008429 0.013100 0.023306 0.157840 0.017316 0.040047 0.023374 0.000000 0.035440 0.002742 0.000000 0.020597 0.054688 0.00459 0.004245 0.022032 0.003122 0.002902 0.000000 0.136936 0.005111 0.094745 0.004011 0.005538 0.077489 0.003691 0.017060 0.004310 0.003831 0.004879 0.0 0.017669 0.00496 0.046963 0.003257 0.003961 0.018868 0.028477 0.020833 0.004427 0.018448 0.004282 0.008786 0.004449 0.003498 0.004355 0.004665 0.004238 0.004635 0.004376 0.0 0.026838 0.017945 0.040863 0.162305 0.003234 0.0 0.0 0.022651 0.004546 0.000000 0.037619 0.003369 0.004311 0.011416 0.022582 0.026880 0.00353 0.020007 0.000000 0.018704 0.002323 0.062833 0.027473 0.000000 0.002718 0.0 0.004279 0.071419 0.072614 0.004797 0.019424 0.0 0.021577 0.004283 0.003229 0.0 0.004835 0.003288 0.055892 0.000000 0.0 0.000000 0.003876 0.0 0.004555 0.004638 0.003967 0.019166 0.004321 0.005102 0.004073 0.004877 0.067572 0.000000 0.019187 0.0 0.004263 0.004744 0.061937 0.003340 0.004371 0.024106 0.003709 0.017245 0.018446 0.003956 0.0 0.004330 0.003628 0.003060 0.017824 0.003266 0.074433 0.003835 0.021883 0.003503 0.003739 0.004184 0.004091 0.00346 0.003832 0.004043 0.004068 0.027540 0.014635 0.057551 0.021262 0.002817 0.024296 0.030597 0.039606 0.003762 0.004942 0.004186 0.135610 0.000000 0.0 0.144346 0.003186 0.002535 0.000000 0.004393 0.022835 0.000000 0.051574 0.033351 0.052243 0.012447 0.049130 0.040788 0.025417 0.000000 0.004771 0.012244 0.054252 0.072827 0.021929 0.004870 0.131256 0.004254 0.004824 0.033543 0.004343 0.004554 0.0 0.029281 0.002655 0.045045 0.039126 0.003284 0.041118 0.008238 0.003678 0.016106 0.140248 0.0 0.003021 0.004341 0.004472 0.018307 0.004805 0.00464 0.03426 0.004290 0.00469 0.005099 0.019159 0.004531 0.026021 0.004835 0.0043 0.004209 0.004285 0.003671 0.00371 0.004532 0.031356 0.004348 0.004874 0.004125 0.004276 0.018790 0.004484 0.0 0.0 0.005173 0.004422 0.004647 0.0 0.004513 0.0 0.003944 0.004884 0.0 0.0 0.02971 0.003563 0.004972 0.004502 0.00403 0.005484 0.000000 0.000000 0.0 0.0 0.0 0.0 0.021831 0.004285 0.008221 0.004368 0.003365 0.004324 0.004225 0.006448 0.004336 0.004140 0.0000 0.0000 0.004800 0.025473 0.004241 0.004375 0.028959 0.00408 0.004574 0.005663 0.005222 0.005053 0.016229 0.003546 0.004561 0.021232 0.02394 0.004608 0.002472 0.018793 0.018278 0.004172 0.000000 0.004628 0.003757 0.017569 0.0 0.004515 0.0 0.0 0.0 0.0 0.000000 0.004073 0.004362 0.0 0.0 0.004125 0.0 0.000000 0.0 0.0 0.0 0.004794 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.003904 0.004267 0.004600 0.033702 0.017873 0.003878 0.004564 0.004029 0.004647 0.087331 0.000000 0.004943 0.0 0.004994 0.004656 0.004217 0.004735 0.004668 0.015550 0.004262 0.028153 0.004816 0.004295 0.020615 0.00419 0.004229 0.004061 0.000000 0.028067 0.004236 0.004646 0.003833 0.004194 0.005094 0.004654 0.019714 0.004115 0.004597 0.00445 0.0 0.042958 0.0 0.004199 0.004705 0.004968 0.004421 0.004494 0.01874 0.000000 0.003435 0.004804 0.017933 0.004214 0.004733 0.004369 0.004775 0.004906 0.004486 0.017284 0.000000 0.034004 0.000000 0.019017 0.019138 0.004673 0.004742 0.004683 0.004649 0.004398 0.004537 0.018945 0.003881 0.004374 0.005248 0.0 0.004889 0.026833 0.004737 0.0 0.00458 0.004938 0.004453 0.02187 0.003582 0.004664 0.003915 0.004850 0.005037 0.000000 0.0 0.012052 0.0 0.0 0.0 0.004759 0.004949 0.004477 0.004623 0.000000 0.003948 0.004694 0.004132 0.000000 0.028073 0.021097 0.014354 0.046199 0.004583 0.005252 0.004735 0.024245 0.005218 0.005014 0.0 0.0 0.015159 0.004153 0.004944 0.004501 0.004804 0.004811 0.004652 0.005251 0.004617 0.004958 0.004671 0.005454 0.004184 0.005071 0.029785 0.008769 0.004053 0.025104 0.027725 0.004489 0.000000 0.003963 0.004617 0.003593 0.004279 0.003726 0.0 0.004017 0.0 0.0 0.0 0.031487 0.004912 0.0 0.0 0.004616 0.004627 0.004579 0.003594 0.033818 0.004906 0.004146 0.021102 0.004509 0.004073 0.005636 0.004426 0.003284 0.00459 0.004694 0.003853 0.005138 0.004313 0.004645 0.003965 0.00872 0.0 0.0 0.004741 0.016277 0.005301 0.003603 0.004243 0.004182 0.023337 0.003781 0.020407 0.026604 0.0 0.0 0.0 0.008625 0.004141 0.017045 0.004157 0.003976 0.004516 0.003949 0.004468 0.004508 0.004475 0.012912 0.004303 0.004415 0.004635 0.0 0.00406 0.016615 0.056651 0.003997 0.003729 0.019123 0.004355 0.004262 0.003572 0.003769 0.026093 0.004182 0.063498 0.004108 0.004123 0.027834 0.0 0.0 0.0 0.000000 0.004349 0.004428 0.022989 0.022176 0.0 0.042974 0.004178 0.048040 0.00484 0.004565 0.031070 0.003786 0.004478 0.014832 0.058446 0.004193 0.004540 0.0 0.0 0.004959 0.015405 0.004469 0.003931 0.004492 0.016467 0.004115 0.000000 0.002498 0.004074 0.00487 0.003819 0.004779 0.003921 0.003752 0.002970 0.004506 0.004084 0.00414 0.004486 0.00448 0.004704 0.004392 0.0 0.004291 0.0 0.0 0.0 0.00499 0.004568 0.004307 0.004821 0.003970 0.004574 0.022215 0.004454 0.004419 0.004241 0.003884 0.000000 0.000000 0.000000 0.004812 0.004650 0.004968 0.000000 0.0 0.0 0.0 0.00505 0.0 0.0 0.004733 0.0 0.004005 0.004051 0.004587 0.004184 0.004488 0.004376 0.027913 0.004319 0.004382 0.004536 0.004686 0.005061 0.004586 0.051827 0.004562 0.004455 0.004984 0.003779 0.028324 0.004719 0.004621 0.0 0.0 0.008142 0.004140 0.0 0.009249 0.003953 0.004395 0.0 0.003853 0.003672 0.000000 0.017707 0.003892 0.004259 0.0 0.0 0.003953 0.004177 0.0 0.020094 0.0 0.0 0.014388 0.009651 0.004682 0.004747 0.0 0.013645 0.019574 0.069023 0.003992 0.004242 0.004583 0.00457 0.0 0.012538 0.0 0.0 0.0 0.014412 0.003794 0.003331 0.004065 0.004113 0.090465 0.004435 0.003983 0.039832 0.10233 0.004688 0.004489 0.0 0.0 0.004493 0.004266 0.004836 0.015714 0.000000 0.011515 0.004546 0.004627 0.004099 0.018233 0.004158 0.003998 0.005095 0.005007 0.0 0.000000 0.038618 0.025503 0.003853 0.004226 0.00429 0.067113 0.003610 0.004345 0.00512 0.00452 0.004905 0.004634 0.050295 0.004657 0.004007 0.003897 0.004495 0.004791 0.004421 0.004262 0.004635 0.004426 0.004182 0.004363 0.004137 0.004424 0.000000 0.004317 0.000000 0.003466 0.004568 0.0 0.02058 0.004984 0.047249 0.019889 0.009061 0.004869 0.004617 0.003659 0.090456 0.004596 0.004439 0.004743 0.003876 0.0 0.0 0.0 0.004552 0.0 0.004039 0.0 0.004600 0.003921 0.014564 0.004575 0.003913 0.004744 0.002994 0.004317 0.004138 0.004134 0.004525 0.0 0.0 0.004660 0.004732 0.004577 0.0 0.004256 0.004293 0.0 0.004848 0.033625 0.0 0.0 0.005102 0.004613 0.004739 0.004101 0.004943 0.026741 0.004677 0.000000 0.004629 0.004058 0.004545 0.004389 0.004149 0.004431 0.004183 0.00406 0.004455 0.004187 0.004312 0.003902 0.004124 0.008723 0.004313 0.003582 0.004521 0.003775 0.003805 0.004272 0.0 0.004495 0.003715 0.003782 0.003803 0.005087 0.003999 0.004876 0.0 0.004296 0.013747 0.004078 0.004818 0.027663 0.003841 0.01841 0.00461 0.004357 0.004408 0.004382 0.00421 0.003932 0.004095 0.003465 0.004152 0.004051 0.004151 0.054546 0.000000 0.009627 0.0 0.004657 0.020711 0.005009 0.0 0.00998 0.0 0.018880 0.00413 0.018106 0.0 0.004339 0.0 0.0 0.0 0.0 0.020284 0.000000 0.004867 0.000000 0.004425 0.0 0.004648 0.003496 0.004451 0.003517 0.000000 0.004406 0.07259 0.013480 0.004561 0.003921 0.004459 0.018423 0.004814 0.004509 0.020151 0.020021 0.0 0.082293 0.0 0.0 0.0 0.004265 0.0 0.004349 0.0 0.004314 0.0 0.004197 0.004499 0.004245 0.003896 0.004364 0.004857 0.029278 0.094865 0.019083 0.004788 0.004818 0.004265 0.003974 0.020213 0.000000 0.014932 0.014932 0.020391 0.000000 0.0 0.021253 0.004315 0.0 0.003662 0.004391 0.004023 0.004453 0.004124 0.003826 0.005077 0.000000 0.003976 0.0 0.0 0.0 0.003544 0.004071 0.005044 0.004556 0.004798 0.0 0.004791 0.0 0.000000 0.004254 0.026054 0.004917 0.003605 0.003619 0.00426 0.000000 0.027341 0.000000 0.003386 0.004201 0.004005 0.004455 0.004481 0.004291 0.004625 0.0 0.0 0.015113 0.004625 0.004969 0.004175 0.004447 0.004011 0.0 0.000000 0.0 0.004613 0.021777 0.003852 0.005028 0.004067 0.000000 0.003865 0.018261 0.000000 0.004054 0.017221 0.004458 0.003789 0.004445 0.004593 0.004125 0.004273 0.004582 0.004303 0.003712 0.004172 0.010578 0.003881 0.003805 0.0 0.0 0.0 0.0 0.0 0.0 0.080645 0.004361 0.080645 0.004182 0.0 0.003822 0.0 0.004598 0.00422 0.00422 0.000000 0.000000 0.000000 0.0 0.022977 0.0 0.0 0.004306 0.003037 0.000000 0.004730 0.004622 0.015196 0.00374 0.004936 0.003849 0.004687 0.003299 0.0 0.0 0.0 0.004265 0.004805 0.03373 0.004436 0.004525 0.004189 0.003843 0.0 0.0045 0.0 0.004006 0.0 0.0 0.0 0.015449 0.0 0.000000 0.016525 0.016761 0.014893 0.00476 0.004137 0.004528 0.004016 0.000000 0.004353 0.004433 0.004481 0.0 0.0 0.004494 0.0 0.0 0.004286 0.0 0.0 0.0 0.0 0.004094 0.0 0.032811 0.018994 0.004087 0.0 0.003650 0.026366 0.004580 0.003906 0.003379 0.00406 0.0 0.017783 0.004762 0.004261 0.00465 0.0 0.000000 0.0 0.000000 0.003846 0.003746 0.0 0.004996 0.000000 0.004613 0.000000 0.028862 0.004565 0.0 0.004648 0.004420 0.0 0.0 0.004108 0.010067 0.008999 0.0 0.0 0.004318 0.004293 0.0 0.018108 0.000000 0.003754 0.004424 0.004534 0.004584 0.003929 0.003711 0.027779 0.004713 0.004054 0.004977 0.000000 0.018577 0.003809 0.025808 0.0 0.0 0.004648 0.016553 0.027795 0.017926 0.004871 0.004864 0.004446 0.018819 0.004999 0.004209 0.003921 0.080987 0.004916 0.004984 0.019339 0.004368 0.004779 0.004117 0.003572 0.004428 0.004849 0.004718 0.008279 0.004642 0.004944 0.004046 0.003843 0.003709 0.004052 0.004353 0.087639 0.029386 0.004527 0.003475 0.004469 0.004486 0.0 0.0 0.0 0.004123 0.004504 0.004207 0.003851 0.004113 0.0 0.0 0.0 0.0 0.004493 0.0 0.00414 0.0 0.0 0.0 0.003575 0.0 0.0 0.0 0.0 0.027357 0.004216 0.026708 0.004721 0.024707 0.009051 0.004374 0.081038 0.024584 0.009683 0.003541 0.005119 0.003817 0.005632 0.003612 0.006865 0.004038 0.004302 0.13362 0.015726 0.003353 0.003782 0.004296 0.004787 0.00426 0.004331 0.0 0.000000 0.0 0.000000 0.0 0.005206 0.000000 0.004268 0.000000 0.004253 0.003803 0.0 0.004921 0.0 0.0 0.0 0.0 0.004106 0.0 0.0 0.004235 0.0 0.0 0.004379 0.0 0.004336 0.004381 0.0 0.0042 0.023698 0.0 0.0 0.004134 0.004111 0.004679 0.00445 0.004836 0.004793 0.004156 0.004536 0.004487 0.004315 0.0 0.024227 0.014991 0.0 0.024227 0.004633 0.005235 0.024227 0.0 0.004294 0.0 0.004984 0.078321 0.004374 0.004346 0.019523 0.004514 0.000000 0.022582 0.004314 0.004716 0.004787 0.004504 0.004927 0.018431 0.004977 0.030758 0.023429 0.021519 0.0 0.0 0.000000 0.016194 0.000000 0.000000 0.004648 0.0 0.020033 0.004332 0.004196 0.008008 0.004838 0.004558 0.017531 0.00427 0.003514 0.004889 0.004114 0.004211 0.0 0.005164 0.0 0.004879 0.0 0.003711 0.003986 0.0 0.008946 0.019655 0.004666 0.020558 0.004514 0.019962 0.018144 0.004082 0.004404 0.004169 0.004614 0.020423 0.004168 0.004546 0.004833 0.004271 0.0 0.004434 0.0 0.034004 0.004995 0.004664 0.004816 0.004385 0.024745 0.024279 0.004249 0.004386 0.004213 0.004529 0.0 0.004241 0.004925 0.004477 0.00444 0.0 0.014824 0.02543 0.004446 0.004284 0.005341 0.0 0.004395 0.004460 0.020093 0.004465 0.0 0.004585 0.0 0.003655 0.005092 0.004528 0.004601 0.004335 0.029566 0.058106 0.004212 0.0 0.004240 0.049326 0.0 0.004672 0.004315 0.005115 0.003992 0.004526 0.018431 0.004082 0.000000 0.000000 0.003569 0.034524 0.004647 0.004551 0.000000 0.088645 0.015107 0.004144 0.004418 0.004839 0.00461 0.004175 0.041740 0.004399 0.002987 0.009081 0.004942 0.003902 0.000000 0.000000 0.004887 0.0 0.0 0.00000 0.004499 0.004224 0.004148 0.067321 0.004585 0.008976 0.000000 0.018878 0.004638 0.005372 0.005009 0.003959 0.004783 0.009106 0.004721 0.004290 0.004845 0.021773 0.021773 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.018313 0.00411 0.004481 0.004012 0.017856 0.004978 0.004849 0.023997 0.004139 0.004544 0.004477 0.004421 0.019355 0.004792 0.004761 0.004649 0.018286 0.004833 0.004453 0.021519 0.062576 0.008986 0.004381 0.004394 0.003811 0.000000 0.024662 0.016978 0.004024 0.003667 0.004976 0.003805 0.00359 0.020487 0.003771 0.020487 0.020487 0.029246 0.005314 0.004237 0.004053 0.004222 0.004289 0.004166 0.018286 0.004686 0.015968 0.00513 0.030024 0.004219 0.004213 0.008627 0.004606 0.003918 0.019810 0.019810 0.004536 0.004655 0.024056 0.004684 0.022118 0.003879 0.003408 0.003734 0.004277 0.004583 0.0 0.004184 0.004188 0.004052 0.004071 0.004697 0.003675 0.018531 0.004557 0.003059 0.004911 0.004458 0.004379 0.004535 0.004076 0.023217 0.0 0.004770 0.004304 0.004523 0.004105 0.044996 0.004344 0.004613 0.003712 0.004324 0.004298 0.0 0.0 0.0 0.0 0.003604 0.003640 0.0 0.0 0.000000 0.019712 0.019712 0.004424 0.004214 0.004243 0.004662 0.003929 0.004443 0.004357 0.0 0.0 0.0 0.004572 0.004555 0.004021 0.004478 0.005044 0.004495 0.004866 0.010076 0.02854 0.0 0.004246 0.0 0.003638 0.01836 0.004588 0.0 0.004103 0.004670 0.034872 0.015327 0.004737 0.0 0.0 0.0 0.010150 0.00426 0.000000 0.004433 0.004612 0.0 0.0 0.023184 0.079241 0.009530 0.00438 0.003942 0.004609 0.004676 0.004589 0.004573 0.004269 0.000000 0.000000 0.000000 0.032563 0.004774 0.017567 0.004404 0.004475 0.0 0.0 0.026848 0.004442 0.004424 0.008627 0.0 0.0 0.0 0.150493 0.004377 0.003854 0.004298 0.004471 0.004229 0.004525 0.003722 0.005026 0.004148 0.025265 0.009391 0.004647 0.039184 0.0 0.013406 0.0 0.000000 0.004611 0.003574 0.004176 0.0 0.004049 0.048575 0.003607 0.005167 0.003678 0.018718 0.003434 0.005192 0.0 0.02633 0.003656 0.024645 0.0 0.000000 0.0 0.004326 0.0 0.004939 0.003974 0.004331 0.004422 0.019957 0.004322 0.019957 0.0 0.009448 0.0 0.095775 0.005376 0.000000 0.035184 0.004555 0.004649 0.005254 0.004591 0.022397 0.022397 0.004310 0.029785 0.004719 0.004644 0.02608 0.02608 0.004630 0.02608 0.00458 0.004366 0.021340 0.01383 0.004369 0.000000 0.015625 0.00461 0.004585 0.089003 0.003467 0.000000 0.000000 0.004699 0.0 0.0 0.004225 0.102026 0.004408 0.008793 0.002904 0.004404 0.004494 0.003997 0.003834 0.004679 0.003477 0.005334 0.004298 0.0 0.004874 0.004671 0.0 0.004543 0.0 0.004591 0.000000 0.004230 0.028291 0.003851 0.029652 0.029951 0.004239 0.004536 0.018286 0.004710 0.004199 0.000000 0.004918 0.000000 0.0 0.0 0.0 0.004374 0.0 0.009551 0.0 0.004959 0.00378 0.013968 0.004307 0.09235 0.003732 0.003599 0.004017 0.004182 0.133568 0.0 0.0 0.000000 0.00494 0.009903 0.004503 0.004821 0.00526 0.003533 0.000000 0.000000 0.018698 0.000000 0.0033 0.000000 0.004387 0.059867 0.005095 0.003698 0.004817 0.140757 0.005058 0.004994 0.004687 0.0 0.004457 0.0 0.004818 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.016791 0.023799 0.021969 0.004043 0.000000 0.008911 0.082563 0.082563 0.004342 0.004624 0.004345 0.004649 0.003897 0.000000 0.004246 0.0 0.004418 0.019228 0.004643 0.007701 0.004595 0.004862 0.00462 0.020557 0.004038 0.018945 0.004375 0.040717 0.004521 0.0 0.00389 0.0 0.000000 0.000000 0.000000 0.000000 0.021969 0.004066 0.004255 0.004825 0.034413 0.008889 0.0 0.019514 0.0 0.0049 0.0 0.0 0.0 0.0 0.0 0.004850 0.004524 0.014529 0.00446 0.005083 0.004606 0.023392 0.004826 0.025587 0.041404 0.024256 0.004328 0.004367 0.004416 0.0041 0.0 0.0 0.0 0.0 0.005053 0.0 0.004211 0.000000 0.004384 0.004643 0.004109 0.004116 0.004075 0.080215 0.004386 0.021419 0.0 0.0 0.0 0.004194 0.004782 0.00469 0.004671 0.00359 0.003644 0.004372 0.013634 0.004497 0.003598 0.00444 0.004327 0.003742 0.004606 0.029284 0.018669 0.003866 0.004422 0.004218 0.003352 0.004241 0.004551 0.004269 0.004171 0.003594 0.003625 0.004386 0.008539 0.033941 0.027473 0.004725 0.004413 0.00422 0.004365 0.004449 0.004616 0.017681 0.0 0.022625 0.022625 0.02841 0.004003 0.003838 0.003426 0.003908 0.06051 0.0 0.004260 0.00000 0.004368 0.003674 0.004498 0.004638 0.004192 0.004141 0.00000 0.032584 0.023377 0.005171 0.004325 0.023949 0.023949 0.023949 0.004510 0.000000 0.005062 0.089203 0.004583 0.004523 0.004089 0.004321 0.004518 0.034058 0.004545 0.017139 0.000000 0.004498 0.004594 0.003434 0.004004 0.003825 0.004729 0.0 0.0 0.096699 0.0 0.004348 0.008765 0.004405 0.004643 0.044572 0.004716 0.02543 0.004479 0.003582 0.020594 0.00425 0.021054 0.020594 0.004361 0.004364 0.005491 0.003626 0.004170 0.000000 0.004431 0.018200 0.0 0.004428 0.029508 0.004341 0.004281 0.000000 0.000000 0.003930 0.0 0.004376 0.0 0.004468 0.004772 0.000000 0.0 0.021638 0.000000 0.0 0.004178 0.026553 0.0 0.0 0.0 0.0 0.0 0.024483 0.000000 0.004056 0.004677 0.0 0.024732 0.0 0.004188 0.0 0.0 0.003424 0.000000 0.000000 0.003425 0.0 0.000000 0.004465 0.003910 0.004903 0.018367 0.0 0.0 0.0 0.0 0.0 0.004187 0.004228 0.004469 0.004454 0.004066 0.004706 0.0 0.015936 0.0 0.0 0.0 0.0 0.0 0.004131 0.009202 0.00515 0.028532 0.0 0.0 0.0 0.0 0.019080 0.004868 0.0 0.0 0.0 0.003658 0.018128 0.0 0.0 0.000000 0.024764 0.00507 0.025247 0.025247 0.008008 0.004164 0.004419 0.0 0.0 0.0 0.015322 0.015562 0.014148 0.004273 0.004493 0.003598 0.020205 0.004482 0.004298 0.017293 0.005079 0.004831 0.00461 0.004397 0.004550 0.022934 0.0 0.003487 0.005177 0.0 0.00000 0.000000 0.000000 0.076259 0.076259 0.0042 0.003748 0.004789 0.009056 0.004776 0.004392 0.004749 0.0 0.0 0.004775 0.004900 0.009940 0.004476 0.031767 0.029414 0.004192 0.004563 0.0334 0.004889 0.017824 0.0 0.0 0.0 0.0 0.0 0.004131 0.0 0.004386 0.004762 0.004705 0.003859 0.015690 0.004075 0.004382 0.004588 0.004002 0.004355 0.004067 0.004145 0.004632 0.004696 0.004257 0.024988 0.009502 0.004602 0.0 0.009848 0.00404 0.004569 0.065669 0.040774 0.003588 0.0 0.0 0.0 0.004323 0.0 0.004042 0.0 0.091825 0.004504 0.003959 0.005627 0.004798 0.070973 0.004688 0.000000 0.004425 0.074455 0.003954 0.003858 0.013100 0.003448 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.003936 0.0 0.014172 0.004168 0.025619 0.004941 0.004703 0.004076 0.000000 0.000000 0.000000 0.003195 0.0 0.004335 0.004016 0.0 0.004086 0.000000 0.00000 0.054493 0.004455 0.005113 0.004012 0.080226 0.008490 0.004866 0.004684 0.003846 0.017872 0.004539 0.06305 0.003020 0.004273 0.0 0.003662 0.004814 0.003905 0.049601 0.004655 0.004414 0.004622 0.062255 0.004210 0.059533 0.009174 0.004835 0.024764 0.004761 0.033965 0.024764 0.004636 0.005170 0.024989 0.016458 0.024989 0.004378 0.004818 0.0 0.008964 0.004345 0.009887 0.004978 0.0 0.0 0.020177 0.0 0.004049 0.004656 0.004959 0.004202 0.004505 0.0 0.0 0.021067 0.0 0.0 0.004448 0.003499 0.004796 0.029688 0.000000 0.000000 0.0 0.0 0.0 0.00476 0.004581 0.00444 0.004604 0.004832 0.004982 0.003939 0.000000 0.004396 0.0 0.004157 0.003721 0.004658 0.003829 0.0 0.004687 0.00406 0.004321 0.004706 0.00428 0.034195 0.004317 0.005113 0.000000 0.00464 0.080993 0.080993 0.0 0.00399 0.000000 0.0 0.000000 0.00439 0.004927 0.004927 0.004927 0.004927 0.004731 0.019499 0.004335 0.000000 0.0 0.0 0.0 0.008493 0.0 0.018981 0.004388 0.004428 0.095775 0.015154 0.000000 0.026030 0.004494 0.004384 0.004726 0.004662 0.003749 0.0042 0.0 0.003744 0.0 0.0 0.004496 0.003432 0.000000 0.004286 0.003506 0.000000 0.004417 0.003564 0.004152 0.004391 0.0 0.042452 0.00439 0.004575 0.022729 0.004334 0.0000 0.004048 0.004759 0.017893 0.003767 0.003483 0.00973 0.003913 0.024703 0.005026 0.017940 0.003648 0.003858 0.004927 0.004131 0.004758 0.004491 0.095207 0.004459 0.016430 0.095207 0.024093 0.024093 0.000000 0.004176 0.004729 0.020834 0.032381 0.004714 0.004375 0.005364 0.004016 0.004927 0.004206 0.004927 0.0 0.0 0.08433 0.004927 0.08433 0.004927 0.0 0.004927 0.0 0.004715 0.004328 0.0 0.0 0.004927 0.004122 0.000000 0.0 0.004298 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.081055 0.004927 0.0 0.004927 0.0 0.004981 0.000000 0.003961 0.003902 0.0 0.004734 0.004543 0.004362 0.004574 0.0 0.0 0.0 0.004516 0.00332 0.0 0.0 0.005008 0.018089 0.0 0.005580 0.003831 0.003664 0.004373 0.0 0.0 0.026987 0.003825 0.004313 0.004301 0.004961 0.004905 0.0 0.0 0.007315 0.004927 0.003679 0.009240 0.004927 0.019567 0.028901 0.028901 0.004152 0.0 0.003659 0.004435 0.008432 0.002995 0.0 0.004245 0.003941 0.008916 0.017254 0.003967 0.0 0.020583 0.02799 0.0 0.019229 0.0 0.022688 0.0 0.022688 0.003533 0.022688 0.004447 0.004017 0.005259 0.016123 0.004444 0.004543 0.020762 0.003474 0.004341 0.004619 0.004505 0.0 0.0 0.00945 0.019359 0.029936 0.004181 0.000000 0.000000 0.000000 0.0 0.004899 0.004374 0.000000 0.00411 0.000000 0.031662 0.004483 0.067096 0.004653 0.004966 0.018884 0.005132 0.018481 0.004765 0.005132 0.027262 0.004846 0.004358 0.000000 0.005159 0.0 0.004794 0.004667 0.070494 0.005373 0.004591 0.004638 0.029119 0.004425 0.003742 0.0042 0.0 0.004437 0.005132 0.004278 0.003427 0.000000 0.000000 0.004516 0.004740 0.0 0.005048 0.005162 0.0 0.0 0.0 0.004715 0.025731 0.003456 0.004368 0.0 0.004841 0.10039 0.004374 0.034115 0.004254 0.0 0.0 0.026423 0.010429 0.004735 0.004176 0.005555 0.008703 0.004485 0.059746 0.00449 0.028492 0.028492 0.0 0.000000 0.024093 0.0 0.003724 0.004523 0.004404 0.004563 0.004527 0.004825 0.005114 0.004632 0.004387 0.016334 0.019109 0.004809 0.004216 0.004859 0.004192 0.00497 0.003914 0.003293 0.017354 0.003454 0.020564 0.004442 0.003645 0.004685 0.0 0.030765 0.004927 0.019365 0.005056 0.033436 0.004251 0.057868 0.002875 0.003907 0.000000 0.000000 0.000000 0.03634 0.004840 0.02600 0.038637 0.005076 0.020178 0.005123 0.004146 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.049316 0.000000 0.004563 0.0 0.00378 0.0 0.003744 0.004251 0.00000 0.000000 0.008963 0.000000 0.004661 0.00293 0.004209 0.0 0.003651 0.004042 0.004252 0.00387 0.003320 0.004268 0.003941 0.004748 0.004188 0.003799 0.079507 0.030258 0.0 0.029951 0.023383 0.004052 0.004400 0.003697 0.000000 0.004216 0.004626 0.000000 0.000000 0.004911 0.026487 0.004278 0.000000 0.000000 0.003543 0.0 0.024546 0.0 0.0 0.032713 0.004506 0.004576 0.004459 0.010106 0.004821 0.004304 0.004149 0.009117 0.0 0.0 0.0 0.081055 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.0 0.004361 0.004016 0.004389 0.009354 0.009547 0.020955 0.020247 0.024612 0.015472 0.018723 0.0 0.029489 0.0 0.0 0.0 0.0 0.003489 0.020317 0.010765 0.000000 0.004686 0.000000 0.0 0.004395 0.016603 0.004381 0.005165 0.0 0.004304 0.004654 0.0 0.02551 0.004812 0.004445 0.0 0.0 0.0 0.000000 0.003821 0.003452 0.003377 0.0 0.000000 0.000000 0.0 0.004468 0.0 0.004468 0.015008 0.0 0.004825 0.0 0.0 0.003992 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.028583 0.0 0.0 0.0 0.005014 0.000000 0.0 0.003656 0.004555 0.00458 0.004108 0.035679 0.0 0.0 0.086459 0.0 0.003775 0.004657 0.004642 0.004194 0.005386 0.000000 0.009258 0.004927 0.004927 0.0 0.003753 0.0 0.003266 0.016701 0.004211 0.005022 0.003889 0.004284 0.021847 0.004231 0.004927 0.004833 0.004263 0.004966 0.004927 0.0 0.033198 0.004927 0.020931 0.004152 0.004345 0.062227 0.004769 0.004301 0.028901 0.060731 0.004905 0.004301 0.005294 0.005165 0.004786 0.004784 0.004110 0.005466 0.021193 0.003809 0.003357 0.0 0.00396 0.0 0.004748 0.003437 0.004890 0.004243 0.003382 0.0 0.0 0.0 0.003471 0.009042 0.000000 0.004711 0.012647 0.028906 0.0 0.004939 0.000000 0.004884 0.0 0.0 0.000000 0.000000 0.004417 0.000000 0.004449 0.004601 0.004336 0.003834 0.015295 0.00464 0.004208 0.0 0.004396 0.003998 0.004633 0.004872 0.004332 0.000000 0.004641 0.005059 0.004323 0.005380 0.004331 0.004277 0.004927 0.004335 0.004108 0.050441 0.009225 0.004761 0.004335 0.0 0.064014 0.004821 0.065738 0.00938 0.005291 0.00461 0.004335 0.081215 0.0 0.0 0.0 0.0 0.0 0.004229 0.004184 0.004150 0.005026 0.0 0.004058 0.004906 0.004155 0.0 0.004927 0.0 0.004189 0.0 0.004894 0.004366 0.023746 0.004770 0.0043 0.0 0.00409 0.0 0.028989 0.017265 0.121859 0.0 0.0 0.017636 0.008430 0.008287 0.004545 0.003974 0.005143 0.003684 0.029993 0.023998 0.004862 0.054252 0.028989 0.003682 0.004421 0.054252 0.004073 0.000000 0.000000 0.017324 0.014134 0.024544 0.00379 0.028354 0.000000 0.032402 0.024472 0.059417 0.0043 0.104773 0.004128 0.000000 0.000000 0.106951 0.107445 0.102398 0.102398 0.00384 0.113469 0.113469 0.0042 0.000000 0.000000 0.019985 0.004575 0.023039 0.003510 0.00370 0.023925 0.0 0.000000 0.028586 0.000000 0.014334 0.024258 0.042617 0.000000 0.035034 0.000000 0.0 0.000000 0.034532 0.018866 0.005037 0.016050 0.037261 0.035506 0.047656 0.003610 0.004071 0.00237 0.004627 0.003061 0.012971 0.034452 0.0 0.003354 0.003633 0.002479 0.002803 0.003381 0.003015 0.081404 0.012995 0.021815 0.037057 0.033492 0.012388 0.036666 0.003686 0.028226 0.020825 0.029336 0.019986 0.003249 0.019422 0.039305 0.027163 0.0 0.003401 0.131031 0.024391 0.003247 0.003041 0.023374 0.011659 0.030247 0.018808 0.007142 0.003011 0.003634 0.0 0.014904 0.023639 0.000000 0.009772 0.142950 0.057795 0.000000 0.003804 0.002963 0.0 0.003869 0.000000 0.0 0.003478 0.022092 0.003215 0.004044 0.043857 0.000000 0.0 0.019738 0.009334 0.000000 0.023732 0.000000 0.000000 0.010325 0.000000 0.040198 0.062400 0.0 0.066902 0.019358 0.061060 0.000000 0.000000 0.004163 0.033037 0.017100 0.004586 0.019492 0.000000 0.002557 0.038527 0.002946 0.143173 0.028411 0.040245 0.000000 0.016025 0.080519 0.045703 0.055618 0.100937 0.053933 0.0 0.022190 0.006501 0.083241 0.012941 0.003178 0.015722 0.012544 0.068473 0.029203 0.023065 0.012346 0.036627 0.031296 0.001910 0.023276 0.000000 0.017445 0.000000 0.024231 0.000000 0.011268 0.0 0.000000 0.037279 0.050125 0.024799 0.0 0.027435 0.062337 0.003866 0.000000 0.000000 0.000000 0.003626 0.000000 0.032204 0.04486 0.003156 0.047753 0.003547 0.018587 0.003186 0.003048 0.068899 0.024639 0.102941 0.017722 0.013557 0.051960 0.016265 0.14302 0.035497 0.021890 0.024364 0.003098 0.014705 0.004058 0.115477 0.028632 0.003066 0.013281 0.004300 0.059603 0.013509 0.003259 0.014603 0.016839 0.013849 0.022506 0.004029 0.010216 0.003429 0.000000 0.019130 0.024176 0.031931 0.106285 0.006631 0.018431 0.04188 0.021920 0.027901 0.030842 0.075451 0.044799 0.010182 0.000000 0.016202 0.066112 0.00000 0.033210 0.000000 0.019957 0.018655 0.007032 0.000000 0.026664 0.004264 0.003021 0.015666 0.003848 0.012813 0.000000 0.057991 0.011205 0.000000 0.016321 0.003221 0.000000 0.004019 0.106872 0.024717 0.004158 0.033058 0.004420 0.036067 0.019225 0.003173 0.000000 0.011115 0.0137 0.008121 0.019641 0.044494 0.003727 0.000000 0.003170 0.000000 0.0 0.037917 0.05805 0.000000 0.070060 0.000000 0.003672 0.0 0.049009 0.00000 0.049374 0.004336 0.004326 0.002858 0.003749 0.014472 0.003219 0.023637 0.042528 0.094111 0.00284 0.018815 0.002606 0.000000 0.117414 0.067182 0.019262 0.035933 0.020249 0.000000 0.000000 0.002319 0.003597 0.000000 0.019157 0.013385 0.076341 0.049116 0.003886 0.003620 0.028095 0.002984 0.036108 0.002422 0.003565 0.000000 0.003166 0.004006 0.014646 0.00434 0.002512 0.004895 0.020097 0.02121 0.015749 0.020146 0.100290 0.020994 0.003117 0.004467 0.004477 0.001781 0.013951 0.057355 0.025011 0.024717 0.003843 0.024815 0.084820 0.003266 0.003131 0.003467 0.0 0.085850 0.003945 0.024145 0.004676 0.006559 0.000000 0.005211 0.026708 0.007835 0.000000 0.018623 0.004369 0.163509 0.013397 0.000000 0.003448 0.042927 0.003683 0.003151 0.026926 0.011416 0.023367 0.020043 0.008081 0.018368 0.048020 0.083809 0.003248 0.017264 0.023312 0.023589 0.033087 0.000000 0.000000 0.010229 0.039866 0.000000 0.038176 0.035678 0.030777 0.022856 0.017356 0.009820 0.000000 0.003578 0.032993 0.000000 0.016245 0.000000 0.000000 0.080813 0.039712 0.054583 0.011684 0.022267 0.08522 0.010370 0.000000 0.010719 0.011003 0.0 0.000000 0.004041 0.023383 0.003459 0.0 0.002443 0.0 0.030773 0.041763 0.0 0.004002 0.00391 0.079613 0.004074 0.000000 0.018493 0.003475 0.018740 0.023514 0.023379 0.003815 0.03339 0.129846 0.005198 0.004353 0.023404 0.0044 0.000000 0.000000 0.019495 0.005027 0.018202 0.023042 0.003682 0.004547 0.004293 0.004295 0.020524 0.003360 0.026931 0.015936 0.013690 0.041689 0.072123 0.057927 0.000000 0.003402 0.056139 0.000000 0.036356 0.003624 0.003496 0.003629 0.085045 0.017939 0.176013 0.000000 0.011353 0.024531 0.064626 0.0 0.016455 0.028643 0.052917 0.000000 0.021205 0.050235 0.152414 0.036076 0.002987 0.133396 0.023494 0.009391 0.016817 0.003212 0.003212 0.071651 0.049098 0.003824 0.025129 0.044308 0.000000 0.034407 0.016875 0.058483 0.103341 0.000000 0.103037 0.028026 0.014139 0.007710 0.023619 0.122705 0.011145 0.009413 0.110578 0.009446 0.019877 0.000000 0.0 0.031012 0.014912 0.000000 0.024438 0.010195 0.028022 0.0 0.004012 0.011084 0.000000 0.003946 0.020784 0.021419 0.110370 0.000000 0.0 0.003642 0.000000 0.011885 0.000000 0.000000 0.000000 0.000000 0.022931 0.015965 0.0 0.030866 0.028837 0.010191 0.055811 0.000000 0.0 0.134576 0.102992 0.022222 0.110837 0.003651 0.074218 0.002494 0.008861 0.0 0.011555 0.017871 0.000000 0.000000 0.041274 0.014745 0.113125 0.049248 0.01820 0.011147 0.000000 0.000000 0.000000 0.000000 0.022953 0.000000 0.009324 0.000000 0.023515 0.003975 0.046636 0.0 0.000000 0.000000 0.003397 0.000000 0.043089 0.000000 0.030404 0.003123 0.050556 0.015292 0.000000 0.000000 0.043419 0.019223 0.023163 0.000000 0.000000 0.009973 0.008576 0.018616 0.003121 0.047420 0.03024 0.030566 0.037609 0.000000 0.018034 0.000000 0.00357 0.037778 0.0 0.004951 0.000000 0.002978 0.004143 0.018364 0.021792 0.030932 0.023255 0.010591 0.003841 0.00000 0.062805 0.090452 0.080422 0.004406 0.058023 0.004073 0.004558 0.004811 0.004415 0.018956 0.004314 0.004537 0.003689 0.019700 0.004424 0.004706 0.004188 0.004238 0.022550 0.003709 0.022187 0.030279 0.004552 0.004853 0.000000 0.004131 0.004397 0.0 0.000000 0.003115 0.057672 0.004035 0.003936 0.004259 0.004853 0.016093 0.030043 0.004019 0.000000 0.0 0.045503 0.000000 0.034963 0.032378 0.000000 0.004038 0.0 0.008819 0.004196 0.004771 0.004218 0.002798 0.012573 0.004400 0.011407 0.003456 0.000000 0.003211 0.037189 0.021437 0.006492 0.005994 0.026126 0.004226 0.000000 0.000000 0.023130 0.057347 0.014216 0.000000 0.004121 0.004202 0.017870 0.013462 0.041548 0.003638 0.003263 0.004248 0.004626 0.121955 0.0 0.019295 0.06576 0.057809 0.00467 0.005145 0.027091 0.0 0.025972 0.003493 0.003041 0.002906 0.000000 0.022915 0.0 0.002953 0.038301 0.010076 0.000000 0.0 0.010141 0.038797 0.0 0.014929 0.029303 0.014290 0.003644 0.000000 0.003015 0.0 0.0 0.003906 0.003449 0.002868 0.012589 0.003518 0.091774 0.00229 0.123376 0.011725 0.003692 0.010117 0.003374 0.021672 0.003741 0.004085 0.000000 0.0 0.052815 0.000000 0.002591 0.023852 0.003851 0.004545 0.017564 0.004061 0.006915 0.018232 0.0 0.003841 0.054104 0.003388 0.004019 0.004027 0.003805 0.095605 0.003325 0.01635 0.003616 0.003541 0.002765 0.004156 0.018956 0.002619 0.000000 0.0 0.021334 0.000000 0.0 0.020363 0.014455 0.003292 0.003479 0.013710 0.007897 0.000000 0.013504 0.033918 0.006315 0.002900 0.027531 0.013635 0.007468 0.025813 0.028748 0.003251 0.049409 0.017732 0.050708 0.003747 0.009097 0.003073 0.0 0.037722 0.024061 0.004449 0.004142 0.000000 0.0 0.003051 0.051606 0.013527 0.002780 0.002735 0.004163 0.023953 0.038537 0.024717 0.081106 0.003655 0.018305 0.017392 0.003821 0.004843 0.020305 0.00411 0.004486 0.053884 0.057002 0.028935 0.004154 0.026237 0.003545 0.017372 0.003877 0.004276 0.010734 0.0 0.003807 0.003739 0.005211 0.004824 0.003329 0.096265 0.003589 0.021229 0.003999 0.018794 0.003873 0.127159 0.002919 0.004382 0.030748 0.0 0.000000 0.004362 0.003833 0.003312 0.011458 0.004255 0.026138 0.015125 0.018573 0.000000 0.00433 0.000000 0.003794 0.004173 0.000000 0.0034 0.003865 0.003736 0.004251 0.070349 0.004227 0.0 0.012158 0.016371 0.000000 0.014845 0.023617 0.003329 0.005199 0.028440 0.004226 0.010734 0.021520 0.0 0.004177 0.006111 0.000000 0.029937 0.00000 0.003726 0.017942 0.004436 0.019863 0.000000 0.053606 0.003578 0.078460 0.000000 0.014788 0.023065 0.004038 0.018159 0.002869 0.004465 0.025956 0.103482 0.003530 0.01225 0.0 0.056107 0.020593 0.0 0.10723 0.054667 0.004519 0.019959 0.000000 0.049476 0.003418 0.004039 0.0 0.064033 0.000000 0.062412 0.004494 0.015694 0.056938 0.004052 0.101090 0.004785 0.031525 0.004338 0.025852 0.003952 0.019371 0.053113 0.000000 0.002994 0.056768 0.003973 0.000000 0.022439 0.013569 0.000000 0.026282 0.016021 0.045937 0.003562 0.019161 0.074096 0.003826 0.008243 0.004600 0.003967 0.027276 0.058432 0.012787 0.016609 0.004257 0.017938 0.033991 0.000000 0.043612 0.003600 0.0 0.023666 0.004814 0.00273 0.003551 0.003313 0.004776 0.031083 0.016526 0.024258 0.004586 0.003993 0.032445 0.031869 0.105694 0.003572 0.000000 0.015695 0.003715 0.004833 0.002703 0.126526 0.036808 0.003344 0.014379 0.004195 0.000000 0.024573 0.004325 0.003458 0.014276 0.004034 0.041306 0.041201 0.0 0.031523 0.014237 0.0 0.016172 0.003608 0.006718 0.00344 0.000000 0.002942 0.003263 0.004299 0.008856 0.004504 0.011572 0.176520 0.017654 0.035107 0.004965 0.0 0.017558 0.004578 0.055508 0.026007 0.013861 0.004613 0.021468 0.019094 0.020259 0.028178 0.022435 0.016910 0.023969 0.097294 0.000000 0.004269 0.003866 0.00000 0.035074 0.004056 0.002770 0.002869 0.027338 0.012282 0.000000 0.004335 0.002649 0.012796 0.012796 0.004705 0.004184 0.004361 0.017119 0.059713 0.00479 0.020197 0.004050 0.003968 0.0 0.017546 0.054614 0.0 0.003324 0.004457 0.011554 0.018074 0.031219 0.003956 0.021379 0.050203 0.004479 0.003633 0.00000 0.003794 0.000000 0.012509 0.003481 0.101213 0.003921 0.037232 0.045026 0.026567 0.003626 0.058083 0.002638 0.004635 0.004312 0.003965 0.000000 0.026567 0.000000 0.003912 0.000000 0.054725 0.003402 0.021160 0.0 0.004051 0.003876 0.0 0.016968 0.004058 0.00895 0.088021 0.010412 0.004992 0.004079 0.007071 0.024079 0.020238 0.004471 0.003021 0.004362 0.004378 0.078719 0.068715 0.0 0.070118 0.000000 0.01805 0.003943 0.004669 0.003802 0.07107 0.004098 0.003956 0.030560 0.016904 0.00399 0.003059 0.0 0.003146 0.014100 0.0 0.004061 0.076644 0.024278 0.004038 0.004976 0.003505 0.004615 0.046821 0.00326 0.027361 0.02152 0.009602 0.002860 0.0 0.004411 0.000000 0.0 0.097281 0.004429 0.003533 0.004893 0.078908 0.020315 0.010825 0.037330 0.003802 0.020869 0.018015 0.020687 0.039261 0.003051 0.022953 0.004019 0.000000 0.000000 0.003265 0.024835 0.153554 0.004552 0.015110 0.004438 0.01701 0.002481 0.003555 0.000000 0.00316 0.0 0.020039 0.004633 0.000000 0.0 0.0 0.018242 0.003546 0.003512 0.004460 0.003368 0.069318 0.000000 0.003247 0.0 0.019169 0.004758 0.003616 0.003373 0.067803 0.036356 0.004310 0.004324 0.003601 0.003119 0.003701 0.003806 0.003823 0.003544 0.095510 0.022498 0.003672 0.003549 0.004075 0.003478 0.029207 0.005051 0.003564 0.005862 0.023024 0.017069 0.004556 0.004277 0.013265 0.019198 0.000000 0.04258 0.0 0.003360 0.004049 0.003841 0.050647 0.00000 0.034029 0.013202 0.003739 0.043148 0.003311 0.020582 0.005571 0.026343 0.004444 0.045775 0.004684 0.004246 0.00398 0.0000 0.026228 0.0 0.028716 0.003128 0.000000 0.041244 0.000000 0.01115 0.054466 0.00000 0.031436 0.208525 0.004679 0.003473 0.003651 0.042959 0.093182 0.008193 0.062180 0.004520 0.004335 0.022131 0.002847 0.013946 0.003598 0.0 0.003412 0.030473 0.0 0.024717 0.0 0.024321 0.00367 0.009040 0.002959 0.004123 0.059916 0.004208 0.009347 0.004417 0.003295 0.003611 0.004018 0.003262 0.002828 0.004636 0.020638 0.008758 0.098027 0.031237 0.076921 0.014408 0.004883 0.020135 0.000000 0.004614 0.000000 0.024085 0.010472 0.004345 0.000000 0.000000 0.004345 0.003124 0.063373 0.053638 0.0235 0.003684 0.050426 0.028949 0.037199 0.052524 0.003753 0.231943 0.064506 0.00396 0.060474 0.003706 0.233261 0.016401 0.007813 0.056440 0.002694 0.003841 0.004239 0.011670 0.052163 0.029112 0.007275 0.033838 0.157446 0.045161 0.024321 0.003251 0.012345 0.023835 0.027808 0.000000 0.206263 0.0 0.004081 0.066112 0.000000 0.046381 0.000000 0.003459 0.020771 0.000000 0.003055 0.02149 0.071713 0.065172 0.191143 0.003841 0.071799 0.003107 0.003392 0.000000 0.0091 0.010923 0.033081 0.00000 0.061398 0.054752 0.023970 0.0 0.0 0.011263 0.014898 0.049220 0.0 0.000000 0.003783 0.000000 0.061398 0.017435 0.055085 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.004605 0.005745 0.004481 0.017292 0.0 0.014366 0.00898 0.009303 0.017673 0.0 0.0 0.019478 0.013242 0.0 0.0 0.037950 0.0 0.026189 0.004666 0.0 0.004697 0.003704 0.0 0.024550 0.0 0.000000 0.015849 0.000000 0.0 0.0 0.004446 0.000000 0.0 0.0 0.0 0.103376 0.016092 0.021814 0.000000 0.000000 0.0 0.009677 0.003944 0.000000 0.004552 0.004689 0.004640 0.039906 0.004657 0.004123 0.003782 0.004764 0.039906 0.038332 0.011171 0.019166 0.004182 0.004424 0.004525 0.023220 0.0 0.004624 0.000000 0.002981 0.004529 0.0 0.000000 0.012103 0.004294 0.107588 0.064394 0.0 0.0 0.0 0.0 0.000000 0.004402 0.004185 0.015199 0.018761 0.015690 0.004069 0.003986 0.003525 0.084665 0.084665 0.000000 0.037025 0.000000 0.0 0.004158 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.04602 0.025921 0.003640 0.135497 0.000000 0.000000 0.0 0.004625 0.0 0.000000 0.000000 0.042292 0.004491 0.020096 0.0 0.021492 0.0 0.0 0.0 0.027558 0.004802 0.003054 0.0 0.004288 0.0 0.0 0.017521 0.008303 0.000000 0.032564 0.003851 0.004664 0.0 0.0 0.0 0.004402 0.009706 0.0 0.011271 0.0 0.016974 0.003794 0.004661 0.004055 0.004219 0.024579 0.014817 0.000000 0.028931 0.014956 0.004620 0.004564 0.038141 0.0 0.0 0.0 0.022993 0.002939 0.003046 0.003478 0.0 0.0 0.0 0.0 0.0 0.026897 0.0 0.000000 0.004066 0.004909 0.004607 0.004568 0.005020 0.038578 0.000000 0.043788 0.051052 0.003369 0.000000 0.034957 0.008483 0.0 0.054625 0.003762 0.0 0.0 0.011615 0.024966 0.01738 0.000000 0.022714 0.0 0.088233 0.0 0.0 0.0 0.0 0.023401 0.0 0.0 0.000000 0.000000 0.000000 0.002609 0.000000 0.0 0.0 0.112251 0.0 0.005202 0.004155 0.038312 0.0 0.000000 0.0 0.000000 0.000000 0.020749 0.037960 0.150142 0.000000 0.012152 0.000000 0.0 0.0 0.051628 0.017407 0.0 0.011021 0.0 0.003857 0.004839 0.003559 0.004089 0.004641 0.026185 0.003434 0.004180 0.000000 0.00482 0.019843 0.00000 0.004913 0.0 0.0 0.003742 0.0 0.0 0.026463 0.0 0.003433 0.0 0.0 0.0 0.003342 0.0 0.003749 0.015418 0.003112 0.003162 0.003162 0.0 0.0 0.0 0.0 0.057707 0.0 0.0 0.000000 0.0 0.000000 0.015954 0.000000 0.018772 0.0 0.0 0.003662 0.0 0.000000 0.0 0.0 0.013797 0.0 0.0 0.0 0.0 0.0 0.035042 0.0 0.0 0.0 0.000000 0.0 0.0 0.065307 0.065307 0.0 0.0 0.0 0.000000 0.0 0.009523 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.030626 0.000000 0.029983 0.049972 0.0 0.0 0.0 0.0 0.031175 0.002460 0.000000 0.0 0.000000 0.021366 0.0 0.0 0.0 0.0 0.0 0.003555 0.028754 0.005153 0.045958 0.003619 0.0 0.000000 0.004482 0.0 0.003897 0.036903 0.0 0.021460 0.026014 0.004511 0.0 0.0 0.049706 0.003948 0.0 0.0 0.0 0.0 0.004542 0.0 0.004189 0.000000 0.0 0.000000 0.018942 0.003857 0.004683 0.003512 0.0 0.0 0.0 0.0 0.003937 0.004648 0.004009 0.0 0.031596 0.004321 0.018474 0.004268 0.013234 0.004529 0.0 0.000000 0.010783 0.004142 0.024707 0.008961 0.004667 0.004264 0.009054 0.031821 0.051128 0.020260 0.021092 0.020846 0.000000 0.003082 0.031879 0.003642 0.0 0.004127 0.004048 0.0 0.000000 0.000000 0.017637 0.0 0.000000 0.0 0.020751 0.000000 0.000000 0.025348 0.003668 0.000000 0.003944 0.000000 0.004039 0.022544 0.026101 0.0 0.003540 0.0 0.0 0.016599 0.0 0.004417 0.0 0.000000 0.000000 0.000000 0.069800 0.003889 0.075107 0.0 0.000000 0.0 0.0 0.034563 0.000000 0.0 0.0 0.0 0.023600 0.0 0.000000 0.052502 0.012615 0.032477 0.0 0.000000 0.028137 0.0 0.003528 0.0 0.0 0.000000 0.0 0.030350 0.0 0.0 0.0 0.015067 0.0 0.020517 0.000000 0.000000 0.029753 0.0 0.0 0.0 0.0 0.003724 0.039677 0.026445 0.027227 0.018036 0.016201 0.0 0.050214 0.0 0.003544 0.000000 0.012276 0.000000 0.00323 0.002375 0.060045 0.000000 0.068518 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.051319 0.0 0.0 0.0 0.0 0.020103 0.014473 0.0 0.0 0.0 0.003449 0.0 0.019799 0.0 0.007252 0.0 0.0 0.0 0.0 0.000000 0.0 0.003366 0.015037 0.004199 0.0 0.172766 0.002917 0.003828 0.016946 0.012532 0.0 0.000000 0.025366 0.014125 0.013036 0.000000 0.028404 0.006535 0.025124 0.021679 0.000000 0.004116 0.0 0.0 0.00000 0.031651 0.000000 0.009730 0.000000 0.007014 0.0 0.0 0.0 0.028770 0.0 0.0 0.013428 0.050846 0.0 0.000000 0.031199 0.047150 0.000000 0.021975 0.003376 0.000000 0.003746 0.047447 0.011350 0.003948 0.000000 0.044864 0.017053 0.004344 0.039067 0.00466 0.020099 0.0 0.0 0.000000 0.013173 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.0 0.010643 0.020230 0.033267 0.025589 0.000000 0.015470 0.013743 0.003188 0.017889 0.0 0.00000 0.016783 0.0 0.0 0.003003 0.0 0.003653 0.002148 0.075785 0.000000 0.037424 0.000000 0.0 0.000000 0.0 0.00000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.019612 0.036251 0.040111 0.0 0.0 0.159247 0.082956 0.003266 0.000000 0.024220 0.0 0.047641 0.0 0.007256 0.0 0.0 0.0 0.003761 0.0 0.0 0.009419 0.019527 0.0 0.0 0.003227 0.003073 0.0 0.0 0.0 0.052550 0.0 0.0 0.0 0.003652 0.0 0.000000 0.030626 0.0 0.0 0.000000 0.0 0.007345 0.011845 0.031215 0.000000 0.000000 0.000000 0.003645 0.003658 0.0 0.002623 0.016691 0.003391 0.016339 0.0 0.015998 0.0 0.000000 0.061555 0.000000 0.0 0.0 0.110138 0.0 0.019389 0.017158 0.0 0.022304 0.023857 0.0 0.000000 0.0 0.015813 0.011043 0.0 0.0 0.018699 0.000000 0.034411 0.022637 0.0 0.000000 0.014092 0.00000 0.000000 0.016703 0.015887 0.004300 0.084665 0.003437 0.022929 0.0 0.00464 0.000000 0.003636 0.004135 0.003707 0.003763 0.0 0.0 0.044275 0.000000 0.000000 0.056632 0.0 0.0 0.0 0.0 0.0 0.010678 0.04201 0.000000 0.003367 0.0 0.004321 0.088776 0.000000 0.0 0.0 0.004208 0.004615 0.068876 0.000000 0.000000 0.0 0.004878 0.014388 0.014388 0.009473 0.0 0.000000 0.065307 0.126516 0.000000 0.000000 0.0 0.0 0.0 0.011241 0.048965 0.004463 0.036388 0.000000 0.051052 0.003952 0.000000 0.000000 0.020680 0.031339 0.026249 0.012854 0.015694 0.049587 0.018984 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.008642 0.000000 0.0 0.007117 0.000000 0.0 0.000000 0.003859 0.004565 0.0 0.0 0.0 0.000000 0.023401 0.0 0.0 0.0 0.0 0.003753 0.0 0.024776 0.0 0.033615 0.0 0.000000 0.013286 0.003998 0.0 0.031367 0.000000 0.013101 0.000000 0.000000 0.01515 0.062027 0.016399 0.037295 0.003801 0.000000 0.000000 0.00000 0.011351 0.0 0.002596 0.0 0.0 0.000000 0.004313 0.014454 0.0 0.027372 0.016924 0.022509 0.004367 0.004571 0.000000 0.0 0.053060 0.002927 0.024211 0.0 0.0 0.019571 0.0 0.0 0.024962 0.045929 0.0 0.000000 0.000000 0.0 0.013234 0.013234 0.004034 0.000000 0.0 0.004036 0.000000 0.0 0.0 0.000000 0.003941 0.008353 0.004766 0.004598 0.0 0.004735 0.004114 0.004239 0.002985 0.004026 0.0 0.004659 0.003748 0.004071 0.004231 0.00384 0.004701 0.004452 0.003947 0.05908 0.00496 0.005195 0.004297 0.004253 0.000000 0.004416 0.020318 0.021261 0.024420 0.0 0.000000 0.019228 0.003781 0.000000 0.043813 0.003815 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.029039 0.0 0.000000 0.000000 0.022507 0.0 0.017983 0.017446 0.0 0.0 0.000000 0.0 0.000000 0.0 0.003719 0.039129 0.0 0.022906 0.0 0.0 0.000000 0.0 0.052488 0.0 0.0 0.0 0.0 0.024903 0.003692 0.015514 0.000000 0.0 0.0 0.000000 0.0 0.0 0.000000 0.034548 0.032110 0.0 0.024721 0.015124 0.0 0.025079 0.035094 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.091986 0.0 0.00000 0.00000 0.0 0.0 0.040859 0.013731 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.024260 0.000000 0.000000 0.068206 0.0 0.003689 0.0 0.012643 0.019115 0.000000 0.000000 0.019432 0.004536 0.000000 0.017661 0.033870 0.046989 0.003743 0.003673 0.014694 0.051516 0.015233 0.015763 0.015998 0.003076 0.045688 0.000000 0.0 0.015517 0.011110 0.0 0.0 0.0 0.0 0.0 0.009324 0.0 0.000000 0.0 0.004169 0.004251 0.004707 0.08077 0.0 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.0 0.0 0.002892 0.011196 0.000000 0.010229 0.000000 0.003994 0.0 0.0 0.019385 0.0 0.0 0.0 0.000000 0.003881 0.0 0.0 0.020965 0.000000 0.004905 0.0 0.0 0.0 0.0 0.041533 0.000000 0.004833 0.000000 0.0 0.0 0.016760 0.0 0.011324 0.00473 0.015523 0.0 0.01613 0.014625 0.012321 0.004668 0.018038 0.000000 0.00000 0.018816 0.000000 0.021648 0.0 0.003121 0.009922 0.000000 0.0 0.00000 0.012496 0.003637 0.0 0.0 0.004717 0.004229 0.004289 0.004585 0.0 0.016869 0.000000 0.000000 0.000000 0.051689 0.000000 0.003631 0.0 0.000000 0.033879 0.0 0.000000 0.011084 0.012033 0.0 0.040474 0.046997 0.0 0.0 0.0 0.025057 0.000000 0.0 0.0 0.000000 0.000000 0.011861 0.049191 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.004437 0.066575 0.000000 0.0 0.000000 0.003855 0.0 0.0 0.003822 0.117606 0.196712 0.008854 0.005757 0.051990 0.048363 0.003919 0.000000 0.019172 0.0 0.0 0.00000 0.000000 0.085282 0.0 0.065187 0.005012 0.053131 0.000000 0.004454 0.004335 0.003838 0.003583 0.003852 0.0 0.004161 0.011452 0.019329 0.0 0.004586 0.010758 0.000000 0.024850 0.003739 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.004144 0.004165 0.004487 0.000000 0.067679 0.0 0.0 0.0 0.040129 0.000000 0.003268 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.004371 0.000000 0.0 0.004027 0.016813 0.019229 0.003922 0.0 0.0 0.048242 0.003364 0.004535 0.022966 0.011132 0.003636 0.003724 0.073697 0.023786 0.004573 0.030644 0.000000 0.074474 0.004479 0.000000 0.004029 0.012284 0.000000 0.104011 0.0 0.064831 0.003922 0.025463 0.004399 0.016479 0.010648 0.014373 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.00000 0.0 0.0 0.029767 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.021106 0.000000 0.0 0.003827 0.025994 0.050862 0.021255 0.0 0.0 0.032518 0.000000 0.01557 0.003818 0.023399 0.031244 0.004452 0.083112 0.011215 0.051052 0.026182 0.021792 0.003144 0.022466 0.003158 0.000000 0.0 0.0 0.000000 0.113335 0.031515 0.03246 0.045836 0.097892 0.0 0.000000 0.0 0.0 0.061836 0.000000 0.0 0.11054 0.0 0.004029 0.023618 0.022370 0.0 0.0 0.030343 0.0 0.0 0.000000 0.022752 0.003294 0.020369 0.0 0.018609 0.0 0.0 0.051061 0.003773 0.000000 0.030131 0.000000 0.002637 0.022498 0.003379 0.0 0.0 0.002882 0.000000 0.018422 0.000000 0.010321 0.013463 0.0 0.033757 0.035149 0.042392 0.01624 0.003674 0.036824 0.0 0.0 0.0 0.000000 0.0 0.020874 0.0 0.043585 0.013803 0.009922 0.009922 0.000000 0.000000 0.029618 0.003900 0.000000 0.000000 0.004424 0.004761 0.004712 0.04731 0.000000 0.014256 0.017581 0.017058 0.003969 0.0 0.024221 0.0 0.012891 0.000000 0.036590 0.0 0.004732 0.062382 0.005054 0.038579 0.012118 0.0 0.004641 0.003671 0.004628 0.0 0.0 0.0 0.004368 0.004461 0.004180 0.004335 0.004410 0.004795 0.026921 0.0 0.000000 0.0 0.0 0.010995 0.0 0.0 0.0 0.019287 0.035371 0.016451 0.0 0.0 0.000000 0.0 0.00000 0.000000 0.004700 0.003571 0.027148 0.004379 0.019701 0.004823 0.0 0.0 0.0 0.016265 0.000000 0.0 0.0 0.0 0.0 0.004559 0.004647 0.004364 0.003424 0.004631 0.030483 0.004067 0.0 0.004906 0.004410 0.018783 0.003136 0.0 0.0 0.000000 0.0 0.0 0.021743 0.0 0.026881 0.0 0.00000 0.014926 0.000000 0.0 0.047424 0.000000 0.028722 0.046095 0.047755 0.010433 0.0 0.0 0.0 0.065307 0.0 0.0 0.038232 0.038280 0.019837 0.024777 0.050006 0.004498 0.020230 0.0 0.003981 0.000000 0.000000 0.003409 0.034014 0.0 0.131690 0.000000 0.042075 0.014419 0.061225 0.0 0.003221 0.0 0.006833 0.000000 0.003022 0.0 0.0 0.0 0.0 0.090938 0.003654 0.028387 0.018518 0.0 0.003986 0.0 0.004465 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.047106 0.000000 0.068518 0.0 0.071051 0.0 0.023196 0.0215 0.0 0.0 0.003441 0.021556 0.008433 0.004278 0.004494 0.015129 0.004089 0.003599 0.00000 0.0 0.0 0.0 0.0 0.000000 0.019693 0.000000 0.000000 0.000000 0.0 0.020546 0.0 0.0 0.000000 0.00000 0.021656 0.0 0.0 0.0 0.0 0.003653 0.004310 0.004402 0.037950 0.000000 0.0 0.025832 0.00369 0.004259 0.012767 0.004476 0.004082 0.004534 0.0 0.0 0.004098 0.010543 0.004475 0.003903 0.000000 0.048239 0.034824 0.064394 0.0 0.010707 0.0 0.016122 0.010942 0.000000 0.000000 0.004209 0.070892 0.004687 0.000000 0.028966 0.0 0.018635 0.0 0.0 0.028776 0.015446 0.049838 0.0 0.0 0.0 0.028632 0.003823 0.0 0.000000 0.000000 0.06581 0.0 0.0 0.0 0.0 0.0 0.094335 0.0 0.000000 0.003549 0.016070 0.004452 0.0 0.0 0.0 0.003605 0.003458 0.020283 0.000000 0.011734 0.004872 0.004565 0.0 0.015736 0.0 0.0 0.00000 0.020067 0.0 0.004839 0.0 0.004935 0.004943 0.004342 0.036915 0.0 0.0 0.0 0.017369 0.153064 0.031829 0.018980 0.00000 0.023556 0.000000 0.026853 0.000000 0.003354 0.022140 0.0 0.000000 0.020820 0.048035 0.000000 0.003882 0.051481 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.017642 0.0 0.0 0.0 0.0 0.0 0.033812 0.003072 0.003915 0.013770 0.065307 0.065307 0.0 0.000000 0.0 0.017400 0.0 0.00000 0.000000 0.047285 0.000000 0.000000 0.0 0.017770 0.0 0.0 0.0 0.000000 0.00000 0.0 0.0 0.000000 0.004077 0.000000 0.003576 0.090283 0.000000 0.004342 0.004679 0.003702 0.0 0.00452 0.017285 0.003741 0.019172 0.000000 0.0 0.004401 0.004202 0.000000 0.023805 0.012767 0.000000 0.020036 0.0 0.004598 0.0 0.0 0.0 0.0 0.008854 0.092068 0.017531 0.0 0.015184 0.0 0.004093 0.000000 0.017973 0.004494 0.003846 0.018091 0.0 0.000000 0.0 0.0 0.011643 0.0 0.0 0.031046 0.004553 0.000000 0.008763 0.017241 0.044278 0.000000 0.013773 0.0 0.0 0.032066 0.0 0.0 0.0 0.010920 0.0 0.004953 0.005221 0.003237 0.0 0.0 0.017662 0.00000 0.0 0.0 0.003783 0.0 0.000000 0.0 0.049348 0.004242 0.003782 0.0 0.097777 0.0 0.0 0.015503 0.00000 0.023411 0.086181 0.0 0.0 0.0 0.0 0.028369 0.0 0.0 0.003257 0.0 0.020655 0.0 0.0 0.0 0.011118 0.0 0.014161 0.0 0.0 0.023571 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.022766 0.0 0.0 0.000000 0.0 0.0 0.002704 0.012671 0.0 0.032736 0.000000 0.0 0.059130 0.019987 0.025321 0.003405 0.0 0.017939 0.004146 0.014135 0.0 0.018447 0.0 0.00000 0.0 0.019907 0.000000 0.022972 0.003709 0.0 0.016505 0.0 0.0 0.0 0.0 0.000000 0.061109 0.0 0.000000 0.000000 0.0 0.012321 0.003427 0.00362 0.0 0.0 0.030388 0.0 0.023274 0.0 0.0 0.0 0.012570 0.0 0.025392 0.000000 0.151455 0.003351 0.009458 0.0 0.008895 0.0 0.004625 0.004035 0.004462 0.0 0.029034 0.0 0.0 0.031177 0.007205 0.0 0.0 0.0 0.003206 0.053651 0.006463 0.004158 0.010561 0.016898 0.022179 0.0 0.026406 0.004410 0.0 0.0 0.0 0.000000 0.0 0.0 0.065307 0.0 0.0 0.000000 0.043147 0.0 0.000000 0.055256 0.003202 0.0 0.040796 0.000000 0.035487 0.02182 0.036195 0.000000 0.061618 0.042878 0.0 0.047196 0.034978 0.003765 0.004038 0.003472 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.024137 0.0 0.0 0.0 0.000000 0.003249 0.055120 0.0 0.022694 0.003946 0.0 0.000000 0.0 0.0 0.025849 0.004396 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.002786 0.0 0.004021 0.003660 0.000000 0.014386 0.003603 0.004189 0.0 0.004561 0.003603 0.004662 0.004305 0.003341 0.004383 0.009549 0.004504 0.018336 0.004709 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.020156 0.000000 0.057620 0.018453 0.004177 0.082993 0.009323 0.028828 0.003248 0.0 0.0 0.023678 0.0 0.021902 0.005632 0.000000 0.003910 0.00487 0.018188 0.029914 0.004497 0.000000 0.000000 0.009390 0.0 0.004476 0.003371 0.004337 0.000000 0.0 0.000000 0.000000 0.0 0.003384 0.004164 0.018444 0.0 0.035764 0.000000 0.003254 0.004082 0.000000 0.000000 0.093056 0.000000 0.008192 0.0 0.004151 0.039749 0.035363 0.029446 0.0 0.000000 0.0 0.0 0.00000 0.0 0.0 0.0 0.0 0.0 0.0 0.003707 0.0 0.0 0.015159 0.0 0.0 0.0 0.00191 0.0 0.019345 0.0 0.0 0.020404 0.010400 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.002937 0.004752 0.000000 0.012393 0.004416 0.003923 0.009328 0.003645 0.003677 0.003884 0.004054 0.000000 0.000000 0.064470 0.003356 0.003556 0.018682 0.0 0.004276 0.0 0.000000 0.0 0.017711 0.01848 0.013631 0.0 0.004007 0.004623 0.004546 0.004841 0.000000 0.0 0.003908 0.004823 0.012481 0.028359 0.0 0.000000 0.0 0.026808 0.000000 0.016881 0.012496 0.000000 0.021574 0.000000 0.0 0.019380 0.0 0.012769 0.019995 0.013878 0.0 0.0 0.000000 0.0 0.023773 0.000000 0.003049 0.003963 0.000000 0.0 0.044182 0.031534 0.000000 0.0 0.000000 0.010487 0.0 0.0 0.051833 0.000000 0.0 0.0 0.0 0.000000 0.019629 0.000000 0.046120 0.0 0.0 0.003516 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.021742 0.041699 0.0 0.0 0.003811 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.015125 0.0 0.078276 0.000000 0.054754 0.0 0.0 0.0 0.0 0.017461 0.0 0.003766 0.0 0.003562 0.0 0.0 0.003644 0.037245 0.0 0.004245 0.030684 0.004279 0.0 0.000000 0.00000 0.0 0.000000 0.0 0.0 0.006630 0.0 0.000000 0.0 0.0 0.103080 0.023821 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.009837 0.0 0.028615 0.000000 0.004258 0.077400 0.077400 0.004755 0.004077 0.032085 0.003147 0.004401 0.011200 0.027677 0.0 0.0 0.000000 0.0 0.022898 0.0 0.165169 0.023178 0.005027 0.029516 0.008586 0.0 0.008901 0.004712 0.004255
3 0.000000 0.000000 0.021785 1.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.039097 0.061302 0.009204 0.000000 0.014137 0.018384 0.014335 0.008712 0.051323 0.048215 0.000000 0.020518 0.131056 0.065563 0.012527 0.000000 0.000000 0.112839 0.059791 0.050654 0.000000 0.045586 0.013542 0.063804 0.032229 0.053547 0.0 0.009171 0.009231 0.012149 0.000000 0.052044 0.028146 0.000000 0.000000 0.036950 0.024828 0.00000 0.064595 0.000000 0.000000 0.015738 0.028180 0.058164 0.036314 0.028430 0.005140 0.012236 0.000000 0.033721 0.019768 0.000000 0.000000 0.028777 0.070098 0.000000 0.000000 0.010313 0.000000 0.014613 0.013437 0.039252 0.000000 0.068307 0.015731 0.046111 0.047376 0.025417 0.020755 0.012902 0.000000 0.039162 0.0 0.000000 0.000000 0.060464 0.000000 0.042654 0.000000 0.027894 0.000000 0.000000 0.000000 0.000000 0.097573 0.000000 0.000000 0.027702 0.010049 0.000000 0.016464 0.000000 0.008913 0.000000 0.011241 0.018509 0.026803 0.000000 0.013003 0.044228 0.000000 0.022247 0.000000 0.000000 0.000000 0.000000 0.019094 0.040115 0.029077 0.015107 0.006745 0.051557 0.040156 0.000000 0.044913 0.052571 0.000000 0.000000 0.021184 0.000000 0.108808 0.007579 0.009120 0.000000 0.000000 0.057564 0.033639 0.027369 0.000000 0.029645 0.029498 0.121604 0.011637 0.009595 0.000000 0.020738 0.054245 0.000000 0.040608 0.010828 0.073928 0.037022 0.055817 0.012137 0.018771 0.000000 0.040338 0.012348 0.000000 0.034353 0.057012 0.000000 0.020023 0.028335 0.123741 0.009102 0.000000 0.053202 0.026744 0.025937 0.012595 0.074567 0.000000 0.000000 0.000000 0.000000 0.013261 0.008558 0.000000 0.013477 0.0 0.000000 0.022763 0.086194 0.034472 0.025231 0.050571 0.000000 0.000000 0.000000 0.0 0.017441 0.000000 0.007379 0.007741 0.013590 0.000000 0.006132 0.037496 0.000000 0.035681 0.000000 0.000000 0.007331 0.079421 0.085341 0.025716 0.067919 0.047839 0.042944 0.0 0.000000 0.0 0.0 0.022235 0.013705 0.000000 0.028926 0.033142 0.027698 0.000000 0.00000 0.000000 0.060005 0.014039 0.015560 0.015277 0.0 0.008402 0.013464 0.007868 0.000000 0.011011 0.000000 0.0 0.000000 0.013708 0.016949 0.007538 0.037506 0.042968 0.0 0.0 0.0 0.000000 0.009376 0.039787 0.012766 0.025626 0.000000 0.025831 0.000000 0.033514 0.059911 0.063954 0.000000 0.000000 0.000000 0.017362 0.018866 0.000000 0.007607 0.000000 0.030832 0.016385 0.029602 0.014223 0.030911 0.031193 0.026046 0.051634 0.007341 0.067127 0.046814 0.000000 0.009876 0.016413 0.021485 0.069980 0.014413 0.000000 0.074581 0.058094 0.000000 0.029319 0.047528 0.000000 0.000000 0.041228 0.036742 0.005508 0.007792 0.015618 0.023886 0.007139 0.120335 0.012495 0.019195 0.000000 0.000000 0.022198 0.019052 0.030473 0.014626 0.048118 0.114373 0.036741 0.022587 0.098602 0.017944 0.040599 0.000000 0.014134 0.011121 0.000000 0.000000 0.010735 0.000000 0.012595 0.046291 0.000000 0.015576 0.000000 0.024535 0.000000 0.016158 0.011092 0.031032 0.000000 0.018755 0.000000 0.015296 0.000000 0.000000 0.031615 0.0 0.000000 0.017225 0.000000 0.012007 0.000000 0.000000 0.000000 0.000000 0.062016 0.011680 0.0 0.015264 0.012102 0.000000 0.000000 0.011384 0.007969 0.009764 0.048171 0.053255 0.000000 0.000000 0.022985 0.024298 0.000000 0.017519 0.013079 0.0 0.012926 0.000000 0.000000 0.103791 0.063564 0.011207 0.007648 0.000000 0.026027 0.014658 0.097931 0.000000 0.015291 0.0 0.020432 0.022701 0.000000 0.000000 0.000000 0.064555 0.000000 0.010792 0.035093 0.000000 0.006101 0.033883 0.000000 0.018116 0.02158 0.013997 0.000000 0.000000 0.000000 0.072239 0.044805 0.075573 0.011059 0.004728 0.049400 0.014631 0.000000 0.018849 0.034101 0.000000 0.041334 0.015483 0.018482 0.052798 0.006415 0.000000 0.017842 0.000000 0.000000 0.011320 0.022023 0.032616 0.017764 0.060070 0.047500 0.016382 0.033277 0.000000 0.000000 0.014377 0.000000 0.035553 0.000000 0.187534 0.026406 0.074963 0.000000 0.014361 0.016060 0.009101 0.030615 0.000000 0.005580 0.058614 0.006383 0.011458 0.006545 0.000000 0.000000 0.011624 0.016794 0.016916 0.014547 0.000000 0.053430 0.007178 0.013869 0.000000 0.007220 0.000000 0.0 0.007644 0.000000 0.000000 0.000000 0.006261 0.0 0.045564 0.023522 0.025481 0.000000 0.000000 0.012163 0.006077 0.000000 0.153199 0.038759 0.030054 0.000000 0.000000 0.015675 0.026673 0.000000 0.070950 0.000000 0.000000 0.059044 0.000000 0.0 0.0 0.024322 0.006461 0.000000 0.013761 0.000000 0.052075 0.015196 0.046061 0.021671 0.049102 0.023603 0.023888 0.018369 0.000000 0.000000 0.039157 0.008574 0.019765 0.0 0.000000 0.000000 0.000000 0.010502 0.000000 0.000000 0.000000 0.013281 0.027719 0.036618 0.008140 0.053176 0.000000 0.074078 0.0 0.0 0.0 0.007306 0.021189 0.000000 0.087566 0.000000 0.014619 0.023112 0.038286 0.108048 0.011559 0.028203 0.024651 0.025638 0.025789 0.020596 0.113019 0.000000 0.020767 0.000000 0.017899 0.011938 0.009779 0.000000 0.0 0.071924 0.000000 0.012987 0.031835 0.000000 0.048106 0.067190 0.021040 0.009337 0.000000 0.023837 0.011901 0.000000 0.008419 0.0 0.0 0.017301 0.029621 0.000000 0.007321 0.008902 0.000000 0.005892 0.016583 0.000000 0.000000 0.009061 0.020670 0.027471 0.000000 0.023643 0.00000 0.009499 0.000000 0.034699 0.018254 0.000000 0.013806 0.032608 0.025361 0.035891 0.0 0.000000 0.0 0.000000 0.018389 0.000000 0.007653 0.000000 0.016499 0.000000 0.000000 0.008221 0.076415 0.019207 0.016180 0.043497 0.000000 0.0 0.0 0.0 0.0 0.037894 0.000000 0.041822 0.000000 0.000000 0.039212 0.005663 0.035377 0.000000 0.000000 0.000000 0.000000 0.007295 0.000000 0.014943 0.040456 0.012782 0.012243 0.000000 0.000000 0.033508 0.013673 0.058802 0.059595 0.0 0.064549 0.017757 0.000000 0.036260 0.010888 0.009439 0.055149 0.000000 0.0 0.011187 0.0 0.000000 0.026127 0.071730 0.031695 0.0 0.0 0.000000 0.000000 0.000000 0.015728 0.014052 0.022923 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.005447 0.012414 0.056982 0.000000 0.007074 0.099937 0.0 0.051494 0.000000 0.056355 0.034767 0.030729 0.021113 0.026348 0.000000 0.013849 0.000000 0.010395 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.014710 0.000000 0.000000 0.000000 0.000000 0.014334 0.000000 0.000000 0.015615 0.000000 0.0 0.036219 0.040656 0.000000 0.026432 0.018317 0.000000 0.031078 0.011906 0.000000 0.016558 0.027079 0.0 0.000000 0.000000 0.035852 0.047676 0.006452 0.000000 0.029401 0.044160 0.024159 0.030234 0.010208 0.065279 0.013324 0.008924 0.0 0.000000 0.030030 0.000000 0.000000 0.018449 0.044352 0.000000 0.000000 0.025404 0.028474 0.012182 0.011435 0.025882 0.0 0.010537 0.015169 0.013569 0.065570 0.000000 0.029977 0.034284 0.031971 0.000000 0.037558 0.000000 0.000000 0.029244 0.0 0.0 0.0 0.008788 0.020134 0.000000 0.000000 0.000000 0.000000 0.010583 0.0 0.000000 0.000000 0.000000 0.000000 0.011111 0.000000 0.000000 0.030450 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.025140 0.006423 0.006304 0.026546 0.018145 0.009129 0.031632 0.000000 0.000000 0.000000 0.013554 0.0 0.012571 0.019904 0.019154 0.000000 0.063871 0.0 0.014316 0.031477 0.015949 0.025553 0.017702 0.065831 0.00000 0.018750 0.048347 0.018871 0.00000 0.013538 0.016107 0.040051 0.000000 0.032914 0.00000 0.0 0.000000 0.133086 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.072475 0.036973 0.000000 0.013114 0.000000 0.017635 0.000000 0.045065 0.000000 0.017895 0.000000 0.000000 0.014219 0.029615 0.000000 0.010890 0.023264 0.0 0.014587 0.000000 0.0 0.0 0.000000 0.012603 0.000000 0.000000 0.000000 0.0 0.019257 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.021802 0.015126 0.000000 0.031239 0.000000 0.000000 0.014029 0.014839 0.025723 0.000000 0.043524 0.000000 0.026979 0.025161 0.011089 0.032650 0.037586 0.0 0.0 0.000000 0.000000 0.054215 0.000000 0.028917 0.010116 0.040084 0.000000 0.000000 0.017733 0.0 0.016677 0.028195 0.0 0.0 0.015659 0.010847 0.019333 0.000000 0.000000 0.000000 0.000000 0.031537 0.000000 0.028484 0.007630 0.000000 0.000000 0.011383 0.008990 0.000000 0.016417 0.013833 0.018050 0.000000 0.043667 0.000000 0.023501 0.009278 0.009304 0.024615 0.049001 0.000000 0.028192 0.018829 0.041821 0.017165 0.007275 0.011088 0.069565 0.000000 0.000000 0.000000 0.000000 0.012899 0.000000 0.020802 0.000000 0.019619 0.014339 0.018374 0.000000 0.007098 0.023054 0.016387 0.028180 0.015538 0.000000 0.000000 0.013768 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.015844 0.026614 0.000000 0.006200 0.040651 0.057231 0.000000 0.0 0.000000 0.000000 0.053621 0.009569 0.000000 0.023206 0.000000 0.011934 0.021606 0.007214 0.000000 0.000000 0.000000 0.012236 0.027454 0.027344 0.000000 0.006956 0.01297 0.006679 0.000000 0.000000 0.0 0.011509 0.062416 0.000000 0.011091 0.013793 0.085566 0.027333 0.015417 0.015694 0.000000 0.000000 0.008893 0.064160 0.024180 0.051998 0.000000 0.0 0.0 0.000000 0.026860 0.030062 0.031227 0.000000 0.000000 0.000000 0.010142 0.038094 0.000000 0.000000 0.000000 0.024623 0.000000 0.104441 0.030033 0.008222 0.008401 0.000000 0.008579 0.017107 0.060433 0.027157 0.087930 0.014402 0.022142 0.023443 0.006385 0.074074 0.000000 0.030557 0.040976 0.000000 0.000000 0.0 0.054929 0.029504 0.000000 0.000000 0.000000 0.000000 0.014139 0.015750 0.060229 0.13283 0.000000 0.000000 0.000000 0.0 0.036170 0.006091 0.000000 0.0 0.000000 0.057053 0.043793 0.010384 0.014996 0.049111 0.018211 0.048559 0.0 0.014008 0.012426 0.022983 0.015488 0.013629 0.007182 0.023481 0.000000 0.018824 0.0 0.012282 0.014636 0.023865 0.018637 0.012474 0.005723 0.000000 0.008394 0.049628 0.047309 0.000000 0.000000 0.000000 0.039004 0.0 0.045056 0.000000 0.049441 0.011055 0.000000 0.000000 0.000000 0.0 0.000000 0.007346 0.0 0.0 0.0 0.0 0.0 0.000000 0.02586 0.000000 0.040163 0.023501 0.011144 0.013291 0.010121 0.031661 0.023919 0.000000 0.000000 0.008228 0.000000 0.000000 0.024497 0.000000 0.010407 0.000000 0.000000 0.014204 0.007296 0.000000 0.024681 0.085101 0.000000 0.000000 0.000000 0.012750 0.0 0.028071 0.000000 0.000000 0.006519 0.000000 0.000000 0.000000 0.000000 0.000000 0.022691 0.000000 0.000000 0.013771 0.012870 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.016329 0.043376 0.00000 0.000000 0.0 0.000000 0.000000 0.000000 0.037622 0.000000 0.063386 0.000000 0.000000 0.000000 0.005884 0.060232 0.037504 0.024475 0.007748 0.000000 0.000000 0.000000 0.025456 0.013260 0.018246 0.024508 0.000000 0.028772 0.000000 0.0 0.000000 0.000000 0.013875 0.0 0.012476 0.105111 0.039083 0.000000 0.000000 0.0 0.000000 0.023705 0.000000 0.000000 0.018865 0.023332 0.000000 0.014088 0.000000 0.000000 0.000000 0.015914 0.012584 0.059570 0.008965 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.008276 0.000000 0.000000 0.000000 0.020004 0.029461 0.059681 0.013826 0.018467 0.000000 0.021340 0.000000 0.000000 0.000000 0.010614 0.013184 0.016451 0.000000 0.000000 0.016090 0.000000 0.0 0.009784 0.000000 0.043734 0.027246 0.021038 0.011251 0.017031 0.029837 0.000000 0.031739 0.000000 0.037653 0.0 0.000000 0.000000 0.015706 0.0 0.096207 0.014063 0.000000 0.000000 0.079646 0.027808 0.029907 0.000000 0.028935 0.013318 0.0 0.0 0.000000 0.000000 0.014962 0.022503 0.011383 0.0 0.163828 0.039138 0.020286 0.000000 0.000000 0.0 0.0 0.033553 0.000000 0.038702 0.000000 0.025182 0.000000 0.00000 0.000000 0.0 0.023667 0.025626 0.000000 0.000000 0.018855 0.021755 0.044127 0.038704 0.042960 0.011360 0.009655 0.020340 0.000000 0.046500 0.006171 0.012511 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.008991 0.000000 0.000000 0.029973 0.000000 0.000000 0.030018 0.016753 0.033746 0.007340 0.020209 0.000000 0.000000 0.0 0.000000 0.008082 0.010443 0.00000 0.011767 0.000000 0.000000 0.000000 0.00000 0.053028 0.000000 0.000000 0.000000 0.000000 0.007893 0.015672 0.014654 0.010958 0.057685 0.000000 0.007201 0.010861 0.000000 0.0 0.000000 0.000000 0.011137 0.000000 0.018835 0.014585 0.024102 0.023333 0.016173 0.000000 0.002682 0.019600 0.011359 0.000000 0.007928 0.014604 0.057124 0.040044 0.0 0.0 0.000000 0.019748 0.027035 0.036811 0.010005 0.010250 0.000000 0.000000 0.033962 0.026207 0.010413 0.013650 0.000000 0.0 0.000000 0.033930 0.017622 0.000000 0.036725 0.000000 0.0 0.0 0.0 0.0 0.065330 0.028888 0.000000 0.038496 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.101384 0.008219 0.034808 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.020255 0.000000 0.000000 0.013416 0.000000 0.000000 0.000000 0.000000 0.000000 0.024619 0.000000 0.000000 0.006996 0.000000 0.008499 0.000000 0.044774 0.012943 0.000000 0.019045 0.000000 0.008118 0.016110 0.000000 0.029440 0.030853 0.027378 0.000000 0.031014 0.113125 0.008404 0.007514 0.016166 0.063335 0.000000 0.038464 0.027244 0.036717 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.013038 0.000000 0.017920 0.032804 0.081710 0.024014 0.000000 0.000000 0.000000 0.000000 0.032068 0.000000 0.000000 0.006924 0.010907 0.00000 0.0 0.013960 0.009943 0.014320 0.000000 0.021227 0.042504 0.000000 0.019866 0.000000 0.000000 0.047118 0.00000 0.0 0.000000 0.000000 0.011822 0.0 0.000000 0.034963 0.080996 0.010879 0.0 0.0 0.000000 0.014864 0.020393 0.024476 0.020308 0.000000 0.0 0.096770 0.028758 0.022230 0.000000 0.025118 0.000000 0.000000 0.009567 0.031463 0.012892 0.015967 0.015745 0.000000 0.011347 0.011148 0.000000 0.008737 0.053558 0.000000 0.011454 0.011996 0.028657 0.027909 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.005281 0.051459 0.000000 0.000000 0.014107 0.000000 0.035564 0.000000 0.000000 0.000000 0.061197 0.040186 0.000000 0.018295 0.059361 0.000000 0.000000 0.000000 0.042811 0.023544 0.000000 0.000000 0.068142 0.0 0.0 0.00000 0.014275 0.000000 0.020322 0.000000 0.000000 0.000000 0.000000 0.024445 0.012228 0.013466 0.000000 0.000000 0.043072 0.000000 0.023784 0.045601 0.000000 0.010196 0.023458 0.000000 0.049463 0.014138 0.019841 0.012958 0.000000 0.0 0.0 0.0 0.0 0.0 0.080587 0.000000 0.000000 0.020869 0.00000 0.014435 0.000000 0.009352 0.000000 0.031850 0.000000 0.000000 0.016981 0.000000 0.011714 0.011421 0.042832 0.000000 0.000000 0.014397 0.00000 0.000000 0.012630 0.000000 0.057707 0.025293 0.000000 0.000000 0.048024 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.009454 0.000000 0.027306 0.043681 0.037440 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.023818 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.007221 0.000000 0.000000 0.000000 0.020877 0.000000 0.011857 0.000000 0.000000 0.013996 0.000000 0.005355 0.006295 0.005455 0.018933 0.025400 0.000000 0.000000 0.008792 0.000000 0.000000 0.000000 0.007965 0.016125 0.000000 0.009417 0.000000 0.017047 0.042376 0.000000 0.033683 0.000000 0.000000 0.000000 0.000000 0.009931 0.007121 0.015035 0.000000 0.007445 0.025252 0.010229 0.032670 0.000000 0.000000 0.009050 0.000000 0.012713 0.027626 0.025177 0.061302 0.000000 0.000000 0.030399 0.009726 0.000000 0.028002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.022162 0.025208 0.000000 0.018937 0.000000 0.000000 0.031995 0.016156 0.000000 0.000000 0.016229 0.000000 0.029085 0.008506 0.106236 0.009365 0.000000 0.020726 0.009462 0.000000 0.000000 0.020923 0.031586 0.0 0.015954 0.000000 0.021716 0.000000 0.011727 0.033508 0.050513 0.000000 0.017673 0.028696 0.003358 0.035100 0.000000 0.000000 0.006112 0.013132 0.008341 0.000000 0.000000 0.000000 0.009394 0.000000 0.013374 0.000000 0.000000 0.041943 0.000000 0.000000 0.000000 0.090399 0.024326 0.012451 0.128180 0.000000 0.000000 0.000000 0.028220 0.012308 0.0000 0.040792 0.010352 0.000000 0.000000 0.000000 0.000000 0.021114 0.000000 0.000000 0.023371 0.000000 0.0 0.037304 0.00000 0.038305 0.000000 0.0 0.0 0.0 0.045912 0.000000 0.017889 0.000000 0.013260 0.009305 0.000000 0.000000 0.000000 0.009325 0.011706 0.000000 0.000000 0.040329 0.030970 0.034252 0.0 0.026193 0.008563 0.033122 0.011093 0.000000 0.035218 0.0 0.0 0.000000 0.081422 0.000000 0.045184 0.027670 0.000000 0.043609 0.022598 0.008463 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.010395 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025715 0.000000 0.032812 0.013025 0.036611 0.015938 0.012010 0.015517 0.042533 0.012978 0.014895 0.021837 0.018188 0.01334 0.015321 0.009985 0.0 0.0 0.0 0.0 0.000000 0.031254 0.000000 0.022035 0.024113 0.000000 0.051615 0.012615 0.014649 0.009983 0.000000 0.032995 0.013945 0.000000 0.015982 0.010567 0.061197 0.030936 0.007077 0.000000 0.010368 0.005654 0.013230 0.000000 0.028408 0.000000 0.038499 0.021015 0.026947 0.022982 0.021432 0.011691 0.000000 0.000000 0.009557 0.021920 0.006092 0.015744 0.000000 0.006846 0.0 0.0 0.0 0.0 0.000000 0.010813 0.000000 0.000000 0.000000 0.000000 0.000000 0.019068 0.005407 0.000000 0.000000 0.016029 0.022930 0.000000 0.000000 0.000000 0.000000 0.034825 0.000000 0.029479 0.000000 0.011482 0.024915 0.000000 0.010772 0.025217 0.012621 0.000000 0.000000 0.048086 0.057552 0.000000 0.000000 0.000000 0.017862 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.027016 0.000000 0.000000 0.009565 0.0 0.000000 0.017175 0.0 0.000000 0.000000 0.021027 0.000000 0.000000 0.0 0.056703 0.0 0.000000 0.000000 0.008668 0.0 0.026805 0.000000 0.000000 0.0 0.020884 0.000000 0.000000 0.032721 0.011238 0.000000 0.013179 0.026761 0.000000 0.0 0.000000 0.034411 0.000000 0.000000 0.000000 0.022289 0.013981 0.000000 0.042524 0.0 0.032577 0.0 0.01635 0.026786 0.063953 0.000000 0.028540 0.010994 0.00668 0.00000 0.018661 0.014715 0.057080 0.000000 0.011432 0.022879 0.018656 0.012401 0.053101 0.069329 0.000000 0.000000 0.000000 0.000000 0.008540 0.046346 0.000000 0.019466 0.000000 0.000000 0.033931 0.000000 0.059504 0.000000 0.007116 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.021659 0.034264 0.011569 0.000000 0.014610 0.016080 0.021045 0.007662 0.000000 0.000000 0.040993 0.006627 0.000000 0.000000 0.000000 0.000000 0.044497 0.016824 0.000000 0.00000 0.039107 0.017149 0.000000 0.032175 0.000000 0.000000 0.029067 0.019480 0.000000 0.021944 0.000000 0.000000 0.021054 0.000000 0.000000 0.045893 0.057750 0.000000 0.037961 0.014213 0.018404 0.093384 0.009369 0.000000 0.000000 0.049904 0.000000 0.000000 0.014054 0.022679 0.000000 0.000000 0.000000 0.000000 0.062108 0.000000 0.023800 0.060552 0.000000 0.012827 0.000000 0.000000 0.000000 0.000000 0.010414 0.000000 0.000000 0.006532 0.014677 0.043390 0.047153 0.000000 0.048909 0.056202 0.000000 0.031661 0.011691 0.000000 0.000000 0.016364 0.000000 0.018746 0.016922 0.011102 0.000000 0.000000 0.061835 0.000000 0.0 0.012377 0.050787 0.010013 0.000000 0.058038 0.000000 0.000000 0.000000 0.000000 0.000000 0.01187 0.000000 0.019864 0.013136 0.000000 0.018083 0.000000 0.031057 0.000000 0.014727 0.040806 0.034550 0.020175 0.000000 0.013140 0.042400 0.024746 0.019162 0.000000 0.036629 0.030985 0.010004 0.024215 0.019677 0.034512 0.000000 0.012324 0.016843 0.034832 0.011778 0.012069 0.007479 0.035418 0.013057 0.022797 0.028840 0.000000 0.000000 0.000000 0.016087 0.031863 0.048702 0.000000 0.015865 0.000000 0.013603 0.0 0.000000 0.015372 0.014802 0.000000 0.014039 0.022509 0.015234 0.014737 0.00000 0.014910 0.033028 0.009596 0.010516 0.000000 0.008900 0.010944 0.029790 0.000000 0.000000 0.032973 0.000000 0.0 0.030222 0.016824 0.009239 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.033415 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.013854 0.000000 0.000000 0.000000 0.035079 0.000000 0.000000 0.042121 0.0 0.000000 0.006499 0.075182 0.000000 0.026070 0.000000 0.014415 0.023024 0.053488 0.009556 0.000000 0.016160 0.030271 0.000000 0.000000 0.027305 0.0 0.017072 0.060196 0.015038 0.024006 0.000000 0.000000 0.000000 0.009626 0.009557 0.000000 0.000000 0.000000 0.007864 0.023575 0.000000 0.000000 0.070245 0.031220 0.000000 0.000000 0.000000 0.007719 0.025067 0.012984 0.000000 0.061402 0.040913 0.000000 0.021580 0.000000 0.012136 0.000000 0.017038 0.0 0.030609 0.042566 0.000000 0.010716 0.032626 0.000000 0.015754 0.032985 0.0 0.015406 0.000000 0.010277 0.000000 0.021537 0.006936 0.000000 0.017396 0.000000 0.007905 0.015126 0.015543 0.000000 0.011516 0.036915 0.018090 0.036300 0.023143 0.000000 0.035096 0.016795 0.043797 0.006680 0.014006 0.023407 0.011859 0.018352 0.000000 0.049477 0.014600 0.000000 0.000000 0.012983 0.000000 0.076280 0.039054 0.000000 0.000000 0.000000 0.025573 0.009178 0.032532 0.000000 0.000000 0.011877 0.051120 0.000000 0.006492 0.0 0.049794 0.000000 0.000000 0.042143 0.000000 0.000000 0.017235 0.019549 0.000000 0.078135 0.000000 0.000000 0.029277 0.00000 0.009978 0.000000 0.000000 0.000000 0.060780 0.000000 0.052086 0.000000 0.010443 0.000000 0.025290 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017241 0.029139 0.034121 0.000000 0.000000 0.000000 0.012180 0.000000 0.0000 0.0 0.035482 0.012885 0.000000 0.023207 0.000000 0.000000 0.023483 0.034216 0.010140 0.000000 0.018592 0.0 0.007782 0.000000 0.000000 0.019588 0.029146 0.000000 0.000000 0.016229 0.000000 0.000000 0.017562 0.000000 0.000000 0.000000 0.021604 0.014922 0.0 0.057655 0.019695 0.014800 0.000000 0.000000 0.028439 0.015349 0.009927 0.000000 0.000000 0.007326 0.000000 0.000000 0.000000 0.019400 0.012743 0.049778 0.000000 0.000000 0.000000 0.010343 0.0 0.000000 0.000000 0.017257 0.000000 0.0 0.008465 0.119406 0.000000 0.000000 0.000000 0.000000 0.016075 0.000000 0.019858 0.018192 0.007452 0.000000 0.000000 0.036655 0.000000 0.0 0.0 0.000000 0.023375 0.011932 0.0 0.010080 0.018467 0.000000 0.000000 0.000000 0.013858 0.016807 0.000000 0.013594 0.000000 0.011195 0.000000 0.000000 0.000000 0.000000 0.013013 0.006131 0.033489 0.000000 0.014730 0.008987 0.000000 0.012481 0.009451 0.052809 0.000000 0.000000 0.017576 0.037614 0.017667 0.000000 0.048923 0.000000 0.019111 0.000000 0.070199 0.000000 0.000000 0.028752 0.045766 0.000000 0.000000 0.088685 0.000000 0.012906 0.010186 0.018835 0.0 0.012426 0.011447 0.000000 0.000000 0.035445 0.000000 0.000000 0.015020 0.000000 0.025038 0.000000 0.010366 0.026009 0.033766 0.024593 0.009501 0.049731 0.000000 0.000000 0.012361 0.010805 0.038401 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.007711 0.030417 0.041844 0.000000 0.000000 0.016689 0.0 0.000000 0.0 0.000000 0.000000 0.026694 0.000000 0.000000 0.000000 0.047950 0.000000 0.000000 0.000000 0.000000 0.018139 0.000000 0.022988 0.017484 0.000000 0.017921 0.029684 0.000000 0.000000 0.000000 0.013441 0.000000 0.000000 0.000000 0.000000 0.021151 0.061502 0.0 0.000000 0.000000 0.000000 0.000000 0.023239 0.091368 0.000000 0.024899 0.016642 0.020798 0.013369 0.055540 0.019027 0.000000 0.024627 0.000000 0.037816 0.000000 0.046451 0.0 0.022125 0.035081 0.033044 0.000000 0.012564 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.017274 0.000000 0.030862 0.016733 0.000000 0.006322 0.012170 0.032953 0.011648 0.006098 0.000000 0.000000 0.025183 0.000000 0.022445 0.108693 0.0 0.021145 0.000000 0.000000 0.036039 0.000000 0.000000 0.000000 0.014455 0.014192 0.011183 0.0 0.052112 0.000000 0.000000 0.011701 0.008296 0.053952 0.000000 0.021778 0.000000 0.044382 0.000000 0.000000 0.074813 0.000000 0.014900 0.013976 0.000000 0.000000 0.000000 0.035826 0.000000 0.012600 0.0 0.008531 0.015923 0.000000 0.000000 0.000000 0.000000 0.054181 0.057305 0.016691 0.013011 0.000000 0.000000 0.140059 0.005414 0.053882 0.000000 0.010733 0.020669 0.000000 0.021170 0.022856 0.015787 0.000000 0.014419 0.017750 0.018895 0.048088 0.000000 0.011539 0.008181 0.000000 0.000000 0.031405 0.015188 0.016434 0.025050 0.000000 0.017880 0.012678 0.016716 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.040796 0.000000 0.121184 0.066108 0.000000 0.000000 0.015801 0.021249 0.000000 0.010792 0.000000 0.000000 0.023166 0.000000 0.011372 0.017060 0.000000 0.030789 0.038586 0.000000 0.027308 0.012254 0.000000 0.000000 0.000000 0.000000 0.000000 0.041788 0.000000 0.000000 0.011016 0.000000 0.015492 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015370 0.012268 0.026400 0.0185 0.000000 0.000000 0.006868 0.013666 0.000000 0.0 0.028254 0.000000 0.000000 0.013333 0.025698 0.013871 0.000000 0.000000 0.008969 0.000000 0.000000 0.008741 0.043456 0.025031 0.011079 0.000000 0.038508 0.000000 0.0 0.078483 0.041301 0.0 0.102718 0.0 0.025980 0.041346 0.012498 0.018126 0.035275 0.000000 0.000000 0.121443 0.029230 0.000000 0.010586 0.000000 0.000000 0.036656 0.013542 0.007814 0.010480 0.000000 0.000000 0.047837 0.017866 0.082553 0.010578 0.011619 0.016142 0.012709 0.000000 0.000000 0.000000 0.017371 0.018202 0.052418 0.018023 0.020909 0.000000 0.000000 0.000000 0.063697 0.000000 0.021743 0.014376 0.000000 0.029877 0.0 0.000000 0.000000 0.011991 0.042778 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.011935 0.0 0.018440 0.034528 0.020620 0.022455 0.000000 0.000000 0.049378 0.009322 0.035202 0.000000 0.096699 0.016262 0.014282 0.016044 0.000000 0.000000 0.030678 0.013221 0.000000 0.012011 0.013511 0.017148 0.032861 0.000000 0.012869 0.000000 0.012240 0.041002 0.024906 0.000000 0.030701 0.012719 0.010634 0.000000 0.013448 0.000000 0.000000 0.000000 0.018314 0.015940 0.000000 0.010594 0.0 0.057558 0.000000 0.000000 0.009094 0.0 0.019886 0.000000 0.000000 0.000000 0.026486 0.000000 0.052508 0.000000 0.000000 0.014057 0.058217 0.027837 0.000000 0.011873 0.060589 0.020429 0.058684 0.020630 0.000000 0.014900 0.000000 0.012004 0.000000 0.000000 0.000000 0.014853 0.000000 0.127406 0.022012 0.000000 0.000000 0.016122 0.015851 0.000000 0.000000 0.000000 0.014858 0.00000 0.012105 0.000000 0.030710 0.000000 0.009483 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.008837 0.023649 0.00000 0.000000 0.000000 0.057280 0.053931 0.000000 0.000000 0.000000 0.049379 0.000000 0.013951 0.000000 0.000000 0.000000 0.011509 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034215 0.000000 0.000000 0.000000 0.000000 0.000000 0.037699 0.00000 0.014963 0.0 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.007390 0.000000 0.000000 0.024886 0.000000 0.000000 0.027927 0.000000 0.0 0.000000 0.000000 0.055199 0.0 0.000000 0.009495 0.000000 0.0 0.022026 0.022688 0.000000 0.055199 0.000000 0.000000 0.000000 0.000000 0.000000 0.02706 0.012044 0.000000 0.000000 0.0 0.0 0.024253 0.000000 0.000000 0.029196 0.011693 0.187180 0.000000 0.000000 0.016889 0.000000 0.000000 0.000000 0.033973 0.000000 0.0 0.048623 0.019370 0.041899 0.000000 0.0 0.000000 0.012404 0.000000 0.00000 0.026035 0.000000 0.033146 0.009274 0.030775 0.000000 0.000000 0.010375 0.010089 0.000000 0.023536 0.014426 0.00000 0.045685 0.025637 0.016236 0.006925 0.000000 0.010465 0.006301 0.024225 0.000000 0.025332 0.000000 0.006911 0.031221 0.016067 0.039817 0.049095 0.006514 0.029113 0.000000 0.000000 0.010925 0.019494 0.000000 0.000000 0.030223 0.000000 0.000000 0.028132 0.034756 0.046663 0.000000 0.013750 0.026685 0.013153 0.000000 0.030946 0.000000 0.000000 0.000000 0.000000 0.036777 0.000000 0.006078 0.019982 0.000000 0.0 0.000000 0.019578 0.000000 0.000000 0.000000 0.040348 0.000000 0.000000 0.000000 0.014647 0.000000 0.020952 0.000000 0.000000 0.0 0.106614 0.010947 0.000000 0.0 0.106213 0.068048 0.026393 0.000000 0.012023 0.054317 0.056088 0.000000 0.000000 0.011680 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.034253 0.007157 0.000000 0.000000 0.037206 0.000000 0.012767 0.000000 0.037632 0.000000 0.008309 0.021925 0.017414 0.032796 0.000000 0.000000 0.000000 0.019555 0.000000 0.000000 0.030535 0.016342 0.0 0.042437 0.010473 0.000000 0.01226 0.027149 0.044933 0.000000 0.000000 0.010157 0.028512 0.0 0.000000 0.0 0.024074 0.010894 0.000000 0.000000 0.017276 0.000000 0.000000 0.025053 0.000000 0.000000 0.000000 0.000000 0.000000 0.080267 0.066638 0.013947 0.000000 0.000000 0.035295 0.000000 0.009352 0.162861 0.030974 0.009872 0.020266 0.019392 0.000000 0.020476 0.036531 0.000000 0.000000 0.000000 0.007110 0.012004 0.015587 0.034669 0.019984 0.034294 0.008939 0.008855 0.038307 0.000000 0.016742 0.015655 0.000000 0.007719 0.012551 0.011960 0.000000 0.114975 0.021562 0.034110 0.012480 0.028465 0.079043 0.000000 0.011955 0.000000 0.019447 0.000000 0.000000 0.022645 0.000000 0.000000 0.00000 0.014926 0.000000 0.007277 0.000000 0.000000 0.044195 0.018515 0.027415 0.029913 0.042751 0.013308 0.009105 0.000000 0.009931 0.006626 0.000000 0.030438 0.017341 0.024154 0.014871 0.022373 0.015697 0.020893 0.013532 0.000000 0.000000 0.006941 0.000000 0.000000 0.000000 0.066190 0.013128 0.000000 0.026770 0.00000 0.0 0.038467 0.000000 0.000000 0.007311 0.022746 0.019886 0.032928 0.036527 0.000000 0.006657 0.000000 0.000000 0.011375 0.020381 0.006356 0.000000 0.000000 0.045621 0.000000 0.014564 0.000000 0.010939 0.008696 0.000000 0.000000 0.075848 0.000000 0.024034 0.011146 0.000000 0.000000 0.000000 0.000000 0.062994 0.000000 0.011453 0.000000 0.011000 0.000000 0.011146 0.063977 0.009893 0.000000 0.000000 0.000000 0.0 0.000000 0.014537 0.027278 0.000000 0.016553 0.000000 0.059899 0.012899 0.025064 0.000000 0.008116 0.000000 0.007284 0.074576 0.030049 0.000000 0.039704 0.007034 0.008615 0.000000 0.027015 0.033580 0.020487 0.000000 0.019886 0.022526 0.000000 0.070397 0.000000 0.0 0.000000 0.000000 0.008788 0.017948 0.000000 0.033835 0.000000 0.026313 0.018338 0.000000 0.000000 0.047648 0.000000 0.024884 0.052635 0.032623 0.104176 0.017780 0.000000 0.043555 0.000000 0.027052 0.000000 0.022832 0.056306 0.000000 0.000000 0.010053 0.000000 0.000000 0.0 0.027761 0.000000 0.046493 0.000000 0.000000 0.0 0.019819 0.032184 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.007192 0.020162 0.000000 0.000000 0.015332 0.000000 0.000000 0.000000 0.000000 0.016527 0.033337 0.014506 0.000000 0.012949 0.013741 0.000000 0.000000 0.013943 0.023550 0.000000 0.000000 0.000000 0.014764 0.000000 0.000000 0.059343 0.013928 0.000000 0.000000 0.020986 0.000000 0.000000 0.041954 0.046015 0.000000 0.000000 0.000000 0.0000 0.000000 0.017205 0.015693 0.000000 0.010894 0.000000 0.011579 0.014606 0.025098 0.026751 0.000000 0.009306 0.000000 0.022653 0.000000 0.000000 0.000000 0.029920 0.000000 0.020193 0.000000 0.000000 0.000000 0.000000 0.000000 0.014556 0.009981 0.000000 0.038466 0.000000 0.031820 0.030919 0.015310 0.012062 0.000000 0.000000 0.022664 0.000000 0.000000 0.017076 0.000000 0.020220 0.000000 0.0 0.000000 0.000000 0.000000 0.012117 0.039426 0.000000 0.000000 0.008278 0.019359 0.005797 0.041331 0.050894 0.000000 0.017222 0.032021 0.017837 0.033355 0.018561 0.009994 0.014273 0.029129 0.000000 0.014601 0.000000 0.000000 0.031431 0.018448 0.000000 0.000000 0.000000 0.018896 0.011365 0.000000 0.014096 0.000000 0.000000 0.054605 0.011966 0.042480 0.000000 0.03488 0.028415 0.000000 0.000000 0.0 0.027777 0.000000 0.019771 0.000000 0.000000 0.000000 0.038989 0.064236 0.074193 0.044922 0.016835 0.051164 0.030504 0.017573 0.000000 0.048773 0.000000 0.000000 0.012302 0.015753 0.000000 0.027479 0.012647 0.000000 0.016053 0.000000 0.019607 0.017543 0.041464 0.023667 0.000000 0.018961 0.000000 0.000000 0.009966 0.013068 0.015659 0.000000 0.009763 0.000000 0.000000 0.000000 0.000000 0.042556 0.000000 0.000000 0.011071 0.026845 0.000000 0.048115 0.000000 0.00000 0.00000 0.000000 0.009138 0.051802 0.000000 0.025134 0.000000 0.011648 0.000000 0.020395 0.000000 0.029079 0.009540 0.000000 0.000000 0.026200 0.016379 0.008462 0.000000 0.048320 0.010807 0.021617 0.027288 0.019456 0.009838 0.000000 0.017605 0.018834 0.000000 0.009276 0.036105 0.007108 0.000000 0.011709 0.013822 0.022487 0.015838 0.032084 0.000000 0.000000 0.008595 0.013054 0.000000 0.025624 0.012748 0.035816 0.015073 0.030444 0.009093 0.000000 0.000000 0.00000 0.011793 0.000000 0.027431 0.000000 0.000000 0.011384 0.000000 0.088994 0.021954 0.000000 0.014351 0.000000 0.026025 0.000000 0.009150 0.000000 0.000000 0.000000 0.042258 0.043447 0.010168 0.035474 0.023469 0.040919 0.016068 0.016421 0.0 0.024689 0.052959 0.010667 0.049877 0.063633 0.00000 0.010666 0.0 0.011563 0.033185 0.061775 0.000000 0.000000 0.058511 0.000000 0.019269 0.008702 0.000000 0.011070 0.000000 0.010578 0.011266 0.023822 0.026509 0.019265 0.00000 0.0 0.013421 0.0 0.0 0.0 0.012553 0.0 0.0 0.0000 0.000000 0.000000 0.016281 0.0 0.009152 0.009724 0.016489 0.00000 0.000000 0.0 0.000000 0.000000 0.037010 0.000000 0.021552 0.000000 0.023012 0.000000 0.000000 0.000000 0.020098 0.00000 0.000000 0.036387 0.01410 0.00000 0.012658 0.000000 0.031958 0.000000 0.017976 0.021968 0.000000 0.0 0.000000 0.019595 0.000000 0.000000 0.000000 0.019412 0.000000 0.000000 0.016319 0.018829 0.021227 0.039076 0.028751 0.000000 0.009469 0.000000 0.016907 0.000000 0.009229 0.017856 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014296 0.000000 0.016034 0.013963 0.000000 0.000000 0.027091 0.011714 0.060183 0.000000 0.007046 0.016458 0.000000 0.000000 0.029536 0.037276 0.011203 0.022595 0.036144 0.000000 0.000000 0.000000 0.050449 0.000000 0.000000 0.027014 0.030704 0.000000 0.000000 0.00000 0.000000 0.000000 0.011191 0.025811 0.016720 0.057978 0.011634 0.000000 0.000000 0.020697 0.000000 0.011598 0.015434 0.031921 0.025128 0.017098 0.006908 0.026281 0.000000 0.006681 0.000000 0.000000 0.056126 0.000000 0.0 0.019968 0.028022 0.043587 0.007971 0.008880 0.021015 0.013306 0.047966 0.030580 0.000000 0.000000 0.027478 0.045448 0.015408 0.000000 0.000000 0.000000 0.019385 0.009886 0.028581 0.029933 0.000000 0.000000 0.035718 0.015978 0.000000 0.000000 0.016517 0.066410 0.000000 0.005877 0.000000 0.0 0.000000 0.006002 0.000000 0.000000 0.009419 0.010132 0.000000 0.012291 0.000000 0.0 0.000000 0.029772 0.0 0.0 0.000000 0.021506 0.034628 0.007118 0.060739 0.0 0.000000 0.006181 0.000000 0.012034 0.023736 0.021391 0.011875 0.027189 0.017053 0.031795 0.031612 0.006579 0.034420 0.000000 0.000000 0.000000 0.000000 0.029334 0.028422 0.000000 0.011275 0.007193 0.000000 0.020853 0.017263 0.007835 0.000000 0.000000 0.000000 0.000000 0.012593 0.031987 0.006110 0.000000 0.040151 0.013246 0.000000 0.000000 0.000000 0.000000 0.041453 0.005353 0.015910 0.018419 0.017197 0.011802 0.010014 0.000000 0.015859 0.054266 0.013944 0.000000 0.000000 0.007863 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.023259 0.000000 0.020002 0.000000 0.030267 0.067035 0.013782 0.000000 0.042366 0.000000 0.009935 0.000000 0.029593 0.000000 0.020055 0.0 0.027234 0.010825 0.000000 0.000000 0.000000 0.000000 0.021429 0.000000 0.005463 0.000000 0.079105 0.008785 0.000000 0.000000 0.030737 0.000000 0.048908 0.000000 0.020320 0.019413 0.000000 0.031678 0.000000 0.017076 0.0 0.000000 0.006427 0.007680 0.000000 0.000000 0.000000 0.026806 0.000000 0.000000 0.029951 0.000000 0.000000 0.018548 0.000000 0.010091 0.0 0.032559 0.000000 0.029249 0.024671 0.035999 0.000000 0.000000 0.021083 0.000000 0.028771 0.000000 0.017415 0.000000 0.016638 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.028803 0.0 0.000000 0.000000 0.000000 0.021376 0.0 0.000000 0.014026 0.000000 0.000000 0.000000 0.015886 0.000000 0.000000 0.000000 0.000000 0.011344 0.014534 0.000000 0.000000 0.000000 0.000000 0.016245 0.010636 0.000000 0.000000 0.018029 0.007454 0.000000 0.013186 0.000000 0.000000 0.030880 0.000000 0.029958 0.015101 0.000000 0.021866 0.025465 0.013274 0.000000 0.015596 0.010267 0.000000 0.023007 0.000000 0.000000 0.000000 0.000000 0.000000 0.014996 0.019267 0.000000 0.064682 0.00000 0.000000 0.000000 0.016802 0.000000 0.033065 0.000000 0.000000 0.006337 0.000000 0.018055 0.014011 0.000000 0.000000 0.000000 0.000000 0.093777 0.000000 0.019660 0.000000 0.037419 0.029389 0.028179 0.000000 0.000000 0.000000 0.000000 0.000000 0.054379 0.000000 0.027347 0.051523 0.000000 0.010453 0.000000 0.009741 0.032151 0.000000 0.037316 0.072949 0.021063 0.000000 0.013279 0.000000 0.064257 0.000000 0.011133 0.000000 0.000000 0.028269 0.036319 0.000000 0.0 0.058756 0.017383 0.036354 0.097982 0.000000 0.000000 0.000000 0.049076 0.007194 0.000000 0.000000 0.013939 0.000000 0.058692 0.000000 0.000000 0.025469 0.000000 0.025424 0.017641 0.039671 0.013413 0.014886 0.000000 0.000000 0.014495 0.0 0.019478 0.000000 0.000000 0.020303 0.011283 0.0 0.017959 0.000000 0.013567 0.018528 0.021815 0.000000 0.000000 0.012996 0.023534 0.000000 0.00000 0.023728 0.007667 0.011470 0.0 0.0 0.000000 0.015190 0.030941 0.092502 0.072319 0.038897 0.021002 0.000000 0.017672 0.000000 0.014979 0.009022 0.023291 0.000000 0.000000 0.000000 0.000000 0.033048 0.030731 0.000000 0.000000 0.030456 0.000000 0.000000 0.000000 0.013610 0.009622 0.019666 0.018484 0.000000 0.0 0.024199 0.027228 0.000000 0.000000 0.048798 0.017012 0.045973 0.038895 0.010659 0.0 0.000000 0.058920 0.026261 0.000000 0.000000 0.000000 0.000000 0.000000 0.010928 0.013198 0.026743 0.042205 0.000000 0.014876 0.000000 0.009242 0.000000 0.000000 0.000000 0.032732 0.000000 0.000000 0.000000 0.000000 0.031802 0.000000 0.0 0.0 0.007463 0.017634 0.000000 0.011862 0.0 0.013628 0.007911 0.021479 0.019128 0.013469 0.000000 0.018211 0.000000 0.012157 0.033360 0.010583 0.049537 0.014774 0.000000 0.000000 0.014112 0.000000 0.038128 0.000000 0.000000 0.042141 0.000000 0.025305 0.005771 0.021645 0.014831 0.029257 0.000000 0.109049 0.000000 0.011492 0.000000 0.012909 0.00000 0.039195 0.000000 0.016357 0.020684 0.027105 0.0 0.000000 0.000000 0.049721 0.020423 0.033112 0.007921 0.016082 0.000000 0.019637 0.000000 0.000000 0.018189 0.014113 0.060681 0.000000 0.000000 0.008664 0.074350 0.000000 0.000000 0.0 0.013170 0.011282 0.009299 0.0 0.011267 0.010561 0.000000 0.031130 0.000000 0.014763 0.016382 0.013581 0.010152 0.000000 0.012101 0.029847 0.000000 0.000000 0.019612 0.0 0.000000 0.000000 0.051282 0.012845 0.000000 0.000000 0.000000 0.000000 0.092825 0.000000 0.036361 0.000000 0.045366 0.008292 0.027036 0.000000 0.030842 0.000000 0.094552 0.0 0.0 0.0 0.000000 0.119588 0.124907 0.044843 0.000000 0.040217 0.0 0.007361 0.014150 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029014 0.014902 0.000000 0.024633 0.026399 0.013489 0.019227 0.000000 0.000000 0.013197 0.016825 0.000000 0.000000 0.000000 0.0 0.006013 0.000000 0.011989 0.000000 0.011971 0.074408 0.032446 0.00000 0.010862 0.000000 0.024812 0.016313 0.013792 0.047437 0.000000 0.000000 0.000000 0.011714 0.046852 0.000000 0.000000 0.000000 0.013373 0.011073 0.000000 0.000000 0.00000 0.000000 0.000000 0.011243 0.014413 0.006576 0.000000 0.015578 0.056358 0.000000 0.030521 0.054099 0.010735 0.000000 0.051613 0.007161 0.014196 0.022457 0.000000 0.000000 0.085509 0.009939 0.012008 0.022990 0.000000 0.006101 0.009446 0.008718 0.000000 0.015185 0.035743 0.075373 0.013646 0.000000 0.000000 0.020445 0.000000 0.000000 0.042543 0.0 0.018098 0.000000 0.000000 0.000000 0.043896 0.000000 0.000000 0.0 0.025734 0.0 0.000000 0.012829 0.000000 0.015368 0.000000 0.033426 0.000000 0.000000 0.079536 0.000000 0.000000 0.008251 0.015057 0.000000 0.033969 0.000000 0.000000 0.000000 0.030991 0.000000 0.013753 0.0 0.030555 0.013851 0.009426 0.000000 0.045248 0.032289 0.0 0.042619 0.018501 0.000000 0.000000 0.016928 0.012661 0.000000 0.025744 0.074255 0.009272 0.000000 0.011281 0.022186 0.00000 0.010657 0.000000 0.000000 0.031514 0.007302 0.016215 0.018079 0.015943 0.000000 0.000000 0.030120 0.0 0.000000 0.000000 0.039389 0.027744 0.000000 0.000000 0.000000 0.027006 0.000000 0.015610 0.011532 0.000000 0.000000 0.000000 0.019604 0.006821 0.046581 0.000000 0.021354 0.000000 0.000000 0.000000 0.026574 0.013189 0.005791 0.000000 0.000000 0.000000 0.016609 0.008899 0.000000 0.0 0.000000 0.011731 0.000000 0.000000 0.069732 0.000000 0.007356 0.014219 0.028316 0.013174 0.049031 0.026608 0.048232 0.000000 0.000000 0.036257 0.000000 0.017758 0.025215 0.016030 0.000000 0.038235 0.000000 0.022819 0.050864 0.006426 0.000000 0.016052 0.000000 0.053382 0.000000 0.000000 0.020403 0.000000 0.011900 0.000000 0.0 0.000000 0.060413 0.018576 0.0 0.000000 0.016828 0.000000 0.044526 0.016677 0.023460 0.012342 0.000000 0.0 0.019307 0.016194 0.019574 0.014074 0.000000 0.016197 0.059743 0.000000 0.010118 0.000000 0.015940 0.015930 0.000000 0.000000 0.000000 0.034109 0.013903 0.015921 0.000000 0.013947 0.000000 0.059615 0.0 0.000000 0.044714 0.044106 0.013217 0.051174 0.007970 0.033536 0.029971 0.006769 0.011460 0.018117 0.037522 0.010971 0.015827 0.014494 0.000000 0.000000 0.000000 0.024908 0.000000 0.000000 0.000000 0.008259 0.0 0.012653 0.021053 0.056323 0.000000 0.000000 0.009496 0.000000 0.000000 0.000000 0.032282 0.019498 0.000000 0.000000 0.015538 0.015269 0.022173 0.000000 0.005843 0.021480 0.044926 0.000000 0.009233 0.010202 0.000000 0.023873 0.000000 0.010724 0.015287 0.000000 0.011635 0.000000 0.000000 0.026749 0.021825 0.000000 0.013581 0.013016 0.000000 0.014627 0.000000 0.000000 0.000000 0.014628 0.000000 0.000000 0.028831 0.057420 0.000000 0.000000 0.013373 0.000000 0.000000 0.028330 0.009830 0.0 0.000000 0.000000 0.023333 0.013153 0.124597 0.060467 0.030397 0.000000 0.0 0.000000 0.030913 0.000000 0.000000 0.000000 0.035323 0.0 0.000000 0.013374 0.021558 0.013844 0.000000 0.000000 0.028831 0.007685 0.013816 0.010495 0.019593 0.000000 0.017206 0.011896 0.012529 0.067078 0.006569 0.000000 0.026598 0.013816 0.026200 0.005779 0.025290 0.030878 0.026580 0.013192 0.057910 0.058078 0.009110 0.000000 0.012934 0.010650 0.013692 0.000000 0.000000 0.012245 0.000000 0.040858 0.020848 0.015971 0.0 0.010033 0.015156 0.000000 0.000000 0.007652 0.039161 0.010456 0.032438 0.008546 0.033438 0.049088 0.000000 0.050335 0.000000 0.013879 0.028065 0.000000 0.000000 0.000000 0.022453 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.024546 0.000000 0.000000 0.031094 0.000000 0.009203 0.006889 0.000000 0.038404 0.013190 0.000000 0.016250 0.000000 0.062466 0.015253 0.000000 0.000000 0.017758 0.000000 0.062044 0.000000 0.025603 0.000000 0.026177 0.000000 0.021041 0.066139 0.0 0.000000 0.000000 0.011218 0.012177 0.034329 0.009726 0.000000 0.010469 0.000000 0.023339 0.000000 0.007995 0.000000 0.000000 0.000000 0.000000 0.013977 0.000000 0.000000 0.014793 0.014656 0.000000 0.012458 0.000000 0.000000 0.015879 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.014748 0.000000 0.018308 0.000000 0.000000 0.000000 0.000000 0.000000 0.016992 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017690 0.044299 0.000000 0.012759 0.000000 0.022065 0.0 0.016619 0.010396 0.000000 0.013241 0.000000 0.016410 0.015280 0.000000 0.015828 0.010701 0.000000 0.000000 0.046282 0.00000 0.0 0.016844 0.000000 0.026349 0.000000 0.031078 0.00000 0.000000 0.000000 0.000000 0.000000 0.018403 0.000000 0.016741 0.012486 0.020124 0.011062 0.025473 0.0 0.000000 0.000000 0.0 0.000000 0.016472 0.011518 0.000000 0.000000 0.011651 0.026168 0.00000 0.012398 0.000000 0.016020 0.017407 0.019137 0.005363 0.000000 0.015883 0.031094 0.000000 0.032529 0.027969 0.006869 0.0 0.045905 0.000000 0.00000 0.031023 0.000000 0.010063 0.016574 0.000000 0.000000 0.020904 0.000000 0.000000 0.015771 0.006905 0.000000 0.028738 0.014669 0.049344 0.006808 0.021650 0.000000 0.011814 0.000000 0.003727 0.007568 0.000000 0.000000 0.000000 0.000000 0.027544 0.007802 0.078965 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013481 0.017047 0.068784 0.017782 0.000000 0.000000 0.009528 0.015256 0.000000 0.044003 0.000000 0.000000 0.000000 0.012023 0.000000 0.020081 0.079030 0.00000 0.000000 0.000000 0.000000 0.000000 0.040514 0.000000 0.0 0.000000 0.015001 0.000000 0.027868 0.000000 0.000000 0.000000 0.000000 0.011930 0.043525 0.011823 0.08653 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.010334 0.007038 0.013227 0.011488 0.000000 0.005636 0.000000 0.000000 0.023758 0.000000 0.000000 0.000000 0.012648 0.000000 0.014607 0.023266 0.000000 0.006969 0.028033 0.018188 0.005225 0.029511 0.027566 0.000000 0.011159 0.015359 0.036840 0.000000 0.031618 0.000000 0.054208 0.000000 0.026597 0.019908 0.024520 0.000000 0.000000 0.029989 0.027675 0.000000 0.011483 0.012555 0.000000 0.011521 0.000000 0.000000 0.000000 0.015118 0.000000 0.000000 0.000000 0.025729 0.021874 0.000000 0.007517 0.021239 0.000000 0.000000 0.044899 0.000000 0.011852 0.018632 0.000000 0.000000 0.000000 0.015288 0.028116 0.051073 0.007869 0.020881 0.000000 0.000000 0.000000 0.000000 0.017125 0.000000 0.010130 0.039581 0.000000 0.000000 0.020469 0.015929 0.068901 0.014679 0.014127 0.036246 0.000000 0.029459 0.000000 0.000000 0.038663 0.000000 0.000000 0.000000 0.041030 0.014064 0.000000 0.007223 0.014092 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.010510 0.031509 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.036161 0.079378 0.000000 0.007092 0.011948 0.015686 0.000000 0.012186 0.050507 0.014329 0.029189 0.000000 0.029727 0.000000 0.011824 0.000000 0.014612 0.035559 0.000000 0.000000 0.040877 0.000000 0.015046 0.015128 0.000000 0.014226 0.193005 0.021311 0.000000 0.000000 0.0 0.012928 0.012198 0.000000 0.007866 0.000000 0.021324 0.000000 0.055695 0.000000 0.000000 0.050649 0.010171 0.000000 0.016491 0.054322 0.008697 0.015328 0.000000 0.032498 0.000000 0.05077 0.045995 0.012167 0.020979 0.040270 0.027415 0.014995 0.000000 0.033069 0.000000 0.000000 0.000000 0.014095 0.008640 0.000000 0.009542 0.000000 0.000000 0.0 0.017663 0.000000 0.000000 0.059566 0.000000 0.054699 0.00000 0.000000 0.0 0.0 0.015354 0.014155 0.000000 0.000000 0.034631 0.011689 0.0 0.016339 0.00000 0.000000 0.00000 0.000000 0.022190 0.009381 0.035944 0.00000 0.060280 0.000000 0.039560 0.019818 0.000000 0.0 0.013461 0.012825 0.017952 0.012738 0.000000 0.033716 0.037689 0.000000 0.015471 0.025095 0.000000 0.017193 0.0157 0.000000 0.023215 0.000000 0.063226 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010404 0.000000 0.015205 0.000000 0.000000 0.000000 0.000000 0.019597 0.000000 0.0 0.000000 0.000000 0.000000 0.020742 0.000000 0.000000 0.045616 0.000000 0.000000 0.000000 0.000000 0.014235 0.000000 0.000000 0.000000 0.000000 0.000000 0.018228 0.014971 0.011284 0.000000 0.081103 0.000000 0.020676 0.000000 0.000000 0.007690 0.000000 0.016755 0.0 0.019399 0.000000 0.000000 0.029924 0.000000 0.015482 0.000000 0.110624 0.009885 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.011716 0.032019 0.011171 0.016280 0.000000 0.014411 0.021883 0.000000 0.014625 0.039995 0.0 0.000000 0.000000 0.000000 0.067968 0.013509 0.008684 0.058814 0.016619 0.047137 0.000000 0.128978 0.009862 0.000000 0.027563 0.027563 0.000000 0.011208 0.014797 0.034817 0.000000 0.029534 0.000000 0.013706 0.011137 0.000000 0.013636 0.000000 0.000000 0.000000 0.000000 0.012720 0.000000 0.037358 0.000000 0.000000 0.013012 0.008483 0.000000 0.022639 0.042875 0.006225 0.000000 0.017427 0.000000 0.044467 0.000000 0.000000 0.006424 0.011074 0.011408 0.000000 0.01415 0.000000 0.012076 0.047586 0.000000 0.000 0.021142 0.000000 0.000000 0.020396 0.012524 0.000000 0.009958 0.000000 0.000000 0.019126 0.000000 0.009876 0.000000 0.000000 0.000000 0.019314 0.0 0.011930 0.022415 0.010389 0.000000 0.000000 0.007173 0.000000 0.000000 0.014286 0.046495 0.000000 0.052865 0.000000 0.017261 0.010609 0.000000 0.000000 0.0 0.000000 0.000000 0.066584 0.008537 0.011914 0.000000 0.000000 0.000000 0.000000 0.012293 0.000000 0.000000 0.000000 0.000000 0.010445 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.046541 0.019700 0.012652 0.006073 0.000000 0.000000 0.000000 0.023893 0.081289 0.013371 0.018487 0.012702 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011755 0.020846 0.000000 0.013140 0.013985 0.000000 0.000000 0.033561 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041607 0.000000 0.000000 0.007410 0.000000 0.000000 0.000000 0.011884 0.019341 0.068588 0.036710 0.000000 0.010781 0.014021 0.000000 0.026439 0.00000 0.000000 0.000000 0.000000 0.020118 0.000000 0.012931 0.016539 0.000000 0.057676 0.013068 0.000000 0.000000 0.000000 0.000000 0.014461 0.000000 0.0 0.029637 0.000000 0.000000 0.058516 0.011728 0.000000 0.000000 0.000000 0.000000 0.092299 0.000000 0.000000 0.000000 0.013750 0.000000 0.023083 0.000000 0.00000 0.000000 0.000000 0.011481 0.000000 0.000000 0.000000 0.014790 0.014760 0.013583 0.007655 0.013839 0.000000 0.000000 0.000000 0.000000 0.006042 0.042770 0.000000 0.000000 0.023371 0.000000 0.014905 0.012414 0.097499 0.015001 0.0 0.010242 0.012945 0.028091 0.006317 0.039356 0.000000 0.000000 0.000000 0.012259 0.013646 0.022295 0.000000 0.016500 0.044709 0.011829 0.006635 0.021514 0.017175 0.027770 0.000000 0.000000 0.015818 0.049808 0.029424 0.006615 0.000000 0.024587 0.026847 0.010912 0.000000 0.052936 0.000000 0.007119 0.010289 0.007562 0.037025 0.000000 0.000000 0.000000 0.015113 0.000000 0.000000 0.069563 0.000000 0.054444 0.032314 0.054673 0.022875 0.000000 0.011944 0.012446 0.017173 0.000000 0.000000 0.018982 0.022771 0.029679 0.012814 0.029679 0.000000 0.084222 0.023214 0.000000 0.009829 0.029717 0.000000 0.000000 0.0 0.000000 0.020457 0.000000 0.000000 0.0 0.0 0.009023 0.000000 0.027609 0.023671 0.0 0.000000 0.023070 0.021389 0.012917 0.000000 0.024526 0.014314 0.015404 0.094389 0.000000 0.00000 0.000000 0.028609 0.019931 0.000000 0.035579 0.025322 0.016296 0.000000 0.000000 0.000000 0.022426 0.010410 0.000000 0.010837 0.015454 0.0 0.000000 0.000000 0.012557 0.000000 0.000000 0.011902 0.012494 0.018241 0.000000 0.006158 0.0 0.051606 0.000000 0.005859 0.013129 0.017298 0.010688 0.051507 0.000000 0.027746 0.010968 0.000000 0.000000 0.059749 0.000000 0.000000 0.00000 0.025591 0.00000 0.117367 0.017770 0.013391 0.033469 0.033847 0.072871 0.017976 0.027171 0.016259 0.000000 0.008428 0.007952 0.053757 0.000000 0.000000 0.036424 0.045918 0.013280 0.007764 0.024391 0.0 0.024875 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.035624 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.037611 0.020883 0.000000 0.000000 0.030189 0.020190 0.000000 0.000000 0.018043 0.000000 0.040828 0.009565 0.030224 0.028258 0.000000 0.020863 0.000000 0.017497 0.000000 0.121082 0.000000 0.000000 0.000000 0.000000 0.000000 0.035189 0.000000 0.000000 0.032982 0.014677 0.000000 0.000000 0.000000 0.015053 0.000000 0.029330 0.000000 0.000000 0.000000 0.014876 0.013733 0.026758 0.021975 0.022597 0.020200 0.000000 0.000000 0.042187 0.013354 0.018102 0.01433 0.045912 0.000000 0.000000 0.000000 0.000000 0.000000 0.024705 0.048356 0.000000 0.000000 0.017762 0.000000 0.000000 0.006802 0.000000 0.012934 0.000000 0.017318 0.000000 0.000000 0.000000 0.011077 0.000000 0.036088 0.000000 0.014716 0.000000 0.013577 0.000000 0.000000 0.007463 0.010047 0.016267 0.000000 0.055836 0.000000 0.000000 0.000000 0.017985 0.000000 0.000000 0.018165 0.013462 0.000000 0.000000 0.012742 0.011873 0.008236 0.011227 0.018095 0.000000 0.0 0.032543 0.000000 0.009298 0.010706 0.018427 0.000000 0.015341 0.000000 0.00811 0.0 0.0 0.021344 0.000000 0.000000 0.000000 0.000000 0.000000 0.043879 0.000000 0.000000 0.019630 0.059528 0.039942 0.000000 0.024051 0.011511 0.037738 0.014121 0.017184 0.000000 0.000000 0.000000 0.021227 0.012098 0.000000 0.031814 0.000000 0.000000 0.000000 0.000000 0.018837 0.000000 0.020735 0.011121 0.000000 0.000000 0.020357 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.015808 0.007923 0.021818 0.005886 0.028495 0.020025 0.000000 0.000000 0.051881 0.0 0.035889 0.0 0.00000 0.012995 0.016615 0.000000 0.000000 0.040298 0.000000 0.030462 0.000000 0.000000 0.030554 0.000000 0.000000 0.019374 0.00000 0.0 0.000000 0.03667 0.0 0.000000 0.000000 0.0 0.000000 0.020465 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011558 0.018481 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.015164 0.000000 0.030436 0.000000 0.000000 0.015817 0.047750 0.010044 0.018119 0.000000 0.000000 0.015280 0.000000 0.000000 0.011141 0.0 0.027315 0.000000 0.000000 0.0 0.000000 0.014301 0.0 0.014582 0.046075 0.000000 0.013454 0.000000 0.013036 0.000000 0.015102 0.000000 0.000000 0.000000 0.000000 0.024401 0.000000 0.012179 0.011508 0.000000 0.007711 0.000000 0.000000 0.030731 0.000000 0.000000 0.017496 0.000000 0.014891 0.000000 0.000000 0.007093 0.018448 0.048609 0.038721 0.010370 0.008335 0.000000 0.042457 0.000000 0.000000 0.0 0.01793 0.058337 0.000000 0.016159 0.000000 0.000000 0.032699 0.024952 0.021558 0.031937 0.000000 0.00000 0.000000 0.046444 0.012354 0.008915 0.022668 0.011536 0.000000 0.018047 0.091126 0.013215 0.046257 0.000000 0.095833 0.013097 0.000000 0.000000 0.000000 0.000000 0.000000 0.015984 0.000000 0.015334 0.000000 0.000000 0.034711 0.012322 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.072929 0.008766 0.000000 0.000000 0.019316 0.000000 0.00000 0.0 0.000000 0.000000 0.014097 0.000000 0.000000 0.012049 0.000000 0.000000 0.012131 0.000000 0.033773 0.010427 0.000000 0.012481 0.016799 0.000000 0.000000 0.000000 0.000000 0.000000 0.039488 0.000000 0.00000 0.000000 0.000000 0.018244 0.000000 0.000000 0.000000 0.028095 0.000000 0.000000 0.008407 0.0 0.0 0.000000 0.000000 0.035459 0.018350 0.000000 0.013391 0.015774 0.000000 0.000000 0.000000 0.000000 0.014373 0.016376 0.008138 0.012280 0.015592 0.000000 0.013545 0.000000 0.000000 0.000000 0.000000 0.031737 0.008818 0.000000 0.030684 0.013592 0.000000 0.039042 0.000000 0.0 0.000000 0.026058 0.015825 0.000000 0.015219 0.005133 0.000000 0.026585 0.000000 0.062579 0.0 0.027324 0.000000 0.006053 0.000000 0.015869 0.000000 0.039532 0.000000 0.026368 0.024600 0.015609 0.039467 0.018839 0.025252 0.026613 0.024636 0.000000 0.000000 0.014893 0.000000 0.000000 0.018784 0.008639 0.019539 0.006702 0.020910 0.000000 0.024663 0.005486 0.043181 0.016672 0.021004 0.011414 0.000000 0.0 0.0 0.041355 0.013728 0.013049 0.022484 0.000000 0.017970 0.000000 0.000000 0.024047 0.042061 0.000000 0.000000 0.030126 0.000000 0.000000 0.009603 0.0 0.006784 0.000000 0.000000 0.050270 0.005592 0.006352 0.000000 0.0 0.014684 0.000000 0.007799 0.010864 0.007211 0.009478 0.032607 0.008656 0.012037 0.011649 0.000000 0.006752 0.008967 0.024525 0.005871 0.013445 0.023292 0.014161 0.040540 0.000000 0.091273 0.000000 0.000000 0.000000 0.020684 0.016654 0.006401 0.000000 0.000000 0.005859 0.006304 0.018484 0.018596 0.000000 0.000000 0.015012 0.000000 0.050167 0.039674 0.144074 0.074606 0.011642 0.000000 0.022133 0.000000 0.008567 0.000000 0.000000 0.017266 0.000000 0.000000 0.000000 0.019420 0.000000 0.000000 0.000000 0.012112 0.011149 0.000000 0.000000 0.000000 0.000000 0.014284 0.010261 0.008327 0.000000 0.014737 0.000000 0.023869 0.034228 0.000000 0.025530 0.000000 0.007472 0.031675 0.000000 0.000000 0.000000 0.039904 0.014156 0.020423 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012542 0.000000 0.021734 0.000000 0.000000 0.025592 0.014222 0.030426 0.035192 0.030785 0.000000 0.009544 0.000000 0.008447 0.000000 0.024832 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.008606 0.000000 0.021952 0.006504 0.011114 0.025947 0.013283 0.000000 0.021668 0.040743 0.016672 0.040489 0.000000 0.018103 0.094142 0.000000 0.009728 0.000000 0.000000 0.013857 0.000000 0.000000 0.014523 0.0 0.000000 0.000000 0.029112 0.012803 0.062643 0.000000 0.000000 0.024294 0.000000 0.000000 0.015280 0.000000 0.0 0.000000 0.041328 0.000000 0.000000 0.018066 0.000000 0.000000 0.000000 0.000000 0.029535 0.017588 0.015044 0.014090 0.000000 0.010178 0.0 0.021929 0.0 0.000000 0.036970 0.025636 0.000000 0.028123 0.011757 0.044516 0.014457 0.016490 0.046949 0.007326 0.013698 0.000000 0.000000 0.016379 0.000000 0.000000 0.000000 0.039364 0.012601 0.000000 0.000000 0.005867 0.000000 0.021190 0.031266 0.000000 0.000000 0.000000 0.015272 0.028544 0.015407 0.0 0.000000 0.000000 0.012850 0.029179 0.010668 0.011757 0.000000 0.015296 0.000000 0.000000 0.010794 0.000000 0.016645 0.000000 0.012234 0.027877 0.000000 0.000000 0.000000 0.063710 0.010610 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.014265 0.000000 0.000000 0.000000 0.0 0.008794 0.047570 0.010154 0.015826 0.000000 0.000000 0.074489 0.013725 0.000000 0.000000 0.016470 0.012965 0.049894 0.000000 0.061130 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.010442 0.035801 0.000000 0.018219 0.008447 0.000000 0.000000 0.0 0.000000 0.017200 0.014183 0.000000 0.000000 0.0 0.021923 0.00000 0.026670 0.017951 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014872 0.000000 0.027102 0.000000 0.000000 0.000000 0.011080 0.000000 0.000000 0.006321 0.000000 0.012428 0.005969 0.015807 0.088896 0.000000 0.000000 0.038671 0.00000 0.036112 0.000000 0.017288 0.010507 0.032851 0.056966 0.015707 0.022284 0.034276 0.020918 0.000000 0.011724 0.035563 0.012138 0.000000 0.000000 0.000000 0.013007 0.015219 0.014879 0.022068 0.014758 0.000000 0.009901 0.000000 0.119663 0.019609 0.028085 0.000000 0.000000 0.025437 0.009658 0.007444 0.009956 0.028291 0.000000 0.017931 0.026691 0.000000 0.023958 0.000000 0.036282 0.019596 0.042078 0.007043 0.027662 0.057064 0.011327 0.000000 0.013203 0.028542 0.063110 0.000000 0.000000 0.000000 0.016639 0.000000 0.021540 0.018146 0.040459 0.040622 0.00000 0.023552 0.000000 0.000000 0.000000 0.000000 0.014477 0.085133 0.024276 0.011623 0.035045 0.007647 0.000000 0.025601 0.000000 0.000000 0.041431 0.015811 0.012198 0.000000 0.014404 0.015450 0.030318 0.006828 0.000000 0.012653 0.000000 0.007709 0.012205 0.000000 0.000000 0.025573 0.066195 0.0 0.015018 0.021635 0.005707 0.033932 0.023014 0.038951 0.012956 0.057763 0.029864 0.014786 0.000000 0.025677 0.013963 0.000000 0.018994 0.054806 0.025503 0.011849 0.007004 0.000000 0.027377 0.009205 0.011452 0.019082 0.022547 0.000000 0.000000 0.021386 0.009537 0.009992 0.026966 0.016985 0.000000 0.000000 0.029697 0.027725 0.043277 0.006961 0.0 0.039214 0.000000 0.010766 0.039822 0.00000 0.000000 0.000000 0.000000 0.007635 0.038182 0.000000 0.013652 0.020280 0.000000 0.000000 0.007589 0.005901 0.030906 0.016472 0.013526 0.010002 0.000000 0.000000 0.040152 0.013333 0.00000 0.000000 0.0 0.025654 0.009735 0.012185 0.000000 0.025209 0.022171 0.027844 0.024136 0.006296 0.015240 0.009936 0.013758 0.00000 0.000000 0.012027 0.012206 0.013619 0.009029 0.006578 0.023237 0.007224 0.014965 0.024319 0.000000 0.000000 0.045165 0.010807 0.000000 0.047487 0.087397 0.007273 0.023019 0.000000 0.005892 0.030347 0.010988 0.000000 0.000000 0.009337 0.013306 0.000000 0.037319 0.000000 0.010168 0.000000 0.024744 0.000000 0.000000 0.049208 0.023068 0.025929 0.008561 0.000000 0.000000 0.027382 0.021584 0.000000 0.011699 0.090039 0.005995 0.014440 0.010279 0.008283 0.014022 0.000000 0.011063 0.000000 0.023733 0.04599 0.009315 0.023412 0.028331 0.026418 0.000000 0.000000 0.024015 0.032512 0.010970 0.000000 0.000000 0.00000 0.009804 0.013267 0.000000 0.028338 0.009521 0.000000 0.000000 0.000000 0.039216 0.000000 0.000000 0.035282 0.043948 0.000000 0.074517 0.012423 0.012750 0.011454 0.000000 0.041500 0.000000 0.000000 0.010461 0.000000 0.010194 0.033142 0.00000 0.021028 0.000000 0.021180 0.000000 0.013607 0.033351 0.006868 0.000000 0.011603 0.000000 0.014497 0.009771 0.123482 0.060360 0.007523 0.000000 0.013864 0.017921 0.000000 0.000000 0.010028 0.000000 0.000000 0.000000 0.023283 0.021828 0.025679 0.021350 0.025229 0.000000 0.000000 0.010497 0.009393 0.009284 0.010959 0.027203 0.0 0.009146 0.000000 0.029632 0.0 0.000000 0.035429 0.032085 0.039741 0.021820 0.000000 0.070431 0.000000 0.000000 0.000000 0.029168 0.048016 0.00000 0.000000 0.019547 0.016770 0.000000 0.016215 0.022836 0.01466 0.037643 0.017982 0.000000 0.014191 0.000000 0.120645 0.000000 0.000000 0.054129 0.013774 0.000000 0.000000 0.010211 0.028048 0.000000 0.006754 0.020279 0.038175 0.000000 0.028284 0.008648 0.000000 0.014703 0.009533 0.012218 0.030332 0.015392 0.033158 0.000000 0.0 0.000000 0.020249 0.013859 0.018012 0.016272 0.007294 0.008282 0.000000 0.076786 0.0 0.000000 0.016686 0.063373 0.026771 0.051072 0.000000 0.000000 0.035613 0.031706 0.016078 0.008049 0.000000 0.000000 0.014393 0.018644 0.009854 0.013884 0.000000 0.024285 0.016531 0.017203 0.028082 0.008726 0.000000 0.000000 0.020206 0.000000 0.013825 0.024755 0.000000 0.025748 0.023003 0.025824 0.0000 0.025111 0.014056 0.026208 0.008444 0.011140 0.009438 0.000000 0.000000 0.000000 0.032862 0.006878 0.000000 0.010131 0.029199 0.025497 0.012538 0.000000 0.000000 0.000000 0.017174 0.028308 0.019554 0.010047 0.012444 0.017716 0.000000 0.019036 0.007423 0.026269 0.000000 0.000000 0.000000 0.000000 0.018596 0.015314 0.000000 0.060897 0.000000 0.00000 0.0 0.0 0.009394 0.0 0.009832 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.013345 0.000000 0.000000 0.0 0.027345 0.000000 0.000000 0.000000 0.039876 0.008252 0.033522 0.000000 0.060780 0.015351 0.000000 0.000000 0.037427 0.017201 0.012013 0.000000 0.025933 0.000000 0.017240 0.000000 0.016939 0.037400 0.000000 0.000000 0.000000 0.0 0.016959 0.013545 0.029387 0.031967 0.010333 0.000000 0.012703 0.030799 0.000000 0.000000 0.031279 0.000000 0.027439 0.094118 0.015437 0.016647 0.000000 0.008469 0.011000 0.017999 0.000000 0.000000 0.000000 0.013107 0.000000 0.000000 0.027352 0.009665 0.000000 0.000000 0.0 0.0 0.025082 0.016547 0.027783 0.013567 0.040568 0.000000 0.017082 0.016926 0.000000 0.011140 0.018619 0.000000 0.006805 0.014357 0.000000 0.063486 0.000000 0.000000 0.000000 0.018354 0.025239 0.042983 0.027474 0.018410 0.044429 0.048572 0.000000 0.030250 0.000000 0.050451 0.000000 0.000000 0.000000 0.019081 0.013917 0.138768 0.000000 0.045748 0.000000 0.052452 0.000000 0.000000 0.148192 0.017627 0.000000 0.112761 0.000000 0.024737 0.012399 0.000000 0.000000 0.000000 0.000000 0.036834 0.019354 0.010334 0.017243 0.010651 0.021229 0.013107 0.035095 0.015169 0.000000 0.000000 0.000000 0.075532 0.000000 0.019515 0.009962 0.014327 0.000000 0.016682 0.026839 0.009287 0.000000 0.000000 0.000000 0.050969 0.000000 0.016566 0.066479 0.138116 0.000000 0.000000 0.019681 0.000000 0.015634 0.000000 0.060648 0.000000 0.011390 0.000000 0.000000 0.006810 0.000000 0.000000 0.000000 0.000000 0.016957 0.016739 0.030836 0.000000 0.000000 0.009946 0.000000 0.000000 0.000000 0.016718 0.000000 0.006877 0.000000 0.012631 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025024 0.014691 0.015590 0.015061 0.000000 0.015235 0.075404 0.000000 0.042458 0.000000 0.047294 0.000000 0.025891 0.011211 0.000000 0.000000 0.000000 0.000000 0.018371 0.000000 0.017005 0.000000 0.000000 0.027645 0.000000 0.000000 0.029425 0.000000 0.000000 0.000000 0.000000 0.000000 0.016292 0.000000 0.000000 0.000000 0.007449 0.019279 0.054998 0.000000 0.026229 0.000000 0.000000 0.000000 0.000000 0.032246 0.000000 0.035025 0.016262 0.000000 0.000000 0.017838 0.017659 0.019387 0.000000 0.000000 0.016885 0.010080 0.000000 0.000000 0.025104 0.043919 0.000000 0.000000 0.007786 0.000000 0.000000 0.000000 0.012815 0.000000 0.000000 0.015626 0.000000 0.000000 0.011794 0.006810 0.012254 0.000000 0.000000 0.006611 0.000000 0.023327 0.000000 0.000000 0.085622 0.020219 0.000000 0.018363 0.038633 0.011197 0.000000 0.005527 0.000000 0.000000 0.000000 0.000000 0.006437 0.012541 0.000000 0.016207 0.000000 0.000000 0.000000 0.034660 0.007980 0.013071 0.011944 0.000000 0.017551 0.008831 0.015693 0.008627 0.032017 0.019783 0.030521 0.000000 0.010166 0.020612 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014383 0.000000 0.000000 0.030845 0.026669 0.000000 0.024284 0.007367 0.057038 0.000000 0.012584 0.000000 0.059578 0.014235 0.022701 0.000000 0.054487 0.044603 0.000000 0.027351 0.000000 0.000000 0.000000 0.000000 0.000000 0.022562 0.000000 0.000000 0.000000 0.010281 0.0 0.042306 0.048822 0.017702 0.000000 0.027809 0.012961 0.000000 0.0 0.010692 0.0 0.00000 0.013665 0.0 0.048223 0.015592 0.013893 0.000000 0.024387 0.000000 0.022052 0.013248 0.0 0.0 0.009089 0.018800 0.008360 0.0 0.016236 0.0 0.000000 0.009465 0.000000 0.000000 0.000000 0.0 0.0 0.006405 0.000000 0.000000 0.026505 0.016235 0.035225 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.022770 0.000000 0.010962 0.0 0.015904 0.090105 0.018646 0.02382 0.0 0.009974 0.0 0.0 0.000000 0.041929 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.014220 0.026114 0.017351 0.000000 0.000000 0.0 0.000000 0.012387 0.000000 0.010162 0.009247 0.000000 0.000000 0.000000 0.055626 0.0 0.057256 0.0 0.017808 0.000000 0.028664 0.000000 0.008716 0.012225 0.000000 0.030326 0.006186 0.017977 0.008616 0.030151 0.019237 0.028639 0.000000 0.000000 0.000000 0.000000 0.022597 0.013066 0.000000 0.032813 0.0 0.000000 0.022457 0.0 0.021667 0.008505 0.0 0.046174 0.028940 0.006854 0.070873 0.000000 0.060483 0.000000 0.000000 0.0 0.000000 0.034499 0.000000 0.016941 0.011091 0.000000 0.0 0.031176 0.015898 0.008998 0.021456 0.049263 0.000000 0.000000 0.017623 0.000000 0.000000 0.021231 0.000000 0.000000 0.000000 0.008818 0.021071 0.000000 0.0 0.007201 0.024373 0.054280 0.000000 0.006999 0.000000 0.000000 0.057289 0.000000 0.000000 0.000000 0.009499 0.009731 0.114707 0.013682 0.000000 0.012934 0.042473 0.011089 0.007954 0.021160 0.021771 0.000000 0.011072 0.000000 0.0 0.000000 0.000000 0.023452 0.008694 0.000000 0.00000 0.099061 0.058939 0.027764 0.021239 0.018008 0.038223 0.021360 0.021367 0.000000 0.018349 0.00000 0.079669 0.000000 0.008647 0.000000 0.000000 0.015896 0.015921 0.025315 0.0 0.00983 0.00000 0.000000 0.000000 0.035708 0.000000 0.000000 0.013463 0.000000 0.023066 0.012823 0.0 0.016185 0.000000 0.006760 0.000000 0.000000 0.000000 0.011561 0.038732 0.000000 0.042320 0.024299 0.040107 0.010441 0.010693 0.000000 0.015041 0.000000 0.0 0.0 0.000000 0.012802 0.000000 0.0 0.0 0.00527 0.000000 0.0 0.0 0.0 0.000000 0.0 0.029772 0.000000 0.013287 0.022734 0.029358 0.017317 0.000000 0.042739 0.039808 0.026328 0.000000 0.030174 0.0 0.031198 0.020756 0.000000 0.014439 0.023434 0.00000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.007660 0.0 0.000000 0.019246 0.021471 0.026991 0.000000 0.000000 0.0 0.000000 0.014811 0.00000 0.000000 0.037174 0.023549 0.000000 0.022533 0.015166 0.0 0.000000 0.035504 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.018298 0.0 0.000000 0.0 0.017624 0.0 0.0 0.0 0.000000 0.026872 0.000000 0.000000 0.051510 0.000000 0.054443 0.026559 0.000000 0.000000 0.00000 0.000000 0.012454 0.000000 0.000000 0.031288 0.042162 0.033911 0.0 0.0 0.000000 0.000000 0.013292 0.022285 0.0 0.00000 0.000000 0.000000 0.000000 0.034889 0.02755 0.018332 0.030936 0.0 0.026390 0.000000 0.083959 0.011549 0.012240 0.0 0.026781 0.018241 0.000000 0.040272 0.00000 0.00000 0.000000 0.000000 0.000000 0.000000 0.012285 0.041148 0.000000 0.018492 0.000000 0.014872 0.000000 0.0 0.029830 0.040107 0.013659 0.0 0.0 0.012260 0.000000 0.000000 0.000000 0.025500 0.0 0.0 0.0 0.0 0.039728 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.009508 0.007740 0.012065 0.038537 0.017278 0.000000 0.000000 0.022515 0.008742 0.0 0.0 0.000000 0.0 0.0 0.0 0.000000 0.006638 0.040032 0.010458 0.000000 0.010376 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.000000 0.054790 0.000000 0.004178 0.000000 0.000000 0.014014 0.000000 0.000000 0.0 0.0 0.000000 0.045389 0.000000 0.030446 0.0 0.020082 0.026780 0.0 0.000000 0.013619 0.0 0.031384 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.005017 0.0 0.000000 0.0 0.0 0.0 0.000000 0.008793 0.000000 0.000000 0.000000 0.023860 0.000000 0.045572 0.015177 0.000000 0.013139 0.0 0.008243 0.000000 0.044542 0.021042 0.000000 0.035538 0.035538 0.000000 0.000000 0.000000 0.009285 0.000000 0.0 0.0 0.000000 0.021986 0.030271 0.009652 0.015499 0.072049 0.000000 0.000000 0.013908 0.000000 0.012507 0.0 0.023757 0.000000 0.0 0.000000 0.017720 0.000000 0.038766 0.018035 0.000000 0.038456 0.000000 0.000000 0.019470 0.016181 0.0 0.025719 0.0 0.021323 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.055016 0.0 0.018573 0.018675 0.000000 0.026664 0.0 0.009649 0.027852 0.000000 0.011638 0.041472 0.043792 0.018118 0.000000 0.000000 0.000000 0.0 0.007506 0.026139 0.000000 0.0 0.0 0.000000 0.008848 0.000000 0.056505 0.000000 0.021525 0.0 0.088546 0.0 0.0 0.021990 0.027271 0.022532 0.000000 0.019700 0.021499 0.054742 0.035932 0.000000 0.0 0.000000 0.016397 0.02674 0.016663 0.000000 0.033597 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.012357 0.000000 0.021543 0.017479 0.012357 0.000000 0.008892 0.020234 0.000000 0.034819 0.0 0.000000 0.010647 0.000000 0.018716 0.008786 0.014305 0.017066 0.000000 0.000000 0.012535 0.000000 0.000000 0.0 0.000000 0.0 0.052092 0.008832 0.061685 0.031591 0.000000 0.009051 0.022473 0.0 0.020443 0.000000 0.000000 0.010487 0.051359 0.0 0.009418 0.000000 0.025196 0.011949 0.027736 0.000000 0.059503 0.022386 0.000000 0.014515 0.012520 0.009940 0.000000 0.0 0.000000 0.029040 0.000000 0.036457 0.000000 0.000000 0.026287 0.019658 0.022731 0.000000 0.000000 0.000000 0.032999 0.000000 0.000000 0.034545 0.008500 0.029644 0.000000 0.0179 0.000000 0.000000 0.000000 0.007962 0.010489 0.000000 0.000000 0.008492 0.000000 0.00000 0.021467 0.056385 0.0 0.000000 0.000000 0.023768 0.013509 0.038847 0.0 0.0 0.000000 0.000000 0.000000 0.054266 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.01184 0.015748 0.019437 0.000000 0.063673 0.022394 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.017608 0.000000 0.032703 0.000000 0.0 0.014195 0.000000 0.000000 0.017511 0.019700 0.009571 0.019700 0.000000 0.000000 0.008655 0.028554 0.0 0.0 0.025364 0.000000 0.00000 0.019444 0.000000 0.008698 0.021433 0.034319 0.022048 0.000000 0.000000 0.000000 0.023593 0.0 0.008368 0.000000 0.000000 0.000000 0.040625 0.000000 0.02127 0.014666 0.000000 0.000000 0.006762 0.000000 0.000000 0.016243 0.0 0.000000 0.052691 0.0 0.013111 0.043746 0.000000 0.000000 0.000000 0.014442 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.009155 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.008025 0.010785 0.018722 0.000000 0.023964 0.000000 0.000000 0.099912 0.000000 0.000000 0.000000 0.007251 0.027292 0.000000 0.000000 0.034496 0.000000 0.0 0.013716 0.000000 0.011369 0.000000 0.027292 0.000000 0.000000 0.0 0.000000 0.019491 0.000000 0.008577 0.041145 0.000000 0.036948 0.019275 0.013680 0.031598 0.0 0.000000 0.047917 0.000000 0.018782 0.000000 0.000000 0.012108 0.008744 0.000000 0.000000 0.012334 0.000000 0.030493 0.026844 0.020396 0.0 0.0 0.000000 0.015313 0.000000 0.009032 0.034297 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.064285 0.011490 0.025498 0.000000 0.000000 0.000000 0.0 0.009480 0.013743 0.000000 0.0 0.000000 0.029423 0.022692 0.000000 0.000000 0.012841 0.000000 0.0 0.000000 0.034182 0.052900 0.052280 0.0 0.000000 0.015724 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.013528 0.012289 0.009997 0.000000 0.008376 0.000000 0.000000 0.000000 0.007252 0.008873 0.0 0.021560 0.000000 0.000000 0.058329 0.000000 0.042404 0.000000 0.000000 0.000000 0.012908 0.007529 0.000000 0.0 0.000000 0.000000 0.0 0.021050 0.019072 0.000000 0.014825 0.021059 0.062033 0.0 0.019798 0.0 0.000000 0.0 0.000000 0.000000 0.078845 0.000000 0.070151 0.0 0.000000 0.009900 0.000000 0.045141 0.0 0.000000 0.000000 0.028582 0.000000 0.037642 0.000000 0.024923 0.044685 0.000000 0.000000 0.038266 0.000000 0.000000 0.000000 0.027694 0.008619 0.000000 0.000000 0.000000 0.045535 0.000000 0.000000 0.000000 0.000000 0.033359 0.000000 0.063298 0.012978 0.000000 0.000000 0.000000 0.018830 0.016490 0.037681 0.000000 0.020350 0.020889 0.009253 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.021871 0.013223 0.000000 0.000000 0.081607 0.029636 0.000000 0.000000 0.000000 0.000000 0.021746 0.039848 0.000000 0.088305 0.000000 0.000000 0.000000 0.000000 0.000000 0.016289 0.000000 0.0 0.000000 0.000000 0.035478 0.000000 0.000000 0.074814 0.030131 0.017807 0.016897 0.016982 0.028081 0.000000 0.099558 0.041547 0.022747 0.015655 0.000000 0.022595 0.021867 0.0 0.015504 0.000000 0.059400 0.000000 0.000000 0.055305 0.000000 0.009513 0.000000 0.064059 0.0 0.035311 0.014856 0.000000 0.035500 0.010548 0.023431 0.000000 0.000000 0.000000 0.000000 0.008509 0.000000 0.01593 0.008619 0.046765 0.025354 0.035769 0.000000 0.030807 0.047654 0.000000 0.000000 0.012557 0.0 0.000000 0.000000 0.041559 0.071738 0.020732 0.000000 0.026473 0.051397 0.000000 0.000000 0.000000 0.019389 0.025605 0.021521 0.015857 0.000000 0.000000 0.011066 0.021619 0.049519 0.000000 0.000000 0.012089 0.000000 0.013200 0.026975 0.029258 0.00000 0.066913 0.000000 0.000000 0.025068 0.000000 0.034516 0.037141 0.000000 0.000000 0.000000 0.007627 0.017188 0.000000 0.000000 0.048005 0.000000 0.014369 0.014366 0.000000 0.000000 0.028367 0.000000 0.044672 0.053678 0.017436 0.089727 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.009622 0.021147 0.050639 0.010826 0.000000 0.036096 0.0 0.000000 0.0 0.0 0.043269 0.0 0.000000 0.019736 0.051482 0.007167 0.0 0.000000 0.0 0.000000 0.017678 0.000000 0.000000 0.009619 0.050741 0.000000 0.019640 0.000000 0.000000 0.000000 0.000000 0.012056 0.000000 0.000000 0.000000 0.014763 0.016985 0.000000 0.012635 0.000000 0.075889 0.0 0.000000 0.141542 0.000000 0.000000 0.000000 0.019582 0.036520 0.0 0.012232 0.000000 0.020569 0.000000 0.015111 0.000000 0.0 0.020773 0.000000 0.181538 0.023468 0.000000 0.000000 0.018984 0.000000 0.00000 0.018197 0.000000 0.000000 0.000000 0.0 0.00000 0.0 0.000000 0.018305 0.000000 0.00000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.014785 0.009191 0.000000 0.000000 0.012436 0.0 0.019444 0.041359 0.0 0.007055 0.0 0.0 0.029949 0.035348 0.000000 0.00000 0.000000 0.034944 0.0 0.000000 0.0 0.000000 0.020944 0.000000 0.000000 0.0 0.036084 0.000000 0.000000 0.000000 0.011004 0.042983 0.000000 0.019922 0.028939 0.000000 0.017333 0.009781 0.000000 0.028257 0.000000 0.009364 0.072902 0.026906 0.023644 0.024047 0.000000 0.023569 0.051350 0.025797 0.000000 0.013457 0.000000 0.054358 0.011878 0.047501 0.000000 0.000000 0.000000 0.017174 0.020006 0.068053 0.045669 0.000000 0.013991 0.000000 0.021753 0.000000 0.034993 0.022313 0.029059 0.018446 0.000000 0.048805 0.054412 0.013511 0.049852 0.042206 0.013255 0.000000 0.037885 0.016191 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014936 0.0 0.007943 0.011767 0.017274 0.018880 0.018571 0.000000 0.028787 0.0 0.018939 0.008374 0.014508 0.055293 0.023509 0.0 0.000000 0.000000 0.029334 0.000000 0.000000 0.016494 0.007733 0.000000 0.000000 0.031719 0.000000 0.021996 0.015949 0.000000 0.000000 0.025912 0.008460 0.021875 0.014204 0.000000 0.000000 0.017239 0.034348 0.065938 0.046630 0.0 0.020282 0.012497 0.015054 0.012373 0.000000 0.007871 0.014325 0.006815 0.000000 0.000000 0.040002 0.0 0.018930 0.011817 0.024959 0.032087 0.000000 0.000000 0.015675 0.000000 0.0 0.007405 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.100096 0.073675 0.0 0.0 0.0 0.000000 0.018692 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.030019 0.024904 0.000000 0.000000 0.000000 0.0 0.007285 0.000000 0.000000 0.000000 0.000000 0.032866 0.022243 0.000000 0.012731 0.018605 0.050640 0.006161 0.009040 0.000000 0.000000 0.0 0.012448 0.000000 0.030500 0.022195 0.000000 0.051122 0.000000 0.007680 0.013311 0.000000 0.000000 0.010940 0.000000 0.026369 0.000000 0.010976 0.067589 0.000000 0.000000 0.022868 0.000000 0.000000 0.022725 0.000000 0.009113 0.000000 0.007147 0.012795 0.011328 0.000000 0.006900 0.016492 0.013787 0.000000 0.025904 0.000000 0.062868 0.018592 0.007474 0.000000 0.052839 0.000000 0.000000 0.00000 0.040786 0.007146 0.037839 0.012238 0.026048 0.000000 0.035886 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.018622 0.012444 0.009802 0.032051 0.000000 0.014962 0.021559 0.000000 0.000000 0.006663 0.013052 0.000000 0.013746 0.010778 0.018007 0.014082 0.000000 0.000000 0.000000 0.000000 0.034752 0.021357 0.013904 0.008602 0.000000 0.000000 0.014177 0.035293 0.0 0.062204 0.017980 0.0 0.019736 0.000000 0.020770 0.000000 0.000000 0.000000 0.000000 0.009456 0.008394 0.000000 0.026063 0.014711 0.011224 0.000000 0.000000 0.000000 0.016795 0.013146 0.009906 0.0 0.012745 0.014985 0.0 0.020998 0.015312 0.000000 0.018274 0.0 0.013032 0.0 0.000000 0.007532 0.000000 0.000000 0.040511 0.000000 0.020266 0.000000 0.0 0.000000 0.005402 0.092961 0.013062 0.000000 0.010593 0.000000 0.00000 0.016396 0.000000 0.000000 0.015918 0.000000 0.000000 0.0 0.011404 0.000000 0.016257 0.017135 0.000000 0.000000 0.000000 0.000000 0.026317 0.055329 0.000000 0.010394 0.000000 0.000000 0.000000 0.005817 0.000000 0.000000 0.000000 0.00000 0.00000 0.016114 0.008118 0.000000 0.016972 0.000000 0.000000 0.000000 0.035584 0.000000 0.000000 0.000000 0.014000 0.000000 0.00000 0.000000 0.032354 0.000000 0.000000 0.024925 0.000000 0.019855 0.000000 0.000000 0.015896 0.000000 0.007074 0.000000 0.005937 0.018936 0.000000 0.006307 0.000000 0.055602 0.043831 0.006130 0.030411 0.011210 0.000000 0.000000 0.000000 0.015198 0.000000 0.016703 0.006135 0.000000 0.009608 0.000000 0.027253 0.029010 0.025178 0.012291 0.011687 0.000000 0.011881 0.000000 0.015802 0.000000 0.027494 0.000000 0.012489 0.000000 0.012652 0.0 0.000000 0.009554 0.000000 0.024772 0.000000 0.014663 0.011161 0.000000 0.000000 0.000000 0.000000 0.000000 0.046648 0.023111 0.000000 0.000000 0.032697 0.013295 0.000000 0.000000 0.038760 0.017429 0.000000 0.031856 0.000000 0.000000 0.000000 0.012201 0.007320 0.012385 0.011022 0.031737 0.000000 0.007009 0.000000 0.0165 0.012393 0.007123 0.008193 0.006156 0.006888 0.015372 0.018815 0.038164 0.010565 0.019166 0.060310 0.010489 0.000000 0.019602 0.033221 0.000000 0.006244 0.000000 0.00000 0.009022 0.017703 0.025615 0.007111 0.032466 0.014739 0.014556 0.000000 0.030637 0.062794 0.054914 0.020323 0.030134 0.000000 0.011526 0.033537 0.0 0.000000 0.000000 0.000000 0.030925 0.000000 0.000000 0.021889 0.056082 0.000000 0.000000 0.021317 0.016743 0.000000 0.000000 0.023237 0.009099 0.015051 0.000000 0.000000 0.000000 0.000000 0.000000 0.016944 0.000000 0.000000 0.008376 0.009314 0.037105 0.000000 0.000000 0.006287 0.000000 0.010817 0.022896 0.000000 0.036795 0.006369 0.007015 0.000000 0.000000 0.037611 0.000000 0.000000 0.033339 0.022804 0.015030 0.043452 0.028418 0.005220 0.010688 0.000000 0.059525 0.000000 0.005244 0.000000 0.011588 0.031246 0.044073 0.029570 0.026824 0.053483 0.00000 0.000000 0.046889 0.037925 0.014987 0.009552 0.005201 0.026674 0.011589 0.000000 0.030760 0.077522 0.000000 0.000000 0.010923 0.018109 0.010812 0.017570 0.022500 0.000000 0.000000 0.039021 0.029160 0.000000 0.010734 0.000000 0.049398 0.012934 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.006624 0.000000 0.000000 0.000000 0.012473 0.017527 0.000000 0.025828 0.018571 0.000000 0.016420 0.011310 0.000000 0.022765 0.025798 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.011149 0.000000 0.000000 0.000000 0.017820 0.000000 0.000000 0.000000 0.000000 0.016725 0.000000 0.012479 0.108693 0.000000 0.02286 0.000000 0.023889 0.011451 0.000000 0.000000 0.000000 0.000000 0.000000 0.011749 0.000000 0.000000 0.000000 0.039172 0.000000 0.009467 0.000000 0.021499 0.000000 0.000000 0.00000 0.017464 0.021306 0.040220 0.000000 0.000000 0.007043 0.000000 0.000000 0.000000 0.016618 0.000000 0.0 0.020835 0.051127 0.033241 0.020310 0.016248 0.000000 0.012003 0.040302 0.203223 0.000000 0.0 0.000000 0.006715 0.051009 0.014045 0.029257 0.032712 0.000000 0.008200 0.077800 0.000000 0.000000 0.000000 0.017854 0.000000 0.018535 0.000000 0.000000 0.000000 0.000000 0.008219 0.000000 0.017276 0.000000 0.019092 0.000000 0.020512 0.011836 0.014029 0.009941 0.026502 0.000000 0.000000 0.058219 0.016606 0.010279 0.013143 0.031610 0.027083 0.048385 0.044100 0.012406 0.033403 0.000000 0.033399 0.000000 0.027565 0.013086 0.000000 0.000000 0.000000 0.000000 0.023886 0.000000 0.078910 0.014204 0.015641 0.000000 0.078945 0.025701 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011960 0.010145 0.037320 0.00000 0.000000 0.031985 0.011834 0.014411 0.000000 0.000000 0.039600 0.023241 0.009332 0.000000 0.000000 0.047312 0.046123 0.047793 0.000000 0.008587 0.000000 0.018356 0.013748 0.009385 0.000000 0.043311 0.014397 0.025420 0.136698 0.000000 0.000000 0.000000 0.012370 0.000000 0.000000 0.000000 0.000000 0.009485 0.017952 0.000000 0.000000 0.044694 0.017404 0.000000 0.000000 0.000000 0.000000 0.030654 0.000000 0.0 0.033464 0.077644 0.005963 0.000000 0.068173 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.028740 0.000000 0.0 0.000000 0.00806 0.008853 0.044354 0.000000 0.070856 0.000000 0.039200 0.073079 0.000000 0.029146 0.000000 0.044852 0.014480 0.029788 0.000000 0.012951 0.009897 0.011764 0.084762 0.020109 0.000000 0.010958 0.000000 0.000000 0.078043 0.0 0.031481 0.0 0.035148 0.00000 0.000000 0.000000 0.0 0.000000 0.043334 0.013513 0.034216 0.000000 0.000000 0.029542 0.0 0.000000 0.012604 0.0 0.000000 0.107339 0.02167 0.000000 0.000000 0.000000 0.0 0.021771 0.000000 0.000000 0.022982 0.014684 0.015109 0.034573 0.000000 0.000000 0.000000 0.048973 0.000000 0.045140 0.0 0.000000 0.000000 0.013149 0.029026 0.0 0.0 0.000000 0.000000 0.040190 0.010284 0.000000 0.000000 0.000000 0.000000 0.000000 0.091806 0.000000 0.034926 0.000000 0.000000 0.016548 0.000000 0.010859 0.011154 0.020413 0.000000 0.000000 0.007804 0.000000 0.000000 0.000000 0.007505 0.074533 0.009201 0.000000 0.0 0.000000 0.015344 0.009902 0.01186 0.000000 0.000000 0.000000 0.013762 0.000000 0.046625 0.009670 0.0 0.0 0.000000 0.049317 0.012483 0.000000 0.000000 0.006920 0.034062 0.000000 0.160049 0.000000 0.0 0.0 0.008271 0.000000 0.010753 0.033473 0.000000 0.014035 0.008732 0.000000 0.000000 0.000000 0.021705 0.000000 0.012542 0.000000 0.0 0.052907 0.000000 0.013304 0.000000 0.000000 0.0 0.009440 0.021159 0.029533 0.000000 0.029388 0.013188 0.000000 0.014608 0.014139 0.038291 0.000000 0.000000 0.011105 0.016060 0.018360 0.019336 0.000000 0.010806 0.000000 0.000000 0.008965 0.051845 0.017558 0.038925 0.039441 0.016915 0.000000 0.000000 0.000000 0.008736 0.015557 0.022375 0.000000 0.000000 0.000000 0.000000 0.012783 0.013539 0.000000 0.0 0.000000 0.016019 0.014209 0.024613 0.0 0.000000 0.000000 0.000000 0.032973 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.050579 0.023483 0.000000 0.034397 0.000000 0.013999 0.000000 0.0 0.000000 0.000000 0.000000 0.021096 0.000000 0.010967 0.050618 0.039129 0.041245 0.013857 0.000000 0.000000 0.012279 0.015885 0.032235 0.000000 0.000000 0.000000 0.022771 0.024532 0.016204 0.000000 0.042514 0.012560 0.038879 0.013611 0.0 0.015022 0.000000 0.015481 0.014143 0.000000 0.000000 0.0 0.000000 0.029488 0.043099 0.000000 0.000000 0.034998 0.000000 0.000000 0.000000 0.000000 0.000000 0.009071 0.000000 0.0 0.000000 0.000000 0.027394 0.000000 0.031743 0.000000 0.000000 0.000000 0.071026 0.000000 0.000000 0.000000 0.000000 0.000000 0.016257 0.018603 0.0 0.000000 0.000000 0.000000 0.014887 0.000000 0.000000 0.023824 0.000000 0.000000 0.000000 0.000000 0.020206 0.000000 0.000000 0.000000 0.000000 0.023147 0.000000 0.000000 0.000000 0.030894 0.020476 0.008386 0.0 0.000000 0.0 0.035109 0.000000 0.045733 0.000000 0.000000 0.000000 0.018952 0.010598 0.000000 0.036625 0.000000 0.020946 0.000000 0.000000 0.024953 0.000000 0.000000 0.000000 0.000000 0.013747 0.053230 0.053428 0.000000 0.005839 0.000000 0.040352 0.020799 0.000000 0.016951 0.044221 0.036057 0.019344 0.034171 0.013263 0.000000 0.000000 0.028406 0.000000 0.000000 0.024486 0.044101 0.011996 0.048322 0.014275 0.000000 0.000000 0.061436 0.000000 0.000000 0.000000 0.037223 0.000000 0.013957 0.012572 0.000000 0.000000 0.053194 0.009736 0.053302 0.029400 0.014526 0.0 0.015613 0.000000 0.0 0.014964 0.020830 0.027553 0.000000 0.011529 0.000000 0.000000 0.000000 0.025897 0.000000 0.022454 0.000000 0.000000 0.015316 0.026651 0.011799 0.000000 0.000000 0.000000 0.013632 0.019653 0.015422 0.000000 0.014053 0.012884 0.024191 0.0 0.000000 0.000000 0.024941 0.000000 0.000000 0.000000 0.000000 0.013335 0.011327 0.000000 0.011376 0.000000 0.000000 0.000000 0.016073 0.000000 0.048933 0.017293 0.000000 0.015536 0.030814 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.000000 0.000000 0.035119 0.016200 0.019641 0.000000 0.044810 0.000000 0.000000 0.000000 0.000000 0.032153 0.000000 0.000000 0.013466 0.00000 0.000000 0.024873 0.049019 0.017035 0.009636 0.000000 0.000000 0.026712 0.000000 0.0 0.00000 0.000000 0.072565 0.000000 0.000000 0.000000 0.021258 0.000000 0.000000 0.072048 0.000000 0.045055 0.000000 0.008973 0.019950 0.026746 0.000000 0.019267 0.025905 0.000000 0.000000 0.043250 0.000000 0.034709 0.025273 0.012356 0.000000 0.000000 0.020250 0.007790 0.006214 0.000000 0.013907 0.015768 0.000000 0.000000 0.033078 0.000000 0.020475 0.000000 0.000000 0.065731 0.012757 0.000000 0.092897 0.011682 0.000000 0.000000 0.000000 0.00000 0.011693 0.028222 0.000000 0.000000 0.000000 0.000000 0.000000 0.009931 0.000000 0.000000 0.000000 0.000000 0.010268 0.018375 0.000000 0.000000 0.000000 0.009127 0.000000 0.000000 0.000000 0.000000 0.011867 0.000000 0.000000 0.000000 0.028392 0.041660 0.035507 0.008042 0.000000 0.0 0.016599 0.000000 0.000000 0.000000 0.000000 0.028921 0.000000 0.000000 0.0 0.00000 0.000000 0.011926 0.0 0.000000 0.000000 0.009268 0.000000 0.000000 0.000000 0.012536 0.000000 0.000000 0.000000 0.059786 0.013086 0.0 0.000000 0.0 0.0 0.000000 0.041267 0.000000 0.009275 0.000000 0.000000 0.000000 0.032356 0.015915 0.013507 0.000000 0.018579 0.026272 0.010034 0.0 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.018387 0.000000 0.000000 0.044987 0.000000 0.019609 0.000000 0.000000 0.000000 0.019909 0.000000 0.000000 0.021338 0.000000 0.015165 0.000000 0.029574 0.0 0.032396 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.027542 0.019374 0.013937 0.000000 0.000000 0.000000 0.014620 0.046522 0.015034 0.000000 0.053922 0.000000 0.027465 0.000000 0.000000 0.014194 0.014275 0.016934 0.027024 0.097329 0.012505 0.000000 0.025173 0.0 0.018141 0.000000 0.000000 0.000000 0.000000 0.014345 0.000000 0.000000 0.000000 0.000000 0.000000 0.017887 0.045355 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.049819 0.016795 0.0 0.032248 0.000000 0.008989 0.008966 0.009307 0.020584 0.000000 0.020328 0.000000 0.000000 0.050405 0.011962 0.012722 0.000000 0.096026 0.028169 0.023753 0.009315 0.0 0.008238 0.021081 0.000000 0.000000 0.000000 0.000000 0.032537 0.000000 0.000000 0.021380 0.071813 0.000000 0.000000 0.048650 0.000000 0.020113 0.000000 0.000000 0.021449 0.197495 0.000000 0.011205 0.012543 0.000000 0.014881 0.012668 0.025767 0.000000 0.013509 0.000000 0.000000 0.000000 0.000000 0.029452 0.000000 0.000000 0.000000 0.028956 0.000000 0.000000 0.03644 0.000000 0.026064 0.000000 0.000000 0.000000 0.014158 0.021221 0.017496 0.000000 0.012313 0.015494 0.011163 0.007243 0.000000 0.012930 0.000000 0.015179 0.000000 0.008899 0.000000 0.000000 0.000000 0.010325 0.000000 0.000000 0.007430 0.000000 0.015443 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.020891 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024436 0.009857 0.054259 0.0 0.039337 0.000000 0.017994 0.008432 0.036963 0.023112 0.010147 0.006402 0.025812 0.000000 0.016741 0.018526 0.009693 0.047071 0.033012 0.009770 0.000000 0.012896 0.023743 0.009804 0.038020 0.014814 0.022548 0.0 0.016082 0.012954 0.011672 0.007312 0.000000 0.017342 0.000000 0.017947 0.000000 0.017534 0.000000 0.000000 0.000000 0.011437 0.000000 0.000000 0.000000 0.022894 0.017384 0.000000 0.050309 0.000000 0.000000 0.000000 0.022994 0.000000 0.048409 0.000000 0.000000 0.044974 0.014197 0.000000 0.011601 0.000000 0.000000 0.015708 0.000000 0.016683 0.029868 0.011491 0.022965 0.096430 0.038053 0.000000 0.101340 0.000000 0.080911 0.011409 0.006175 0.000000 0.000000 0.000000 0.000000 0.000000 0.012343 0.007310 0.025605 0.026264 0.010778 0.000000 0.000000 0.010555 0.019516 0.040960 0.0 0.030403 0.006564 0.000000 0.029489 0.062730 0.065231 0.0 0.016671 0.007333 0.000000 0.011389 0.073611 0.012129 0.037401 0.019573 0.009638 0.000000 0.00000 0.046586 0.055271 0.029012 0.000000 0.076671 0.026305 0.000000 0.024643 0.000000 0.000000 0.000000 0.017826 0.005355 0.037489 0.054383 0.034079 0.021739 0.000000 0.000000 0.000000 0.000000 0.000000 0.031555 0.000000 0.074448 0.000000 0.011879 0.000000 0.009342 0.060817 0.000000 0.059483 0.013735 0.000000 0.012178 0.015269 0.000000 0.033371 0.043274 0.000000 0.012401 0.000000 0.000000 0.008161 0.039052 0.028436 0.020479 0.000000 0.000000 0.010375 0.000000 0.000000 0.000000 0.000000 0.063604 0.011103 0.000000 0.005026 0.000000 0.035311 0.005696 0.000000 0.043077 0.000000 0.000000 0.000000 0.025469 0.048951 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.036315 0.000000 0.041324 0.000000 0.013649 0.012522 0.000000 0.027951 0.013572 0.012795 0.000000 0.083534 0.000000 0.000000 0.000000 0.012697 0.000000 0.016545 0.022567 0.000000 0.010847 0.018290 0.013905 0.018825 0.012487 0.000000 0.033154 0.000000 0.000000 0.000000 0.015269 0.011228 0.032498 0.055044 0.038973 0.016293 0.016293 0.014197 0.033671 0.007948 0.013611 0.049838 0.011155 0.014712 0.040664 0.017419 0.024163 0.035188 0.035188 0.009857 0.035633 0.035633 0.007406 0.033894 0.033894 0.000000 0.015510 0.007034 0.087500 0.039688 0.039688 0.000000 0.000000 0.009847 0.009847 0.000000 0.018691 0.010840 0.000000 0.057526 0.057526 0.000000 0.000000 0.033999 0.030109 0.012170 0.006369 0.006369 0.000000 0.049287 0.049287 0.000000 0.028015 0.028015 0.021131 0.011071 0.011071 0.066644 0.066644 0.016341 0.027737 0.060843 0.013700 0.000000 0.000000 0.023714 0.023714 0.015023 0.017692 0.000000 0.014468 0.021928 0.006602 0.006602 0.027836 0.010383 0.029642 0.029642 0.000000 0.000000 0.010147 0.020228 0.005817 0.015668 0.011919 0.000000 0.139206 0.000000 0.000000 0.014045 0.023114 0.000000 0.000000 0.00000 0.010931 0.013324 0.000000 0.019839 0.006378 0.020624 0.020624 0.000000 0.000000 0.024564 0.000000 0.017450 0.027655 0.027655 0.047337 0.047337 0.067589 0.009455 0.011856 0.016046 0.016046 0.011490 0.011490 0.000000 0.029703 0.029703 0.000000 0.028873 0.000000 0.011941 0.008813 0.011947 0.053846 0.053846 0.027783 0.048981 0.007131 0.000000 0.034435 0.034309 0.070190 0.000000 0.000000 0.000000 0.054656 0.092878 0.012874 0.016911 0.016911 0.017895 0.060582 0.052464 0.052464 0.034131 0.034131 0.000000 0.00000 0.000000 0.000000 0.000000 0.011446 0.020899 0.009968 0.044541 0.012242 0.038364 0.000000 0.008391 0.008391 0.000000 0.025400 0.024139 0.033672 0.017474 0.000000 0.012597 0.012597 0.041955 0.022529 0.000000 0.020189 0.012555 0.032349 0.007598 0.012529 0.031178 0.026712 0.026712 0.014619 0.013395 0.012796 0.043139 0.007078 0.039927 0.020189 0.000000 0.000000 0.000000 0.000000 0.000000 0.010303 0.022234 0.000000 0.036534 0.007439 0.000000 0.053347 0.105008 0.012226 0.006429 0.007989 0.015745 0.058555 0.009327 0.006492 0.020938 0.064352 0.026397 0.073902 0.011140 0.084280 0.129207 0.027429 0.023369 0.060597 0.006405 0.023758 0.007604 0.006315 0.012962 0.000000 0.006256 0.000000 0.000000 0.063048 0.073419 0.000000 0.000000 0.044059 0.008651 0.000000 0.017952 0.019789 0.032209 0.000000 0.033790 0.000000 0.000000 0.010215 0.000000 0.010373 0.033698 0.033957 0.055416 0.024099 0.000000 0.000000 0.0 0.034021 0.000000 0.011095 0.000000 0.025695 0.022738 0.000000 0.000000 0.007209 0.010379 0.033260 0.051907 0.033962 0.000000 0.000000 0.032123 0.012097 0.000000 0.043078 0.027877 0.007746 0.023842 0.000000 0.000000 0.123381 0.030664 0.000000 0.015514 0.000000 0.0 0.015464 0.000000 0.032976 0.017058 0.017642 0.000000 0.000000 0.006650 0.007418 0.000000 0.018561 0.010984 0.039199 0.015483 0.000000 0.017902 0.021909 0.008100 0.011944 0.000000 0.012245 0.000000 0.030201 0.000000 0.016593 0.000000 0.000000 0.005997 0.009385 0.020300 0.000000 0.000000 0.000000 0.000000 0.008846 0.015498 0.031332 0.000000 0.000000 0.000000 0.000000 0.049714 0.000000 0.012416 0.012496 0.000000 0.027882 0.011054 0.000000 0.022052 0.035924 0.014261 0.014857 0.021451 0.000000 0.000000 0.044353 0.000000 0.047620 0.000000 0.007989 0.033596 0.006813 0.051483 0.026888 0.019543 0.022999 0.000000 0.000000 0.020862 0.026235 0.000000 0.013913 0.007805 0.000000 0.015810 0.000000 0.000000 0.038495 0.007298 0.000000 0.058510 0.011650 0.011533 0.031278 0.035397 0.000000 0.000000 0.000000 0.028308 0.000000 0.054877 0.054877 0.0 0.007646 0.018020 0.018020 0.023994 0.021597 0.017997 0.000000 0.050996 0.030295 0.00000 0.016033 0.005848 0.000000 0.047744 0.015914 0.000000 0.000000 0.020798 0.000000 0.00000 0.000000 0.019003 0.033506 0.033876 0.010936 0.029347 0.021549 0.005848 0.000000 0.008262 0.000000 0.000000 0.016609 0.007202 0.000000 0.000000 0.033861 0.000000 0.008601 0.010341 0.064524 0.000000 0.088007 0.024145 0.000000 0.033669 0.021964 0.010654 0.032819 0.000000 0.013760 0.024778 0.00000 0.015468 0.000000 0.016597 0.027774 0.029090 0.019480 0.000000 0.043828 0.018575 0.000000 0.012035 0.000000 0.101866 0.012251 0.008772 0.019789 0.000000 0.057097 0.021654 0.040496 0.033435 0.020951 0.000000 0.000000 0.000000 0.030119 0.008460 0.00000 0.016679 0.000000 0.061712 0.040537 0.000000 0.045946 0.036065 0.131675 0.000000 0.019000 0.020463 0.000000 0.000000 0.014313 0.018493 0.010057 0.000000 0.0 0.000000 0.000000 0.008320 0.000000 0.065100 0.019906 0.000000 0.022587 0.029696 0.010858 0.000000 0.065985 0.077545 0.016816 0.021025 0.011183 0.021700 0.018203 0.012161 0.000000 0.000000 0.027651 0.000000 0.024778 0.012828 0.007423 0.000000 0.039498 0.000000 0.016921 0.000000 0.000000 0.008597 0.000000 0.018079 0.000000 0.000000 0.000000 0.009032 0.023423 0.011186 0.000000 0.027619 0.000000 0.012794 0.030410 0.009698 0.000000 0.043845 0.012222 0.041036 0.041239 0.006009 0.000000 0.000000 0.100202 0.000000 0.000000 0.008712 0.000000 0.013273 0.010271 0.000000 0.031716 0.0 0.013241 0.000000 0.011195 0.000000 0.039711 0.054077 0.029313 0.000000 0.000000 0.011659 0.123867 0.000000 0.079679 0.000000 0.008198 0.0 0.007623 0.000000 0.0 0.013394 0.029400 0.000000 0.007916 0.000000 0.000000 0.023375 0.055543 0.050949 0.000000 0.026339 0.020731 0.032094 0.015238 0.021787 0.000000 0.000000 0.034977 0.0 0.016623 0.050130 0.055356 0.000000 0.014065 0.000000 0.026315 0.0 0.000000 0.019700 0.0 0.028138 0.000000 0.000000 0.011689 0.000000 0.000000 0.007947 0.025506 0.024753 0.014832 0.046482 0.006179 0.034549 0.015865 0.013501 0.000000 0.011834 0.018342 0.028441 0.029802 0.023003 0.043119 0.006677 0.000000 0.020598 0.000000 0.008815 0.000000 0.041792 0.000000 0.010480 0.019459 0.039617 0.000000 0.035396 0.006361 0.041859 0.029211 0.042789 0.000000 0.000000 0.000000 0.012295 0.000000 0.013068 0.000000 0.007475 0.019045 0.042766 0.019301 0.013764 0.000000 0.017306 0.012942 0.070845 0.014868 0.007297 0.031998 0.008349 0.015729 0.015543 0.010324 0.046235 0.026669 0.0 0.000000 0.007650 0.000000 0.035458 0.000000 0.000000 0.021296 0.026696 0.020450 0.012514 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.044923 0.013346 0.000000 0.000000 0.039894 0.011348 0.021068 0.021068 0.026188 0.000000 0.000000 0.015101 0.015101 0.0 0.000000 0.010162 0.028734 0.000000 0.000000 0.037325 0.034885 0.012136 0.000000 0.000000 0.000000 0.035657 0.000000 0.018874 0.008235 0.008862 0.007308 0.037498 0.036242 0.057053 0.015864 0.011069 0.095014 0.008749 0.078374 0.000000 0.007518 0.109291 0.040002 0.037660 0.027992 0.013521 0.014655 0.000000 0.000000 0.007107 0.030728 0.014405 0.000000 0.000000 0.000000 0.000000 0.000000 0.038065 0.082272 0.000000 0.058100 0.000000 0.020667 0.006294 0.033956 0.000000 0.034064 0.033852 0.007517 0.026231 0.000000 0.000000 0.018109 0.042117 0.029469 0.135946 0.017951 0.026511 0.048242 0.006050 0.000000 0.00000 0.020322 0.035574 0.010566 0.013418 0.007739 0.006723 0.000000 0.012206 0.028334 0.007658 0.0 0.099857 0.00000 0.000000 0.000000 0.032118 0.042443 0.052507 0.0 0.019627 0.000000 0.028792 0.024745 0.013874 0.024640 0.034798 0.066593 0.036430 0.033033 0.0 0.019337 0.026935 0.026191 0.014107 0.000000 0.047965 0.007905 0.000000 0.047061 0.041013 0.000000 0.000000 0.012918 0.000000 0.011476 0.011003 0.014615 0.000000 0.000 0.019035 0.014903 0.024584 0.008481 0.006110 0.009875 0.000000 0.000000 0.046730 0.088983 0.008749 0.023622 0.000000 0.054465 0.019755 0.000000 0.000000 0.063541 0.011222 0.016745 0.007487 0.011995 0.023041 0.015911 0.020751 0.022269 0.023230 0.012630 0.018329 0.068651 0.038379 0.000000 0.000000 0.020586 0.013279 0.019895 0.000000 0.000000 0.006830 0.025473 0.000000 0.006935 0.018443 0.008678 0.000000 0.031017 0.000000 0.077558 0.00000 0.044815 0.000000 0.000000 0.013027 0.000000 0.038214 0.031712 0.000000 0.000000 0.000000 0.021503 0.024429 0.000000 0.000000 0.015388 0.006353 0.035524 0.000000 0.000000 0.000000 0.021679 0.096719 0.000000 0.009418 0.000000 0.005558 0.031028 0.000000 0.030463 0.018506 0.010215 0.047330 0.032372 0.000000 0.017255 0.000000 0.039230 0.032703 0.012870 0.000000 0.000000 0.000000 0.019821 0.000000 0.082382 0.000000 0.026707 0.023690 0.000000 0.023750 0.000000 0.021016 0.000000 0.035108 0.018423 0.023644 0.019873 0.000000 0.007261 0.051214 0.025097 0.000000 0.030701 0.000000 0.029484 0.040766 0.000000 0.000000 0.028080 0.006736 0.014540 0.055143 0.000000 0.000000 0.014636 0.011777 0.000000 0.035397 0.015269 0.000000 0.042635 0.000000 0.000000 0.007096 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014532 0.013512 0.042675 0.017819 0.036266 0.059068 0.041792 0.006720 0.000000 0.040024 0.000000 0.000000 0.052188 0.014176 0.000000 0.000000 0.008176 0.010384 0.000000 0.017400 0.000000 0.013223 0.020687 0.000000 0.010978 0.012168 0.000000 0.000000 0.008022 0.000000 0.009452 0.018170 0.016531 0.000000 0.031706 0.026109 0.035155 0.000000 0.000000 0.000000 0.000000 0.019338 0.043091 0.000000 0.00000 0.089590 0.032858 0.041754 0.0 0.000000 0.015596 0.032564 0.000000 0.048520 0.030413 0.000000 0.000000 0.017342 0.075192 0.020440 0.000000 0.000000 0.013685 0.017279 0.000000 0.000000 0.029431 0.012546 0.037111 0.020812 0.026349 0.036443 0.013089 0.019253 0.000000 0.000000 0.023847 0.000000 0.008614 0.012919 0.009055 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010250 0.041533 0.000000 0.018516 0.01295 0.031418 0.010213 0.008692 0.000000 0.000000 0.010713 0.011694 0.000000 0.000000 0.018784 0.00000 0.000000 0.000000 0.000000 0.007123 0.000000 0.000000 0.000000 0.000000 0.014659 0.000000 0.015504 0.030563 0.000000 0.000000 0.000000 0.014474 0.059180 0.045807 0.000000 0.000000 0.000000 0.000000 0.027177 0.000000 0.029085 0.000000 0.046726 0.062248 0.022645 0.095077 0.000000 0.037895 0.000000 0.045056 0.006294 0.0 0.000000 0.007432 0.000000 0.062350 0.016803 0.000000 0.000000 0.039412 0.042579 0.000000 0.033357 0.000000 0.032557 0.000000 0.008398 0.020919 0.000000 0.028889 0.01524 0.0 0.000000 0.012659 0.014760 0.000000 0.0 0.000000 0.009523 0.011340 0.071223 0.018292 0.011422 0.025885 0.012920 0.007637 0.000000 0.000000 0.000000 0.011835 0.000000 0.000000 0.012199 0.035384 0.0 0.020989 0.055944 0.000000 0.012305 0.000000 0.014022 0.038988 0.000000 0.014987 0.049541 0.028174 0.0 0.008602 0.009413 0.000000 0.042124 0.000000 0.008701 0.024459 0.015139 0.004981 0.000000 0.000000 0.000000 0.039565 0.000000 0.000000 0.028261 0.014158 0.032548 0.000000 0.016034 0.045178 0.018999 0.013911 0.014219 0.000000 0.027525 0.071256 0.00000 0.079867 0.0 0.000000 0.008676 0.000000 0.009369 0.000000 0.000000 0.013125 0.000000 0.000000 0.014248 0.031641 0.000000 0.011627 0.037392 0.000000 0.033796 0.000000 0.000000 0.000000 0.009974 0.000000 0.012106 0.004964 0.000000 0.0 0.009133 0.009328 0.024698 0.034476 0.015890 0.028997 0.067760 0.024876 0.000000 0.013558 0.053625 0.013965 0.033246 0.028117 0.008511 0.024818 0.014857 0.023601 0.028824 0.000000 0.014428 0.029468 0.000000 0.046870 0.045476 0.000000 0.032186 0.000000 0.038797 0.050951 0.024148 0.000000 0.000000 0.035016 0.018946 0.000000 0.014377 0.035150 0.000000 0.000000 0.000000 0.006437 0.00000 0.040064 0.000000 0.000000 0.000000 0.000000 0.017102 0.025817 0.00785 0.0 0.023122 0.06774 0.014895 0.006395 0.056218 0.012871 0.02963 0.000000 0.028752 0.00000 0.012873 0.012116 0.006352 0.048115 0.000000 0.000000 0.000000 0.000000 0.050655 0.024011 0.014179 0.000000 0.030027 0.008282 0.006515 0.027767 0.065808 0.000000 0.005662 0.023012 0.014266 0.000000 0.000000 0.007694 0.012499 0.109855 0.000000 0.000000 0.007448 0.000000 0.016002 0.029527 0.021850 0.000000 0.000000 0.015931 0.041356 0.024568 0.043874 0.000000 0.000000 0.008834 0.015567 0.007847 0.019934 0.000000 0.033774 0.047654 0.014295 0.04209 0.013086 0.010949 0.019251 0.031306 0.050373 0.060046 0.03526 0.013360 0.034332 0.000000 0.065758 0.000000 0.000000 0.019852 0.014738 0.016050 0.044433 0.000000 0.015758 0.000000 0.017958 0.047924 0.000000 0.078351 0.037534 0.01896 0.000000 0.038158 0.034339 0.033094 0.039182 0.020853 0.000000 0.018065 0.000000 0.015776 0.000000 0.012191 0.059154 0.018017 0.008079 0.020101 0.000000 0.000000 0.025193 0.063055 0.020581 0.015998 0.000000 0.015057 0.000000 0.028840 0.000000 0.000000 0.045521 0.00000 0.009378 0.010197 0.000000 0.00000 0.036742 0.000000 0.00000 0.000000 0.020969 0.008568 0.0 0.031312 0.000000 0.023789 0.000000 0.000000 0.000000 0.016949 0.000000 0.008871 0.029748 0.000000 0.037768 0.021257 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.018590 0.013949 0.038147 0.012540 0.000000 0.012082 0.088201 0.010755 0.00000 0.000000 0.000000 0.029326 0.025868 0.000000 0.000000 0.031131 0.000000 0.008844 0.00000 0.012459 0.050388 0.0 0.000000 0.017287 0.039227 0.025628 0.000000 0.007544 0.00000 0.000000 0.0 0.017252 0.056261 0.034751 0.009289 0.012927 0.036352 0.011725 0.060385 0.005676 0.000000 0.043528 0.023943 0.027574 0.006100 0.029694 0.000000 0.007253 0.050111 0.024353 0.000000 0.000000 0.019078 0.000000 0.034355 0.016689 0.027466 0.000000 0.006324 0.033667 0.046837 0.000000 0.000000 0.000000 0.000000 0.013820 0.000000 0.058680 0.000000 0.000000 0.0 0.008394 0.015985 0.000000 0.014834 0.005876 0.018265 0.000000 0.015521 0.000000 0.010394 0.006797 0.006410 0.035335 0.030912 0.014404 0.000000 0.000000 0.013542 0.026174 0.013217 0.035808 0.036067 0.00000 0.023957 0.090070 0.000000 0.008452 0.018402 0.000000 0.035663 0.016000 0.044079 0.008173 0.034706 0.032197 0.022844 0.006680 0.014673 0.0 0.016149 0.000000 0.032838 0.007961 0.000000 0.000000 0.032192 0.000000 0.011570 0.000000 0.005531 0.0 0.032531 0.000000 0.014418 0.062051 0.000000 0.000000 0.021515 0.000000 0.038993 0.034773 0.022363 0.000000 0.012861 0.032204 0.000000 0.064841 0.011606 0.061176 0.000000 0.011233 0.032739 0.019932 0.034035 0.03829 0.008405 0.00000 0.019884 0.000000 0.000000 0.022341 0.043639 0.000000 0.155058 0.016689 0.032445 0.040126 0.007254 0.000000 0.010966 0.028289 0.000000 0.000000 0.016269 0.013347 0.011233 0.000000 0.008561 0.000000 0.011041 0.016940 0.006594 0.000000 0.005688 0.0 0.032445 0.000000 0.007254 0.000000 0.005685 0.000000 0.000000 0.000000 0.024001 0.006294 0.000000 0.007701 0.000000 0.009066 0.044868 0.023838 0.009036 0.013596 0.000000 0.009118 0.081998 0.095350 0.000000 0.011657 0.036767 0.056639 0.000000 0.011707 0.007858 0.028635 0.030894 0.029450 0.000000 0.019075 0.000000 0.011916 0.021458 0.014987 0.000000 0.000000 0.039517 0.023144 0.039412 0.000000 0.000000 0.000000 0.000000 0.022352 0.051633 0.026769 0.015687 0.000000 0.014582 0.062501 0.051391 0.000000 0.000000 0.000000 0.0 0.000000 0.046793 0.019752 0.00000 0.013124 0.012410 0.010795 0.009561 0.137066 0.000000 0.00834 0.016930 0.017614 0.000000 0.025652 0.012974 0.015915 0.014980 0.006050 0.030447 0.004980 0.028027 0.000000 0.022373 0.000000 0.040144 0.000000 0.012532 0.021118 0.012737 0.027270 0.019874 0.017972 0.011599 0.066369 0.00000 0.009465 0.065776 0.016607 0.021962 0.006932 0.015482 0.014245 0.009118 0.011504 0.015668 0.039314 0.022524 0.006249 0.010740 0.057109 0.034416 0.050639 0.022591 0.000000 0.045375 0.039221 0.000000 0.000000 0.038708 0.000000 0.040130 0.022517 0.007154 0.071764 0.000000 0.015251 0.011224 0.000000 0.011078 0.017329 0.036573 0.015219 0.000000 0.058939 0.000000 0.009933 0.000000 0.024248 0.000000 0.024679 0.008743 0.009059 0.013388 0.026925 0.019305 0.054346 0.015391 0.006077 0.069830 0.052663 0.011154 0.011711 0.000000 0.079179 0.065179 0.016157 0.000000 0.052963 0.011024 0.006005 0.060741 0.000000 0.018561 0.000000 0.010380 0.000000 0.022659 0.03377 0.052586 0.037023 0.00000 0.020437 0.024717 0.000000 0.009941 0.014648 0.011897 0.012894 0.027373 0.011266 0.017523 0.028630 0.016176 0.000000 0.000000 0.000000 0.00000 0.016746 0.000000 0.037353 0.018462 0.010526 0.000000 0.000000 0.015685 0.047524 0.000000 0.012889 0.035187 0.015538 0.017588 0.016796 0.052705 0.019717 0.041318 0.059584 0.048823 0.007101 0.078039 0.034368 0.016416 0.004538 0.026140 0.018246 0.060352 0.043044 0.006922 0.034338 0.000000 0.000000 0.039216 0.011266 0.012393 0.018101 0.018133 0.000000 0.013102 0.006218 0.009667 0.000000 0.000000 0.040608 0.006840 0.0 0.000000 0.026837 0.00000 0.000000 0.000000 0.000000 0.00000 0.03967 0.011155 0.031400 0.040245 0.006987 0.042696 0.018459 0.041440 0.038601 0.006793 0.007580 0.000000 0.007303 0.006434 0.009118 0.037247 0.000000 0.011107 0.006900 0.063124 0.00000 0.035646 0.008042 0.010830 0.022877 0.034791 0.000000 0.0 0.027431 0.036903 0.020523 0.000000 0.012596 0.044396 0.133285 0.013146 0.008431 0.000000 0.016251 0.012138 0.067424 0.032624 0.040082 0.029871 0.033244 0.000000 0.000000 0.042470 0.016144 0.000000 0.017098 0.000000 0.000000 0.028395 0.014147 0.000000 0.008002 0.013417 0.014221 0.013044 0.022707 0.013647 0.017034 0.013628 0.000000 0.012716 0.012225 0.000000 0.0 0.014426 0.00000 0.033060 0.008496 0.028406 0.030697 0.000000 0.000000 0.01560 0.013286 0.015665 0.013750 0.014946 0.000000 0.016708 0.000000 0.016942 0.000000 0.013307 0.013314 0.031683 0.012716 0.058962 0.000000 0.026175 0.000000 0.013593 0.021485 0.013264 0.074102 0.028936 0.017175 0.029312 0.072391 0.025293 0.000000 0.000000 0.020904 0.000000 0.000000 0.007341 0.015817 0.000000 0.048602 0.038023 0.042566 0.034546 0.023217 0.012526 0.008811 0.007754 0.000000 0.000000 0.035057 0.014765 0.031852 0.000000 0.007409 0.000000 0.042976 0.025446 0.000000 0.006 0.000000 0.015501 0.000000 0.0 0.018062 0.028162 0.013221 0.010225 0.026421 0.085968 0.018756 0.00000 0.072302 0.009118 0.008091 0.011305 0.016001 0.027229 0.013795 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.065967 0.013321 0.006170 0.079307 0.008108 0.000000 0.000000 0.018167 0.088239 0.000000 0.000000 0.000000 0.072520 0.093125 0.000000 0.000000 0.024197 0.021064 0.012639 0.014136 0.000000 0.000000 0.014371 0.016925 0.039746 0.000000 0.021392 0.024152 0.000000 0.000000 0.000000 0.092258 0.011947 0.000000 0.011554 0.046504 0.018364 0.000000 0.013500 0.000000 0.000000 0.039746 0.018717 0.000000 0.030870 0.000000 0.000000 0.030698 0.000000 0.000000 0.009818 0.000000 0.000000 0.010964 0.048633 0.006283 0.000000 0.000000 0.010828 0.000000 0.025182 0.026957 0.000000 0.016344 0.020027 0.011863 0.020079 0.026210 0.028045 0.007934 0.018463 0.044193 0.012849 0.042691 0.026822 0.000000 0.000000 0.009351 0.009155 0.010881 0.028090 0.000000 0.011797 0.020754 0.018539 0.000000 0.010436 0.028179 0.028605 0.01524 0.006362 0.000000 0.020680 0.059235 0.011351 0.015007 0.000000 0.000000 0.000000 0.039874 0.015684 0.009823 0.015029 0.010169 0.019589 0.056062 0.000000 0.012964 0.000000 0.053697 0.000000 0.014975 0.015650 0.010028 0.000000 0.000000 0.042006 0.023198 0.044946 0.009215 0.008415 0.016089 0.007155 0.000000 0.0 0.024132 0.000000 0.029837 0.049179 0.000000 0.000000 0.033548 0.000000 0.021857 0.069689 0.012690 0.007181 0.000000 0.011070 0.010038 0.008910 0.006216 0.039505 0.000000 0.000000 0.014089 0.000000 0.000000 0.000000 0.022009 0.000000 0.012300 0.008637 0.019731 0.039911 0.000000 0.021631 0.020691 0.027963 0.009436 0.106476 0.088011 0.019963 0.022396 0.018255 0.0 0.016452 0.000000 0.000000 0.000000 0.029728 0.000000 0.000000 0.022762 0.008982 0.007054 0.046518 0.020848 0.033001 0.000000 0.013836 0.011431 0.000000 0.000000 0.000000 0.045908 0.012874 0.01506 0.027992 0.025249 0.000000 0.000000 0.066369 0.000000 0.000000 0.011734 0.010997 0.000000 0.046372 0.010002 0.000000 0.000000 0.007484 0.054902 0.000000 0.000000 0.036625 0.018974 0.009981 0.000000 0.013119 0.000000 0.000000 0.013044 0.000000 0.009339 0.000000 0.044361 0.017935 0.022054 0.019162 0.012525 0.000000 0.019260 0.094307 0.010627 0.017643 0.013617 0.010693 0.016612 0.000000 0.009027 0.000000 0.064224 0.017450 0.065280 0.000000 0.006831 0.034683 0.049393 0.013342 0.106700 0.014684 0.014080 0.019305 0.017709 0.007651 0.045375 0.000000 0.013750 0.022373 0.041318 0.006802 0.016918 0.000000 0.022761 0.000000 0.078702 0.000000 0.007079 0.000000 0.000000 0.000000 0.000000 0.036721 0.000000 0.006987 0.013187 0.038013 0.061329 0.000000 0.012362 0.028555 0.025124 0.000000 0.024406 0.074496 0.034938 0.000000 0.000000 0.0 0.00000 0.052622 0.008641 0.027843 0.014117 0.017186 0.007817 0.000000 0.000000 0.015274 0.054597 0.000000 0.033621 0.000000 0.016098 0.007774 0.000000 0.087901 0.017765 0.016984 0.038632 0.073974 0.044686 0.000000 0.015708 0.032883 0.018436 0.007163 0.051414 0.030237 0.062021 0.000000 0.000000 0.028630 0.000000 0.0 0.011001 0.014976 0.029515 0.080242 0.000000 0.000000 0.013793 0.020064 0.011959 0.014193 0.000000 0.000000 0.007491 0.000000 0.000000 0.015784 0.020907 0.066862 0.014871 0.007220 0.018297 0.055912 0.019917 0.000000 0.017605 0.024519 0.027700 0.000000 0.046327 0.000000 0.067929 0.048297 0.000000 0.063145 0.000000 0.008970 0.000000 0.032187 0.009090 0.012607 0.00000 0.015808 0.005757 0.000000 0.031221 0.000000 0.000000 0.0 0.079019 0.000000 0.000000 0.000000 0.047231 0.006815 0.020466 0.007238 0.000000 0.000000 0.017004 0.017506 0.021550 0.024479 0.038639 0.015864 0.000000 0.000000 0.000000 0.028952 0.037056 0.026653 0.024195 0.014476 0.015910 0.015446 0.006699 0.000000 0.019641 0.010296 0.024500 0.008113 0.024174 0.014057 0.0 0.020496 0.008598 0.014149 0.0 0.000000 0.010910 0.006299 0.000000 0.011064 0.010519 0.026703 0.032856 0.008584 0.034376 0.028800 0.000000 0.028021 0.026709 0.018085 0.00000 0.024695 0.000000 0.000000 0.000000 0.037663 0.007239 0.018235 0.016297 0.011041 0.011041 0.000000 0.016803 0.021643 0.019019 0.00000 0.035333 0.011698 0.033804 0.0 0.060837 0.030641 0.064644 0.007485 0.024157 0.037732 0.000000 0.000000 0.024035 0.000000 0.000000 0.017360 0.062694 0.025249 0.031651 0.029076 0.017248 0.014556 0.006257 0.034917 0.045722 0.000000 0.026939 0.015700 0.000000 0.000000 0.010269 0.0 0.006595 0.000000 0.028634 0.038475 0.000000 0.028924 0.011294 0.015605 0.000000 0.0 0.012603 0.016536 0.024640 0.024639 0.019623 0.005664 0.011325 0.013183 0.032087 0.000000 0.000000 0.000000 0.000000 0.000000 0.014262 0.031419 0.033651 0.023577 0.018960 0.025188 0.006194 0.000000 0.055431 0.033982 0.000000 0.006441 0.00000 0.018984 0.011754 0.008394 0.018164 0.000000 0.008881 0.022872 0.053721 0.018508 0.000000 0.008251 0.009839 0.037094 0.000000 0.017425 0.017253 0.000000 0.087010 0.000000 0.036935 0.000000 0.000000 0.088021 0.018019 0.000000 0.009407 0.000000 0.044006 0.000000 0.027309 0.114489 0.013336 0.029753 0.008614 0.064506 0.000000 0.016992 0.000000 0.000000 0.000000 0.028548 0.050786 0.050786 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.023285 0.000000 0.013760 0.020791 0.000000 0.013232 0.051577 0.000000 0.000000 0.020571 0.017927 0.010126 0.007051 0.000000 0.012782 0.042772 0.014847 0.007146 0.000000 0.000000 0.020367 0.000000 0.000000 0.023988 0.0 0.036523 0.014237 0.024073 0.042181 0.024008 0.000000 0.007564 0.014667 0.000000 0.033060 0.014795 0.021260 0.008669 0.056600 0.01299 0.000000 0.000000 0.063059 0.000000 0.019459 0.087516 0.013409 0.042268 0.000000 0.015266 0.007780 0.000000 0.012105 0.059498 0.006562 0.000000 0.032523 0.01444 0.010673 0.016390 0.000000 0.047766 0.000000 0.020465 0.026346 0.062744 0.042489 0.000000 0.006533 0.000000 0.0000 0.033939 0.000000 0.033939 0.015633 0.000000 0.010249 0.017390 0.016773 0.000000 0.000000 0.000000 0.064995 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.008039 0.000000 0.0 0.0 0.078122 0.048743 0.000000 0.000000 0.008207 0.016241 0.008427 0.025093 0.000000 0.000000 0.030823 0.041173 0.000000 0.017645 0.0 0.038396 0.014497 0.000000 0.013205 0.009771 0.000000 0.0 0.000000 0.0 0.020752 0.000000 0.000000 0.027889 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.020243 0.025907 0.030667 0.007161 0.000000 0.0 0.000000 0.000000 0.064376 0.012574 0.022879 0.031328 0.0 0.045062 0.042681 0.055576 0.078141 0.045343 0.042233 0.000000 0.020951 0.024063 0.058592 0.016880 0.008844 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.005937 0.000000 0.021659 0.043564 0.014755 0.030182 0.000000 0.030589 0.011186 0.023273 0.000000 0.048827 0.00000 0.048472 0.036371 0.000000 0.074618 0.000000 0.018653 0.040884 0.000000 0.020624 0.071009 0.011017 0.000000 0.000000 0.000000 0.051886 0.000000 0.000000 0.010992 0.020309 0.016059 0.000000 0.00000 0.022114 0.000000 0.000000 0.009680 0.035237 0.000000 0.000000 0.023091 0.000000 0.019360 0.000000 0.035491 0.070206 0.000000 0.000000 0.018955 0.017730 0.014459 0.028502 0.000000 0.042574 0.000000 0.000000 0.037381 0.000000 0.0 0.000000 0.00000 0.055397 0.006756 0.0 0.037625 0.000000 0.024256 0.000000 0.016285 0.0 0.023910 0.000000 0.000000 0.017298 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034704 0.000000 0.000000 0.012242 0.052615 0.000000 0.000000 0.000000 0.0 0.031536 0.010082 0.017090 0.000000 0.029208 0.000000 0.000000 0.040601 0.006658 0.000000 0.030046 0.026371 0.036838 0.000000 0.009059 0.015576 0.055422 0.009513 0.029629 0.000000 0.033073 0.007836 0.010518 0.000000 0.008401 0.000000 0.008756 0.00000 0.041575 0.023708 0.025845 0.018653 0.0 0.018549 0.023297 0.000000 0.009845 0.051448 0.0 0.00000 0.0 0.016524 0.013989 0.016165 0.024107 0.019229 0.007818 0.030467 0.013053 0.018653 0.007814 0.018653 0.01775 0.016688 0.023456 0.015890 0.065386 0.043552 0.015960 0.000000 0.000000 0.016369 0.000000 0.000000 0.005950 0.015812 0.000000 0.000000 0.011722 0.000000 0.030096 0.020441 0.000000 0.011466 0.021751 0.000000 0.007971 0.000000 0.009530 0.011458 0.0 0.013770 0.000000 0.000000 0.0 0.024403 0.040813 0.000000 0.000000 0.025358 0.022066 0.000000 0.000000 0.021029 0.010310 0.018387 0.000000 0.013239 0.068603 0.057289 0.018060 0.007347 0.010967 0.070383 0.02521 0.000000 0.000000 0.061953 0.000000 0.019117 0.023710 0.033145 0.037924 0.030262 0.00000 0.0 0.082839 0.00000 0.015213 0.031480 0.019898 0.044670 0.017649 0.000000 0.000000 0.000000 0.035808 0.014367 0.017587 0.012105 0.000000 0.000000 0.029216 0.036838 0.046704 0.012522 0.088599 0.0 0.016034 0.023580 0.012747 0.015789 0.000000 0.000000 0.000000 0.046033 0.011180 0.029200 0.012105 0.020151 0.017858 0.028365 0.039062 0.000000 0.014497 0.020710 0.059336 0.000000 0.019389 0.000000 0.019919 0.035889 0.023943 0.007630 0.012613 0.015387 0.000000 0.000000 0.000000 0.0 0.018303 0.016355 0.0 0.00000 0.000000 0.000000 0.040280 0.015995 0.000000 0.016484 0.028116 0.015210 0.028376 0.018653 0.076159 0.0 0.000000 0.050562 0.028176 0.024672 0.031787 0.012677 0.000000 0.000000 0.010572 0.000000 0.000000 0.0 0.0 0.018594 0.021214 0.000000 0.109155 0.000000 0.013020 0.000000 0.000000 0.009146 0.000000 0.015508 0.000000 0.00000 0.055293 0.000000 0.000000 0.000000 0.018691 0.000000 0.0 0.014398 0.00000 0.0 0.060017 0.000000 0.023109 0.018653 0.000000 0.013760 0.026728 0.037231 0.0 0.024172 0.013263 0.000000 0.000000 0.000000 0.018005 0.000000 0.000000 0.041438 0.068211 0.016682 0.000000 0.010201 0.00000 0.000000 0.000000 0.015973 0.000000 0.000000 0.035489 0.018382 0.000000 0.041250 0.000000 0.070579 0.0 0.007811 0.017737 0.007393 0.000000 0.000000 0.000000 0.032348 0.006710 0.0 0.006039 0.000000 0.006996 0.050457 0.014654 0.017385 0.000000 0.027895 0.012963 0.0 0.009007 0.000000 0.00000 0.0 0.008130 0.016232 0.000000 0.032899 0.000000 0.026173 0.000000 0.008752 0.013477 0.000000 0.000000 0.018526 0.014942 0.0 0.029159 0.000000 0.015784 0.044515 0.043109 0.042947 0.008174 0.017942 0.000000 0.000000 0.017808 0.000000 0.000000 0.027908 0.000000 0.000000 0.044934 0.008696 0.039024 0.0 0.022042 0.0 0.050403 0.021967 0.015561 0.078794 0.013543 0.000000 0.0 0.0 0.016050 0.013873 0.000000 0.017010 0.031923 0.010379 0.011140 0.029189 0.02496 0.015635 0.012612 0.017766 0.088483 0.000000 0.018653 0.100184 0.018653 0.000000 0.000000 0.0 0.038377 0.017817 0.0 0.000000 0.000000 0.030310 0.023269 0.031414 0.088471 0.000000 0.000000 0.011724 0.036838 0.036838 0.000000 0.017702 0.00000 0.00000 0.0 0.000000 0.011840 0.016116 0.000000 0.00000 0.018723 0.057029 0.000000 0.037285 0.008374 0.013913 0.038374 0.0 0.010050 0.000000 0.0 0.019659 0.059377 0.000000 0.018644 0.038058 0.000000 0.030511 0.010917 0.051882 0.014962 0.000000 0.008149 0.022256 0.022342 0.0000 0.013538 0.020970 0.058920 0.000000 0.0 0.017220 0.024669 0.000000 0.000000 0.035681 0.011159 0.000000 0.034134 0.000000 0.015663 0.000000 0.022643 0.024133 0.033152 0.014850 0.016256 0.040693 0.078558 0.071614 0.007354 0.033662 0.0 0.047621 0.010135 0.019262 0.062783 0.000000 0.000000 0.008824 0.000000 0.000000 0.020388 0.008635 0.007653 0.045024 0.021613 0.015408 0.043759 0.000000 0.000000 0.027013 0.020117 0.021737 0.000000 0.0 0.015914 0.000000 0.018653 0.071221 0.027718 0.013000 0.000000 0.075841 0.015672 0.066755 0.000000 0.019651 0.000000 0.0 0.000000 0.046136 0.008310 0.000000 0.014767 0.013685 0.00000 0.000000 0.000000 0.000000 0.013416 0.00000 0.017605 0.040673 0.018107 0.006427 0.000000 0.000000 0.016195 0.045207 0.009514 0.000000 0.040588 0.036493 0.000000 0.0 0.035159 0.010135 0.000000 0.000000 0.015418 0.013097 0.083611 0.000000 0.0 0.000000 0.0 0.024124 0.000000 0.040213 0.000000 0.000000 0.000000 0.062034 0.000000 0.015715 0.000000 0.010435 0.020767 0.014107 0.000000 0.014984 0.015659 0.022452 0.029323 0.000000 0.023948 0.022743 0.016158 0.0 0.000000 0.00000 0.010843 0.040198 0.025380 0.000000 0.023255 0.018875 0.020709 0.012357 0.006746 0.046609 0.078024 0.015113 0.008979 0.019516 0.044743 0.044293 0.017731 0.012383 0.006306 0.016684 0.008134 0.000000 0.000000 0.000000 0.000000 0.007546 0.006523 0.026988 0.000000 0.000000 0.000000 0.0 0.0 0.010540 0.013545 0.051995 0.000000 0.008817 0.000000 0.068013 0.025217 0.016758 0.008508 0.000000 0.047413 0.007407 0.028337 0.021554 0.000000 0.014045 0.012629 0.024064 0.000000 0.000000 0.020742 0.010893 0.000000 0.000000 0.040191 0.000000 0.000000 0.012454 0.031338 0.0 0.000000 0.013118 0.000000 0.067528 0.034684 0.021360 0.053878 0.0 0.000000 0.016016 0.031123 0.018653 0.000000 0.019303 0.000000 0.073586 0.026965 0.000000 0.000000 0.031412 0.032005 0.026047 0.015362 0.000000 0.007461 0.000000 0.000000 0.040603 0.000000 0.009618 0.009430 0.059731 0.000000 0.000000 0.015118 0.008390 0.000000 0.017010 0.000000 0.027908 0.022380 0.057569 0.017078 0.086386 0.015890 0.109491 0.000000 0.023590 0.022337 0.00000 0.000000 0.000000 0.0 0.040730 0.000000 0.014515 0.024007 0.000000 0.000000 0.000000 0.0 0.000000 0.006045 0.000000 0.0 0.000000 0.018117 0.023097 0.000000 0.013898 0.018512 0.000000 0.024977 0.0 0.015816 0.0 0.000000 0.068085 0.017759 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.008598 0.026086 0.000000 0.016594 0.010329 0.024584 0.041487 0.012806 0.042827 0.014233 0.000000 0.028617 0.009652 0.000000 0.018974 0.000000 0.000000 0.015892 0.0 0.000000 0.000000 0.000000 0.008723 0.000000 0.013767 0.000000 0.000000 0.078612 0.013382 0.000000 0.039636 0.007423 0.000000 0.000000 0.000000 0.000000 0.011949 0.026456 0.046015 0.027481 0.000000 0.000000 0.038582 0.000000 0.038487 0.016358 0.000000 0.009715 0.018906 0.043362 0.000000 0.000000 0.032685 0.023409 0.012410 0.000000 0.000000 0.011027 0.000000 0.024296 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009261 0.013354 0.000000 0.000000 0.016955 0.019737 0.000000 0.069177 0.029623 0.000000 0.026562 0.000000 0.000000 0.025536 0.026211 0.008689 0.012425 0.000000 0.017275 0.092912 0.000000 0.000000 0.000000 0.000000 0.006151 0.022438 0.000000 0.007061 0.000000 0.000000 0.048963 0.012296 0.012296 0.000000 0.006747 0.000000 0.014318 0.022326 0.000000 0.000000 0.013991 0.029526 0.016660 0.000000 0.000000 0.000000 0.012716 0.000000 0.025426 0.000000 0.011729 0.019851 0.000000 0.000000 0.011801 0.000000 0.000000 0.033286 0.000000 0.066177 0.000000 0.015916 0.017973 0.008272 0.027180 0.000000 0.000000 0.000000 0.051017 0.000000 0.000000 0.035490 0.000000 0.000000 0.029494 0.00000 0.022019 0.020149 0.0 0.013810 0.018769 0.000000 0.0 0.000000 0.012599 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.029948 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.041030 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.012876 0.012826 0.012841 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.079173 0.015175 0.049918 0.012014 0.009383 0.000000 0.021878 0.027222 0.000000 0.007081 0.011167 0.000000 0.000000 0.000000 0.000000 0.040764 0.000000 0.000000 0.000000 0.032545 0.000000 0.009383 0.000000 0.000000 0.036770 0.000000 0.029684 0.015239 0.000000 0.000000 0.0 0.000000 0.011676 0.018788 0.006051 0.000000 0.010613 0.013449 0.000000 0.014748 0.000000 0.018388 0.030128 0.000000 0.016637 0.000000 0.025570 0.015968 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013615 0.011969 0.022005 0.0 0.0 0.029383 0.021516 0.016817 0.000000 0.0 0.011868 0.000000 0.000000 0.000000 0.048704 0.0 0.000000 0.005542 0.000000 0.012674 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.015255 0.000000 0.000000 0.019255 0.000000 0.0 0.010711 0.000000 0.000000 0.012168 0.019341 0.021195 0.013253 0.000000 0.068518 0.007139 0.011433 0.059687 0.011732 0.090033 0.042861 0.013546 0.000000 0.000000 0.024111 0.017759 0.000000 0.0 0.000000 0.019070 0.017080 0.032373 0.0 0.000000 0.000000 0.009051 0.000000 0.000000 0.000000 0.005344 0.000000 0.000000 0.018677 0.03994 0.000000 0.000000 0.000000 0.020337 0.000000 0.008444 0.000000 0.005388 0.008707 0.073552 0.000000 0.025044 0.000000 0.054310 0.000000 0.000000 0.000000 0.00000 0.012307 0.005113 0.006874 0.015116 0.051806 0.016415 0.012528 0.037473 0.000000 0.000000 0.000000 0.000000 0.005906 0.000000 0.017896 0.051999 0.008501 0.041343 0.000000 0.000000 0.000000 0.013107 0.023365 0.049642 0.031610 0.000000 0.008599 0.025520 0.000000 0.093321 0.028275 0.063879 0.008649 0.00000 0.000000 0.013814 0.083735 0.000000 0.000000 0.000000 0.007580 0.021903 0.000000 0.0 0.034071 0.087025 0.0 0.000000 0.015540 0.000000 0.000000 0.000000 0.000000 0.007807 0.000000 0.0 0.021734 0.026631 0.006179 0.000000 0.038447 0.000000 0.016687 0.000000 0.000000 0.000000 0.007238 0.021552 0.000000 0.000000 0.034461 0.007426 0.000000 0.000000 0.014304 0.014251 0.019278 0.000000 0.013302 0.000000 0.007727 0.000000 0.009959 0.046450 0.000000 0.037111 0.023039 0.027842 0.0 0.000000 0.000000 0.024933 0.005846 0.030298 0.018300 0.014882 0.000000 0.000000 0.013459 0.007634 0.000000 0.007769 0.000000 0.000000 0.013731 0.013940 0.006190 0.000000 0.031937 0.104818 0.000000 0.019740 0.050667 0.007143 0.043480 0.039542 0.000000 0.087042 0.006581 0.000000 0.000000 0.022402 0.010451 0.007888 0.014577 0.000000 0.000000 0.023387 0.000000 0.000000 0.037508 0.005764 0.017458 0.0 0.017864 0.053036 0.000000 0.000000 0.016844 0.011169 0.016953 0.000000 0.036281 0.00000 0.008247 0.032197 0.00529 0.000000 0.040872 0.035174 0.000000 0.0 0.000000 0.011118 0.000000 0.013965 0.000000 0.009579 0.0 0.000000 0.012628 0.014933 0.007632 0.028398 0.013917 0.000000 0.017192 0.044753 0.055441 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014736 0.008905 0.017110 0.000000 0.015250 0.014200 0.000000 0.000000 0.041407 0.017816 0.000000 0.000000 0.023369 0.015494 0.037468 0.000000 0.022251 0.025184 0.000000 0.037247 0.031281 0.035480 0.040633 0.010726 0.036038 0.000000 0.035126 0.034944 0.035628 0.00000 0.048246 0.023467 0.000000 0.015570 0.000000 0.000000 0.020285 0.033779 0.006990 0.012441 0.038863 0.027315 0.000000 0.017914 0.018523 0.007806 0.006642 0.000000 0.000000 0.000000 0.150894 0.016490 0.000000 0.021726 0.000000 0.050728 0.000000 0.012006 0.038962 0.025196 0.051985 0.015017 0.000000 0.000000 0.009792 0.000000 0.023053 0.007520 0.000000 0.000000 0.024770 0.000000 0.038198 0.007968 0.014016 0.000000 0.047636 0.000000 0.010572 0.049255 0.000000 0.029025 0.010823 0.015327 0.021163 0.020753 0.000000 0.008687 0.010106 0.000000 0.000000 0.000000 0.000000 0.040911 0.012062 0.032918 0.141640 0.000000 0.000000 0.029547 0.0 0.029386 0.042019 0.000000 0.021938 0.055836 0.012430 0.020858 0.000000 0.000000 0.012474 0.007703 0.000000 0.015406 0.00738 0.030940 0.000000 0.000000 0.011331 0.014013 0.016537 0.000000 0.000000 0.007332 0.006133 0.007593 0.036089 0.030337 0.122516 0.007311 0.019963 0.000000 0.019912 0.000000 0.000000 0.010512 0.000000 0.000000 0.000000 0.017896 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012707 0.058050 0.050472 0.060883 0.000000 0.000000 0.000000 0.000000 0.000000 0.031957 0.014145 0.000000 0.000000 0.000000 0.000000 0.000000 0.013486 0.012585 0.041126 0.038710 0.011693 0.017043 0.000000 0.046390 0.000000 0.030709 0.050000 0.014647 0.016154 0.016866 0.042323 0.000000 0.009033 0.000000 0.008439 0.000000 0.000000 0.008881 0.013758 0.024431 0.052467 0.016961 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.012156 0.011522 0.006851 0.006656 0.016979 0.0000 0.018743 0.021464 0.000000 0.000000 0.000000 0.016734 0.007874 0.024547 0.000000 0.000000 0.024432 0.043750 0.000000 0.014040 0.000000 0.000000 0.000000 0.024401 0.000000 0.010286 0.009315 0.000000 0.021107 0.000000 0.005818 0.000000 0.016432 0.011647 0.000000 0.00000 0.000000 0.011483 0.038118 0.000000 0.044046 0.0 0.007938 0.014834 0.000000 0.029871 0.031471 0.000000 0.015977 0.000000 0.042164 0.010858 0.007011 0.000000 0.022381 0.019582 0.000000 0.000000 0.022303 0.010302 0.022219 0.000000 0.006070 0.046416 0.028020 0.005831 0.000000 0.000000 0.036324 0.000000 0.000000 0.007882 0.0 0.000000 0.005933 0.000000 0.000000 0.012133 0.000000 0.008371 0.007890 0.029205 0.018085 0.000000 0.021938 0.000000 0.000000 0.012389 0.000000 0.000000 0.032569 0.000000 0.000000 0.000000 0.000000 0.022633 0.034176 0.000000 0.034811 0.000000 0.000000 0.000000 0.053555 0.015564 0.011561 0.000000 0.016404 0.000000 0.000000 0.011323 0.065512 0.000000 0.000000 0.027399 0.000000 0.000000 0.000000 0.000000 0.000000 0.036185 0.045912 0.0 0.016588 0.058181 0.015281 0.0 0.000000 0.000000 0.011889 0.008516 0.000000 0.060995 0.000000 0.000000 0.000000 0.000000 0.015200 0.109034 0.018652 0.021136 0.017270 0.010687 0.009623 0.000000 0.000000 0.037884 0.000000 0.017354 0.107732 0.000000 0.000000 0.020081 0.008914 0.009693 0.014282 0.000000 0.011973 0.007330 0.014945 0.022008 0.021239 0.000000 0.053686 0.000000 0.039002 0.019332 0.018285 0.029131 0.000000 0.000000 0.047261 0.016271 0.018670 0.000000 0.000000 0.009638 0.011543 0.035834 0.013041 0.000000 0.009082 0.000000 0.015561 0.010700 0.006249 0.000000 0.000000 0.000000 0.000000 0.037875 0.000000 0.013162 0.016194 0.048036 0.000000 0.000000 0.049477 0.019027 0.000000 0.027650 0.036360 0.015607 0.005135 0.000000 0.115139 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009281 0.014467 0.000000 0.000000 0.082722 0.000000 0.011067 0.033039 0.020221 0.023545 0.013359 0.035122 0.023752 0.000000 0.000000 0.000000 0.000000 0.008502 0.000000 0.000000 0.000000 0.000000 0.000000 0.015133 0.015564 0.000000 0.011727 0.014433 0.000000 0.000000 0.000000 0.024808 0.000000 0.070268 0.008224 0.000000 0.012569 0.063634 0.017560 0.031513 0.011813 0.010512 0.000000 0.020551 0.000000 0.000000 0.000000 0.000000 0.0 0.038844 0.019839 0.022121 0.0 0.000000 0.000000 0.030626 0.000000 0.0 0.000000 0.017627 0.000000 0.000000 0.000000 0.011705 0.040277 0.009760 0.015347 0.000000 0.000000 0.137504 0.027351 0.000000 0.019129 0.046186 0.022125 0.000000 0.0 0.000000 0.014722 0.000000 0.000000 0.000000 0.000000 0.076082 0.057858 0.000000 0.015793 0.000000 0.015831 0.019154 0.024839 0.000000 0.033444 0.000000 0.011539 0.000000 0.017204 0.041962 0.0 0.015418 0.000000 0.000000 0.000000 0.000000 0.000000 0.010756 0.000000 0.015041 0.000000 0.000000 0.008430 0.000000 0.017336 0.027621 0.030170 0.0 0.000000 0.010928 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.027589 0.012454 0.011040 0.007703 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022953 0.000000 0.015298 0.029664 0.011452 0.030598 0.011913 0.010450 0.000000 0.007237 0.023983 0.000000 0.009913 0.007329 0.04279 0.000000 0.023302 0.000000 0.032473 0.009954 0.026390 0.048023 0.031406 0.000000 0.019263 0.000000 0.009004 0.000000 0.000000 0.000000 0.012967 0.000000 0.000000 0.000000 0.009627 0.009679 0.010984 0.015297 0.000000 0.035113 0.000000 0.047657 0.016633 0.000000 0.000000 0.000000 0.000000 0.056720 0.035409 0.008521 0.000000 0.000000 0.000000 0.016722 0.000000 0.020345 0.000000 0.000000 0.013592 0.000000 0.000000 0.000000 0.018642 0.000000 0.000000 0.010100 0.028345 0.013054 0.000000 0.000000 0.000000 0.000000 0.011979 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015508 0.000000 0.089575 0.016475 0.000000 0.020016 0.000000 0.000000 0.036287 0.0 0.000000 0.039958 0.041815 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.044528 0.040726 0.017217 0.000000 0.048780 0.000000 0.011424 0.000000 0.099344 0.000000 0.055584 0.000000 0.000000 0.000000 0.000000 0.040480 0.000000 0.000000 0.000000 0.000000 0.044356 0.014364 0.013238 0.000000 0.000000 0.000000 0.024543 0.000000 0.000000 0.012961 0.016609 0.012987 0.000000 0.000000 0.008474 0.0 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.041829 0.000000 0.009162 0.014723 0.000000 0.000000 0.0 0.018411 0.013555 0.000000 0.000000 0.070978 0.000000 0.000000 0.018872 0.056751 0.016593 0.062395 0.028489 0.000000 0.024699 0.022035 0.015175 0.014510 0.023016 0.016035 0.000000 0.017370 0.033784 0.000000 0.000000 0.014516 0.053366 0.008136 0.000000 0.000000 0.000000 0.027915 0.000000 0.000000 0.033702 0.046665 0.000000 0.007290 0.042481 0.005982 0.014154 0.000000 0.015445 0.000000 0.008627 0.012506 0.000000 0.016628 0.000000 0.041969 0.000000 0.0 0.025585 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.016846 0.000000 0.012281 0.019532 0.023340 0.016991 0.049763 0.052014 0.000000 0.015701 0.000000 0.037991 0.011609 0.000000 0.000000 0.019467 0.000000 0.028352 0.000000 0.041393 0.012067 0.007882 0.008362 0.008362 0.000000 0.000000 0.013430 0.000000 0.012827 0.000000 0.025284 0.000000 0.012659 0.000000 0.000000 0.000000 0.072916 0.0 0.0 0.0 0.017322 0.208624 0.014522 0.000000 0.000000 0.00000 0.057974 0.090064 0.000000 0.021510 0.000000 0.000000 0.016793 0.000000 0.000000 0.000000 0.013550 0.000000 0.000000 0.010666 0.018740 0.000000 0.000000 0.014653 0.025857 0.000000 0.000000 0.030110 0.031650 0.011470 0.000000 0.000000 0.0 0.000000 0.010968 0.000000 0.000000 0.006845 0.000000 0.0134 0.000000 0.000000 0.000000 0.0 0.0 0.027395 0.000000 0.0 0.014073 0.000000 0.017521 0.000000 0.0 0.068813 0.000000 0.031139 0.000000 0.000000 0.011498 0.000000 0.000000 0.012090 0.000000 0.000000 0.000000 0.007225 0.011033 0.007123 0.000000 0.053674 0.009012 0.000000 0.000000 0.024480 0.015656 0.000000 0.000000 0.000000 0.000000 0.000000 0.017685 0.011164 0.000000 0.000000 0.013261 0.035214 0.0 0.000000 0.009393 0.049198 0.000000 0.030136 0.044259 0.000000 0.000000 0.000000 0.021693 0.000000 0.047714 0.011049 0.000000 0.000000 0.000000 0.017786 0.00000 0.042020 0.008180 0.000000 0.023435 0.000000 0.000000 0.078179 0.019231 0.023276 0.022753 0.025298 0.000000 0.041796 0.016377 0.000000 0.031380 0.029104 0.014821 0.000000 0.000000 0.000000 0.023841 0.000000 0.000000 0.018548 0.006931 0.000000 0.000000 0.015086 0.000000 0.042480 0.013128 0.016172 0.013660 0.080488 0.035821 0.000000 0.000000 0.000000 0.033393 0.016233 0.000000 0.013810 0.000000 0.036225 0.031076 0.000000 0.014386 0.000000 0.006616 0.011636 0.000000 0.015015 0.000000 0.012595 0.016076 0.014536 0.058730 0.013200 0.054613 0.000000 0.009765 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.007196 0.000000 0.028938 0.00000 0.065457 0.042348 0.011802 0.000000 0.025863 0.0 0.000000 0.000000 0.0 0.000000 0.029013 0.071137 0.019523 0.007908 0.014391 0.000000 0.007706 0.014095 0.046099 0.000000 0.000000 0.004240 0.015142 0.000000 0.000000 0.011921 0.000000 0.000000 0.009544 0.034448 0.000000 0.000000 0.000000 0.042698 0.016713 0.000000 0.012503 0.000000 0.000000 0.083448 0.000000 0.008122 0.000000 0.000000 0.000000 0.000000 0.014514 0.019371 0.052000 0.010741 0.000000 0.010048 0.011077 0.000000 0.035692 0.000000 0.115619 0.019516 0.007701 0.008879 0.006590 0.000000 0.000000 0.007500 0.000000 0.018503 0.000000 0.000000 0.019173 0.000000 0.019570 0.025404 0.013128 0.034284 0.026729 0.014102 0.015669 0.000000 0.000000 0.000000 0.017865 0.000000 0.010119 0.011817 0.000000 0.036652 0.000000 0.000000 0.008714 0.017179 0.095491 0.010788 0.014812 0.000000 0.059149 0.013616 0.000000 0.026719 0.000000 0.009203 0.000000 0.000000 0.000000 0.0 0.036846 0.000000 0.000000 0.000000 0.000000 0.029030 0.036082 0.0 0.000000 0.000000 0.019262 0.000000 0.000000 0.000000 0.023803 0.045243 0.000000 0.014494 0.013602 0.0 0.010619 0.0 0.0 0.014953 0.000000 0.000000 0.016203 0.000000 0.042504 0.010350 0.000000 0.000000 0.000000 0.131525 0.030108 0.000000 0.000000 0.000000 0.000000 0.008104 0.014939 0.014413 0.0 0.000000 0.009215 0.000000 0.000000 0.000000 0.008805 0.022579 0.014021 0.018876 0.000000 0.000000 0.000000 0.000000 0.042853 0.000000 0.000000 0.000000 0.027016 0.009805 0.012703 0.000000 0.009639 0.000000 0.011639 0.015136 0.000000 0.012790 0.000000 0.025283 0.000000 0.012311 0.016436 0.000000 0.000000 0.000000 0.000000 0.019986 0.000000 0.000000 0.000000 0.017195 0.070051 0.015413 0.000000 0.010351 0.014659 0.024060 0.000000 0.000000 0.000000 0.041209 0.017848 0.000000 0.000000 0.000000 0.000000 0.021551 0.035893 0.000000 0.010244 0.000000 0.000000 0.000000 0.028842 0.013235 0.016942 0.038527 0.000000 0.000000 0.000000 0.000000 0.015289 0.039900 0.014070 0.121082 0.014044 0.035932 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012664 0.040568 0.000000 0.012846 0.000000 0.000000 0.000000 0.014032 0.000000 0.0 0.0 0.000000 0.027201 0.000000 0.000000 0.015132 0.000000 0.000000 0.0 0.034428 0.017415 0.025781 0.009269 0.000000 0.013815 0.018183 0.000000 0.007414 0.000000 0.036301 0.000000 0.008717 0.024735 0.013343 0.024365 0.000000 0.000000 0.000000 0.033529 0.000000 0.012575 0.019629 0.000000 0.000000 0.000000 0.010112 0.000000 0.044826 0.000000 0.000000 0.012436 0.047682 0.016837 0.000000 0.016759 0.000000 0.000000 0.011697 0.000000 0.032747 0.015414 0.041122 0.00000 0.000000 0.000000 0.021643 0.000000 0.046663 0.024922 0.030813 0.006688 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.059171 0.000000 0.076146 0.000000 0.021020 0.00000 0.060227 0.008342 0.042471 0.016335 0.013326 0.030426 0.041348 0.043670 0.000000 0.014138 0.088536 0.000000 0.000000 0.000000 0.020875 0.018700 0.000000 0.000000 0.000000 0.014986 0.000000 0.014862 0.000000 0.000000 0.000000 0.042982 0.012996 0.00000 0.000000 0.017206 0.016135 0.000000 0.017178 0.000000 0.008752 0.017750 0.013292 0.000000 0.071075 0.000000 0.000000 0.0 0.007167 0.000000 0.007708 0.000000 0.013784 0.025009 0.000000 0.013673 0.000000 0.000000 0.000000 0.085264 0.000000 0.017640 0.015554 0.000000 0.038782 0.000000 0.000000 0.000000 0.022778 0.010266 0.000000 0.000000 0.000000 0.046063 0.025229 0.000000 0.129723 0.000000 0.000000 0.000000 0.030508 0.012478 0.017114 0.036580 0.000000 0.033804 0.033785 0.0 0.016782 0.000000 0.034681 0.000000 0.000000 0.041774 0.000000 0.000000 0.000000 0.000000 0.013083 0.016627 0.000000 0.018054 0.014611 0.028759 0.041824 0.011424 0.000000 0.0 0.026154 0.000000 0.010529 0.000000 0.034052 0.032817 0.017468 0.013848 0.017223 0.019431 0.011315 0.019033 0.000000 0.046954 0.017593 0.052413 0.000000 0.043630 0.017114 0.017433 0.027175 0.000000 0.017863 0.031911 0.000000 0.000000 0.034578 0.000000 0.055401 0.000000 0.00000 0.020556 0.000000 0.000000 0.008913 0.000000 0.000000 0.009541 0.018500 0.019541 0.038303 0.000000 0.000000 0.000000 0.0 0.027447 0.012880 0.000000 0.000000 0.121007 0.026386 0.014208 0.000000 0.0 0.0 0.000000 0.020942 0.000000 0.010248 0.000000 0.0 0.0 0.043893 0.0 0.018102 0.000000 0.000000 0.000000 0.000000 0.009793 0.038694 0.000000 0.024130 0.076102 0.023977 0.000000 0.025242 0.000000 0.000000 0.000000 0.000000 0.016117 0.000000 0.000000 0.000000 0.008629 0.008225 0.022456 0.000000 0.071832 0.020166 0.014303 0.0 0.016864 0.000000 0.000000 0.038179 0.000000 0.021686 0.014640 0.020804 0.024607 0.037109 0.048844 0.000000 0.077683 0.010505 0.000000 0.000000 0.011802 0.000000 0.000000 0.080500 0.018523 0.000000 0.015630 0.031076 0.011604 0.000000 0.083552 0.000000 0.011627 0.000000 0.000000 0.008575 0.000000 0.000000 0.020163 0.000000 0.020667 0.000000 0.000000 0.024280 0.098687 0.000000 0.012318 0.014774 0.0 0.000000 0.000000 0.068420 0.012313 0.000000 0.011504 0.000000 0.000000 0.021446 0.013996 0.000000 0.000000 0.015359 0.000000 0.074771 0.008705 0.040697 0.000000 0.000000 0.010916 0.000000 0.062838 0.016094 0.045912 0.023012 0.017285 0.066709 0.000000 0.007483 0.000000 0.046072 0.000000 0.000000 0.017925 0.018857 0.024838 0.013537 0.000000 0.067326 0.000000 0.025043 0.000000 0.027351 0.027351 0.000000 0.013376 0.000000 0.037075 0.079532 0.000000 0.033943 0.000000 0.000000 0.047817 0.000000 0.049541 0.013058 0.000000 0.000000 0.000000 0.026896 0.038386 0.031192 0.017145 0.011846 0.000000 0.000000 0.000000 0.016446 0.000000 0.000000 0.011491 0.007818 0.018389 0.000000 0.044859 0.000000 0.013659 0.030282 0.000000 0.009638 0.000000 0.009358 0.000000 0.048327 0.010291 0.000000 0.009281 0.015109 0.000000 0.013095 0.016399 0.000000 0.012381 0.000000 0.000000 0.028849 0.017585 0.010428 0.014888 0.013803 0.000000 0.000000 0.000000 0.000000 0.000000 0.019513 0.018393 0.000000 0.000000 0.058145 0.000000 0.000000 0.000000 0.015771 0.000000 0.028471 0.008608 0.000000 0.032774 0.000000 0.012344 0.011403 0.000000 0.012243 0.000000 0.000000 0.027503 0.000000 0.057673 0.000000 0.024681 0.013158 0.031501 0.026471 0.000000 0.000000 0.014533 0.010259 0.000000 0.023699 0.015648 0.030779 0.000000 0.052568 0.006983 0.000000 0.000000 0.000000 0.016025 0.000000 0.000000 0.034837 0.036588 0.017425 0.018963 0.000000 0.000000 0.000000 0.000000 0.000000 0.016941 0.024861 0.013390 0.00000 0.023231 0.025764 0.000000 0.000000 0.010581 0.000000 0.012330 0.000000 0.023892 0.000000 0.031951 0.000000 0.043196 0.000000 0.000000 0.000000 0.045286 0.014268 0.000000 0.000000 0.017124 0.000000 0.013344 0.010317 0.008581 0.000000 0.000000 0.000000 0.015980 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014338 0.042783 0.015219 0.000000 0.000000 0.000000 0.0 0.000000 0.015580 0.000000 0.000000 0.000000 0.014654 0.000000 0.064607 0.000000 0.000000 0.022070 0.000000 0.000000 0.000000 0.007889 0.019497 0.000000 0.000000 0.000000 0.023201 0.000000 0.014961 0.000000 0.000000 0.050804 0.000000 0.000000 0.015040 0.000000 0.044454 0.000000 0.000000 0.007902 0.000000 0.0 0.000000 0.0 0.018818 0.017842 0.000000 0.015808 0.016445 0.026634 0.008554 0.000000 0.000000 0.013883 0.015539 0.038354 0.00000 0.0 0.019317 0.006870 0.000000 0.000000 0.000000 0.000000 0.007153 0.027294 0.012178 0.0 0.000000 0.014217 0.000000 0.000000 0.00000 0.014999 0.097765 0.000000 0.000000 0.032110 0.000000 0.000000 0.017567 0.047734 0.000000 0.035854 0.014543 0.000000 0.020083 0.135950 0.010740 0.000000 0.011970 0.027351 0.044032 0.000000 0.000000 0.000000 0.029164 0.015634 0.000000 0.000000 0.009680 0.000000 0.024889 0.016024 0.01888 0.000000 0.044427 0.014369 0.000000 0.024581 0.039164 0.008994 0.000000 0.013937 0.017844 0.000000 0.015090 0.000000 0.023802 0.013769 0.025252 0.000000 0.011064 0.032614 0.015209 0.026255 0.0 0.009856 0.000000 0.000000 0.014281 0.000000 0.000000 0.000000 0.016516 0.000000 0.000000 0.000000 0.040724 0.012908 0.036289 0.000000 0.000000 0.000000 0.017446 0.000000 0.017029 0.019686 0.000000 0.000000 0.019380 0.015310 0.014354 0.000000 0.0 0.000000 0.030489 0.000000 0.000000 0.034660 0.048783 0.020316 0.016851 0.000000 0.000000 0.000000 0.018946 0.000000 0.011721 0.015815 0.000000 0.014898 0.000000 0.000000 0.056309 0.000000 0.000000 0.000000 0.034585 0.000000 0.000000 0.0 0.012162 0.029975 0.000000 0.0 0.000000 0.000000 0.000000 0.008485 0.063826 0.000000 0.000000 0.000000 0.017996 0.000000 0.039158 0.000000 0.000000 0.000000 0.000000 0.021883 0.000000 0.000000 0.011452 0.000000 0.017590 0.000000 0.029057 0.030404 0.000000 0.000000 0.000000 0.000000 0.000000 0.007118 0.036187 0.000000 0.0 0.000000 0.000000 0.000000 0.009067 0.013358 0.006672 0.000000 0.000000 0.016256 0.000000 0.000000 0.000000 0.017873 0.00000 0.000000 0.000000 0.027735 0.025473 0.013476 0.000000 0.011604 0.012889 0.000000 0.000000 0.027917 0.000000 0.000000 0.000000 0.045704 0.011615 0.000000 0.044055 0.000000 0.000000 0.008499 0.000000 0.000000 0.018120 0.000000 0.051035 0.0000 0.000000 0.025855 0.000000 0.014928 0.000000 0.000000 0.000000 0.014442 0.0 0.014281 0.000000 0.014594 0.009119 0.000000 0.000000 0.008054 0.019794 0.000000 0.0 0.023118 0.014875 0.000000 0.000000 0.000000 0.010134 0.000000 0.000000 0.000000 0.018705 0.009227 0.015661 0.029812 0.000000 0.000000 0.013736 0.000000 0.000000 0.033179 0.008533 0.009773 0.025535 0.017637 0.017140 0.00000 0.045680 0.031613 0.008414 0.031871 0.00000 0.010955 0.000000 0.028934 0.000000 0.013032 0.009178 0.009516 0.000000 0.0 0.013305 0.000000 0.000000 0.043878 0.000000 0.022664 0.012598 0.000000 0.000000 0.023384 0.000000 0.000000 0.000000 0.011243 0.010911 0.036084 0.027063 0.023145 0.008833 0.026301 0.022438 0.000000 0.000000 0.000000 0.015545 0.013124 0.000000 0.034906 0.000000 0.027416 0.000000 0.018614 0.009887 0.000000 0.013396 0.000000 0.027847 0.008126 0.000000 0.000000 0.010018 0.042357 0.016043 0.045059 0.000000 0.000000 0.025286 0.018329 0.011881 0.000000 0.014259 0.013016 0.000000 0.000000 0.000000 0.000000 0.039521 0.054310 0.018499 0.000000 0.018372 0.000000 0.064434 0.000000 0.029079 0.014512 0.041862 0.000000 0.022466 0.000000 0.000000 0.049100 0.008977 0.000000 0.007383 0.009736 0.055321 0.009392 0.000000 0.036923 0.000000 0.000000 0.014529 0.009548 0.052869 0.011479 0.010567 0.012339 0.0 0.000000 0.000000 0.007185 0.029977 0.000000 0.000000 0.000000 0.049200 0.022606 0.000000 0.000000 0.000000 0.024051 0.000000 0.040696 0.056892 0.009125 0.0 0.000000 0.011235 0.000000 0.021177 0.025752 0.061099 0.017799 0.000000 0.031127 0.015634 0.037519 0.000000 0.031881 0.000000 0.009349 0.000000 0.000000 0.023695 0.000000 0.000000 0.010037 0.000000 0.000000 0.000000 0.020729 0.038031 0.000000 0.030172 0.000000 0.000000 0.014304 0.000000 0.012137 0.000000 0.055177 0.000000 0.019562 0.000000 0.000000 0.009959 0.000000 0.027826 0.013295 0.000000 0.014847 0.000000 0.008945 0.044176 0.033303 0.000000 0.0 0.005614 0.000000 0.032070 0.000000 0.025365 0.000000 0.008017 0.015061 0.034538 0.012831 0.029016 0.000000 0.000000 0.009515 0.000000 0.000000 0.000000 0.000000 0.000000 0.007975 0.000000 0.000000 0.000000 0.00000 0.012813 0.000000 0.016053 0.011129 0.000000 0.027637 0.017887 0.000000 0.079998 0.022061 0.016530 0.034802 0.000000 0.062782 0.000000 0.014949 0.009358 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.017828 0.000000 0.000000 0.017357 0.000000 0.010542 0.018451 0.059462 0.000000 0.031157 0.006506 0.000000 0.015153 0.018089 0.047519 0.000000 0.023501 0.000000 0.016903 0.00000 0.015028 0.039489 0.000000 0.020407 0.000000 0.000000 0.016967 0.000000 0.000000 0.013769 0.014108 0.000000 0.000000 0.032643 0.124377 0.015141 0.009639 0.000000 0.048455 0.000000 0.006843 0.000000 0.000000 0.000000 0.015173 0.0 0.000000 0.017403 0.000000 0.000000 0.000000 0.030637 0.035583 0.000000 0.000000 0.015936 0.053762 0.027624 0.000000 0.000000 0.000000 0.011653 0.000000 0.015878 0.012199 0.000000 0.016500 0.000000 0.000000 0.062705 0.025501 0.000000 0.000000 0.000000 0.000000 0.046225 0.000000 0.000000 0.000000 0.000000 0.020502 0.021226 0.000000 0.000000 0.000000 0.124907 0.000000 0.000000 0.018158 0.0 0.000000 0.000000 0.000000 0.016329 0.028617 0.011424 0.000000 0.038112 0.0 0.000000 0.000000 0.016656 0.012729 0.000000 0.021902 0.000000 0.025419 0.000000 0.014270 0.009698 0.000000 0.000000 0.0 0.000000 0.000000 0.040266 0.021752 0.0 0.0 0.000000 0.000000 0.000000 0.031838 0.091518 0.000000 0.000000 0.03685 0.000000 0.039827 0.012265 0.000000 0.000000 0.054216 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013902 0.025848 0.000000 0.005937 0.013776 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014293 0.000000 0.000000 0.023591 0.000000 0.026980 0.000000 0.000000 0.039647 0.041235 0.054838 0.050305 0.045687 0.070683 0.010217 0.000000 0.022080 0.000000 0.029508 0.000000 0.000000 0.030030 0.000000 0.015846 0.044238 0.000000 0.015611 0.021240 0.019464 0.000000 0.000000 0.000000 0.041157 0.000000 0.019753 0.020132 0.0 0.052211 0.030426 0.000000 0.000000 0.039656 0.000000 0.000000 0.000000 0.014900 0.000000 0.036582 0.010812 0.000000 0.033092 0.018145 0.018647 0.026021 0.022506 0.000000 0.014437 0.0 0.000000 0.010453 0.000000 0.000000 0.000000 0.012901 0.011369 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.012751 0.0 0.000000 0.000000 0.00000 0.023297 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011078 0.000000 0.000000 0.012132 0.000000 0.021865 0.043850 0.000000 0.0 0.019701 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.018391 0.009080 0.000000 0.045919 0.000000 0.000000 0.027094 0.015467 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.015425 0.000000 0.0 0.0 0.024361 0.0 0.000000 0.013006 0.013006 0.0 0.042439 0.000000 0.000000 0.0 0.0 0.010910 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.017807 0.000000 0.00000 0.000000 0.000000 0.015384 0.011403 0.000000 0.000000 0.011011 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.00000 0.000000 0.000000 0.0 0.018089 0.018089 0.0 0.016862 0.039391 0.000000 0.000000 0.000000 0.00000 0.000000 0.011249 0.019381 0.0 0.011279 0.041479 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.00000 0.028666 0.039513 0.000000 0.000000 0.010490 0.012709 0.072682 0.011859 0.011892 0.000000 0.022177 0.000000 0.020484 0.000000 0.013335 0.000000 0.013555 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017081 0.024806 0.000000 0.000000 0.014761 0.000000 0.000000 0.060035 0.000000 0.011379 0.016894 0.010603 0.000000 0.000000 0.000000 0.011007 0.000000 0.000000 0.039996 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.009643 0.023590 0.000000 0.035495 0.042772 0.010159 0.000000 0.000000 0.000000 0.000000 0.000000 0.081263 0.000000 0.007284 0.054453 0.000000 0.021009 0.000000 0.068846 0.000000 0.0000 0.021302 0.034324 0.042964 0.021256 0.019647 0.043813 0.011785 0.043813 0.043813 0.000000 0.000000 0.000000 0.009681 0.017707 0.007912 0.017076 0.027845 0.018315 0.066822 0.0 0.010750 0.000000 0.010008 0.000000 0.010183 0.008476 0.000000 0.000000 0.050073 0.008765 0.000000 0.040523 0.000000 0.015843 0.000000 0.000000 0.026109 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027507 0.000000 0.021713 0.010088 0.000000 0.024472 0.026335 0.000000 0.018787 0.000000 0.000000 0.023963 0.024989 0.0 0.000000 0.012461 0.000000 0.000000 0.000000 0.0 0.010009 0.011086 0.000000 0.000000 0.011079 0.0 0.011187 0.000000 0.000000 0.000000 0.00000 0.000000 0.00000 0.0 0.000000 0.000000 0.00000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.020032 0.000000 0.000000 0.000000 0.011243 0.020962 0.000000 0.000000 0.011187 0.011621 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010746 0.000000 0.031157 0.000000 0.000000 0.00000 0.028446 0.000000 0.000000 0.000000 0.0 0.000000 0.010968 0.000000 0.000000 0.000000 0.0 0.00000 0.070332 0.010107 0.009025 0.016592 0.018484 0.012175 0.00000 0.000000 0.023913 0.009964 0.000000 0.022196 0.025805 0.000000 0.023009 0.010014 0.011503 0.017070 0.012788 0.000000 0.010183 0.016994 0.000000 0.000000 0.000000 0.000000 0.020070 0.012294 0.000000 0.000000 0.019299 0.034556 0.083816 0.000000 0.000000 0.0 0.000000 0.057360 0.000000 0.000000 0.000000 0.000000 0.011796 0.102115 0.000000 0.000000 0.026516 0.010529 0.000000 0.013017 0.000000 0.000000 0.029433 0.000000 0.000000 0.053858 0.015171 0.000000 0.021954 0.000000 0.018961 0.000000 0.000000 0.020120 0.010541 0.084385 0.000000 0.012389 0.000000 0.007383 0.000000 0.000000 0.000000 0.000000 0.0 0.011067 0.000000 0.000000 0.000000 0.010828 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.007801 0.011568 0.000000 0.000000 0.010996 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.010733 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012095 0.011343 0.000000 0.000000 0.010789 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037539 0.035173 0.000000 0.008720 0.000000 0.0 0.000000 0.000000 0.00000 0.010793 0.000000 0.000000 0.000000 0.008543 0.009390 0.000000 0.029268 0.000000 0.011015 0.000000 0.000000 0.00000 0.000000 0.000000 0.019398 0.000000 0.000000 0.028106 0.000000 0.000000 0.0 0.000000 0.0 0.008925 0.000000 0.000000 0.000000 0.00000 0.053952 0.000000 0.010832 0.013459 0.000000 0.063674 0.016037 0.033354 0.000000 0.000000 0.000000 0.000000 0.032350 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.051154 0.0 0.000000 0.0 0.000000 0.016203 0.053958 0.000000 0.000000 0.015003 0.000000 0.000000 0.018721 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.026693 0.000000 0.000000 0.00000 0.019421 0.000000 0.000000 0.010182 0.009838 0.000000 0.009788 0.047791 0.000000 0.0 0.010439 0.011707 0.0 0.000000 0.000000 0.052035 0.058353 0.046398 0.000000 0.0 0.011061 0.000000 0.010473 0.000000 0.050429 0.000000 0.007883 0.000000 0.024773 0.000000 0.010024 0.0 0.022005 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.010715 0.000000 0.061466 0.00000 0.00000 0.012957 0.00000 0.018476 0.000000 0.034458 0.000000 0.000000 0.011961 0.000000 0.093436 0.00000 0.000000 0.000000 0.000000 0.00000 0.00000 0.000000 0.000000 0.010094 0.000000 0.00000 0.000000 0.0 0.019329 0.000000 0.008953 0.0 0.000000 0.000000 0.047907 0.007881 0.019244 0.000000 0.000000 0.000000 0.013691 0.0 0.020545 0.000000 0.018698 0.020390 0.018012 0.015911 0.000000 0.000000 0.000000 0.000000 0.016784 0.010313 0.021450 0.028284 0.010684 0.018855 0.000000 0.000000 0.040086 0.013854 0.007126 0.028331 0.081263 0.000000 0.027971 0.039342 0.000000 0.020536 0.023039 0.000000 0.000000 0.008256 0.000000 0.009876 0.00000 0.000000 0.009113 0.000000 0.013970 0.022195 0.011165 0.007894 0.032067 0.000000 0.037345 0.018761 0.010626 0.00000 0.009899 0.026359 0.071248 0.010782 0.022514 0.033317 0.065801 0.000000 0.042899 0.010106 0.008019 0.019215 0.010438 0.000000 0.012941 0.000000 0.0 0.011234 0.010481 0.0 0.000000 0.000000 0.009500 0.032081 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.015480 0.015541 0.010672 0.000000 0.000000 0.030142 0.000000 0.047453 0.017294 0.051788 0.039280 0.009744 0.013084 0.00000 0.036343 0.033500 0.0 0.000000 0.0 0.040561 0.000000 0.000000 0.012367 0.00000 0.000000 0.010624 0.0 0.000000 0.059480 0.0 0.000000 0.000000 0.000000 0.016281 0.0 0.000000 0.010959 0.022346 0.000000 0.011225 0.015349 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.029099 0.000000 0.000000 0.0 0.010094 0.011623 0.0000 0.011249 0.020310 0.000000 0.016685 0.059734 0.000000 0.000000 0.032875 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032533 0.026672 0.010078 0.076905 0.008299 0.020817 0.000000 0.008725 0.013275 0.000000 0.000000 0.010781 0.025566 0.000000 0.034644 0.000000 0.025131 0.000000 0.044987 0.000000 0.032509 0.000000 0.011240 0.008558 0.0000 0.011765 0.000000 0.018020 0.0 0.00000 0.000000 0.032681 0.013656 0.011549 0.009978 0.00000 0.000000 0.000000 0.000000 0.009617 0.018542 0.018985 0.00000 0.014606 0.000000 0.009116 0.046372 0.000000 0.000000 0.024555 0.009726 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.023429 0.000000 0.000000 0.021831 0.000000 0.000000 0.000000 0.000000 0.011162 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.0 0.011534 0.010351 0.00000 0.000000 0.011162 0.000000 0.000000 0.011912 0.000000 0.033266 0.000000 0.010818 0.047988 0.000000 0.000000 0.011747 0.011343 0.010128 0.030690 0.00000 0.000000 0.011158 0.000000 0.000000 0.000000 0.000000 0.00000 0.011461 0.021327 0.011613 0.009415 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.009894 0.000000 0.000000 0.049735 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.010206 0.048411 0.000000 0.000000 0.000000 0.043618 0.000000 0.00000 0.008136 0.000000 0.044176 0.000000 0.000000 0.009980 0.000000 0.000000 0.009284 0.013737 0.010076 0.0 0.000000 0.000000 0.015154 0.026163 0.0192 0.027493 0.000000 0.042811 0.000000 0.074924 0.039525 0.009136 0.000000 0.008244 0.011549 0.010044 0.000000 0.000000 0.000000 0.000000 0.0 0.06116 0.023173 0.048523 0.053539 0.008508 0.000000 0.000000 0.011350 0.007584 0.01847 0.000000 0.000000 0.000000 0.011645 0.000000 0.000000 0.029998 0.000000 0.009632 0.041240 0.035425 0.017154 0.000000 0.037918 0.000000 0.030886 0.000000 0.000000 0.000000 0.000000 0.000000 0.007602 0.031702 0.038828 0.011966 0.009312 0.000000 0.009659 0.010718 0.000000 0.010904 0.014308 0.021464 0.021982 0.007727 0.009822 0.016609 0.000000 0.000000 0.0 0.021877 0.000000 0.107314 0.00000 0.000000 0.028637 0.000000 0.040027 0.055613 0.040745 0.000000 0.000000 0.000000 0.000000 0.019029 0.000000 0.000000 0.000000 0.077395 0.025318 0.036464 0.033015 0.000000 0.025286 0.066393 0.031721 0.016731 0.058663 0.024967 0.009069 0.014252 0.019266 0.000000 0.0 0.020450 0.021983 0.019221 0.000000 0.059673 0.000000 0.020309 0.000000 0.007262 0.039836 0.012633 0.056067 0.07277 0.015658 0.000000 0.019228 0.006590 0.000000 0.014129 0.008821 0.023799 0.000000 0.056161 0.000000 0.018287 0.014112 0.000000 0.000000 0.000000 0.009742 0.000000 0.067781 0.000000 0.043175 0.035723 0.011651 0.000000 0.000000 0.000000 0.00000 0.000000 0.035964 0.000000 0.026449 0.000000 0.015400 0.000000 0.013644 0.013321 0.0 0.000000 0.028228 0.014352 0.021397 0.000000 0.011178 0.0 0.000000 0.013342 0.010783 0.0 0.0 0.024472 0.011749 0.000000 0.035869 0.000000 0.000000 0.000000 0.014042 0.011113 0.000000 0.029169 0.010233 0.012367 0.000000 0.000000 0.000000 0.00000 0.010084 0.010136 0.029169 0.000000 0.028446 0.0 0.023842 0.000000 0.019301 0.000000 0.017596 0.017821 0.013026 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020390 0.012193 0.000000 0.000000 0.024072 0.014112 0.008363 0.000000 0.000000 0.008633 0.016941 0.025446 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.054946 0.016642 0.000000 0.000000 0.000000 0.027189 0.000000 0.024083 0.0 0.00000 0.028637 0.000000 0.016265 0.019469 0.050455 0.010331 0.015357 0.008423 0.000000 0.000000 0.007695 0.000000 0.000000 0.012081 0.021070 0.000000 0.0 0.000000 0.000000 0.0 0.020132 0.016721 0.00000 0.000000 0.031570 0.000000 0.010242 0.012120 0.000000 0.046356 0.039856 0.000000 0.008639 0.009236 0.023679 0.000000 0.000000 0.020818 0.000000 0.000000 0.000000 0.017595 0.000000 0.034293 0.000000 0.000000 0.000000 0.021360 0.000000 0.015373 0.012981 0.000000 0.01791 0.000000 0.000000 0.000000 0.024848 0.000000 0.000000 0.033134 0.024268 0.041306 0.019392 0.017790 0.000000 0.000000 0.011779 0.000000 0.010609 0.000000 0.000000 0.014245 0.067216 0.031932 0.035003 0.019767 0.024978 0.000000 0.000000 0.000000 0.000000 0.0 0.036245 0.037440 0.200746 0.000000 0.039021 0.000000 0.025176 0.009525 0.000000 0.028932 0.174778 0.000000 0.019819 0.023019 0.000000 0.022897 0.000000 0.000000 0.008661 0.007266 0.032411 0.059663 0.036751 0.000000 0.000000 0.062149 0.000000 0.009300 0.033834 0.0 0.0 0.000000 0.018288 0.011862 0.000000 0.009306 0.017300 0.029234 0.000000 0.000000 0.012933 0.000000 0.009116 0.009617 0.000000 0.008731 0.019597 0.000000 0.00000 0.000000 0.000000 0.033317 0.000000 0.028881 0.036208 0.019599 0.000000 0.000000 0.000000 0.013632 0.011175 0.011161 0.022824 0.000000 0.000000 0.01692 0.015980 0.000000 0.000000 0.0 0.000000 0.065145 0.019529 0.068584 0.039656 0.000000 0.011021 0.009219 0.000000 0.00000 0.010333 0.000000 0.000000 0.034244 0.010961 0.000000 0.010197 0.011547 0.000000 0.000000 0.000000 0.015477 0.0 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.103095 0.000000 0.000000 0.000000 0.011575 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031541 0.000000 0.009702 0.000000 0.018916 0.0 0.0 0.050747 0.000000 0.000000 0.000000 0.010016 0.000000 0.000000 0.0 0.000000 0.010969 0.029169 0.035826 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.029377 0.012167 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.010564 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.011529 0.011536 0.015749 0.000000 0.000000 0.011352 0.000000 0.00000 0.0 0.020132 0.000000 0.053993 0.017863 0.000000 0.008251 0.009112 0.000000 0.000000 0.007789 0.000000 0.000000 0.018321 0.000000 0.019497 0.0 0.0000 0.010317 0.024 0.000000 0.000000 0.011038 0.000000 0.057394 0.000000 0.020569 0.012564 0.00000 0.000000 0.000000 0.000000 0.0 0.013531 0.029169 0.000000 0.011729 0.000000 0.019322 0.0 0.0 0.011692 0.000000 0.000000 0.000000 0.014095 0.000000 0.000000 0.046357 0.000000 0.010352 0.011460 0.010944 0.021793 0.000000 0.020465 0.000000 0.000000 0.011454 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.014925 0.012689 0.037868 0.000000 0.038442 0.000000 0.000000 0.010502 0.000000 0.043296 0.040303 0.000000 0.000000 0.0 0.0 0.000000 0.008952 0.012173 0.000000 0.000000 0.000000 0.019322 0.011374 0.000000 0.017047 0.013766 0.0 0.000000 0.000000 0.011162 0.012074 0.000000 0.000000 0.000000 0.021958 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013973 0.000000 0.000000 0.000000 0.012363 0.012363 0.000000 0.000000 0.000000 0.0 0.0 0.010928 0.000000 0.020811 0.048864 0.000000 0.024968 0.008804 0.000000 0.010949 0.000000 0.000000 0.000000 0.015649 0.011046 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.013381 0.013422 0.00000 0.000000 0.000000 0.020934 0.000000 0.000000 0.000000 0.031669 0.000000 0.000000 0.01692 0.009756 0.000000 0.000000 0.011961 0.023142 0.030886 0.000000 0.012506 0.000000 0.008760 0.009969 0.000000 0.000000 0.000000 0.008318 0.020620 0.020742 0.022990 0.040262 0.032771 0.008891 0.010433 0.009397 0.010363 0.000000 0.000000 0.040745 0.016485 0.010504 0.000000 0.017773 0.000000 0.000000 0.032366 0.04497 0.050569 0.000000 0.019979 0.022107 0.007535 0.000000 0.014981 0.000000 0.010580 0.000000 0.016408 0.010382 0.015905 0.000000 0.011066 0.000000 0.014468 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.035789 0.0 0.040528 0.000000 0.000000 0.023627 0.024495 0.032081 0.012081 0.0 0.000000 0.00000 0.000000 0.000000 0.0 0.011460 0.0000 0.000000 0.012007 0.000000 0.000000 0.000000 0.000000 0.024804 0.000000 0.000000 0.014834 0.010324 0.018462 0.000000 0.000000 0.009645 0.008458 0.039795 0.023133 0.009723 0.025964 0.009636 0.000000 0.017489 0.000000 0.008401 0.000000 0.016758 0.024517 0.00000 0.000000 0.008564 0.000000 0.015292 0.009831 0.000000 0.000000 0.009068 0.025020 0.000000 0.000000 0.000000 0.000000 0.055217 0.000000 0.0 0.020614 0.000000 0.008632 0.054233 0.000000 0.000000 0.014984 0.011358 0.000000 0.000000 0.000000 0.012053 0.006896 0.000000 0.010286 0.012563 0.066514 0.000000 0.0 0.000000 0.011390 0.000000 0.00000 0.000000 0.010368 0.000000 0.020888 0.000000 0.000000 0.000000 0.000000 0.000000 0.014129 0.000000 0.011259 0.0 0.000000 0.000000 0.000000 0.018867 0.000000 0.000000 0.000000 0.020103 0.01976 0.031462 0.000000 0.00000 0.000000 0.000000 0.000000 0.008437 0.000000 0.012735 0.000000 0.011060 0.022496 0.000000 0.000000 0.0 0.000000 0.022299 0.024703 0.000000 0.000000 0.009535 0.010024 0.000000 0.000000 0.011305 0.007687 0.008668 0.040399 0.000000 0.000000 0.000000 0.007942 0.000000 0.000000 0.011686 0.030355 0.000000 0.013405 0.000000 0.000000 0.024416 0.022318 0.000000 0.010715 0.011678 0.024422 0.01692 0.072107 0.010404 0.0 0.000000 0.008953 0.000000 0.027399 0.018265 0.00000 0.022965 0.046306 0.009397 0.000000 0.000000 0.011979 0.000000 0.000000 0.000000 0.000000 0.037225 0.000000 0.018396 0.000000 0.034413 0.008893 0.053338 0.000000 0.018206 0.023787 0.015768 0.000000 0.000000 0.000000 0.015411 0.010642 0.008014 0.000000 0.00000 0.032176 0.008732 0.000000 0.000000 0.000000 0.029068 0.00000 0.000000 0.000000 0.000000 0.045323 0.035326 0.016812 0.020216 0.000000 0.011282 0.000000 0.023527 0.0 0.048722 0.000000 0.000000 0.000000 0.009303 0.000000 0.000000 0.0 0.017396 0.018307 0.0 0.0 0.000000 0.015761 0.051314 0.000000 0.014761 0.000000 0.000000 0.023482 0.000000 0.052919 0.020791 0.022174 0.009517 0.068730 0.019626 0.012582 0.000000 0.000000 0.000000 0.000000 0.011410 0.000000 0.000000 0.008912 0.000000 0.027229 0.04293 0.000000 0.012564 0.000000 0.000000 0.016118 0.000000 0.0 0.000000 0.010221 0.000000 0.0 0.0 0.000000 0.017754 0.000000 0.000000 0.012794 0.010624 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.034943 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.00000 0.012403 0.00000 0.028446 0.000000 0.011190 0.009412 0.010672 0.0 0.000000 0.000000 0.000000 0.034523 0.000000 0.014069 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035964 0.010921 0.008530 0.011229 0.010022 0.000000 0.000000 0.008312 0.013636 0.000000 0.036720 0.011546 0.000000 0.009151 0.017283 0.000000 0.000000 0.063509 0.000000 0.000000 0.000000 0.015633 0.037320 0.000000 0.000000 0.000000 0.000000 0.056483 0.009244 0.010005 0.018208 0.000000 0.008102 0.011398 0.008612 0.093436 0.000000 0.023879 0.009137 0.043851 0.000000 0.028711 0.000000 0.03132 0.010587 0.0 0.009435 0.0 0.000000 0.000000 0.050246 0.010139 0.0 0.0 0.0 0.000000 0.000000 0.009905 0.012188 0.014119 0.014306 0.010473 0.008865 0.000000 0.008671 0.054149 0.009511 0.000000 0.000000 0.00000 0.012208 0.000000 0.000000 0.033872 0.012207 0.010876 0.000000 0.000000 0.000000 0.009276 0.023599 0.000000 0.000000 0.000000 0.000000 0.035226 0.000000 0.008979 0.000000 0.000000 0.000000 0.033273 0.000000 0.0 0.000000 0.021213 0.000000 0.075549 0.000000 0.000000 0.014125 0.000000 0.012296 0.028048 0.000000 0.000000 0.000000 0.008093 0.047004 0.0 0.000000 0.029607 0.000000 0.020479 0.000000 0.000000 0.018427 0.000000 0.015544 0.039607 0.046048 0.000000 0.000000 0.033699 0.000000 0.017812 0.007520 0.031933 0.023070 0.013389 0.000000 0.013182 0.016146 0.011328 0.000000 0.007793 0.026928 0.000000 0.000000 0.000000 0.000000 0.033285 0.000000 0.013802 0.052026 0.010044 0.010123 0.033285 0.000000 0.000000 0.014406 0.010652 0.033108 0.00000 0.000000 0.000000 0.009182 0.010352 0.000000 0.000000 0.000000 0.000000 0.000000 0.010234 0.000000 0.000000 0.009306 0.000000 0.000000 0.009656 0.031959 0.012478 0.000000 0.000000 0.000000 0.000000 0.0000 0.012050 0.00000 0.006902 0.023050 0.000000 0.000000 0.000000 0.013402 0.0 0.000000 0.009014 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.013099 0.000000 0.060269 0.008356 0.0000 0.0 0.000000 0.000000 0.000000 0.000000 0.025157 0.000000 0.031118 0.000000 0.000000 0.023038 0.038634 0.020527 0.047419 0.00000 0.009466 0.000000 0.000000 0.011263 0.000000 0.000000 0.011095 0.011219 0.015034 0.0 0.000000 0.000000 0.000000 0.022540 0.000000 0.000000 0.010397 0.0 0.000000 0.000000 0.009730 0.000000 0.0 0.000000 0.000000 0.0 0.011024 0.000000 0.000000 0.013367 0.000000 0.000000 0.000000 0.000000 0.010286 0.0 0.007712 0.030912 0.000000 0.0000 0.010546 0.011162 0.000000 0.012247 0.0 0.000000 0.024968 0.023227 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.019474 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.041250 0.000000 0.000000 0.000000 0.009960 0.000000 0.000000 0.010310 0.042836 0.000000 0.000000 0.070064 0.000000 0.009858 0.009885 0.0 0.0 0.010529 0.009293 0.012000 0.000000 0.0 0.000000 0.008642 0.009168 0.0 0.000000 0.039929 0.056305 0.000000 0.019112 0.000000 0.0 0.000000 0.000000 0.000000 0.009318 0.018172 0.011014 0.000000 0.018774 0.009966 0.000000 0.040278 0.000000 0.0 0.0 0.000000 0.046826 0.000000 0.011906 0.007179 0.018892 0.010024 0.030472 0.000000 0.020003 0.026796 0.093436 0.060071 0.000000 0.0 0.011953 0.000000 0.000000 0.000000 0.013338 0.022393 0.008226 0.029998 0.010432 0.00000 0.023614 0.000000 0.008632 0.00000 0.000000 0.000000 0.010322 0.000000 0.021568 0.000000 0.000000 0.000000 0.010574 0.021873 0.00000 0.01064 0.010493 0.011476 0.009031 0.000000 0.093436 0.000000 0.06116 0.000000 0.010381 0.010876 0.000000 0.012361 0.011752 0.000000 0.021176 0.000000 0.000000 0.022939 0.010221 0.000000 0.011089 0.000000 0.000000 0.000000 0.000000 0.018178 0.048911 0.000000 0.015130 0.0 0.010251 0.041319 0.000000 0.000000 0.009279 0.069783 0.007854 0.000000 0.000000 0.000000 0.000000 0.076792 0.000000 0.00000 0.008145 0.000000 0.000000 0.022134 0.000000 0.0 0.000000 0.049959 0.081263 0.034010 0.000000 0.000000 0.0 0.000000 0.020724 0.024393 0.000000 0.075630 0.044443 0.000000 0.022871 0.013552 0.000000 0.000000 0.000000 0.000000 0.043821 0.0000 0.000000 0.000000 0.000000 0.072817 0.0 0.0 0.027672 0.020262 0.000000 0.000000 0.024237 0.011890 0.046779 0.009980 0.008648 0.000000 0.017637 0.129869 0.025167 0.082712 0.018688 0.0 0.000000 0.000000 0.009011 0.032528 0.009860 0.041243 0.000000 0.052656 0.032149 0.010540 0.018304 0.000000 0.000000 0.000000 0.000000 0.007440 0.101944 0.035604 0.0 0.067872 0.034095 0.0 0.032207 0.045007 0.000000 0.000000 0.016760 0.016492 0.000000 0.015097 0.011075 0.077521 0.013857 0.008654 0.0 0.000000 0.011114 0.000000 0.000000 0.000000 0.010736 0.011888 0.000000 0.008898 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.00000 0.020184 0.000000 0.024314 0.000000 0.000000 0.000000 0.00000 0.000000 0.013477 0.017641 0.000000 0.000000 0.011840 0.011840 0.010414 0.0 0.00000 0.011685 0.000000 0.000000 0.000000 0.000000 0.000000 0.018675 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.029904 0.000000 0.000000 0.000000 0.014190 0.068978 0.010998 0.011168 0.00000 0.047381 0.000000 0.010792 0.032558 0.000000 0.000000 0.037229 0.000000 0.000000 0.00000 0.000000 0.000000 0.020969 0.000000 0.000000 0.000000 0.027096 0.011377 0.000000 0.010338 0.035789 0.010324 0.0 0.000000 0.000000 0.0 0.010373 0.022230 0.009116 0.0 0.011012 0.055084 0.000000 0.0 0.000000 0.0 0.032179 0.00000 0.0 0.012068 0.009248 0.009429 0.000000 0.009878 0.000000 0.000000 0.000000 0.011416 0.000000 0.014341 0.034504 0.000000 0.013846 0.009083 0.033231 0.032877 0.000000 0.010818 0.000000 0.011337 0.014652 0.013223 0.000000 0.000000 0.011447 0.000000 0.011717 0.000000 0.045509 0.000000 0.013482 0.033790 0.000000 0.00000 0.011128 0.036384 0.000000 0.000000 0.012631 0.000000 0.000000 0.000000 0.000000 0.000000 0.010070 0.000000 0.000000 0.012694 0.000000 0.012588 0.000000 0.000000 0.000000 0.010679 0.010157 0.022380 0.000000 0.000000 0.000000 0.000000 0.000000 0.008061 0.00000 0.000000 0.009119 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037631 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009104 0.012700 0.016868 0.000000 0.0 0.017192 0.010071 0.006531 0.000000 0.000000 0.009775 0.000000 0.00000 0.012106 0.000000 0.030060 0.000000 0.032441 0.008153 0.041501 0.00000 0.000000 0.000000 0.009104 0.000000 0.019664 0.00000 0.000000 0.007472 0.007982 0.046127 0.000000 0.021182 0.026211 0.010587 0.010637 0.010406 0.010534 0.011400 0.000000 0.000000 0.010810 0.02235 0.042124 0.010064 0.011686 0.010821 0.000000 0.000000 0.000000 0.000000 0.000000 0.033349 0.007734 0.061168 0.000000 0.021562 0.0 0.000000 0.010097 0.022690 0.035293 0.000000 0.010954 0.000000 0.014305 0.000000 0.040900 0.000000 0.000000 0.018238 0.028781 0.000000 0.000000 0.0 0.000000 0.094715 0.000000 0.050399 0.000000 0.038373 0.012635 0.000000 0.051503 0.024172 0.000000 0.022045 0.018985 0.040369 0.000000 0.000000 0.034781 0.000000 0.010359 0.010105 0.022119 0.000000 0.000000 0.033998 0.000000 0.000000 0.008664 0.000000 0.025879 0.014535 0.027726 0.000000 0.018461 0.000000 0.020367 0.022337 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.024914 0.000000 0.022717 0.000000 0.000000 0.0 0.010659 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.010548 0.013269 0.000000 0.013687 0.027403 0.000000 0.0 0.028924 0.00000 0.000000 0.000000 0.030006 0.015940 0.000000 0.010706 0.000000 0.030636 0.018383 0.000000 0.0 0.056232 0.013426 0.042025 0.000000 0.019144 0.000000 0.008382 0.000000 0.008488 0.010914 0.000000 0.0 0.000000 0.011561 0.0 0.000000 0.0 0.000000 0.033557 0.000000 0.000000 0.0 0.000000 0.016161 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.011625 0.013644 0.000000 0.000000 0.035869 0.000000 0.000000 0.000000 0.010105 0.012297 0.000000 0.000000 0.000000 0.011976 0.010235 0.0 0.029056 0.0 0.000000 0.00000 0.000000 0.00000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.012419 0.000000 0.000000 0.0 0.000000 0.0 0.021196 0.010734 0.000000 0.000000 0.024721 0.006816 0.0 0.000000 0.000000 0.0 0.010105 0.00000 0.000000 0.009273 0.028094 0.000000 0.000000 0.00000 0.000000 0.022625 0.027911 0.000000 0.00000 0.000000 0.009225 0.016670 0.000000 0.000000 0.00000 0.020891 0.000000 0.009202 0.008002 0.000000 0.000000 0.050258 0.000000 0.000000 0.013790 0.007912 0.020126 0.018960 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024215 0.0 0.000000 0.000000 0.000000 0.000000 0.014027 0.000000 0.049398 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021192 0.00000 0.017799 0.000000 0.026988 0.011624 0.000000 0.000000 0.020331 0.000000 0.000000 0.010786 0.000000 0.009748 0.000000 0.000000 0.000000 0.000000 0.000000 0.037740 0.000000 0.000000 0.00000 0.00000 0.016723 0.000000 0.000000 0.000000 0.011198 0.000000 0.000000 0.000000 0.00000 0.000000 0.010790 0.009579 0.027971 0.000000 0.027523 0.048919 0.022815 0.010822 0.0000 0.000000 0.000000 0.025421 0.0 0.008497 0.0 0.000000 0.0 0.062673 0.009071 0.013987 0.000000 0.000000 0.000000 0.008260 0.010358 0.000000 0.017267 0.000000 0.021742 0.060071 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.039982 0.02096 0.0 0.040916 0.036524 0.011945 0.012692 0.013384 0.000000 0.000000 0.024740 0.000000 0.037909 0.078632 0.000000 0.021174 0.018702 0.000000 0.011117 0.045174 0.021588 0.000000 0.018770 0.000000 0.031801 0.009007 0.000000 0.015963 0.000000 0.040254 0.028710 0.073751 0.028108 0.000000 0.000000 0.019941 0.000000 0.000000 0.010896 0.054973 0.016764 0.008869 0.0 0.000000 0.000000 0.008165 0.013171 0.000000 0.032655 0.000000 0.008685 0.017567 0.000000 0.000000 0.000000 0.020871 0.000000 0.016705 0.000000 0.000000 0.026174 0.000000 0.009266 0.006266 0.044499 0.024037 0.023348 0.000000 0.000000 0.034985 0.019293 0.000000 0.009466 0.030920 0.036819 0.023930 0.028252 0.038818 0.000000 0.017477 0.000000 0.031872 0.000000 0.038223 0.019055 0.020135 0.000000 0.032004 0.000000 0.000000 0.000000 0.000000 0.026148 0.000000 0.000000 0.020325 0.000000 0.010462 0.012031 0.000000 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.021047 0.0 0.00000 0.023262 0.000000 0.000000 0.010565 0.011093 0.011699 0.000000 0.000000 0.000000 0.000000 0.049401 0.000000 0.010849 0.000000 0.000000 0.00000 0.024472 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022452 0.000000 0.036126 0.010040 0.000000 0.000000 0.0 0.000000 0.021336 0.050872 0.000000 0.000000 0.010261 0.014871 0.000000 0.014626 0.00000 0.000000 0.051774 0.021198 0.014745 0.017328 0.000000 0.024608 0.038187 0.017378 0.025999 0.000000 0.000000 0.008940 0.0 0.020356 0.0 0.010329 0.000000 0.000000 0.0 0.000000 0.009823 0.000000 0.00000 0.0 0.018928 0.010710 0.037954 0.010522 0.012983 0.016840 0.0 0.000000 0.010534 0.036082 0.011629 0.000000 0.000000 0.023373 0.016270 0.009461 0.011291 0.000000 0.015733 0.000000 0.009716 0.000000 0.000000 0.000000 0.011032 0.011343 0.016483 0.013152 0.000000 0.000000 0.000000 0.011189 0.011399 0.000000 0.000000 0.014830 0.000000 0.007287 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022678 0.000000 0.000000 0.000000 0.0 0.000000 0.009304 0.000000 0.032732 0.008451 0.011683 0.019880 0.078870 0.000000 0.009008 0.023961 0.021549 0.022072 0.025998 0.011660 0.007951 0.000000 0.000000 0.000000 0.060164 0.008953 0.010619 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009792 0.010217 0.009912 0.053176 0.022539 0.040163 0.020862 0.015967 0.000000 0.000000 0.025699 0.021288 0.000000 0.000000 0.013274 0.027843 0.028860 0.010467 0.029054 0.018143 0.018143 0.010855 0.000000 0.009279 0.008112 0.008442 0.012552 0.020698 0.000000 0.023283 0.000000 0.000000 0.000000 0.011307 0.000000 0.000000 0.010359 0.025167 0.040330 0.000000 0.007137 0.052415 0.019442 0.000000 0.007583 0.000000 0.000000 0.038364 0.017058 0.000000 0.000000 0.009426 0.018335 0.010710 0.035661 0.017338 0.014672 0.009241 0.021268 0.000000 0.078354 0.008857 0.000000 0.039687 0.000000 0.014509 0.026116 0.018725 0.000000 0.000000 0.019518 0.062018 0.000000 0.012081 0.0 0.000000 0.000000 0.000000 0.011097 0.028986 0.012794 0.000000 0.010523 0.0 0.000000 0.012486 0.000000 0.000000 0.031448 0.000000 0.014807 0.014807 0.012222 0.00000 0.000000 0.000000 0.018784 0.011249 0.0 0.000000 0.000000 0.010628 0.0 0.011056 0.011056 0.000000 0.014065 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012024 0.010786 0.011078 0.0 0.000000 0.043758 0.000000 0.024904 0.000000 0.000000 0.010932 0.000000 0.000000 0.019468 0.000000 0.029364 0.000000 0.000000 0.013222 0.000000 0.000000 0.00000 0.0000 0.000000 0.000000 0.071638 0.000000 0.000000 0.000000 0.00000 0.000000 0.037552 0.022311 0.021817 0.000000 0.029653 0.025335 0.000000 0.008148 0.000000 0.000000 0.027275 0.042309 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.009261 0.011922 0.000000 0.000000 0.010821 0.000000 0.000000 0.000000 0.011316 0.013201 0.010437 0.000000 0.000000 0.032921 0.020974 0.0 0.000000 0.0 0.000000 0.0000 0.010273 0.0000 0.013572 0.000000 0.013828 0.000000 0.000000 0.000000 0.000000 0.025061 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.007113 0.014129 0.000000 0.00000 0.012263 0.000000 0.053115 0.000000 0.0 0.019254 0.009874 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011643 0.000000 0.009894 0.000000 0.0 0.000000 0.000000 0.0 0.010513 0.021724 0.022023 0.009845 0.037719 0.000000 0.010873 0.025667 0.013645 0.00000 0.000000 0.0 0.000000 0.04480 0.0 0.020381 0.0 0.000000 0.000000 0.000000 0.011953 0.000000 0.010395 0.000000 0.011984 0.058226 0.019472 0.012650 0.000000 0.008239 0.010876 0.011184 0.017154 0.000000 0.00000 0.009161 0.012964 0.000000 0.000000 0.068584 0.061024 0.012208 0.000000 0.011230 0.012208 0.012455 0.000000 0.000000 0.034010 0.034268 0.000000 0.000000 0.0 0.009011 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052919 0.008894 0.000000 0.000000 0.000000 0.017952 0.021415 0.000000 0.0000 0.00000 0.000000 0.00000 0.029577 0.000000 0.017277 0.000000 0.000000 0.000000 0.021167 0.029500 0.000000 0.018302 0.000000 0.042590 0.00000 0.059663 0.015542 0.010709 0.021912 0.000000 0.008584 0.036401 0.011241 0.025449 0.005402 0.000000 0.011319 0.020105 0.074935 0.017297 0.024306 0.000000 0.0 0.082783 0.015004 0.000000 0.000000 0.019924 0.007857 0.000000 0.013941 0.00000 0.00000 0.000000 0.081059 0.036515 0.000000 0.000000 0.012386 0.000000 0.018364 0.014807 0.000000 0.00000 0.000000 0.010561 0.0 0.000000 0.040358 0.000000 0.000000 0.000000 0.00000 0.010788 0.000000 0.000000 0.000000 0.0 0.011622 0.000000 0.000000 0.015209 0.008397 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.011243 0.000000 0.000000 0.000000 0.000000 0.010854 0.000000 0.000000 0.016682 0.011327 0.000000 0.000000 0.000000 0.000000 0.013359 0.000000 0.034523 0.009307 0.008063 0.0 0.000000 0.000000 0.047828 0.031949 0.000000 0.000000 0.000000 0.000000 0.016205 0.000000 0.007483 0.054395 0.026544 0.015758 0.0 0.0 0.068616 0.066048 0.000000 0.000000 0.0 0.0 0.022069 0.000000 0.000000 0.009855 0.0 0.000000 0.009208 0.000000 0.013655 0.000000 0.013848 0.000000 0.000000 0.010472 0.010700 0.000000 0.000000 0.000000 0.017727 0.000000 0.000000 0.000000 0.00000 0.010281 0.000000 0.009665 0.010726 0.072167 0.000000 0.016728 0.0 0.025337 0.008299 0.000000 0.013416 0.019381 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.037689 0.000000 0.010580 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.021781 0.000000 0.048991 0.008111 0.021118 0.000000 0.010857 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.121433 0.011505 0.000000 0.021832 0.020054 0.000000 0.000000 0.026607 0.000000 0.000000 0.000000 0.000000 0.018372 0.000000 0.010771 0.000000 0.009744 0.054823 0.000000 0.0 0.000000 0.000000 0.009360 0.009942 0.000000 0.029327 0.008641 0.000000 0.0 0.000000 0.000000 0.008865 0.060014 0.026211 0.014786 0.000000 0.022318 0.000000 0.000000 0.010830 0.035669 0.027036 0.000000 0.00000 0.009805 0.008091 0.017459 0.000000 0.025136 0.009276 0.034010 0.009276 0.009792 0.000000 0.022870 0.010206 0.000000 0.021550 0.019564 0.0 0.019214 0.011102 0.011561 0.009795 0.000000 0.011477 0.000000 0.012522 0.000000 0.020173 0.008919 0.050647 0.000000 0.051052 0.032037 0.037909 0.059616 0.010793 0.000000 0.009050 0.030083 0.00000 0.036321 0.007395 0.00000 0.054453 0.054453 0.000000 0.021460 0.000000 0.000000 0.000000 0.000000 0.038002 0.000000 0.011140 0.008392 0.016066 0.000000 0.000000 0.030354 0.000000 0.000000 0.000000 0.000000 0.000000 0.024913 0.021173 0.008240 0.016231 0.021937 0.0 0.010134 0.009096 0.018086 0.000000 0.016354 0.019669 0.118303 0.080702 0.026328 0.000000 0.000000 0.000000 0.015129 0.000000 0.00000 0.014099 0.000000 0.009974 0.000000 0.000000 0.000000 0.011926 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.011427 0.0 0.000000 0.000000 0.000000 0.000000 0.010504 0.017099 0.000000 0.000000 0.000000 0.029859 0.010663 0.000000 0.0 0.011225 0.000000 0.000000 0.011030 0.000000 0.000000 0.000000 0.014873 0.000000 0.000000 0.0 0.012785 0.0 0.010898 0.031769 0.000000 0.000000 0.000000 0.010737 0.012081 0.000000 0.0 0.011271 0.000000 0.000000 0.000000 0.000000 0.000000 0.011548 0.000000 0.000000 0.013847 0.0 0.000000 0.0 0.000000 0.028446 0.000000 0.000000 0.000000 0.025552 0.019084 0.014747 0.010677 0.009995 0.000000 0.009242 0.031649 0.035064 0.033668 0.00000 0.000000 0.037173 0.000000 0.000000 0.000000 0.0 0.021495 0.026981 0.015578 0.000000 0.000000 0.0 0.000000 0.012294 0.000000 0.000000 0.0 0.000000 0.000000 0.022934 0.000000 0.033069 0.000000 0.060071 0.043149 0.015410 0.000000 0.021202 0.000000 0.028059 0.059863 0.000000 0.047501 0.017053 0.012797 0.000000 0.000000 0.034331 0.000000 0.023100 0.0 0.015427 0.026354 0.007609 0.04416 0.034998 0.000000 0.000000 0.000000 0.021931 0.000000 0.000000 0.000000 0.018988 0.000000 0.000000 0.000000 0.025235 0.020494 0.018614 0.029682 0.009497 0.000000 0.019993 0.018990 0.000000 0.027168 0.030578 0.012566 0.007166 0.000000 0.022864 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.027174 0.000000 0.009795 0.000000 0.028446 0.0 0.010094 0.000000 0.012452 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.008181 0.000000 0.009281 0.000000 0.000000 0.026169 0.031043 0.007808 0.007878 0.000000 0.0000 0.028147 0.014621 0.031857 0.000000 0.000000 0.000000 0.053099 0.000000 0.014013 0.000000 0.049083 0.000000 0.022679 0.000000 0.009723 0.031600 0.000000 0.029803 0.077046 0.030757 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021924 0.000000 0.000000 0.053408 0.000000 0.014943 0.000000 0.045980 0.011961 0.0 0.039539 0.01216 0.009599 0.007985 0.000000 0.010779 0.027112 0.000000 0.000000 0.010539 0.010498 0.024686 0.010907 0.000000 0.000000 0.011436 0.000000 0.000000 0.035317 0.0 0.000000 0.000000 0.025090 0.000000 0.000000 0.0 0.0 0.051589 0.011145 0.031504 0.000000 0.000000 0.000000 0.000000 0.000000 0.028846 0.00000 0.000000 0.006979 0.034721 0.000000 0.017270 0.000000 0.015225 0.000000 0.0 0.000000 0.000000 0.009675 0.000000 0.000000 0.0 0.015203 0.000000 0.007915 0.0 0.000000 0.008061 0.000000 0.018870 0.0 0.010235 0.043655 0.0 0.011168 0.011370 0.000000 0.048808 0.000000 0.000000 0.009985 0.011957 0.011717 0.011473 0.013820 0.0 0.000000 0.011631 0.018916 0.000000 0.000000 0.025166 0.000000 0.000000 0.013287 0.000000 0.0 0.010616 0.000000 0.007501 0.000000 0.000000 0.040809 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.011068 0.017984 0.012147 0.045089 0.000000 0.000000 0.049466 0.022577 0.000000 0.020526 0.020803 0.009788 0.0 0.011661 0.034339 0.000000 0.000000 0.000000 0.023839 0.011899 0.013052 0.049929 0.000000 0.056543 0.038596 0.021389 0.042725 0.041004 0.028685 0.000000 0.012831 0.014110 0.013807 0.011939 0.000000 0.000000 0.011826 0.022683 0.000000 0.000000 0.0 0.026585 0.036650 0.019254 0.013253 0.020467 0.000000 0.072502 0.063529 0.000000 0.039028 0.0 0.000000 0.000000 0.000000 0.013186 0.000000 0.00000 0.00000 0.010518 0.00000 0.000000 0.000000 0.000000 0.000000 0.011854 0.0000 0.000000 0.000000 0.000000 0.00000 0.011110 0.000000 0.000000 0.000000 0.000000 0.000000 0.013534 0.000000 0.0 0.0 0.000000 0.000000 0.011393 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.00000 0.000000 0.000000 0.000000 0.00000 0.000000 0.038086 0.038086 0.0 0.0 0.0 0.0 0.012645 0.010506 0.000000 0.000000 0.008249 0.000000 0.000000 0.000000 0.000000 0.033412 0.0373 0.0373 0.000000 0.019808 0.000000 0.000000 0.000000 0.00000 0.053049 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030727 0.00000 0.000000 0.000000 0.013536 0.000000 0.000000 0.029801 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.016548 0.025299 0.000000 0.0 0.0 0.000000 0.0 0.008934 0.0 0.0 0.0 0.000000 0.0 0.0 0.018462 0.018462 0.0 0.018462 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.011278 0.000000 0.012874 0.000000 0.000000 0.000000 0.000000 0.000000 0.043098 0.000000 0.0 0.000000 0.011415 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.021148 0.000000 0.000000 0.011390 0.000000 0.010283 0.012489 0.000000 0.014200 0.000000 0.000000 0.00000 0.0 0.011202 0.0 0.000000 0.011535 0.000000 0.000000 0.000000 0.00000 0.039996 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022766 0.040561 0.009579 0.040561 0.013698 0.000000 0.000000 0.000000 0.011480 0.000000 0.000000 0.000000 0.000000 0.000000 0.010723 0.012867 0.0 0.000000 0.020866 0.000000 0.0 0.00000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.012350 0.000000 0.0 0.008681 0.0 0.0 0.0 0.011668 0.012132 0.000000 0.017379 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016406 0.000000 0.017101 0.011236 0.000000 0.000000 0.018853 0.000000 0.000000 0.0 0.0 0.031660 0.000000 0.000000 0.000000 0.011778 0.000000 0.000000 0.012872 0.000000 0.000000 0.011451 0.013371 0.000000 0.012433 0.008243 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011320 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011054 0.025299 0.000000 0.010850 0.000000 0.00000 0.011509 0.009446 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.0 0.000000 0.000000 0.012995 0.000000 0.023842 0.000000 0.000000 0.000000 0.014699 0.000000 0.0 0.0 0.0 0.000000 0.010151 0.012277 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009300 0.000000 0.000000 0.000000 0.0 0.00000 0.011967 0.000000 0.000000 0.000000 0.012728 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.026622 0.000000 0.000000 0.0 0.010765 0.000000 0.000000 0.00000 0.000000 0.029686 0.000000 0.000000 0.000000 0.061230 0.000000 0.000000 0.0 0.0 0.000000 0.011096 0.000000 0.000000 0.000000 0.043216 0.000000 0.015435 0.000000 0.032885 0.01194 0.000000 0.000000 0.000000 0.014103 0.000000 0.000000 0.000000 0.00000 0.000000 0.00000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032149 0.000000 0.000000 0.000000 0.000000 0.018863 0.034322 0.018863 0.011798 0.000000 0.000000 0.018863 0.0 0.0 0.0 0.01238 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010744 0.000000 0.000000 0.000000 0.000000 0.020813 0.011185 0.000000 0.012218 0.019495 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.010150 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.010607 0.008495 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.009828 0.000000 0.000000 0.000000 0.010400 0.000000 0.00000 0.0 0.000000 0.0 0.0 0.0 0.010381 0.000000 0.000000 0.000000 0.000000 0.015687 0.010873 0.000000 0.015996 0.01345 0.011494 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.011318 0.045741 0.018045 0.011144 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.015508 0.000000 0.000000 0.000000 0.00000 0.000000 0.022418 0.010652 0.00000 0.00000 0.012025 0.011360 0.020197 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010732 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011269 0.047221 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.010490 0.000000 0.000000 0.000000 0.000000 0.022269 0.023253 0.000000 0.000000 0.0 0.0 0.011424 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.012508 0.011310 0.011618 0.000000 0.012117 0.000000 0.000000 0.000000 0.011348 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.023457 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.009902 0.000000 0.000000 0.000000 0.000000 0.00000 0.00000 0.000000 0.000000 0.000000 0.00000 0.000000 0.024620 0.000000 0.000000 0.000000 0.000000 0.000000 0.007764 0.000000 0.0 0.000000 0.009576 0.000000 0.0 0.00000 0.0 0.013599 0.00000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.014610 0.039778 0.039285 0.000000 0.000000 0.0 0.037518 0.000000 0.000000 0.000000 0.008472 0.000000 0.00000 0.013606 0.000000 0.000000 0.000000 0.000000 0.000000 0.050777 0.000000 0.014421 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.016217 0.0 0.000000 0.052175 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013745 0.000000 0.029924 0.000000 0.000000 0.014559 0.000000 0.014216 0.014216 0.014687 0.000000 0.0 0.000000 0.010579 0.0 0.000000 0.010764 0.000000 0.000000 0.000000 0.009381 0.012446 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.018462 0.000000 0.024806 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.025260 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.012181 0.000000 0.000000 0.000000 0.0 0.008569 0.0 0.000000 0.031516 0.000000 0.000000 0.009971 0.009611 0.000000 0.013153 0.000000 0.000000 0.000000 0.010928 0.000000 0.000000 0.000000 0.000000 0.010477 0.011233 0.000000 0.000000 0.000000 0.010071 0.014589 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.011272 0.00000 0.00000 0.019069 0.019069 0.019069 0.0 0.017868 0.0 0.0 0.000000 0.034136 0.000000 0.000000 0.000000 0.010945 0.00000 0.000000 0.000000 0.011491 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.0000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.052676 0.000000 0.012072 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.026909 0.000000 0.000000 0.0 0.000000 0.000000 0.053119 0.000000 0.000000 0.00000 0.0 0.000000 0.011674 0.016016 0.00000 0.0 0.040532 0.0 0.040532 0.023122 0.009184 0.0 0.012248 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.035677 0.0 0.0 0.000000 0.000000 0.011031 0.0 0.0 0.000000 0.021051 0.0 0.000000 0.035468 0.000000 0.010846 0.011115 0.000000 0.000000 0.000000 0.000000 0.000000 0.009939 0.000000 0.055202 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.011923 0.000000 0.000000 0.000000 0.054779 0.000000 0.013555 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013930 0.010709 0.000000 0.000000 0.000000 0.049875 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018844 0.000000 0.000000 0.000000 0.015197 0.000000 0.011098 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.011043 0.000000 0.018881 0.000000 0.0 0.0 0.0 0.0 0.050607 0.0 0.00000 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.032768 0.000000 0.000000 0.000000 0.010723 0.000000 0.019117 0.018198 0.000000 0.012550 0.000000 0.013807 0.000000 0.000000 0.000000 0.024174 0.00000 0.011327 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.018462 0.0 0.018462 0.0 0.000000 0.020343 0.010463 0.020343 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.010384 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.0000 0.000000 0.0 0.0 0.021323 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.023142 0.000000 0.0 0.000000 0.031309 0.0 0.000000 0.000000 0.012833 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.010723 0.000000 0.000000 0.000000 0.011114 0.016266 0.000000 0.000000 0.000000 0.000000 0.012080 0.013275 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.011664 0.000000 0.000000 0.000000 0.0 0.014430 0.010621 0.025228 0.000000 0.000000 0.000000 0.012627 0.00000 0.000000 0.000000 0.015463 0.000000 0.0 0.000000 0.0 0.011962 0.0 0.000000 0.000000 0.0 0.000000 0.014157 0.000000 0.014808 0.000000 0.014378 0.000000 0.000000 0.035547 0.000000 0.011311 0.014710 0.000000 0.000000 0.000000 0.023999 0.0 0.000000 0.0 0.009579 0.000000 0.011434 0.029909 0.000000 0.000000 0.018880 0.015973 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.010976 0.00000 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.049497 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.012484 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.010396 0.019808 0.0 0.000000 0.000000 0.000000 0.000000 0.011097 0.013275 0.000000 0.011921 0.011921 0.000000 0.011052 0.000000 0.000000 0.000000 0.015371 0.010882 0.000000 0.000000 0.000000 0.00000 0.000000 0.018514 0.000000 0.000000 0.000000 0.012116 0.000000 0.034022 0.033404 0.000000 0.0 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010518 0.000000 0.000000 0.000000 0.057677 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.00000 0.000000 0.000000 0.012861 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015051 0.011749 0.000000 0.000000 0.009020 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.130185 0.000000 0.000000 0.000000 0.000000 0.012199 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015928 0.000000 0.000000 0.000000 0.000000 0.009020 0.000000 0.000000 0.00000 0.038207 0.000000 0.000000 0.035307 0.000000 0.023554 0.009504 0.009504 0.000000 0.011413 0.000000 0.000000 0.032009 0.021798 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.017526 0.000000 0.009009 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.018069 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.010845 0.000000 0.000000 0.011430 0.023624 0.000000 0.000000 0.0 0.0 0.0 0.036903 0.000000 0.000000 0.010979 0.000000 0.000000 0.011930 0.000000 0.00000 0.0 0.000000 0.0 0.000000 0.00000 0.000000 0.0 0.000000 0.011449 0.028599 0.000000 0.000000 0.0 0.0 0.0 0.012442 0.00000 0.009447 0.000000 0.000000 0.0 0.0 0.018029 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015296 0.000000 0.000000 0.012653 0.000000 0.010971 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.015479 0.000000 0.000000 0.010536 0.036084 0.000000 0.000000 0.000000 0.012321 0.000000 0.000000 0.000000 0.000000 0.017380 0.0 0.009656 0.0 0.039167 0.000000 0.000000 0.000000 0.0 0.000000 0.019507 0.000000 0.012668 0.000000 0.000000 0.000000 0.012728 0.0 0.00000 0.013741 0.000000 0.0 0.019287 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.010842 0.009574 0.000000 0.009574 0.0 0.000000 0.0 0.000000 0.000000 0.015127 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.048542 0.000000 0.000000 0.000000 0.00000 0.00000 0.052143 0.00000 0.00000 0.000000 0.000000 0.00000 0.000000 0.023278 0.032632 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.010798 0.000000 0.046357 0.000000 0.000000 0.000000 0.000000 0.010536 0.0 0.000000 0.011451 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.023993 0.011976 0.000000 0.011121 0.009020 0.011547 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.010723 0.0 0.009093 0.0 0.000000 0.00000 0.010061 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.00000 0.018613 0.000000 0.000000 0.00000 0.000000 0.034022 0.034022 0.013468 0.009733 0.0000 0.009733 0.050886 0.015916 0.000000 0.000000 0.000000 0.000000 0.012400 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.012094 0.018507 0.000000 0.000000 0.019287 0.000000 0.015208 0.015208 0.000000 0.000000 0.000000 0.000000 0.000000 0.008724 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.011265 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.018060 0.000000 0.0 0.00000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0000 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.047008 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.057585 0.000000 0.011382 0.000000 0.000000 0.022899 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.00000 0.000000 0.00000 0.000000 0.000000 0.013078 0.011024 0.021633 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025496 0.000000 0.010467 0.015678 0.000000 0.000000 0.000000 0.000000 0.000000 0.031867 0.000000 0.000000 0.00000 0.010702 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.03548 0.000000 0.000000 0.022054 0.037436 0.000000 0.000000 0.03548 0.037795 0.000000 0.012677 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025394 0.000000 0.000000 0.037193 0.000000 0.000000 0.020718 0.000000 0.000000 0.000000 0.000000 0.000000 0.011593 0.0 0.0 0.000000 0.0 0.000000 0.060100 0.000000 0.000000 0.000000 0.011563 0.00000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031407 0.000000 0.000000 0.021728 0.010397 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.019038 0.023278 0.000000 0.011467 0.0 0.000000 0.0 0.010266 0.0 0.0 0.000000 0.017768 0.017768 0.000000 0.0 0.017857 0.000000 0.000000 0.012020 0.013230 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.00000 0.000000 0.0 0.0 0.0 0.0 0.013743 0.000000 0.0 0.0 0.0 0.008967 0.000000 0.0 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.014588 0.014817 0.045776 0.000000 0.025250 0.021633 0.000000 0.000000 0.000000 0.000000 0.000000 0.011843 0.00000 0.026437 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.01618 0.010937 0.011364 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011642 0.0 0.0 0.000000 0.000000 0.012185 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.011535 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016001 0.019431 0.000000 0.000000 0.0 0.000000 0.00000 0.011201 0.042205 0.000000 0.021569 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033535 0.000000 0.000000 0.000000 0.000000 0.009435 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.051102 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.009374 0.00000 0.000000 0.000000 0.012534 0.000000 0.000000 0.010408 0.011929 0.000000 0.000000 0.000000 0.011128 0.00000 0.007403 0.000000 0.0 0.000000 0.011802 0.009573 0.019919 0.000000 0.000000 0.000000 0.000000 0.000000 0.010323 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012674 0.000000 0.011854 0.000000 0.010733 0.000000 0.0 0.000000 0.000000 0.012119 0.012205 0.0 0.0 0.014533 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.00000 0.000000 0.00000 0.000000 0.000000 0.000000 0.009658 0.000000 0.010776 0.0 0.000000 0.000000 0.017511 0.009388 0.0 0.000000 0.00000 0.010594 0.000000 0.00000 0.000000 0.000000 0.012534 0.013337 0.00000 0.014919 0.014919 0.0 0.00000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.011599 0.025684 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.0 0.013672 0.000000 0.010856 0.000000 0.040694 0.000000 0.015078 0.011018 0.000000 0.000000 0.000000 0.022539 0.0000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.023639 0.000000 0.000000 0.023639 0.000000 0.000000 0.023334 0.010766 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.0284 0.000000 0.000000 0.012888 0.022649 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.031600 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011834 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021281 0.000000 0.000000 0.013151 0.000000 0.000000 0.010313 0.000000 0.0 0.0 0.00000 0.000000 0.00000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.011587 0.0 0.000000 0.0 0.017401 0.017956 0.011587 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.017857 0.000000 0.009566 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.00000 0.0 0.0 0.000000 0.013029 0.0 0.013679 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.012162 0.012024 0.0 0.0 0.000000 0.000000 0.035952 0.000000 0.000000 0.000000 0.000000 0.000000 0.010178 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.012428 0.000000 0.0 0.000000 0.00000 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.021803 0.000000 0.012894 0.000000 0.010896 0.000000 0.000000 0.020889 0.000000 0.000000 0.000000 0.0 0.0 0.00000 0.000000 0.000000 0.000000 0.012074 0.011905 0.012679 0.0 0.012011 0.010723 0.038746 0.00000 0.038746 0.012660 0.000000 0.000000 0.000000 0.000000 0.013602 0.000000 0.013312 0.011681 0.000000 0.000000 0.011882 0.000000 0.000000 0.000000 0.0 0.018020 0.000000 0.000000 0.000000 0.000000 0.000000 0.019137 0.000000 0.000000 0.0000 0.0 0.000000 0.000000 0.000000 0.020607 0.026520 0.000000 0.050862 0.053385 0.0 0.000000 0.012654 0.0 0.0 0.0 0.011559 0.000000 0.000000 0.000000 0.0 0.011867 0.00000 0.010723 0.000000 0.010430 0.0 0.0 0.000000 0.009929 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.010199 0.000000 0.0 0.036392 0.000000 0.000000 0.011187 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013764 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.056447 0.000000 0.000000 0.021916 0.000000 0.0 0.012301 0.018522 0.000000 0.000000 0.031568 0.010422 0.010034 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.01506 0.018741 0.000000 0.014534 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.019804 0.000000 0.000000 0.0 0.00000 0.0 0.014075 0.000000 0.03876 0.039391 0.051977 0.039391 0.000000 0.00000 0.000000 0.0 0.000000 0.000000 0.000000 0.00000 0.019961 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019885 0.0 0.000000 0.013545 0.009933 0.000000 0.000000 0.042554 0.000000 0.011341 0.042554 0.042554 0.000000 0.000000 0.010489 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.011046 0.011219 0.000000 0.000000 0.000000 0.000000 0.000000 0.062518 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.017807 0.0 0.0 0.017807 0.0 0.0 0.000000 0.000000 0.010760 0.011466 0.000000 0.030326 0.014583 0.019139 0.011144 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.014634 0.013196 0.016862 0.011489 0.016862 0.0 0.010775 0.011959 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.00000 0.018089 0.000000 0.0 0.0 0.0 0.016862 0.000000 0.000000 0.000000 0.0 0.042258 0.011644 0.0 0.000000 0.0 0.000000 0.014289 0.0 0.011829 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.012293 0.027854 0.0 0.000000 0.011167 0.00000 0.000000 0.008676 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.012029 0.000000 0.000000 0.000000 0.010503 0.000000 0.000000 0.000000 0.011848 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.030292 0.010179 0.010653 0.000000 0.000000 0.010545 0.000000 0.000000 0.000000 0.010545 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015265 0.000000 0.000000 0.0 0.00000 0.0 0.053471 0.000000 0.011988 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.009277 0.000000 0.000000 0.018997 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.039196 0.042439 0.000000 0.039196 0.000000 0.000000 0.000000 0.000000 0.031943 0.00000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012402 0.000000 0.013190 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.053620 0.000000 0.0 0.000000 0.018123 0.030216 0.00000 0.000000 0.00000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.010173 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0000 0.0 0.00000 0.0 0.081263 0.000000 0.017938 0.0 0.0 0.012703 0.051609 0.000000 0.019568 0.000000 0.030868 0.027092 0.059945 0.009629 0.011920 0.012831 0.081263 0.027083 0.010839 0.012831 0.009985 0.000000 0.000000 0.000000 0.000000 0.020158 0.00000 0.000000 0.028702 0.010415 0.020099 0.061526 0.0000 0.013771 0.000000 0.033904 0.033904 0.014057 0.014122 0.014084 0.014084 0.00000 0.015607 0.015607 0.0000 0.000000 0.000000 0.000000 0.011216 0.000000 0.000000 0.00907 0.000000 0.0 0.016831 0.046329 0.000000 0.000000 0.015685 0.000000 0.000000 0.079094 0.000000 0.0 0.000000 0.019099 0.000000 0.018936 0.032770 0.022631 0.022824 0.016746 0.008851 0.000000 0.00000 0.011343 0.000000 0.009343 0.015512 0.0 0.000000 0.018737 0.000000 0.000000 0.000000 0.000000 0.029804 0.020525 0.026847 0.000000 0.047941 0.000000 0.000000 0.038076 0.007774 0.000000 0.023082 0.000000 0.000000 0.000000 0.048714 0.018193 0.0 0.000000 0.006924 0.000000 0.007961 0.000000 0.000000 0.021297 0.009779 0.032402 0.008755 0.000000 0.000000 0.0 0.010735 0.022507 0.072066 0.009303 0.009121 0.017840 0.018113 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.007882 0.015201 0.000000 0.019819 0.0 0.039680 0.026946 0.020309 0.041369 0.047316 0.000000 0.007691 0.000000 0.013498 0.000000 0.0 0.000000 0.000000 0.028183 0.013387 0.034283 0.015649 0.019290 0.000000 0.000000 0.009615 0.000000 0.000000 0.000000 0.011074 0.021262 0.023215 0.000000 0.009782 0.011543 0.000000 0.000000 0.013013 0.000000 0.014117 0.0 0.018224 0.016765 0.000000 0.023639 0.000000 0.049886 0.007166 0.000000 0.027803 0.000000 0.000000 0.034710 0.013819 0.023235 0.047179 0.014478 0.016609 0.000000 0.055308 0.000000 0.062006 0.0 0.000000 0.049810 0.000000 0.023610 0.0 0.038873 0.016573 0.000000 0.059107 0.018606 0.013549 0.013629 0.018678 0.000000 0.00000 0.000000 0.010678 0.000000 0.017224 0.000000 0.000000 0.011770 0.010118 0.024122 0.000000 0.023976 0.024587 0.032142 0.00000 0.030522 0.000000 0.000000 0.000000 0.018440 0.035238 0.000000 0.011448 0.000000 0.009566 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009976 0.000000 0.045373 0.010184 0.016812 0.022953 0.023989 0.028042 0.000000 0.013970 0.000000 0.010676 0.00000 0.094127 0.043385 0.000000 0.018519 0.071748 0.045883 0.024697 0.000000 0.024507 0.03456 0.016085 0.009436 0.054977 0.016792 0.006695 0.017926 0.000000 0.042600 0.000000 0.036729 0.009435 0.000000 0.025559 0.019534 0.000000 0.016123 0.008051 0.000000 0.016132 0.019708 0.041021 0.052919 0.046207 0.000000 0.000000 0.025979 0.018304 0.000000 0.007453 0.000000 0.0000 0.009955 0.000000 0.042363 0.032284 0.000000 0.007773 0.018100 0.0 0.033881 0.00000 0.000000 0.009636 0.008928 0.000000 0.0 0.000000 0.00000 0.011284 0.000000 0.000000 0.000000 0.023284 0.010424 0.000000 0.081683 0.020888 0.039685 0.00000 0.000000 0.000000 0.009327 0.018492 0.013931 0.000000 0.000000 0.011485 0.032296 0.021405 0.017056 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015585 0.000000 0.000000 0.090451 0.000000 0.000000 0.036677 0.015564 0.000000 0.011389 0.00000 0.006158 0.000000 0.015628 0.00000 0.011343 0.000000 0.043360 0.000000 0.000000 0.000000 0.036644 0.000000 0.000000 0.000000 0.009252 0.052919 0.000000 0.000000 0.000000 0.000000 0.035264 0.017046 0.0 0.021594 0.000000 0.000000 0.000000 0.020439 0.019862 0.000000 0.000000 0.009605 0.000000 0.000000 0.027231 0.000000 0.016762 0.020940 0.000000 0.000000 0.018104 0.015450 0.000000 0.010869 0.027058 0.000000 0.000000 0.014283 0.010214 0.020755 0.000000 0.016437 0.000000 0.015952 0.000000 0.000000 0.028434 0.007619 0.019309 0.042328 0.000000 0.015868 0.020812 0.061817 0.000000 0.062887 0.000000 0.000000 0.010753 0.017736 0.064231 0.025239 0.036941 0.000000 0.000000 0.033958 0.000000 0.021200 0.01302 0.012464 0.000000 0.000000 0.007926 0.0 0.013371 0.025097 0.000000 0.028310 0.0 0.005990 0.0 0.017338 0.000000 0.0 0.000000 0.00000 0.024314 0.000000 0.000000 0.017607 0.017926 0.000000 0.030926 0.069247 0.023696 0.00000 0.064608 0.000000 0.000000 0.008617 0.0000 0.000000 0.015104 0.000000 0.000000 0.023975 0.019908 0.013839 0.000000 0.000000 0.010529 0.000000 0.000000 0.000000 0.009104 0.089768 0.000000 0.053889 0.008980 0.000000 0.000000 0.009204 0.018843 0.032067 0.018694 0.021790 0.000000 0.000000 0.041076 0.020613 0.000000 0.000000 0.015657 0.000000 0.0 0.000000 0.022443 0.013510 0.000000 0.018755 0.047828 0.019947 0.010706 0.015409 0.071480 0.000000 0.023353 0.000000 0.019951 0.019951 0.000000 0.036131 0.045985 0.058106 0.064733 0.000000 0.009300 0.030298 0.093380 0.000000 0.009489 0.000000 0.023698 0.000000 0.009451 0.000000 0.012747 0.010611 0.000000 0.000000 0.000000 0.000000 0.014305 0.0 0.027888 0.000000 0.029518 0.000000 0.009707 0.000000 0.0 0.024920 0.060812 0.016858 0.000000 0.000000 0.040050 0.009568 0.000000 0.0 0.000000 0.000000 0.017752 0.000000 0.000000 0.000000 0.000000 0.055859 0.000000 0.0 0.030457 0.020180 0.009703 0.048977 0.008986 0.0 0.000000 0.000000 0.000000 0.017056 0.008951 0.052130 0.047486 0.043355 0.0 0.017214 0.010352 0.035438 0.035438 0.039297 0.014038 0.007302 0.019839 0.01651 0.034854 0.052703 0.019895 0.027309 0.008385 0.000000 0.000000 0.008878 0.021425 0.064769 0.000000 0.040218 0.0 0.097595 0.053567 0.000000 0.033692 0.062632 0.020099 0.000000 0.000000 0.101255 0.000000 0.008325 0.026468 0.021084 0.000000 0.006525 0.024051 0.007642 0.069463 0.022401 0.018989 0.025545 0.026706 0.00000 0.027814 0.024844 0.017079 0.007581 0.024601 0.00000 0.028912 0.0 0.012138 0.065053 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031251 0.018835 0.00000 0.000000 0.009695 0.000000 0.010803 0.000000 0.000000 0.000000 0.000000 0.010825 0.000000 0.000000 0.011124 0.009044 0.045586 0.000000 0.000000 0.000000 0.010391 0.010448 0.009092 0.000000 0.022140 0.000000 0.000000 0.000000 0.010127 0.000000 0.0 0.047142 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009852 0.000000 0.0 0.000000 0.000000 0.000000 0.010407 0.000000 0.009900 0.0 0.027386 0.000000 0.011696 0.000000 0.000000 0.022966 0.016539 0.000000 0.008472 0.025626 0.000000 0.102236 0.007902 0.000000 0.000000 0.000000 0.000000 0.016488 0.011219 0.000000 0.035964 0.085893 0.011066 0.000000 0.000000 0.000000 0.000000 0.010088 0.000000 0.052790 0.000000 0.000000 0.035468 0.0 0.000000 0.00000 0.000000 0.00000 0.000000 0.022869 0.0 0.000000 0.018018 0.000000 0.014989 0.000000 0.011303 0.0 0.007240 0.017241 0.009593 0.000000 0.0 0.000000 0.035642 0.0 0.008529 0.019932 0.010644 0.013696 0.027474 0.000000 0.0 0.0 0.009577 0.000000 0.007031 0.000000 0.000000 0.000000 0.00000 0.000000 0.011163 0.000000 0.038773 0.000000 0.035727 0.000000 0.000000 0.009188 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.008664 0.009957 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.009852 0.039352 0.000000 0.027142 0.000000 0.00000 0.031403 0.000000 0.006779 0.000000 0.014740 0.006421 0.017387 0.0 0.000000 0.000000 0.0 0.000000 0.025954 0.000000 0.000000 0.000000 0.000000 0.000000 0.012857 0.011054 0.000000 0.000000 0.000000 0.000000 0.009154 0.031800 0.000000 0.000000 0.013079 0.012760 0.000000 0.000000 0.023761 0.000000 0.0 0.058570 0.000000 0.000000 0.010154 0.024466 0.0 0.000000 0.012205 0.010076 0.000000 0.000000 0.000000 0.016133 0.000000 0.052919 0.000000 0.000000 0.010457 0.012527 0.000000 0.000000 0.000000 0.00000 0.000000 0.018921 0.051907 0.011570 0.020370 0.000000 0.022017 0.000000 0.000000 0.010484 0.000000 0.0 0.000000 0.009167 0.000000 0.011826 0.000000 0.000000 0.000000 0.060417 0.045042 0.009367 0.000000 0.000000 0.007156 0.000000 0.000000 0.0 0.000000 0.010695 0.009397 0.060459 0.033079 0.010432 0.010733 0.008641 0.000000 0.013987 0.00000 0.008131 0.000000 0.000000 0.000000 0.0000 0.000000 0.031624 0.023889 0.000000 0.026250 0.0 0.000000 0.011792 0.052301 0.019554 0.000000 0.000000 0.000000 0.017853 0.000000 0.000000 0.012294 0.0 0.010241 0.000000 0.010044 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.018854 0.000000 0.000000 0.033369 0.000000 0.011015 0.000000 0.045479 0.026347 0.000000 0.010947 0.000000 0.028137 0.015198 0.00000 0.0 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.018513 0.017386 0.000000 0.000000 0.0 0.008092 0.009227 0.010647 0.011017 0.000000 0.000000 0.000000 0.020280 0.000000 0.014492 0.000000 0.021739 0.032351 0.000000 0.031183 0.007344 0.000000 0.011837 0.000000 0.055153 0.027529 0.000000 0.039198 0.038083 0.012458 0.011607 0.000000 0.000000 0.000000 0.000000 0.015492 0.011277 0.000000 0.000000 0.014181 0.025207 0.000000 0.000000 0.012920 0.049361 0.009528 0.047386 0.008826 0.0 0.000000 0.000000 0.00000 0.000000 0.028041 0.011710 0.030707 0.000000 0.006535 0.000000 0.000000 0.000000 0.026136 0.024414 0.008756 0.039109 0.011305 0.000000 0.000000 0.000000 0.034409 0.031792 0.000000 0.014223 0.033862 0.009882 0.000000 0.000000 0.000000 0.019964 0.000000 0.000000 0.056326 0.0 0.000000 0.000000 0.0 0.051604 0.000000 0.012627 0.00000 0.016683 0.000000 0.000000 0.021080 0.008431 0.000000 0.000000 0.039308 0.000000 0.040250 0.000000 0.0 0.000000 0.000000 0.047791 0.000000 0.000000 0.000000 0.014504 0.016497 0.008319 0.010715 0.101290 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00844 0.000000 0.000000 0.000000 0.021142 0.000000 0.000000 0.000000 0.024361 0.006494 0.000000 0.000000 0.000000 0.000000 0.000000 0.012330 0.014122 0.00000 0.014548 0.019858 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.010927 0.025855 0.010326 0.000000 0.000000 0.000000 0.052484 0.000000 0.000000 0.01497 0.009301 0.000000 0.021780 0.000000 0.009946 0.000000 0.000000 0.046442 0.012283 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.006533 0.012283 0.000000 0.031574 0.020165 0.034003 0.021126 0.000000 0.0 0.000000 0.000000 0.0 0.012222 0.000000 0.00000 0.000000 0.007755 0.000000 0.000000 0.008668 0.016379 0.099757 0.000000 0.000000 0.000000 0.000000 0.024041 0.000000 0.0 0.016431 0.009038 0.00000 0.009668 0.011446 0.000000 0.00000 0.000000 0.000000 0.025063 0.000000 0.00000 0.000000 0.0 0.007712 0.010156 0.0 0.000000 0.026422 0.009970 0.025167 0.000000 0.000000 0.011315 0.012613 0.00000 0.000000 0.00000 0.021932 0.007013 0.0 0.000000 0.000000 0.0 0.012786 0.000000 0.008662 0.011995 0.000000 0.000000 0.010307 0.009064 0.000000 0.000000 0.000000 0.000000 0.010820 0.000000 0.000000 0.000000 0.034265 0.011192 0.000000 0.021770 0.000000 0.000000 0.008632 0.000000 0.00000 0.000000 0.000000 0.039824 0.00000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.010421 0.000000 0.000000 0.010935 0.000000 0.021170 0.000000 0.000000 0.0 0.000000 0.000000 0.008866 0.040553 0.000000 0.032067 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032359 0.008689 0.029169 0.000000 0.027054 0.021338 0.000000 0.000000 0.000000 0.012382 0.008738 0.000000 0.018883 0.000000 0.011169 0.000000 0.000000 0.013828 0.018349 0.00000 0.0 0.000000 0.009928 0.016536 0.028524 0.00000 0.000000 0.086564 0.000000 0.000000 0.000000 0.008452 0.000000 0.035199 0.000000 0.020447 0.000000 0.020821 0.00000 0.0000 0.000000 0.0 0.009221 0.000000 0.010397 0.010014 0.000000 0.00000 0.000000 0.00000 0.012570 0.000000 0.000000 0.000000 0.000000 0.011372 0.000000 0.000000 0.010595 0.000000 0.000000 0.007942 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.052919 0.0 0.000000 0.00000 0.011081 0.000000 0.000000 0.019081 0.000000 0.000000 0.026558 0.000000 0.062169 0.009852 0.000000 0.000000 0.011366 0.019649 0.008338 0.041039 0.038249 0.009435 0.010378 0.011972 0.000000 0.000000 0.011311 0.000000 0.000000 0.000000 0.021360 0.011683 0.020869 0.021360 0.000000 0.000000 0.074584 0.0000 0.022149 0.018435 0.022315 0.010571 0.017975 0.009200 0.022935 0.081342 0.00000 0.025933 0.000000 0.036872 0.018739 0.044338 0.037137 0.000000 0.016536 0.010392 0.017431 0.042016 0.025032 0.000000 0.007900 0.026148 0.000000 0.000000 0.029981 0.019498 0.058663 0.009781 0.009580 0.000000 0.0 0.010004 0.024507 0.000000 0.104844 0.010609 0.028310 0.000000 0.000000 0.000000 0.00000 0.038541 0.000000 0.028191 0.016536 0.032940 0.000000 0.000000 0.009309 0.0000 0.028106 0.058240 0.04207 0.027800 0.016247 0.017652 0.0 0.0 0.010723 0.000000 0.009441 0.0 0.026278 0.000000 0.000000 0.027800 0.015420 0.034331 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.008987 0.00000 0.000000 0.010096 0.0 0.0 0.014885 0.033504 0.0 0.0 0.040713 0.0 0.000000 0.000000 0.0 0.000000 0.013923 0.0 0.015281 0.0 0.014582 0.019875 0.000000 0.0 0.0 0.000000 0.018375 0.0 0.0 0.0 0.051838 0.000000 0.000000 0.021370 0.008997 0.0 0.007208 0.000000 0.000000 0.000000 0.000000 0.011375 0.009689 0.000000 0.010107 0.009273 0.000000 0.009689 0.011612 0.028310 0.048808 0.000000 0.010847 0.000000 0.028489 0.0 0.011336 0.029772 0.000000 0.000000 0.0 0.012895 0.011524 0.000000 0.017994 0.019666 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.014471 0.013513 0.011301 0.000000 0.000000 0.000000 0.025857 0.025857 0.033568 0.000000 0.007414 0.0 0.010194 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.00000 0.008250 0.008924 0.000000 0.037768 0.000000 0.0 0.000000 0.0 0.011721 0.011721 0.000000 0.000000 0.014475 0.0 0.042017 0.0 0.0 0.0 0.026238 0.000000 0.007488 0.0 0.000000 0.0 0.0 0.012620 0.000000 0.013408 0.009865 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.027271 0.0 0.000000 0.0 0.012226 0.000000 0.000000 0.015242 0.000000 0.000000 0.022258 0.000000 0.011001 0.010773 0.011325 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.029575 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.051134 0.0 0.000000 0.000000 0.000000 0.000000 0.011199 0.000000 0.007301 0.030398 0.030883 0.014977 0.000000 0.020234 0.000000 0.015943 0.0 0.008736 0.000000 0.0 0.0 0.000000 0.010252 0.00000 0.000000 0.000000 0.0 0.019897 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.006537 0.000000 0.000000 0.0 0.0 0.066453 0.0 0.012786 0.000000 0.000000 0.0 0.000000 0.0 0.019428 0.011101 0.000000 0.000000 0.020652 0.000000 0.035946 0.000000 0.0 0.0 0.000000 0.017218 0.0 0.000000 0.0 0.000000 0.011865 0.000000 0.000000 0.011379 0.000000 0.008418 0.010248 0.008088 0.00000 0.011336 0.00000 0.012045 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.034838 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.008411 0.0 0.000000 0.011492 0.000000 0.009260 0.0 0.0 0.015766 0.0 0.021179 0.0 0.0 0.006806 0.0 0.0 0.0 0.0 0.0 0.008406 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.022876 0.000000 0.011220 0.0 0.0 0.0 0.0 0.000000 0.000000 0.013115 0.0 0.005715 0.016615 0.0 0.0 0.0 0.0 0.0 0.017431 0.000000 0.012632 0.010249 0.022555 0.0 0.010649 0.000000 0.0 0.000000 0.035135 0.0 0.024361 0.008280 0.000000 0.0 0.0 0.011969 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.046627 0.0 0.007357 0.025405 0.000000 0.011481 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.009829 0.0 0.035339 0.000000 0.023409 0.000000 0.000000 0.025451 0.0 0.009848 0.033843 0.000000 0.041985 0.000000 0.000000 0.000000 0.000000 0.000000 0.020612 0.015029 0.041235 0.051706 0.007142 0.000000 0.017716 0.000000 0.0 0.010118 0.000000 0.0 0.000000 0.011316 0.012704 0.0 0.016696 0.0 0.040568 0.019257 0.009437 0.000000 0.000000 0.000000 0.000000 0.010239 0.000000 0.021464 0.022750 0.0 0.019892 0.0 0.0 0.000000 0.0 0.000000 0.0 0.008256 0.015559 0.061728 0.000000 0.009535 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.044464 0.0 0.0 0.0 0.000000 0.0 0.000000 0.014262 0.000000 0.000000 0.0 0.000000 0.023170 0.0 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.028925 0.0 0.019294 0.005815 0.015492 0.028328 0.0 0.0 0.0 0.0 0.009130 0.011941 0.000000 0.000000 0.025223 0.011669 0.0 0.020078 0.0 0.013321 0.029813 0.018287 0.016535 0.00000 0.000000 0.000000 0.000000 0.027144 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.038319 0.0 0.0 0.0 0.0 0.000000 0.013883 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.006904 0.0 0.0 0.0 0.0 0.000000 0.0 0.008251 0.000000 0.000000 0.0 0.047222 0.018179 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.023101 0.047037 0.000000 0.017798 0.018363 0.166033 0.000000 0.000000 0.000000 0.0 0.0 0.01302 0.000000 0.033648 0.012206 0.000000 0.000000 0.0 0.0 0.0 0.017962 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.020504 0.023861 0.162037 0.000000 0.008276 0.007213 0.009185 0.000000 0.064179 0.019409 0.000000 0.000000 0.010992 0.016331 0.015621 0.00000 0.000000 0.0 0.0 0.013495 0.009488 0.025863 0.0 0.041738 0.0 0.000000 0.0 0.0 0.026509 0.011557 0.021511 0.016289 0.040917 0.020377 0.026366 0.000000 0.018139 0.0 0.00000 0.000000 0.0 0.0 0.007361 0.0 0.100208 0.000000 0.000000 0.025366 0.000000 0.006774 0.0 0.000000 0.0 0.00616 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.007304 0.000000 0.000000 0.0 0.0 0.026163 0.000000 0.016014 0.006653 0.030872 0.0 0.009017 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.008968 0.000000 0.0 0.0 0.015823 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.029556 0.0 0.000000 0.009680 0.000000 0.010391 0.026130 0.000000 0.000000 0.037124 0.0 0.000000 0.063759 0.031275 0.000000 0.0 0.015232 0.0 0.009564 0.048222 0.015172 0.0 0.0 0.019941 0.0 0.000000 0.000000 0.0 0.009376 0.022456 0.0 0.064426 0.0 0.009893 0.000000 0.0 0.0 0.012929 0.033774 0.032024 0.000000 0.0 0.000000 0.054172 0.00000 0.000000 0.000000 0.011443 0.010543 0.025857 0.008427 0.010170 0.0 0.00000 0.031127 0.000000 0.010139 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.012895 0.029826 0.0 0.0 0.0 0.0 0.0 0.019469 0.00000 0.009286 0.020983 0.0 0.000000 0.025715 0.008583 0.0 0.0 0.000000 0.000000 0.021035 0.010857 0.010857 0.0 0.000000 0.013699 0.013699 0.009019 0.0 0.005382 0.000000 0.009588 0.019024 0.020688 0.0 0.0 0.0 0.014703 0.022574 0.000000 0.028799 0.065332 0.014977 0.009688 0.061477 0.007642 0.021589 0.000000 0.007866 0.023437 0.000000 0.035891 0.000000 0.064362 0.000000 0.065823 0.0 0.040143 0.0 0.000000 0.039127 0.0 0.0 0.000000 0.0 0.0 0.008228 0.000000 0.0 0.006776 0.032772 0.0 0.059392 0.000000 0.000000 0.0 0.0 0.0 0.008063 0.000000 0.0 0.0 0.0 0.0 0.014107 0.0 0.033421 0.0 0.041930 0.0 0.000000 0.000000 0.009801 0.0 0.008837 0.000000 0.029327 0.000000 0.000000 0.00000 0.014696 0.000000 0.011334 0.009318 0.017511 0.000000 0.01051 0.010807 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.010411 0.0 0.000000 0.022291 0.008326 0.000000 0.000000 0.020953 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.000000 0.029022 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.008362 0.0 0.000000 0.035923 0.0 0.0 0.009262 0.000000 0.010240 0.024583 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.009981 0.000000 0.00000 0.011524 0.010914 0.000000 0.00000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017948 0.000000 0.0 0.000000 0.016656 0.023567 0.022911 0.018870 0.000000 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.008851 0.0 0.042360 0.000000 0.0 0.000000 0.0 0.0 0.066943 0.0 0.037712 0.0 0.0 0.0 0.0 0.025998 0.000000 0.011175 0.020141 0.0 0.0 0.000000 0.0 0.0 0.019188 0.012987 0.044047 0.0 0.018337 0.014399 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.011397 0.0 0.0 0.018348 0.0 0.00838 0.01506 0.0 0.0 0.000000 0.020510 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.018937 0.0 0.000000 0.011101 0.000000 0.000000 0.0 0.000000 0.0 0.023093 0.009527 0.000000 0.000000 0.014346 0.000000 0.019428 0.080511 0.028482 0.023840 0.018399 0.000000 0.013990 0.010702 0.007308 0.000000 0.009139 0.000000 0.000000 0.057286 0.0 0.033849 0.000000 0.0 0.0 0.0 0.0 0.0 0.008877 0.0 0.008088 0.0 0.000000 0.000000 0.011541 0.00000 0.0 0.000000 0.0 0.0 0.051006 0.0 0.000000 0.0 0.0 0.000000 0.046649 0.008018 0.007619 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.0 0.010884 0.000000 0.0 0.0 0.000000 0.008429 0.012026 0.0 0.0 0.0 0.0 0.009219 0.000000 0.000000 0.000000 0.0 0.0 0.052930 0.0 0.008435 0.00000 0.065296 0.0 0.00000 0.000000 0.000000 0.000000 0.042308 0.007087 0.06062 0.007910 0.047645 0.000000 0.0 0.000000 0.014819 0.000000 0.0 0.00000 0.018664 0.000000 0.0 0.0 0.000000 0.000000 0.010515 0.011240 0.0 0.012891 0.044717 0.016467 0.000000 0.000000 0.017058 0.000000 0.0 0.053964 0.017074 0.0 0.005018 0.000000 0.000000 0.0 0.049322 0.025593 0.0 0.0 0.0 0.014211 0.010258 0.0 0.0 0.041456 0.000000 0.030502 0.000000 0.018160 0.0 0.0 0.0 0.0 0.0 0.0 0.049404 0.046889 0.000000 0.0 0.000000 0.009452 0.0 0.0 0.014365 0.049495 0.026442 0.008429 0.000000 0.027144 0.008497 0.000000 0.038218 0.009457 0.0 0.0 0.00831 0.009736 0.010777 0.0 0.000000 0.000000 0.010056 0.029772 0.000000 0.000000 0.000000 0.008783 0.009444 0.0 0.010201 0.034165 0.015640 0.0 0.000000 0.000000 0.006768 0.000000 0.000000 0.0 0.008447 0.016752 0.015046 0.0 0.0 0.000000 0.000000 0.000000 0.008355 0.000000 0.0 0.0 0.0 0.000000 0.060991 0.000000 0.0 0.000000 0.029657 0.0 0.0 0.009839 0.000000 0.022457 0.0 0.009872 0.008293 0.000000 0.000000 0.0 0.0 0.008476 0.012644 0.011119 0.005121 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.010981 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.039680 0.000000 0.000000 0.010785 0.000000 0.010138 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.00000 0.0 0.0 0.014941 0.0 0.0 0.0 0.0 0.000000 0.0 0.008176 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.015225 0.0 0.000000 0.062358 0.016559 0.020237 0.0 0.0 0.057279 0.007575 0.00000 0.000000 0.022278 0.000000 0.000000 0.000000 0.021161 0.014977 0.017238 0.010750 0.023125 0.039161 0.000000 0.000000 0.0 0.0 0.050332 0.014290 0.000000 0.00000 0.000000 0.022595 0.0 0.000000 0.0 0.0 0.010722 0.000000 0.0 0.02657 0.0 0.000000 0.012935 0.000000 0.0 0.0 0.000000 0.0 0.0 0.000000 0.011223 0.024229 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014322 0.008285 0.0 0.0 0.000000 0.017389 0.008517 0.014458 0.000000 0.000000 0.0 0.000000 0.014806 0.017391 0.00000 0.000000 0.008833 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.014819 0.014819 0.000000 0.021909 0.010956 0.000000 0.013987 0.009549 0.000000 0.011671 0.011552 0.00000 0.000000 0.041279 0.000000 0.016873 0.000000 0.0 0.017446 0.0 0.000000 0.010920 0.017748 0.0 0.000000 0.000000 0.000000 0.012400 0.000000 0.0 0.011378 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.010248 0.000000 0.016575 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.008190 0.0 0.0 0.0 0.000000 0.020978 0.045873 0.0 0.0 0.017560 0.0 0.03939 0.000000 0.011522 0.000000 0.000000 0.000000 0.011255 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.051341 0.000000 0.000000 0.008395 0.011353 0.000000 0.009970 0.0 0.000000 0.010811 0.018099 0.000000 0.0 0.0 0.000000 0.0 0.0 0.046553 0.0 0.000000 0.0 0.00000 0.010785 0.026571 0.0 0.000000 0.007799 0.000000 0.026585 0.000000 0.039093 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.014727 0.000000 0.075483 0.009965 0.000000 0.007483 0.0 0.000000 0.024012 0.027735 0.000000 0.029662 0.0 0.011305 0.014352 0.022258 0.040172 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.010397 0.021214 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.057811 0.0 0.0 0.009437 0.023639 0.040500 0.000000 0.027144 0.0 0.000000 0.0 0.018038 0.0000 0.0 0.0 0.000000 0.000000 0.000000 0.010488 0.000000 0.000000 0.000000 0.008823 0.03818 0.0 0.0 0.0 0.0 0.027589 0.000000 0.000000 0.012895 0.008412 0.0 0.000000 0.0 0.0 0.000000 0.05194 0.000000 0.0 0.0 0.0 0.0 0.008956 0.010567 0.000000 0.040713 0.010857 0.0 0.000000 0.00000 0.000000 0.012155 0.000000 0.010008 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.009568 0.038991 0.000000 0.009531 0.019666 0.0 0.010194 0.0 0.000000 0.045369 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.152323 0.0 0.007477 0.0 0.0 0.027397 0.027732 0.016363 0.0 0.0 0.0 0.000000 0.014371 0.0 0.000000 0.017373 0.00000 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.011969 0.000000 0.0 0.0 0.0 0.008837 0.000000 0.023175 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.02708 0.000000 0.0 0.011863 0.0 0.000000 0.000000 0.000000 0.014761 0.0 0.0 0.0 0.013506 0.009840 0.060262 0.092651 0.02644 0.000000 0.000000 0.038421 0.020045 0.000000 0.000000 0.0 0.000000 0.030018 0.008440 0.006465 0.000000 0.038533 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.025041 0.000000 0.000000 0.017275 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.02314 0.008474 0.015206 0.000000 0.006617 0.0 0.015001 0.0 0.0 0.0 0.000000 0.00000 0.0 0.0 0.000000 0.000000 0.012895 0.000000 0.011866 0.009203 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.009457 0.011178 0.0 0.010789 0.000000 0.011366 0.000000 0.012155 0.010613 0.014432 0.0 0.000000 0.0 0.0 0.0 0.0 0.010853 0.000000 0.000000 0.0 0.010937 0.0 0.000000 0.029772 0.010268 0.000000 0.000000 0.013031 0.0 0.000000 0.0 0.0 0.000000 0.0 0.0 0.006986 0.011163 0.000000 0.000000 0.041674 0.013414 0.018538 0.000000 0.0 0.0 0.000000 0.0 0.0 0.0 0.008134 0.0 0.000000 0.000000 0.007936 0.0 0.0 0.034940 0.00000 0.0 0.0 0.000000 0.0 0.022821 0.0 0.010902 0.000000 0.009273 0.0 0.000000 0.0 0.0 0.007438 0.02785 0.008660 0.023192 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.039652 0.0 0.0 0.0 0.020309 0.0 0.011938 0.0 0.0 0.000000 0.0 0.0 0.0 0.019823 0.0 0.0 0.000000 0.000000 0.0 0.0 0.008318 0.0 0.0 0.000000 0.000000 0.0 0.016586 0.036124 0.0 0.059391 0.022837 0.000000 0.000000 0.0 0.010248 0.000000 0.010181 0.0 0.000000 0.0 0.02708 0.0 0.000000 0.008429 0.000000 0.000000 0.0 0.036847 0.0 0.0 0.0 0.0 0.000000 0.000000 0.0 0.017244 0.027657 0.0 0.000000 0.029765 0.00000 0.0 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.011967 0.0 0.000000 0.015208 0.000000 0.008215 0.013573 0.0 0.008469 0.0 0.000000 0.000000 0.000000 0.0 0.009318 0.0 0.0 0.006401 0.000000 0.0 0.0 0.0 0.023576 0.019240 0.007922 0.000000 0.000000 0.016088 0.016376 0.0 0.000000 0.000000 0.0 0.0 0.0 0.012966 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.043533 0.000000 0.0 0.000000 0.082127 0.000000 0.00000 0.000000 0.013847 0.046259 0.009099 0.0 0.038327 0.052915 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.017482 0.007965 0.029105 0.0 0.000000 0.000000 0.0 0.017097 0.0 0.0 0.021200 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.014368 0.0 0.000000 0.000000 0.037768 0.013697 0.000000 0.010271 0.0 0.011182 0.000000 0.000000 0.010554 0.008191 0.000000 0.011705 0.000000 0.000000 0.000000 0.0 0.0 0.008362 0.024398 0.0 0.0 0.0 0.000000 0.007456 0.000000 0.010124 0.013291 0.000000 0.000000 0.011429 0.023642 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.015869 0.000000 0.00000 0.013101 0.024533 0.000000 0.009258 0.009258 0.006994 0.0 0.000000 0.000000 0.000000 0.008583 0.0 0.010161 0.008842 0.0 0.000000 0.010208 0.000000 0.0 0.039719 0.020815 0.000000 0.024499 0.008825 0.000000 0.000000 0.032538 0.033061 0.0 0.000000 0.013469 0.026212 0.024203 0.0 0.000000 0.0 0.0 0.00000 0.0 0.0 0.0 0.0 0.0 0.0 0.009087 0.0 0.0 0.000000 0.0 0.0 0.0 0.00000 0.0 0.045540 0.0 0.0 0.000000 0.015494 0.0 0.018066 0.0 0.0 0.0 0.008908 0.000000 0.0 0.0 0.0 0.011398 0.000000 0.000000 0.019035 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009521 0.000000 0.035771 0.008266 0.000000 0.000000 0.000000 0.072230 0.0 0.000000 0.0 0.032476 0.0 0.000000 0.00000 0.000000 0.0 0.000000 0.000000 0.011144 0.011869 0.021644 0.0 0.000000 0.000000 0.000000 0.011645 0.0 0.021604 0.0 0.000000 0.024773 0.000000 0.018664 0.000000 0.000000 0.014613 0.0 0.009298 0.0 0.029055 0.000000 0.028984 0.0 0.0 0.024036 0.0 0.000000 0.032318 0.000000 0.000000 0.000000 0.0 0.038834 0.000000 0.005394 0.0 0.011908 0.037612 0.0 0.0 0.010707 0.006653 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.051696 0.0 0.0 0.017238 0.0 0.0 0.0 0.009465 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.00000 0.011893 0.021142 0.021832 0.023138 0.000000 0.0 0.033834 0.005982 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.030823 0.0 0.040117 0.0 0.0 0.000000 0.017374 0.0 0.010406 0.000000 0.000000 0.0 0.033452 0.00000 0.0 0.000000 0.0 0.0 0.000000 0.0 0.034639 0.0 0.0 0.019794 0.013510 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.008061 0.000000 0.000000 0.023638 0.023638 0.011656 0.000000 0.020032 0.000000 0.000000 0.000000 0.046098 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.022067 0.000000 0.024207 0.000000 0.0 0.000000 0.000000 0.000000
4 0.000000 0.000000 0.000000 0.000000 1.0 0.061378 0.495855 0.019078 0.023203 0.015197 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021157 0.052009 0.022305 0.000000 0.015216 0.000000 0.000000 0.038756 0.000000 0.044846 0.000000 0.014186 0.000000 0.000000 0.000000 0.020908 0.032927 0.0 0.023616 0.000000 0.016224 0.016252 0.000000 0.000000 0.016325 0.069613 0.000000 0.000000 0.00000 0.000000 0.000000 0.024140 0.000000 0.000000 0.000000 0.000000 0.000000 0.022006 0.000000 0.000000 0.000000 0.026783 0.012088 0.104385 0.013203 0.013056 0.000000 0.000000 0.041877 0.016082 0.030735 0.032949 0.059819 0.000000 0.102021 0.000000 0.095135 0.000000 0.025402 0.000000 0.019087 0.000000 0.047138 0.0 0.380221 0.326203 0.043032 0.015516 0.000000 0.027293 0.000000 0.000000 0.047354 0.030318 0.077943 0.000000 0.000000 0.063737 0.043968 0.000000 0.000000 0.000000 0.000000 0.000000 0.023304 0.000000 0.000000 0.044284 0.000000 0.034945 0.040953 0.047150 0.012385 0.000000 0.025009 0.048304 0.000000 0.023005 0.052342 0.029613 0.000000 0.000000 0.017308 0.000000 0.018045 0.000000 0.013954 0.036275 0.000000 0.000000 0.046009 0.025178 0.019691 0.000000 0.102131 0.018166 0.036755 0.000000 0.017647 0.000000 0.055441 0.020970 0.012255 0.037434 0.014675 0.000000 0.026323 0.058100 0.000000 0.022145 0.000000 0.000000 0.000000 0.000000 0.000000 0.019687 0.000000 0.000000 0.000000 0.000000 0.000000 0.016923 0.000000 0.103058 0.016900 0.068721 0.000000 0.021982 0.000000 0.000000 0.000000 0.000000 0.000000 0.045047 0.000000 0.016365 0.050186 0.094559 0.000000 0.021151 0.000000 0.0 0.014101 0.000000 0.000000 0.000000 0.046964 0.029764 0.000000 0.000000 0.030488 0.0 0.000000 0.071505 0.000000 0.000000 0.041894 0.056319 0.000000 0.000000 0.000000 0.061631 0.019472 0.000000 0.000000 0.055892 0.035818 0.000000 0.000000 0.000000 0.000000 0.0 0.112735 0.0 0.0 0.020380 0.035160 0.000000 0.034860 0.000000 0.043488 0.000000 0.00000 0.091284 0.000000 0.201172 0.014354 0.042530 0.0 0.000000 0.056940 0.066725 0.064555 0.014705 0.000000 0.0 0.000000 0.000000 0.000000 0.015678 0.022260 0.015656 0.0 0.0 0.0 0.017987 0.089953 0.000000 0.000000 0.000000 0.051404 0.017372 0.018506 0.015293 0.019116 0.000000 0.012928 0.017981 0.072087 0.000000 0.026878 0.060794 0.050410 0.000000 0.086816 0.000000 0.015441 0.031708 0.000000 0.016137 0.041340 0.000000 0.000000 0.019742 0.000000 0.000000 0.088595 0.020834 0.000000 0.025327 0.000000 0.015821 0.028008 0.000000 0.019922 0.000000 0.000000 0.080052 0.000000 0.000000 0.074613 0.000000 0.018274 0.000000 0.057461 0.000000 0.085822 0.000000 0.000000 0.000000 0.088293 0.014929 0.000000 0.000000 0.000000 0.058025 0.039944 0.019776 0.016228 0.000000 0.000000 0.000000 0.033302 0.000000 0.011535 0.000000 0.000000 0.000000 0.000000 0.000000 0.016556 0.028077 0.000000 0.000000 0.017234 0.060643 0.000000 0.000000 0.000000 0.040572 0.017502 0.000000 0.000000 0.000000 0.035335 0.104137 0.0 0.014861 0.000000 0.038538 0.036044 0.000000 0.113753 0.000000 0.000000 0.000000 0.022494 0.0 0.000000 0.000000 0.113030 0.013552 0.033625 0.000000 0.028832 0.000000 0.066976 0.000000 0.012736 0.000000 0.000000 0.137784 0.077975 0.019350 0.0 0.000000 0.000000 0.042363 0.020372 0.000000 0.039793 0.029485 0.000000 0.000000 0.000000 0.000000 0.000000 0.022622 0.0 0.013230 0.000000 0.012270 0.023753 0.025512 0.000000 0.020772 0.089827 0.000000 0.000000 0.000000 0.000000 0.039816 0.048743 0.00000 0.000000 0.000000 0.017073 0.000000 0.061992 0.000000 0.045556 0.000000 0.105382 0.000000 0.049746 0.000000 0.035781 0.150869 0.020409 0.051062 0.035216 0.000000 0.000000 0.016666 0.000000 0.035741 0.016575 0.000000 0.000000 0.066827 0.000000 0.067524 0.000000 0.017000 0.056648 0.000000 0.000000 0.000000 0.000000 0.041102 0.056384 0.018378 0.015557 0.000000 0.062138 0.027970 0.022254 0.000000 0.017688 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034344 0.094089 0.109976 0.000000 0.022305 0.000000 0.000000 0.000000 0.014673 0.0 0.028027 0.053199 0.000000 0.025926 0.044648 0.0 0.023917 0.000000 0.000000 0.016975 0.000000 0.000000 0.000000 0.000000 0.013549 0.000000 0.000000 0.000000 0.034540 0.042740 0.041879 0.072652 0.000000 0.114179 0.063264 0.000000 0.000000 0.0 0.0 0.000000 0.046075 0.000000 0.000000 0.016001 0.000000 0.000000 0.014117 0.045416 0.000000 0.000000 0.000000 0.000000 0.000000 0.011251 0.022644 0.000000 0.013875 0.0 0.135357 0.041689 0.071211 0.073195 0.000000 0.000000 0.059272 0.083058 0.000000 0.033492 0.000000 0.000000 0.043477 0.045171 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.069814 0.000000 0.021652 0.000000 0.000000 0.000000 0.000000 0.096499 0.000000 0.000000 0.016228 0.000000 0.000000 0.000000 0.000000 0.079001 0.016193 0.013060 0.000000 0.0 0.000000 0.000000 0.163788 0.082448 0.019562 0.024073 0.015099 0.000000 0.000000 0.069176 0.000000 0.000000 0.000000 0.032637 0.0 0.0 0.000000 0.000000 0.000000 0.012619 0.022922 0.017909 0.042018 0.048077 0.023747 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.044742 0.000000 0.000000 0.020390 0.025920 0.055633 0.015656 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.242304 0.083713 0.086158 0.068881 0.012851 0.031691 0.000000 0.000000 0.000000 0.017734 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.037488 0.034251 0.000000 0.000000 0.009761 0.028156 0.019222 0.000000 0.061745 0.016640 0.052018 0.000000 0.070764 0.019642 0.000000 0.038817 0.000000 0.082120 0.065422 0.016194 0.000000 0.000000 0.0 0.000000 0.015059 0.000000 0.071216 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.018611 0.000000 0.000000 0.0 0.0 0.078286 0.018659 0.000000 0.000000 0.025712 0.050684 0.029100 0.093259 0.0 0.063911 0.078481 0.000000 0.058261 0.000000 0.107983 0.049143 0.072428 0.022091 0.0 0.000000 0.000000 0.018893 0.023448 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019733 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.058619 0.166576 0.018871 0.000000 0.025155 0.090305 0.020377 0.000000 0.000000 0.028596 0.000000 0.000000 0.000000 0.000000 0.013391 0.0 0.060116 0.128863 0.000000 0.021011 0.071741 0.083998 0.000000 0.044098 0.000000 0.079342 0.032379 0.0 0.128661 0.000000 0.000000 0.024241 0.029770 0.014394 0.000000 0.000000 0.053427 0.000000 0.044117 0.015696 0.019514 0.000000 0.0 0.016173 0.059146 0.044205 0.046864 0.000000 0.000000 0.117161 0.020210 0.000000 0.000000 0.020251 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.045184 0.000000 0.000000 0.034788 0.018833 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.016104 0.088518 0.015305 0.000000 0.000000 0.0 0.000000 0.022775 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018609 0.027497 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.074467 0.095566 0.020710 0.000000 0.000000 0.000000 0.000000 0.000000 0.017797 0.130904 0.0 0.057366 0.000000 0.000000 0.000000 0.035850 0.0 0.075052 0.014170 0.022031 0.000000 0.030734 0.000000 0.01449 0.000000 0.000000 0.017409 0.00000 0.000000 0.000000 0.000000 0.000000 0.015992 0.00000 0.0 0.000000 0.018080 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.068080 0.000000 0.054583 0.000000 0.000000 0.000000 0.026576 0.000000 0.000000 0.000000 0.018324 0.020894 0.000000 0.016827 0.000000 0.000000 0.000000 0.063933 0.000000 0.000000 0.0 0.071464 0.000000 0.0 0.0 0.000000 0.000000 0.021249 0.000000 0.028685 0.0 0.000000 0.000000 0.031541 0.000000 0.000000 0.000000 0.0 0.069292 0.012851 0.000000 0.000000 0.000000 0.000000 0.018735 0.000000 0.000000 0.000000 0.021500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011914 0.000000 0.000000 0.0 0.172490 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.017895 0.012504 0.000000 0.000000 0.032240 0.000000 0.000000 0.000000 0.000000 0.027450 0.009672 0.000000 0.046146 0.000000 0.000000 0.000000 0.000000 0.033341 0.017247 0.000000 0.035768 0.053951 0.000000 0.000000 0.078529 0.000000 0.000000 0.017563 0.000000 0.000000 0.000000 0.308839 0.026100 0.024088 0.025796 0.000000 0.000000 0.014599 0.519911 0.058072 0.000000 0.088884 0.394223 0.028794 0.016646 0.000000 0.000000 0.000000 0.000000 0.000000 0.530121 0.504247 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.016579 0.000000 0.044213 0.014300 0.000000 0.017242 0.0 0.143069 0.000000 0.000000 0.000000 0.000000 0.089027 0.013524 0.000000 0.051669 0.094734 0.027812 0.000000 0.000000 0.000000 0.000000 0.000000 0.046556 0.000000 0.00000 0.000000 0.073155 0.000000 0.0 0.000000 0.000000 0.045644 0.027435 0.020956 0.000000 0.015467 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041329 0.019391 0.000000 0.0 0.0 0.018273 0.027803 0.000000 0.023867 0.000000 0.000000 0.037265 0.000000 0.000000 0.000000 0.000000 0.013685 0.000000 0.069424 0.000000 0.000000 0.015978 0.075364 0.000000 0.036877 0.000000 0.082389 0.031136 0.000000 0.000000 0.046232 0.000000 0.054356 0.013934 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.019814 0.077978 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.000000 0.078179 0.000000 0.0 0.225238 0.079777 0.018212 0.000000 0.055731 0.029293 0.063678 0.098459 0.0 0.052492 0.000000 0.000000 0.116850 0.062304 0.023941 0.000000 0.014583 0.000000 0.0 0.000000 0.000000 0.000000 0.022249 0.000000 0.000000 0.041227 0.000000 0.105068 0.000000 0.078875 0.046409 0.027710 0.015089 0.0 0.015046 0.028249 0.000000 0.114761 0.000000 0.030344 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.171423 0.00000 0.000000 0.107072 0.000000 0.000000 0.018029 0.000000 0.000000 0.000000 0.000000 0.078440 0.051132 0.000000 0.028422 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023749 0.000000 0.018536 0.049185 0.012936 0.015360 0.000000 0.0 0.000000 0.036582 0.000000 0.043179 0.000000 0.000000 0.051437 0.000000 0.000000 0.044696 0.013981 0.059723 0.000000 0.015052 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.167343 0.000000 0.000000 0.00000 0.013713 0.0 0.000000 0.000000 0.040052 0.000000 0.048972 0.033096 0.000000 0.092424 0.012101 0.012239 0.042203 0.056150 0.055552 0.000000 0.000000 0.000000 0.023904 0.000000 0.000000 0.013954 0.014890 0.016924 0.000000 0.000000 0.0 0.102565 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.067186 0.062794 0.000000 0.051862 0.065509 0.000000 0.064474 0.015704 0.000000 0.035241 0.022101 0.000000 0.030680 0.015038 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.019965 0.000000 0.033691 0.000000 0.000000 0.041946 0.000000 0.000000 0.027087 0.000000 0.036153 0.029538 0.022777 0.047006 0.000000 0.060761 0.000000 0.017100 0.000000 0.0 0.000000 0.134149 0.079186 0.013935 0.047820 0.030236 0.018100 0.000000 0.000000 0.000000 0.000000 0.032967 0.0 0.000000 0.038803 0.000000 0.0 0.000000 0.000000 0.187692 0.000000 0.121882 0.046254 0.024817 0.015965 0.039698 0.000000 0.0 0.0 0.000000 0.000000 0.103119 0.069360 0.000000 0.0 0.000000 0.027366 0.000000 0.015058 0.000000 0.0 0.0 0.017653 0.000000 0.000000 0.000000 0.025718 0.061976 0.00000 0.025971 0.0 0.000000 0.000000 0.059582 0.023422 0.084575 0.000000 0.014511 0.000000 0.018605 0.000000 0.020579 0.000000 0.023266 0.015177 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.023153 0.000000 0.000000 0.023964 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.100046 0.079127 0.030139 0.00000 0.000000 0.112059 0.034244 0.000000 0.00000 0.023090 0.037879 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.044496 0.000000 0.053298 0.000000 0.021107 0.000000 0.0 0.000000 0.023361 0.028643 0.072403 0.000000 0.000000 0.032761 0.000000 0.000000 0.000000 0.028689 0.000000 0.000000 0.285799 0.054684 0.141046 0.044784 0.016128 0.0 0.0 0.106671 0.000000 0.000000 0.035224 0.027235 0.000000 0.026573 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.114358 0.000000 0.000000 0.016905 0.025075 0.0 0.0 0.0 0.0 0.000000 0.000000 0.067899 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.022550 0.000000 0.044330 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.038491 0.107680 0.096698 0.217049 0.071163 0.037759 0.000000 0.021859 0.000000 0.000000 0.019148 0.055021 0.421842 0.017270 0.072827 0.000000 0.000000 0.000000 0.277118 0.273154 0.000000 0.000000 0.000000 0.025536 0.040909 0.000000 0.000000 0.000000 0.035425 0.000000 0.051993 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.036019 0.020105 0.000000 0.000000 0.073129 0.000000 0.054583 0.022248 0.000000 0.000000 0.000000 0.000000 0.000000 0.013456 0.014777 0.01138 0.0 0.193434 0.055470 0.069151 0.000000 0.000000 0.000000 0.000000 0.020325 0.000000 0.057057 0.000000 0.07915 0.0 0.049226 0.073449 0.118934 0.0 0.000000 0.021303 0.052798 0.034494 0.0 0.0 0.022934 0.000000 0.040920 0.000000 0.047519 0.000000 0.0 0.057420 0.138246 0.000000 0.000000 0.000000 0.115210 0.017310 0.016490 0.017660 0.000000 0.032404 0.000000 0.000000 0.051520 0.017052 0.000000 0.000000 0.059161 0.059310 0.000000 0.000000 0.017868 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.063624 0.104036 0.000000 0.171291 0.000000 0.050642 0.000000 0.024285 0.000000 0.000000 0.000000 0.000000 0.052402 0.000000 0.034056 0.014207 0.067587 0.000000 0.000000 0.044798 0.000000 0.0 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.080843 0.000000 0.048728 0.000000 0.000000 0.000000 0.024993 0.022628 0.043625 0.000000 0.000000 0.015334 0.040311 0.000000 0.000000 0.000000 0.000000 0.013976 0.000000 0.023694 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.039084 0.000000 0.097119 0.093541 0.000000 0.000000 0.000000 0.027313 0.000000 0.000000 0.000000 0.000000 0.00000 0.072059 0.017112 0.057598 0.000000 0.033742 0.000000 0.018215 0.000000 0.070580 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.024258 0.0 0.000000 0.000000 0.022269 0.000000 0.064848 0.0 0.029878 0.000000 0.037261 0.000000 0.000000 0.000000 0.0 0.0 0.119727 0.0 0.000000 0.0 0.029260 0.035854 0.072274 0.000000 0.000000 0.152967 0.098564 0.071686 0.029791 0.000000 0.106067 0.057043 0.000000 0.027376 0.088014 0.048845 0.000000 0.042648 0.116440 0.080145 0.057277 0.044889 0.000000 0.000000 0.061013 0.046203 0.000000 0.047867 0.029944 0.034195 0.062819 0.127844 0.000000 0.016067 0.000000 0.000000 0.032361 0.000000 0.092173 0.012697 0.000000 0.000000 0.024047 0.000000 0.011932 0.000000 0.012751 0.016038 0.016030 0.024754 0.000000 0.000000 0.000000 0.015809 0.000000 0.105502 0.040043 0.025441 0.070271 0.014132 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.072663 0.000000 0.000000 0.000000 0.000000 0.070058 0.028558 0.000000 0.000000 0.000000 0.065898 0.089351 0.000000 0.068346 0.000000 0.000000 0.000000 0.000000 0.024276 0.000000 0.000000 0.000000 0.000000 0.000000 0.044008 0.0 0.000000 0.000000 0.000000 0.000000 0.047782 0.000000 0.000000 0.022122 0.061112 0.000000 0.000000 0.018488 0.033308 0.000000 0.000000 0.000000 0.000000 0.044747 0.000000 0.000000 0.000000 0.000000 0.000000 0.209541 0.014364 0.000000 0.203800 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023397 0.000000 0.047006 0.000000 0.000000 0.0000 0.030390 0.000000 0.019802 0.064667 0.037834 0.019071 0.034644 0.000000 0.039035 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.038389 0.061078 0.000000 0.137821 0.000000 0.000000 0.059882 0.000000 0.023766 0.108340 0.000000 0.000000 0.049813 0.000000 0.0 0.000000 0.033009 0.032230 0.000000 0.000000 0.022672 0.0 0.0 0.000000 0.000000 0.042756 0.023699 0.016385 0.000000 0.018546 0.000000 0.016448 0.0 0.0 0.0 0.000000 0.084972 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.073989 0.000000 0.000000 0.000000 0.028255 0.000000 0.050112 0.000000 0.000000 0.000000 0.000000 0.021539 0.000000 0.000000 0.073154 0.000000 0.000000 0.000000 0.000000 0.000000 0.053770 0.00000 0.032455 0.000000 0.0 0.0 0.0 0.0 0.043673 0.000000 0.017017 0.029854 0.000000 0.000000 0.000000 0.000000 0.000000 0.019402 0.018931 0.000000 0.039254 0.000000 0.056158 0.051594 0.000000 0.000000 0.038529 0.000000 0.000000 0.000000 0.000000 0.000000 0.016734 0.025359 0.000000 0.016777 0.000000 0.000000 0.000000 0.031739 0.000000 0.000000 0.000000 0.000000 0.000000 0.085218 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.018484 0.100128 0.042064 0.019324 0.057838 0.000000 0.000000 0.000000 0.040644 0.015213 0.013779 0.084813 0.018350 0.016392 0.053886 0.016682 0.000000 0.000000 0.028592 0.000000 0.000000 0.000000 0.096040 0.000000 0.000000 0.017074 0.053678 0.051705 0.000000 0.018499 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.042814 0.062441 0.000000 0.081117 0.0 0.034079 0.063543 0.0 0.015655 0.038892 0.000000 0.000000 0.016416 0.0 0.000000 0.0 0.016240 0.017318 0.000000 0.0 0.130026 0.123110 0.025083 0.0 0.041492 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017358 0.234165 0.0 0.041481 0.000000 0.057592 0.232482 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.00000 0.012963 0.064240 0.021640 0.057148 0.000000 0.00000 0.00000 0.000000 0.000000 0.030926 0.061130 0.000000 0.035774 0.000000 0.016801 0.033834 0.000000 0.015127 0.000000 0.035348 0.000000 0.013062 0.021238 0.000000 0.000000 0.000000 0.039336 0.000000 0.000000 0.000000 0.033489 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.045140 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027182 0.000000 0.000000 0.066235 0.022651 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034053 0.000000 0.000000 0.103837 0.021324 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.084566 0.000000 0.129767 0.103786 0.074180 0.037926 0.000000 0.057171 0.028181 0.032711 0.000000 0.064629 0.030557 0.000000 0.021518 0.016675 0.000000 0.057996 0.050474 0.000000 0.000000 0.071995 0.000000 0.045735 0.000000 0.000000 0.015677 0.000000 0.000000 0.041785 0.040156 0.069866 0.071373 0.000000 0.000000 0.000000 0.000000 0.042890 0.000000 0.000000 0.228206 0.000000 0.020185 0.000000 0.038342 0.019033 0.021982 0.066286 0.066500 0.248741 0.000000 0.109896 0.0 0.023496 0.000000 0.119789 0.000000 0.100017 0.000000 0.000000 0.045487 0.018418 0.000000 0.00000 0.058361 0.025169 0.000000 0.011153 0.000000 0.000000 0.000000 0.020770 0.131067 0.000000 0.000000 0.000000 0.000000 0.048612 0.000000 0.000000 0.000000 0.000000 0.010388 0.000000 0.000000 0.000000 0.025069 0.000000 0.015922 0.000000 0.000000 0.028258 0.000000 0.000000 0.028831 0.034827 0.000000 0.000000 0.015050 0.000000 0.000000 0.000000 0.043089 0.016646 0.042174 0.089598 0.086882 0.000000 0.000000 0.0 0.000000 0.032573 0.000000 0.000000 0.000000 0.000000 0.000000 0.015484 0.00000 0.000000 0.000000 0.000000 0.000000 0.015105 0.015340 0.000000 0.000000 0.000000 0.060271 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.030925 0.000000 0.000000 0.000000 0.018789 0.031962 0.000000 0.018556 0.000000 0.019169 0.0 0.000000 0.000000 0.025938 0.000000 0.018522 0.000000 0.061479 0.085181 0.000000 0.000000 0.000000 0.000000 0.000000 0.027394 0.000000 0.054730 0.0 0.023130 0.060836 0.073675 0.000000 0.000000 0.000000 0.019447 0.024787 0.000000 0.000000 0.017723 0.000000 0.000000 0.016808 0.000000 0.019486 0.054098 0.064404 0.000000 0.042423 0.039662 0.000000 0.000000 0.000000 0.043125 0.000000 0.000000 0.025324 0.000000 0.000000 0.048378 0.000000 0.000000 0.0 0.013702 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.015378 0.000000 0.030953 0.023774 0.000000 0.000000 0.024563 0.000000 0.025503 0.000000 0.000000 0.058229 0.085454 0.000000 0.030907 0.000000 0.032383 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012141 0.014995 0.000000 0.012295 0.000000 0.000000 0.000000 0.000000 0.021928 0.000000 0.016573 0.000000 0.000000 0.000000 0.043822 0.000000 0.000000 0.017826 0.017160 0.066573 0.023146 0.0 0.000000 0.000000 0.024983 0.443244 0.073188 0.041750 0.000000 0.000000 0.018907 0.021843 0.000000 0.000000 0.000000 0.00000 0.018966 0.000000 0.000000 0.088785 0.000000 0.000000 0.000000 0.030611 0.105276 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.096649 0.000000 0.000000 0.000000 0.000000 0.017701 0.000000 0.036821 0.000000 0.070028 0.0000 0.0 0.000000 0.063128 0.000000 0.000000 0.018812 0.000000 0.030176 0.000000 0.013006 0.000000 0.000000 0.0 0.000000 0.117573 0.000000 0.016880 0.030202 0.000000 0.035630 0.000000 0.000000 0.000000 0.000000 0.000000 0.028746 0.101376 0.000000 0.000000 0.0 0.017460 0.000000 0.060971 0.135337 0.000000 0.000000 0.039005 0.000000 0.000000 0.134813 0.015237 0.181376 0.000000 0.187010 0.000000 0.000000 0.000000 0.045325 0.018047 0.084062 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.027853 0.000000 0.093109 0.000000 0.000000 0.000000 0.013657 0.378195 0.096758 0.071511 0.014483 0.000000 0.000000 0.048275 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.025926 0.000000 0.000000 0.038463 0.052129 0.000000 0.128662 0.021405 0.018418 0.014121 0.000000 0.000000 0.108340 0.000000 0.014238 0.000000 0.014379 0.000000 0.011685 0.000000 0.000000 0.024680 0.000000 0.000000 0.022379 0.032221 0.000000 0.000000 0.000000 0.000000 0.000000 0.047357 0.018155 0.000000 0.000000 0.000000 0.042303 0.000000 0.035125 0.064744 0.025576 0.057100 0.080629 0.114051 0.040649 0.105511 0.015798 0.0 0.000000 0.000000 0.020946 0.000000 0.089278 0.014033 0.072029 0.000000 0.000000 0.000000 0.021556 0.028947 0.000000 0.000000 0.000000 0.000000 0.000000 0.110925 0.000000 0.000000 0.000000 0.033791 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.200299 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.052582 0.0 0.000000 0.064725 0.000000 0.000000 0.000000 0.000000 0.000000 0.020629 0.000000 0.000000 0.000000 0.000000 0.000000 0.023477 0.041558 0.030780 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019962 0.000000 0.014340 0.000000 0.000000 0.0 0.064159 0.000000 0.000000 0.032924 0.149862 0.020325 0.000000 0.014745 0.030084 0.000000 0.030567 0.000000 0.000000 0.019322 0.000000 0.022827 0.016221 0.021432 0.042641 0.0 0.000000 0.000000 0.000000 0.016833 0.025461 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.027495 0.000000 0.030183 0.016022 0.000000 0.037750 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033301 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.023011 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020995 0.000000 0.0 0.037648 0.000000 0.000000 0.000000 0.000000 0.024156 0.000000 0.091607 0.000000 0.011269 0.099675 0.000000 0.000000 0.000000 0.000000 0.000000 0.023700 0.000000 0.028895 0.022369 0.000000 0.084762 0.0 0.000000 0.000000 0.000000 0.025646 0.000000 0.029464 0.000000 0.000000 0.000000 0.000000 0.032749 0.018560 0.018159 0.000000 0.000000 0.000000 0.000000 0.033144 0.019191 0.000000 0.000000 0.054691 0.000000 0.039205 0.079617 0.088790 0.000000 0.000000 0.061306 0.000000 0.086774 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.016916 0.000000 0.000000 0.040686 0.039085 0.041681 0.000000 0.011194 0.000000 0.022843 0.000000 0.030659 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014925 0.000000 0.000000 0.019395 0.042076 0.000000 0.000000 0.000000 0.012194 0.000000 0.080991 0.037471 0.0000 0.000000 0.000000 0.153871 0.047091 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015095 0.000000 0.000000 0.000000 0.023774 0.000000 0.017688 0.087987 0.0 0.000000 0.019055 0.0 0.000000 0.0 0.049507 0.015413 0.000000 0.044029 0.016563 0.017249 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028364 0.032077 0.013468 0.016030 0.000000 0.084971 0.000000 0.017116 0.000000 0.032983 0.053861 0.000000 0.058914 0.014590 0.000000 0.039681 0.000000 0.000000 0.000000 0.000000 0.000000 0.023257 0.056845 0.028561 0.028013 0.000000 0.000000 0.000000 0.026479 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.036069 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.018436 0.000000 0.030439 0.000000 0.032001 0.044837 0.000000 0.000000 0.000000 0.017327 0.000000 0.000000 0.056376 0.000000 0.000000 0.016836 0.000000 0.000000 0.025775 0.000000 0.045425 0.000000 0.184865 0.071175 0.000000 0.142413 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020569 0.049988 0.000000 0.031963 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.054222 0.016277 0.000000 0.000000 0.037734 0.000000 0.021652 0.000000 0.000000 0.000000 0.000000 0.017380 0.024393 0.053698 0.000000 0.000000 0.000000 0.021411 0.000000 0.043326 0.000000 0.015552 0.025264 0.000000 0.025695 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.061106 0.043574 0.000000 0.000000 0.000000 0.04658 0.000000 0.032149 0.000000 0.000000 0.000000 0.075742 0.111413 0.107801 0.01837 0.000000 0.000000 0.000000 0.000000 0.00000 0.028383 0.021755 0.000000 0.000000 0.033050 0.000000 0.000000 0.000000 0.015956 0.050088 0.000000 0.233130 0.017658 0.000000 0.000000 0.013626 0.184863 0.019514 0.034774 0.000000 0.014743 0.058222 0.000000 0.000000 0.000000 0.073348 0.017744 0.00000 0.020273 0.0 0.0 0.00000 0.021016 0.097349 0.000000 0.000000 0.000000 0.026347 0.000000 0.000000 0.142456 0.123373 0.000000 0.000000 0.023877 0.0 0.000000 0.050008 0.000000 0.0 0.029527 0.000000 0.095859 0.0 0.089259 0.000000 0.044737 0.000000 0.000000 0.029935 0.042227 0.019359 0.000000 0.00000 0.000000 0.107081 0.058154 0.0 0.0 0.000000 0.021643 0.039830 0.046232 0.015861 0.000000 0.000000 0.057510 0.000000 0.111002 0.000000 0.000000 0.000000 0.000000 0.0 0.024874 0.000000 0.024072 0.022147 0.0 0.000000 0.000000 0.021179 0.00000 0.149038 0.026078 0.000000 0.000000 0.000000 0.015026 0.000000 0.000000 0.027873 0.014544 0.000000 0.000000 0.00000 0.000000 0.032522 0.000000 0.000000 0.000000 0.031100 0.112608 0.142147 0.021184 0.000000 0.086708 0.000000 0.082168 0.000000 0.053934 0.000000 0.046447 0.069006 0.070872 0.067036 0.022503 0.067694 0.000000 0.051662 0.016432 0.000000 0.000000 0.000000 0.000000 0.389228 0.036965 0.000000 0.039111 0.000000 0.000000 0.000000 0.000000 0.062922 0.000000 0.000000 0.000000 0.110842 0.000000 0.123312 0.306606 0.0 0.000000 0.013869 0.000000 0.000000 0.064334 0.059776 0.018884 0.015637 0.000000 0.000000 0.039090 0.252855 0.000000 0.067217 0.0 0.000000 0.035401 0.026023 0.0 0.069095 0.042160 0.110026 0.000000 0.000000 0.069079 0.000000 0.000000 0.000000 0.149016 0.013176 0.000000 0.059336 0.030426 0.017255 0.0 0.000000 0.013910 0.000000 0.083973 0.068823 0.000000 0.000000 0.000000 0.019952 0.108340 0.416953 0.000000 0.000000 0.000000 0.081659 0.000000 0.000000 0.000000 0.000000 0.125242 0.048864 0.000000 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.117362 0.072180 0.000000 0.000000 0.000000 0.0 0.129786 0.0 0.045749 0.023687 0.017452 0.000000 0.000000 0.000000 0.080641 0.025515 0.050045 0.000000 0.000000 0.053110 0.000000 0.000000 0.000000 0.000000 0.024863 0.000000 0.067081 0.031167 0.000000 0.000000 0.000000 0.031924 0.000000 0.000000 0.026496 0.019256 0.000000 0.000000 0.028154 0.041906 0.039959 0.000000 0.000000 0.029918 0.000000 0.077862 0.000000 0.000000 0.000000 0.029629 0.000000 0.000000 0.014172 0.015001 0.015343 0.052844 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047781 0.000000 0.000000 0.000000 0.000000 0.026851 0.000000 0.000000 0.000000 0.000000 0.12207 0.074312 0.000000 0.000000 0.000000 0.000000 0.057512 0.000000 0.000000 0.014812 0.061220 0.000000 0.000000 0.016145 0.000000 0.013781 0.000000 0.000000 0.000000 0.065313 0.000000 0.000000 0.000000 0.017701 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017786 0.000000 0.000000 0.00000 0.0 0.000000 0.021405 0.000000 0.000000 0.000000 0.047918 0.000000 0.019660 0.018291 0.034588 0.000000 0.000000 0.063713 0.000000 0.000000 0.026628 0.018099 0.029405 0.031552 0.000000 0.000000 0.000000 0.014988 0.018230 0.000000 0.097814 0.000000 0.024229 0.039354 0.019351 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014491 0.000000 0.043506 0.065891 0.023681 0.015132 0.017591 0.000000 0.032083 0.0 0.029958 0.023915 0.000000 0.027690 0.022865 0.000000 0.018357 0.000000 0.000000 0.000000 0.026107 0.000000 0.045633 0.049461 0.015872 0.000000 0.000000 0.021857 0.000000 0.014530 0.000000 0.000000 0.000000 0.010657 0.000000 0.000000 0.000000 0.065694 0.037030 0.0 0.027627 0.000000 0.000000 0.000000 0.022569 0.034270 0.000000 0.000000 0.047166 0.000000 0.000000 0.000000 0.027256 0.045695 0.000000 0.000000 0.000000 0.000000 0.040126 0.000000 0.029880 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031885 0.000000 0.0 0.020683 0.021648 0.066549 0.000000 0.020322 0.0 0.031376 0.000000 0.012747 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019264 0.000000 0.022532 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.248000 0.000000 0.018800 0.060181 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021303 0.103748 0.000000 0.020069 0.000000 0.000000 0.033443 0.022481 0.070901 0.043678 0.067525 0.0000 0.000000 0.000000 0.000000 0.023065 0.000000 0.000000 0.000000 0.000000 0.033809 0.000000 0.053114 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040726 0.000000 0.170278 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.150010 0.036651 0.000000 0.000000 0.035119 0.000000 0.014915 0.017758 0.021120 0.000000 0.000000 0.0 0.000000 0.030929 0.000000 0.000000 0.000000 0.021768 0.000000 0.021506 0.000000 0.054849 0.000000 0.000000 0.000000 0.072829 0.000000 0.041720 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023371 0.000000 0.139814 0.043813 0.000000 0.000000 0.021204 0.018272 0.000000 0.046128 0.000000 0.000000 0.00000 0.000000 0.104592 0.000000 0.0 0.021243 0.046976 0.000000 0.000000 0.015958 0.000000 0.047354 0.033525 0.037540 0.000000 0.000000 0.052855 0.028630 0.066458 0.000000 0.000000 0.043228 0.034741 0.083024 0.025847 0.061556 0.000000 0.000000 0.000000 0.021761 0.054359 0.024888 0.000000 0.066557 0.025117 0.000000 0.000000 0.066180 0.054512 0.000000 0.000000 0.000000 0.043189 0.066616 0.021282 0.076417 0.034917 0.098244 0.000000 0.000000 0.000000 0.061235 0.000000 0.066609 0.049705 0.000000 0.00000 0.00000 0.000000 0.035590 0.024270 0.000000 0.000000 0.000000 0.000000 0.023514 0.000000 0.000000 0.043803 0.131397 0.000000 0.020394 0.032703 0.076140 0.000000 0.037463 0.028004 0.000000 0.000000 0.000000 0.033534 0.013345 0.000000 0.000000 0.000000 0.000000 0.018028 0.135720 0.000000 0.000000 0.000000 0.000000 0.035631 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022543 0.025252 0.080844 0.000000 0.115987 0.024170 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020691 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034123 0.000000 0.000000 0.028063 0.021804 0.042564 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.024218 0.000000 0.000000 0.000000 0.029011 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.028896 0.0 0.0 0.0 0.000000 0.0 0.0 0.0000 0.000000 0.024312 0.000000 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.081181 0.080429 0.000000 0.054501 0.01402 0.000000 0.000000 0.00000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.081693 0.139146 0.000000 0.000000 0.000000 0.032484 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.036571 0.000000 0.033987 0.086035 0.000000 0.021194 0.000000 0.000000 0.000000 0.021771 0.016630 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.038647 0.000000 0.000000 0.000000 0.018276 0.000000 0.000000 0.017136 0.023759 0.014338 0.024661 0.020630 0.000000 0.000000 0.060825 0.069887 0.057120 0.035003 0.026171 0.000000 0.00000 0.000000 0.000000 0.000000 0.075232 0.000000 0.000000 0.031266 0.014667 0.000000 0.000000 0.000000 0.000000 0.031111 0.020808 0.000000 0.000000 0.000000 0.000000 0.027729 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.107794 0.000000 0.000000 0.016578 0.012046 0.034492 0.055530 0.028600 0.000000 0.000000 0.031987 0.047463 0.000000 0.013091 0.041552 0.042569 0.000000 0.020868 0.021285 0.058764 0.027875 0.000000 0.000000 0.029605 0.000000 0.000000 0.000000 0.000000 0.019738 0.044279 0.015267 0.000000 0.0 0.000000 0.000000 0.016837 0.051436 0.032245 0.000000 0.089327 0.000000 0.073943 0.0 0.000000 0.000000 0.0 0.0 0.017777 0.000000 0.000000 0.018307 0.000000 0.0 0.000000 0.000000 0.031382 0.012644 0.012558 0.012369 0.042623 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014908 0.025135 0.011538 0.000000 0.020468 0.048579 0.000000 0.015057 0.023668 0.015275 0.000000 0.000000 0.000000 0.000000 0.000000 0.025477 0.038323 0.039197 0.000000 0.000000 0.073537 0.000000 0.000000 0.018876 0.000000 0.043068 0.015496 0.000000 0.025752 0.018192 0.114392 0.000000 0.024757 0.008657 0.000000 0.076585 0.000000 0.000000 0.000000 0.030134 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.134629 0.000000 0.070674 0.029763 0.326860 0.020204 0.139228 0.000000 0.041879 0.079574 0.072128 0.076134 0.043964 0.000000 0.000000 0.000000 0.000000 0.0 0.131514 0.000000 0.000000 0.000000 0.000000 0.312571 0.000000 0.000000 0.019477 0.000000 0.000000 0.061737 0.069866 0.058258 0.000000 0.000000 0.067796 0.000000 0.000000 0.000000 0.000000 0.017736 0.000000 0.082459 0.0 0.000000 0.021425 0.018011 0.000000 0.312661 0.000000 0.000000 0.107495 0.000000 0.337601 0.000000 0.043608 0.089569 0.000000 0.021726 0.0 0.000000 0.000000 0.073679 0.000000 0.023987 0.000000 0.000000 0.000000 0.039556 0.069468 0.000000 0.000000 0.121382 0.015940 0.0 0.000000 0.000000 0.000000 0.076391 0.000000 0.000000 0.0 0.000000 0.000000 0.125311 0.180034 0.0 0.000000 0.000000 0.013178 0.000000 0.000000 0.296135 0.000000 0.037215 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041797 0.000000 0.156897 0.000000 0.000000 0.000000 0.015318 0.000000 0.058488 0.000000 0.000000 0.000000 0.105380 0.031788 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017587 0.000000 0.434883 0.065027 0.066267 0.049199 0.000000 0.000000 0.054697 0.03414 0.000000 0.000000 0.000000 0.029933 0.000000 0.362617 0.016801 0.107472 0.054171 0.000000 0.083254 0.000000 0.000000 0.000000 0.000000 0.000000 0.017528 0.026426 0.000000 0.034549 0.000000 0.271117 0.000000 0.092380 0.065980 0.056916 0.000000 0.058134 0.000000 0.000000 0.021661 0.066458 0.027156 0.000000 0.020260 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.070957 0.000000 0.077111 0.000000 0.000000 0.000000 0.000000 0.000000 0.028665 0.0 0.000000 0.085163 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018503 0.029456 0.051167 0.067026 0.000000 0.000000 0.000000 0.114873 0.000000 0.389328 0.000000 0.020631 0.000000 0.077222 0.088454 0.050288 0.073856 0.000000 0.0 0.000000 0.000000 0.140249 0.000000 0.000000 0.0 0.126211 0.000000 0.119572 0.025232 0.034545 0.000000 0.000000 0.062756 0.000000 0.019311 0.00000 0.019902 0.000000 0.000000 0.0 0.0 0.017335 0.128475 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022482 0.126809 0.000000 0.047795 0.012476 0.103871 0.000000 0.000000 0.174904 0.000000 0.000000 0.055025 0.000000 0.000000 0.000000 0.000000 0.000000 0.064990 0.035126 0.060312 0.0 0.000000 0.053286 0.018081 0.000000 0.000000 0.024420 0.032078 0.000000 0.025989 0.0 0.080089 0.000000 0.143391 0.000000 0.000000 0.000000 0.000000 0.017355 0.000000 0.000000 0.017857 0.000000 0.018096 0.017875 0.000000 0.017962 0.049947 0.014539 0.040388 0.067060 0.037215 0.000000 0.015631 0.032606 0.000000 0.030823 0.0 0.0 0.000000 0.045409 0.000000 0.000000 0.0 0.000000 0.000000 0.016304 0.055217 0.017988 0.016894 0.000000 0.031370 0.000000 0.000000 0.148743 0.000000 0.035332 0.149004 0.000000 0.179034 0.063479 0.000000 0.000000 0.013860 0.014372 0.000000 0.000000 0.121674 0.159240 0.028134 0.000000 0.074807 0.059123 0.000000 0.000000 0.000000 0.054593 0.00000 0.147153 0.014673 0.000000 0.206472 0.000000 0.0 0.000000 0.048476 0.000000 0.057612 0.000000 0.000000 0.000000 0.028015 0.125676 0.000000 0.000000 0.000000 0.000000 0.024132 0.077750 0.000000 0.104364 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.127090 0.0 0.000000 0.026611 0.015612 0.036626 0.099312 0.000000 0.000000 0.000000 0.092007 0.000000 0.000000 0.053599 0.000000 0.000000 0.072556 0.0 0.029142 0.019229 0.000000 0.000000 0.000000 0.000000 0.034962 0.336880 0.000000 0.000000 0.000000 0.000000 0.000000 0.058273 0.063253 0.142513 0.000000 0.067707 0.000000 0.0 0.0 0.0 0.074842 0.000000 0.032914 0.000000 0.000000 0.053700 0.0 0.124852 0.000000 0.000000 0.000000 0.000000 0.000000 0.032071 0.000000 0.029756 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033668 0.000000 0.017880 0.017214 0.000000 0.000000 0.145903 0.0 0.076735 0.018091 0.000000 0.000000 0.000000 0.000000 0.017019 0.02917 0.000000 0.032938 0.023641 0.081331 0.111185 0.000000 0.016081 0.000000 0.000000 0.031029 0.055954 0.000000 0.000000 0.018945 0.000000 0.069852 0.000000 0.000000 0.05136 0.014583 0.085151 0.000000 0.015360 0.000000 0.065975 0.000000 0.000000 0.121605 0.000000 0.000000 0.000000 0.000000 0.000000 0.097842 0.036734 0.018836 0.000000 0.000000 0.000000 0.000000 0.018366 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.064215 0.000000 0.080347 0.092793 0.039534 0.000000 0.000000 0.000000 0.088518 0.037397 0.0 0.000000 0.053628 0.000000 0.000000 0.000000 0.000000 0.017412 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.075869 0.062003 0.000000 0.000000 0.000000 0.000000 0.069968 0.036709 0.000000 0.053521 0.082331 0.000000 0.000000 0.000000 0.015421 0.000000 0.0 0.000000 0.000000 0.121994 0.021029 0.000000 0.042512 0.0 0.038571 0.017542 0.055375 0.028673 0.020714 0.018544 0.000000 0.000000 0.000000 0.000000 0.000000 0.084361 0.078129 0.02146 0.000000 0.037536 0.000000 0.068329 0.049344 0.000000 0.000000 0.000000 0.036923 0.064742 0.017965 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.075383 0.000000 0.000000 0.000000 0.017961 0.026152 0.000000 0.074980 0.000000 0.046844 0.157705 0.061186 0.000000 0.000000 0.071199 0.000000 0.021637 0.000000 0.000000 0.015590 0.000000 0.019454 0.0 0.081214 0.000000 0.000000 0.000000 0.000000 0.000000 0.052457 0.024093 0.022903 0.000000 0.000000 0.000000 0.038188 0.098886 0.000000 0.066930 0.032805 0.000000 0.000000 0.064610 0.000000 0.000000 0.000000 0.000000 0.155645 0.026728 0.000000 0.000000 0.000000 0.030245 0.000000 0.034122 0.030316 0.000000 0.000000 0.034246 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.054946 0.143707 0.000000 0.000000 0.000000 0.000000 0.0 0.099344 0.052092 0.000000 0.000000 0.070235 0.000000 0.033416 0.072014 0.000000 0.000000 0.000000 0.000000 0.000000 0.020593 0.000000 0.000000 0.000000 0.000000 0.152560 0.018918 0.000000 0.000000 0.0 0.000000 0.041402 0.023646 0.000000 0.041998 0.000000 0.000000 0.000000 0.022565 0.000000 0.000000 0.000000 0.014864 0.000000 0.000000 0.000000 0.016763 0.000000 0.026813 0.000000 0.000000 0.000000 0.038867 0.0 0.000000 0.115795 0.000000 0.025777 0.000000 0.000000 0.087847 0.000000 0.026772 0.027027 0.071851 0.029873 0.000000 0.000000 0.015622 0.064586 0.000000 0.062503 0.000000 0.060834 0.126901 0.025783 0.028185 0.083884 0.082758 0.000000 0.063344 0.000000 0.000000 0.000000 0.000000 0.360555 0.058659 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.056233 0.315579 0.000000 0.026260 0.000000 0.029773 0.017517 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.018416 0.000000 0.039578 0.000000 0.172162 0.000000 0.000000 0.049583 0.0 0.000000 0.000000 0.026460 0.018505 0.010073 0.043224 0.0 0.019623 0.000000 0.000000 0.038161 0.000000 0.014356 0.000000 0.000000 0.013213 0.000000 0.000000 0.000000 0.063656 0.000000 0.015054 0.023500 0.000000 0.000000 0.077192 0.013213 0.000000 0.049006 0.016307 0.057607 0.016255 0.000000 0.000000 0.000000 0.015702 0.080415 0.024234 0.025470 0.000000 0.000000 0.020091 0.000000 0.000000 0.046517 0.000000 0.000000 0.0 0.033641 0.000000 0.019549 0.000000 0.000000 0.074501 0.000000 0.000000 0.031336 0.000000 0.000000 0.000000 0.039853 0.000000 0.000000 0.000000 0.000000 0.022921 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.045855 0.053743 0.000000 0.000000 0.020605 0.000000 0.000000 0.000000 0.078048 0.020933 0.000000 0.014207 0.000000 0.081798 0.000000 0.060451 0.000000 0.064347 0.092568 0.028328 0.000000 0.000000 0.000000 0.000000 0.088537 0.018082 0.063445 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.049080 0.000000 0.032422 0.017022 0.026990 0.098887 0.000000 0.013570 0.000000 0.037079 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030492 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.119873 0.015725 0.000000 0.000000 0.085657 0.000000 0.055874 0.079226 0.000000 0.112108 0.000000 0.000000 0.070681 0.000000 0.000000 0.000000 0.000000 0.036303 0.047259 0.144810 0.000000 0.000000 0.102656 0.000000 0.0 0.044022 0.021621 0.036783 0.088643 0.000000 0.000000 0.020405 0.000000 0.021274 0.000000 0.000000 0.063023 0.000000 0.00000 0.0 0.000000 0.000000 0.000000 0.018255 0.040224 0.00000 0.000000 0.033719 0.199742 0.000000 0.000000 0.000000 0.000000 0.000000 0.074449 0.000000 0.000000 0.0 0.020758 0.015659 0.0 0.067244 0.023956 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.016797 0.036491 0.061289 0.000000 0.130172 0.000000 0.000000 0.030129 0.189104 0.000000 0.000000 0.074398 0.109897 0.0 0.000000 0.000000 0.00000 0.019681 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.126556 0.151968 0.018445 0.000000 0.032462 0.000000 0.108159 0.012034 0.000000 0.000000 0.000000 0.000000 0.018391 0.013288 0.000000 0.104073 0.074393 0.109017 0.000000 0.021841 0.027817 0.000000 0.000000 0.072238 0.020650 0.000000 0.015499 0.056539 0.000000 0.017911 0.000000 0.138308 0.000000 0.017788 0.000000 0.000000 0.025105 0.000000 0.065123 0.000000 0.000000 0.115349 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.041946 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.082227 0.000000 0.000000 0.063432 0.000000 0.015778 0.000000 0.04379 0.058649 0.000000 0.024996 0.0 0.013021 0.0 0.105065 0.027772 0.059687 0.154749 0.000000 0.000000 0.000000 0.000000 0.058223 0.000000 0.000000 0.019355 0.035675 0.122151 0.000000 0.064171 0.000000 0.029309 0.000000 0.044876 0.000000 0.000000 0.000000 0.136200 0.056813 0.087115 0.000000 0.027485 0.015742 0.000000 0.000000 0.000000 0.076706 0.016265 0.000000 0.000000 0.016557 0.000000 0.000000 0.000000 0.039067 0.084389 0.000000 0.000000 0.037059 0.000000 0.013072 0.000000 0.000000 0.012010 0.075361 0.000000 0.000000 0.000000 0.027058 0.000000 0.000000 0.051501 0.000000 0.000000 0.017211 0.022499 0.000000 0.039442 0.000000 0.000000 0.000000 0.040068 0.000000 0.000000 0.053786 0.000000 0.000000 0.025231 0.061434 0.000000 0.000000 0.000000 0.029243 0.000000 0.000000 0.000000 0.067541 0.000000 0.000000 0.021607 0.033383 0.000000 0.000000 0.000000 0.054196 0.000000 0.065921 0.000000 0.000000 0.000000 0.000000 0.015018 0.021340 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.024455 0.000000 0.072655 0.000000 0.000000 0.000000 0.021102 0.020406 0.000000 0.076671 0.000000 0.039489 0.000000 0.013327 0.000000 0.000000 0.069706 0.031868 0.000000 0.000000 0.000000 0.000000 0.000000 0.018805 0.000000 0.000000 0.019885 0.000000 0.083138 0.000000 0.026623 0.000000 0.000000 0.021046 0.154749 0.036731 0.000000 0.098560 0.0 0.021905 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024429 0.000000 0.000000 0.000000 0.051521 0.000000 0.000000 0.000000 0.000000 0.000000 0.016986 0.000000 0.00000 0.018640 0.000000 0.019353 0.000000 0.000000 0.000000 0.000000 0.134867 0.000000 0.000000 0.032363 0.026757 0.000000 0.000000 0.000000 0.022429 0.121382 0.0 0.000000 0.015335 0.000000 0.000000 0.000000 0.000000 0.00000 0.037109 0.0 0.0 0.000000 0.000000 0.000000 0.025276 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.00000 0.000000 0.031852 0.079557 0.000000 0.01924 0.131128 0.154398 0.082870 0.000000 0.061394 0.0 0.034664 0.000000 0.000000 0.048363 0.000000 0.032233 0.000000 0.022862 0.000000 0.000000 0.000000 0.023294 0.0000 0.027433 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.038919 0.000000 0.026042 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.037075 0.000000 0.000000 0.076736 0.000000 0.000000 0.000000 0.012883 0.041896 0.000000 0.070683 0.000000 0.062949 0.000000 0.000000 0.043246 0.020304 0.067436 0.068692 0.079297 0.084562 0.000000 0.000000 0.000000 0.012673 0.000000 0.000000 0.056932 0.000000 0.0 0.000000 0.072456 0.000000 0.132345 0.000000 0.020976 0.000000 0.018250 0.000000 0.0 0.000000 0.000000 0.018038 0.000000 0.000000 0.000000 0.048233 0.020930 0.000000 0.039152 0.000000 0.000000 0.000000 0.000000 0.040448 0.0 0.000000 0.000000 0.000000 0.061139 0.000000 0.000000 0.000000 0.000000 0.039111 0.000000 0.000000 0.000000 0.023286 0.016322 0.016322 0.000000 0.000000 0.000000 0.000000 0.021645 0.000000 0.000000 0.039852 0.000000 0.046396 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029153 0.057131 0.000000 0.011328 0.000000 0.000000 0.014731 0.052787 0.000000 0.033056 0.000000 0.000000 0.095761 0.000000 0.000000 0.000000 0.055090 0.000000 0.00000 0.000000 0.000000 0.000000 0.066521 0.000 0.000000 0.099445 0.034229 0.000000 0.000000 0.000000 0.000000 0.035668 0.000000 0.018324 0.013688 0.000000 0.022102 0.112501 0.000000 0.000000 0.0 0.066748 0.000000 0.054683 0.026971 0.129738 0.000000 0.029810 0.000000 0.029073 0.047310 0.030174 0.000000 0.000000 0.088878 0.000000 0.000000 0.052047 0.0 0.063786 0.033584 0.000000 0.000000 0.017703 0.061627 0.097495 0.089814 0.118361 0.050641 0.085692 0.098111 0.065629 0.000000 0.000000 0.011151 0.442940 0.352198 0.315975 0.000000 0.000000 0.074915 0.000000 0.000000 0.014243 0.000000 0.000000 0.381689 0.000000 0.000000 0.000000 0.015707 0.085450 0.014404 0.108340 0.027373 0.000000 0.262808 0.000000 0.017979 0.015943 0.050002 0.023588 0.000000 0.298441 0.052754 0.000000 0.017498 0.061410 0.012869 0.062412 0.041873 0.019281 0.000000 0.015208 0.024436 0.019058 0.317245 0.000000 0.311913 0.114771 0.000000 0.014787 0.012346 0.000000 0.052060 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.040827 0.000000 0.000000 0.125799 0.000000 0.000000 0.015284 0.000000 0.000000 0.019331 0.000000 0.000000 0.052117 0.0 0.000000 0.000000 0.000000 0.023048 0.015890 0.000000 0.038068 0.000000 0.018047 0.046438 0.000000 0.000000 0.000000 0.022561 0.025111 0.000000 0.022888 0.00000 0.000000 0.154277 0.000000 0.000000 0.000000 0.000000 0.028115 0.149563 0.123108 0.015769 0.000000 0.000000 0.049573 0.000000 0.060082 0.000000 0.015543 0.000000 0.000000 0.000000 0.000000 0.000000 0.021037 0.000000 0.073494 0.0 0.019906 0.000000 0.013135 0.000000 0.000000 0.000000 0.022982 0.094297 0.060060 0.000000 0.000000 0.000000 0.069777 0.018987 0.000000 0.056268 0.000000 0.000000 0.040387 0.049284 0.038340 0.000000 0.000000 0.000000 0.046490 0.000000 0.000000 0.000000 0.014572 0.013547 0.000000 0.016358 0.033157 0.000000 0.000000 0.000000 0.014536 0.012067 0.000000 0.014453 0.021629 0.019174 0.068138 0.090361 0.000000 0.000000 0.000000 0.000000 0.000000 0.015951 0.012908 0.000000 0.000000 0.033377 0.000000 0.000000 0.000000 0.026755 0.000000 0.000000 0.015957 0.061578 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.017128 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.038816 0.019388 0.000000 0.000000 0.000000 0.041931 0.000000 0.000000 0.05285 0.016122 0.000000 0.037713 0.000000 0.000000 0.000000 0.013846 0.000000 0.000000 0.000000 0.000000 0.000000 0.026227 0.000000 0.000000 0.0 0.000000 0.045096 0.023838 0.000000 0.000000 0.015895 0.039614 0.000000 0.000000 0.000000 0.0 0.000000 0.014732 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.074623 0.000000 0.000000 0.077213 0.069669 0.01878 0.017357 0.00000 0.066357 0.000000 0.000000 0.025673 0.000000 0.000000 0.000000 0.000000 0.026679 0.000000 0.061803 0.000000 0.070089 0.067135 0.000000 0.045004 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.028732 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.087634 0.049598 0.000000 0.000000 0.000000 0.027889 0.000000 0.066573 0.000000 0.028755 0.060387 0.081117 0.126078 0.039962 0.000000 0.038176 0.029465 0.025886 0.055078 0.000000 0.000000 0.073011 0.028757 0.000000 0.023502 0.000000 0.030051 0.000000 0.025969 0.021714 0.000000 0.000000 0.026965 0.000000 0.068628 0.000000 0.000000 0.045411 0.000000 0.017397 0.075956 0.070646 0.000000 0.000000 0.000000 0.000000 0.026853 0.000000 0.025350 0.000000 0.00000 0.000000 0.000000 0.000000 0.021784 0.000000 0.000000 0.067495 0.039361 0.036522 0.040941 0.000000 0.036142 0.000000 0.014147 0.029123 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.080121 0.099592 0.043464 0.000000 0.026418 0.072006 0.042595 0.000000 0.000000 0.015521 0.000000 0.079697 0.000000 0.000000 0.000000 0.000000 0.026982 0.000000 0.000000 0.000000 0.000000 0.000000 0.029773 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.017070 0.000000 0.000000 0.000000 0.000000 0.037818 0.000000 0.00000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.056502 0.000000 0.059640 0.014884 0.000000 0.000000 0.000000 0.028260 0.000000 0.027661 0.000000 0.000000 0.000000 0.000000 0.057221 0.013930 0.000000 0.000000 0.013419 0.044327 0.000000 0.000000 0.000000 0.025324 0.000000 0.023969 0.000000 0.000000 0.000000 0.015858 0.048834 0.000000 0.000000 0.013212 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.026414 0.000000 0.000000 0.000000 0.030056 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.00000 0.000000 0.045304 0.000000 0.045572 0.000000 0.000000 0.000000 0.000000 0.028742 0.000000 0.046455 0.000000 0.000000 0.00000 0.0 0.000000 0.00000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.039179 0.000000 0.000000 0.000000 0.047222 0.000000 0.047589 0.000000 0.000000 0.000000 0.021802 0.000000 0.00000 0.058267 0.000000 0.176026 0.000000 0.000000 0.076381 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018454 0.033109 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.066868 0.000000 0.0 0.000000 0.018847 0.000000 0.000000 0.000000 0.017409 0.000000 0.000000 0.000000 0.080422 0.028813 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034435 0.071427 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018658 0.024159 0.000000 0.044118 0.000000 0.027731 0.017873 0.021655 0.071875 0.029432 0.024026 0.000000 0.0 0.00000 0.154210 0.000000 0.079165 0.000000 0.017689 0.057596 0.019003 0.000000 0.032367 0.000000 0.00000 0.000000 0.018885 0.038757 0.000000 0.000000 0.000000 0.044194 0.035464 0.000000 0.000000 0.000000 0.029438 0.181607 0.000000 0.000000 0.062230 0.000000 0.092002 0.000000 0.000000 0.000000 0.018745 0.060901 0.020850 0.023345 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016607 0.040746 0.000000 0.000000 0.074339 0.000000 0.000000 0.081686 0.000000 0.00000 0.0 0.068706 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023364 0.061136 0.000000 0.000000 0.000000 0.000000 0.058092 0.000000 0.031392 0.000000 0.000000 0.000000 0.000000 0.000000 0.05799 0.031692 0.046131 0.000000 0.022101 0.000000 0.064635 0.000000 0.000000 0.000000 0.019717 0.0 0.0 0.017990 0.000000 0.000000 0.018140 0.022226 0.020482 0.000000 0.000000 0.000000 0.032308 0.000000 0.000000 0.000000 0.016927 0.000000 0.000000 0.028948 0.000000 0.000000 0.000000 0.000000 0.014423 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017401 0.0 0.000000 0.000000 0.000000 0.043602 0.000000 0.013201 0.000000 0.000000 0.044511 0.000000 0.0 0.000000 0.016053 0.000000 0.000000 0.038547 0.000000 0.000000 0.020368 0.018944 0.058476 0.000000 0.000000 0.000000 0.016921 0.000000 0.000000 0.000000 0.065627 0.052229 0.000000 0.000000 0.048040 0.000000 0.085576 0.117630 0.021380 0.000000 0.025025 0.046519 0.029490 0.014165 0.028075 0.015464 0.000000 0.0 0.0 0.014104 0.066294 0.035069 0.132375 0.000000 0.000000 0.151805 0.000000 0.000000 0.021272 0.000000 0.020331 0.000000 0.000000 0.059406 0.094016 0.0 0.050427 0.000000 0.000000 0.047705 0.000000 0.034581 0.050510 0.0 0.067881 0.086816 0.011929 0.034770 0.000000 0.000000 0.140008 0.060830 0.000000 0.000000 0.000000 0.072224 0.000000 0.089244 0.011410 0.086416 0.000000 0.000000 0.059366 0.055325 0.015549 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.060049 0.072192 0.013740 0.133371 0.099821 0.027965 0.024772 0.152685 0.000000 0.000000 0.000000 0.000000 0.017197 0.000000 0.000000 0.000000 0.058217 0.000000 0.000000 0.000000 0.111437 0.096830 0.037296 0.065907 0.066995 0.088172 0.024034 0.015786 0.029601 0.000000 0.000000 0.000000 0.079622 0.043756 0.000000 0.000000 0.026391 0.000000 0.000000 0.000000 0.000000 0.000000 0.282876 0.042004 0.000000 0.036542 0.000000 0.014030 0.074769 0.034460 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.289249 0.090309 0.022957 0.000000 0.035241 0.000000 0.023265 0.000000 0.018183 0.021040 0.048937 0.044500 0.000000 0.075547 0.144186 0.000000 0.000000 0.000000 0.026644 0.032341 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.071162 0.146928 0.000000 0.000000 0.051841 0.021351 0.000000 0.000000 0.000000 0.000000 0.012924 0.033550 0.031649 0.021398 0.035038 0.092273 0.102581 0.207328 0.023264 0.067745 0.311973 0.034276 0.031351 0.000000 0.029554 0.0 0.049377 0.000000 0.047411 0.000000 0.040643 0.000000 0.000000 0.000000 0.000000 0.000000 0.020405 0.000000 0.0 0.000000 0.017136 0.000000 0.000000 0.036612 0.018455 0.000000 0.000000 0.000000 0.000000 0.000000 0.039851 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.097296 0.091601 0.015678 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.132292 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.086785 0.018541 0.021613 0.027519 0.033054 0.000000 0.081228 0.000000 0.014889 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.090794 0.220103 0.000000 0.000000 0.075854 0.000000 0.080380 0.000000 0.018712 0.000000 0.000000 0.000000 0.054981 0.041336 0.117364 0.000000 0.000000 0.019608 0.0 0.0 0.031101 0.000000 0.052479 0.000000 0.000000 0.000000 0.030208 0.031763 0.0 0.000000 0.077373 0.012026 0.000000 0.084159 0.000000 0.000000 0.026055 0.072185 0.015900 0.000000 0.013447 0.041219 0.028485 0.027253 0.112651 0.312242 0.085964 0.00000 0.000000 0.000000 0.0 0.031679 0.000000 0.019764 0.012357 0.000000 0.000000 0.029796 0.0 0.000000 0.000000 0.016587 0.026166 0.064666 0.0 0.056349 0.03035 0.000000 0.014686 0.000000 0.000000 0.000000 0.000000 0.018270 0.000000 0.000000 0.085967 0.027912 0.000000 0.000000 0.080181 0.013313 0.060429 0.018187 0.000000 0.098365 0.000000 0.000000 0.014582 0.056172 0.000000 0.000000 0.041765 0.00000 0.054143 0.052412 0.013046 0.000000 0.000000 0.000000 0.027865 0.000000 0.000000 0.000000 0.074845 0.000000 0.000000 0.000000 0.000000 0.054856 0.000000 0.063721 0.014580 0.040537 0.000000 0.071266 0.104406 0.018796 0.017784 0.000000 0.000000 0.000000 0.067393 0.150923 0.000000 0.000000 0.023129 0.000000 0.014443 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041530 0.037830 0.099940 0.000000 0.000000 0.017548 0.000000 0.019434 0.000000 0.000000 0.014575 0.000000 0.000000 0.000000 0.000000 0.041456 0.024236 0.018359 0.000000 0.000000 0.01492 0.000000 0.020464 0.033310 0.050801 0.017116 0.040538 0.000000 0.000000 0.000000 0.057883 0.035615 0.035508 0.013885 0.000000 0.042556 0.000000 0.000000 0.043167 0.000000 0.019235 0.018068 0.059257 0.016014 0.048695 0.033518 0.018247 0.051859 0.000000 0.041796 0.000000 0.014903 0.012700 0.0 0.024643 0.019034 0.000000 0.031585 0.000000 0.035050 0.000000 0.049578 0.044147 0.000000 0.048034 0.000000 0.016330 0.000000 0.043821 0.000000 0.000000 0.000000 0.000000 0.016450 0.000000 0.000000 0.051962 0.000000 0.000000 0.000000 0.000000 0.000000 0.028978 0.013343 0.016200 0.000000 0.044498 0.000000 0.000000 0.017713 0.000000 0.000000 0.0 0.000000 0.041861 0.000000 0.000000 0.00000 0.000000 0.014398 0.000000 0.023724 0.000000 0.000000 0.000000 0.000000 0.111966 0.000000 0.019717 0.000000 0.039614 0.013995 0.000000 0.013567 0.000000 0.000000 0.022183 0.000000 0.00000 0.000000 0.0 0.000000 0.000000 0.026148 0.000000 0.000000 0.000000 0.023073 0.000000 0.019563 0.000000 0.000000 0.000000 0.00000 0.021961 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.072265 0.000000 0.000000 0.000000 0.000000 0.033059 0.000000 0.000000 0.000000 0.000000 0.000000 0.042701 0.027408 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034399 0.000000 0.027423 0.021231 0.000000 0.000000 0.017721 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.046224 0.000000 0.000000 0.000000 0.000000 0.000000 0.017832 0.000000 0.020495 0.000000 0.000000 0.000000 0.00000 0.015626 0.000000 0.000000 0.000000 0.013654 0.000000 0.000000 0.016767 0.000000 0.000000 0.000000 0.00000 0.014568 0.000000 0.012411 0.000000 0.011276 0.020163 0.024268 0.000000 0.015262 0.017211 0.000000 0.028125 0.026563 0.000000 0.100725 0.020383 0.000000 0.000000 0.036448 0.000000 0.061776 0.016732 0.000000 0.012226 0.000000 0.039204 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014285 0.000000 0.000000 0.035915 0.000000 0.057959 0.000000 0.048797 0.000000 0.000000 0.000000 0.000000 0.000000 0.014445 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.049645 0.000000 0.000000 0.000000 0.054051 0.000000 0.000000 0.000000 0.016762 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.042337 0.000000 0.000000 0.113908 0.000000 0.000000 0.000000 0.151748 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.026227 0.043099 0.045023 0.000000 0.00000 0.000000 0.000000 0.000000 0.052022 0.000000 0.032555 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016729 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031709 0.111646 0.050384 0.000000 0.000000 0.000000 0.065266 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.048970 0.023430 0.0 0.000000 0.024686 0.000000 0.000000 0.000000 0.000000 0.118326 0.000000 0.000000 0.000000 0.021947 0.071282 0.000000 0.016833 0.000000 0.000000 0.000000 0.000000 0.022892 0.000000 0.000000 0.000000 0.000000 0.013358 0.000000 0.000000 0.035825 0.073244 0.000000 0.000000 0.079954 0.000000 0.018855 0.0000 0.000000 0.020886 0.073952 0.000000 0.015094 0.000000 0.000000 0.000000 0.000000 0.023507 0.017692 0.034847 0.000000 0.021913 0.042776 0.018819 0.000000 0.000000 0.011920 0.000000 0.000000 0.000000 0.000000 0.054074 0.000000 0.000000 0.000000 0.000000 0.000000 0.015074 0.013033 0.000000 0.016716 0.000000 0.018401 0.000000 0.165757 0.000000 0.00000 0.0 0.0 0.009286 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.015251 0.0 0.023462 0.000000 0.012355 0.000000 0.023241 0.022500 0.046382 0.000000 0.047432 0.000000 0.074560 0.000000 0.029483 0.031475 0.000000 0.052878 0.000000 0.000000 0.032302 0.000000 0.000000 0.054767 0.000000 0.000000 0.012214 0.0 0.000000 0.000000 0.000000 0.015910 0.032418 0.019501 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.167241 0.117399 0.041487 0.061588 0.057361 0.000000 0.000000 0.063246 0.041507 0.000000 0.019296 0.000000 0.000000 0.000000 0.000000 0.067921 0.036418 0.000000 0.0 0.0 0.000000 0.017162 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.074949 0.000000 0.040970 0.000000 0.000000 0.000000 0.045238 0.000000 0.000000 0.000000 0.000000 0.026693 0.025246 0.000000 0.000000 0.025430 0.000000 0.000000 0.086614 0.000000 0.000000 0.013903 0.042340 0.000000 0.000000 0.000000 0.000000 0.033865 0.000000 0.000000 0.000000 0.017205 0.000000 0.000000 0.000000 0.041866 0.069083 0.000000 0.000000 0.018430 0.000000 0.000000 0.000000 0.064447 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024558 0.071380 0.000000 0.000000 0.019506 0.075037 0.000000 0.000000 0.023605 0.000000 0.000000 0.000000 0.065537 0.077478 0.000000 0.000000 0.000000 0.049186 0.000000 0.032329 0.000000 0.000000 0.078487 0.019002 0.000000 0.000000 0.000000 0.043821 0.000000 0.000000 0.000000 0.031058 0.000000 0.000000 0.000000 0.000000 0.040088 0.060642 0.032129 0.000000 0.000000 0.019976 0.020897 0.000000 0.017142 0.054657 0.040046 0.000000 0.027792 0.000000 0.089188 0.012317 0.024009 0.000000 0.018643 0.000000 0.000000 0.038299 0.000000 0.025651 0.000000 0.000000 0.000000 0.000000 0.073785 0.025686 0.074638 0.000000 0.000000 0.000000 0.000000 0.035284 0.000000 0.000000 0.000000 0.000000 0.000000 0.096121 0.091225 0.076239 0.000000 0.000000 0.023393 0.000000 0.064069 0.000000 0.027674 0.021749 0.000000 0.029539 0.000000 0.000000 0.000000 0.031133 0.000000 0.018267 0.030673 0.072445 0.000000 0.000000 0.000000 0.000000 0.072573 0.000000 0.048400 0.092532 0.067971 0.000000 0.027094 0.000000 0.033411 0.059390 0.043330 0.048785 0.096114 0.018803 0.000000 0.044727 0.000000 0.067943 0.075886 0.000000 0.013217 0.000000 0.024723 0.013420 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.142666 0.000000 0.000000 0.043559 0.000000 0.000000 0.000000 0.000000 0.033801 0.000000 0.015820 0.071163 0.108679 0.099975 0.080927 0.000000 0.000000 0.000000 0.000000 0.015805 0.038714 0.000000 0.053002 0.000000 0.000000 0.000000 0.000000 0.019115 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.094796 0.000000 0.015149 0.000000 0.000000 0.000000 0.000000 0.000000 0.014714 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.060318 0.000000 0.000000 0.000000 0.000000 0.071649 0.057724 0.030634 0.000000 0.044286 0.127094 0.000000 0.000000 0.000000 0.000000 0.000000 0.025253 0.000000 0.0 0.000000 0.018001 0.000000 0.030723 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.00000 0.029420 0.0 0.050496 0.000000 0.063038 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.018239 0.000000 0.039697 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012927 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.056956 0.0 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.035881 0.000000 0.0 0.000000 0.000000 0.031809 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.038942 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.015746 0.000000 0.000000 0.000000 0.000000 0.034785 0.000000 0.031983 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043374 0.000000 0.000000 0.000000 0.015280 0.000000 0.019293 0.0 0.000000 0.022950 0.0 0.018375 0.021875 0.0 0.000000 0.000000 0.025132 0.000000 0.000000 0.000000 0.000000 0.016921 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.038760 0.000000 0.000000 0.000000 0.025266 0.000000 0.000000 0.000000 0.018543 0.000000 0.000000 0.000000 0.026635 0.000000 0.000000 0.000000 0.0 0.062695 0.000000 0.000000 0.000000 0.014919 0.000000 0.029344 0.000000 0.012625 0.000000 0.017038 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016405 0.040031 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.06715 0.000000 0.000000 0.000000 0.000000 0.043066 0.017817 0.000000 0.000000 0.024781 0.000000 0.00000 0.000000 0.024313 0.000000 0.000000 0.000000 0.000000 0.000000 0.036642 0.0 0.00000 0.02002 0.017139 0.000000 0.000000 0.000000 0.025324 0.000000 0.000000 0.000000 0.000000 0.0 0.034284 0.000000 0.000000 0.000000 0.021715 0.000000 0.000000 0.000000 0.000000 0.041805 0.000000 0.040104 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.00000 0.121880 0.0 0.0 0.0 0.061267 0.0 0.000000 0.018427 0.000000 0.000000 0.025733 0.048123 0.000000 0.000000 0.000000 0.000000 0.062966 0.000000 0.0 0.000000 0.018201 0.000000 0.041861 0.046931 0.00000 0.000000 0.0 0.000000 0.024047 0.000000 0.011924 0.017766 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.021837 0.031021 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037323 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.034187 0.000000 0.0 0.00000 0.000000 0.028655 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.00000 0.06237 0.000000 0.045839 0.000000 0.000000 0.048901 0.000000 0.038108 0.035077 0.000000 0.000000 0.016003 0.0 0.000000 0.000000 0.032823 0.0 0.0 0.000000 0.016411 0.077336 0.000000 0.000000 0.0 0.0 0.0 0.0 0.042339 0.076766 0.0 0.041076 0.086277 0.0 0.0 0.078843 0.020472 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.0 0.023793 0.000000 0.000000 0.000000 0.037681 0.028151 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.026378 0.000000 0.000000 0.000000 0.114336 0.000000 0.045626 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.025855 0.000000 0.0 0.081343 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.042926 0.0 0.041261 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.043221 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.061817 0.029392 0.058251 0.000000 0.000000 0.022452 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.055226 0.055226 0.000000 0.092026 0.015793 0.000000 0.024752 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.062210 0.000000 0.021557 0.0 0.000000 0.087581 0.0 0.000000 0.000000 0.048659 0.000000 0.000000 0.156626 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.069248 0.0 0.000000 0.225913 0.000000 0.228536 0.000000 0.0 0.000000 0.015838 0.173394 0.000000 0.0 0.000000 0.060401 0.000000 0.000000 0.076921 0.000000 0.000000 0.046069 0.058286 0.000000 0.0 0.000000 0.146917 0.090054 0.0 0.0 0.000000 0.000000 0.000000 0.082222 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.039013 0.039472 0.031124 0.000000 0.000000 0.000000 0.000000 0.054508 0.000000 0.0 0.016301 0.021897 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.018177 0.000000 0.000000 0.000000 0.000000 0.033357 0.000000 0.0 0.044808 0.000000 0.017469 0.000000 0.037619 0.000000 0.055845 0.039447 0.035748 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.021317 0.086544 0.026348 0.000000 0.000000 0.132999 0.000000 0.0 0.019585 0.000000 0.000000 0.032587 0.000000 0.0 0.059083 0.000000 0.026852 0.000000 0.000000 0.000000 0.000000 0.108457 0.000000 0.014105 0.000000 0.000000 0.059837 0.0 0.000000 0.000000 0.018735 0.000000 0.000000 0.000000 0.045126 0.000000 0.000000 0.000000 0.015724 0.000000 0.000000 0.101488 0.107508 0.000000 0.023178 0.000000 0.000000 0.0000 0.142382 0.117527 0.044003 0.000000 0.000000 0.000000 0.000000 0.000000 0.114744 0.00000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.054753 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.032794 0.000000 0.000000 0.014712 0.167423 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.053039 0.000000 0.000000 0.000000 0.0 0.023515 0.000000 0.062325 0.032775 0.0 0.033947 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.080925 0.000000 0.037554 0.0 0.0 0.064425 0.000000 0.04174 0.022800 0.000000 0.000000 0.114946 0.000000 0.018733 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.068363 0.023211 0.000000 0.000000 0.072051 0.00000 0.070146 0.000000 0.000000 0.041679 0.021141 0.000000 0.000000 0.0 0.020623 0.000000 0.0 0.000000 0.000000 0.000000 0.058347 0.019729 0.000000 0.072463 0.000000 0.019388 0.0 0.000000 0.056523 0.054733 0.000000 0.000000 0.078986 0.066242 0.044538 0.048314 0.0 0.023102 0.000000 0.030937 0.000000 0.000000 0.043575 0.000000 0.015882 0.035636 0.060947 0.024637 0.000000 0.075444 0.000000 0.000000 0.000000 0.000000 0.000000 0.190268 0.0 0.016244 0.171985 0.000000 0.032616 0.000000 0.063986 0.000000 0.0 0.078310 0.000000 0.000000 0.000000 0.042992 0.058201 0.000000 0.019054 0.000000 0.000000 0.0 0.000000 0.082406 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.042245 0.000000 0.000000 0.000000 0.0 0.0 0.072852 0.000000 0.019654 0.017554 0.024351 0.000000 0.000000 0.0 0.0 0.018166 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.063958 0.000000 0.0 0.000000 0.016276 0.049398 0.0 0.000000 0.000000 0.000000 0.024989 0.000000 0.000000 0.041476 0.0 0.000000 0.020136 0.079315 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.115963 0.000000 0.048151 0.219689 0.083643 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031061 0.000000 0.000000 0.000000 0.000000 0.158926 0.0 0.000000 0.095458 0.0 0.021512 0.000000 0.000000 0.000000 0.021842 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.017665 0.146287 0.000000 0.000000 0.000000 0.0 0.017098 0.000000 0.017308 0.000000 0.0 0.094625 0.000000 0.069510 0.000000 0.000000 0.000000 0.000000 0.028177 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025525 0.000000 0.021283 0.000000 0.000000 0.000000 0.000000 0.018132 0.000000 0.000000 0.063222 0.000000 0.000000 0.000000 0.079628 0.050976 0.000000 0.016649 0.039624 0.000000 0.000000 0.0 0.000000 0.062491 0.000000 0.059754 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031725 0.000000 0.019981 0.000000 0.042121 0.000000 0.000000 0.000000 0.057961 0.0 0.000000 0.029791 0.000000 0.000000 0.000000 0.000000 0.000000 0.026460 0.000000 0.000000 0.029927 0.076388 0.000000 0.063230 0.000000 0.000000 0.036573 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031302 0.000000 0.000000 0.0 0.038000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017157 0.000000 0.062286 0.000000 0.000000 0.00000 0.000000 0.000000 0.036185 0.031393 0.000000 0.000000 0.000000 0.026099 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020968 0.059517 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.057859 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.246394 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.046658 0.000000 0.000000 0.000000 0.074039 0.022778 0.023506 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033777 0.000000 0.034699 0.029510 0.026824 0.0 0.000000 0.041197 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.185739 0.000000 0.0 0.015901 0.0 0.000000 0.074760 0.027338 0.036190 0.000000 0.000000 0.020004 0.000000 0.000000 0.083250 0.057343 0.000000 0.016101 0.000000 0.000000 0.033807 0.000000 0.057665 0.058093 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.014624 0.020507 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.100312 0.215420 0.000000 0.082715 0.000000 0.030017 0.000000 0.000000 0.00000 0.000000 0.000000 0.018306 0.000000 0.0 0.00000 0.0 0.015042 0.046519 0.000000 0.00000 0.083093 0.000000 0.00000 0.000000 0.000000 0.018169 0.000000 0.066277 0.000000 0.000000 0.042737 0.016849 0.0 0.000000 0.042470 0.0 0.046938 0.0 0.0 0.000000 0.000000 0.023042 0.00000 0.000000 0.000000 0.0 0.046377 0.0 0.000000 0.000000 0.044406 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016799 0.019321 0.000000 0.019485 0.040257 0.000000 0.024085 0.023552 0.000000 0.000000 0.000000 0.031794 0.030504 0.000000 0.000000 0.000000 0.032810 0.000000 0.023773 0.000000 0.028399 0.000000 0.000000 0.031415 0.000000 0.000000 0.000000 0.000000 0.016789 0.045926 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022800 0.000000 0.016075 0.051914 0.085217 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020315 0.014255 0.026987 0.000000 0.000000 0.000000 0.034034 0.000000 0.0 0.000000 0.000000 0.041310 0.035042 0.000000 0.000000 0.000000 0.0 0.064494 0.000000 0.000000 0.000000 0.026408 0.0 0.029429 0.000000 0.000000 0.000000 0.068102 0.000000 0.000000 0.000000 0.000000 0.000000 0.019933 0.040250 0.060553 0.105975 0.000000 0.000000 0.031019 0.042987 0.000000 0.014735 0.000000 0.019216 0.000000 0.000000 0.024277 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052376 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018331 0.041234 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.042591 0.0 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.036029 0.085548 0.083559 0.079613 0.000000 0.014033 0.0 0.038329 0.000000 0.017101 0.000000 0.000000 0.000000 0.000000 0.000000 0.012115 0.000000 0.0 0.000000 0.017306 0.000000 0.015434 0.022575 0.000000 0.000000 0.014490 0.000000 0.000000 0.000000 0.000000 0.018875 0.013203 0.048492 0.0 0.000000 0.000000 0.017258 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040119 0.000000 0.000000 0.000000 0.013837 0.000000 0.021652 0.026427 0.021792 0.000000 0.000000 0.000000 0.021504 0.017452 0.000000 0.035015 0.000000 0.000000 0.000000 0.010611 0.000000 0.015211 0.000000 0.000000 0.000000 0.012555 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.012153 0.000000 0.000000 0.000000 0.000000 0.012400 0.000000 0.000000 0.0 0.038060 0.014952 0.000000 0.031630 0.000000 0.000000 0.013544 0.000000 0.017735 0.000000 0.000000 0.014991 0.000000 0.000000 0.000000 0.018894 0.000000 0.000000 0.000000 0.019421 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.076940 0.0 0.000000 0.000000 0.0 0.016146 0.022797 0.000000 0.000000 0.013627 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028272 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.061496 0.000000 0.000000 0.0 0.000000 0.0 0.018889 0.000000 0.000000 0.011986 0.000000 0.000000 0.000000 0.038289 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025740 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014481 0.000000 0.012582 0.00000 0.00000 0.000000 0.000000 0.011234 0.000000 0.013992 0.011541 0.000000 0.015929 0.000000 0.000000 0.022912 0.041423 0.000000 0.00000 0.000000 0.000000 0.028529 0.000000 0.000000 0.000000 0.045505 0.000000 0.000000 0.000000 0.000000 0.042348 0.000000 0.000000 0.043399 0.000000 0.000000 0.000000 0.000000 0.027266 0.000000 0.000000 0.000000 0.028066 0.055315 0.018581 0.000000 0.015800 0.035769 0.073254 0.026488 0.000000 0.000000 0.000000 0.048836 0.000000 0.016652 0.025840 0.000000 0.000000 0.000000 0.000000 0.000000 0.031163 0.000000 0.000000 0.035105 0.000000 0.0 0.000000 0.000000 0.000000 0.094170 0.000000 0.017367 0.000000 0.000000 0.000000 0.031369 0.028893 0.000000 0.000000 0.036233 0.015268 0.012039 0.000000 0.072324 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035994 0.000000 0.014933 0.042638 0.055709 0.000000 0.022679 0.0000 0.033734 0.000000 0.000000 0.196741 0.112158 0.000000 0.103486 0.125993 0.000000 0.080621 0.026002 0.015586 0.028014 0.133173 0.033226 0.028281 0.089046 0.000000 0.00000 0.000000 0.090803 0.000000 0.013821 0.035808 0.050270 0.000000 0.057532 0.026627 0.019199 0.043475 0.000000 0.012939 0.000000 0.000000 0.000000 0.0 0.029481 0.000000 0.060508 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.089671 0.070429 0.000000 0.025879 0.000000 0.089151 0.000000 0.000000 0.068206 0.101174 0.018521 0.000000 0.043597 0.000000 0.000000 0.037846 0.000000 0.000000 0.000000 0.000000 0.117717 0.046525 0.030207 0.118490 0.015939 0.108407 0.014937 0.000000 0.036024 0.099919 0.000000 0.000000 0.012355 0.000000 0.096550 0.019351 0.092694 0.039971 0.071008 0.000000 0.073086 0.000000 0.082415 0.115439 0.123171 0.000000 0.017079 0.000000 0.000000 0.074331 0.000000 0.05994 0.137501 0.033003 0.064289 0.000000 0.059026 0.000000 0.000000 0.000000 0.047976 0.141076 0.040602 0.030795 0.091895 0.000000 0.086088 0.045230 0.018724 0.000000 0.123110 0.022310 0.071741 0.026533 0.099230 0.000000 0.063831 0.000000 0.000000 0.03779 0.129054 0.021365 0.095002 0.128238 0.052024 0.049628 0.070848 0.072286 0.044633 0.080355 0.188212 0.123804 0.095627 0.125425 0.064486 0.024592 0.074551 0.037126 0.000000 0.021770 0.000000 0.022375 0.000000 0.000000 0.0 0.0 0.000000 0.045930 0.000000 0.031032 0.000000 0.050934 0.094121 0.305932 0.000000 0.000000 0.029594 0.125269 0.000000 0.020770 0.000000 0.00000 0.000000 0.000000 0.046495 0.030754 0.014680 0.017822 0.025507 0.000000 0.069726 0.000000 0.000000 0.102003 0.000000 0.000000 0.000000 0.014561 0.000000 0.024287 0.000000 0.06714 0.000000 0.000000 0.024504 0.417726 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018840 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.018120 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.050467 0.117000 0.000000 0.052742 0.065185 0.000000 0.000000 0.000000 0.000000 0.020756 0.000000 0.383066 0.000000 0.000000 0.086176 0.000000 0.000000 0.031085 0.029305 0.000000 0.016551 0.063795 0.000000 0.308679 0.078109 0.000000 0.000000 0.000000 0.102394 0.000000 0.037715 0.000000 0.000000 0.015723 0.000000 0.012087 0.203457 0.363341 0.000000 0.188377 0.000000 0.033882 0.000000 0.020594 0.000000 0.028452 0.000000 0.000000 0.000000 0.034041 0.000000 0.000000 0.000000 0.000000 0.020888 0.000000 0.000000 0.061141 0.000000 0.037095 0.016623 0.011725 0.104836 0.000000 0.051743 0.017951 0.000000 0.037541 0.00000 0.000000 0.126383 0.000000 0.000000 0.036174 0.000000 0.015142 0.105259 0.067784 0.143765 0.050892 0.032187 0.046010 0.022312 0.027801 0.000000 0.000000 0.059359 0.000000 0.043656 0.000000 0.048618 0.000000 0.084472 0.000000 0.000000 0.000000 0.062935 0.064767 0.000000 0.025012 0.016805 0.000000 0.076902 0.075917 0.000000 0.000000 0.000000 0.104448 0.134319 0.000000 0.000000 0.000000 0.029180 0.000000 0.0 0.016538 0.000000 0.000000 0.085453 0.000000 0.018119 0.035439 0.000000 0.000000 0.000000 0.0 0.055757 0.000000 0.015342 0.0 0.109453 0.00000 0.000000 0.000000 0.000000 0.000000 0.014887 0.076388 0.000000 0.013167 0.405943 0.092222 0.045427 0.035305 0.033234 0.000000 0.126792 0.000000 0.015711 0.016840 0.126144 0.000000 0.018567 0.108340 0.000000 0.018349 0.0 0.000000 0.0 0.012438 0.00000 0.086316 0.032128 0.0 0.064364 0.109235 0.016237 0.000000 0.012274 0.028821 0.000000 0.0 0.000000 0.043002 0.0 0.117394 0.000000 0.00000 0.123828 0.031971 0.077540 0.0 0.000000 0.000000 0.000000 0.076761 0.062263 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.051753 0.0 0.117839 0.061838 0.084218 0.000000 0.0 0.0 0.000000 0.073651 0.000000 0.000000 0.019404 0.000000 0.030362 0.000000 0.000000 0.068563 0.000000 0.000000 0.055221 0.019265 0.297768 0.000000 0.136151 0.000000 0.000000 0.000000 0.063176 0.000000 0.000000 0.000000 0.031537 0.000000 0.022312 0.000000 0.000000 0.0 0.058791 0.016121 0.013432 0.00000 0.037278 0.282690 0.084752 0.112945 0.000000 0.029085 0.000000 0.0 0.0 0.016654 0.060778 0.000000 0.000000 0.056513 0.000000 0.023139 0.188432 0.000000 0.091197 0.0 0.0 0.000000 0.056083 0.000000 0.072576 0.000000 0.211175 0.000000 0.033995 0.080704 0.000000 0.325704 0.017173 0.042104 0.068484 0.0 0.000000 0.010094 0.060789 0.012548 0.025707 0.0 0.058233 0.000000 0.000000 0.017912 0.000000 0.000000 0.027063 0.409915 0.016989 0.308659 0.000000 0.076046 0.029417 0.034088 0.000000 0.000000 0.045750 0.022562 0.000000 0.000000 0.000000 0.026140 0.044069 0.000000 0.000000 0.000000 0.000000 0.000000 0.020861 0.000000 0.000000 0.000000 0.028569 0.000000 0.043728 0.000000 0.024266 0.206777 0.040334 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.029593 0.035461 0.053121 0.000000 0.0 0.000000 0.000000 0.000000 0.020700 0.0000 0.017524 0.025597 0.022457 0.033308 0.000000 0.011751 0.000000 0.000000 0.0 0.077632 0.000000 0.031723 0.020210 0.000000 0.000000 0.000000 0.031143 0.000000 0.000000 0.017955 0.000000 0.135827 0.000000 0.000000 0.000000 0.014662 0.030630 0.000000 0.096468 0.000000 0.022897 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.035489 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014240 0.000000 0.000000 0.000000 0.0 0.000000 0.027976 0.000000 0.038189 0.000000 0.000000 0.000000 0.024994 0.168593 0.000000 0.030803 0.000000 0.032582 0.000000 0.000000 0.068824 0.0 0.000000 0.000000 0.000000 0.062955 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.093272 0.000000 0.035038 0.116287 0.000000 0.082032 0.017702 0.000000 0.021492 0.019962 0.000000 0.000000 0.000000 0.0 0.031144 0.0 0.000000 0.158774 0.000000 0.000000 0.014374 0.000000 0.000000 0.000000 0.027755 0.000000 0.000000 0.000000 0.175465 0.000000 0.000000 0.019544 0.023929 0.000000 0.000000 0.000000 0.000000 0.000000 0.081867 0.000000 0.000000 0.027094 0.036378 0.388661 0.032213 0.032671 0.000000 0.107130 0.032434 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.099759 0.000000 0.000000 0.000000 0.035690 0.000000 0.020762 0.000000 0.000000 0.000000 0.076727 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.465114 0.148586 0.0 0.119700 0.019956 0.000000 0.000000 0.000000 0.000000 0.121256 0.060889 0.000000 0.000000 0.028502 0.032664 0.016845 0.104061 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.082524 0.014575 0.000000 0.035650 0.0 0.000000 0.000000 0.000000 0.021596 0.000000 0.000000 0.000000 0.024984 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034183 0.000000 0.000000 0.038066 0.029471 0.000000 0.000000 0.016942 0.031101 0.098707 0.00000 0.000000 0.0 0.050116 0.013122 0.016600 0.000000 0.000000 0.037499 0.021181 0.018920 0.000000 0.025930 0.019715 0.016414 0.000000 0.020762 0.000000 0.02598 0.000000 0.116532 0.087909 0.082261 0.046535 0.095478 0.000000 0.000000 0.018541 0.0 0.03681 0.024525 0.080897 0.032239 0.000000 0.010878 0.045523 0.047315 0.022382 0.046643 0.040886 0.000000 0.000000 0.045160 0.000000 0.070612 0.000000 0.000000 0.000000 0.000000 0.021147 0.047232 0.034690 0.000000 0.000000 0.023456 0.000000 0.000000 0.000000 0.039208 0.031275 0.000000 0.000000 0.000000 0.023772 0.033067 0.000000 0.000000 0.021774 0.048934 0.000000 0.019750 0.034727 0.018461 0.000000 0.000000 0.000000 0.021940 0.000000 0.00000 0.000000 0.000000 0.018879 0.000000 0.000000 0.000000 0.031807 0.000000 0.029946 0.000000 0.000000 0.000000 0.000000 0.024698 0.000000 0.022576 0.020325 0.025215 0.000000 0.107444 0.000000 0.114486 0.000000 0.000000 0.000000 0.025930 0.032117 0.040242 0.000000 0.037722 0.000000 0.0 0.000000 0.000000 0.019157 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.03685 0.000000 0.000000 0.0 0.000000 0.055516 0.010330 0.000000 0.016512 0.048127 0.000000 0.019157 0.000000 0.022345 0.000000 0.039703 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.036764 0.044107 0.000000 0.125643 0.000000 0.153404 0.000000 0.017767 0.000000 0.000000 0.0 0.0 0.021168 0.000000 0.00000 0.000000 0.000000 0.000000 0.012483 0.000000 0.000000 0.000000 0.000000 0.052741 0.067092 0.020830 0.000000 0.148419 0.000000 0.000000 0.000000 0.014528 0.000000 0.000000 0.0 0.070242 0.124229 0.305818 0.146246 0.0 0.0 0.000000 0.021450 0.147780 0.000000 0.000000 0.011679 0.000000 0.000000 0.000000 0.033932 0.147309 0.019409 0.030969 0.000000 0.000000 0.065648 0.114363 0.024826 0.019341 0.000000 0.027953 0.161255 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.091463 0.000000 0.021222 0.000000 0.000000 0.026581 0.000000 0.028617 0.000000 0.042272 0.066044 0.035291 0.016019 0.024609 0.000000 0.096523 0.068866 0.0 0.024951 0.000000 0.0 0.077817 0.028326 0.095070 0.093121 0.090786 0.081537 0.000000 0.041794 0.000000 0.024465 0.000000 0.031686 0.000000 0.000000 0.054104 0.095111 0.000000 0.018913 0.0 0.000000 0.000000 0.093202 0.017075 0.097277 0.074993 0.018801 0.014744 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032049 0.000000 0.000000 0.018077 0.000000 0.000000 0.029996 0.038371 0.000000 0.052187 0.000000 0.013905 0.116612 0.000000 0.070140 0.061557 0.000000 0.000000 0.000000 0.046712 0.136022 0.000000 0.000000 0.000000 0.00000 0.018422 0.026273 0.000000 0.018218 0.018081 0.069361 0.000000 0.000000 0.056412 0.043845 0.041383 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052330 0.075468 0.000000 0.078309 0.000000 0.000000 0.025930 0.000000 0.000000 0.017672 0.020924 0.075728 0.000000 0.000000 0.000000 0.0 0.03681 0.000000 0.000000 0.000000 0.000000 0.000000 0.086176 0.000000 0.124228 0.000000 0.000000 0.0 0.089810 0.051228 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026350 0.041159 0.057529 0.000000 0.029807 0.015542 0.000000 0.012830 0.103976 0.000000 0.030835 0.060062 0.000000 0.015605 0.0 0.013684 0.000000 0.021868 0.000000 0.155139 0.013207 0.000000 0.000000 0.000000 0.000000 0.000000 0.021801 0.000000 0.015496 0.023735 0.000000 0.000000 0.000000 0.000000 0.021195 0.015707 0.000000 0.052824 0.000000 0.000000 0.063829 0.016464 0.000000 0.106606 0.070974 0.000000 0.014148 0.012032 0.027080 0.022562 0.000000 0.000000 0.023948 0.013550 0.000000 0.000000 0.030434 0.015778 0.000000 0.000000 0.000000 0.074682 0.013513 0.000000 0.000000 0.000000 0.000000 0.015298 0.028513 0.047429 0.000000 0.000000 0.000000 0.065752 0.000000 0.000000 0.012683 0.000000 0.000000 0.0 0.000000 0.055668 0.017839 0.000000 0.000000 0.052474 0.0 0.000000 0.039379 0.000000 0.000000 0.000000 0.058270 0.000000 0.000000 0.030313 0.094455 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020229 0.045412 0.000000 0.000000 0.000000 0.014727 0.000000 0.030339 0.017174 0.012382 0.000000 0.000000 0.000000 0.000000 0.022941 0.000000 0.015951 0.019789 0.043420 0.015742 0.016078 0.000000 0.025863 0.000000 0.000000 0.000000 0.017442 0.000000 0.000000 0.033602 0.028328 0.000000 0.033076 0.029004 0.000000 0.012555 0.029534 0.012788 0.000000 0.000000 0.081344 0.000000 0.015550 0.079338 0.022532 0.000000 0.011787 0.155023 0.000000 0.000000 0.039111 0.000000 0.000000 0.062899 0.000000 0.000000 0.147440 0.000000 0.000000 0.011535 0.080545 0.108862 0.000000 0.000000 0.000000 0.000000 0.049996 0.057722 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020553 0.016648 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015869 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034417 0.000000 0.000000 0.000000 0.018939 0.000000 0.017512 0.000000 0.000000 0.024743 0.035781 0.000000 0.000000 0.021398 0.018304 0.017206 0.038211 0.000000 0.000000 0.000000 0.000000 0.000000 0.034626 0.034626 0.030178 0.000000 0.000000 0.045245 0.000000 0.016496 0.045841 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015317 0.000000 0.000000 0.000000 0.000000 0.019080 0.018686 0.000000 0.019791 0.019791 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015627 0.000000 0.000000 0.000000 0.017770 0.000000 0.000000 0.000000 0.042107 0.013351 0.000000 0.016127 0.000000 0.000000 0.000000 0.017023 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025631 0.024906 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043607 0.000000 0.093754 0.000000 0.00000 0.000000 0.000000 0.000000 0.012110 0.000000 0.014273 0.014273 0.023172 0.000000 0.043497 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025781 0.015834 0.025410 0.025410 0.000000 0.000000 0.000000 0.014432 0.014432 0.040530 0.000000 0.000000 0.099622 0.031271 0.000000 0.014657 0.014657 0.027741 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028137 0.000000 0.000000 0.020440 0.000000 0.125729 0.000000 0.000000 0.021873 0.082789 0.000000 0.000000 0.026520 0.026520 0.000000 0.00000 0.021747 0.000000 0.000000 0.142978 0.050825 0.000000 0.000000 0.067709 0.029862 0.028429 0.014463 0.014463 0.000000 0.042067 0.000000 0.015146 0.037511 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015076 0.100006 0.013965 0.000000 0.021357 0.021357 0.000000 0.000000 0.021743 0.015795 0.000000 0.000000 0.000000 0.013167 0.015132 0.139051 0.033648 0.016312 0.000000 0.046707 0.000000 0.015295 0.028679 0.022772 0.000000 0.000000 0.000000 0.029905 0.000000 0.026175 0.011613 0.000000 0.016697 0.000000 0.000000 0.022444 0.000000 0.000000 0.013436 0.000000 0.000000 0.015831 0.000000 0.000000 0.000000 0.000000 0.000000 0.060224 0.018160 0.038879 0.024415 0.000000 0.030193 0.018216 0.000000 0.095412 0.045029 0.000000 0.000000 0.000000 0.000000 0.016663 0.000000 0.000000 0.027335 0.014707 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026466 0.000000 0.000000 0.0 0.000000 0.012181 0.023015 0.011928 0.000000 0.000000 0.000000 0.017769 0.000000 0.012293 0.000000 0.013883 0.000000 0.017702 0.000000 0.000000 0.000000 0.000000 0.048470 0.000000 0.043212 0.000000 0.014308 0.000000 0.000000 0.000000 0.125264 0.020153 0.000000 0.0 0.091101 0.020381 0.000000 0.041590 0.000000 0.000000 0.000000 0.015595 0.000000 0.020123 0.000000 0.000000 0.000000 0.000000 0.064098 0.000000 0.000000 0.000000 0.000000 0.000000 0.012700 0.000000 0.034234 0.042806 0.017017 0.000000 0.000000 0.014064 0.000000 0.000000 0.000000 0.000000 0.000000 0.014725 0.000000 0.000000 0.000000 0.013230 0.000000 0.000000 0.053389 0.026162 0.000000 0.000000 0.000000 0.083898 0.000000 0.000000 0.000000 0.000000 0.000000 0.031531 0.000000 0.000000 0.010665 0.000000 0.000000 0.018730 0.017460 0.000000 0.047387 0.040668 0.000000 0.000000 0.000000 0.029646 0.036804 0.013490 0.057169 0.000000 0.024726 0.000000 0.034659 0.000000 0.000000 0.000000 0.000000 0.088669 0.000000 0.000000 0.000000 0.000000 0.022145 0.035044 0.000000 0.000000 0.000000 0.017713 0.017713 0.052733 0.022636 0.000000 0.000000 0.0 0.000000 0.021797 0.021797 0.000000 0.000000 0.039930 0.019886 0.000000 0.021742 0.06085 0.000000 0.000000 0.015698 0.000000 0.000000 0.037816 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.031974 0.023234 0.000000 0.000000 0.077341 0.000000 0.000000 0.044981 0.000000 0.000000 0.000000 0.000000 0.000000 0.018564 0.024092 0.000000 0.055308 0.039864 0.000000 0.070536 0.000000 0.000000 0.000000 0.078384 0.047289 0.111933 0.030227 0.000000 0.000000 0.000000 0.00000 0.035978 0.012071 0.000000 0.038698 0.000000 0.036951 0.030125 0.024221 0.000000 0.000000 0.000000 0.022742 0.000000 0.082668 0.000000 0.000000 0.000000 0.000000 0.000000 0.028131 0.000000 0.000000 0.016975 0.026841 0.000000 0.020256 0.036308 0.00000 0.031662 0.037308 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.069670 0.000000 0.020059 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.052124 0.000000 0.025730 0.037684 0.040409 0.000000 0.000000 0.036797 0.000000 0.000000 0.023117 0.000000 0.000000 0.023350 0.031299 0.036166 0.029081 0.000000 0.136673 0.000000 0.012408 0.000000 0.000000 0.015438 0.015644 0.000000 0.000000 0.000000 0.000000 0.032362 0.000000 0.000000 0.000000 0.000000 0.044014 0.035176 0.019447 0.000000 0.000000 0.023420 0.000000 0.000000 0.000000 0.000000 0.020670 0.000000 0.000000 0.029227 0.054257 0.019584 0.019770 0.000000 0.064882 0.000000 0.000000 0.000000 0.018757 0.000000 0.000000 0.013932 0.000000 0.033811 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.027459 0.000000 0.000000 0.053212 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.015855 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.013331 0.000000 0.000000 0.069654 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017727 0.016020 0.000000 0.0 0.022663 0.000000 0.000000 0.000000 0.000000 0.017808 0.045782 0.0 0.000000 0.049294 0.0 0.042186 0.000000 0.000000 0.017429 0.000000 0.000000 0.000000 0.000000 0.058130 0.000000 0.000000 0.020600 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.036373 0.000000 0.000000 0.000000 0.020747 0.000000 0.000000 0.000000 0.000000 0.025317 0.000000 0.077143 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019820 0.000000 0.000000 0.000000 0.000000 0.019278 0.016761 0.024726 0.000000 0.000000 0.000000 0.000000 0.035487 0.000000 0.000000 0.000000 0.019674 0.000000 0.071857 0.000000 0.000000 0.000000 0.000000 0.034811 0.000000 0.000000 0.0 0.013766 0.000000 0.068307 0.000000 0.053073 0.000000 0.029001 0.017968 0.030492 0.000000 0.000000 0.000000 0.000000 0.015887 0.000000 0.000000 0.054798 0.017334 0.000000 0.063023 0.015526 0.013440 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.015071 0.000000 0.000000 0.000000 0.021176 0.000000 0.000000 0.018215 0.015658 0.000000 0.016616 0.000000 0.000000 0.025602 0.000000 0.038161 0.000000 0.000000 0.000000 0.041556 0.019589 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022248 0.018460 0.000000 0.043297 0.000000 0.017915 0.000000 0.000000 0.014781 0.000000 0.000000 0.093813 0.000000 0.000000 0.000000 0.000000 0.012138 0.000000 0.027878 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.060471 0.000000 0.000000 0.027221 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015052 0.037746 0.021328 0.00000 0.020768 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.026376 0.00000 0.014322 0.000000 0.025930 0.000000 0.000000 0.0 0.054543 0.012202 0.000000 0.034770 0.000000 0.018617 0.028146 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.027308 0.018529 0.055313 0.000000 0.000000 0.038641 0.000000 0.000000 0.024522 0.000000 0.015568 0.043142 0.000000 0.034698 0.000 0.038848 0.000000 0.000000 0.000000 0.029392 0.038067 0.000000 0.000000 0.048086 0.000000 0.000000 0.000000 0.021091 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016120 0.034878 0.025304 0.045389 0.000000 0.000000 0.000000 0.000000 0.014995 0.000000 0.018854 0.000000 0.000000 0.000000 0.000000 0.036405 0.036552 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.048693 0.000000 0.000000 0.023848 0.00000 0.000000 0.063164 0.000000 0.088216 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.126013 0.000000 0.000000 0.000000 0.106096 0.000000 0.000000 0.000000 0.059860 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.076452 0.074367 0.000000 0.015356 0.000000 0.040091 0.000000 0.000000 0.000000 0.018923 0.000000 0.000000 0.000000 0.000000 0.000000 0.036807 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.057460 0.039742 0.000000 0.000000 0.000000 0.000000 0.020441 0.021030 0.000000 0.000000 0.000000 0.000000 0.000000 0.032721 0.000000 0.027201 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.067015 0.000000 0.000000 0.034690 0.000000 0.000000 0.072504 0.000000 0.000000 0.000000 0.000000 0.000000 0.017070 0.000000 0.000000 0.036272 0.000000 0.000000 0.000000 0.046633 0.037186 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026015 0.000000 0.000000 0.000000 0.047188 0.000000 0.000000 0.016234 0.000000 0.000000 0.043422 0.085117 0.000000 0.089998 0.000000 0.013831 0.000000 0.000000 0.000000 0.000000 0.000000 0.035049 0.026335 0.000000 0.000000 0.00000 0.000000 0.000000 0.039908 0.0 0.000000 0.000000 0.000000 0.023624 0.000000 0.000000 0.142887 0.000000 0.000000 0.000000 0.000000 0.015446 0.031843 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.051826 0.000000 0.000000 0.000000 0.050723 0.054778 0.027472 0.031492 0.000000 0.000000 0.000000 0.000000 0.043765 0.055802 0.000000 0.000000 0.015704 0.10123 0.000000 0.000000 0.018715 0.000000 0.029076 0.000000 0.045082 0.000000 0.040360 0.000000 0.00000 0.000000 0.000000 0.000000 0.070315 0.000000 0.000000 0.000000 0.041165 0.031560 0.017663 0.000000 0.000000 0.000000 0.030284 0.000000 0.000000 0.014899 0.000000 0.026147 0.018081 0.014072 0.026147 0.015466 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016608 0.019094 0.000000 0.000000 0.0 0.012728 0.000000 0.000000 0.000000 0.021634 0.035752 0.016131 0.000000 0.000000 0.035752 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013479 0.00000 0.0 0.000000 0.068917 0.017480 0.016013 0.0 0.000000 0.020503 0.030039 0.000000 0.000000 0.000000 0.020602 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013518 0.021585 0.014025 0.0 0.000000 0.045942 0.000000 0.020191 0.000000 0.000000 0.021519 0.030215 0.000000 0.065905 0.000000 0.0 0.031539 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041906 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016529 0.000000 0.000000 0.01798 0.000000 0.0 0.000000 0.018045 0.015007 0.000000 0.000000 0.000000 0.000000 0.017421 0.000000 0.023378 0.024043 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055944 0.000000 0.000000 0.010324 0.000000 0.0 0.000000 0.000000 0.014056 0.000000 0.000000 0.000000 0.089928 0.014621 0.015186 0.000000 0.000000 0.000000 0.000000 0.019623 0.000000 0.000000 0.000000 0.016938 0.022507 0.000000 0.063399 0.000000 0.026384 0.055062 0.049975 0.000000 0.000000 0.000000 0.029368 0.018716 0.000000 0.020727 0.015327 0.000000 0.000000 0.015024 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.016714 0.000000 0.018118 0.000000 0.00000 0.0 0.000000 0.00000 0.029689 0.014998 0.000000 0.000000 0.00000 0.000000 0.000000 0.00000 0.000000 0.025298 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.011866 0.000000 0.000000 0.000000 0.000000 0.000000 0.032507 0.016085 0.015552 0.000000 0.000000 0.000000 0.022966 0.000000 0.000000 0.000000 0.000000 0.062253 0.031249 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026381 0.032331 0.000000 0.015746 0.000000 0.000000 0.000000 0.022952 0.000000 0.000000 0.000000 0.000000 0.000000 0.051376 0.000000 0.00000 0.019641 0.035300 0.000000 0.000000 0.018015 0.000000 0.00000 0.000000 0.021944 0.000000 0.000000 0.000000 0.000000 0.000000 0.018953 0.057426 0.000000 0.018559 0.000000 0.000000 0.000000 0.000000 0.029467 0.060045 0.000000 0.00000 0.000000 0.000000 0.024593 0.000000 0.000000 0.000000 0.014299 0.058341 0.014762 0.000000 0.000000 0.036987 0.028507 0.031986 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.109469 0.000000 0.000000 0.021050 0.000000 0.00000 0.000000 0.000000 0.016117 0.02030 0.000000 0.000000 0.01447 0.000000 0.034045 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.009200 0.000000 0.034490 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.084904 0.000000 0.016817 0.020936 0.000000 0.046084 0.000000 0.054787 0.000000 0.000000 0.00000 0.000000 0.012237 0.018123 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.040196 0.000000 0.000000 0.023184 0.000000 0.015691 0.00000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.022874 0.036168 0.000000 0.040321 0.000000 0.000000 0.000000 0.077608 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.068948 0.013012 0.000000 0.021240 0.000000 0.014179 0.068350 0.000000 0.000000 0.000000 0.000000 0.000000 0.057908 0.012341 0.092252 0.049275 0.056704 0.000000 0.012504 0.000000 0.0 0.016314 0.014746 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027768 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013605 0.000000 0.027979 0.000000 0.000000 0.000000 0.00000 0.024770 0.016355 0.042536 0.000000 0.020747 0.000000 0.000000 0.000000 0.000000 0.021233 0.047071 0.043668 0.046296 0.000000 0.000000 0.0 0.013720 0.043659 0.078440 0.000000 0.000000 0.020286 0.000000 0.018703 0.000000 0.018411 0.000000 0.0 0.000000 0.032749 0.000000 0.000000 0.000000 0.017604 0.013403 0.000000 0.000000 0.116922 0.018296 0.000000 0.000000 0.021659 0.014755 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020905 0.000000 0.00000 0.000000 0.00000 0.049014 0.013666 0.000000 0.080390 0.000000 0.000000 0.000000 0.014179 0.000000 0.000000 0.000000 0.032785 0.018395 0.000000 0.025265 0.000000 0.000000 0.017338 0.000000 0.000000 0.000000 0.023988 0.000000 0.025328 0.000000 0.000000 0.000000 0.0 0.000000 0.037176 0.000000 0.000000 0.011824 0.000000 0.000000 0.000000 0.000000 0.000000 0.015675 0.014967 0.056835 0.031916 0.000000 0.000000 0.054913 0.000000 0.025514 0.000000 0.000000 0.072217 0.000000 0.014770 0.000000 0.000000 0.020867 0.000000 0.000000 0.000000 0.020953 0.000000 0.000000 0.000000 0.031524 0.000000 0.021465 0.000000 0.013886 0.022755 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.072451 0.000000 0.000000 0.000000 0.000000 0.000000 0.026533 0.000000 0.016953 0.035414 0.028240 0.0 0.000000 0.000000 0.019722 0.00000 0.000000 0.000000 0.000000 0.000000 0.047747 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023955 0.000000 0.000000 0.000000 0.000000 0.000000 0.177541 0.032231 0.000000 0.060186 0.012751 0.000000 0.000000 0.022018 0.000000 0.00000 0.000000 0.051210 0.000000 0.024670 0.000000 0.000000 0.012276 0.000000 0.000000 0.000000 0.000000 0.000000 0.012998 0.030057 0.031133 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017441 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025328 0.000000 0.000000 0.022692 0.014782 0.035544 0.068800 0.000000 0.000000 0.000000 0.000000 0.000000 0.032051 0.019441 0.000000 0.000000 0.013360 0.000000 0.000000 0.028270 0.041060 0.000000 0.000000 0.049616 0.000000 0.053454 0.000000 0.000000 0.014320 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.013449 0.000000 0.00000 0.000000 0.000000 0.014251 0.000000 0.022908 0.000000 0.000000 0.033853 0.000000 0.000000 0.018108 0.023414 0.000000 0.023065 0.000000 0.00000 0.022764 0.011734 0.000000 0.000000 0.019723 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016225 0.000000 0.000000 0.000000 0.030075 0.000000 0.024352 0.000000 0.000000 0.030486 0.068277 0.000000 0.049547 0.026410 0.000000 0.014395 0.000000 0.000000 0.000000 0.000000 0.015262 0.000000 0.015938 0.015676 0.000000 0.018641 0.000000 0.012933 0.000000 0.000000 0.000000 0.026883 0.036916 0.0 0.016097 0.000000 0.00000 0.026956 0.000000 0.026026 0.00000 0.00000 0.000000 0.000000 0.022533 0.000000 0.000000 0.000000 0.027918 0.000000 0.000000 0.000000 0.000000 0.017127 0.000000 0.000000 0.094004 0.000000 0.000000 0.000000 0.027526 0.00000 0.049884 0.000000 0.000000 0.000000 0.028005 0.000000 0.0 0.000000 0.000000 0.054697 0.019992 0.000000 0.000000 0.028019 0.000000 0.000000 0.000000 0.000000 0.000000 0.065149 0.000000 0.000000 0.000000 0.022867 0.000000 0.017673 0.000000 0.063509 0.000000 0.000000 0.000000 0.014239 0.000000 0.000000 0.000000 0.031900 0.000000 0.026975 0.015673 0.017492 0.000000 0.046614 0.000000 0.012855 0.000000 0.011278 0.000000 0.0 0.000000 0.02043 0.049019 0.025817 0.000000 0.000000 0.000000 0.020433 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.036187 0.000000 0.000000 0.021835 0.000000 0.000000 0.015545 0.000000 0.047938 0.000000 0.000000 0.000000 0.000000 0.021764 0.000000 0.000000 0.000000 0.000000 0.040164 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031292 0.015370 0.000000 0.015373 0.024578 0.039625 0.000000 0.070209 0.027642 0.000000 0.000000 0.000000 0.000000 0.000000 0.065755 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027354 0.000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.060556 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.015302 0.000000 0.000000 0.028020 0.0 0.026504 0.000000 0.023431 0.0 0.000000 0.000000 0.011992 0.000000 0.000000 0.000000 0.000000 0.026296 0.000000 0.020343 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035023 0.020180 0.000000 0.000000 0.019336 0.000000 0.000000 0.016215 0.015469 0.000000 0.000000 0.000000 0.000000 0.028633 0.000000 0.039551 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015469 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.070895 0.016819 0.045387 0.012185 0.012185 0.000000 0.012185 0.026955 0.015844 0.000000 0.000000 0.000000 0.000000 0.088911 0.000000 0.000000 0.000000 0.044855 0.000000 0.125902 0.053323 0.000000 0.000000 0.000000 0.020066 0.000000 0.000000 0.000000 0.033263 0.021586 0.000000 0.000000 0.014489 0.000000 0.012894 0.012227 0.00000 0.000000 0.050889 0.015815 0.000000 0.024046 0.000000 0.000000 0.000000 0.000000 0.000000 0.013154 0.000000 0.019328 0.027854 0.000000 0.000000 0.000000 0.020088 0.000000 0.000000 0.000000 0.092450 0.000000 0.019037 0.028763 0.000000 0.027837 0.000000 0.000000 0.118653 0.000000 0.039668 0.000000 0.000000 0.0 0.000000 0.000000 0.030175 0.000000 0.014408 0.000000 0.015425 0.000000 0.000000 0.000000 0.000000 0.064149 0.049949 0.065260 0.000000 0.000000 0.000000 0.000000 0.017384 0.000000 0.000000 0.000000 0.000000 0.020599 0.000000 0.016214 0.000000 0.000000 0.000000 0.014027 0.041616 0.020305 0.018299 0.022557 0.018338 0.000000 0.000000 0.056533 0.000000 0.000000 0.0 0.000000 0.000000 0.041256 0.000000 0.000000 0.072107 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052744 0.000000 0.021180 0.00000 0.000000 0.000000 0.028791 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025755 0.000000 0.000000 0.000000 0.000000 0.000000 0.015097 0.000000 0.000000 0.000000 0.010248 0.000000 0.000000 0.094063 0.015673 0.000000 0.036000 0.000000 0.071398 0.000000 0.000000 0.000000 0.047245 0.000000 0.000000 0.000000 0.028307 0.000000 0.000000 0.020035 0.000000 0.000000 0.000000 0.062364 0.000000 0.000000 0.049271 0.000000 0.000000 0.021947 0.000000 0.000000 0.038566 0.000000 0.000000 0.013360 0.026406 0.064858 0.000000 0.044179 0.000000 0.000000 0.030075 0.000000 0.022699 0.023574 0.000000 0.028594 0.000000 0.000000 0.060005 0.000000 0.000000 0.000000 0.015327 0.066371 0.014688 0.000000 0.015619 0.017399 0.000000 0.015785 0.000000 0.000000 0.028269 0.058233 0.000000 0.013735 0.029808 0.016717 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.012803 0.000000 0.000000 0.000000 0.035526 0.024892 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016676 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019532 0.000000 0.028777 0.000000 0.020720 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.115828 0.000000 0.045467 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.069827 0.014857 0.032901 0.000000 0.000000 0.000000 0.000000 0.000000 0.034708 0.023740 0.000000 0.079747 0.049635 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020642 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019765 0.000000 0.07814 0.000000 0.012394 0.000000 0.023267 0.000000 0.018291 0.0 0.000000 0.012877 0.000000 0.016318 0.015082 0.015982 0.016289 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013627 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.039738 0.000000 0.000000 0.029169 0.014771 0.000000 0.000000 0.066010 0.000000 0.023616 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.023216 0.0 0.000000 0.000000 0.054917 0.015892 0.000000 0.032801 0.024566 0.018583 0.000000 0.019405 0.000000 0.000000 0.023225 0.000000 0.065856 0.00000 0.000000 0.000000 0.000000 0.046734 0.026941 0.000000 0.040253 0.066148 0.000000 0.000000 0.000000 0.043954 0.000000 0.000000 0.00000 0.000000 0.013855 0.000000 0.0 0.022447 0.000000 0.000000 0.000000 0.022673 0.024290 0.000000 0.012592 0.000000 0.000000 0.000000 0.031504 0.030829 0.035054 0.000000 0.043195 0.000000 0.000000 0.014673 0.000000 0.035185 0.000000 0.000000 0.000000 0.000000 0.000000 0.044219 0.0 0.000000 0.000000 0.103715 0.064117 0.000000 0.021214 0.016782 0.000000 0.012507 0.0 0.000000 0.056998 0.015480 0.000000 0.000000 0.000000 0.000000 0.000000 0.034626 0.000000 0.017080 0.019140 0.014508 0.012199 0.030212 0.000000 0.000000 0.027499 0.000000 0.000000 0.036739 0.013645 0.000000 0.000000 0.000000 0.000000 0.00000 0.078122 0.000000 0.000000 0.000000 0.000000 0.000000 0.022126 0.024807 0.000000 0.000000 0.000000 0.000000 0.028436 0.000000 0.000000 0.000000 0.014131 0.000000 0.031928 0.000000 0.000000 0.000000 0.088283 0.021214 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019729 0.000000 0.014846 0.030914 0.043977 0.016250 0.081637 0.000000 0.033966 0.016175 0.000000 0.000000 0.000000 0.035058 0.000000 0.00000 0.000000 0.023534 0.000000 0.000000 0.000000 0.017827 0.000000 0.000000 0.000000 0.014177 0.000000 0.027012 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026203 0.000000 0.018253 0.000000 0.044653 0.000000 0.025477 0.0 0.000000 0.000000 0.000000 0.000000 0.014926 0.000000 0.047006 0.000000 0.044338 0.000000 0.022060 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.018876 0.000000 0.028735 0.013907 0.000000 0.053291 0.000000 0.000000 0.012795 0.047621 0.024919 0.013648 0.082937 0.000000 0.00000 0.000000 0.063185 0.000000 0.000000 0.000000 0.013116 0.000000 0.000000 0.000000 0.000000 0.016973 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.085011 0.000000 0.061057 0.000000 0.020300 0.019128 0.000000 0.000000 0.000000 0.015842 0.0 0.000000 0.026016 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022461 0.000000 0.000000 0.000000 0.026060 0.0 0.000000 0.000000 0.000000 0.000000 0.057959 0.000000 0.0 0.000000 0.0 0.016567 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034445 0.080269 0.0 0.000000 0.000000 0.017113 0.000000 0.045603 0.000000 0.0 0.000000 0.000000 0.041066 0.025492 0.082077 0.000000 0.020292 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.064473 0.000000 0.000000 0.020634 0.109970 0.023489 0.000000 0.000000 0.031657 0.000000 0.082607 0.038670 0.000000 0.037838 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.064932 0.081359 0.000000 0.000000 0.000000 0.019145 0.000000 0.020684 0.000000 0.000000 0.000000 0.024034 0.00000 0.028651 0.000000 0.022668 0.020633 0.000000 0.000000 0.000000 0.023597 0.000000 0.000000 0.000000 0.038300 0.000000 0.020165 0.000000 0.000000 0.000000 0.000000 0.021798 0.048448 0.000000 0.000000 0.021247 0.000000 0.000000 0.0 0.044121 0.00000 0.040774 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.043906 0.030407 0.000000 0.000000 0.0 0.048525 0.018143 0.035680 0.000000 0.000000 0.000000 0.030519 0.000000 0.000000 0.046480 0.000000 0.000000 0.000000 0.000000 0.0 0.073656 0.000000 0.000000 0.000000 0.000000 0.040451 0.000000 0.000000 0.000000 0.045008 0.000000 0.000000 0.113817 0.000000 0.000000 0.027560 0.025896 0.103581 0.000000 0.013256 0.042888 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.022198 0.014039 0.012863 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.029493 0.0 0.00000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.042450 0.000000 0.000000 0.020097 0.000000 0.00000 0.045426 0.000000 0.000000 0.000000 0.000000 0.029261 0.000000 0.000000 0.000000 0.000000 0.000000 0.027835 0.000000 0.000000 0.000000 0.000000 0.000000 0.024757 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.029587 0.0 0.000000 0.176967 0.000000 0.000000 0.049062 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.013578 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.019964 0.00000 0.000000 0.037752 0.025619 0.051214 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.113817 0.016773 0.000000 0.031177 0.0 0.000000 0.000000 0.061558 0.000000 0.000000 0.000000 0.000000 0.056588 0.000000 0.059856 0.000000 0.000000 0.000000 0.000000 0.056325 0.000000 0.000000 0.024284 0.000000 0.016645 0.000000 0.000000 0.031151 0.000000 0.000000 0.047418 0.121814 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.013824 0.000000 0.000000 0.027885 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.029602 0.000000 0.045989 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058674 0.000000 0.000000 0.000000 0.016537 0.00000 0.030798 0.020165 0.000000 0.016465 0.041326 0.000000 0.0 0.126894 0.00000 0.0 0.090817 0.000000 0.000000 0.000000 0.000000 0.000000 0.023203 0.000000 0.0 0.000000 0.000000 0.000000 0.015957 0.000000 0.000000 0.036651 0.023855 0.000000 0.000000 0.000000 0.000000 0.000000 0.04669 0.092906 0.000000 0.000000 0.000000 0.015285 0.000000 0.021498 0.000000 0.025618 0.000000 0.000000 0.0 0.000000 0.000000 0.017337 0.000000 0.019033 0.000000 0.000000 0.048014 0.0 0.000000 0.037515 0.000000 0.019432 0.000000 0.000000 0.032026 0.000000 0.000000 0.0 0.000000 0.000000 0.00000 0.0 0.000000 0.000000 0.000000 0.000000 0.038264 0.000000 0.024912 0.074218 0.000000 0.000000 0.027246 0.076013 0.000000 0.0 0.000000 0.016206 0.000000 0.000000 0.000000 0.028156 0.000000 0.000000 0.028836 0.037735 0.041311 0.072049 0.000000 0.000000 0.015608 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.053524 0.000000 0.000000 0.000000 0.022948 0.000000 0.0 0.0 0.077503 0.000000 0.000000 0.000000 0.000000 0.000000 0.013028 0.000000 0.00000 0.000000 0.034216 0.000000 0.000000 0.034832 0.000000 0.000000 0.000000 0.000000 0.035216 0.0 0.018646 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.017370 0.000000 0.000000 0.000000 0.081232 0.113817 0.113817 0.000000 0.000000 0.00000 0.00000 0.0 0.000000 0.016042 0.052330 0.000000 0.00000 0.000000 0.000000 0.016260 0.000000 0.040281 0.024247 0.017463 0.0 0.000000 0.000000 0.0 0.000000 0.019233 0.052563 0.015253 0.000000 0.000000 0.082767 0.067842 0.000000 0.000000 0.025277 0.000000 0.023959 0.000000 0.0000 0.000000 0.024525 0.000000 0.025840 0.0 0.000000 0.018866 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018417 0.041269 0.000000 0.046098 0.047664 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.022450 0.000000 0.000000 0.000000 0.000000 0.015969 0.000000 0.000000 0.000000 0.000000 0.000000 0.172474 0.000000 0.029843 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.030501 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021527 0.090082 0.016077 0.000000 0.0 0.058115 0.000000 0.021590 0.000000 0.000000 0.000000 0.00000 0.022070 0.020868 0.079666 0.025137 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.127141 0.000000 0.039758 0.000000 0.000000 0.000000 0.029368 0.029476 0.0 0.015897 0.000000 0.000000 0.017927 0.000000 0.000000 0.000000 0.024281 0.0 0.045855 0.0 0.020646 0.000000 0.000000 0.000000 0.034791 0.000000 0.026566 0.058654 0.020414 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024170 0.000000 0.119849 0.000000 0.016322 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027371 0.050473 0.000000 0.000000 0.029612 0.000000 0.000000 0.181201 0.000000 0.022341 0.017140 0.000000 0.016246 0.000000 0.000000 0.000000 0.021868 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.080464 0.000000 0.000000 0.000000 0.000000 0.000000 0.019954 0.032736 0.018311 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026154 0.000000 0.000000 0.020798 0.027010 0.000000 0.000000 0.0 0.021451 0.017040 0.000000 0.000000 0.063147 0.051595 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045931 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.059860 0.024551 0.050111 0.000000 0.030735 0.000000 0.024766 0.026051 0.000000 0.000000 0.000000 0.000000 0.030763 0.000000 0.000000 0.000000 0.000000 0.022722 0.000000 0.026708 0.049521 0.000000 0.000000 0.000000 0.000000 0.042684 0.00000 0.016080 0.000000 0.0 0.046140 0.000000 0.019665 0.050609 0.000000 0.015635 0.000000 0.0 0.014329 0.000000 0.000000 0.0 0.016181 0.000000 0.000000 0.000000 0.000000 0.030456 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.057507 0.047789 0.000000 0.032324 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.063040 0.000000 0.000000 0.000000 0.038475 0.027172 0.044133 0.000000 0.055981 0.000000 0.0 0.000000 0.072217 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016493 0.000000 0.000000 0.000000 0.000000 0.021253 0.000000 0.000000 0.000000 0.013737 0.000000 0.011359 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.055844 0.000000 0.000000 0.000000 0.016170 0.000000 0.000000 0.031864 0.000000 0.000000 0.000000 0.020336 0.000000 0.000000 0.000000 0.000000 0.000000 0.019804 0.000000 0.016951 0.064232 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.013571 0.034678 0.000000 0.000000 0.000000 0.000000 0.000000 0.075701 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025890 0.027462 0.028149 0.000000 0.000000 0.000000 0.026821 0.022198 0.016999 0.019399 0.014463 0.000000 0.000000 0.000000 0.000000 0.000000 0.019945 0.000000 0.000000 0.012571 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018961 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.068372 0.017013 0.000000 0.000000 0.000000 0.00000 0.000000 0.017088 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.079386 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.057397 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.012810 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.078567 0.084404 0.035783 0.000000 0.056207 0.046571 0.082251 0.077001 0.000000 0.000000 0.048582 0.016257 0.056887 0.000000 0.055815 0.025227 0.000000 0.029716 0.000000 0.000000 0.035520 0.000000 0.015752 0.000000 0.000000 0.024872 0.000000 0.000000 0.027002 0.050315 0.000000 0.000000 0.040339 0.059432 0.000000 0.000000 0.015406 0.000000 0.000000 0.011468 0.000000 0.012948 0.000000 0.000000 0.0 0.000000 0.000000 0.022030 0.000000 0.000000 0.000000 0.000000 0.013368 0.000000 0.000000 0.000000 0.000000 0.031021 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.013036 0.0 0.000000 0.018121 0.000000 0.013982 0.027677 0.0 0.000000 0.000000 0.000000 0.000000 0.012815 0.000000 0.000000 0.043359 0.0 0.000000 0.019947 0.018957 0.014122 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.032773 0.000000 0.000000 0.029531 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022177 0.0 0.022177 0.000000 0.000000 0.019595 0.0 0.000000 0.014761 0.000000 0.000000 0.018221 0.014784 0.019595 0.000000 0.020344 0.000000 0.00000 0.000000 0.000000 0.000000 0.050083 0.018986 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014720 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.011991 0.000000 0.000000 0.015138 0.000000 0.000000 0.000000 0.000000 0.020772 0.036029 0.000000 0.028411 0.017537 0.000000 0.000000 0.047331 0.000000 0.000000 0.000000 0.017568 0.000000 0.029111 0.016695 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019529 0.084815 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016641 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.024971 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.021177 0.058846 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025467 0.015988 0.000000 0.000000 0.026801 0.000000 0.033332 0.025862 0.041606 0.000000 0.035946 0.050258 0.000000 0.018660 0.044533 0.000000 0.021717 0.000000 0.0 0.041756 0.000000 0.000000 0.000000 0.036722 0.023769 0.082094 0.000000 0.000000 0.000000 0.020817 0.016161 0.000000 0.016095 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.014666 0.000000 0.000000 0.000000 0.000000 0.000000 0.021655 0.028808 0.000000 0.000000 0.022501 0.020494 0.000000 0.000000 0.000000 0.014774 0.000000 0.000000 0.042290 0.000000 0.000000 0.0 0.016480 0.000000 0.000000 0.000000 0.024179 0.000000 0.000000 0.000000 0.022717 0.02044 0.000000 0.000000 0.00000 0.000000 0.000000 0.013441 0.000000 0.0 0.000000 0.000000 0.032444 0.000000 0.000000 0.025852 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022109 0.000000 0.000000 0.014617 0.016888 0.000000 0.000000 0.000000 0.021620 0.000000 0.000000 0.000000 0.022845 0.000000 0.000000 0.000000 0.016962 0.055290 0.016435 0.000000 0.043359 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.038878 0.015761 0.000000 0.021363 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016768 0.000000 0.000000 0.000000 0.000000 0.000000 0.019603 0.000000 0.000000 0.000000 0.000000 0.071700 0.000000 0.000000 0.000000 0.000000 0.000000 0.020041 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.039928 0.000000 0.030060 0.000000 0.000000 0.020009 0.018570 0.026216 0.057268 0.055351 0.000000 0.000000 0.014341 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024168 0.024221 0.064881 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022803 0.000000 0.017393 0.0 0.059514 0.020939 0.000000 0.000000 0.000000 0.058484 0.000000 0.000000 0.000000 0.000000 0.014971 0.000000 0.000000 0.00000 0.018213 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015250 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.054873 0.000000 0.000000 0.000000 0.000000 0.000000 0.015406 0.000000 0.054637 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018920 0.000000 0.000000 0.022024 0.000000 0.017237 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043381 0.014719 0.023898 0.000000 0.000000 0.000000 0.000000 0.000000 0.100729 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.012358 0.000000 0.000000 0.000000 0.018555 0.000000 0.022868 0.000000 0.000000 0.027107 0.000000 0.000000 0.000000 0.000000 0.018218 0.0 0.039152 0.000000 0.000000 0.000000 0.000000 0.017139 0.000000 0.0000 0.036329 0.000000 0.000000 0.000000 0.041303 0.000000 0.000000 0.014413 0.015753 0.000000 0.000000 0.016698 0.013876 0.000000 0.000000 0.000000 0.041934 0.014700 0.000000 0.000000 0.015784 0.000000 0.051705 0.000000 0.000000 0.000000 0.013936 0.000000 0.013706 0.00000 0.000000 0.017563 0.000000 0.000000 0.000000 0.0 0.020416 0.000000 0.020608 0.000000 0.019728 0.062091 0.000000 0.000000 0.014349 0.000000 0.000000 0.000000 0.000000 0.000000 0.027548 0.000000 0.000000 0.000000 0.000000 0.024634 0.000000 0.000000 0.000000 0.000000 0.033023 0.043805 0.036903 0.021010 0.000000 0.076008 0.0 0.000000 0.000000 0.000000 0.019293 0.000000 0.000000 0.018022 0.013600 0.015562 0.053272 0.000000 0.000000 0.000000 0.000000 0.000000 0.013161 0.000000 0.000000 0.000000 0.022292 0.000000 0.023340 0.000000 0.000000 0.000000 0.000000 0.000000 0.038909 0.000000 0.119260 0.079878 0.000000 0.028959 0.021907 0.000000 0.017631 0.210311 0.017317 0.000000 0.033155 0.000000 0.023855 0.000000 0.000000 0.000000 0.012333 0.000000 0.000000 0.0 0.053863 0.019146 0.000000 0.0 0.000000 0.000000 0.000000 0.023221 0.041662 0.000000 0.074065 0.057221 0.030325 0.000000 0.040848 0.030867 0.016924 0.000000 0.020751 0.022778 0.000000 0.000000 0.020796 0.032073 0.000000 0.000000 0.000000 0.000000 0.000000 0.036820 0.000000 0.026051 0.000000 0.000000 0.026033 0.055822 0.022860 0.000000 0.000000 0.000000 0.017610 0.000000 0.092846 0.000000 0.034155 0.025581 0.000000 0.045970 0.031425 0.022046 0.000000 0.125431 0.136480 0.000000 0.032080 0.112979 0.000000 0.028157 0.000000 0.000000 0.016140 0.072215 0.000000 0.137623 0.000000 0.000000 0.000000 0.018156 0.000000 0.055299 0.059913 0.000000 0.032524 0.000000 0.000000 0.023260 0.027106 0.030151 0.026875 0.036204 0.015955 0.037649 0.019059 0.000000 0.000000 0.060948 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.119824 0.000000 0.000000 0.000000 0.042275 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043630 0.000000 0.000000 0.056512 0.000000 0.000000 0.101523 0.000000 0.000000 0.000000 0.039070 0.000000 0.079878 0.000000 0.000000 0.079825 0.040770 0.161928 0.000000 0.000000 0.147416 0.082886 0.027060 0.000000 0.000000 0.031697 0.031072 0.029431 0.000000 0.000000 0.000000 0.126503 0.016917 0.000000 0.117185 0.104314 0.0 0.000000 0.000000 0.000000 0.0 0.088275 0.083367 0.093692 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.037737 0.000000 0.068588 0.000000 0.000000 0.016417 0.000000 0.030634 0.000000 0.000000 0.000000 0.045160 0.119840 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028115 0.000000 0.034181 0.018749 0.000000 0.000000 0.000000 0.000000 0.016657 0.000000 0.000000 0.046236 0.057938 0.0 0.024431 0.024545 0.000000 0.000000 0.000000 0.076799 0.020903 0.058195 0.110220 0.106634 0.032918 0.000000 0.073182 0.000000 0.000000 0.195613 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.029182 0.000000 0.018425 0.030102 0.000000 0.000000 0.000000 0.109239 0.022112 0.039534 0.000000 0.000000 0.022150 0.000000 0.000000 0.000000 0.020106 0.080482 0.000000 0.000000 0.068565 0.060879 0.050145 0.028677 0.000000 0.000000 0.000000 0.00000 0.000000 0.018603 0.000000 0.000000 0.000000 0.000000 0.040991 0.061974 0.000000 0.030125 0.018241 0.000000 0.063415 0.018922 0.045839 0.000000 0.021574 0.000000 0.068197 0.067656 0.000000 0.018932 0.000000 0.030497 0.085874 0.024564 0.023355 0.038029 0.033854 0.000000 0.024433 0.000000 0.000000 0.000000 0.000000 0.018069 0.017176 0.033174 0.000000 0.000000 0.000000 0.040833 0.000000 0.000000 0.017608 0.018135 0.000000 0.000000 0.021386 0.028018 0.059696 0.000000 0.000000 0.072846 0.116675 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.075257 0.000000 0.068137 0.037259 0.000000 0.000000 0.041299 0.000000 0.070171 0.000000 0.000000 0.000000 0.050694 0.0 0.017103 0.000000 0.085667 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.025108 0.000000 0.000000 0.000000 0.000000 0.019443 0.062835 0.000000 0.000000 0.023625 0.034778 0.000000 0.023908 0.023108 0.058264 0.000000 0.000000 0.019555 0.000000 0.000000 0.124253 0.048540 0.076250 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016463 0.000000 0.109591 0.000000 0.000000 0.016321 0.000000 0.0 0.0 0.023845 0.000000 0.000000 0.00000 0.000000 0.000000 0.038601 0.063124 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.060632 0.062837 0.000000 0.069727 0.022436 0.000000 0.000000 0.084995 0.081294 0.000000 0.034064 0.078399 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.062827 0.021449 0.000000 0.027707 0.000000 0.038453 0.000000 0.000000 0.000000 0.000000 0.073348 0.000000 0.000000 0.000000 0.085184 0.000000 0.000000 0.000000 0.091006 0.000000 0.000000 0.000000 0.062001 0.000000 0.000000 0.000000 0.042523 0.000000 0.000000 0.000000 0.018134 0.0 0.000000 0.000000 0.032652 0.000000 0.0 0.000000 0.018180 0.000000 0.019931 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035387 0.023816 0.000000 0.030963 0.000000 0.000000 0.040086 0.029989 0.016557 0.000000 0.000000 0.000000 0.141826 0.141826 0.000000 0.000000 0.028041 0.000000 0.000000 0.000000 0.028078 0.028827 0.000000 0.059771 0.170477 0.039586 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.029472 0.000000 0.000000 0.00000 0.116977 0.000000 0.031966 0.047278 0.000000 0.034432 0.035572 0.000000 0.000000 0.022616 0.029461 0.044467 0.000000 0.000000 0.000000 0.000000 0.000000 0.015774 0.000000 0.054382 0.000000 0.000000 0.016191 0.000000 0.065813 0.022867 0.0 0.000000 0.077077 0.000000 0.032664 0.014236 0.000000 0.0000 0.000000 0.000000 0.147694 0.0 0.0 0.000000 0.122032 0.0 0.000000 0.000000 0.000000 0.020231 0.0 0.000000 0.083426 0.000000 0.000000 0.017746 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.074077 0.017515 0.000000 0.000000 0.026612 0.000000 0.000000 0.000000 0.000000 0.047546 0.044692 0.000000 0.000000 0.000000 0.000000 0.038005 0.026236 0.0 0.018147 0.034440 0.022293 0.024523 0.033564 0.000000 0.000000 0.072909 0.000000 0.085992 0.032734 0.000000 0.038512 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028001 0.000000 0.000000 0.000000 0.039797 0.000000 0.000000 0.020275 0.000000 0.000000 0.017019 0.000000 0.000000 0.000000 0.021252 0.013923 0.030695 0.000000 0.000000 0.063242 0.029674 0.000000 0.039649 0.109631 0.027454 0.000000 0.019704 0.134607 0.041445 0.000000 0.000000 0.000000 0.000000 0.019166 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017296 0.000000 0.073982 0.000000 0.000000 0.000000 0.000000 0.000000 0.026274 0.000000 0.000000 0.000000 0.000000 0.063744 0.000000 0.083780 0.018978 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017385 0.00000 0.021582 0.000000 0.000000 0.000000 0.000000 0.0 0.015316 0.089627 0.0 0.000000 0.000000 0.000000 0.000000 0.020363 0.044613 0.000000 0.065901 0.042763 0.000000 0.000000 0.000000 0.035954 0.000000 0.000000 0.040309 0.022631 0.000000 0.053409 0.000000 0.015628 0.000000 0.032004 0.000000 0.000000 0.000000 0.038760 0.000000 0.000000 0.000000 0.000000 0.078552 0.000000 0.000000 0.000000 0.000000 0.019502 0.000000 0.000000 0.000000 0.059349 0.000000 0.019527 0.000000 0.025631 0.000000 0.000000 0.000000 0.090049 0.000000 0.085263 0.000000 0.000000 0.000000 0.023305 0.000000 0.000000 0.049354 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025405 0.068097 0.000000 0.000000 0.040957 0.000000 0.019914 0.000000 0.038881 0.000000 0.000000 0.029519 0.092331 0.000000 0.000000 0.000000 0.020638 0.029805 0.000000 0.000000 0.000000 0.000000 0.000000 0.092395 0.000000 0.078048 0.000000 0.068218 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.119947 0.000000 0.066092 0.0 0.016214 0.036794 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.032216 0.0 0.0 0.017967 0.000000 0.019998 0.046775 0.000000 0.094473 0.000000 0.000000 0.000000 0.015231 0.000000 0.000000 0.057168 0.000000 0.000000 0.018053 0.063298 0.000000 0.021323 0.0 0.000000 0.118600 0.051805 0.000000 0.000000 0.000000 0.161336 0.000000 0.116778 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018762 0.091087 0.000000 0.032686 0.030379 0.018750 0.000000 0.070979 0.080872 0.000000 0.000000 0.070740 0.000000 0.000000 0.000000 0.000000 0.000000 0.027144 0.018971 0.000000 0.075368 0.000000 0.054012 0.074126 0.000000 0.000000 0.000000 0.000000 0.000000 0.043854 0.000000 0.000000 0.000000 0.050545 0.020640 0.048937 0.020229 0.000000 0.000000 0.016682 0.000000 0.000000 0.065746 0.032015 0.000000 0.000000 0.000000 0.078363 0.093269 0.000000 0.163624 0.070571 0.071712 0.016956 0.000000 0.000000 0.000000 0.023044 0.137861 0.000000 0.020868 0.000000 0.028734 0.00000 0.000000 0.000000 0.000000 0.053090 0.000000 0.000000 0.000000 0.000000 0.000000 0.129059 0.023668 0.000000 0.000000 0.000000 0.0 0.0 0.064966 0.000000 0.000000 0.108120 0.000000 0.000000 0.000000 0.0 0.120555 0.040399 0.052754 0.000000 0.000000 0.026607 0.057278 0.000000 0.035664 0.109909 0.036551 0.000000 0.000000 0.025068 0.000000 0.000000 0.000000 0.000000 0.021221 0.037663 0.000000 0.018684 0.051947 0.032773 0.000000 0.000000 0.000000 0.068715 0.029310 0.000000 0.000000 0.022738 0.000000 0.000000 0.000000 0.026210 0.000000 0.000000 0.044763 0.000000 0.000000 0.000000 0.000000 0.06086 0.048185 0.000000 0.047853 0.068531 0.000000 0.000000 0.028375 0.000000 0.000000 0.000000 0.020919 0.000000 0.000000 0.134661 0.063746 0.024988 0.000000 0.032537 0.076725 0.00000 0.000000 0.021481 0.031547 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021481 0.000000 0.000000 0.000000 0.000000 0.036477 0.022005 0.000000 0.000000 0.032949 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.075543 0.050030 0.000000 0.000000 0.019148 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016125 0.059194 0.0 0.000000 0.000000 0.000000 0.085651 0.076240 0.000000 0.038826 0.060173 0.000000 0.035640 0.000000 0.000000 0.000000 0.000000 0.043224 0.000000 0.000000 0.039237 0.040370 0.000000 0.065823 0.000000 0.024483 0.000000 0.000000 0.000000 0.000000 0.017562 0.063534 0.000000 0.000000 0.017141 0.000000 0.000000 0.072374 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.027467 0.000000 0.000000 0.090243 0.016768 0.000000 0.035173 0.063995 0.019162 0.000000 0.071137 0.000000 0.000000 0.035192 0.000000 0.000000 0.019904 0.0 0.063184 0.040995 0.000000 0.000000 0.000000 0.000000 0.015850 0.017761 0.000000 0.017631 0.000000 0.000000 0.028000 0.000000 0.074400 0.000000 0.000000 0.032424 0.072374 0.000000 0.000000 0.026171 0.079377 0.000000 0.054268 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.035184 0.178865 0.107151 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.117438 0.0 0.153206 0.056685 0.017758 0.018655 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.063046 0.0 0.0 0.034726 0.0 0.000000 0.023315 0.000000 0.000000 0.000000 0.045736 0.000000 0.000000 0.020501 0.038992 0.026627 0.000000 0.000000 0.029256 0.126788 0.000000 0.000000 0.048195 0.000000 0.000000 0.019038 0.000000 0.035215 0.000000 0.030177 0.016099 0.000000 0.000000 0.0 0.000000 0.115735 0.000000 0.000000 0.000000 0.021073 0.000000 0.019895 0.000000 0.000000 0.023087 0.000000 0.000000 0.028645 0.000000 0.065361 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020829 0.000000 0.000000 0.000000 0.029260 0.017784 0.000000 0.000000 0.050866 0.000000 0.000000 0.019282 0.016196 0.000000 0.000000 0.020688 0.049273 0.000000 0.000000 0.033377 0.021638 0.0 0.000000 0.022189 0.025278 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024765 0.022884 0.027107 0.064952 0.000000 0.000000 0.000000 0.043673 0.000000 0.000000 0.000000 0.020091 0.027128 0.023810 0.000000 0.000000 0.063947 0.026701 0.000000 0.000000 0.000000 0.000000 0.046623 0.022394 0.024299 0.016022 0.027584 0.000000 0.000000 0.026948 0.000000 0.000000 0.000000 0.030634 0.030634 0.020400 0.000000 0.018826 0.040703 0.000000 0.027591 0.000000 0.000000 0.029539 0.019365 0.016004 0.021388 0.111908 0.124165 0.000000 0.067392 0.000000 0.000000 0.000000 0.000000 0.087545 0.000000 0.094528 0.000000 0.110092 0.000000 0.000000 0.000000 0.020132 0.044866 0.034403 0.072172 0.076642 0.189241 0.044626 0.000000 0.000000 0.019468 0.030718 0.026692 0.173462 0.000000 0.023464 0.034030 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.079511 0.148752 0.000000 0.000000 0.031872 0.000000 0.000000 0.000000 0.000000 0.000000 0.032445 0.072517 0.019800 0.000000 0.000000 0.041114 0.070047 0.000000 0.000000 0.094838 0.042653 0.000000 0.000000 0.000000 0.029205 0.048928 0.038729 0.017441 0.000000 0.059122 0.000000 0.040238 0.000000 0.000000 0.000000 0.030959 0.000000 0.025011 0.116151 0.000000 0.018517 0.000000 0.000000 0.022306 0.000000 0.084398 0.117838 0.000000 0.024667 0.000000 0.000000 0.000000 0.075885 0.106729 0.019590 0.011944 0.191875 0.000000 0.020666 0.027610 0.018427 0.000000 0.041879 0.116989 0.000000 0.041618 0.000000 0.020809 0.029114 0.00000 0.072138 0.040416 0.000000 0.049186 0.000000 0.000000 0.077112 0.136956 0.102757 0.000000 0.000000 0.000000 0.069466 0.024965 0.053097 0.018729 0.000000 0.021415 0.183496 0.000000 0.076024 0.036193 0.029013 0.000000 0.017846 0.000000 0.022948 0.000000 0.000000 0.000000 0.061235 0.000000 0.000000 0.000000 0.027985 0.057793 0.000000 0.000000 0.048243 0.028144 0.000000 0.0 0.032410 0.032530 0.000000 0.000000 0.000000 0.000000 0.000000 0.075350 0.000000 0.041545 0.000000 0.127904 0.000000 0.042826 0.000000 0.000000 0.018471 0.000000 0.000000 0.000000 0.000000 0.000000 0.081804 0.070840 0.000000 0.000000 0.077028 0.048137 0.000000 0.000000 0.000000 0.069521 0.038013 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.047375 0.020276 0.000000 0.020124 0.000000 0.019118 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.022604 0.101307 0.000000 0.059630 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.021933 0.000000 0.000000 0.000000 0.159494 0.000000 0.000000 0.033604 0.000000 0.000000 0.000000 0.040754 0.000000 0.000000 0.000000 0.000000 0.000000 0.030634 0.000000 0.000000 0.000000 0.000000 0.017142 0.043821 0.083978 0.000000 0.000000 0.000000 0.141506 0.045925 0.00000 0.000000 0.000000 0.065603 0.000000 0.000000 0.000000 0.045267 0.000000 0.058941 0.000000 0.027909 0.092057 0.000000 0.073911 0.013380 0.000000 0.000000 0.000000 0.067682 0.022500 0.081233 0.0 0.083579 0.000000 0.000000 0.053140 0.075967 0.089365 0.036863 0.000000 0.032166 0.000000 0.000000 0.060455 0.000000 0.000000 0.000000 0.000000 0.014320 0.000000 0.072104 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.038023 0.013819 0.0 0.000000 0.019492 0.000000 0.000000 0.064115 0.000000 0.000000 0.059210 0.000000 0.031503 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026430 0.000000 0.000000 0.000000 0.025623 0.000000 0.045409 0.054459 0.026666 0.037406 0.0 0.035713 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.029689 0.018658 0.000000 0.027013 0.061189 0.000000 0.036496 0.021296 0.018387 0.000000 0.000000 0.000000 0.041801 0.017644 0.000000 0.000000 0.000000 0.029639 0.000000 0.020302 0.000000 0.075854 0.000000 0.000000 0.038807 0.000000 0.000000 0.000000 0.0 0.013813 0.000000 0.015638 0.000000 0.033042 0.014220 0.028069 0.000000 0.000000 0.025850 0.000000 0.035897 0.000000 0.00000 0.000000 0.015717 0.000000 0.000000 0.074535 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030274 0.019431 0.000000 0.000000 0.024924 0.000000 0.030606 0.000000 0.041181 0.000000 0.026730 0.000000 0.000000 0.047005 0.000000 0.0000 0.000000 0.131472 0.027708 0.094170 0.019875 0.018221 0.000000 0.035080 0.0 0.000000 0.016995 0.023125 0.030005 0.023490 0.037486 0.000000 0.028200 0.000000 0.0 0.189234 0.027871 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040577 0.098937 0.062275 0.000000 0.000000 0.000000 0.089583 0.000000 0.000000 0.000000 0.051345 0.021973 0.112391 0.000000 0.018024 0.000000 0.02310 0.000000 0.000000 0.142708 0.000000 0.01505 0.028005 0.000000 0.000000 0.014111 0.000000 0.000000 0.000000 0.000000 0.0 0.130366 0.059653 0.000000 0.000000 0.000000 0.042991 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018594 0.000000 0.021014 0.068647 0.030312 0.095003 0.000000 0.000000 0.000000 0.026815 0.000000 0.000000 0.058636 0.000000 0.020572 0.000000 0.036972 0.018371 0.000000 0.000000 0.000000 0.062762 0.055378 0.000000 0.000000 0.000000 0.000000 0.051562 0.000000 0.043020 0.017882 0.000000 0.082077 0.000000 0.024919 0.000000 0.000000 0.045116 0.019697 0.000000 0.016915 0.000000 0.077547 0.147906 0.036875 0.000000 0.023440 0.028220 0.000000 0.060852 0.000000 0.000000 0.043803 0.000000 0.000000 0.039093 0.038176 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.038950 0.000000 0.026378 0.000000 0.000000 0.037494 0.000000 0.0 0.036456 0.069712 0.041291 0.000000 0.000000 0.000000 0.000000 0.028322 0.000000 0.066117 0.024912 0.045836 0.000000 0.000000 0.000000 0.000000 0.035178 0.0 0.000000 0.000000 0.089998 0.000000 0.000000 0.020167 0.140612 0.045897 0.017799 0.037132 0.096331 0.000000 0.024661 0.023121 0.090288 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.059879 0.000000 0.000000 0.000000 0.070206 0.016570 0.040542 0.000000 0.000000 0.000000 0.032064 0.040198 0.138750 0.000000 0.000000 0.027022 0.000000 0.214351 0.000000 0.000000 0.023642 0.081037 0.040964 0.000000 0.016615 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.200706 0.000000 0.021931 0.000000 0.192240 0.037293 0.000000 0.046402 0.000000 0.000000 0.000000 0.000000 0.063271 0.000000 0.016150 0.000000 0.020169 0.040578 0.037099 0.000000 0.079954 0.000000 0.00000 0.031694 0.000000 0.017007 0.000000 0.000000 0.000000 0.000000 0.022973 0.000000 0.000000 0.042773 0.000000 0.042180 0.021146 0.022336 0.000000 0.000000 0.000000 0.00000 0.058855 0.000000 0.000000 0.017275 0.023098 0.000000 0.035897 0.000000 0.000000 0.000000 0.024640 0.000000 0.021921 0.000000 0.000000 0.000000 0.054404 0.000000 0.075307 0.026998 0.075955 0.000000 0.000000 0.00000 0.000000 0.022537 0.000000 0.043701 0.000000 0.000000 0.017360 0.000000 0.000000 0.000000 0.037372 0.000000 0.000000 0.000000 0.000000 0.127245 0.067736 0.000000 0.042043 0.000000 0.000000 0.036014 0.015014 0.039963 0.017970 0.0 0.000000 0.000000 0.027424 0.023636 0.000000 0.024042 0.062421 0.082753 0.078884 0.000000 0.045449 0.000000 0.000000 0.000000 0.000000 0.000000 0.014553 0.067146 0.016292 0.000000 0.000000 0.000000 0.000000 0.011633 0.000000 0.000000 0.000000 0.000000 0.079913 0.024304 0.022723 0.000000 0.000000 0.000000 0.000000 0.000000 0.063278 0.000000 0.027494 0.032914 0.016424 0.105834 0.000000 0.0 0.074818 0.000000 0.000000 0.000000 0.000000 0.022001 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.024197 0.053973 0.000000 0.000000 0.000000 0.040770 0.069912 0.047892 0.000000 0.037773 0.0 0.078433 0.000000 0.000000 0.029049 0.0 0.0 0.000000 0.000000 0.081258 0.082907 0.000000 0.039818 0.045034 0.00000 0.000000 0.066940 0.017964 0.046936 0.023896 0.000000 0.000000 0.119779 0.000000 0.048468 0.000000 0.000000 0.000000 0.000000 0.000000 0.029761 0.000000 0.027350 0.000000 0.058257 0.00000 0.000000 0.000000 0.015695 0.000000 0.000000 0.025873 0.000000 0.052588 0.000000 0.000000 0.079570 0.000000 0.000000 0.000000 0.000000 0.000000 0.190906 0.027187 0.034689 0.028766 0.000000 0.000000 0.000000 0.034723 0.030570 0.000000 0.020813 0.019284 0.035907 0.020055 0.000000 0.084586 0.055110 0.069169 0.043591 0.168776 0.000000 0.000000 0.018399 0.028569 0.040592 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.023343 0.000000 0.000000 0.000000 0.079108 0.018391 0.020504 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.038692 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035534 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.087941 0.000000 0.000000 0.000000 0.046844 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033633 0.000000 0.000000 0.000000 0.00000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.028093 0.000000 0.000000 0.000000 0.059730 0.000000 0.00000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.00000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.015058 0.00000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.00000 0.025352 0.000000 0.000000 0.022380 0.000000 0.000000 0.050172 0.000000 0.000000 0.030180 0.033067 0.000000 0.026373 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028115 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058453 0.000000 0.046186 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029903 0.000000 0.029583 0.000000 0.042816 0.000000 0.0000 0.000000 0.000000 0.000000 0.036055 0.026361 0.000000 0.030348 0.000000 0.000000 0.026990 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027058 0.000000 0.024445 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.019878 0.036617 0.040551 0.037049 0.000000 0.000000 0.000000 0.066800 0.018764 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032660 0.039807 0.000000 0.000000 0.000000 0.000000 0.000000 0.043583 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.023869 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.00000 0.0 0.000000 0.000000 0.00000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.022565 0.000000 0.000000 0.000000 0.000000 0.028115 0.000000 0.000000 0.000000 0.060981 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.032241 0.000000 0.000000 0.000000 0.0 0.000000 0.059197 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.054551 0.000000 0.038489 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024280 0.000000 0.000000 0.020895 0.000000 0.000000 0.000000 0.000000 0.000000 0.019357 0.0 0.039771 0.000000 0.000000 0.000000 0.024530 0.000000 0.000000 0.028045 0.000000 0.000000 0.000000 0.000000 0.000000 0.033520 0.000000 0.045065 0.036737 0.021769 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024720 0.000000 0.027402 0.000000 0.058301 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.028752 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032220 0.000000 0.000000 0.000000 0.000000 0.030864 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.030507 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029469 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.00000 0.027794 0.000000 0.050973 0.000000 0.000000 0.000000 0.024872 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.048680 0.041330 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.086344 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024211 0.000000 0.016463 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.059005 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.059052 0.000000 0.000000 0.067936 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.055068 0.000000 0.000000 0.017137 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045368 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.050490 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.025344 0.000000 0.020480 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.021293 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.00000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.00000 0.00000 0.000000 0.000000 0.000000 0.000000 0.00000 0.043917 0.0 0.000000 0.000000 0.000000 0.0 0.040795 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.028408 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037908 0.000000 0.022817 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031821 0.000000 0.000000 0.029628 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026840 0.019703 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.050158 0.000000 0.050006 0.000000 0.000000 0.000000 0.000000 0.074753 0.000000 0.044946 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.025584 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.020135 0.000000 0.000000 0.021873 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.024525 0.0 0.000000 0.000000 0.000000 0.000000 0.03132 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.028470 0.000000 0.000000 0.000000 0.000000 0.000000 0.031430 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0000 0.024218 0.000000 0.000000 0.000000 0.034965 0.022223 0.000000 0.000000 0.031072 0.037124 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027306 0.000000 0.000000 0.000000 0.073632 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021806 0.000000 0.000000 0.000000 0.044101 0.000000 0.000000 0.034154 0.000000 0.0000 0.022864 0.019809 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.019249 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.044382 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.029395 0.000000 0.000000 0.000000 0.000000 0.000000 0.029000 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027857 0.000000 0.000000 0.000000 0.000000 0.029469 0.000000 0.000000 0.00000 0.000000 0.028732 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.035019 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.037881 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.043263 0.000000 0.000000 0.000000 0.0000 0.041107 0.036813 0.000000 0.000000 0.000000 0.083949 0.000000 0.000000 0.000000 0.000000 0.026093 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022837 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.044565 0.000000 0.000000 0.049355 0.000000 0.000000 0.000000 0.000000 0.103482 0.015929 0.000000 0.027823 0.000000 0.036361 0.000000 0.000000 0.000000 0.000000 0.029349 0.046952 0.000000 0.000000 0.040002 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.040047 0.000000 0.000000 0.000000 0.000000 0.024984 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.039886 0.000000 0.000000 0.000000 0.000000 0.040265 0.039103 0.022537 0.000000 0.000000 0.025576 0.000000 0.000000 0.000000 0.018496 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040876 0.00000 0.000000 0.037793 0.000000 0.000000 0.000000 0.037428 0.000000 0.000000 0.000000 0.025424 0.000000 0.000000 0.018284 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019910 0.062885 0.000000 0.022462 0.000000 0.00000 0.000000 0.000000 0.000000 0.029977 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.027737 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030232 0.000000 0.000000 0.033060 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.033060 0.000000 0.032241 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021585 0.025987 0.038408 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018276 0.000000 0.000000 0.000000 0.018618 0.000000 0.000000 0.029594 0.034735 0.0 0.00000 0.000000 0.000000 0.000000 0.026543 0.000000 0.000000 0.018188 0.000000 0.051509 0.000000 0.028215 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.037553 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020407 0.000000 0.000000 0.000000 0.028515 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.049550 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.028355 0.000000 0.000000 0.000000 0.000000 0.020619 0.000000 0.000000 0.091279 0.000000 0.000000 0.035792 0.000000 0.000000 0.000000 0.026196 0.000000 0.000000 0.021633 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.039709 0.000000 0.000000 0.000000 0.018734 0.000000 0.000000 0.000000 0.044370 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030106 0.022814 0.000000 0.026170 0.000000 0.000000 0.021146 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030749 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.012787 0.000000 0.016655 0.019565 0.036502 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.123191 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.023343 0.000000 0.000000 0.019175 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.036065 0.000000 0.000000 0.000000 0.000000 0.025919 0.000000 0.000000 0.0 0.026496 0.029507 0.029507 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.018496 0.000000 0.000000 0.000000 0.032732 0.000000 0.052368 0.000000 0.021439 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.033060 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.000000 0.037855 0.022912 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0000 0.000000 0.000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047715 0.027050 0.00000 0.000000 0.028055 0.000000 0.0 0.000000 0.033060 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.028959 0.000000 0.000000 0.029338 0.000000 0.000000 0.058409 0.028227 0.000000 0.000000 0.000000 0.000000 0.070268 0.000000 0.000000 0.000000 0.034286 0.000000 0.037678 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.022265 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.049249 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029549 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.029000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.084885 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023180 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.023587 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.021179 0.000000 0.000000 0.000000 0.000000 0.049220 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047876 0.000000 0.000000 0.000000 0.000000 0.038630 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020852 0.015959 0.000000 0.000000 0.038814 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.059203 0.031246 0.000000 0.027628 0.000000 0.000000 0.000000 0.000000 0.000000 0.041581 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021288 0.000000 0.0 0.031707 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.000000 0.000000 0.000000 0.026779 0.000000 0.000000 0.026011 0.0 0.000000 0.00000 0.018436 0.000000 0.0 0.061853 0.0000 0.000000 0.000000 0.000000 0.000000 0.058400 0.000000 0.028113 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029784 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023424 0.024901 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.048227 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.079831 0.051986 0.000000 0.127170 0.000000 0.000000 0.000000 0.044353 0.000000 0.000000 0.000000 0.000000 0.000000 0.083760 0.000000 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052591 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.082736 0.000000 0.000000 0.000000 0.034519 0.000000 0.021716 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.022629 0.000000 0.0 0.000000 0.018620 0.000000 0.000000 0.000000 0.00000 0.000000 0.022512 0.000000 0.000000 0.023228 0.030847 0.000000 0.000000 0.047846 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052346 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025451 0.000000 0.000000 0.00000 0.000000 0.037386 0.000000 0.000000 0.043358 0.000000 0.00000 0.000000 0.000000 0.019408 0.054848 0.035399 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.018748 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030242 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021737 0.00000 0.000000 0.027050 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.076346 0.000000 0.000000 0.027545 0.057340 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.00000 0.000000 0.00000 0.032241 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030755 0.000000 0.000000 0.030288 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015443 0.000000 0.000000 0.000000 0.000000 0.053712 0.000000 0.000000 0.000000 0.023666 0.000000 0.000000 0.000000 0.019931 0.042254 0.042014 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045439 0.000000 0.000000 0.000000 0.000000 0.000000 0.031610 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.021088 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019782 0.000000 0.000000 0.00000 0.028630 0.000000 0.000000 0.000000 0.000000 0.053763 0.000000 0.000000 0.000000 0.019292 0.000000 0.000000 0.000000 0.021013 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023388 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.015169 0.017400 0.000000 0.018907 0.022755 0.000000 0.000000 0.000000 0.000000 0.000000 0.016942 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.051101 0.000000 0.030888 0.043469 0.000000 0.000000 0.000000 0.000000 0.017819 0.000000 0.044850 0.000000 0.025859 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.079607 0.000000 0.000000 0.033155 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.00000 0.017930 0.000000 0.000000 0.000000 0.029507 0.028854 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021492 0.0000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022291 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.031678 0.000000 0.000000 0.029146 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.064368 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0000 0.000000 0.029000 0.000000 0.000000 0.0 0.044101 0.000000 0.021075 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.079862 0.0 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027846 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032804 0.000000 0.018327 0.000000 0.000000 0.019853 0.070738 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.032719 0.019988 0.0 0.000000 0.018606 0.000000 0.0 0.000000 0.025297 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.038579 0.000000 0.000000 0.0 0.0 0.000000 0.016141 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.080361 0.000000 0.000000 0.000000 0.039305 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.047876 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017147 0.000000 0.000000 0.000000 0.000000 0.00000 0.00000 0.000000 0.000000 0.018783 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.053763 0.000000 0.057501 0.054670 0.048516 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019113 0.000000 0.000000 0.000000 0.000000 0.031915 0.074414 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027160 0.050431 0.025773 0.00000 0.000000 0.000000 0.017976 0.000000 0.000000 0.0 0.000000 0.021374 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.048202 0.037310 0.000000 0.000000 0.000000 0.000000 0.000000 0.024328 0.000000 0.020516 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.024220 0.000000 0.0 0.0 0.000000 0.051440 0.000000 0.000000 0.042691 0.032421 0.037735 0.000000 0.017987 0.000000 0.000000 0.000000 0.000000 0.017934 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.054892 0.000000 0.000000 0.000000 0.000000 0.035770 0.000000 0.000000 0.000000 0.000000 0.034313 0.0 0.033269 0.029260 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.053459 0.000000 0.0 0.000000 0.047856 0.000000 0.028312 0.000000 0.000000 0.000000 0.000000 0.022886 0.027467 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.00000 0.000000 0.000000 0.027558 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025492 0.025492 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.027111 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.055669 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022034 0.000000 0.055725 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.030606 0.000000 0.0 0.000000 0.0 0.017913 0.00000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025339 0.000000 0.000000 0.000000 0.030507 0.00000 0.000000 0.038487 0.000000 0.038892 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045231 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.028335 0.000000 0.000000 0.000000 0.000000 0.030279 0.000000 0.042271 0.000000 0.033965 0.000000 0.059052 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.031741 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018944 0.00000 0.000000 0.064837 0.000000 0.000000 0.000000 0.00000 0.017142 0.000000 0.018720 0.000000 0.000000 0.000000 0.040798 0.000000 0.027636 0.000000 0.000000 0.000000 0.000000 0.035356 0.000000 0.00000 0.000000 0.025886 0.000000 0.050336 0.031341 0.000000 0.000000 0.000000 0.000000 0.029798 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.041363 0.000000 0.000000 0.000000 0.061566 0.000000 0.000000 0.000000 0.028133 0.000000 0.000000 0.018029 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.021714 0.000000 0.073164 0.060897 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019533 0.000000 0.000000 0.018467 0.000000 0.026182 0.000000 0.000000 0.000000 0.000000 0.000000 0.029375 0.000000 0.000000 0.029452 0.0 0.000000 0.022326 0.000000 0.000000 0.014169 0.000000 0.000000 0.000000 0.0 0.020716 0.000000 0.000000 0.000000 0.023141 0.055776 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.036978 0.021863 0.000000 0.000000 0.034681 0.000000 0.035779 0.0 0.000000 0.032109 0.000000 0.000000 0.026101 0.026817 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.062743 0.000000 0.000000 0.023676 0.000000 0.000000 0.029338 0.000000 0.000000 0.000000 0.049472 0.000000 0.000000 0.025784 0.000000 0.0 0.000000 0.0 0.000000 0.00000 0.000000 0.00000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.051158 0.000000 0.0 0.000000 0.0 0.026174 0.000000 0.000000 0.000000 0.057427 0.000000 0.0 0.026696 0.000000 0.0 0.021538 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.052559 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.059050 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028107 0.000000 0.000000 0.000000 0.030228 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.044101 0.000000 0.000000 0.000000 0.084279 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.033893 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.039213 0.000000 0.000000 0.00000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.027751 0.022464 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.048182 0.000000 0.000000 0.000000 0.000000 0.039305 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.00000 0.0 0.019923 0.045019 0.025717 0.044679 0.000000 0.000000 0.020881 0.026633 0.000000 0.000000 0.000000 0.027349 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027440 0.033471 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047364 0.000000 0.032817 0.000000 0.000000 0.031709 0.036936 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031897 0.052705 0.000000 0.041681 0.000000 0.000000 0.022337 0.000000 0.000000 0.027419 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018387 0.025107 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.00000 0.032545 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.030008 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.058556 0.000000 0.062728 0.00000 0.027737 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.027214 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041328 0.000000 0.000000 0.00000 0.000000 0.021560 0.000000 0.047432 0.000000 0.000000 0.067548 0.034357 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.026177 0.00000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037507 0.000000 0.000000 0.029469 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.019354 0.000000 0.040897 0.000000 0.023261 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.068736 0.000000 0.054349 0.000000 0.032561 0.000000 0.000000 0.000000 0.000000 0.000000 0.055392 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018620 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.036913 0.000000 0.000000 0.053720 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.132746 0.000000 0.016581 0.000000 0.000000 0.048833 0.048833 0.000000 0.000000 0.000000 0.064649 0.040607 0.000000 0.028218 0.057333 0.000000 0.000000 0.000000 0.023438 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.053044 0.024950 0.000000 0.000000 0.000000 0.000000 0.000000 0.016204 0.000000 0.042533 0.000000 0.000000 0.000000 0.024860 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018160 0.000000 0.034697 0.063842 0.000000 0.039738 0.000000 0.000000 0.027074 0.000000 0.026011 0.0 0.000000 0.000000 0.000000 0.000000 0.021523 0.027545 0.000000 0.000000 0.0 0.029043 0.026882 0.000000 0.000000 0.000000 0.000000 0.031878 0.031878 0.065967 0.00000 0.000000 0.000000 0.000000 0.024218 0.0 0.000000 0.000000 0.027611 0.0 0.023803 0.023803 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.054067 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.039369 0.000000 0.073359 0.000000 0.024787 0.023537 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.039176 0.000000 0.000000 0.020197 0.019521 0.025122 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037086 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024949 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.037028 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.055068 0.000000 0.000000 0.000000 0.000000 0.040383 0.000000 0.000000 0.000000 0.000000 0.000000 0.021088 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.043995 0.018423 0.000000 0.023121 0.00000 0.019069 0.0 0.000000 0.00000 0.0 0.016674 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022925 0.000000 0.000000 0.000000 0.053763 0.000000 0.044565 0.000000 0.00000 0.000000 0.027912 0.047281 0.000000 0.000000 0.000000 0.028630 0.000000 0.000000 0.028630 0.000000 0.025392 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.073431 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.056816 0.0000 0.00000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.049611 0.000000 0.00000 0.022814 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030077 0.051895 0.000000 0.000000 0.000000 0.000000 0.032298 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021621 0.031878 0.000000 0.03132 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.028230 0.000000 0.00000 0.023226 0.051658 0.000000 0.000000 0.0 0.000000 0.000000 0.028312 0.000000 0.000000 0.025560 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.019766 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028761 0.000000 0.000000 0.024179 0.000000 0.0 0.000000 0.000000 0.071262 0.000000 0.000000 0.044101 0.000000 0.000000 0.027183 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.063204 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028439 0.000000 0.0 0.028717 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028047 0.00000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.083296 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.048684 0.000000 0.000000 0.029625 0.000000 0.000000 0.021588 0.000000 0.040936 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.019419 0.000000 0.000000 0.000000 0.000000 0.000000 0.017971 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.040798 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.049646 0.039404 0.00000 0.000000 0.000000 0.022453 0.000000 0.035395 0.019292 0.000000 0.019292 0.000000 0.000000 0.000000 0.017591 0.000000 0.000000 0.024158 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018551 0.017853 0.018656 0.047549 0.000000 0.000000 0.043453 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.00000 0.029903 0.029903 0.018525 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030771 0.000000 0.053444 0.027394 0.023103 0.032423 0.047147 0.000000 0.048502 0.000000 0.000000 0.027403 0.000000 0.026631 0.035112 0.0 0.000000 0.000000 0.034861 0.000000 0.000000 0.045378 0.000000 0.022257 0.000000 0.022340 0.000000 0.000000 0.032466 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.059358 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.025747 0.022615 0.000000 0.025199 0.000000 0.000000 0.024742 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.058060 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026011 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029812 0.0 0.000000 0.0 0.030562 0.032241 0.000000 0.055552 0.000000 0.000000 0.000000 0.000000 0.022206 0.000000 0.000000 0.042644 0.000000 0.048744 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.045083 0.000000 0.0 0.023318 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.044776 0.039305 0.000000 0.000000 0.035861 0.000000 0.045680 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.021684 0.0 0.020901 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020877 0.000000 0.066183 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.027771 0.000000 0.000000 0.000000 0.032241 0.0 0.000000 0.000000 0.067207 0.018361 0.000000 0.031946 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029507 0.052714 0.000000 0.023522 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.053981 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.035356 0.021457 0.000000 0.014855 0.024092 0.000000 0.00000 0.000000 0.000000 0.015346 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.032630 0.000000 0.0 0.000000 0.000000 0.000000 0.042844 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.061922 0.000000 0.0 0.000000 0.000000 0.021439 0.021277 0.000000 0.000000 0.000000 0.000000 0.028606 0.000000 0.0 0.000000 0.000000 0.019488 0.000000 0.000000 0.050767 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.016246 0.000000 0.031210 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028623 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.024955 0.000000 0.000000 0.000000 0.000000 0.000000 0.037028 0.000000 0.000000 0.070759 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.00000 0.032681 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.00000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022584 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041774 0.000000 0.000000 0.000000 0.0 0.000000 0.035471 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030572 0.000000 0.000000 0.00000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024887 0.000000 0.029491 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029191 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.032466 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.026302 0.000000 0.0 0.000000 0.000000 0.023003 0.00000 0.000000 0.033346 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020050 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.00000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.061535 0.000000 0.000000 0.0 0.0 0.0 0.00000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.031817 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.028903 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.034196 0.0 0.0 0.000000 0.000000 0.000000 0.029145 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.00000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.00000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.00000 0.0 0.000000 0.00000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.029872 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.038245 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.020934 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.025904 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037078 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.00000 0.00000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.035705 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.0000 0.0 0.030519 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.059921 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029014 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026588 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.00000 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.0000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.033004 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.030956 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034630 0.000000 0.000000 0.0 0.000000 0.0 0.024887 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.00000 0.033873 0.000000 0.000000 0.0 0.000000 0.033976 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.032303 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.036363 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031528 0.000000 0.0 0.0 0.03627 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035876 0.033208 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.020930 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022655 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.0 0.000000 0.00000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.064522 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.034649 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.017991 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.00000 0.000000 0.00000 0.03489 0.000000 0.056454 0.00000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.037629 0.037629 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.021567 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037629 0.000000 0.037629 0.0 0.0 0.0 0.000000 0.0 0.019578 0.0 0.000000 0.00000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.037629 0.00000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.0 0.037629 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0000 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041560 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.00000 0.000000 0.00000 0.000000 0.000000 0.000000 0.034256 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.034666 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.022054 0.000000 0.000000 0.000000 0.034359 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.035000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015069 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.063319 0.000000 0.020042 0.0 0.000000 0.0 0.034035 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.021349 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.00000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030769 0.00000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.037245 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.020777 0.000000 0.000000 0.020406 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.031652 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.036218 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033351 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.029164 0.0 0.0 0.0 0.00000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.00000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.036098 0.000000 0.000000 0.000000 0.0 0.0 0.00000 0.000000 0.00000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.00000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.035195 0.000000 0.000000 0.000000 0.000000 0.031626 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029285 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.021377 0.000000 0.055255 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.034760 0.034487 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.024399 0.0 0.0 0.024399 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.033515 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.057361 0.000000 0.000000 0.000000 0.046885 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.063863 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.030764 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020958 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.000000 0.020383 0.000000 0.000000 0.057319 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.00000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0000 0.0 0.00000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.032710 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025941 0.017268 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.021661 0.000000 0.025754 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.053394 0.0 0.000000 0.019532 0.018949 0.000000 0.041550 0.000000 0.000000 0.021190 0.000000 0.0 0.000000 0.000000 0.070541 0.045283 0.000000 0.000000 0.123191 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.020115 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.042213 0.042898 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052933 0.028807 0.019179 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.032989 0.000000 0.093314 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.051222 0.000000 0.036353 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.042821 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029664 0.000000 0.035254 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.089858 0.000000 0.000000 0.000000 0.000000 0.000000 0.051474 0.000000 0.000000 0.000000 0.034343 0.000000 0.000000 0.019956 0.018476 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.020465 0.000000 0.053461 0.000000 0.000000 0.000000 0.000000 0.018790 0.00000 0.035990 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.115219 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.024732 0.018592 0.000000 0.000000 0.000000 0.000000 0.000000 0.027330 0.019387 0.034761 0.000000 0.000000 0.000000 0.000000 0.000000 0.017087 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.095358 0.000000 0.000000 0.01820 0.000000 0.022128 0.000000 0.027625 0.000000 0.029492 0.020761 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022768 0.000000 0.000000 0.000000 0.041037 0.000000 0.000000 0.000000 0.000000 0.063590 0.017600 0.000000 0.027966 0.000000 0.000000 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.030652 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016706 0.022486 0.000000 0.00000 0.000000 0.000000 0.000000 0.042662 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019115 0.000000 0.027045 0.000000 0.000000 0.000000 0.051346 0.000000 0.000000 0.000000 0.000000 0.029666 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.021173 0.00000 0.000000 0.000000 0.000000 0.040452 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.028748 0.000000 0.000000 0.000000 0.029662 0.000000 0.000000 0.000000 0.0 0.000000 0.071655 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.057088 0.072559 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019910 0.000000 0.000000 0.023100 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.065926 0.000000 0.000000 0.000000 0.000000 0.032906 0.000000 0.000000 0.00000 0.000000 0.023388 0.000000 0.038959 0.0 0.000000 0.036326 0.019970 0.022029 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.00000 0.027558 0.000000 0.000000 0.033938 0.000000 0.023357 0.000000 0.047682 0.000000 0.00000 0.000000 0.000000 0.027728 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019998 0.000000 0.000000 0.017091 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.026840 0.000000 0.031429 0.018504 0.000000 0.020969 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020248 0.000000 0.000000 0.000000 0.000000 0.000000 0.023467 0.038374 0.000000 0.020618 0.000000 0.029924 0.000000 0.000000 0.000000 0.030762 0.000000 0.030157 0.000000 0.000000 0.000000 0.000000 0.000000 0.012750 0.000000 0.016684 0.037976 0.030793 0.000000 0.0 0.000000 0.000000 0.000000 0.029946 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.018727 0.000000 0.000000 0.0 0.000000 0.000000 0.041181 0.000000 0.000000 0.000000 0.052298 0.000000 0.020673 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.017349 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.062523 0.062523 0.017747 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020560 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.022081 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025889 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.052933 0.000000 0.000000 0.034276 0.00000 0.038818 0.0 0.000000 0.000000 0.026766 0.026122 0.032598 0.058842 0.000000 0.000000 0.000000 0.000000 0.05909 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.069443 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.033274 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.084019 0.0 0.020431 0.000000 0.000000 0.000000 0.000000 0.027127 0.000000 0.000000 0.000000 0.000000 0.027949 0.0 0.000000 0.038024 0.054155 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.016085 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029146 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.043590 0.0 0.044533 0.00000 0.000000 0.00000 0.039198 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.052580 0.0 0.000000 0.030949 0.049404 0.033046 0.0 0.015710 0.000000 0.0 0.017738 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.061082 0.000000 0.000000 0.000000 0.00000 0.000000 0.024034 0.000000 0.018765 0.039794 0.000000 0.000000 0.000000 0.000000 0.0 0.015929 0.000000 0.000000 0.000000 0.000000 0.000000 0.022509 0.000000 0.000000 0.019451 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.029154 0.000000 0.000000 0.000000 0.000000 0.020761 0.072176 0.023799 0.000000 0.000000 0.000000 0.000000 0.023782 0.032937 0.000000 0.000000 0.047956 0.020937 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.031428 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.052540 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.029793 0.131126 0.022872 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.074088 0.000000 0.000000 0.000000 0.000000 0.025218 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.023487 0.000000 0.049930 0.017971 0.000000 0.000000 0.00000 0.000000 0.050202 0.000000 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.042825 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.033048 0.000000 0.02112 0.000000 0.000000 0.000000 0.000000 0.043852 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.051540 0.000000 0.017999 0.00000 0.0 0.043567 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.077003 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.028623 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.037776 0.024154 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029854 0.000000 0.000000 0.000000 0.000000 0.101537 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.040667 0.000000 0.0 0.000000 0.000000 0.00000 0.022614 0.021102 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.015579 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.016962 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.049029 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.045368 0.049681 0.000000 0.000000 0.017910 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.044101 0.000000 0.000000 0.00000 0.000000 0.000000 0.022346 0.000000 0.000000 0.000000 0.000000 0.000000 0.013507 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.056816 0.022454 0.000000 0.000000 0.00000 0.000000 0.030649 0.000000 0.000000 0.000000 0.000000 0.000000 0.023709 0.000000 0.023092 0.000000 0.016804 0.035307 0.000000 0.000000 0.000000 0.000000 0.013726 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.028521 0.000000 0.000000 0.000000 0.000000 0.027786 0.000000 0.027248 0.000000 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.00000 0.024675 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.037906 0.022327 0.000000 0.000000 0.00000 0.023369 0.00000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.047876 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.00000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.028409 0.000000 0.023994 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.026840 0.082348 0.032941 0.022935 0.000000 0.000000 0.000000 0.021982 0.000000 0.033060 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.064338 0.000000 0.037340 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.067076 0.000000 0.000000 0.000000 0.03132 0.000000 0.000000 0.000000 0.000000 0.020878 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0000 0.000000 0.0 0.042896 0.000000 0.000000 0.000000 0.000000 0.00000 0.051974 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.00000 0.000000 0.026597 0.000000 0.000000 0.000000 0.000000 0.000000 0.037579 0.045766 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023456 0.000000 0.000000 0.000000 0.000000 0.000000 0.039626 0.000000 0.000000 0.024055 0.000000 0.049550 0.030352 0.000000 0.049550 0.000000 0.027782 0.000000 0.0000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029529 0.000000 0.00000 0.000000 0.000000 0.044361 0.000000 0.029758 0.000000 0.000000 0.000000 0.000000 0.046918 0.000000 0.000000 0.000000 0.020523 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022467 0.034603 0.0 0.000000 0.000000 0.024525 0.000000 0.000000 0.022029 0.000000 0.032135 0.081551 0.00000 0.053546 0.000000 0.000000 0.000000 0.000000 0.019791 0.000000 0.000000 0.0000 0.000000 0.000000 0.00000 0.019265 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.020260 0.0 0.000000 0.000000 0.000000 0.019265 0.000000 0.000000 0.0 0.0 0.038039 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.043233 0.00000 0.000000 0.000000 0.0 0.0 0.035597 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.034872 0.000000 0.015642 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.083188 0.000000 0.000000 0.0 0.000000 0.000000 0.018397 0.023213 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.041001 0.000000 0.026636 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.024810 0.000000 0.000000 0.022289 0.0 0.0 0.0 0.0 0.000000 0.000000 0.026658 0.000000 0.000000 0.000000 0.000000 0.022915 0.000000 0.029306 0.029306 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.085668 0.00000 0.000000 0.023185 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.063261 0.063261 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.049062 0.023784 0.0 0.0 0.0 0.000000 0.030909 0.0 0.000000 0.0 0.000000 0.000000 0.029686 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023193 0.000000 0.000000 0.029405 0.0 0.0 0.0 0.000000 0.077793 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.042600 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.018969 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.047150 0.000000 0.0 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.021596 0.0 0.0 0.000000 0.0 0.049696 0.000000 0.025611 0.0 0.026879 0.0 0.025237 0.028840 0.000000 0.000000 0.000000 0.027439 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.00000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.018319 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.024494 0.026781 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.022850 0.022850 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.019436 0.000000 0.023336 0.0 0.0 0.0 0.0 0.027766 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.032819 0.000000 0.000000 0.0 0.027666 0.000000 0.0 0.049647 0.000000 0.0 0.056566 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.028930 0.0 0.000000 0.043673 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.028846 0.0 0.000000 0.000000 0.000000 0.000000 0.022847 0.000000 0.000000 0.000000 0.000000 0.019082 0.000000 0.000000 0.000000 0.000000 0.000000 0.016698 0.000000 0.0 0.000000 0.051571 0.0 0.000000 0.000000 0.027350 0.0 0.000000 0.0 0.000000 0.000000 0.024517 0.000000 0.046730 0.015366 0.000000 0.000000 0.000000 0.000000 0.025785 0.0 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.018281 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.031887 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.011054 0.000000 0.0 0.040235 0.0 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.024972 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.025123 0.0 0.000000 0.0 0.000000 0.000000 0.028412 0.017149 0.00000 0.000000 0.000000 0.045659 0.036325 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.073295 0.0 0.0 0.0 0.0 0.000000 0.023523 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.019414 0.0 0.000000 0.033583 0.000000 0.000000 0.018312 0.045548 0.000000 0.031304 0.022598 0.000000 0.000000 0.0 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.023032 0.000000 0.037965 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.0 0.0 0.000000 0.000000 0.020409 0.0 0.000000 0.0 0.048407 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.047526 0.0 0.00000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.021623 0.0 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.015179 0.000000 0.0 0.0 0.017372 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.013377 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.021466 0.0 0.000000 0.021989 0.0 0.000000 0.000000 0.0 0.024025 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.023779 0.000000 0.0 0.000000 0.000000 0.00000 0.017098 0.000000 0.000000 0.000000 0.029306 0.000000 0.000000 0.0 0.00000 0.037977 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.015411 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.00000 0.000000 0.000000 0.0 0.022033 0.029145 0.022298 0.0 0.0 0.000000 0.000000 0.023841 0.028206 0.028206 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.022850 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.045604 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029406 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.018679 0.000000 0.00000 0.000000 0.000000 0.000000 0.061318 0.000000 0.000000 0.00000 0.075947 0.0 0.016372 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.044941 0.000000 0.000000 0.000000 0.0 0.033478 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.022235 0.022235 0.0 0.000000 0.000000 0.000000 0.021725 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.025931 0.000000 0.00000 0.000000 0.000000 0.000000 0.00000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022191 0.000000 0.015221 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.031573 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.020963 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.00000 0.00000 0.0 0.0 0.030475 0.047578 0.0 0.0 0.0 0.0 0.0 0.024034 0.0 0.021463 0.0 0.000000 0.028840 0.000000 0.000000 0.0 0.021209 0.0 0.000000 0.045830 0.000000 0.000000 0.000000 0.000000 0.025237 0.000000 0.041512 0.000000 0.000000 0.000000 0.000000 0.049782 0.000000 0.000000 0.000000 0.049621 0.029025 0.018911 0.0 0.048125 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.021257 0.000000 0.000000 0.00000 0.0 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.020832 0.058789 0.061696 0.000000 0.0 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.044345 0.0 0.000000 0.00000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.018713 0.0 0.01429 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.034118 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.032948 0.093886 0.0 0.000000 0.024347 0.0 0.0 0.0 0.000000 0.070571 0.0 0.0 0.000000 0.021561 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.018346 0.0 0.000000 0.000000 0.0 0.0 0.024340 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022885 0.000000 0.0 0.0 0.00000 0.000000 0.027998 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.019643 0.0 0.000000 0.087176 0.000000 0.0 0.029212 0.000000 0.000000 0.000000 0.000000 0.0 0.040635 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.028327 0.020812 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.030185 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.027281 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.00000 0.0 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.044501 0.000000 0.0 0.0 0.000000 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.020027 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.00000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.023085 0.000000 0.0 0.00000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.0 0.052232 0.000000 0.020982 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.027344 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.027742 0.000000 0.00000 0.000000 0.000000 0.0 0.0 0.0 0.028020 0.0 0.000000 0.0 0.000000 0.026711 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.030013 0.00000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.028369 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.00000 0.018121 0.000000 0.000000 0.000000 0.083677 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.028192 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.0 0.00000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.022850 0.0 0.0 0.028984 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.055133 0.000000 0.000000 0.029232 0.0 0.000000 0.000000 0.000000 0.023436 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.024698 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.114199 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.024517 0.000000 0.039612 0.000000 0.036325 0.0 0.000000 0.0 0.000000 0.0000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.00000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.022163 0.000000 0.045405 0.0 0.021203 0.0 0.0 0.000000 0.00000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.028206 0.0 0.000000 0.00000 0.000000 0.026170 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.022289 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.042457 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.019253 0.000000 0.0 0.000000 0.000000 0.00000 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.00000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.017560 0.00000 0.064577 0.000000 0.028372 0.039318 0.000000 0.034067 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.017482 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.026184 0.0 0.0 0.0 0.0 0.0 0.000000 0.000000 0.024935 0.017918 0.022850 0.022850 0.0 0.015388 0.0 0.017362 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.016994 0.00000 0.0 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.061345 0.000000 0.026170 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.023547 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.015181 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.044575 0.030365 0.000000 0.000000 0.057826 0.000000 0.0 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.031545 0.000000 0.000000 0.0 0.0 0.000000 0.00000 0.0 0.0 0.000000 0.0 0.043290 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.00000 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.044637 0.0 0.0 0.0 0.000000 0.0 0.027694 0.0 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.012214 0.000000 0.0 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.019929 0.000000 0.0 0.055674 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.00000 0.0 0.061382 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.023842 0.000000 0.00000 0.0 0.0 0.035881 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.041142 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.016476 0.000000 0.000000 0.000000 0.000000 0.0 0.020222 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.022850 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.029854 0.000000 0.00000 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.021644 0.000000 0.017704 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.020601 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.029490 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.057369 0.000000 0.000000 0.0 0.0 0.021725 0.049866 0.0 0.0 0.0 0.020963 0.000000 0.015814 0.000000 0.028616 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.043496 0.014359 0.020614 0.000000 0.00000 0.028205 0.000000 0.000000 0.024053 0.024053 0.000000 0.0 0.000000 0.000000 0.000000 0.022298 0.0 0.054842 0.022972 0.0 0.000000 0.000000 0.027375 0.0 0.000000 0.104313 0.000000 0.020815 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.026439 0.094831 0.000000 0.000000 0.0 0.000000 0.0 0.0 0.00000 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.0 0.000000 0.0 0.0 0.0 0.00000 0.0 0.016914 0.0 0.0 0.032536 0.000000 0.0 0.000000 0.0 0.0 0.0 0.000000 0.010790 0.0 0.0 0.0 0.000000 0.000000 0.024230 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.025560 0.015695 0.025684 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.00000 0.000000 0.0 0.000000 0.000000 0.000000 0.030836 0.047267 0.0 0.000000 0.000000 0.000000 0.000000 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.064461 0.000000 0.033898 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.000000 0.055956 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.000000 0.000000 0.000000 0.033537 0.0 0.0 0.000000 0.0 0.0 0.0 0.034706 0.0 0.0 0.0 0.0 0.0 0.039769 0.000000 0.0 0.0 0.000000 0.0 0.00000 0.030898 0.000000 0.000000 0.030056 0.000000 0.0 0.057453 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 0.0 0.000000 0.00000 0.0 0.000000 0.0 0.0 0.000000 0.0 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000000 0.0 0.000000 0.000000 0.000000 0.026791 0.026791 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.0 0.0 0.048706 0.0 0.000000 0.0 0.000000 0.047510 0.000000 0.026058 0.000000 0.0 0.000000 0.030012 0.000000
In [669]:
sse=[]
kmeans_params = {
    'init': 'random',
    'n_init': 10,
    'max_iter': 30,
    'random_state': 42
}
for k in range(1,5):
    print(f'Cluster {k}/5')
#     kmeans = KMeans(n_clusters=k, **kmeans_params)
    
    kmeans = KMeans(n_clusters=k)
    kmeans.fit(similarity_check)
    sse.append(kmeans.inertia_)
    clear_output(wait=True)
locator = KneeLocator(range(1,5), sse, curve='convex', direction='decreasing')
print('Best cluster for KMeans:', locator.elbow)
Best cluster for KMeans: 2
In [656]:
# kmeans = KMeans(n_clusters=locator.elbow, **kmeans_params)
kmeans = KMeans(n_clusters=locator.elbow)
kmeans.fit(similarity_check)
df_5['cluster'] = kmeans.labels_
df_5.head()
Out[656]:
publisher pub_year sale_date year_of_sale num_of_author processed_title processed_description updated_price edition affordability availability_1 encoded_price encoded_year key_words common_word length_title_description key kmeans_cluster dbscan_cluster KMeans_cluster_2 dbscan_cluster_2 cluster
0 O'Reilly Media 2024 2024-01-10 2024 1 learning go go rapidly become preferred language building web services plenty tutorials available teach go syntax developers experience programming languages tutorials enough teach go idioms developers end recreating patterns make sense go context practical 71.99 2 0 1 3 11 [go, rapidly, become, preferred, language, building, web, service, plenty, tutorial, available, teach, go, syntax, developer, experience, programming, language, tutorial, enough, teach, go, idiom, developer, end, recreating, pattern, make, sense, go, context, practical] [go, language, tutorial, teach, developer, rapidly, become, preferred, building, web, service, plenty, available, syntax, experience, programming, enough, idiom, end, recreating, pattern, make, sense, context, practical] 256 go rapidly become preferred language building web service plenty tutorial available teach go syntax developer experience programming language tutorial enough teach go idiom developer end recreating pattern make sense go context practical 0 0 0 0 0
1 O'Reilly Media 2023 2023-10-17 2023 1 tidy first tidying messy software means breaking code make readable using guard clauses helping functions make understandable practical guide author kent beck creator extreme programming pioneer software patterns suggests might apply tidyings code 42.99 2 1 1 1 11 [tidying, messy, software, mean, breaking, code, make, readable, using, guard, clause, helping, function, make, understandable, practical, guide, author, kent, beck, creator, extreme, programming, pioneer, software, pattern, suggests, might, apply, tidyings, code] [software, code, make, tidying, messy, mean, breaking, readable, using, guard, clause, helping, function, understandable, practical, guide, author, kent, beck, creator, extreme, programming, pioneer, pattern, suggests, might, apply, tidyings] 247 tidying messy software mean breaking code make readable using guard clause helping function make understandable practical guide author kent beck creator extreme programming pioneer software pattern suggests might apply tidyings code 0 0 0 0 0
2 O'Reilly Media 2022 2022-10-04 2022 1 hands on machine learning with scikit learn keras and tensorflow recent series breakthroughs deep learning boosted entire field machine learning even programmers know close nothing technology use simple efficient tools implement programs capable learning data bestselling book uses concrete examples minimal theory production ready 96.99 3 0 1 6 10 [recent, series, breakthrough, deep, learning, boosted, entire, field, machine, learning, even, programmer, know, close, nothing, technology, use, simple, efficient, tool, implement, program, capable, learning, data, bestselling, book, us, concrete, example, minimal, theory, production, ready] [learning, recent, series, breakthrough, deep, boosted, entire, field, machine, even, programmer, know, close, nothing, technology, use, simple, efficient, tool, implement, program, capable, data, bestselling, book, us, concrete, example, minimal, theory, production, ready] 330 recent series breakthrough deep learning boosted entire field machine learning even programmer know close nothing technology use simple efficient tool implement program capable learning data bestselling book us concrete example minimal theory production ready 0 0 0 0 0
3 O'Reilly Media 2017 2017-03-16 2017 1 designing data intensive applications data center many challenges system design today difficult issues need figured scalability consistency reliability efficiency maintainability addition overwhelming variety tools including relational databases nosql datastores stream batch processors message brokers 67.99 2 0 1 3 6 [data, center, many, challenge, system, design, today, difficult, issue, need, figured, scalability, consistency, reliability, efficiency, maintainability, addition, overwhelming, variety, tool, including, relational, database, nosql, datastores, stream, batch, processor, message, broker] [data, center, many, challenge, system, design, today, difficult, issue, need, figured, scalability, consistency, reliability, efficiency, maintainability, addition, overwhelming, variety, tool, including, relational, database, nosql, datastores, stream, batch, processor, message, broker] 301 data center many challenge system design today difficult issue need figured scalability consistency reliability efficiency maintainability addition overwhelming variety tool including relational database nosql datastores stream batch processor message broker 0 0 0 0 0
4 Pearson Education 2023 2023-10-18 2023 1 exam ref ms microsoft administrator prepare microsoft exam ms help demonstrate real world mastery skills knowledge required deploy manage microsoft perform microsoft tenant level implementation administration cloud hybrid 53.86 2 1 1 2 11 [prepare, microsoft, exam, m, help, demonstrate, real, world, mastery, skill, knowledge, required, deploy, manage, microsoft, perform, microsoft, tenant, level, implementation, administration, cloud, hybrid] [microsoft, prepare, exam, m, help, demonstrate, real, world, mastery, skill, knowledge, required, deploy, manage, perform, tenant, level, implementation, administration, cloud, hybrid] 220 prepare microsoft exam m help demonstrate real world mastery skill knowledge required deploy manage microsoft perform microsoft tenant level implementation administration cloud hybrid 0 0 0 0 0
In [ ]:
 
In [657]:
plt.figure(figsize=(15,8))
output = plt.scatter(similarity_check[:,0], similarity_check[:,1], c=df_5.cluster, marker='o', alpha=1, cmap='mako')
centers = kmeans.cluster_centers_
plt.scatter(centers[:,0], centers[:,1], c='red', s=100, alpha=1 , marker='o')
plt.colorbar(output)
plt.show()
In [658]:
cluster_1 = df_5.loc[df_5['cluster'] == 1, :]
cluster_1.shape
Out[658]:
(4232, 22)
In [659]:
cluster_0 = df_5.loc[df_5['cluster'] == 0, :]
cluster_0.shape
Out[659]:
(26596, 22)
In [660]:
check = df_5.sample(1, random_state=42)
check
Out[660]:
publisher pub_year sale_date year_of_sale num_of_author processed_title processed_description updated_price edition affordability availability_1 encoded_price encoded_year key_words common_word length_title_description key kmeans_cluster dbscan_cluster KMeans_cluster_2 dbscan_cluster_2 cluster
5814 Pearson Education 1753 2010-04-09 2010 2 photoshop elements book for digital photographers the best selling author scott kelby pairs matt kloskowski deliver definitive book using photoshop elements create best possible images newest release photoshop elements scott matt show readers work 48.48 2 1 1 1 0 [best, selling, author, scott, kelby, pair, matt, kloskowski, deliver, definitive, book, using, photoshop, element, create, best, possible, image, newest, release, photoshop, element, scott, matt, show, reader, work] [best, scott, matt, photoshop, element, selling, author, kelby, pair, kloskowski, deliver, definitive, book, using, create, possible, image, newest, release, show, reader, work] 246 best selling author scott kelby pair matt kloskowski deliver definitive book using photoshop element create best possible image newest release photoshop element scott matt show reader work 1 1 1 1 0
In [661]:
kmeans = KMeans(n_clusters=15)
kmeans.fit(similarity_check)
df_5['cluster_k_15'] = kmeans.labels_
df_5.head()
Out[661]:
publisher pub_year sale_date year_of_sale num_of_author processed_title processed_description updated_price edition affordability availability_1 encoded_price encoded_year key_words common_word length_title_description key kmeans_cluster dbscan_cluster KMeans_cluster_2 dbscan_cluster_2 cluster cluster_k_15
0 O'Reilly Media 2024 2024-01-10 2024 1 learning go go rapidly become preferred language building web services plenty tutorials available teach go syntax developers experience programming languages tutorials enough teach go idioms developers end recreating patterns make sense go context practical 71.99 2 0 1 3 11 [go, rapidly, become, preferred, language, building, web, service, plenty, tutorial, available, teach, go, syntax, developer, experience, programming, language, tutorial, enough, teach, go, idiom, developer, end, recreating, pattern, make, sense, go, context, practical] [go, language, tutorial, teach, developer, rapidly, become, preferred, building, web, service, plenty, available, syntax, experience, programming, enough, idiom, end, recreating, pattern, make, sense, context, practical] 256 go rapidly become preferred language building web service plenty tutorial available teach go syntax developer experience programming language tutorial enough teach go idiom developer end recreating pattern make sense go context practical 0 0 0 0 0 5
1 O'Reilly Media 2023 2023-10-17 2023 1 tidy first tidying messy software means breaking code make readable using guard clauses helping functions make understandable practical guide author kent beck creator extreme programming pioneer software patterns suggests might apply tidyings code 42.99 2 1 1 1 11 [tidying, messy, software, mean, breaking, code, make, readable, using, guard, clause, helping, function, make, understandable, practical, guide, author, kent, beck, creator, extreme, programming, pioneer, software, pattern, suggests, might, apply, tidyings, code] [software, code, make, tidying, messy, mean, breaking, readable, using, guard, clause, helping, function, understandable, practical, guide, author, kent, beck, creator, extreme, programming, pioneer, pattern, suggests, might, apply, tidyings] 247 tidying messy software mean breaking code make readable using guard clause helping function make understandable practical guide author kent beck creator extreme programming pioneer software pattern suggests might apply tidyings code 0 0 0 0 0 5
2 O'Reilly Media 2022 2022-10-04 2022 1 hands on machine learning with scikit learn keras and tensorflow recent series breakthroughs deep learning boosted entire field machine learning even programmers know close nothing technology use simple efficient tools implement programs capable learning data bestselling book uses concrete examples minimal theory production ready 96.99 3 0 1 6 10 [recent, series, breakthrough, deep, learning, boosted, entire, field, machine, learning, even, programmer, know, close, nothing, technology, use, simple, efficient, tool, implement, program, capable, learning, data, bestselling, book, us, concrete, example, minimal, theory, production, ready] [learning, recent, series, breakthrough, deep, boosted, entire, field, machine, even, programmer, know, close, nothing, technology, use, simple, efficient, tool, implement, program, capable, data, bestselling, book, us, concrete, example, minimal, theory, production, ready] 330 recent series breakthrough deep learning boosted entire field machine learning even programmer know close nothing technology use simple efficient tool implement program capable learning data bestselling book us concrete example minimal theory production ready 0 0 0 0 0 12
3 O'Reilly Media 2017 2017-03-16 2017 1 designing data intensive applications data center many challenges system design today difficult issues need figured scalability consistency reliability efficiency maintainability addition overwhelming variety tools including relational databases nosql datastores stream batch processors message brokers 67.99 2 0 1 3 6 [data, center, many, challenge, system, design, today, difficult, issue, need, figured, scalability, consistency, reliability, efficiency, maintainability, addition, overwhelming, variety, tool, including, relational, database, nosql, datastores, stream, batch, processor, message, broker] [data, center, many, challenge, system, design, today, difficult, issue, need, figured, scalability, consistency, reliability, efficiency, maintainability, addition, overwhelming, variety, tool, including, relational, database, nosql, datastores, stream, batch, processor, message, broker] 301 data center many challenge system design today difficult issue need figured scalability consistency reliability efficiency maintainability addition overwhelming variety tool including relational database nosql datastores stream batch processor message broker 0 0 0 0 0 9
4 Pearson Education 2023 2023-10-18 2023 1 exam ref ms microsoft administrator prepare microsoft exam ms help demonstrate real world mastery skills knowledge required deploy manage microsoft perform microsoft tenant level implementation administration cloud hybrid 53.86 2 1 1 2 11 [prepare, microsoft, exam, m, help, demonstrate, real, world, mastery, skill, knowledge, required, deploy, manage, microsoft, perform, microsoft, tenant, level, implementation, administration, cloud, hybrid] [microsoft, prepare, exam, m, help, demonstrate, real, world, mastery, skill, knowledge, required, deploy, manage, perform, tenant, level, implementation, administration, cloud, hybrid] 220 prepare microsoft exam m help demonstrate real world mastery skill knowledge required deploy manage microsoft perform microsoft tenant level implementation administration cloud hybrid 0 0 0 0 0 4
In [662]:
plt.figure(figsize=(15,8))
output = plt.scatter(similarity_check[:,0], similarity_check[:,1], c=df_5.cluster, marker='o', alpha=1, cmap='mako')
centers = kmeans.cluster_centers_
plt.scatter(centers[:,0], centers[:,1], c='red', s=100, alpha=1 , marker='o')
plt.colorbar(output)
plt.show()
In [663]:
cluster_1 = df_5.loc[df_5['cluster_k_15'] == 1, :]
cluster_1.shape
Out[663]:
(4232, 23)
In [664]:
cluster_12 = df_5.loc[df_5['cluster_k_15'] == 12, :]
cluster_12.shape
Out[664]:
(679, 23)
In [665]:
pd.options.display.max_columns = None
In [666]:
pd.set_option('display.max_colwidth', None)
In [667]:
cluster_12.head(5)
Out[667]:
publisher pub_year sale_date year_of_sale num_of_author processed_title processed_description updated_price edition affordability availability_1 encoded_price encoded_year key_words common_word length_title_description key kmeans_cluster dbscan_cluster KMeans_cluster_2 dbscan_cluster_2 cluster cluster_k_15
2 O'Reilly Media 2022 2022-10-04 2022 1 hands on machine learning with scikit learn keras and tensorflow recent series breakthroughs deep learning boosted entire field machine learning even programmers know close nothing technology use simple efficient tools implement programs capable learning data bestselling book uses concrete examples minimal theory production ready 96.99 3 0 1 6 10 [recent, series, breakthrough, deep, learning, boosted, entire, field, machine, learning, even, programmer, know, close, nothing, technology, use, simple, efficient, tool, implement, program, capable, learning, data, bestselling, book, us, concrete, example, minimal, theory, production, ready] [learning, recent, series, breakthrough, deep, boosted, entire, field, machine, even, programmer, know, close, nothing, technology, use, simple, efficient, tool, implement, program, capable, data, bestselling, book, us, concrete, example, minimal, theory, production, ready] 330 recent series breakthrough deep learning boosted entire field machine learning even programmer know close nothing technology use simple efficient tool implement program capable learning data bestselling book us concrete example minimal theory production ready 0 0 0 0 0 12
14 O'Reilly Media 2022 2023-04-28 2023 1 generative deep learning generative ai hottest topic tech practical book teaches machine learning engineers data scientists use tensorflow keras create impressive generative deep learning models scratch including variational autoencoders vaes generative adversarial networks gans transformers normalizing flows energy based 84.99 2 0 1 5 10 [generative, ai, hottest, topic, tech, practical, book, teach, machine, learning, engineer, data, scientist, use, tensorflow, kera, create, impressive, generative, deep, learning, model, scratch, including, variational, autoencoders, vaes, generative, adversarial, network, gans, transformer, normalizing, flow, energy, based] [generative, learning, ai, hottest, topic, tech, practical, book, teach, machine, engineer, data, scientist, use, tensorflow, kera, create, impressive, deep, model, scratch, including, variational, autoencoders, vaes, adversarial, network, gans, transformer, normalizing, flow, energy, based] 322 generative ai hottest topic tech practical book teach machine learning engineer data scientist use tensorflow kera create impressive generative deep learning model scratch including variational autoencoders vaes generative adversarial network gans transformer normalizing flow energy based 0 0 0 0 0 12
66 Flatiron Books 2021 2021-01-19 2021 1 brief history of artificial intelligence oxford leading ai researcher comes fun accessible tour history future cutting edge misunderstood field science artificial intelligence somewhat ill defined long term aim ai build machines conscious self aware sentient machines capable kind 16.99 2 1 1 0 9 [oxford, leading, ai, researcher, come, fun, accessible, tour, history, future, cutting, edge, misunderstood, field, science, artificial, intelligence, somewhat, ill, defined, long, term, aim, ai, build, machine, conscious, self, aware, sentient, machine, capable, kind] [ai, machine, oxford, leading, researcher, come, fun, accessible, tour, history, future, cutting, edge, misunderstood, field, science, artificial, intelligence, somewhat, ill, defined, long, term, aim, build, conscious, self, aware, sentient, capable, kind] 280 oxford leading ai researcher come fun accessible tour history future cutting edge misunderstood field science artificial intelligence somewhat ill defined long term aim ai build machine conscious self aware sentient machine capable kind 0 0 0 0 0 12
107 O'Reilly Media 2018 2018-01-26 2018 2 machine learning and security machine learning techniques solve computer security problems finally put end cat mouse game attackers defenders hope merely hype dive science answer question practical guide explore ways apply machine learning security issues 71.99 2 0 1 3 7 [machine, learning, technique, solve, computer, security, problem, finally, put, end, cat, mouse, game, attacker, defender, hope, merely, hype, dive, science, answer, question, practical, guide, explore, way, apply, machine, learning, security, issue] [machine, learning, security, technique, solve, computer, problem, finally, put, end, cat, mouse, game, attacker, defender, hope, merely, hype, dive, science, answer, question, practical, guide, explore, way, apply, issue] 254 machine learning technique solve computer security problem finally put end cat mouse game attacker defender hope merely hype dive science answer question practical guide explore way apply machine learning security issue 0 0 0 0 0 12
181 O'Reilly Media 2019 2019-01-17 2019 2 natural language processing with pytorch natural language processing nlp provides boundless opportunities solving problems artificial intelligence making products amazon alexa google translate possible developer data scientist new nlp deep learning practical guide shows apply methods using pytorch python based deep 106.99 2 0 1 6 7 [natural, language, processing, nlp, provides, boundless, opportunity, solving, problem, artificial, intelligence, making, product, amazon, alexa, google, translate, possible, developer, data, scientist, new, nlp, deep, learning, practical, guide, show, apply, method, using, pytorch, python, based, deep] [nlp, deep, natural, language, processing, provides, boundless, opportunity, solving, problem, artificial, intelligence, making, product, amazon, alexa, google, translate, possible, developer, data, scientist, new, learning, practical, guide, show, apply, method, using, pytorch, python, based] 315 natural language processing nlp provides boundless opportunity solving problem artificial intelligence making product amazon alexa google translate possible developer data scientist new nlp deep learning practical guide show apply method using pytorch python based deep 0 0 0 0 0 12
In [668]:
#not added the t-SNE method here as it will your precisious time !! lol

In [ ]: